@font-face {
  font-family: 'Inter-Regular';
  src: url("../fonts/Inter-Regular.ttf");
  font-display: swap;
}

@font-face {
  font-family: 'Inter-Medium';
  src: url("../fonts/Inter-Medium.ttf");
  font-display: swap;
}

@font-face {
  font-family: 'Inter-SemiBold';
  src: url("../fonts/Inter-SemiBold.ttf");
  font-display: swap;
}

@font-face {
  font-family: 'Inter-Bold';
  src: url("../fonts/Inter-Bold.ttf");
  font-display: swap;
}

@font-face {
  font-family: 'Inter-Black';
  src: url("../fonts/Inter-Black.ttf");
  font-display: swap;
}


body {
  margin: 0;
  font-family: 'Inter-Regular';
}

ul {
  margin: 0;
  padding: 0;
}

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}


ul, ol {
  list-style: none;
}


input {
  outline: none;
}

img {
  max-width: 100%;
  vertical-align: middle;
}


a {
  text-decoration: none;
  -webkit-transition: all .5s;
  -o-transition: all .5s;
  transition: all .5s;
}


.container {
	width: 100%;
	max-width: 1270px;
	padding: 0 20px;
	margin: auto;
}


/* Dark light version */

.theme-switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 30px;
}

/* Hide default checkbox */
.theme-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

/* The slider */
.color-version {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: 0.4s;
  border-radius: 30px;
}
body.dark-mode .color-version{
	background-color: black;
}
body.dark-mode .slider-icon.sun-icon{
	opacity: 1;
}

.color-version:before {
  position: absolute;
  content: "";
  height: 22px;
  width: 22px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: 0.4s;
  border-radius: 50%;
}

/* Icons on slider */
.slider-icon {
  position: absolute;
  top: 45%;
  transform: translateY(-50%);
  font-size: 14px;
  transition: opacity 0.3s;
}

.sun-icon {
  left: 9px;
}

.moon-icon {
  right: 8px;
}

/* When checked (dark mode) */
/*input:checked + .color-version {
  background-color: #2a2a2a;
}*/

input:checked + .color-version:before {
  transform: translateX(30px);
}

.light-mode .sun-icon {
  opacity: 1;
}

.light-mode .moon-icon {
  opacity: 0.3;
}

.dark-mode .sun-icon {
  opacity: 0.3;
}

.dark-mode .moon-icon {
  opacity: 1;
}

.color-version img {
	width: 12px;
	height: 12px;
	object-fit: contain;
}



/* Top news */

.top_news {
	background: #d81730;
	padding: 10px 0;
}

.top_news .container {
	width: 100%;
  max-width: 1270px;
  padding: 0 20px;
  margin: auto;
}

.top_news a {
	color: #fff;
}

.top_news .top_all_news a {
	text-transform: uppercase;
	display: flex;
	align-items: center;
	font-family: 'Inter-Bold';
	font-size: 18px;
}

.top_news .top_all_news a span {
	margin-right: 10px;
}

.top_news .top_all_news a svg {
	margin-left: 5px;
}

.top_news_wrap {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 30%) minmax(0, 1fr);
  grid-template-rows: auto;
  column-gap: 0;
}

.top_news_wrap article {
	padding-bottom: 0;
	border-bottom: none;
}

.top_news_wrap #vesti-splide li {
	border-right: 2px solid #e04c5f;
	padding-right: 20px;
}

#vesti-splide li a {
	font-size: 14px;
}

/* Top slide */

.top_slide_news {
	background: linear-gradient(180deg,rgba(51, 51, 51, 1) 34%, rgba(16, 16, 16, 1) 100%);
	padding: 20px 0 10px;
	position: relative;
}

.top_slide_news .container {
	max-width: 1700px;
	padding: 0 20px;
}


.top_slide_news .splide__list .splide__slide img {
	width: 100%;
	aspect-ratio: 1;
	object-fit: cover;
	height: 110px;
	filter: grayscale(100%);
  opacity: 0.5;
  transition: filter 0.3s ease;
}	


.top_slide_news .splide__list .splide__slide.is-center-custom img,
.top_slide_news .splide__list .splide__slide img:hover {
 	opacity: 1;
 	filter: grayscale(0);
}

