/*///////////
// Common
///////////*/
:root {
	--indtContainer: 40px;
	--widthContainer: 1337px;

	--blue: #2467cd;
	--blye-light: #e7f2f6;
	--green: #13ba7e;
	--gray: #595959;
	--gray-light: #D2DBE9;
	--gray-light2: #cdcdcd;
	--dark: #242424;
	--white: #fff;
	--accent: #df7d00;
	--accent-light: #E59733;
	--beige: #f9f3f0;
	--red: #F83D3D;

	--baseAnim: 0.2s ease-out;
	--header: 9.2rem;
	--acide: 21.6rem;
}

html {
	font-size: 10px;
}

svg, img, picture {
  width: 100%;
  max-width: 100%;
  display: block;
  height: auto;
}

svg {
	height: auto;
}


body {
	font-family: 'DIN Pro', sans-serif;
	line-height: 1.2;
	background: #fff;
	color: var(--dark);
	font-size: 1.8rem;
	min-width: 320px;
	position: relative;
}

.container {
	max-width: calc(var(--widthContainer) + (var(--indtContainer) * 2));
	margin-left: auto;
	margin-right: auto;
	min-width: 320px;
	padding-left: var(--indtContainer);
	padding-right: var(--indtContainer);
}

b {
	font-weight: 600;
}

.list-num {
	counter-reset: list-num;
}
.list-num li {
	position: relative;
	padding-left: 2.5rem;
	counter-increment: list-num;
}
.list-num li:before {
	content: counter(list-num) ".";
	position: absolute;
	top: 0;
	left: 0;
}

.main {
	margin-left: var(--acide);
}
.main__wrap {
	position: relative;
}

.aside__link {
	transition: opacity var(--baseAnim);
	will-change: opacity;
}
.aside__link:hover {
	opacity: 0.7;
}

.preloader-accent {
	border-color: var(--accent);
	border-top-color: transparent;
}

.section-indent {
	padding-top: 5rem;
}

.textarea {
	width: 100%;
	color: var(--dark);
	height: 13rem;
	padding: 0.8rem 1.4rem;
	border-radius: 0.4rem;
	font-size: 1.8rem;
	line-height: 1.6;
	transition: border-color var(--baseAnim);
	will-change: border-color;
}
.input {
	width: 100%;
	height: 4.8rem;
	color: var(--dark);
	background: var(--white);
	border: 0.2rem solid var(--white);
	transition: border-color var(--baseAnim);
	will-change: border-color;
	padding: 0 1.4rem;
	border-radius: 0.4rem;
	transition: border-color var(--baseAnim);
	will-change: border-color;
}
.err-field {
	border-color: red!important;
}

.link {
	text-decoration: underline;
}
.link:hover {
	text-decoration: none;
}

.input-blue {
	position: relative;
	width: 100%;
}
.input-blue__input {
	height: 4.8rem;
	border-radius: 0.4rem;
	background: var(--blye-light);
	border: 0.1rem solid var(--blye-light);
	padding: 0 1.5rem;
	width: 100%;
	transition: border-color var(--baseAnim);
	will-change: border-color;
}
.input-blue__placeholder {
	position: absolute;
	left: 1.5rem;
	top: 50%;
	transform: translateY(-50%);
	pointer-events: none;
}
.input-blue__placeholder span {
	color: #e52724;
}
.textarea-blue {
	border-radius: 0.4rem;
	background: var(--blye-light);
	border: 0.1rem solid var(--blye-light);
	padding: 0.8rem 1.5rem;
	height: 13rem;
	width: 100%;
	line-height: 1.6;
	resize: none;
}

.switch {
	display: inline-flex;
	padding: 0.2rem;
	border: 0.2rem solid var(--blue);
	border-radius: 3rem;
}
.switch__item {
	padding: 0.4rem 1.4rem;
	min-height: 3.8rem;
	border-radius: 3rem;
	color: var(--blue);
	transition: color var(--baseAnim), background var(--baseAnim);
	will-change: color, background;
}
.switch__item_current {
	background: var(--blue);
	color: var(--white)
}

.burger__ic {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.6rem;
}
.burger__ic span {
	display: block;
	width: 2rem;
	height: 2px;
	background: #fff;
}
.burger__ic span:nth-child(2) {
	width: 3rem;
}
.burger__name {
	text-transform: uppercase;
	font-size: 1rem;
	font-weight: 500;
	margin-top: 0.7rem;
}

/* titles */
.title {
	margin-bottom: 2.8rem;
}
.title_small {
	margin-bottom: 2rem;
}
.title_large {
	margin-bottom: 3.6rem;
}
.title_light {
	color: var(--white);
}
.title-h1 {
	font-weight: 500;
	font-size: 14rem;
	line-height: 1;
	text-transform: uppercase;
}
.title-h1 span {
	color: var(--green);
}
.title-h2 {
	font-weight: 400;
	font-size: 5rem;
}
.title-h2_light {
	font-weight: 400;
}
.title-h3 {
	font-size: 4rem;
	letter-spacing: -0.02em;
}
.title-h3_light {
	font-weight: 400;
}
.title-h2 span {
	color: var(--green);
}
.title-h4 {
	font-weight: 500;
	font-size: 2.5rem;
}
.title-h4 span {
	color: var(--green);
}
.title-h4__accent {
	color: var(--accent);
}

.checkbox {
	display: inline-flex;
	align-items: center;
	gap: 1.1rem;
	color: var(--white);
	cursor: pointer;
}
.checkbox__box {
	flex-shrink: 0;
	width: 3.3rem;
	height: 3.3rem;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 0.2rem solid var(--gray);
	border-radius: 0.5rem;
	transition: border-color var(--baseAnim);
	will-change: border-color;
}
.checkbox__marker {
	width: 1.2rem;
	transform: translate(-0.3rem, -0.4rem);
	opacity: 0;
	transition: opacity var(--baseAnim), transform var(--baseAnim);
	will-change: opacity, transform;
}
.checkbox__val {
	font-weight: 500;
	font-size: 2.2rem;
	line-height: 1.4;
	letter-spacing: 0.04em;
}
.checkbox__input {
	display: none;
}
.checkbox__input:checked + .checkbox__box {
	border-color: var(--white);
}
.checkbox__input:checked + .checkbox__box .checkbox__marker {
	transform: translate(0, 0);
	opacity: 1;
}

.checkbox-txt {
	display: inline-flex;
	align-items: center;
	gap: 1rem;
	color: var(--white);
	cursor: pointer;
}
.checkbox-txt__box {
	flex-shrink: 0;
	width: 2.5rem;
	height: 2.5rem;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 0.2rem solid var(--accent);
	border-radius: 0.5rem;
	transition: background var(--baseAnim), border-color var(--baseAnim);
	will-change: background, border-color;
}
.checkbox-txt__marker {
	width: 1.2rem;
	transform: translate(-0.3rem, -0.4rem);
	opacity: 0;
	transition: opacity var(--baseAnim), transform var(--baseAnim);
	will-change: opacity, transform;
}
.checkbox-txt__val {
	color: var(--accent);
	font-weight: 500;
	font-size: 1.4rem;
	line-height: 1.4;
	letter-spacing: 0.04em;
	transition: color var(--baseAnim);
	will-change: color;
}
.checkbox-txt__input {
	display: none;
}
.checkbox-txt__input:checked + .checkbox-txt__box {
	background: var(--accent);
}
.checkbox-txt__input:checked + .checkbox-txt__box .checkbox-txt__marker {
	transform: translate(0, 0);
	opacity: 1;
}

