.section-item {
	padding-top: 120px;
	padding-bottom: 120px;
}
.h2 {
	font-family: "Onest", sans-serif;
	font-weight: 500;
	font-size: 58px;
	line-height: 115%;
	letter-spacing: -0.02em;
	color: #1e1e1e;
}
.h3 {
	font-family: "Onest", sans-serif;
	font-weight: 500;
	font-size: 36px;
	line-height: 115%;
	letter-spacing: -0.02em;
	color: #1e1e1e;
}
.h4 {
	font-family: "Onest", sans-serif;
	font-weight: 500;
	font-size: 28px;
	line-height: 100%;
	letter-spacing: -0.02em;
	color: #1e1e1e;
}
.btn-item {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 2px;
	background-color: #fff;
	padding: 16px 45px;
	font-weight: 700;
	font-size: 16px;
	line-height: 140%;
	text-transform: uppercase;
	color: #191e39;
	position: relative;
	transition: all 0.3s ease-in-out;
}
.btn-item::before {
	content: "";
	position: absolute;
	border-radius: 2px;
	top: 0;
	left: 0;
	width: calc(100% - 4px);
	height: calc(100% - 4px);
	border: 2px solid transparent;
	transition: border 0.3s ease-in-out;
}
.btn-item:hover {
	background-color: #191e39;
	color: #fff;
}
.btn-item:hover::before {
	border-color: #fff;
}
.btn-item_blue {
	background-color: #191e39;
	color: #fff;
}
.btn-item_blue:hover {
	background-color: #fff;
	color: #191e39;
}
.btn-item_blue:hover::before {
	border-color: #191e39;
}
.main-items {
	display: flex;
	flex-direction: column;
	gap: 20px;
}
.main-item {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 20px;
	border-bottom: 1px solid #5f6468;
}
.main-item__title {
	font-family: "Onest", sans-serif;
	font-weight: 500;
	font-size: 22px;
	line-height: 100%;
	letter-spacing: -0.02em;
	color: #1e1e1e;
}
.main-item__value {
	font-weight: 500;
	font-size: 18px;
	line-height: 150%;
	text-align: right;
	color: #363636;
}

.main-tabs {
	display: flex;
	position: relative;
	padding-bottom: 20px;
}
.main-tabs::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	border-radius: 100px;
	width: 100%;
	height: 6px;
	background-color: #f5f8fb;
}
.main-tab {
	flex-basis: 50%;
	position: relative;
	font-family: "Onest", sans-serif;
	font-weight: 400;
	font-size: 28px;
	line-height: 100%;
	letter-spacing: -0.02em;
	color: #1e1e1e;
	cursor: pointer;
	transition: all 0.3s ease-in-out;
}
.main-tab::before {
	content: "";
	position: absolute;
	left: 0;
	top: 8px;
	border-radius: 100px;
	width: 12px;
	height: 12px;
	background-color: #191e39;
	opacity: 0;
	transition: opacity 0.3s ease-in-out;
}
.main-tab::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: -20px;
	border-radius: 100px;
	width: 100%;
	height: 6px;
	background-color: #191e39;
	opacity: 0;
	z-index: 1;
	transition: opacity 0.3s ease-in-out;
}
.main-tab:hover {
	font-weight: 600;
	color: #191e39;
}
.main-tab.active {
	padding-left: 24px;
	font-weight: 600;
	color: #191e39;
}
.main-tab.active::before {
	opacity: 1;
}
.main-tab.active::after {
	opacity: 1;
}

.main-items-tabs__wrap {
	display: flex;
	align-items: flex-start;
	flex-direction: column;
	gap: 10px;
}
.main-item-tab {
	display: inline-flex;
	font-weight: 500;
	font-size: 16px;
	line-height: 140%;
	color: #191e39;
	border: 1px solid #d2dce3;
	border-radius: 1000px;
	padding: 14px 25px;
	cursor: pointer;
	transition: all 0.3s ease-in-out;
}
.main-item-tab:hover {
	border-color: #191e39;
}
.main-item-tab.active {
	background-color: #c2def9;
	border-color: #c2def9;
}

/*********************** RESPONSIVE TABS -> SELECT ***********************/
.tabs-select {
	position: relative;
	width: 100%;
	border-radius: 2px;
	display: none;
}

@media (max-width: 768px) {
	.tabs--desktop {
		display: none !important;
	}
	.tabs-select {
		display: block;
	}
	.tabs-select .filter__select {
		width: 100%;
	}
	.tabs-select .filter__block {
		width: 100%;
	}
}

@media (max-width: 1200px) {
	.section-item {
		padding-top: 100px;
		padding-bottom: 100px;
	}
	.h2 {
		font-size: 42px;
	}
	.h3 {
		font-size: 32px;
	}
	.h4 {
		font-size: 24px;
	}
	.main-tabs {
		padding-bottom: 16px;
	}
	.main-tabs::after {
		height: 4px;
	}
	.main-tab {
		font-size: 22px;
	}
	.main-tab::before {
		top: 7px;
		width: 8px;
		height: 8px;
	}
	.main-tab.active {
		padding-left: 16px;
	}
	.main-tab::after {
		bottom: -16px;
		height: 4px;
	}
	.main-item-tab {
		font-size: 15px;
	}
}
@media (max-width: 992px) {
	.section-item {
		padding-top: 80px;
		padding-bottom: 80px;
	}
	.h2 {
		font-size: 38px;
	}
	.h3 {
		font-size: 28px;
	}
	.main-items-tabs {
		width: calc(100% + 30px);
		overflow: auto;
		margin-left: -15px;
		margin-right: -15px;
		padding-left: 15px;
		padding-right: 15px;
	}
	.main-items-tabs__wrap {
		flex-direction: row;
	}
	.main-item-tab {
		padding: 14px 15px;
		white-space: nowrap;
	}
}
@media (max-width: 768px) {
	.h3 {
		font-size: 22px;
	}
	.h4 {
		font-size: 22px;
	}
	.main-items {
		gap: 14px;
	}
	.main-item__title {
		font-size: 16px;
	}
	.main-item__value {
		font-size: 15px;
	}
}