.top_slide_news .splide__list .splide__slide span {
	color: #fff;
	font-size: 12px;
	font-family: 'Inter-Bold';
	margin-top: 10px;
	display: inline-block;
}

#top-slider {
	position: static;
}

.top_slide_news .splide__list .splide__slide:nth-child(4) span {
    position: absolute;
    bottom: 20px;
    left: 0;
    text-align: center;
    width: 100%;
}

.top_slide_news .splide__arrow--prev svg,
.top_slide_news .splide__arrow--next svg {
	display: none;
}

.top_slide_news .splide__arrow--prev {
  background: url('../img/left-slide.svg') no-repeat center center;
  background-size: contain;
  width: 30px; 
  height: 30px;
  border: none;
}

.top_slide_news .splide__arrow--next {
  background: url('../img/right-slide.svg') no-repeat center center;
  background-size: contain;
  width: 30px;
  height: 30px;
  border: none;
}

.top_slide_news .splide__arrow--prev {
    left: 40px;
} 

.top_slide_news .splide__arrow--next {
    right: 40px;
} 

.top_slide_news .hide_news {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(0deg, #D5D5D5, #D5D5D5), linear-gradient(180deg, rgba(0, 0, 0, 0) 52.38%, rgba(0, 0, 0, 0.2) 100%);
    width: 90px;
    height: 20px;
    text-align: center;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

/* Header */

.header_wrap {
	display: grid;
	grid-template-columns: minmax(0,1fr) minmax(0,4fr) minmax(0,1fr);
	grid-template-rows: auto;
	column-gap: 20px;
	align-items: stretch;
}
.header_wrap .logo {
	display: flex;
	flex-flow: row nowrap;
	justify-content: center;
	align-items: center;
	column-gap: 10px;
}
.color-mode{
	min-width: 62px;
}
.custom-logo-link img{
	max-width: 500px;
	width: auto;
	height: auto;
}
.language-selector{
	font-family: "Inter-SemiBold", sans-serif;
	font-size: 14px;
	line-height: 1.71;
	color: #7E7E7E;
}
.language-selector a{
	color: inherit;
}

header.main_header {
  position: sticky;
  top: 0;
  top: -222px;
  z-index: 2;
  background: #fff;
}

header .container {
	max-width: 100%;
	padding: 12px 30px;
}
header.main_header .nav{
	display: flex;
	flex-flow: column nowrap;
	justify-content: center;
	align-items: start;
}
header.main_header .nav .nav_btn {
	width: 40px;
	height: 40px;
	line-height: 40px;
	background: #ebebeb;
	text-align: center;
}
body.dark-mode header.main_header .nav .nav_btn {
	background: #FFFFFF1A;
}
body.dark-mode header.main_header .nav .nav_btn svg rect{
	fill : white;
}
body.dark-mode header.main_header .nav .nav_btn svg path{
	stroke: white;
}

header.main_header .login_links li a {
	color: #333333;
	display: inline-block;
	font-size: 14px;
	padding: 10px 20px;
}

header.main_header .login_links li:first-child a {
	color: #fff;
}

header.main_header .login_links li:first-child {
	background: #333333;
}

header.main_header .header_wrap .login .search svg {
	display: block;
}

header.main_header .header_wrap .login {
    position:relative;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

header.main_header .header_wrap .login .login_links {
	display: flex;
	border-left: 1px solid #D5D5D5;
	padding-left: 30px;
	margin-left: 25px;
}
@media(max-width: 880px){
	.header_wrap {
		grid-template-columns: minmax(0,1fr) minmax(0,5fr) minmax(0,1fr);
	}
}
@media (max-width:767px){
	.header_wrap {
		grid-template-columns: minmax(0,30px) minmax(0,1fr) minmax(0,30px);
		column-gap: 0;
	}
	.logo .color-mode,
	.logo .lang-switcher{
		display: none;
	}
	.custom-logo-link img{
		max-width: 400px;
		aspect-ratio: 3;
		height: 100%;
		width: 100%;
	}
	.search{
		width: 30px;
		height: 30px;
		background: #3333331A;
		display: flex;
		justify-content: center;
		align-items: center;
		padding: 2px;
		z-index: 5;
	}
	body.dark-mode .login .search{
		background: #FFFFFF1A;
	}
	.search svg{
		max-width: 16px;
	}
	header.main_header .nav .nav_btn {
		width: 30px;
		height: 30px;
		z-index: 5;
	}
	.header_wrap .logo{
		margin: 0 -22px;
	}
}

/* Nav */

header.main_header .menu_wrap {
	border-top: 1px solid #D5D5D5;
	border-bottom: 1px solid #D5D5D5;
	padding: 10px 0;
	background: #fff;
}
.menu-header #menu-main-menu {
	display: flex;
	justify-content: center;
}
.menu-header #menu-main-menu li {
	margin: 0 15px;
}

.menu-header #menu-main-menu li a {
	font-size: 14px;
	font-family: 'Inter-SemiBold';
	color: #333333;
	padding: 12px 0;
}
.menu-header #menu-main-menu li a:hover {
	color: #D7162F;
}

