@font-face {
	font-family: 'Akrobat';
	src: local('Akrobat'), local('Akrobat-Regular'), url('../fonts/Akrobat.woff2') format('woff2'), url('../fonts/Akrobat.woff') format('woff'), url('../fonts/Akrobat.ttf') format('truetype');
	font-weight: 400;
	font-style: normal;
}

@font-face {
	font-family: 'Akrobat';
	src: local('Akrobat SemiBold'), local('Akrobat-SemiBold'), url('../fonts/Akrobatsemibold.woff2') format('woff2'), url('../fonts/Akrobatsemibold.woff') format('woff'), url('../fonts/Akrobatsemibold.ttf') format('truetype');
	font-weight: 600;
	font-style: normal;
}

@font-face {
	font-family: 'Akrobat';
	src: local('Akrobat Bold'), local('Akrobat-Bold'), url('../fonts/Akrobatbold.woff2') format('woff2'), url('../fonts/Akrobatbold.woff') format('woff'), url('../fonts/Akrobatbold.ttf') format('truetype');
	font-weight: 700;
	font-style: normal;
}

@font-face {
	font-family: 'Akrobat';
	src: local('Akrobat Black'), local('Akrobat-Black'), url('../fonts/Akrobatblack.woff2') format('woff2'), url('../fonts/Akrobatblack.woff') format('woff'), url('../fonts/Akrobatblack.ttf') format('truetype');
	font-weight: 900;
	font-style: normal;
}

@font-face {
	font-family: 'Peach Milk';
	src: local('Peach Milk'), local('Peach-Milk-Regular'), url('../fonts/Peachmilk.woff') format('woff'), url('../fonts/Peachmilk.ttf') format('truetype');
	font-weight: 400;
	font-style: normal;
}

:root {
	--white: #FFF;
	--white_60: rgba(255, 255, 255, .6);
	--black: #0D1219;
	--black_60: rgba(0, 0, 0, .6);
	--light_black: #0F1B2B;
	--corp: #00ADEE;
	--corp_60: rgba(0, 173, 238, .6);
	--yellow: #F8971D;
	--green: #8AC43F;
	--blue: #0169B1;
	--red: #F05322;

	--h1: 80px;
	--h1_mini: 52px;
	--h2: 40px;
	--h3: 24px;
	--big_text: 21px;
	/*--text: 18px;*/
	--label: 16px;
	--note: 14px;

	--font_title: 'Peach Milk', serif;

	--v_padding: 80px;


	--h4: 18px;

	
	--g_padding: 140px;
}

* {
	margin: 0px;
	padding: 0px;
	box-sizing: border-box;

	-webkit-text-size-adjust: none;
	   -moz-text-size-adjust: none;
		-ms-text-size-adjust: none;
			text-size-adjust: none;
}

html {
	display: block;
}

body {
	margin: 0;
	padding: 0;
	color: var(--white);
	font-size: 15px;
	font-weight: 400;
	font-family: 'Akrobat', serif;
	line-height: 1.15;
	background-color: var(--black);

	-webkit-font-smoothing: subpixel-antialiased;
}

img {
	display: block;

	width: 100%;
	height: auto;
}

a,
a:hover {
	text-decoration: none;
	cursor: pointer;
}

.bone {
	max-width: 1440px;
	margin: 0 auto;
	padding: 0 40px;
}

.bone_bottom {
	padding-bottom: var(--v_padding);
}

.h1 {
	font-size: var(--h1);
	font-weight: 700;
	font-family: var(--font_title);
}

.h1_mini {
	font-size: var(--h1_mini);
	font-weight: 700;
	font-family: var(--font_title);
}

.h2 {
	font-size: var(--h2);
	font-weight: 700;
	line-height: 140%;
}

.h3 {
	font-size: var(--h3);
	font-weight: 600;
	line-height: 140%;
}

.h4 {
	font-size: var(--h4);
	font-weight: 700;
	font-family: var(--font_title);
	text-transform: uppercase;
	line-height: 160%;
}

.txt {
	font-size: var(--text);
	line-height: 180%;
}

.btxt {
	font-size: var(--big_text);
	line-height: 180%;
}

.nte {
	font-size: 14px;
	line-height: 180%;
}

.tac {
	text-align: center;
}

.vpt {
	padding-top: var(--v_padding) !important;
}

.vpb {
	padding-bottom: var(--v_padding) !important;
}

.relative {
	position: relative;
}

/* global */

.global_header {
	padding-bottom: 40px;
}

.global_header.global_beetwen {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-end;
	justify-content: space-between;
}

.global_title {

}

.global_subtitle {
	padding-top: 16px;
}

.global_buttons {

}

/* global */



/* button */

.button {
	display: block;
	position: relative;

	height: 48px;
	padding: 0 32px;
	color: var(--white);
	font-size: 14px;
	font-weight: 700;
	font-family: 'Akrobat', sans-serif;
	text-align: center;
	text-transform: uppercase;
	line-height: 44px;
	letter-spacing: 1px;
	background-color: var(--corp);
	border: 2px solid var(--corp);
	border-radius: 12px;
	box-shadow: none;
	cursor: pointer;

	transition: background-color .23s ease-out, border-color .23s ease-out, box-shadow .23s ease-out;

	-webkit-user-select: none;
	   -moz-user-select: none;
		-ms-user-select: none;
			user-select: none;
}