/*********************** HEADER ***********************/
.header--item {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 100;
}
.header--item .header__logo span,
.header--item .header__tel a {
	color: #fff;
}
.header--item .header__tel a:hover {
	-webkit-text-decoration-color: #fff;
	text-decoration-color: #fff;
}
.header--item .header__logo {
	position: relative;
}
.header--item .header__logo::before {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 64px;
	height: 76px;
	background-image: url(../img/logo-white.svg);
	background-size: contain;
	background-repeat: no-repeat;
}
.header--item .header__btns a svg {
	fill: #fff;
}
.header--item .header__btns a:hover {
	border-color: #fff;
}
.header--item .header__btns a:hover svg {
	fill: #fff;
}
.header--item .header__logo img {
	opacity: 0;
}
@media (max-width: 768px) {
	.header--item .header__logo::before {
		width: 50px;
		height: 60px;
	}
}
@media screen and (max-width: 576px) {
	header.header--item {
		box-shadow: none;
	}
	.header--item .navbar span {
		background: #fff;
	}
}

/*********************** PROMO ***********************/
.promo {
	position: relative;
	z-index: 16;
	height: 100dvh;
	padding-top: 128px;
	padding-bottom: 128px;
}
.promo-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.promo-bg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.promo .container {
	height: 100%;
}
.promo__body {
	height: 100%;
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
}
.promo__wrap {
	max-width: 700px;
	display: flex;
	align-items: flex-start;
	flex-direction: column;
	gap: 20px;
}
.promo__address {
	font-style: normal;
	font-weight: 600;
	font-size: 14px;
	line-height: 140%;
	color: #fff;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 6px 9px;
	border-radius: 1000px;
	backdrop-filter: blur(30px);
	background-color: rgba(255, 255, 255, 0.08);
}
.promo__title {
	font-weight: 600;
	font-size: 64px;
	line-height: 115%;
	letter-spacing: -0.02em;
	text-transform: uppercase;
	color: #fff;
	margin-bottom: 20px;
}
.promo__items {
	display: flex;
	justify-content: flex-end;
	align-items: flex-end;
	flex-direction: column;
	gap: 11px;
}
.promo__item {
	display: inline-flex;
	font-weight: 500;
	font-size: 16px;
	line-height: 140%;
	color: #191e39;
	border-radius: 1000px;
	padding: 14px 25px;
	background-color: #c2def9;
}
.promo__btn {
	display: none;
}
@media (max-width: 1200px) {
	.promo {
		padding-top: 100px;
		padding-bottom: 100px;
	}
	.promo__title {
		font-size: 48px;
	}
	.promo__item {
		padding: 10px 20px;
	}
}
@media (max-width: 992px) {
	.promo {
		padding-top: 80px;
		padding-bottom: 80px;
	}
	.promo .container {
		text-align: center;
	}
	.promo__body {
		align-items: center;
		justify-content: center;
		flex-direction: column;
		gap: 50px;
	}
	.promo__title {
		margin-bottom: 0;
	}
	.promo__wrap {
		align-items: center;
		text-align: center;
	}
	.promo__wrap .btn-item {
		display: none;
	}
	.promo__items {
		justify-content: center;
		align-items: center;
	}
	.promo__btn {
		display: inline-flex;
	}
}
@media (max-width: 768px) {
	.promo {
		padding-top: 20px;
		padding-bottom: 20px;
		height: 680px;
	}
	.promo__body {
		height: calc(100% - 55px);
	}
	.promo__address {
		font-size: 12px;
		gap: 3px;
		padding: 6px 8px;
	}
	.promo__title {
		font-size: 38px;
	}
	.promo__item {
		padding: 9px 16px;
		font-size: 14px;
	}
	.promo__btn {
		width: 100%;
	}
}

