/* CSS variables */
:root {
	--font-second: "ProximaNova",
		sans-serif;
	--font-main: "ProximaNovaCond",
		sans-serif;
	--main-text-color: #0F1435;
	--light-text: #84889C;
	--main-border: 1px solid #DCE0E9;
	--main-black-color: #000;
	--main-white-color: #fff;
	--main-gray-color: #C4C4C4;
	--main-orange-color: #F64F3D;
	--main-red-color: #E31B23;
	--main-dark-blue-color: #0A0D28;
	--main-green-color: #039A4A;
	--main-yellow-color: #FFDB2A;
	--gray-background: #f7f7f7;
	--main-border-color: #DCE0E9;
	--content-color: #6B6F87;
	--main-blue-color: #3350EE;
}

/* Fonts */
@font-face {
	font-family: "ProximaNova";
	src: local("ProximaNova-Black"), url("../fonts/ProximaNova-Black.woff2") format("woff2"), url("../fonts/ProximaNova-Black.woff") format("woff");
	font-weight: 900;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: "ProximaNova";
	src: local("ProximaNova-ExtraBold"), url("../fonts/ProximaNova-ExtraBold.woff2") format("woff2"), url("../fonts/ProximaNova-ExtraBold.woff") format("woff");
	font-weight: 800;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: "ProximaNova";
	src: local("ProximaNova-Bold"), url("../fonts/ProximaNova-Bold.woff2") format("woff2"), url("../fonts/ProximaNova-Bold.woff") format("woff");
	font-weight: 700;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: "ProximaNova";
	src: local("ProximaNova-Semibold"), url("../fonts/ProximaNova-Semibold.woff2") format("woff2"), url("../fonts/ProximaNova-Semibold.woff") format("woff");
	font-weight: 600;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: "ProximaNova";
	src: local("ProximaNova-Regular"), url("../fonts/ProximaNova-Regular.woff2") format("woff2"), url("../fonts/ProximaNova-Regular.woff") format("woff");
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: "ProximaNovaCond";
	src: local("ProximaNovaCond-Black"), url("../fonts/ProximaNovaCond-Black.woff2") format("woff2"), url("../fonts/ProximaNovaCond-Black.woff") format("woff");
	font-weight: 900;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: "ProximaNovaCond";
	src: local("ProximaNovaCond-Bold"), url("../fonts/ProximaNovaCond-Bold.woff2") format("woff2"), url("../fonts/ProximaNovaCond-Bold.woff") format("woff");
	font-weight: 700;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: "ProximaNovaCond";
	src: local("ProximaNovaCond-Semibold"), url("../fonts/ProximaNovaCond-Semibold.woff2") format("woff2"), url("../fonts/ProximaNovaCond-Semibold.woff") format("woff");
	font-weight: 600;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: "ProximaNovaCond";
	src: local("ProximaNovaCond-Regular"), url("../fonts/ProximaNovaCond-Regular.woff2") format("woff2"), url("../fonts/ProximaNovaCond-Regular.woff") format("woff");
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}

/* Global CSS reset */
html {
	box-sizing: border-box;
	height: 100%;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

body {
	background-color: var(--background-body);
	min-height: 100%;
	position: relative;
	margin: 0;
	line-height: 1.1;
	-webkit-text-size-adjust: 100%;
	-webkit-font-smoothing: antialiased;
	-webkit-tap-highlight-color: transparent;
	font-family: var(--font-main);
	font-size: clamp(17px, 2vw, 21px);
	font-weight: 400;
	background-color: #EEEEEE;
	letter-spacing: -0.1px;
}

ul,
ol,
li,
p,
h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0;
	padding: 0;
	font-size: inherit;
	font: inherit;
}

ul {
	list-style: none;
}

img,
picture {
	max-width: 100%;
	border: none;
	border-style: none;
	display: inline-block;
	height: auto;
	-o-object-fit: cover;
	object-fit: cover;
	vertical-align: middle;
}

input,
textarea {
	margin: 0;
	padding: 0;
	outline: none;
	background-clip: padding-box;
	font-family: inherit;
	border-radius: 0;
}

input::-moz-placeholder,
textarea::-moz-placeholder {
	transition: opacity 0.3s;
	-moz-transition: opacity 0.3s;
}

input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
	-ms-transition: opacity 0.3s;
	transition: opacity 0.3s;
	-moz-transition: opacity 0.3s;
}

input::placeholder,
textarea::placeholder {
	transition: opacity 0.3s;
	-moz-transition: opacity 0.3s;
}

input:focus::-moz-placeholder,
textarea:focus::-moz-placeholder {
	opacity: 0;
}

input:focus:-ms-input-placeholder,
textarea:focus:-ms-input-placeholder {
	opacity: 0;
}

input:focus::placeholder,
textarea:focus::placeholder {
	opacity: 0;
}

input[type=submit] {
	-webkit-appearance: none;
	cursor: pointer;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
	box-shadow: 0 0 0 30px #fff inset !important;
}

a,
a:visited {
	display: flex;
	text-decoration: none;
	color: inherit;
}

a:hover {
	text-decoration: none;
}

path {
	transition: fill 0.2s;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
	width: 100%;
	max-width: 100%;
	table-layout: auto;
	max-width: 100%;
	overflow-x: auto;
	white-space: nowrap;
	-webkit-overflow-scrolling: touch;
}

/* Global CSS rules */
.scrollup {
	position: fixed;
	right: clamp(15px, 2vw, 35px);
	bottom: 100px;
	cursor: pointer;
	z-index: 50;
	background-color: var(--main-text-color);
	width: 40px;
	height: 40px;
	background-image: url(../img/icons/arrow-up.svg);
	background-position: 50% 50%;
	background-repeat: no-repeat;
	background-size: 40%;
	box-shadow: 0 0 5px 2px rgba(0, 0, 0, 0.1);
	transition: all 0.3s;
	border-radius: 2px;
	transform: translateX(0%);
}

.scrollup:hover {
	background-color: var(--main-red-color);
	box-shadow: 0 0 5px 2px rgba(0, 0, 0, 0.2);
}

.scrollup__hide {
	opacity: 0;
	transform: translateX(50%);
}

.column-title {
	font-weight: bold;
	font-size: 23px;
	line-height: 28px;
	text-transform: uppercase;
	color: var(--main-text-color);
	position: relative;
	padding-right: 28px;
}

.column-title::after {
	position: absolute;
	content: "///";
	width: 18px;
	height: 100%;
	display: flex;
	align-items: flex-end;
	bottom: 0;
	right: 0;
}

.column-title.red-title {
	color: var(--main-red-color);
}

.border-bottom-list {
	display: flex;
	flex-direction: column;
	gap: 18px;
}

.border-bottom-list li {
	border-bottom: var(--main-border);
	padding-bottom: 18px;
}

.border-top-list {
	display: flex;
	flex-direction: column;
	gap: clamp(10px, 2vw, 18px);
}

.border-top-list li {
	border-bottom: var(--main-border);
	padding-bottom: 18px;
}

.border-top-list li:last-child {
	padding-bottom: 0;
	border-bottom: 0;
}

.medium-banner {
	max-width: 365px;
	margin: clamp(5px, 2vw, 22px) auto;
	justify-content: center;
}

.search {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.1);
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 100;
	transition: opacity 0.3s, z-index 0.3s;
}

.search.is-hidden {
	opacity: 0;
	pointer-events: none;
	z-index: -1;
}

.search.is-hidden .search__inner {
	transform: translateY(-30%);
}

.search__inner {
	background-color: #fff;
	width: clamp(300px, 70vw, 860px);
	padding: 36px 30px 40px;
	transition: transform 0.4s ease-in-out;
}

.search__inner h3 {
	font-weight: 700;
	font-size: 21px;
	line-height: 23px;
	text-transform: uppercase;
	margin-bottom: 23px;
}

.search__selects {
	display: flex;
	justify-content: space-between;
	gap: 20px;
}

.search__form {
	display: flex;
	flex-direction: column;
	gap: 23px;
}

.search__form-input {
	border: var(--main-border);
	padding: 7px 12px 5px 40px;
	font-size: 14px;
	line-height: 35px;
	font-family: var(--font-second);
	background-image: url(../img/icons/loupe.svg);
	background-repeat: no-repeat;
	background-position: 12px center;
	background-size: 19px;
}

.search__form-input::-moz-placeholder {
	color: var(--light-text);
}

.search__form-input:-ms-input-placeholder {
	color: var(--light-text);
}

.search__form-input::placeholder {
	color: var(--light-text);
}

.search__form-button {
	background-color: var(--main-green-color);
	border: none;
	color: #fff;
	padding: 14px 12px 12px;
	font-size: 15px;
	line-height: 23px;
	text-transform: uppercase;
	font-weight: 700;
	transition: letter-spacing 0.2s, background-color 0.2s;
}

.search__form-button:hover {
	letter-spacing: 2px;
	background-color: var(--main-text-color);
}

.custom-select {
	font-family: var(--font-second);
	width: 100%;
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 10px;
	font-size: 14px;
}

.custom-select.is-divided::before {
	position: absolute;
	content: "";
	width: 1px;
	height: 55%;
	top: 50%;
	transform: translateY(-50%);
	background-color: #DEDFE5;
	right: 39px;
}

.custom-select span {
	font-weight: 600;
	font-size: 15px;
	line-height: 23px;
	text-transform: uppercase;
	font-family: var(--font-main);
}

.custom-select select {
	display: none;
}

.custom-select__selected {
	padding: 12px 40px 13px 14px;
	cursor: pointer;
	z-index: 99;
	border: var(--main-border);
	position: relative;
}

.custom-select__selected:after {
	background-image: url(../img/icons/angle-down.svg);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center center;
	width: 10px;
	height: 7px;
	position: absolute;
	content: "";
	top: 50%;
	transform: translateY(-50%);
	right: 14px;
	transition: 0.2s;
}

.custom-select__selected.is-active:after {
	transform: rotate(180deg) translateY(50%);
}

.custom-select__item {
	transition: color 0.3s;
	cursor: pointer;
	padding: 7px 0;
}

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

