* {
	position: relative;
}
a {
	text-decoration: none;
}
* {
	color: #3d3d3d;
	box-sizing: border-box;
	font-family: 'Cera Pro'
}

/* base-styles */
.main-wrapper {
	display: flex;
	width: 100%;
	max-width: 100%;
	overflow: hidden;
	min-height: 100vh;
	flex-direction: column;
}
.wrapper-content {
	display: flex;
	flex-direction: column;
	width: 100%;
	margin: 0 auto;
	padding: 0 100px;
}
.section-block {
	padding: 80px 0;
	display: flex;
	flex-direction: column;
}
.section-block.light {
	background: #fff7f8;
}
.section-block.pt160 {
	padding-top: 160px;
}
.section-block.pt130 {
	padding-top: 130px;
}
.section-block.pt0 {
	padding-top: 0;
}
.section-block.pb0 {
	padding-bottom: 0;
}
.section-block.pb160 {
	padding-bottom: 160px;
}
.section-header {
	display: flex;
	align-items: center;
	width: 100%;
	justify-content: space-between;
	padding-bottom: 32px;
	margin-bottom: 48px;
	border-bottom: 1px solid #D7172F;
}
.mb-15{
	margin-bottom: 15px;
}
.section-header__block {
	display: flex;
	align-items: center;
	gap: 32px;
}
.section-header__block > .block {
	width: 20px;
	height: 20px;
	min-width: 20px;
	display: flex;
	flex-wrap: wrap;
	gap: 4px;
}
.section-header__block > .block > div {
	width: 8px;
	height: 8px;
	background: #D7172F;
}
.accent {
	color: #D7172F;
}

.svg__interactive {
	display: flex;
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
}
.svg__interactive polygon,
.svg__interactive path {
	opacity: 0;
	transition: .3s;
	fill: rgba(255, 98, 0, 0.4);
}
.svg__interactive .active {
	opacity: .7;
}
.svg__interactive > a:hover > polygon,
.svg__interactive > a:hover > path {
	opacity: 1;
}
/* end region */

/* header region */

.header {
	display: flex;
	width: 100%;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 99;
	background: #fff;
	height: 120px;
}
@media (max-width: 699px) {
	.header {
		height: 80px;
	}
}
.header > .wrapper-content {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
}
.header-logo {
	display: block;
	width: auto;
	height: 100%;
	padding: 10px 0;
}
.header-logo svg,
.header-logo img{
	width: auto;
	height: 100%;
}
.header-navbar {
	display: flex;
	align-items: center;
	list-style-type: none;
	gap: 32px;
}
/* .header-logo path {
	fill: #3d3d3d;
} */
.header-navbar .btn-text {
	color: #3d3d3d;
	text-decoration: none;
}
.header-navbar .btn-text:hover {
	color: #D7172F;
}

.header-features {
	display: flex;
	align-items: center;
	gap: 48px;
}
.header-phone {
	color: #D7172F;
	transition: .3s;
}
.header-phone:hover {
	color: #3d3d3d;
}

.burger-plug {
	display: flex;
	width: 52px;
	height: 52px;
}
.burger {
	display: flex;
	height: 52px;
	width: 52px;
	transition: .3s;
	border-radius: 8px;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 8px;
	top: 15px;
	right: 100px;
	position: fixed;
	z-index: 800;
	cursor: pointer;
}

.burger > div {
	display: flex;
	width: 100%;
	transition: .3s;
	height: 4px;
	background: #3d3d3d;
}
.burger:hover > div {
	background: #D7172F;
}
.burger.white > div {
	background: #fff;
}
.burger.white:hover > div {
	background: #D7172F;
}


/* end region */

/* text region */

h1.section-title {
	margin: 0;
	font-size: 48px;
	font-weight: 500;
}
h2.section-title {
	margin: 0;
	font-size: 32px;
	font-weight: 500;
}
.btn-text {
	font-size: 22px;
	margin: 0;
	font-weight: 500;
	line-height: 130%;
	transition: .3s;
}
.subtitle {
	font-size: 28px;
	margin: 0;
	line-height: 130%;
	font-weight: 700;
}
.main-text {
	font-size: 22px;
	line-height: 140%;
	margin: 0;
	font-weight: 400;
}
.info-text {
	font-size: 14px;
	color: #919495;
	line-height: 130%;
	margin: 0;
}
/* end region */

/* button region */

button {
	border: none;
	outline: none;
	background: transparent;
}

.button {
	display: flex;
	height: 58px;
	font-size: 22px;
	align-items: center;
	justify-content: center;
	padding: 0 30px;
	cursor: pointer;
	background: #D7172F;
	border-radius: 60px;
	color: #fff;
	transition: .3s;
	border: 1px solid #D7172F;
}
.button:hover {
	background: #bd081f;
	border: 1px solid #bd081f;
}
.header-button {
	background: #3d3d3d;
	color: #fff;
	border: 2px solid #3d3d3d;
}
.header-button:hover {
	background: transparent;
	border: 2px solid #D7172F;
	color: #D7172F;
}
.button.blue {
	background: #027bfb;
	color: #fff;
	border: 1px solid #027bfb;
}
.button.blue:hover {
	background: transparent;
	color: #027bfb;
	border: 1px solid #027bfb;
}

/* end region */

/* scroll modal info content  */

.info-card__content::-webkit-scrollbar {
  width: 3px;               /* ширина scrollbar */
}
.info-card__content::-webkit-scrollbar-track {
  background: #D7172F;        /* цвет дорожки */
}
.info-card__content::-webkit-scrollbar-thumb {
  background-color: blue;    /* цвет плашки */
  border-radius: 20px;       /* закругления плашки */
  border: 3px solid #3d3d3d;  /* padding вокруг плашки */
}

/* end region */

/* inputs */

input[type="text"] {
	width: 100%;
	height: 56px;
	border: 1px solid #919495;
	padding: 24px;
	background: transparent;
	align-items: center;
	outline: none;
	font-size: 22px;
	border-radius: 60px;
	margin-bottom: 16px;
	transition: .3s;
}
input[type="text"]:not(:placeholder-shown) {
	color: #fff;
	border: 1px solid #fff;
}
input[type="text"]::placeholder {
	transition: .3s;
	color: #919495;
}
input[type="text"]:hover {
	border: 1px solid #fff;
}
input[type="text"]:focus {
	color: #fff;
	border: 1px solid #fff;
}
input[type="text"]:focus::placeholder {
	color: #fff;
}
/* end region */

/* checkbox */

input[type="checkbox"]+label {
	display: flex;
	width: 24px;
	align-items: center;
	justify-content: center;
	height: 24px;
	background: #fff;
	min-width: 24px;
	border-radius: 6px;
	border: 1px solid #919495;
}
input[type="checkbox"]:checked+label {
	background: #919495;
}

/* end region */

.main-section {
	display: flex;
	width: 100%;
	height: 100vh;
	position: relative;
}
@media (min-width: 992px) {
	.main-section {
		min-height: 950px;
	}	
}
.main-section__bg {
	display: flex;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	object-fit: cover;
	position: absolute;
	object-position: center;
}
.main-section__control {
	position: absolute;
	left: 0;
	right: 0;
	margin: 0 auto;	
	top: 50%;
	z-index: 1;
}
.main-section__control .swiper-prev {
	left: 100px;
}
.main-section__control .swiper-next {
	right: 100px;
}

.main-section__element {
	display: flex;
	margin-top: auto;
	width: 530px;
	padding: 48px;
	z-index: 11;
	flex-direction: column;
	gap: 24px;
	background: rgba(255,255,255, 0.1);
	backdrop-filter: blur(30px);
	-webkit-backdrop-filter: blur(30px);
	border-radius: 30px;
}
.main-section .swiper-slide {
	z-index: 1;
}
.main-section .swiper-slide > .wrapper-content {
	padding-bottom: 58px;
	height: 100%;
}
.main-section__element > .section-title {
	color: #fff;
}
/* swiper-control */