/*********************** TERMS ***********************/
.terms {
	background-color: #f5f8fb;
}
.terms__body {
	display: flex;
	justify-content: space-between;
}
.terms__wrap {
	max-width: 100%;
}
.terms__wrap .h2{
	font-size: 52px;
}
.terms__img {
	width: 100%;
	border-radius: 4px;
	overflow: hidden;
}
.terms__img img {
	max-width: 309px;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.terms__info {
	margin-top: 38px;
}
.terms__subtitle {
	font-family: "Onest", sans-serif;
	font-weight: 500;
	font-size: 22px;
	line-height: 100%;
	letter-spacing: -0.02em;
	color: #1e1e1e;
}
.terms__items {
	width: 650px;
}
@media (max-width: 1200px) {
	.terms__items {
		width: 550px;
	}
	.terms__info {
		margin-top: 24px;
	}
}
@media (max-width: 992px) {
	.terms__body {
		flex-direction: column;
		gap: 20px;
	}
	.terms__wrap {
		max-width: 100%;
		display: flex;
		flex-direction: column-reverse;
		gap: 40px;
	}
	.terms__wrap .h2 {
		font-size: 36px;
	}
	.terms__img img {
		max-width: 100%;
	}
	.terms__info {
		margin-top: 0;
	}
}
@media (max-width: 768px) {
	.terms__items {
		width: 100%;
	}
	.terms__subtitle {
		font-size: 16px;
		margin-top: 4px;
	}
}

/*********************** MAIN PROJECT ***********************/
.main-project {
	position: relative;
}
.main-project__bg {
	position: absolute;
	top: 295px;
	left: calc(50% - 770px);
	z-index: -1;
}
.main-project__bg img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}
.main-project__top {
	display: flex;
	justify-content: space-between;
	margin-bottom: 60px;
}
.main-project__box {
	max-width: 648px;
	padding-top: 58px;
}
.main-project__caption {
	max-width: 540px;
}
.main-project__desc {
	margin-top: 30px;
}
.main-project__desc p {
	font-weight: 500;
	font-size: 16px;
	line-height: 150%;
	color: #363636;
}
.main-project__desc p + p {
	margin-top: 20px;
}
.main-project__body {
	position: relative;
	border-radius: 4px;
	overflow: hidden;
}
.main-project__swiper {
	position: relative;
	z-index: 8;
}
.main-project__bottom {
	position: absolute;
	right: 40px;
	bottom: 40px;
	z-index: 16;
	display: inline-flex;
	gap: 10px;
}
.main-project__info {
	display: inline-flex;
	font-weight: 500;
	font-size: 16px;
	line-height: 150%;
	color: #fff;
	padding: 16px 25px;
	border-radius: 1000px;
	backdrop-filter: blur(30px);
	background-color: rgba(255, 255, 255, 0.12);
}
.main-project__arrows {
	display: inline-flex;
	gap: 72px;
	padding: 13px 16px;
	border-radius: 1000px;
	backdrop-filter: blur(30px);
	background-color: rgba(255, 255, 255, 0.12);
}
@media (max-width: 1200px) {
	.main-project__bg {
		top: 260px;
		left: 20px;
		width: 480px;
	}
	.main-project__box {
		max-width: 520px;
		padding-top: 0px;
	}
	.main-project__bottom {
		right: 24px;
		bottom: 24px;
	}
}
@media (max-width: 992px) {
	.main-project__top {
		flex-direction: column;
		gap: 20px;
	}
	.main-project__caption {
		max-width: 450px;
	}
	.main-project__box {
		max-width: 100%;
	}
}
@media (max-width: 768px) {
	.main-project__bg {
		top: 15px;
		left: auto;
		width: 100%;
		right: 19px;
	}
	.main-project__top {
		margin-bottom: 40px;
	}
	.main-project__desc {
		margin-top: 18px;
	}
	.main-project__desc p {
		font-weight: 400;
		font-size: 15px;
		line-height: 160%;
	}
	.main-project__bottom {
		right: 0px;
		bottom: 0px;
		padding: 10px;
		width: 100%;
		justify-content: center;
		gap: 0;
	}
	.main-project__arrows {
		gap: 0;
		padding: 0;
		border-radius: 0;
		backdrop-filter: none;
		background-color: transparent;
	}
	.main-project__info {
		font-size: 13px;
		padding: 7px 24px;
	}
	.main-project-arrow {
		display: flex;
		align-items: center;
		justify-content: center;
		position: absolute;
		top: 10px;
		left: 10px;
		border-radius: 1000px;
		width: 50px;
		height: 34px;
		backdrop-filter: blur(30px);
		background: rgba(255, 255, 255, 0.12);
	}
	.main-project-arrow:last-child {
		left: auto;
		right: 10px;
	}
}

/*********************** MAIN BENEFITS ***********************/
.main-benefits {
	background-color: #f5f8fb;
	overflow: hidden;
}
.main-benefits__top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 110px;
}
.main-benefits__arrows {
	display: flex;
	align-items: center;
	gap: 10px;
}
.main-benefits-arrow {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 2px;
	width: 56px;
	height: 56px;
	background-color: #e8eef2;
	cursor: pointer;
	transition: background-color 0.3s ease-in-out;
}
.main-benefits-arrow svg * {
	transition: all 0.3s ease-in-out;
}
.main-benefits-arrow:hover {
	background-color: #191e39;
}
.main-benefits-arrow:hover svg * {
	stroke: #fff;
}
.main-benefits .swiper {
	overflow: visible;
}
.main-benefits-caption {
	min-height: 56px;
	margin-bottom: 30px;
}
.main-benefits-card {
	position: relative;
	border-radius: 4px;
	overflow: hidden;
}
.main-benefits-card__img {
	width: 100%;
	height: 100%;
}
.main-benefits-card__img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.main-benefits-icon {
	position: absolute;
	width: 64px;
	height: 64px;
	top: 20px;
	right: 20px;
	z-index: 16;
	display: flex;
	align-items: center;
	justify-content: center;
}
.main-benefits-icon svg * {
	transition: all 0.3s ease-in-out;
	transition-delay: 0.3s;
}
.main-benefits-icon__item {
	position: absolute;
	width: 24px;
	height: 24px;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
.main-benefits-card__wrap {
	position: absolute;
	bottom: 0;
	left: 0;
	padding: 20px 16px;
	width: 100%;
	height: 100%;
}
.main-benefits-card__wrap::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	backdrop-filter: blur(20px);
	background: rgba(25, 30, 57, 0.5);
	z-index: 2;
	opacity: 0;
	transition: opacity 0.3s ease-in-out;
	transition-delay: 0.3s;
}
.main-benefits-card__desc {
	position: relative;
	height: 100%;
	display: flex;
	align-items: flex-end;
	font-weight: 500;
	font-size: 14px;
	line-height: 150%;
	color: #fff;
	z-index: 4;
	transform: translateY(110%);
	transition: transform 0.3s ease-in-out;
}
.main-benefits-card:hover .main-benefits-card__wrap::after {
	transition-delay: 0s;
	opacity: 1;
}
.main-benefits-card:hover .main-benefits-card__desc {
	transition-delay: 0.3s;
	transform: translateY(0%);
}
.main-benefits-card:hover .main-benefits-icon__bg svg * {
	transition-delay: 0s;
	fill: #fff;
}
.main-benefits-card:hover .main-benefits-icon__item svg * {
	transition-delay: 0s;
	stroke: #191e39;
}
@media (max-width: 1200px) {
	.main-benefits__top {
		margin-bottom: 80px;
	}
	.main-benefits-caption {
		min-height: 48px;
		margin-bottom: 16px;
	}
}
@media (max-width: 992px) {
}
@media (max-width: 768px) {
	.main-benefits-caption {
		min-height: auto;
		margin-bottom: 16px;
	}
	.main-benefits-caption br {
		display: none;
	}
	.main-benefits__top {
		margin-bottom: 50px;
	}
	.main-benefits__arrows {
		display: none;
	}
	.main-benefits-icon {
		right: auto;
		left: 20px;
	}
}