.custom-select__list {
	position: absolute;
	top: 105%;
	left: 0;
	width: 100%;
	z-index: 100;
	transition: opacity 0.3s, visibility 0.3s;
	overflow: hidden;
	background-color: #fff;
	color: var(--light-text);
	padding: 15px 20px;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.custom-select__list.is-hide {
	opacity: 0;
	pointer-events: none;
	visibility: hidden;
}

/* Sliders buttons */
.swiper-button-next,
.swiper-button-prev {
	position: static;
	width: 20px;
	height: 12px;
	background-position: center center;
	background-size: contain;
	background-repeat: no-repeat;
	margin: 0;
	outline: none;
	padding: 20px 0;
}

.swiper-button-next::after,
.swiper-button-prev::after {
	display: none;
}

.swiper-button-next {
	background-image: url(../img/icons/arrow-left.svg);
}

.swiper-button-prev {
	background-image: url(../img/icons/arrow-right.svg);
}

/* Containers */
.container {
	margin: 0 auto;
	max-width: 1410px;
	background-color: var(--main-white-color);
}

.flex-horizontal {
	display: flex;
	gap: clamp(15px, 2vw, 30px);
}

.flex-vertical {
	display: flex;
	flex-direction: column;
	gap: clamp(15px, 2vw, 30px);
}

.df-column {
	display: flex;
	flex-direction: column;
	align-items: center;
}

/* Hover rules */
.link-hover {
	position: relative;
	padding: 3px 0;
	display: inline-flex;
}

.link-hover::after {
	position: absolute;
	content: "";
	width: 0%;
	height: 2px;
	background-color: var(--title-color);
	left: 50%;
	transform: translateX(-50%);
	bottom: 0;
	transition: all 0.2s;
	background-color: var(--main-text-color);
}

.link-hover:hover::after {
	width: 100%;
}

.image-hover:hover .post-sidebar-big__label,
.image-hover:hover .post-large__label,
.post-global__image-wrap:hover .post-sidebar-big__label,
.post-global__image-wrap:hover .post-large__label,
.hovered-block:hover .post-sidebar-big__label,
.hovered-block:hover .post-large__label {
	background-color: var(--main-green-color);
	letter-spacing: 2px;
}

/* Animations */
@-webkit-keyframes arrow {
	0% {
		transform: translate(0, -50%);
	}

	50% {
		transform: translate(15%, -50%);
	}

	100% {
		transform: translate(0, -50%);
	}
}

@keyframes arrow {
	0% {
		transform: translate(0, -50%);
	}

	50% {
		transform: translate(15%, -50%);
	}

	100% {
		transform: translate(0, -50%);
	}
}

@-webkit-keyframes socials {
	0% {
		transform: translateY(0);
	}

	50% {
		transform: translateY(-15%);
	}

	100% {
		transform: translateY(0);
	}
}

@keyframes socials {
	0% {
		transform: translateY(0);
	}

	50% {
		transform: translateY(-15%);
	}

	100% {
		transform: translateY(0);
	}
}

/* Burger */
/* Burger css */
.burger {
	cursor: pointer;
	display: none;
	justify-content: center;
	align-items: center;
	width: 30px;
	height: 30px;
	z-index: 10;
}

.burger__main {
	position: absolute;
	height: 100%;
	width: 100%;
	display: grid;
	grid-template-columns: 1fr;
	grid-template-rows: auto;
	align-items: center;
}

.burger__main span {
	display: block;
	width: 20px;
	height: 2px;
}

.burger__main span:nth-child(1) {
	transition-delay: 0.5s;
}

.burger__main span:nth-child(2) {
	transition-delay: 0.625s;
}

.burger__main span:nth-child(3) {
	transition-delay: 0.75s;
	width: 13px;
}

.burger__toggle {
	width: 20px;
	height: 20px;
	position: relative;
	cursor: pointer;
}

.burger__toggle span {
	position: relative;
	background: #000;
	border-radius: 2px;
	transition: 0.2s ease-in-out;
}

.burger__cross {
	position: absolute;
	width: 20px;
	height: 20px;
	transform: rotate(45deg);
}

.burger__cross span:nth-child(1) {
	height: 0%;
	width: 2px;
	position: absolute;
	top: 0px;
	left: 50%;
	transform: translateX(-50%);
	transition-delay: 0s;
}

.burger__cross span:nth-child(2) {
	width: 0;
	height: 2px;
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	transition-delay: 0.25s;
}

.burger__toggle.is-active .burger__main span {
	width: 0;
}

.burger__toggle.is-active .burger__main span:nth-child(1) {
	transition-delay: 0s;
}

.burger__toggle.is-active .burger__main span:nth-child(2) {
	transition-delay: 0.125s;
}

.burger__toggle.is-active .burger__main span:nth-child(3) {
	transition-delay: 0.25s;
}

.burger__toggle.is-active .burger__cross span:nth-child(1) {
	height: 100%;
	transition-delay: 0.625s;
}

.burger__toggle.is-active .burger__cross span:nth-child(2) {
	width: 100%;
	transition-delay: 0.375s;
}

/* Burger css end */
/* Main css */
/* Breadcrumbs */
.breadcrumbs {
	display: flex;
	gap: 9px;
	font-family: Proxima Nova;
	font-weight: 600;
	font-size: 14px;
	line-height: 17px;
	letter-spacing: 0.02em;
	color: var(--content-color);
}

.breadcrumbs li {
	transition: color 0.3s;
}

.breadcrumbs li:hover {
	color: var(--main-red-color);
}

.breadcrumbs li:last-child:hover {
	color: inherit;
}

.breadcrumbs li+li {
	position: relative;
	padding-left: 12px;
}

.breadcrumbs li+li:before {
	position: absolute;
	content: "";
	width: 3px;
	height: 3px;
	border-radius: 50%;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	background-color: var(--content-color);
}

/* Top banner */
.top-banner {
	position: fixed;
	z-index: -1;
	top: 0;
	left: 0;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 80vh;
	background-image: url(../img/banners/banner.jpg);
	background-repeat: no-repeat;
	background-position: center top;
	background-size: cover;
}

@supports (background-image: url(../img/banners/advertising.webp)) {
	.top-banner {
		background-image: url(../img/banners/banner.webp);
	}
}

/* Header */
.header {
	margin-top: clamp(50px, 15vw, 250px);
}

.header__top {
	background-color: var(--gray-background);
	display: flex;
	align-items: stretch;
	justify-content: space-between;
	font-size: 14px;
}

.header__top-nav {
	padding: 17px clamp(25px, 4vw, 40px);
}

.header__top-list {
	display: flex;
	-moz-column-gap: clamp(15px, 2vw, 20px);
	column-gap: clamp(15px, 2vw, 20px);
	font-weight: 600;
	color: var(--main-text-color);
	font-family: var(--font-second);
}

.header__top-list a {
	flex-shrink: 0;
}

.header__top-list a.uppercase {
	text-transform: uppercase;
}

.header__top-actions {
	display: flex;
	align-items: stretch;
	color: #10171D;
	font-weight: 700;
}

.header__top-actions a {
	text-transform: uppercase;
	display: flex;
	align-items: center;
	-moz-column-gap: 8px;
	column-gap: 8px;
	padding: clamp(10px, 2vw, 17px) clamp(15px, 2vw, 30px);
	transition: background-color 0.3s, letter-spacing 0.3s;
	flex-shrink: 0;
}

.header__top-actions a span {
	flex-shrink: 0;
}

.header__top-actions a img {
	max-width: 19px;
}

.header__top-actions a:nth-child(1) {
	background-color: #E2EAED;
}

.header__top-actions a:nth-child(1):hover {
	background-color: #d1d6d8;
}

.header__top-actions a:nth-child(2) {
	background-color: var(--main-yellow-color);
}

.header__top-actions a:nth-child(2):hover {
	background-color: #F0C90A;
}

.header__middle {
	padding: 25px clamp(25px, 4vw, 40px) 30px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	background-color: var(--main-white-color);
	font-family: var(--font-second);
}

.header__middle-left,
.header__middle-right {
	display: flex;
	align-items: center;
}

.header__middle-left {
	-moz-column-gap: 30px;
	column-gap: 30px;
	font-size: 14px;
	color: var(--light-text);
}

.header__middle-calendar {
	-moz-column-gap: 10px;
	column-gap: 10px;
	display: flex;
	align-items: center;
}

.header__middle-weather {
	-moz-column-gap: 7px;
	column-gap: 7px;
	display: flex;
	align-items: center;
}

.header__middle-logo {
	max-width: 209px;
}

.header__middle-right {
	-moz-column-gap: 35px;
	column-gap: 35px;
	font-size: 14px;
	color: var(--light-text);
}

.header__search:hover path {
	fill: red;
}

.header__socials {
	display: flex;
	align-items: center;
	-moz-column-gap: 30px;
	column-gap: 30px;
}

.header__socials a:hover path {
	fill: red;
}

.header__video {
	gap: 11px;
	display: flex;
	align-items: center;
}

.header__video-image {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	overflow: hidden;
}

.header__video-box {
	display: flex;
	flex-direction: column;
	gap: 5px;
}

.header__bottom {
	font-weight: 700;
	font-size: 15px;
	letter-spacing: normal;
}

.header__bottom-topnav {
	display: flex;
	align-items: center;
	justify-content: space-between;
	text-transform: uppercase;
	letter-spacing: -0.01em;
	color: #fff;
	overflow: hidden;
}

.header__bottom-topnav a {
	display: flex;
	padding: 20px clamp(10px, 2vw, 30px);
	transition: background-color 0.3s;
}

.header__bottom-topnav a::after {
	background-color: #fff;
}

.header__bottom-topnav a.accueil-btn {
	background-color: var(--main-red-color);
	padding: 20px clamp(10px, 2vw, 40px);
	flex-shrink: 0;
}

.header__bottom-topnav a.accueil-btn:hover {
	background-color: #C2070F;
}

.header__bottom-topnav a.blogs-btn {
	background-color: var(--main-green-color);
	padding: 20px clamp(10px, 2vw, 40px);
	flex-shrink: 0;
}

.header__bottom-topnav a.blogs-btn:hover {
	background-color: #007B3A;
}

.header__bottom-topnav-list {
	display: flex;
	align-items: center;
	background-color: var(--main-dark-blue-color);
	flex: 1 1 auto;
	justify-content: center;
}

.header__bottom-topnav-list a {
	white-space: nowrap;
}

.header__bottom-topnav-list li+li a::before {
	position: absolute;
	content: "";
	width: 1px;
	height: 30%;
	background-color: #57626B;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
}

.header__bottom-depeches {
	padding: 6px 10px;
	background-color: var(--gray-background);
	transition: all 0.2s;
}

.header__bottom-depeches:hover {
	background-color: var(--main-red-color);
	color: #fff;
}

.header__bottom-bottomnav {
	color: var(--main-text-color);
	display: flex;
	align-items: center;
	padding: 30px clamp(10px, 2vw, 40px);
	text-transform: uppercase;
	gap: 8px;
}

.header__bottom-bottomnav a {
	flex-shrink: 0;
}

.header__bottom-bottomnav a.nos-videos {
	background-color: transparent;
	margin-left: auto;
	padding-right: 30px;
	position: relative;
}

.header__bottom-bottomnav a.nos-videos::before {
	position: absolute;
	content: "";
	width: 20px;
	height: 8px;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
	background-image: url(../img/icons/arrow-right-header.svg);
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
}

.header__bottom-bottomnav a.nos-videos:hover::before {
	-webkit-animation: arrow infinite 1s linear;
	animation: arrow infinite 1s linear;
}

.header__bottom-bottomnav-list {
	display: flex;
	align-items: center;
	gap: 7px;
	font-size: 14px;
	line-height: 17px;
	font-weight: 600;
}

.header__bottom-bottomnav-list a {
	padding: 6px 10px;
	background-color: var(--gray-background);
	transition: all 0.2s;
}

.header__bottom-bottomnav-list a:hover {
	background-color: var(--main-text-color);
	color: #fff;
}

div.header__video-image {
	align-items: stretch;
}

.mobile-menu {
	position: fixed;
	height: 100%;
	top: 0;
	left: 0;
	width: 80vw;
	background-color: #10171D;
	padding: 33px clamp(20px, 4vw, 42px) 55px 0;
	z-index: 99;
	color: #fff;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	transform: translateX(-300%);
	transition: transform 0.5s;
}

.mobile-menu.is-active {
	transform: translateX(0);
}

.mobile-menu__close {
	cursor: pointer;
}

.mobile-menu__top {
	display: flex;
	justify-content: space-between;
	align-items: center;
	text-transform: uppercase;
	font-weight: 700;
	font-size: 14px;
	line-height: 17px;
	padding-left: clamp(20px, 3vw, 42px);
}

.mobile-menu__top-link {
	position: relative;
	padding-left: 25px;
}

.mobile-menu__top-link::before {
	position: absolute;
	content: "";
	width: 18px;
	height: 18px;
	left: 0;
	top: 48%;
	transform: translateY(-50%);
	background-image: url(../img/icons/user-white.svg);
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center center;
}

.mobile-menu__list {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	text-transform: uppercase;
	gap: clamp(15px, 3vw, 35px);
	font-weight: 700;
	font-size: 19px;
	line-height: 21px;
}

.mobile-menu__list li {
	padding-left: clamp(20px, 3vw, 42px);
}

.mobile-menu__list li:nth-child(1) {
	background-color: var(--main-red-color);
	padding: 20px 25px 20px clamp(20px, 3vw, 42px);
}

.mobile-menu__list-videos {
	padding-left: 35px;
	position: relative;
}

.mobile-menu__list-videos:before {
	position: absolute;
	content: "";
	width: 26px;
	height: 26px;
	left: 0;
	top: 48%;
	transform: translateY(-50%);
	background-image: url(../img/icons/mobile-menu-play.svg);
	background-repeat: no-repeat;
	background-position: center center;
}

.mobile-menu__socials {
	display: flex;
	align-items: center;
	gap: 18px;
	padding-left: clamp(20px, 3vw, 42px);
}

/* Post blocks */
.post-global {
	display: inline-flex;
	flex-direction: column;
	position: relative;
}

.post-global__info {
	color: var(--light-text);
	font-size: 14px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	-moz-column-gap: 15px;
	column-gap: 15px;
	row-gap: 5px;
	font-family: var(--font-second);
}

.post-global__info span:nth-child(2) {
	position: relative;
	padding-left: 20px;
}

.post-global__info span:nth-child(2)::before {
	position: absolute;
	content: "";
	width: 14px;
	height: 14px;
	top: 0;
	left: 0;
	background-image: url(../img/icons/chat-dark-gray.svg);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: contain;
}

.post-global__content {
	color: var(--main-text-color);
}

.post-global__content-link {
	font-weight: bold;
	font-size: 21px;
	line-height: 23px;
	margin-bottom: 10px;
	letter-spacing: -1px;
}

.post-global__image-wrap {
	position: relative;
	max-width: 100%;
	max-height: 190px;
	overflow: hidden;
	margin-bottom: 15px;
}

.post-global__label {
	position: absolute;
	content: "";
}

.post-global__label.play-btn {
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 15;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: contain;
	width: 46px;
	height: 47px;
}

.post-large__image-wrap {
	position: relative;
}

.post-large__label {
	position: absolute;
	bottom: 0;
	left: 0;
	background-color: var(--main-red-color);
	padding: 4px 11px;
	font-weight: 700;
	font-size: 13px;
	line-height: 16px;
	text-align: center;
	text-transform: uppercase;
	color: #FFFFFF;
	z-index: 10;
	letter-spacing: 0.3px;
	transition: letter-spacing 0.3s, background-color 0.5s;
}

.post-large__bottom {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	-moz-column-gap: 20px;
	column-gap: 20px;
	row-gap: 5px;
	font-family: var(--font-second);
}

.post-large__bottom span {
	position: relative;
	color: var(--light-text);
	font-size: 14px;
}

.post-large__bottom span::before {
	position: absolute;
	content: "";
	top: 48%;
	left: 0;
	transform: translateY(-50%);
	background-position: center center;
	background-size: contain;
	background-repeat: no-repeat;
	width: 14px;
	height: 14px;
}

.post-large__bottom span:nth-child(1) {
	padding-left: 21px;
}

.post-large__bottom span:nth-child(1)::before {
	background-image: url(../img/icons/clock.svg);
}

.post-large__bottom span:nth-child(2) {
	color: var(--main-text-color);
}

.post-large__bottom span:nth-child(2)::before {
	background-color: var(--light-text);
	border-radius: 50%;
	width: 3px;
	height: 3px;
	left: -11px;
}

.post-large__bottom span:nth-child(3) {
	padding-left: 20px;
}

.post-large__bottom span:nth-child(3)::before {
	background-image: url(../img/icons/chat-dark-gray.svg);
}

.post-large__text {
	color: var(--content-color);
	margin-bottom: 18px;
	font-size: 17px;
	line-height: 20px;
}

.post-main {
	margin-bottom: 27px;
}

.post-main__image-wrap {
	margin-bottom: 10px;
	position: relative;
}

.post-main__image-link {
	max-height: 400px;
	overflow: hidden;
}

.post-main__label {
	bottom: 7px;
	left: 50%;
	transform: translateX(-50%);
	transition: letter-spacing 0.3s, background-color 0.5s;
}

.post-main__content {
	color: var(--main-text-color);
}

.post-main__image-wrap::before {
	position: absolute;
	content: '';
	background-color: white;
	left: 50%;
	transform: translateX(-50%);
	bottom: 0;
	width: 95%;
	height: 20px;
}

.post-main__content-link {
	font-weight: 900;
	text-transform: uppercase;
	margin-bottom: 13px;
	font-size: clamp(25px, 3vw, 41px);
	line-height: clamp(26px, 3vw, 36px);
	text-align: center;
}

.post-central-column {
	display: flex;
	gap: clamp(10px, 2vw, 23px);
	align-items: center;
}

.post-central-column__image {
	max-width: 165px;
	max-height: 130px;
	overflow: hidden;
}

.post-central-column__content {
	display: flex;
	flex-direction: column;
}

.post-central-column__links {
	font-weight: 700;
	color: var(--main-text-color);
	margin-bottom: 12px;
}

.post-central-column__links a {
	display: flex;
}

.post-central-column__links a:nth-child(1) {
	color: var(--main-red-color);
	transition: color 0.2s;
	font-size: 14px;
	margin-bottom: 10px;
	text-transform: uppercase;
}

.post-central-column__links a:nth-child(1):hover {
	color: var(--main-blue-color);
}

.post-central-column__links a:nth-child(2) {
	font-size: clamp(18px, 2vw, 21px);
	line-height: clamp(21px, 2vw, 23px);
}

.post-central-column__info {
	font-size: clamp(12px, 1vw, 14px);
	color: var(--light-text);
	display: flex;
	flex-wrap: wrap;
	-moz-column-gap: 20px;
	column-gap: 20px;
	row-gap: 5px;
	font-family: var(--font-second);
}

.post-central-column__info span:nth-child(2) {
	padding-left: 20px;
	position: relative;
}

.post-central-column__info span:nth-child(2)::before {
	position: absolute;
	content: "";
	width: 14px;
	height: 14px;
	left: 0;
	background-image: url(../img/icons/chat.svg);
	background-repeat: no-repeat;
	background-position: 50% 50%;
}

.post-content-vertical__image-wrap {
	margin-bottom: clamp(15px, 2vw, 22px);
}

.post-content-vertical__image-link {
	max-height: 400px;
	overflow: hidden;
}

.post-content-vertical__content {
	color: var(--main-text-color);
}

.post-content-vertical__content-link {
	font-size: clamp(25px, 3vw, 33px);
	line-height: clamp(26px, 3vw, 33px);
	font-weight: 700;
	text-transform: uppercase;
	margin-bottom: 15px;
}

.post-content-vertical__bottom {
	justify-content: flex-start;
}

.post-content-horizontal {
	max-width: 970px;
	display: grid;
	grid-template: 1fr/auto auto;
	align-items: center;
	gap: clamp(15px, 2vw, 30px);
}

.post-content-horizontal__image {
	max-width: 330px;
	max-height: 200px;
	overflow: hidden;
}

.post-content-horizontal__bottom {
	justify-content: flex-start;
}

.post-content-horizontal__bottom span:nth-child(2) {
	color: var(--light-text);
}

.post-content-horizontal__content-top {
	display: flex;
	flex-direction: column;
	color: var(--main-text-color);
	margin-bottom: 12px;
	font-weight: 700;
}

.post-content-horizontal__content-label {
	font-size: 14px;
	line-height: 17px;
	text-transform: uppercase;
	color: var(--main-blue-color);
	transition: color 0.2s;
	margin-bottom: 12px;
}

.post-content-horizontal__content-label:hover {
	color: var(--main-red-color);
}

.post-content-horizontal__content-link {
	font-size: 28px;
	line-height: 30px;
}

.post-image {
	width: 100%;
	z-index: 1;
	transition: transform 0.3s;
}

.post-image picture,
.post-image img {
	width: 100%;
}

.post-small {
	width: 100%;
	max-height: 190px;
	justify-content: flex-end;
}

.post-small__content {
	position: absolute;
	color: #fff;
	z-index: 10;
	padding: clamp(10px, 2vw, 24px) clamp(10px, 2vw, 22px);
}

.post-small__text {
	font-size: 23px;
	line-height: 24px;
	margin-bottom: 9px;
	font-weight: 700;
}

.post-small__image {
	min-height: 190px;
	max-height: 400px;
	position: relative;
	overflow: hidden;
}

.post-small__image img,
.post-small__image picture {
	min-height: 190px;
	width: 100%;
}

.post-small__image::before {
	position: absolute;
	content: "";
	width: 100%;
	height: 100%;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.75) 100%);
	top: 0;
	left: 0;
	z-index: 5;
}

.post-small__info {
	color: #F8F9FC;
}

.post-small__info span:nth-child(2)::before {
	background-image: url(../img/icons/chat-gray.svg);
}

.post-sidebar-big {
	border-bottom: var(--main-border);
	padding-bottom: 15px;
	width: 100%;
}

.post-sidebar-big.no-border {
	border: 0;
	padding-bottom: 0;
}

.post-sidebar-big__label {
	font-weight: 700;
	top: 0;
	left: 0;
	background-color: #10171D;
	padding: 4px 10px;
	z-index: 10;
	color: #fff;
	font-size: 13px;
	line-height: 16px;
	text-align: center;
	letter-spacing: 0.3px;
	text-transform: uppercase;
	transition: letter-spacing 0.3s, background-color 0.5s;
}

.post-sidebar-video {
	border-bottom: var(--main-border);
	padding-bottom: 15px;
}

.post-sidebar-video__label {
	background-image: url(../img/icons/play-btn-black.svg);
}

.post-sidebar-featured {
	border-bottom: 0;
	padding-bottom: 0;
}

.post-sidebar-featured__label {
	background-image: url(../img/icons/play-btn-white.svg);
}

.post-sidebar-featured__inner {
	display: flex;
	align-items: flex-start;
	gap: 15px;
}

.post-sidebar-featured__number {
	line-height: 0.9;
	font-size: 44px;
	color: var(--main-red-color);
	font-weight: 600;
}

.post-sidebar-featured__info {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 14px;
	color: var(--main-text-color);
}

.post-sidebar-featured__info a {
	font-weight: 700;
	text-transform: uppercase;
	transition: color 0.2s;
}

.post-sidebar-featured__info a:hover {
	color: var(--main-red-color);
}

.post-sidebar-featured__info span {
	display: inline-flex;
	position: relative;
	color: var(--light-text);
	padding-left: 11px;
}

.post-sidebar-featured__info span:before {
	position: absolute;
	content: "";
	width: 3px;
	height: 3px;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	border-radius: 50%;
	background-color: var(--light-text);
}

.post-aligned {
	display: inline-flex;
	align-items: center;
	gap: 15px;
	color: var(--main-text-color);
}

.post-aligned__image {
	width: 80px;
	height: 80px;
	overflow: hidden;
	flex-shrink: 0;
}

.post-aligned__link {
	max-width: 203px;
	font-size: 19px;
	line-height: 21px;
	font-weight: 600;
}

.post-radio {
	display: flex;
	align-items: center;
	gap: 17px;
}

.post-radio {
	padding: 20px 15px 20px 20px;
	border: var(--main-border);
}

.post-radio__image {
	height: 65px;
	width: 65px;
}

.post-radio__content {
	display: flex;
	flex-direction: column;
	gap: 9px;
	align-items: flex-start;
	font-weight: 700;
}

.post-radio__content p {
	font-size: 16px;
	line-height: 21px;
	color: var(--main-text-color);
}

.post-radio__content p span {
	color: var(--main-red-color);
}

.post-radio__content-label {
	background-color: var(--main-green-color);
	font-size: 12px;
	text-transform: uppercase;
	font-size: 12px;
	padding: 7px 8px;
	text-transform: uppercase;
	display: inline-block;
	color: var(--main-white-color);
	position: relative;
	margin-right: 30px;
}

.post-radio__content-label::after {
	position: absolute;
	content: "";
	width: 17px;
	height: 16px;
	right: -30px;
	top: 50%;
	transform: translateY(-50%);
	background-image: url(../img/icons/volume.svg);
	background-repeat: no-repeat;
	background-position: center center;
}

.post-medium-vertical__image {
	margin-bottom: 0;
}

.post-medium-vertical__bottom {
	display: flex;
	flex-direction: column;
	align-items: center;
	background-color: #F8F9FC;
	padding: 20px;
	font-weight: 700;
}

.post-medium-vertical__bottom .post-small__info {
	color: #84889C;
	font-weight: 400;
}

.post-medium-vertical__bottom .post-small__info span:nth-child(2)::before {
	background-image: url(../img/icons/chat-dark-gray.svg);
}

.post-medium-vertical__label {
	margin-bottom: 8px;
}

.post-medium-vertical__label span {
	text-transform: uppercase;
	color: var(--main-red-color);
	font-size: 14px;
	line-height: 17px;
}

.post-medium-vertical__link {
	margin-bottom: 13px;
	text-align: center;
}

.post-medium-vertical__link span {
	font-size: 21px;
	line-height: 23px;
	color: var(--main-text-color);
}

.post-high-vertical {
	margin: clamp(20px, 4vw, 45px) 0;
}

.post-high-vertical__image {
	margin-bottom: 0;
}

.post-high-vertical__top {
	display: flex;
	flex-direction: column;
	background-color: #F8F9FC;
	padding: 20px;
	font-weight: 700;
}

.post-high-vertical__top .post-small__info {
	color: #84889C;
	font-weight: 400;
}

.post-high-vertical__top .post-small__info span:nth-child(2)::before {
	background-image: url(../img/icons/chat-dark-gray.svg);
}

.post-high-vertical__label {
	margin-bottom: 8px;
}

.post-high-vertical__label span {
	text-transform: uppercase;
	color: var(--main-red-color);
	font-size: 14px;
	line-height: 17px;
}

.post-high-vertical__link {
	margin-bottom: 13px;
}

.post-high-vertical__link span {
	font-size: 21px;
	line-height: 23px;
	color: var(--main-text-color);
}

/* Main section */
.main__inner {
	display: grid;
	grid-template: 1fr/clamp(300px, 20vw, 365px) 1fr clamp(300px, 20vw, 365px);
	border-top: var(--main-border);
	border-bottom: var(--main-border);
}

.main__column {
	padding: clamp(15px, 3vw, 40px) clamp(10px, 2vw, 20px) clamp(20px, 4vw, 50px);
	display: flex;
	flex-direction: column;
	gap: clamp(10px, 2vw, 18px);
}

.main__column-left {
	padding-left: clamp(10px, 3vw, 40px);
}

.main__column-center {
	border-right: var(--main-border);
	border-left: var(--main-border);
	width: auto;
}

.main__column-center .flex-horizontal {
	border-bottom: var(--main-border);
	margin-bottom: 12px;
}

.main__column-center .flex-horizontal div {
	border-bottom: 0;
}

.main__column-right {
	padding-right: clamp(10px, 3vw, 40px);
}

.main__column-right-list {
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.main__sidebar-list {
	display: flex;
	flex-direction: column;
	color: var(--main-text-color);
	font-size: clamp(18px, 2vw, 19px);
	line-height: clamp(20px, 2vw, 21px);
	row-gap: 11px;
}

.main__sidebar-list li {
	position: relative;
	padding: 0 0 clamp(10px, 2vw, 18px) clamp(15px, 2vw, 18px);
	max-width: 300px;
	display: flex;
	align-items: center;
	border-bottom: var(--main-border);
}

.main__sidebar-list li:last-child {
	border-bottom: 0;
}

.main__sidebar-list li.post-mini-left {
	padding-left: 0;
}

.main__sidebar-list li.post-mini-right {
	padding-right: 0;
}

.main__sidebar-list li:hover::before {
	background-color: var(--main-red-color);
}

.main__sidebar-list li::before {
	position: absolute;
	content: "";
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background-color: var(--main-text-color);
	left: 0;
	top: 7px;
	transition: background-color 0.3s;
}

.main__sidebar-list li.list-video-item {
	padding-left: 40px;
}

.main__sidebar-list li.list-video-item::before {
	width: 26px;
	height: 26px;
	background-image: url(../img/icons/play-btn-orange.svg);
	background-repeat: no-repeat;
	background-position: center center;
	background-color: transparent;
}

.main__sidebar-list li.post-aligned::before {
	display: none;
}

.main__more-button {
	display: flex;
	align-items: center;
	justify-content: center;
	text-transform: uppercase;
	color: var(--main-text-color);
	font-weight: 700;
	margin-top: 7px;
	position: relative;
}

.main__more-button::before {
	position: absolute;
	content: "";
	width: 100%;
	height: 1px;
	background-color: var(--main-border-color);
	z-index: 1;
}

.main__more-button a {
	font-size: 15px;
	line-height: 23px;
	z-index: 2;
	display: flex;
	padding: 12px 43px 11px;
	border: var(--main-border);
	background-color: #fff;
	transition: border-color 0.2s;
}

.main__more-button a:hover {
	border-color: var(--main-text-color);
}

.main__socials {
	background-color: #F8FAFB;
	padding: 36px clamp(5px, 2vw, 22px) 28px;
}

.main__socials-title {
	color: var(--main-text-color);
	font-size: 21px;
	line-height: 25px;
	font-weight: 700;
	text-transform: uppercase;
	text-align: center;
	margin-bottom: 21px;
}

.main__socials-list {
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
	justify-content: center;
}

.main__socials-item {
	color: var(--light-text);
	font-size: 13px;
	font-family: var(--font-second);
}

.main__socials-item a {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
	transition: color 0.2s;
}

.main__socials-item a img {
	width: 21px;
	height: 21px;
}

.main__socials-item a:hover {
	color: var(--main-text-color);
}

.main__socials-item a:hover img {
	-webkit-animation: socials 0.6s;
	animation: socials 0.6s;
}

/* Radio block */
.radio-block.main-page {
	margin: 8px -40px 0 -20px;
	border-top: var(--main-border);
	border-bottom: var(--main-border);
	padding: 35px 40px 40px 20px;
}

.radio-block h3 {
	margin-bottom: 15px;
}

.radio-block__list {
	display: flex;
	flex-direction: column;
	gap: 6px;
}

/* Obituary block */
.obituary-block {
	margin-top: 17px;
}

.obituary-block__inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 50px 10px 40px;
	background-color: #F7F7F7;
	color: var(--main-text-color);
}

