@charset "UTF-8";
/* Common */
/* Raleway */
@import url("icons.css");
@font-face {
	font-family: 'Raleway';
	src: url("fonts/Raleway-ExtraBold.woff2") format("woff2"), url("fonts/Raleway-ExtraBold.woff") format("woff");
	font-weight: 800;
	font-style: normal;
	font-display: swap;
}

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

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

@font-face {
	font-family: 'Raleway';
	src: url("fonts/Raleway-Medium.woff2") format("woff2"), url("fonts/Raleway-Medium.woff") format("woff");
	font-weight: 500;
	font-style: normal;
	font-display: swap;
}

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

/* Media */
/* Content */
/* Common animations */
@-webkit-keyframes marquee {
	0% {
		-webkit-transform: translateX(calc(100% + 2.77778vw));
		        transform: translateX(calc(100% + 2.77778vw));
		/* Начинаем движение справа */
	}
	100% {
		-webkit-transform: translateX(-100%);
		        transform: translateX(-100%);
		/* Заканчиваем движением слева */
	}
}
@keyframes marquee {
	0% {
		-webkit-transform: translateX(calc(100% + 2.77778vw));
		        transform: translateX(calc(100% + 2.77778vw));
		/* Начинаем движение справа */
	}
	100% {
		-webkit-transform: translateX(-100%);
		        transform: translateX(-100%);
		/* Заканчиваем движением слева */
	}
}

@-webkit-keyframes marquee-bg_rtl {
	from {
		-webkit-transform: translate3d(0, 0, 0);
		        transform: translate3d(0, 0, 0);
	}
	to {
		-webkit-transform: translate3d(-50%, 0, 0);
		        transform: translate3d(-50%, 0, 0);
	}
}

@keyframes marquee-bg_rtl {
	from {
		-webkit-transform: translate3d(0, 0, 0);
		        transform: translate3d(0, 0, 0);
	}
	to {
		-webkit-transform: translate3d(-50%, 0, 0);
		        transform: translate3d(-50%, 0, 0);
	}
}

