@charset "UTF-8";
:root {
	--basic-color-9: #000;
	--basic-color-8: #1a1a1a;
	--basic-color-7: #525252;
	--basic-color-6: #8a8a8a;
	--basic-color-5: #a5a5a5;
	--basic-color-4: #bfbfbf;
	--basic-color-3: #d6d6d6;
	--basic-color-2: #e6e6e6;
	--basic-color-1: #f5f5f5;
	--basic-color-white: #fff;
	--primary-color-50: #eff9ff;
	--primary-color-100: #dff2ff;
	--primary-color-200: #b8e7ff;
	--primary-color-300: #78d6ff;
	--primary-color-400-primary: #21bcff;
	--primary-color-500: #06a9f1;
	--primary-color-600: #0087ce;
	--primary-color-700: #006ca7;
	--primary-color-800: #025b8a;
	--primary-color-900: #084c72;
	--primary-color-950: #062f4b;
	--secondary-color-50: #f0f8fb;
	--secondary-color-100: #daedf3;
	--secondary-color-200: #badbe7;
	--secondary-color-300: #89c1d7;
	--secondary-color-400-secondary: #559fbf;
	--secondary-color-500: #3782a3;
	--secondary-color-600: #30698a;
	--secondary-color-700: #2d5771;
	--secondary-color-800: #2c4a5e;
	--secondary-color-900: #283f51;
	--secondary-color-950: #162836;
	--alert-color-success: #0abf53;
	--alert-color-warning: #ffeb3b;
	--alert-color-danger: #f44336;
	--picton-blue-50: #eff9ff;
	--picton-blue-100: #dff2ff;
	--picton-blue-200: #b8e7ff;
	--picton-blue-300: #78d6ff;
	--picton-blue-400: #21bcff;
	--picton-blue-500: #06a9f1;
	--picton-blue-600: #0087ce;
	--picton-blue-700: #006ca7;
	--picton-blue-800: #025b8a;
	--picton-blue-900: #084c72;
	--picton-blue-950: #062f4b;
	--font-family: "Helvetica Neue", sans-serif;
	--second-family: "Roboto", sans-serif;
	--third-family: "Nunito Sans", sans-serif;
	--font3: "Open Sans", sans-serif;
}

@font-face {
	font-family: "Helvetica Neue";
	src: url("../fonts/HelveticaNeue-Thin.woff2") format("woff2"), url("../fonts/HelveticaNeue-Thin.woff") format("woff");
	font-weight: 100;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: "Helvetica Neue";
	src: url("../fonts/HelveticaNeue-Light.woff2") format("woff2"), url("../fonts/HelveticaNeue-Light.woff") format("woff");
	font-weight: 300;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: "Helvetica Neue";
	src: url("../fonts/HelveticaNeue-Roman.woff2") format("woff2"), url("../fonts/HelveticaNeue-Roman.woff") format("woff");
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: "Helvetica Neue";
	src: url("../fonts/HelveticaNeue-Medium.woff2") format("woff2"), url("../fonts/HelveticaNeue-Medium.woff") format("woff");
	font-weight: 500;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: "Helvetica Neue";
	src: url("../fonts/HelveticaNeue-Bold.woff2") format("woff2"), url("../fonts/HelveticaNeue-Bold.woff") format("woff");
	font-weight: 700;
	font-style: normal;
	font-display: swap;
}
.post, .page {
	margin: 0;
}

body {
	background: var(--basic-color-9);
	font-family: var(--font-family);
}

body, button, input, select, optgroup, textarea {
	color: var(--basic-color-white);
	font-family: var(--font-family);
}

.container {
	max-width: 1920px;
	padding: 0 32px;
	margin-left: auto;
	margin-right: auto;
}