.button:hover {
	box-shadow: 0 0 0 3px var(--corp_60);
}

.button:active {
	line-height: 46px;
}

/* - - - outline */

.button.outline {
	background: transparent;
}

/* button */



/* input */

.input,
.textarea {
	display: block;

	width: 100%;
	height: 48px;
	padding: 12px 20px 12px;
	color: var(--white);
	font-size: var(--label);
	font-weight: 400;
	font-family: 'Akrobat', sans-serif;
	line-height: 19px;
	background-color: var(--light_black);
	border: 0 none;
	border-radius: 12px;
	box-shadow: none;
	outline: none;

	transition: background-color .23s linear, border-color .23s linear;

	-webkit-appearance: none;
}

.input.err,
.textarea.err {
	background-color: rgba(238, 12, 12, 0.12);
}

.input:hover,
.textarea:hover {
	border-color: var(--boring);
}

.input:focus,
.textarea:focus {
	background-color: rgba(255, 255, 255, .04);
	border-color: var(--black);
	box-shadow: none;
}

.textarea {
	resize: vertical;

	min-height: 160px;
	padding-top: 13px;
	line-height: 22px;
}

.error {
	width: 100%;
	text-align: left;
}

.error span {
	color: #EE0C0C;
}

.input:-moz-placeholder {
	color: rgba(255, 255, 255, .6); !important;
	line-height: normal;
}

.input::-webkit-input-placeholder {
	color: rgba(255, 255, 255, .6);;
	line-height: normal;
}

::-webkit-input-placeholder {
	color: rgba(255, 255, 255, .6);;
	line-height: normal;
}

:-ms-input-placeholder {
	color: rgba(255, 255, 255, .6);;
	line-height: normal;
}

::-moz-placeholder {
	color: rgba(255, 255, 255, .6);;
	line-height: normal;
}

:-moz-placeholder {
	color: rgba(255, 255, 255, .6);;
	line-height: normal;
}

.textarea:-moz-placeholder {
	line-height: 22px;
}

.textarea::-webkit-input-placeholder {
	line-height: 22px;
}

.textarea:-ms-input-placeholder {
	line-height: 22px;
}

.textarea::-moz-placeholder {
	line-height: 22px;
}

/* input */



/* select */

.select {
	position: relative;

	height: 48px;
	padding: 15px 20px 12px;
	color: var(--white);
	font-size: var(--label);
	font-weight: 400;
	line-height: 19px;
	background-color: var(--light_black);
	border-radius: 12px;
	box-shadow: none;
	cursor: pointer;
	z-index: 1;

	transition: background-color .23s ease-out, border-color .23s ease-out, box-shadow .23s ease-out;
}

.select:hover {
	
}

.select.active {
	z-index: 2;
}

.select:before {
	content: '';
	pointer-events: none;
	position: absolute;
	top: 13px;
	right: 20px;

	width: 12px;
	height: 12px;
	background: url('../images/arrow_left.svg') center center no-repeat;
	background-size: 12px auto;

	transition: transform .23s ease-out;
	transform: rotate(270deg) translateX(-1px);
}

.select.active:before {
	transform: rotate(450deg);
}

.select_ul {
	display: none;
	position: absolute;
	top: calc(100% + 4px);
	left: 0;
	right: 0;

	padding: 8px 0;
	background-color: var(--light_black);
	border: 2px solid var(--corp);
	border-radius: 12px;

	-ms-overflow-style: none;
	   scrollbar-width: none;
}

.select_ul::-webkit-scrollbar {
	display: none;
}

.select.active .select_ul {
	display: block;
	overflow-y: scroll;

	max-height: 350px;
}

.select_li {
	padding: 8px 20px 8px;
	cursor: pointer;

	transition: color .23s ease-out;
}

.select_li:hover {
	color: var(--corp);
}

/* select */



/* checkbox */

.checkbox {
	overflow: hidden;
	position: absolute;
	left: -9999px;

	outline: 0;
	opacity: 0;
}

.checkbox + label {
	display: inline-block;
	position: relative;

	padding: 3px 0 3px 36px;
	color: var(--white);
	font-size: var(--label);
	cursor: pointer;

	-webkit-user-select: none;
	 -khtml-user-select: none;
	   -moz-user-select: none;
		-ms-user-select: none;
		 -o-user-select: none;
			user-select: none;
}

.checkbox + label a {
	color: var(--corp);
}

.checkbox + label:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;

	width: 20px;
	height: 20px;
	border: 2px solid transparent;
	background-color: var(--light_black);
	border-radius: 50%;

	transition: background-color .13s linear, border-color .13s linear;
}

.checkbox + label:hover:before {
	border-color: var(--corp);
}

.checkbox:checked + label:before {
	border-color: transparent;
}

.checkbox + label:after {
	content: '';
	position: absolute;
	top: 8px;
	left: 7px;

	width: 8px;
	height: 4px;
	border-left: 2px solid var(--corp);
	border-bottom: 2px solid var(--corp);

	transition: opacity .13s linear;
	transform: rotate(-45deg);
}