@-webkit-keyframes fadeOut {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

@keyframes fadeOut {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

:root {
	--width-mobile: 100vw;
	--width-desktop: 213.33333vw;
	--width-desktop-1920: 533.33333vw;
	--raleway: Raleway, sans-serif;
	--red: #ED131C;
	--black: #1C1C1C;
	--gray-10: #F5F5F6;
	--gray-20: #ECEDF0;
	--gray-30: #D7D7D7;
	--gray-40: #E0E1E5;
	--gray-50: #D9D9D9;
	--gray-80: #919191;
	--gray: #A0A3A6;
	--gray-dark: #828588;
	--p: 2.22222vw;
	--header-height: 10.55556vw;
}

/*************/
/* Defaults */
/* http://meyerweb.com/eric/tools/css/reset/
   v5.0.1 | 20191019
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
main, menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, main, menu, nav, section {
	display: block;
}

/* HTML5 hidden-attribute fix for newer browsers */
*[hidden] {
	display: none;
}

body {
	line-height: 1;
}

menu, ol, ul {
	list-style: none;
}

blockquote, q {
	quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

html.no-scroll {
	overflow: hidden;
	scrollbar-gutter: stable;
}

html.no-scroll body {
	background-color: #CACACB;
}

html.no-scroll .header {
	-webkit-overflow-scrolling: auto;
}

body {
	font-family: "Raleway", sans-serif;
	min-width: calc(360 * 1px);
	/* px-to-viewport-ignore */
	font-style: normal;
	font-weight: 600;
	font-size: 3.33333vw;
	line-height: 120%;
	overflow-x: hidden;
	color: var(--black);
	background: var(--gray-10);
	font-variant-numeric: lining-nums;
	-webkit-font-feature-settings: 'pnum' on, 'lnum' on, 'liga' off;
	        font-feature-settings: 'pnum' on, 'lnum' on, 'liga' off;
}

.compensate-for-scrollbar {
	margin-right: 0 !important;
}

.wrapper {
	max-width: 533.33333vw;
	overflow: hidden;
	position: relative;
	margin: 0 auto;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	align-items: stretch;
	justify-content: space-between;
	box-sizing: border-box;
}

.article-page .wrapper {
	overflow: unset;
}

@media (max-width: 767px) {
	.wrapper {
		padding: var(--header-height) 0 0;
	}
}

.container {
	max-width: none;
	padding-left: var(--p);
	padding-right: var(--p);
	width: 100%;
	margin: 0 auto;
}

.fancybox-active {
	overflow: hidden !important;
}

.hidden {
	position: absolute;
	left: -2777.5vw;
	opacity: 0;
}

textarea,
select,
button,
input,
a:focus,
a:hover,
a {
	color: inherit;
	transition: 0.3s;
	outline: 0;
	text-decoration: none;
}

a:focus,
a:hover {
	text-decoration: none;
	color: inherit;
}

[href^="tel:"] {
	white-space: nowrap;
}

img, svg {
	max-width: 100%;
}

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

*:focus {
	outline: none !important;
}

p {
	margin: 0;
}

button, input, select, textarea {
	font-family: inherit;
}

::-webkit-input-placeholder {
	opacity: 1;
	color: inherit;
}

::-ms-input-placeholder {
	opacity: 1;
	color: inherit;
}

::placeholder {
	opacity: 1;
	color: inherit;
}

source {
	display: none;
}

label.error {
	display: none !important;
}

.widget-form-privacy {
	display: none !important;
}

* {
	scrollbar-width: thin;
	scrollbar-color: #1C1C1C #CACACB;
}

::-webkit-scrollbar {
	width: calc(4 * 1px);
}

::-webkit-scrollbar-track {
	background: #CACACB;
	border-radius: calc(12 * 1px);
}

::-webkit-scrollbar-thumb {
	background-color: #1C1C1C;
	border-radius: calc(12 * 1px);
}

@media (max-width: 767px) {
	.d-desktop {
		display: none !important;
	}
}

/***********/
/* Blocks */
[data-more-hidden] {
	position: absolute;
	left: -2777.5vw;
	opacity: 0;
}

.d-none {
	display: none !important;
}

/***********/
/* Common */
.sup {
	vertical-align: super;
}

.hide-scrollbar {
	overflow: scroll;
	-ms-overflow-style: none;
	/* IE and Edge */
	scrollbar-width: none;
	/* FF */
}

.hide-scrollbar::-webkit-scrollbar {
	/* Chrome, Safari, Opera */
	display: none;
}

.hidden {
	position: absolute;
	left: -2777.5vw;
	opacity: 0;
}

.link-hover {
	display: inline-block;
	position: relative;
}

.link-hover, .link-hover a {
	text-decoration: none !important;
}

.link-hover:before {
	content: '';
	width: 100%;
	position: absolute;
	bottom: -1px;
	left: 0;
	border-bottom: 1px solid;
	transition: -webkit-transform 0.3s ease;
	transition: transform 0.3s ease;
	transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.link-hover:before {
	-webkit-transform: scale3d(0, 1, 1);
	        transform: scale3d(0, 1, 1);
	-webkit-transform-origin: bottom right;
	        transform-origin: bottom right;
}

.link-hover:hover:before {
	-webkit-transform: scale3d(1, 1, 1);
	        transform: scale3d(1, 1, 1);
	-webkit-transform-origin: bottom left;
	        transform-origin: bottom left;
}

.link-unhover {
	display: inline-block;
	position: relative;
}

.link-unhover, .link-unhover a {
	text-decoration: none !important;
}

.link-unhover:before {
	content: '';
	width: 100%;
	position: absolute;
	bottom: -1px;
	left: 0;
	border-bottom: 1px solid;
	transition: -webkit-transform 0.3s ease;
	transition: transform 0.3s ease;
	transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.link-unhover:before {
	-webkit-transform: scale3d(1, 1, 1);
	        transform: scale3d(1, 1, 1);
	-webkit-transform-origin: bottom left;
	        transform-origin: bottom left;
}

.link-unhover:hover:before {
	-webkit-transform: scale3d(0, 1, 1);
	        transform: scale3d(0, 1, 1);
	-webkit-transform-origin: bottom right;
	        transform-origin: bottom right;
}

h1, h2, h3, h4, h5, h6 {
	font-family: inherit;
	margin: 0;
}

h1 {
	font-weight: 600;
	font-size: 16.66667vw;
	line-height: 19.44444vw;
	letter-spacing: -0.05em;
}

h2 {
	font-weight: 600;
	font-size: 11.11111vw;
	line-height: 100%;
	letter-spacing: -0.02em;
}

span.fade-in-out {
	opacity: 0;
	-webkit-animation: fadeOut .2s linear forwards;
	        animation: fadeOut .2s linear forwards;
}

.lazy {
	background-image: none !important;
	opacity: 0;
}

.lazy:before, .lazy:after {
	content: none !important;
}

.lazy-loaded {
	opacity: 1;
	transition: 0.1s;
}

[class^="icon-"],
[class*=" icon-"] {
	display: inline-block;
	vertical-align: middle;
	line-height: 0;
}

[class^="icon-"]:before,
[class*=" icon-"]:before {
	content: '';
	font-size: inherit;
	line-height: 1;
	background-repeat: no-repeat;
	background-size: contain;
	background-position: 50% 50%;
	padding: 0.5em;
}

.button {
	width: 100%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	line-height: 100%;
	text-decoration: none !important;
	border: 0;
	cursor: pointer;
}

.button, .button * {
	transition: 0.3s;
}

.button_rounded {
	min-height: 6.66667vw;
	border-radius: 1.66667vw;
	padding-left: 2.77778vw;
	padding-right: 2.77778vw;
}

.button_bordered {
	border: 1px solid;
}

.button_white {
	color: var(--black);
	border-color: white;
	background: white;
}

.button_white:focus, .button_white:hover {
	color: var(--black);
	border-color: white;
	background: white;
}

.button_black {
	color: white;
	border-color: var(--black);
	background: var(--black);
}

.button_black:focus, .button_black:hover {
	color: white;
	border-color: var(--black);
	background: var(--black);
}

.button_gray {
	color: white;
	border-color: var(--gray);
	background: var(--gray);
}

.button_gray:focus, .button_gray:hover {
	color: white;
	border-color: var(--black);
	background: var(--black);
}

.button_lightgray {
	color: var(--black);
	border-color: var(--gray-50);
	background: var(--gray-50);
}

.button_lightgray:focus, .button_lightgray:hover {
	color: white;
	background: var(--black);
}

.button_red {
	color: white;
	background: var(--red);
	border-color: var(--red);
}

.button_icon {
	position: relative;
	transition: all .2s;
	overflow: hidden;
}

.button_icon .button-arrow {
	width: 1.11111vw;
	height: 1.11111vw;
	flex: 0 0 auto;
	font-size: 1.11111vw;
	display: none;
}

.button_icon-white {
	color: #1C1C1C;
	background: white;
}

.button_icon-white:hover {
	color: #DCDDDE;
	background: #1c1c1c;
}

.button_icon-white:hover .button-arrow {
	-webkit-filter: brightness(0) saturate(100%) invert(96%) sepia(5%) saturate(49%) hue-rotate(169deg) brightness(94%) contrast(90%);
	        filter: brightness(0) saturate(100%) invert(96%) sepia(5%) saturate(49%) hue-rotate(169deg) brightness(94%) contrast(90%);
}

.button_icon-black {
	color: white;
	background: #1C1C1C;
}

.button_icon-black:hover {
	color: white;
	background: #1C1C1C;
	justify-content: space-between;
}

.button[disabled] {
	overflow: hidden;
	position: relative;
	z-index: 2;
	cursor: not-allowed;
	isolation: isolate;
}

.button[disabled]:before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background: rgba(0, 0, 0, 0.9);
	mix-blend-mode: saturation;
}

.button-decor {
	position: relative;
	overflow: hidden;
	border-radius: 1.66667vw;
}

.button-decor-bordered {
	border: 1px solid;
}

.button-decor__item {
	min-height: 6.66667vw;
	padding-left: 2.77778vw;
	padding-right: 2.77778vw;
}

.button-decor__item_hidden {
	min-height: 100%;
	position: absolute;
	bottom: 0;
	display: flex;
	align-items: center;
	-webkit-transform: translate3d(0, 110%, 0);
	        transform: translate3d(0, 110%, 0);
}

.button-decor__item-black {
	color: white;
	background: var(--black);
}

.button-decor__item-white {
	color: var(--black);
	background: white;
}

.button-decor__item-white:hover {
	color: var(--black);
}

.button-decor__item-red {
	color: white;
	background: var(--red);
}

@media (hover: hover) {
	.button-decor:hover .button-decor__item_visible {
		-webkit-transform: translate3d(0, -110%, 0);
		        transform: translate3d(0, -110%, 0);
	}
	.button-decor:hover .button-decor__item_hidden {
		-webkit-transform: translate3d(0, 0, 0);
		        transform: translate3d(0, 0, 0);
	}
}

@media (hover: none) {
	.button-decor .button-decor__item_visible {
		-webkit-transform: translate3d(0, 0, 0);
		        transform: translate3d(0, 0, 0);
	}
	.button-decor .button-decor__item_hidden {
		-webkit-transform: translate3d(0, 110%, 0);
		        transform: translate3d(0, 110%, 0);
	}
}

.popup {
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: -1;
	-webkit-transform: translate3d(0, -100%, 0);
	        transform: translate3d(0, -100%, 0);
	opacity: 0;
	transition: opacity 0.3s;
	display: flex;
	flex-direction: column;
}

.popup_opened {
	-webkit-transform: translate3d(0, 0, 0);
	        transform: translate3d(0, 0, 0);
	opacity: 1;
	z-index: 100;
}

.popup__overlay {
	width: 100%;
	height: 100%;
	position: fixed;
	opacity: 1;
	background: rgba(28, 28, 28, 0.9);
	backdrop-filter: blur(6.94444vw);
	-webkit-backdrop-filter: blur(6.94444vw);
	transition: 0.3s;
}

.popup_opened .popup__overlay {
	opacity: 1;
}

.popup__inner {
	width: 100%;
	flex-basis: 100%;
	position: relative;
	margin: auto;
	overflow: auto;
	padding: 2.22222vw var(--p);
}

.popup__buttons {
	display: flex;
	justify-content: flex-end;
}

.popup__buttons-button {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 8.33333vw;
	height: 8.33333vw;
	font-size: 3.33333vw;
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(17.22222vw);
	border-radius: 1.11111vw;
}

.popup__content {
	width: 100%;
	display: flex;
	flex-direction: column;
}

.swiper {
	overflow: visible;
}

.swiper-default .swiper-nav {
	display: none;
}

.swiper:not(.swiper-initialized) {
	display: flex;
	opacity: 0;
}

.swiper-slide {
	height: auto;
}

.swiper-pagination {
	display: flex;
	position: relative;
	left: auto;
	right: auto;
	top: auto;
	bottom: auto;
}

.swiper-pagination-bullet {
	background: rgba(255, 255, 255, 0.52);
}

.swiper-pagination-bullet-active {
	background: white;
}

.swiper-horizontal > .swiper-scrollbar {
	height: calc(2 * 1px) !important;
	border-radius: 5.55556vw;
	overflow: hidden;
	top: 100%;
	bottom: 0;
	background: #B1B1B1;
	margin: 2.22222vw 0 0;
	z-index: 1;
}

.swiper-scrollbar-drag {
	cursor: pointer;
	background: var(--black);
}

.swiper-nav {
	width: auto;
	height: auto;
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	-webkit-transform: translateY(-50%);
	        transform: translateY(-50%);
	z-index: 1;
	display: flex;
	justify-content: space-between;
	align-items: center;
	pointer-events: none;
	margin: 0 auto;
}

.swiper-nav .swiper-button {
	cursor: pointer;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.2);
	backdrop-filter: blur(1.66667vw);
	-webkit-backdrop-filter: blur(1.66667vw);
	transition: background 0.3s ease-in-out;
	pointer-events: auto;
	z-index: 10;
	width: 11.11111vw;
	height: 11.11111vw;
	flex: 0 0 11.11111vw;
}

.swiper-nav .swiper-button i {
	width: 11.11111vw;
	height: 11.11111vw;
	flex: 0 0 auto;
	font-size: 11.11111vw;
}

.swiper-nav .swiper-button:hover {
	background: white;
}

.swiper-nav .swiper-button:hover i {
	-webkit-filter: grayscale(100%) brightness(0%) contrast(0.9);
	        filter: grayscale(100%) brightness(0%) contrast(0.9);
}

.swiper-nav .swiper-button-disabled {
	opacity: 0;
}

/* Form */
.form__title {
	font-weight: 600;
	font-size: 7.22222vw;
	line-height: 110%;
	margin-bottom: 5.55556vw;
}

.form__items {
	display: grid;
	grid-template-columns: 1fr;
	grid-gap: 1.66667vw;
}

.form__item_textarea {
	max-height: 63.05556vw;
}

.form__item_textarea textarea {
	padding: 3.33333vw 4.16667vw;
	min-height: 63.05556vw;
	max-height: 63.05556vw;
	overflow-y: auto;
}

.form__item_button {
	min-height: 6.66667vw;
}

.form__item_button button {
	font-family: "Raleway", sans-serif;
	font-weight: 600;
	font-size: 3.33333vw;
	line-height: 1;
	min-height: 10vw;
	border: 0;
}

.form__item_button button:disabled {
	background: gray;
	border-color: gray;
}

.form__input {
	font-family: "Raleway", sans-serif;
	font-weight: 600;
	font-size: 5vw;
	line-height: 106%;
	letter-spacing: -0.02em;
	width: 100%;
	min-height: 10vw;
	color: var(--black);
	padding: 0 3.05556vw;
	background-color: white;
	outline: none;
	border: none;
	border-radius: 2.22222vw;
}

.form__input::-webkit-input-placeholder {
	/* Chrome/Opera/Safari/Firefox */
	color: rgba(160, 163, 166, 0.45);
}

.form__input::-ms-input-placeholder {
	/* Chrome/Opera/Safari/Firefox */
	color: rgba(160, 163, 166, 0.45);
}

.form__input::placeholder {
	/* Chrome/Opera/Safari/Firefox */
	color: rgba(160, 163, 166, 0.45);
}

.form__input:-ms-input-placeholder {
	/* IE 10+ */
	color: rgba(160, 163, 166, 0.45);
}

.form__input.error {
	border: 1px solid #ff2626;
}

.form__input.error::-webkit-input-placeholder {
	/* Chrome/Opera/Safari/Firefox */
	color: #ff2626;
}

.form__input.error::-ms-input-placeholder {
	/* Chrome/Opera/Safari/Firefox */
	color: #ff2626;
}

.form__input.error::placeholder {
	/* Chrome/Opera/Safari/Firefox */
	color: #ff2626;
}

.form__input.error:-ms-input-placeholder {
	/* IE 10+ */
	color: #ff2626;
}

.form__footer {
	position: relative;
	display: block;
	font-size: 5.55556vw;
	cursor: pointer;
	margin: 4.44444vw 0 0;
}

.form__footer-checkbox {
	position: absolute;
	left: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 8.33333vw;
	height: 8.33333vw;
	border-radius: 2.63889vw;
	background: white;
	border: 1px solid;
	border-color: white;
}

.form__footer-checkbox input {
	display: none;
}

.form__footer-checkbox-icon {
	opacity: 0;
	transition: 0.1s;
}

:checked ~ .form__footer-checkbox-icon {
	opacity: 1;
}

.form__footer-text {
	font-weight: 600;
	font-size: 3.33333vw;
	line-height: 106%;
	letter-spacing: -0.02em;
	color: var(--black);
	opacity: 0.5;
	padding-left: 10.55556vw;
}

.form__footer-text a {
	color: inherit;
	text-decoration: underline;
}

/* Blocks */
.header {
	width: 100%;
	padding-top: 1.38889vw;
	padding-bottom: 1.38889vw;
	background: var(--gray-10);
}

.header_common {
	position: fixed;
	left: 0;
	right: 0;
	top: 0;
	z-index: 11;
}

.header__inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 4.44444vw;
}

.header__logo {
	display: flex;
}

.header__logo img {
	width: 100%;
	height: 5vw;
	-o-object-fit: contain;
	   object-fit: contain;
}

.header__content-wrap {
	width: 100%;
	overflow-y: scroll;
	padding: 6.94444vw 0;
	-webkit-mask: linear-gradient(180deg, transparent 2.77778vw, black 13.88889vw) top, linear-gradient(0deg, transparent 2.77778vw, black 27.77778vw) bottom;
	-webkit-mask-size: 100% 51%;
	/* each one half the size */
	-webkit-mask-repeat: no-repeat;
	/* don't forget this */
}

.header__search-buttons {
	cursor: pointer;
	margin-left: auto;
}

.header__search-button i {
	width: 3.88889vw;
	height: 3.88889vw;
	font-size: 3.88889vw;
}

.header__info {
	display: flex;
	flex-direction: column;
	text-align: center;
	gap: 6.66667vw;
	margin: 8.33333vw 0;
}

.header__info-box {
	display: flex;
	flex-direction: column;
	gap: 2.22222vw;
}

.header__info-title {
	font-weight: 600;
	font-size: 3.88889vw;
	line-height: 120%;
	letter-spacing: -0.02em;
	opacity: 0.5;
	margin-bottom: 1.11111vw;
}

.header__info-links {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 2.22222vw;
}

.header__info-link {
	font-weight: 600;
	font-size: 5.55556vw;
	line-height: 100%;
	letter-spacing: -0.04em;
	width: -webkit-fit-content;
	width: fit-content;
}

.header__info-text {
	display: flex;
	flex-direction: column;
	gap: 2.22222vw;
}

.header__info-text-block {
	display: flex;
	flex-direction: column;
	gap: 0.55556vw;
}

.header__info-text p {
	font-weight: 600;
	font-size: 5.55556vw;
	line-height: 100%;
	letter-spacing: -0.04em;
}

.header__info-text p.small-text {
	font-weight: 600;
	font-size: 3.88889vw;
	line-height: 168%;
	letter-spacing: -0.02em;
}

.header__info-subtext {
	display: flex;
	flex-direction: column;
	gap: 2.22222vw;
	font-weight: 600;
	font-size: 3.88889vw;
	line-height: 120%;
	letter-spacing: -0.02em;
	opacity: 0.5;
}

.header__info-social-box {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.header__info-social-items {
	display: flex;
	align-items: center;
	gap: 2.22222vw;
}

.header__info-social-item {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	width: 6.38889vw;
	height: 6.38889vw;
	border-radius: 1.94444vw;
	background: var(--black);
}

.header__info-social-item i {
	font-size: 6.38889vw;
}

.header__info-button {
	width: 6.66667vw;
	height: 6.66667vw;
	border-radius: 2.13889vw;
}

.header__info-button i {
	font-size: 6.66667vw;
}

.header__info-button:hover {
	background: #1C1C1C;
}

.header__button {
	font-weight: 600;
	font-size: 3.88889vw;
	letter-spacing: -0.02em;
	width: -webkit-fit-content;
	width: fit-content;
	min-height: 7.77778vw;
	border-radius: 1.94444vw;
}

.header__button-item {
	display: flex;
	align-items: center;
	gap: 2.5vw;
}

.header__button-item i {
	width: 3.33333vw;
	height: 3.33333vw;
	font-size: 3.33333vw;
	flex: 0 0 auto;
	-webkit-filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(354deg) brightness(102%) contrast(102%);
	        filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(354deg) brightness(102%) contrast(102%);
}

.intro__video {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 81.11111vw;
	border-radius: 3.33333vw 3.33333vw 0px 0px;
	overflow: hidden;
}

.intro__video img {
	width: 100%;
	height: 140%;
	-o-object-fit: cover;
	   object-fit: cover;
}

.intro__video video {
	position: absolute;
	left: 50%;
	top: 50%;
	-webkit-transform: translate(-50%, -50%);
	        transform: translate(-50%, -50%);
	min-width: 100%;
	min-height: 100%;
	width: 100%;
	height: 140%;
	-o-object-fit: cover;
	   object-fit: cover;
}

.next {
	padding-top: 3.33333vw;
	padding-bottom: 5.55556vw;
}

.next__inner {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-gap: 1.11111vw;
	padding: 2.22222vw;
	border-radius: 3.33333vw;
	background: white;
}

@media (max-width: 767px) {
	.next__inner {
		margin: 0 calc(var(--p) * -1);
	}
}

.next__title {
	font-weight: 600;
	font-size: 5.55556vw;
	line-height: 110%;
	letter-spacing: -0.05em;
}

.next__title span {
	color: #C1C1C1;
}

.next__link {
	position: relative;
	border-radius: 2.22222vw;
	overflow: hidden;
}

.next__link-button {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	        transform: translate(-50%, -50%);
	width: 8.33333vw;
	height: 8.33333vw;
	background: black;
	border-radius: 50%;
}

.next__link-button i {
	font-size: 8.33333vw;
}

.next__link-image {
	width: 100%;
	height: 28.61111vw;
	transition: all .3s;
}

.next__link-image img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	   object-fit: cover;
}

.next__link:hover .next__link-button {
	background: white;
}

.next__link:hover .next__link-button i {
	-webkit-filter: grayscale(100%) brightness(0%) contrast(0.9);
	        filter: grayscale(100%) brightness(0%) contrast(0.9);
}

.next__link:hover .next__link-image {
	-webkit-filter: blur(1.38889vw);
	        filter: blur(1.38889vw);
}

.search {
	flex-direction: column;
}

.search__icon-wrap {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 6.66667vw;
	height: 6.66667vw;
}

.search__icon-wrap i {
	width: 4.44444vw;
	height: 4.44444vw;
	font-size: 4.44444vw;
	flex: 0 0 auto;
}

.search__icon-wrap i i.icon-notice {
	font-size: 3.88889vw;
}

.search__form.focused .search__form-field {
	border-color: #1C1C1C;
}

.search__form.focused .search__form-field label {
	justify-content: flex-start;
}

.search__form.focused .search__form-button-search {
	display: none;
}

.search__form.focused .search__form-button-close {
	display: flex;
}

.search__form-field {
	position: relative;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 2.77778vw;
	background: #FFFFFF;
	border: 0.5px solid rgba(17, 23, 34, 0.2);
	border-radius: 1.66667vw;
	padding: 1.38889vw 2.22222vw;
	min-height: 11.11111vw;
}

.search__form-field:hover {
	border-color: #A0A3A6;
}

.search__form-input {
	font-weight: 600;
	font-size: 3.33333vw;
	line-height: 145%;
	width: 100%;
	border: 0;
	background: none;
	padding: 0;
}

.search__form-input::-webkit-input-placeholder {
	opacity: 0;
}

.search__form-input::-ms-input-placeholder {
	opacity: 0;
}

.search__form-input::placeholder {
	opacity: 0;
}

.search__form-input :-ms-input-placeholder {
	opacity: 0;
}

.search__form-input ~ label {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 1.66667vw;
	font-weight: 600;
	font-size: 3.88889vw;
	line-height: 145%;
	color: var(--gray);
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	        transform: translate(-50%, -50%);
	padding: 1.38889vw 2.22222vw;
	width: 100%;
	pointer-events: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
}

.search__form-input:not(:empty) ~ label,
.search__form-input:not(:placeholder-shown) + label {
	opacity: 0;
}

.search__form-button {
	cursor: pointer;
}

.search__form-button-search {
	text-decoration: none !important;
	border: 0;
	background-color: transparent;
}

.search__form-button-close {
	display: none;
}

.search__result {
	flex: 1 1 auto;
	display: flex;
	flex-direction: column;
	gap: 2.22222vw;
	margin: 4.44444vw 0 0;
	overflow-y: auto;
	scrollbar-width: initial;
	scrollbar-color: initial;
	padding-bottom: 5.55556vw;
	-webkit-mask: linear-gradient(0deg, transparent 2.77778vw, black 13.88889vw) bottom;
}

.search__result-item {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	gap: 2.22222vw;
	min-height: 8.88889vw;
	padding: 1.11111vw;
	border-radius: 1.66667vw;
}

.search__result-item:is(a):hover {
	background: white;
}

.search__result-item-notice {
	align-items: flex-start;
}

.search__result-item-notice span {
	font-weight: 600;
	font-size: 3.88889vw;
	line-height: 135%;
}

.search__result-item-page {
	font-weight: 600;
	font-size: 3.33333vw;
	line-height: 1;
	max-width: 28.88889vw;
	height: 5.55556vw;
	flex: 0 0 auto;
	color: #A0A3A6;
}

.search__result-item-name {
	font-weight: 600;
	font-size: 3.33333vw;
	line-height: 145%;
	flex: 0 0 auto;
	display: -webkit-box;
	-webkit-line-clamp: 1;
	text-overflow: ellipsis;
	overflow: hidden;
	/* autoprefixer: off */
	-webkit-box-orient: vertical;
	line-height: 1.1;
	white-space: normal;
	max-width: 53.33333vw;
	width: 100%;
}

.footer {
	padding-top: 5.55556vw;
	padding-bottom: 5.55556vw;
}

.footer__items {
	display: grid;
	grid-template-columns: 1fr;
	grid-gap: 1.11111vw;
}

@media (max-width: 767px) {
	.footer__items {
		margin: 0 calc(var(--p) * -1);
	}
}

.footer__item {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 3.33333vw;
	padding: 2.22222vw;
	border-radius: 2.77778vw;
	background: var(--gray-40);
}

.footer__item-head {
	display: flex;
	flex-direction: column;
	gap: 3.33333vw;
}

.footer__item h3 {
	font-weight: 600;
	font-size: 3.61111vw;
	line-height: 156%;
	letter-spacing: -0.02em;
	opacity: 0.5;
	margin-bottom: 2.22222vw;
}

.footer__item-links {
	display: grid;
	grid-template-columns: repeat(2, auto);
	grid-gap: 3.33333vw;
	justify-content: flex-start;
}

.footer__item-link {
	display: inline-block;
	font-weight: 600;
	font-size: 5vw;
	line-height: 100%;
	letter-spacing: -0.04em;
	width: -webkit-fit-content;
	width: fit-content;
}

.footer__item-link-email {
	grid-column: span 2;
}

.footer__item-text {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-gap: 1.11111vw;
}

.footer__item-text-block {
	display: flex;
	flex-direction: column;
	gap: 0.55556vw;
}

.footer__item-text p {
	font-weight: 600;
	font-size: 3.61111vw;
	line-height: 125%;
	letter-spacing: -0.02em;
}

.footer__item-text p:first-child {
	font-size: 5vw;
	line-height: 100%;
	letter-spacing: -0.04em;
}

.footer__item-bottom {
	display: flex;
	flex-direction: column;
	gap: 1.11111vw;
}

.footer__item-bottom-block {
	display: flex;
	flex-direction: column;
	gap: 2.22222vw;
}

.footer__item-bottom-block > p,
.footer__item-bottom-block > a {
	font-weight: 600;
	font-size: 3.61111vw;
	line-height: 106%;
	letter-spacing: -0.02em;
	opacity: 0.5;
}

.footer__social-box {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.footer__social-items {
	display: flex;
	align-items: center;
	gap: 1.11111vw;
}

.footer__social-item {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	width: 8.33333vw;
	height: 8.33333vw;
	border-radius: 2.63889vw;
	background: #1C1C1C;
}

.footer__social-item i {
	font-size: 8.33333vw;
}

.footer__button-top {
	width: 8.33333vw;
	height: 8.33333vw;
	border-radius: 2.63889vw;
}

.footer__button-top i {
	font-size: 8.33333vw;
}

.footer__button-top:hover {
	background: #1C1C1C;
}

/* Tabs */
.tabs__items {
	margin: 0 -0.55556vw 2.22222vw;
	overflow: hidden;
}

.tabs__items .swiper-slide {
	width: -webkit-fit-content;
	width: fit-content;
}

.tabs__item {
	font-weight: 600;
	font-size: 3.33333vw;
	line-height: 110%;
	border-color: var(--gray);
	cursor: pointer;
	white-space: nowrap;
	min-width: 31.11111vw;
	width: auto;
	margin: 0 0.55556vw;
}

.tabs__item_red {
	color: var(--red);
	background: white;
	border-color: var(--red);
}

.tabs__item_red.tabs__item_active {
	background: var(--red);
	border-color: var(--red);
}

.tabs__item_active {
	background: var(--black);
	border-color: var(--black);
}

.tabs__item_active .button-decor__item_visible {
	-webkit-transform: translate3d(0, -110%, 0);
	        transform: translate3d(0, -110%, 0);
}

.tabs__item_active .button-decor__item_hidden {
	-webkit-transform: translate3d(0, 0, 0);
	        transform: translate3d(0, 0, 0);
}

/* Popups */
.popup-header .popup__overlay {
	color: var(--black);
	background: var(--gray-10);
}

.popup-header .popup__inner {
	padding: 0 var(--p);
}

.popup-header .popup__content {
	padding-top: 0;
	padding-bottom: 0;
}

.popup-header__logo {
	display: flex;
	padding: 2.22222vw var(--p);
	margin: 0 calc(var(--p) * -1);
	background: var(--gray-10);
}

.popup-header__logo img {
	width: 100%;
	height: 6.66667vw;
	-o-object-fit: contain;
	   object-fit: contain;
}

.popup-header__box {
	height: calc(100dvh - 6.66667vw - 2.22222vw);
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	background: white;
	padding: 2.22222vw var(--p) 4.16667vw;
	margin: 0 calc(var(--p) * -1);
}

.popup-header__button {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 2.5vw;
	width: -webkit-fit-content;
	width: fit-content;
	min-height: 7.77778vw;
}

.popup-header__button i {
	width: 2.77778vw;
	height: 2.77778vw;
	font-size: 2.77778vw;
	flex: 0 0 auto;
	-webkit-filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(354deg) brightness(102%) contrast(102%);
	        filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(354deg) brightness(102%) contrast(102%);
}

.popup-header__search-button {
	color: var(--gray);
	background: var(--gray-10);
	gap: 1.66667vw;
	border-radius: 2.22222vw;
	min-width: 26.94444vw;
	width: -webkit-fit-content;
	width: fit-content;
	min-height: 7.77778vw;
	margin: 5.55556vw auto 0;
}

.popup-header__search-button:hover {
	color: white;
	background: var(--black);
}

.popup-header__search-button span {
	font-weight: 600;
	font-size: 3.88889vw;
	line-height: 84%;
}

.popup-header__search-button i {
	width: 3.33333vw;
	height: 3.33333vw;
	font-size: 3.33333vw;
	-webkit-filter: invert(68%) sepia(1%) saturate(1592%) hue-rotate(170deg) brightness(96%) contrast(88%);
	        filter: invert(68%) sepia(1%) saturate(1592%) hue-rotate(170deg) brightness(96%) contrast(88%);
}

.popup-header__content {
	width: 100%;
	overflow-y: scroll;
	padding: 6.94444vw 0;
	-webkit-mask: linear-gradient(180deg, transparent 2.77778vw, black 13.88889vw) top, linear-gradient(0deg, transparent 2.77778vw, black 27.77778vw) bottom;
	-webkit-mask-size: 100% 51%;
	/* each one half the size */
	-webkit-mask-repeat: no-repeat;
	/* don't forget this */
}

.popup-header__menu {
	flex: 1 1 auto;
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: center;
	text-align: center;
}

.popup-header__menu-item {
	padding: 4.16667vw 0;
	color: var(--gray-30);
	font-weight: 600;
	font-size: 11.66667vw;
	line-height: 95%;
	letter-spacing: -0.05em;
}

.popup-header__menu-item:hover {
	color: var(--gray-30);
}

.popup-header__menu-item.current {
	color: var(--black);
}

.popup-header__menu_hidden {
	position: absolute;
	left: -2777.5vw;
	opacity: 0;
}

.popup-header__info {
	display: flex;
	flex-direction: column;
	text-align: center;
	gap: 6.66667vw;
	margin: 8.33333vw 0;
}

.popup-header__info-box {
	display: flex;
	flex-direction: column;
	gap: 2.22222vw;
}

.popup-header__info-title {
	font-weight: 600;
	font-size: 3.88889vw;
	line-height: 120%;
	letter-spacing: -0.02em;
	opacity: 0.5;
	margin-bottom: 1.11111vw;
}

.popup-header__info-links {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 2.22222vw;
}

.popup-header__info-link {
	font-weight: 600;
	font-size: 5.55556vw;
	line-height: 100%;
	letter-spacing: -0.04em;
	width: -webkit-fit-content;
	width: fit-content;
}

.popup-header__info-text {
	display: flex;
	flex-direction: column;
	gap: 2.22222vw;
}

.popup-header__info-text-block {
	display: flex;
	flex-direction: column;
	gap: 0.55556vw;
}

.popup-header__info-text p {
	font-weight: 600;
	font-size: 5.55556vw;
	line-height: 100%;
	letter-spacing: -0.04em;
}

.popup-header__info-text p.small-text {
	font-weight: 600;
	font-size: 3.88889vw;
	line-height: 168%;
	letter-spacing: -0.02em;
}

.popup-header__info-subtext {
	display: flex;
	flex-direction: column;
	gap: 2.22222vw;
	font-weight: 600;
	font-size: 3.88889vw;
	line-height: 120%;
	letter-spacing: -0.02em;
	opacity: 0.5;
}

.popup-header__info-social-box {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.popup-header__info-social-items {
	display: flex;
	align-items: center;
	gap: 2.22222vw;
}

.popup-header__info-social-item {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	width: 6.38889vw;
	height: 6.38889vw;
	border-radius: 1.94444vw;
	background: var(--black);
}

.popup-header__info-social-item i {
	font-size: 6.38889vw;
}

.popup-header__info-button {
	width: 6.66667vw;
	height: 6.66667vw;
	border-radius: 2.13889vw;
}

.popup-header__info-button i {
	font-size: 6.66667vw;
}

.popup-header__info-button:hover {
	background: #1C1C1C;
}

.popup-header__social {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 5vw;
	margin-bottom: 8.33333vw;
}

.popup-header__social-item {
	font-weight: 600;
	font-size: 3.88889vw;
	line-height: 106%;
	letter-spacing: -0.02em;
}

.popup-header__bottom {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1.11111vw;
}

.popup-header__bottom-item {
	color: var(--gray-80);
	font-weight: 600;
	font-size: 3.33333vw;
	line-height: 106%;
	text-align: center;
	letter-spacing: -0.02em;
}

.popup-search .popup__overlay {
	color: var(--black);
	background: var(--gray-10);
}

.popup-search .popup__inner {
	padding: 0 var(--p);
}

.popup-search .popup__content {
	padding-top: 0;
	padding-bottom: 0;
}

.popup-search__logo {
	display: flex;
	padding: 2.22222vw 0;
}

.popup-search__logo img {
	width: 100%;
	height: 6.66667vw;
	-o-object-fit: contain;
	   object-fit: contain;
}

.popup-search__box {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding: 2.22222vw 0 4.16667vw;
}

@media (max-width: 767px) {
	.popup-search__box {
		height: calc(100dvh - 6.66667vw - 2.22222vw);
	}
}

.popup-search__search {
	display: flex;
	flex-direction: column;
	width: 100%;
	padding: 4.44444vw 0;
	margin-bottom: auto;
}

@media (max-width: 767px) {
	.popup-search__search {
		height: 50vh;
		flex: 1 1 auto;
	}
}

.popup-search__button {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 2.5vw;
	width: -webkit-fit-content;
	width: fit-content;
	min-height: 7.77778vw;
}

.popup-search__button i {
	width: 2.77778vw;
	height: 2.77778vw;
	font-size: 2.77778vw;
	flex: 0 0 auto;
	-webkit-filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(354deg) brightness(102%) contrast(102%);
	        filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(354deg) brightness(102%) contrast(102%);
}

.popup-search__social {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 5vw;
	margin-bottom: 8.33333vw;
}

.popup-search__social-item {
	font-weight: 600;
	font-size: 3.88889vw;
	line-height: 106%;
	letter-spacing: -0.02em;
}

.popup-search__bottom {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1.11111vw;
}

.popup-search__bottom-item {
	color: var(--gray-80);
	font-weight: 600;
	font-size: 3.33333vw;
	line-height: 106%;
	text-align: center;
	letter-spacing: -0.02em;
}

.popup-video .popup__inner {
	display: grid;
	grid-template-rows: 8.33333vw 1fr;
}

.popup-video .popup__content {
	align-self: center;
}

.popup-video__card {
	position: relative;
	width: 100%;
	border-radius: 1.66667vw;
	overflow: hidden;
}

.popup-video__card-bg {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
}

.popup-video__card-bg img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	   object-fit: cover;
}

.popup-video__card-video {
	position: relative;
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	   object-fit: cover;
}
