@layer base,component,mod;

::selection {
    background: #4cb3de;
    color: #000000;
}

html {
    scroll-behavior: smooth;
}

:root {
  --color-primary: #000;
  --color-primary--rgb: 0, 0, 0;
  --color-alt: #000;
  --color-alt--rgb: 0, 0, 0;
  --color-blck: #000;
  --color-blck--rgb: 0, 0, 0;
  --color-whte: #fff;
  --color-whte--rgb: 255, 255, 255;
  --color-border: #eaeaea;
  --color-border--rgb: 234, 234, 234;
  --color-text: #000;
  --color-text--rgb: 0, 0, 0;
  --color-text-alt: #a8a8a8;
  --color-text-alt--rgb: 168, 168, 168;
  --color-bg: #000;
  --color-bg--rgb: 0, 0, 0;
  --color-bg-secondary: #e0e0e0;
  --color-bg-secondary--rgb: 224, 224, 224;
  --color-card-border: #e5e5e5;
  --color-card-border--rgb: 229, 229, 229;
  --color-card-bg: #d9d9d9;
  --color-card-bg--rgb: 217, 217, 217;
  --color-success: #259243;
  --color-success--rgb: 37, 146, 67;
  --color-error: #f00;
  --color-error--rgb: 255, 0, 0;
  --font-primary: "Inter", sans-serif, -apple-system, blinkmacsystemfont, roboto,
    ubuntu, "Droid Sans", "Helvetica Neue", arial, sans-serif,
    "Apple Color Emoji";
  --font-size-default: rem(14);
  --spacing: 100px;
  --index-1: 100;
  --index-2: 200;
  --index-3: 1100;
  --index-4: 1200;
}
@layer base {
  * {
    margin: 0;
    padding: 0;
    border: 0;
  }
  *,
  *:before,
  *:after {
    box-sizing: border-box;
  }
  *:before,
  *:after {
    display: inline-block;
  }
  html,
  body {
    min-width: 360px;
    height: 100%;
    scroll-behavior: smooth;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  }
  body {
    color: var(--color-primary);
    font-size: var(--font-size-default);
    font-family: var(--font-primary);
    line-height: 1;
    -webkit-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
  ::-webkit-scrollbar {
    width: 6px;
    height: 5px;
  }
  ::-webkit-scrollbar-track {
    background: var(--color-scroll-bg);
  }
  ::-webkit-scrollbar-thumb {
    background: var(--color-alt);
    border-radius: 10px;
  }
  ::selection {
    color: var(--color-primary);
    background: var(--color-bg);
  }
  input,
  button,
  textarea {
    font-size: inherit;
    font-family: var(--font-primary);
    line-height: inherit;
  }
  button {
    color: inherit;
    font-family: var(--font-primary);
    background-color: transparent;
    outline: 0;
    cursor: pointer;
  }
  div[class*="__text"] p:only-of-type,
  div[class*="__text"] p:last-of-type,
  div[class*="__details"] p:only-of-type,
  div[class*="__details"] p:last-of-type,
  div[class*="__note"] p:only-of-type,
  div[class*="__note"] p:last-of-type {
    margin: 0;
  }
  [class*="image"] img {
    width: 100%;
    object-fit: cover;
    object-position: center;
  }
  a {
    display: inline-block;
    color: var(--color-text);
    color: inherit;
    text-decoration: none;
  }
  ul li {
    list-style: none;
  }
  img {
    vertical-align: top;
  }
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    font-weight: inherit;
    font-size: inherit;
  }
  address,
  cite {
    font-style: normal;
  }
  fieldset,
  dl,
  dd {
    margin: 0;
    padding: 0;
  }
  fieldset {
    border: none;
  }
}
@font-face {
  font-weight: 300;
  font-family: Inter;
  font-style: normal;
  src: url(../fonts/Inter-300.woff2) format("woff2"),
    url(../fonts/Inter-300.woff) format("woff");
  font-display: swap;
}
@font-face {
  font-weight: 400;
  font-family: Inter;
  font-style: normal;
  src: url(../fonts/Inter-400.woff2) format("woff2"),
    url(../fonts/Inter-400.woff) format("woff");
  font-display: swap;
}
@font-face {
  font-weight: 500;
  font-family: Inter;
  font-style: normal;
  src: url(../fonts/Inter-500.woff2) format("woff2"),
    url(../fonts/Inter-500.woff) format("woff");
  font-display: swap;
}
@font-face {
  font-weight: 600;
  font-family: Inter;
  font-style: normal;
  src: url(../fonts/Inter-600.woff2) format("woff2"),
    url(../fonts/Inter-600.woff) format("woff");
  font-display: swap;
}
@font-face {
  font-weight: 700;
  font-family: Inter;
  font-style: normal;
  src: url(../fonts/Inter-700.woff2) format("woff2"),
    url(../fonts/Inter-700.woff) format("woff");
  font-display: swap;
}


@font-face {
   font-family: "HighSummit";
   src: local("../fonts/HighSummit.otf"), local("../fonts/HighSummit.otf"),
     url("../fonts/HighSummit.otf");
}
.header {
  position: fixed;
  inset: 0 0 auto 0;
  padding: 27px 0;
  width: 100%;
  z-index: 20;
  transform: translate(0);
  transition: 0.7s;
  background-color: var(--color-whte);
}

.header.is-up {
  transform: translateY(-100%) !important;
  background-color: var(--color-whte);
}
.header.is-up .header__wrapper {
  border-bottom: 0;
}
.tippy {
  display: none;
}
.header:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background-color: var(--color-whte);
  top: 0;
  left: 0;
  right: 0;
  opacity: 0;
  pointer-events: none;
  z-index: -1;
}
.header.is-fixed {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 20;
  transform: translateY(0) !important;
}
.header.is-fixed .header__wrapper {
  border-bottom: 0;
}
.header.is-fixed:before {
  opacity: 1;
}
.header__logo {
  display: block;
  width: 113px;
}
.header__logo img {
  display: block;
  max-width: 100%;
}
.header__container {
  display: flex;
  align-items: center;
  justify-content: space-around;
}
.header__menu {
  margin: 0;
}
.header__contacts {
  display: flex;
  align-items: center;
  gap: 30px;
  margin: 0 0 0 auto;
}
.header__lang {
  display: none;
  align-items: center;
}
.header__lang-btn {
  text-transform: uppercase;
  position: relative;
  opacity: 0.4;
  transition: 0.25s ease-in-out;
}
.header__lang-btn.is-selected {
  opacity: 1;
}
.header__lang-btn:not(:last-of-type) {
  padding-right: 13px;
  margin-right: 8px;
}
.header__lang-btn:not(:last-of-type):after {
  content: "/";
  position: absolute;
  right: 0;
  top: 0;
}
.header__btn {
  display: none;
}
.header__burger {
  width: 40px;
  height: 12px;
  position: relative;
  margin-left: 15px;
}

.mobile__lang {
	display: none !important;
}