.swiper-prev, .swiper-next {
	display: flex;
	width: 64px;
	height: 64px;
	position: absolute;
	border-radius: 50%;
	z-index: 10;
	top: 50%;
	background: #fff;
	transition: .3s;
	align-items: center;
	cursor: pointer;
	justify-content: center;
	transform: translateY(-50%);
	left: 0px;
}
.swiper-prev svg, .swiper-next svg {
	position: relative;
	right: 2px;
}
.swiper-next {
	right: 0px;
	left: unset;
	transform: translateY(-50%) rotate(180deg);
}
.swiper-prev:hover, .swiper-next:hover {
	background: #D7172F;
}
.swiper-prev path, .swiper-next path {
	transition: .3s;
	stroke: #D7172F;
}
.swiper-prev:hover path, .swiper-next:hover path {
	stroke: #fff;
}
.swiper-pagination {
	display: flex;
	margin-top: auto;
	position: absolute;
	width: 100%;
	padding-bottom: 100px;
	justify-content: center;
}
.swiper-pagination > span {
	width: 120px;
	opacity: 1;
	background: #ffd8dd;
	border-radius: 60px;
	height: 4px;
	transition: .3s;
}
.swiper-pagination > span.swiper-pagination-bullet-active {
	background: #D7172F;
}

.main-section .swiper-pagination {
	justify-content: flex-end;
	right: 0;
	left: 0;
	margin: 0 auto;
	padding: 0 100px;
	padding-bottom: 56px;
	padding-right: 200px;
}

.swiper-button-disabled {
	pointer-events: none;
	background: #919495 !important;
} 
.swiper-button-disabled path {
	background: #919495 !important;
	stroke: #fff !important;
} 
/* end region */


.advamtages-block {
	display: flex;
	width: 100%;
	gap: 30px;
	flex-direction: column;
}
.advantages-index {
	display: flex;
	width: 100%;
	margin-bottom: 71px;
	padding: 32px 64px;
	background: #fff;
	align-items: center;
	border-radius: 30px;
	justify-content: space-between;
}
.advantages-index__element {
	display: flex;
	width: 32%;
	align-items: center;
}
.advantage-index__icon {
	display: flex;
	width: 64px;
	margin-right: 24px;
	height: 64px;
	align-items: center;
	justify-content: center;
	min-width: 64px;
	border-radius: 50%;
	background: #3d3d3d;
}
.advantage-index__text {
	display: flex;
	flex-direction: column;
	height: 100%;
	justify-content: space-between;
}
.advantage-index__text > .main-text {
	margin-bottom: 0;
}
.advantage-index__icon > img {
	width: 32px;
}

.advantages-elements {
	display: flex;
	gap: 30px;
	flex-wrap: nowrap;
	width: 100%;
	justify-content: space-between;
}
.advantages-element {
	display: flex;
	width: 100%;
	flex-direction: column;
	gap: 16px;
	background: #fff;
	padding: 32px;
	border-radius: 30px;
}
.devider {
	height: 1px;
	width: 100%;
	background: #D7172F;
}
.advantages-element > .info-text {
	color: #919495;
	font-weight: 500;
	font-size: 22px;
}

.about-project {
	display: flex;
	width: 100%;
	justify-content: space-between;
}
.about-project__image {
	display: flex;
	width: 48%;
	object-position: center;
	object-fit: cover;
	border-radius: 30px;
}
.about-project__text {
	display: flex;
	flex-direction: column;
	width: 48%;
	background: #fff;
	border-radius: 30px;
	padding: 48px;
}
.about-project-text__content {
	display: flex;
	flex-direction: column;
	width: 100%;
	gap: 48px;
}


.genplan {
	display: flex;
	flex-direction: column;
	width: 100%;
}
.genplan-content {
	display: flex;
	width: 100%;
}
.genplan__img {
	display: flex;
	width: 100%;
}
.genplan__intaractive {
	display: flex;
	width: 100%;
	height: 100%;
	z-index: 5;
	position: absolute;
	left: 0;
	top: 0;
}
.genplan__item {
	display: flex;
	position: absolute;
	width: 64px;
	height: 64px;
	z-index: 6;
	background: #D7172F;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	font-size: 28px;
	font-weight: 700;
	color: #fff;
	transform: translate(-50%, -50%);
}
.genplan__item.build {
	pointer-events: none;
	background: #3d3d3d;
}
.genplan__item.sold {
	pointer-events: none;
	background: #919495;
}

.wrapper-content.hint-container {
	position: absolute;
	padding: 0 100px;
	left: 0;
	right: 0;
	height: 100%;
	width: 100%;
}
.genplan__hint {
	display: flex;
	width: 250px;
	padding: 32px;
	background: #fff;
	position: absolute;
	bottom: 48px;
	right: 20px;
	flex-direction: column;
	border-radius: 30px;
	gap: 16px;
}
.genplan-hint__el {
	display: flex;
	align-items: center;
	gap: 16px;
}
.genplan-hint__el > div {
	height: 24px;
	width: 24px;
	min-width: 24px;
	display: flex;
	border-radius: 50%;
	background: #D7172F;
}
.genplan-hint__el.build > div {
	background: #3d3d3d;
}
.genplan-hint__el.sold > div {
	background: #919495;	
}

.form-container {
	display: flex;
	width: 100%;
	background: #3d3d3d;
	padding: 80px 140px;
	border-radius: 30px;
}
.form-asset__img {
	display: flex;
	object-fit: contain;
	max-width: 48%;
	max-height: 100%;
	border-radius: 0 0 0 30px;
	position: absolute;
	left: 0;
	bottom: 0;
}
.form-container__content {
	display: flex;
	margin-left: auto;
	width: 50%;
	gap: 48px;
	z-index: 10;
	flex-direction: column;
	max-width: 670px; 
}
.form-container__content > h2.section-title {
	color: #fff;
}
form button {
	width: 100%;
	margin-bottom: 24px;
}
.form-accept {
	display: flex;
	align-items: flex-start;
	gap: 8px;
}
.form-accept > span {
	color: #919495;
}
.form-accept input {
	position: absolute;
	left: -9999px;
	opacity: 0;
	z-index: -999;
	
}


.map-container {
	display: flex;
	width: 100%;
	flex-direction: column;
}
.map {
	display: flex;
	width: 100%;
	height: 800px;
	border-radius: 30px;
	overflow: hidden;
}
.map-hint {
	display: flex;
	width: 100%;
	max-width: 406px;
	background: #fff;
	border-radius: 30px;
	position: absolute;
	height: 80%;
	top: 10%;
	gap: 16px;
	left: 80px;
	flex-direction: column;
	padding: 32px;
}
.map-hint__list {
	padding: 0;
	margin: 0;
	list-style-type: none;
	display: flex;
	width: 100%;
	gap: 8px;
	flex-direction: column;
}
.map-hint-list__element {
	display: flex;
	width: 100%;
	align-items: center;
	justify-content: space-between;
}
.map-hint-list__element > .main-text {
	color: #919495;
}
.map-hint-element__name {
	display: flex;
	max-width: 80%;
	align-items: center;
	gap: 16px;
	cursor: pointer;
}
.map-hint-element__name > div {
	display: flex;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background: #3d3d3d;
	align-items: center;
	justify-content: center;
} 
.map-hint-element__name > div > img {
	width: 24px;
	height: 24px;
}
.map-hint-element__name img {
	transition: all .2s ease;
}
.map-hint > .button {
	margin-top: auto;
}
.map-hint-element__name:hover img {
	transform: scale(1.1);
}
.map-buttons{
	gap: 4px;
    display: flex;
    flex-direction: column;
	margin-top: auto;
}

.flats-container {
	display: flex;
	flex-direction: column;
	width: 100%;
	overflow: hidden;
}
.flats-tabs {
	display: flex;
	width: calc(100% - 164px);
	flex-wrap: wrap;
	align-items: center;
	gap: 16px;
	padding-top: 8px;
	margin-bottom: 32px;
	overflow: auto;
}
.flats-tabs > div {
	display: flex;
	user-select: none;
	height: 48px;
	width: 100%;
	/* max-width: 306px; */
	min-width: 130px;
	width: 130px;
	border-radius: 60px;
	align-items: center;
	cursor: pointer;
	justify-content: center;
	border: 1px solid #3d3d3d;
	transition: .3s;
	white-space: nowrap;
}
.flats-tabs > div.active {
	background: #3d3d3d;
	color: #fff;
	pointer-events: none;
}