.obituary-block h3 {
	margin-bottom: 15px;
}

.obituary-block__img {
	max-width: 127px;
	border-radius: 50%;
	overflow: hidden;
	margin-bottom: 23px;
}

.obituary-block__souvenir {
	font-weight: 600;
	font-size: 16px;
	line-height: 21px;
	margin-bottom: 10px;
}

.obituary-block__name {
	font-size: 21px;
	line-height: 21px;
	font-weight: 700;
	margin-bottom: 8px;
}

.obituary-block__date {
	font-size: 15px;
	line-height: 21px;
	color: var(--content-color);
}

/* Subscribe block */
.sidebar-subscribe {
	padding: 42px clamp(10px, 2vw, 22px);
	background-color: var(--gray-background);
	display: flex;
	flex-direction: column;
	align-items: center;
	margin: 22px 0;
}

.sidebar-subscribe__image {
	max-width: 40px;
	margin-bottom: 18px;
}

.sidebar-subscribe h4 {
	font-weight: 700;
	font-size: 21px;
	line-height: 22px;
	color: var(--main-text-color);
	text-transform: uppercase;
	margin-bottom: 5px;
}

.sidebar-subscribe__address {
	font-family: var(--font-second);
	color: var(--content-color);
	font-size: 16px;
	margin-bottom: 17px;
}

.sidebar-subscribe__form {
	display: grid;
	grid-template: 1fr/1fr auto;
	width: 100%;
}

.sidebar-subscribe__form-input {
	background-color: #fff;
	border: var(--main-border);
	border-right: 0;
	font-size: 15px;
	line-height: 35px;
	padding: 7px 17px 5px;
	color: var(--main-text-color);
	font-family: var(--font-second);
	height: 47px;
	transition: border-color 0.3s;
}

.sidebar-subscribe__form-input::-moz-placeholder {
	color: #84889C;
}

.sidebar-subscribe__form-input:-ms-input-placeholder {
	color: #84889C;
}

.sidebar-subscribe__form-input::placeholder {
	color: #84889C;
}

.sidebar-subscribe__form-input:hover {
	border-color: var(--main-text-color);
}

.sidebar-subscribe__form-btn {
	width: 47px;
	border: none;
	background-color: var(--main-green-color);
	background-image: url(../img/icons/mail.svg);
	background-repeat: no-repeat;
	background-position: 50% 50%;
	border-radius: 0;
	transition: background-color 0.2s;
}

.sidebar-subscribe__form-btn:hover {
	background-color: var(--main-red-color);
}

/* Posts secton */
.posts__inner {
	background-color: #fff;
	display: grid;
	grid-template: 1fr/clamp(300px, 20vw, 365px) 1fr clamp(300px, 20vw, 365px);
	border-bottom: var(--main-border);
}

.posts__column {
	padding: clamp(20px, 3vw, 38px) clamp(10px, 2vw, 20px) clamp(20px, 4vw, 50px);
	display: flex;
	flex-direction: column;
	gap: clamp(10px, 2vw, 18px);
}

.posts__left {
	padding-left: clamp(10px, 3vw, 40px);
}

.posts__right {
	padding-right: clamp(10px, 3vw, 40px);
	overflow: hidden;
}

.posts__center {
	border-left: var(--main-border);
	border-right: var(--main-border);
	width: auto;
}

.posts__reviews {
	background-color: #F7F7F7;
	border-top: var(--main-border);
	border-bottom: var(--main-border);
	padding: clamp(20px, 3vw, 45px) clamp(10px, 3vw, 40px) clamp(20px, 2vw, 40px) clamp(10px, 2vw, 20px);
	margin: 0 -40px 0 -20px;
}

.posts__reviews h3 {
	margin-bottom: 15px;
}

.posts__reviews-item {
	display: flex;
	justify-content: space-between;
}

.posts__reviews-link {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 9px;
	font-weight: 700;
}

.posts__reviews-link span {
	font-size: 12px;
	padding: 7px 8px;
	text-transform: uppercase;
	display: inline-block;
	background-color: var(--main-red-color);
	color: var(--main-white-color);
}

.posts__reviews-link p {
	font-size: 18px;
	line-height: 21px;
	color: var(--main-text-color);
	max-width: 203px;
}

.posts__reviews-image {
	width: 80px;
	height: 80px;
	border-radius: 50%;
	background-color: var(--main-gray-color);
	overflow: hidden;
	flex-shrink: 0;
}

.posts__videos {
	margin-top: 17px;
}

.posts__videos h3 {
	margin-bottom: 23px;
}

.posts__videos-list {
	gap: 25px;
	counter-reset: item;
}

.posts__people {
	padding: 35px 40px 40px 20px;
	border-top: var(--main-border);
	border-bottom: var(--main-border);
	margin: 0 -40px 0 -20px;
}

.posts__people h3 {
	margin-bottom: 18px;
}

.posts__africa h3 {
	margin-bottom: 18px;
}

/* Matercard banner */
.mastercard-banner__inner {
	padding: clamp(20px, 4vw, 45px) 10px 20px;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: #fff;
}

.mastercard-banner__image {
	max-width: 728px;
}

/* Most shared */
.most-shared__inner {
	padding: 25px 40px 45px;
}

.most-shared__inner h2 {
	font-weight: 700;
	font-size: 30px;
	line-height: 37px;
	text-transform: uppercase;
	color: var(--main-text-color);
	margin-bottom: 20px;
}

.most-shared__posts {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: clamp(15px, 2vw, 25px);
}

.most-shared__posts li {
	border-bottom: none;
	padding-bottom: 0;
}

/* Section subscribe */
.subscribe__inner {
	background-color: #000;
	display: grid;
	grid-template: 1fr/1fr 1fr;
	align-items: center;
	justify-content: center;
	gap: 20px;
	padding: 48px;
	color: var(--main-white-color);
}

.subscribe__inner h3 {
	font-weight: 600;
	font-size: 21px;
	line-height: 25px;
}

.subscribe__form {
	display: grid;
	grid-template: 1fr/1fr auto;
	flex: 1 1 auto;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	font-size: 15px;
}

.subscribe__form-input {
	background-color: transparent;
	border: none;
	border-bottom: 1px solid #404040;
	height: 100%;
	color: var(--main-white-color);
}

.subscribe__form-input::-moz-placeholder {
	font-size: 15px;
	color: var(--main-white-color);
	font-family: var(--font-second);
}

.subscribe__form-input:-ms-input-placeholder {
	font-size: 15px;
	color: var(--main-white-color);
	font-family: var(--font-second);
}

.subscribe__form-input::placeholder {
	font-size: 15px;
	color: var(--main-white-color);
	font-family: var(--font-second);
}

.subscribe__form-btn {
	padding: 10px clamp(25px, 5vw, 47px) 10px clamp(25px, 5vw, 45px);
	font-weight: 700;
	text-transform: uppercase;
	background-color: transparent;
	border: 1px solid #404040;
	color: #F8F9FC;
	transition: border-color 0.3s;
	font-size: 15px;
	line-height: 23px;
}

.subscribe__form-btn:hover {
	border-color: #fff;
}

/* Flights section */
.flights__inner {
	background-color: #fff;
	display: grid;
	grid-template: 1fr/1fr clamp(300px, 20vw, 365px);
	border-bottom: var(--main-border);
}

.flights__tables {
	overflow-x: auto;
	padding: clamp(10px, 4vw, 45px) clamp(10px, 2vw, 20px) clamp(10px, 4vw, 45px) clamp(10px, 4vw, 40px);
	border-right: var(--main-border);
}

.flights__tables h3 {
	margin-bottom: 18px;
}

.flights .custom-select__selected {
	border: none;
	padding-left: 25px;
}

.flights__select {
	width: auto;
}

.flights__form-top {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	-moz-column-gap: clamp(20px, 3vw, 40px);
	column-gap: clamp(20px, 3vw, 40px);
	row-gap: 5px;
	flex-wrap: wrap;
	margin-bottom: 16px;
	font-weight: 600;
	font-size: 15px;
	line-height: 23px;
	color: var(--content-color);
}

.flights__form-person {
	color: var(--content-color);
	font-weight: 600;
	font-size: 15px;
	line-height: 23px;
	font-family: var(--font-second);
	position: relative;
	padding: 0 20px;
	cursor: pointer;
}

.flights__form-person:before {
	position: absolute;
	content: "";
	width: 15px;
	height: 15px;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	background-image: url(../img/icons/user-gray.svg);
	background-repeat: no-repeat;
	background-position: center center;
}

.flights__form-person::after {
	position: absolute;
	content: "";
	width: 10px;
	height: 7px;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	background-image: url(../img/icons/triangle-down-gray.svg);
	background-repeat: no-repeat;
	background-position: center center;
	transition: transform 0.3s;
}

.flights__form-person.is-active::after {
	transform: rotate(180deg) translateY(50%);
}

.flights__form-person .person-counter {
	cursor: pointer;
	width: 25px;
	font-size: 15px;
	line-height: 25px;
	height: 30px;
	color: var(--content-color);
	text-align: center;
	border: none;
	font-family: var(--font-second);
	background-color: transparent;
}

.flights__form-person .num-in {
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: #fff;
	padding: 17px;
}

.flights__form-person .skin-1 .num-in span {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 28px;
	height: 28px;
	cursor: pointer;
	border: var(--main-border);
}

.flights__form-popup {
	display: none;
	position: absolute;
	top: 165%;
	left: -25%;
	z-index: 199;
}

.flights__form-popup .person-counter {
	width: 30px;
}

.flights__form-middle {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	margin-bottom: 25px;
	height: 47px;
}

.flights__form-destinations {
	display: flex;
	align-items: center;
	gap: 11px;
	width: 100%;
}

.flights__form-destinations .custom-select {
	background-color: #fff;
	border: var(--main-border);
	width: 100%;
	flex: 1 1 auto;
	font-weight: 600;
	font-size: 14px;
	line-height: 23px;
	padding-left: 35px;
	color: var(--content-color);
}

.flights__form-destinations .custom-select::before {
	position: absolute;
	content: "";
	left: 12px;
	top: 50%;
	transform: translateY(-50%);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: contain;
}

.flights__form-destinations .custom-select.departure {
	padding-left: 30px;
}

.flights__form-destinations .custom-select.departure::before {
	width: 10px;
	height: 10px;
	background-image: url(../img/icons/circle.svg);
}

.flights__form-destinations .custom-select.arrival::before {
	width: 14px;
	height: 17px;
	background-image: url(../img/icons/location.svg);
}

.flights__form-destinations .custom-select__selected {
	padding: 11px;
}

.flights__form-destinations .custom-select__selected::after {
	display: none;
}

.flights__form-toggler {
	width: 12px;
	height: 12px;
	flex-shrink: 0;
	background-image: url(../img/icons/two-arrows-gray.svg);
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center center;
}

.flights__form-date {
	border: var(--main-border);
	display: flex;
	justify-content: space-between;
	align-items: center;
	background-color: #fff;
	height: 47px;
}

.flights__form-date label {
	position: relative;
	cursor: pointer;
	padding-left: 35px;
	display: flex;
	align-items: center;
	height: 47px;
}

.flights__form-date label::before {
	position: absolute;
	content: "";
	width: 16px;
	height: 16px;
	background: url(../img/icons/calendar.svg) 50% 50% no-repeat;
	background-size: contain;
	z-index: 99;
	left: 12px;
	top: 48%;
	transform: translateY(-50%);
}

.flights__form-date label+label::after {
	position: absolute;
	content: "";
	width: 1px;
	height: 40%;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	background-color: #D9DFE2;
}

.flights__filter {
	padding: clamp(15px, 2vw, 30px) clamp(10px, 2vw, 25px);
	background-color: #F8FAFB;
	margin-bottom: clamp(15px, 3vw, 38px);
	overflow: hidden;
}

.flights__filter .custom-select__list {
	min-width: 180px;
}

.flights__filter .custom-select__selected {
	padding-right: 25px;
	padding-left: 0;
}

.flights__filter .custom-select__selected::after {
	right: 0;
	background-image: url(../img/icons/triangle-down-gray.svg);
}

.flights__filter-btn {
	background-color: var(--main-green-color);
	font-size: 15px;
	line-height: 23px;
	text-transform: uppercase;
	font-weight: 700;
	color: #fff;
	padding: 14px 15px 12px;
	border: none;
	border-radius: 0;
	transition: background-color 0.3s, letter-spacing 0.3s;
	width: 100%;
}

.flights__filter-btn:hover {
	background-color: var(--main-text-color);
	letter-spacing: 2px;
}

.flights__filter-form {
	margin-bottom: 25px;
}

.flights__filter-table {
	display: none;
}

.flights #flights-select-wrap {
	position: relative;
}

.flights #flights-select-wrap::before {
	position: absolute;
	content: "";
	width: 14px;
	height: 14px;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: contain;
	transition: background-image 0.1s;
}

.flights #flights-select-wrap.one::before {
	background-image: url(../img/icons/one-way.svg);
}

.flights #flights-select-wrap.round::before {
	background-image: url(../img/icons/two-arrows-gray.svg);
}

.flights #flights-select-wrap .custom-select__selected {
	padding-left: 25px;
}

.flights #flights-select-wrap .custom-select__item {
	background-repeat: no-repeat;
	background-position: left center;
	background-size: 14px;
	padding-left: 25px;
}

.flights #flights-select-wrap .custom-select__item:nth-child(2) {
	background-image: url(../img/icons/one-way.svg);
}

.flights #flights-select-wrap .custom-select__item:nth-child(1) {
	background-image: url(../img/icons/two-arrows-gray.svg);
}

.flights__table {
	position: relative;
	overflow-x: auto;
	overflow-y: hidden;
}

.flights__table tr {
	text-align: left;
	background-color: #F8FAFA;
}

.flights__table tr:first-child {
	background-color: #E4EBEE;
}

.flights__table tr th {
	font-weight: 600;
	font-size: 17px;
	line-height: 23px;
	padding: 12px 23px 11px;
}

.flights__table tr td {
	padding: 12px 23px 11px;
	color: var(--content-color);
	font-size: 15px;
	line-height: 23px;
	font-family: var(--font-second);
	border-bottom: var(--main-border);
}

.flights__table tr:last-child td {
	border-bottom: 0;
}

.flights__table-wrap.is-hide {
	display: none;
}

.flights__table-tabs {
	display: inline-flex;
	font-weight: 600;
	font-size: 16px;
	line-height: 25px;
	color: var(--content-color);
	letter-spacing: normal;
}

.flights__table-tabs span {
	text-transform: uppercase;
	cursor: pointer;
	padding: 14px 25px 10px;
	transition: color 0.1s, transform 0.1s;
	background-color: #F8FAFB;
	transform: scale(0.9);
}

.flights__table-tabs span.is-active {
	color: var(--main-text-color);
	transform: scale(1);
}

.flights__table-time {
	background-color: #F8FAFA;
	padding: 22px;
	font-size: 16px;
	line-height: 23px;
	color: var(--content-color);
	font-family: var(--font-second);
}

.flights__table-time span:first-child {
	position: relative;
	padding-left: 26px;
}

.flights__table-time span:first-child:before {
	position: absolute;
	content: "";
	width: 18px;
	height: 18px;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	background-image: url(../img/icons/calendar.svg);
	background-position: center center;
	background-size: contain;
}

.flights__table-destination {
	display: flex;
	gap: 23px;
}

.flights__table-destination span:nth-child(2) {
	position: relative;
	padding-left: 21px;
}

.flights__table-destination span:nth-child(2)::before {
	position: absolute;
	content: "";
	width: 12px;
	height: 12px;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	background-image: url(../img/icons/black-plane.png);
	background-position: center center;
	background-size: contain;
}

.flights__table-aircompany {
	position: relative;
	padding-left: 26px;
}

.flights__table-aircompany::before {
	display: block;
	position: absolute;
	content: "";
	width: 18px;
	height: 18px;
	border-radius: 50%;
	overflow: hidden;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	background-position: center center;
	background-size: cover;
}

.flights__table-aircompany.lufthansa-company:before {
	background-image: url(../img/airline-companies/lufthansa.png);
}

.flights__table-aircompany.turkish-company::before {
	background-image: url(../img/airline-companies/turkish.png);
}

.flights__sidebar {
	padding: clamp(10px, 4vw, 50px) clamp(10px, 3vw, 40px) clamp(10px, 4vw, 45px) clamp(10px, 2vw, 20px);
	display: flex;
	flex-direction: column;
	gap: clamp(10px, 3vw, 30px);
}

.flights__sidebar-list {
	margin-top: 14px;
}

.flights__sidebar-list h3 {
	margin-bottom: 18px;
}

.flights__sidebar-banner {
	margin: 0 auto;
}

.auto-kal {
	border: none;
	background-color: transparent;
	position: relative;
	cursor: pointer;
	height: 100%;
	font-weight: 400;
	font-size: 14px;
	line-height: 23px;
	color: var(--content-color);
	font-family: var(--font-second);
}

.auto-kal::-moz-placeholder {
	color: var(--content-color);
	font-family: var(--font-second);
	font-weight: 400;
	font-size: 14px;
	line-height: 23px;
}

.auto-kal:-ms-input-placeholder {
	color: var(--content-color);
	font-family: var(--font-second);
	font-weight: 400;
	font-size: 14px;
	line-height: 23px;
}

.auto-kal::placeholder {
	color: var(--content-color);
	font-family: var(--font-second);
	font-weight: 400;
	font-size: 14px;
	line-height: 23px;
}

.kalendae {
	margin: 0;
	background-color: #fff;
	padding: 26px 0 0;
	border: none;
	border-radius: 0;
	box-shadow: none !important;
}

.kalendae .k-title,
.kalendae .k-header,
.kalendae .k-days {
	width: 100%;
}

.kalendae .k-title {
	display: flex;
	justify-content: space-between;
	margin-bottom: 25px;
	height: auto;
	font-family: var(--font-main);
	padding: 0 16px;
}

.kalendae .k-header {
	background-color: #F3F5F9;
	padding: 14px 16px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	font-size: 15px;
	font-family: var(--font-second);
	color: var(--content-color);
}

.kalendae .k-header span {
	font-weight: 400;
}