.menu {
  position: fixed;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  height: 100vh;
  background-color: var(--color-whte);
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 40px 24px;
  z-index: 98;
  transform: translate(-100%);
  transition: 0.25s ease-in-out;
}
.menu__list {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 24px;
}
.menu__item {
  text-transform: uppercase;
}
.menu__lang.header__lang {
  margin: auto 0 0;
  display: flex;
}
.menu__btn {
  margin-top: 24px;
}
.menu-open .menu {
  transform: translate(0);
}
.menu-open .header__burger {
  z-index: 99;
}
.menu-open .header__burger:after {
  width: 24px;
  transform: rotate(45deg);
  top: 5px;
  left: 10px;
}
.menu-open .header__burger span {
  width: 24px;
  transform: rotate(-45deg);
  top: 5px;
  left: 10px;
}
.footer {
  padding: 60px 0 10px;
  background-color: var(--color-blck);
  color: var(--color-whte);
}
.footer__title {
  font-size: 34px;
  text-transform: uppercase;
  margin-bottom: 30px;
}
.footer__title span {
  display: block;
  margin-top: 10px;
  font-size: 16px;
}
.footer__socials {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 40px;
}
.footer__socials-item {
  --size: 27px;
  width: var(--size);
  height: var(--size);
  transition: 0.25s ease-in-out;
}
.footer__socials-item img {
  width: 100%;
  display: block;
}
.footer__nav {
  margin-bottom: 40px;
}
.footer__links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 30px;
  max-width: 160px;
}
.footer__link {
  font-size: 10px;
  text-transform: uppercase;
}
.footer__contacts {
  margin-bottom: 30px;
}
.footer__contacts-title {
  font-size: 16px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.footer__contacts-link {
  font-size: 10px;
  line-height: 1.2;
  opacity: 0.6;
  display: block;
  transition: 0.25s ease-in-out;
}
.footer__contacts-link:not(:last-of-type) {
  margin-bottom: 3px;
}
.footer__office {
  margin-bottom: 30px;
}
.footer__office-title {
  font-size: 10px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.footer__office-link {
  font-size: 10px;
  line-height: 1.2;
  opacity: 0.6;
  display: block;
  transition: 0.25s ease-in-out;
}
.footer__office-link:not(:last-of-type) {
  margin-bottom: 3px;
}
.footer__office-adress {
  opacity: 0.6;
  font-size: 10px;
  line-height: 1.2;
  margin-top: 15px;
}
.footer__bottom {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
}
.footer__bottom-link {
  opacity: 0.6;
  font-size: 10px;
  line-height: 1.2;
  transition: 0.25s ease-in-out;
}
@layer component {
  .btn {
    display: inline-flex;
    text-align: center;
    justify-content: center;
    padding: 14px 20px;
    border-radius: 5px;
    background-color: #5fabca !important;
    color: var(--color-whte);
    transition: all 0.3s ease 0s;
    text-transform: uppercase;
  }
  .btn--wide {
    width: 100%;
  }
}
@layer mod;
.form-group,
.form-group .iti {
  width: 100%;
}
.form-control {
  width: 100%;
  display: inline-block;
  box-sizing: border-box;
  font-size: 16px;
  line-height: 1.3;
  font-style: normal;
  font-weight: 400;
  padding: 12px 15px;
  height: 45px;
  border: none;
  outline: none;
  background-color: var(--color-whte);
  color: var(--color-blck);
  border-radius: 5px;
}
.form-label {
  display: block;
  color: var(--color-whte);
  font-size: 12px;
  line-height: 1.2;
  margin-bottom: 6px;
}
.iti {
  width: 100%;
}
input {
  -webkit-appearance: none;
  margin: 0;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.about {
  overflow: hidden;
}
.about__head {
  margin-bottom: 30px;
  position: relative;
}
.about__subtitle {
  font-size: 8px;
  text-transform: uppercase;
  position: absolute;
  top: 0;
  right: 0;
}
.about__title {
  display: flex;
  flex-direction: column;
  width: 100%;
  font-size: 28px;
  line-height: 1;
  letter-spacing: -1.5px;
  text-transform: uppercase;
  margin-bottom: 30px;
}
.about__title-top {
  display: block;
  max-width: 226px;
}
.about__title-bottom {
  display: block;
  padding-left: 20%;
}
.about__desc {
  max-width: 1108px;
  width: 100%;
  padding-left: 20%;
}
.about__desc p {
  display: block;
  position: relative;
  font-size: 14px;
  line-height: 1.4;
  padding-left: 14px;
  color: #000;
}
.about__desc p:before {
  position: absolute;
  content: "";
  left: 0;
  top: -5px;
  width: 7px;
  height: 7px;
  background: url(../img/icons/plus.svg) center center/7px no-repeat;
}
.about__desc p + p {
  margin-top: 20px;
}
.about__contact {
  display: flex;
  align-items: center;
  text-transform: uppercase;
  gap: 10px;
  margin-bottom: 30px;
  padding-left: 7px;
}
.about__contact span {
  font-size: 10px;
  line-height: 1.4;
  border-bottom: 1px solid currentColor;
}
.about__contact:after {
  content: "";
  background-color: #000;
  width: 4px;
  height: 8px;
  -webkit-mask: var(--icon) center center/cover no-repeat;
  mask: var(--icon) center center/cover no-repeat;
  right: 0;
  transition: 0.25s;
}
.about__gallery {
  --gap: 10px;
  display: flex;
  align-items: stretch;
  gap: var(--gap);
}
.about__gallery-item {
  position: relative;
  width: 90%;
  flex-shrink: 0;
  padding: 8px 10px 15px;
  height: 85vh;
}
.about__gallery-item-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
}
.about__gallery-item-img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 1;
  border-radius: 6px;
  overflow: hidden;
}
.about__gallery-item-img:before {
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../img/about/overlay.webp) center center/100% 100% no-repeat;
}
.about__gallery-item-img img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.about__gallery-item-content {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  z-index: 2;
  color: var(--color-whte);
}
.about__gallery-item-head {
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(var(--color-whte--rgb), 0.3);
}
.about__gallery-item-num {
  font-size: 8px;
  margin-bottom: 3px;
}
.about__gallery-item-title {
  font-size: 16px;
  line-height: 1.3;
  text-transform: uppercase;
}
.about__gallery-item-info {
  font-size: 12px;
  line-height: 1.4;
  padding: 0 10px;
  font-weight: 300;
  max-width: 420px;
  position: relative;
  color: rgba(var(--color-whte--rgb), 0.6);
}
.about__gallery-item-info:before {
  position: absolute;
  content: "";
  height: 12px;
  width: 2px;
  top: 5px;
  left: 0;
  background-color: var(--color-whte);
}
.hero {
  position: relative;
  padding: 18px 0;
  height: 410px;
  max-height: 988px;
  color: var(--color-whte);
  line-height: 1;
}
.hero__img {
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.hero__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__container {
  display: flex;
  align-items: center;
  height: 85%;
  text-align: center;
}
.hero__inner {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  position: relative;
  z-index: 2;
}
.hero__title {
  font-size: 42px;
  margin-bottom: 8px;
  text-transform: uppercase;
}
.hero__subtitle {
  	font-size: 30px;
    text-align: center;
    font-family: HighSummit;
    transform: translate(0px, 0px);
    text-transform: none;
}
.hero__desc {
  font-size: 10px;
  line-height: 1;
  text-align: left;
  margin-top: 26px;
}
.hero__desc span {
  display: block;
  margin-top: 3px;
}
.details__slider {
  overflow: hidden;
}
.details__slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin-top: 20px;
}
.details__slider-item.swiper-slide {
  position: relative;
  width: 100%;
  height: 420px;
  color: var(--color-whte);
  padding: 20px 0;
  overflow: hidden;
}
.details__slider-item.swiper-slide:before {
  position: absolute;
  z-index: 1;
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  background: url(../img/details/details-overlay.webp) center center/100% 100%
    no-repeat;
  z-index: 2;
}
.details__slider-item-img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.details__slider-item-img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.details__slider-item-content {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  height: 100%;
}
.details__slider-item-num {
  font-size: 12px;
  line-height: 1.5;
  margin-bottom: 5px;
}
.details__slider-item-title {
  font-size: 30px;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: -1.5px;
}
.details__slider-item-desc {
  max-width: 234px;
  width: 100%;
  font-size: 11px;
  line-height: 1.32;
  font-weight: 300;
  color: #e6e6e6;
}
.common-slider-btn {
  --size: 20px;
  width: var(--size);
  height: var(--size);
  display: flex;
  align-items: center;
  justify-content: center;
}
.common-slider-btn-prev {
  transform: rotate(180deg);
}
.common-slider-btn:before {
  content: "";
  display: block;
  -webkit-mask: var(--icon) center center/cover no-repeat;
  mask: var(--icon) center center/cover no-repeat;
  width: 10px;
  height: 20px;
  background-color: var(--color-blck);
}
.banner__wrapper {
  background: url(../img/banner.webp) center center/cover no-repeat;
  color: var(--color-whte);
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  padding: 77px 30px 109px;
}
.banner__info {
  position: relative;
  z-index: 2;
  max-width: 241px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
}
.banner__title {
  font-size: 28px;
  letter-spacing: -0.5px;
  line-height: 1.2;
  margin-bottom: 8px;
  text-transform: uppercase;
}
.banner__desc {
  font-size: 13px;
  line-height: 1.3;
  font-weight: 300;
  margin-bottom: 30px;
}
.banner__btn {
  font-size: 14px;
  padding: 13px 14px;
  width: 100%;
}
.video__head {
  margin-bottom: 20px;
  position: relative;
}
.video__subtitle {
  font-size: 14px;
  color: #000;
  margin-top: 10px;
}
.video__title {
  display: flex;
  flex-direction: column;
  max-width: 1544px;
  width: 100%;
  font-size: 30px;
  text-transform: uppercase;
  letter-spacing: -2.5px;
}
.video__title span {
  display: block;
  align-self: flex-end;
  max-width: 250px;
}
.video__media {
  position: relative;
  width: 100%;
  --height: 340px;
  height: var(--height);
}
.video__media-poster {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.video__media-poster.is-hidden {
  display: none;
}
.video__media picture,
.video__media img {
  width: 100%;
  height: 100%;
  display: block;
}
.video__media img {
  object-fit: cover;
}
.video__media iframe {
  width: 100%;
  height: 100%;
  display: block;
}
.video__btn {
  --size: 67px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: var(--size);
  height: var(--size);
}
.video__btn.is-hidden {
  display: none;
}
.video__btn svg {
  display: block;
  width: 100%;
  height: 100%;
}
.architecture {
  overflow: hidden;
}
.architecture__head {
  margin-bottom: 20px;
}
.architecture__subtitle {
  font-size: 14px;
  color: #000;
  margin-bottom: 8px;
}
.architecture__title {
  font-size: 35px;
  margin-bottom: 5px;
  text-transform: uppercase;
}
.architecture__desc {
  max-width: 344px;
  font-size: 13px;
  opacity: 0.6;
}
.architecture__list {
  display: flex;
  flex-direction: column;
  gap: 25px;
}
.architecture__item {
  position: relative;
  width: 100%;
  flex-grow: 1;
}
.architecture__item-head {
  position: absolute;
  width: calc(100% - 28px);
  left: 14px;
  right: 14px;
  top: 14px;
  z-index: 2;
  color: var(--color-whte);
  text-transform: uppercase;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(var(--color-whte--rgb), 0.4);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.architecture__item-desc {
  padding: 20px 14px 0;
  font-size: 13px;
  color: #000;
}
.architecture__item-gallery {
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}
.architecture__item-gallery .swiper-pagination {
  width: 100%;
  height: 30px;
  position: absolute;
  inset: auto 0 0 0;
  display: flex;
  align-items: stretch;
  gap: 5px;
  padding: 0 14px;
}
.architecture__item-gallery .swiper-pagination-bullet {
  width: 100%;
  position: relative;
  z-index: 5;
}
.architecture__item-gallery .swiper-pagination-bullet:before {
  position: absolute;
  content: "";
  bottom: 14px;
  left: 0;
  right: 0;
  background-color: #d9d9d94d;
  height: 3px;
  width: 100%;
  z-index: 2;
  border-radius: 5px;
}
.architecture__item-gallery .swiper-pagination-bullet-active:before {
  background-color: var(--color-whte);
}
.architecture__item-gallery-img {
  display: block;
  --height: 320px;
  width: 100%;
  height: var(--height);
}
.architecture__item-gallery-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.apartments {
  position: relative;
  padding-bottom: 90px !important;
 /*  background-color: #000; */
}
.apartments.section {
  padding-bottom: 0;
}
.apartments__wrapper {
  background-color: #fff;
  padding-top: 60px;
}
.apartments__top {
	color: #000;
}

.apartments__controls-floor {
	color: var(--color-whte);
}
.apartments__top {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-bottom: 30px;
}
.apartments__subtitle {
  font-size: 11px;
  margin-bottom: 8px;
  opacity: 0.6;
}
.apartments__title {
  font-size: 35px;
  margin-bottom: 10px;
  text-transform: uppercase;
}
.apartments__desc {
  font-size: 11px;
  opacity: 0.6;
}
.apartments__details-title {
  font-size: 13px;
  margin-bottom: 9px;
}
.apartments__details-item {
  font-size: 13px;
  line-height: 1;
  opacity: 0.6;
}
.apartments__structure-item {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 2px 0 12px;
  border-top: 1px solid #000;
}
.apartments__structure-item:first-of-type .apartments__structure-item-num {
  font-size: 34px;
}
.apartments__structure-item-title {
  padding-top: 5px;
  font-size: 11px;
  line-height: 1.3;
  text-transform: uppercase;
}
.apartments__structure-item-num {
  width: 120px;
  flex-shrink: 0;
  font-size: 34px;
  display: flex;
  align-items: flex-end;
  gap: 8px;
  opacity: 0.6;
}
.apartments__structure-item-num span {
  display: block;
  font-size: 8px;
}
.apartments__main {
  overflow: hidden;
}
.apartments__img {
  display: block;
  width: 758px;
  height: 425px;
  position: relative;
  left: -208px;
}
.apartments__img img {
  display: block;
  width: 100%;
}
.apartments__main {
  position: relative;
    padding-bottom: 57%;
}
.apartments__main .apartments__img,
.apartments__main .apartments__svg {
    position: absolute;
    inset: 0;
    width: unset;
    height: unset;
}
.apartments__main .apartments__img img,
.apartments__main .apartments__svg svg {
    min-width: 100%;
    max-width: 100%;
    min-height: 100%;
    max-height: 100%;
    object-fit: cover;
    width: unset;
    height: unset;
}
@media (max-width: 768px) {

    .apartments__main {
        padding-bottom: 143%;

    }

    .apartments__main .apartments__img,
    .apartments__main .apartments__svg {
        width: 1320px;
        height: 742px;
        inset: unset;
        left: -340px;
    }

    .apartments__main .apartments__img img,
    .apartments__main .apartments__svg svg {

    }
}
@media (max-width: 590px) {
    .apartments__main .apartments__img,
    .apartments__main .apartments__svg {
        left: -420px;
    }
}
@media (max-width: 480px) {



    .apartments__main .apartments__img,
    .apartments__main .apartments__svg {
        width: 966px;
        height: 543px;
        left: -290px;
    }

    .apartments__main .apartments__img img,
    .apartments__main .apartments__svg svg {

    }
}
.apartments__controls {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 40px;
  padding: 12px 16px;
  border: 1px solid rgba(var(--color-whte--rgb), 0.3);
  border-radius: 3px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  z-index: 3;
}
.apartments__controls-btn {
  --size: 30px;
  width: var(--size);
  height: var(--size);
  border-radius: 50%;
  background-color: var(--color-whte);
  display: flex;
  align-items: center;
  justify-content: center;
}
.apartments__controls-btn:before {
  content: "";
  display: block;
  -webkit-mask: var(--icon) center center/cover no-repeat;
  mask: var(--icon) center center/cover no-repeat;
  width: 7px;
  height: 14px;
  background-color: var(--color-blck);
}
.apartments__controls-next:before {
  transform: rotate(90deg);
}
.apartments__controls-prev:before {
  transform: rotate(-90deg);
}
.apartments__controls-floor {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 8px;
}
.apartments__controls-floor span {
  font-size: 24px;
  display: block;
}
.apartments__svg {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 758px;
  height: 425px;
  left: -208px;
  pointer-events: none;
}
.apartments__svg svg {
  display: block;
  width: 100%;
  height: 100%;
}
.apartments__svg-item {
  cursor: pointer;
  color: #5fabca;
  transition: 0.25s ease-in-out;
}
.apartments__svg-item path {
  opacity: 0;
  fill: transparent;
}
.apartments__svg-item.is-selected path {
  opacity: 1;
  fill: #5fabca;
}
.apartments-popup {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000000b3;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  z-index: 99;
  display: none;
}
.apartments-popup.is-open {
  display: flex;
}
.apartments-popup__content {
  position: relative;
  max-width: 1140px;
  width: 100%;
  background-color: var(--color-whte);
}
.apartments-popup__close {
  --size: 24px;
  width: var(--size);
  height: var(--size);
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
}
.apartments-popup__close:before {
  position: absolute;
  content: "";
  width: 16px;
  height: 1px;
  background-color: #0f0f0f;
  transform: rotate(45deg);
  top: 11px;
  left: 4px;
}
.apartments-popup__close:after {
  position: absolute;
  content: "";
  width: 16px;
  height: 1px;
  background-color: #0f0f0f;
  transform: rotate(-45deg);
  top: 11px;
  left: 4px;
}
.apartments-popup__main {
  background-color: var(--color-whte);
  padding: 15px;
}
.apartments-popup__floor {
  max-width: 906px;
  width: 100%;
  margin: 0 auto;
  position: relative;
}
.apartments-popup__floor--mob {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 280px;
}
.apartments-popup__floor--desk {
  display: none;
}
.apartments-popup__floor-img,
.apartments-popup__floor-img img {
  width: 100%;
  padding-top: 3px;
}

.apartments-popup__floor-svg {
  position: absolute;
  width: 100%;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.apartments-popup__floor-svg svg {
  display: block;
  width: 100%;
  height: 100%;
}
.apartments-popup__floor-item {
  cursor: pointer;
}
.apartments-popup__floor-item:hover .apartments-popup__floor-info {
  opacity: 1;
  visibility: visible;
}
.apartments-popup__floor-item:hover .apartments-popup__floor-layout {
  fill: #5fabca;
}
.apartments-popup__floor-layout {
  fill: transparent;
  transition: 0.25s ease-in-out;
}
.apartments-popup__floor-info {
  opacity: 0;
  visibility: hidden;
  color: var(--color-blck);
  transition: 0.35s ease-in-out;
}
.apartments-popup__bottom {
  padding: 15px;
  width: 100%;
  display: flex;
  background-color: var(--color-whte);
  color: var(--color-blck);
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}
.apartments-popup__details {
  display: flex;
  align-items: center;
  gap: 40px;
}
.apartments-popup__num {
  font-size: 23px;
  font-weight: 500;
}
.apartments-popup__detail {
  display: flex;
  align-items: flex-end;
  gap: 8px;
}
.apartments-popup__detail span {
  font-size: 12px;
}
.apartments-info {
  position: absolute;
  bottom: 0;
  left: 20px;
  max-width: calc(100% - 40px);
  width: 100%;
  padding: 11px 13px;
  background-color: var(--color-whte);
  color: var(--color-blck);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 17px;
  z-index: 3;
  display: none;
  border-radius: 4px;
  min-height: 114px;
}
.apartments-info.is-open {
  display: flex;
}
.apartments-info__main {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 13px 10px;
}
.apartments-info__floor {
  font-size: 10px;
  display: flex;
  align-items: flex-end;
  gap: 5px;
}
.apartments-info__floor--lobby {
  font-size: 18px;
}
.apartments-info__floor span {
  font-size: 27px;
}
.apartments-info__details {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 13px;
}
.apartments-info__detail {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 10px;
}
.apartments-info__detail span {
  font-size: 12px;
}
.apartments-info__btn {
  width: 100%;
  position: relative;
  padding: 16px;
  height: 55px;
  font-size: 18px;
  line-height: 1;
  align-items: center;
}
.advantages {
  position: relative;
  color: var(--color-whte);
  overflow: hidden;
}
.advantages__head {
  position: absolute;
  padding: 20px 4px 0;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1;
}
.advantages__title {
  font-size: 30px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.advantages__desc {
  font-size: 11px;
  line-height: 1.2;
  max-width: 220px;
  color: #e6e6e6;
}
.advantages__main {
  position: relative;
}
.advantages__img {
  width: 100%;
  display: block;
    padding-bottom: 57%;
    position: relative;
}
.advantages__img .lazy-img {
   position: absolute;
    inset: 0;

}
.advantages__img img {

}
.advantages__item {
  position: absolute;
  display: flex;
  flex-direction: column-reverse;
  align-items: flex-start;
  gap: 14px;
  z-index: 3;
}
.advantages__item:hover,
.advantages__item:hover .advantages__item-dot,
.advantages__item:hover .advantages__item-info {
  z-index: 10;
}
.advantages__item-dot {
  --size: 30px;
  width: var(--size);
  height: var(--size);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  cursor: pointer;
  z-index: 2;
}
.advantages__item-dot:hover span {
  transform: translate(-50%, -50%) scale(1.1);
}
.advantages__item-dot:hover:after {
  transform: translate(-50%, -50%) scale(1.1);
  transition-delay: 0.05s;
}
.advantages__item-dot:hover:before {
  transform: scale(1.1);
  transition-delay: 0.1s;
}
.advantages__item-dot:hover + .advantages__item-info {
  opacity: 1;
  visibility: visible;
}
.advantages__item-dot span {
  --size: 14px;
  width: var(--size);
  height: var(--size);
  border-radius: 50%;
  background-color: var(--color-whte);
  display: block;
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: 0.25s ease-in;
}
.advantages__item-dot:after,
.advantages__item-dot:before {
  content: "";
  position: absolute;
  border: 2px solid rgba(var(--color-whte--rgb), 0.4);
  top: -5px;
  right: -5px;
  bottom: -5px;
  left: -5px;
  opacity: 0;
  border-radius: 50%;
  animation: pulse 2.5s linear infinite;
}
.advantages__item-dot .pulse:after {
  animation-delay: 1.25s;
}
.advantages__item-info {
  width: 280px;
  top: 100%;
  padding: 12px;
  border-radius: 6px;
  border: 1px solid rgba(var(--color-card-border--rgb), 0.4);
  background-color: rgba(var(--color-card-bg--rgb), 0.02);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  font-weight: 300;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  position: relative;
  z-index: 3;
  position: absolute;
  transition: 0.5s;
}
.advantages__item-num {
  font-size: 10px;
  margin-bottom: 6px;
}
.advantages__item-title {
  font-size: 14px;
  line-height: 1.3;
  margin-bottom: 6px;
  text-transform: uppercase;
}
.advantages__item-desc {
  font-size: 13px;
  line-height: 1.3;
}
.advantages__item--1 {
  left: 10%;
  bottom: 7%;
}
.advantages__item--1 .advantages__item-info {
  top: -110px;
}
.advantages__item--2 {
  left: 15%;
  bottom: 27%;
}
.advantages__item--2 .advantages__item-info {
  top: -110px;
}
.advantages__item--3 {
  left: 48%;
  bottom: 14%;
}
.advantages__item--3 .advantages__item-info {
  top: -125px;
  left: -140px;
}
.advantages__item--4 {
  right: 24%;
  bottom: 30%;
  align-items: flex-end;
}
.advantages__item--4 .advantages__item-info {
  top: -125px;
  right: -50px;
}
.advantages__item--5 {
  right: 14%;
  top: 35%;
  align-items: flex-end;
}
.advantages__item--5 .advantages__item-info {
  top: -145px;
}
.advantages__item--6 {
  right: 5%;
  bottom: 12%;
  align-items: flex-end;
}
.advantages__item--6 .advantages__item-info {
  top: -115px;
}
@keyframes pulse {
  0% {
    transform: scale(0.5);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  to {
    transform: scale(1.2);
    opacity: 0;
  }
}
.infinite {
  position: relative;
  overflow: hidden;
}
.infinite.section {
  padding: 0;
}
.infinite:before {
  position: absolute;
  z-index: 10;
  top: -2px;
  height: 4px;
  width: 100%;
  background-color: var(--color-whte);
  display: block;
  content: "";
}
.infinite:after {
  position: absolute;
  z-index: 10;
  bottom: -2px;
  height: 4px;
  width: 100%;
  background-color: var(--color-whte);
  display: block;
  content: "";
}
.infinite__img {
  display: block;
  width: 100%;
  height: 100%;
  height: 100vh;
}
.infinite__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.infinite__mask {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  height: 100vh;
  display: block;
  transform: scale(10);
  opacity: 0;
}
.infinite__mask img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.infinite__mask img {
  width: 100%;
  display: block;
}
.location__head {
  margin-bottom: 30px;
}
.location__top {
  margin-bottom: 10px;
}
.location__subtitle {
  font-size: 11px;
  line-height: 1.3;
  opacity: 0.6;
  margin-bottom: 6px;
}
.location__title {
  font-size: 35px;
  line-height: 1;
  text-transform: uppercase;
}
.location__info {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 30px;
}
.location__adress-title {
  font-size: 13px;
  line-height: 1.3;
  margin-bottom: 20px;
  position: relative;
}
.location__adress-title:before {
  content: "";
  position: absolute;
  width: 7px;
  height: 10px;
  background: url(../img/icons/address-pin.svg) center center/7px no-repeat;
  top: 3px;
  left: -15px;
  opacity: 0;
}
.location__structure {
  max-width: 305px;
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  font-size: 13px;
  line-height: 1.2;
}
.location__structure-list {
  opacity: 0.6;
}
.location__inner {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.location__img {
  display: block;
  width: 100%;
  height: 100%;
}
.location__img img {
  display: block;
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 5px;
}
.location__main {
  height: 320px;
}
.location__side {
  height: 350px;
  position: relative;
}
.location__side-img img {
  object-position: bottom center;
}
.location__item {
  position: absolute;
}
.location__item img {
  display: block;
  max-width: 100%;
}
.location__item--0 {
  width: 149px;
  bottom: 9%;
  left: 29%;
  display: block;
}
.location__item--0:after {
  --size: 12px;
  --pos-negative: -6px;
  content: "";
  position: absolute;
  border-radius: 50%;
  background-color: #6fc1e3;
  width: var(--size);
  height: var(--size);
  left: var(--pos-negative);
  bottom: var(--pos-negative);
}
.location__item--0:before {
  --size: 26px;
  --pos-negative: -13px;
  position: absolute;
  content: "";
  border: 2px solid #6fc1e3;
  opacity: 0;
  border-radius: 50%;
  animation: pulse 2.5s linear infinite;
  width: var(--size);
  height: var(--size);
  left: var(--pos-negative);
  bottom: var(--pos-negative);
} 
.location__item--1 {
  width: 80px;
  left: 20%;
  top: 10%;
}
.location__item--2 {
  width: 75px;
  right: 38%;
  top: 45%;
}
.location__item--3 {
  width: 75px;
  right: 50%;
  bottom: 35%;
}
.location__item--4 {
  width: 70px;
  top: 40%;
  right: 8%;
}
.location__item--5 {
  width: 70px;
  right: 10%;
  top: 50%;
}
.location__item--6 {
  width: 80px;
  right: 15%;
  bottom: 25%;
}
.location__item--7 {
  width: 70px;
  right: 15%;
  bottom: 5%;
}
.apartments-popup__floor-item {
  outline: none;
  border: none;
}
.apartments-popup__floor-item-block {
  width: 72px;
  background-color: var(--color-whte);
  color: var(--color-blck);
  border-radius: 4px;
  box-shadow: 4.89px 6.84px 11.73px #00000017;
}
.apartments-popup__floor-item-info {
  padding: 5px 6px;
  background-color: var(--color-whte);
}
.apartments-popup__floor-item-flat {
  margin-bottom: 5px;
  font-size: 6px;
}
.apartments-popup__floor-item-flat-num {
  font-size: 22px;
}
.apartments-popup__floor-item-gp {
  font-size: 5px;
}
.apartments-popup__floor-item-gp span {
  font-size: 8px;
}
.tippy-box {
  background-color: transparent !important;
  color: var(--color-blck) !important;
}
.flat {
  padding: 20px 0 30px;
}
.flat__container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 30px;
}
.flat__img {
  max-width: 100%;
  width: 100%;
  padding: 24px 16px;
  border-radius: 12px;
  border: 1px solid var(--color-border);
}
.flat__img picture,
.flat__img img {
  display: block;
  width: 100%;
}
.flat__info {
  max-width: 100%;
  width: 100%;
  padding-top: 0;
  display: flex;
  flex-direction: column;
}
.flat__main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  gap: 20px;
  flex-wrap: wrap;
}
.flat__rooms {
  font-size: 29px;
  font-weight: 500;
}
.flat__square {
  display: flex;
  align-items: flex-end;
  gap: 4px;
}
.flat__square-title {
  font-size: 14px;
  opacity: 0.4;
}
.flat__square-desc {
  font-size: 14px;
}
.flat__square-desc span {
  font-weight: 20px;
}
.flat__delivery-date {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 0;
  opacity: 0.2;
  border-top: 1px solid var(--color-blck);
  border-bottom: 1px solid var(--color-blck);
  margin-bottom: 20px;
}
.flat__details {
  display: block;
  padding: 0 0 20px;
  margin: 0 0 20px;
  border-bottom: 1px solid rgba(var(--color-blck--rgb), 0.2);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.flat__detail {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
}
.flat__detail dt {
  font-size: 14px;
}
.flat__detail dd {
  font-size: 16px;
}
.flat__finish {
  margin-bottom: 20px;
}
.flat__finish-title {
  font-size: 14px;
  margin-bottom: 8px;
}
.flat__finish-select select {
  max-width: 100%;
  display: block;
  background-color: #e9e9e9;
  width: 122px;
  padding: 4px 6px;
  font-size: 14px;
  outline: none;
}
.flat__finish-select select option {
  font-size: 14px;
}
.flat__btn {
  margin: auto 0 0;
}
.payment {
  padding: 30px 0;
}
.payment__title {
  font-size: 28px;
  margin-bottom: 32px;
}
.payment__desc {
  display: grid;
  max-width: 965px;
  width: 100%;
  grid-template-columns: 1fr;
  gap: 16px;
  font-size: 12px;
  opacity: 0.6;
  margin-bottom: 24px;
}
.payment__subtitle {
  margin-bottom: 16px;
  font-size: 18px;
}
.payment__table-row {
  display: grid;
  grid-template-columns: 0.5fr 0.5fr 1fr;
  gap: 6px;
  margin-bottom: 16px;
}
.payment__table-cell--color p:first-child {
  color: #000;
}

.payment__table-cell--color p:first-child(2) {
  color: #4cb3de;
}
.payment__table-row:not(:last-of-type) {
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: 1px solid var(--color-border);
}
.payment__table-cell {
  font-size: 14px;
  line-height: 1.2;
}
.payment__table-cell--color p{
  color: #4cb3de;
}
.other {
  padding: 30px 0 60px;
  overflow: hidden;
}
.other__title {
  font-size: 28px;
  margin-bottom: 32px;
}
.other-item {
  border-radius: 6px;
  padding: 15px;
  border: 1px solid var(--color-border);
}
.other-item.swiper-slide {
  max-width: 280px;
  width: 100%;
}
.other-item__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  gap: 16px;
  flex-wrap: wrap;
}
.other-item__flats {
  font-weight: 500;
}
.other-item__square {
  display: flex;
  align-items: center;
  gap: 4px;
}
.other-item__square-title {
  opacity: 0.4;
  font-size: 12px;
}
.other-item__square-desc {
  font-size: 14px;
}
.other-item__square-desc span {
  font-size: 12px;
}
.other-item__img {
  display: block;
  padding: 30px 0;
  border-top: 1px solid rgba(var(--color-blck--rgb), 0.1);
  border-bottom: 1px solid rgba(var(--color-blck--rgb), 0.1);
  margin-bottom: 14px;
}
.other-item__img img {
  display: block;
  width: 100%;
}
.other-item__details {
  margin: 0 0 20px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.other-item__detail {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
}
.other-item__finishing {
  font-size: 12px;
  opacity: 0.4;
}
.finish {
  padding: 30px 0;
}
.finish__title {
  font-size: 28px;
  margin-bottom: 32px;
}
.finish__types {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.finish__types-nav {
  width: 100%;
}
.finish__types-item {
  padding: 10px 26px 10px 0;
  border-bottom: 1px solid rgba(var(--color-blck--rgb), 0.1);
}
.finish__types-item:first-of-type {
  border-top: 1px solid rgba(var(--color-blck--rgb), 0.1);
}
.finish__types-item-num {
  font-size: 8px;
  opacity: 0.6;
  margin-bottom: 8px;
}
.finish__types-item-name {
  text-transform: uppercase;
  cursor: pointer;
}
.finish__types-item-desc {
  font-size: 12px;
  opacity: 0.6;
  padding-top: 8px;
}
.finish__types-gallery {
  width: 100%;
}
.finish__types-img {
  width: 100%;
  display: none;
}
.finish__types-img.is-active {
  display: block;
}
.finish__types-img img {
  display: block;
  width: 100%;
}
body {
  padding-top: 53px;
}
.lock body {
  overflow: hidden;
  touch-action: none;
  overscroll-behavior: none;
}
@layer base {
  [class*="__container"] {
    --pad: 20px;
    box-sizing: border-box;
    max-width: 116.5rem;
    margin: 0 auto;
    padding: 0 var(--pad);
  }
}
body:after {
  position: fixed;
  top: 0;
  left: 0;
  z-index: calc(var(--index-3) - 1);
  width: 100%;
  height: 100%;
  background-color: #00000080;
  opacity: 0;
  transition: opacity 0.8s ease 0s;
  content: "";
  pointer-events: none;
}
.popup-show body:after {
  opacity: 1;
}
@layer component {
  .popup {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 30px 10px;
    visibility: hidden;
    transition: visibility 0.8s ease 0s;
    pointer-events: none;
  }
  .popup_show {
    z-index: var(--index-3);
    overflow: auto;
    visibility: visible;
    pointer-events: auto;
  }
  .popup_show .popup__content {
    transform: scale(1);
    visibility: visible;
  }
  .popup__wrapper {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 100%;
  }
  .popup__close {
    --size: 46px;
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 5px;
    right: 5px;
    width: var(--size);
    height: var(--size);
    background-color: var(--color-whte);
    color: var(--color-blck);
    text-transform: uppercase;
  }
  .popup__close-icon {
    display: block;
    --size: 18px;
    width: var(--size);
    height: var(--size);
  }
  .popup__close-icon:before {
    content: "";
    display: block;
    background-color: #000;
    width: var(--size);
    height: var(--size);
    -webkit-mask: var(--icon) center center/cover no-repeat;
    mask: var(--icon) center center/cover no-repeat;
    right: 0;
    transition: 0.25s;
  }
  .popup__close-text {
    display: none;
  }
  .popup__content {
    width: 100%;
    max-width: 1050px;
    padding: 30px 10px 40px;
    background: url(../img/popup-bg.webp) center center/cover no-repeat;
    transform: scale(0);
    visibility: hidden;
    transition: transform 0.3s ease 0s;
  }
  .lock .popup__content {
    visibility: visible;
  }
  .popup__head {
    font-size: 34px;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: var(--color-whte);
  }
  .popup__form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .popup__form-row:not(:last-of-type) {
    margin-bottom: 10px;
  }
  .popup__form-row:last-of-type {
    grid-template-columns: 1fr 1fr;
    -moz-column-gap: 4px;
    column-gap: 4px;
  }
  .popup__form-btn {
    width: 100%;
    margin-top: 35px;
  }
}
@font-face {
  font-family: swiper-icons;
  src: url(data:application/font-woff;charset=utf-8;base64,\ d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA)
    format("woff");
  font-weight: 400;
  font-style: normal;
}
:root {
  --swiper-theme-color: #007aff;
}
.swiper,
swiper-container {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
  display: block;
}
.swiper-vertical > .swiper-wrapper {
  flex-direction: column;
}
.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  transition-timing-function: var(
    --swiper-wrapper-transition-timing-function,
    initial
  );
  box-sizing: content-box;
}
.swiper-android .swiper-slide,
.swiper-wrapper {
  transform: translateZ(0);
}
.swiper-horizontal {
  touch-action: pan-y;
}
.swiper-vertical {
  touch-action: pan-x;
}
.swiper-slide,
swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
  display: block;
}
.swiper-slide-invisible-blank {
  visibility: hidden;
}
.swiper-autoheight,
.swiper-autoheight .swiper-slide {
  height: auto;
}
.swiper-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}
.swiper-backface-hidden .swiper-slide {
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px;
}
.swiper-3d .swiper-wrapper {
  transform-style: preserve-3d;
}
.swiper-3d {
  perspective: 1200px;
}
.swiper-3d .swiper-slide,
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-cube-shadow {
  transform-style: preserve-3d;
}
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}
.swiper-3d .swiper-slide-shadow {
  background: rgba(0, 0, 0, 0.15);
}
.swiper-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(
    to left,
    rgba(0, 0, 0, 0.5),
    rgba(0, 0, 0, 0)
  );
}
.swiper-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.5),
    rgba(0, 0, 0, 0)
  );
}
.swiper-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.5),
    rgba(0, 0, 0, 0)
  );
}
.swiper-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.5),
    rgba(0, 0, 0, 0)
  );
}
.swiper-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}
.swiper-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}
.swiper-horizontal.swiper-css-mode > .swiper-wrapper {
  scroll-snap-type: x mandatory;
}
.swiper-vertical.swiper-css-mode > .swiper-wrapper {
  scroll-snap-type: y mandatory;
}
.swiper-css-mode.swiper-free-mode > .swiper-wrapper {
  scroll-snap-type: none;
}
.swiper-css-mode.swiper-free-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: none;
}
.swiper-centered > .swiper-wrapper:before {
  content: "";
  flex-shrink: 0;
  order: 9999;
}
.swiper-centered > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: center center;
  scroll-snap-stop: always;
}
.swiper-centered.swiper-horizontal
  > .swiper-wrapper
  > .swiper-slide:first-child {
  -webkit-margin-start: var(--swiper-centered-offset-before);
  margin-inline-start: var(--swiper-centered-offset-before);
}
.swiper-centered.swiper-horizontal > .swiper-wrapper:before {
  height: 100%;
  min-height: 1px;
  width: var(--swiper-centered-offset-after);
}
.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
  -webkit-margin-before: var(--swiper-centered-offset-before);
  margin-block-start: var(--swiper-centered-offset-before);
}
.swiper-centered.swiper-vertical > .swiper-wrapper:before {
  width: 100%;
  min-width: 1px;
  height: var(--swiper-centered-offset-after);
}
.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  transform-origin: 50%;
  box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}