/*********************** ORDER ***********************/
.order {
	position: relative;
	height: 100dvh;
	overflow: hidden;
}
.order-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.order-bg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.order-bg::after {
	content: "";
	position: absolute;
	bottom: -280px;
	left: 0;
	width: 100%;
	height: 465px;
	background: linear-gradient(0deg, #191e39 64.85%, rgba(25, 30, 57, 0) 100%);
}
.order__body {
	max-width: 572px;
}
.order__top {
	display: flex;
	flex-direction: column;
	gap: 20px;
	margin-bottom: 60px;
}
.order__title {
	color: #fff;
}
.order__subtitle {
	font-weight: 500;
	font-size: 22px;
	line-height: 120%;
	color: #fff;
}
.order-form {
	border-radius: 4px;
	background-color: #fff;
	padding: 30px;
}
.order-form .input {
	background-color: #f5f8fb;
	border-color: #dee6ee;
	border-radius: 2px;
}
.order-form__bottom {
	padding-top: 10px;
	display: flex;
	flex-direction: column;
	gap: 14px;
}
.order-form .checkbox label {
	padding: 0px 0px 0px 33px;
	font-size: 13px;
	line-height: 116%;
	color: #8a8a8a;
	letter-spacing: -0.02em;
}
.order-form .checkbox label a {
	display: inline;
	color: #8a8a8a;
	text-decoration: underline;
	text-decoration-skip-ink: none;
}
.order-form .checkbox label a:hover {
	color: #191e39;
}
.order-form .checkbox label:before {
	top: 0;
	left: 0;
}
.order-form .checkbox input:checked + label:after {
	top: 0px;
	left: 0px;
}
@media (max-width: 1200px) {
	.order__body {
		max-width: 500px;
	}
	.order__top {
		margin-bottom: 40px;
	}
	.order__subtitle {
		font-size: 20px;
	}
	.order-form {
		padding: 20px;
	}
}
@media (max-width: 992px) {
}
@media (max-width: 768px) {
	.order-form__bottom {
		padding-top: 6px;
		gap: 20px;
	}
}

/*********************** MAIN INFO ***********************/
.main-info {
	position: relative;
}

/*********************** MAIN CONTACTS ***********************/
.main-contacts .container {
	position: relative;
	z-index: 16;
}
.main-contacts__top-bg {
	position: absolute;
	top: -85px;
	right: -105px;
	z-index: -1;
}
.main-contacts__bottom-bg {
	position: absolute;
	bottom: -75px;
	left: -105px;
	z-index: -1;
}
.main-contacts__title {
	margin-bottom: 50px;
}
.main-contacts__map {
	width: 100%;
	height: 530px;
	border-radius: 4px;
	overflow: hidden;
}
.main-contacts__map > div {
	width: 100%;
	height: 100%;
}
.main-contacts__map iframe {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
@media (max-width: 1200px) {
	.main-contacts__title {
		margin-bottom: 30px;
	}
	.main-contacts__map {
		height: 430px;
	}
}
@media (max-width: 992px) {
}
@media (max-width: 768px) {
	.main-contacts {
		padding-bottom: 80px;
	}
	.main-contacts__map {
		height: 520px;
	}
}
@media (max-width: 760px) {
	.main-contacts__top-bg {
		top: -55px;
		right: 15px;
	}
	.main-contacts__bottom-bg {
		bottom: -80px;
		left: 15px;
	}
}

/*********************** MAIN COMPLEXES ***********************/
.main-complexes {
	position: relative;
	margin-top: 120px;
	overflow: hidden;
}
.main-complexes__swiper {
	overflow: visible;
}
.main-complexes__title {
	margin-bottom: 50px;
}
.main-complexes__slide {
	height: auto;
}

.main-complexes-card {
	height: 100%;
	border-radius: 4px;
	background-color: #f5f8fb;
	overflow: hidden;
}
.main-complexes-card__top {
	position: relative;
	height: 270px;
}
.main-complexes-card__img {
	width: 100%;
	height: 100%;
	overflow: hidden;
}
.main-complexes-card__img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: all 0.3s ease-in-out;
}
.main-complexes-card__tag {
	position: absolute;
	top: 16px;
	left: 16px;
	z-index: 8;
	border-radius: 1000px;
	padding: 8px 15px;
	backdrop-filter: blur(20px);
	background-color: rgba(255, 255, 255, 0.12);
	font-weight: 700;
	font-size: 15px;
	line-height: 140%;
	color: #fff;
}
.main-complexes-card__bottom {
	height: calc(100% - 270px);
	position: relative;
	padding: 20px 16px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 28px;
}
.main-complexes-card__caption {
	font-family: "Onest", sans-serif;
	font-weight: 500;
	font-size: 22px;
	line-height: 100%;
	letter-spacing: -0.02em;
	color: #1e1e1e;
}
.main-complexes-card__price {
	font-weight: 500;
	font-size: 16px;
	line-height: 100%;
	letter-spacing: -0.02em;
	color: #363636;
}
.main-complexes-card__arrow {
	position: absolute;
	right: 10px;
	bottom: 10px;
	border-radius: 2px;
	width: 42px;
	height: 42px;
	background: #e8eef2;
	display: flex;
	align-items: center;
	justify-content: center;
	transform-origin: center center;
	transform: scale(0);
	transition: all 0.3s ease-in-out;
}
.main-complexes-card:hover .main-complexes-card__arrow {
	transform: scale(1);
}
.main-complexes-card:hover .main-complexes-card__img img {
	transform: scale(1.05);
}
@media (max-width: 1200px) {
	.main-complexes {
		margin-top: 100px;
	}
	.main-complexes__title {
		margin-bottom: 30px;
	}
}
@media (max-width: 992px) {
	.main-complexes {
		margin-top: 80px;
	}
	.main-complexes__title {
		margin-bottom: 26px;
	}
}
@media (max-width: 768px) {
}

/*********************** MAIN PRICES ***********************/
.main-prices {
	background-color: #e8eef2;
	overflow: hidden;
}
.main-prices__top {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 110px;
}
.main-prices-arrows {
	display: flex;
	gap: 10px;
}
.main-prices-arrow {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 2px;
	width: 56px;
	height: 56px;
	background-color: #f5f8fb;
	transition: all 0.3s ease-in-out;
}
.main-prices-arrow svg * {
	transition: all 0.3s ease-in-out;
}
.main-prices-arrow:hover {
	background-color: #191e39;
}
.main-prices-arrow:hover svg * {
	stroke: #fff;
}
.main-prices__wrapper {
	margin-top: 40px;
}
.main-prices-card {
	padding: 20px;
	border-radius: 4px;
	background-color: #fff;
}
.main-prices__swiper {
	overflow: visible;
}
.main-prices-card__img {
	width: 100%;
	height: 320px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 35px;
}
.main-prices-card__img img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}
.main-prices-card__top {
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-weight: 400;
	font-size: 20px;
	line-height: 100%;
	letter-spacing: -0.02em;
	color: #363636;
	margin-bottom: 40px;
}
.main-prices-card__info {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.main-prices-card__price {
	font-weight: 600;
	font-size: 22px;
	line-height: 100%;
	letter-spacing: -0.02em;
	color: #363636;
}
.main-prices-card__price span {
	font-weight: 500;
	font-size: 16px;
	color: #363636;
	padding-right: 4px;
}
@media (max-width: 1400px) {
	.main-prices__top {
		margin-bottom: 80px;
	}
	.main-prices__wrapper {
		margin-top: 32px;
	}
}
@media (max-width: 1200px) {
	.main-prices__top {
		margin-bottom: 60px;
	}
	.main-prices__wrapper {
		margin-top: 24px;
	}
}
@media (max-width: 992px) {
	.main-prices__top {
		margin-bottom: 40px;
	}
	.main-prices-card {
		padding: 20px 15px;
	}
	.main-prices-card__img {
		margin-bottom: 20px;
	}
	.main-prices-card__top {
		align-items: flex-start;
		font-weight: 500;
		font-size: 16px;
		margin-bottom: 30px;
		flex-direction: column;
		gap: 8px;
	}
	.main-prices-card__value {
		color: #8a8a8a;
	}
	.main-prices-card__price {
		font-size: 16px;
	}
	.main-prices-card__price span {
		font-size: 14px;
	}
	.main-prices-card .btn-item {
		padding: 16px 20px;
		font-size: 13px;
	}
}
@media (max-width: 768px) {
	.main-prices__top {
		margin-bottom: 30px;
	}
	.main-prices-arrows {
		display: none;
	}
	.main-prices__wrapper {
		margin-top: 20px;
	}
	.main-prices .tabs-select .filter__select {
		border: 1px solid #dee6ee;
		border-radius: 2px;
		font-size: 18px;
	}
	.main-prices .filter__select {
		color: #191e39;
		line-height: 24px;
		font-weight: 600;
	}
	.main-prices .radio label b {
		font-weight: 600;
	}
	.main-prices .filter__select:after {
		width: 36px;
		height: 36px;
		right: 8px;
		margin-top: 0;
		top: calc(50% - 18px);
		background: url(../img/select-arrow-dark.svg) center center no-repeat;
		background-size: 100% 100%;
	}
	.main-prices .filter__block {
		top: calc(100% + 1px);
		border-radius: 2px;
		-webkit-box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.1);
		box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.1);
		border: 1px solid #dee6ee;
		padding: 0;
	}
	.main-prices .radio label {
		font-family: "Onest", sans-serif;
		padding: 12px 45px 12px 15px;
		font-weight: 600;
		font-size: 18px;
		line-height: 100%;
		letter-spacing: -0.02em;
		color: #191e39;
	}
	.main-prices .radio input:checked + label:after {
		display: none;
	}
	.main-prices-card__info {
		flex-direction: column;
		gap: 12px;
	}
	.main-prices-card__info .btn-item {
		width: 100%;
	}
}

