/**********/
/* Common */
/* Content */
@import url("icons.css");
@-webkit-keyframes weather_marquee {
	0% {
		-webkit-transform: translate3d(0, 0, 0);
		        transform: translate3d(0, 0, 0);
	}
	100% {
		-webkit-transform: translate3d(-50%, 0, 0);
		        transform: translate3d(-50%, 0, 0);
	}
}
@keyframes weather_marquee {
	0% {
		-webkit-transform: translate3d(0, 0, 0);
		        transform: translate3d(0, 0, 0);
	}
	100% {
		-webkit-transform: translate3d(-50%, 0, 0);
		        transform: translate3d(-50%, 0, 0);
	}
}

html {
	font-size: 62.5%;
	/* Now 10px = 1rem! */
}

body {
	font-family: 'HelveticaNeueCyr', sans-serif;
	font-style: normal;
	font-weight: normal;
	margin: 0;
	background: #FFF;
}

* {
	scrollbar-width: thin;
	scrollbar-color: var(--orange) var(--gray-l);
}

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

::-webkit-scrollbar-track {
	background: var(--gray-l);
}

::-webkit-scrollbar-thumb {
	background-color: var(--orange);
}

:root {
	--black: #1C1C1C;
	--orange: #EB773A;
	--gray: #A4A4A4;
	--gray-l: #EAEAEA;
	--gray-2: #F5F5F5;
	--white-1: #F5F5F5;
}

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

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

*:focus {
	outline: none !important;
}

a, button, label, p, span, select, option, div::before, div::after, input, textarea, *:hover {
	transition: all .2s ease;
}

:focus::-webkit-input-placeholder {
	opacity: 0;
	transition: opacity .4s ease;
}

:focus::-ms-input-placeholder {
	opacity: 0;
	transition: opacity .4s ease;
}

:focus::placeholder {
	opacity: 0;
	transition: opacity .4s ease;
}

.hidden {
	display: none;
}

.visible {
	display: block !important;
}

.transparent {
	opacity: 0;
}

.opaque {
	opacity: 1;
}

img {
	max-width: 100%;
	width: 100%;
	pointer-events: none;
}

a, button, input, label, select, textarea {
	touch-action: manipulation;
}

figure, li {
	margin: 0;
	padding: 0;
}

ol, ul {
	list-style: none;
}

label {
	margin: 0;
}

b, strong {
	font-weight: bolder;
}

sub, sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}

sub {
	bottom: -0.25em;
}

sup {
	top: -0.5em;
}

img {
	border-style: none;
}

button {
	padding: 0;
	border: none;
	cursor: pointer;
	overflow: visible;
}

button:disabled {
	pointer-events: none;
	cursor: not-allowed;
}

button, [type="button"], [type="reset"], [type="submit"] {
	-webkit-appearance: button;
}

button::-moz-focus-inner, [type="button"]::-moz-focus-inner, [type="reset"]::-moz-focus-inner, [type="submit"]::-moz-focus-inner {
	border-style: none;
	padding: 0;
}

[type="number"]::-webkit-inner-spin-button, [type="number"]::-webkit-outer-spin-button {
	height: auto;
}

input[type=text], input[type=email], input[type=password], input[type=search], input[type=tel], input[type=number], input[type=date], input[type=submit], input[type=reset], input[type=file], input[type=button] {
	-webkit-appearance: none;
	appearance: none;
}

button, input, optgroup, select, textarea {
	font-family: inherit;
	font-size: 100%;
	line-height: 100%;
	outline: none;
	border-radius: 0;
}

textarea {
	overflow: auto;
}

body, ul, ol, p, h1, h2, h3, h4, h5, h6, input, button, textarea, select, table {
	padding: 0;
	margin: 0;
	font-weight: normal;
}

table {
	width: 100%;
	border-collapse: collapse;
	border-width: 0;
	border-spacing: 0;
	border-color: transparent;
}

table th {
	font-weight: normal;
	text-align: left;
}

[hidden] {
	display: none;
}

figcaption, figure, main, article, aside, footer, header, nav, section {
	display: block;
}

a {
	background-color: transparent;
	text-decoration: none;
	cursor: pointer;
}

a:hover {
	opacity: 0.85;
	text-decoration: none;
}

a:focus {
	text-decoration: none;
}

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

input::-moz-placeholder {
	opacity: 1;
	color: inherit;
	font-size: inherit;
}

input:-moz-placeholder {
	opacity: 1;
	color: inherit;
	font-size: inherit;
}

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

input::-webkit-outer-spin-button, input::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

input[type='number'] {
	-moz-appearance: textfield;
}

input[type="number"]::-webkit-inner-spin-button, input[type="number"]::-webkit-outer-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

input[name=personalDataAgree], input[name=saveInput] {
	display: none;
}

select {
	-webkit-appearance: none;
	appearance: none;
}

section {
	overflow: hidden;
}

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

.wrapper {
	position: relative;
	min-width: 16.66667vw;
	width: 100%;
	height: 100%;
	max-width: 100%;
	margin: auto;
	font-weight: normal;
	color: var(--black);
}

@media (max-width: 767px) {
	.wrapper {
		max-width: 100%;
	}
}

.container {
	position: relative;
	max-width: 100%;
	padding: 0 1.5rem;
}

@media (max-width: 767px) {
	.container {
		padding: 0 1rem;
	}
}

.title {
	font-size: 2.1vw;
	font-weight: 550;
	line-height: 100%;
	letter-spacing: -1px;
}

@media (max-width: 767px) {
	.title {
		font-size: 7vw;
	}
}

.send-success {
	color: var(--black);
}

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

.color-orange {
	color: var(--orange);
}

.color-gray {
	color: var(--gray);
}

.color-gray-l {
	color: var(--gray-l);
}

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

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

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

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

.button {
	width: 100%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.52083vw;
	text-align: center;
	line-height: 120%;
	text-decoration: none !important;
	border: 0;
	background-color: transparent;
	cursor: pointer;
	letter-spacing: 0;
}

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

.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_rounded {
	min-height: 2.39583vw;
	border: 1px solid transparent;
	border-radius: 0.26042vw;
}

.button_bordered {
	border: 1px solid;
	padding-left: 0.52083vw;
	padding-right: 0.52083vw;
}

.button_bordered > * + i {
	margin-left: auto;
}

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

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

.button_orange:hover {
	color: var(--orange);
	border-color: var(--black);
	background: var(--black);
}

.button_orange:hover i {
	-webkit-filter: grayscale(100%) brightness(900%) contrast(500%);
	        filter: grayscale(100%) brightness(900%) contrast(500%);
}

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

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

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

.button_black.color-orange {
	border-color: var(--orange);
}

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

.button_black.color-gray {
	border-color: var(--gray);
}

.button_black.color-gray:hover {
	color: var(--orange);
	border-color: var(--orange);
	background: none;
}

.button_black.color-gray:hover i {
	-webkit-filter: contrast(0) sepia(100%) hue-rotate(333deg) saturate(410%) brightness(93%);
	        filter: contrast(0) sepia(100%) hue-rotate(333deg) saturate(410%) brightness(93%);
}

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

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

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

.button_white.color-orange:hover i {
	-webkit-filter: grayscale(100%) brightness(0%) contrast(0.9);
	        filter: grayscale(100%) brightness(0%) contrast(0.9);
}

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

.button_white.color-gray:hover i {
	-webkit-filter: grayscale(100%) brightness(0%) contrast(0.9);
	        filter: grayscale(100%) brightness(0%) contrast(0.9);
}

.button_divided {
	overflow: hidden;
	position: relative;
	gap: 0;
	padding: 0;
}

.button_divided:before {
	content: '';
	position: absolute;
	top: -1px;
	bottom: -1px;
	left: 50%;
	border-left: 1px solid;
}

.button_divided .button {
	min-height: 100%;
}

.button.color-orange {
	color: var(--orange);
}

.button.color-white {
	color: white;
}

.button.color-gray {
	color: var(--gray);
}

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

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

.button.color-black:hover i {
	-webkit-filter: grayscale(100%) brightness(900%) contrast(500%);
	        filter: grayscale(100%) brightness(900%) contrast(500%);
}