.kalendae .k-days {
	font-size: 15px;
	line-height: 38px;
	font-family: var(--font-second);
	color: var(--content-color);
	padding: 18px 10px;
	display: flex;
	flex-wrap: wrap;
	row-gap: 5px;
	-moz-column-gap: 10px;
	column-gap: 10px;
	justify-content: center;
}

.kalendae .k-days span {
	width: 38px;
	height: 38px;
	border-radius: 50%;
	padding: 0;
	margin: 0;
	display: flex;
	justify-content: center;
	align-items: center;
}

.kalendae .k-days span.k-in-month.k-active.k-today {
	text-decoration: none;
	background-color: #F8F9FC;
	color: var(--main-text-color);
}

.kalendae .k-days span.k-selected.k-active,
.kalendae .k-days .k-active span.k-selected {
	background-color: transparent;
}

.kalendae .k-days span.k-in-month.k-active {
	border: none;
	color: var(--content-color);
	font-family: var(--font-second);
	transition: color 0.2s, background-color 0.2s;
}

.kalendae .k-days span.k-in-month.k-active:hover {
	background-color: var(--main-green-color);
	color: #fff;
}

.kalendae .k-calendar {
	min-width: clamp(280px, 20vw, 348px);
}

.kalendae .k-caption {
	font-weight: 600;
	font-size: 18px;
	line-height: 22px;
	order: 1;
}

.kalendae .k-btn-previous-year,
.kalendae .k-btn-next-year {
	display: none;
}

.kalendae .k-btn-previous-month {
	left: 0;
	width: 11px;
	height: 17px;
	background-image: url(../img/icons/calendar-prev.svg);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 11px;
	position: static;
}

.kalendae .k-btn-next-month {
	right: 0;
	width: 11px;
	height: 17px;
	background-image: url(../img/icons/calendar-next.svg);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 11px;
	position: static;
	order: 2;
}

.kalendae .k-btn-previous-month:after {
	content: "";
	opacity: 0;
}

.kalendae .k-btn-next-month:after {
	content: "";
	opacity: 0;
}

/* Scores section */
.scores .slider-buttons {
	display: flex;
	justify-content: space-between;
	gap: 20px;
	align-items: center;
	padding: 0 20px;
	color: var(--light-text);
	font-size: 15px;
	line-height: 23px;
	text-transform: uppercase;
	font-weight: 700;
	border-bottom: var(--main-border);
	margin-bottom: 43px;
	overflow-x: auto;
}

.scores .slider-buttons__inner {
	display: flex;
	justify-content: center;
	gap: clamp(15px, 3vw, 38px);
	white-space: nowrap;
}

.scores .slider-buttons span {
	cursor: pointer;
	transition: color 0.3s;
	padding: 20px 0;
	transition: color 0.3s;
}

.scores .slider-buttons span:hover {
	color: var(--main-text-color);
}

.scores .slider-buttons .sw-n,
.scores .slider-buttons .sw-p {
	flex-shrink: 0;
}

.scores__inner {
	background-color: #fff;
	padding: 45px 0 50px 40px;
}

.scores__inner h3 {
	margin-right: 40px;
	margin-bottom: 18px;
}

.scores__content {
	display: grid;
	grid-template: 1fr/1fr clamp(300px, 20vw, 365px);
	justify-content: space-between;
	gap: clamp(10px, 2vw, 25px);
}

.scores__left {
	border: var(--main-border);
	border-top: 3px solid #0A0D28;
	min-width: 0;
}

.scores__left .swiper-slide {
	padding: 0 10px;
}

.scores__right {
	display: flex;
	flex-direction: column;
	gap: clamp(20px, 3vw, 35px);
	padding-right: 40px;
	font-size: 15px;
	color: var(--main-text-color);
	font-weight: 600;
	min-width: 0;
}

.scores__right-banner {
	margin: 0 auto;
}

.scores__right-slider .swiper-button-next {
	background-image: url(../img/icons/arrow-l-w.svg);
}

.scores__right-slider .swiper-button-prev {
	background-image: url(../img/icons/arrow-r-w.svg);
}

.scores__right-buttons {
	background-color: #0A0D28;
	display: flex;
	align-items: center;
	justify-content: space-between;
	color: #fff;
	font-size: 15px;
	line-height: 23px;
	text-transform: uppercase;
	padding: 15px 20px 14px;
}

.scores__table {
	font-family: var(--font-second);
	padding: 0 clamp(10px, 2vw, 25px);
	margin-top: clamp(10px, 2vw, 30px);
}

.scores__table-top {
	display: flex;
	justify-content: center;
	gap: clamp(10px, 3vw, 40px);
	margin-bottom: 40px;
}

.scores__team {
	min-width: 160px;
	display: flex;
	flex-direction: column;
	gap: clamp(10px, 2vw, 20px);
	font-weight: 600;
	font-size: 21px;
	line-height: 23px;
	color: #000;
	padding-top: 20px;
}

.scores__team ul {
	font-size: 15px;
	color: var(--light-text);
}

.scores__team-info {
	display: flex;
	align-items: center;
	gap: clamp(10px, 2vw, 20px);
}

.scores__team-flag {
	width: 64px;
	height: 64px;
	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;
}

.scores__team-flag.germany {
	background-image: url(../img/flags/germany.png);
}

.scores__team-flag.spain {
	background-image: url(../img/flags/spain.png);
}

.scores__team-flag.senegal {
	background-image: url(../img/flags/senegal.png);
}

.scores__team-flag.italy {
	background-image: url(../img/flags/italy.png);
}

.scores__team-list li {
	display: flex;
	gap: 10px;
	align-items: center;
}

.scores__team.left {
	align-items: flex-end;
}

.scores__team.right {
	align-items: flex-start;
}

.scores__match-info {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: clamp(10px, 2vw, 20px);
}

.scores__match-status {
	color: var(--main-green-color);
	font-weight: 700;
	font-size: 16px;
	margin-bottom: 6px;
}

.scores__match-time {
	font-size: 16px;
	color: var(--light-text);
}

.scores__match-date {
	background-color: #F8FAFB;
	padding: 11px 17px 10px;
	font-weight: 700;
	font-size: 15px;
	line-height: 23px;
	text-transform: uppercase;
	margin-bottom: 20px;
}

.scores__result {
	font-family: var(--font-main);
	font-weight: 700;
	font-size: 36px;
	line-height: 23px;
	display: flex;
	align-items: center;
	gap: 14px;
}

.scores__list-image {
	width: 16px;
	height: 16px;
	background-position: center center;
	background-size: contain;
	background-repeat: no-repeat;
}

.scores__ball {
	background-image: url(../img/icons/soccer-ball.png);
}

.scores__card.yellow {
	background-image: url(../img/icons/soccer-card-yellow.svg);
}

.scores__next-team {
	width: 100%;
	display: grid;
	grid-template: 1fr/repeat(3, 1fr);
	justify-items: center;
	align-items: center;
	padding: 20px 10px;
}

.scores__next-team:nth-child(2) {
	border-left: var(--main-border);
}

.scores__next-country {
	display: flex;
	align-items: center;
	gap: 11px;
	font-weight: 600;
	font-size: 17px;
	line-height: 23px;
	font-family: var(--font-second);
}

.scores__next-flag {
	border-radius: 50%;
	overflow: hidden;
	width: 30px;
	height: 30px;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
}

.scores__next-flag.italy {
	background-image: url(../img/flags/senegal.png);
}

.scores__next-flag.senegal {
	background-image: url(../img/flags/italy.png);
}

.scores__next-flag.germany {
	background-image: url(../img/flags/germany.png);
}

.scores__next-flag.spain {
	background-image: url(../img/flags/spain.png);
}

.scores__next-match {
	display: grid;
	grid-template: 1fr/1fr 1fr;
	justify-content: center;
	justify-items: center;
	align-items: center;
}

.scores__next-item.is-hidden {
	display: none;
}

.scores__hidden-toggler {
	display: flex;
	align-items: center;
	justify-content: center;
	text-transform: uppercase;
	font-weight: 700;
	font-size: 15px;
	line-height: 23px;
	padding: 13px;
	border-top: var(--main-border);
	margin-top: 19px;
	cursor: pointer;
}

.scores__hidden-toggler span {
	position: relative;
	padding-right: 19px;
}

.scores__hidden-toggler span::after {
	position: absolute;
	content: "";
	width: 13px;
	height: 8px;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	background-image: url(../img/icons/angle-down.svg);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: contain;
	transition: transform 0.3s;
}

.scores__hidden-toggler.is-active span::after {
	transform: rotate(180deg) translateY(50%);
}

.scores__sidebar-group-name {
	padding: 11px 18px 11px 19px;
	display: grid;
	align-items: center;
	text-align: center;
	grid-template: 1fr/1fr 22px 22px;
	background-color: #F8FAFB;
	text-transform: uppercase;
	border-left: var(--main-border);
	border-right: var(--main-border);
}

.scores__sidebar-group-name span:nth-child(1) {
	text-align: left;
}

.scores__sidebar-list {
	padding: 11px 18px 11px 0;
	border: var(--main-border);
	border-top: 0;
}

.scores__sidebar-list li {
	display: grid;
	align-items: center;
	text-align: center;
	grid-template: 1fr/1fr 22px 22px;
	padding: 13px 0 13px 19px;
}

.scores__sidebar-list li+li {
	border-top: var(--main-border);
}

/* Stream section */
.stream__inner {
	padding: 40px 0 40px 40px;
	border-top: var(--main-border);
	border-bottom: var(--main-border);
}

.stream__inner h3 {
	color: var(--main-red-color);
	margin-bottom: 18px;
	margin-right: 40px;
}

.stream__content {
	display: grid;
	grid-template: 1fr/auto clamp(300px, 20vw, 365px);
	gap: clamp(15px, 3vw, 25px);
}

.stream__content-inner h2 {
	font-weight: 700;
	font-size: 33px;
	line-height: 32px;
	margin-bottom: clamp(15px, 2vw, 20px);
}

.stream__content-inner p {
	font-size: 17px;
	color: var(--content-color);
	margin-bottom: 15px;
}

.stream__video {
	position: relative;
	overflow: hidden;
	cursor: pointer;
	margin-bottom: clamp(15px, 2vw, 30px);
}

.stream__video::before {
	position: absolute;
	content: "";
	width: 46px;
	height: 46px;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background-image: url(../img/icons/play-btn-white.svg);
	background-position: center center;
	background-size: cover;
}

.stream__video-label {
	position: absolute;
	left: 0;
	bottom: 0;
	background-color: var(--main-red-color);
	color: #fff;
	font-size: 13px;
	font-weight: 700;
	padding: 4px 7px 4px 16px;
	text-transform: uppercase;
}

.stream__video-label::before {
	position: absolute;
	content: "";
	width: 4px;
	height: 4px;
	border-radius: 50%;
	background-color: #fff;
	left: 8px;
	top: 50%;
	transform: translateY(-50%);
}

.stream__comments {
	padding-right: 40px;
}

.stream__comments-inner {
	background-color: #F7F7F7;
	padding: 20px;
	height: 510px;
	margin-bottom: 8px;
}

.stream__comments-list {
	font-size: 14px;
	line-height: clamp(16px, 2vw, 20px);
	display: flex;
	flex-direction: column;
	gap: 20px;
	overflow-y: auto;
	height: 100%;
	scrollbar-width: thin;
	scrollbar-color: #0F1435 #fff;
	transition: scrollbar-color 0.3s ease-out;
	/* For chrom and safari */
	/* width */
	/* Track */
	/* Handle */
	/* Handle on hover */
}

.stream__comments-list::-webkit-scrollbar {
	width: 5px;
}

.stream__comments-list::-webkit-scrollbar-track {
	background: #fff;
}

.stream__comments-list::-webkit-scrollbar-thumb {
	background: #0F1435;
}

.stream__comments-list::-webkit-scrollbar-thumb:hover {
	background: #555;
}

.stream__comments-list li {
	display: grid;
	grid-template: 1fr/auto 1fr;
	gap: 10px;
	max-width: 255px;
}

.stream__comments-list li p {
	padding-top: 5px;
	color: var(--content-color);
	font-family: var(--font-second);
}

.stream__comments-list li span {
	font-weight: 700;
	color: var(--main-text-color);
}

.stream__comments-avatar {
	width: 25px;
	height: 25px;
	border-radius: 50%;
	overflow: hidden;
}

.stream__comments-message {
	background-color: #F7F7F7;
	padding: 20px;
}

.stream__comments-text {
	resize: none;
	height: 60px;
	width: 100%;
	border: none;
	padding: 5px;
	margin-bottom: 9px;
}

.stream__comments-emoji {
	cursor: pointer;
	width: 20px;
	height: 20px;
}

.stream__comments-bottom {
	display: grid;
	grid-template: 1fr/1fr auto auto;
	align-items: center;
	gap: 13px;
	font-size: 15px;
	color: var(--content-color);
}

.stream__comments-bottom input {
	width: 32px;
	height: 32px;
	background-color: var(--main-green-color);
	border: none;
	border-radius: 0;
	background-image: url(../img/icons/message.svg);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 14px;
}

/* Politique secton */
.category__breadcrumbs {
	margin-bottom: 15px;
}

.category__title {
	font-weight: 700;
	font-size: clamp(30px, 3vw, 41px);
	line-height: clamp(31px, 4vw, 50px);
	text-transform: uppercase;
	margin-bottom: clamp(20px, 2vw, 34px);
}

.category__inner {
	border-top: var(--main-border);
	border-bottom: var(--main-border);
	display: grid;
	grid-template: 1fr/1fr clamp(300px, 20vw, 365px);
}

.category__main {
	border-right: var(--main-border);
	padding: 36px 25px 50px 40px;
}

.category__main-top {
	display: grid;
	grid-template: 1fr/minmax(300px, 1fr) minmax(200px, 300px);
	gap: clamp(15px, 2vw, 30px);
	border-bottom: var(--main-border);
	padding-bottom: clamp(15px, 2vw, 35px);
	margin-bottom: clamp(15px, 4vw, 50px);
}

.category__main-top .post-large__text {
	max-width: 565px;
}

.category__main-top .post-sidebar-big.post-global {
	margin-bottom: 15px;
}

.category__main-top .main__sidebar-list {
	gap: 15px;
	margin-bottom: 0;
}

.category__main-people {
	padding: 0;
	border: none;
	margin: 0;
}

.category__main-list {
	display: flex;
	flex-direction: column;
	gap: clamp(15px, 3vw, 40px);
	margin-bottom: clamp(10px, 3vw, 45px);
}

.category__main-list .post-content-horizontal__content-label {
	color: var(--main-red-color);
}

.category__main-list .post-content-horizontal__content-label:hover {
	color: var(--main-blue-color);
}

.category__main-btn {
	display: flex;
	justify-content: center;
	color: #fff;
	font-weight: 700;
	font-size: 15px;
	line-height: 23px;
	text-transform: uppercase;
}

.category__main-btn a {
	background-color: var(--main-red-color);
	padding: 14px 43px 13px;
	transition: background-color 0.3s;
}

.category__main-btn a:hover {
	background-color: #C2070F;
}

.category__top-block {
	border-bottom: var(--main-border);
	padding: 40px 40px 40px 25px;
	margin-bottom: clamp(20px, 3vw, 40px);
}

.category__top-block .medium-banner {
	margin-top: 0;
	margin-bottom: clamp(20px, 4vw, 50px);
}

.category__top-block .main__socials {
	margin-bottom: clamp(20px, 4vw, 44px);
}

.category__bordered-block {
	border-bottom: var(--main-border);
	margin-bottom: 15px;
	padding: 0 40px 40px 25px;
}

.category__bordered-block .sidebar-subscribe {
	margin: 0;
}

.category__bordered-block .medium-banner {
	margin: 0 auto;
}

.category__reviews {
	background-color: #F7F7F7;
	padding: 47px 40px 40px 20px;
	margin: clamp(20px, 3vw, 40px) 0 0 0;
	border: none;
}

.category__videos {
	padding: 20px 40px 30px 25px;
}

.category__people {
	padding: 20px 40px 30px 25px;
	border: none;
	margin: 0;
}

.category-post__breadcrumbs {
	margin-bottom: 15px;
	font-family: var(--font-second);
}

.category-post__inner {
	border-top: var(--main-border);
	border-bottom: var(--main-border);
	display: grid;
	grid-template: 1fr/1fr clamp(300px, 20vw, 365px);
}

.category-post__main {
	border-right: var(--main-border);
	padding: 36px 25px 50px 40px;
}

.category-post__main-top {
	display: grid;
	grid-template: 1fr/minmax(300px, 1fr) minmax(200px, 300px);
	gap: 30px;
	border-bottom: var(--main-border);
	padding-bottom: 35px;
	margin-bottom: 50px;
}

.category-post__main-top .post-large__text {
	max-width: 565px;
}

.category-post__main-top .post-sidebar-big.post-global {
	margin-bottom: 15px;
}

.category-post__main-top .main__sidebar-list {
	gap: 15px;
}

.category-post__main-people {
	padding: 0;
	border: none;
	margin: 0;
}

.category-post__main-list {
	display: flex;
	flex-direction: column;
	gap: 40px;
	margin-bottom: 45px;
}

.category-post__main-list .post-content-horizontal__content-label {
	color: var(--main-red-color);
}

.category-post__main-list .post-content-horizontal__content-label:hover {
	color: var(--main-blue-color);
}

.category-post__main-btn {
	display: flex;
	justify-content: center;
	color: #fff;
	font-weight: 700;
	font-size: 15px;
	line-height: 23px;
	text-transform: uppercase;
}

.category-post__main-btn a {
	background-color: var(--main-red-color);
	padding: 14px 43px 13px;
	transition: background-color 0.3s;
}

.category-post__main-btn a:hover {
	background-color: var(--main-text-color);
}

.category-post__sidebar {
	padding: 36px 40px 0 25px;
}

.category-post__sidebar-top {
	display: flex;
	flex-direction: column;
	gap: 18px;
	padding-bottom: 18px;
	border-bottom: var(--main-border);
	margin-bottom: clamp(20px, 3vw, 34px);
}

.category-post__sidebar-bottom .column-title {
	margin-bottom: 18px;
}

.category-post__post-label {
	display: inline-block;
	padding: 4px 11px;
	background-color: var(--main-red-color);
	text-transform: uppercase;
	color: #fff;
	font-weight: 700;
	font-size: 13px;
	line-height: 16px;
	margin-bottom: 25px;
    letter-spacing: 0.02em;
}

.category-post__post-title {
	font-weight: 700;
	font-size: clamp(30px, 4vw, 50px);
	line-height: clamp(28px, 4vw, 47px);
	margin-bottom: 20px;
}

.category-post__post-description {
	font-size: 18px;
	line-height: 26px;
	color: var(--content-color);
	margin-bottom: 20px;
}

.category-post__post-info {
	margin-bottom: clamp(20px, 3vw, 40px);
}

.category-post__post-main-img {
	max-height: 525px;
	margin-bottom: 9px;
	overflow: hidden;
}

.category-post__post-img-description {
	font-size: 14px;
	color: var(--light-text);
	padding-left: 13px;
	position: relative;
	margin-bottom: clamp(20px, 3vw, 35px);
}

.category-post__post-img-description::before {
	position: absolute;
	content: "";
	width: 4px;
	height: 4px;
	border-radius: 50%;
	background-color: var(--main-red-color);
	left: 0;
	top: 6px;
}

.category-post__post-content {
	font-size: 18px;
	line-height: 26px;
	display: flex;
	flex-direction: column;
	color: var(--content-color);
	gap: clamp(10px, 2vw, 30px);
	margin-bottom: clamp(20px, 4vw, 50px);
}

.category-post__post-content-images {
	display: grid;
	grid-template: 1fr/1fr 1fr;
	gap: 20px;
	max-height: 325px;
}

.category-post__post-content-link {
	display: inline-block;
	color: var(--main-text-color);
	position: relative;
}

.category-post__post-content-link:after {
	position: absolute;
	content: "";
	width: 100%;
	height: 1px;
	left: 0;
	bottom: 2px;
	background-color: var(--main-blue-color);
}