.checkbox-txt_white .checkbox-txt__val {
	color: var(--white);
}
.checkbox-txt_white  .checkbox-txt__box {
	border-color: var(--white);
}
.checkbox-txt_white .checkbox-txt__input:checked + .checkbox-txt__box {
	background: var(--white);
}
.checkbox-txt_white .checkbox-txt__marker path {
	stroke: var(--dark);
}

.checkbox-txt.err .checkbox-txt__val {
	color: red;
}
.checkbox-txt.err .checkbox-txt__box {
	border-color: red;
}

.slider-dots {
	width: auto!important;
}
.slider-dots  .swiper-pagination-bullet-active {
	background: var(--accent);
}
.slider-dots_white .swiper-pagination-bullet-active {
	background: var(--white);
}
.slider-dots_white .swiper-pagination-bullet {
	background: var(--white);
}

input[name='name-s'] {
	display: none!important;
}

/* btns */
.btn-circe {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding:  0.4rem;
	padding-right: 1.4rem;
	border-radius: 3rem;
	height: 4rem;
	gap: 0.7rem;
	box-shadow: 0 0.4rem 0.4rem 0 rgba(0, 0, 0, 0.25);
	background: var(--white);
	font-weight: 500;
	font-size: 1.4rem;
	letter-spacing: 0.03em;
	transition: background var(--baseAnim);
	will-change: background;
	cursor: pointer;
}
.btn-circe__ic {
	width: 3.2rem;
	flex-shrink: 0;
}
.btn-circe_current {
	background: var(--dark);
	color: var(--white);
}

.btn-round {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 0.5rem 2.1rem;
	width: 100%;
	min-height: 3.6rem;
	font-weight: 500;
	font-size: 1.4rem;
	line-height: 1;
	text-transform: uppercase;
	color: var(--white);
	background: var(--dark);
	transition: color var(--baseAnim), background var(--baseAnim);
	will-change: color, background;
	border-radius: 3rem;
}
.btn-round:hover {
	color: var(--dark);
	background: var(--white);
}

.btn-round2 {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 0.5rem 2.2rem;
	width: 100%;
	min-height: 3.4rem;
	font-weight: 500;
	font-size: 1.4rem;
	line-height: 1;
	color: var(--white);
	background: var(--blue);
	transition: color var(--baseAnim), background var(--baseAnim);
	will-change: color, background;
	border-radius: 3rem;
	cursor: pointer;
	width: 100%;
}
.btn-round2__accent {
	background: var(--accent);
}
.btn-round2:hover {
	background: var(--dark);
}

.btn-round-ic {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	gap: 0.67rem;
	padding: 0.1rem 1.2rem;
	width: 100%;
	min-height: 3.1rem;
	font-weight: 500;
	font-size: 1.3rem;
	line-height: 1;
	letter-spacing: 0.04em;
	color: var(--accent);
	background: var(--white);
	transition: background var(--baseAnim), color var(--baseAnim);
	will-change: background, color;
	border-radius: 3rem;
	border: 0.2rem solid var(--white);
	cursor: pointer;
}
.btn-round-ic__icon {
	width: 1.8rem;
}
.btn-round-ic__icon path {
	fill: currentColor;
}
.btn-round-ic:hover {
	background: transparent;
	color: var(--white);
}

.btn-round3 {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 0.3rem 1.7rem;
	min-height: 2.7rem;
	font-weight: 500;
	font-size: 1.2rem;
	line-height: 1;
	text-transform: uppercase;
	color: var(--white);
	background: var(--accent);
	transition: color var(--baseAnim), background var(--baseAnim);
	will-change: color, background;
	border-radius: 3rem;
	cursor: pointer;
}
.btn-round3:hover {
	color: var(--white);
	background: var(--dark);
}

.btn-round4 {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 0.3rem 2.4rem;
	min-height: 4.1rem;
	font-weight: 500;
	font-size: 1.3rem;
	line-height: 1;
	text-transform: uppercase;
	color: var(--white);
	background: var(--accent);
	transition: color var(--baseAnim), background var(--baseAnim);
	will-change: color, background;
	border-radius: 3rem;
	cursor: pointer;
}
.btn-round4:hover {
	color: var(--white);
	background: var(--dark);
}

.btn-border {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	min-height: 5rem;
	padding: 0 2.7rem;
	font-weight: 700;
	font-size: 1.4rem;
	text-transform: uppercase;
	color: var(--white);
	letter-spacing: 0.03em;
	border: 0.2rem solid var(--white);
	border-radius: 3rem;
	transition: background var(--baseAnim), border var(--baseAnim), opacity var(--baseAnim);
	will-change: background, border, opacity;
}
.btn-border_large {
	min-height: 5.2rem;
	padding: 0 3.2rem;
}
.btn-border:not([disabled]):not(.disabled):hover {
	background: var(--white);
	color: var(--accent);
}
.btn-border[disabled],
.btn-border.disabled {
	opacity: 0.5;
}

.btn-round-acc {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 1rem 5rem;
	min-height: 5.8rem;
	font-weight: 700;
	font-size: 1.4rem;
	line-height: 1.2;
	text-transform: uppercase;
	color: var(--white);
	background: var(--accent);
	transition: color var(--baseAnim), background var(--baseAnim);
	will-change: color, background;
	border-radius: 3rem;
	cursor: pointer;
}
.btn-round-acc_blue {
	background: var(--blue);
}
.btn-round-acc:hover {
	color: var(--white);
	background: var(--dark);
}


/*///////////
// Aside
///////////*/
.aside {
	position: fixed;
	top: 0;
	left: 0;
	height: 100%;
}
.aside__wrap {
	width: var(--acide);
	height: 100%;
	overflow: auto;
	background: var(--accent);
	color: var(--white);
	padding: 1.4rem 0;
}
.aside__container {
	padding: 0 1rem;
}
.aside__logo {
	margin: 0 auto;
	max-width: 13rem;
	margin-bottom: 1.2rem;
}
.aside__address {
	text-align: center;
	margin-bottom: 1.6rem;
	font-size: 1.1rem;
}
.aside__button {
	margin-bottom: 2.4rem;
}
.aside__menu {
	margin-bottom: 2.2rem;
}

.menu__link:first-child {
	border-top: 0.1rem solid var(--accent-light);
}
.menu__link {
	display: flex;
	align-items: center;
	gap: 0.4rem;
	padding: 0.87rem 1rem;
	border-bottom: 0.1rem solid var(--accent-light);
	font-weight: 500;
	font-size: 1.3rem;
	text-transform: uppercase;
	transition: background var(--baseAnim);
	will-change: background;
}
.menu__link:hover {
	background: var(--accent-light);
}
.menu__img {
	width: 5.6rem;
	margin: -0.2rem 0;
}

.aside__office {
	margin-bottom: 2rem;
}
.aside__close {
	display: none;
}

.info__name {
	font-weight: 500;
	font-size: 1.2rem;
}
.info__val {
	font-weight: 500;
	font-size: 1.4rem;
	line-height: 1.4;
}