.form {
	position: relative;
	background: transparent;
	padding: 0;
}

.form__vertical .form__fields {
	grid-template-columns: repeat(1, 1fr);
}

.form__vertical .form__input {
	border: 0.1rem solid var(--black);
	color: var(--black);
}

.form__vertical .form__footer {
	display: flex;
	margin-top: 1.5rem;
}

.form__vertical .form__button {
	background: var(--orange);
	border: 0.2rem solid var(--orange);
	color: var(--black);
}

.form__fields {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	-webkit-column-gap: 1.1vw;
	   -moz-column-gap: 1.1vw;
	        column-gap: 1.1vw;
	row-gap: 1.1vw;
}

.form__input {
	width: 100%;
	height: 3.5vw;
	margin: 0;
	padding: .5vw 1.2vw;
	background: #FFF;
	border: .1rem solid #FFF;
	border-radius: .5rem;
	color: var(--black);
	font-size: 1.3vw;
	line-height: 110%;
	display: flex;
	align-items: center;
}

.form__input::-webkit-input-placeholder {
	opacity: 0.7;
}

.form__input::-ms-input-placeholder {
	opacity: 0.7;
}

.form__input::placeholder {
	opacity: 0.7;
}

.form__input.error {
	border: .1rem solid red !important;
}

.form__input.valid {
	border: .1rem solid green !important;
}

.form__input:hover, .form__input:focus {
	opacity: 1;
}