.site-header {
	padding: 32px 0 10px;
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	backdrop-filter: blur(8px);
	background: linear-gradient(180deg, #000 0%, rgba(0, 0, 0, 0) 100%);
	z-index: 100;
}
.site-header .row {
	display: flex;
	align-items: center;
}

.site-branding {
	width: 264px;
	position: relative;
	z-index: 3;
}
.site-branding a.custom-logo-link {
	display: flex;
	transition: 0.3s;
}
.site-branding a.custom-logo-link:hover {
	opacity: 0.8;
}

.main-navigation {
	display: flex;
	align-items: center;
	margin-left: auto;
	width: fit-content;
}
.main-navigation .menu {
	display: flex;
	gap: 32px;
	margin-right: 32px;
}
.main-navigation .menu a {
	font-family: var(--font-family);
	font-weight: 400;
	font-size: 16px;
	line-height: 125%;
	color: var(--basic-color-4);
	transition: 0.3s;
}
.main-navigation .menu a:hover {
	color: var(--primary-color-400-primary);
}
.main-navigation .sub-menu {
	border-radius: 8px;
	padding: 16px;
	flex-direction: column;
	gap: 24px;
	backdrop-filter: blur(8px);
	background: var(--basic-color-8);
	margin-right: -300px;
	box-shadow: unset;
}

.menu-item-has-children > a {
	display: flex;
	align-items: center;
}
.menu-item-has-children > a:hover::after {
	transform: scaleY(-1);
}
.menu-item-has-children > a::after {
	content: "";
	width: 16px;
	height: 16px;
	background: url("../img/ph_arrow-right-light.png") no-repeat center center/100% 100%;
	margin-left: 4px;
	transition: 0.3s;
}

button.search-field__btn {
	position: absolute;
	background: transparent;
	border: none;
	outline: none;
	padding: 12px 16px;
	right: 16px;
	transition: 0.3s;
	cursor: pointer;
	border-radius: 100px;
}
button.search-field__btn:hover {
	opacity: 0.7;
}

.search-field {
	position: relative;
	border-radius: 100px;
	overflow: hidden;
	margin-right: 16px;
}
.search-field__input {
	font-family: var(--font-family);
	font-weight: 400;
	font-size: 16px;
	line-height: 150%;
	color: var(--basic-color-white);
	border-radius: 100px;
	padding: 12px 56px 12px 16px;
	background: var(--basic-color-8);
	border: 1px solid transparent;
	outline: none;
	width: 250px;
	transition: 0.3s;
	max-width: 88px;
}
.search-field__input:focus, .search-field__input:active, .search-field__input:not(:placeholder-shown), .search-field__input:hover {
	max-width: 250px;
}
.search-field__input:focus + button.search-field__btn, .search-field__input:active + button.search-field__btn, .search-field__input:not(:placeholder-shown) + button.search-field__btn, .search-field__input:hover + button.search-field__btn {
	right: 0;
	background: linear-gradient(270deg, #000 0%, rgba(0, 0, 0, 0) 100%);
}
.search-field:hover button.search-field__btn {
	right: 0;
	background: linear-gradient(270deg, #000 0%, rgba(0, 0, 0, 0) 100%);
}
.search-field:hover .search-field__input {
	max-width: 250px;
}

.temporary-navigation {
	margin-left: auto;
}
.temporary-navigation__btn {
	z-index: 3;
	position: relative;
}

.site-main {
	padding-top: 122px;
	padding-bottom: 107px;
}
.site-main--contacts {
	padding-bottom: 70px;
}

p:first-child {
	margin-top: 0;
}

p:last-child {
	margin-bottom: 0;
}

a.blue-link {
	font-family: var(--font-family);
	font-weight: 700;
	font-size: 16px;
	line-height: 125%;
	color: var(--primary-color-400-primary);
	text-decoration: none;
	transition: 0.3s;
}
a.blue-link:hover {
	opacity: 0.8;
}
a.blue-link.arrow-link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

a.main-hero__title--news {
	font-family: var(--font-family);
	font-weight: 700;
	font-size: 56px;
	line-height: 111%;
	color: var(--basic-color-white);
	text-decoration: none;
	max-width: 750px;
	z-index: 1;
}
a.main-hero__title--news:hover::before {
	opacity: 1;
}

a.main-hero__category {
	background: rgba(138, 138, 138, 0.2);
	border-radius: 100px;
	padding: 0px 16px;
	font-family: var(--font-family);
	font-weight: 300;
	font-size: 18px;
	line-height: 133%;
	color: var(--basic-color-4);
	text-decoration: none;
	position: relative;
	z-index: 4;
	transition: 0.3s;
	width: fit-content;
	margin-bottom: 16px;
}
a.main-hero__category:hover {
	color: var(--primary-color-400-primary);
}

.main-hero__pretitle {
	font-family: var(--font-family);
	font-weight: 300;
	font-size: 16px;
	line-height: 138%;
	text-transform: uppercase;
	color: var(--basic-color-white);
	margin: 0 0 16px;
}
.main-hero__title {
	color: var(--basic-color-white);
	max-width: 1000px;
}
.main-hero__title--news::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: radial-gradient(112.47% 100% at 50.1% 0%, rgba(2, 91, 138, 0.2) 31.41%, #025b8a 100%);
	z-index: -1;
	border-radius: 16px;
	opacity: 0;
	transition: 0.3s;
}
.main-hero__title h1 {
	font-weight: 400;
	font-family: var(--font-family);
	font-size: 56px;
	line-height: 111%;
	margin: 0 0 32px;
}
.main-hero__title h1 strong {
	font-weight: 700;
}
.main-hero__text {
	font-family: var(--font-family);
	font-weight: 400;
	font-size: 16px;
	line-height: 150%;
	color: var(--basic-color-white);
	max-width: 730px;
}
.main-hero__days {
	font-family: var(--font-family);
	font-weight: 400;
	font-size: 14px;
	line-height: 150%;
	color: var(--basic-color-5);
	display: flex;
	align-items: center;
	gap: 8px;
	margin-top: 16px;
	z-index: 1;
	position: relative;
}
.main-hero__card {
	position: relative;
	min-height: 750px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 240px 7.5%;
	background: url("../img/main-screen.png") no-repeat center center/cover;
	border-radius: 32px;
	flex-grow: 1;
	overflow: hidden;
	z-index: 1;
}
.main-hero__card--news {
	min-height: 620px;
	padding-top: 80px;
	padding-bottom: 80px;
}
.main-hero__card--news::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
	border-radius: 16px;
	background: url("../img/main-news-filter.png") no-repeat center center/cover;
}
.main-hero__main {
	width: 100%;
	display: flex;
	flex-direction: column;
	grid-column: span 3/span 3;
}
.main-hero__main--full {
	grid-column: span 4/span 4;
}
.main-hero__content {
	gap: 16px;
	grid-template-columns: repeat(4, 1fr);
	display: grid;
}
.main-hero__sidebar {
	max-width: 527px;
	width: 100%;
	display: flex;
	flex-direction: column;
	grid-column-start: 4;
}
.main-hero__more-news {
	margin-left: auto;
	width: fit-content;
	margin-top: auto;
}
.main-hero__news {
	display: flex;
	flex-direction: column;
	flex: 100%;
}

.main-hero-news-list {
	padding: 0;
	margin: 0;
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 16px;
	margin-bottom: 16px;
}
.main-hero-news-list--news {
	margin-bottom: 0;
}
.main-hero-news-list--news {
	max-height: 580px;
	overflow: auto;
	padding-right: 15px;
}


.main-hero-news-item {
	background: var(--basic-color-8);
	border-radius: 16px;
	padding: 16px;
	position: relative;
	z-index: 2;
	border: 1px solid transparent;
	transition: 0.3s;
}
.main-hero-news-item:hover {
	border-color: var(--primary-color-400-primary);
}
.main-hero-news-item::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: radial-gradient(112.47% 100% at 50.1% 0%, rgba(2, 91, 138, 0.2) 31.41%, #025b8a 100%);
	z-index: -1;
	border-radius: 16px;
	opacity: 0;
	transition: 0.3s;
}
.main-hero-news-item--ai::before, .main-hero-news-item:hover::before {
	opacity: 1;
}
.main-hero-news-item--ai::before {
	opacity: 1;
}
.main-hero-news-item--ai .main-hero-news-item__category {
	color: var(--primary-color-400-primary);
	font-weight: 700;
}
.main-hero-news-item--ai:hover::before {
	opacity: 0.7;
}
.main-hero-news-item__head {
	display: flex;
	align-items: center;
}
.main-hero-news-item__days {
	font-family: var(--font-family);
	font-weight: 400;
	font-size: 14px;
	line-height: 150%;
	text-align: right;
	color: var(--basic-color-5);
	display: flex;
	margin-left: auto;
	align-items: center;
	gap: 4px;
}

a.main-hero-news-item__category {
	background: rgba(138, 138, 138, 0.2);
	border-radius: 100px;
	padding: 0px 16px;
	font-family: var(--font-family);
	font-weight: 300;
	font-size: 18px;
	line-height: 133%;
	color: var(--basic-color-4);
	text-decoration: none;
	position: relative;
	z-index: 4;
	transition: 0.3s;
}
a.main-hero-news-item__category:hover {
	color: var(--primary-color-400-primary);
}

a.main-hero-news-link {
	font-family: var(--font-family);
	font-weight: 400;
	font-size: 18px;
	line-height: 133%;
	color: var(--basic-color-white);
	text-decoration: none;
	margin-top: 8px;
	display: inline-flex;
	border: 1px solid transparent;
	transition: 0.3s;
}
a.main-hero-news-link::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}

.main-hero-slider {
	margin-top: 32px;
	width: 100%;
	overflow: hidden;
}
.main-hero-slider img {
	width: 192px;
}

@keyframes sliding {
	to {
		transform: translateX(-50%);
	}
}
.slider-track {
	display: flex;
	gap: 32px;
	will-change: transform;
	width: fit-content;
	transform: translateZ(0);
	backface-visibility: hidden;
	padding-left: 32px;
}

.slider-slide {
	min-width: 246px;
	padding: 12px;
	min-height: 111px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--basic-color-8);
	border-radius: 16px;
}

.slider-slide {
	flex-shrink: 0;
}

.ways {
	padding-top: 120px;
}
.ways--areas {
	padding-top: 96px;
}
.ways__title {
	font-family: var(--font-family);
	font-weight: 700;
	font-size: 56px;
	line-height: 111%;
	color: var(--basic-color-white);
	margin: 0;
}
.ways__header {
	display: flex;
	align-items: flex-end;
	margin-bottom: 48px;
}
.ways__text {
	max-width: 570px;
	margin-left: auto;
	font-family: var(--font-family);
	font-weight: 400;
	font-size: 16px;
	line-height: 150%;
	color: var(--basic-color-4);
}