.category-post__post-tags {
	margin-bottom: 20px;
}

.category-post__post-tags h5 {
	font-weight: 700;
	font-size: 21px;
	line-height: 26px;
	color: var(--main-text-color);
	text-transform: uppercase;
	margin-bottom: 20px;
}

.category-post__post-tags ul {
	font-weight: 600;
	font-size: 13px;
	line-height: 16px;
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	align-items: center;
}

.category-post__post-tags ul a {
	display: block;
	padding: 7px 16px;
	border: var(--main-border);
	color: var(--main-text-color);
	text-transform: uppercase;
	position: relative;
	z-index: 1;
	transition: border-color 0.3s;
}

.category-post__post-tags ul a:hover {
	border-color: var(--main-text-color);
}

.category-post__post-banner {
	display: flex;
	justify-content: center;
}

.category-post__post-banner div {
	margin: 0;
}

/* Comments block */
.comments__wrap {
	margin: 0 -25px 0 -40px;
	padding: 50px 25px 0 40px;
	border-top: var(--main-border);
}

.comments__wrap h3 {
	text-transform: uppercase;
	font-weight: 700;
	font-size: 30px;
	line-height: 37px;
	margin-bottom: 20px;
}

.comments__avatar {
	width: clamp(50px, 6vw, 70px);
	height: clamp(50px, 6vw, 70px);
	flex-shrink: 0;
}

.comments__name {
	font-weight: 700;
	font-size: 18px;
	line-height: 22px;
}

.comments__time {
	font-size: 15px;
	line-height: 26px;
	color: var(--light-text);
	margin-bottom: 10px;
}

.comments__text {
	font-size: 17px;
	line-height: 26px;
	margin-bottom: 12px;
}

.comments__list {
	margin-bottom: clamp(20px, 4vw, 50px);
}

.comments__comment-body {
	display: flex;
	flex-direction: column;
}

.comments__item {
	display: flex;
	flex-direction: column;
	gap: clamp(10px, 2vw, 30px);
}

.comments__item-bottom {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.comments__item-bottom div {
	display: flex;
	align-items: center;
}

.comments__item-reaction {
	gap: clamp(10px, 2vw, 30px);
}

.comments__item-reaction a {
	display: flex;
	align-items: center;
	position: relative;
	transition: color 0.3s;
}

.comments__item-reaction a:nth-child(1) {
	font-weight: 600;
	font-size: 14px;
	line-height: 26px;
	color: #fff;
	text-transform: uppercase;
	background-color: #6B6F87;
	padding: 2px 11px 1px 11px;
}

.comments__item-reaction a:nth-child(2),
.comments__item-reaction a:nth-child(3) {
	line-height: 26px;
	padding-left: 27px;
}

.comments__item-reaction a:nth-child(2):before,
.comments__item-reaction a:nth-child(3):before {
	position: absolute;
	content: "";
	width: 20px;
	height: 20px;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	background-repeat: no-repeat;
	background-position: center center;
}

.comments__item-reaction a:nth-child(2) {
	color: var(--main-text-color);
}

.comments__item-reaction a:nth-child(2):before {
	background-image: url(../img/icons/like.svg);
}

.comments__item-reaction a:nth-child(2):hover {
	color: var(--main-green-color);
}

.comments__item-reaction a:nth-child(3) {
	color: var(--content-color);
}

.comments__item-reaction a:nth-child(3):before {
	background-image: url(../img/icons/dislike.svg);
}

.comments__item-reaction a:nth-child(3):hover {
	color: var(--main-red-color);
}

.comments__item-action {
	gap: 20px;
	font-weight: 600;
	font-size: 16px;
	line-height: 26px;
}

.comments__item-action a:nth-child(1) {
	color: var(--main-red-color);
	padding-left: 22px;
	position: relative;
}

.comments__item-action a:nth-child(1)::before {
	position: absolute;
	content: "";
	left: 0;
	top: 50%;
	width: 17px;
	height: 17px;
	transform: translateY(-50%);
	background-repeat: no-repeat;
	background-position: center center;
	background-image: url(../img/icons/bell.svg);
}

.comments__item-action a:nth-child(2) {
	color: var(--light-text);
	transition: color 0.3s;
}

.comments__item-action a:nth-child(2):hover {
	color: var(--main-text-color);
}

.comments__item-comment {
	display: flex;
	gap: 16px;
	border-bottom: var(--main-border);
	padding-bottom: 30px;
}

.comments__item-reply {
	padding-left: clamp(15px, 5vw, 85px);
}

.comments__form form {
	display: flex;
	flex-direction: column;
}

.comments__form h3 {
	font-weight: 700;
	font-size: 30px;
	line-height: 37px;
	margin-bottom: 18px;
}

.comments__form label+label {
	margin-top: 25px;
}

.comments__form label {
	color: var(--main-text-color);
	font-weight: 700;
	display: flex;
	flex-direction: column;
}

.comments__form label input,
.comments__form label textarea {
	border: var(--main-border);
	padding: 12px 19px;
	font-size: 15px;
	line-height: 26px;
	margin-top: 15px;
	font-family: var(--font-second);
}

.comments__form label input::-moz-placeholder,
.comments__form label textarea::-moz-placeholder {
	color: var(--light-text);
}

.comments__form label input:-ms-input-placeholder,
.comments__form label textarea:-ms-input-placeholder {
	color: var(--light-text);
}

.comments__form label input::placeholder,
.comments__form label textarea::placeholder {
	color: var(--light-text);
}

.comments__form label textarea {
	resize: none;
	height: 118px;
}

.comments__form-emoji {
	display: inline-block;
	border: var(--main-border);
	border-top: none;
	padding: 11px 19px;
}

.comments__form-button {
	background-color: var(--main-red-color);
	padding: 14px 38px;
	font-weight: 700;
	font-size: 15px;
	line-height: 23px;
	text-transform: uppercase;
	border: none;
	border-radius: 0;
	color: #fff;
	margin-top: 20px;
	align-self: flex-start;
}

/* Share button */
.share-button {
	position: fixed;
	width: clamp(30px, 3vw, 38px);
	height: clamp(30px, 3vw, 38px);
	border-radius: 50%;
	left: 10px;
	bottom: 20px;
	background-image: url(../img/icons/share.svg);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	cursor: pointer;
	z-index: 99;
}

/* Share block */
.share-block {
	display: none;
	position: fixed;
	left: 10px;
	top: 50%;
	transform: translateY(-50%);
	z-index: 50;
}

.share-block a {
	width: clamp(30px, 3vw, 38px);
	height: clamp(30px, 3vw, 38px);
	border-radius: 50%;
	background-position: center center;
	background-repeat: no-repeat;
	transition: border-radius 0.3s;
}

.share-block a:hover {
	border-radius: 0;
}

.share-block ul {
	display: flex;
	flex-direction: column;
	gap: 5px;
}

.share-block__facebook {
	background-image: url(../img/icons/share-facebook.svg);
	background-color: #3B5999;
}

.share-block__twitter {
	background-image: url(../img/icons/share-twitter.svg);
	background-color: #55ACEF;
}

.share-block__whatsapp {
	background-image: url(../img/icons/share-whatsapp.svg);
	background-color: #01C716;
}

.share-block__message {
	background-image: url(../img/icons/share-message.svg);
	background-color: var(--main-text-color);
}

/* Login popup */
.login-popup {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.1);
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 100;
	transition: opacity 0.3s, z-index 0.3s;
	padding: 10px;
}

.login-popup.is-hidden {
	opacity: 0;
	pointer-events: none;
	z-index: -1;
}

.login-popup__close {
	display: flex;
	justify-content: flex-end;
	position: absolute;
	top: 20px;
	right: 20px;
}

.login-popup__close span {
	cursor: pointer;
	width: 15px;
	height: 15px;
	background-image: url(../img/icons/close.svg);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: contain;
}

.login__inner {
	padding: clamp(30px, 6vw, 70px) clamp(20px, 4vw, 45px);
	background-color: #fff;
	position: relative;
	width: clamp(300px, 70vw, 600px);
}

.login__inner.is-hidden {
	display: none;
}

.login-popup h2,
.login-popup h3 {
	text-transform: none;
	display: block;
	text-align: center;
}

.login-popup h2 {
	margin: 0 0 clamp(15px, 2vw, 21px) 0;
	font-weight: 700;
	font-size: 30px;
}

.login-popup h3 {
	margin: 0 0 clamp(15px, 2vw, 25px) 0;
	font-size: 25px;
	line-height: 25px;
}

.login-popup form input {
	font-weight: 600;
}

.login-popup form input[type=text],
.login-popup form input[type=email],
.login-popup form input[type=password] {
	width: 100%;
	height: 50px;
	color: #1D2027;
	font-size: 17px;
	line-height: 25px;
	border: none;
	border-radius: 0;
	border-bottom: 1px solid #E0E0E0;
	padding: clamp(10px, 1vw, 14px) 0 clamp(5px, 1vw, 11px) 0;
	margin: 0 0 clamp(5px, 1vw, 14px) 0;
}

.login-popup form input::-moz-placeholder {
	opacity: 1;
	color: #1D2027;
}

.login-popup form input::-webkit-input-placeholder {
	opacity: 1;
	color: #1D2027;
}

.login-popup form input::-ms-input-placeholder {
	opacity: 1;
	color: #1D2027;
}

.login-popup form input[type=submit] {
	display: block;
	padding: 12px 30px 13px 30px;
	min-width: clamp(150px, 8vw, 192px);
	height: 50px;
	background: var(--main-red-color);
	color: #FFFFFF;
	font-size: 14px;
	line-height: 29px;
	border: none;
	text-transform: uppercase;
	transition: background 0.3s;
	margin: clamp(15px, 2vw, 23px) auto 0 auto;
}

.login-popup form input[type=submit]:hover {
	background: #050B1A;
}

.login-form__tools {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	padding: 16px 0 0 0;
}

.login-form__tools--remember {
	position: relative;
	transform: translateY(-2px);
}

.login-form__tools--remember input[type=checkbox]:checked,
.login-form__tools--remember input[type=checkbox]:not(:checked) {
	position: absolute;
	left: -9999px;
}

.login-form__tools--remember input[type=checkbox]:checked+label,
.login-form__tools--remember input[type=checkbox]:not(:checked)+label {
	position: relative;
	cursor: pointer;
	font-size: 14px;
	line-height: 24px;
	display: inline-block;
	transition: color 300ms;
	color: #7B7B7B;
}

.login-form__tools--remember input[type=checkbox]:checked+label:before,
.login-form__tools--remember input[type=checkbox]:not(:checked)+label:before {
	content: "";
	position: relative;
	display: inline-block;
	vertical-align: middle;
	width: 18px;
	height: 18px;
	border: 1px solid #E0E0E0;
	border-radius: 4px;
	margin-right: 10px;
	transform: translateY(-2px);
	transition: border 300ms;
}

.login-form__tools--remember input[type=checkbox]:checked+label:after,
.login-form__tools--remember input[type=checkbox]:not(:checked)+label:after {
	content: "";
	position: absolute;
	top: 6px;
	left: 4px;
	width: 10px;
	height: 10px;
	border-radius: 2px;
	background: #E0E0E0;
	transition: opacity 0.3s;
}

.login-form__tools--remember input[type=checkbox]:not(:checked)+label:after {
	opacity: 0;
}

.login-form__tools--forgot {
	margin-top: -3px;
}

.login-form__tools--forgot a {
	font-weight: 400;
	font-size: 14px;
	line-height: 20px;
	color: #282828;
}

.login-divider {
	position: relative;
	text-align: center;
	margin: clamp(10px, 2vw, 22px) 0 clamp(10px, 2vw, 16px) 0;
}

.login-divider:before {
	content: "";
	width: 100%;
	height: 1px;
	background: #E0E0E0;
	position: absolute;
	left: 0;
	top: 14px;
}

.login-divider span {
	display: block;
	margin: 0 auto;
	color: #1D2027;
	font-size: 17px;
	line-height: 25px;
	background: #ffff;
	width: 46px;
	height: 31px;
	padding: 0 0 0 0;
	position: relative;
	z-index: 3;
}

.login-social-list {
	display: block;
	text-align: center;
	padding: 0;
	margin: 0 0 clamp(10px, 1vw, 14px) 0;
}

.login-social-list li {
	display: inline-block;
	width: clamp(40px, 4vw, 50px);
	height: clamp(40px, 4vw, 50px);
	margin: 0 2px 0 3px;
}

.login-social-list li a {
	display: block;
	width: clamp(40px, 4vw, 50px);
	height: clamp(40px, 4vw, 50px);
	border-radius: 25px;
	position: relative;
}

.login-social-list li a.login-social--facebook {
	background: #4A67A8;
}

.login-social-list li a.login-social--twitter {
	background: #55ABEB;
}

.login-social-list li a:before {
	content: "";
	position: absolute;
	display: block;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: contain;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
}

.login-social-list li a.login-social--facebook:before {
	width: 8px;
	height: 15px;
	background-image: url("../img/icons/facebook-white.svg");
}

.login-social-list li a.login-social--twitter:before {
	width: 15px;
	height: 13px;
	background-image: url("../img/icons/twitter-white.svg");
}

.login-new-account {
	text-align: center;
	font-size: 18px;
	line-height: 25px;
	font-weight: 500;
	color: #1D2027;
}

.login-new-account a {
	color: var(--main-green-color);
	justify-content: center;
}

/* Footer */
.footer__inner {
	padding: 40px 40px 32px;
	background-color: #fff;
}

.footer__top {
	border-bottom: var(--main-border);
	padding-bottom: clamp(30px, 5vw, 60px);
	display: grid;
	grid-template: 1fr/1fr 1fr;
	gap: 20px;
}

.footer__contacts {
	font-size: 19px;
	color: var(--main-text-color);
	font-weight: 600;
}

.footer__contacts h3 {
	margin-bottom: 20px;
}

.footer__contacts-country {
	display: flex;
	color: var(--light-text);
	font-weight: 400;
	margin-bottom: 15px;
	font-size: 17px;
}

.footer__contacts-phone {
	margin-bottom: 25px;
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
}

.footer__contacts-email {
	display: flex;
	align-items: center;
	gap: 5px;
}

.footer__contacts-email a {
	transition: color 0.2s;
}

.footer__contacts-email a:hover {
	color: var(--main-red-color);
}

.footer__links {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	color: var(--content-color);
	max-width: 565px;
	gap: 20px;
	font-family: var(--font-second);
}

.footer__links ul {
	display: flex;
	flex-direction: column;
	gap: 25px;
	font-size: 16px;
}

.footer__links a {
	transition: color 0.2s;
}

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

.footer__bottom {
	padding-top: clamp(15px, 3vw, 32px);
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	gap: 15px;
	font-size: 15px;
	color: var(--light-text);
	font-family: var(--font-second);
}

.footer__bottom-socials {
	display: flex;
	align-items: center;
	gap: 18px;
}

.footer__bottom-socials li {
	max-width: 21px;
}

.footer__bottom-socials li:hover {
	-webkit-animation: socials 0.6s;
	animation: socials 0.6s;
}

/* --- New Styles: 2025-01-09 --- */
.container {
    contain: paint;
}
.most-shared__inner  {
    padding-top: 42px;
}
/* --- Header Update --- */
.header-main-menu {
    position: sticky;
    top: 0;
    z-index: 99;
} 
.header-main-menu,
.sub-header {
	font-weight: 700;
	font-size: 15px;
	letter-spacing: normal;
}
/* Header Banner */
.header_banners_wrap {
    padding: 19px 20px 18px 11px;
    font-family: var(--font-second);
    font-weight: 400;
    letter-spacing: -0.01em;
    border-bottom: var(--main-border);
}
.header_banners {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: flex-start;
}
.header_banners .swiper-wrapper {
    margin-left: -1px;
    width: ca;
}
.header_banners.swiper::before,
.header_banners.swiper::after {
    content: '';
    display: block;
    position: absolute;
    background-color: #ffffff;
    height: 100%;
    z-index: 9;
}
.header_banners.swiper::before {
    left: 0;
    width: 27px;
}
.header_banners.swiper::after {
    right: 0;
    width: 20px;
    
}
.header-banner:not(:last-child) {
    padding-right: 20px;
}
.header-banner {
    border-right: var(--main-border);
    padding-left: 29px;
}
.header_banners img {
    display: block;
    margin-bottom: 10px;
}
.header-banner-meta {
    font-size: 11px;
    color: var(--light-text);
    text-transform: uppercase;
    margin-bottom: 1px;
    display: flex;
}
.header-banner-list {
    font-size: 12px;
    line-height: 1.2em;
    font-weight: 600;
    padding-top: 5px;
}
.header-banner-list .header-banner-value::before {
    --this-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='10'%3E%3Cpath d='M3.543.203.188 3.814a.726.726 0 0 0 .002.978c.253.27.661.268.912-.002l2.253-2.425v6.944c0 .382.289.691.645.691.356 0 .645-.31.645-.691V2.365L6.898 4.79c.25.27.66.271.912.002a.726.726 0 0 0 .002-.978L4.457.204a.616.616 0 0 0-.914-.001Z'/%3E%3C/svg%3E");
    content: '';
    width: 8px;
    height: 10px;
    display: block;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-size: contain;
    -webkit-mask-position: center;
    mask-repeat: no-repeat;
    mask-size: contain;
    mask-position: center;
    -webkit-mask-image: var(--this-icon);
    mask-image: var(--this-icon);
    background-color: #60C345;
}
.header-banner-list {
    padding: 5px 0 0 0;
    margin: 0;
}
.header-banner-list li {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    grid-template-columns: repeat(2, 1fr);
}
.header-banner-list li:not(:last-child) {
    margin-bottom: 4px;
}
.header-banner-list span.header-banner-label {
    color: var(--main-text-color);
    text-transform: uppercase;
    min-width: 43px;
    max-width: 43px;
    margin-right: 5px;
}
.header-banner-list span.header-banner-value {
    color: #60C345;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 4px;
}
.header-banner-list span.header-banner-value.is-down {
    color: var(--main-red-color);
}
.header-banner-list span.header-banner-value.is-down::before {
    transform: rotate(180deg);
    background-color: var(--main-red-color);
}
.header-banner-info span {
    color: var(--main-red-color);
    font-size: 13px;
    font-weight: 600;
    display: block;
    margin-bottom: 2px;
}
.header-banner-info p {
    font-weight: 500;
    font-size: 11px;
    color: var(--main-text-color);
    font-family: var(--font-second);
}

/* --- Category Page --- */
.necrologie-category .category__breadcrumbs {
    margin-bottom: 31px;
}
.necrologie-category .category__sidebar {
    padding: 38px 40px 0 25px;
}
.necrologie-category .necrologie-category-post__category,
.necrologie-category .necrologie-category-post__category_title {
    font-family: var(--font-main);
    font-weight: 700;
}
.necrologie-category-post__category {
    text-transform: uppercase;
    color: var(--main-red-color);
    font-size: 14px;
    line-height: 1em;
    letter-spacing: 0.02em;
    margin-bottom: 10px;
}
.necrologie-category .meta-date {
    font-size: 14px;
    line-height: 1.2em;
    color: var(--light-text);
    margin-bottom: 10px;
    font-family: var(--font-second);
}

/* Category Main Post */
.main-top-post {
    padding: 0 0 30px 0;
    margin: 0 0 30px 0;
    display: flex;
    align-items: center;
    gap: 15px;
    border-bottom: var(--main-border);
}
.main-top-post-image {
    min-width: 640px;
    max-width: 640px;
}
.main-top-post .necrologie-category-post__category {
    margin-bottom: 19px;
}
.main-top-post .necrologie-category-post__category_title {
    font-size: 33px;
    line-height: 32px;
    margin-bottom: 17px;
}
.main-top-post .necrologie-category-post__excerpt {
    font-size: 16px;
    line-height: 23px;
    letter-spacing: -0.02em;
    margin-bottom: 19px;
}
.main-top-post .necrologie-category-post__content {
    margin-top: 20px;
    width: 100%;
}