.form__button {
	width: 100%;
	height: 3.5vw;
	margin: 0;
	padding: .5vw 1.2vw;
	background: var(--black);
	border: 0.2rem solid var(--black);
	border-radius: .5rem;
	color: var(--orange);
	font-size: 1.4vw;
	line-height: 110%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.form__footer {
	display: none;
	position: relative;
}

.form__footer-text {
	color: #000;
	font-size: 1.1vw;
	line-height: 120%;
	padding-left: 3rem;
}

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

.form__footer-checkbox {
	position: absolute;
	left: 0;
	top: 0;
	width: 2rem;
	height: 2rem;
	background: #000;
	border: 1px solid #000;
	border-radius: .5rem;
}

.form__footer-checkbox-icon::before {
	content: "";
	position: absolute;
	height: 1rem;
	width: 1rem;
	background: url(../img/form/check.svg) no-repeat center/cover;
	display: none;
	left: 50%;
	top: 50%;
	-webkit-transform: translate(-50%, -50%);
	        transform: translate(-50%, -50%);
}

.form__footer-checkbox input {
	display: none;
}

.form__footer-checkbox input:checked + .form__footer-checkbox-icon:before {
	display: block;
}

.form label.error {
	display: none !important;
}

.form [type="submit"][disabled] {
	cursor: not-allowed !important;
	opacity: 1;
	background: #ffffffa3;
}

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

/*************/
/* Blocks */
.header {
	position: absolute;
	z-index: 100;
	left: auto;
	right: auto;
	top: 1rem;
	width: 100%;
	opacity: 0;
	-webkit-transform: translate3d(0, -100%, 0);
	        transform: translate3d(0, -100%, 0);
	transition: .2s !important;
}

.header.page-scrolled {
	position: fixed;
	opacity: 1;
	-webkit-transform: translate3d(0, 0, 0);
	        transform: translate3d(0, 0, 0);
}

.header__wrap {
	display: grid;
	grid-template-columns: 1fr 1fr 3fr 1fr 1fr;
	gap: .5vw;
}

.header__wrap-box {
	width: auto;
	height: 3vw;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	background: #FFF;
	border: 0.1rem solid var(--black);
	border-radius: .5rem;
	transition: .2 ease;
}

.header__wrap-box-2 {
	display: none;
}

.header__wrap-box._small_text {
	font-weight: 550;
	font-size: 1.1vw;
	line-height: 100%;
	color: var(--black);
}

.header__wrap-box._small_text:hover {
	background: var(--black);
	color: var(--orange);
	transition: .2s ease-in;
	opacity: 1;
}

.header__wrap-box._big_text {
	font-size: 1.3vw;
	line-height: 100%;
	color: var(--black);
}

.header__wrap-box._orange_block {
	background: var(--orange);
}

.header__wrap-box._orange_block:hover {
	background: var(--black);
	color: var(--orange);
	transition: .2s ease-in;
	opacity: 1;
}

.header__wrap-box._phone_box {
	font-size: 1.15vw;
}

.header__wrap-box._phone_box:hover {
	background: var(--black);
	color: var(--orange);
	transition: .2s ease-in;
	opacity: 1;
}

.header__wrap-box._phone_box svg {
	display: none;
}

.header__wrap-box._social_box {
	position: relative;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
}

.header__wrap-box._social_box::before {
	content: '';
	width: .1vw;
	height: 100%;
	position: absolute;
	left: 50%;
	-webkit-transform: translateX(-50%);
	        transform: translateX(-50%);
	top: 0;
	background: var(--black);
}

.header__wrap-box._social_box a {
	width: 100%;
	height: 3vw;
	display: flex;
	align-items: center;
	justify-content: center;
}

.header__wrap-box._social_box a svg {
	max-width: 1.5vw;
	width: 100%;
	height: 1.5vw;
	margin: auto;
}

.header__wrap-box._social_box a:hover {
	background: var(--black);
	color: var(--orange);
	transition: .2s ease-in;
	opacity: 1;
}

.header__wrap-box._social_box a:hover svg path {
	fill: var(--orange);
}

.header__wrap-box._menu_box {
	cursor: pointer;
}

.header__wrap-box._menu_box:hover {
	background: var(--black);
	color: var(--orange);
	transition: .2s ease-in;
	opacity: 1;
}

.header__wrap-box._menu_box:hover svg path {
	fill: var(--orange);
}

.intro {
	position: relative;
	min-height: 50vw;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.intro-bg {
	position: absolute;
	z-index: -1;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	max-width: 100%;
	width: 100%;
	height: 100%;
}

.intro-bg-2 {
	display: none;
}

.intro__header {
	display: flex;
	justify-content: space-between;
	padding: 0 1vw;
}

.intro__header-logo {
	max-width: 12vw;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--orange);
}

.intro__header-logo img {
	max-width: 8vw;
	width: 100%;
	padding: 1vw;
}

.intro__header-nav {
	max-width: 35%;
	width: 100%;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.4vw;
	padding-top: .5vw;
}

.intro__header-nav ul li {
	padding: .2vw 0;
}

.intro__header-nav ul li a {
	font-size: 1.1vw;
	font-weight: 550;
	line-height: 175%;
	letter-spacing: -0.6px;
	color: #FFF;
}

.intro__header-buttons {
	max-width: 25%;
	width: 100%;
	padding-top: .5vw;
}

.intro__header-buttons_btn {
	width: 100%;
	height: 4vw;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	font-size: 1.3vw;
	line-height: 100%;
	border-radius: .5rem;
}

.intro__header-buttons_btn._orange {
	color: var(--black);
	background: var(--orange);
	border: 0.2rem solid var(--orange);
	margin-bottom: .8vw;
}

.intro__header-buttons_btn._orange:hover {
	background: var(--black);
	color: var(--orange);
	transition: .2s ease-in;
	opacity: 1;
}

.intro__header-buttons_btn._white {
	color: #FFF;
	border: 0.2rem solid rgba(255, 255, 255, 0.5);
}

.intro__header-buttons_btn._white:hover {
	background: #FFF;
	color: var(--black);
	transition: .2s ease-in;
	opacity: 1;
}

.intro__bottom {
	padding-bottom: 2vw;
}

.intro__bottom-title {
	font-weight: 100;
	font-size: 12vw;
	line-height: 95%;
	color: #FFF;
	text-align: center;
	border-top: .3rem solid #FFF;
}

.intro__bottom-wrap {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr;
	padding: 0 1.5vw;
}

.intro__bottom-wrap_card {
	width: 100%;
}

.intro__bottom-wrap_card p {
	color: #FFF;
	font-size: 1.1vw;
	line-height: 100%;
	text-transform: uppercase;
}

.intro__bottom-wrap_card:nth-child(3) p {
	text-align: right;
}

.about {
	padding: 2vw 0;
}

.about__top {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	margin-bottom: 8.5vw;
}

.about__top-title {
	color: var(--orange);
}

.about__top-text {
	color: var(--black);
	font-size: 2.1vw;
	line-height: 100%;
	letter-spacing: -1px;
}

.about__top-text span {
	color: var(--orange);
}

.about__title {
	display: grid;
	grid-template-columns: 3fr 1fr;
	gap: 1vw;
	margin-bottom: 1vw;
}

.about__title h3, .about__title p {
	font-size: 1.1vw;
	line-height: 100%;
	color: var(--black);
}

.about__title p {
	text-align: center;
}

.about__swiper-card {
	height: 100%;
	display: flex;
	justify-content: space-between;
}

.about__swiper-card img {
	max-width: 49.5%;
	width: 100%;
	-o-object-fit: cover;
	   object-fit: cover;
}

.about__swiper-card__box {
	max-width: 49.5%;
	width: 100%;
	background: var(--gray-l);
	padding: 1vw;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.about__swiper-card__box div {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.about__swiper-card__box div h4 {
	color: var(--orange);
	font-size: 1.5vw;
	line-height: 100%;
	letter-spacing: -0.9px;
}

.about__swiper-card__box div h3 {
	color: var(--black);
	font-size: 1.5vw;
	line-height: 100%;
	letter-spacing: -0.9px;
}

.about__swiper-card__box p {
	color: var(--black);
	font-size: 1.1vw;
	line-height: 100%;
	letter-spacing: -0.6px;
}

.about__swiper-card__wide img {
	max-width: 100%;
}

.about .swiper-nav {
	height: 2vw;
	top: -6.5%;
}

.about .swiper-nav .swiper-pagination-fraction {
	display: none;
}

.advantages {
	padding: 2vw 0;
	background: var(--black);
}

.advantages__top {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	margin-bottom: 8.5vw;
}

.advantages__top-title {
	color: var(--orange);
}

.advantages__top-text {
	color: #FFF;
	font-size: 1.1vw;
	line-height: 100%;
	letter-spacing: -0.6px;
}

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

.advantages__box-card {
	position: relative;
	width: 100%;
	height: 22.5vw;
	border-radius: 1rem;
	border: .1rem solid #A4A4A4;
	padding: 1vw;
	overflow: hidden;
}

.advantages__box-card img {
	position: absolute;
	max-width: 21vw;
	width: 100%;
	top: .8vw;
	left: 50%;
	-webkit-transform: translateX(-50%);
	        transform: translateX(-50%);
}

.advantages__box-card h3 {
	color: #FFF;
	font-size: 2vw;
	line-height: 100%;
	letter-spacing: -1px;
}

.advantages__box-card h4 {
	position: absolute;
	z-index: 10;
	bottom: 1vw;
	right: 1vw;
	color: #FFF;
	font-size: 2.1vw;
	line-height: 100%;
	letter-spacing: -1px;
}

.advantages__box-card div {
	position: absolute;
	z-index: 5;
	right: -10vw;
	top: 0;
	bottom: 0;
	max-width: 50%;
	width: 100%;
	background: var(--orange);
	padding: 1.5vw;
	display: flex;
	align-items: flex-end;
	opacity: 0;
	transition: 0.2s ease-out;
}

.advantages__box-card div p {
	color: #FFF;
	text-align: right;
	font-size: 1.6vw;
	font-weight: 550;
	line-height: 110%;
	letter-spacing: -0.9px;
}

.advantages__box-card:hover h4 {
	top: 1vw;
	bottom: unset;
}

.advantages__box-card:hover div {
	opacity: 1;
	right: 0;
	transition: 0.2s ease-out;
}

.projects {
	padding: 0 0 1vw;
	background: #FFF;
}

.projects .background-top__bg {
	margin-bottom: 0;
}

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

.projects__maps-map {
	position: relative;
	z-index: 10;
	max-width: 75%;
	width: 100%;
	background: #EAEAEA;
	margin-bottom: 1vw;
}

.projects__maps-map img {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
}

.projects__maps-map h3 {
	position: absolute;
	z-index: 5;
	bottom: 1vw;
	left: 1vw;
	color: var(--orange);
	font-size: 2vw;
	font-weight: 550;
	line-height: normal;
	letter-spacing: -.1rem;
}

.projects__maps__box {
	max-width: 25%;
	width: 100%;
	padding: 3.5vw 1vw 1vw;
	overflow: hidden;
}

.projects__maps__box-swiper {
	margin-bottom: 1.5vw;
}

.projects__maps__box-card h3 {
	color: var(--black);
	font-size: 1.5vw;
	font-weight: 550;
	line-height: normal;
	letter-spacing: -0.9px;
	margin: 1vw 0;
}

.projects__maps__box-card p {
	color: var(--black);
	font-size: 1vw;
	line-height: normal;
	letter-spacing: -0.6px;
}

.projects__maps__box .swiper-nav {
	max-width: 100%;
	height: 2vw;
	top: -7%;
}

.projects__maps__box-phone {
	display: flex;
	flex-direction: column;
	margin-bottom: 1.5vw;
}

.projects__maps__box-phone a, .projects__maps__box-phone span {
	color: var(--black);
	font-size: 1vw;
	line-height: normal;
	letter-spacing: -0.6px;
}

.projects__maps__box-phone a {
	-webkit-text-decoration-line: underline;
	        text-decoration-line: underline;
	margin-bottom: .5vw;
}

.projects__maps__box-btn {
	width: 100%;
	height: 4vw;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #A4A4A4;
	font-size: 1.2vw;
	font-weight: 550;
	line-height: normal;
	border: .1rem solid #A4A4A4;
	border-radius: .5rem;
	cursor: pointer;
}

.projects__maps__box-btn:hover {
	background: var(--black);
	color: var(--orange);
	transition: .2s ease-in;
	opacity: 1;
}

.projects__box {
	height: 22vw;
	display: grid;
	grid-template-columns: 1fr 3.5fr;
	gap: 1.5vw;
	background: var(--orange);
	padding: 1vw;
	border-radius: 1rem;
}

.projects__box-title h3 {
	color: #FFF;
	font-size: 1.5vw;
	font-weight: 550;
	line-height: normal;
	letter-spacing: -0.9px;
}

.projects__box-block {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.projects__box-block-title {
	color: var(--black);
	font-size: 1.5vw;
	font-weight: 550;
	line-height: normal;
	letter-spacing: -0.9px;
}

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

.projects__box__grid-card-option {
	display: flex;
	justify-content: space-between;
	align-items: end;
	gap: 1vw;
	border-bottom: 0.1rem solid var(--black);
	padding: .5vw 0;
}

.projects__box__grid-card-option:nth-child(1) {
	border-top: 0.1rem solid var(--black);
}

.projects__box__grid-card-option-icon {
	width: 1.4vw;
	height: 1.4vw;
	flex: 0 0 auto;
	background: black;
	border-radius: 50%;
	font-size: 1vw;
	display: flex;
	align-items: center;
	justify-content: center;
}

.projects__box__grid-card-option-title {
	font-size: 1.1vw;
	line-height: 100%;
	letter-spacing: -0.6px;
}

.landmarks__map {
	min-height: 44.375vw;
	height: 100%;
	position: relative;
	z-index: 3;
}

.landmarks__map-marker {
	width: calc(57 * 1px);
	height: calc(82 * 1px);
	-webkit-transform: translate3d(0, -100%, 0);
	        transform: translate3d(0, -100%, 0);
	position: relative;
	z-index: 2;
	align-items: flex-start;
	line-height: 1;
	font-size: calc(16 * 1px);
	background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='39' height='55' fill='none' viewBox='0 0 39 55'%3e%3cpath fill='%23EB773A' stroke='%23000000' stroke-opacity='0.1' d='M19.02 0A18.953 18.953 0 0 0 5.57 5.61 19.222 19.222 0 0 0 0 19.154c0 14.365 19.02 35.57 19.02 35.57s19.02-21.205 19.02-35.57c0-5.08-2.004-9.952-5.57-13.544A18.953 18.953 0 0 0 19.02 0Z'/%3e%3c/svg%3e") no-repeat 0 0/100% 100%;
	padding-top: calc(20 * 1px);
	transition: 0.2s;
}

.landmarks__map-marker:before {
	content: '';
	width: calc(21 * 1px);
	height: calc(21 * 1px);
	position: absolute;
	top: calc(18 * 1px);
	left: 0;
	right: 0;
	z-index: -1;
	border-radius: 50%;
	background: white;
	margin: 0 auto;
	transition: 0.2s;
}

.landmarks__map-marker_active {
	color: white;
}

.landmarks__map-marker_active:before {
	width: calc(31 * 1px);
	height: calc(31 * 1px);
	top: calc(13 * 1px);
	background: var(--black);
}

.landmarks__map .ymaps3x0--main-engine-container {
	-webkit-filter: grayscale(100%) contrast(100%) brightness(103%);
	        filter: grayscale(100%) contrast(100%) brightness(103%);
}

.franshisa {
	padding: 0;
	background: #F5F5F5;
}

.franshisa__top {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	margin-bottom: 8.5vw;
}

.franshisa__top-title {
	color: var(--orange);
}

.franshisa__top-text {
	font-size: 1.1vw;
	line-height: 100%;
	letter-spacing: -0.6px;
}

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

.franshisa__box-card {
	position: relative;
	width: 100%;
	height: 22.5vw;
	border-radius: 1rem;
	background: #FFF;
	border: .1rem solid #FFF;
	padding: 1vw;
	display: flex;
	align-items: center;
	justify-content: center;
}

.franshisa__box-card h3 {
	font-size: 2vw;
	line-height: 100%;
	letter-spacing: -1px;
}

.franshisa__box-card h4 {
	position: absolute;
	z-index: 10;
	top: 1vw;
	left: 1vw;
	color: var(--orange);
	font-weight: 550;
	font-size: 2vw;
	line-height: 100%;
	letter-spacing: -1px;
}

.franshisa__box-card-btn {
	width: 1.5vw;
	height: 1.5vw;
	position: absolute;
	bottom: 1vw;
	right: 1vw;
	background: #F5F5F5;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: .2s;
}

.franshisa__box-card-btn svg {
	transition: .2s;
}

.franshisa__box-card-btn svg path {
	fill: var(--black);
}

.franshisa__card_opened .franshisa__box-card-btn {
	background: var(--orange);
	transition: .2s;
}

.franshisa__card_opened .franshisa__box-card-btn svg {
	-webkit-transform: rotate(180deg);
	        transform: rotate(180deg);
	transition: .2s;
}

.franshisa__card {
	max-height: 0;
	overflow: hidden;
	opacity: 0;
	transition: 0.2s ease-out;
}

.franshisa__card_opened .franshisa__card {
	max-height: 57.86458vw;
	overflow: visible;
	opacity: 1;
	overflow: hidden;
	transition: 0.6s ease-in;
}

.franshisa__card-option {
	display: flex;
	justify-content: space-between;
	align-items: end;
	gap: 1vw;
	border-bottom: .1rem solid #A4A4A4;
	padding: .5vw 0;
}

.franshisa__card-option-icon {
	width: 1.4vw;
	height: 1.4vw;
	flex: 0 0 auto;
	background: black;
	border-radius: 50%;
	font-size: 1vw;
	display: flex;
	align-items: center;
	justify-content: center;
}

.franshisa__card-option-title {
	font-size: 1.1vw;
	line-height: 100%;
	letter-spacing: -0.6px;
}

.franshisa__maps {
	position: relative;
	min-height: 22.4vw;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	margin-top: 2vw;
}

.franshisa__maps-img {
	position: absolute;
	z-index: 0;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	max-width: 100%;
	width: 100%;
	height: 100%;
}

.franshisa__maps-img-2 {
	display: none;
}

.franshisa__maps-top {
	position: relative;
	display: flex;
	align-items: center;
	padding: 1vw;
}

.franshisa__maps-top h4 {
	color: #FFF;
	font-size: 1.1vw;
	line-height: 100%;
	text-transform: uppercase;
}

.franshisa__maps-top img {
	max-width: 2vw;
	width: 100%;
	margin: 0 0 0 auto;
}

.franshisa__maps-bottom {
	position: relative;
	display: grid;
	grid-template-columns: 2fr 1fr 1fr;
	padding: 1vw;
	gap: 1vw;
}

.franshisa__maps-bottom h3 {
	color: #FFF;
	font-size: 2.1vw;
	line-height: 100%;
}

.franshisa__maps-bottom h3 span {
	color: var(--orange);
}

.franshisa__maps-bottom p {
	display: flex;
	align-items: flex-end;
	color: #FFF;
	font-size: 1.1vw;
	line-height: 100%;
	text-transform: uppercase;
	letter-spacing: -0.6px;
}

.franshisa__maps-bottom p:nth-last-child(1) {
	display: none;
}

.invest {
	padding: 0 0 2vw;
	background: var(--black);
}

.invest__top {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	margin-bottom: 5.5vw;
}

.invest__top-title {
	color: var(--orange);
}

.invest__top-title-last {
	color: #FFF;
}

.invest__top-title-last span {
	color: var(--orange);
}

.invest__top-text {
	font-size: 1.1vw;
	line-height: 100%;
	letter-spacing: -0.6px;
	color: #FFF;
}

.invest__top-text span {
	color: var(--orange);
}

.invest__wrapBox {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: .5vw;
	margin-bottom: 10vw;
}

.invest__wrapBox-card {
	position: relative;
	max-width: 49.7%;
	width: 100%;
	height: 22vw;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	border: .1rem solid #606060;
	background: transparent;
	padding: 1vw;
	transition: 0.2s ease-out;
	border-radius: 1rem;
	overflow: hidden;
}

.invest__wrapBox-card:nth-last-child(1) {
	max-width: 100%;
}

.invest__wrapBox-card h4 {
	position: relative;
	font-size: 1.5vw;
	line-height: 100%;
	letter-spacing: -0.9px;
	color: var(--orange);
}

.invest__wrapBox-card h4 br {
	display: none;
}

.invest__wrapBox-card h3 {
	position: relative;
	font-size: 2.1vw;
	line-height: 100%;
	letter-spacing: -1px;
	color: #FFF;
}

.invest__wrapBox-card h3 span {
	color: var(--orange);
}

.invest__wrapBox-card:hover {
	transition: 0.2s ease-out;
	background: #EAEAEA;
	border: .1rem solid #EAEAEA;
}

.invest__wrapBox-card:hover h3 {
	color: var(--black);
}

.invest__wrapBox-img {
	position: absolute;
	top: 0;
	bottom: 0;
	right: -15vw;
	width: 100%;
	height: 100%;
}

.invest__wrapBox-img-2 {
	display: none;
}

.invest__listBox {
	display: flex;
	flex-direction: column;
}

.invest__listBox.swiper {
	display: none;
}

.invest__listBox-card {
	position: relative;
	width: 100%;
	display: flex;
	justify-content: space-between;
	margin-top: 1.5vw;
	padding: 1vw 0;
	border-top: .1rem solid #606060;
}

.invest__listBox-card:nth-last-child(1) {
	border-bottom: .1rem solid #606060;
	margin-bottom: 1vw;
}

.invest__listBox-card-title {
	position: absolute;
	top: 1vw;
	left: 0;
	font-size: 1.5vw;
	line-height: 100%;
	letter-spacing: -0.9px;
	color: #FFF;
}

.invest__listBox-card-title br {
	display: none;
}

.invest__listBox-card__box {
	max-width: 50%;
	width: 100%;
	padding-top: 4vw;
}

.invest__listBox-card__box ul {
	width: 100%;
}

.invest__listBox-card__box ul li {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	-webkit-column-gap: 1vw;
	   -moz-column-gap: 1vw;
	        column-gap: 1vw;
	margin-bottom: .5vw;
}

.invest__listBox-card__box ul li h3 {
	color: #A4A4A4;
	font-size: 1.1vw;
	line-height: 100%;
	letter-spacing: -0.6px;
}

.invest__listBox-card__box ul li h4 {
	color: #FFF;
	font-size: 1.1vw;
	line-height: 100%;
	letter-spacing: -0.6px;
}

.invest__listBox-card__box ul li h4 span {
	color: var(--orange);
}

.invest__listBox-card-img {
	max-width: 25%;
	width: 100%;
}

.invest__listBox-card-btn {
	max-width: 25%;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #A4A4A4;
	text-align: center;
	font-size: 1.3vw;
	line-height: 100%;
}

.invest__listBox-card-btn:not([href]) {
	color: #A4A4A4;
	cursor: default;
}

.invest__listBox-card-btn[href]:hover {
	color: var(--orange);
}

.invest__toggleBox {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1vw;
	margin-bottom: 12vw;
}

.invest__toggleBox-card {
	position: relative;
	width: 100%;
	height: 19vw;
	border-radius: 1rem;
	background: transparent;
	border: .1rem solid #606060;
	padding: 1vw;
	display: flex;
	align-items: center;
	justify-content: center;
}

.invest__toggleBox-card h3 {
	position: absolute;
	z-index: 10;
	top: 2vw;
	left: 2vw;
	color: #A4A4A4;
	font-size: 2.1vw;
	line-height: 100%;
}

.invest__card_opened .invest__toggleBox-card {
	background: var(--orange);
}

.invest__card_opened .invest__toggleBox-card h3 {
	color: var(--black);
}

.invest__toggleBox-card-btn {
	width: 1.5vw;
	height: 1.5vw;
	position: absolute;
	bottom: 1vw;
	right: 1vw;
	background: var(--orange);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: .2s;
}

.invest__toggleBox-card-btn svg {
	transition: .2s;
}

.invest__toggleBox-card-btn svg path {
	fill: var(--black);
}

.invest__card_opened .invest__toggleBox-card-btn {
	background: var(--black);
	transition: .2s;
}

.invest__card_opened .invest__toggleBox-card-btn svg {
	-webkit-transform: rotate(180deg);
	        transform: rotate(180deg);
	transition: .2s;
}

.invest__card_opened .invest__toggleBox-card-btn svg path {
	fill: var(--orange);
}

.invest__card {
	max-height: 0;
	overflow: hidden;
	opacity: 0;
	transition: 0.2s ease-out;
	margin-top: 1vw;
}

.invest__card_opened .invest__card {
	max-height: 57.86458vw;
	overflow: visible;
	opacity: 1;
	overflow: hidden;
	transition: 0.6s ease-in;
}

.invest__card-option {
	display: flex;
	justify-content: space-between;
	align-items: end;
	gap: 1vw;
	border-bottom: .1rem solid #A4A4A4;
	padding: 1vw 0;
}

.invest__card-option-title {
	font-size: 1.1vw;
	line-height: 100%;
	letter-spacing: -0.6px;
	color: #FFF;
}

.invest__card-option__box h3 {
	font-size: 1.1vw;
	line-height: 100%;
	letter-spacing: -0.6px;
	color: var(--orange);
	margin-top: 1vw;
}

.invest__card-option__box ul {
	border-bottom: .1rem solid #A4A4A4;
	padding: 1vw 0;
}

.invest__card-option__box ul li {
	display: flex;
	justify-content: space-between;
	padding: .5vw 0;
}

.invest__card-option__box ul li h4 {
	max-width: 49%;
	width: 100%;
	font-size: 1.1vw;
	line-height: 100%;
	letter-spacing: -0.6px;
	color: #FFF;
}

.invest__card-option__box ul li p {
	max-width: 49%;
	width: 100%;
	font-size: 1.1vw;
	line-height: 100%;
	letter-spacing: -0.6px;
	color: #FFF;
}

.consalting {
	padding: 0;
	background: #F5F5F5;
	overflow: hidden;
}

.consalting__top {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	margin-top: 10vw;
	margin-bottom: 3.5vw;
}

.consalting__top-box {
	display: grid;
	grid-template-columns: 1fr 1.5fr;
	gap: 1vw;
}

.consalting__top-btn {
	width: 100%;
	height: 3.5vw;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 0.1rem solid var(--black);
	font-size: 1.1vw;
	line-height: 100%;
	letter-spacing: -0.6px;
	color: var(--orange);
}

.consalting__top-btn:hover {
	background: var(--black);
	color: var(--orange);
	transition: .2s ease-in;
	opacity: 1;
}

.consalting__top-title {
	color: var(--orange);
}

.consalting__top-text {
	font-size: 1.1vw;
	line-height: 100%;
	letter-spacing: -0.6px;
}

.consalting__box {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1vw;
	margin-bottom: 5vw;
}

.consalting__box-card {
	position: relative;
	width: 100%;
	height: 22.5vw;
	border-radius: 1rem;
	border: .1rem solid #FFF;
	background: #FFF;
	padding: 1vw;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	overflow: hidden;
}

.consalting__box-card img {
	position: absolute;
	max-width: 21vw;
	width: 100%;
	top: .8vw;
	left: 50%;
	-webkit-transform: translateX(-50%);
	        transform: translateX(-50%);
}

.consalting__box-card h3 {
	font-size: 1.5vw;
	line-height: 100%;
	letter-spacing: -1px;
}

.consalting__box-card h4 {
	position: absolute;
	z-index: 10;
	bottom: 1vw;
	right: 1vw;
	font-size: 1.5vw;
	line-height: 100%;
	letter-spacing: -1px;
}

.consalting__box-card__box {
	position: absolute;
	z-index: 5;
	right: -10vw;
	top: 0;
	bottom: 0;
	max-width: 60%;
	width: 100%;
	background: #FFF;
	padding: 1vw;
	opacity: 0;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	transition: 0.2s ease-out;
}

.consalting__box-card__box p {
	font-size: 1vw;
	line-height: 110%;
	letter-spacing: -0.5px;
}

.consalting__box-card__box-btn {
	width: 100%;
	height: 3vw;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.2vw;
	line-height: 110%;
	letter-spacing: -0.5px;
	border-radius: 1rem;
}

.consalting__box-card__box-btn-1 {
	color: #A4A4A4;
	border: .1rem solid #A4A4A4;
}

.consalting__box-card__box-btn-2 {
	color: var(--orange);
	border: 0.1rem solid var(--orange);
	margin-top: .5vw;
}

.consalting__box-card:hover h4 {
	display: none;
}

.consalting__box-card:hover .consalting__box-card__box {
	opacity: 1;
	right: 0;
	transition: 0.2s ease-out;
}

.consalting-title {
	margin-bottom: 1vw;
}

.consalting__swiper {
	margin-bottom: 1.5vw;
}

.consalting__swiper-card {
	height: 17vw;
	padding: 1vw;
	border: .1rem solid #606060;
	border-radius: 1rem;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.consalting__swiper-card h4 {
	font-size: 1.5vw;
	line-height: 100%;
	letter-spacing: -0.9px;
}

.consalting__swiper-card h3 {
	font-size: 1.5vw;
	line-height: 100%;
	letter-spacing: -0.9px;
}

.swiper-slide-active .consalting__swiper-card {
	background: var(--orange);
	border: 0.1rem solid var(--orange);
	transition: .2s ease-in;
}

.swiper-slide-active .consalting__swiper-card h4 {
	color: #FFF;
}

.consalting__maps {
	position: relative;
	min-height: 22.4vw;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	margin-top: 2vw;
}

.consalting__maps-img {
	position: absolute;
	z-index: 0;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	max-width: 100%;
	width: 100%;
	height: 100%;
}

.consalting__maps-img-2 {
	display: none;
}

.consalting__maps-top {
	position: relative;
	display: grid;
	grid-template-columns: 2fr 1fr 1fr;
	padding: 1vw;
	gap: 1vw;
}

.consalting__maps-top h4 {
	color: #FFF;
	font-size: 1.1vw;
	line-height: 100%;
	text-transform: uppercase;
}

.consalting__maps-top h4:nth-child(2) {
	color: #A4A4A4;
}

.consalting__maps-top img {
	max-width: 2vw;
	width: 100%;
	margin: 0 0 0 auto;
}

.consalting__maps-bottom {
	position: relative;
	display: grid;
	grid-template-columns: 2fr 1fr 1fr;
	padding: 1vw;
	gap: 1vw;
}

.consalting__maps-bottom h3 {
	color: #FFF;
	font-size: 2.1vw;
	line-height: 100%;
}

.consalting__maps-bottom h3 span {
	color: var(--orange);
}

.consalting__maps-bottom p {
	display: flex;
	align-items: flex-end;
	color: #FFF;
	font-size: 1.1vw;
	line-height: 100%;
	text-transform: uppercase;
	letter-spacing: -0.6px;
}

.consalting__maps-bottom p:nth-last-child(1) {
	display: none;
}

.partners {
	background: var(--orange);
	padding-bottom: 3vw;
}

.partners__video {
	position: relative;
	width: 100%;
	height: 46.5vw;
}

.partners__video-logo {
	position: absolute;
	z-index: 15;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	        transform: translate(-50%, -50%);
	max-width: 60vw;
	width: 100%;
}

.partners__video video {
	position: relative;
	z-index: 10;
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	   object-fit: cover;
}

.partners__video-bg {
	position: absolute;
	z-index: 0;
	width: 100%;
	height: 100%;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
}

.partners__video-bg-2 {
	display: none;
}

.partners__top {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	margin-top: 1vw;
	margin-bottom: 3.5vw;
}

.partners__top-title {
	color: #FFF;
}

.partners__top-text {
	font-size: 2vw;
	line-height: 100%;
	letter-spacing: -1px;
	margin-bottom: 1.5vw;
}

.partners__top-text span {
	color: #FFF;
}

.partners__bottom {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	margin-bottom: 1vw;
}

.partners__bottom-text {
	display: flex;
	align-items: flex-end;
	font-size: 1vw;
	line-height: 100%;
	letter-spacing: -0.6px;
}

.partners__swiper-card h3 {
	font-size: 1vw;
	line-height: 100%;
	letter-spacing: -0.6px;
	margin-top: .6vw;
}

.partners__swiper-card-link {
	position: relative;
	height: 100%;
	display: flex;
	cursor: pointer;
}

.partners__swiper-card-link:hover img {
	opacity: 0;
}

.partners__swiper-card-link:hover div {
	opacity: 1;
}

.partners__swiper-card-button {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
	transition: 0.2s;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.25vw;
	border: .1rem solid;
	color: #FFF;
	border-radius: 1rem;
}

.partners__swiper-card img {
	min-height: 100%;
	-o-object-fit: cover;
	   object-fit: cover;
	opacity: 1;
	transition: 0.2s;
}

.partners .swiper-nav {
	top: -15%;
}

.partners .swiper-nav svg path {
	fill: var(--black);
}

.experience {
	color: white;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-template-rows: auto 1fr auto;
	gap: 0 0.78125vw;
	background: var(--black);
	padding-top: 4.32292vw;
	padding-bottom: 2.08333vw;
}

.experience__title {
	margin-bottom: 1.45833vw;
}

.experience__items {
	grid-column: 2;
	grid-row: 1 / 3;
	border-top: 1px solid #A4A4A4;
}

.experience__item {
	display: flex;
	align-items: center;
	gap: 0.78125vw;
	font-size: 1.04167vw;
	line-height: 1;
	letter-spacing: -0.03em;
	border-bottom: 1px solid #A4A4A4;
	padding: 0.46875vw 0;
}

.experience__item-text {
	max-width: 41.66667vw;
}

.experience__item-icon {
	width: 1.35417vw;
	height: 1.35417vw;
	font-size: 1.35417vw;
	border-radius: 50%;
	background: var(--orange);
	margin: 0 0.78125vw 0 auto;
}

.experience__button {
	grid-row: 2;
	width: 24.01042vw;
	height: 3.125vw;
	display: flex;
	justify-content: center;
	align-items: center;
	color: var(--black);
	font-size: 1.25vw;
	font-weight: 500;
	border-radius: 0.26042vw;
	background: var(--orange);
	cursor: pointer;
	transition: 0.2s;
}

.experience__button:hover {
	background: white;
}

.experience__gallery {
	grid-column: span 2;
	font-size: 1.04167vw;
	letter-spacing: -0.03em;
	line-height: 1;
	margin-top: 8.48958vw;
}

.experience__gallery-header {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	align-items: end;
	margin-bottom: 1.45833vw;
}

.experience__gallery-text {
	grid-column: 4;
	text-align: center;
	font-size: 1.04167vw;
	letter-spacing: -0.03em;
}

.experience__gallery-cards {
	margin: 0 -0.39063vw 0 0;
}

.experience__gallery .swiper-pagination {
	display: none;
}

.experience__gallery .swiper-nav {
	top: -2.60417vw;
}

.experience__gallery-card {
	position: relative;
	margin: 0 0.39063vw;
}

.experience__gallery-card-num {
	position: absolute;
	top: 0.67708vw;
	left: 0.67708vw;
	color: var(--orange);
}

.experience__gallery-card-image {
	border: 1px solid #A4A4A4;
	border-radius: 0.26042vw;
	padding: 1.04167vw 1.77083vw;
	margin-bottom: 0.9375vw;
}

.experience__gallery-card-img {
	border-radius: 50%;
}

.experience__gallery-card-title {
	max-width: 17.1875vw;
}

.bottom {
	background: #FFF;
	padding: 6vw 0;
}

.bottom-title {
	color: var(--orange);
	margin-bottom: 5vw;
}

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

.bottom__wrap-card {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1vw;
	padding: 1vw 0;
	border-top: .1rem solid #A4A4A4;
}

.bottom__wrap-card:nth-last-child(1) {
	border-bottom: .1rem solid #A4A4A4;
}

.bottom__wrap-card h3, .bottom__wrap-card p, .bottom__wrap-card a {
	font-size: 1.1vw;
	line-height: 100%;
	letter-spacing: -0.6px;
}

.bottom__wrap-card h3 {
	color: #A4A4A4;
}

.bottom__wrap-card a {
	color: var(--black);
	-webkit-text-decoration-line: underline;
	        text-decoration-line: underline;
}

.bottom__wrap-card div {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1vw;
}

.bottom__wrap-card-social a {
	position: relative;
	padding-left: 1.7vw;
}

.bottom__wrap-card-social a::before {
	content: '';
	position: absolute;
	left: 0;
	top: -.2rem;
	width: 1.4vw;
	height: 1.4vw;
}

.bottom__wrap-card-social a:nth-child(1)::before {
	background: url(../img/common/vk.svg) no-repeat center/100%;
}

.bottom__wrap-card-social a:nth-child(2)::before {
	background: url(../img/common/tg.svg) no-repeat center/100%;
}

.footer {
	background: var(--black);
	padding: 1vw 0;
}

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

.footer__top-logo {
	max-width: 12vw;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: transparent;
	border-radius: .5rem;
	border: 0.1rem solid var(--orange);
}

.footer__top-logo img {
	max-width: 8vw;
	width: 100%;
	padding: 1vw;
}

.footer__top-nav {
	max-width: 35%;
	width: 100%;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.4vw;
}

.footer__top-nav ul li {
	padding: .2vw 0;
}

.footer__top-nav ul li a {
	font-size: 1.1vw;
	font-weight: 550;
	line-height: 175%;
	letter-spacing: -0.6px;
	color: #FFF;
}

.footer__top-buttons {
	max-width: 25%;
	width: 100%;
}

.footer__top-buttons_btn {
	width: 100%;
	height: 4vw;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.3vw;
	line-height: 100%;
	border-radius: .5rem;
}

.footer__top-buttons_btn._orange {
	color: var(--orange);
	background: transparent;
	border: 0.2rem solid var(--orange);
	margin-bottom: .8vw;
}

.footer__top-buttons_btn._white {
	color: #FFF;
	border: 0.2rem solid rgba(255, 255, 255, 0.5);
}

.footer__top-buttons_btn:hover {
	background: #FFF;
	color: var(--black);
	transition: .2s ease-in;
	opacity: 1;
}

.footer__bottom {
	margin-top: 10vw;
	display: grid;
	grid-template-columns: 2fr 2fr 2fr 1fr 2fr;
	gap: 1vw;
}

.footer__bottom-text {
	display: flex;
	align-items: flex-end;
	color: #A4A4A4;
	font-size: .7vw;
	line-height: 110%;
}

.footer__bottom-text span {
	padding: 0 2vw;
}

.footer__bottom-text:nth-last-child(1) {
	justify-content: flex-end;
	text-align: right;
}

.footer__bottom a {
	color: #A4A4A4;
	text-decoration: underline;
}

.weather_inline {
	overflow: hidden;
	background: var(--orange);
}

.weather_inline .weather__content {
	width: 100vw;
	-webkit-animation: weather_marquee 33s linear infinite forwards;
	        animation: weather_marquee 33s linear infinite forwards;
	display: flex;
	white-space: nowrap;
	padding: 1vw 0;
}

.weather_inline .weather__content:hover {
	-webkit-animation-play-state: paused;
	        animation-play-state: paused;
}

.weather_inline .weather__items {
	display: flex;
}

.weather_inline .weather__item {
	flex: 0 1 0;
	display: grid;
	grid-template-columns: auto auto;
	justify-content: space-between;
	gap: 1vw 0;
	color: white;
	line-height: 1;
	border-right: 1px solid;
	padding: 0 1vw;
}

.weather_inline .weather__item-title {
	grid-column: 1;
	flex: 0 0 0;
	font-size: 1vw;
	margin-top: -1px;
}

.weather_inline .weather__item-value {
	grid-column: span 2;
	display: flex;
	align-items: baseline;
	gap: 1vw;
	order: 3;
	flex: 0 0 100%;
	font-size: 6.2vw;
	font-weight: 300;
	margin-bottom: -0.10417vw;
}

.weather_inline .weather__item-value-full {
	display: none;
}

.weather_inline .weather__item-icon {
	order: -1;
	font-size: 3.4vw;
	-webkit-transform: translate3d(0, -0.15625vw, 0);
	        transform: translate3d(0, -0.15625vw, 0);
	-webkit-filter: grayscale(100%) brightness(0%) contrast(0.9);
	        filter: grayscale(100%) brightness(0%) contrast(0.9);
}

.weather_inline .weather__item-note {
	grid-column: 2;
	text-align: right;
	color: var(--black);
	font-size: 1.2vw;
	margin-top: -1px;
}

.weather_inline .weather__item-note:first-letter {
	text-transform: uppercase;
}

.weather_inline .weather__item_2 .weather__item-value {
	color: var(--black);
}

.form_block {
	background: var(--orange);
	padding: 2.2vw 0;
}

.background-top__bg {
	position: relative;
	min-height: 50vw;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	margin-bottom: 2vw;
}

.background-top__bg-img {
	position: absolute;
	z-index: 0;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	max-width: 100%;
	width: 100%;
	height: 100%;
}

.background-top__bg-img-2 {
	display: none;
}

.background-top__bg-box {
	position: relative;
	z-index: 1;
	overflow: hidden;
	border-top: .3rem solid #FFF;
}

.background-top__bg-title {
	width: 100%;
	-webkit-animation: weather_marquee 40s linear infinite;
	        animation: weather_marquee 40s linear infinite;
	display: flex;
	white-space: nowrap;
	padding: 0;
}

.background-top__bg-title div {
	display: flex;
	align-items: center;
	margin-right: 10vw;
}

.background-top__bg-title h2 {
	font-weight: 100;
	font-size: 12vw;
	line-height: 95%;
	color: #FFF;
	text-transform: uppercase;
	margin-right: 6vw;
}

.background-top__bg-title img {
	max-width: 5vw;
	width: 100%;
}

.swiper {
	overflow: visible;
}

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

.swiper-slide {
	height: auto;
}

.swiper-pagination-fraction {
	width: auto;
	bottom: auto;
	left: 1vw;
	right: 1vw;
	font-size: 1vw;
	color: #000;
}

.swiper-nav {
	max-width: 24.5vw;
	width: 100%;
	height: 5vw;
	position: absolute;
	top: 15%;
	right: 0;
	margin-bottom: 0;
}

.swiper-button {
	width: 1vw;
	height: auto;
	position: absolute;
	top: 0;
	z-index: 1;
	transition: 0.2s;
	padding: 0 0.26042vw;
}

.swiper-prev {
	left: 0;
}

.swiper-next {
	right: 0;
}

/*************/
/* Popups */
.popup {
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 3000;
	overflow: auto;
	-webkit-transform: translate3d(0, -110%, 0);
	        transform: translate3d(0, -110%, 0);
	padding-top: 0.15625vw;
	padding-bottom: 0.15625vw;
	opacity: 0;
	transition: 0.2s;
	display: flex;
	flex-direction: column;
}

.popup::-webkit-scrollbar {
	width: .5rem;
}

.popup .container {
	height: 100%;
	display: flex;
	flex-direction: column;
}

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

.popup__close {
	font-size: 2vw;
}

.popup-close {
	max-width: 3vw;
	width: 100%;
	height: 3vw;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	background: var(--black);
	border: 0.1rem solid var(--black);
	border-radius: .5rem;
	transition: .2 ease;
	margin: 0 0 0 auto;
	cursor: pointer;
}

.popup-menu {
	background: var(--orange);
}

.popup-menu__wrap {
	display: grid;
	grid-template-columns: 1fr 1fr 3fr 1fr 1fr;
	gap: .5vw;
}

.popup-menu__wrap-box {
	width: auto;
	height: 3vw;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	background: var(--black);
	border: 0.1rem solid var(--black);
	border-radius: .5rem;
	transition: .2 ease;
}

.popup-menu__wrap-box-2 {
	display: none;
}

.popup-menu__wrap-box._small_text {
	font-weight: 550;
	font-size: 1.1vw;
	line-height: 100%;
	color: var(--orange);
}

.popup-menu__wrap-box._small_text:hover {
	background: #FFF;
	color: var(--black);
	transition: .2s ease-in;
	opacity: 1;
}

.popup-menu__wrap-box._big_text {
	font-size: 1.3vw;
	line-height: 100%;
	color: var(--orange);
}

.popup-menu__wrap-box._orange_block {
	background: var(--black);
}

.popup-menu__wrap-box._orange_block:hover {
	background: #FFF;
	color: var(--black);
	transition: .2s ease-in;
	opacity: 1;
}

.popup-menu__wrap-box._phone_box:hover {
	background: #FFF;
	color: var(--black);
	transition: .2s ease-in;
	opacity: 1;
}

.popup-menu__wrap-box._phone_box svg {
	display: none;
}

.popup-menu__wrap-box._social_box {
	position: relative;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
}

.popup-menu__wrap-box._social_box::before {
	content: '';
	width: .1vw;
	height: 100%;
	position: absolute;
	left: 50%;
	-webkit-transform: translateX(-50%);
	        transform: translateX(-50%);
	top: 0;
	background: var(--orange);
}

.popup-menu__wrap-box._social_box a {
	width: 100%;
	height: 3vw;
	display: flex;
	align-items: center;
	justify-content: center;
}

.popup-menu__wrap-box._social_box a svg {
	max-width: 1.5vw;
	width: 100%;
	height: 1.5vw;
	margin: auto;
}

.popup-menu__wrap-box._social_box a svg path {
	fill: var(--orange);
}

.popup-menu__wrap-box._social_box a:hover {
	background: #FFF;
	color: var(--black);
	transition: .2s ease-in;
	opacity: 1;
}

.popup-menu__wrap-box._social_box a:hover svg path {
	fill: var(--black);
}

.popup-menu__wrap-box._menu_box {
	cursor: pointer;
}

.popup-menu__wrap-box._menu_box:hover {
	background: #FFF;
	color: var(--black);
	transition: .2s ease-in;
	opacity: 1;
}

.popup-menu__box {
	display: grid;
	grid-template-columns: 3fr 1fr;
	gap: 2vw;
	flex-basis: 100%;
}

.popup-menu__box-collumn {
	display: flex;
	flex-direction: column;
}

.popup-menu__collumn {
	display: flex;
	align-items: flex-end;
}

.popup-menu__collumn-title {
	font-weight: 100;
	font-size: 8vw;
	line-height: 95%;
	text-align: left;
	border-top: 0.3rem solid var(--black);
}

.popup-menu__menu {
	display: flex;
	flex-direction: column;
	padding: 4vw 0;
}

.popup-menu__menu-item {
	padding: 1vw 0;
}

.popup-menu__menu-item a {
	font-size: 2.5vw;
	line-height: 100%;
	color: var(--black);
}

.popup-menu__menu-item:hover a {
	color: #FFF;
}

.popup-menu__copyright {
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: end;
	gap: 0.8vw;
	font-size: 0.7vw;
	margin: auto 0 0.5vw;
}

.popup-menu__copyright a {
	color: var(--black);
}

.popup-contact {
	background: var(--orange);
	padding: 0;
}

.popup-contact::-webkit-scrollbar {
	width: .5rem;
}

.popup-contact__box {
	display: grid;
	grid-template-columns: 3fr 1fr;
	gap: 2vw;
	flex-basis: 100%;
}

.popup-contact__collumn {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	padding-left: 1vw;
	padding-bottom: 2rem;
}

.popup-contact__collumn-logo {
	max-width: 12vw;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--black);
	border-radius: .5rem;
	border: 0.1rem solid var(--black);
}

.popup-contact__collumn-logo img {
	max-width: 8vw;
	width: 100%;
	padding: 1vw;
}

.popup-contact__collumn-title {
	font-weight: 100;
	font-size: 8vw;
	line-height: 95%;
	text-align: left;
	border-top: 0.3rem solid var(--black);
}

.popup-contact__form {
	background: white;
	padding: 1vw;
	display: flex;
	flex-direction: column;
}

.popup-contact__form-close {
	max-width: 3vw;
	width: 100%;
	height: 3vw;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	background: var(--black);
	border: 0.1rem solid var(--black);
	border-radius: .5rem;
	transition: .2 ease;
	margin: 0 0 0 auto;
	cursor: pointer;
}

.popup-contact__form-close:hover {
	background: #FFF;
	color: var(--black);
	transition: .2s ease-in;
	opacity: 1;
}

.popup-contact__form-title {
	text-align: left;
	font-size: 2.1vw;
	line-height: 100%;
	margin-bottom: 3vw;
	margin-top: 1.5vw;
}

/****************/
/* Place */
/****************/
/* Consalting */
.headConsalting {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	padding: 1vw;
	z-index: 10;
	max-width: 50%;
	margin-left: auto;
}

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

.headConsalting__wrap-btn {
	max-width: 20vw;
	width: 100%;
	height: 3vw;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	background: white;
	border: 0.1rem solid var(--orange);
	border-radius: .5rem;
	transition: .2 ease;
	margin: 0;
	color: var(--orange);
	font-size: 1.2vw;
	line-height: 100%;
	cursor: pointer;
}

.headConsalting__wrap-btn:hover {
	background: var(--black);
	color: var(--orange);
	transition: .2s ease-in;
	opacity: 1;
}

.headConsalting__wrap-close {
	max-width: 10vw;
	width: 100%;
	height: 3vw;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	background: white;
	border: 0.1rem solid var(--black);
	border-radius: .5rem;
	transition: .2 ease;
	margin: 0 0 0 auto;
	cursor: pointer;
}

.headConsalting__wrap-close:hover {
	background: var(--black);
	color: var(--orange);
	transition: .2s ease-in;
	opacity: 1;
}

.introConsalting {
	max-width: 50%;
	width: 100%;
	display: flex;
	flex-direction: column;
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	z-index: 2;
	height: 100vh;
	overflow: hidden;
}

.introConsalting-logo {
	position: relative;
	z-index: 10;
	max-width: 12vw;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--orange);
	border-radius: .5rem;
	border: 0.1rem solid var(--orange);
	margin-left: 1vw;
}

.introConsalting-logo img {
	max-width: 8vw;
	width: 100%;
	padding: 1vw;
	-o-object-fit: cover;
	   object-fit: cover;
}

.introConsalting-img {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
}

.introConsalting__box {
	position: absolute;
	z-index: 10;
	bottom: 1vw;
	left: 1vw;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 2vw;
}

.introConsalting__box h3 {
	color: #FFF;
	font-size: 2vw;
	font-weight: 550;
	line-height: normal;
	letter-spacing: -0.8px;
}

.blockConsalting {
	position: relative;
	max-width: 50%;
	width: 100%;
	margin: 0 0 0 auto;
}

.blockConsalting__box {
	display: flex;
	flex-direction: column;
	padding-top: 5vw;
	padding-left: 1vw;
	padding-right: 1vw;
}

.blockConsalting__bg {
	position: relative;
	width: 100%;
	height: 22.5vw;
	border-radius: .5rem;
	background: var(--white-1);
	margin-bottom: 1vw;
}

.blockConsalting__bg-title {
	position: absolute;
	top: 1vw;
	left: 1vw;
	color: var(--black);
	font-size: 1.5vw;
	line-height: normal;
	letter-spacing: -0.9px;
}

.blockConsalting__bg-subtitle {
	position: absolute;
	bottom: 1vw;
	right: 1vw;
	color: var(--black);
	font-size: 1.5vw;
	line-height: normal;
	letter-spacing: -0.9px;
}

.blockConsalting__bg-img {
	position: absolute;
	top: 1vw;
	left: 50%;
	-webkit-transform: translateX(-50%);
	        transform: translateX(-50%);
	max-width: 20.3vw;
	width: 100%;
	height: 20.3vw;
}

.blockConsalting__info {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 2vw;
	margin-bottom: 1vw;
}

.blockConsalting__info h3 {
	color: var(--black);
	font-weight: 550;
	font-size: 1vw;
	line-height: 100%;
	letter-spacing: -0.6px;
}

.blockConsalting__info p {
	color: var(--black);
	font-size: 1vw;
	line-height: 100%;
	letter-spacing: -0.6px;
}

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

.blockConsalting__text-title {
	color: var(--black);
	font-weight: 550;
	font-size: 1vw;
	line-height: 100%;
	letter-spacing: -0.6px;
}

.blockConsalting__text-text {
	color: var(--orange);
	font-size: 1vw;
	line-height: 100%;
	letter-spacing: -0.6px;
}

.blockConsalting__card {
	margin: 1vw 0;
}

.blockConsalting__card-option {
	display: flex;
	justify-content: space-between;
	align-items: end;
	gap: 1vw;
	border-bottom: .1rem solid #A4A4A4;
	padding: .5vw 0;
}

.blockConsalting__card-option:nth-child(1) {
	border-top: .1rem solid #A4A4A4;
}

.blockConsalting__card-option-icon {
	width: 1.4vw;
	height: 1.4vw;
	flex: 0 0 auto;
	background: black;
	border-radius: 50%;
	font-size: 1vw;
	display: flex;
	align-items: center;
	justify-content: center;
}

.blockConsalting__card-option-title {
	font-size: 1.1vw;
	line-height: 100%;
	letter-spacing: -0.6px;
}

.blockConsalting__form {
	background: var(--orange);
	padding: 1vw;
	margin-top: 3vw;
}

.blockConsalting__form-wrap {
	position: relative;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1.5vw;
}

.blockConsalting__form-wrap-form .form {
	position: unset;
}

.blockConsalting__form-wrap-form .form__fields {
	grid-template-columns: repeat(1, 1fr);
	-webkit-column-gap: .5vw;
	   -moz-column-gap: .5vw;
	        column-gap: .5vw;
	row-gap: .5vw;
}

.blockConsalting__form-wrap-form .form__button {
	font-size: 1.2vw;
}

.blockConsalting__form-wrap-form .form__bottom {
	position: absolute;
	left: 50%;
	bottom: 0;
}

.blockConsalting__form-wrap-form .form__footer {
	display: flex;
}

.blockConsalting__form-wrap-form .form__footer-text {
	font-size: .8vw;
}

.blockConsalting__form-wrap-info h3 {
	color: #FFF;
	font-size: 1.5vw;
	font-weight: 550;
	line-height: normal;
	letter-spacing: -0.9px;
	margin-bottom: 1vw;
}

.blockConsalting__form-wrap-info p {
	color: var(--black);
	font-size: 1vw;
	line-height: normal;
	letter-spacing: -0.6px;
}