.ways-slider .swiper-wrapper {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 30px;
}

.ways-item {
	display: flex;
	flex-direction: column;
	gap: 30px;
	position: relative;
	z-index: 1;
}
.ways-item:nth-child(even) {
	flex-direction: column-reverse;
}
.ways-item__img {
	border-radius: 14px;
	flex: 1;
	object-fit: cover;
	will-change: transform;
}
.ways-item__content {
	border-radius: 16px;
	overflow: hidden;
	padding: 32px 24px;
	background: var(--basic-color-8);
	position: relative;
	z-index: 1;
}
.ways-item__content::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: radial-gradient(112.47% 100% at 50.1% 0%, rgba(2, 91, 138, 0.2) 31.41%, #025b8a 100%);
	z-index: -1;
	opacity: 0;
	transition: 0.3s;
}
.ways-item__content a {
	font-family: var(--font-family);
	font-weight: 700;
	font-size: 16px;
	line-height: 125%;
	color: var(--primary-color-400-primary);
	text-decoration: none;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.ways-item__content a:before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
}
.ways-item__icon-wrapper {
	display: flex;
	margin-bottom: 24px;
}
.ways-item__title {
	margin: 0 0 16px;
	font-family: var(--font-family);
	font-weight: 400;
	font-size: 24px;
	line-height: 117%;
	color: var(--basic-color-white);
}
.ways-item__title--bold {
	font-weight: 700;
}
.ways-item__text {
	font-family: var(--font-family);
	font-weight: 400;
	font-size: 16px;
	line-height: 150%;
	color: var(--basic-color-4);
	margin: 0 0 16px;
}
.ways-item__list {
	margin: 0 0 16px;
	padding: 0;
	list-style: none;
	max-width: 270px;
	max-height: 0;
	overflow: hidden;
	transition: 0.3s;
}
.ways-item__list li {
	padding-bottom: 8px;
	margin-bottom: 8px;
	font-family: var(--font-family);
	font-weight: 700;
	font-size: 16px;
	line-height: 125%;
	color: var(--primary-color-400-primary);
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.ways-item__list li:not(:last-child) {
	border-bottom: 1px solid var(--picton-blue-800);
}
.ways-item__list li::after {
	content: "";
	width: 16px;
	height: 16px;
	display: inline-block;
	background: url("../img/ph_arrow-right-light.svg") no-repeat center center/100% 100%;
}

.ways-item.hover .ways-item__list {
	max-height: 300px;
}
.ways-item.hover .ways-item__content::before {
	opacity: 1;
}
.ways-item.hover .ways-item__content a {
	color: #fff;
}
.ways-item.hover .ways-item__content a path {
	fill: #fff;
}

.partner-model {
	padding-top: 120px;
}
.partner-model + .partnership {
	padding-top: 120px;
}
.partner-model__container {
	display: flex;
	gap: 48px;
	align-items: stretch;
}
.partner-model__title {
	font-family: var(--font-family);
	font-weight: 400;
	font-size: 56px;
	line-height: 111%;
	color: var(--basic-color-white);
	margin-bottom: 30px;
}
.partner-model__title strong {
	font-weight: 700;
}
.partner-model__text {
	font-family: var(--font-family);
	font-weight: 400;
	font-size: 16px;
	line-height: 150%;
	color: var(--basic-color-4);
}
.partner-model__image {
	max-width: 1166px;
	border-radius: 32px;
	width: 63%;
	object-fit: cover;
	height: 400px;
	flex: 1;
}
.partner-model__content {
	padding: 70px 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
	flex: 1;
}

.news-section {
	padding-top: 120px;
}
.news-section--news {
	padding-top: 28px;
}
.news-section--related {
	padding-top: 96px !important;
}
.news-section__header {
	display: flex;
	align-items: flex-end;
	margin-bottom: 48px;
}
.news-section__header--related {
	margin-bottom: 32px;
}
.news-section__header.news-filter {
	margin-bottom: 28px;
}
.news-section__title {
	font-family: var(--font-family);
	font-weight: 700;
	font-size: 56px;
	line-height: 111%;
	color: var(--basic-color-white);
	margin: 0 auto 0 0;
}
.news-section__title--related {
	font-size: 32px;
}
.news-section__items {
	padding: 0;
	margin: 0;
	list-style: none;
	column-gap: 32px;
	column-count: 4;
}

a.news-filter__item {
	font-family: var(--font-family);
	font-weight: 300;
	font-size: 24px;
	line-height: 117%;
	color: var(--basic-color-white);
	text-decoration: none;
	margin-right: 32px;
	transition: 0.3s;
	outline: none;
}
a.news-filter__item:hover {
	opacity: 0.7;
	color: var(--basic-color-white);
}
a.news-filter__item.active {
	color: var(--primary-color-400-primary);
}

.news-section-item {
	position: relative;
	z-index: 2;
	background: var(--basic-color-8);
	border-radius: 16px;
	padding: 8px 8px 16px;
	break-inside: avoid;
	margin-bottom: 24px;
	width: 100%;
	transition: 0.3s;
	overflow: hidden;
}
.news-section-item__img-wrapper {
	border-radius: 14px;
	margin-bottom: 16px;
	transition: 0.3s;
}
.news-section-item__img {
	width: 100%;
}
.news-section-item__header {
	display: flex;
	align-items: center;
	margin-bottom: 8px;
	padding-left: 8px;
	padding-right: 8px;
}
.news-section-item__days {
	font-family: var(--font-family);
	font-weight: 400;
	font-size: 14px;
	line-height: 150%;
	text-align: right;
	color: var(--basic-color-5);
	margin-left: auto;
	display: inline-flex;
	align-items: center;
	gap: 8px;
}
.news-section-item::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	right: 0;
	backdrop-filter: blur(7.3000001907px);
	background: linear-gradient(180deg, rgba(2, 91, 138, 0) 28.11%, #025b8a 79.9%);
	opacity: 0;
	border-radius: 16px;
	z-index: -1;
	transition: 0.3s;
}
.news-section-item:hover::before {
	opacity: 1;
}
.news-section-item:hover .news-section-item__img-wrapper {
	transform: scale(1.07);
}

a.news-section-item__category {
	background: rgba(138, 138, 138, 0.2);
	border-radius: 100px;
	padding: 2px 16px;
	font-family: var(--font-family);
	font-weight: 300;
	font-size: 18px;
	line-height: 133%;
	color: var(--basic-color-4);
	text-decoration: none;
	transition: 0.3s;
	z-index: 4;
	display: inline-flex;
}
a.news-section-item__category:hover {
	color: var(--primary-color-400-primary);
}
a.news-section-item__title {
	font-family: var(--font-family);
	font-weight: 300;
	font-size: 24px;
	line-height: 117%;
	color: var(--basic-color-white);
	text-decoration: none;
	padding: 0 8px;
	display: inline-block;
}
a.news-section-item__title::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	right: 0;
}

.news-pagination {
	display: flex;
	justify-content: center;
	margin-top: 32px;
}

