/* ===== IMPORTED STYLE ===== */
@font-face {
	font-family: 'Fira Sans';
	src: url('../fonts/FiraSans/FiraSans.woff') format('woff');
	font-weight: normal;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: 'Fira Sans';
	src: url('../fonts/FiraSans/FiraSans-Bold.woff') format('woff');
	font-weight: bold;
	font-style: normal;
	font-display: swap;
}
@font-face {
    font-family: 'Manrope';
    src: url('../fonts/Manrope/Manrope-ExtraBold.woff2') format('woff2'), url('../fonts/Manrope/Manrope-ExtraBold.woff') format('woff');
    font-weight: 800;
    font-style: normal;
	font-display: swap;
}
@font-face {
    font-family: 'Manrope';
    src: url('../fonts/Manrope/Manrope-Bold.woff2') format('woff2'), url('../fonts/Manrope/Manrope-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
	font-display: swap;
}
@font-face {
    font-family: 'Manrope';
    src: url('../fonts/Manrope/Manrope-Medium.woff2') format('woff2'), url('../fonts/Manrope/Manrope-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
	font-display: swap;
}
@font-face {
    font-family: 'Manrope';
    src: url('../fonts/Manrope/Manrope-Regular.woff2') format('woff2'), url('../fonts/Manrope/Manrope-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
	font-display: swap;
}
/* ===== IMPORTED STYLE END ===== */

/* ===== RESET STYLE ===== */
* {box-sizing: border-box; -webkit-box-sizing: border-box; -moz-box-sizing: border-box; margin:0; padding:0;}
html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, a, cite, code, img, strong, sub, sup, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tr, th, td, article, aside, canvas, figure, figcaption, footer, header, main, menu, nav, section, audio, video  {
	font: inherit; border: 0px currentColor; border-image: none; vertical-align: baseline; font-size-adjust: inherit; font-stretch: inherit;}
article, aside, figcaption, figure, footer, header, menu, nav, section, body, main, section, picture {display: block;}
sub, sup {font-size:75%; line-height:0; position:relative;} sup {top: -0.5em;} sub {bottom: -0.25em;}
ol[class], ul[class], ol li[class], ul li[class] {list-style:none;}
blockquote {quotes: none; } blockquote::before, blockquote::after {content:none;}
table {border-collapse:collapse; border-spacing:0;}
a {text-decoration:none;-webkit-tap-highlight-color:rgba(0,0,0,0);-webkit-tap-highlight-color: transparent;outline:none!important;}
a:hover, a:focus, .btn:hover, .btn:focus, button:hover, button:focus {text-decoration: none;outline: none;}
body {-webkit-text-size-adjust:none;-webkit-overflow-scrolling: touch;-webkit-font-smoothing: antialiased;-webkit-text-size-adjust: 100%;	}
input, button, select {border:none;outline:none;-webkit-appearance:none;-moz-appearance:none;appearance:none;}
select::ms-expand {display:none;}
input::-ms-clear {display:none;}
img {display:block; max-width:100%;}
/* ===== RESET STYLE END ===== */

/* ===== Theme default ===== */
:root {
	--black: #000;
	--white: #fff;
	--red: #D2312D;
	--main-color: #0B3666;
	--gray: #5a5a5a;
	--main-font:'Fira Sans';
}
html {font-size:10px;height:100%;}
body {
    background: #FCFDFD;
    font-weight: normal;
	font-family: var(--main-font);
	font-size: 1.8rem;
    letter-spacing: 0.1px;
    line-height: 1.5;
    overflow-x: hidden;
	color: var(--black);
    height:100%;
}
.page-wrapper {display:flex;flex-direction: column;justify-content: space-between;height:100%;}

svg {width:100%;height:100%;display:block;}

input, textarea {width:100%;border:1px solid transparent;outline:none;resize:none;display:block;}
input:-webkit-autofill {transition: all 5000s ease-in-out 0s;}

a {position:relative;color:inherit;transition:0.25s;}
a:hover {transition:0.25s;}
b, strong {font-weight:bold;}
p:not(:last-child) {margin-bottom: 1.5em;}

ul:not([class]) li, ol:not([class]) li {margin-bottom: 1em;}
ul:not([class]),
ol:not([class]) {padding-left: 28px;margin-bottom: 20px;}

p a:hover, ul:not([class]) li a:hover, ol:not([class]) li a:hover {text-decoration: none;}
p a, ul:not([class]) li a, ol:not([class]) li a {text-decoration: underline;font-weight: 500;}
hr {display: block; border:none; border-bottom:1px solid var(--gray);margin:4rem 0;}

table {width: 100%;margin:3rem 0;}
table tr {border: 1px solid #ddd;}
table th, table td {padding: 1rem;text-align: center;border-right: 1px solid #ccc;}
table th {text-transform: uppercase;background: rgba(0, 0, 0, 0.12);font-weight: bold;}

/* Flexbox */
.flex {display: flex;}
.inline-flex {display: inline-flex;}
.flex-wrap {flex-wrap: wrap;}
.flex-column {flex-direction: column;}
.align-center {align-items: center}
.align-end {align-items: flex-end;}
.align-start {align-items: flex-start;}
.justify-center {justify-content: center;}
.justify-end {justify-content: flex-end;}
.justify-start {justify-content: flex-start;}
.justify-between {justify-content: space-between;}
/* // Flexbox */

/* CSS Grid */
.grid {display:grid;}
.col-2 {grid-template-columns: repeat(2, 1fr);}
.col-3 {grid-template-columns: repeat(3, 1fr);}
.col-4 {grid-template-columns: repeat(4, 1fr);}
.col-5 {grid-template-columns: repeat(5, 1fr);}
.col-6 {grid-template-columns: repeat(6, 1fr);}
.grid-col-1 {grid-column: span 1;}
.grid-row-1 {grid-row: span 1;}
.grid-col-2 {grid-column: span 2;}
.grid-row-2 {grid-row: span 2;}
.grid-col-3 {grid-column: span 3;}
.grid-row-3 {grid-row: span 3;}
.grid-col-4 {grid-column: span 4;}
.grid-row-4 {grid-row: span 4;}
.grid-col-5 {grid-column: span 5;}
.grid-row-5 {grid-row: span 5;}

.gap-1 {gap:1rem;}
.gap-2 {gap:2rem;}
.gap-3 {gap:3rem;}
.gap-4 {gap:4rem;}
.gap-5 {gap:5rem;}
/* // CSS Grid */

.container {
	width: 100%;
	max-width:1900px;
	margin:0 auto;
	padding:0 40px;
	position:relative;
}

.red {border:1px solid red;}
.blue {border:1px solid blue;}
.green {border:1px solid green;}

.mobile-btn {display:none;}
.noscroll {overflow: hidden;}
.mobile-menu__content {display:none;}

.text--uppercase {text-transform:uppercase;}
.text--center {text-align:center;}
.text--left {text-align:left;}
.text--right {text-align:right;}
.text--black {color:var(--black);}
.text--white {color:var(--white);}
.text--colored {color:var(--main-color);}
.text--bold {font-weight: bold;}
.bg--main-color {background: var(--main-color);}

.position-relative {position: relative;}
.position-absolute {position: absolute;}

.sm-show, .svg-library {display:none;}

.section {padding:5rem 0;}
.section-title {margin-bottom:1em;}

.input-wrapper input, .input-wrapper textarea {
	display:block;
	font-size: 1.8rem;
	font-weight: normal;
	font-family: var(--main-font);
	color:var(--black);
	background: #fff;
	height:5rem;
	padding:0 1em;
}
.input-wrapper textarea {
	height: 10rem;
	padding: 1em;
}
.input-wrapper input::placeholder, .input-wrapper textarea::placeholder {
	font-size: 1.4rem;
	color:#bcbcbc;
	font-family: var(--main-font);
	font-weight: normal;
}

.w-5 {width:5%;}
.w-10 {width:10%;}
.w-15 {width:15%;}
.w-20 {width:20%;}
.w-25 {width:25%;}
.w-30 {width:30%;}
.w-33 {width:33.33%;}
.w-35 {width:35%;}
.w-40 {width:40%;}
.w-45 {width:45%;}
.w-50 {width:50%;}
.w-55 {width:55%;}
.w-60 {width:60%;}
.w-65 {width:65%;}
.w-70 {width:70%;}
.w-75 {width:75%;}
.w-80 {width:80%;}
.w-85 {width:85%;}
.w-90 {width:90%;}
.w-95 {width:95%;}
.w-100 {width:100%;}

.pt-0 {padding-top:0;}
.pt-1 {padding-top:1rem;}
.pt-2 {padding-top:2rem;}
.pt-3 {padding-top:3rem;}
.pt-4 {padding-top:4rem;}
.pt-5 {padding-top:5rem;}
.pb-0 {padding-bottom:0;}
.pb-1 {padding-bottom:1rem;}
.pb-2 {padding-bottom:2rem;}
.pb-3 {padding-bottom:3rem;}
.pb-4 {padding-bottom:4rem;}
.pb-5 {padding-bottom:5rem;}

.mt-0 {margin-top:0;}
.mt-1 {margin-top:1rem;}
.mt-2 {margin-top:2rem;}
.mt-3 {margin-top:3rem;}
.mt-4 {margin-top:4rem;}
.mt-5 {margin-top:5rem;}
.mb-0 {margin-bottom:0;}
.mb-1 {margin-bottom:1rem;}
.mb-2 {margin-bottom:2rem;}
.mb-3 {margin-bottom:3rem;}
.mb-4 {margin-bottom:4rem;}
.mb-5 {margin-bottom:5rem;}

/* Buttons */
.btn {
	font-family: var(--main-font);
	font-size: 1.8rem;
	font-weight: normal;
	display:inline-flex;
	padding:0.5em 2em;
	background: var(--red);
	position:relative;
	text-align:center;
	transition: all 0.25s;
	justify-content: center;
	align-items: center;
	border:1px solid var(--red);
	text-transform: uppercase;
	cursor:pointer;
	color:#fff;
}
.btn:hover {
	background: transparent;
	transition: all 0.25s;
	color:var(--red);
}
.btn--with-icon {
	display: flex;
	align-items: center;
}
.btn--with-icon img {
	width: 2rem;
	margin-left:3rem;
}
.btn--blue {
	background: #2DA5E0;
	color:#fff;
	border:1px solid #2DA5E0;
}
.btn--transparent {
	color:#000;
	border:1px solid #a9a9a9;
	background: transparent;
}
.btn--blue:hover {
	opacity: 0.5;
	color:#fff;
	background: #2DA5E0;
}
.btn--transparent:hover {
	border:1px solid var(--red);
}
.btn__row {
	margin:4rem 0;
}
.btn--dark-blue {
	background: #0b3666;
	text-transform: none;
	border-radius: 5px;
	border: 1px solid transparent;
	padding: 0.8em 2em;
}

.btn--dark-blue:hover {
	border: 1px solid #0b3666;
	color: #0b3666;
}
/* Icons */
.icon {display:inline-block;transition: all 0.25s;}

.lens-icon {
	width: 2rem;
	height: 2rem;
	color:var(--gray);
}
.social-icon {
	width: 1.7rem;
	height: 1.7rem;
	color:#a9a9a9;
}
.eye-icon {
	width: 16px;
	height: 11px;
	color:var(--gray);
	margin-right:0.7rem;
}
.media-icon {
	width: 1.5rem;
	height: 1.5rem;
	color:#000;
}
/* Titles */
.h1,.h2,.h3,.h4,.h5,.h6, h1,h2,h3,h4,h5,h6 {display:block;}
.h1, h1 {
	line-height: 1.2;
	font-size: 36px;
}
.h2, h2 {
	line-height: 1.2;
	font-size: clamp(24px, 2vw, 32px);
}
.h3, h3 {
	line-height: 1.3;
	font-size: clamp(18px, 1.6vw, 21px);
}
.h4, h4 {
	line-height: 1.3;
	font-size: clamp(16px, 1.2vw, 18px);
}

/* Marker list */
.marker--list li {
	display: flex;
	align-items: flex-start;
}
.marker--list li::before {
	content:'';
	display: block;
	min-width: 5px;
	height:5px;
	background: #000;
	border-radius: 50%;
	margin:0.8rem 1rem 0 0;
}

/* Breadcrumb */ 
.breadcrumb {
	padding: 3rem 0;
	overflow: auto;
}
.breadcrumb li {
	display: flex;
	align-items: center;
	font-size: 12px;
	font-family: 'Manrope';
	font-weight: 500;
	white-space: nowrap;
}
.breadcrumb li a:hover {
	color: var(--red);
}
.breadcrumb li:not(:last-child)::after {
	content: '/';
	display: block;
	margin: 0 10px;
}
.breadcrumb li:last-child a {
	pointer-events: none;
	color:#a9a9a9;
}

/* Slick Slider - Default Style */
.slick-slider {
	position: relative;
    display: block;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -ms-touch-action: pan-y;
    touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}
.slick-list {
	position: relative;
	overflow: hidden;
}
.slick-list.dragging {
	cursor: pointer;
	cursor: hand; 
}
.slick-slider .slick-track,
.slick-slider .slick-list {
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0); 
}
.slick-track {
	position: relative;
	left: 0;
	top: 0;
	display: block;
	margin-left: auto;
	margin-right: auto; 
}
.slick-loading .slick-track {
	visibility: hidden; 
}
.slick-slide {
	float: left;
	height: 100%;
	min-height: 1px;
	outline: none;
	display: none; 
}
.slick-initialized .slick-slide {
	display: block; 
}
.slick-vertical .slick-slide {
    display: block;
    height: auto;
    border: 1px solid transparent;
}

/* Slick Slider - Arrows */
.prev-slide,
.next-slide {
	flex: none;
	width: 2rem;
	height: 2rem;
	color: #fff;
	background-color: transparent;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all .3s; 
	margin:0 5px;
}
.prev-slide:hover, .next-slide:hover {
	background-color: #898183;
}
.prev-slide:hover svg, .next-slide:hover svg {
	color:var(--white);
	transition: all .3s; 
}
.prev-slide svg, .next-slide svg {
	width: 9px;
	height: 18px; 
	color:#fff;
}

/* Slick Slider - Dots */
.slick-dotted.slick-slider {
	margin-bottom: 30px; 
}
.slick-dots {
	position: absolute;
	bottom: -25px;
	list-style: none;
	display: block;
	text-align: center;
	padding: 0;
	margin: 0;
	width: 100%; 
}
.slick-dots li {
	position: relative;
	display: inline-block;
	margin: 0 5px;
	padding: 0;
	cursor: pointer; 
}
.slick-dots li button {
	border: 0;
	background: #413680;
	display: block;
	height: 20px;
	width: 20px;
	outline: none;
	line-height: 0px;
	font-size: 0px;
	color: transparent;
	padding: 5px;
	cursor: pointer; 
}
.slick-dots li button:hover, .slick-dots li button:focus {
	outline: none; 
}
.slick-dots li button:hover:before, .slick-dots li button:focus:before {
	opacity: 1; 
}
.slick-dots li.slick-active button{
	background: green;
}

/* ===== Custom Styles =====*/
.header {
	padding:3rem 0 0;
}
.header__row {
	padding-bottom:2rem;
	border-bottom:1px solid var(--gray);
}
.logo {
	display: block;
	margin:0 auto 3rem;
	width: 9.8rem;
}
.logo img {
	width: 100%;
}
.language__wrapper {
	margin-left:2rem;
}
.lang-link {
	font-size: 14px;
	font-weight: bold;
	display: block;
	margin-left:1.4em;
}
.lang-link:hover {
	color:var(--red);
}
.lang-link.current {
	color:#bcbcbc;
	pointer-events: none;
}
.menu li {
	font-family: 'Manrope';
	margin:0 1.3em;
	text-transform:uppercase;
	font-size: 14px;
	font-weight: 800;
}
.menu li a:hover {
	color:var(--red);
}
.mobile-menu__content .social-link {
	margin:0 10px;
}
.social-link {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 3.6rem;
	height: 3.6rem;
	border: 1px solid #d9d9d9;
	margin-left: 2rem;
	transition: all 0.25s;
}
.social-link:hover {
	border: 1px solid var(--red);
	transition: all 0.25s;
}
.social-link:hover .icon {
	color:var(--red);
}
.header__mobile {
	display: none;
	border-bottom:1px solid var(--gray);
	padding-bottom:20px;
}
.header__mobile__item {
	flex:1;
}
.search__form {
	padding:1rem;
	background: var(--main-color);
}
.search {
	cursor: pointer;
}
.block__title {
	display: inline-block;
	color:#fff;
	background: var(--main-color);
	text-transform: uppercase;
	font-size: 2.4rem;
	margin-bottom:3rem;
	padding:0 0.7em 0 0.5em;
	font-weight: bold;
	position: relative;
}
.block__title::before {
	content:'';
	position: absolute;
	bottom: 0.2em;
    right: calc(0.7em - 5px);
	width: 0.5rem;
	height:0.5rem;
	border-radius: 50%;
	background: var(--red);
}
.empty-space {
	height: 6rem;
}
.card__info__item {
	font-family: 'Manrope';
	font-size: 1.4rem;
}
.news__img {
	display: block;
	margin-bottom:2rem;
	position: relative;
}
.news__img img {
	width: 100%;
	aspect-ratio: 1.7;
	object-fit: cover;
}
.news__img::before {
	content:'';
	width: 100%;
	height:100%;
	position: absolute;
	top:0;
	left:0;
	background: var(--main-color);
	opacity: 0;
	transition: all 0.25s;
}
.news__img:hover::before {
	opacity: 0.4;
	transition: all 0.25s;
}
.news__card__title {
	display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.news__card__title:hover {
	color:var(--red);
}
.news__card__descript p {
	margin-top:0.5em;
}
.news__card__info {
	margin-top:1rem;
}
.card__info__item {
	padding-right:1rem;
	margin-right:1rem;
	border-right: 1px solid var(--red);
	display: flex;
	align-items: center;
	line-height: 1;
	color:var(--gray)
}
.news__card__info a {
	color:var(--red);
}
.card__info__item:last-child {
	border-right: none;
}
.focus__news__img {
	margin-bottom:3rem;
}
.focus__news__img img {
	width:100%;
	aspect-ratio: 1.6;
	object-fit: cover;
}
.focus__news__title {
	margin-bottom:0.5em;
} 
.first-screen .section__content {
	border-bottom:1px solid var(--gray);
	padding-bottom:5rem;
}
.focus__news .block__title {
	display: none;
}
.action__card {
	padding:4rem 2rem;
	flex: 1;
}
.action__card p {
	color:#fff;
	text-align: center;
	font-size: 1.8rem;
}
.action__card__title {
	display: block;
	font-size: 3rem;
	margin-bottom:0.5em;
	line-height: 1.3;
}
.left__bar, .right__bar {
	width: 20%;
}
.left__bar{
	padding-right:4rem;
}
.right__bar{
	padding-left:4rem;
}
.main__column {
	width: 60%;
	padding:0 4rem;
}
.section__body {
	padding:0 0 0 4rem;
	width: 80%;
}
.focus--text {
	color:var(--red);
	font-size: 1.8rem;
}
.news__grid__area .item, .news__card {
	display: flex;
	flex-direction: column;
}
.news__date {
	font-size: 13px;
	display: block;
	color:#5a5a5a;
}
.aside__item {
	margin-bottom:1.5rem;
}
.alt__news .news__card__info {
	margin-top:1rem;
}
.alt__news .aside__item {
	margin-bottom:2rem;
}
.last__news {
	display: block;
	line-height: 1.4;
}
.last__news:hover {
	color:var(--red);
}
.last__news .icon {
	margin:0 3px;
}
.focus--text .icon {
	color:var(--red);
}
.text__link {
	color:var(--red);
	text-decoration: underline;
}
.sidebar {
	border-right:1px solid #bcbcbc;
}
.bg--main-color .block__title {
	background: #fff;
	color:var(--main-color);
}
.video__slider .slide {
	padding:0 2rem;
}
.video__slider .slick-list {
	margin:0 -2rem;
}
.video__card__content {
	padding:0 2rem 2rem;
	top:55%;
	left:0;
	width: 100%;
	z-index: 1;
}
.video__card::before {
	content:'';
	position: absolute;
	top:0;
	left:0;
	background: linear-gradient(transparent, rgba(0,0,0,0.9));
	width: 100%;
	height: 100%;
} 
.video__time {
	color:#d9d9d9;
	font-size: 1.4rem;
	margin-top:10px;
}
.video__descript {
	display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
	height: 6em;
}
.video__descript:hover {
	color:var(--red);
}
.video__time span {
	width: 0;
	height: 0;
	border-top: 4px solid transparent;
	border-left: 8px solid #d9d9d9;
	border-bottom: 4px solid transparent;
	display: block;
	margin-right:5px;
}
.video__card img {
	width: 100%;
	aspect-ratio: 0.7;
	object-fit: cover;
}
.block__column:first-child .wrap {
	padding-right:3rem;
	border-right:1px solid var(--gray);
}
.block__column {
	position: relative;
}
.block__column:first-child::after {
	content:'';
	width: 1px;
	height:92%;
	right:-3rem;
	bottom:0;
	position: absolute;
	background: var(--gray);
}
.video__slider__area, .common__wrapper {
	overflow: hidden;
}
.article__img__comment {
	font-size: 1.5rem;
	color:#5a5a5a;
	display: block;
	margin-bottom:2em;
}
.alt__news {
	padding-left:2rem;
	border-left:1px solid #bcbcbc;
}
.article__body {
	padding-bottom:4rem;
	border-bottom:1px solid var(--gray);
	margin-bottom:4rem;
}

.article__body .action__card p {
	font-size: 1.8rem;
}
.advice {
	padding: 2rem 0;
	border-top:1px solid #d9d9d9;
	border-bottom:1px solid #d9d9d9;
	margin-bottom:4rem;
}
.advice__img {
	width: 7.8rem;
	margin-right:3rem;
	display: block;
	flex: none;
}
.advice__img img {
	width: 100%;
	aspect-ratio: 1.5;
	object-fit: cover;
}
.advice__subtitle {
	display:block;
	font-size: 12px;
	color:#a9a9a9;
	margin-bottom:5px;
}
.advice__descript a:hover {
	color:var(--red);
}
.article__img {
	width:100%;
	margin-bottom:4rem;
}
.article__subtitle {
	display:block;
	font-size: 1.6rem;
	color:#a9a9a9;
	margin-bottom:1em;
}
.article__list li {
	margin-bottom:0.5em;
}
.article__list li a:hover {
	color:var(--red);
}
.tags li {
	padding-right:1em;
	border-right:1px solid var(--red);
	line-height: 1;
	margin-right:1em;
}
.tags li:last-child {
	border:none;
	margin:0;
}
.tags li a {
	font-size: 1.8rem;
	color:#5a5a5a;
}
.tags li a:hover {
	color:var(--red);
}
.auth__img {
	width: 5.8rem;
	margin-right:2rem;
}
.auth__img img {
	width:100%;
	aspect-ratio: 1;
	object-fit: cover;
	border-radius: 50%;
}
.auth__subtitle {
	font-size: 1.6rem;
	color:#a5a5a5;
	display: block;
}
.auth__name {
	display: block;
	font-size: 2rem;
}
.article__info .news__card__info {
	margin:0 0 0 3rem;
}
.news__card__info.sm-show {
	margin:1rem auto 2rem;
}
.article__title {
	margin-bottom:0.5em;
}

.footer {
	background: #222222;
	padding:4rem 0;
}
.footer__title {
	display: block;
	font-size: 1.6rem;
	margin-bottom:1.5em;
}
.footer__block {
	padding:0 5rem;
	border-left:1px solid rgba(255,255,255,0.2);
}
.footer-nav li {
	color:#bcbcbc;
	font-size: 1.4rem;
	font-family: 'Manrope';
	margin-bottom:1em;
	padding-right:1rem;
}
.footer-nav li a:hover {
	color:#fff;
}
.search__btn {
	top:50%;
	transform: translateY(-50%);
	right:0;
	height: 90%;
	width: 4rem;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #fff;
}
.footer .logo {
	margin:0 5rem 0 0;
}
.footer .social {
	margin-right:4rem;
}
.footer .social-link {
	border: 1px solid #a9a9a9;
	width: 5rem;
	height: 5rem;
}
.footer .social-link:hover {
	border: 1px solid #fff;
}
.footer .social-link:hover .icon {
	color:#fff;
}
.footer__bottom {
	border-top:1px solid var(--gray);
}
.copyright {
	font-size: 1.4rem;
	color:#bcbcbc;
	display: block;
}
.footer__bottom p {
	font-size: 12px;
	color:#fff;
}
.footer__bottom__item .logo {
	display:none;
}
.footer-nav.col-4 {
	column-count: 4;
}
.footer-nav.col-2 {
	column-count: 2;
}
.footer .lang-link {
    margin: 0 0 0 2em;
	color:#fff;
}
.footer .lang-link.current {
	color:#bcbcbc;
	pointer-events: none;
}
.footer__item:first-child {
	flex:1;
}


.theme-nav {
	background: var(--main-color);
	left:0;
	top:100%;
	z-index: 222222;
	padding:5rem 0;
}
.theme-nav .container {
	max-width: 1054px;
    padding: 0 15px;
}
.theme-nav-list.column-2 {
	column-count: 2;
}
.theme-nav-col {
	flex: auto;
}
.theme-nav-list {
	padding-right:2rem;
}
.theme-nav__head {
	padding-bottom:2rem;
	border-bottom:1px solid rgba(255,255,255,0.2);
	margin-bottom:2rem;
}
.theme-nav-title  {
	font-size: 1.4rem;
	font-weight: bold;
	font-family: 'Fira Sans';
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.theme-nav-title::after {
	content:'';
	width: 8px;
	height: 8px;
	border-right: 1px solid #fff;
	border-bottom:1px solid #fff;
	transform: rotate(45deg);
	display: none;
}
.theme-nav-list li {
	color:#fff;
	margin-bottom:1em;
	font-family: 'Manrope';
	font-size: 1.6rem;
}
.theme-nav-list li:last-child {
	margin-bottom:0;
}
.theme-link {
	font-family: 'Manrope';
	margin:0 1.3em;
	text-transform:uppercase;
	font-size: 1.4rem;
	font-weight: 800;
	cursor: pointer;
	transition: all 0.25s;
}
.theme-link:hover {
	color:var(--red);
	transition: all 0.25s;
}
.theme-link:hover .burger span {
	transition: all 0.25s;	
	background-color: var(--red);
}
.burger {
	width:16px;
	display: block;
	margin-right:1rem;
}
.burger span{
	display: block;
	height: 1px;
	background-color: #000;
	border-radius: 2px;	
	transition: all 0.25s;	
}
.burger span:not(:last-child){margin-bottom:4px;}


/* ===== Custom Styles END =====*/


.h1-heading {
	text-align: center;
	font-weight: bold;
	margin-top: 2rem;
	margin-bottom: 6rem;
}

.pager {
	display: flex;
	justify-content: center;
	margin-top: 4rem;
}

.pager li {
	display: inline-block;
	padding: 0.5rem 1rem;
	margin: 0 0.5rem;
	border: 1px solid var(--red);
	color: var(--red);
	text-align: center;
	text-decoration: none;
}

.pager li:hover {
	background: var(--red);
	color: #fff;
}

.pager .active {
	background: var(--red);
	color: #fff;
}



@media (max-width: 767px) {
	.tsxtg {
		font-size:16px;
		max-width:100%;
		margin:auto;
	}
}

@media (min-width: 768px) {
	.tsxtg {
		font-size:18px;
		max-width:70%;
		margin:auto;
	}
	.h1-heading.block__title::before {
		bottom: 0.24em;
		right: calc(0.7em - 10px);
		width: 1rem;
		height: 1rem;
	}
	.h1-heading.block__title {
		font-size: 6.4rem;
	}
}

.focus__news__img {
	max-height: 500px;
    overflow: hidden;
}

.section.first-screen {
	padding-top:30px;
}

blockquote {
	background: #eee;
    padding: 20px;
    padding-left: 80px;
	position: relative;
	margin-top:20px;
	margin-bottom:20px;
	font-size: 2.2rem;
    font-family: 'Manrope';
}

blockquote::before {
	content: '"';
    color: #D2312D;
    font-size: 4em;
    position: absolute;
    left: 40px;
    top: 10px;
}
.main-post-text a {
	color: #D2312D;
}

.main-post-text p:not(:last-child) {
	margin-bottom: 1.2em;
}
.main-post-text p {
	font-size: 18px;
	font-family: 'Manrope';
	text-align: left;
	line-height: 30px;
	
}

.main-post-text h2 {
	font-size: 28px;
	font-weight:bold;
	margin-bottom: 14px;
}

.main-post-text h3 {
	font-size:22px;
	font-weight:bold;
	margin-bottom: 14px;
}

h1.article__title {
	font-size:44px;
}

.main-post-text ol li,
.main-post-text ul li {
	font-size:18px;
	margin-bottom:1rem;
}
.main-post-text ul li::marker,
.main-post-text ol li::marker {
  color: #D2312D; 
  font-size:18px;
}
.main-post-text blockquote {
	margin-bottom:30px;
}

/* Добавочные стили для страницы рейтинга */
.atention {
	padding: 1rem 0;
	border-top: 1px solid #000;
	border-bottom: 1px solid #000;
}

.atention img {
	margin-right: 1rem;
	width: 20px;
	flex: none;
}

.atention__text {
	display: block;
	font-size: 2rem;
}

.raitiong__title {
	display: block;
	font-size: 3.6rem;
	line-height: 1.2;
	margin-bottom: 1.5em;
}

.raiting__content {
	padding: 5rem 0 10rem;
}

.raiting__content p {
	font-size: 2.2rem;
}

.raiting__column {
	margin: 5rem 0;
}

.raiting__block {
	padding: 4rem;
	border: 1px solid silver;
	border-radius: 20px;
}

.raiting__card:last-child {
	margin-bottom: 0;
}

.raiting__card {
	margin-bottom: 3rem;
}

.company__logo {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 12rem;
	width: 18rem;
	border-radius: 10px;
	flex: none;
}

.company__logo.black--bg {
	background: #000;
}

.company__logo.blue--bg {
	background: #2c2c54;
}

.company__logo img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	padding:22px;
	border-radius:10px;
}

.company__name,
.company__grade {
	display: block;
	font-size: 2rem;
	margin-bottom: 0.5em;
	font-family: 'Fira Sans';
}

.company__star__row {
	margin-bottom: 1.5rem;
}

.company__star__row img {
	width: 2rem;
	flex: none;
	margin: 0 1px;
}

.checkpoint__block {
	padding: 3rem;
	border: 1px solid silver;
	border-radius: 15px;
}

.checkpoint:not(:last-child) {
	margin-bottom: 1rem;
}

.checkpoint__icon {
	width: 2.2rem;
	margin: 0.3rem 1rem 0 0;
	flex: none;
}

.checkpoint__icon img {
	width: 100%;
}

.check__text {
	font-size: 1.6rem;
	font-weight: 500;
}

.bonus__text {
	display: block;
	font-size: 2.4rem;
	margin-bottom: 1em;
	line-height: 1.4;
}

.top-raiting {
	border: 2px solid var(--red);
}

.raiting__card__label {
	display: table;
	margin: 0 auto;
	background: var(--red);
	color: #fff;
	padding: 0.3em 4em;
	border-radius: 10px 10px 0 0;
	font-size: 1.6rem;
}

.company__raiting {
	flex: auto;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding: 0 0 0 4rem;
}

.rb__col:last-child {
	padding-left: 4rem;
}

.rb__col:nth-child(2) {
	padding: 0 0 0 4rem;
}

/* Добавочные стили для страницы Гороскопа и Погоды */
.page__head {
	margin-bottom: 4rem;
}

.page__title {
	display: inline-block;
	color: #fff;
	background: var(--main-color);
	text-transform: uppercase;
	padding: 0 0.7em 0 0.5em;
	font-weight: bold;
	position: relative;
	font-size: 5rem;
}

.page__title::before {
	content: '';
	position: absolute;
	bottom: 0.3em;
	right: calc(0.7em - 10px);
	width: 0.8rem;
	height: 0.8rem;
	border-radius: 50%;
	background: var(--red);
}

/* .horoscop__body,
.weather__body {
	padding: 0 5rem;
} */

.horoscop__col {
	border-bottom: 1px solid var(--gray);
	margin-bottom: 4rem;
	padding-bottom: 4rem;
}

.zodiac__card {
	background: #f6f6f6;
	padding: 4rem 3rem;
	margin-bottom: 2rem;
}

.zodiac__img {
	width: 9.9rem;
	margin-right: 3rem;
	flex: none;
}

.zodiac__img img {
	width: 100%;
	aspect-ratio: 1;
	object-fit: contain;
}

.zodiac__title {
	font-size: 2.8rem;
	display: block;
	margin-right: 0.7em;
	line-height: 1.2;
}

.zodiak__date {
	display: block;
	color: #a9a9a9;
	font-weight: bold;
}

.selector__link {
	display: block;
	padding: 0.5em 1.2em;
	font-weight: 500;
	text-transform: uppercase;
	border: 1px solid #a9a9a9;
	margin: 0 1em 1em 0;
	font-size: 1.3rem;
	transition: all 0.25s;
	white-space: nowrap;
}

.selector__link:last-child {
	margin: 0 0 1em 0;
}

.selector__link:hover {
	color: var(--red);
	border: 1px solid var(--red);
	transition: all 0.25s;
}

.selector__link.current {
	color: #fff;
	background: var(--main-color);
	border: 1px solid var(--main-color);
}

.zodiac__descript p {
	font-size: 1.8rem;
	font-family: 'Manrope';
}

.zd__more {
	color: var(--red);
	display: inline-block;
	font-size: 1.6rem;
	font-weight: 600;
	text-decoration: underline;
}

.arr-icon {
	width: 0.6rem;
	height: 1.1rem;
	color: var(--red);
	margin: 0 0.5rem;
}

.back__link {
	color: var(--red);
	font-size: 1.6rem;
	font-weight: 600;
	text-decoration: underline;
}

.back__link .arr-icon {
	transform: rotate(180deg);
}

.zd__toggle {
	display: none;
}

.zd__toggle .icon {
	transform: rotate(90deg);
	margin: 0 0 0 10px;
}

.zodiac__descript p {
	font-size: 1.6rem;
}

.zd__toggle span:nth-child(2) {
	display: none;
}

.zd__toggle.active span:nth-child(2) {
	display: inline-flex;
}

.zd__toggle.active span:first-child {
	display: none;
}

.zd__toggle.active .icon {
	transform: rotate(270deg);
}

.zd__toggle.active {
	transform: none;
	margin-left: 0;
}

.zodiac__img.mobile__pic {
	display: none;
}

.zodiac__slide {
	padding: 2rem;
	border: 1px solid #d9d9d9;
	display: block;
	transition: all 0.25s;
}

.zodiac__slide:hover {
	border: 1px solid var(--red);
	transition: all 0.25s;
}

.zodiac__slide.current {
	border: 1px solid var(--red);
}

.zodiac__slide .zodiac__img {
	width: 6.5rem;
	margin: 0 auto 1rem;
}

.zodiac__slide .zodiac__title {
	font-size: 1.8rem;
	margin-right: 0;
}

.zodiac__slide .zodiak__date {
	font-size: 1.4rem;
}

.zodiac__slider .slide {
	padding: 0 1rem;
}

.zodiac__slider .slick-list {
	margin: 0 -1rem;
}

.zodiac__slider .prev-slide,
.zodiac__slider .next-slide {
	width: 4rem;
	height: 4rem;
	background-color: var(--main-color);
	position: absolute;
	margin: 0;
}

.zodiac__slider .next-slide {
	top: 50%;
	transform: translateY(-50%);
	right: 0;
}

.zodiac__slider .prev-slide {
	display: none !important;
}

.zodiac__slider {
	padding-right: 6rem;
}

.zodiac__content {
	padding: 0 5rem;
}

.zodiac__slider__area {
	margin-bottom: 5rem;
}

.zodiac__body__item .zodiac__img {
	margin: 0 auto 2rem;
}

.zodiac__info__row {
	padding: 1.5rem 3rem;
}

.zodiac__info__text {
	font-size: 1.6rem;
}

.zodiac__info__row:nth-child(odd) {
	background: #f6f6f6;
}

.zodiac__body p {
	margin-bottom: 0.5em;
}

.common__img {
	margin: 3rem 0
}

.common__img img {
	width: 100%;
}

.common__subtitle {
	margin-bottom: 1em;
}

.more__news {
	border-top: 1px solid var(--gray);
	padding-top: 4rem;
}

.zodiac__slider__area {
	overflow: hidden;
}

.horoscop__type {
	display: block;
	margin-bottom: 1em;
	color: #5a5a5a;
	font-size: 1.4rem;
}

.type-icon {
	width: 2.8rem;
	height: 2.8rem;
}

.horoscope__type__wrap {
	margin-bottom: 7rem;
}

.weather__banner {
	padding: 2rem 4rem;
	margin: 3rem 0;
}

.wb__text {
	font-size: 1.6rem;
	display: block;
	margin-bottom: 0.5rem;
}

.wb__temp {
	font-size: 5rem;
	font-weight: bold;
	font-family: 'Manrope';
	line-height: 1.2;
}

.wb__indicator {
	font-size: 2.2rem;
	display: block;
	font-family: 'Manrope';
}

.common__weather {
	margin-bottom: 7rem;
}

.city {
	font-size: 2.8rem;
	line-height: 1;
	display: block;
}

.cw__text {
	font-size: 1.6rem;
}

.current__weather__row {
	padding: 1.5rem 0;
	border-bottom: 1px solid #d9d9d9;
}

.common__weather .item:last-child {
	padding-left: 4rem;
}

.current__weather {
	padding-right: 4rem;
	border-right: 1px solid #d9d9d9;
}

.ws__icon {
	width: 3.5rem;
	margin: 0 auto 1rem;
}

.ws__icon img {
	width: 100%;
}

.ws__time {
	display: block;
	font-size: 12px;
	margin-bottom: 2rem;
}

.weather__slide {
	background: #f6f6f6;
	padding: 2rem;
}

.weather__slider .slide {
	padding: 0 0.5rem;
}

.weather__slider .slick-list {
	margin: 0 -0.5rem;
}

.weather__slider .prev-slide,
.weather__slider .next-slide {
	width: 4rem;
	height: 4rem;
	background-color: var(--main-color);
	position: absolute;
	margin: 0;
}

.weather__slider .next-slide {
	top: 50%;
	transform: translateY(-50%);
	right: 0;
}

.weather__slider .prev-slide {
	display: none !important;
}

.weather__slider {
	padding-right: 6rem;
}

.ws__temp {
	display: block;
	font-family: 'Manrope';
}

.wind__icon {
	width: 1.4rem;
	margin-right: 5px;
}

.wind__icon img {
	width: 100%;
}

.wind {
	font-size: 1.2rem;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 1rem;
}

/* Tabs */
.js--tab {
	cursor: pointer;
}

.tab_content {
	display: none;
}

.tab_content.active {
	display: block;
}

.weather__tabs {
	overflow: auto;
}

.weather__today {
	margin: 3rem 0;
}

.weather__tab {
	border: 1px solid #d9d9d9;
	padding: 2rem;
}

.weather__tabs .tab::after {
	content: '';
	display: block;
	width: 2.5rem;
	height: 2.5rem;
	background: transparent;
	transform: rotate(45deg) translate(0, -2rem);
}

.weather__tabs .tab.active::after {
	background: #f6f6f6;
}

.weather__tabs .active .weather__tab {
	background: #f6f6f6;
	border: 1px solid #f6f6f6;
}

.weather__tabs .active .wt__date {
	font-size: 2.2rem;
	color: var(--main-color);
}

.weather__tabs .active .wt__temp__day {
	font-size: 2.2rem;
}

.weather__tabs .active .wt__temp__night {
	font-size: 1.6rem;
}

.weather__tabs .active .wt__img {
	width: 5rem;
	height: 5rem;
}

.weather__tabs .tab {
	width: 18.5%;
}

.wt__text {
	font-size: 12px;
	display: block;
}

.tab__row {
	margin-top: 1rem;
}

.wt__temp__night {
	color: #a9a9a9;
	font-size: 12px;
	display: block;
}

.wt__temp__day {
	line-height: 1.3;
	display: block;
	font-family: 'Manrope';
}

.wt__img {
	width: 3.7rem;
	height: 3.7rem;
}

.wt__img img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.table__img {
	width: 3.4rem;
	margin: 0 auto;
}

.table__img img {
	width: 100%;
}

.table__row__title {
	text-align: left;
	font-size: 1.3rem !important;
	font-weight: bold;
	color: var(--main-color) !important;
	width: 20%;
	padding: 1rem 1rem 1rem 0;
}

.weather__table__area {
	overflow: auto;
}

.weather__table {
	margin: 0 0 2rem;
	font-size: 1.6rem;
	font-family: 'Manrope';
	font-weight: bold;
	text-align: center;
}

.weather__table tr {
	border: none;
}

.row-1 td {
	font-size: 1.4rem;
}

.row-3 td {
	font-size: 2rem;
	font-weight: bold;
}

.row-4 td {
	font-size: 1.6rem;
	font-weight: bold;
	color: #a9a9a9;
}

.mobile__row {
	display: none;
}

.mobile__row td {
	color: #a9a9a9;
	padding: 3px 0;
	text-align: left;
	font-size: 14px;
}

.weather__table .wind {
	margin-top: 0;
}

.daily__weather .col {
	padding: 0 2.5rem;
	border-right: 1px solid #d9d9d9;
}

.daily__weather .item:first-child .col {
	padding: 0 2.5rem 0 0;
}

.daily__weather .item:last-child .col {
	padding: 0 0 0 3rem;
	border-right: none;
}

.border-none td {
	border: none;
}

.table__title__row td {
	font-size: 1.3rem;
	color: #a9a9a9;
	padding: 0.9rem 0;
}

.dayly__head__subtitle {
	display: block;
	font-size: 12px;
}

.daily__weather {
	margin: 3rem 0;
	overflow: auto;
}

.table__title__row.text--left td {
	text-align: left;
}

.t__head__item {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.table__day {
	font-size: 1.4rem;
}

.table__date {
	font-weight: bold;
	color: var(--main-color);
	font-size: 1.8rem;
}

.text--red {
	color: var(--red);
}

.two--weeks .table__date {
	font-size: 1.4rem;
}

.weather__card {
	border: 1px solid #d9d9d9;
	padding: 1rem;
	display: block;
	transition: all 0.25s;
}

.month__weather {
	grid-template-columns: repeat(7, 1fr);
}

.weather__card .wt__date,
.weather__card .wt__temp__day {
	font-size: 1.5rem;
}

.weather__card .wt__img {
	width: 3rem;
	height: 3rem;
}

.weather__card .wt__text {
	display: none;
}

.week__day {
	color: #a9a9a9;
	font-size: 1.4rem;
	line-height: 1;
}

.weather__card.current {
	background: #f6f6f6;
}

.weather__card:hover {
	background: #f6f6f6;
	transition: all 0.25s;
}

.weather__card.unactive {
	filter: grayscale(100%);
}

.weather__card.unactive .wt__date,
.weather__card.unactive .wt__temp__day {
	color: silver;
}

.position-sticky {
	position: sticky;
}

.sticky__table__title {
	left: 0;
}