.top-post-list {
    padding: 0 0 8px 0;
    margin: 0 -20px;
    display: flex;
}
.top-post-list li {
    width: calc(33.33% - 40px);
    margin: 0 20px;
    list-style: none;
    padding: 0;
    position: relative;
}
.top-post-list a:has(> img),
.top-post-list img {
    display: block;
    width: 100%;
    height: auto;
}
.top-post-list a:has(> img) {
    margin-bottom: 15px;
}
.top-post-list-category,
.necrologie-category-post__category_title {
    font-family: var(--font-main);
    font-weight: 700;
}
.top-post-list-category {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 5;
    background-color: #10171D;
    color: #fff;
    font-size: 13px;
    line-height: 1em;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    padding: 5px 11px;
}
.top-post-list .necrologie-category-post__category_title {
    color: var(--main-text-color);
    font-size: 24px;
    line-height: 23px;
    margin-bottom: 8px;
}
.top-post-list .necrologie-category-post__excerpt {
    font-size: 15px;
    line-height: 21px;
    letter-spacing: -0.02em;
}

/* Category List */
.necrologie-category-list {
    font-family: var(--font-second);
    letter-spacing: -0.01em;
    padding: 30px 0 0 0;
    margin: 0;
}
.necrologie-category-list li {
    list-style: none;
    margin: 40px 0 0 0;
    padding: 0;
    display: flex;
    gap: 29px;
    align-items: center;
}
.necrologie-category-list li:first-child {
    margin: 0;
}
.necrologie-category-post__image {
    width: 300px;
}
.necrologie-category-post__content {
    width: calc(100% - 329px);
}
.necrologie-category-list .necrologie-category-post__category_title {
    color: var(--main-text-color);
    font-size: 24px;
    line-height: 1em;
    margin-bottom: 13px;
}
.necrologie-category-post__excerpt {
    font-family: var(--font-second);
    letter-spacing: -0.02em;
    color: var(--content-color);
    font-size: 15px;
    line-height: 21px;
}

.necrologie-category .category__main-btn {
    padding-top: 50px;
}

/* --- Detail Page --- */
.necrologie-details-image {
    margin-bottom: 27px;
}
.necrologie-details .category-post__breadcrumbs {
    margin-bottom: 33px;
}
.necrologie-details .category-post__post-title {
    margin-bottom: 13px;
}
.necrologie-category .obituary-block,
.necrologie-details .obituary-block {
    margin: 19px 0 35px 0;
}
.necrologie-category:not(.necrologie-category-search) .obituary-block::after,
.necrologie-details .obituary-block::after {
    content: '';
    margin: 40px -40px 0 -25px;
    height: 0;
    border-bottom: var(--main-border);
    display: block;
}
.is-uppercase {
    text-transform: uppercase;
}
.obituary-block__date {
    font-family: var(--font-second);
    letter-spacing: -0.03em;
}
.necrologie-details .category-post__post-content p {
    font-family: var(--font-second);
    font-size: 17px;
    line-height: 26px;
    color: var(--content-color);
}
.necrologie-details .category-post__post-content p a {
    color: var(--main-text-color);
    display: inline-block;
    position: relative;
}
.necrologie-details .category-post__post-content p a::after {
    content: '';
    background-color: var(--main-text-color);
    transform-origin: 0 50%;
    width: 100%;
    height: 1px;
    position: absolute;
    left: 0;
    bottom: 1px;
    transform: scale(0, 1);
    transition: transform 0.3s;
}
.necrologie-details .category-post__post-content p a:hover::after {
    transform: scale(1, 1);
}

/* Post Meta */
.necrologie-details-meta {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    padding: 0;
    margin: 0 0 30px 0;
    row-gap: 10px;
    column-gap: 25px;
    font-size: 14px;
    line-height: 1.2em;
    color: var(--light-text);
    letter-spacing: -0.02em;
    font-weight: 500;
    font-family: var(--font-second);
}
.necrologie-details-meta li {
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
    justify-content: flex-start;
    display: flex;
}
.necrologie-details-meta li:not(:first-child)::before {
    content: '';
    width: 3px;
    height: 3px;
    display: block;
    border-radius: 50%;
    background-color: var(--light-text);
    position: absolute;
    top: calc(50% - 2px);
    left: -14px;
}
.necrologie-details-meta li a {
    display: inline-block;
    color: #4572A8;
}
.necrologie-details-meta li:first-child {
    display: flex;
    gap: 5px;
}
.necrologie-details-meta li:first-child a {
    color: var(--main-red-color);
}
.meta-comment,
.meta-views,
.meta-date {
    display: flex;
    gap: 6px;
    align-items: center;
}
.meta-comment::before,
.meta-views::before,
.meta-date::before {
    content: '';
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-size: contain;
    -webkit-mask-position: center;
    mask-repeat: no-repeat;
    mask-size: contain;
    mask-position: center;
    -webkit-mask-image: var(--this-icon);
    mask-image: var(--this-icon);
    background-color: var(--light-text);
    width: 14px;
    height: 14px;
    display: block;
    transform: translateY(-1px);
}
.meta-comment::before {
    --this-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='15'%3E%3Cpath d='M13.86 6.118a6.953 6.953 0 0 0-2.986-4.447A6.978 6.978 0 0 0 5.837.598l-.035.005C2 1.263-.556 4.895.105 8.696c.052.304.126.608.218.9a5.238 5.238 0 0 1-.267 3.779.582.582 0 0 0 .681.81l2.614-.713a6.936 6.936 0 0 0 5.029.888 6.952 6.952 0 0 0 4.447-2.986 6.955 6.955 0 0 0 1.033-5.256Zm-2.005 4.61a5.793 5.793 0 0 1-3.706 2.489 5.804 5.804 0 0 1-4.38-.861.585.585 0 0 0-.476-.077l-1.78.485a6.415 6.415 0 0 0-.076-3.516 5.838 5.838 0 0 1 4.538-7.491l.031-.005a5.813 5.813 0 0 1 4.222.89 5.793 5.793 0 0 1 2.489 3.706 5.793 5.793 0 0 1-.862 4.38Z'/%3E%3C/svg%3E");
}
.meta-date::before {
    --this-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14'%3E%3Cpath d='M9.493 8.236 7.541 6.772V3.79a.542.542 0 1 0-1.084 0v3.254c0 .17.08.331.217.433l2.169 1.627a.539.539 0 0 0 .759-.109.541.541 0 0 0-.109-.759Z'/%3E%3Cpath fill='%2384889C' d='M7 0C3.14 0 0 3.14 0 7s3.14 7 7 7 7-3.14 7-7-3.14-7-7-7Zm0 12.916A5.923 5.923 0 0 1 1.084 7 5.923 5.923 0 0 1 7 1.084 5.922 5.922 0 0 1 12.916 7 5.923 5.923 0 0 1 7 12.916Z'/%3E%3C/svg%3E");
}
.meta-views::before {
    --this-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none'%3E%3Cpath stroke='%2384889C' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.1' d='M10.387 8A2.384 2.384 0 0 1 8 10.387 2.384 2.384 0 0 1 5.613 8 2.384 2.384 0 0 1 8 5.614 2.384 2.384 0 0 1 10.387 8Z'/%3E%3Cpath stroke='%2384889C' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.1' d='M8 13.513c2.354 0 4.547-1.387 6.073-3.787.6-.94.6-2.52 0-3.46C12.547 3.866 10.353 2.48 8 2.48S3.453 3.866 1.927 6.266c-.6.94-.6 2.52 0 3.46 1.526 2.4 3.72 3.787 6.073 3.787Z'/%3E%3C/svg%3E");
}