.flats-swiper {
	display: flex;
	width: 100%;
}
.flats-swiper .swiper-slide {
	display: flex;
	flex-direction: column;
	background: #fff;
	gap: 16px;
	height: auto;
	border-radius: 30px;
	padding: 24px;
}
.flats-slide__img {
	display: flex;
	width: 100%;
	height: 250px;
	user-select: none;
	padding: 24px;
	justify-content: center;
	text-decoration: none;
}

.flats-slide__img img {
	height: 100%;
	object-fit: contain;
	display: block;
	margin: auto;
}
.flat-info {
	display: flex;
	flex-direction: column;
	width: 100%;
	gap: 4px;
}
.flats-slide__img .open_3d{
	color: #D7172F;
	bottom: 0;
}


.flats-swiper > .swiper-prev, .flats-swiper > .swiper-next {
	bottom: calc(100% + 24px);
	transform: translateY(0%);
	top: unset;
	background: #3d3d3d;
}
.flats-swiper > .swiper-next {
	transform: translateY(0%) rotate(180deg);
	right: 0;
}
.flats-swiper > .swiper-prev {
	right: 80px;
	left: unset;
}

.flats-swiper > .swiper-prev:hover, .flats-swiper > .swiper-next:hover {
	background: #D7172F;
}
.flats-swiper > .swiper-prev:hover path, .flats-swiper > .swiper-next:hover path {
	stroke: #fff;
}

.section-header .accent {
	transition: .3s;
}
.section-header .accent:hover {
	color: #bd081f;
}









/* INFO CARDS */

.info-container {
	display: flex;
	width: 100%;
	flex-wrap: wrap;
	gap: 30px;
}
.info-card {
	display: flex;
	padding: 48px;
	background: #3d3d3d;
	border-radius: 30px;
	width: calc(33.33% - 20px);
	height: 384px;
	flex-direction: column;
	transition: .3s;
	cursor: pointer;
}
.info-card:hover {
	background: #D7172F;
}

.info-card__text {
	display: flex;
	flex-direction: column;
	gap: 16px;
}
.info-card__text > .main-text {
	color: #fff;
}
.info-card__text > h2.section-title {
	color: #fff;
}
.info-card__text > .btn-text {
	color: #fff;
}
.info-card__value {
	display: none;
}
.info-card__btn {
	position: relative;
	left: 0;
	transition: .45s;
	bottom: 0;
	top: unset;
	right: unset;
	margin-top: auto;
	transform: rotate(180deg);
}
.info-card__btn.swiper-next:hover path {
	stroke: #D7172F;
}
.info-card:hover > .info-card__btn {
	margin-left: calc(100% - 64px);
	background: #fff;
}


.modal__info-card {
	display: flex;
	position: fixed;
	width: 100%;
	height: 100%;
	align-items: center;
	justify-content: center;
	left: 0;
	top: 0;
	z-index: 999;
	opacity: 0;
	z-index: -1;
	transition: .3s;
	background: rgba(0, 0, 0, 0.3);
}
.modal__info-card.show {
	opacity: 1;
	z-index: 999;
}
.modal__info-card__content {
	display: flex;
	width: 100%;
	max-width: 950px;
	min-height: 685px;
	max-height: calc(100% - 80px);
	flex-direction: column;
	background: #fff;
	padding: 100px 80px 80px;
	border-radius: 30px;
}
.modal__info-card__content .section-header__block {
	align-items: flex-start;
}
.modal__info-card__content .section-header__block > .block {
	margin-top: 20px;
}
.info-card__content {
	overflow: auto;
	padding-right: 10px;
}
.modal__close {
	position: absolute;
	right: 40px;
	top: 40px;
	width: 52px;
	height: 52px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #fff7f8;
	border-radius: 8px;
	cursor: pointer;
	transition: .3s;
}
.modal__close > div {
	position: absolute;
	width: 16px;
	transition: .3s;
	height: 2px;
	background: #3d3d3d;
	transform: rotate(45deg);
}
.modal__close > div:nth-child(2) {
	transform: rotate(-45deg);
}

.modal__close:hover {
	background: #D7172F;
}
.modal__close:hover > div {
	background: #fff;
}


.pluses-swiper {
	display: flex;
	width: 100%;
	height: 600px;
}
.pluses-swiper .swiper-slide {
	display: flex;
	width: 100%;
	justify-content: space-between;
}
.pluses-swiper .pluses__image {
	display: flex;
	width: 58%;
	height: 100%;
	border-radius: 30px;
	overflow: hidden;
}
.pluses-swiper .pluses__image > img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}
.pluses__content {
	display: flex;
	flex-direction: column;
	width: 42%;
	margin-left: 30px;
	background: #fff7f8;
	padding: 48px;
	gap: 32px;
	border-radius: 30px;
	opacity: 0;
	transition: .3s;
}

.pluses-swiper .swiper-slide-active .pluses__content {
	opacity: 1;
}

.pluses-swiper > .swiper-prev, .pluses-swiper > .swiper-next {
	bottom: 48px;
	transform: translateY(0%);
	top: unset;
	background: #3d3d3d;
}
.pluses-swiper > .swiper-next {
	transform: translateY(0%) rotate(180deg);
	right: 48px;
}
.pluses-swiper > .swiper-prev {
	right: 128px;
	left: unset;
}

.pluses-swiper > .swiper-prev:hover, .pluses-swiper > .swiper-next:hover {
	background: #D7172F;
}
.pluses-swiper > .swiper-prev:hover path, .pluses-swiper > .swiper-next:hover path {
	stroke: #fff;
}


.apartment-content {
	display: flex;
	flex-direction: column;
	width: 100%;
	gap: 48px;
}
.apartment__block {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
}
.apartment__img {
	width: 58%;
}
.apartment__img img{
	display: flex;
	width: 100%;
	height: 600px;
	object-fit: cover;
	object-position: center;
	border-radius: 30px;
	display: none;
}
.apartment__img img.active{
	display: block;
}
.apartment__text {
	display: flex;
	flex-direction: column;
	width: 40%;
}
.apartment__text > .subtitle {
	margin-bottom: 24px;
} 
.apartment__text > .tags {
	margin-top: 48px;
	display: flex;
	flex-wrap: wrap;
	width: 100%;
	gap: 16px;
}
.apartment__text > .tags > div {
	background: #fff7f8;
	padding: 6.5px 24px;
	border-radius: 30px;
}


.gallery-swiper {
	display: flex;
	height: 650px;
	border-radius: 30px;
}
.gallery-swiper .swiper-slide > img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	border-radius: 30px;
}
.gallery-swiper .swiper-prev {
	left: 20px;
}
.gallery-swiper .swiper-next {
	right: 20px;
}

.about-builder {
	display: flex;
	width: 100%;
	justify-content: space-between;
}
.builder__slider {
	/* width: 49%;
	height: 500px; */
	width: 29%;
	object-fit: cover;
	object-position: center;
	border-radius: 30px;
}
.builder__slider .swiper-slide img{
	width: 100%;
}
.about-builder__text {
	display: flex;
	/* width: 49%; */
	width: 69%;
	flex-direction: column;
	gap: 32px;
}
.about-builder__info {
	display: flex;
	width: 100%;
	justify-content: space-between;
}
.about-builder__info > div {
	display: flex;
	width: 32%;
	border-radius: 30px;
	background: #fff;
	padding: 32px;
	gap: 16px;
	flex-direction: column;
}


/* calculator */

.calculator-container {
	display: flex;
	width: 100%;
	justify-content: space-between;
}
.calculator {
	display: flex;
	flex-direction: column;
	/* width: 74%; */
	width: 100%;
	flex-direction: column;
}
.calculator-tags {
	display: flex;
	width: 100%;
	justify-content: space-between;
	gap: 16px;
}
.calculator-tags > div {
	width: 100%;
	transition: .3s;
	height: 48px;
	cursor: pointer;
	border: 2px solid #3d3d3d;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 60px;
}
.calculator-tags > div.active {
	background: #3d3d3d;
	color: #fff;
	pointer-events: none;
}
.calculator-content {
	width: 100%;
	margin-top: 24px;
	justify-content: space-between;
	display: none;
}
.calculator-content.active{
	display: flex;
}
.calculator__inputs {
	display: flex;
	width: 32%;
	flex-direction: column;
	padding: 24px;
	background: #fff;
	border-radius: 30px;
	gap: 16px;
}
.calculator_input {
	display: flex;
	flex-direction: column;
	gap: 8px;
}
.calculator_input > .main-text {
	color: #919495;
}