a.btn {
	border-radius: 100px;
	padding: 12px 32px;
	font-family: var(--font-family);
	font-weight: 700;
	font-size: 16px;
	line-height: 125%;
	text-decoration: none;
	display: inline-flex;
	transition: 0.3s;
}
a.btn--dark {
	background: var(--basic-color-8);
	color: var(--basic-color-white);
}
a.btn--dark:hover {
	background: var(--picton-blue-950);
}
a.btn--arrow {
	align-items: center;
	gap: 8px;
}
a.btn--blue {
	background: var(--primary-color-400-primary);
	color: var(--basic-color-9);
}
a.btn--blue:hover {
	background: var(--picton-blue-600);
}
a.btn--white {
	background: var(--secondary-color-100);
	color: var(--basic-color-9);
}
a.btn--white:hover {
	background: var(--secondary-color-300);
}
a.btn--white-transparent {
	border: 1px solid var(--basic-color-white);
	color: #fff;
}
a.btn--white-transparent:hover {
	background: var(--basic-color-7);
}

button.btn {
	border-radius: 100px;
	padding: 12px 32px;
	font-family: var(--font-family);
	font-weight: 700;
	font-size: 16px;
	line-height: 125%;
	text-decoration: none;
	display: inline-flex;
	transition: 0.3s;
	cursor: pointer;
}
button.btn--blue {
	background: var(--primary-color-400-primary);
	color: var(--basic-color-9);
}
button.btn--blue:hover {
	background: var(--picton-blue-600);
}
button.btn--white-transparent {
	border: 1px solid var(--basic-color-white);
	color: #fff;
	background: transparent;
}
button.btn--white-transparent:hover {
	background: var(--basic-color-7);
}

.partnership {
	padding-top: 96px;
}
.partnership__container {
	display: flex;
	gap: 36px;
	justify-content: flex-end;
	position: relative;
	border-radius: 32px;
	background: var(--basic-color-9);
	padding-bottom: 11px;
}
.partnership__container::before {
	content: "";
	position: absolute;
	bottom: -43px;
	width: 100%;
	background: radial-gradient(77.06% 40.07% at 50.86% 50.03%, rgb(33, 188, 255) 0%, rgb(0, 138, 198) 100%);
	filter: blur(70px);
	left: 0;
	display: block;
	height: 269px;
	z-index: -1;
}
.partnership__content {
	max-width: 737px;
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	padding: 90px 0;
}
.partnership__title {
	font-family: var(--font-family);
	font-weight: 700;
	font-size: 56px;
	line-height: 111%;
	color: var(--basic-color-white);
	margin-bottom: 8px;
}
.partnership__text {
	font-family: var(--font-family);
	font-weight: 400;
	font-size: 32px;
	line-height: 113%;
	color: var(--basic-color-white);
	margin-bottom: 24px;
}
.partnership__image {
	max-width: 997px;
	border-radius: 31px;
	width: 55%;
	object-fit: cover;
	height: 494px;
}

.site-footer {
	padding-top: 48px;
	padding-bottom: 73px;
	padding-left: 4px;
	padding-right: 4px;
}

.footer__container {
	display: flex;
	width: 100%;
	align-items: flex-start;
}
.footer__info {
	max-width: 264px;
	transition: 0.3s;
}
.footer__info:hover {
	opacity: 0.8;
}
.footer__menus {
	display: flex;
	gap: 72px;
	margin-left: auto;
	width: 100%;
	justify-content: flex-end;
}

.footer-menu {
	width: 100%;
	max-width: 200px;
}
.footer-menu__title {
	font-family: var(--second-family);
	font-weight: 700;
	font-size: 16px;
	line-height: 150%;
	color: var(--basic-color-white);
	margin: 0 0 4px;
}
.footer-menu__title--2 {
	margin-top: 8px;
	margin-bottom: 0;
}
.footer-menu__items {
	padding: 0;
	margin: 0;
	list-style: none;
}
.footer-menu__item {
	display: flex;
	margin-top: 8px;
}
.footer-menu__icons {
	display: flex;
	gap: 8px;
}

a.footer-menu__link {
	font-family: var(--second-family);
	font-weight: 400;
	font-size: 16px;
	line-height: 150%;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	transition: 0.3s;
	font-family: var(--font-family);
	font-weight: 400;
	font-size: 16px;
	line-height: 125%;
	color: var(--basic-color-4);
}
a.footer-menu__link:hover {
	opacity: 0.8;
}

.ways-slider-pagination {
	display: flex;
	margin-top: 16px;
}

.swiper-pagination-bullet {
	background: var(--basic-color-7);
	opacity: 1;
	width: 16px;
	height: 16px;
	margin-left: 0;
	margin-right: 8px;
}
.swiper-pagination-bullet-active {
	background: var(--basic-color-6);
}

a.for-mob-if {
	display: none;
}

.breadcrumbs__list {
	display: flex;
	list-style: none;
	padding: 0;
	margin: 0 0 19px;
	flex-wrap: wrap;
}
.breadcrumbs__item {
	font-family: var(--font-family);
	font-weight: 300;
	font-size: 16px;
	line-height: 137%;
	text-transform: uppercase;
	color: var(--basic-color-white);
}
.breadcrumbs__item:not(:last-child)::after {
	content: "—";
	font-family: var(--font-family);
	font-weight: 300;
	font-size: 16px;
	line-height: 137%;
	text-transform: uppercase;
	color: var(--basic-color-6);
	margin: 0 4px;
}
.breadcrumbs__item a {
	font-family: var(--font-family);
	font-weight: 300;
	font-size: 16px;
	line-height: 137%;
	text-transform: uppercase;
	color: var(--basic-color-6);
	text-decoration: none;
}

.contacts-section__container {
	max-width: 1920px;
}
.contacts-section__content {
	display: grid;
	align-items: center;
	gap: 56px;
	grid-template-columns: 1fr 1.52fr;
}
.contacts-section__block {
	max-width: 713px;
}
.contacts-section__title {
	margin: 0 0 16px;
	font-family: var(--font-family);
	font-weight: 700;
	font-size: 56px;
	line-height: 111%;
	color: var(--basic-color-white);
}
.contacts-section__description {
	font-family: var(--font-family);
	font-weight: 400;
	font-size: 16px;
	line-height: 150%;
	color: var(--basic-color-4);
	margin: 0 0 18px;
}
.contacts-section__img::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url('../img/filter.png') no-repeat center / cover;
}
.main-hero__preview::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url('../img/main-screen-filter.png') no-repeat center / cover;
}
.contacts-section__image {
	display: block;
	max-height: 470px;
	max-width: 1080px;
	object-fit: cover;
	object-position: center right;
	width: 100%;
}
.contacts-section__img {
	border-radius: 32px;
	overflow: hidden;
	width: 100%;
	position: relative;
}