/* Banners */
.detail-page-banners {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: stretch;
    gap: 22px;
    padding: 6px 0 14px 0;
}
.detail-page-banners > div {
    min-width: calc(33.33% - 15px);
    /* max-width: calc(33.33% - 15px); */
    background-repeat: no-repeat;
    background-position: left;
    background-size: cover;
    min-height: 73px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.banner-flowers {
    background-image: url(../img/2501/details/banner-bg01.jpg);
    padding: 15px 20px 15px 71px;
}
.banner-cards {
    background-image: url(../img/2501/details/banner-bg02.jpg);
    padding: 15px 20px 15px 80px;
}
.banner-plants {
    background-image: url(../img/2501/details/banner-bg03.jpg);
    padding: 15px 20px 15px 75px;
}
.detail-page-banners h6 {
    font-family: var(--font-main);
    font-size: 19px;
    line-height: 21px;
    letter-spacing: -0.01em;
    font-weight: 700;
    color: var(--main-text-color);
}
.detail-page-banners span {
    font-family: var(--font-second);
    font-size: 14px;
    line-height: 1.2em;
    letter-spacing: -0.02em;
    color: var(--main-text-color);
    display: block;
    padding-top: 2px;
}

/* --- Search --- */
.category-search-title {
    font-size: 33px;
    line-height: 32px;
    letter-spacing: -0.01em;
    font-weight: 700;
    font-family: var(--font-main);
}

/* Sidebar */
.necrologie-category .category-post__sidebar-top,
.necrologie-details .category-post__sidebar-top {
    border-bottom: none;
    margin-bottom: 0;
}
.necrologie-category-search .category__sidebar > :first-child {
    margin-top: 0;
}
.sidebar-divider {
    height: 37px;
    position: relative;
    margin: 22px -40px 14px -25px;
}
.sidebar-divider::before {
    content: '';
    background-color: var(--main-border-color);
    position: absolute;
    left: 0;
    top: 22px;
    right: 0;
    display: block;
    height: 1px;
}

/* ------------- */
/* 25.02.25 BLOG */
/* ------------- */
.container-with-sidebar {
    display: grid;
    grid-template: 1fr / 1fr clamp(300px, 20vw, 365px);
    border-top: var(--main-border);
    border-bottom: var(--main-border);
    font-family: var(--font-second);
    color: var(--content-color);
}
.container-content {
    padding: 37px 24px 0 40px;
}
.container-with-sidebar .meta {
    color: var(--light-text);
    display: flex;
    justify-content: flex-start;
    align-items: center;
    font-size: 14px;
    line-height: 1.2em;
    letter-spacing: -0.01em;
}
.container-with-sidebar h1,
.container-with-sidebar h2,
.container-with-sidebar h3,
.container-with-sidebar h4,
.container-with-sidebar h5,
.container-with-sidebar h6 {
    font-family: var(--font-main);
    color: var(--main-text-color);
    font-weight: 700;
    letter-spacing: -0.01em;
}
.container-sidebar {
    padding: 40px 40px 40px 25px;
    border-left: var(--main-border);
}
.blog-search-title {
    font-size: 33px;
    line-height: 32px;
    letter-spacing: -0.01em;
    margin: 0 0 30px 0;
}
.blog-post .container-content {
    font-size: 18px;
    line-height: 26px;
    letter-spacing: -0.02em;

}
.container-content .breadcrumbs {
    letter-spacing: 0;
}

/* --- Blog Post Meta --- */
ul.meta {
    padding: 0;
    margin: 0;
    width: 100%;
}
ul.meta li {
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
}
.blog-post-meta {
    gap: 20px;
}
.meta a {
    color: var(--main-red-color);
    display: inline-block;
}
.blog-post-meta .meta-views::before {
    width: 16px;
    height: 16px;
}
.blog-post-meta .meta-views {
    gap: 4px;
}
.blog-post-meta .meta-comment::before {
    --this-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' fill='none'%3E%3Cg fill='%2384889C' clip-path='url(%23a)'%3E%3Cpath d='M13.86 5.618a6.952 6.952 0 0 0-2.986-4.447A6.978 6.978 0 0 0 5.838.098l-.035.005C2 .763-.555 4.395.105 8.196c.053.304.127.608.219.9a5.238 5.238 0 0 1-.268 3.779.582.582 0 0 0 .682.81l2.614-.713a6.937 6.937 0 0 0 5.028.888 6.952 6.952 0 0 0 4.447-2.986 6.955 6.955 0 0 0 1.033-5.256Zm-2.004 4.61a5.794 5.794 0 0 1-3.706 2.489 5.803 5.803 0 0 1-4.38-.862.585.585 0 0 0-.476-.077l-1.78.486a6.415 6.415 0 0 0-.076-3.516 5.838 5.838 0 0 1 4.538-7.491l.03-.005a5.813 5.813 0 0 1 4.223.89 5.794 5.794 0 0 1 2.488 3.706 5.794 5.794 0 0 1-.861 4.38Z'/%3E%3Cpath d='M9.332 5.25H4.666a.583.583 0 1 0 0 1.166h4.666a.583.583 0 1 0 0-1.166ZM9.332 7.582H4.666a.583.583 0 1 0 0 1.167h4.666a.583.583 0 1 0 0-1.167Z'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='a'%3E%3Cpath fill='%23fff' d='M0 0h14v14H0z'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E");
}

/* --- Featured Post ---*/
.blog-featured-post-wrap {
    background: #F6F6F6;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    margin-bottom: 28px;
}
.blog-featured-post-label {
    background-color: var(--main-red-color);
    padding: 5px 12px 6px 12px;
    color: #ffffff;
    text-transform: uppercase;
    font-family: var(--font-main);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.02em;
    line-height: 1em;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 5;
}
.blog-featured-post-image {
    width: 59%;
}
.blog-featured-post-image img {
    width: 100%;
    height: auto;
}
.blog-featured-post-content {
    width: 41%;
    padding: 0 0 0 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 36px 30px 24px 30px;
}
.blog-featured-post-author {
    margin-bottom: 13px;
}
.blog-featured-post-title {
    font-size: 33px;
    line-height: 32px;
    margin: 0 0 11px -2px;
}
.blog-featured-post-excerpt {
    font-size: 16px;
    line-height: 23px;
    letter-spacing: -0.02em;
    margin: 0 0 13px -1px;
}

/* --- Blog Categories Tabs ---*/
.blog-listing-categories-tabs {
    padding: 0;
    margin: 0 0 40px 0;
    display: flex;
    gap: 30px;
    justify-content: flex-start;
    width: 100%;
    align-items: center;
    position: relative;
}
.blog-listing-categories-tabs::after {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background-color: #d9d9d9;
}
.blog-listing-categories-tabs li {
    list-style: none;
    margin: 0;
    text-transform: uppercase;
    font-family: var(--font-main);
    letter-spacing: -0.01em;
    font-size: 14px;
    line-height: 1em;
    font-weight: 700;
    color: var(--content-color);
    position: relative;
}
.blog-listing-categories-tabs li::before {
    content: '';
    display: block;
    z-index: 2;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #000;
    height: 1px;
    opacity: 0;
    transition: opacity 0.2s;
}
.blog-listing-categories-tabs li.is-active::before {
    opacity: 1;
}
.blog-listing-categories-tabs li a {
    display: block;
    padding: 14px 0 16px 0;
}

/* --- Blog Listing Post ---*/
.blog-post-preview {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    padding-bottom: 30px;
    border-bottom: var(--main-border);
}
.blog-search .blog-post-preview:last-child {
    border: none;
}
.blog-search .blog-listing {
    padding-bottom: 30px;
}
.blog-post-preview:not(:first-child) {
    margin-top: 30px;
}
.blog-post-preview-image {
    width: 300px;
}
.blog-post-preview-content {
    width: calc(100% - 300px);
    padding: 7px 30px 0 30px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}
ul.meta.blog-post-top {
    margin: 0 0 13px 0;
}
.blog-post-top li:not(:first-child)::before {
    content: '';
    display: inline-block;
    vertical-align: middle;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    margin: 0 6px 0 12px;
    background: var(--light-text);
    transform: translateY(-1px);
}
.blog-post-top .meta-category {
    font-family: var(--font-main);
    font-weight: 700;
    letter-spacing: 0.02em;
    color: var(--main-red-color);
    text-transform: uppercase;
}
.blog-post-preview-title {
    font-size: 26px;
    line-height: 29px;
    margin: 0 0 10px 0;
}
.blog-post-preview-excerpt {
    font-size: 17px;
    line-height: 25px;
    letter-spacing: -0.02em;
    margin: 0 0 12px 0;
}

.blog-post-load-more-wrap {
    display: flex;
    justify-content: center;
    padding: 54px 0 60px 0;
}
a.load-more-button {
    background-color: var(--main-red-color);
    padding: 14px 42px 13px;
    transition: background-color 0.3s;
    font-family: var(--font-main);
    font-size: 15px;
    line-height: 23px;
    font-weight: 700;
    text-transform: uppercase;
    color: #ffffff;
}
a.load-more-button:hover {
    background-color: #C2070F;
}

/* --- WIDGETS --- */
.container-sidebar {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 60px;
}
h5.widget-title {
    font-size: 23px;
    line-height: 1em;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: -3px 0 20px 0;
}
.widget-title::after {
    content: '///';
}
.widget-banner img {
    margin: 0 auto;
    display: block;
    max-width: 100%;
    height: auto;
}

/* Recent Posts Widget */
.widget-recent-posts-featured {
    padding: 0 0 16px 0;
    margin: 0 0 21px 0;
    border-bottom: var(--main-border);
}
.widget-post-image {
    position: relative;
    display: block;
}
.widget-post-image img {
    display: block;
    width: 100%;
    height: auto;
}
.widget-post-image .blog-featured-post-label {
    position: absolute;
    left: 0;
    top: 0;
    background-color: #10171D;
}
.widget-recent-posts-featured .widget-post-image {
    margin: 0 0 17px 0;
}
.widget-recent-posts-featured .recent-post-author {
    margin-bottom: 9px;
}
.widget-recent-posts-featured h6 {
    font-size: 22px;
    line-height: 25px;
    letter-spacing: -0.01em;
    margin-bottom: 10px;
}

.recent-posts-list {
    padding: 0;
    margin: 0;
}
.recent-posts-list li {
    list-style: none;
    position: relative;
    display: flex;
    gap: 18px;
    align-items: center;
    justify-content: space-between;
}
.recent-posts-list li:not(:first-child) {
    border-top: var(--main-border);
    padding: 20px 0 0 0;
    margin: 20px 0 0 0;
}
.recent-posts-list li h6 {
    font-size: 18px;
    line-height: 20px;
    margin: 0 0 7px 0;
}
.recent-posts-list .widget-post-image {
    width: 90px;
}
.recent-posts-list li > div {
    width: calc(100% - 108px);
}

/* Featured Posts Widget */
.featured-posts-list {
    padding: 0;
    margin: -16px 0 0 0;
    counter-reset: fp-widget 0;
}
.featured-posts-list li {
    padding: 10px 0;
    margin: 0;
    list-style: none;
    counter-increment: fp-widget 1;
    position: relative;
    border-bottom: var(--main-border);
}
.featured-posts-list li a {
    position: relative;
    display: block;
    padding: 9px 0 8px 42px;
    font-size: 18px;
    line-height: 21px;
    letter-spacing: -0.01em;
}
.featured-posts-list li::before {
    content: counter(fp-widget);
    font-family: var(--font-main);
    font-size: 52px;
    line-height: 1em;
    color: #D2361E;
    font-weight: 700;
    letter-spacing: -0.01em;
    position: absolute;
    left: 0;
    top: 15px;
}

/* --- Blog Post --- */
.blog-post-title-wrap {
    padding-top: 9px;
}
.blog-post-label {
    display: inline-block;
    background-color: var(--main-red-color);
    color: #ffffff;
    font-weight: 700;
    font-family: var(--font-main);
    text-transform: uppercase;
    font-size: 13px;
    line-height: 1em;
    letter-spacing: 0.02em;
    padding: 5px 12px 6px 12px;
    margin-bottom: 23px;
}
.blog-post-title {
    font-size: 50px;
    line-height: 47px;
    margin-bottom: 13px;
}

/* Post Intro */
.blog-post-intro {
    margin-bottom: 32px;
}
.blog-post-intro p {
    margin-bottom: 17px;
}

/* Post Featured Image */
figure.blog-post-featured-image {
    margin: 0 0 30px 0;
}
figure.blog-post-featured-image figcaption {
    font-size: 14px;
    line-height: 25px;
    letter-spacing: -0.02em;
    padding-left: 13px;
    position: relative;
    margin-top: 23px;
}
figure.blog-post-featured-image figcaption::before {
    content: '';
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background-color: var(--main-red-color);
    position: absolute;
    left: 0;
    top: 10px;
}

/* Post Content */
.single-post-content {
    margin-bottom: 38px;
}
.single-post-content p:not(:last-child) {
    margin-bottom: 26px;
}
.grid-gallery {
    display: grid;
    gap: 19px;
    margin-bottom: 30px;
}
.grid-gallery.columns-2 {
    grid-template-columns: repeat(2, 1fr);
}
.grid-gallery.columns-3 {
    grid-template-columns: repeat(3, 1fr);
}
.grid-gallery.columns-4 {
    grid-template-columns: repeat(4, 1fr);
}
.single-post-content .grid-gallery {
    padding-top: 16px;
    padding-bottom: 14px;
}

/* Post Footer */
.blog-post .category-post__post-tags {
    margin-bottom: 50px;
}
.blog-post .category-post__post-tags ul a {
    letter-spacing: 0.02em;
    font-family: var(--font-main);
}
.blog-post .category-post__post-banner {
    margin-bottom: 50px;
}

/* Comments */
.blog-comments {
    padding-bottom: 50px;
}
.blog-comments .comments__name {
    font-family: var(--font-main);
    letter-spacing: 0;
    font-size: 18px;
    color: var(--main-text-color);
}
.blog-comments .comments__comment-body {
    padding-top: 14px;
}
.blog-comments .comments__text {
    margin-bottom: 17px;
    color: var(--main-text-color);
}
.blog-comments .comments__item-bottom {
    font-size: 16px;
    line-height: 26px;
}
.blog-comments .comments__item-reaction a {
    color: var(--main-text-color);
}
.comments__item-reaction a:nth-child(2), 
.comments__item-reaction a:nth-child(3) {
    transform: translateY(2px);
}
.comments__item-reaction a:nth-child(2):before, 
.comments__item-reaction a:nth-child(3):before {
    transform: translateY(calc(-50% - 2px));
}
.blog-comments .comments__item-reaction a:nth-child(1) {
    font-family: var(--font-main);   
    font-size: 14px;
    line-height: 26px;
    color: #fff;
}
.blog-comments .comments__item-action {
    font-family: var(--font-main);
}
.blog-comments .comments__form h3 {
    letter-spacing: 0;
}
.blog-comments .comments__form label {
    font-family: var(--font-main);
    letter-spacing: 0;
    line-height: 1.2em;
}
.blog-comments input,
.blog-comments textarea {
    letter-spacing: -0.02em;
}
.blog-comments input[type="text"] {
    width: 47%;
}
.blog-comments input[type=submit] {
    letter-spacing: -0.01em;
    font-family: var(--font-main);
}

/* ------------------- */
/* 25.04.09 JOB SEARCH */
/* ------------------- */
i[class^="mask-icon"] {
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-size: contain;
    -webkit-mask-position: center;
    mask-repeat: no-repeat;
    mask-size: contain;
    mask-position: center;
    -webkit-mask-image: var(--this-icon);
    mask-image: var(--this-icon);
    display: block;
}
.mask-icon-search {
    --this-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='19' height='19' fill='none'%3E%3Cg fill='%23000' clip-path='url(%23a)'%3E%3Cpath d='M8.367 0C3.754 0 0 3.754 0 8.367c0 4.614 3.754 8.367 8.367 8.367 4.614 0 8.367-3.753 8.367-8.367C16.734 3.754 12.981 0 8.367 0Zm0 15.19a6.83 6.83 0 0 1-6.822-6.823 6.83 6.83 0 0 1 6.822-6.822 6.83 6.83 0 0 1 6.823 6.822 6.83 6.83 0 0 1-6.823 6.823Z'/%3E%3Cpath d='m18.774 17.681-4.428-4.428a.772.772 0 1 0-1.092 1.092l4.428 4.428a.77.77 0 0 0 1.092 0 .772.772 0 0 0 0-1.092Z'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='a'%3E%3Cpath fill='%23fff' d='M0 0h19v19H0z'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E");
}
.mask-icon-location {
    --this-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='17' fill='none'%3E%3Cpath stroke='%230F1435' stroke-width='1.2' d='M8 9.453a2.08 2.08 0 1 0 0-4.16 2.08 2.08 0 0 0 0 4.16Z'/%3E%3Cpath stroke='%230F1435' stroke-width='1.2' d='M2.413 6.16C3.727.387 12.28.393 13.587 6.167c.766 3.386-1.34 6.253-3.187 8.026a3.462 3.462 0 0 1-4.807 0c-1.84-1.773-3.946-4.646-3.18-8.033Z'/%3E%3C/svg%3E");
}
.mask-icon-chevron-lt {
    --this-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='12' fill='none'%3E%3Cpath stroke='%231F242E' stroke-linecap='round' stroke-width='1.5' d='M7 1 2 6l5 5'/%3E%3C/svg%3E");
}
.mask-icon-chevron-rt {
    --this-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='12' fill='none'%3E%3Cpath stroke='%231F242E' stroke-linecap='round' stroke-width='1.5' d='m1 1 5 5-5 5'/%3E%3C/svg%3E");
}
.mask-icon-chevron-down {
    --this-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='7' fill='none'%3E%3Cpath stroke='%23000' stroke-linecap='round' stroke-width='1.5' d='m1 1 4 4 4-4'/%3E%3C/svg%3E");
}
.mask-icon-date {
    --this-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='17' fill='none'%3E%3Cpath stroke='%2384889C' stroke-linecap='round' stroke-linejoin='round' stroke-miterlimit='10' stroke-width='1.2' d='M5.333 1.833v2M10.667 1.833v2M2.333 6.56h11.334M14 6.167v5.666c0 2-1 3.334-3.333 3.334H5.333C3 15.167 2 13.833 2 11.833V6.167c0-2 1-3.334 3.333-3.334h5.334C13 2.833 14 4.167 14 6.167Z'/%3E%3Cpath stroke='%2384889C' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.2' d='M10.463 9.633h.006M10.463 11.633h.006M7.997 9.633h.006M7.997 11.633h.006M5.53 9.633h.006M5.53 11.633h.006'/%3E%3C/svg%3E");
}
.mask-icon-bookmark {
    --this-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' fill='none'%3E%3Cpath fill='%23000' fill-rule='evenodd' d='M9.25 14a1.25 1.25 0 0 1 1.5 0l2.667 2c.824.618 2 .03 2-1V4.167c0-.69-.56-1.25-1.25-1.25H5.833c-.69 0-1.25.56-1.25 1.25V15c0 1.03 1.176 1.618 2 1l2.667-2Zm.75 1 2.667 2c1.648 1.236 4 .06 4-2V4.167a2.5 2.5 0 0 0-2.5-2.5H5.833a2.5 2.5 0 0 0-2.5 2.5V15c0 2.06 2.352 3.236 4 2L10 15Z' clip-rule='evenodd'/%3E%3Cpath fill='%23000' fill-rule='evenodd' d='M6.875 5.833c0-.345.28-.625.625-.625h5a.625.625 0 1 1 0 1.25h-5a.625.625 0 0 1-.625-.625Z' clip-rule='evenodd'/%3E%3C/svg%3E");
}
.mask-icon-send {
    --this-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='15' height='15' fill='none'%3E%3Cpath stroke='%23000' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.3' d='m5.944 2.644 5.35 2.675c2.4 1.2 2.4 3.162 0 4.362l-5.35 2.675c-3.6 1.8-5.069.325-3.269-3.269l.544-1.08c.137-.276.137-.732 0-1.007l-.544-1.088C.875 2.32 2.35.844 5.944 2.644ZM3.4 7.5h3.375'/%3E%3C/svg%3E");
}
.mask-icon-briefcase {
    --this-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none'%3E%3Cpath stroke='%236B6F87' stroke-linecap='round' stroke-linejoin='round' stroke-miterlimit='10' stroke-width='1.3' d='M5.333 14.667h5.334c2.68 0 3.16-1.074 3.3-2.38l.5-5.334C14.647 5.327 14.18 4 11.333 4H4.667C1.82 4 1.353 5.327 1.533 6.953l.5 5.334c.14 1.306.62 2.38 3.3 2.38ZM5.333 4v-.533c0-1.18 0-2.134 2.134-2.134h1.066c2.134 0 2.134.954 2.134 2.134V4'/%3E%3Cpath stroke='%236B6F87' stroke-linecap='round' stroke-linejoin='round' stroke-miterlimit='10' stroke-width='1.3' d='M9.333 8.667v.68c0 .726-.006 1.32-1.333 1.32-1.32 0-1.333-.587-1.333-1.314v-.686c0-.667 0-.667.666-.667h1.334c.666 0 .666 0 .666.667ZM14.433 7.333a10.99 10.99 0 0 1-5.1 2.014M1.747 7.513a10.855 10.855 0 0 0 4.92 1.84'/%3E%3C/svg%3E");
}
.mask-icon-flag {
    --this-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='17' height='17' fill='none'%3E%3Cpath fill='%23000' d='m13.635 5.667 1.807-2.409a.708.708 0 0 0-.567-1.133h-8.5a.708.708 0 0 0-1.417 0v12.042H4.25a.709.709 0 0 0 0 1.416h2.833a.708.708 0 1 0 0-1.416h-.708V9.208h8.5a.709.709 0 0 0 .567-1.133l-1.807-2.408Zm-1.452.425 1.275 1.7H6.375v-4.25h7.083l-1.275 1.7a.707.707 0 0 0 0 .85Z'/%3E%3C/svg%3E");
}
.mask-icon-close {
    --this-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none'%3E%3Cpath stroke='%23000' stroke-width='1.3' d='m1 1 14 14M15 1 1 15'/%3E%3C/svg%3E");
}
.mask-icon-back {
    --this-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='19' height='12' fill='none'%3E%3Cpath fill='%23000' d='M18 5.25a.75.75 0 0 1 0 1.5v-1.5ZM.47 6.53a.75.75 0 0 1 0-1.06L5.243.697a.75.75 0 1 1 1.06 1.06L2.061 6l4.242 4.243a.75.75 0 0 1-1.06 1.06L.47 6.53ZM18 6.75H1v-1.5h17v1.5Z'/%3E%3C/svg%3E");
}
.mask-icon-trash {
    --this-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='19' height='19' fill='none'%3E%3Cpath stroke='%2325352B' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M16.625 4.734a80.513 80.513 0 0 0-7.932-.396c-1.568 0-3.135.08-4.703.238l-1.615.158M6.729 3.935l.174-1.037c.126-.752.221-1.315 1.56-1.315h2.073c1.338 0 1.441.594 1.56 1.323l.174 1.029M14.922 7.236l-.515 7.972c-.087 1.243-.158 2.209-2.367 2.209H6.958c-2.209 0-2.28-.966-2.367-2.21l-.515-7.971M8.178 13.063h2.636M7.521 9.896h3.959'/%3E%3C/svg%3E");
}
.mask-icon-profile {
    --this-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='21' height='21' fill='none'%3E%3Cpath stroke='%2325352B' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M10.64 9.511a1.59 1.59 0 0 0-.289 0 3.868 3.868 0 0 1-3.736-3.876A3.882 3.882 0 0 1 10.5 1.75a3.881 3.881 0 0 1 .14 7.761ZM6.266 12.74c-2.118 1.418-2.118 3.728 0 5.136 2.406 1.61 6.352 1.61 8.759 0 2.117-1.417 2.117-3.727 0-5.136-2.398-1.601-6.344-1.601-8.76 0Z'/%3E%3C/svg%3E");
}
.mask-icon-money {
    --this-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='21' height='21' fill='none'%3E%3Cpath stroke='%2325352B' stroke-linecap='round' stroke-linejoin='round' stroke-miterlimit='10' stroke-width='1.5' d='M14.875 17.938h-8.75c-2.625 0-4.375-1.313-4.375-4.375V7.436c0-3.062 1.75-4.375 4.375-4.375h8.75c2.625 0 4.375 1.313 4.375 4.376v6.125c0 3.062-1.75 4.374-4.375 4.374Z'/%3E%3Cpath stroke='%2325352B' stroke-linecap='round' stroke-linejoin='round' stroke-miterlimit='10' stroke-width='1.5' d='M10.5 13.125a2.625 2.625 0 1 0 0-5.25 2.625 2.625 0 0 0 0 5.25ZM4.813 8.313v4.374M16.188 8.313v4.374'/%3E%3C/svg%3E");
}
.mask-icon-clock {
    --this-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='21' height='21' fill='none'%3E%3Cpath stroke='%2325352B' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M19.25 10.5c0 4.83-3.92 8.75-8.75 8.75s-8.75-3.92-8.75-8.75 3.92-8.75 8.75-8.75 8.75 3.92 8.75 8.75Z'/%3E%3Cpath stroke='%2325352B' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m13.746 13.283-2.713-1.62c-.472-.28-.857-.953-.857-1.504V6.57'/%3E%3C/svg%3E");
}
.mask-icon-edit {
    --this-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='21' height='21' fill='none'%3E%3Cpath stroke='%2325352B' stroke-linecap='round' stroke-linejoin='round' stroke-miterlimit='10' stroke-width='1.5' d='M11.603 3.15 4.42 10.754c-.272.288-.534.857-.587 1.25L3.51 14.84c-.114 1.024.62 1.724 1.636 1.549l2.817-.482c.394-.07.945-.358 1.217-.656l7.183-7.604c1.243-1.312 1.803-2.808-.13-4.637-1.926-1.811-3.387-1.173-4.63.14Z'/%3E%3Cpath stroke='%2325352B' stroke-linecap='round' stroke-linejoin='round' stroke-miterlimit='10' stroke-width='1.5' d='M10.404 4.419a5.36 5.36 0 0 0 4.769 4.506M2.625 19.25h15.75'/%3E%3C/svg%3E");
}
.mask-icon-add {
    --this-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none'%3E%3Cpath stroke='%23000' stroke-linecap='round' stroke-width='1.5' d='M8 1v14m7-7H1'/%3E%3C/svg%3E");
}

main.job-page {
    font-family: var(--font-second);
    font-size: 16px;
    color: #6B6F87;
}
main.job-page h1,
main.job-page h2,
main.job-page h3,
main.job-page h4,
main.job-page h5,
main.job-page h6,
.job-section-title a {
    color: var(--main-text-color);
    font-family: var(--font-main);
    font-weight: 700;
}
main.job-page .category__title {
    color: #000000;
}
.job-page .container {
    border-top: var(--main-border);
    padding: 37px 40px 0 40px;
}
main.job-page input,
main.job-page select,
main.job-page input:focus,
main.job-page select:focus {
    outline: none;
}

/* Job Section Title */
.job-section-title {
    display: flex;
    justify-content: space-between;
    margin-bottom: 23px;
}
.job-section-title h2 {
    text-transform: uppercase;
    font-size: 30px;
}
.job-section-title a {
    color: var(--main-red-color);
    font-size: 15px;
    line-height: 1em;
    text-transform: uppercase;
    display: flex;
    gap: 8px;
    align-items: center;
    letter-spacing: 0.02em;
}
.job-section-title a::after {
    --this-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='8' fill='none'%3E%3Cpath fill='%230F1435' d='M1 3.5a.5.5 0 0 0 0 1v-1Zm18.354.854a.5.5 0 0 0 0-.708L16.172.464a.5.5 0 1 0-.708.708L18.293 4l-2.829 2.828a.5.5 0 1 0 .708.708l3.182-3.182ZM1 4.5h18v-1H1v1Z'/%3E%3C/svg%3E");
    content: '';
    width: 20px;
    height: 8px;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-size: contain;
    -webkit-mask-position: center;
    mask-repeat: no-repeat;
    mask-size: contain;
    mask-position: center;
    -webkit-mask-image: var(--this-icon);
    mask-image: var(--this-icon);
    background-color: var(--main-text-color);
    transform: translate(0.5px, -0.5px);
}

/* --- Job Search Form --- */
.job-search-form {
    margin-bottom: 31px;
}
.job-search-form-main {
    background-color: var(--main-green-color);
    padding: 5px;
    display: flex;
    justify-content: stretch;
    align-items: stretch;
    margin-top: -1px;
    gap: 5px;
    margin-bottom: 20px;
}
.job-search-form-main input {
    border: none;
    padding: 0;
    margin: 0;
    width: 100%;
    display: block;
}
.job-search-form-main > div {
    position: relative;
}
div.job-search-text {
    width: 100%;
}
div.job-search-region {
    min-width: 380px;
    max-width: 380px;
    height: 50px;
}
.job-search-form-main i.mask-icon-search {
    width: 19px;
    height: 19px;
    background-color: #000000;
    position: absolute;
}
.job-search-form-main i.mask-icon-location {
    width: 18px;
    height: 18px;
    background-color: var(--content-color);
}
.job-search-form-main > div i {
    position: absolute;
    top: 16px;
    left: 12px;
}
.job-search-text input,
div.job-search-region input {
    padding: 17px 20px 16px 42px;
    font-size: 17px;
    font-family: var(--font-second);
    line-height: 1em;
    letter-spacing: -0.02em;
    color: #6B6F87;
}
div.job-search-region input {
    padding-left: 36px;
}
form.job-search-form input::placeholder {
    color: #6B6F87;
}
.job-search-button input {
    background-color: var(--main-yellow-color);
    height: 50px;
    color: var(--main-dark-blue-color);
    font-size: 15px;
    line-height: 23px;
    letter-spacing: -0.01em;
    font-family: var(--font-main);
    font-weight: 700;
    padding: 14px 29px 14px 29px;
    text-transform: uppercase;
}

.job-search-filter {
    display: flex;
    gap: 6px;
}
div.job-search-select-wrap {
    position: relative;
}
.job-search-form select {
    border: none;
    background: #F6F6F6;
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    padding: 13px 29px 12px 14px;
    color: #000000;
    font-size: 14px;
    line-height: 1em;
    font-family: var(--font-second);
    position: relative;
    text-align: left;
    width: auto;
}
div.job-search-select-wrap::after {
    content: '';
    width: 0px;
    height: 0px;
    border-style: solid;
    border-width: 5px 4px 0 4px;
    border-color: #000 transparent transparent transparent;
    transform: rotate(0deg);
    position: absolute;
    right: 14px;
    top: 17px;
}

/* --- Job Listing Section --- */
.job-search-section {
    margin-bottom: 75px;
}

/* Job Search Result Bar */
.job-search-results-bar {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
.job-search-results-bar h6 {
    font-size: 18px;
    line-height: 1em;
}
.job-search-sort {
    font-size: 18px;
    line-height: 1em;
    letter-spacing: -0.01em;
    display: flex;
    align-items: flex-start;
    gap: 7px;
    color: var(--main-text-color);
}
.job-search-results-bar span {
    display: block;
    font-family: var(--font-main);
}
.job-search-sort .job-search-select-wrap {
    transform: translateY(-1px);
}
.job-search-sort select {
    border: none;
    background: transparent;
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    color: var(--main-text-color);
    position: relative;
    text-align: left;
    font-family: var(--font-main);
    font-size: 18px;
    font-weight: 700;
    padding: 0 14px 0 0;
    letter-spacing: -0.01em;
}
.job-search-sort option {
    font-size: initial;
}
.job-search-sort div.job-search-select-wrap::after {
    top: 9px;
    right: 0;
}

/* Job Search Result Content */
.job-search-results {
    display: flex;
    flex-wrap: nowrap;
    gap: 30px;
    align-items: flex-start;
    justify-content: flex-start;
    padding-top: 16px;
}
.job-search-results > div {
    width: calc(50% - 15px);
}

/* Jobs Results Post Item */
.job-search-results-list {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}
.job-search-post {
    border: var(--main-border);
    padding: 24px 27px 21px 28px;
    transition: border-color 0.2s;
}
.job-search-post:hover {
    border-color: var(--main-green-color);
}
.job-search-post-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 11px;
}
.job-search-post-bookmark {
    width: 30px;
    height: 30px;
    background-color: #F6F6F6;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateX(8px);
}
.job-search-post-bookmark i {
    background-color: #000000;
    width: 14px;
    height: 14px;
}
.job-search-post h4 {
    font-size: 26px;
    line-height: 29px;
    letter-spacing: -0.01em;
    margin: 0 0 0 0;
}
.job-search-post-meta {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    font-size: 14px;
    line-height: 1em;
    color: var(--main-text-color);
    gap: 13px;
    margin-bottom: 13px;
}
.job-search-post-meta i {
    width: 16px;
    height: 16px;
    transform: translateY(-1px);
}
.job-search-post-meta span:has(i) {
    display: flex;
    gap: 4px;
    align-items: center;
}
.job-search-post-meta .meta-time {
    background-color: #E8EDF0;
    padding: 4px 8px 4px 6px;
    letter-spacing: -0.01em;
}
.job-search-post-meta .meta-company {
    text-transform: uppercase;
}
.job-search-post-meta .meta-job-date {
    color: var(--light-text);
}
.job-search-post-meta .meta-job-date i {
    background-color: var(--light-text);
}
.job-search-post-meta .meta-location {
    font-weight: 500;
}
.job-search-post-meta .meta-location i {
    background-color: var(--main-text-color);
}
.job-search-post p {
    font-size: 16px;
    line-height: 21px;
    letter-spacing: 0;
}
.job-search-post-respond {
    color: #000000;
    font-size: 15px;
    line-height: 1.2em;
    font-weight: 500;
    letter-spacing: -0.02em;
    display: inline-flex;
    gap: 6px;
    align-items: center;
    margin-top: 14px;
}
.job-search-post-respond i {
    width: 15px;
    height: 15px;
    background-color: #000000;
    transform: translateY(-1px);
}

/* Pagination */
.pagination {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 6px;
    padding: 15px 0 0 0;
}
.pagination li {
    margin: 0;
    padding: 0;
    list-style: none;
}
.pagination li a,
.pagination li span {
    width: 44px;
    height: 44px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 15px;
    line-height: 27px;
    font-weight: 500;
}
.pagination li a {
    border: var(--main-border);
    color: #1F242E;
    transition: border-color 0.2s;
}
.pagination li a:hover {
    border-color: var(--main-green-color);
}
span.pagination-dots {
    font-size: 16px;
    display: block;
    padding: 0 3px;
    transform: translateY(-1px);
}
.pagination li.current span {
    background-color: #06021D;
    color: #ffffff;
}
.pagination li i {
    background-color: #1F242E;
    width: 7px;
    height: 12px;
}

/* Job Categories */
.job-categories-grid {
    margin: 0;
    padding: 0;
    display: grid;
    grid-column-gap: 30px;
    grid-row-gap: 10px;
    min-height: 0;
    min-width: 0;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(1, 1fr);
    grid-auto-flow: row;
    justify-items: flex-start;
    align-items: stretch;
    margin-bottom: 60px;
}
.job-categories-grid li {
    margin: 0;
    list-style: none;
    border-bottom: 1px solid #E8EDF6;
    width: 100%;
    position: relative;
}
.job-categories-grid li:nth-last-child(1),
.job-categories-grid li:nth-last-child(2),
.job-categories-grid li:nth-last-child(3),
.job-categories-grid li:nth-last-child(4) {
    border-bottom: none;
}
.job-categories-grid i {
    width: 16px;
    height: 16px;
    background-color: var(--content-color);
    transition: background-color 0.2s;
    position: absolute;
    left: 0;
    top: 4px;
}
.job-categories-grid a {
    color: var(--content-color);
    transition: color 0.2s;
    display: flex;
    gap: 7px;
    align-items: center;
    justify-content: space-between;
    padding: 5px 0 11px 23px;
    position: relative;
}
.job-categories-grid a:hover i {
    background-color: var(--main-red-color);
}
.job-categories-grid a:hover {
    color: var(--main-red-color);
}

/* --- Partners Grid --- */
.job-partners-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 21px;
    margin-bottom: 100px;
    padding-top: 4px;
}
.job-partners-grid > a {
    border: var(--main-border);
    aspect-ratio: 204/176;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    
}
.job-partners-grid img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* --- Jobs Search Details --- */
.job-search-results-details {
    border: var(--main-border);
    padding: 31px 28px 42px 28px;
    position: relative;
}
.job-search-results-close {
    position: absolute;
    right: 30px;
    top: 35px;
}
.job-search-results-close i {
    width: 15px;
    height: 15px;
    background-color: #000;
}
.job-post-details h2 {
    font-size: 33px;
    line-height: 34px;
    letter-spacing: -0.01em;
    margin-bottom: 15px;
}
.job-details-salary {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
}
.job-post-details .job-details-salary h6 {
    margin: 0;
}
.job-post-details h5 {
    font-size: 23px;
    line-height: 29px;
    letter-spacing: -0.01em;
    margin: 0 0 14px 0;
}
.job-post-details h6 {
    font-size: 21px;
    line-height: 29px;
    letter-spacing: -0.01em;
    margin-bottom: 14px;
}
.job-post-details p,
.job-post-details li {
    font-size: 16px;
    line-height: 22px;
    letter-spacing: -0.01em;
    color: var(--content-color);
}
.job-post-details p {
    margin: 0 0 22px 0;
}
.job-post-intro {
    padding-top: 34px;
}
.job-post-intro p {
    color: var(--main-text-color);
    font-size: 16px;
    line-height: 22px;
    letter-spacing: -0.01em;
    font-weight: 500;
    margin-bottom: 24px;
}
.job-details-salary span {
    color: var(--light-text);
    font-size: 17px;
    line-height: 22px;
    letter-spacing: -0.01em;
}