/*********************** MAIN PRESENTATION ***********************/
.main-presentation {
	position: relative;
	overflow: hidden;
}
.main-presentation__bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.main-presentation__bg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.main-presentation__body {
	display: flex;
	gap: 90px;
	position: relative;
}
.main-presentation__title {
	max-width: 360px;
	color: #fff;
	line-height: 95%;
	margin-right: -3px;
}
.main-form {
	max-width: 424px;
	border-radius: 4px;
	background-color: #fff;
	padding: 36px 30px 45px;
	position: relative;
	z-index: 4;
}
.main-form__top {
	display: flex;
	flex-direction: column;
	gap: 20px;
	text-align: center;
	margin-bottom: 24px;
}
.main-form__title {
	font-weight: 600;
}
.main-form__subtitle {
	font-family: "Onest", sans-serif;
	font-weight: 400;
	font-size: 18px;
	line-height: 135%;
	letter-spacing: -0.02em;
	color: #1e1e1e;
}
.main-form .input {
	height: 52px;
	border-color: #dee6ee;
	font-size: 15px;
	background-color: #f5f8fb;
}
.main-form__bottom {
	padding-top: 10px;
	display: flex;
	flex-direction: column;
	gap: 14px;
}
.main-form .checkbox label {
	padding: 0px 0px 0px 33px;
	font-size: 13px;
	line-height: 116%;
	color: #8a8a8a;
	letter-spacing: -0.02em;
}
.main-form .checkbox label a {
	display: inline;
	color: #8a8a8a;
	text-decoration: underline;
	text-decoration-skip-ink: none;
}
.main-form .checkbox label a:hover {
	color: #191e39;
}
.main-form .checkbox label:before {
	top: 0;
	left: 0;
}
.main-form .checkbox input:checked + label:after {
	top: 0px;
	left: 0px;
}
.main-presentation__box {
	position: absolute;
	width: 521px;
	height: 521px;
	right: calc(50% - 645px);
	bottom: -300px;
}
.main-presentation__elips {
	position: absolute;
	width: 100%;
	height: 100%;
	right: 0;
	bottom: 0;
	background-color: #c2def9;
	border-radius: 50%;
	z-index: 0;
}
.main-presentation__book {
	position: relative;
	z-index: 8;
	width: calc(100% + 45px);
	margin-left: -30px;
	margin-top: -10px;
}
.main-presentation__book img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}
@media (max-width: 1400px) {
	.main-presentation__box {
		right: calc(50% - 710px);
	}
}
@media (max-width: 1200px) {
	.main-presentation__title {
		max-width: 260px;
		margin-right: 0;
	}
	.main-presentation__body {
		gap: 50px;
	}
	.main-presentation__box {
		width: 460px;
		height: 460px;
		right: calc(50% - 600px);
		bottom: -260px;
	}
	.main-presentation__book {
		width: 100%;
		margin-left: -10px;
		margin-top: 15px;
	}
}
@media (max-width: 992px) {
	.main-presentation__title {
		text-align: center;
	}
	.main-presentation__body {
		flex-direction: column;
		gap: 30px;
		align-items: center;
	}
}
@media (max-width: 768px) {
	.main-presentation {
		padding-bottom: 150px;
	}
	.main-presentation__title {
		max-width: 100%;
		text-align: left;
	}
	.main-form {
		padding: 30px 20px;
	}
	.main-form__top {
		gap: 14px;
		margin-bottom: 20px;
	}
	.main-form .btn-item {
		padding: 16px;
	}
	.main-form__bottom {
		padding-top: 6px;
		gap: 21px;
	}
	.main-form .input {
		height: 48px;
	}
	.main-presentation__box {
		width: 354px;
		height: 354px;
		right: calc(50% - 275px);
	}
	.main-presentation__book {
		width: calc(100% + 15px);
		margin-left: 0px;
		margin-top: 50px;
	}
}

