:root {
	--main-color: #244880;
	--secondary-color: #021c6d;
	--black: #000;
	--white: #fff;
	--text: #323233;
	--gray: #bebebe;
	--medium-gray: #5e5e5e;
	--dark-gray: #2b2b2b;
	--flash-color: rgb(148, 0, 0);
}
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-size: 16px;
	font-family: "Raleway", sans-serif;
}

html {
	scroll-behavior: smooth;
}

/**
	LAYOUT
**/
.col-1-1 {
	width: 100%;
	max-width: 100%;
}
.col-1-2 {
	width: 50%;
	max-width: 50%;
}
.col-1-4 {
	width: 25%;
	max-width: 25%;
}

.col-3-4 {
	width: 75%;
	max-width: 75%;
}
.col-1-3 {
	width: 33.333%;
	max-width: 33.333%;
}
.col-2-3 {
	width: 66.666%;
	max-width: 66.666%;
}

.w-100 {
	width: 100%;
}
/**
      DISPLAY
**/
.flex {
	display: flex;
}
.grid {
	display: grid;
}

.inline-block {
	display: inline-block;
}

.flex-column {
	flex-direction: column;
}
.block {
	display: block;
}

/**
      JUSTIFY-CONTENT
**/
.justify-between {
	justify-content: space-between;
}

.justify-center {
	justify-content: center;
}

.justify-end {
	justify-content: flex-end;
}
/**
      ALIGN-ITEMS
**/
.items-end {
	align-items: flex-end;
}
.items-center {
	align-items: center;
}

/**
	ALIGN-SELF
**/
.self-start {
	align-self: flex-start;
}
/**
      COLORS
**/
.text-main {
	color: var(--main-color);
}

.hover-text-main:hover {
	color: var(--main-color);
}
.text-white {
	color: var(--white);
}

.text-article {
	color: var(--text);
}

.text-flash {
	color: var(--flash-color);
}

/**
GRID
**/
.grid-5 {
	grid-template-columns: repeat(5, 1fr);
	grid-template-rows: auto;
}
.grid-4 {
	grid-template-columns: repeat(4, 1fr);
	grid-template-rows: auto;
}

.grid-3 {
	grid-template-columns: repeat(3, 1fr);
	grid-template-rows: auto;
}

.gap-10 {
	gap: 10px;
}
/**
MARGIN
**/
.mt-5 {
	margin-top: 5px;
}
.mt-10 {
	margin-top: 10px;
}
.mt--10 {
	margin-top: -10px;
}
.mt-20 {
	margin-top: 20px;
}
.mt-30 {
	margin-top: 30px;
}
.mt-40 {
	margin-top: 40px;
}

.mt-50 {
	margin-top: 50px;
}
.mb-20 {
	margin-bottom: 20px;
}
.ml-20 {
	margin-left: 20px;
}
/**
      PADDING
**/
.p-5 {
	padding: 5px;
}
.p-10 {
	padding: 10px;
}
.p-20 {
	padding: 20px;
}
.py-10 {
	padding: 10px 0;
}
.py-15 {
	padding: 15px 0;
}
.py-20 {
	padding: 20px 0;
}
.py-40 {
	padding: 40px 0;
}
.px-10 {
	padding: 0 10px;
}
.pt-5 {
	padding-top: 5px;
}
.pt-10 {
	padding-top: 10px;
}
.pt-15 {
	padding-top: 15px;
}

.pt-20 {
	padding-top: 20px;
}
.pt-50 {
	padding-top: 50px;
}
.pl-10 {
	padding-left: 10px;
}
.pl-20 {
	padding-left: 20px;
}
.pb-0 {
	padding-bottom: 0;
}
.pb-5 {
	padding-bottom: 5px;
}
.pb-10 {
	padding-bottom: 10px;
}
.pb-20 {
	padding-bottom: 20px;
}
.pb-40 {
	padding-bottom: 40px;
}
.pb-50 {
	padding-bottom: 50px;
}
.pr-10 {
	padding-right: 10px;
}
.pr-20 {
	padding-right: 20px;
}
.pr-25 {
	padding-right: 25px;
}
.pr-40 {
	padding-right: 40px;
}
.pr-50 {
	padding-right: 50px;
}
/**
 FONT-SIZE
 **/
.font-size-12 {
	font-size: 12px;
}
.font-size-13 {
	font-size: 13px;
}
.font-size-14 {
	font-size: 14px;
}
.font-size-15 {
	font-size: 15px;
}
.font-size-16 {
	font-size: 16px;
}
.font-size-17 {
	font-size: 17px;
}
.font-size-19 {
	font-size: 19px;
}