.form-template-item {
	display: flex;
	flex-direction: column;
	gap: 16px;
}
.form-template-item .form-row {
	display: flex;
	gap: 16px;
	align-items: flex-start;
}
.form-template-item .form-input-item {
	flex: 1;
}
.form-template-item .form-input {
	font-family: var(--font-family);
	font-weight: 400;
	font-size: 16px;
	line-height: 150%;
	color: var(--basic-color-white);
	background: var(--basic-color-8);
	border: 1px solid transparent;
	outline: none;
	border-radius: 100px;
	padding: 14px 16px;
	width: 100%;
	transition: 0.3s;
}
.form-template-item .form-input::placeholder {
	font-family: var(--second-family);
	color: var(--basic-color-6);
}
.form-template-item .form-input--icon {
	padding: 14px 16px 14px 48px;
}
.form-template-item .form-input--account {
	background: var(--basic-color-8) url("../img/ph_user-circle-light.svg") no-repeat 16px center/24px 24px;
}
.form-template-item .form-input--email {
	background: var(--basic-color-8) url("../img/ph_envelope-simple-light.svg") no-repeat 16px center/24px 24px;
}
.form-template-item .form-input--tel {
	background: var(--basic-color-8) url("../img/ph_phone-light.svg") no-repeat 16px center/24px 24px;
}
.form-template-item .form-input--company {
	background: var(--basic-color-8) url("../img/ph_briefcase-light.svg") no-repeat 16px center/24px 24px;
}
.form-template-item .form-input:focus, .form-template-item .form-input:active, .form-template-item .form-input:hover {
	border-color: var(--basic-color-7);
}
.form-template-item .form-button {
	background: var(--primary-color-400-primary);
	border-radius: 100px;
	padding: 12px 32px;
	border: none;
	outline: none;
	font-family: var(--font-family);
	font-weight: 700;
	font-size: 16px;
	line-height: 125%;
	color: var(--basic-color-9);
	width: calc(50% - 16px);
	margin-top: 16px;
	cursor: pointer;
	max-width: 296px;
	justify-content: center;
}

.form-input-item__error {
	color: #e53935;
	font-size: 12px;
	margin-top: 4px;
}

.form-input.has-error {
	border-color: #e53935;
}