.menu-header #menu-main-menu li a img {
	margin-right: 5px;
	vertical-align: middle;
}

.menu-header #menu-main-menu li.current-menu-item a {
	border-bottom: 2px solid #D7162F;
}

.asp_w_container_1 {
    display: none;
    position: absolute;
    left: 0;
    max-width: 85%;
    top: -5px;
}
header.main_header .header_wrap .login .search svg{
    cursor:pointer;
}

@media(min-width:1025px){
	.search{
		position: relative;
	}
	.asp_w_container_1 {
		display: none;
		position: absolute;
		left: -300px;
		max-width: 85%;
	}
}


/* Dropdown NAV*/
/*.sticky_header{*/
/*	position: relative;*/
/*}*/

#hamburger{
	display: flex;
	justify-content: center;
	align-items: center;
}
#hamburger .opened,#hamburger.visible .closed{
	display: none;
}
#hamburger.visible .opened, #hamburger .closed{
	display: block;
}
.dropdown-nav{
	position: fixed;
	top: 0;
	left: -9999px;
	opacity: 0;
	width: 100%;
	max-width: 440px;
	height: 100vh;
	background: white;
	z-index: 9999;
	overflow-y: auto;
}
.dropdown-nav.visible{
	left: 0;
	opacity: 1;
}
.dropdown-nav-wrapper{
	display: flex;
	flex-flow: column nowrap;
	justify-content: start;
	align-items: stretch;
	padding: 16px 20px 25px;
	height: 100%;
}
.dropdown-nav .asp_w_container_1 {
	display: block;
	position: relative;
	inset: unset;
	width: 100%;
	max-width: 100%;
	margin-bottom: 24px;
}
.nav-tabs{
	display: flex;
	flex-flow: row nowrap;
	justify-content: stretch;
	align-items: end;
	border-bottom: 1px solid #D5D5D5;
	margin-bottom: 9px;
}
.nav-tabs .tab-btn{
	width: 50%;
	background: transparent;
	border-style: solid;
	border-width: 0 0 4px;
	border-color: white;
	font-family: "Inter-SemiBold", sans-serif;
	font-size: 12px;
	line-height: 2;
	text-align: center;
	text-transform: uppercase;
	padding: 9px 20px 5px 20px;
	color: #333333;
}
.dark-mode .nav-tabs .tab-btn{
	border-color: #333333;
}
.nav-tabs .tab-btn:first-child{
	border-right: 1px solid white;
}
.nav-tabs .tab-btn:first-child.active{
	border-right: 1px solid #D5D5D5;
}
.nav-tabs .tab-btn:last-child{
	border-left: 1px solid white;
}
.nav-tabs .tab-btn:last-child.active{
	border-left: 1px solid #D5D5D5;
}
.nav-tabs .tab-btn.active{
	border-color: #D7162F;
}
.nav-tab-content{
	display: none;
}
.nav-tab-content.active{
	display: block;
}
.color-mode-item{
	display: flex;
	flex-flow: row nowrap;
	justify-content: space-between;
	align-items: center;
	font-family: "Inter-Regular", sans-serif;
	font-size: 12px;
	line-height: 2;
	color: #333333;
	padding: 0 12px;
	margin-bottom: 8px;
}
#menu-kategorije li,
#menu-ostalo li{
	width: 100%;
	position: relative;
	display: flex;
	flex-flow: row wrap;
	justify-content: start;
	align-items: stretch;
	column-gap: 8px;
}
#menu-kategorije li a,
#menu-ostalo li a{
	position: relative;
	font-family: "Inter-SemiBold", sans-serif;
	font-size: 14px;
	line-height: 1.71;
	width: 100%;

	padding: 8px 12px;
	border-bottom: 1px solid #D5D5D5;
	color: #333333;
	display: flex;
	flex-flow: row nowrap;
	justify-content: start;
	align-items: stretch;
	column-gap: 8px;
}
#menu-kategorije li a img,
#menu-ostalo li a img{
	width: 100%;
	max-width: 22px;
}
#menu-kategorije li .sub-menu,
#menu-ostalo li .sub-menu{
	width: 100%;
}
#menu-kategorije li .dropdown-toggle,
#menu-ostalo li .dropdown-toggle{
	position: absolute;
	right: 12px;
	width: 60px;
	height: 20px;
	top: 8px;
	z-index: 10;
	display: flex;
	justify-content: end;
	align-items: center;
}
#menu-kategorije li a:hover,
#menu-ostalo li a:hover{
	background: #EBEBEB;
	border-bottom: 1px solid #EBEBEB;
}
#menu-kategorije li a:hover:before,
#menu-ostalo li a:hover:before{
	content: "";
	position: absolute;
	top: 50%;
	left:0;
	transform: translateY(-50%);
	width: 4px;
	height: 30px;
	background: #D7162F;
}
#menu-kategorije li a svg,
#menu-ostalo li a svg{
	margin-left: auto;
}
#menu-kategorije > li.menu-item-has-children .sub-menu,
#menu-ostalo > li.menu-item-has-children .sub-menu{
	display: none;
}
#menu-kategorije > li.menu-item-has-children.open .sub-menu,
#ostalo > li.menu-item-has-children.open .sub-menu{
	display: block;
}
#menu-kategorije .menu-item-has-children.open .dropdown-toggle svg {
	transform: scaleY(-1);
}
.nav-socials{
	margin: 30px 0;
	display: flex;
	flex-flow: row nowrap;
	justify-content: start;
	align-items: center;
	column-gap:  20px;
}
.nav-copyrights{
	display: block;
	font-family: "Inter-Regular", sans-serif;
	font-weight: 400;
	font-size: 12px;
	line-height: 2;
	color: #7E7E7E;
	text-align: left;
	padding-top: 11px;
	border-top: 1px solid #D5D5D5;
	margin-top: auto;
}
#close-btn{
	background: transparent;
	padding: 0;
	border: none;
	margin-bottom: 15px;
	align-self: end;
}

