:root {
  --font-family: "Barlow", sans-serif;
  --second-family: "Barlow Condensed", sans-serif;
}

html {
  scroll-behavior: smooth;
}
body {
  font-family: "Barlow", sans-serif;
}

.container {
  max-width: 1520px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 45px 0;
  z-index: 90;

  transition:
    color 0.4s ease,
    transform 0.4s ease,
    background-color 0.4s ease,
    padding 0.4s ease;

  &._sticky {
    position: sticky;
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
  }
  &._scroll {
    transform: translateY(-100%);
  }
  &._fill {
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
  }
}

@media (min-width: 992px) {
  .header {
    &._min {
      padding: 20px 0px;
    }
  }
}

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

.nav__list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 95px;
}

.nav__link {
  font: 500 16px / 100% var(--font-family);
  color: rgba(255, 255, 255, 0.75);
  transition: color 0.3s ease;
}
.nav__link:hover {
  color: white;
}

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

.header__phone {
  font: 500 20px / 100% var(--font-family);
  text-align: right;
  color: rgba(255, 255, 255, 0.75);
}

.header__social {
  display: flex;
  gap: 10px;
}

.header__social-icon {
  font-size: 18px;
}

.mobile-menu__toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding: 180px 0px 64px 0px;
  z-index: 1;

  &::before {
    position: absolute;
    content: "";
    background: linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.3) 0%,
      rgba(0, 0, 0, 0.2) 42.77%,
      rgba(0, 0, 0, 0.2) 63.77%,
      rgba(0, 0, 0, 0.62) 100%
    );
    inset: 0;
    z-index: -1;
  }
}

.hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
}

.hero__bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  right: 0;
  bottom: 0;
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6));
  z-index: 1;
}

.hero__bg-img {
  width: 100%;
  object-fit: cover;
  height: 100%;
}

.hero__content {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  z-index: 2;
  color: white;
  max-width: 1520px;
}

.hero__title {
  font: 500 80px / 120% var(--font-family);
  color: #fff;
  margin-bottom: 75px;
  max-width: 1020px;
}

.hero__subtitle {
  font: 400 20px / 150% var(--font-family);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 10px;
  height: 56px;
  align-items: center;
  width: 230px;
  display: flex;
  justify-content: center;
  backdrop-filter: blur(8.600000381469727px);
  background: #ef801b;
}
.hero__slider {
  width: 100%;
}

@media (min-width: 1300px) {
  .hero__features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-top: 100px;
  }
}

.hero__feature-title {
  font: 400 30px / 100% var(--second-family);
  color: #fff;
  width: 50%;
  margin-bottom: 30px;
}

.hero__feature-text {
  font: 500 20px / 150% var(--font-family);
  color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 1299px) {
  .hero__slider {
    margin-top: 35px;
    overflow: visible !important;
  }
  .hero__feature {
    height: auto !important;

    padding: 25px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    backdrop-filter: blur(20px);
    background: rgba(74, 93, 74, 0.13);
  }
  .hero__feature-title {
    font-size: 20px;
    line-height: 100%;
    margin-bottom: 15px;
  }
  .hero__feature-text {
    font-size: 16px;
    line-height: 150%;
    color: rgba(255, 255, 255, 0.8);
  }
}

.about {
  padding: 120px 0 0;
}

.about__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

.about__left {
  position: relative;
}

.about__image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}
.about__images {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}
.about__images img {
  max-width: calc(50% - 15px);
  height: auto;
}
@media (max-width: 991px) {
  .about__images img {
    max-width: 100%;
  }
}
.about__img {
  display: block;
  margin: 0 auto;
  max-width: 100%;
  height: auto;
  scroll-margin-top: 40px;
}
.about__img-wrap {
  display: block;
}
.about__img-wrap:not(:last-child) {
  margin-bottom: 30px;
}

.about__stats {
  position: absolute;
  bottom: 80px;
  right: -150px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 20px;
  width: 225px;
  height: 182px;
  padding: 30px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  backdrop-filter: blur(20px);
  background: rgba(74, 93, 74, 0.13);
}

.about__number {
  font: 500 98px / 100% var(--font-family);
  color: #000;
  margin-bottom: 5px;
}

.about__label {
  font: 500 20px / 200% var(--font-family);
  color: rgba(0, 0, 0, 0.63);
}

.about__title {
  font: 500 80px / 125% var(--font-family);
  color: #000;
  margin-bottom: 30px;
}

.about__text {
  font: 500 20px / 150% var(--font-family);
  color: rgba(0, 0, 0, 0.63);
  margin: 0 0 40px 100px;
  width: 70%;
}

.about__btn {
  display: block;
  width: fit-content;
  background: #ef801b;
  color: #fff;
  border: none;
  text-align: center;
  padding: 20px 40px;
  margin: 0 0 40px 100px;
  border-radius: 10px;
  font: 500 18px / 100% var(--font-family);
  cursor: pointer;
  transition: background 0.3s ease;
}

.about__btn:hover {
  background: #d6700f;
}

.rent {
  padding: 120px 0 0;
}