.error-page-main {
	min-height: 745px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.error-page {
	padding-top: 100px;
}
.error-page h1 {
	font-family: var(--font-family);
	font-weight: 700;
	font-size: 243px;
	/* line-height: 26%; */
	text-align: center;
	-webkit-text-stroke: 2px var(--primary-color-400-primary);
	color: transparent;
	margin: 0 0 32px;
	line-height: 0.76;
}
.error-page h2 {
	margin: 0 0 8px;
	font-family: var(--font-family);
	font-weight: 700;
	font-size: 32px;
	line-height: 113%;
	text-align: center;
	color: var(--basic-color-white);
}
.error-page p {
	font-family: var(--font-family);
	font-weight: 400;
	font-size: 16px;
	line-height: 1;
	text-align: center;
	color: var(--basic-color-4);
	margin-top: 0;
	margin-bottom: 24px;
}

.page-title {
	font-family: var(--font-family);
	font-weight: 400;
	font-size: 56px;
	line-height: 104%;
	color: var(--basic-color-white);
}
.page-title--small {
	font-size: 32px;
	line-height: 113%;
}

.company-hero__content {
	min-height: 400px;
	display: flex;
	align-items: center;
	background-size: cover;
	border-radius: 32px;
	padding: 64px;
	background-position-x: 70%;
}
.company-hero__block {
	max-width: 730px;
	width: 100%;
}
.company-hero__title {
	margin-top: 0;
	margin-bottom: 16px;
}

.archive .company-hero__title {
	margin-bottom: 0 !important;
}

.rptrs {
	padding-top: 96px;
}
.rptrs .row {
	display: flex;
	gap: 30px;
	justify-content: flex-end;
}
.rptrs__content {
	align-self: center;
	max-width: 683px;
}
.rptrs__title {
	font-family: var(--font-family);
	font-size: 56px;
	line-height: 111%;
	color: var(--basic-color-white);
	font-weight: 400;
	margin: 0 0 30px;
}
.rptrs__text {
	font-family: var(--font-family);
	font-weight: 400;
	font-size: 16px;
	line-height: 150%;
	color: var(--basic-color-4);
}
.rptrs__picture {
	border-radius: 14px;
	overflow: hidden;
	display: block;
	position: relative;
	max-width: 1048px;
	width: 63%;
	object-fit: cover;
	min-height: 383px;
	height: 383px;
}
.rptrs__picture img {
	width: 100%;
	display: block;
	height: 100%;
	object-fit: cover;
}
.rptrs--revert .row {
	justify-content: flex-start;
}
.rptrs--revert .rptrs__picture {
	order: 0;
}
.rptrs--revert .rptrs__content {
	order: 1;
}

.partnership-single {
	padding-top: 107px;
}
.partnership-single__container {
	display: flex;
	align-items: center;
	gap: 36px;
	justify-content: flex-end;
	position: relative;
	border-radius: 32px;
	background: var(--basic-color-9);
	padding-bottom: 11px;
}
.partnership-single__container::before {
	content: "";
	position: absolute;
	bottom: -43px;
	width: 100%;
	background: radial-gradient(77.06% 40.07% at 50.86% 50.03%, rgb(33, 188, 255) 0%, rgb(0, 138, 198) 100%);
	filter: blur(70px);
	left: 0;
	display: block;
	height: 269px;
	z-index: -1;
}
.partnership-single__content {
	width: 100%;
	max-width: 737px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	padding-top: 40px;
	padding-bottom: 40px;
}
.partnership-single__title {
	font-family: var(--font-family);
	font-weight: 700;
	font-size: 56px;
	line-height: 111%;
	color: var(--basic-color-white);
	margin: 0 0 8px;
}
.partnership-single__text {
	font-family: var(--font-family);
	font-weight: 400;
	font-size: 16px;
	line-height: 150%;
	color: var(--basic-color-4);
	margin: 0 0 24px;
	max-width: 640px;
}
.partnership-single__image {
	max-width: 997px;
	border-radius: 31px;
	width: 55%;
	min-height: 494px;
	object-fit: cover;
}
@media (max-width: 1530px) {
	.partnership-single__image {
		min-height: 390px;
		width: 41%;
	}
}

.area-hero__content {
	padding: 40px 64px;
	min-height: 400px;
	display: flex;
	align-items: center;
	border-radius: 32px;
	background-position-x: 70%;
	background-size: cover;
}
.area-hero__block {
	max-width: 730px;
}
.area-hero__title {
	margin-bottom: 16px;
}

.area-categories {
	padding-top: 72px;
}
.area-categories__items {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 30px;
	align-items: flex-start;
}

.area-categories-item {
	background: var(--basic-color-8);
	border-radius: 16px;
	padding: 32px 24px 24px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 24px;
	position: relative;
	overflow: hidden;
	z-index: 1;
	min-height: 220px;
}
.area-categories-item::before {
	z-index: -1;
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 100%;
	background: radial-gradient(109.72% 100% at 50.1% 0%, rgba(2, 91, 138, 0.2) 47.09%, #025b8a 100%);
	opacity: 0;
	transition: 0.3s;
}
.area-categories-item.hover::before {
	opacity: 1;
}
.area-categories-item.hover .area-categories-item__products {
	max-height: 300px;
}
.area-categories-item__icon {
	display: flex;
}
.area-categories-item__title {
	font-family: var(--font-family);
	font-weight: 400;
	font-size: 24px;
	line-height: 117%;
	text-align: center;
	color: var(--basic-color-white);
	margin: 0 0 24px;
}
.area-categories-item__products {
	margin: 0 auto;
	padding: 0;
	list-style: none;
	max-height: 0;
	transition: 0.3s;
	overflow: hidden;
	max-width: 270px;
}
.area-categories-item__product {
	padding-bottom: 8px;
	margin-bottom: 8px;
	font-family: var(--font-family);
	font-weight: 700;
	font-size: 16px;
	line-height: 125%;
	color: var(--primary-color-400-primary);
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.area-categories-item__product:not(:last-child) {
	border-bottom: 1px solid var(--picton-blue-800);
}
.area-categories-item__product::after {
	content: "";
	width: 16px;
	height: 16px;
	display: inline-block;
	background: url("../img/ph_arrow-right-light.svg") no-repeat center center/100% 100%;
}

.area-contacts {
	padding-top: 46px;
}
.area-contacts__container {
	display: flex;
	align-items: center;
	gap: 36px;
	justify-content: flex-end;
	position: relative;
	border-radius: 32px;
	background: var(--basic-color-9);
	padding-bottom: 11px;
	padding-top: 9px;
}
.area-contacts__container::before {
	content: "";
	position: absolute;
	bottom: -43px;
	width: 100%;
	background: radial-gradient(77.06% 40.07% at 50.86% 50.03%, rgb(33, 188, 255) 0%, rgb(0, 138, 198) 100%);
	filter: blur(70px);
	left: 0;
	display: block;
	height: 269px;
	z-index: -1;
}
.area-contacts__content {
	display: grid;
	align-items: center;
	gap: 39px;
	grid-template-columns: 1fr 1.3fr;
	width: 100%;
}
.area-contacts__block {
	max-width: 800px;
	padding-top: 15px;
	padding-bottom: 15px;
}
.area-contacts__title {
	max-width: 610px;
	margin-bottom: 24px;
}
.area-contacts__img {
	border-radius: 32px;
	max-height: 390px;
	width: 100%;
	object-fit: cover;
	object-position: center 20%;
	max-height: 390px;
}
.area-contacts button.area-contacts__submit {
	width: fit-content;
	margin-top: 8px;
}

.areas-hero__title {
	margin-bottom: 16px;
}
.areas-hero__content {
	display: flex;
	align-items: center;
	min-height: 400px;
	padding: 64px;
	border-radius: 32px;
	background-size: cover;
	background-position-x: 20%;
	background-repeat: no-repeat;
}
.areas-hero__block {
	max-width: 730px;
}

.single-news-content__content {
	max-width: 770px;
	margin: 48px auto 0;
}
.single-news-content__title {
	margin: 0 0 16px;
	font-family: var(--font-family);
	font-weight: 400;
	font-size: 48px;
	line-height: 117%;
	color: var(--basic-color-white);
}
.single-news-content__header {
	display: flex;
	align-items: center;
	margin-bottom: 24px;
}
.single-news-content .post-thumbnail {
	border-radius: 14px;
	overflow: hidden;
	display: flex;
	margin-bottom: 24px;
	width: 100%;
}
.single-news-content .post-thumbnail img {
	width: 100%;
}
.single-news-content__body {
	font-family: var(--font-family);
	font-weight: 400;
	font-size: 16px;
	line-height: 150%;
	color: var(--basic-color-4);
}
.single-news-content__body h1:not(:first-child), .single-news-content__body h2:not(:first-child), .single-news-content__body h3:not(:first-child), .single-news-content__body h4:not(:first-child), .single-news-content__body h5:not(:first-child), .single-news-content__body h6:not(:first-child) {
	margin-top: 24px;
}
.single-news-content__body h1:not(:last-child), .single-news-content__body h2:not(:last-child), .single-news-content__body h3:not(:last-child), .single-news-content__body h4:not(:last-child), .single-news-content__body h5:not(:last-child), .single-news-content__body h6:not(:last-child) {
	margin-bottom: 24px;
}
.single-news-content__body h1, .single-news-content__body h2, .single-news-content__body h3, .single-news-content__body h4, .single-news-content__body h5, .single-news-content__body h6, .single-news-content__body b, .single-news-content__body strong {
	color: var(--basic-color-white);
}
.single-news-content__body ul {
	margin-left: 0;
	padding-left: 30px;
}
.single-news-content__body p {
	margin-top: 0;
}
.single-news-content__body p:not(:last-child) {
	margin-bottom: 16px;
}
/* Мінімальні стилі табів */
.policy-page-content__sidebar-item {
	cursor: pointer;
	margin: 0 0 16px;
}

.policy-page-content__sidebar-item.active {
	font-weight: bold;
	color: var(--primary-color-400-primary);
}

h1.policy-page-content__title {
	font-weight: 400;
	font-family: var(--font-family);
	font-size: 56px;
	line-height: 111%;
	margin: 0 0 32px;
}

.tab-pane {
	display: none;
}
.tab-pane h1:first-child, .tab-pane h2:first-child, .tab-pane h3:first-child, .tab-pane p:first-child {
	margin-top: 0;
}

.policy-page-content__content {
	max-width: 730px;
}
.policy-page-content__wrapper {
	display: flex;
	align-items: flex-start;
	justify-content: center;
	gap: 32px;
}
.policy-page-content__sidebar {
	position: sticky;
	top: 130px;
}
.policy-page-content__text ul {
	margin-left: 0;
}
.policy-page-content__text a {
	color: var(--primary-color-400-primary) !important;
	text-decoration: none;
}
.policy-page-content__text a:hover {
	opacity: 0.7;
}

.tab-pane.active {
	display: block;
}
.thank-you-page {
    padding-top: 100px;
}
.thank-you-page-main {
    min-height: 745px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 32px;
    padding-bottom: 140px;
}
.thank-you-page-main h1 {
	font-family: var(--font-family);
    font-weight: 400;
    font-size: 24px;
    line-height: 117%;
    text-align: center;
    color: var(--basic-color-white);
    max-width: 570px;
}
.popup {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  display: flex;
  z-index: 1000;
  opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}
.popup.is-active {
    opacity: 1;
    pointer-events: auto;
}
.popup__bg {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: var(--basic-color-9);
  opacity: 0.8;
}
.popup__wrapper {
  max-width: 770px;
  margin: auto;
  display: flex;
  flex-direction: column;
  position: relative;
  background: var(--basic-color-8);
  border: 1px solid var(--basic-color-7);
  border-radius: 32px;
  padding: 32px;
}
.popup__title {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 48px;
  line-height: 117%;
  color: var(--basic-color-white);
  max-width: 90%;
  margin: 0 0 16px;
}
.popup__text {
  margin-top: 24px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: var(--basic-color-4);
  max-height: 320px;
  overflow: auto;
  padding-right: 20px;
}
.popup__text p {
	margin: 8px 0;
}
.popup__desclaimer {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  line-height: 150%;
  color: var(--basic-color-6);
  margin: 24px 0 0;
}

button.popup__close {
  position: absolute;
  right: 32px;
  top: 32px;
  background: transparent;
  border: none;
  padding: 0;
  display: flex;
  align-items: center;
  cursor: pointer;
  transition: .3s;
}

button.popup__close:hover {
opacity: .7;
}
a.popup__link {
  background: #353535;
  border-radius: 16px;
  padding: 8px 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-family);
  font-weight: 300;
  font-size: 18px;
  line-height: 133%;
  color: var(--basic-color-3);
  text-decoration: none;
  transition: .3s;
}

a.popup__link:hover {
background: var(--picton-blue-950);
}
@media (max-width: 1530px) {
	.main-hero__card {
		min-height: 630px;
		padding: 110px 6.2%;
	}
	.main-hero-news-list--news {
		max-height: 460px;
	}
	.main-hero__card--news {
		min-height: 500px;
		padding-top: 60px;
		padding-bottom: 60px;
	}
	.main-hero-news-list--main .main-hero-news-item:nth-child(5),
	.main-hero-news-list--main .main-hero-news-item:nth-child(6) {
		display: none;
	}
	.partner-model + .partnership,
	.partner-model,
	.news-section,
	.ways {
		padding-top: 96px;
	}
	.partner-model + .partnership--news,
	.partner-model--news,
	.news-section--news,
	.ways--news {
		padding-top: 28px;
	}
	.partnership {
		padding-top: 74px;
	}
	. {
		height: 390px;
		width: 41%;
	}
	.partnership__content {
		padding: 45px 0;
	}
	.ways-item__img {
		min-height: 417px;
	}
	.ways__text {
		max-width: 477px;
	}
	.partner-model__image {
		width: 50%;
	}
	.news-section-item:nth-last-child(1) {
		display: none;
	}
	.news-section-item--shown {
		display: list-item !important;
	}
	.news-section__items {
		column-count: 3;
	}
	.partnership-single__container::before {
		height: 169px;
		filter: blur(50px);
	}
	.area-contacts__content {
		display: flex;
		justify-content: space-between;
		gap: 30px;
	}
	.area-contacts__img {
		max-width: 572px;
		height: 390px;
		width: 46%;
	}
	.area-contacts__block {
		max-width: 740px;
		margin-left: auto;
		width: 100%;
	}
	.area-contacts__form {
		max-width: 610px;
	}
	.single-news .news-section-item:nth-last-child(2) {
		display: list-item;
	}
}
@media (max-width: 1280px) {
	.main-hero__content {
		grid-template-columns: 1fr;
	}
	.main-hero__main {
		grid-column: auto;
	}
	.main-hero__sidebar {
		grid-column-start: 1;
		max-width: 100%;
	}
	.main-hero-news-list {
		display: grid;
		grid-template-columns: 1fr 1fr;
	}
	.contacts-section__content {
		gap: 30px;
	}
	.partnership-single__image, .partnership-single__content,
	.,
	.partnership__content {
		flex: 1;
	}
	.rptrs__content, .rptrs__picture {
		flex: 1;
	}
	.contacts-section__content {
		grid-template-columns: 1.1fr 1fr;
	}
	.area-categories__items {
		grid-template-columns: repeat(2, 1fr);
		align-items: unset;
	}
	.area-categories-item__products {
		max-height: unset;
	}
	.area-categories {
		padding-top: 60px;
	}
	.menu-toggle {
		min-width: unset;
		padding: 9px 5px;
		background: transparent !important;
		outline: none;
		margin-right: auto;
		z-index: 24;
		position: relative;
		border: none;
		margin-left: 16px;
	}
	.burger-btn {
		width: 29px;
		height: 22px;
		position: relative;
		border: none;
		display: block;
	}
	.burger-btn span {
		width: 100%;
		height: 2px;
		background: #fff;
		position: absolute;
		left: 0%;
		top: 50%;
		transform: translateY(-1px);
		transition: 0.3s;
		border-radius: 2px;
	}
	.burger-btn::before, .burger-btn::after {
		content: "";
		width: 100%;
		height: 2px;
		background: #fff;
		position: absolute;
		left: 0%;
		transition: 0.3s;
		border-radius: 2px;
	}
	.burger-btn::before {
		top: 0;
	}
	.burger-btn::after {
		top: 21px;
	}
	.burger-btn.close:before {
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%) rotate(45deg);
	}
	.burger-btn.close:after {
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%) rotate(-45deg);
	}
	.burger-btn.close span {
		opacity: 0;
	}
	.menu-menu-1-container {
		position: fixed;
		top: 0;
		left: 0;
		bottom: 0;
		right: 0;
		height: 100vh;
		background: #000000;
		padding: 122px 64px;
		opacity: 0;
		pointer-events: none;
		transition: 0.3s;
	}
	.menu-item-has-children > a::after {
		width: 40px;
		height: 40px;
	}
	.main-navigation.toggled .menu {
		display: flex;
	}
	.main-navigation.toggled .menu-menu-1-container {
		opacity: 1;
		pointer-events: all;
	}
	.main-navigation.toggled .sub-menu {
		position: relative;
		left: unset;
		padding: 0 32px 0;
		background: transparent;
		display: flex;
		gap: 16px;
		transition: 0.3s;
		max-height: 0;
		overflow: hidden;
		opacity: 0;
		top: unset;
	}
	.main-navigation .menu {
		display: none;
		flex-direction: column;
		gap: 32px;
		margin-right: 32px;
		margin-bottom: 50px;
	}
	.main-navigation .menu a {
		font-weight: 400;
		font-size: 32px;
		width: fit-content;
	}
	.main-navigation .menu ul a {
		font-family: var(--font-family);
		font-weight: 400;
		font-size: 24px;
		line-height: 117%;
		color: var(--basic-color-4);
	}
	.main-navigation .search-field__input:focus, .main-navigation .search-field__input:active, .main-navigation .search-field__input:not(:placeholder-shown), .main-navigation .search-field__input:hover,
	.main-navigation .search-field:hover .search-field__input {
		max-width: 310px;
	}
	.main-navigation .menu-item-has-children.focus > a {
		color: var(--primary-color-400-primary);
	}
	.main-navigation .menu-item-has-children.focus > a::after {
		transform: scaleY(-1);
	}
	.main-navigation .menu-item-has-children.focus .sub-menu {
		max-height: 400px;
		opacity: 1;
		padding-top: 32px;
	}
	.news-section--related {
		padding-top: 60px !important;
	}
	.policy-page-content__wrapper {
		flex-direction: column;
		gap: 16px;
	}
	.policy-page-content__sidebar {
		position: relative;
		top: unset;
	}
}
@media (max-width: 1024px) {
	p {
		margin-bottom: 12px;
	}
	.site-main {
		padding-top: 76px;
	}
	.container {
		padding: 0 16px;
	}
	.partnership__container,
	.partner-model__container {
		flex-direction: column;
	}
	.ways__header {
		flex-direction: column;
		align-items: flex-start;
		gap: 8px;
		margin-bottom: 16px;
	}
	.news-section__items {
		column-count: 1;
	}
	.main-hero-news-list {
		grid-template-columns: 1fr;
	}
	.page-title,
	.partnership-single__title,
	.main-hero__title h1 {
		font-size: 32px;
		line-height: 106%;
		margin-bottom: 16px;
	}
	.main-hero__card {
		min-height: unset;
		padding: 42px 16px;
		background: linear-gradient(270deg, rgba(26, 26, 26, 0) 0%, #1f1f1f 86.77%), url("../img/main-screen.png") no-repeat 80% center/cover;
	}
	.partner-model + .partnership,
	.partner-model,
	.news-section,
	.ways {
		padding-top: 32px;
		overflow: hidden;
	}
	.partner-model + .partnership__title,
	.partner-model__title,
	.news-section__title,
	.ways__title {
		font-size: 32px;
		line-height: 106%;
	}
	.partner-model + .partnership__title--related,
	.partner-model__title--related,
	.news-section__title--related,
	.ways__title--related {
		font-size: 24px;
	}
	a.main-hero__title--news {
		font-size: 32px;
		line-height: 106%;
	}
	.ways-item {
		gap: 16px;
		height: unset;
	}
	.ways-item__img {
		min-height: 210px;
	}
	.ways-slider {
		overflow: visible;
	}
	.ways-slider .swiper-wrapper {
		display: flex;
		gap: unset;
	}
	.partner-model__content {
		padding: 0;
	}
	.partner-model__title {
		margin-bottom: 16px;
	}
	.partner-model__container {
		gap: 16px;
	}
	.partner-model__image {
		width: 100%;
	}
	a.for-mob-if,
	.for-mob-if {
		display: inline-flex;
	}
	a.for-desktop-if,
	.for-desktop-if {
		display: none;
	}
	.news-section__content {
		display: flex;
		flex-direction: column;
	}
	.news-section__header {
		margin-bottom: 24px;
	}
	.news-section__link {
		margin-top: 8px;
		margin-left: auto;
	}
	.news-section-item {
		margin-bottom: 16px;
	}
	.partnership {
		padding-top: 32px;
	}
	.partnership__container {
		padding: 8px 16px;
		gap: 16px;
	}
	.partnership__title {
		font-size: 32px;
		margin-bottom: 8px;
		line-height: 106%;
	}
	.partnership__text {
		font-size: 21px;
		line-height: 124%;
		margin-bottom: 16px;
	}
	.partnership__content {
		padding: 0;
	}
	. {
		width: 100%;
	}
	.site-main {
		padding-bottom: 51px;
	}
	.site-footer {
		padding: 0 0 32px;
	}
	.footer__container {
		flex-direction: column-reverse;
	}
	.footer__info {
		max-width: 181px;
		margin-top: 32px;
	}
	.footer__menus {
		flex-direction: column;
		gap: 16px;
	}
	.footer-menu__items {
		display: flex;
		flex-direction: column;
	}
	.footer-menu__title--2 {
		margin-top: 16px;
	}
	.footer-menu__icons {
		flex-direction: row;
		gap: 8px;
	}
	.partnership__container::before {
		background: radial-gradient(77.06% 40.07% at 50.86% 50.03%, rgb(33, 188, 255) 0%, rgb(0, 138, 198) 89%, transparent 120%);
		filter: blur(40px);
	}
	.contacts-section__content {
		grid-template-columns: 1fr;
		max-width: 500px;
		margin: 0 auto;
	}
	.site-branding {
		width: 113px;
	}
	.site-header {
		padding-top: 16px;
	}
	.contacts-section__title {
		font-size: 48px;
	}
	.single-news-content__title {
		font-size: 32px;
	}
	.single-news-content__content {
		margin-top: 32px;
	}
	.error-page {
		padding-top: 80px;
	}
	.error-page h1 {
		font-size: 140px;
		margin-bottom: 24px;
	}
	.error-page h2 {
		font-size: 24px;
	}
	.error-page-main {
		min-height: 600px;
	}
	.area-hero__content,
	.areas-hero__content,
	.company-hero__content {
		padding: 42px 16px;
		min-height: unset;
	}
	.area-hero__block,
	.areas-hero__block,
	.company-hero__block {
		max-width: 420px;
	}
	.partnership-single {
		padding-top: 32px;
	}
	.partnership-single .container {
		flex-direction: column;
		gap: 16px;
		padding: 8px 16px;
	}
	.partnership-single__content {
		padding: 0;
	}
	.partnership-single__image {
		min-height: 390px;
		width: 100%;
	}
	.rptrs {
		padding-top: 32px;
	}
	.rptrs .row {
		flex-direction: column;
		gap: 16px;
	}
	.rptrs--revert .rptrs__content, .rptrs--revert .rptrs__picture {
		flex: unset;
		order: unset;
	}
	.rptrs__content {
		align-self: flex-start;
	}
	.rptrs__picture {
		min-height: 235px;
		height: 235px;
	}
	.rptrs__content, .rptrs__picture {
		flex: unset;
		width: 100%;
	}
	.rptrs__title {
		font-size: 32px;
		line-height: 106%;
		margin-bottom: 16px;
	}
	.area-categories {
		padding-top: 32px;
	}
	h1.policy-page-content__title {
		font-size: 32px;
		line-height: 106%;
		margin-bottom: 16px;
	}
    .popup__wrapper {
    	    max-height: 80vh;
    overflow: auto;
    }
    .popup__title {
        font-size: 32px;
    }
    .popup__text {
        max-height: max-content;
    }
    .popup {
    	padding: 16px;
    }
}
@media (max-width: 567px) {
	.search-field__input:focus + button.search-field__btn, .search-field__input:active + button.search-field__btn, .search-field__input:not(:placeholder-shown) + button.search-field__btn, .search-field__input:hover + button.search-field__btn,
	.search-field:hover button.search-field__btn {
		background: linear-gradient(90deg, #000 0%, rgba(0, 0, 0, 0) 100%);
	}
	.form-template-item .form-row {
		flex-direction: column;
		gap: 10px;
	}
	.form-template-item .form-input-item {
		width: 100%;
	}
	.form-template-item {
		gap: 10px;
	}
	.form-template-item .form-button {
		margin-top: 8px;
	}
	.form-template-item .form-button {
		width: 50%;
	}
	.area-categories__items {
		grid-template-columns: 1fr;
		gap: 16px;
	}
	.area-contacts {
		padding-top: 32px;
	}
	.area-contacts__title {
		font-size: 24px;
	}
	.area-contacts__container {
		padding: 0;
	}
	.area-contacts__content {
		flex-direction: column;
		max-width: 500px;
		margin: 0 auto;
		gap: 16px;
		padding: 8px 16px;
	}
	.area-contacts__block {
		padding: 0;
	}
	.area-contacts__img {
		border-radius: 32px;
		max-height: 470px;
		width: 100%;
		object-fit: cover;
		object-position: center 20%;
		min-height: 270px;
		height: auto;
	}
	.search-field {
		position: absolute;
		opacity: 0;
		pointer-events: none;
		left: 32px;
		top: 92px;
		margin-right: 0;
		transition: 0.3s;
		z-index: 3;
	}
	.search-field__input {
		max-width: 310px;
		width: 100vw;
		padding-left: 60px;
	}
	.search-field__btn {
		right: unset !important;
		left: 0;
	}
	.main-navigation .menu-item-has-children.focus .sub-menu {
		margin-right: -50px;
	}
	.main-navigation.toggled .search-field {
		opacity: 1;
		pointer-events: all;
	}
	.menu-menu-1-container {
		padding: 172px 32px 100px;
		display: flex;
		flex-direction: column;
		z-index: 2;
		overflow: auto;
	}
	.temporary-navigation__btn {
		z-index: 1;
	}
	.temporary-navigation__btn--full {
		margin-top: auto;
		width: 100%;
		justify-content: center;
		z-index: 3;
	}
	.main-navigation .menu-item-has-children > a::after {
		pointer-events: none;
	}
}

.main-hero__preview {
	    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0;
    transition: opacity .3s ease;
}
.main-hero__preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
	display: block;
}
.main-hero__preview.is-visible {
    opacity: 1;
}