.dark-mode .dropdown-nav{
	background: #333;
}
.dark-mode .nav-copyrights,
.dark-mode .nav-copyrights,
.dark-mode #menu-kategorije li a,
.dark-mode #menu-ostalo li a,
.dark-mode .color-mode-item,
.dark-mode .nav-tabs .tab-btn{
	color: white;
}
.dark-mode #close-btn path,
.dark-mode .dropdown-toggle svg path{
	stroke: white;
}
.dark-mode .nav-socials svg path{
	fill: #fff;
}
.dark-mode #menu-kategorije img,
.dark-mode #menu-ostalo img{
	filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7490%) hue-rotate(74deg) brightness(106%) contrast(98%);
}

.dark-mode footer {
	background: #333;
}

@media (max-width:576px){
	body:has(.dropdown-nav.visible){
		overflow: hidden;
	}
	.dropdown-nav{
		top: 172px;
		height: calc(100vh - 172px);
	}
	.dropdown-nav-wrapper{
		padding: 16px 20px 130px;
	}
	.dropdown-nav-wrapper{
		padding: 16px 20px 120px;
	}
	#close-btn{
		display: none;
	}
}



/* Footer */

footer {
	margin: 70px 0 0;
	padding-bottom: 50px;
	border-top: 2px solid #333333;
}

footer .footer-wrap {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 30px 0 20px;
	border-bottom: 1px solid #D5D5D5;
}

footer .footer-wrap .footer_logo img {
	max-width: 170px;
	width: auto;
	height: auto;
}