.swiper:not(.swiper-watch-progress) .swiper-lazy-preloader,
swiper-container:not(.swiper-watch-progress) .swiper-lazy-preloader,
.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader {
  animation: swiper-preloader-spin 1s infinite linear;
}
.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff;
}
.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000;
}
@keyframes swiper-preloader-spin {
  0% {
    transform: rotate(0);
  }
  to {
    transform: rotate(360deg);
  }
}
.swiper .swiper-notification,
swiper-container .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}
.section {
  padding: 60px 0;
}
/* .section + .section {
  padding-top: 0;
} */
.link {
  position: relative;
  white-space: nowrap;
}
.link:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background: currentColor;
  top: 110%;
  left: 0;
  pointer-events: none;
  transform-origin: 100% 50%;
  transform: scale3d(0, 1, 1);
  transition: transform 0.3s;
}
.iti--container {
  z-index: 9999;
}
@media only screen and (min-width: 400px) {
  @layer component {
    .popup__close {
      width: 143px;
      gap: 16px;
    }
  }
  @layer component {
    .popup__close-icon {
      --size: 10px;
    }
  }
  @layer component {
    .popup__close-text {
      display: block;
      font-size: 14px;
    }
  }
  @layer component {
    .popup__content {
      padding: 80px 20px;
    }
  }
  @layer component {
    .popup__form-row {
      grid-template-columns: 1fr 1fr;
    }
  }
  @layer component {
    .popup__form-row:not(:last-of-type) {
      margin-bottom: 15px;
    }
  }
  @layer component {
    .popup__form-row:last-of-type {
      -moz-column-gap: 10px;
      column-gap: 10px;
    }
  }
  @layer component {
    .popup__form-btn {
      width: 180px;
    }
  }
}
@media only screen and (min-width: 480px) {
  .header__btn {
    display: block;
  }
  .footer__container {
    display: grid;
    grid-template-columns: 1fr 0.6fr;
  }
  .footer__contacts {
    grid-column: 1/2;
    grid-row: 2/3;
  }
  .footer__contacts-title {
    max-width: 210px;
  }
  .footer__bottom {
    grid-column: span 2;
    display: grid;
    grid-template-columns: 1fr 0.6fr;
    gap: 10px;
  }
  .footer__bottom-link:nth-of-type(1) {
    grid-column: 2/3;
    grid-row: 1/2;
    text-align: right;
  }
  .footer__bottom-link:nth-of-type(2) {
    grid-column: 2/3;
    grid-row: 2/3;
    text-align: right;
  }
  .about__title {
    font-size: 34px;
  }
  .about__desc p {
    font-size: 13px;
  }
  .about__contact {
    margin-bottom: 40px;
  }
  .about__contact span {
    font-size: 14px;
  }
  .about__contact:after {
    width: 6px;
    height: 12px;
  }
  .about__gallery {
    --gap: 10px;
  }
  .hero {
    height: 540px;
    padding: 20px 0;
  }
  .hero__inner {
    padding-bottom: 60px;
  }
  .hero__title {
    font-size: 60px;
    margin-bottom: 10px;
  }
  .hero__subtitle {
    font-size: 24px;
  }
  .hero__desc {
    position: absolute;
    right: 30px;
    bottom: 60px;
    font-size: 12px;
    text-align: right;
    z-index: 1;
  }
  .hero__desc span {
    font-size: 16px;
    margin-top: 5px;
  }
  .details__slider-item.swiper-slide {
    height: 500px;
    padding: 30px 0;
  }
  .details__slider-item-title {
    font-size: 42px;
  }
  .details__slider-item-desc {
    max-width: 300px;
    font-size: 13px;
  }
  .banner__wrapper {
    padding: 57px 30px 129px;
  }
  .banner__info {
    margin: 0;
    text-align: left;
  }
  .banner__btn {
    width: auto;
  }
  .video__subtitle {
    position: absolute;
    left: 0;
    bottom: 0;
  }
  .video__title {
    font-size: 34px;
  }
  .video__media {
    --height: 267px;
  }
  .video__btn {
    --size: 54px;
  }
  .architecture__head {
    margin-bottom: 30px;
  }
  .architecture__title {
    font-size: 42px;
    line-height: 1;
    margin-bottom: 10px;
  }
  .architecture__item-gallery-img {
    --height: 340px;
  }
  .apartments__structure-item:first-of-type .apartments__structure-item-num {
    font-size: 49px;
  }
  .apartments__structure-item:first-of-type {
    padding-bottom: 24px;
  }
  .apartments__structure-item-title {
    font-size: 13px;
  }
  .apartments__structure-item-num {
    font-size: 49px;
    width: 150px;
  }
  .apartments__img,
  .apartments__svg {
    width: 966px;
    height: 543px;
    left: -241px;
  }
  .advantages__title {
    font-size: 42px;
  }
  .advantages__desc {
    max-width: 315px;
    font-size: 13px;
  }
  .location__head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    max-width: 571px;
  }
  .location__info {
    gap: 20px;
  }
  .location__adress-title {
    margin-bottom: 15px;
  }
  .location__adress-title:before {
    opacity: 1;
  }
  .location__structure {
    flex-direction: column;
    gap: 6px;
  }
  .location__main {
    height: 400px;
  }
  .location__side {
    height: 520px;
  }
  body {
    padding-top: 78px;
  }
}
@media only screen and (min-width: 560px) {
  .hero {
    height: 610px;
    padding: 40px 0;
  }
  .hero__inner {
    padding-bottom: 0;
  }
  .banner__desc {
    max-width: 293px;
  }
  .video__head {
    margin-bottom: 30px;
  }
  .video__title {
    font-size: 42px;
  }
  .video__media {
    --height: 660px;
  }
  .video__btn {
    --size: 96px;
  }
  .architecture__subtitle {
    font-size: 11px;
    margin-bottom: 5px;
  }
  .architecture__item-head:after {
    content: "";
    width: 2px;
    height: 18px;
    background-color: var(--color-whte);
    display: block;
  }
  .architecture__item-gallery-img {
    --height: 400px;
  }
  .apartments__wrapper {
    padding-top: 90px;
  }
  .apartments__top {
    gap: 20px;
  }
  .apartments__head {
    margin-bottom: 16px;
  }
  .apartments__subtitle {
    font-size: 13px;
    margin-bottom: 5px;
  }
  .apartments__title {
    font-size: 42px;
  }
  .apartments__structure-item {
    padding-bottom: 10px;
  }
  @layer component {
    .popup__content {
      padding: 80px 40px;
    }
  }
  @layer component {
    .popup__head {
      font-size: 45px;
    }
  }
  @layer component {
    .popup__form-row {
      gap: 20px;
    }
  }
  @layer component {
    .popup__form-row:last-of-type {
      -moz-column-gap: 20px;
      column-gap: 20px;
    }
  }
}
@media only screen and (min-width: 600px) {
  .banner__info {
    max-width: 400px;
  }
}
@media only screen and (min-width: 640px) {
  .apartments__img,
  .apartments__svg {
    width: 1320px;
    height: 742px;
    left: -340px;
  }
}
@media only screen and (min-width: 767px) {
  .about__title {
    font-size: 46px;
  }
  .about__title-top {
    max-width: 100%;
  }
  .about__title-bottom,
  .about__desc {
    padding-left: 45%;
  }
  .about__contact {
    position: absolute;
    left: 0;
    top: 80px;
  }
  .details__slider-item.swiper-slide {
    height: 480px;
  }
  .details__slider-item-title {
    font-size: 46px;
  }
  .details__slider-item-desc {
    max-width: 336px;
  }
  .banner__title {
    font-size: 36px;
  }
  .video__head {
    margin-bottom: 35px;
  }
  .video__title {
    font-size: 46px;
  }
  .video__title span {
    max-width: 100%;
  }
  .video__media {
    --height: 480px;
  }
  .architecture__head-row {
    display: flex;
    align-items: flex-end;
    gap: 24px;
  }
  .architecture__title {
    margin-bottom: 0;
  }
  .architecture__desc {
    padding-bottom: 8px;
  }
  .advantages__head {
    padding: 30px 16px 0;
  }
  .advantages__title {
    font-size: 46px;
  }
  .advantages__title {
    font-size: 55px;
  }
  .advantages__desc {
    max-width: 336px;
  }
  .advantages__item-title {
    margin-bottom: 10px;
  }
  .location__item--0:after {
    --size: 16px;
    --pos-negative: -13px;
  }
  .location__item--0:before {
    --size: 32px;
    --pos-negative: -21px;
  }
}
@media only screen and (min-width: 47.99875em) {
  .hero__inner {
    flex-direction: row;
    align-items: flex-end;
    gap: 24px;
  }
  .hero__info {
    width: 100%;
  }
}
@media only screen and (min-width: 768px) {
  .header__lang {
    display: flex;
  }
  .hero {
    height: 520px;
  }
  .apartments-popup__bottom {
    gap: 20px;
  }
  .apartments-info {
    max-width: 280px;
  }
  .apartments-info__main {
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    height: 100%;
    gap: 17px;
  }
  .advantages__item-dot {
    --size: 60px;
  }
  .advantages__item-dot:after {
    --size: 45px;
  }
  .advantages__item-dot span {
    --size: 27px;
  }
  .advantages__item-info {
    width: 296px;
    padding: 20px;
    border-radius: 10px;
  }
  .advantages__item-num {
    margin-bottom: 10px;
  }
  .advantages__item--1 {
    left: 24%;
    bottom: 10%;
  }
  .advantages__item--1 .advantages__item-info {
    top: -130px;
    left: 30px;
  }
  .advantages__item--2 {
    bottom: 42%;
    left: 24%;
  }
  .advantages__item--2 .advantages__item-info {
    top: -130px;
    left: 30px;
  }
  .advantages__item--3 {
    left: 43.5%;
    bottom: 24%;
  }
  .advantages__item--3 .advantages__item-info {
    top: -150px;
    left: 30px;
  }
  .advantages__item--4 {
    right: 38%;
    bottom: 49%;
  }
  .advantages__item--4 .advantages__item-info {
    right: auto;
    top: -150px;
    left: 30px;
  }
  .advantages__item--5 {
    right: 24%;
    top: 19%;
  }
  .advantages__item--5 .advantages__item-info {
    top: -50px;
    right: 120%;
  }
  .advantages__item--6 {
    right: 26%;
    bottom: 19%;
  }
  .advantages__item--6 .advantages__item-info {
    top: -130px;
    left: -50px;
  }
  .location__head {
    max-width: 840px;
  }
  .location__top {
    margin-bottom: 0;
    margin-right: 140px;
  }
  .location__title {
    font-size: 44px;
  }
  .location__info {
    width: 100%;
    flex-direction: row;
    justify-content: space-between;
    padding-top: 30px;
  }
  .location__adress {
    width: 100%;
  }
  .location__structure {
    width: auto;
    flex-shrink: 0;
  }
  .location__main {
    height: 494px;
  }
  .location__item--0 {
    width: 170px;
    bottom: 15%;
    left: 15%;
  }
  .location__item--1 {
    width: 100px;
    left: 20%;
    top: 10%;
  }
  .location__item--2 {
    width: 110px;
    right: auto;
    top: 25%;
    left: 28%;
  }
  .location__item--3 {
    width: 110px;
    left: 15%;
    bottom: 40%;
    right: auto;
  }
  .location__item--4 {
    width: 100px;
    right: 38%;
    top: 15%;
  }
  .location__item--5 {
    width: 100px;
    left: auto;
    right: 38%;
    top: 25%;
  }
  .location__item--6 {
    width: 144px;
    right: 35%;
    bottom: 38%;
  }
  .location__item--7 {
    width: 112px;
    right: 40%;
    bottom: 10%;
  }
  .flat {
    padding: 30px 0 45px;
  }
  .flat__container {
    flex-direction: row;
    align-items: stretch;
  }
  .flat__img {
    max-width: 60%;
    padding: 74px 56px 37px 17px;
    border-radius: 16px;
  }
  .flat__info {
    max-width: 40%;
    padding-top: 30px;
  }
  .payment {
    padding: 50px 0;
  }
  .payment__title {
    font-size: 35px;
    margin-bottom: 40px;
  }
  .payment__desc {
    grid-template-columns: 0.7fr 1fr;
  }
  .payment__subtitle {
    font-size: 24px;
    margin-bottom: 20px;
  }
  .payment__table-row {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }
  .other {
    padding: 50px 0 100px;
  }
  .other__title {
    font-size: 35px;
    margin-bottom: 40px;
  }
  .other-item.swiper-slide {
    max-width: 345px;
  }
  .finish {
    padding: 45px 0 50px;
  }
  .finish__title {
    font-size: 35px;
    margin-bottom: 40px;
  }
  .finish__types {
    align-items: flex-start;
    flex-direction: row;
  }
  .finish__types-nav {
    width: 30%;
  }
  .finish__types-gallery {
    width: 70%;
  }
}
@media only screen and (min-width: 800px) {
  .footer__container {
    grid-template-columns: auto 1fr auto;
    -moz-column-gap: 52px;
    column-gap: 52px;
  }
  .footer__title {
    font-size: 46px;
    margin-bottom: 40px;
  }
  .footer__socials {
    grid-column: 3/4;
  }
  .footer__contacts {
    grid-column: 2/3;
    grid-row: 1/2;
  }
  .footer__contacts-title {
    max-width: 100%;
  }
  .footer__office {
    margin-bottom: 0;
  }
  .footer__bottom {
    margin-top: 60px;
    grid-column: span 3;
    grid-template-columns: auto 1fr auto;
    column-gap: 110px;
  }
  .hero__title {
    font-size: 70px;
    margin-bottom: 15px;
  }
  .architecture__list {
    flex-direction: row;
    gap: 14px;
  }
  .architecture__item {
    width: calc(33.333% - 18px);
  }
  .apartments__top {
    display: grid;
    grid-template-columns: 310px 1fr;
    grid-template-rows: auto auto;
    gap: 48px;
  }
  .apartments__desc {
    font-size: 13px;
    line-height: 1.23;
    max-width: 320px;
  }
  .apartments__details-item {
    line-height: 1.3;
  }
  .apartments__structure {
    grid-column: 2/3;
    grid-row: span 2;
    padding-top: 31px;
  }
}
@media only screen and (min-width: 1024px) {
  .header__logo {
    width: 133px;
  }
  .footer__container {
    -moz-column-gap: 110px;
    column-gap: 110px;
  }
  .footer__title,
  .about__title {
    font-size: 55px;
  }
  .about__title-bottom {
    padding-left: 500px;
  }
  .about__desc {
    padding-left: 500px;
    max-width: 1114px;
  }
  .about__gallery {
    overflow-x: visible;
    pointer-events: none;
    width: 100%;
    padding: 0;
    margin: 0;
  }
  .about__gallery {
    --gap: 25px;
  }
  .hero__title {
    font-size: 88px;
    margin-bottom: 20px;
  }
  .hero__subtitle {
    font-size: 28px;
    line-height: 1;
  }
  .details__slider-item.swiper-slide {
    height: 609px;
  }
  .details__slider-item-title {
    font-size: 55px;
  }
  .details__slider-item-desc {
    max-width: 420px;
  }
  .banner__wrapper {
    padding: 64px 30px 144px;
  }
  .banner__title {
    font-size: 44px;
  }
  .banner__btn {
    padding: 13px 18px;
  }
  .video__subtitle {
    font-size: 13px;
  }
  .video__title {
    font-size: 55px;
  }
  .video__media {
    --height: 600px;
  }
  .architecture__head {
    margin-bottom: 38px;
  }
  .architecture__head-row {
    gap: 64px;
  }
  .architecture__title {
    font-size: 55px;
  }
  .architecture__desc {
    max-width: 320px;
  }
  .architecture__list {
    gap: 18px;
  }
  .architecture__item-gallery .swiper-pagination {
    top: 0;
    height: 100%;
  }
  .architecture__item-gallery {
    border-radius: 9px;
  }
  .architecture__item-gallery-img {
    --height: 460px;
  }
  .apartments {
    padding-bottom: 0 !important;
  }
  .apartments__wrapper {
    padding-top: 0px;
  }
  .apartments__title {
    font-size: 55px;
    margin-bottom: 15px;
  }
  .apartments__img {
    display: block;
    width: 100%;
    height: auto;
    left: 0;
  }
.apartments__controls {
    display: none;
  }
  .apartments__svg {
    width: 100%;
    height: 100%;
    left: 0;
    pointer-events: all;
  }
  .apartments-popup__close {
    top: 20px;
    right: 20px;
    --size: 30px;
  }
  .apartments-popup__close:before {
    width: 24px;
    top: 14px;
    left: 3px;
  }
  .apartments-popup__close:after {
    width: 24px;
    top: 14px;
    left: 3px;
  }
  .apartments-popup__floor--mob {
    display: none;
  }
  .apartments-popup__floor--desk {
    display: flex;
  }
  .apartments-popup__bottom {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    background-color: #202020;
    color: var(--color-whte);
  }
  .apartments-popup__num {
    font-size: 29px;
  }
  .apartments-info {
    bottom: auto;
    position: fixed;
  }
  .apartments-info__floor {
    font-size: 12px;
  }
  .apartments-info__floor span {
    font-size: 45px;
  }
  .apartments-info__detail {
    font-size: 12px;
  }
  .apartments-info__detail span {
    font-size: 16px;
  }
  .apartments-info__btn {
    display: none;
  }
  .advantages__desc {
    max-width: 402px;
  }
  .advantages__item--1 .advantages__item-info,
  .advantages__item--2 .advantages__item-info,
  .advantages__item--3 .advantages__item-info,
  .advantages__item--4 .advantages__item-info {
    left: 100%;
  }
  .advantages__item--5 .advantages__item-info {
    left: 120%;
    right: auto;
    top: -100px;
  }
  .advantages__item--6 .advantages__item-info {
    left: 100%;
  }
  .location__head {
    max-width: 1040px;
    display: grid;
    grid-template-columns: 2fr 3fr;
  }
  .location__subtitle {
    font-size: 13px;
  }
  .location__title {
    margin-right: 0;
    font-size: 55px;
  }
  .location__inner {
    display: grid;
    grid-template-columns: 2fr 1.3fr;
    gap: 14px;
  }
  .location__img img {
    border-radius: 8px;
  }
  .location__main,
  .location__side {
    height: 493px;
  }
  .location__item--0 {
    bottom: 10%;
    left: 31%;
    width: 140px;
  }
  .location__item--0 {
    width: 160px;
  }
  .location__item--1 {
    width: 125px;
    left: 20%;
    top: 10%;
  }
  .location__item--2 {
    width: 120px;
    top: 51%;
    left: 35%;
  }
  .location__item--3 {
    width: 110px;
    bottom: 30%;
    left: 25%;
  }
  .location__item--4 {
    width: 100px;
    left: auto;
    right: 7%;
    top: 40%;
  }
  .location__item--5 {
    width: 110px;
    left: auto;
    right: 4%;
    top: 50%;
  }
  .location__item--6 {
    width: 144px;
    left: auto;
    right: 4%;
    bottom: 28%;
  }
  .location__item--7 {
    left: auto;
    right: 10%;
    bottom: 5%;
  }
  .payment__title {
    font-size: 40px;
    letter-spacing: -1.5px;
  }
  .payment__desc {
    gap: 20px 40px;
    margin-bottom: 44px;
  }
  .payment__table-row {
    grid-template-columns: 1fr 1fr 0.5fr;
  }
  .other__title,
  .finish__title {
    font-size: 40px;
    letter-spacing: -1.5px;
  }
  @layer component {
    .popup__content {
      padding: 64px 40px;
    }
  }
  @layer component {
    .popup__head {
      font-size: 55px;
    }
  }
  @layer component {
    .popup__form {
      max-width: 520px;
    }
  }
}
@media only screen and (min-width: 800px) and (min-width: 1024px) {
  .apartments__top {
    grid-template-columns: 400px 1fr;
    gap: 35px;
  }
}
@media only screen and (min-width: 1200px) {
  .hero {
    height: calc(100vh - 78px);
    padding: 75px 0;
  }
  .video__head {
    margin-bottom: 58px;
  }
  .video__subtitle {
    font-size: 20px;
  }
  .video__title {
    font-size: 88px;
  }
  .video__media {
    --height: 640px;
  }
  .video__btn {
    --size: 154px;
  }
  .architecture__head {
    margin-bottom: 60px;
  }
  .architecture__title {
    font-size: 88px;
  }
  .architecture__desc {
    font-size: 20px;
    max-width: 510px;
  }
  .architecture__item-desc {
    padding-top: 28px;
    font-size: 18px;
    line-height: 1.4;
  }
  .architecture__item-gallery-img {
    --height: 650px;
  }
}
@media only screen and (min-width: 1280px) {
  .footer {
    padding: 100px 0 50px;
  }
  .footer__container {
    columns-gap: 180px;
  }
  .footer__title {
    font-size: 88px;
    margin-bottom: 52px;
  }
  .footer__title span {
    font-size: 25px;
  }
  .footer__socials {
    gap: 14px;
  }
  .footer__socials-item {
    --size: 43px;
  }
  .footer__links {
    gap: 16px 50px;
    max-width: 255px;
  }
  .footer__link {
    font-size: 16px;
    line-height: 1.3;
  }
  .footer__contacts-title {
    font-size: 25px;
    margin-bottom: 20px;
  }
  .footer__contacts-link {
    font-size: 16px;
    line-height: 1.3;
  }
  .footer__contacts-link:not(:last-of-type) {
    margin-bottom: 5px;
  }
  .footer__office-title {
    font-size: 16px;
    line-height: 1.3;
    margin-bottom: 15px;
  }
  .footer__office-link {
    font-size: 16px;
    line-height: 1.3;
  }
  .footer__office-link:not(:last-of-type) {
    margin-bottom: 5px;
  }
  .footer__office-adress {
    font-size: 16px;
    line-height: 1.3;
    margin-top: 20px;
  }
  .footer__bottom {
    margin-top: 100px;
  }
  .footer__bottom-link {
    font-size: 16px;
  }
  .about__head {
    margin-bottom: 50px;
  }
  .about__subtitle {
    font-size: 12px;
    top: 17px;
  }
  .about__title {
    font-size: 88px;
    margin-bottom: 36px;
  }
  .about__desc p {
    font-size: 19px;
    padding-left: 25px;
  }
  .about__desc p:before {
    width: 11px;
    height: 11px;
    background-size: 11px;
    top: 5px;
  }
  .about__desc p + p {
    margin-top: 30px;
  }
  .about__contact {
    gap: 16px;
    top: 140px;
  }
  .about__contact span {
    font-size: 22px;
  }
  .about__contact:after {
    width: 10px;
    height: 20px;
  }
  .about__gallery-item {
    height: 90vh;
    padding: 12px 16px 24px;
  }
  .about__gallery-item-num {
    font-size: 12px;
    margin-bottom: 5px;
  }
  .about__gallery-item-title {
    font-size: 25px;
  }
  .about__gallery-item-info {
    max-width: 678px;
    padding: 0 16px;
    font-size: 19px;
  }
  .hero__title {
    font-size: 85px;
    margin-bottom: 10px;
    text-align: center;
    transform: translate(0px, 0px);
    font-weight: 400;
  }
  .hero__subtitle {
    font-size: 72px;
    text-align: center;
    font-family: HighSummit;
    transform: translate(0px, 0px);
    text-transform: none;
  }
  .hero__desc {
    font-size: 20px;
  }
  .hero__desc span {
    font-size: 26px;
    margin-top: 10px;
  }
  .details__slider-controls {
    margin-top: 32px;
    gap: 140px;
  }
  .details__slider-item.swiper-slide {
    height: calc(100vh - 52px);
    padding: 48px 0;
  }
  .details__slider-item-num {
    font-size: 19px;
    margin-bottom: 0;
  }
  .details__slider-item-title {
    font-size: 88px;
    line-height: 1.5;
    margin-bottom: 16px;
  }
  .details__slider-item-desc {
    font-size: 20px;
    max-width: 672px;
  }
  .banner__wrapper {
    padding: 153px 120px 174px;
  }
  .banner__info {
    max-width: 572px;
  }
  .banner__title {
    font-size: 70px;
    margin-bottom: 20px;
  }
  .banner__desc {
    max-width: 537px;
    font-size: 20px;
    margin-bottom: 50px;
  }
  .banner__btn {
    padding: 22px 30px;
    font-size: 16px;
  }
  .architecture__subtitle,
  .apartments__subtitle {
    font-size: 20px;
    margin-bottom: 9px;
  }
  .apartments__title {
    font-size: 88px;
  }
  .apartments__desc {
    font-size: 20px;
    max-width: 552px;
  }
  .apartments__details-title {
    font-size: 20px;
    margin-bottom: 15px;
  }
  .apartments__details-item {
    font-size: 20px;
  }
  .apartments__structure-item {
    padding-bottom: 20px;
  }
  .apartments__structure-item:first-of-type .apartments__structure-item-num {
    font-size: 70px;
  }
  .apartments__structure-item:first-of-type {
    padding-bottom: 38px;
  }
  .apartments__structure-item-title {
    font-size: 20px;
    padding-top: 10px;
  }
  .apartments__structure-item-num {
    font-size: 64px;
    line-height: 1.3;
    width: 200px;
    gap: 10px;
  }
  .apartments__structure-item-num span {
    font-size: 12px;
    padding-bottom: 18px;
  }
}
@media only screen and (min-width: 800px) and (min-width: 1280px) {
  .apartments__top {
    grid-template-columns: 650px 1fr;
    gap: 74px;
  }
}
@media only screen and (min-width: 1359px) {
  .header__menu {
    margin: 0 40px 0 auto;
  }
  .header__contacts {
    margin-left: 0;
  }
  .header__burger {
    display: none;
  }
  .menu {
    display: block;
    position: static;
    width: auto;
    height: auto;
    padding: 0;
    transform: translate(0);
  }
  .menu__list {
    flex-direction: row;
    align-items: center;
  }
  .menu__lang.header__lang,
  .menu__btn {
    display: none;
  }
}
@media only screen and (min-width: 1400px) {
  .payment__desc {
    gap: 20px 125px;
  }
}
@media only screen and (min-width: 95.99875em) {
  .header {
    display: block;
  }
  .header__menu {
    margin-right: 125px;
  }
  .menu__list {
    gap: 40px;
  }
}
@media only screen and (min-width: 1600px) {
  .header__logo {
    width: 165px;
  }
  .about__title-bottom {
    padding-left: 800px;
  }
  .about__desc {
    max-width: 100%;
    padding-left: 800px;
    padding-right: 100px;
  }
  .video__media {
    --height: 800px;
  }
  .architecture__item-head:after {
    width: 3px;
  }
  .advantages__head {
    padding: 60px 20px 0;
  }
  .advantages__title {
    font-size: 88px;
    margin-bottom: 14px;
  }
  .advantages__desc {
    font-size: 19px;
    max-width: 620px;
  }
  .advantages__item-dot {
    --size: 80px;
  }
  .advantages__item-dot:after {
    --size: 58px;
  }
  .advantages__item-dot span {
    --size: 36px;
  }
  .advantages__item-info {
    width: 430px;
  }
  .advantages__item-num {
    font-size: 12px;
  }
  .advantages__item-title {
    font-size: 20px;
  }
  .advantages__item-desc {
    font-size: 16px;
  }
  .advantages__item--1 .advantages__item-info {
    top: -156px;
    left: auto;
    right: 40%;
  }
  .advantages__item--2 .advantages__item-info {
    top: -137px;
  }
  .advantages__item--3 .advantages__item-info {
    top: -170px;
  }
  .advantages__item--5 .advantages__item-info {
    top: -150px;
  }
  .advantages__item--5 .advantages__item-info {
    top: -170px;
    left: 100%;
  }
  .location__head {
    max-width: 100%;
    padding-right: 50px;
    display: flex;
    align-items: flex-start;
    margin-bottom: 43px;
  }
  .location__top {
    margin-right: 0;
  }
  .location__subtitle {
    font-size: 20px;
    margin-bottom: 8px;
  }
  .location__title {
    font-size: 88px;
    margin-right: 324px;
  }
  .location__info {
    padding-top: 33px;
  }
  .location__adress-title {
    font-size: 20px;
  }
  .location__adress-title:before {
    width: 11px;
    height: 15px;
    background-size: 11px;
    left: -23px;
    top: 7px;
  }
  .location__structure {
    font-size: 20px;
    gap: 15px;
  }
  .location__main,
  .location__side {
    height: 785px;
  }
  .location__item--0:after {
    --size: 20px;
    --pos-negative: -20px;
  }
  .location__item--0:before {
    --size: 40px;
    --pos-negative: -30px;
  }
  .location__item--0 {
    width: 240px;
    bottom: 10%;
    left: 31%;
  }
  .location__item--1 {
    width: 300px;
    left: 20%;
    top: 10%;
  }
  .location__item--2 {
    width: 190px;
    top: 51%;
    left: 30%;
  }
  .location__item--3 {
    width: 195px;
    bottom: 30%;
    left: 20%;
  }
  .location__item--4 {
    width: 200px;
    right: 4%;
    top: 40%;
  }
  .location__item--5 {
    width: 200px;
    right: 4%;
    top: 50%;
  }
  .location__item--6 {
    width: 230px;
    right: 4%;
    bottom: 28%;
  }
  .location__item--7 {
    width: 230px;
    right: 10%;
    bottom: 5%;
  }
}
@media only screen and (min-width: 1919px) {
  .location__head {
    padding-right: 250px;
  }
  .location__item--0 {
    width: 300px;
  }
}
@media (max-width: 61.99875em) {
  :root {
    --spacing: 80px;
  }
  @layer base {
    [class*="__container"] {
      --pad: 16px;
    }
  }
}
@media (max-width: 47.99875em) {
  :root {
    --spacing: 60px;
  }
}
@media (any-hover: hover) {
  .header__lang-btn:hover {
    opacity: 1;
  }
  .footer__socials-item:hover {
    transform: scale(1.1);
  }
  .footer__contacts-link:hover,
  .footer__office-link:hover,
  .footer__bottom-link:hover {
    opacity: 0.4;
  }
  @layer component {
    .btn:hover {
      background-color: #15546d;
    }
  }
  .about__contact:hover:after {
    transform: translate(5px);
  }
  .link:hover:before {
    transform-origin: 0% 50%;
    transform: scaleZ(1);
  }
}
@media (max-width: 1200px) {
  .section {
    padding: 110px 0;
  }
}
@media (max-width: 767px) {
  .section {
    padding: 90px 0;
  }
}
@media (max-width: 560px) {
  .section {
    padding: 20px 0;
  }
}
.tippy-box[data-animation="fade"][data-state="hidden"] {
  opacity: 0;
}
[data-tippy-root] {
  max-width: calc(100vw - 10px);
}
.tippy-box {
  position: relative;
  background-color: #333;
  color: #fff;
  border-radius: 4px;
  font-size: 14px;
  line-height: 1.4;
  outline: 0;
  transition-property: transform, visibility, opacity;
}
.tippy-box[data-placement^="top"] > .tippy-arrow {
  bottom: 0;
}
.tippy-box[data-placement^="top"] > .tippy-arrow:before {
  bottom: -7px;
  left: 0;
  border-width: 8px 8px 0;
  border-top-color: initial;
  transform-origin: center top;
}
.tippy-box[data-placement^="bottom"] > .tippy-arrow {
  top: 0;
}
.tippy-box[data-placement^="bottom"] > .tippy-arrow:before {
  top: -5px;
  left: 0;
  border-width: 0 8px 8px;
  border-bottom-color: initial;
  transform-origin: center bottom;
}
.tippy-box[data-placement^="left"] > .tippy-arrow {
  right: 0;
}
.tippy-box[data-placement^="left"] > .tippy-arrow:before {
  border-width: 8px 0 8px 8px;
  border-left-color: initial;
  right: -7px;
  transform-origin: center left;
}
.tippy-box[data-placement^="right"] > .tippy-arrow {
  left: 0;
}
.tippy-box[data-placement^="right"] > .tippy-arrow:before {
  left: -7px;
  border-width: 8px 8px 8px 0;
  border-right-color: initial;
  transform-origin: center right;
}
.tippy-box[data-inertia][data-state="visible"] {
  transition-timing-function: cubic-bezier(0.54, 1.5, 0.38, 1.11);
}
.tippy-arrow {
  width: 16px;
  height: 16px;
  color: #333;
}
.tippy-arrow:before {
  content: "";
  position: absolute;
  border-color: transparent;
  border-style: solid;
}
.tippy-content {
  position: relative;
  padding: 5px 9px;
  z-index: 1;
}