.calculator-offers {
	display: flex;
	width: 66%;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 16px;
}
.calculator-offer {
	display: flex;
	flex-direction: column;
	padding: 24px;
	gap: 16px;
	width: calc(50% - 8px);
	background: #fff;
	border-radius: 30px;
}
.calculator-offer > .devider{
	background: #fff7f8;
}
.calculator-offer__name {
	display: flex;
	align-items: center;
	gap: 16px;
}


/* range */

.ui-widget.ui-widget-content {
	background: #fff7f8;
	border: none;
	height: 6px;
}	
.ui-widget-header {
	background: #D7172F;
}
.ui-slider-horizontal .ui-slider-handle {
	border-radius: 50%;
	background: #D7172F;
	outline: none;
	height: 18px;
	width: 18px;
	top: -5px;
	border: none;
}

/* end region range*/

.calculator-installment {
	display: flex;
	flex-direction: column;
	width: 24%;
	padding: 24px;
	background: #3d3d3d;
	border-radius: 30px;
	align-items: center;
	user-select: none;
	overflow: hidden;
}
.calculator-installment > img {
	position: absolute;
	bottom: -10%;
	left: -20%;
	max-width: 100%;
	border-radius: 30px;
}
.calculator-installment > .section-title {
	color: #D7172F;
}
.calculator-installment__btn {
	display: flex;
	height: 46px;
	width: 100%;
	border-radius: 30px;
	margin-top: auto;
	background: #3d3d3d;
	color: #fff;
	font-size: 22px;
	align-items: center;
	justify-content: center;
}
/* end region */

/* dropdown */

.dropdown {
	display: flex;
	flex-direction: column;
	width: auto;
}
.dropdown__index {
	display: flex;
	width: 100%;
	gap: 16px;
	border: 2px solid #3d3d3d;
	height: 56px;
	background: #FFF;
	padding: 0 32px;
	align-items: center;
	justify-content: space-between;
	border-radius: 30px;
	cursor: pointer;
}
.dropdown__index > img{
	transform: rotate(180deg);
}
.dropdown__list {
	display: none;
	width: 100%;
	user-select: none;
	position: absolute;
	bottom: 100%;
	margin: 0 0 -2px;
	z-index: 99;
	flex-direction: column;
}
.dropdown__list-el {
	display: flex;
	height: 56px;
	cursor: pointer;
	width: 100%;
	border: 2px solid #3d3d3d;
	border-top: none;
	font-size: 22px;
	align-items: center;
	justify-content: center;
}
.dropdown__list-el:hover {
	background: #3d3d3d;
	color: #fff;
}
.dropdown__list-el:first-child {
	border-radius: 30px 30px 0 0;
}

.dropdown.active > .dropdown__index {
	border-radius: 0 0 30px 30px;
}
.dropdown.active > .dropdown__list {
	display: flex;
	background: #fff;
	border-radius: 30px 30px 0 0;
}
/* end region */


.hs__control {
	display: flex;
	align-items: center;
}
.swiper-prev.dark, .swiper-next.dark {
	transform: translateY(0%);
	top: unset;
	background: #3d3d3d;
}
.swiper-prev.dark:hover, .swiper-next.dark:hover {
	background: #D7172F;
}
.swiper-prev.dark:hover path, .swiper-next.dark:hover path {
	stroke: #fff;
}

.hs__control .swiper-next, .hs__control .swiper-prev {
	position: static;
}
.hs__control .swiper-next {
	margin-left: 16px;
}
.hs__control .swiper-next {
	transform: rotate(180deg);
}

.hs__control > .dropdown {
	margin-right: 48px;
}


.hs__swiper {
	display: flex;
	width: 100%;
	overflow: hidden;
}
.hs__swiper .swiper-slide {
	flex-direction: column;
	cursor: pointer;
}
.hs__swiper .swiper-slide a {
	display: block;
}
.hs__swiper .swiper-slide a:not(:nth-child(1)){
	display: none;
}
.hs__swiper .swiper-slide img {
	height: 300px;
	transition: .3s;
	width: 100%;
	margin-bottom: 24px;
	border-radius: 30px;
	object-fit: cover;
	object-position: center;
}
.hs__swiper .swiper-slide > .btn-text {
	margin-top: 8px;
	cursor: pointer;
	width: fit-content;
}
.hs__swiper .swiper-slide:hover > .btn-text {
	color: #bd081f;
}
.hs__swiper .swiper-slide:hover img {
	filter: brightness(0.8);
}



.form-container.light {
	background: #fff7f8;
}
.form-container.light .section-title {
	color: #3d3d3d;
}
.form-container.img__right .form-asset__img {
	left: unset;
	right: 0;
	max-height: calc(100% + 80px);
}
.form-container.img__right .form-container__content {
	margin-left: 0;
}


.footer {
	display: flex;
	width: 100%;
	padding: 64px 0;
	margin-top: auto;
	background: #3d3d3d;
}
.footer .section-header {
	padding-bottom: 48px;
}

.footer-menu {
	display: flex;
	width: 100%;
	gap: 170px;
}
.footer-menu__info {
	display: flex;
	flex-direction: column;
	gap: 30px;

	width: 100%;
	max-width: 530px;
}
.footer-menu__el {
	display: flex;
	flex-direction: column;
	gap: 8px;
}
.footer-menu__el > .main-text {
	color: #919495;
}
.footer-menu__el > .subtitle {
	color: #fff;
}
.footer-menu__flats {
	display: flex;
	flex-direction: column;
	max-width: 530px;
	width: 100%;
	gap: 8px;
}
.footer-menu__flats > .main-text {
	color: #919495;
}
.footer-menu__flats > .btn-text {
	color: #fff;
} 
.footer-menu__flats > .btn-text:hover {
	color: #c4c4c4;
} 
.footer-menu__navbar {
	display: flex;
	flex-direction: column;
	gap: 30px;
	list-style-type: none;
}
.footer-menu__navbar a {
	color: #fff;
}
.footer-menu__navbar a:hover {
	color: #c4c4c4;
}


.modal__hs {
	display: flex;
	position: fixed;
	z-index: -1;
	opacity: 0;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	transition: .3s;
	background: #fff;
}
.modal__hs.show {
	z-index: 999;
	opacity: 1;
}
.modal__hs-swiper {
	display: flex;
	width: 100%;
	height: 100%;
	padding: 80px 0;
}
.modal__hs-swiper .modal__close {
	top: 0;
	right: 0;
}
.modal__hs-swiper .swiper-slide {
	display: flex;
	flex-direction: column;
}
.modal__hs-swiper .swiper-slide .section-title {
	opacity: 0;
	transition: .3s;
}
.modal__hs-swiper .swiper-slide-active .section-title {
	opacity: 1;
}
.hs-swiper-img {
	display: flex;
	width: 100%;
	height: 100%;
	margin-top: 48px;
	overflow: hidden;
	border-radius: 30px;
}
.hs-swiper-img img {
	/* width: 100%; */
	width: auto;
	height: 100%;
	display: block;
	margin: auto;
	object-fit: cover;
	object-position: center;
}

.modal__hs-swiper .swiper-prev {
	left: 20px;
}
.modal__hs-swiper .swiper-next {
	right: 20px;
}

.modal {
	display: flex;
	width: 100%;
	height: 100%;
	position: fixed;
	left: 0;
	top: 0;
	background: rgba(0, 0, 0, 0.3);
	z-index: -1;
	transition: .3s;
	opacity: 0;
	align-items: center;
	justify-content: center;
}
.modal.show {
	z-index: 999;
	opacity: 1;
}