.aside__phones {
	display: inline-flex;
	flex-direction: column;
	font-weight: 700;
	font-size: 1.86rem;
	line-height: 1.2;
	margin-bottom: 0.4rem;
}
.aside__social {
	margin-bottom: 2rem;
}
.social {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.5rem;
}
.social__item {
	flex: 0 0 2.2rem;
}


/*///////////
// Header
///////////*/
.header {
	position: fixed;
	top: 0;
	left: var(--acide);
	right: 0;
	z-index: 1000;
	padding: 1.4rem 4rem;
	background: url('../img/header-bc.jpg') no-repeat;
	background-position: center;
	background-size: cover;
	background-color: var(--accent);
	color: var(--white);
}
.header__house-name {
	display: none;
}
.header__main {
	display: flex;
	align-items: center;
	gap: 6.7rem;
}
.header__escrow {
	display: flex;
	align-items: center;
	gap: 1.6rem;
}
.header__esc-img {
	width: 6.4rem;
}
.header__esc-name {
	font-weight: 700;
	font-size: 2.5rem;
}
.header__buttons {
	display: flex;
	flex-wrap: wrap;
	column-gap: 2rem;
	row-gap: 1rem;
}
.header__burger {
	display: none;
}
.header__btn-mob {
	display: none;
}

.btn-ic {
	height: 3.5rem;
	padding: 0.5rem;
}
.btn-ic__icon {
	height: 100%;
	width: auto;
}
.btn-ic__icon_offset {
	margin-top: -0.3rem;
}
.btn-ic_large {
	height: 4.3rem;
}

.btn-high-ic {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-align: left;
	gap: 0.8rem;
	color: var(--white);
	background: var(--dark);
	padding: 0.4rem 2.5rem;
	min-height: 5rem;
	border-radius: 3rem;
	font-weight: 700;
	font-size: 1.3rem;
	line-height: 120%;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	transition: background var(--baseAnim), color var(--baseAnim), opacity var(--baseAnim);
	will-change: background, color, opacity;
	flex-shrink: 0;
}
.btn-high-ic__icon {
	width: 2.2rem;
}
.btn-high-ic_img {
	padding: 0.6rem 1.8rem;
}
.btn-high-ic_img .btn-high-ic__icon {
	width: 4.8rem;
}
.btn-high-ic__icon path {
	fill: currentColor;
}
.btn-high-ic:not([disabled]):hover {
	color: var(--dark);
	background: var(--white);
}
.btn-high-ic_light {
	background: var(--accent);
}
.btn-high-ic_light:not([disabled]):hover {
	color: var(--white);
	background: var(--dark);
}
.btn-high-ic[disabled] {
	opacity: 0.8;
}

.btn-high-ic_red {
	min-height: 6rem;
	background: var(--red);
}

/*///////////
// First-screen
///////////*/
.first-screen {
	padding-top: var(--header);
	min-height: 100vh;
	display: flex;
	position: relative;
}
.first-screen__slider {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 0;
}
.first-screen__slider:before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 50%;
	background: linear-gradient(90deg, rgba(0, 0, 0, 0.75) 16.33%, rgba(0, 0, 0, 0) 100%);
	opacity: 0.8;
	z-index: 5;
}
.first-screen__img {
	height: 100%;
	object-fit: cover;
}
.first-screen__content {
	padding: 6rem 0;
	width: 100%;
	position: relative;
	z-index: 10;
}
.first-screen__container {
	height: 100%;
}
.first-screen__info {
	height: 100%;
	display: flex;
	flex-direction: column;
}
.first-screen__top {
	margin-bottom: 5.6rem;
	display: flex;
	align-items: flex-start;
	gap: 2.4rem;
}
.first-screen__developer-mob {
	display: none;
	margin-bottom: 3.8rem;
}
.first-screen__developer {
	flex-shrink: 0;
}
.first-screen__center {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	align-items: flex-start;
	gap: 6rem;
	margin-bottom: 4.2rem;
}
.first-screen__arrows {
	margin-top: auto;
}
.first-screen__plan {
	margin-top: 3.3rem;
}

.button-plan {
	display: flex;
	align-items: flex-start;
}
.button-plan__image {
	aspect-ratio: 22.3 / 14;
	flex-shrink: 0;
	max-width: 22.3rem;
	width: 100%;
	position: relative;
	z-index: 10;
}
.button-plan__text {
	display: inline-flex;
	align-items: center;
	justify-content: flex-end;
	text-align: center;
	margin-left: -12rem;
	margin-top: 2.2rem;
	background-color: var(--white);
	padding: 1rem 0;
	padding-left: 10.4rem;
	padding-right: 2.8rem;
	border-radius: 3rem;
	font-weight: 700;
	text-transform: uppercase;
	position: relative;
	z-index: 0;
	min-height: 5.7rem;
	white-space: nowrap;
	font-size: 1.4rem;
}

.developer {
	display: inline-flex;
	padding: 1.1rem 1.7rem;
	background: var(--white);
	border-radius: 1.8rem;
}
.developer__logo {
	width: 12.8rem;
}


.advantages {
	display: flex;
	flex-wrap: wrap;
	gap: 1.6rem;
}
.advantages__item {
	flex: 0 0 12rem;
	color: var(--white);
	text-align: center;
	position: relative;
	display: flex;
	flex-direction: column;
}
.advantages__main {
	flex-grow: 1;
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	background: var(--accent);
	border-bottom: 0;
	border-radius: 0.9rem 0.9rem 0 0;
	padding: 1rem 0.5rem 0;
	position: relative;
	z-index: 2;
}
.advantages__trinagle {
	margin-top: -0.2rem;
	position: relative;
	z-index: 0;
}
.advantages__img {
	width: auto;
	height: 3.5rem;
	margin-bottom: 0.55rem;
}
.advantages__img path {
	fill: currentColor;
}
.advantages__name {
	font-weight: 500;
	font-size: 1.2rem;
	line-height: 1.15;
}

.advantages_buttons  .advantages__main {
	transition: background var(--baseAnim);
	will-change: background;
}
.advantages_buttons .advantages__trinagle {
	transition: color var(--baseAnim);
	will-change: color;
}
.advantages_buttons .advantages__trinagle {
	color: var(--accent);
}
.advantages_buttons .advantages__trinagle path {
	fill: currentColor;
}
.advantages_buttons .advantages__item {
	transition: color var(--baseAnim);
	will-change: color;
}
.advantages_buttons .advantages__item:hover {
	color: var(--accent);
}
.advantages_buttons .advantages__item:hover .advantages__trinagle {
	color: var(--white);
}
.advantages_buttons .advantages__item:hover .advantages__main {
	background: var(--white);
}

.advantages_stroke .advantages__main {
	position: absolute;
	top: 0;
	left: 0;
	background: transparent;
}
.advantages_stroke .advantages__trinagle {
	margin-top: 0;
	height: auto;
}
.advantages_stroke .advantages__trinagle path {
	transition: fill-opacity var(--baseAnim);
	will-change: fill-opacity;
}
.advantages_stroke .advantages__item {
	transition: color var(--baseAnim);
}
.advantages_stroke .advantages__item:hover {
	color: var(--accent);
}
.advantages_stroke .advantages__item:hover .advantages__trinagle path {
	fill-opacity: 1;
}