.rent__content {
  display: grid;
  grid-template-columns: 1fr 876px;
  gap: 80px;
  align-items: center;
}

.rent__section {
  margin-bottom: 40px;
}

.rent__section-title {
  font: 500 70px / 164% var(--font-family);
  color: #000;
  margin-bottom: 20px;
}

.rent__section-text {
  font: 500 20px / 150% var(--font-family);
  color: rgba(0, 0, 0, 0.63);
  margin-bottom: 30px;
}

.rent__btn {
  font: 500 20px / 150% var(--font-family);
  color: #000;
  text-decoration: underline !important;
  text-underline-offset: 5px;

  transition: color 0.3s ease;
}
.rent__btn:hover {
  color: #ef801b;
}

.rent__area-text {
  font: 500 40px / 125% var(--font-family);
  color: #000;
}

.rent__area-number {
  font: 500 80px / 62% var(--font-family);
  color: #ef801b;
}

.rent__image {
  border-radius: 20px;
  overflow: hidden;
}

.rent__img {
  width: 100%;
  height: 450px;
  object-fit: cover;
}

.map {
  padding: 120px 0 0;
}

.map__content {
  width: 100%;
}

.map__img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.plan {
  padding: 120px 0 0;
}

.plan__top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-bottom: 60px;
}

.plan__title {
  font: 500 70px / 100% var(--font-family);
  color: #000;
  margin-bottom: 40px;
  width: 50%;
}

.plan__tabs {
  margin-bottom: 40px;
}

.plan__corpus-tabs {
  display: flex;
  gap: 50px;
  margin-bottom: 20px;
}

.plan__corpus-btn {
  border: 1px solid #000;
  border-radius: 10px;
  background-color: #fff;
  font: 400 20px / 150% var(--font-family);
  color: #000;

  width: 144px;
  height: 56px;
}

.plan__corpus-btn--active,
.plan__corpus-btn:hover {
  font: 400 20px / 150% var(--font-family);
  color: #fff;
  background-color: #000;
  border: 1px solid #000;
}

.plan__floor-tabs {
  display: flex;
  gap: 50px;
}

.plan__floor-btn {
  border: 1px solid #000;
  border-radius: 10px;
  background-color: #fff;
  font: 400 20px / 150% var(--font-family);
  color: #000;

  width: 144px;
  height: 56px;
}

.plan__floor-btn--active,
.plan__floor-btn:hover {
  font: 400 20px / 150% var(--font-family);
  color: #fff;
  background-color: #ef801b;
  border: 1px solid #ef801b;
}

.plan__description {
  font: 500 20px / 150% var(--font-family);
  color: rgba(0, 0, 0, 0.63);
  max-width: 600px;
}

.plan__image {
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 100px;
}

.plan__bottom {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 30px;
}

.plan__btn {
  background: #ef801b;
  color: #fff;
  border: none;
  padding: 20px 40px;
  border-radius: 10px;
  font: 500 18px / 100% var(--font-family);
  cursor: pointer;
  transition: background 0.3s ease;
}

.plan__btn:hover {
  background: #d6700f;
}

.plan__checkbox {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  max-width: 630px;
}

.plan__checkbox-input {
  margin: 0;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 2px;
}

.plan__checkbox-label {
  font: 400 14px / 157% var(--font-family);
  color: #000;
  opacity: 0.5;
}

.tenants {
  padding: 120px 0 0;
  overflow: hidden;
}

.tenants__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 90px;
}

.tenants__title {
  font: 500 70px / 100% var(--font-family);
  color: #000;
}

.tenants__controls {
  display: flex;
  gap: 20px;
}