.modal__content {
	display: flex;
	flex-direction: column;
	max-width: 600px;
	width: 100%;
	background: #3d3d3d;
	border-radius: 30px;
	padding: 100px 80px 80px;
}
.modal__content > h2.section-title, .modal__content > .main-text {
	color: #fff;
}
.modal__content > h2.section-title {
	margin-bottom: 24px;
}
.modal__content > .main-text {
	margin-bottom: 48px;
}


/* header index page */

.header.transparent {
	background: transparent;
}

.header.transparent .header-logo path[fill*="black"]{
	fill: #fff;
}
.header * {
	transition: .3s;
}
.header.transparent .btn-text {
	color: #fff;
}
.header.transparent .header-phone {
	color: #fff;
}
.header.transparent .btn-text:hover {
	color: #D7172F;
}
.header.transparent .header-phone:hover {
	color: #D7172F;
}
.header.transparent .burger > div {
	background: #fff;
}
.header.transparent .button {
	background: #fff;
	border: 2px solid #fff;
	color: #3d3d3d;
}
.header.transparent .button:hover {
	background: transparent;
	color: #D7172F;
	border: 2px solid #D7172F;
}


/* timer */


.main-section__banners {
	position: absolute;
	z-index: 10;
	right: 200px;
	top: 200px;
	display: flex;
	gap: 16px;
	flex-direction: column;
	width: 100%;
	max-width: 390px;
}
.main-section__banner {
	display: flex;
	flex-direction: column;
	width: 100%;
	border-radius: 30px;
	padding: 24px;
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(30px);
	-webkit-backdrop-filter: blur(30px);
}
.main-section__banner > .subtitle {
	color: #fff;
	margin-bottom: 16px;
}
.timer-container {
	display: flex;
	width: 100%;
	height: 70px;
	border-radius: 16px;
	align-items: center;
	padding: 0 24px;
	background: #fff7f8;
	justify-content: space-between;
}
.timer-container > span {
	font-size: 18px;
	color: #3d3d3d;
}
.timer {
	display: flex;
	align-items: center;
	flex-direction: column;
}
.timer > .btn-text {
	letter-spacing: 2px;
}


.burger.active {
	background: #fff7f8;
	gap: 0;
}
.burger.active:hover {
	background: #D7172F;
}
.burger.active > div {
	background: #3d3d3d;
}
.burger.active > div:nth-child(2) {
	transform: scale(0);
	width: 0;
	height: 0;
}
.burger.active > div:nth-child(1) {
	transform: rotate(45deg);
	top: 1px;
	width: 24px;
	height: 2px;
}
.burger.active > div:nth-child(3) {
	transform: rotate(-45deg);
	top: -1px;
	width: 24px;
	height: 2px;
}


/* fixbar */

.fixbar {
	display: flex;
	width: 100%;
	height: 100vh;
	top: -150%;
	background: #3d3d3d;
	position: fixed;
	z-index: 799;
	transition: .3s;
}
.fixbar.active {
	top: 0%;
}
.fixbar__asset {
	display: flex;
	width: 50%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	position: absolute;
	left: 0;
}
.fixbar-container {
	display: flex;
	width: 100%;
	height: 100%;
	margin-top: 100px;
	justify-content: flex-end;
	margin-bottom: 50px;
}
.fixbar-content {
	display: flex;
	flex-wrap: wrap;
	width: 50%;
	height: fit-content;
	max-height: 100%;
	justify-content: space-between;
	max-width: 685px;
}
.fixbar__menu {
	display: flex;
	flex-direction: column;
	width: calc(50% - 15px);
}
.fixbar__menu-list {
	display: flex;
	flex-direction: column;
	width: 100%;
	gap: 8px;
	margin-top: 24px;
}
.fixbar__menu-list .btn-text {
	color: #fff;
}
.fixbar__menu.long {
	width: 100%;
	margin-top: 64px;
}
.fixbar__menu.long .fixbar__menu-list {
	width: 100%;
	flex-wrap: wrap;
	flex-direction: row;
}
.fixbar__menu.long .fixbar__menu-list > a {
	width: calc(50% - 4px);
}
.fixbar__menu-list > a:hover {
	color: #D7172F;
}
/* endregion */

.h-scroll__img {
	display: none;
}

.map-container .dropdown {
	display: none;
}
.pluses-swiper .swiper-pagination {
	display: none;
}
.gallery-swiper .swiper-pagination {
	display: none;
}
.hs__swiper .swiper-pagination {
	display: none;
}
.dropdown.hs-mob {
	display: none;
	margin-bottom: 35px;
}
.header-phone-mini {
	display: none;
}
.goto__back {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 20px;
}
.goto__back svg {
	transform: rotate(90deg);
}
.goto__back path {
	transition: .3s;
}
.goto__back:hover path, .goto__back:hover .btn-text {
	stroke: #D7172F;
	color: #D7172F;
}


.document__container {
	display: flex;
    width: 100%;
    flex-wrap: wrap;
    gap: 30px;
}

.docs-card {
	display: flex;
	gap: 16px;
	flex-direction: column;
	width: calc(33.33% - 20px);
}
.docs-card__content {
	padding: 24px;
	display: flex;
	flex-direction: column;
	background: #F7F7F7;
	border-radius: 16px;
	margin-bottom: 16px;
}

.docs-card__list {
	padding: 0;
	margin: 0;
	gap: 16px;
	display: flex;
	flex-direction: column;
	list-style-type: none;
}
.docs-card__list > li {
	display: flex;
	align-items: center;
}
.docs-card__list > li:before {
	content: '';
	display: flex;
	margin-right: 16px;
	height: 1px;
	width: 22px;
	background: #D7172F;
}
.docs-card__list > li > .main-text {
	margin-right: 8px;
}
.docs-card__list > li > a {
	margin-left: auto;
	width: 32px;
}


.plans__filter {
	display: flex;
	align-items: flex-end;
	width: 100%;
	gap: 30px;
	margin-top: 64px;
}
.plans__filter > .button {
	margin-left: auto;
}
.plans__filter-element {
	display: flex;
	flex-direction: column;
}
.plans__filter-element > .filter-hint {
	margin: 0 0 8px;
	font-size: 18px;
	color: #3d3d3d;
}
.plans__filter-element > .dropdown {
	max-width: 390px;
	width: 100%;
	min-width: 390px;
}
.filter__rooms {
	display: flex;
	gap: 8px;
	min-width: 250px;
	align-items: center;
	width: 100%;
}
.filter__rooms > div {
	width: 64px;
	cursor: pointer;
	height: 64px;
	border-radius: 50%;
	background: #3d3d3d;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	transition: .3s;
}
.filter__rooms > div.active {
	background: #D7172F;
}
.plans__filter-element {
	height: 90px;
	flex-direction: column;
	justify-content: space-between;
}
.plans__filter-element .calculator_input {
	width: 350px;
}

.search__flats {
	display: flex;
	width: 100%;
	gap: 30px;
	flex-wrap: wrap;
	margin-top: 48px;
}
.search__flats-element {
	display: flex;
	flex-direction: column;
	border-radius: 30px;
	width: calc(25% - 23px);
	background: #F7F7F7;
	padding: 24px;
}
.search__flat-img {
	display: flex;
	width: 100%;
	padding: 24px;
	height: 300px;
	justify-content: center;
	align-items: center;
}
.search__flat-img > a{
	display: block;
	text-decoration: none;
	width: auto;
	height: 100%;
}
.search__flat-img > a > img {
	max-width: 100%;
	max-height: 100%;
	width: auto;
	height: auto;
	object-fit: contain;
	object-position: center;
}
.search__flat-info {
	display: flex;
	width: 100%;
	justify-content: space-between;
}
.search__flat-info-el {
	display: flex;
	width: 48%;
	gap: 4px;
	flex-direction: column;
}
.search__flats-element > .devider {
	margin: 12px 0;
}
.search__flats-element > .button {
	margin-top: 16px;
}

.choice-area {
	display: flex;
	width: 100%;
	align-items: flex-start;
	justify-content: space-between;
}
.choice-area__image {
	display: flex;
	width: 60%;
	border-radius: 30px;
	overflow: hidden;
}
.choice-area__image.entarence {
	background: #F7F7F7;
	padding: 24px;
}
.choice-area__image > img {
	width: 100%;
}
.choice-area__image.entarence svg {
	padding: 24px;
}