/*********************** PURCHASING METHODS ***********************/
.purchasing-methods {
	overflow: hidden;
}
.purchasing-methods__body {
	display: flex;
	justify-content: space-between;
	position: relative;
}
.purchasing-methods__left {
	max-width: 295px;
}
.purchasing-methods__title {
	line-height: 95%;
	margin-bottom: 40px;
}
.purchasing-methods__list {
	display: flex;
	flex-direction: column;
	gap: 20px;
}
.purchasing-methods__right {
	position: relative;
	max-width: 872px;
	width: 72%;
}
.purchasing-methods__wrap {
	display: flex;
	flex-direction: column;
	gap: 30px;
	border-radius: 4px;
	padding: 40px;
	background-color: #f5f8fb;
}
.purchasing-methods__items {
	display: flex;
	flex-direction: column;
	gap: 30px;
}
.purchasing-methods__item {
	display: flex;
	flex-direction: column;
	gap: 8px;
}
.purchasing-methods__item-caption {
	font-family: "Onest", sans-serif;
	position: relative;
	font-weight: 500;
	font-size: 22px;
	line-height: 100%;
	letter-spacing: -0.02em;
	color: #1e1e1e;
	padding-left: 30px;
}
.purchasing-methods__item-caption::before {
	content: "";
	position: absolute;
	left: 0;
	top: 3px;
	width: 16px;
	height: 16px;
	background-image: url(../img/project-page/icon.svg);
	background-size: 100% 100%;
	background-repeat: no-repeat;
	background-position: center center;
}
.purchasing-methods__item-desc {
	font-weight: 400;
	font-size: 16px;
	line-height: 150%;
	letter-spacing: -0.02em;
	color: #1e1e1e;
}
.purchasing-methods__block {
	position: absolute;
	width: 100%;
	opacity: 0;
	top: 0;
	left: 0;
	visibility: hidden;
	transform: translateY(50px);
	transition: all 0s ease-in-out;
}
.purchasing-methods__block.active {
	position: relative;
	opacity: 1;
	transform: translateY(0);
	visibility: visible;
	transition: all 0.3s ease-in-out;
}
@media (max-width: 1400px) {
}
@media (max-width: 1200px) {
	.purchasing-methods__wrap {
		gap: 20px;
		padding: 24px;
	}
	.purchasing-methods__title {
		margin-bottom: 30px;
	}
	.purchasing-methods__items {
		gap: 20px;
	}
	.purchasing-methods__item-caption {
		font-size: 20px;
	}
	.purchasing-methods__item-caption::before {
		top: 2px;
	}
}
@media (max-width: 992px) {
	.purchasing-methods__body {
		flex-direction: column;
		gap: 56px;
	}
	.purchasing-methods__left {
		max-width: 100%;
	}
	.purchasing-methods__right {
		max-width: 100%;
		width: 100%;
	}
}
@media (max-width: 768px) {
	.purchasing-methods__wrap {
		padding: 20px;
	}
	.purchasing-methods__item-caption {
		font-size: 18px;
		padding-left: 26px;
	}
	.purchasing-methods__item-caption::before {
		top: 1px;
	}
	.purchasing-methods__item-desc {
		font-size: 14px;
		line-height: 160%;
	}
}