.checkbox:not(:checked) + label:after {
	opacity: 0;
}

.checkbox:checked + label:after {
	opacity: 1;
}

/* checkbox */



/* bar */

.bar {
	overflow: hidden;
	position: fixed;
	top: 0;
	left: 0;
	bottom: 0;

	max-width: 600px;
	width: 100%;

	background-color: var(--black);
	z-index: 998;

	transition: transform .23s ease-out;
	transform: translateX(-100%);
}

.bar.active {
	transform: translateX(0) !important;
}

.bar_scroll {
	overflow-y: scroll;
	display: flex;
	flex-direction: column;
	position: relative;

	width: calc(100% + 30px);
	height: 100vh;
	padding: 0 30px 0 0px;

	-webkit-overflow-scrolling: touch;
			scrollbar-width: none;
}

.bar_scroll::-webkit-scrollbar {
	display: none;
}

.bar_scroll::-webkit-scrollbar {
	width: 0;
}

.bar_scroll {
	-ms-overflow-style: none;
}

.bar_scroll {
	overflow: -moz-scrollbars-none;
}

.bar_nav {
	flex-grow: 1;

	padding: 120px 40px 40px;
}

.bar_icons {
	display: none;
	flex-wrap: wrap;

	padding-bottom: 40px;
}

.bar_nav_li {
	padding: 12px 0;
}

.bar_nav_li a {
	color: var(--white);
	font-size: var(--h2);
	font-weight: 400;
	line-height: 140%;

	transition: color .23s ease-out;
}

.bar_nav_li a:hover {
	color: var(--corp);
}

.bar_nav_li.mini a {
	font-size: var(--h3);
}

.bar_nav_sep {
	padding: 20px 0 8px;
	color: var(--corp);
	font-size: var(--big_text);
	border-bottom: 4px solid var(--light_black);
}

.bar_bottom {
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	gap: 12px;

	padding: 0 40px 40px;
}

.bar_socs {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;

	padding-bottom: 40px;
}

.bar_bottom .header_phone_link {
	color: var(--white);
}

.bar_bottom .header_phone_link:hover {
	color: var(--corp);
}

/* bar */



/* header */

.header {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;

	padding: 12px 0;
	background-color: var(--black_60);
	backdrop-filter: blur(10px);
	z-index: 999;

	transition: top .23s ease-out, padding .23s ease-out;
}

.header.lock {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
}

.header.hidden {
	top: -88px;
}

.header_group {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
}

.header_navigations {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 40px;
}

.header_burger {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;

	width: 32px;
	height: 48px;
	cursor: pointer;
}

.header_burger span {
	display: block;
	position: relative;

	width: 32px;
	height: 2px;
	background-color: var(--white);

	transition: background-color .23s ease-out;
}

.header_burger span:before {
	content: '';
	position: absolute;
	top: -8px;
	left: 0;

	width: 32px;
	height: 2px;
	background-color: var(--white);

	transition: transform .23s ease-out;
}

.header_burger span:after {
	content: '';
	position: absolute;
	left: 0;
	bottom: -8px;

	width: 32px;
	height: 2px;
	background-color: var(--white);

	transition: transform .23s ease-out;
}

.header_burger.active span {
	background-color: transparent;
}

.header_burger.active span:before {
	transform: translate3d(0, 8px, 0) rotate(-135deg);
}

.header_burger.active span:after {
	transform: translate3d(0, -8px, 0) rotate(135deg);
}

.header_icons {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 40px;
}

.header_icons_icon {
	position: relative;

	padding-left: 36px;
	color: var(--white);
	font-size: 14px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
	cursor: pointer;
}

.header_icons_icon:before {
	content: '';
	position: absolute;
	top: -4px;
	left: 0;

	width: 24px;
	height: 24px;
	background-position: center;
	background-repeat: no-repeat;
	background-size: 100% auto;

	transition: transform .23s ease-out;
}

.header_icons_icon:hover:before {
	transform: scale(1.1);
}

.header_icons_icon.icon_location:before {
	background-image: url('../images/icons/location.svg');
}

.header_icons_icon.icon_lang:before {
	background-image: url('../images/icons/lang.svg');
}

.header_logo {
	position: absolute;
	left: 50%;

	transform: translate3d(-50%, 0, 0);
}

.header_logo img {
	max-width: 220px;
}

.header_buttons {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 12px;
}

/* header */



/* general */