.choice-area__info {
	display: flex;
	width: 38%;
	flex-wrap: wrap;
	justify-content: space-between;
	background: #3d3d3d;
	border-radius: 30px;
	padding: 48px;
}
.choice-area__info .button {
	width: 100%;
	margin-top: auto;
}
.choice-area__liter {
	display: flex;
	width: 48%;
	flex-direction: column;
}
.choice-are__liter h2.section-title {
	color: #fff;
}

.choice-area__liter-info {
	display: flex;
	flex-direction: column;
	width: 100%;
	gap: 32px;
	background: #fff;
	border-radius: 30px;
	padding: 24px;
	margin-top: 16px;
}
.choice-area__liter > h2.section-title {
	color: #fff;
}
.choice-area__liter-info {
	height: 100%;
}
.choice-liter-info {
	display: flex;
	height: fit-content;
	margin-bottom: 48px;
	justify-content: space-between;
	width: 100%;
}

.choice-area__info.entarence {
	display: flex;
	flex-direction: column;

}
.choice-area__info.entarence .section-title {
	color: #fff;
	margin-bottom: 16px;
}
.choice-entarance-info {
	display: flex;
	width: 100%;
	background: #fff;
	border-radius: 30px;
	padding: 24px;
	flex-wrap: wrap;
	justify-content: space-between;
	margin-bottom: 48px;
	gap: 32px;
}
.choice-entarance-info__el {
	display: flex;
	width: calc(50% - 16px);
	gap: 4px;
	flex-direction: column;
}
.choice-area__image.flat {
	height: 450px;
	padding: 24px;
	background: #F7F7F7;
	justify-content: center;
	/* align-items: center; */
	text-decoration: none;
	position: relative;
}
.choice-area__image.flat  a[data-fancybox] {
	height: 100%;
	width: auto;
	max-height: 200px;
}
@media (min-width: 992px) {
	.choice-area__image.flat a[data-fancybox]{
		max-height: 275px;
	}
}
.choice-area__image.flat  img {
	max-width: 100%;
	max-height: 100%;
	height: unset;
	width: unset;
} 
.open_3d{
	position: absolute;
	bottom: 20px;
	right: 0;
	left: 0;
	display: flex;
	margin: auto;
	width: max-content;
}
.flats-swiper .swiper-pagination {
	display: none;
}
.plans__filter-element select {
	width: 100%;
}
body.no-scroll {
	overflow: hidden;
	height: 100%;
}


.plans__filter-element .labels {
	gap: 7px;
}
.fltr_block14 label{
	width: 64px;
    cursor: pointer;
    height: 64px;
    border-radius: 50%;
    background: #3d3d3d;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: .3s;
	overflow: hidden;
	position: relative;
	/* margin: 0 7px 0 0; */
}
.fltr_block14 label:last-child{
	margin-right: 0;
}

.fltr_block14 label .checkmark{
	color: #fff;
	display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
	transition: .3s;
}

.fltr_block14 input[type=checkbox]:checked ~ .checkmark {
	background: #D7172F;    
}

.fltr_block14 label input{
	display: none;
}

.plans__filter-element .labels{
	display: flex;
}

.plans__filter-element select{
	border: 2px solid #3d3d3d;
    height: 56px;
    padding: 0 68px 0 32px;
    border-radius: 30px;
    cursor: pointer;
}

.plans__filter-element select {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
 }

 .select-arrow{
	position: absolute;
    top: 16px;
    right: 22px;
 }

 .select-wrapper{
	position: relative;
 }

 .FormListerMsg * {
	color: #FFFFFF;
	padding: 20px 0;
 }

.thanks{
	color: #FFFFFF;
	text-align: center;
}

.thanks b{
	display: block;
    text-align: center;
    font-size: 24px;
    margin: 8px 0 9px;
    color: #FFFFFF;
}

@media screen and (max-height: 850px) {
	.main-section__banners {
		top: 145px;
	}
	.main-section .swiper-pagination {
		padding-bottom: 24px;
	}
	.main-section .swiper-slide > .wrapper-content {
		padding-bottom: 24px;
	}
}
@media screen and (max-width: 1660px) {
	.wrapper-content {
		padding: 0 50px;
	}
	.fixbar-content {
		max-width: 485px;
	}
	.burger {
		right: 50px;
	}
	.btn-text {
		font-size: 18px;
	}
	.main-text {
		font-size: 18px;
	}
	.subtitle {
		font-size: 22px;
	}
	.timer-container {
		height: 56px;
	}
	.main-section__control .swiper-prev {
		left: 50px;
	}
	.main-section__control .swiper-next {
		right: 50px;
	}
	.main-section .swiper-pagination {
		padding: 0 50px 24px;
		padding-right: 160px;
	}
	h2.section-title {
		font-size: 28px;
	}
	.header-phone {
		display: none;
	}
	.header-phone-mini {
		height: 56px;
		width: 56px;
		border-radius: 50%;
		background: #3d3d3d;
		display: flex;
		align-items: center;
		justify-content: center;
		border: 2px solid #3d3d3d;
	}
	.header-phone-mini:hover {
		background: transparent;
		border: 2px solid #D7172F;
	}
	.header-features {
		gap: 32px;
	}
	.header.transparent .header-phone-mini {
		background: #fff;
		border: 2px solid #fff;
	}
	.header.transparent .header-phone-mini:hover {
		border: 2px solid #D7172F;
	}

	.map {
		height: 600px;
	}
	.advantages-element {
		padding: 24px;
	}
	.genplan__item {
		height: 56px;
		width: 56px;
		font-size: 22px;
	}
	.main-section__banners {
		right: 160px;
	}
	.form-container {
		padding: 80px 100px;
	}
	.form-container__content {
		max-width: 484px;
	}
	.apartment__img img{
		height: 500px;
	}
	.gallery-swiper {
		height: 500px;
	}
}
@media screen and (max-width: 1440px) {
	.calculator-content {
		flex-direction: column;
		gap: 16px;	
	}
	.calculator-offers {
		width: 100%;
	}
	.calculator__inputs {
		width: 100%;
	}
	.footer-menu {
		gap: 130px;
	}
	.footer-menu__info, .footer-menu__flats {
		max-width: 387px;
	}
	.calculator-installment > img {
		bottom: 0%;
		scale: 1.5;
	}
	.plans__filter-element > .dropdown {
		min-width: unset;
	}
	.choice-area__info {
		padding: 32px;
	}	
}