a.menu__link.link {
  font-size: 19px;
}

a.header__btn.btn {
  text-align: center;
  background-color: #5fabca !important;
  color: var(--color-whte);
  transition: all 0.3s ease 0s;
  text-transform: uppercase;
  display: block;
  /* padding: 2px 20px; */
}

a.mobile__header__btn {
  text-align: center;
  background-color: #5fabca !important;
  color: var(--color-whte);
  transition: all 0.3s ease 0s;
  text-transform: uppercase;
  display: block;
  padding: 14px 14px;
  border-radius: 5px;
}

.mobile__btn__header {
    bottom: -10%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.bluewaters__overley {
	overflow-x: auto;
    overflow-y: hidden;
    height: 100%;
    position: relative;
    -ms-overflow-style: none; /* Для Internet Explorer и Edge */
	scrollbar-width: none; /* Для Firefox */
	padding-bottom: 16px;
}

.bluewaters__overley::-webkit-scrollbar {
  display: none; /* Для Webkit-браузеров (Chrome, Safari) */
}

.popup__form-btn {
  margin-top: 35px;
  background-color: #5fabca !important;
  color: var(--color-whte);
}
.page {
  max-width: 100vw;
  overflow: hidden;
}
button.apartments__controls-btn.apartments__controls-next.js-apartments-next {
    transform: rotate(180deg);
}
button.apartments__controls-btn.apartments__controls-prev.js-apartments-prev {
    transform: rotate(180deg);
}
@media only screen and (max-width: 768px) {
	.aapartments-popup__main {
		transform: rotate(90deg);
	}
}

.header__burger {
    position: relative;
    width: 30px;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 0;
    margin: 20px;
    z-index: 1000;
}

span.span_child {
    width: 25px !important;
}
.header__burger span {
    display: block;
    width: 35px;
    height: 2px;
    background: #333;
    transition: 0.3s;
}

/* Стили для открытого состояния гамбургера */
.header__burger.active span:nth-child(1) {
    transform: rotate(45deg);
    position: absolute;
    top: 10px;
}
.header__burger.active span:nth-child(2) {
    transform: rotate(-45deg);
    position: absolute;
    top: 11px;
    width: 35px !important;
}

.header__burger.active span:nth-child(3) {
    transform: rotate(-45deg);
    position: absolute;
    top: 10px;
}

/* Основные стили для меню */
.menu_mobile {
  position: fixed;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  height: 120vh;
  background-color: var(--color-whte);
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 40px 24px;
  z-index: 98;
  transform: translate(-100%);
  transition: 0.25s ease-in-out;

}

.header__burger.active.menu_mobile {
	transform: translate(100%)!important;
}

/* Показываем меню при активации кнопки гамбургера */
.menu_mobile.active {
    display: block;
    transform: translateX(0);
}

nav.menu__body_mobile {
    background: #fff;
    width: 100%;
}

.menu__list_mobile {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
}

a.menu__link {
    font-size: 22px;
    font-weight: 400;
    line-height: 40px;
}

.menu__item_mobile {
    margin: 22px 0;
}

.menu__link_mobile {
    text-decoration: none;
    color: #333;
    font-size: 16px;
    transition: color 0.3s;
}

.menu__link_mobile:hover {
    color: #007bff;
}

.hamburger__menu__mobile {
	display: none;
}

@media only screen and (max-width: 1359px){
	.hamburger__menu__mobile {
		display: block;
	}
	li.menu__item {
    	padding-bottom: 24px;
	}
	.menu__list {
		display:none;
	}
}

@media only screen and (max-width: 967px){
	.hamburger__menu__mobile {
		display: block;
		width: 14%;
	}
	
	.header__menu.menu {
		display: none;
	}
	.header__contacts {
		display: none;
	}
	li.menu__item {
    	padding: 0px 0 20px 0;
	}
}

.hero__tower {
    text-align: center;
    transform: translate(0px, 0px);
    font-size: 24px;
    font-weight: 300;
}

a.red__btn.btn {
    text-align: center;
    background-color: #5fabca !important;
    color: var(--color-whte);
    transition: all 0.3s ease 0s;
    text-transform: uppercase;
}
.footer__copyright {
	text-align: right;
}

.footer__bottom__dop {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 100px;
}

.intersteller__padding {
	padding-top: 100px;
}

.header__logo__mobile img {
	width: 50%;
}
.horizontal-scroll-container {
	display: none;
}

.mobile__version__btn {
	display: none;
}

.mobile__btn__version {
	display: none;
}

.iti {
    --iti-path-flags-1x: url('../img/flags.webp');
    --iti-path-flags-2x: url('../img/flags@2x.webp');
    --iti-path-globe-1x: url('../img/globe.webp');
    --iti-path-globe-2x: url('../img/globe@2x.webp');
}