.font-size-22 {
	font-size: 22px;
}

.font-size-24 {
	font-size: 24px;
}

.font-size-34 {
	font-size: 34px;
}

.font-size-43 {
	font-size: 43px;
}
.font-size-53 {
	font-size: 53px;
}

/**
FONT FAMILY
**/
.roboto {
	font-family: "Roboto", sans-serif;
}
.raleway {
	font-family: "Raleway", sans-serif;
}
.saira-extra-condensed {
	font-family: "Saira Extra Condensed", sans-serif;
	line-height: 1.1;
}
/**
FONT-WEIGHT
**/
.thin {
	font-weight: 100;
}
.light {
	font-weight: 300;
}
.regular {
	font-weight: 400;
}
.medium {
	font-weight: 500;
}
.semi-bold {
	font-weight: 600;
}
.bold,
.bold p,
#article-content .bold p {
	font-weight: 700;
}

.extra-bold {
	font-weight: 900;
}
/**
TEXT-TRANSFORM
**/

.uppercase {
	text-transform: uppercase;
}

/**
TEXT-ALIGN
**/

.text-center {
	text-align: center;
}
/**
 TEXT-SHADOW
**/
.text-shadow-1 {
	text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

/**
 BORDER
**/

.border {
	border: 1px solid;
}

.border-bottom {
	border-bottom: 1px solid;
}

.border-left {
	border-left: 1px solid;
}

.border-right {
	border-right: 1px solid;
}

.border-top {
	border-top: 1px solid;
}
.border-color-main {
	border-color: var(--main-color);
}
.border-color-gray {
	border-color: var(--gray);
}
.container {
	max-width: 1140px;
	margin: 0 auto;
}

/**
	GAP
**/
.gap-5 {
	gap: 5px;
}
.gap-10 {
	gap: 10px;
}

.gap-20 {
	gap: 20px;
}

.gap-30 {
	gap: 30px;
}

/**
	BACKGROUND
**/

.bg-gray {
	background-color: var(--medium-gray);
}

.bg-dark-gray {
	background-color: var(--dark-gray);
}
/*************************************

CUSTOM CSS

*************************************/
a {
	text-decoration: none;
}
#hamburger-menu {
	display: none;
}

.search-icon {
	width: 21px;
}

.arrow-down {
	transform: rotate(180deg);
}
.thumbnail {
	max-width: 100%;
	aspect-ratio: 3/2;
	object-fit: cover;
	width: 100%;
}
.btn {
	padding: 10px 20px;
	display: block;
	text-align: center;
	border: 0;
}

.btn-main {
	background-color: var(--main-color);
	color: white;
}

.btn-main:hover {
	background-color: white;
	color: var(--main-color);
}

.btn-search {
	padding: 7px 15px;
	border: 1px solid var(--gray);
	border-left: 0;
	background-color: white;
}

.btn-outline {
	border: 1px solid var(--gray);
	color: var(--main-color);
}

.btn-outline:hover {
	background-color: var(--main-color);
	color: white;
}
.btn-search img {
	height: 14px;
}

.icon-camera,
.icon-video {
	max-height: 13px;
}

.media-icon-holder {
	display: flex;
	flex-direction: row;
	gap: 5px;
	position: absolute;
	top: 20px;
	left: 20px;
}
.list .media-icon-holder,
article .media-icon-holder,
.category-single-news-holder .media-icon-holder {
	position: static;
	top: 0;
	left: 0;
}
.media-icon-holder img {
	filter: brightness(0) invert(1) drop-shadow(0px 0px 2px rgba(0, 0, 0, 0.5));
}

.list .media-icon-holder img,
article .media-icon-holder img,
.category-single-news-holder .media-icon-holder img {
	filter: none;
}

#main-slider .media-icon-holder .icon {
	max-height: 25px;
}

.search-input {
	width: 100%;
	display: flex;
	padding: 7px 15px;
	border: 1px solid var(--gray);
	border-right: 0;
}

.section-title {
	font-family: "Saira Extra Condensed", sans-serif;
	line-height: 0.7;
}
/********************
SLIDER
********************/
.slider-holder {
	position: relative;
}
.dots-holder {
	position: absolute;
	right: 20px;
	top: 20px;
}
.dots-holder .slider-dot:not(:last-child) {
	margin-right: 10px;
}
.slider-dot {
	border: 1px solid var(--white);
	width: 20px;
	height: 20px;
	border-radius: 20px;
	box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.5);
}
.slider-arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	max-width: 30px;
	opacity: 0.5;
	filter: drop-shadow(0px 0px 5px rgba(0, 0, 0, 0.5));
}