footer .footer-wrap .menu {
	display: flex;
}

footer .footer-wrap .menu li {
	margin-left: 15px;
}

footer .footer-wrap .menu li a {
	font-size: 14px;
	color: #333333;
}

footer .footer-wrap .menu li a img {
	margin-right: 5px;
}

footer .footer-wrap .menu li a:hover,
footer .footer_links_wrap .footer_links .team_info_item a:hover {
	color: #D7162F;
}

footer .footer_links_wrap {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: 50px;
}

footer .contact-icons {
	display: flex;
	align-items: center;
}

footer .footer_links_wrap .footer_links {
	display: flex;
}

footer .footer_links_wrap .footer_links .team_info_item {
	margin-left: 25px;
}

footer .footer_links_wrap .footer_links .team_info_item a {
	font-size: 14px;
	color: #333333;
}

footer .contact-icons p {
	font-size: 14px;
	color: #333333;
	font-size: 14px;
	margin-right: 10px;
}

footer .contact-icons a {
	margin-right: 15px;
}

footer .copyright p {
	font-size: 14px;
	color: #7E7E7E;
}

footer .copyright {
	margin-top: 50px;
	border-bottom: 1px solid #D5D5D5;
}



/* Color version */

.dark-mode {
	background: #000;
	color: #fff;
}

.dark-mode header.main_header,
.dark-mode header.main_header .menu_wrap {
	background: #333333;
}

.dark-mode header.main_header .menu_wrap {
	border-top: 1px solid #808080;
	border-bottom: 1px solid #808080;
}

.dark-mode .menu-header #menu-main-menu li a,
.dark-mode .tabs-nav .tab-btn,
.dark-mode .news-secondary h3,
.dark-mode p,
.dark-mode h1,
.dark-mode h2,
.dark-mode h3,
.dark-mode .meta-info,
.dark-mode .main_primary_news h3,
.dark-mode .tab-panel h4,
.dark-mode .news-tabs-wrapper .btn-view-all,
.dark-mode .main_primary_news .pinned-trim-words,
.dark-mode .word-for-word .heading h2, 
.dark-mode .top_vesti_list_sport .heading h2, 
.dark-mode .word-for-word-one-news .heading h2, .top_vesti_list_ekonomija .heading h2,
.dark-mode .word-for-word .word-for-word-list h4,
.dark-mode .subcategories-nav a,
.dark-mode .word-for-word .word-for-word-list .pinned-trim-words,
.dark-mode .word-for-word-one-news .rec-po-rec-vest h3,
.dark-mode .all-news-link a,
.dark-mode .word-for-word-one-news .rec-po-rec-vest .pinned-trim-words,
.dark-mode .word-for-word .heading h2, 
.dark-mode .top_vesti_list_sport .heading h2, 
.dark-mode .word-for-word-one-news .heading h2, 
.dark-mode .top_vesti_list_ekonomija .heading h2,
.dark-mode footer .footer-wrap .menu li a,
.dark-mode footer .footer_links_wrap .footer_links .team_info_item a,
.dark-mode footer .contact-icons p,
.dark-mode footer .copyright p,
.dark-mode .language-selector a,
.dark-mode .most_read_news .posts-grid .entry-body .entry-title a,
.dark-mode .most_read_news .posts-grid .entry-meta, 
.dark-mode .most_read_news .posts-grid .entry-meta .post-category a,
.dark-mode .most_read_news .posts-grid .entry-body .entry-excerpt p,
.dark-mode .pagination ul li a, 
.dark-mode .pagination ul li span,
.dark-mode .meta-item, 
.dark-mode .meta-separator,
.dark-mode .news-content p,
.dark-mode .news-content h2,
.dark-mode .linked-news-list li a,
.dark-mode .related-post .entry-title a,
.dark-mode .featured-post .entry-title a,
.dark-mode .tab-panel li a h3,
.dark-mode .featured-post .entry-meta span,
.dark-mode #category-content .entry-title a,
.dark-mode #category-content .entry-meta span {
	color: #fff;
}

.dark-mode .contact-icons svg path,
.dark-mode .all-news-link a svg path,
.dark-mode .share-buttons svg path,
.dark-mode .comments-count svg path,
.dark-mode .all-news-btn svg path {
	fill: #fff;
}