/*********************** PROJECT MODAL ***********************/
.modal-project .modal {
	background: transparent;
	width: auto;
	border-radius: 0px;
}
.project-modal {
	position: relative;
}
.project-modal .modal__close {
	width: 24px;
	height: 24px;
	top: 15px;
	right: 15px;
	z-index: 8;
}
.project-modal .modal__close:before,
.project-modal .modal__close:after {
	display: none;
}
.project-modal__logo {
	position: absolute;
	top: 20px;
	left: 20px;
}
.project-modal .main-form {
	margin: 0 auto;
	box-shadow: 0 15px 30px 0 rgba(0, 0, 0, 0.08);
}
@media (max-width: 1400px) {
}
@media (max-width: 1200px) {
	.main-form__subtitle {
		font-size: 16px;
	}
}
@media (max-width: 992px) {
}
@media (max-width: 768px) {
	.project-modal {
		max-width: 100%;
		width: 100%;
	}
	.project-modal::before {
		left: 8px;
		bottom: 8px;
		background-image: url(../img/project-page/modal-bg-mobile.svg);
		width: calc(100% - 16px);
		height: calc(100% - 60px);
	}
	.project-modal__logo {
		display: none;
	}
	.project-modal {
		width: 100%;
	}
	.project-modal .modal__close {
		top: 10px;
		right: 10px;
	}
	.project-modal .main-form .checkbox label {
		font-size: 12px;
	}
	.project-modal .main-form .btn-item {
		padding: 16px 10px;
		font-size: 15px;
	}
}

/*********************** MAIN APARTMENTS ***********************/
.main-apartments {
	background-color: #f5f8fb;
}
.main-apartments__title {
	line-height: 95%;
	margin-bottom: 110px;
}
.main-apartments .main-tabs::after {
	background-color: #e8eef2;
}
.main-apartments__body {
	margin-top: 60px;
	position: relative;
}
.main-apartments__block {
	position: absolute;
	width: 100%;
	opacity: 0;
	top: 0;
	left: 0;
	visibility: hidden;
	z-index: 1;
	transform: translateY(50px);
	transition: all 0s ease-in-out;
}
.main-apartments__block.active {
	position: relative;
	opacity: 1;
	transform: translateY(0);
	visibility: visible;
	z-index: 8;
	transition: all 0.3s ease-in-out;
}
.main-apartments__wrap {
	display: flex;
	justify-content: space-between;
	gap: 42px;
}
.main-apartments__left {
	width: 405px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 24px;
}
.main-apartments__desc {
	font-weight: 500;
	font-size: 16px;
	line-height: 150%;
	color: #363636;
	margin-top: 20px;
}
.main-apartments__right {
	flex: 1;
	position: relative;
}
.main-apartments__right-block {
	position: absolute;
	width: 100%;
	opacity: 0;
	top: 0;
	left: 0;
	visibility: hidden;
	transform: translateY(50px);
	transition: all 0s ease-in-out;
}
.main-apartments__right-block.active {
	position: relative;
	opacity: 1;
	transform: translateY(0);
	visibility: visible;
	transition: all 0.3s ease-in-out;
}

.main-apartments__img {
	width: 100%;
	position: relative;
}
.main-apartments__img img {
	width: 100%;
	height: auto;
	display: block;
}

