:root {
	--white: #FFF;
	--pink: #C10344;
	--aqua: #4D8D8F;
	--black: #000;
	--gray: #9F9F9F;
}

* {
	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: 56px 0 0;
	color: var(--black);
	font-size: 15px;
	font-weight: 400;
	font-family: 'Montserrat', sans-serif;
	line-height: 1.15;
	background-color: #FFF;
	background-attachment: fixed;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;

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

img {
	display: block;
}

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

.bone {
	width: 100%;
	max-width: 1440px;
	margin: 0 auto;
	padding: 0 48px;
}

.button {
	overflow: hidden;
	display: block;

	height: 40px;
	padding: 0 28px;
	color: var(--white);
	font-size: 11px;
	font-weight: 600;
	font-family: 'Montserrat', sans-serif;
	text-align: center;
	text-transform: uppercase;
	text-decoration: none;
	text-overflow: ellipsis;
	line-height: 40px;
	white-space: nowrap;
	letter-spacing: 1px;
	background-color: var(--aqua);
	border-radius: 100px;
	cursor: pointer;

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

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

.button:hover {
	background-color: var(--pink);
}

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

.input {
	display: block;

	width: 100%;
	height: 40px;
	padding: 12px 20px 12px;
	color: #000;
	font-size: 14px;
	font-weight: 400;
	font-family: 'Montserrat', sans-serif;
	line-height: 19px;
	background-color: #FFF;
	border: 1px solid #C0C0C0;
	border-radius: 4px 0 0 4px;
	/*box-shadow: inset 0 1px 4px 0 rgba(0, 0, 0, .08);*/
	box-shadow: none;
	outline: none;

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

	-webkit-appearance: none;
}

.input.err {
	border-color: #EE0C0C;
}

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

.input:focus {
	background-color: #FFF;
	border-color: var(--black);
	box-shadow: none;
}

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

.error span {
	color: #EE0C0C;
}

.input:-moz-placeholder {
	color: #7C7D7D !important;
	line-height: normal;
}

.input::-webkit-input-placeholder {
	color: #7C7D7D;
	line-height: normal;
}

::-webkit-input-placeholder {
	color: #7C7D7D;
	line-height: normal;
}

:-ms-input-placeholder {
	color: #7C7D7D;
	line-height: normal;
}

::-moz-placeholder {
	color: #7C7D7D;
	line-height: normal;
}

:-moz-placeholder {
	color: #7C7D7D;
	line-height: normal;
}

/* global */

.global_header {
	margin-bottom: 40px;
}

.global_header.center {
	text-align: center;
}

.global_title {
	color: var(--black);
	font-size: 36px;
	font-weight: 600;
}

.global_subtitle {
	color: var(--gray);
	font-size: 16px;
	line-height: 180%;
}

.global_tags {
	position: relative;
	display: inline-flex;
	flex-wrap: wrap;

	margin-top: 20px;
	background-color: var(--white);
}

.global_tags h3 {
	display: block;
}

.global_tags:before {
	content: '';
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;

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

.global_tag {
	display: inline-block;

	padding: 8px 16px;
	color: var(--black);
	font-size: 11px;
	font-weight: 500;
	text-transform: uppercase;
	line-height: 140%;
	letter-spacing: 1px;
	cursor: pointer;

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

.global_tag:hover {
	color: var(--white);
	background-color: var(--aqua);
}

.global_tag.active {
	color: var(--white);
	background-color: var(--aqua);
}

.global_bread {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

.global_bread a {
	position: relative;

	padding-right: 40px;
	color: var(--black);
	font-size: 16px;
	line-height: 160%;

	transition: color .23s ease-out;
}

.global_bread a:hover {
	color: var(--pink);
}

.global_bread a:before {
	content: '';
	position: absolute;
	top: 50%;
	right: 12px;

	width: 16px;
	height: 1px;
	background-color: var(--aqua);
}

.global_bread span {
	color: var(--gray);
	font-size: 16px;
	line-height: 160%;
}

.global_descr {
	margin-top: 12px;
	font-size: 16px;
	line-height: 180%;
}

.global_descr span {
	color: var(--pink);
}

/* global */



/* header */

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

	background-color: var(--white);
	z-index: 999;
}

.header_group {
	display: flex;
	flex-wrap: wrap;
	align-items: center;

	padding: 0 20px;
	box-shadow: 0 16px 20px 0 rgba(0, 0, 0, .04);
}

.header_logo {

}

.header_logo img {
	width: auto;
	height: 32px;

	transition: transform .23s ease-out
}

.header_logo:hover img {
	transform: scale(1.03);
}

.header_nav {
	flex-grow: 1;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

.header_li {

}

.header_li > a {
	display: block;

	padding: 20px 22px;
	color: var(--black);
	font-size: 11px;
	font-weight: 500;
	text-transform: uppercase;
	line-height: 140%;
	letter-spacing: 1px;

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

.header_li > a:hover {
	color: var(--pink);
	background-color: #FBFBFB;
}

.header_li.sub > a {
	position: relative;

	padding-right: 32px;
}

.header_li.sub > a:before {
	content: '';
	position: absolute;
	top: 50%;
	right: 22px;

	width: 6px;
	height: 6px;
	margin-top: -3px;
	background-image: url('../images/arrow.mini.svg');
	background-position: center;
	background-repeat: no-repeat;
	background-size: 100% auto;
}

.header_li_sub {
	display: none;
	flex-wrap: wrap;
	flex-direction: column;
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;

	min-height: calc(100vh - 56px);
	background-color: var(--white);
	z-index: -1;
}

.header_li.active .header_li_sub {
	display: flex;
}

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

	width: 25%;
	min-width: 400px;
	padding: 40px 0 40px 48px;
}

.header_li_sub_nav_li {

}

.header_li_sub_nav_li_cover {
	visibility: hidden;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;

	width: 75%;
	max-width: calc(100% - 400px);
	opacity: 0;
	z-index: 1;

	transition: .23s visibility 0 ease-out, opacity .23s ease-out;
}

.header_li_sub_nav_li_cover img {
	object-fit: cover;

	width: 100%;
	height: 100%;
}

.header_li_sub_nav_li_cover.active {
	visibility: visible;

	opacity: 1;
}

.header_li_sub_nav_li:hover .header_li_sub_nav_li_cover {
	visibility: visible;

	opacity: 1;
	z-index: 2;

	transition: opacity .23s ease-out;
}

.header_li_sub_nav_li > a {
	display: block;
	position: relative;

	padding: 12px 0;
	color: var(--black);
	font-size: 18px;
	font-weight: 600;
}

.header_li_sub_nav_li > a:before {
	content: '';
	position: absolute;
	top: 50%;
	right: 40px;

	width: 70px;
	height: 16px;
	margin-top: -8px;
	background-image: url('../images/arrow.pink.svg');
	background-position: center;
	background-repeat: no-repeat;
	background-size: 100% auto;
	opacity: 0;

	transition: right .23s ease-out, opacity .23s ease-out;
}

.header_li_sub_nav_li:hover > a:before {
	right: 32px;

	opacity: 1;
}

.header_instagram {
	width: 25%;
	min-width: 400px;
	padding: 0 48px 40px;
}

.header_instagram_block {
	margin-top: 8px;
}

.header_instagram_label {
	color: var(--gray);
	font-size: 12px;
}

.header_instagram_link {
	padding-top: 6px;
}

.header_instagram_link a {
	color: var(--pink);
}

.header_address {
	text-align: right;
}

.header_address_value {
	color: var(--black);
	font-size: 18px;
	font-weight: 600;

	transition: color .23s ease-out;
}

.header_address_value:hover {
	color: var(--pink);
}

.header_address_label {
	position: relative;

	padding-top: 4px;
	color: var(--gray);
	font-size: 10px;
}

.header_address_label:before {
	content: '';
	position: absolute;
	top: 100%;
	left: 0;

	width: 0;
	height: 1px;
	background-color: var(--gray);
	opacity: .4;

	transition: width .23s ease-out;
}

.header_address_label:hover:before {
	width: 100%;
}

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

	padding: 0 32px;
}

.header_socs_icon {
	display: block;

	width: 36px;
	height: 36px;
	padding: 8px;
	background-color: var(--pink);
	border-radius: 50%;

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

.header_socs_icon:hover {
	background-color: var(--aqua);
}

.header_socs_icon svg {
	width: 20px;
	height: auto;
}

.header_button {

}

.header_bar {
	position: relative;
	display: none;
	flex-wrap: wrap;
	align-items: center;
	justify-content: flex-end;

	width: 30px;
	height: 14px;
	margin-left: 32px;
	cursor: pointer;
}

.header_bar span {
	display: block;

	width: 20px;
	height: 2px;
	background-color: var(--black);

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

.header_bar span:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;

	width: 30px;
	height: 2px;
	background-color: var(--black);

	transform-origin: top right;

	transition: transform .23s ease-out;
}

.header_bar span:after {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;

	width: 30px;
	height: 2px;
	background-color: var(--black);

	transform-origin: right bottom;

	transition: transform .23s ease-out;
}

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

.header_bar.active span:before {
	transform: rotate(-45deg) translate3d(0, -6px, 0);
}

.header_bar.active span:after {
	transform: rotate(45deg) translate3d(0, 6px, 0);
}

/* header */



/* general */

.general {

}

.general_group {

}

.general_slider {

}

.general_slider_slide {
	height: calc(100vh - 100px);
}

.general_slider_slide img {
	object-fit: cover;

	width: 100%;
	height: 100%;
}

/* general */



/* edges */

.edges {
	position: relative;

	margin-top: -124px;
	z-index: 2;
}

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

.edges_block {
	width: calc(25% - 15px);
	padding: 20px 20px 0 32px;
	background-image: linear-gradient(0, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);

	-webkit-backdrop-filter: blur(40px);
			backdrop-filter: blur(40px);
}

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

.edges_title {
	color: var(--black);
	font-size: 18px;
	font-weight: 600;
	line-height: 140%;
}

.edges_icon {
	padding: 16px;
	background-color: var(--white);
	border-radius: 50%;
}

.edges_icon img {
	width: 32px;
	height: auto;
}

.edges_descr {
	padding-top: 12px;
	color: var(--black);
	font-size: 16px;
	line-height: 180%;
}

/* edges */



/* catalog */

.catalog {
	padding: 80px 0;
}

.catalog.padding {
	padding-top: 40px;
}

.catalog_h1 {
	margin-bottom: 40px;
	font-size: 40px;
	font-weight: 600;
	text-align: center;
	line-height: 140%;
}

.catalog_group {

}

.catalog_header {

}

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

	margin: -40px;
}

.catalog_block {
	width: calc(100% / 3 - 80px);
	margin: 40px;
	cursor: pointer;
}

.catalog_image {

}

.catalog_image img {
	width: 100%;
	height: auto;

	transition: border-radius .23s ease-out;
}

.catalog_block:hover .catalog_image img {
	border-radius: 200px;
}

.catalog_block:nth-child(2n) .catalog_image img {
	border-radius: 200px;
}

.catalog_block:nth-child(2n):hover .catalog_image img {
	border-radius: 0;
}

.catalog_info {
	padding-top: 20px;
}

.catalog_title {
	color: var(--black);
	font-size: 21px;
	font-weight: 600;
	line-height: 140%;
}

.catalog_descr {
	padding-top: 4px;
	color: var(--gray);
	font-size: 14px;
	line-height: 160%;
}

.catalog_arrow {
	margin-top: 20px;
}

.catalog_arrow span {
	display: inline-block;
	position: relative;

	padding-right: 44px;
	color: var(--pink);
	font-size: 16px;
}

.catalog_arrow span:before {
	content: '';
	position: absolute;
	top: 50%;
	right: 0;

	width: 24px;
	height: 24px;
	margin-top: -12px;
	background-color: #F6F6F6;
	background-image: url('../images/arrow.micro.svg');
	background-position: center;
	background-repeat: no-repeat;
	background-size: 100% auto;
	border-radius: 50%;

	transition: transform .23s ease-out;

	transform: rotate(-90deg);
}

.catalog_block:hover .catalog_arrow span:before {
	transform: rotate(-90deg) translate3d(0, 8px, 0);
}

.catalog_paginations {
	width: 100%;
}

.catalog_paginations_group {
	position: relative;
	display: flex;
	flex-wrap: wrap;

	margin-top: 20px;
	background-color: var(--white);
}

.catalog_paginations_group:before {
	content: '';
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;

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

.catalog_paginations_group a {
	flex-grow: 1;

	padding: 8px 16px;
	color: var(--black);
	font-size: 11px;
	font-weight: 500;
	text-align: center;
	text-transform: uppercase;
	line-height: 140%;
	letter-spacing: 1px;
	cursor: pointer;

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

.catalog_paginations_group a:hover {
	color: var(--white);
	background-color: var(--aqua);
}

.catalog_paginations_group a.active {
	color: var(--white);
	background-color: var(--aqua);
}

.catalog_paginations_group span {
	flex-grow: 1;

	padding: 8px 16px;
	color: var(--black);
	font-size: 11px;
	font-weight: 500;
	text-align: center;
	text-transform: uppercase;
	line-height: 140%;
	letter-spacing: 1px;
}

.catalog_paginations_group span.current {
	color: var(--white);
	background-color: var(--aqua);
}

/* catalog */



/* online */

.online {
	overflow: hidden;

	background-image: url('../images/online.jpg');
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

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

.online_info {
	position: relative;

	padding: 48px 80px 48px 0;
}

.online_info:before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;

	width: 2000px;
	background-color: var(--aqua);
	z-index: 1;
}

.online_info:after {
	content: '';
	position: absolute;
	top: 50%;
	left: calc(100% - 32px);

	width: 341px;
	height: 16px;
	margin-top: -8px;
	background-image: url('../images/arrow.white.svg');
	background-position: center;
	background-repeat: no-repeat;
	background-size: 100% auto;
	z-index: 1;
}

.online_title {
	position: relative;

	color: var(--white);
	font-size: 36px;
	font-weight: 600;
	line-height: 130%;
	z-index: 2;
}

.online_subtitle {
	position: relative;

	padding-top: 8px;
	color: var(--white);
	font-size: 21px;
	line-height: 160%;
	z-index: 2;
}

.online_button {
	padding: 40px 60px;
	color: var(--white);
	font-size: 21px;
	font-weight: 600;
	line-height: 140%;
	background-color: var(--pink);
	border-radius: 100px;
	cursor: pointer;

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

.online_button:hover {
	background-color: var(--aqua);
}

/* online */



/* brands */

.brands {
	padding: 80px 0 0;
}

.brands_group {

}

.brands_header {

}

.brands_image {
	overflow: hidden;
	position: relative;

	padding-bottom: 40px;
}

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

.brands_button {
	position: absolute;
	top: 60px;
	left: 50%;

	z-index: 2;

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

/* brands */



/* footer */

.footer {
	padding: 32px 0;
	background-color: var(--pink);
}

.footer_group {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.footer_block {
	max-width: 25%;
}

.footer_logo {

}

.footer_logo img {
	width: auto;
	height: 32px;
	cursor: pointer;

	transition: transform .23s ease-out
}

.footer_logo:hover img {
	transform: scale(1.03);
}

.footer_descr {
	padding-top: 20px;
	color: var(--white);
	font-size: 13px;
	line-height: 180%;
	opacity: .6;
}

.footer_nav {

}

.footer_li {
	margin-top: 16px;
}

.footer_li:first-child {
	margin-top: 0;
}

.footer_li a {
	position: relative;

	color: var(--white);
	font-size: 11px;
	font-weight: 500;
	text-transform: uppercase;
	line-height: 140%;
	letter-spacing: 1px;
}

.footer_li a:before {
	content: '';
	position: absolute;
	top: 100%;
	left: 0;

	width: 0;
	height: 1px;
	background-color: var(--white);
	opacity: .4;

	transition: width .23s ease-out;
}

.footer_li a:hover:before {
	width: 100%;
}

.footer_instagram {
	margin-top: 12px;
}

.footer_instagram:first-child {
	margin-top: 0;
}

.footer_instagram_label {
	color: var(--white);
	font-size: 12px;
	opacity: .6;
}

.footer_instagram_link {
	padding-top: 2px;
}

.footer_instagram_link a {
	position: relative;

	color: var(--white);
	font-size: 12px;
}

.footer_instagram_link a:before {
	content: '';
	position: absolute;
	top: calc(100% + 2px);
	left: 0;

	width: 0;
	height: 1px;
	background-color: var(--white);
	opacity: .4;

	transition: width .23s ease-out;
}

.footer_instagram_link a:hover:before {
	width: 100%;
}

.footer_phone {
	text-align: right;
}

.footer_phone a {
	position: relative;

	color: var(--white);
	font-size: 21px;
	font-weight: 600;
}

.footer_phone a:before {
	content: '';
	position: absolute;
	top: 100%;
	left: 0;

	width: 0;
	height: 1px;
	background-color: var(--white);
	opacity: .4;

	transition: width .23s ease-out;
}

.footer_phone a:hover:before {
	width: 100%;
}

.footer_address {
	padding-top: 4px;
}

.footer_address a {
	display: inline-block;
	position: relative;

	color: var(--white);
	font-size: 14px;
	text-align: right;
	text-decoration: none;
	line-height: 140%;
}

.footer_address a:before {
	content: '';
	position: absolute;
	top: 100%;
	left: 0;

	width: 0;
	height: 1px;
	background-color: var(--white);
	opacity: .4;

	transition: width .23s ease-out;
}

.footer_address a:hover:before {
	width: 100%;
}

.footer_metro {
	margin-top: 16px;
	text-align: right;
}

.footer_metro_label {
	display: inline-block;
	position: relative;

	height: 20px;
	padding-top: 1px;
	padding-left: 32px;
	color: var(--white);
	font-size: 16px;
	font-weight: 600;
	opacity: .6;
}

.footer_metro_label:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;

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

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

	margin-top: 20px;
}

.footer_socs_icon {
	display: block;

	width: 36px;
	height: 36px;
	padding: 8px;
	background-color: rgba(255, 255, 255, .16);
	border-radius: 50%;

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

.footer_socs_icon:hover {
	background-color: rgba(255, 255, 255, .08);
}

.footer_socs_icon svg {
	width: 20px;
	height: auto;
}

/* footer */



/* copy */

.copy {
	padding: 20px 48px;
	background-color: var(--pink);
	border-top: 1px solid rgba(255, 255, 255, .2);
}

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

.copy_text {
	color: var(--white);
	font-size: 12px;
	opacity: .6;
}

.copy_skycab {
	color: #FDA4C3;
	font-size: 12px;
}

.copy_skycab a {
	color: var(--white);

	transition: color .23s ease-out;
}

.copy_skycab a:hover {
	color: #FDA4C3;
}

/* copy */



/* author */

.author {
	padding: 40px 0 0;
}

.author_group {

}

.author_info {

}

.author_info_header {
	display: flex;
	justify-content: space-between;

	margin-bottom: 40px;
}

.author_info_header_left {
	white-space: nowrap;
}

.author_info_header_right {
	padding-left: 80px;
	font-size: 16px;
	text-align: right;
	line-height: 180%;
}

.author_main {
	display: flex;
	flex-wrap: wrap;
}

.author_main_image {
	position: relative;
}

.author_main_image_sticky {
	position: sticky;
	top: 100px;

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

.author_main_image_sticky > img {
	width: 100%;
	height: auto;
	border-radius: 200px;
}

.author_main_shtamp {
	position: absolute;
	top: -8px;
	left: -8px;

	width: 112px;
}

.author_main_shtamp img {
	width: 100%;
	height: auto;
	opacity: .92;

	animation: rotated_360 400s linear infinite alternate;
}

.author_main_info {
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	justify-content: center;

	width: calc(100% - 344px);
	padding-left: 80px;
}

.author_main_title {
	color: var(--black);
	font-size: 21px;
	font-weight: 600;
	line-height: 140%;
}

.author_main_text {
	margin-top: 20px;
}

.author_main_text p,
.author_main_text_etc p {
	margin-top: 12px;
	color: var(--black);
	font-size: 16px;
	line-height: 180%;
}

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

.author_main_button {
	display: flex;

	margin-top: 20px;
}

/* author */



/* faq */

.faq {
	padding: 80px 0;
}

.faq_group {

}

.faq_header {

}

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

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

.faq_info_block {
	border-bottom: 2px solid #F2F2F2;
}

.faq_info_title {
	display: block;
	position: relative;

	padding: 16px 88px 16px 20px;
	color: var(--black);
	font-size: 21px;
	font-weight: 600;
	line-height: 140%;
	background-color: #F9F9F9;

	transition: color .23s ease-out;
}

.faq_info_block.toggle .faq_info_title {
	cursor: pointer;
}

.faq_info_block.toggle .faq_info_title:hover {
	color: var(--aqua);
}

.faq_info_block.toggle .faq_info_title:before {
	content: '';
	position: absolute;
	top: 50%;
	right: 32px;

	width: 24px;
	height: 24px;
	margin-top: -12px;
	background-color: var(--white);
	background-image: url('../images/arrow.micro.svg');
	background-position: center;
	background-repeat: no-repeat;
	background-size: 100% auto;
	border-radius: 50%;

	transition: transform .23s ease-out;

	transform: rotate(-90deg);
}

.faq_info_block.toggle .faq_info_title:hover:before {
	transform: rotate(-90deg) translate3d(0, 8px, 0);
}

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

	padding: 12px 0;
	border-top: 2px solid #F2F2F2;
}

.faq_info_list h3 {
	display: block;

	width: 100%;
}

.faq_info_list_li {
	display: block;
	position: relative;

	width: 100%;
	padding: 12px 88px 12px 56px;
	color: var(--black);
	font-size: 16px;
	line-height: 140%;
	cursor: pointer;

	transition: color .23s ease-out;
}

.faq_info_list_li:hover {
	color: var(--aqua);
}

.faq_info_list_li:before {
	content: '';
	position: absolute;
	top: 10px;
	left: 20px;

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

.faq_info_list_li:after {
	content: '';
	position: absolute;
	top: 50%;
	right: 32px;

	width: 24px;
	height: 24px;
	margin-top: -12px;
	background-color: #F9F9F9;
	background-image: url('../images/arrow.micro.svg');
	background-position: center;
	background-repeat: no-repeat;
	background-size: 100% auto;
	border-radius: 50%;

	transition: transform .23s ease-out;

	transform: rotate(-90deg);
}

.faq_info_list_li:hover:after {
	transform: rotate(-90deg) translate3d(0, 8px, 0);
}

.faq_info_list_li span {
	display: block;

	font-size: 11px;
}

/* faq */



/* subservices */

.subservices {
	padding: 80px 0;
}

.subservices_group {

}

.subservices_header {

}

.subservices_info {
	padding: 80px;
	border: 4px solid #F6F6F6;
	border-radius: 40px;
}

.subservices_info.margin {
	margin-top: 120px;
}

.subservices_info_texter {
	max-width: 960px;
	margin: 0 auto;
}

.subservices_info_texter img {
	width: 100%;
	height: auto;
	max-width: 1000px;
	margin: 0 auto 20px;
	border-radius: 40px;
}

.subservices_info_texter img:first-child {
	margin-top: -160px;
}

.subservices_info_texter img:last-child {
	margin-bottom: 0;
}

.subservices_info_texter h2 {
	margin-top: 12px;
	font-size: 21px;
	font-weight: 700;
	line-height: 140%;
}

.subservices_info_texter h2:first-child {
	margin-top: 0;
}

.subservices_info_texter p {
	margin-top: 12px;
	color: var(--black);
	font-size: 16px;
	line-height: 180%;
}

.subservices_info_texter p + p {
	margin-top: 8px;
}

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

.subservices_info_texter ul {
	margin: 12px 0 0;

	list-style: none;
}

.subservices_info_texter p + ul {
	margin-top: 4px;
}

.subservices_info_texter ul:first-child {
	margin-top: 0;
}

.subservices_info_texter ul li {
	position: relative;

	padding: 2px 0 2px 32px;
	color: var(--black);
	font-size: 16px;
	line-height: 180%;
}

.subservices_info_texter ul li:before {
	content: '';
	position: absolute;
	top: 3px;
	left: 0;

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

.subservices_info_texter i {
	color: var(--pink);
	font-size: 11px;
	font-weight: 500;
	text-transform: uppercase;
	line-height: 120%;
	letter-spacing: 1px;
}

.subservices_info_texter a {
	color: var(--aqua);
	font-weight: 700;
	text-decoration: underline;
}

.subservices_info_texter a:hover {
	text-decoration: none;
}

/* subservices */



/* team */

.team {
	padding: 80px 0;
}

.team_group {

}

.team_header {

}

.team_slider {

}

.team_slider:before {
	content: '';
	position: absolute;
	top: 10%;
	left: 50%;

	width: 320px;
	height: 320px;
	margin-left: -160px;
	background-image: url('../images/shtamp.svg');
	background-position: center;
	background-repeat: no-repeat;
	background-size: 100% auto;
	z-index: -1;

	animation: rotated_360 400s linear infinite alternate;
}

.team_slider_slide {
	cursor: pointer;
}

.team_slider_slide_block {
	transition: transform .23s ease-out;
}

.team_slider_image {

}

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

.team_slider_info {
	padding: 20px 0;
	text-align: center;
	background-color: rgba(255, 255, 255, .6);
	border-top: 2px solid var(--aqua);

	-webkit-backdrop-filter: blur(40px);
			backdrop-filter: blur(40px);

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

.team_slider_slide:hover .team_slider_info {
	border-color: var(--pink);
}

.team_slider_name {
	color: var(--black);
	font-size: 21px;
	font-weight: 600;
	line-height: 140%;
	opacity: 0;

	transition: opacity .23s ease-out;
}

.team_slider_descr {
	color: var(--gray);
	font-size: 16px;
	line-height: 180%;
	opacity: 0;

	transition: opacity .23s ease-out;
}

.team_slider .slick-slide .team_slider_slide_block {
	transform: scale(0.6);
}

.team_slider .slick-current + .slick-active .team_slider_slide_block {
	transform: scale(0.8);
}

.team_slider .slick-slide:not(.slick-active) + .slick-active + .slick-active:not(.slick-current) .team_slider_slide_block {
	transform: scale(0.8);
}

.team_slider .slick-current .team_slider_slide_block {
	transform: scale(1);
}

.team_slider .slick-current .team_slider_name,
.team_slider .slick-current .team_slider_descr {
	opacity: 1;
}

/* team */



/* before after */

.before_after {

}

.before_after_group {

}

.before_after_header {

}

.before_after_image {

}

.before_after_image_label {
	margin-top: 20px;
	color: var(--gray);
	text-align: center;
}

.before_after_image_slide {
	display: block !important;

	max-width: 900px;
	margin: 0 auto;
	border-radius: 1000px;
}

/* before after */



/* about */

.about {
	overflow: hidden;

	padding: 0 0 80px;
}

.about_group {

}

.about_header {

}

.about_slider {
	margin: 0 -20px;
}

.about_slider .slick-list {
	overflow: visible !important;
}

.about_slider .slick-prev {
	left: 32px;
}

.about_slider .slick-next {
	right: 32px;
}

.about_slider_slide {
	cursor: pointer;
}

.about_slider_image {
	padding: 0 20px;
}

.about_slider_image img {
	width: auto;
	height: 474px;
}

/* about */



/* contacts */

.contacts {
	padding: 40px 0 0;
}

.contacts_group {

}

.contacts_header {

}

.contacts_map {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	position: relative;

	min-height: calc(100vh - 190px);
	padding: 40px 0;
}

.contacts_map #map {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;

	z-index: 1;
}

.contacts_map .bone {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	position: relative;
	pointer-events: none;

	z-index: 2;
}

.contacts_map_info {
	pointer-events: visible;

	max-width: 460px;
	padding: 40px;
	background-color: rgba(255, 255, 255, .4);

	-webkit-backdrop-filter: blur(24px);
			backdrop-filter: blur(24px);
}

.contacts_map_phone {
	position: relative;

	padding-left: 36px;
}

.contacts_map_phone:before {
	content: '';
	position: absolute;
	top: 3px;
	left: 0;

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

.contacts_map_phone a {
	color: var(--pink);
	font-size: 24px;
	font-weight: 600;

	transition: color .23s ease-out;
}

.contacts_map_phone a:hover {
	color: var(--black);
}

.contacts_map_email {
	position: relative;

	margin-top: 16px;
	padding-left: 36px;
}

.contacts_map_email:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;

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

.contacts_map_email a {
	color: var(--black);
	font-size: 16px;
	line-height: 140%;

	transition: color .23s ease-out;
}

.contacts_map_email a:hover {
	color: var(--pink);
}

.contacts_map_address {
	position: relative;

	margin-top: 16px;
	padding-left: 36px;
}

.contacts_map_address:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;

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

.contacts_map_address a {
	color: var(--black);
	font-size: 14px;
	line-height: 160%;

	transition: color .23s ease-out;
}

.contacts_map_address a:hover {
	color: var(--pink);
}

.contacts_map_time {
	position: relative;

	margin-top: 16px;
	padding-left: 36px;
	color: var(--gray);
	font-size: 14px;
	line-height: 160%;
}

.contacts_map_time:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;

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

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

	margin-top: 28px;
}

.contacts_map_socs_icon {
	display: block;

	width: 36px;
	height: 36px;
	padding: 8px;
	background-color: var(--pink);
	border-radius: 50%;

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

.contacts_map_socs_icon:hover {
	background-color: var(--aqua);
}

.contacts_map_socs_icon svg {
	width: 20px;
	height: auto;
}

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

	margin-top: 28px;
}

/* contacts */



/* academy */

.academy {
	padding: 80px 0;
	background-color: #F9F9F9;
}

.academy_group {

}

.academy_header {

}

.academy_row {
	display: flex;
	flex-wrap: wrap;
	gap: 80px;

	margin-top: 40px;
}

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

.academy_short_descr {
	font-size: 16px;
	line-height: 180%;
}

.academy_label {
	margin-top: 20px;
	font-size: 21px;
	font-weight: 600;
	line-height: 140%;
}

.academy_list {
	margin-top: 20px;
}

.academy_list_li {
	position: relative;

	margin-top: 16px;
	padding-left: 18px;
}

.academy_list_li:first-child {
	margin-top: 0;
}

.academy_list_li:before {
	content: '';
	position: absolute;
	top: 8px;
	left: 0;

	width: 8px;
	height: 2px;
	background-color: var(--pink);
	border-radius: 4px;
}

.academy_button {
	display: flex;

	margin-top: 24px;
}

.academy_slider {

}

.academy_slider .slick-prev {
	left: 32px;
}

.academy_slider .slick-next {
	right: 32px;
}

.academy_slide {

}

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

/* academy */



/* Bar. */

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

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

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

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

.bar_close {
	position: absolute;
	top: 20px;
	right: 50px;

	width: 40px;
	height: 40px;
	background: url('/images/close.svg') center center no-repeat;
	background-size: 100% auto;
	cursor: pointer;
}

.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;
}

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

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

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

.bar_nav {
	flex-grow: 1;

	padding: 80px 32px;
}

.bar_nav_li {
	padding: 8px 0;
	text-align: center;
}

.bar_nav_li a {
	color: var(--black);
	font-size: 18px;
	font-weight: 600;
	text-align: center;
	line-height: 140%;

	transition: color .23s ease-out;
}

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

.bar_nav_li.acc > a {
	position: relative;
}

.bar_nav_li.acc > a:before {
	content: '';
	position: absolute;
	top: 8px;
	right: -16px;

	width: 8px;
	height: 8px;
	background-image: url('../images/arrow.red.svg');
	background-position: center;
	background-repeat: no-repeat;
	background-size: 100% auto;
}

.bar_nav_li_acc {
	padding: 8px 0;
}

.bar_nav_li_acc a {
	display: block;

	padding: 8px 0;
}

.bar_instagram {
	margin-top: 12px;
	text-align: center;
}

.bar_instagram:first-child {
	margin-top: 0;
}

.bar_instagram:last-child {
	padding-bottom: 20px;
}

.bar_instagram_label {
	color: var(--gray);
	font-size: 12px;
	opacity: .6;
}

.bar_instagram_link {
	padding-top: 4px;
}

.bar_instagram_link a {
	position: relative;

	color: var(--pink);
	font-size: 12px;
}

.bar_instagram_link a:before {
	content: '';
	position: absolute;
	top: calc(100% + 2px);
	left: 0;

	width: 0;
	height: 1px;
	background-color: var(--pink);
	opacity: .4;

	transition: width .23s ease-out;
}

.bar_instagram_link a:hover:before {
	width: 100%;
}

/* Bar. */



/* select. */

.global_select {
	display: none;
	position: relative;

	height: 30px;
	margin-top: 20px;
	padding: 6px 36px;
	color: var(--black);
	font-size: 11px;
	font-weight: 600;
	text-transform: uppercase;
	line-height: 19px;
	background-color: #F9F9F9;
	box-shadow: none;
	cursor: pointer;
	z-index: 1;

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

.global_select:hover {
	border-color: var(--boring);
}

.global_select.active {
	z-index: 99;
}

.global_select:before {
	content: '';
	pointer-events: none;
	position: absolute;
	top: 6px;
	right: 12px;

	width: 20px;
	height: 20px;
	background: url('/images/arrow.micro.svg') center center no-repeat;
	background-size: 100% auto;

	transition: transform .23s ease-out;
	transform: translateX(-2px);
}

.global_select.active:before {
	transform: rotate(180deg) translateX(-1px);
}

.global_select:after {
	content: '';
	pointer-events: none;
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;

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

.global_select.active:after {
	pointer-events: auto;
}

.global_select_ul {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;

	background-color: #FFF;
	box-shadow: 0 1px 4px 0 rgba(0, 0, 0, .08);
	z-index: 2;
}

.global_select.active .global_select_ul {
	display: block;
	overflow-y: scroll;

	max-height: 350px;
}

.global_select_li {
	display: block;

	padding: 8px 12px 7px;
	color: var(--black);
	cursor: pointer;
}

.global_select_li:hover {
	background-color: #F6F5F4;
}

/* select. */



/* headersub */

.headersub {
	display: none;
	position: fixed;
	top: 55px;
	left: 0;
	right: 0;

	text-align: center;
	background-color: var(--white);
	box-shadow: 0 16px 20px 0 rgba(0, 0, 0, .04);
	z-index: 998;
}

.headersub .global_tags,
.headersub .global_select {
	margin: 0 auto;
}

.headersub .global_tags:before,
.headersub .global_select:after {
	display: none;
}

/* headersub */



/* article */

.article {
	padding: 0 0 80px;
}

.article_group {

}

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

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

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

.article_block.next {
	text-align: right;
}

.article_image {
	overflow: hidden;

	width: 200px;
	border-radius: 200px;
}

.article_block.next .article_image {
	border-radius: 200px;
}

.article_image img {
	object-fit: cover;

	width: 100%;
	height: 100%;

	transition: transform .23s ease-out;
}

.article_block:hover .article_image img {
	transform: scale(1.2);
}

.article_info {
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	justify-content: center;

	width: calc(100% - 200px);
	padding: 4px 20px;
	background-color: var(--white);
	border-radius: 200px;
}

.article_block.next .article_info {
	border-radius: 200px;
}

.article_info_time {
	color: var(--gray);
	font-size: 14px;
}

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

.article_info_title {
	margin-top: 4px;
	color: var(--black);
	font-size: 16px;
	font-weight: 700;
	line-height: 160%;
}

/* arcticle */



/* animation  */

@keyframes rotated_360 {
	0% {
		transform: rotate(0);
	}
	99% {
		transform: rotate(-1800deg);
	}
	100% {
		transform: rotate(0);
	}
}

/* animation  */



@media only screen and (max-width: 1320px) {

/* global */

.global_descr {
	font-size: 14px;
}

.global_tag {
	padding: 8px 12px;
	font-size: 9px;
	font-weight: 600;
	letter-spacing: .5px;
}

.global_bread a,
.global_bread span {
	font-size: 14px;
}

/* global */



/* header */

.header_logo {
	flex-grow: 1;
}

.header_group {
	padding-top: 8px;
	padding-bottom: 8px;
}

.header_nav {
	display: none;
}

.header_bar {
	display: flex;
}

/* header */



/* general */

.general_slider_slide {
	height: auto;
}

/* general */



/* edges */

.edges {
	margin-top: -106px;
}

.edges_icon {
	padding: 8px;
}

.edges_icon img {
	width: 24px;
}

.edges_title {
	font-size: 16px;
}

.edges_descr {
	font-size: 14px;
}

/* edges */



/* catalog */

.catalog_list {
	margin: -20px;
}

.catalog_descr {
	font-size: 12px;
}

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

/* catalog */



/* team */

.team_slider:before {
	width: 200px;
	height: 200px;
	margin-left: -100px;
}

.team_slider_descr {
	padding-top: 4px;
	font-size: 14px;
}

/* team */



/* footer */

.footer_block {
	width: 50%;
	max-width: none;
}

.footer_block:first-child {
	order: 1;

	padding-right: 40px;
}

.footer_block:nth-child(2) {
	order: 3;

	padding-top: 32px;
}

.footer_block:nth-child(3) {
	order: 4;

	padding-top: 32px;
}

.footer_block:last-child {
	order: 2;
}

.footer_phone,
.footer_address,
.footer_metro {
	text-align: left;
}

.footer_socs {
	justify-content: flex-start;
}

/* footer */



/* author */

.author_info_header_right {
	font-size: 14px;
}

/* author */



/* faq */

.faq_info_list_li {
	font-size: 14px;
}

.faq_info_list_li:before {
	top: 9px;
}

/* faq */

}



@media only screen and (max-width: 1080px) {

/* global */

body {
	padding-top: 48px;
}

.bone {
	max-width: 660px;
	padding: 0 20px;
}

.global_header {
	margin-bottom: 20px;
}

.global_title {
	font-size: 27px;
}

.global_subtitle {
	font-size: 14px;
}

.global_tags {
	display: none;
}

.global_select {
	display: block;
}

/* global */



/* headersub */

.headersub {
	top: 48px;
}

/* headersub */



/* edges */

.edges {
	margin-top: 0;
	padding: 20px 0;
}

.edges_group {
	gap: 12px;
}

.edges_block {
	width: 100%;
	padding: 20px 20px 12px;
	background-color: #F2F2F2;
	background-image: none;
}

.edges_header {
	justify-content: flex-start;
	gap: 12px;
}

.edges_icon {
	order: -1;

	padding: 0;
	background-color: transparent;
}

.edges_title {
	padding-top: 1px;
}

.edges_title br,
.edges_descr br {
	display: none;
}

/* edges */



/* catalog */

.catalog {
	padding: 20px 0 40px;
}

.catalog.padding {
	padding-top: 20px;
}

.catalog_h1 {
	font-size: 30px;
}

.catalog_h1 br {
	display: none;
}

.catalog_block {
	width: calc(50% - 40px);
	margin: 20px;
}

.catalog_title {
	font-size: 18px;
}

/* catalog */



/* header */

.header_group {
	padding-top: 12px;
	padding-bottom: 12px;
}

.header_logo img {
	height: 24px;
}

.header_address,
.header_socs,
.header_button {
	display: none;
}

/* header */



/* footer */

.footer_block {
	width: 100%;
	max-width: none;
}

.footer_block {
	order: 0 !important;

	padding-top: 40px;
	padding-right: 0 !important;
}

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

/* footer */



/* online */

.online_group {
	padding-bottom: 40px;
}

.online_info {
	width: 100%;
	margin-bottom: 40px;
	padding: 20px 0;
	text-align: center;
}

.online_info:before {
	left: -300px;
	right: -300px;
}

.online_info:after {
	display: none;
}

.online_title {
	font-size: 27px;
}

.online_button {
	margin: 0 auto;
	padding: 12px 60px;
}

/* online */



/* team */

.team {
	overflow: hidden;

	padding: 40px 0;
}

.team_slider {
	max-width: 240px;
	margin: 0 auto;
}

.team_slider .slick-list {
	overflow: visible;
}

.team_slider_info {
	padding: 12px 0;
}

.team_slider_name {
	font-size: 18px;
}

.team_slider .slick-slide .team_slider_slide_block {
	transform: scale(0.8);
}

.team_slider .slick-current .team_slider_slide_block {
	transform: scale(1);
}

/* team */



/* brand */

.brands_button {
	position: static;

	padding-bottom: 20px;
	text-align: center;

	transform: none;
}

.brands_button .button {
	display: inline-block;
}

.brands_image {
	margin: 0 -20px;
}

.brands_image img {
	transform: scale(1.4);
}

/* brand */



/* contacts */

.contacts {
	padding-top: 20px;
}

.contacts_map {
	align-items: flex-start;

	min-height: 100vh;
}

.contacts_map_info {
	width: 100%;
	max-width: none;
	padding: 20px;
}

.contacts_map_phone a {
	font-size: 18px;
}

.contacts_map_phone:before {
	top: 1px;
}

/* contacts */



/* faq */

.faq {
	padding: 20px 0;
}

.faq_info {
	gap: 0;
}

.faq_info_col {
	width: 100%;
}

.faq_info_title {
	padding: 12px 36px 12px 16px;
	font-size: 18px;
}

.faq_info_block.toggle .faq_info_title:before {
	right: 14px;

	width: 20px;
	height: 20px;
}

.faq_info_list_li:after {
	right: 14px;

	width: 20px;
	height: 20px;
}

/* faq */



/* author */

.author {
	padding-top: 20px;
}

.author_info_header {
	flex-wrap: wrap;
}

.author_info_header_left {
	width: 100%;
	white-space: normal;
}

.author_info_header_right {
	width: 100%;
	padding-top: 20px;
	padding-left: 0;
}

.author_main_info {
	width: 100%;
	padding-top: 40px;
	padding-left: 0;
}

.author_main_image {
	width: 100%;
}

.author_main_title {
	font-size: 18px;
}

.author_main_text p,
.author_main_text_etc p {
	font-size: 14px;
}

/* author */



/* academy */

.academy {
	padding: 40px 0;
}

.academy_row {
	gap: 40px;
}

.academy_col {
	width: 100%;
}

.academy_short_descr {
	font-size: 14px;
}

.academy_label {
	font-size: 18px;
}

.academy_list_li {
	font-size: 14px;
}

/* academy */



/* subservices */

.subservices {
	padding: 20px 0;
}

.subservices_info {
	padding: 0;
	border: 0 none;
	border-radius: 0;
}

.subservices_info.margin {
	margin-top: 0;
}

.subservices_info_texter img:first-child {
	margin-top: 0;
}

.subservices_info_texter p {
	font-size: 14px;
}

.subservices_info_texter h2 {
	font-size: 18px;
}

.subservices_info_texter ul li {
	font-size: 14px;
}

.subservices_info_texter ul li:before {
	top: 2px;
}

.subservices_info_texter i {
	font-size: 9px;
}

/* subservices */



/* article */

.article {
	padding: 20px 0;
}

.article_blocks {
	gap: 20px;
}

.article_block {
	width: 100%;
}

.article_image {
	width: 60px;
	min-height: 120px;
}

.article_info {
	width: calc(100% - 60px);
}

.article_info_time {
	font-size: 14px;
}

.article_info_title {
	font-size: 14px;
}

/* article */

}



@media only screen and (max-width: 600px) {

/* catalog */

.catalog_block {
	width: 100%;
}

/* catalog */

}



































.input,
.textarea {
	display: block;

	width: 100%;
	height: 40px;
	padding: 12px 20px 12px;
	color: var(--black);
	font-size: 17px;
	font-weight: 400;
	font-family: 'Montserrat', sans-serif;
	line-height: 19px;
	background-color: var(--white);
	border: 1px solid #EEE;
	border-radius: 8px;
	box-shadow: 0 4px 20px 0 rgba(0, 0, 0, .04);
	outline: none;

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

	-webkit-appearance: none;
}

.textarea {
	resize: vertical;

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

.input.err {
	border-color: #EE0C0C;
}

.input:hover,
.textarea:hover {
	border-color: rgba(36, 43, 97, .4);
}

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

.error {
	padding-top: 4px;
	font-size: 12px;
}

.error span {
	color: #EE0C0C;
}

.success {
	width: 100%;
	padding: 20px 24px;
	color: var(--white);
	font-size: 16px;
	font-weight: 600;
	text-align: center;
	line-height: 140%;
	border: 1px solid var(--white);
	border-radius: 12px;
}

.input:-moz-placeholder {
	color: #A7AAC0; !important;
	line-height: normal;
}

.input::-webkit-input-placeholder {
	color: #A7AAC0;
	line-height: normal;
}

::-webkit-input-placeholder {
	color: #A7AAC0;
	line-height: normal;
}

:-ms-input-placeholder {
	color: #A7AAC0;
	line-height: normal;
}

::-moz-placeholder {
	color: #A7AAC0;
	line-height: normal;
}

:-moz-placeholder {
	color: #A7AAC0;
	line-height: normal;
}

.contacts_form {
	margin-top: 24px;
}

.contacts_input {
	position: relative;

	margin-bottom: 8px;
}

.contacts_input.star:before {
		content: '';
		position: absolute;
		top: 5px;
		right: 5px;

		width: 6px;
		height: 6px;
		background: url(//uadd.me/images/star.svg) center center no-repeat;
		background-size: 100% auto;
		z-index: 8;
}

.contacts_button {
	margin-top: 16px;
}

/* animation */

.animation_top {
	opacity: 0;

	transition: opacity .33s ease-out, transform .63s ease-out;
	will-change: transform, opacity;

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

.animation_top.animation_active {
	opacity: 1;

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

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

@keyframes levitate-animation {
	0% {
		transform: translate3d(0, 0, 0);
	}
	50% {
		transform: translate3d(20px, -30px, 0) rotate(5deg);
	}
	100% {
		transform: translate3d(0, -50px, 0) rotate(-2deg);
	}
}

/* animation */