.advantages_stroke .advantages__item.current {
	color: var(--accent);
}
.advantages_stroke .advantages__trinagle path {
	fill: #fff;
	fill-opacity: 0;
}
.advantages_stroke .advantages__item.current .advantages__trinagle path {
	fill-opacity: 1;
}

.first-screen__main {
	color: var(--white);
}
.first-screen__subtitle {
	margin-bottom: 0.3rem;
	text-transform: uppercase;
	font-weight: 500;
	font-size: 1.7rem;
}
.first-screen__title {
	margin-bottom: 3.2rem;
}


.list-ic {
	display: flex;
	flex-direction: column;
	row-gap: 2rem;
}
.list-ic__item {
	display: flex;
	align-items: center;
	gap: 2rem;
	font-weight: 700;
	font-size: 1.8rem;
	line-height: 1.2;
	letter-spacing: -0.01em;
}
.list-ic__icon {
	width: 2rem;
	flex-shrink: 0;
}

.layout {
	display: flex;
	height: 30rem;
}
.layout__name {
	font-weight: 700;
	font-size: 2.4rem;
	line-height: 1.6;
	color: var(--dark);
	margin-bottom: 1.6rem;
	text-transform: uppercase;
	margin-bottom: 2.9rem;
}
.layout__main {
	border-bottom-left-radius: 2.4rem;
	border-top-left-radius: 2.4rem;
	background: var(--white);
	padding-left: 2.4rem;
	padding-right: 1.2rem;
	padding-top: 2.4rem;
	display: flex;
	flex-direction: column;
}
.layout__houses {
	display: flex;
	align-items: flex-end;
	gap: 1.2rem;
	height: 100%;	
}
.layout__house {
	position: relative;
	height: 100%;
	padding: 2.4rem 0;
	display: flex;
}
.layout__house-wrap {
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
}
.layout__img {
	position: absolute;
	top: 0.5rem;
	left: 50%;
	height: calc(100% - 0.5rem);
	transform: translateX(-50%);
	width: auto;
	z-index: 0;
}
.layout__button {
	position: relative;
	z-index: 2;
}
.layout__trinagle {
	height: 100%;
	width: auto;
	margin-left: -0.1rem;
}
.layout__trinagle_mob {
	display: none;
}

.arrows {
	display: flex;
	gap: 2rem;
}
.arrow {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 5.2rem;
	width: 5.2rem;
	border-radius: 5.2rem;
	background: var(--white);
	color: var(--dark);
	transition: background var(--baseAnim), color var(--baseAnim);
	will-change: background, color;
}
.arrow_blue {
	color: var(--blue);
}
.arrow__ic {
	width: 2rem;
}
.arrow_next .arrow__ic {
	transform: rotate(180deg);
}
.arrow__ic path {
	fill: currentColor;
}
.arrow:hover {
	background: var(--accent);
	color: var(--white);
}
.arrow_dark {
	background: rgba(0, 0, 0, 0.5);
	color: var(--white);
}

.text {
	line-height: 1.5;
	font-size: 2rem;
}
.text p:not(p:last-child) {
	padding-bottom: 2.6rem;
}
.text b {
	font-weight: 500;
} 
.text h6 {
	font-size: 2.4rem;
	font-weight: 500;
}
.text h6:not(h6:last-child) {
	margin-bottom: 2.4rem;
}
.text ul {
	padding-left: 1rem;
}
.text ul li:before {
	content: "•";
	margin-right: 1rem;
}
.text__center {
	text-align: center;
}

/*///////////
// Conditions, stages
///////////*/
.conditions__main {
	display: flex;
	flex-wrap: wrap;
	gap: 3.4rem;
}
.conditions__item {
	flex: 0 0 24.1rem;
	padding: 2rem;
	padding-top: 3rem;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	border-radius: 1rem;
	background: var(--beige);
	transition: background var(--baseAnim);
}
.conditions__item:hover {
	background: var(--blye-light);
}
.conditions__img {
	margin-bottom: 0.8rem;
	height: 10rem;
	object-fit: contain;
}
.conditions__name {
	margin-bottom: 1.1rem;
	color: var(--dark);
	text-transform: uppercase;
	font-weight: 700;
	font-size: 1.6rem;
	line-height: 1.4;
	letter-spacing: 0.04em;
}
.conditions__descript {
	font-size: 1.6rem;
	line-height: 1.4;
	margin-bottom: 0.9rem;
}
.conditions__ar {
	margin-top: auto;
	margin-left: auto;
	width: 2.3rem;
}
.conditions__stages {
	margin-top: 6.7rem;
}

.stages__title {
	margin-bottom: 1.2rem;
}
.stages__main {
	display: flex;
	align-items: flex-start;
	gap: 2.2rem
}
.stages__info {
	flex: 0 1 83.9rem;
}
.stages__type {
	display: flex;
	flex-direction: column;
	gap: 0.6rem;
	flex-grow: 1;
}
.stages__name {
	padding: 0.4rem 0;
	display: flex;
	align-items: center;
	gap: 1.2rem;
	font-weight: 500;
	font-size: 1.4rem;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: var(--gray-light);
	transition: color var(--baseAnim);
	will-change: color;
	text-align: left;
}
.stages__line {
	flex: 0 0 0;
	height: 0.1rem;
	background: var(--accent);
	transition: flex var(--baseAnim);
	will-change: flex;
}
.stages__name_current {
	color: var(--accent);
}
.stages__name_current .stages__line {
	flex: 1 0 2rem;
}
.stages__info {
	min-height: 25.8rem;
	border: 0.2rem solid var(--accent);
	border-radius: 1rem;
}
.stages__item {
	padding: 3.3rem 3.8rem;
}
.stages__info-name {
	font-weight: 700;
	font-size: 1.6rem;
	line-height: 1.4;
	text-transform: uppercase;
	margin-bottom: 1.1rem
}
.stages__descript {
	line-height: 1.6;
}
.stages__item {
	display: none;
}
.stages__item_current {
	display: block;
}

/*///////////
// Prices
///////////*/
.prices {
	padding-top: 5rem;
	margin-top: 6.6rem;
}
.prices__top {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	position: relative;
	z-index: 2;
}
.prices__houses {
	display: flex;
	flex-wrap: wrap;
	column-gap: 4rem;
	row-gap: 2rem;
}
.prices__name {
	font-weight: 500;
	font-size: 1.9rem;
	line-height: 1.48;
	margin-bottom: 0.5rem;
}
.prices__characteristics {
	font-size: 1.8rem;
	display: flex;
	flex-direction: column;
	gap: 0.7rem;
}
.prices__button {
	margin-top: 2rem;
}
.prices__copas {
	max-width: 6.9rem;
}
.prices__scheme {
	margin-top: -3.3rem;
	position: relative;
	z-index: 0;
}
.scheme {
	position: relative;
}
.scheme:before {
	content: "";
	padding-top: 48.5%;
	display: block;
}
.scheme__houses {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 1;
}
.scheme__house_1 {
	position: absolute;
    top: 6.6%;
    left: 3.7%;
    z-index: 2;
    width: 26.3%;
}
.scheme__house_2 {
	position: absolute;
    top: 0%;
    right: 3.8%;
    z-index: 2;
    width: 36.4%;
}
.scheme__button {
	white-space: nowrap;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 3.5rem;
	padding: 0.4rem 2.4rem;
	background: var(--dark);
	color: var(--white);
	font-weight: 700;
	font-size: 1.4rem;
	line-height: 1.2;
	letter-spacing: 0.03em;
	text-transform: uppercase;
	border-radius: 0.8rem;
	transition: color var(--baseAnim), background var(--baseAnim);
}
.scheme__button_house1 {
	position: absolute;
	top: 5.5%;
    left: 52%;
}
.scheme__button_house2 {
	position: absolute;
	top: 0%;
    left: 50%;
	transform: translateX(-50%);
	margin-left: 8%;
}