.dark-mode #menu-main-menu img,
.dark-mode .footer-nav #menu-main-menu-1 img,
.dark-mode .search svg {
	filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7490%) hue-rotate(74deg) brightness(106%) contrast(98%);
}


/* Responsive */

@media only screen and (max-width: 1600px) {
	.top_news .top_all_news a {
		font-size: 16px;
	}
	header.main_header {
	    top: -234px;
	}
}

@media only screen and (max-width: 1300px) {
	.menu-header #menu-main-menu li {
	  margin: 0 10px;
	}
	.menu-header #menu-main-menu li a {
		font-size: 13px;
	}
	footer .footer-wrap .menu li a {
	  font-size: 12px;
	}
}

@media only screen and (max-width: 1200px) {
	footer .footer-wrap .menu li a img {
		display: none;
	}
	footer .footer_links_wrap .footer_links .team_info_item {
    margin-left: 15px;
	}
	footer .footer_links_wrap .footer_links .team_info_item a {
    font-size: 12px;
	}
	footer .footer_links_wrap {
    margin-top: 30px;
	}
	footer .copyright {
    margin-top: 40px;
	}
}

@media only screen and (max-width: 1100px) {
		header.main_header {
	    top: 0;
	    position: sticky;
	    top: 0;
	    height: auto;
	}
	.top_slide_news {
		display: none;
	}
	header .container {
    padding: 30px 20px;
	}
	.menu-header #menu-main-menu li {
    margin: 0 8px;
  }
  .menu-header #menu-main-menu li a {
    font-size: 12px;
  }
  .tabs-nav .tab-btn {
  	font-size: 13px;
  }
}
@media(max-width: 1024px){
	header .container{
		padding: 15px 20px;
	}
	header .login .asp_w_container {
		transform: translateX(-135px);
		top: calc(100% + 15px);
		z-index: 10;
	}
}

@media only screen and (max-width: 991px) {
	header .header_wrap .login {
		position: static;
	}

	.menu-header #menu-main-menu li {
		white-space: nowrap;
	}
	.menu-header #menu-main-menu {
		overflow: scroll;
		justify-content: flex-start;
		overflow-y: hidden;
	}
	.menu-header #menu-main-menu li {
    margin: 0 15px;
  }
  .menu-header #menu-main-menu li a img {
    width: 20px;
    height: 20px;
    object-fit: contain;
	}
	footer .footer-wrap .menu {
    overflow: scroll;
	}
	footer .footer-wrap .menu li {
    white-space: nowrap;
	}
	footer .footer_links_wrap .footer_links .team_info_item {
	  white-space: nowrap;
	}
	footer .contact-icons p {
		white-space: nowrap;
	}
	footer .footer_links_wrap,
	footer .footer-wrap {
		overflow: scroll;
	}
}

div.asp_w.ajaxsearchpro.asp_non_compact{
	min-width: 280px !important;
}
@media(max-width: 767px){
	header .login .asp_w_container {
		transform: translateX(-250px);
		top: calc(100% + 10px);
		z-index: 10;
	}
	header .container {
		padding: 10px 20px;
	}
}