.slider-arrow:hover {
	opacity: 1;
	filter: drop-shadow(0px 0px 5px rgba(0, 0, 0, 1));
}

.arrow-right {
	right: 20px;
}

.arrow-left {
	transform: translateY(-50%) rotate(180deg);
	left: 20px;
}
.active-dot {
	background-color: var(--white);
}
.slider-item {
	width: 100%;
	min-width: 100%;
	position: relative;
	height: 100%;
}
.slider-image {
	max-width: 100%;
	max-height: 100%;
	height: 100%;
	object-fit: cover;
	min-width: 100%;
}

.slider-title {
	position: absolute;
	bottom: 20px;
	left: 10px;
	font-family: "Saira Extra Condensed", sans-serif;
	line-height: 1.1;
	text-shadow: 2px 0px 3px rgb(0 0 0);

	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	line-clamp: 2;
	-webkit-box-orient: vertical;
}

/********************
HEADER
********************/

#top-header {
	background-color: var(--main-color);
}
#bottom-header {
	background-color: white;
	transition: 0.3s;
}
#bottom-header.sticky {
	position: -webkit-sticky;
	position: fixed;
	top: 0;
	width: 100%;
	background-color: white;
	border-bottom: 1px solid var(--main-color);
	z-index: 9;
}

#bottom-header.sticky .container {
	border-bottom: 0 solid transparent !important;
}
#logo {
	max-width: 175px;
}

#social-holder a {
	margin-left: 5px;
}

#social-holder img {
	height: 22px;
}

#main-menu,
#additional-menu {
	height: 20px;
}
#main-menu a:not(:last-child),
#additional-menu a:not(:last-child) {
	margin-right: 20px;
}

/********************
HERO
********************/
/* #main-slider,
#main-slider .slider-item {
	max-height: 469px;
} */

#sidebar-news-holder {
	overflow: hidden;
}

#sidebar-news-holder:hover {
	overflow-y: scroll;
}

#sidebar-desk-title {
	letter-spacing: 1px;
}

/**
Video holder
**/
.video-item,
.photo-item {
	border: 1px solid var(--gray);
	background: var(--main-color);
}

.photo-item,
.video-item {
	display: flex;
	flex-direction: column;
}
.video-thumbnail,
.photo-thumbnail {
	max-width: 100%;
	width: 100%;
	object-fit: cover;
	display: block;
}
.video-thumbnail {
	aspect-ratio: 16/9;
	height: auto;
}

.photo-thumbnail {
	aspect-ratio: 3/2;
	height: auto;
}
.video-title-holder,
.photo-title-holder {
	padding: 10px;
	flex-grow: 1;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.video-title,
.photo-title {
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	line-clamp: 3;
	-webkit-box-orient: vertical;
}

.video-grid-holder,
.photo-grid-holder {
	gap: 10px;
}

/**
NEWS HOLDER
**/
#first-news-section .grid-3,
#second-news-section .grid-3 {
	gap: 10px;
}

.single-news {
	position: relative;
}
.single-news img {
	max-width: 100%;
	width: 100%;
	height: 247px;
	object-fit: cover;
}
.single-news-title {
	position: absolute;
	bottom: 10px;
	left: 10px;
	width: calc(100% - 20px);
	font-family: "Saira Extra Condensed", sans-serif;
	line-height: 1.1;
	font-size: 30px;

	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	line-clamp: 2;
	-webkit-box-orient: vertical;
}

#grid-magazin {
	grid-template-columns: calc(33.33333% - 7px) 66.6666%;
	grid-template-rows: auto;
	gap: 10px;
}

#servisne-news-holder {
	max-height: 255.66px;
	height: 100%;
	overflow: hidden;
	border-left: 1px solid var(--gray);
	border-right: 1px solid var(--gray);
	padding: 10px;
	margin-top: 10px;
}

#servisne-news-holder:hover {
	overflow-y: scroll;
}

.promo-title {
	font-size: 17px;
	font-family: "Roboto", sans-serif;
	font-weight: 300;
	color: var(--text);
}

#promo-section .grid-3 {
	margin-top: 10px;
}
/***********************************************************************

					ARTICLE

***********************************************************************/

#article-holder {
	grid-template-columns: 66.6666% 33.33333%;
	grid-template-rows: auto;
}