.scheme__selection {
	opacity: 0;
	transition: opacity var(--baseAnim);
	will-change: opacity;
}
.scheme__house:hover .scheme__selection {
	opacity: 1;
}
.scheme__house:hover .scheme__button {
	background: var(--accent);
	color: var(--white);
}
.scheme__highway {
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	background-color: rgb(0 0 0 / 0.6);
	padding: 0.8rem 1rem;
	font-weight: 700;
	font-size: 1.8rem;
	line-height: 1.2;
	letter-spacing: -0.01em;
	z-index: 5;
	display: flex;
	justify-content: center;
	color: var(--white);
}
.scheme__highway-name {
	position: relative;
	padding: 0 9.5rem;
}
.scheme__highway-name::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	max-width: 6.5rem;
	width: 100%;
	aspect-ratio: 6.5 / 1.5;
	background-image: url('../img/long-arrow.svg');
	background-size: 100% auto;
	background-position: center;
	background-repeat: no-repeat;
	
}
.scheme__highway-name::after {
	content: "";
	position: absolute;
	top: 50%;
	right: 0;
	max-width: 6.5rem;
	width: 100%;
	aspect-ratio: 6.5 / 1.5;
	background-image: url('../img/long-arrow.svg');
	background-size: 100% auto;
	background-position: center;
	background-repeat: no-repeat;
	transform: translateY(-50%) rotate(180deg);
}

/*///////////
// Gallery
///////////*/
.gallery {
	padding-top: 8rem;
}
.gallery__slider {
	display: flex;
	gap: 3.2rem;
	border-radius: 1rem;
	overflow: hidden;
}
.gallery__prev {
	position: absolute;
	left: 3.2rem;
	top: 50%;
	transform: translateY(-50%);
	z-index: 5;
}
.gallery__next {
	position: absolute;
	right: 3.2rem;
	top: 50%;
	transform: translateY(-50%);
	z-index: 5;
}
.gallery__slider .swiper-slide {
	height: initial!important;
}
.gallery__photo {
	position: relative;
	width: 100%;
	display: block;
	height: 100%;
}
.gallery__photo:before {
	content: "";
	padding-top: 63%;
	display: block;
}
.gallery__img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.gallery__name {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	padding: 2.9rem 2.4rem;
	padding-top: 8.4rem;
	text-transform: uppercase;
	font-size: 3.2rem;
	line-height: 1.5;
	color: var(--white);
	z-index: 2;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.5) 100%);
}
.gallery__img {
	height: 100%;
	object-fit: cover;
}
.gallery__main {
	display: flex;
	gap: 3.2rem;
}
.gallery__slider {
	flex: 1 1 81.3rem;
}
.gallery__thumbnail {
	flex: 0 1 50rem;
}
.gallery__previous {
	flex-grow: 1;
	display: flex;
	flex-wrap: wrap;
	gap: 1.2rem;
}
.gallery__previous-item {
	flex: 0 0 calc(33.333% - 0.8rem);
	border-radius: 1rem;
	overflow: hidden;
	position: relative;
	cursor: pointer;
	display: flex;
}
.gallery__previous-item:after {
	content: "";
	display: block;
	padding-top: 61.5%;
}
.gallery__previous-item:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border-radius: 1rem;
	border: 0.3rem solid var(--accent);
	z-index: 5;
	opacity: 0;
	transition: opacity var(--baseAnim);
	will-change: opacity;
}
.gallery__previous-img {
	transition: opacity var(--baseAnim);
	will-change: opacity;
}
.gallery__previous-item_current .gallery__previous-img {
	opacity: 0.3;
}
.gallery__previous-item_current:before {
	opacity: 1;
}

/*///////////
// Standards
///////////*/
.standards {
	padding-top: 5rem;
	padding-bottom: 5rem;
	background: url('../img/standards-bg.jpg') no-repeat center;
	background-size: cover;
	background-color: var(--accent);
	color: var(--white);
	margin-top: 10rem;
}
.standards__info {
	flex: 0 1 74.3rem;
	height: 100%;
	display: flex;
	flex-direction: column;
}
/* .standards__info-slide_hide {
	display: none;
} */
.standards__adv {
	margin-bottom: 3rem;
}
.standards__swiper-slide {
	height: auto;
}
.standards__slide {
	display: flex;
	align-items: flex-end;
	gap: 4rem;
	height: 100%;
}
.standards__name {
	margin-bottom: 1.8rem;
	font-weight: 700;
	font-size: 1.6rem;
	line-height: 1.4;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	text-decoration: underline;
}
.standards__descript {
	font-weight: 500;
	font-size: 1.6rem;
	line-height: 1.5;
	margin-bottom: 2rem;
}
.standards__nav {
	margin-bottom: 2.5rem;
	display: flex;
	align-items: center;
	gap: 3.9rem;
	margin-top: auto;
}
.standards__info-image {
	display: none;
}

.standards__info-image-dc {
	position: relative;
	width: 100%;
	border-radius: 1rem;
	overflow: hidden;
	display: flex;
}
.standards__info-image-dc:before {
	content: "";
	padding-top: 52%;
	display: block;
}
.standards__info-img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.standards__image {
	flex: 0 0 74.3rem;
}

.pagination-num {
	font-size: 3.1rem;
}

.standards__collage {
	display: flex;
	border-radius: 1rem;
	overflow: hidden;
}
.standards__column {
	flex: 0 0 50%;
	display: flex;
	flex-direction: column;
}
.standards__column:nth-child(1) {
	border-right: 0.2rem solid #fff;
}
.standards__cell {
	position: relative;
	flex-grow: 1;
}
.standards__cell:nth-child(1) {
	border-bottom: 0.2rem solid #fff;
}
.standards__cell-name {
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	padding: 1.6rem 3.4rem 1.4rem;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.5) 100%);
	font-weight: 700;
	font-size: 1.6rem;
	line-height: 1.4;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: var(--white);
}
.standards__cell-img {
	height: 100%;
	object-fit: cover;
}

.standards__big-img {
	border-radius: 1rem;
}
.standards__info-dots {
	display: none;
}
.standards__info-image .swiper-wrapper {
	height: auto;
}