.general {
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

.general_group {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-end;
	justify-content: center;

	min-height: 80vh;
	padding: var(--v_padding) 0;
}

.general_title {

}

.general_title span {
	color: var(--corp);
}

/* general */



/* cities */

.cities {
	padding: 20px 0;
}

.cities_group {

}

.cities_blocks {
	display: flex;
	flex-wrap: wrap;
	gap: 40px;
}

.cities_block {
	position: relative;

	width: calc(100% / 3 - 80px / 3);
}

.cities_block_image {

}

.cities_block_image img {
	border-radius: 16px;
}

.cities_block_info {
	padding-top: 20px;
}

.cities_block_label {
	color: var(--white);

	transition: color .23s ease-out;
}

.cities_block:hover .cities_block_label {
	color: var(--corp);
}

.cities_block_descr {
	padding-top: 8px;
	color: var(--corp);
}

/* cities */



/* about */

.about {
	overflow: hidden;

	padding: 20px 0;
	background-color: var(--light_black);
}

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

.about_group {
	position: relative;

	z-index: 2;
}

.about_thanks {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;

	min-height: 80vh;
}

.about_header {
	padding-bottom: 40px;
}

.about_header h3 {
	padding-bottom: 16px;
	color: var(--corp);
}

.about_header_icon {
	width: 120px;
	margin: 0 auto 40px;
}

.about_content {
	display: flex;
	flex-wrap: wrap;
	gap: 80px;
}

.about_content_items {
	width: calc(100% - 480px);
}

.about_content_items.full {
	width: 100%;
}

.about_content_text {
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	gap: 20px;
}

.about_content_text p {
	color: var(--white);
	font-size: var(--big_text);
	text-align: justify;
	line-height: 180%;
}

.about_content_text a {
	color: var(--corp);
}

.about_content_edges {
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	gap: 12px;

	padding-top: 40px;
}

.about_content_edge {
	position: relative;

	padding: 24px 24px 24px 96px;
	background-color: var(--black);
	border-radius: 16px;
}

.about_content_edge:before {
	content: '';
	position: absolute;
	top: 50%;
	left: 24px;

	width: 48px;
	height: 48px;
	background-color: var(--light_black);
	background-image: url('../images/icons/benefit.svg');
	background-position: center;
	background-repeat: no-repeat;
	background-size: 24px auto;
	border-radius: 50%;

	transform: translate3d(0, -50%, 0);
}

.about_content_covers {
	width: 400px;
}

.about_content_video {

}

.about_content_video img {
	border-radius: 16px;
}

.about_content_video video {
	width: 100%;
	height: auto;
	border-radius: 16px;
}

.about_content_button {
	padding-top: 20px;
}

.about_content_reviews {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 24px;

	margin-top: 40px;
	padding: 24px;
	border: 2px solid var(--black);
	border-radius: 16px;
}

.about_content_reviews_label {
	color: var(--corp);
}

.about_content_reviews_label a {
	color: var(--white);
}

.about_content_reviews_stars {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
}

.about_content_reviews_stars span {
	display: inline-block;

	padding-right: 4px;
	color: var(--white);
}

.about_content_reviews_stars img {
	width: 36px;
}

.about_photos {
	display: flex;
	flex-wrap: wrap;
	gap: 40px;

	padding-top: var(--v_padding);
}

.about_photos:first-child {
	padding-top: 0;
}

.about_photo {
	height: 400px;
}

.about_photo img {
	object-fit: cover;

	height: 100%;
	border-radius: 16px;
}

.about_photo.ap_2 {
	width: calc(50% - 20px);
}

.about_photo.ap_3 {
	width: calc(100% / 3 - 80px / 3);
}

.about_photo.ap_more {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-end;

	padding: 80px;
	color: var(--red);
	background-color: var(--black);
	border-radius: 16px;
}

/* about */



/* decorations */

.decorations {
	position: absolute;

	top: 0;
	left: 0;
	right: 0;
	bottom: 0;

	min-height: 600px;
	max-height: 900px;
	z-index: 1;
}

.decorations_image {
	position: absolute;
}

.decorations_image.top {
	top: 40px;
	right: -234px;

	width: 360px;
}

.decorations_image.bottom {
	left: -234px;
	bottom: -40px;

	width: 400px;
}

.decorations_image img {

}

/* decorations */



/* events */

.events {
	overflow: hidden;

	padding: 20px 0;
}

.events_group {

}

.events_header {

}

.events_blocks {
	display: flex;
	flex-wrap: wrap;
	gap: 40px;
}

.events_slider {
	width: calc(100% + 40px);
	margin: 0 -20px;
}

.events_slide {
	max-width: 350px;
	padding: 0 20px;
}

.events_block {
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;

	width: calc(100% / 3 - 80px / 3);
}

.events_slide .events_block {
	width: 100%;
}

.events_block_image {
	display: block;
	position: relative;
}

.events_block_image img {
	border-radius: 16px;
}

.events_block_badges {
	display: flex;
	flex-wrap: wrap;
	gap: 4px;
	position: absolute;
	left: -12px;
	bottom: 12px;
}

.events_block_badge {
	padding: 9px 16px;
	color: var(--white);
	font-size: 14px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
	border-radius: 12px;
}

.events_block_badge.yellow {
	background-color: var(--yellow);
}

.events_block_badge.green {
	background-color: var(--green);
}

.events_block_badge.corp {
	background-color: var(--corp);
}

.events_block_badge.blue {
	background-color: var(--blue);
}

.events_block_info {
	flex-grow: 1;
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;

	padding-top: 16px;
}

.events_block_title {
	color: var(--white);
}

.events_block_descr {
	flex-grow: 1;

	padding-top: 12px;
	color: var(--white);
	font-size: var(--note);
	line-height: 160%;
}

.events_block_button {
	display: flex;

	padding-top: 16px;
}

.events_paginations {
	padding-top: var(--v_padding);
}

/* events */



/* pagination */

.pagination {
	display: inline-flex;
	flex-wrap: nowrap;
	overflow-x: auto;
	overflow-y: hidden;
	gap: 4px;

	max-width: 100%;

	padding: 4px;
	background-color: var(--light_black);
	border-radius: 16px;

	-webkit-overflow-scrolling: touch;
			scrollbar-width: none;
}

.pagination::-webkit-scrollbar {
	display: none;
}

.pagination_block {
	padding: 10px 20px;
	color: var(--corp);
	font-size: 14px;
	font-weight: 700;
	text-align: center;
	text-transform: uppercase;
	letter-spacing: 1px;
	border-radius: 12px;
	cursor: pointer;

	transition: color .23s ease-out, background-color .23s ease-out;
}

.pagination_block:hover {
	background-color: var(--black);
}

.pagination_block.active {
	color: var(--white);
	background-color: var(--corp);
}

/* pagination */



/* footer */

.footer {
	position: relative;

	padding: var(--v_padding) 0 40px;
	background-image: url('../images/footer.line.svg');
	background-position: top center;
	background-repeat: no-repeat;
	background-size: 100% auto;
}

.footer .bone {
	position: relative;

	z-index: 2;
}

.footer_group {

}

.footer_blocks {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 40px;

	padding-right: 25%;
}

.footer_block {

}

.footer_logo {
	width: 220px;
}

.footer_logo img {

}

.footer_descr {
	padding-top: 12px;
	color: var(--white);
	font-size: var(--note);
	line-height: 160%;
}

.footer_moderza {
	width: 108px;
	padding-top: 16px;
}

.footer_moderza_logo {
	padding-top: 12px;
}

.footer_moderza_logo img {

}

.footer_block {

}

.footer_nav {
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	gap: 20px;
}

.footer_nav a {
	color: var(--white);
	font-size: var(--label);
}

.footer_nav a.corp {
	color: var(--corp);
}

.footer_label {
	color: var(--white_60);
	font-size: 14px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.footer_button {
	padding-top: 20px;
}

.footer_button {

}

.footer_media {
	padding-top: 40px;
}

.footer_socs {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;

	padding-top: 12px;
}

.footer_socs_icon {
	width: 44px;
	padding: 12px;
	background-color: var(--light_black);
}

.footer_socs_icon img {

}

.footer_copy {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;

	padding-top: 40px;
}

.footer_copy_links {
	display: flex;
	flex-wrap: wrap;
	gap: 20px 40px;
	width: calc(100% / 3 - 80px / 3);
}

.footer_copy_links a {
	color: var(--white);
	font-size: var(--label);
}

.footer_copy_right {
	width: calc(100% / 3 - 80px / 3);
	color: var(--white_60);
	font-size: var(--label);
	text-align: center;
}

.footer_copy_right a {
	color: var(--white_60);
}

.footer_bull {
	position: absolute;
	top: 80px;
	right: 0;
	bottom: 0;

	z-index: 1;
}

.footer_bull img {
	width: auto;
	height: 100%;
}

/* footer */



/* subheader */

.subheader {
	overflow-x: auto;
	position: static;
	top: 0;
	left: 0;
	right: 0;

	padding: 12px 0;
	background-color: var(--black_60);
	backdrop-filter: blur(10px);
	z-index: 997;

	transition: bottom .23s ease-out;

	-webkit-overflow-scrolling: touch;
			scrollbar-width: none;
}

.subheader::-webkit-scrollbar {
	display: none;
}

.subheader.fixed {
	position: fixed;
}

.subheader.hidden {
	bottom: -88px;
}

.subheader_group {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 24px;
}

.subheader_nav {
	display: flex;
	gap: 4px;
}

.subheader_li {
	display: block;
	position: relative;

	height: 48px;
	padding: 0 32px;
	color: var(--white);
	font-size: 14px;
	font-weight: 700;
	font-family: 'Akrobat', sans-serif;
	text-align: center;
	text-transform: uppercase;
	line-height: 44px;
	letter-spacing: 1px;
	white-space: nowrap;
	background-color: transparent;
	border: 2px solid transparent;
	border-radius: 12px;
	box-shadow: none;
	cursor: pointer;

	transition: background-color .23s ease-out, border-color .23s ease-out, box-shadow .23s ease-out;

	-webkit-user-select: none;
	   -moz-user-select: none;
		-ms-user-select: none;
			user-select: none;
}

.subheader_li:hover {
	border-color: var(--corp);
}

.subheader_li:active {
	line-height: 46px;
}

.subheader_li.active {
	background-color: var(--corp);
	border-color: var(--corp);
}

.subheader_buttons {

}

/* subheader */



/* subhidden */

.subhidden {

}

.subhidden.hidden {
	display: none;
}

/* subhidden */



/* contacts */

.contacts {
	padding: 20px 0;
}

.contacts_group {

}

.contacts_blocks {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-end;
	gap: 80px;
}

.contacts_info {
	width: calc(50% - 40px);
}

.contacts_icons {
	display: flex;
	flex-wrap: wrap;
	gap: 40px 80px;
}

.contacts_icons_icon {
	position: relative;

	padding-left: 72px;
	font-size: var(--big_text);
	line-height: 180%;
}

.contacts_icons_icon:before {
	content: '';
	position: absolute;
	top: 50%;
	left: 0;

	width: 48px;
	height: 48px;
	background-color: var(--light_black);
	background-position: center;
	background-repeat: no-repeat;
	background-size: 24px auto;
	border-radius: 50%;

	transform: translate3d(0, -50%, 0);
}

.contacts_icons_icon.icon_location:before {
	background-image: url('../images/icons/location.svg');
}

.contacts_icons_icon.icon_phone:before {
	background-image: url('../images/icons/phone.svg');
}

.contacts_icons_icon.icon_whatsapp:before {
	background-image: url('../images/icons/whatsapp.svg');
}

.contacts_icons_icon a {
	color: var(--white);
}

.contacts_shedu {
	margin-top: 40px;
	padding: 32px 24px 24px;
	background-color: var(--light_black);
	border-radius: 16px;
}

.contacts_shedu_now {
	padding-left: 16px;
	color: var(--green);
}

.contacts_shedu_now.green {

}

.contacts_shedu_table {
	padding-top: 20px;
}

.contacts_shedu_table_row {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 12px;

	padding: 4px 16px;
	border-radius: 8px;
}

.contacts_shedu_table_row:nth-child(odd) {
	background-color: var(--black);
}

.contacts_shedu_table_col {
	font-size: var(--big_text);
	line-height: 180%;
}

.contacts_map {
	position: relative;

	width: calc(50% - 40px);
}

.contacts_map img {
	border-radius: 16px;
}

.contacts_map_pointer {
	display: flex;
	flex-direction: column;
	align-items: center;
	position: absolute;
	top: 50%;
	left: 50%;

	width: 60px;
	height: 60px;
	background-image: url('../images/icons/map_pointer.svg');
	background-position: center;
	background-repeat: no-repeat;
	background-size: 100% auto;

	transform: translate(-50%, -50%);

	animation: bounce 1.8s ease-in-out infinite;
}

@keyframes bounce {
	0%, 100% {
		transform: translate(-50%, -50%);
	}
	50% {
		transform: translate(-50%, calc(-50% - 12px));
	}
}

/* contacts */



/* touch */

.touch {
	padding: 20px 0;
}

.touch_group {

}

.touch_blocks {
	display: flex;
	flex-wrap: wrap;
	gap: 80px;
}

.touch_image {
	width: calc(50% - 40px);
}

.touch_image img {
	border-radius: 16px;
}

.touch_info {
	width: calc(50% - 40px);
}

.touch_header .h3 {
	color: var(--corp);
}

.touch_form {
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	gap: 20px;
}

.touch_form_row {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
}

.touch_form_col {
	width: calc(50% - 10px);
}

.touch_form_col.full {
	width: 100%;
}

.touch_form_label {
	padding-bottom: 12px;
	color: var(--white_60);
	font-size: var(--label);
}

.touch_form_input {

}

.touch_form_button {
	display: flex;
}

/* touch */



/* separator */

.separator {
	height: var(--v_padding);
	background: linear-gradient(180deg, transparent 0%, var(--light_black) 100%);
	z-index: 2;
}

.separator.revers {
	background: linear-gradient(0, transparent 0%, var(--light_black) 100%);
}

.separator.pat {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;

	background: linear-gradient(0, transparent 0%, var(--black) 100%);
}

.separator.pab {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;

	background: linear-gradient(180deg, transparent 0%, var(--light_black) 100%);
}

/* separator */



/* faqs */

.faqs {
	padding: 20px 0;
	background-color: var(--light_black);
}

.faqs_group {

}

.faqs_header .h3 {
	color: var(--corp);
}

.faqs_blocks {
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	gap: 12px;

	max-width: 880px;
	margin: 0 auto;
}

.faqs_block {
	position: relative;

	padding: 24px 92px 24px 32px;
	background-color: var(--light_black);
	border: 2px solid var(--black);
	border-radius: 16px;

	transition: background-color .23s ease-out;
}

.faqs_block.active {
	background-color: var(--black);
}

.faqs_block_title {
	color: var(--corp);
}

.faqs_block.active .faqs_block_title {
	color: var(--white);
}

.faqs_block_hidden {
	display: none;
}

.faqs_block.active .faqs_block_hidden {
	display: block;
}

.faqs_block_descr {
	padding-top: 12px;
}

.faqs_block_descr p {
	color: var(--white);
	font-size: var(--big_text);
	line-height: 180%;
}

.faqs_close {
	position: absolute;

	top: 24px;
	right: 24px;

	width: 44px;
	height: 44px;
	padding: 14px;
	background-color: var(--black);
	border-radius: 50%;

	transition: background-color .23s ease-out, transform .23s ease-out;
}

.faqs_block.active .faqs_close {
	background-color: var(--light_black);

	transform: rotate(45deg);
}

.faqs_close svg {
	width: 100%;
	height: auto;
}

.faqs_close path {
	fill: var(--green);
}

.faqs_block.active .faqs_close path {
	fill: var(--red);
}

/* faqs */



/* maps */

.maps {
	position: relative;
}

.maps_image {
	position: relative;
}

.maps_image img {

}

.maps_image_pointer {
	display: flex;
	flex-direction: column;
	align-items: center;
	position: absolute;

	width: 60px;
	height: 60px;
	background-image: url('../images/icons/map_pointer.svg');
	background-position: center;
	background-repeat: no-repeat;
	background-size: 100% auto;

	transform: translate(-50%, 0);

	animation: bounce_2 1.8s ease-in-out infinite;
}

.maps_image_pointer.mp_1 {
	left: 29.5%;
	bottom: 54.5%;
}

.maps_image_pointer.mp_2 {
	left: 71.5%;
	bottom: 40.5%;
}

@keyframes bounce_2 {
	0%, 100% {
		transform: translate(-50%, 0);
	}
	50% {
		transform: translate(-50%, 12px);
	}
}

/* maps */



/* jorny */

.jorny {
	display: flex;
	flex-wrap: wrap;

	background-color: var(--black);
}

.jorny_info {
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	justify-content: flex-end;
	gap: 20px;

	width: 50%;
	padding: 80px;
}

.jorny_tags {
	display: flex;
	flex-wrap: wrap;
	gap: 4px;
}

.jorny_tag {
	padding: 9px 16px;
	color: var(--white);
	font-size: 14px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
	border-radius: 12px;
}

.jorny_title {

}

.jorny_cover {
	overflow: hidden;
	position: relative;

	width: 50%;
	min-height: 40vw;
}

.jorny_cover img,
.jorny_cover video {
	object-fit: cover;
	position: absolute;

	width: 100%;
	height: 100%;
}

/* jorny */



/* art */

.art {
	padding: 20px 0;
}

.art.light {
	background-color: var(--light_black);
}

.art_group {

}

.art_texter {
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	gap: 20px;

	max-width: 800px;
	margin: 0 auto;
}

.art_texter p {
	color: var(--white);
	font-size: var(--big_text);
	line-height: 180%;
}

.art_etc {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 80px;
}

.art_etc_block {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 40px;

	width: calc(50% - 40px);
}

.art_etc_cover {
	position: relative;

	width: calc(50% - 20px);
}

.art_etc_cover img {
	border-radius: 16px;
}

.art_etc_info {
	width: calc(50% - 20px);
}

.art_etc_info_label {
	color: var(--corp);
}

.art_etc_info_title {
	padding-top: 12px;
	color: var(--white);
}

.art_etc_info_descr {
	padding-top: 12px;
	color: var(--white);
	font-size: var(--note);
	line-height: 160%;
}

/* art */



/* texter */

.texter {
	padding: var(--v_padding) var(--g_padding);
	background-color: #222622;
}

.texter_group {
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	gap: 40px;
}

.texter_title {

}

.texter_subtitle {

}

/* texter */



/* animation */

.animation_top {
	opacity: 0;

	transform: translate3d(0, 40px, 0);
	transition: opacity .63s ease-in-out, transform .63s ease-in-out;
}

.animation_top.active {
	opacity: 1;

	transform: translate3d(0, 0, 0);
}

.animation_left {
	opacity: 0;

	transform: translate3d(-40px, 0, 0);
	transition: opacity .63s ease-in-out, transform .63s ease-in-out;
}

.animation_left.active {
	opacity: 1;

	transform: translate3d(0, 0, 0);
}

.animation_opacity {
	opacity: 0;

	transform: translate3d(40px, 0, 0);
	transition: opacity .63s ease-in-out, transform .63s ease-in-out;
}

.animation_opacity.active {
	opacity: 1;

	transform: translate3d(0, 0, 0);
}

.animation_rotate {
	opacity: 0;

	transform: rotate(-90deg);
	transition: opacity 1.1s ease-in-out, transform 1.1s ease-in-out;
}

.animation_rotate.active {
	opacity: 1;

	transform: rotate(90deg);
}

.animation_rotate_2 {
	opacity: 0;

	transform: rotate(-25deg);
	transition: opacity 1.1s ease-in-out, transform 1.1s ease-in-out;
}

.animation_rotate_2.active {
	opacity: 1;

	transform: rotate(0);
}

.animation_levitate {
	will-change: transform;

	animation: levitate-animation 8s ease-in-out infinite alternate;
}

.animation_orbita {
	will-change: transform;

	animation: orbita-animation 16s ease-in-out infinite alternate;
}

@keyframes arrow-animation {
	from {
		transform: translate3d(0, 0, 0);
	}
	to {
		transform: translate3d(20px, 0, 0);
	}
}

@keyframes orbita-animation {
	from {
		transform: rotate(0deg) translateX(40px) rotate(0deg);
	}
	to {
		transform: rotate(360deg) translateX(40px) rotate(-360deg);
	}
}

@keyframes levitate-animation {
	0% {
		transform: translate3d(0, 0, 0);
	}
	50% {
		transform: translate3d(3%, -5%, 0);
	}
	100% {
		transform: translate3d(0, -7%, 0);
	}
}

/* animation */




@media only screen and (max-width: 1024px) {
	:root {
		--h1: 44px;
		--h1_mini: 36px;
		--h2: 27px;
		--h3: 19px;
		--h4: 16px;
		--big_text: 18px;
		--text: 14px;
		--label: 15px;

		--v_padding: 40px;
	}

	/* button */

	.button.delivery {
		width: 48px;
		padding: 0;
		font-size: 0;
		background-image: url('../images/icons/delivery.svg');
		background-position: center;
		background-repeat: no-repeat;
		background-size: 24px auto;
	}

	/* button */



	/* header */

	.header_logo {
		flex-grow: 1;
		position: static;

		padding-left: 40px;

		transform: none;
	}

	.header_logo img {
		max-width: 180px;
	}

	/* header */



	/* cities */

	.cities_blocks {
		gap: 20px;
	}

	.cities_block {
		width: calc(100% / 3 - 40px / 3);
	}

	/* cities */



	/* about */

	.about_content {
		gap: 40px;
	}

	.about_content_items {
		width: calc(50% - 20px);
	}

	.about_content_covers {
		width: calc(50% - 20px);
	}

	.about_content_reviews {
		justify-content: center;
	}

	.about_photos {
		gap: 20px;
	}

	.about_photo.ap_2 {
		width: calc(50% - 10px);
	}

	.about_photo.ap_3 {
		width: calc(100% / 3 - 40px / 3);
	}

	/* about */



	/* events */

	.events_blocks {
		gap: 40px 20px;
	}

	.events_block {
		width: calc(100% / 3 - 40px / 3)
	}

	.events_slider {
		margin: 0 -10px;
	}

	.events_slide {
		padding: 0 10px;
	}

	/* events */



	/* touch */

	.touch_blocks {
		gap: 40px;
	}

	.touch_image {
		width: calc(50% - 20px);
	}

	.touch_info {
		width: calc(50% - 20px);
	}

	/* touch */



	/* contacts */

	.contacts_blocks {
		gap: 40px;
	}

	.contacts_info {
		width: calc(50% - 20px);
	}

	.contacts_map {
		width: calc(50% - 20px);
	}

	/* contacts */



	/* other */

	#header_icons_desktop {
		display: none;
	}

	/* other */



	/* faqs */

	.faqs_close {
		top: 15px;
	}

	/* faqs */



	/* bar */

	.bar_icons {
		display: flex;
	}

	/* bar */
}

@media only screen and (max-width: 992px) {
	.bone {
		max-width: 648px;
		padding: 0 24px;
	}

	/* cities */

	.cities_block {
		width: 100%;
	}

	.cities_block_info {
		position: absolute;
		left: 0;
		right: 0;
		bottom: 0;

		padding: 12px;
		background-color: var(--black_60);
		backdrop-filter: blur(10px);
		border-radius: 0 0 16px 16px;
	}

	/* cities */



	/* about */

	.about_content_items {
		width: 100%;
	}

	.about_content_covers {
		width: 100%;
	}

	.about_photos {
		display: block;

		margin: 0 -10px;
	}

	.about_photo {
		width: 320px !important;
		height: 400px !important;
		padding: 0 10px;
	}

	/* about */



	/* footer */

	.footer_block {
		width: 100%;
	}

	.footer_bull {
		top: auto;
	}

	.footer_button {
		display: flex;
	}

	.footer_copy_links {
		width: 100%;
	}

	.footer_copy_right {
		width: 100%;
		text-align: left;
	}

	.footer_media {
		padding-top: 20px;
	}

	/* footer */



	/* contacts */

	.contacts_info {
		width: 100%;
	}

	.contacts_map {
		width: 100%;
	}

	/* contacts */



	/* touch */

	.touch_image {
		width: 100%;
	}

	.touch_info {
		width: 100%;
	}

	/* touch */



	/* events */

	.events_block {
		width: 100%;
	}

	/* events */



	/* jorny */

	.jorny_info {
		order: 1;

		width: 100%;
	}

	.jorny_cover {
		width: 100%;
		min-height: 100vh;
	}

	/* jorny */



	/* art */

	.art_etc {
		gap: 20px;
	}

	.art_etc_block {
		width: 100%;
	}

	.art_etc_block:nth-child(2) .art_etc_cover {
		order: 1;
	}

	/* art */
}

@media only screen and (max-width: 648px) {
	/* button */

	.button {
		padding: 0 20px;
	}

	/* button */



	/* header */

	.header_logo {
		display: none;
	}

	/* header */



	/* general */

	.general_group {
		min-height: 100vw;
	}

	/* general */



	/* events */

	.events_slide {
		max-width: 320px;
	}

	/* events */



	/* footer */

	.footer_bull {
		height: 200px;
	}

	/* footer */



	/* subheader */

	.subheader_li {
		padding: 0 20px;
	}

	.subheader_buttons {
		padding-right: 24px;
	}

	/* subheader */



	/* contacts */

	.contacts_icons {
		gap: 20px;
	}

	/* contacts */



	/* touch */

	.touch_form_col {
		width: 100%;
	}

	/* touch */



	/* faqs */

	.faqs_block {
		padding: 16px 80px 20px 20px;
	}

	.faqs_close {
		right: 16px;
	}

	/* faqs */
}