#article-content p {
	margin: 20px 0;
	color: var(--text);
	font-family: "roboto", sans-serif;
	font-weight: 300;
	font-size: 18px;
}

#article-content p iframe {
	display: block;
	margin: 0 auto;
	width: 100%;
	max-height: 600px;
	aspect-ratio: 16/9;
}

#article-heading {
	line-height: 1.1;
}

#article-content p img {
	max-width: 100%;
	max-height: 600px;
	object-fit: contain;
	display: block;
	margin: 0 auto;
}

#tags-holder {
	margin-top: 10px;
	gap: 10px;
}

/***********************************************************************

					CATEGORY

***********************************************************************/

#category-hero .grid {
	grid-template-columns: 66.6666% 33.3333%;
	grid-template-rows: auto;
	gap: 20px;
}

#category-news-holder .category-single-news-holder {
	margin-top: 20px;
}

.category-icons-holder img:not(:first-child) {
	margin-left: 10px;
}

#video-article iframe,
#video-article video {
	width: 100%;
	aspect-ratio: 16/9;
	max-height: 600px;
}

#all-news a {
	max-width: calc(100% - 50px);
}

.pagination-active {
	background-color: var(--main-color);
	color: var(--white);
}

/***********************************************************************

					RESPONSIVENESS

***********************************************************************/

@media (max-width: 1140px) {
	.lg-px-10 {
		padding-left: 10px;
		padding-right: 10px;
	}

	.single-news img {
		height: auto;
		aspect-ratio: 3/2;
	}

	.lg-none {
		display: none;
	}
}

/* @media (max-width: 991px) {
	#main-slider,
	#main-slider .slider-item,
	.slide-image {
		height: 430px;
	}
} */

@media (max-width: 875px) {
	#hamburger-menu {
		display: block;
	}

	#main-menu {
		display: none;
	}

	#menu-holder {
		position: relative;
	}
	#main-menu.mobile-menu-active {
		display: flex;
		flex-direction: column;
		background: var(--white);
		align-content: center;
		justify-content: center;
		position: absolute;
		width: calc(100% - 20px);
		height: auto;
		bottom: 0;
		transform: translateY(100%);
		z-index: 999;
		border: 1px solid var(--gray);
		border-top: 0;
	}

	.sticky #main-menu.mobile-menu-active {
		border-color: var(--main-color);
	}

	#main-menu a:not(:last-child) {
		margin-right: 0;
		border-bottom: 1px solid var(--gray);
	}

	#main-menu a {
		padding: 10px 15px;
		text-align: center;
	}

	/* #main-slider,
	#main-slider .slider-item,
	.slider-image {
		height: 380px;
	} */
}

@media (max-width: 787px) {
	.md-flex-column {
		flex-direction: column;
	}
	.md-col-1-1 {
		width: 100%;
		max-width: 100%;
	}

	.md-pr-0 {
		padding-right: 0;
	}
	.md-pt-10 {
		padding-top: 10px;
	}

	.md-aspect-3-2 {
		aspect-ratio: 3/2;
	}
	.md-mt-10 {
		margin-top: 10px;
	}

	.md-grid-2 {
		grid-template-columns: repeat(2, 1fr);
	}

	.md-gap-10 {
		gap: 10px;
	}

	/* #main-slider,
	#main-slider .slider-item,
	.slider-image {
		height: 100%;
		aspect-ratio: 3/2;
	} */

	.md-font-size-34 {
		font-size: 34px;
	}

	.md-font-size-30 {
		font-size: 30px;
	}

	.slider-title {
		max-height: 76px;
	}
	#tags-holder {
		flex-wrap: wrap;
	}
}

@media (max-width: 600px) {
	.sm-grid-1 {
		grid-template-columns: 100%;
	}

	.sm-font-size-16 {
		font-size: 16px;
	}

	.sm-pr-0 {
		padding-right: 0;
	}

	#grid-magazin,
	#article-holder {
		grid-template-columns: 100%;
	}

	.video-title,
	.photo-title {
		max-height: 61px;
	}

	.single-news-title {
		max-height: 66px;
	}

	#servisne-news-holder,
	#sidebar-news-holder {
		overflow-y: scroll;
	}
}

#page-content article p {
	margin: 20px 0;
}

#page-content article h1 {
	font-size: 30px;
	font-family: "Saira Extra Condensed", sans-serif;
}
#page-content article hr {
	margin: 30px 0;
}

#page-content article ul,
#page-content article ol {
	margin: 20px 0;
	padding-left: 40px;
}