/*///////////
// Quiz
///////////*/
.quiz {
	position: relative;
	color: var(--white);
	background: url('../img/quiz-bg.jpg') no-repeat center;
	background-size: cover;
}
.quiz__overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #000;
	z-index: 0;
	opacity: 0.65;
	transition: opacity var(--baseAnim);
	will-change: opacity;	
}
.quiz__overlay_dark {
	opacity: 0.8;
}
.quiz__wrap {
	padding: 5rem 0;
	min-height: calc(100vh - var(--header));
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	z-index: 5;
}
.quiz__item {
	display: none;
	max-width: 45.8rem;
	width: 100%;
	opacity: 0;
	transition: opacity var(--baseAnim), transform var(--baseAnim);
	will-change: opacity, transform;	
	transform: translateX(1rem);
}
.quiz__item_width-max {
	max-width: initial;
	width: auto;
}
.quiz__item_current {
	opacity: 1;
	transform: translateX(0);
}
.quiz__item_final {
	max-width: 75.2rem;
}
.quiz__item-wrap {
	min-height: 69.5rem;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.quiz__first {
	text-align: center;
}
.quiz__subtitle {
	margin-top: 3.6rem;
	font-weight: 700;
	line-height: 1.4;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}
.quiz__start-button {
	margin-top: 6rem;
}
.quiz__head {
	margin-bottom: 10.6rem;
}
.quiz__numbering {
	margin-bottom: 1.5rem;
	font-size: 3rem;
	letter-spacing: 0.05em;
}
.quiz__checkboxes {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 1.9rem;
}
.quiz__buttons {
	display: flex;
	align-items: center;
	gap: 1rem;
	padding-top: 5rem;
	margin-top: auto;
}
.quiz__range {
	margin-bottom: 4.7rem;
}
.quiz__range-slider {
	border: 0;
	box-shadow: none;
	height: 0.2rem;
	background: var(--white);
	margin-bottom: 4.7rem;
}
.quiz__range-slider .noUi-connect {
	background: var(--white);
}
.quiz__range-slider .noUi-handle {
	width: 2.2rem;
	height: 2.2rem;
	border-radius: 2.2rem;
	top: -1.1rem;
	cursor: pointer;
	box-shadow: none;
	right: 0;
}
.quiz__range-slider .noUi-handle.noUi-handle-lower {
	right: -1.7rem;
}
.quiz__range-slider .noUi-handle:after,
.quiz__range-slider .noUi-handle:before {
	display: none;
}
.quiz__range-slider .noUi-tooltip {
	padding: 0;
	border: 0;
	bottom: 100%;
	background: transparent;
	margin-bottom: 0.2rem;
	font-weight: 500;
	font-size: 2.2rem;
	line-height: 1.4;
	letter-spacing: 0.04em;
	color: var(--white);
}
.quiz__form {
	display: flex;
	flex-direction: column;
	gap: 1.4rem;
}
.quiz__image {
	display: flex;
	flex-grow: 1;
	border-radius: 1rem;
	overflow: hidden;
}
.quiz__img {
	min-height: 100%;
	object-fit: cover;
}
.quiz__head-title {
	margin-bottom: 5.5rem;
}

/*///////////
// Infrastructure
///////////*/
.infrastructure__head {
	display: flex;
	align-items: flex-end;
	flex-wrap: wrap;
	gap: 3rem;
	row-gap: 2.8rem;
	margin-bottom: 3.6rem;
}
.infrastructure__map {
	width: 100%;
	height: 71.3rem;
}
.infrastructure__tab {
	display: none;
}
.infrastructure__tab_current {
	display: block;
}
.map {
	width: 100%;
	height: 100%;
	position: relative;
}
.map__main {
	width: 100%;
	height: 100%;
	position: relative;
	z-index: 0;
}
.map__panel {
	position: absolute;
	top: 4.6rem;
	left: 0;
	width: 100%;
	z-index: 5;
}
.map__buttons {
	display: flex;
	flex-wrap: wrap;
	column-gap: 2rem;
	row-gap: 1rem;
}

.map__marker-center {
	width: 5rem;
	max-width: initial;
	transform: translate(-50%, -50%);
}
.map__marker {
	width: 3.2rem;
	max-width: initial;
	transform: translate(-50%, -50%);
}
.map .ymaps3x0--main-engine-container {
	filter: grayscale(1);
}

.infrastructure__cards {
	background: #E7F2F6;
	padding: 5rem 0;
}
.cards__buttons {
	margin-bottom: 4.4rem;
	display: flex;
	flex-wrap: wrap;
	column-gap: 2rem;
	row-gap: 1rem;
}
.cards__main {
	display: flex;
	flex-wrap: wrap;
	gap: 3.4rem;
}
.cards__item {
	flex: 0 0 calc(25% - 2.55rem);
	display: none;
}
.cards__item_visable {
	display: block;
}
.cards__image {
	position: relative;
	border-radius: 1rem;
	overflow: hidden;
}
.cards__image:before {
	content: "";
	display: block;
	padding-top: 61.6%;
}
.cards__img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.cards__info {
	margin-top: 1rem;
	display: flex;
	gap: 1.1rem;
}
.cards__ic {
	width: 3.2rem;
}
.cards__name {
	font-weight: 700;
	line-height: 1.5;
	text-decoration: underline;
}
.cards__name:hover {
	text-decoration: none;
}
.cards__distance {
	line-height: 1.5;
}
.cards__pagination {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 0.6rem;
	margin-top: 4rem;
}

.btn-pagination {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 3.2rem;
	height: 3.2rem;
	border-radius: 3.2rem;
	background: var(--white);
	color: var(--blue);
	font-size: 1.4rem;
	transition: background var(--baseAnim), color var(--baseAnim);
	will-change: background, color;
}
.btn-pagination_active {
	background: var(--blue);
	color: var(--white);
}
.btn-pagination:hover {
	color: var(--white);
	background: var(--blue);
}

/*///////////
// Availability
///////////*/

.availability {
	background: url("../img/availability-bc.jpg") no-repeat center;
	background-size: cover;
	background-color: rgba(0, 0, 0, 0.8);
	color: var(--white);
	position: relative;
	overflow: hidden;
}

.availability__wrap {
	display: flex;
	align-items: flex-start;
}
.availability__descript {
	padding: 5rem 0;
	flex-grow: 1;
	position: relative;
	z-index: 5;
}
.availability__info {
	max-width: 68.3rem;
}
.availability__map {
	position: absolute;
	right: 0;
	top: 0;
	z-index: 0;
	height: 100%;
	max-width: 85.2rem;
}
.availability__map-img {
	height: 100%;
	object-fit: contain;
	object-position: center right;
}
.numbered-li {
	display: flex;
	flex-direction: column;
	gap: 1.6rem;
	font-weight: 500;
	font-size: 1.8rem;
	color: var(--white);
	counter-reset: list-num;
}
.numbered-li__item {
	counter-increment: list-num;
	padding-left: 3.5rem;
	position: relative;
}
.numbered-li__item span {
	color: var(--accent);
}
.numbered-li__item:before {
	content: counter(list-num);
	position: absolute;
	top: 0;
	left: 0;
	color: var(--accent);
}

/*///////////
// Docs
///////////*/
.docs__info {
	display: flex;
	gap: 3rem;
}
.docs__descript {
	font-size: 1.8rem;
	line-height: 1.6;
}
.system {
	display: flex;
	flex-direction: column;
	row-gap: 1.5rem;
	flex-shrink: 0;
}
.system__top {
	display: flex;
	align-items: center;
	gap: 0.5rem;
}
.system__logo {
	max-width: 21.1rem;
}
.docs__bc {
	margin-top: 5rem;
	object-fit: cover;
	height: 37rem;
}

/*///////////
// Escrow
///////////*/
.escrow {
	background: url("../img/escrow-bc.jpg") no-repeat center;
	background-size: cover;
	padding: 5rem 0;
}
.escrow__main {
	display: flex;
	align-items: flex-start;
	column-gap: 3rem;
}
.escrow__info {
	padding-top: 3.8rem;
	line-height: 1.5;
	max-width: 96.4rem;
}
.escrow__logo {
	flex:  0 0 23.6rem;
	display: flex;
	flex-direction: column;
	align-items: center;
}
.escrow__img {
	margin-bottom: 2.7rem;
}

/*///////////
// Progress
///////////*/

.progress__main {
	display: flex;
	gap: 3.6rem;
}
.progress__broadcast {
	flex-grow: 1;
}
.progress__stages {
	flex: 0 0 71.4rem;
}
.progress__label {
	color: var(--accent);
	margin-bottom: 1.5rem;
	font-weight: 500;
	font-size: 2.6rem;
}
.progress__year {
	display: none;
}
.progress__year_current {
	display: block;
}
.progress__nav-years {
	display: flex;
	gap: 1rem;
	padding: 0 4.5rem;
	margin-top: -1.9rem;
	position: relative;
	z-index: 5;
}
.progress__nav-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 0.5rem 2.2rem;
	height: 3.8rem;
	font-weight: 500;
	font-size: 1.4rem;
	letter-spacing: 0.03em;
	border-radius: 3rem;
	border: 0.1rem solid var(--accent);
	color: var(--accent);
	background: var(--white);
	transition: color var(--baseAnim), background var(--baseAnim);
	will-change: color, background;
}
.progress__nav-btn_current,
.progress__nav-btn:hover {
	background: var(--accent);
	color: var(--white);
}
.progress__slider {
	overflow: hidden;
	border-radius: 1rem;
}
.progress__slider .swiper-slide {
	width: 100%!important;
	height: initial!important;
	background: #efefef;
}
.progress__img-wrap {
	position: relative;
	display: block;
}
.progress__img-wrap:before {
	content: "";
	padding-top: 61.5%;
	display: block;
}
.progress__img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.progress__mounths {
	display: flex;
	align-items: flex-start;
	gap: 2rem;
	border: 0.2rem solid var(--accent);
	border-top: 0;
	border-bottom-left-radius: 1rem;
	border-bottom-right-radius: 1rem;
	padding: 4rem 4.5rem 3.9rem;
	margin-top: -1rem;
}
.progress__mounth-item {
	display: none;
}
.progress__mounth-item_current {
	display: block;
}
.progress__column {
	flex: 0 1 50%;
	display: flex;
	flex-direction: column;
	row-gap: 1.1rem;
}
.progress__month {
	font-weight: 500;
	font-size: 1.6rem;
	color: var(--accent);
	text-align: left;
	transition: color var(--baseAnim);
	will-change: color;
	position: relative;
	transition: color var(--baseAnim), padding var(--baseAnim);
	will-change: color, padding;
}
.progress__month:before {
	content: "• ";
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
	overflow: hidden;
	display: block;
	transition: opacity var(--baseAnim);
	will-change: opacity;
}
.progress__month[disabled] {
	color: var(--gray-light2);
	cursor: default;
}
.progress__month:not([disabled]):hover {
	color: var(--dark);
}
.progress__month_current {
	color: var(--dark);
	padding-left: 1.5rem;
}
.progress__month_current:before {
	opacity: 1;
}
.progress__switch {
	margin-top: 1.4rem;
}
.progress__video {
	position: relative;
	border-radius: 1rem;
	overflow: hidden;
	display: none;
}
.progress__video_current {
	display: block;
}
.progress__video:before {
	content: "";
	padding-top: 75%;
	display: block;
}
.progress__video iframe {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}
.progress__prev {
	position: absolute;
	left: 2rem;
	top: 50%;
	transform: translateY(-50%);
	z-index: 10;
}
.progress__next {
	position: absolute;
	right: 2rem;
	top: 50%;
	transform: translateY(-50%);
	z-index: 10;
}