.tenants__arrow {
  background: transparent;
  border: none;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.tenants__arrow:hover {
  opacity: 0.7;
}

.tenants__slider {
  overflow: visible !important;
}

.tenants__slide {
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 20px;
  display: flex !important;
  align-items: center;
  justify-content: center;
  padding: 30px;
  backdrop-filter: blur(30px);
  background: rgba(74, 93, 74, 0.13);
}

.tenants__img {
  width: 100%;
  width: 220px;
  height: 220px;
  display: flex;
  object-fit: cover;
  border-radius: 15px;
}

@media (max-width: 768px) {
  .header__content {
    gap: 20px;
  }

  .nav__list {
    gap: 20px;
  }

  .hero__title {
    font-size: 36px;
  }

  .about__content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .rent__content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .rent__section-title {
    font-size: 36px;
  }

  .plan__top {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .plan__title {
    font-size: 48px;
  }

  .plan__corpus-tabs,
  .plan__floor-tabs {
    flex-wrap: wrap;
  }

  .plan__img {
    height: 300px;
  }

  .tenants__title {
    font-size: 48px;
  }

  .tenants__slide {
    width: 250px;
  }

  .tenants__img {
    height: 150px;
  }

  .gallery__title {
    font-size: 48px;
  }

  .gallery__img {
    height: 300px;
  }

  .booking__header {
    flex-direction: column;
    gap: 40px;
    text-align: center;
  }

  .booking__title {
    font-size: 48px;
  }

  .booking__form-row {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .faq__title {
    font-size: 48px;
  }

  .faq__question-text {
    font-size: 20px;
  }

  .faq__answer-text {
    font-size: 16px;
  }

  .faq__list {
    flex-direction: column;
    gap: 20px;
  }

  .faq__item {
    flex: 1 1 100%;
    min-width: auto;
  }

  .contacts__title {
    font-size: 48px;
  }

  .contacts__content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contacts__phone-link {
    font-size: 24px;
  }

  .contacts__email-link {
    font-size: 18px;
  }

  .contacts__map {
    height: 300px;
  }

  .footer__content {
    gap: 30px;
  }

  .footer__row {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .footer__nav-group {
    flex-direction: column;
    gap: 15px;
  }

  .footer__row--action {
    flex-direction: column;
    gap: 20px;
  }

  .footer__bottom-links {
    flex-direction: column;
    gap: 15px !important;
  }
}

.contacts__phone {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 30px;
}

.contacts__email {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 30px;
}

.contacts__address {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 30px;
}

.contacts__address-content {
  flex: 1;
}

.contacts__map {
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
}

.contacts__map iframe {
  width: 100% !important;
  border-radius: 20px;
}

.footer {
  background: #4a5d4a;
  color: #fff;
  padding: 40px 0 40px;
}

.footer__content {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  flex-wrap: wrap;

  gap: 40px;
  margin-bottom: 60px;
}

.footer__row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.footer__row--logo {
  align-items: flex-start;
}

.footer__logo {
  height: 50px;
  width: auto;
}

.footer__company {
  font: 400 14px var(--font-family);
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
}

.footer__nav-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__link {
  font: 400 20px var(--font-family);
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer__link:hover {
  color: #ef801b;
}

.footer__row--contacts {
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

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

.footer__phone {
  font: 500 20px var(--font-family);
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer__phone:hover {
  color: #ef801b;
}

.footer__address,
.footer__hours {
  font: 400 20px var(--font-family);
  color: #fff;
  margin: 0;
}

.footer__email {
  font: 400 20px / 126% var(--font-family);
  text-decoration: underline !important;
  text-decoration-skip-ink: none;
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer__email:hover {
  color: #ef801b;
}

.footer__row--action {
  align-items: flex-end;
  gap: 30px;
}

.footer__btn {
  background: #ef801b;
  color: #fff;
  border: none;
  padding: 15px 30px;
  border-radius: 8px;
  font: 500 16px / 100% var(--font-family);
  cursor: pointer;
  transition: background 0.3s ease;
}

.footer__btn:hover {
  background: #d6700f;
}

.footer__social {
  display: flex;
  gap: 15px;
}

.footer__bottom {
  border-top: 1px solid #333;
  padding-top: 30px;
}

.footer__bottom-links {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}

.footer__bottom-text {
  font: 400 18px var(--font-family);
  color: #eee;
}

.footer__bottom-link {
  font: 400 14px / 120% var(--font-family);
  color: #999;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer__bottom-link:hover {
  color: #ef801b;
}

.gallery {
  padding: 120px 0;
  margin-top: 120px;
  background-color: #4a5d4a;

  overflow: hidden;
}

.gallery__slider {
  overflow: visible !important;
}
.gallery__slide {
  transition: opacity 0.3s ease;
}
.gallery__slide:hover {
  opacity: 0.7;
}

.gallery__title {
  font: 500 70px / 100% var(--font-family);
  color: #fff;
  margin: 0;
}

.gallery__slider {
  max-width: 1200px;
  margin: 0 auto;
}

.gallery__img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.booking {
  padding: 120px 0;
  background-color: #4a5d4a;
}

.booking__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-bottom: 40px;
}

.booking__title {
  font: 400 40px / 112% var(--font-family);
  color: #000;
}
.booking__content {
  max-width: 500px;
  margin-top: 15px;
}

.booking__title span {
  font: 400 40px / 112% var(--font-family);
  color: #ef801b;
}

.booking__logo {
  height: 60px;
  width: auto;
}

.gallery__pagination {
  position: static;
  width: 100%;
  margin-top: 30px;
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background-color: #ef801b !important;
}

.swiper-pagination-progressbar {
  background-color: rgba(0, 0, 0, 0.1) !important;
}

.booking_wrapper {
  margin: 0 auto;
  padding: 60px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;

  background: url("/assets/img/back_form.png") 0 0 / cover no-repeat;
}

.booking__form {
  display: flex;
  gap: 20px;
  row-gap: 10px;
  flex-direction: row;
  flex-wrap: wrap;
}

.booking__form-row {
  display: flex;
  gap: 20px;
  flex-direction: row;
  flex-wrap: wrap;
}

.booking__form-group {
  flex: 1 1 30%;
}
.booking__form-group._full {
  flex-basis: 100%;
}
@media (max-width: 1199px) {
  .booking__form-group {
    flex-basis: calc(50% - 10px);
  }
}

.booking__input {
  padding: 15px 18px;
  border: 1px solid #000;
  border-radius: 10px;
  font: 400 16px / 150% var(--font-family);
  color: #000;
  transition: border-color 0.3s ease;
  width: 100%;
}

.booking__input:focus {
  outline: none;
  border-color: #ef801b;
}
select.booking__input {
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: url('../img/arrow-down.svg') center right 10px / 12px auto no-repeat;
}
.booking__form-bottom {
  display: flex;
  flex-direction: row;
  margin-top: 50px;
  align-items: center;
  gap: 30px;
}

.booking__btn {
  background: #ef801b;
  color: #fff;
  border: none;
  padding: 20px 60px;
  border-radius: 10px;
  font: 500 18px / 100% var(--font-family);
  cursor: pointer;
  transition:
    background 0.3s ease,
    opacity 0.3s ease;
}
.booking__btn[disabled] {
  opacity: 0.7;
  pointer-events: none;
}
.booking__btn:hover {
  background: #d6700f;
}

.booking__checkbox {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  max-width: 800px;
}

.booking__checkbox-input {
  margin: 0;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 2px;
}

.booking__checkbox-label {
  font: 400 14px / 157% var(--font-family);
  color: rgba(0, 0, 0, 0.5);
  cursor: pointer;
}
.booking__checkbox-label a {
  color: #d6700f;
  text-decoration: underline;
}
.booking__checkbox-label a:hover {
  text-decoration: none;
}

.faq {
  padding: 120px 0 0;
}

.faq__title {
  font: 500 70px / 74% var(--font-family);
  text-align: center;
  color: #1a1a1a;
  margin-bottom: 80px;
}

.faq__list {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.faq__item {
  flex: 1 1 calc(50% - 20px);
  min-width: 300px;
  border-bottom: 1px solid #eee;
  margin-bottom: 20px;
}

.faq__question {
  width: 100%;
  background: none;
  border: none;
  padding: 30px 0;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

.faq__question-text {
  font: 500 20px / 121% var(--font-family);
  color: #121212;
}

.faq__icon {
  font: 300 32px / 100% var(--font-family);
  color: #121212;
  transition: transform 0.3s ease;
}

.faq__item.active .faq__icon {
  transform: rotate(45deg);
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq__item.active .faq__answer {
  max-height: max-content;
}

.faq__answer-text {
  font: 400 18px / 150% var(--font-family);
  color: #666;
  padding: 0 0 30px 0;
  margin: 0;
}

.contacts {
  padding: 120px 0;
}

.contacts__title {
  font: 500 70px / 164% var(--font-family);
  color: #000;
  margin-bottom: 80px;
}

.contacts__content {
  display: flex;
  justify-content: space-between;
  gap: 80px;
  align-items: start;
}

.contacts__right {
  flex: 1;
}

.contacts__phone-link {
  font: 400 50px / 100% var(--font-family);
  display: block;
  color: #000;
  margin-bottom: 30px;
  transition: color 0.3s ease;
}

.contacts__phone-link:hover {
  color: #ef801b;
}

.contacts__email-link {
  font: 500 20px / 126% var(--font-family);
  text-decoration: underline !important;
  text-decoration-skip-ink: none;
  color: #000;
  display: block;
  transition: color 0.3s ease;
}

.contacts__email-link:hover {
  color: #ef801b;
}

.contacts__address {
  display: flex;
  flex-direction: row;
  gap: 15px;
}

.contacts__address-text {
  font: 500 20px var(--font-family);
  color: #181b11;
}

.contacts__address-location {
  font: 500 20px / 150% var(--font-family);
  color: rgba(0, 0, 0, 0.63);
}

.contacts__social {
  display: flex;
  gap: 15px;
  margin: 20px 0;
}

.contacts__opening-title {
  font: 400 40px / 100% var(--font-family);
  color: #000;
}

.contacts__opening-date {
  font: 400 40px / 100% var(--font-family);
  color: #000;
}

@media (max-width: 1440px) {
  .hero__title {
    font-size: 72px;
    margin-bottom: 30px;
  }

  .hero__title {
    font: 500 96px / 120% var(--font-family);
    color: #fff;
    margin-bottom: 75px;
    max-width: 860px;
  }
}

@media (max-width: 1280px) {
  .rent__content {
    grid-template-columns: 1fr 1fr;
  }

  .tenants__img {
    object-fit: contain;
  }
}

@media (max-width: 1024px) {
  .nav__list {
    gap: 0;
    width: 100%;
    justify-content: space-between;
  }

  .nav {
    width: 100%;
  }

  .header__content {
    gap: 20px;
  }

  .header__phone {
    font-size: 14px;
  }

  .nav__link {
    font-size: 14px;
  }

  .header__contacts {
    flex-shrink: 0;
  }

  .header__social-link img {
    width: 24px;
  }

  .logo__img {
    height: auto;
    width: 156px;
  }

  .hero__title {
    font-size: 50px;
  }

  .hero__subtitle {
    font-size: 16px;
    width: 180px;
    height: 46px;
  }

  .about__title {
    font-size: 50px;
  }

  .about__stats {
    position: absolute;
    bottom: 80px;
    right: -90px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    width: 205px;
    height: 162px;
    padding: 20px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    backdrop-filter: blur(20px);
    background: rgba(74, 93, 74, 0.13);
  }

  .about__text {
    font: 500 18px / 150% var(--font-family);
    color: rgba(0, 0, 0, 0.63);
  }

  .about__content {
    gap: 30px;
  }

  .rent__content {
    gap: 30px;
  }

  .rent__section-title {
    font-size: 50px;
  }

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

  .rent__btn {
    font-size: 18px;
  }

  .rent__area-text {
    font-size: 28px;
  }

  .rent__area-number {
    font-size: 50px;
  }

  .rent__img {
    width: 100%;
    height: 390px;
    object-fit: cover;
  }

  .plan__title {
    font-size: 50px;
  }

  .plan__description {
    font-size: 18px;
  }

  .plan__corpus-tabs,
  .plan__floor-tabs {
    gap: 20px;
  }

  .plan__corpus-btn {
    font: 400 16px / 150% var(--font-family);
    width: 124px;
    height: 46px;
  }

  .plan__floor-btn {
    font: 400 16px / 150% var(--font-family);
    width: 124px;
    height: 46px;
  }

  .plan__top {
    margin-bottom: 30px;
    gap: 30px;
  }

  .plan__image {
    margin-bottom: 30px;
  }

  .tenants__title {
    font-size: 50px;
  }

  .tenants__header {
    margin-bottom: 30px;
  }

  .tenants__slide {
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 20px;
    display: flex !important
    ;
    align-items: center;
    justify-content: center;
    padding: 20px;
    backdrop-filter: blur(30px);
    background: rgba(74, 93, 74, 0.13);
  }

  .gallery {
    margin-top: 70px;
    padding: 70px 0;
  }

  .gallery__title {
    font-size: 50px;
  }

  .booking {
    padding-top: 70px 0;
  }

  .booking__title {
    font-size: 25px;
  }

  .booking__title span {
    font-size: 25px;
  }

  .booking__logo {
    height: 40px;
  }

  .booking__input {
    padding: 15px 20px;
    border: 1px solid #000;
    border-radius: 5px;
    font-size: 16px;
    line-height: normal;
    color: #000;
    transition: border-color 0.3s ease;
    width: 100%;
  }

  .booking__form-group {
    flex: 1 1 28%;
  }

  .booking__form {
    gap: 15px;
  }

  .booking__form-bottom {
    margin-top: 30px;
  }

  .booking__btn {
    flex-shrink: 0;
  }

  .booking__checkbox-label {
    font-size: 12px;
  }

  .booking__btn {
    background: #ef801b;
    color: #fff;
    border: none;
    padding: 20px 40px;
    border-radius: 10px;
    font: 500 16px / 100% var(--font-family);
    cursor: pointer;
    transition: background 0.3s ease;
  }

  .booking__checkbox-input {
    margin: 0;
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    margin-top: 2px;
  }

  .faq {
    padding: 70px 0 0;
  }

  .faq__title {
    font-size: 50px;
    margin-bottom: 30px;
  }
  .faq__question-text {
    font: 500 18px / 121% var(--font-family);
    color: #121212;
  }

  .faq__question {
    width: 100%;
    background: none;
    border: none;
    padding: 15px 0;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
  }

  .faq__answer-text {
    font: 400 15px / 150% var(--font-family);
    color: #666;
    padding: 0 0 20px 0;
    margin: 0;
  }

  .contacts {
    padding: 70px 0;
  }

  .contacts__title {
    font: 500 50px / 104% var(--font-family);

    margin-bottom: 30px;
  }

  .contacts__phone-link {
    font-size: 38px;
    margin-bottom: 15px;
  }

  .contacts__opening-title,
  .contacts__opening-date {
    font-size: 28px;
  }

  .footer__content {
    gap: 20px;
  }

  .footer__link {
    font-size: 16px;
  }
  .footer__btn {
    padding: 15px;
  }

  .footer__address,
  .footer__hours,
  .footer__phone,
  .footer__email {
    font-size: 16px;
  }

  .footer__logo {
    height: 40px;
  }

  .footer__bottom-text {
    font-size: 16px;
  }
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(10px);
  z-index: 1000;
  visibility: hidden;
  opacity: 0;
  transition:
    opacity 0.4s ease,
    visibility 0.4s ease;
}

.mobile-menu.active {
  visibility: visible;
  opacity: 1;
}

@media (max-width: 991px) {
  .header {
    padding: 15px 0px;
  }
  .header__content {
    justify-content: start;
  }
  .logo__img {
    width: 130px;
  }
  .mobile-menu__toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
  }
  .mobile-menu__line {
    width: 100%;
    height: 2px;
    background: #fff;
  }

  .mobile-menu__content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
  }

  .mobile-menu__close {
    position: absolute;
    top: 25px;
    right: 20px;
    width: 20px;
    height: 20px;
    color: white;
  }

  .mobile-menu__list {
    list-style: none;
    margin: 0;
    padding: 0;
    text-align: center;
    margin-bottom: 40px;
  }

  .mobile-menu__item {
    margin-bottom: 30px;
  }

  .mobile-menu__link {
    font: 500 24px / 100% var(--font-family);
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
  }

  .mobile-menu__link:hover {
    color: #ef801b;
  }

  .mobile-menu__contacts {
    text-align: center;
  }

  .mobile-menu__phone {
    font: 500 20px / 100% var(--font-family);
    color: #fff;
    text-decoration: none;
    display: block;
    margin-bottom: 20px;
  }

  .mobile-menu__social {
    display: flex;
    justify-content: center;
    gap: 15px;
  }

  .mobile-menu__social-link img {
    width: 30px;
    height: 30px;
  }

  .nav,
  .header__contacts {
    display: none;
  }
}
@media (max-width: 768px) {
  .hero__bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .header__contacts {
    display: none;
  }

  .about__text {
    width: 100%;
    margin: 0;
    margin-bottom: 30px;
  }

  .about__btn {
    margin: 0;
  }

  .about__stats {
    bottom: -10%;
    right: 50%;
    transform: translate(50%, 0);
  }

  .footer__content {
    flex-direction: column;
    align-items: flex-start;
  }

  .booking__form-bottom {
    flex-direction: column-reverse;
    gap: 10px;
    margin-top: 10px;
  }

  .booking__header {
    margin-bottom: 15px;
  }

  .booking_wrapper {
    padding: 15px;
    border-radius: 12px;
    overflow: hidden;
    background-size: cover;
  }

  .booking__right {
    display: none;
  }

  .booking__title {
    width: 100%;
  }

  .booking__form {
    flex-direction: row;
  }
  .booking__form-group {
    flex: 1 1 100%;
  }

  .hero__bg {
    height: 120%;
  }

  .rent__content {
    gap: 15px;
    grid-template-columns: repeat(1, 1fr);
  }

  .about,
  .rent,
  .map,
  .plan,
  .tenants {
    padding: 60px 0 0;
  }

  .booking {
    padding: 60px 0 60px;
  }

  .faq__title {
    font-size: 32px;
  }

  .faq__list {
    gap: 15px;
  }

  .faq__item {
    margin-bottom: 0;
  }

  .footer__row--action {
    align-items: flex-start;
  }

  .footer__content {
    margin-bottom: 15px;
  }

  .contacts__content {
    flex-direction: column;
    gap: 15px;
  }

  .contacts__right {
    flex: none;
    width: 100%;
  }

  .contacts__map {
    height: auto;
  }

  .tenants__title {
    font-size: 32px;
    line-height: 1.2;
  }

  .tenants__controls svg {
    width: 30px;
  }

  .gallery {
    padding: 30px 0;
    margin-top: 30px;
  }

  .tenants__controls {
    gap: 5px;
  }

  .plan__title {
    width: 100%;
    margin-bottom: 15px;
  }

  .plan__tabs {
    margin-bottom: 15px;
  }

  .plan__top {
    gap: 15px;
  }

  .plan__img {
    height: auto;
  }
  .plan__bottom {
    flex-direction: column;
  }

  .plan__btn {
    background: #ef801b;
    color: #fff;
    border: none;
    width: 100%;
    padding: 16px 20px;
    border-radius: 10px;
    font: 500 15px / 100% var(--font-family);
    cursor: pointer;
    transition: background 0.3s ease;
  }

  .map__img {
    width: 100%;
    height: auto;
    min-height: 240px;
    object-fit: cover;
  }

  .container {
    padding: 0 16px;
  }

  .gallery__pagination {
    bottom: 0;
  }
}

/* Popup Styles */
.popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
}

.popup.active {
  display: flex;
}

.popup__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(5px);
}

.popup__content {
  position: relative;
  background: white;
  border-radius: 20px;
  padding: 40px;
  max-width: 500px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.popup__close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  font-size: 30px;
  cursor: pointer;
  color: #999;
  transition: color 0.3s ease;
  z-index: 10;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.popup__close:hover {
  color: #ef801b;
  background: rgba(239, 128, 27, 0.1);
}

.popup__title {
  font: 500 28px / 100% var(--font-family);
  margin-bottom: 30px;
  text-align: center;
  color: #000;
}

.popup__form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.popup__form-group {
  display: flex;
  flex-direction: column;
}

.popup__input {
  padding: 20px;
  border: 1px solid #000;
  border-radius: 10px;
  font: 400 20px / 150% var(--font-family);
  color: #000;
  transition: border-color 0.3s ease;
  outline: none;
}

.popup__input:focus {
  border-color: #ef801b;
}

.popup__input::placeholder {
  font: 400 20px / 150% var(--font-family);
  color: #000;
}

.popup__btn {
  background: #ef801b;
  color: #fff;
  border: none;
  padding: 20px 40px;
  border-radius: 10px;
  font: 500 18px / 100% var(--font-family);
  cursor: pointer;
  transition: background 0.3s ease;
  margin-top: 10px;
}

.popup__btn:hover {
  background: #d6700f;
}

@media (max-width: 768px) {
  .popup__content {
    padding: 30px 20px;
    margin: 20px;
  }

  .popup__title {
    font: 500 24px / 100% var(--font-family);
    margin-bottom: 20px;
  }

  .popup__input {
    padding: 15px;
    font: 400 16px / 150% var(--font-family);
  }

  .popup__btn {
    padding: 15px 30px;
    font: 500 16px / 100% var(--font-family);
  }

  .footer__row--action {
    gap: 15px;
  }

  .footer__bottom {
    border-color: #fff;
  }

  .footer__bottom-text {
    display: flex;
    align-items: center;
    gap: 5px;
  }

  .footer__row--logo {
    gap: 15px;
  }
}

.content {
  /* ===== Базовые стили для текстовых элементов ===== */

  /* Заголовки */
  h1 {
    font-size: 2.5rem; /* 40px при базовом размере 16px */
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 1rem 0;
    color: #333;
  }

  h2 {
    font-size: 2rem; /* 32px */
    font-weight: 600;
    line-height: 1.3;
    margin: 2rem 0 1rem 0;
    color: #333;
  }

  h3 {
    font-size: 1.75rem; /* 28px */
    font-weight: 600;
    line-height: 1.3;
    margin: 1.5rem 0 0.75rem 0;
    color: #444;
  }

  h4 {
    font-size: 1.5rem; /* 24px */
    font-weight: 600;
    line-height: 1.4;
    margin: 1.25rem 0 0.5rem 0;
    color: #444;
  }

  h5 {
    font-size: 1.25rem; /* 20px */
    font-weight: 600;
    line-height: 1.4;
    margin: 1rem 0 0.5rem 0;
    color: #555;
  }

  h6 {
    font-size: 1rem; /* 16px */
    font-weight: 600;
    line-height: 1.4;
    margin: 0.75rem 0 0.5rem 0;
    color: #555;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  /* Параграфы */
  p {
    font-size: 1rem;
    line-height: 1.6;
    margin: 0 0 1rem 0;
    color: #666;
  }

  /* Списки */
  ul,
  ol {
    margin: 0 0 1rem 0;
    padding-left: 2rem;
    line-height: 1.6;
  }

  ul {
    list-style-type: disc;
  }

  ol {
    list-style-type: decimal;
  }

  li {
    margin: 0.25rem 0;
    color: #666;
  }

  /* Вложенные списки */
  ul ul,
  ol ol,
  ul ol,
  ol ul {
    margin: 0.5rem 0 0.5rem 1rem;
  }

  /* Ссылки */
  a {
    color: #0066cc;
    text-decoration: none;
    transition: color 0.3s ease;
  }

  a:hover {
    color: #004499;
    text-decoration: underline;
  }

  /* Акцентированный текст */
  strong,
  b {
    font-weight: 700;
    color: #333;
  }

  em,
  i {
    font-style: italic;
    color: #555;
  }

  /* Цитаты */
  blockquote {
    margin: 1.5rem 0;
    padding: 1rem 1.5rem;
    border-left: 4px solid #ddd;
    background-color: #f9f9f9;
    font-style: italic;
    color: #555;
  }

  /* Горизонтальная линия */
  hr {
    border: none;
    border-top: 1px solid #ddd;
    margin: 2rem 0;
  }

  /* Код */
  code {
    background-color: #f4f4f4;
    padding: 0.2rem 0.4rem;
    border-radius: 3px;
    font-family: "Courier New", monospace;
    font-size: 0.9em;
    color: #d63384;
  }

  pre {
    background-color: #f8f8f8;
    padding: 1rem;
    border-radius: 5px;
    overflow-x: auto;
    margin: 1rem 0;
  }

  pre code {
    background: none;
    padding: 0;
    color: #333;
  }

  /* ===== Дополнительные полезные стили ===== */

  /* Контейнер для ограничения ширины текста */
  .text-container {
    max-width: 65ch; /* оптимальная ширина для чтения */
    margin: 0 auto;
  }

  /* Классы для выравнивания текста */
  .text-left {
    text-align: left;
  }
  .text-center {
    text-align: center;
  }
  .text-right {
    text-align: right;
  }

  /* Классы для размеров текста */
  .text-sm {
    font-size: 0.875rem;
  }
  .text-lg {
    font-size: 1.125rem;
  }
  .text-xl {
    font-size: 1.25rem;
  }

  /* Отступы */
  .margin-top {
    margin-top: 1rem;
  }
  .margin-bottom {
    margin-bottom: 1rem;
  }
  .no-margin {
    margin: 0;
  }
}

.s-content {
  margin: 60px 0px;
}

.popup__form-policy {
  display: flex;
  align-items: start;
  gap: 5px;
}

.input-policy {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.label-policy {
  font-family: "Barlow", sans-serif;
  font-size: 16px;
}
.label-policy a {
  color: #ef801b;
}
.label-policy a:hover {
  text-decoration: underline;
}

@media (max-width: 1365px) {
  .nav__list {
    gap: 25px;
  }
  .header__phone {
    font-size: 18px;
  }
}
@media (max-width: 991px) {
  .hero {
    padding: 85px 0px;
    min-height: 570px;
    background-position: left 27% center !important;

    &::before {
      background: black;
      opacity: 0.6;
    }
  }
  .hero__title {
    margin-bottom: 45px;
  }
}
@media (max-width: 767px) {
  .about__title,
  .rent__section-title {
    font-size: 36px;
  }
  .footer__content {
    align-items: center !important;
    text-align: center;
  }
  .footer__row {
    align-items: center;
  }
  .footer__btn {
    width: 100%;
  }
  .footer__row--action {
    width: 100%;
  }
  .footer__bottom-links {
    align-items: center;
    text-align: center;
  }
}
@media (max-width: 575px) {
  .about__content {
    gap: 60px;
  }
  .about__title,
  .rent__section-title {
    font-size: 28px;
    margin-bottom: 25px;
  }
  .about__btn {
    width: 100%;
  }
  .booking__btn {
    width: 100%;
  }
  .contacts__phone-link {
    font-size: 28px;
  }
  .faq__question-text {
    font-size: 16px;
    line-height: normal;
  }
  .faq__answer-text {
    line-height: normal;
  }
}

.header__mob-tel {
  width: 22px;
  height: 22px;
  margin-left: auto;
  color: white;
}
@media (min-width: 992px) {
  .header__mob-tel {
    display: none;
  }
}
.modal {
  display: none;
  width: 600px;
  padding: 30px;
  border-radius: 6px;
  max-width: calc(100% - 20px);
}
.modal__title {
  font-weight: 700;
  font-size: 40px;
  line-height: 130%;
  text-align: center;
  margin: 0px 0px 20px 0px;
}
.modal__content {
  font-size: 16px;
  line-height: 156%;
  letter-spacing: 0.03em;
  text-align: center;
  max-width: 275px;
  margin: 0px auto;
  color: rgba(0, 0, 0, 0.5);
}
.modal__content._full {
  max-width: none;
}
.modal__form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  margin-top: 25px;
}
.modal__form-send {
  width: 100%;
}

.input-control {
  width: 100%;
}
.input {
  width: 100%;
  padding: 15px 20px;
  background-color: white;
  outline: none;
  border: 1px solid #c2c2c2;
  border-radius: 10px;

  font-size: 16px;
  line-height: 99%;

  transition: border-color 0.3s ease;

  &:focus {
    border-color: #ef801b;
  }
}
.check-wrapper {
  display: flex;
  align-items: start;
  gap: 15px;
}
.input-check {
  width: 20px;
  flex-shrink: 0;
  height: 20px;
}
.label-check {
  cursor: pointer;
  font-size: 16px;

  a {
    text-decoration: underline;
    color: #ef801b;

    &:hover {
      text-decoration: none;
    }
  }
}
@media (max-width: 1199px) {
  .modal__title {
    font-size: 32px;
  }
}
@media (max-width: 991px) {
  .modal__title {
    font-size: 28px;
  }
}
@media (max-width: 767px) {
  .modal {
    padding: 25px 15px;
  }
  .check-wrapper {
    gap: 10px;
  }
  .input-check {
    width: 16px;
    height: 16px;
  }
  .label-check {
    font-size: 14px;
  }
}

.btn-s {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 13px 30px;
  border: 1px solid #ef801b;
  background-color: #ef801b;
  border-radius: 10px;
  outline: none;

  color: white;
  text-align: center;
  font-size: 18px;

  transition:
    border-color 0.3s ease,
    background-color 0.3s ease,
    opacity 0.3s ease;

  &:hover {
    border: 1px solid #c56912;
    background-color: #c56912;
  }
}
.btn-s[disabled] {
  opacity: 0.7;
  pointer-events: none;
}
@media (max-width: 767px) {
  .hero__title {
    font-size: 36px;
    margin-bottom: 25px;
  }
}

.gallery__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 60px;
}

.gallery__slider-nav {
  .slider-nav__btn {
    color: white;
  }
}
.slider-nav {
  display: flex;
  width: fit-content;
  gap: 20px;
  flex-shrink: 0;
}
.slider-nav__btn {
  cursor: pointer;
  width: 50px;
  height: 50px;
  transition:
    color 0.3s ease,
    opacity 0.3s ease;

  &:hover {
    color: #ef801b !important;
  }

  &.swiper-button-disabled {
    pointer-events: none;
    opacity: 0.7;
  }

  svg {
    width: 100%;
    height: 100%;
  }
}

@media (max-width: 991px) {
  .gallery__head {
    margin-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .gallery__slider-nav {
    margin: 25px auto 0 auto;
  }
}

.s-adv {
  margin-top: 30px;
}
.s-adv__wrapper {
  display: grid;
  align-items: start;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.s-adv__item {
  display: flex;
  align-items: start;
  gap: 20px;
  font-weight: 700;

  text-transform: uppercase;
}
.s-adv__item .icon {
  display: block;
  width: 100px;
  flex-shrink: 0;
}
.s-adv__item .name {
  font-size: 22px;
}
.s-adv__item .name span {
  color: #ef801b;
  font-size: 28px;
}
.s-adv__item .text {
  opacity: 0.7;
  margin-top: 15px;
}

@media (max-width: 1365px) {
  .s-adv__item .icon {
    width: 90px;
  }
}
@media (max-width: 1199px) {
  .s-adv__wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .s-adv__wrapper {
    gap: 20px;
    row-gap: 30px;
  }
}
@media (max-width: 575px) {
  .s-adv__wrapper {
    grid-template-columns: 1fr;
  }
}