@media screen and (max-width: 1224px) {
	.header-navbar {
		display: none;
	}
	h1.section-title {
		font-size: 32px;
	}
	.advantages-elements {
		flex-wrap: wrap;
		gap: 20px;
	}
	.advantages-element {
		width: calc(50% - 10px);
	}
	.advantages-element:last-child {
		width: 100%;
	}
	.advantages-index {
		flex-wrap: wrap;
		padding: 32px;
		gap: 20px;
	}
	.advantage-index__icon {
		margin-right: 16px;
	}
	.advantages-index__element {
		width: calc(50% - 10px);
	}
	.about-project {
		flex-direction: column;
	}
	.about-project__image {
		width: 100%;
		height: 400px;
	}
	.about-project__text {
		width: 100%;
		margin-top: 20px;
	}
	.info-card {
		padding: 32px;
	}
	.pluses-swiper {
		height: auto;
	}
	.pluses-swiper .swiper-slide {
		flex-direction: column;
	}
	.pluses__content {
		margin-left: 0;
		width: 100%;
		padding: 32px;
	}
	.pluses__content > * {
		max-width: calc(100% - 160px) ;
	}
	.pluses-swiper .pluses__image > img {
	}
	.pluses-swiper .pluses__image {
		width: 100%;
		height: 400px;
		margin-bottom: 16px;
	}
	.pluses-swiper > .swiper-prev, .pluses-swiper > .swiper-next {
		bottom: unset;
		top: 432px;
	}
	.pluses-swiper > .swiper-next {
		right: 32px;
	}
	.pluses-swiper > .swiper-prev {
		right: 112px;
	}
	.apartment__text, .apartment__img{
		width: 49%;
	}
	.about-builder {
		flex-wrap: wrap;
	}
	.about-builder__text {
		width: 100%;
	}
	.builder__slider {
		width: 100%;
		margin-top: 32px;
	}
	.main-section__banners {
		display: none;
	}
	.index-page .info-card:last-child {
		display: none;
	}
	.info-container {
		gap: 20px;
	}
	.info-card {
		width: calc(50% - 10px);
	}
	.plans__filter {
		flex-wrap: wrap;
	}
	.search__flats-element {
		width: calc(33.33% - 20px);
	}
	.plans__filter-element {
		flex: 1 1 auto;
	}
	.plans__filter > .button {
		width: 100%;
	}
	.main-section .swiper-pagination {
		padding-right: 50px;
	}
	.choice-area {
		flex-direction: column;
	}
	.choice-area__image {
		width: 100%;
	}
	
	.choice-area__info {
		width: 100%;
		margin-top: 16px;
	}
}
@media screen and (max-width: 1024px) {
	.main-section__element {
		width: 100%;
	}
	.main-section .swiper-slide > .wrapper-content {
		padding-bottom: 52px;
	}
	.main-section .swiper-pagination {
		justify-content: center;
	}
	.main-section__control {
		display: none;
	}
	.about-project__text {
		padding: 32px;
	}
	.section-header {
		margin-bottom: 32px;
	}
	.section-block {
		padding: 55px 0;
	}
	.section-block.pt160 {
		padding-top: 110px;
	}
	.section-block.pb160 {
		padding-bottom: 110px;
	}
	.genplan-content {
		overflow: auto;
	}
	.genplan__img {
		min-width: 1224px;
	}
	.genplan__intaractive {
		min-width: 1224px;
	}
	.form-container {
		padding: 32px;
	}
	.flats-tabs > div {
		width: 175px;
	}
	.calculator {
		width: 100%;
	}
	.calculator-installment {
		width: 100%;
		height: 420px;
		margin-top: 30px;
	}
	.calculator-container {
		flex-direction: column;
	}
	.calculator-installment > img {
		max-height: 90%;
		left: 50%;
		height: 100%;
		object-fit: contain;
		bottom: -10%;
		max-width: 760px;
		width: 100%;
		scale: 1;
		transform: translateX(-50%);
	}
	.map-hint {
		left: 32px;
	}
	.footer-menu__info {
		width: 100%;
		max-width: 100%;
		margin-bottom: 64px;
	}
	.footer-menu {
		gap: unset;
		justify-content: space-between;
		flex-wrap: wrap;
	}
	.footer-menu__flats {
		width: 49%;
		max-width: 100%;
	}
	.footer-menu__navbar {
		width: 50%;
	}
	.footer-menu__navbar {
		gap: 16px;
	}
	.fixbar__asset {
		width: 40%;
	}
	.goto__back {
		margin-bottom: 32px;
	}
	.docs-card {
		width: 100%;
	}
	.plans__filter-element .calculator_input {
		width: 100%;
	}
	.filter__range {
		width: 100%;
	}
	.search__flats {
		gap: 30px;
	}
	.search__flats-element {
		width: calc(50% - 15px);
	}
	.choice-area__image.flat {
		height: 330px;
	}
	.main-section__banners {
		display: flex;
		position: static;
		width: 100%;
		max-width: 100%;
	}
	.main-section__banner {
		background: #3d3d3d;
		flex-direction: row;
		justify-content: space-between;
	}
	.timer-container {
		max-width: 350px;
		width: 50%;
	}
	.main-section__banner > .subtitle {
		max-width: 350px;
		width: 50%;
	}
	.map-hint {
		max-width: 336px;
	}
	.map-hint > .button {
		font-size: 16px;
	}
	.pluses-swiper > .swiper-prev, .pluses-swiper > .swiper-next {
		top: 440px;
	}
}
@media screen and (max-width: 880px) {
	.wrapper-content {
		padding: 0 40px;
	}
	.burger {
		right: 40px;
	}
	.fixbar-content {
		width: 100%;
		max-width: 100%;
	}
	.fixbar__asset {
		width: 100%;
		bottom: 0;
		height: 30%;
		object-position: 20% 80%;
	}
	.fixbar-container {
		max-height: 60%;
	}
	.map-container .dropdown {
		position: absolute;
		bottom: 24px;
		width: calc(100% - 48px);
		left: 0;
		right: 0;
		margin: 0 auto;
		display: flex;
	}
	.map-hint {
		display: none;
	}
	.genplan__item {
		height: 48px;
		width: 48px;
	}
	.choice-area__info {
		padding: 24px;
	}
	.form-asset__img {
		max-width: 70%;
		left: -20%;
	}
	.form-container {
		overflow: hidden;
	}
	.form-container__content {
		width: 65%;
	}
	.flats-swiper > .swiper-prev, .flats-swiper > .swiper-next {
		display: none;
	}
	.flats-tabs {
		width: 100%;
		flex-wrap: nowrap;
		margin-bottom: 24px;
	}
	.flats-tabs > div {
		width: 100%;

	}
	.pluses-swiper > .swiper-prev, .pluses-swiper > .swiper-next{
		display: none;
	}
	.pluses-swiper .swiper-pagination {
		padding: 0;
		display: flex;
		bottom: -16px;
	}
	.apartment__block {
		flex-direction: column;
		gap: 32px;
	}
	.apartment__block:first-child {
		flex-direction: column-reverse;
	}
	.apartment__text, .apartment__img{
		width: 100%;
	}
	.apartment__text > .tags {
		margin-top: 16px;
	}
	.gallery-swiper .swiper-prev, .gallery-swiper .swiper-next {
		display: none;
	} 
	.gallery-swiper .swiper-pagination {
		display: flex;
		bottom: -24px;
		padding: 0;
	}
	.hs__control {
		display: none;
	}
	
	.form-container.img__right .form-asset__img {
		max-height: calc(100% - 20px);
	}
	.hs__swiper {
		padding-bottom: 24px;
	}
	.hs__swiper .swiper-pagination {
		display: flex;
		padding: 0;
		bottom: 0;
	}
	.about-project-text__content {
		gap: 32px;
	}
	.flats-swiper {
		padding-bottom: 18px;
	}
	.flats-swiper .swiper-pagination {
		display: flex;
		padding-bottom: 0;
		top: unset;
		bottom: 0;
	} 
	.flats-swiper .swiper-pagination > span {
		background: #fff;
	}
	.flats-swiper .swiper-pagination > span.swiper-pagination-bullet-active {
		background: #D7172F;
	}
	.swiper-pagination > span {
		width: 100%;
	}
	.section-header {
		align-items: flex-start;
		gap: 32px;
		flex-direction: column;
	}
	.section-header .button {
		width: 100%;
	}
	.calculator-installment > img {
		max-height: 120%;
		height: 100%;
		bottom: -20%;
	}
	.fltr_block13 {
		width: 48%;
	}
	.eFiltr_btn_wrapper, .eFiltr_btn_wrapper > .button {
		width: 100%;
	}

}
@media screen and (max-width: 576px) {
	.button.header-button {
		display: none;
	}
	.wrapper-content {
		padding: 0 24px;
	}
	.burger {
		right: 24px;
	}
	.fixbar__asset {
		display: none;
	}
	.main-section__element {
		padding: 24px;
	}
	.button {
		font-size: 18px;
	}
	.advantages-index {
		padding: 24px;
	}
	.advantages-index__element {
		width: 100%;
	}
	.advantages-element {
		width: 100%;
	}
	.wrapper-content.hint-container {
		display: none;
	}
	.form-container__content {
		width: 100%;
	}
	h2.section-title {
		font-size: 24px;
	}
	.form-container {
		padding: 24px;
		flex-direction: column-reverse;
	}
	.form-asset__img {
		max-width: 100vw;
		width: 100vw;
		left: -15%;
		bottom: -24px;
		position: relative;
	}
	
	.section-header {
		flex-direction: column;
		align-items: flex-start;
	}
	.section-header > .btn-text{
		margin-top: 24px;
	}
	.info-container {
		flex-direction: column;
	}
	.info-card {
		height: 300px;
		width: 100%;
	}
	.pluses__content > * {
		max-width: 100%;
	}
	.apartment__img img{
		height: 300px;
	}
	.gallery-swiper {
		height: 300px;
	}
	.about-builder__info {
		flex-direction: column;
		gap: 16px;
	}
	.about-builder__info > div {
		width: 100%;
	}
	/* .builder__slider {
		height: 300px;
	} */
	.section-header > .button {
		margin-top: 32px;
		width: 100%;
	} 
	.calculator-tags {
		flex-direction: column;
	}
	.calculator-offer {
		width: 100%;
	}
	.form-container.img__right {
		flex-direction: column;
	}
	.footer-menu__flats {
		width: 100%;
		margin-bottom: 32px;
	}
	.footer-menu__navbar {
		width: 100%;
	}
	.footer-menu__flats {
		gap: 16px;
	}
	.modal__content, .modal__info-card__content {
		height: 100%;
		max-height: 100%;
		border-radius: 0;
		padding: 100px 24px 40px;
	}
	.modal__close {
		right: 24px;
		top: 24px;
	}
	h1.section-title {
		font-size: 28px;
	}
	.modal__hs .swiper-prev,.modal__hs .swiper-next {
		display: none;
	} 
	.modal__hs-swiper .modal__close {
		top: -8px;
	}
	.dropdown.hs-mob {
		display: flex;
	}
	.search__flats-element {
		width: 100%;
	}
	.search__flats-element .header-button {
		display: flex;
	}
	.choice-liter-info {
		flex-direction: column;
		gap: 32px;
	}
	.choice-area__liter {
		width: 100%;
	}
	.choice-entarance-info {
		margin-bottom: 32px;
	}
	.header-logo {
		 max-width: 40%;
	}
	.header-logo svg {
		width: 100%;
	}
	.main-section__banner {
		flex-direction: column;
	}
	.main-section__banner > .subtitle  {
		width: 100%;
	}
	.timer-container {
		width: 100%;
	}
	.section-header__block {
		align-items: flex-start;
	}
	.section-header__block > .block {
		margin-top: 12px;
	}
	.h-scroll__img {
		display: flex;
		position: absolute;
		bottom: 24px;
		height: 64px;
		width: 64px;
		left: 50%;
		transform: translateX(-50%);
		animation: hscroll 2s linear infinite;
	}
	@keyframes hscroll {
		0% {
			transform: translateX(calc(0px - 50%));
		}
		25% {
			transform: translateX(calc(25px - 50%));
		}
		75% {
			transform: translateX(calc(-25px - 50%));
		}
		100% {
			transform: translateX(calc(0px - 50%));
		}
	}

	.pluses-swiper .pluses__image {
		height: 300px;
	}
	.plans__filter-element select {
		width: 100%;
	}
	.plans__filter {
		margin-top: 0;
	}
	.goto__back {
		margin-top: 24px;
	}
	.form-container__content {
		gap: 24px;
	}
	.docs-card__content {
		margin-bottom: 0;
	}
}