.main-apartments__markers {
	position: absolute;
	inset: 0;
	z-index: 2;
	pointer-events: none;
}
.main-apartments__marker {
	position: absolute;
	left: 0;
	top: 0;
	transform: translate(-50%, -50%);
	width: 46px;
	height: 46px;
	padding: 0;
	border: 0;
	background: transparent;
	cursor: pointer;
	pointer-events: auto;
	-webkit-tap-highlight-color: transparent;

	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;

	color: inherit;

	opacity: 0;
	transition: opacity 0.15s ease-in-out;
}
.main-apartments__marker[data-marker-ready="true"] {
	opacity: 1;
}

.main-apartments__marker:hover {
	z-index: 16;
}

.main-apartments__marker-ico {
	position: relative;
	width: 44px;
	height: 44px;
	display: block;
}
.main-apartments__marker-bg {
	position: relative;
	width: 100%;
	height: 100%;
	display: block;
	background-image: url(../img/project-page/marker-bg.svg);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 100% 100%;
	transition: background-image 0.2s ease-in-out;
}
.main-apartments__marker:hover .main-apartments__marker-bg {
	background-image: url(../img/project-page/marker-bg-hover.svg);
}
.main-apartments__marker-plus {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 24px !important;
	height: 24px !important;
	display: block;
	background-image: url(../img/project-page/plus.svg);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 100% 100%;
	transition: background-image 0.2s ease-in-out;
}

.main-apartments__marker-label {
	position: absolute;
	z-index: 1;
	font-weight: 600;
	font-size: 14px;
	line-height: 140%;
	color: #fff;
	border-radius: 1000px;
	padding: 8px 12px;
	backdrop-filter: blur(30px);
	background-color: rgba(255, 255, 255, 0.08);
	opacity: 0;
	visibility: hidden;
	left: 50%;
	transform: translateX(-50%);
	white-space: nowrap;
	transition:
		opacity 0.2s ease-in-out,
		transform 0.2s ease-in-out;
}
.main-apartments__marker-label.left {
	left: 0;
	transform: translateX(0);
}
.main-apartments__marker-label.right {
	left: auto;
	right: 0;
	transform: translateX(0);
}
.main-apartments__marker-label.top {
	bottom: calc(100% + 8px);
}
.main-apartments__marker-label.bottom {
	top: calc(100% + 8px);
}
.main-apartments__marker:hover .main-apartments__marker-label,
.main-apartments__marker:focus-visible .main-apartments__marker-label {
	opacity: 1;
	visibility: visible;
}
@media (max-width: 1400px) {
	.main-apartments__title {
		margin-bottom: 80px;
	}
	.main-apartments__body {
		margin-top: 48px;
	}
	.main-apartments__desc {
		margin-top: 16px;
	}
}
@media (max-width: 1200px) {
	.main-apartments__title {
		margin-bottom: 60px;
	}
	.main-apartments__wrap {
		gap: 50px;
		flex-direction: column;
	}
	.main-apartments__left {
		width: 100%;
		gap: 30px;
	}
	.main-apartments .main-items-tabs {
		overflow: auto;
		margin-left: -15px;
		margin-right: -15px;
		padding-left: 15px;
		padding-right: 15px;
	}
	.main-apartments .main-items-tabs__wrap {
		flex-direction: row;
	}
	.main-apartments__img {
		width: 100%;
	}
	.main-apartments__img img {
		width: 100%;
	}
}
@media (max-width: 992px) {
}
@media (max-width: 768px) {
	.main-apartments__title {
		margin-bottom: 30px;
	}
	.main-apartments__body {
		margin-top: 40px;
	}
	.main-apartments__desc {
		font-size: 15px;
		line-height: 160%;
	}
	.main-apartments__marker {
		gap: 8px;
	}
	.main-apartments__marker {
		width: 40px;
		height: 40px;
	}
	.main-apartments__marker-plus {
		width: 14px;
		height: 14px;
	}
	.main-apartments__marker-label {
		font-size: 12px;
		padding: 7px 8px;
		max-width: min(220px, calc(100vw - 32px));
		white-space: normal;
		border-radius: 18px;
	}
	.main-apartments__marker-label.top {
		bottom: calc(100% + 4px);
	}
	.main-apartments__marker-label.bottom {
		top: calc(100% + 4px);
	}
	.main-apartments .tabs-select .filter__select {
		border: 1px solid #dee6ee;
		border-radius: 2px;
		font-size: 18px;
	}
	.main-apartments .filter__select {
		color: #191e39;
		line-height: 24px;
		font-weight: 600;
	}
	.main-apartments .filter__select:after {
		width: 36px;
		height: 36px;
		right: 8px;
		margin-top: 0;
		top: calc(50% - 18px);
		background: url(../img/select-arrow-dark.svg) center center no-repeat;
		background-size: 100% 100%;
	}
	.main-apartments .filter__block {
		top: calc(100% + 1px);
		border-radius: 2px;
		-webkit-box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.1);
		box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.1);
		border: 1px solid #dee6ee;
		padding: 0;
	}
	.main-apartments .radio label {
		font-family: "Onest", sans-serif;
		padding: 12px 45px 12px 15px;
		font-weight: 600;
		font-size: 18px;
		line-height: 100%;
		letter-spacing: -0.02em;
		color: #191e39;
	}
	.main-apartments .radio input:checked + label:after {
		display: none;
	}
	.main-apartments .radio label b {
		font-weight: 600;
	}
}

.main-project__img img {
	width: 100%;
}