/*///////////
// Office
///////////*/
.office__address {
	display: flex;
	gap: 3.6rem;
	margin-bottom: 3rem;
}
.office__image {
	flex: 0 1 71.4rem;
	border-radius: 1rem;
	overflow: hidden;
}
.office__info {
	flex: 1 1 60rem;
}
.office__row {
	margin-bottom: 3.7rem;
}
.office__label {
	font-size: 1.8rem;
	line-height: 1.6;
}
.office__val {
	display: inline-flex;
	font-weight: 700;
	line-height: 1.6;
	transition: color var(--baseAnim);
	will-change: color;
}
a.office__val:hover {
	color: var(--accent);
}
.office__button {
	margin-top: 1rem;
}
.office__table {
	display: grid;
	grid-template-columns: auto auto;
	row-gap: 3.2rem;
    column-gap: 2rem;
}
.office__table-item {
	flex: 0 0 calc(50% - 2.7rem);
}
.office__social {
	margin-top: 0.7rem;
}
.social-btn {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	font-weight: 500;
	font-size: 1.4rem;
	line-height: 1.35;
	letter-spacing: -0.03em;
	margin-top: 0.7rem;
	transition: color var(--baseAnim);
	will-change: color;
}
.social-btn__ic {
	width: 2.2rem;
}
.social-btn:hover {
	color: var(--accent);
}