.job-post-details .job-search-post-meta:first-child {
    margin-bottom: 17px;
    padding-left: 2px;
}
.job-post-details i.mask-icon-date {
    width: 16px;
    height: 16px;
    background-color: #25352B;
    margin-right: 2px;
}

/* Actions */
.job-post-actions {
    display: flex;
    gap: 5px;
    padding-top: 11px;
}
.job-post-actions a {
    display: flex;
    gap: 5px;
    align-items: center;
    background-color: #F6F6F6;
    color: var(--main-text-color);
    font-size: 15px;
    line-height: 1em;
    font-weight: 500;
    letter-spacing: -0.02em;
    padding: 12px 15px 12px 14px;
}
.job-post-actions i {
    background-color: var(--main-text-color);
}
.job-post-actions .job-post-respond {
    background-color: var(--main-green-color);
    color: var(--main-white-color);
}
.job-post-actions .job-post-respond i {
    background-color: var(--main-white-color);
    width: 18px;
    height: 18px;
}
.job-post-more i.mask-icon-briefcase {
    width: 17px;
    height: 17px;
    transform: translateY(-1px);
}
.job-post-actions a.job-post-bookmark {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    padding: 0;
}
.job-post-actions a i {
    width: 20px;
    height: 20px;
}

.job-post-list {
    margin-bottom: 21px;
}
.job-post-details li {
    position: relative;
    list-style: none;
    margin: 0 0 4px 0;
    padding: 0 0 0 18px;
    font-weight: 500;
}
.job-post-details li::before {
    content: '';
    width: 3px;
    height: 3px;
    border-radius: 50%;
    display: block;
    position: absolute;
    left: 4px;
    top: 9.5px;
    background-color: var(--content-color);
}

.job-post-footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}
.job-post-footer .job-post-flag {
    width: 44px;
    height: 44px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #F6F6F6;
}
.job-post-flag i {
    width: 17px;
    height: 17px;
    background-color: #000000;
    transform: translateY(-1px);
}

/* --- Job Details Page --- */
.job-details-section {
    display: flex;
    gap: 30px;
    justify-content: flex-start;
    align-items: flex-start;
    padding-bottom: 70px;
    margin-bottom: 74px;
    position: relative;
    padding-top: 8px;
}
.job-details-section::after {
    content: '';
    display: block;
    position: absolute;
    bottom: 0;
    left: -40px;
    width: calc(100% + 80px);
    height: 1px;
    background: var(--main-border-color);
}
.job-details-content {
    width: calc(100% - 380px);
}
.job-details-sidebar {
    width: 350px;
}

/* Hot Offers Widget */
.widget-hot-offers {
    border: var(--main-border);
}
.widget-hot-offers h5.widget-title {
    border-bottom: var(--main-border);
    color: var(--main-red-color);
    font-size: 23px;
    line-height: 1em;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    align-items: flex-start;
    position: relative;
    padding: 30px 24px 17px 46px;
}
.widget-hot-offers h5.widget-title::after {
    color: var(--main-text-color);
}
.widget-hot-offers i.mask-icon-fire {
    width: 19px;
    height: 19px;
    position: absolute;
    left: 22px;
    top: 30px;
    background-color: var(--main-red-color);
    --this-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='19' height='19' fill='none'%3E%3Cpath fill='%23000000' d='M16.687 11.417a7.188 7.188 0 0 1-14.375 0A6.654 6.654 0 0 1 4.37 6.286c.287-.283.602-.567.934-.863 1.357-1.2 2.76-2.44 2.76-4.548a.48.48 0 0 1 .744-.399 8.095 8.095 0 0 1 2.662 9.997 4.612 4.612 0 0 0 1.885-1.864c.31-.615.467-1.296.458-1.984a.48.48 0 0 1 .82-.336 7.345 7.345 0 0 1 2.055 5.128Z'/%3E%3C/svg%3E");
}
.widget-hot-offers-list {
    padding: 0 24px 8px 24px;
}
.widget-hot-offers-list li {
    list-style: none;
    margin: 0;
    padding: 0 0 3px 0;
    position: relative;
}
.widget-hot-offers-list li a {
    position: absolute;
    display: block;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}
.widget-hot-offers-list li:not(:last-child) {
    border-bottom: var(--main-border);
    margin-bottom: 13px;
}
.widget-hot-offers-list h5 {
    font-size: 21px;
    line-height: 29px;
    letter-spacing: -0.01em;
}
.widget-hot-offers-list h6 {
    font-size: 18px;
    line-height: 27px;
    letter-spacing: -0.01em;   
    margin-bottom: 6px;
}

/* --- Job Steps Form --- */
.job-steps-form-section {
    display: flex;
    gap: 30px;
    justify-content: flex-start;
    align-items: flex-start;
    padding-bottom: 101px;
    margin-bottom: 74px;
    position: relative;
    padding-top: 8px;
}
.job-steps-form-section::after {
    content: '';
    display: block;
    position: absolute;
    bottom: 0;
    left: -40px;
    width: calc(100% + 80px);
    height: 1px;
    background: var(--main-border-color);
}
.job-steps-form {
    width: 570px;
    margin: 0 auto;
}
.job-steps-form label {
    font-size: 18px;
    line-height: 1em;
    font-family: var(--font-main);
    letter-spacing: -0.01em;
    color: var(--main-text-color);
    font-weight: 700;
    margin-bottom: 14px;
    display: inline-block;
}
.job-steps-form .custom-select__selected,
.job-steps-form textarea,
.job-steps-form input {
    border: 1px solid #D9DFE2;
    background-color: #fff;
    width: 100%;
    padding: 10px 13px 9px 13px;
    color: var(--content-color);
    font-size: 16px;
    line-height: 26px;
    letter-spacing: -0.01em;
    font-weight: 500;
    margin-bottom: 22px;
}
.job-steps-form textarea {
    height: 97px;
    resize: vertical;
}
.checkbox-wrap {
    position: relative;
    margin-bottom: 25px;
}
.checkbox-wrap input {
    opacity: 0.3;
    position: absolute;
    border: none;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: 0;
    z-index: 1;
    opacity: 0;
    cursor: pointer;
}
.checkbox-wrap span {
    color: var(--content-color);
    font-size: 16px;
    line-height: 20px;
    letter-spacing: -0.01em;
    font-weight: 500;
    display: block;
    padding: 0 0 0 29px;
}
.checkbox-wrap::before,
.checkbox-wrap::after {
    content: '';
    display: block;
    position: absolute;
}
.checkbox-wrap::before {
    width: 20px;
    height: 20px;
    border: 1px solid #D9DFE2;
    top: 0;
    left: 0;
}
.checkbox-wrap::after {
    width: 12px;
    height: 12px;
    border-radius: 2px;
    background-color: var(--content-color);
    top: 4px;
    left: 4px;
    transition: opacity 0.2s;
    opacity: 0;
}
.checkbox-wrap:has(input:checked)::after {
    opacity: 1;
}
.job-steps-form textarea::-moz-placeholder,
.job-steps-form input::-moz-placeholder {
	color: var(--content-color);
}
.job-steps-form textarea:-ms-input-placeholder,
.job-steps-form input:-ms-input-placeholder {
	color: var(--content-color);
}
.job-steps-form textarea::placeholder,
.job-steps-form input::placeholder {
	color: var(--content-color);
}
.job-steps-form .custom-select__list {
    border: 1px solid #D9DFE2;
    background-color: #fff;
}
.job-steps-form .custom-select__selected {
    margin: 0;
}
.job-steps-form .custom-select {
    margin-bottom: 22px;
}
.job-steps-form .custom-select__selected:after {
    width: 13px;
    height: 9px;
    margin-top: 1px;
}

/* Job Steps Top */
.job-steps-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 31px;
}
.job-steps-top .job-steps-back i {
    width: 19px;
    height: 12px;
    display: block;
    background-color: #000000;
}
.job-steps-top .job-steps-save {
    font-size: 16px;
    line-height: 1em;
    font-family: var(--font-main);
    letter-spacing: -0.01em;
    color: var(--main-text-color);
    font-weight: 700;
}
.job-steps-progress {
    width: 100%;
    height: 5px;
    background-color: #E8EDF0;
    margin-top: 18px;
    margin-bottom: 35px;
}
.job-steps-progress-bar {
    background-color: var(--main-dark-blue-color);
    display: block;
    height: 5px;
}
.job-steps-progress-bar.step1 {
    width: 16.67%;
}
.job-steps-progress-bar.step2 {
    width: 33.34%;
}
.job-steps-progress-bar.step3 {
    width: 50%;
}
.job-steps-progress-bar.step4 {
    width: 66.67%;
}
.job-steps-progress-bar.step5 {
    width: 83.35%;
}
.job-steps-progress-bar.step6 {
    width: 100%;
}

/* Title */
.job-steps-title {
    font-size: 33px;
    line-height: 34px;
    letter-spacing: -0.01em;
    margin-bottom: 21px;
}

/* Phone Field */
.phone-field-wrap {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
}
.country-code-select {
    margin-right: -1px;
    border: 1px solid #D9DFE2;
    width: 113px;
    background-color: #F6F6F6;
    display: flex;
    position: relative;
    padding: 10px 13px 10px 13px;
    gap: 8px;
}
.country-code-select .mask-icon-chevron-down {
    content: '';
    position: absolute;
    top: 20px;
    right: 13px;
    width: 10px;
    height: 7px;
    background-color: #000;
    pointer-events: none;
}
.country-code-select select {
    background: transparent;
    border: none;
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    font-size: 16px;
    line-height: 25px;
    letter-spacing: -0.01em;
    color: var(--main-text-color);
    font-weight: 500;
    padding-right: 20px;
}
.country-code {
    min-width: 25px;
    max-width: 25px;
    height: 25px;
    display: block;
    border-radius: 50%;
}

/* Next Step */
a.job-steps-next {
    background-color: var(--main-green-color);
    color: var(--main-white-color);
    font-size: 15px;
    line-height: 1em;
    letter-spacing: -0.02em;
    font-weight: 500;
    display: inline-block;
    padding: 15px 28px 14px 28px;
    margin-top: 3px;
    transition: background-color 0.2s;
}
a.job-steps-next:hover {
    background-color: #007B3A;
}

.row {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}
.col {
    width: calc(50% - 15px);
}

/* --- Job Skills --- */
.job-skills-wrap {
    padding-bottom: 25px;
}
.job-skills-wrap h5 {
    font-size: 18px;
    line-height: 1em;
    letter-spacing: -0.01em;
    margin-bottom: 14px;
}

/* Selected Skills */
.selected-skills-list {
    border-bottom: 1px solid #D9DFE2;
    padding-top: 2px;
    padding-bottom: 25px;
    margin-bottom: 22px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.selected-skills-item {
    padding: 2px 0 2px 13px;
    border: 1px solid #D9DFE2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}
.selected-skills-item h6 {
    font-size: 17px;
    line-height: 17px;
    letter-spacing: -0.01em;
    margin: 0;
}
.selected-skills-item a {
    display: block;
    width: 41px;
    height: 41px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.selected-skills-item i {
    width: 19px;
    height: 19px;
    background-color: #25352B;
}

/* New Skill */
.add-new-skill {
    display: flex;
    gap: 5px;
}
.add-skill {
    min-width: 47px;
    max-width: 47px;
    height: 47px;
    border: 1px solid #D9DFE2;
    display: block;
    position: relative;
}
.add-skill::before,
.add-skill::after {
    content: '';
    background-color: #000000;
    width: 16px;
    height: 2px;
    border-radius: 2px;
    display: block;
    position: absolute;
    left: calc(50% - 8px);
    top: calc(50% - 1px);
}
.add-skill::after {
    transform: rotate(90deg);
}

/* Predefined Skills */
.predefined-skills-list {
    border: 1px solid #D9DFE2;
    background-color: #F6F6F6;
    padding: 20px 16px 19px 16px;
    margin-top: 3px;
}
.predefined-skills-list span {
    font-size: 16px;
    line-height: 1em;
    letter-spacing: -0.01em;
    color: var(--content-color);
    display: block;
    margin-bottom: 19px;
}
.predefined-skills-item {
    border: 1px solid #D9DFE2;
    background-color: #ffffff;
    color: var(--main-text-color);
    font-family: var(--font-main);
    font-weight: 700;
    font-size: 16px;
    line-height: 1em;
    letter-spacing: -0.01em;
    padding: 14px 20px 12px 35px;
    position: relative;
    margin-bottom: 4px;
}
.predefined-skills-item::before,
.predefined-skills-item::after {
    content: '';
    background-color: #000000;
    width: 14px;
    height: 2px;
    border-radius: 2px;
    display: block;
    position: absolute;
    top: 20px;
    left: 13px;}
.predefined-skills-item::after {
    transform: rotate(90deg);
}

/* Job Steps Final */
.job-steps-form > p {
    font-size: 16px;
    line-height: 26px;
    color: var(--content-color);
    margin-top: -10px;
    margin-bottom: 27px;
}
.job-steps-final {
    border-top: var(--main-border);
    padding-top: 16px;
    margin-bottom: 30px;
}

.job-steps-final-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0 25px 0;
    border-bottom: var(--main-border);
}
.job-steps-final-item h5 {
    font-size: 18px;
    line-height: 1em;
    letter-spacing: -0.01em;
    margin-bottom: 4px;
}
.job-steps-item-content:has(span) {
    transform: translateY(2px);
}
.job-steps-item-content:not(:has(span)) {
    transform: translateY(4px);
}
.job-steps-item-content span {
    color: var(--content-color);
    font-size: 15px;
    line-height: 20px;
    letter-spacing: -0.01em;
}
.job-steps-final-item > div {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 13px;
}
.job-steps-final-item > a {
    width: 21px;
    height: 21px;
    display: block;
}
.job-steps-final-item .mask-icon-edit {
    width: 21px;
    height: 21px;
    background-color: #25352B;
}
.final-steps-icon-wrap {
    width: 39px;
    height: 39px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #F6F6F6;
}
.final-steps-icon-wrap i {
    width: 21px;
    height: 21px;
    background-color: #25352B;
}
.job-steps-final-item > a.button-add {
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
}
.button-add i {
    width: 16px;
    height: 16px;
    background-color: #000000;
}