@media only screen and (max-width: 600px) {

  header .menu-header #menu-main-menu {
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }


	header .custom-scrollbar {
	  position: absolute;
	  bottom: 0;
	  left: 0;
	  right: 0;
	  height: 5px;
	  background: rgba(0, 0, 0, 0.1);
	  border-radius: 3px;
	}

	header .custom-scrollbar .thumb {
	  height: 100%;
	  width: 50px;
	  background: #bfbfbf;
	  border-radius: 3px;
	  position: absolute;
	  left: 0;
	}

	.header_wrap .logo .lang a {
    font-size: 13px;
	}
	.language-selector {
		white-space: nowrap;
	}
	#ajaxsearchpro1_1 .probox, #ajaxsearchpro1_2 .probox, div.asp_m.asp_m_1 .probox,
	#ajaxsearchpro1_1 .probox .promagnifier, #ajaxsearchpro1_2 .probox .promagnifier, div.asp_m.asp_m_1 .probox .promagnifier {
    height: 40px !important;
	}
	.top_news .top_all_news a {
		white-space: nowrap;
	}
	.top_all_news a span {
		display: none;
	}
	.top_news_wrap {
    grid-template-columns: minmax(0, 22%) minmax(0, 1fr);
	}
	.top_news_wrap #vesti-splide li {
		padding-right: 10px;
	}
	header {
		display: flex;
		flex-direction: column;
	}
	header .main_header {
		order: 1;
	}
	header .menu_wrap {
		order: 2;
		position: relative;
	}
	.menu-header #menu-main-menu li a {
    font-size: 14px;
  }
  footer .footer-wrap .menu,
	footer .footer-wrap {
		flex-wrap: wrap;
	}
	footer .footer-wrap {
		border-bottom: none;
	}
	footer .footer-wrap .menu li {
		width: 100%;
	}
	footer .footer-nav {
		width: 100%;
	}
	footer {
    	margin: 50px 0 0;
    	padding-bottom: 20px;
	}
	footer .footer-wrap .footer_logo {
		margin: 0 20px 0 auto;
	}
	footer .footer-wrap {
	    padding: 20px 0 20px;
	}
	footer .footer-wrap .menu li {
	    margin-left: 0;
	}
	footer .footer-wrap .menu {
		border-top: 1px solid #D5D5D5;
		margin-top: 30px;
	}
	footer .footer-wrap .menu li {
		border-bottom: 1px solid #D5D5D5;
	}
	footer .footer-wrap .menu li a {
		padding: 10px 20px;
    display: block;
    font-size: 15px;
	}
	footer .container {
		padding: 0;
	}
	footer .footer_links_wrap {
    margin-top: 0;
    padding: 0;
    flex-wrap: wrap;
  }
  footer .footer_links_wrap .footer_info {
  	margin: 0 20px;
  }
  footer .footer_links_wrap .footer_links {
  	flex-wrap: wrap;
  	padding: 0 5px;
  	margin-top: 20px;
  }
  footer .footer_links_wrap .footer_links .team_info_item a {
  	font-size: 15px;
  }
  footer .footer_links_wrap .footer_links .team_info_item {
  	margin-bottom: 15px;
  }
  footer .copyright {
      margin-top: 20px;
      padding: 0 20px;
  }

}

.page-template-default .site-main{
	padding: 40px 0 80px;
}
.page-template-default .page-header{
	padding: 12px 20px;
	display: flex;
	flex-flow: row nowrap;
	justify-content: start;
	align-items: center;
	column-gap: 70px;
	margin-bottom: 40px;
	background: #D7162F;
}
.page-template-default h1 {
	margin: 0;
	font-family: "Inter-Regular", sans-serif;
	font-size: 34px;
	line-height: 1;
	color: white;
}
.page-template-default .page-content p {
	font-family: "Inter-Regular", sans-serif;
	font-size: 18px;
	line-height: 1.66;
	color: #333333;
	margin: 0 auto 40px;
}
.page-template-default .page-content ul{
	list-style-type: disc;
	margin-bottom: 40px;
	padding-left: 24px;
}
.page-template-default .page-content ol{
	list-style-type: decimal;
	margin-bottom: 40px;
	padding-left: 24px;
}
.page-template-default .page-content li{
	font-family: "Inter-Regular", sans-serif;
	font-size: 18px;
	line-height: 1.66;
	color: #333333;
}
.page-template-default .page-content a{
	color: #D7162F;
	font-family: "Inter-Bold", sans-serif;
}
@media(max-width:1024px){
	#category-heading{
		column-gap: 40px;
	}
	h1{
		font-size: 28px;
	}
	.sub-categories{
		column-gap: 20px;
	}
}
@media(max-width:767px){
	h1{
		font-size: 24px;
	}
}
@media(max-width: 767px){
	.page-template-default .site-main{
		padding: 16px 0 40px;
	}
	.page-template-default .page-header{
		column-gap: 40px;
		width: 100vw;
		margin: 0 -20px 40px;
	}
	.page-template-default h1 {
		font-size: 24px;
	}
	.page-template-default .page-content p {
		font-family: "Inter-Regular", sans-serif;
		font-size: 18px;
		line-height: 1.66;
		color: #333333;
		margin: 0 auto 40px;
	}
}