.fancybox-button svg path{
	fill: #FFFFFF;
}


.footer a img{
	width: auto;
	height: 100px;
}

.choice-area__title{
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	text-align: center;
	display: block;
	font-size: 20px;
	font-weight: 500;
	padding: 20px;
}
@media screen and (max-width: 576px) {
	.choice-area__title{
		padding: 5px 0;
		font-size: 14px;
	}
}

.goto__back{
	cursor: pointer;
}

.section-header.margin-bottom-0{
	margin-bottom: 0;
}
.margin-top-50{
	margin-top: 50px;
}

.flats .swiper-prev {
	right: 80px;
	left: unset;
}
@media screen and (max-width: 880px) {
	.flats .swiper-prev, .flats .swiper-next {
			display: none;
	}
}

.apartment__img.height-auto{
	height: auto;
}

.panorama__btn{
	margin-top: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.panorama__btn .button{
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
}
.panorama__btn .button img{
	width: auto;
	height: 20px;
	margin-right: 10px;
}

.swiper-next.swiper-button-lock,
.swiper-prev.swiper-button-lock{
	/* filter: grayscale(100);
	pointer-events: none */
	display: none;
}
.swiper-next.swiper-button-lock:hover,
.swiper-prev.swiper-button-lock:hover{
	background-color: #000;
}


@media screen and (min-width: 700px) {
	.burger {
			top: 33px;
	}
}

@media screen and (min-width: 1200px) and (max-width: 1599px) {
	.header-logo {
			height: 75%;
	}
	.header-navbar{
		gap: 12px;
		white-space: nowrap;
	}
	.header-button {
		padding: 0 20px;
	}
	.header-navbar .btn-text{
		font-size: 14px;
	}
	.header-features {
		gap: 16px;
	}
	.header .button {
		font-size: 16px;
	}
}
@media screen and (min-width: 1600px) and (max-width: 2299px) {
	.header-logo {
			height: 85%;
	}
	.header-navbar{
		gap: 16px;
	}
	.header-navbar .btn-text{
		font-size: 16px;
	}
	.header-features {
		gap: 16px;
	}
	.header .button {
		font-size: 18px;
	}
}


.fltr_block14 label:nth-child(1){order: 2;}
.fltr_block14 label:nth-child(2){order: 4;}
.fltr_block14 label:nth-child(3){order: 6;}
.fltr_block14 label:nth-child(4){order: 3;}
.fltr_block14 label:nth-child(5){order: 5;}
.fltr_block14 label:nth-child(6){order: 7;}
.fltr_block14 label:nth-child(7){order: 1;}


.apartment__toggle{
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 30px 0 0;
	font-size: 16px;
}
.apartment__toggle span{
	color: #3d3d3d;
	cursor: pointer;
	transition: color .25s ease-out;
}
.apartment__toggle .active{
	color: #000;
}
.apartment__toggle .active + div::before{
	left: 2px;
}
.apartment__toggle div{
	width: 50px;
	height: 25px;
	border-radius: 50px;
	border: 1px solid #3d3d3d;
	margin: 0 10px;
	position: relative;
	cursor: pointer;
}
.apartment__toggle div::before{
	content: "";
	position: absolute;
	left: 26px;
	top: 0;
	bottom: 0;
	display: block;
	margin: auto;
	width: 20px;
	height: 20px;
	border-radius: 100%;
	background-color: #3d3d3d;
	transition: left .25s ease-out;
}

.footer__broker{
	color: #fff;
	cursor: pointer;
	font-size: 18px;
	text-decoration: underline;
}
@media (max-width: 699px) {
	.main-section{
		height: 92vh;
	}
}
.modal-broker .modal__content{
	max-height: 100vh;
	overflow: auto;
}
.flats-slide__img a{
	display: block;
}

.apartment__img .img__plan{
	height: auto;
	width: 100%;
	display: block;
}
.apartment__img .svg__interactive path{
	opacity: 1;
}

.flats-selects{
	position: relative;
}
.flats-selects.active .flats-tabs{
	opacity: 1;
	visibility: visible;
}
.flats-selects.active .flats-selects__current img{
	transform: rotate(-180deg);
}
.flats-selects__current{
	display: flex;
	user-select: none;
	height: 48px;
	width: 100%;
	border-radius: 60px;
	align-items: center;
	cursor: pointer;
	justify-content: space-between;
	padding: 0 16px;
	border: 1px solid #3d3d3d;
	transition: .3s;
	white-space: nowrap;
}
.flats-selects__current img{
	transition: transform .25s ease-out;
}
@media (max-width: 699px) {
	.flats-tabs{
		visibility: hidden;
		opacity: 0;
		transition: visibility .25s ease-out, opacity .25s ease-out;
		flex-wrap: wrap;
		position: absolute;
		border-radius: 16px;
		left: 0;
		top: 100%;
		z-index: 5;
		background-color: #fff;
		gap: 0;
		margin: 0;
		padding: 0;
		border: 1px solid #000;
	}
	.flats-tabs > div{
		border: 0;
		height: auto;
		border-radius: 0;
		padding: 8px 0;
	}
	.flats-swiper{
		margin-top: 32px;
	}
}
@media (min-width: 700px) {
	.flats-selects__current{
		display: none;
	}
}


.fancybox-container .fancybox-navigation{
	position: unset;
}
.fancybox-container .fancybox-infobar, .fancybox-container .fancybox-infobar *{
	color: #fff;
}