.office__feedback {
	display: flex;
	align-items: flex-end;
	gap: 3.6rem;
}
.office__map {
	border-radius: 1rem;
	overflow: hidden;
	height: 41.6rem;
	flex: 0 1 71.4rem;
	position: relative;
}
.office__map-main {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.office__form {
	flex: 1 1 60rem;
	display: flex;
	justify-content: center;
}

.form {
	max-width: 56rem;
}
.form__title {
	margin-bottom: 1.8rem;
}
.form__label {
	display: flex;
	margin-bottom: 1.5rem;
	flex-grow: 1;
}
.form__grid {
	display: flex;
	gap: 1.5rem;
}
.form__bottom {
	margin-top: 3.5rem;
	display: flex;
	align-items: center;
	gap: 2.4rem;
}

/*///////////
// Footer
///////////*/
.footer {
	margin-top: 5rem;
	padding-top: 1.2rem;
	padding-bottom: 0.5rem;
	color: var(--white);
	background: var(--accent);
}
.footer__main {
	display: flex;
	justify-content: space-between;
}
.footer__copyright {
	font-weight: 500;
	font-size: 1.6rem;
	display: flex;
	align-items: center;
	gap: 1rem;
}
.footer__copyright-logo {
	width: 5.6rem;
}
.footer__dev {
	display: flex;
	align-items: center;
	gap: 1.5rem;
	font-size: 1.6rem;
}
.footer__dev-logo {
	width: 6.4rem;
}

/*///////////
// Popups
///////////*/
.popup {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1100;
	background: rgba(0, 0, 0, 0.65);
	transition: opacity 0.3s ease;
	will-change: opacity;
	opacity: 0;
	display: none;
}
.popup__center {
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: auto;
	height: 100%;
	padding: 40px 0;
}
.popup__center {
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: auto;
	height: 100%;
	padding: 40px 0;
}
.popup__container {
	margin: auto;
	width: 100%;
}

.popup-white {
	max-width: 133.9rem;
	margin: 0 auto;
	width: 100%;
	background: #fff;
	border-radius: 1rem;
	padding: 5rem 12.5rem;
	position: relative;
}
.popup-white_small {
	max-width: 60rem;
	padding-left: var(--indtContainer)!important;
	padding-right: var(--indtContainer)!important;
}
.popup-white_large {
	padding: 5rem 6.5rem;
}
.popup-white__close {
	position: absolute;
	top: 4.5rem;
	right: 4.5rem;
	width: 4.5rem;
	padding: 0.5rem;
	transition: color var(--baseAnim);
	will-change: color;
}
.popup-white__close path {
	stroke: currentColor;
}
.popup-white__close:hover {
	color: var(--accent);
}
.popup-white__title {
	text-align: center;
	margin-bottom: 3rem;
}
.popup-white__title_large {
	margin-bottom: 5.4rem;
}
.popup-white__button {
	margin-top: 4.3rem;
	display: flex;
	justify-content: center;
}

.popup-banks__text {
	max-width: 108.9rem;
	margin: 0 auto;
}
.popup-banks__main {
	margin-top: 3.2rem;
}

.popup-form {
	max-width: 33.9rem;
	width: 100%;
	display: flex;
	flex-direction: column;
	margin: 0 auto;
}
.popup-form__close {
	width: 4rem;
	padding: 0.5rem;
	transition: color var(--baseAnim);
	will-change: color;
	margin-bottom: 2rem;
	margin-left: auto;
	color: var(--white);
}
.popup-form__close path {
	stroke: currentColor;
}
.popup-form__close:hover {
	color: var(--accent);
}
.popup-form__main {
	background: var(--accent);
	color: var(--white);
	padding: 1.7rem 2rem 3rem;
	border-radius: 1rem;
}
.popup-form__title {
	margin-bottom: 2.5rem;
	font-weight: 500;
	font-size: 2.6rem;
} 

.form-min__label {
	margin-bottom: 1.5rem;
	display: block;
}
.form-min__button {
	margin-top: 3rem;
}
.form-min__checkbox {
	margin-top: 1rem;
}


.banks__contacts {
	display: flex;
	flex-wrap: wrap;
	column-gap: 9.5rem;
	row-gap: 4.3rem;
}
.banks__contact {
	display: flex;
	align-items: center;
	column-gap: 2.1rem;
}
.banks__image {
	max-width: 20.6rem;
	width: 100%;
	background: var(--blye-light);
	border-radius: 1rem;
	padding: 1.5rem;
}
.banks__name {
	font-weight: 700;
	line-height: 1.6;
	margin-bottom: 0.6rem
}
.banks__manager {
	margin-bottom: 1.3rem;
}
.banks__manager-title {
	font-weight: 700;
	font-size: 1.4rem;
	letter-spacing: 0.03em;
	text-transform: uppercase;
	color: var(--accent);
}
.banks__manager-name {
	font-weight: 500;
	font-size: 1.4rem;
	line-height: 1.6;
	text-transform: uppercase;
}
.banks__manager-phone {
	display: flex;
	align-items: center;
	gap: 1.1rem;
	font-size: 2rem;
	line-height: 1.2;
	font-weight: 500;
}
.banks__social {
	width: 2rem;
	flex-shrink: 0;
}
.banks__manager-email {
	display: inline-flex;
	font-size: 1.6rem;
	line-height: 1.3;
	font-weight: 500;
}
.banks__manager-email:hover {
	text-decoration: underline;
}
.banks__items {
	display: flex;
	flex-wrap: wrap;
	gap: 3.7rem;
	margin-top: 8.5rem;
}
.banks__item {
	flex: 0 0 20.6rem;
	padding: 1.4rem 2rem;
	background: var(--blye-light);
	border-radius: 1rem;
}
.banks__bottom {
	margin-top: 1.4rem;
	border-top: 0.2rem solid #2E6E85;
	padding-top: 1rem;
	text-align: center;
}
.banks__link {
	font-weight: 700;
	font-size: 1.3rem;
	line-height: 1.4;
	letter-spacing: 0.03em;
	text-transform: uppercase;
	color: #2e6e85;
	transition: color var(--baseAnim);
	will-change: color;
}
.banks__link:hover {
	color: var(--accent);
}

.table-escrow {
	overflow: auto;
	padding-bottom: 1rem;
}
.table-escrow__main {
	min-width: 108rem;
}
.table-escrow td {
	padding: 0.7rem;
	vertical-align: middle;
}
.table-escrow__floor {
	font-weight: 700;
	font-size: 1.4rem;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: #adbacd;
	white-space: nowrap;
}
.table-escrow__empty {
	height: 6.8rem;
	background: var(--blye-light);
	border-radius: 0.9rem;
	width: 19rem;
}
.table-escrow__die {
	display: flex;
	flex-direction: column;
	text-align: center;
	border-radius: 0.9rem;
	background: #01cca7;
	padding: 0.6rem 1rem;
	color: var(--white);
}
.table-escrow__die_accent-light {
	background: #00BD79;
}
.table-escrow__die_accent{
	background: #01C059;
}
.table-escrow__name {
	white-space: nowrap;
	font-weight: 700;
	font-size: 1.5rem;
	line-height: 1.1;
	margin-bottom: 0.4rem;
}
.table-escrow__profitability {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.4rem;
	font-weight: 700;
	font-size: 1.5rem;
	line-height: 1.1;
	margin-bottom: 0.4rem;
}
.table-escrow__graphic {
	display: flex;
	align-items: center;
	gap: 0.2rem;
}
.table-escrow__ar {
	width: 1.5rem;
}
.table-escrow__ar_disabled {
	opacity: 0.15;
}
.table-escrow__ar_disabled path {
	fill: var(--dark);
}
.table-escrow__info {
	font-weight: 700;
	font-size: 1.1rem;
	line-height: 1.4;
	color: var(--dark);
	opacity: 0.6;
}

.photo-popup {
	max-width: 88.8rem;
	width: 100%;
	display: flex;
	flex-direction: column;
	margin: 0 auto;
}
.photo-popup__close {
	width: 4rem;
	padding: 0.5rem;
	transition: color var(--baseAnim);
	will-change: color;
	margin-bottom: 1.5rem;
	margin-left: auto;
	color: var(--white);
}
.photo-popup__close path {
	stroke: currentColor;
}
.photo-popup__close:hover {
	color: var(--accent);
}
.photo-popup__body {
	background: var(--white);
	color: var(--white);
	padding: 0 6.7rem;
	border-radius: 1rem;
	width: 100%;
}
.photo-popup__image {
	width: 100%;
	aspect-ratio: 75.5 / 70.7;
}

.btn-ready {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    padding: 0.8rem 3rem;
    text-align: center;
    color: var(--white);
    border-radius: 5rem;
    font-weight: 700;
    font-size: 2.7rem;
    line-height: 120%;
    letter-spacing: 0.04em;
    background: #0f8d23;
}

.btn-ready__m {
    margin-top: -0.4rem;
    font-size: 2rem;
    align-self: flex-start;
}