@font-face {
  font-family: 'Roboto';
  src: url('../fonts/Roboto-Medium.woff2') format('woff2'),
    url('../fonts/Roboto-Medium.woff') format('woff');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Roboto';
  src: url('../fonts/Roboto-Regular.woff2') format('woff2'),
    url('../fonts/Roboto-Regular.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Monch Antiqua';
  src: url('../fonts/MonchAntiqua.woff2') format('woff2'),
    url('../fonts/MonchAntiqua.woff') format('woff');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Roboto';
}

body {
  font-family: 'Roboto';
  height: 100vh;
}

ul {
  list-style-type: none;
}

a {
  color: black;
  text-decoration: none;
}

img {
  max-width: 100%;
}

.container {
  max-width: 1280px;
  padding: 0 40px;
  margin: 0 auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 500;
  line-height: 100%;
  border-radius: 20px;
  cursor: pointer;
  transition: 0.15s all ease-in-out;
  height: 52px;
  padding: 14px 32px;
  border: 0;
}

.btn_filled-light {
  background: var(--dark-begie, #F0C7AB);
  color: var(--Brown-100, #85544D);
}

.btn_filled-light:hover {
  background: linear-gradient(0deg, rgba(57, 53, 52, 0.05) 0%, rgba(57, 53, 52, 0.05) 100%), var(--dark-begie, #F0C7AB);
}

.btn_filled-dark {
  background: #85544D;
  color: #F3DCCC;
}

.btn_filled-dark:hover {
  background: linear-gradient(0deg, var(--Black-text-20, rgba(57, 53, 52, 0.20)) 0%, var(--Black-text-20, rgba(57, 53, 52, 0.20)) 100%), #85544D;
}

.btn_bordered {
  color: var(--Black-text-100, #393534);
  border: 1px solid var(--Brown-60, rgba(133, 84, 77, 0.60));
  background: transparent;
}

.btn_bordered-light {
  color: var(--Begie-100, #F3DCCC);
  border: 1px solid var(--Begie-100, #F3DCCC);
  background: transparent;
}

.section-title {
  color: var(--Black-text-100, #393534);
  text-align: center;
  font-family: "Monch Antiqua";
  font-size: 64px;
  font-weight: 500;
  line-height: 100%;
  letter-spacing: 1.28px;
}

.section-subtitle {
  color: var(--Black-text-80, rgba(57, 53, 52, 0.80));
  text-align: center;
  font-size: 20px;
  font-weight: 400;
  line-height: 130%;
}

.header {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 2;
  width: 100%;
  border-radius: 0 0 32px 32px;
  background: var(--Begie-100, #F3DCCC);
  box-shadow: 0 4px 23px 0 rgba(126, 101, 84, 0.15);
  backdrop-filter: blur(16px);
  padding: 12px;
  padding-left: 24px;
}

.header__container {
  display: flex;
  align-items: center;
}

.header__logo {
  margin-right: 32px;
}

.header__nav {
  margin-left: auto;
}

.header__nav-list {
  display: flex;
  align-items: center;
  gap: 16px;
}

.header__nav-link {
  color: var(--Brown-60, rgba(133, 84, 77, 0.60));
  font-size: 14px;
  font-weight: 400;
  line-height: 130%;
  cursor: pointer;
}

.header__nav-link:hover {
  color: #85544D;
}

.header__btns {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: 32px;
}

.header__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--Black-text-100, #393534);
  font-size: 16px;
  font-weight: 500;
  line-height: 100%;
  border-radius: 20px;
  border: 1px solid var(--Brown-60, rgba(133, 84, 77, 0.60));
  padding: 16px 32px;
  height: 56px;
  background: transparent;
  cursor: pointer;
}

.header__btn.header__btn_icon-only {
  padding: 16px;
}

.top-sections-wrpr {
  position: relative;
  background-image: url(../images/hero.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.hero {
  z-index: 1;
  position: relative;
  padding: 209px 0 125px;
}

.hero__wrpr {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hero__info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 32px;
}

.hero__info-item {
  border-radius: 8px;
  background: var(--White-20, rgba(255, 255, 255, 0.20));
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--Begie-100, #F3DCCC);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
  padding: 4px 16px;
}

.hero__info-item:first-child {
  padding-left: 4px;
}

.hero__title {
  color: var(--Begie-100, #F3DCCC);
  text-align: center;
  font-family: "Monch Antiqua";
  font-size: 80px;
  font-weight: 500;
  line-height: 100%;
  letter-spacing: 1.6px;
  margin-bottom: 8px;
}

.hero__subtitle {
  color: var(--Begie-100, #F3DCCC);
  text-align: center;
  font-size: 16px;
  font-weight: 400;
  line-height: 130%;
  margin-bottom: 48px;
}

.features {
  border-radius: 140px 140px 0 0;
  background: var(--Begie-100, #F3DCCC);
  padding: 80px 0;
}

.features__wrpr,
.features__last-items-wrpr {
  display: flex;
  align-items: flex-start;
  gap: 23px;
}

.features__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.features__item-icon-wrpr {
  height: 110px;
  width: 110px;
  border-radius: 100px;
  background: var(--White-40, rgba(255, 255, 255, 0.40));
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.features__item-text {
  color: var(--Black-text-100, #393534);
  text-align: center;
  font-size: 16px;
  font-weight: 400;
  line-height: 130%;
}

.comfort {
  border-radius: 140px 140px 0 0;
  background: var(--dark-begie, #F0C7AB);
  padding: 80px 0;
  position: relative;
}

.comfort::before {
  content: "";
  display: block;
  width: 100%;
  height: 140px;
  z-index: -1;
  position: absolute;
  left: 0;
  top: 0;
  background: var(--Begie-100, #F3DCCC);
}

.comfort__title {
  margin-bottom: 40px;
}

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

.comfort__item {
  width: calc(33.33% - 4px);
  border-radius: 48px;
  background: var(--Begie-100, #F3DCCC);
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 300px;
  overflow: hidden;
}

.comfort__item.comfort__item_img {
  padding: 0;
  flex-direction: row;
}

.comfort__item.comfort__item_img img {
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
}

.comfort__item-icon {
  border-radius: 20px;
  background: var(--dark-begie, #F0C7AB);
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.comfort__item-text {
  color: var(--Black-text-100, #393534);
  font-size: 28px;
  font-weight: 400;
  line-height: 120%;
  max-width: 233px;
}

.space {
  border-radius: 100px 100px 0 0;
  background: var(--Begie-100, #F3DCCC);
  position: relative;
  padding: 80px 0;
}

.space::before {
  content: "";
  display: block;
  width: 100%;
  height: 140px;
  z-index: -1;
  position: absolute;
  left: 0;
  top: 0;
  background: var(--dark-begie, #F0C7AB);
}

.space__title {
  max-width: 873px;
  margin: 0 auto 16px;
}

.space__subtitle {
  max-width: 800px;
  margin: 0 auto 64px;
}

.space__wrpr {
  display: flex;
  gap: 40px;
}

.space__left-col {
  width: 50%;
}

.space__right-col {
  width: 50%;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.space__swiper {
  overflow: hidden;
  position: relative;
}

.space__slide {
  display: flex;
  justify-content: center;
  align-items: center;
}

.space__slide-img {
  border-radius: 48px;
  overflow: hidden;
  width: 100%;
}

.space__slide-img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.swiper-pagination.space__swiper-pagination {
  bottom: 24px;
}

.swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: var(--Begie-20, rgba(243, 220, 204, 0.20));
  backdrop-filter: blur(10px);
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background: var(--Begie-100, #F3DCCC);
}

.space__text-top {
  color: var(--Black-text-80, rgba(57, 53, 52, 0.80));
  font-size: 20px;
  font-weight: 400;
  line-height: 130%;
  margin-bottom: 16px;
}

.space__text-bottom {
  color: var(--Black-text-60, rgba(57, 53, 52, 0.60));
  font-size: 16px;
  font-weight: 400;
  line-height: 130%;
  margin-bottom: 8px;
}

.space__contact-btn {
  margin-top: auto;
}

.callback {
  padding: 80px 0;
  background: var(--Begie-100, #F3DCCC);
}

.callback_dark-bg {
  border-radius: 140px 140px 0 0;
  background: var(--dark-begie, #F0C7AB);
  position: relative;
}

.callback_dark-bg::before {
  content: "";
  display: block;
  width: 100%;
  height: 140px;
  z-index: -1;
  position: absolute;
  left: 0;
  top: 0;
  background: var(--Begie-100, #F3DCCC);
}

.contact {
  border-radius: 72px;
  background: var(--green, #C7CDCD);
  padding: 56px;
  display: flex;
  gap: 16px;
}

.contact__left-col {
  width: 51%;
}

.contact__right-col {
  width: 49%;
}

.contact__title {
  color: var(--Black-text-100, #393534);
  font-family: "Monch Antiqua";
  font-size: 48px;
  font-weight: 500;
  line-height: 100%;
  letter-spacing: 0.96px;
  margin-bottom: 12px;
}

.contact__text {
  color: var(--Black-text-80, rgba(57, 53, 52, 0.80));
  font-size: 16px;
  font-weight: 400;
  line-height: 130%;
  max-width: 486px;
}

.input-group {
  position: relative;
  width: 100%;
}

.input-placeholder {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(57, 53, 52, 0.80);
  font-size: 16px;
  font-weight: 400;
  line-height: 130%;
  transition: all 0.3s;
}

.input {
  padding: 20px 16px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.10);
  width: 100%;
  margin-top: 8px;
  color: rgba(57, 53, 52, 0.80);
  font-size: 16px;
  font-weight: 400;
  line-height: 130%;
  outline: none;
  transition: all 0.3s;
}

.input:hover {
  background: rgba(255, 255, 255, 0.20);
  border-color: rgba(255, 255, 255, 0.20);
  color: rgba(57, 53, 52, 0.80);
}

.invalid {
  border-color: rgba(185, 62, 46, 0.20);
}

.invalid:hover {
  background: rgba(185, 62, 46, 0.04);
}

.input-error {
  padding-left: 16px;
  padding-top: 4px;
  display: none;
  color: #B93E2E;
  font-size: 14px;
  font-weight: 400;
  line-height: 130%;
}

.input-error.input-error_in-group {
  position: absolute;
}

.invalid ~ .input-error {
  display: block;
}

.input-group:has(.invalid) {
  margin-bottom: 22px;
}

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

.input::placeholder {
  color: var(--Green-900-60, rgba(16, 44, 49, 0.60));
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 100%;
  transition: all 0.3s;
}

.input-name:focus,
.input-name.active {
  padding: 30px 16px 10px;
}

.input-name:focus+.input-placeholder,
.input-placeholder.active {
  top: 11px;
  color: rgba(57, 53, 52, 0.40);
  font-size: 14px;
  font-weight: 400;
  line-height: 130%;
  display: block;
  transform: none;
}

.input:hover::placeholder {
  color: #102C31;
}

.input-name {
  position: relative;
}

.feedback__policy {
  margin-top: 12px;
  padding-left: 4px;
  display: flex;
  gap: 8px;
  align-items: center;
  position: relative;
}

.feedback__policy.feedback__policy_modal {
  margin-bottom: 16px;
}

.feedback__policy-str {
  color: var(--Black-text-40, rgba(57, 53, 52, 0.40));
  font-size: 14px;
  font-weight: 400;
  line-height: 130%;
}

.feedback__policy-str a {
  color: var(--Black-text-80, rgba(57, 53, 52, 0.80));
}

.feedback__policy-label {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  border-radius: 6px;
  background: var(--White-20, rgba(255, 255, 255, 0.20));
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
}

.feedback__policy-label::before {
  content: '';
  width: 4px;
  height: 10px;
  border-bottom: 1.5px solid #FFFFFF;
  border-right: 1.5px solid #FFFFFF;
  transform: rotate(45deg);
  margin-bottom: 2px;
  opacity: 0;
}

#checkbox:checked+.feedback__policy-label {
  background: #85544D;
}

#checkbox:checked+.feedback__policy-label::before {
  opacity: 1;
}

#checkbox {
  position: absolute;
  z-index: -1;
  opacity: -1;
}

.feedback__btn {
  margin-top: 40px;
}

.genplan {
  border-radius: 140px 140px 0 0;
  background: var(--Brown-100, #85544D);
  padding: 80px 0px;
  position: relative;
}

.genplan::before {
  content: "";
  display: block;
  width: 100%;
  height: 140px;
  z-index: -1;
  position: absolute;
  left: 0;
  top: 0;
  background: var(--Begie-100, #F3DCCC);
}

.genplan__top {
  display: flex;
  gap: 107px;
  margin-bottom: 64px;
}

.genplan__top-left {
  width: 50%;
  max-width: 502px;
}

.genplan__top-right {
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.genplan__title {
  color: var(--Begie-100, #F3DCCC);
  font-family: "Monch Antiqua";
  font-size: 64px;
  font-weight: 500;
  line-height: 100%;
  letter-spacing: 1.28px;
  margin-bottom: 40px;
}

.genplan__top-left-btns {
  display: flex;
  align-items: center;
  gap: 8px;
}

.genplan__top-right-text {
  color: var(--Begie-100, #F3DCCC);
  font-size: 20px;
  font-weight: 400;
  line-height: 130%;
}

.genplan__bottom {
  border-radius: 88px;
  overflow: hidden;
  position: relative;
}

.genplan__map-btn {
  position: absolute;
  top: 48px;
  right: 48px;
}

.genplan__map_mobile {
  display: none;
}

.location {
  border-radius: 140px 140px 0 0;
  background: var(--Begie-100, #F3DCCC);
  padding: 80px 0;
  position: relative;
}

.location::before {
  content: "";
  display: block;
  width: 100%;
  height: 140px;
  z-index: -1;
  position: absolute;
  left: 0;
  top: 0;
  background: var(--Brown-100, #85544D);
}

.location__title {
  margin-bottom: 16px;
}

.location__subtitle {
  margin-bottom: 40px;
}

.location__map {
  border-radius: 64px;
  overflow: hidden;
  height: 405px;
}

.suitable {
  background: var(--Begie-100, #F3DCCC);
  padding: 80px 0;
}

.suitable__title {
  margin-bottom: 40px;
}

.suitable__swiper-wrapper {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-gap: 8px;
  grid-template-areas:
    "a a a a a a b b b b b b"
    "c c c d d d b b b b b b"
    "e e e e f f f f g g g g";
}

.suitable__slide {
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 48px;
  background: var(--dark-begie, #F0C7AB);
  min-height: 300px;
  overflow: hidden;
  position: relative;
}

.suitable__slide-title {
  color: var(--Black-text-100, #393534);
  font-size: 28px;
  font-weight: 400;
  line-height: 120%;
}

.suitable__slide-text {
  color: var(--Black-text-60, rgba(57, 53, 52, 0.60));
  font-size: 16px;
  font-weight: 400;
  line-height: 130%;
}

.suitable__slide-img {
  position: absolute;
  left: 0;
  top: 0;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
}

.suitable__slide:nth-child(1) {
  grid-area: a;
}

.suitable__slide:nth-child(2) {
  grid-area: c;
}

.suitable__slide:nth-child(3) {
  grid-area: d;
}

.suitable__slide:nth-child(4) {
  grid-area: b;
}

.suitable__slide:nth-child(5) {
  grid-area: e;
}

.suitable__slide:nth-child(6) {
  grid-area: f;
}

.suitable__slide:nth-child(7) {
  grid-area: g;
}

.terms-of-purchase {
  border-radius: 140px 140px 0 0;
  background: var(--dark-begie, #F0C7AB);
  padding: 80px 0;
  position: relative;
}

.terms-of-purchase::before {
  content: "";
  display: block;
  width: 100%;
  height: 140px;
  z-index: -1;
  position: absolute;
  left: 0;
  top: 0;
  background: var(--Begie-100, #F3DCCC);
}

.terms-of-purchase__title {
  margin-bottom: 16px;
}

.terms-of-purchase__subtitle {
  margin-bottom: 40px;
}

.terms-of-purchase__wrpr {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

.terms-of-purchase__item {
  border-radius: 100px;
  background: var(--White-40, rgba(255, 255, 255, 0.40));
  min-height: 64px;
  padding: 4px 24px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.terms-of-purchase__item svg {
  flex-shrink: 0;
}

.terms-of-purchase__item-text {
  color: var(--Black-text-100, #393534);
  font-size: 24px;
  font-weight: 400;
  line-height: 130%;
}


.experience {
  border-radius: 140px 140px 0 0;
  background: var(--Begie-100, #F3DCCC);
  padding: 80px 0;
  position: relative;
}

.experience::before {
  content: "";
  display: block;
  width: 100%;
  height: 140px;
  z-index: -1;
  position: absolute;
  left: 0;
  top: 0;
  background: var(--dark-begie, #F0C7AB);
}

.experience__img-wrpr {
  border-radius: 74px;
  overflow: hidden;
  margin: 64px 0;
  display: flex;
  align-items: center;
}

.experience__img {
  object-fit: cover;
  min-height: 100%;
  min-width: 100%;
}

.experience__img_mobile {
  display: none;
}

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

.experience__left-col {
  max-width: 572px;
  width: 100%;
}

.experience__right-col {
  flex: 1;
}

.experience__top-title {
  text-align: left;
}

.experience__top-text {
  color: var(--Black-text-80, rgba(57, 53, 52, 0.80));
  font-size: 20px;
  font-weight: 400;
  line-height: 130%;
}

.experience__top-text + .experience__top-text {
  margin-top: 16px;
}

.experience__bottom-title {
  color: var(--Black-text-100, #393534);
  font-family: "Monch Antiqua";
  font-size: 48px;
  font-weight: 500;
  line-height: 100%;
  letter-spacing: 0.96px;
  text-align: left;
}

.experience__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  list-style: none;
  counter-reset: item;
}

.experience__list-item {
  border-radius: 24px;
  background: var(--dark-begie, #F0C7AB);
  padding: 8px;
  color: var(--Black-text-80, rgba(57, 53, 52, 0.80));
  font-size: 20px;
  font-weight: 400;
  line-height: 130%;
  counter-increment: item;
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.experience__list-item::before {
  content: counter(item);
  border-radius: 20px;
  background: var(--Begie-100, #F3DCCC);
  width: 56px;
  height: 56px;
  color: var(--Black-text-100, #393534);
  font-size: 20px;
  font-weight: 400;
  line-height: 130%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.footer {
  padding: 80px 0;
  border-radius: 140px 140px 0 0;
  background: var(--Brown-100, #85544D);
  position: relative;
}

.footer::before {
  content: "";
  display: block;
  width: 100%;
  height: 140px;
  z-index: -1;
  position: absolute;
  left: 0;
  top: 0;
  background: var(--dark-begie, #F0C7AB);
}

.footer__title {
  text-align: left;
  color: var(--Begie-100, #F3DCCC);
  margin-bottom: 40px;
}

.footer__cols {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.footer__cols + .footer__cols {
  margin-top: 64px;
}

.footer__col {
  flex: 1;
}

.footer__card {
  border-radius: 40px;
  background: var(--Begie-100, #F3DCCC);
  padding: 24px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.footer__card-top {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 24px;
}

.footer__card-top svg {
  flex-shrink: 0;
}

.footer__card-link {
  color: var(--Brown-100, #85544D);
  font-size: 20px;
  font-weight: 400;
  line-height: 130%;
}

.footer__card-btns {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer__text {
  color: var(--Begie-40, rgba(243, 220, 204, 0.40));
  font-size: 14px;
  font-weight: 400;
  line-height: 130%;
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  margin-top: 24px;
}

.footer__bottom-left {
  display: flex;
  align-items: center;
  gap: 20px;
}

.footer__bottom-left-text {
  color: var(--Begie-40, rgba(243, 220, 204, 0.40));
  font-size: 14px;
  font-weight: 400;
  line-height: 130%;
}

.footer__bottom-link {
  color: var(--Begie-100, #F3DCCC);
  font-size: 14px;
  font-weight: 400;
  line-height: 130%;
}

.modal {
  position: fixed;
  z-index: 99;
  top: 0;
  left: -120%;
  width: 100%;
  height: 100%;
  background: var(--Black-text-50, rgba(57, 53, 52, 0.50));
  backdrop-filter: blur(30px);
  display: flex;
  justify-content: center;
  transition: all 0.5s;
  overflow-y: auto;
  padding: 15px;
}

.modal.active {
  left: 0;
}

.modal__item {
  padding: 32px;
  border-radius: 56px;
  border: 1px solid rgba(237, 239, 242, 0.15);
  background: #C7CDCD;
  backdrop-filter: blur(16px);
  width: 610px;
  position: relative;
  min-height: 466px;
  margin: auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.modal__close {
  line-height: 0;
  position: absolute;
  top: 32px;
  right: 32px;
  cursor: pointer;
}

.modal__title {
  color: var(--Black-text-100, #393534);
  font-size: 28px;
  font-weight: 400;
  line-height: 120%;
  padding-right: 44px;
}

.modal__subtitle {
  margin-top: 8px;
  color: var(--Black-text-80, rgba(57, 53, 52, 0.80));
  font-size: 16px;
  font-weight: 400;
  line-height: 130%;
  max-width: 342px;
}

.form_modal {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  flex: 1;
}

.modal__icon-wrpr {
  width: 80px;
  height: 80px;
  border-radius: 32px;
  background: var(--Begie-100, #F3DCCC);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.modal-btn {
  margin-top: auto;
}

.scroll-block {
  position: fixed;
  width: 100%;
  overflow: hidden;
  height: 100%;
}

.burger {
  display: none;
}

.mobile-menu {
  padding: 160px 40px 80px;
  background: var(--Begie-100, #F3DCCC);
  position: fixed;
  z-index: 2;
  left: -120%;
  top: 0;
  width: 100%;
  height: 100vh;
  overflow-y: auto;
  transition: all 0.3s;
}

.mobile-menu.active {
  left: 0;
}

.mobile-menu__lists {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.mobile-menu-li a {
  color: var(--Brown-80, rgba(133, 84, 77, 0.80));
  text-align: center;
  font-size: 28px;
  font-weight: 400;
  line-height: 120%;
}

.mobile-menu__btn {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 40px;
}

.genplan__top-right_mobile {
  display: none;
}

.header__btns_tablet {
  display: none;
}

.genplan__map-btn-mobile {
  display: none;
}

.coocke {
  position: fixed;
  z-index: 100;
  bottom: 16px;
  right: 16px;
  max-width: 687px;
  width: 100%;
  border-radius: 24px;
  background: var(--dark-begie, #F0C7AB);
  padding: 16px;
  padding-left: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.coocke-str {
  color: var(--Black-text-100, #393534);
  font-size: 16px;
  font-weight: 400;
  line-height: 130%;
}

@media(max-width: 1325px) {
  .header__nav-list {
    display: none;
  }

  .burger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    padding: 16px 18px;
    width: 56px;
  }

  .burger span {
    display: block;
    width: 18px;
    height: 2px;
    background: var(--Brown-100, #85544D);
    border-radius: 8px;
  }

  .burger.active span:nth-child(2) {
    display: none;
  }

  .burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(2px, 2px);
  }

  .burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(2px, -2px);
  }

  .hero {
    padding: 160px 0 80px;
  }

  .hero__info {
    flex-direction: column;
  }

  .features__wrpr {
    flex-wrap: wrap;
    justify-content: center;
  }

  .comfort__wrpr {
    gap: 8px;
  }

  .comfort__item {
    width: calc(50% - 4px);
  }

  .comfort__item.comfort__item_img {
    width: 100%;
    height: 300px;
  }

  .space__wrpr {
    flex-direction: column;
  }

  .space__left-col,
  .space__right-col {
    width: 100%;
  }

  .space__contact-btn {
    margin-top: 40px;
  }

  .contact {
    flex-direction: column;
  }

  .contact__left-col,
  .contact__right-col {
    width: 100%;
  }

  .genplan__top {
    flex-direction: column;
  }

  .genplan__top-left,
  .genplan__top-right {
    width: 100%;
    max-width: 100%;
  }

  .genplan__top-right {
    display: none;
  }

  .genplan__top-right_mobile {
    display: flex;
    margin-bottom: 40px;
  }

  .genplan__title {
    margin-bottom: 24px;
  }

  .genplan__bottom {
    border-radius: 64px;
  }

  .genplan__map-btn {
    top: 32px;
    right: 32px;
  }

  .genplan__map_desktop {
    display: none;
  }

  .genplan__map_mobile {
    display: block;
  }

  .suitable {
    overflow: hidden;
  }

  .suitable__swiper {
    position: relative;
  }

  .suitable__swiper-wrapper {
    display: flex;
    align-items: center;
    grid-gap: 0;
  }

  .suitable__slide.swiper-slide {
    grid-area: initial;
    flex-shrink: 0;
  }

  .suitable__swiper-pagination {
    position: initial;
    margin-top: 24px;
  }

  .suitable__swiper-pagination .swiper-pagination-bullet {
    background: var(--Black-text-20, rgba(57, 53, 52, 0.20));
    backdrop-filter: blur(10px);
  }

  .suitable__swiper-pagination .swiper-pagination-bullet-active {
    background: var(--Black-text-100, #393534);
  }

  .experience__img_desktop {
    display: none;
  }

  .experience__img_mobile {
    display: block;
  }

  .callback_dark-bg {
    padding-top: 40px;
  }

  .footer__cols {
    flex-direction: column;
  }

  .footer__card-top {
    margin-bottom: 40px;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 8px;
  }

  .footer__bottom-left {
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
  }

  .modal {
    padding: 0;
  }

  .modal__close {
    top: 80px;
    right: 40px;
  }

  .modal__item {
    border-radius: 0;
    margin: 0;
    width: 100%;
    flex: 1;
    padding: 80px 40px 40px;
  }

  .mobile-menu.active + .header {
    box-shadow: none;
    border-radius: 0;
  }

  .features,
  .comfort,
  .space,
  .genplan,
  .location,
  .terms-of-purchase,
  .experience,
  .callback_dark-bg,
  .footer {
    border-radius: 120px 120px 0 0;
  }
}

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

  .header {
    padding: 8px;
    padding-left: 16px;
    border-radius: 0 0 24px 24px;
  }

  .mobile-menu {
    padding: 152px 24px 24px;
    display: flex;
    flex-direction: column;
  }

  .mobile-menu__lists {
    gap: 16px;
  }

  .mobile-menu-li a {
    font-size: 24px;
    line-height: 130%;
  }

  .header__btns_tablet {
    display: flex;
    margin: 0;
    margin-top: auto;
    width: 100%;
  }

  .header__btn_tablet {
    display: none;
  }

  .header__btn.show-modal-1 {
    flex: 1;
    padding: 16px;
  }

  .hero {
    padding: 100px 0 56px;
  }

  .hero__info {
    margin-bottom: 16px;
  }

  .hero__info-item {
    font-size: 14px;
    gap: 4px;
    padding-left: 4px;
  }

  .hero__info-item:first-child {
    max-width: 310px;
  }

  .hero__title {
    font-size: 48px;
  }

  .hero__subtitle {
    margin-bottom: 40px;
  }

  .section-title,
  .experience__bottom-title,
  .genplan__title {
    font-size: 38px;
    letter-spacing: 0.76px;
  }

  .features,
  .comfort,
  .space,
  .genplan,
  .location,
  .terms-of-purchase,
  .experience,
  .callback_dark-bg,
  .footer {
    border-radius: 56px 56px 0 0;
  }

  .features {
    padding: 48px 0;
  }

  .features__wrpr,
  .features__last-items-wrpr {
    gap: 0;
    row-gap: 13px;
  }

  .features__item {
    width: 85px;
  }

  .features__item-icon-wrpr {
    width: 72px;
    height: 72px;
  }

  .features__item-icon-wrpr img {
    max-width: 32px;
  }

  .features__item-text {
    font-size: 14px;
  }

  .comfort {
    padding: 48px 0;
  }

  .comfort__title {
    margin-bottom: 24px;
  }

  .comfort__item {
    width: 100%;
    min-height: 98px;
    padding: 16px;
    border-radius: 24px;
  }

  .comfort__item-icon {
    width: 40px;
    height: 40px;
    border-radius: 16px;
    margin-bottom: 32px;
  }

  .comfort__item-text {
    font-size: 20px;
    line-height: 130%;
    max-width: 100%;
  }

  .comfort__item.comfort__item_img {
    height: 261px;
  }

  .space {
    padding: 48px 0;
  }

  .section-subtitle {
    font-size: 18px;
  }

  .space__subtitle {
    margin-bottom: 32px;
  }

  .space__slide-img {
    border-radius: 40px;
  }

  .space__wrpr {
    gap: 24px;
  }

  .space__text-top {
    font-size: 18px;
    line-height: 130%;
  }

  .space__contact-btn {
    width: 100%;
    margin-top: 24px;
  }

  .callback {
    padding: 48px 0;
  }

  .contact {
    gap: 24px;
    border-radius: 48px;
    padding: 24px;
  }

  .contact__title {
    font-size: 32px;
    letter-spacing: 0.64px;
    margin-bottom: 8px;
  }

  .contact__text {
    font-size: 14px;
  }

  .input {
    padding: 16px;
    margin-top: 4px;
  }

  .feedback__btn {
    width: 100%;
  }

  .genplan {
    padding: 48px 0;
  }

  .genplan__title {
    margin-bottom: 16px;
  }

  .genplan__top-right-text {
    font-size: 18px;
  }

  .genplan__top-right_mobile {
    margin-bottom: 24px;
  }

  .genplan__top-left-btns {
    flex-direction: column;
  }

  .genplan__top-left-btns .btn {
    width: 100%;
  }

  .genplan__top {
    margin-bottom: 32px;
  }

  .genplan__bottom {
    border-radius: 40px;
  }

  .genplan__map-btn {
    display: none;
  }

  .genplan__map-btn-mobile {
    display: flex;
    margin-top: 8px;
  }

  .location {
    padding: 48px 0;
  }

  .location__title {
    margin-bottom: 8px;
  }

  .location__subtitle {
    margin-bottom: 32px;
  }

  .location__map {
    border-radius: 32px;
    height: 213px;
  }

  .suitable {
    padding: 48px 0;
  }

  .suitable__title {
    margin-bottom: 32px;
  }

  .suitable__slide {
    border-radius: 40px;
  }

  .suitable__slide-title {
    font-size: 24px;
    line-height: 130%;
  }

  .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    margin: 0 2px;
  }

  .suitable__swiper-pagination {
    margin-top: 16px;
  }

  .terms-of-purchase {
    padding: 48px 0;
  }

  .terms-of-purchase__title {
    margin-bottom: 8px;
  }

  .terms-of-purchase__wrpr {
    gap: 10px;
  }

  .terms-of-purchase__item {
    padding: 4px 16px;
  }

  .terms-of-purchase__item-text {
    font-size: 18px;
  }

  .experience {
    padding: 48px 0;
  }

  .experience__cols {
    gap: 16px;
  }

  .experience__top-text {
    font-size: 18px;
  }

  .experience__top-text + .experience__top-text {
    margin-top: 8px;
  }

  .experience__img-wrpr {
    margin: 40px 0;
    border-radius: 48px;
  }

  .experience__list {
    margin-top: 16px;
  }

  .experience__list-item {
    gap: 12px;
    font-size: 16px;
  }

  .experience__list-item::before {
    width: 40px;
    height: 40px;
    border-radius: 16px;
  }

  .callback_dark-bg {
    padding-top: 16px;
  }

  .footer {
    padding: 48px 0;
  }

  .footer__title {
    margin-bottom: 16px;
  }

  .footer__card {
    padding: 16px;
    border-radius: 32px;
  }

  .footer__card-btns {
    flex-direction: column;
  }

  .footer__card-btns .btn {
    width: 100%;
  }

  .footer__cols + .footer__cols {
    margin-top: 40px;
  }

  .modal__item {
    padding: 40px 24px 24px;
  }

  .modal__title {
    font-size: 24px;
    line-height: 130%;
  }

  .send_modal .modal__title,
  .error_modal .modal__title {
    padding: 0;
  }

  .form_modal {
    margin-top: 24px;
  }

  .modal__close {
    top: 40px;
    right: 24px;
  }

  .modal-btn {
    width: 100%;
  }

  .modal__icon-wrpr {
    width: 64px;
    height: 64px;
    border-radius: 24px;
    margin-bottom: 20px;
  }

  .modal__icon-wrpr svg {
    max-width: 32px;
  }

  .coocke {
    width: calc(100% - 16px);
    right: 50%;
    transform: translateX(50%);
    bottom: 8px;
    flex-direction: column;
    gap: 16px;
    padding: 16px;
  }

  .coocke-accept {
    width: 100%;
  }
}

@media(max-width: 360px) {
  .section-title,
  .experience__bottom-title,
  .genplan__title {
    font-size: 32px;
  }
}