@font-face {
  font-family: "Geist";
  src: url("fonts/Geist/Geist-VariableFont_wght.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
}

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}

body {
  font-family: "Geist", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.5;
  color: #000;
  background-color: #fff;
}

ul, ol {
  list-style: none;
}

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

img {
  display: block;
  max-width: 100%;
  height: auto;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

input, textarea, select {
  font-family: inherit;
  font-size: inherit;
  border: none;
  outline: none;
  border-radius: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
}

input[type=search] {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  border-radius: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: normal;
  font-size: inherit;
}

h1 {
  font-family: "Geist", sans-serif;
  font-weight: 500;
  font-size: 60px;
  line-height: 100%;
  letter-spacing: -0.03em;
}

h2 {
  font-family: "Geist", sans-serif;
  font-weight: 500;
  font-size: 56px;
  line-height: 100%;
  letter-spacing: -0.03em;
  color: rgb(27, 54, 93);
}

p {
  font-family: "Geist", sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 140%;
  letter-spacing: -0.02em;
}

.p-secondary {
  font-family: "Geist", sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 120%;
  letter-spacing: -0.03em;
}

.btn-blue {
  max-width: 290.5px;
  height: 61px;
  border-radius: 4px;
  padding: 20px 35px;
  background-color: rgb(27, 54, 93);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: "Geist", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 120%;
  letter-spacing: -0.03em;
  overflow: hidden;
  cursor: pointer;
  --btn-h: 61px;
  --progress: 0px;
  --btn-text-1: #fff;
  --btn-text-2: #dbe1e9;
  color: transparent;
  text-shadow: 0 calc(var(--progress) * -1) var(--btn-text-1), 0 calc(var(--btn-h) - var(--progress)) var(--btn-text-2);
  transition: text-shadow 220ms ease, transform 220ms ease, box-shadow 220ms ease, filter 220ms ease;
}
.btn-blue:hover {
  --progress: var(--btn-h);
  transform: translateY(-1px);
  filter: brightness(1.05);
}
.btn-blue:active {
  transform: translateY(0);
  filter: brightness(0.98);
  box-shadow: none;
}

.btn-blue-large {
  max-width: 448px;
  height: 76px;
  border-radius: 4px;
  padding: 20px 35px;
  background-color: rgb(27, 54, 93);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: "Geist", sans-serif;
  cursor: pointer;
  overflow: hidden;
  --btn-h: 76px;
  --progress: 0px;
  --btn-text-1: #fff;
  --btn-text-2: #dbe1e9;
  color: transparent;
  text-shadow: 0 calc(var(--progress) * -1) var(--btn-text-1), 0 calc(var(--btn-h) - var(--progress)) var(--btn-text-2);
  transition: text-shadow 220ms ease, transform 220ms ease, box-shadow 220ms ease, filter 220ms ease;
  font-size: 16px;
  font-weight: 600;
}
.btn-blue-large:hover {
  --progress: var(--btn-h);
  transform: translateY(-1px);
  filter: brightness(1.05);
}
.btn-blue-large:active {
  transform: translateY(0);
  filter: brightness(0.98);
  box-shadow: none;
}

.btn-blue-small {
  max-width: 251px;
  width: 100%;
  height: 51px;
  border-radius: 4px;
  background-color: rgb(27, 54, 93);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: "Geist", sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 120%;
  letter-spacing: -0.03em;
  cursor: pointer;
  --btn-h: 51px;
  --progress: 0px;
  --btn-text-1: #fff;
  --btn-text-2: #dbe1e9;
  color: transparent;
  text-shadow: 0 calc(var(--progress) * -1) var(--btn-text-1), 0 calc(var(--btn-h) - var(--progress)) var(--btn-text-2);
  transition: text-shadow 220ms ease, transform 220ms ease, box-shadow 220ms ease, filter 220ms ease;
}
.btn-blue-small:hover {
  --progress: var(--btn-h);
  transform: translateY(-1px);
  filter: brightness(1.05);
}
.btn-blue-small:active {
  transform: translateY(0);
  filter: brightness(0.98);
  box-shadow: none;
}

.btn-red {
  max-width: 290.5px;
  height: 61px;
  border-radius: 4px;
  padding: 20px 35px;
  background-color: rgb(255, 88, 93);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: "Geist", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 120%;
  letter-spacing: -0.03em;
  cursor: pointer;
  overflow: hidden;
  --btn-h: 61px;
  --progress: 0px;
  --btn-text-1: #fff;
  --btn-text-2: #dbe1e9;
  color: transparent;
  text-shadow: 0 calc(var(--progress) * -1) var(--btn-text-1), 0 calc(var(--btn-h) - var(--progress)) var(--btn-text-2);
  transition: text-shadow 220ms ease, transform 220ms ease, box-shadow 220ms ease, filter 220ms ease;
}
.btn-red:hover {
  --progress: var(--btn-h);
  transform: translateY(-1px);
  filter: brightness(1.05);
}
.btn-red:active {
  transform: translateY(0);
  filter: brightness(0.98);
  box-shadow: none;
}

.btn-red-large {
  max-width: 448px;
  height: 76px;
  border-radius: 4px;
  padding: 20px 35px;
  background-color: rgb(255, 88, 93);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  overflow: hidden;
  font-family: "Geist", sans-serif;
  cursor: pointer;
  --btn-h: 76px;
  --progress: 0px;
  --btn-text-1: #fff;
  --btn-text-2: #dbe1e9;
  color: transparent;
  text-shadow: 0 calc(var(--progress) * -1) var(--btn-text-1), 0 calc(var(--btn-h) - var(--progress)) var(--btn-text-2);
  transition: text-shadow 220ms ease, transform 220ms ease, box-shadow 220ms ease, filter 220ms ease;
}
.btn-red-large:hover {
  --progress: var(--btn-h);
  transform: translateY(-1px);
  filter: brightness(1.05);
}
.btn-red-large:active {
  transform: translateY(0);
  filter: brightness(0.98);
  box-shadow: none;
}

.btn-slider {
  width: 64px;
  height: 64px;
  border-radius: 4px;
  background-color: rgb(255, 88, 93);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Geist", sans-serif;
  cursor: pointer;
  transition: opacity 0.3s ease;
}
.btn-slider:hover {
  opacity: 0.9;
}

.btn-icon {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 24px;
  background-color: transparent;
  border: 1px solid rgba(27, 54, 93, 0.6);
  border-radius: 4px;
  font-weight: 600;
  font-size: 16px;
  line-height: 120%;
  letter-spacing: -0.03em;
  color: rgb(27, 54, 93);
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
}
.btn-icon__icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgb(255, 88, 93);
  border-radius: 4px;
}
.btn-icon__icon img {
  width: 24px;
  height: 24px;
}
.btn-icon:hover {
  background-color: rgb(255, 88, 93);
  color: #fff;
  border-color: rgb(255, 88, 93);
}

.container {
  max-width: 1454px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
  overflow: visible;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

header, footer, main {
  display: block;
}

main {
  overflow-x: clip;
}

.header {
  position: absolute;
  top: 32px;
  left: 0;
  right: 0;
  z-index: 100;
  max-width: 1454px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
  transition: transform 0.3s ease, position 0.3s ease, top 0.3s ease;
}
.header p, .header a {
  white-space: nowrap;
}
.header--fixed {
  position: fixed;
  top: 15px;
  transform: translateY(0);
  animation: headerSlideDown 0.3s ease;
}
.header__logo-mobile {
  display: none;
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4px;
}
.header__block {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  background-color: #fff;
  height: 60px;
  min-width: 69px;
  border-radius: 4px;
  padding: 10px 15px;
}
.header__block-left {
  padding-left: 20px;
  padding-right: 20px;
  max-width: 877px;
  width: 100%;
}
.header--no-lang .header__block-left {
  flex: 1;
  max-width: none;
}
.header--no-lang .header__block-left .header__nav {
  justify-content: flex-end;
}
.header__block-contact {
  max-width: 247px;
  width: 100%;
}
.header__block-call {
  max-width: 219px;
  width: 100%;
  cursor: pointer;
}
.header__logo {
  max-width: 217.6px;
  height: 40px;
  flex-shrink: 0;
}
.header__logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.header__nav {
  flex: 1;
  display: flex;
  justify-content: center;
}
.header__text-call {
  color: rgb(255, 88, 93);
  font-weight: 500;
}
.header__menu {
  display: flex;
  align-items: center;
  gap: 15px;
  list-style: none;
}
.header__menu li {
  display: flex;
  align-items: center;
}
.header__menu a {
  font-family: "Geist", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  letter-spacing: -0.03em;
  color: rgb(27, 54, 93);
  --menu-h: 20px;
  --progress: 0px;
  --menu-text-1: rgb(27, 54, 93);
  --menu-text-2: rgba(27, 54, 93, 0.65);
  color: transparent;
  overflow: hidden;
  display: inline-block;
  text-shadow: 0 calc(var(--progress) * -1) var(--menu-text-1), 0 calc(var(--menu-h) - var(--progress)) var(--menu-text-2);
  transition: text-shadow 220ms ease, transform 220ms ease;
}
.header__menu a:hover {
  --progress: var(--menu-h);
  transform: translateY(-1px);
}
.header__menu ul {
  display: flex;
  align-items: center;
  gap: 15px;
  list-style: none;
}
.header__menu ul a {
  font-family: "Geist", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  letter-spacing: -0.03em;
  color: rgb(27, 54, 93);
  --menu-h: 20px;
  --progress: 0px;
  --menu-text-1: rgb(27, 54, 93);
  --menu-text-2: rgba(27, 54, 93, 0.65);
  color: transparent;
  overflow: hidden;
  display: inline-block;
  text-shadow: 0 calc(var(--progress) * -1) var(--menu-text-1), 0 calc(var(--menu-h) - var(--progress)) var(--menu-text-2);
  transition: text-shadow 220ms ease, transform 220ms ease;
}
.header__menu ul a:hover {
  --progress: var(--menu-h);
  transform: translateY(-1px);
}
.header__contact {
  display: flex;
  align-items: center;
  gap: 10px;
}
.header__phone {
  font-family: "Geist", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 120%;
  letter-spacing: -0.03em;
  color: rgb(27, 54, 93);
  text-decoration: none;
  transition: opacity 0.3s ease;
}
.header__phone:hover {
  opacity: 0.7;
}
.header__messengers {
  display: flex;
  align-items: center;
  gap: 2px;
}
.header__messenger-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  transition: opacity 0.3s ease;
}
.header__messenger-icon:hover {
  opacity: 0.7;
}
.header__messenger-icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.header__call-btn {
  height: 40px;
  width: 40px;
  min-width: 40px;
  border-radius: 4px;
  background-color: rgb(255, 88, 93);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Geist", sans-serif;
  cursor: pointer;
  transition: opacity 0.3s ease;
}
.header__call-btn:hover {
  opacity: 0.9;
}
.header__call-btn img {
  width: 24px;
  height: 24px;
  -o-object-fit: contain;
     object-fit: contain;
}
.header__lang-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  background-color: #fff;
  color: rgb(27, 54, 93);
  font-family: "Geist", sans-serif;
  font-weight: 500;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.header__lang-btn svg {
  width: 8px;
  height: 5px;
  transition: all 0.3s ease;
}
.header__block-lang {
  position: relative;
}
.header__lang {
  position: relative;
}
.header__lang-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Geist", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 120%;
  letter-spacing: -0.03em;
  color: rgb(27, 54, 93);
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
}
.header__lang-code {
  text-transform: uppercase;
}
.header__lang-dropdown {
  position: absolute;
  top: 96%;
  right: -15px;
  margin-top: 8px;
  padding: 8px 0;
  background-color: #fff;
  border-radius: 4px;
  min-width: 69px;
  display: none;
  z-index: 200;
}
.header__lang-item:not(:last-child) {
  margin-bottom: 4px;
}
.header__lang-link {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px 12px;
  font-size: 14px;
  color: rgb(27, 54, 93);
}
.header__lang-link:hover {
  background-color: rgba(27, 54, 93, 0.06);
}
.header__lang-item--current .header__lang-link {
  font-weight: 600;
}
.header__lang--open .header__lang-dropdown {
  display: block;
}
.header__lang--open .header__lang-btn svg {
  transform: rotate(180deg);
}

@keyframes headerSlideDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}
@keyframes lhFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes lhSlideInRight {
  from {
    opacity: 0;
    transform: translateX(-16px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes lhSlideInUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes lhWordUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (prefers-reduced-motion: reduce) {
  .hero__text {
    opacity: 1 !important;
    animation: none !important;
  }
}
.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: flex-end;
  --lh-title-delay: 300ms;
  --lh-word-stagger: 120ms;
  --lh-word-dur: 520ms;
  --lh-text-dur: 700ms;
  --lh-word-count: 1;
  --lh-after-title: calc(var(--lh-title-delay) + (var(--lh-word-count) - 1) * var(--lh-word-stagger) + var(--lh-word-dur));
  --lh-after-text: calc(var(--lh-after-title) + var(--lh-text-dur));
}
.hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.hero__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.hero__bg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 60%);
}
.hero__bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.hero__bg-video video,
.hero__bg-video iframe {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.hero__bg-video {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.hero__bg-video__el {
  opacity: 0;
  transition: opacity 0.4s ease;
}
.hero__bg-video__el.is-playing {
  opacity: 1;
}
.hero__bg-video--desktop {
  display: block;
}
.hero__bg-video--mobile {
  display: none;
}
.hero__bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 0;
}
.hero__bg-image--desktop {
  display: block;
}
.hero__bg-image--mobile {
  display: none;
}
.hero__text--mobile {
  display: none;
}
.hero__overlay-bottom {
  width: 100%;
  height: 380px;
  padding-top: 80px;
  position: relative;
}
.hero__overlay-bottom::before {
  content: "";
  position: absolute;
  top: 50px;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.4);
  width: 100%;
  height: 1px;
}
.hero__content {
  display: flex;
  justify-content: space-between;
  gap: 60px;
  width: 100%;
  padding-bottom: 120px;
  height: 350px;
}
.hero__left {
  display: flex;
  flex-direction: column;
  gap: 32px;
  justify-content: space-between;
  height: 100%;
}
.hero__title {
  font-family: "Geist", sans-serif;
  font-weight: 500;
  font-size: 60px;
  line-height: 100%;
  letter-spacing: -0.03em;
  color: #fff;
  max-width: 600px;
}
.hero__title .lh-word {
  display: inline-block;
  opacity: 0;
  transform: translateY(18px);
  will-change: opacity, transform;
}
.hero__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-width: 414px;
}
.hero__tag {
  display: inline-block;
  padding: 8px;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  font-family: "Geist", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 120%;
  color: rgb(27, 54, 93);
  opacity: 0;
  transform: translateX(-16px);
}
.hero__right {
  display: flex;
  flex-direction: column;
  gap: 32px;
  height: 100%;
  justify-content: space-between;
}
.hero__right p {
  font-weight: 400;
  font-size: 20px;
  line-height: 120%;
  letter-spacing: -0.03em;
  color: #fff;
  max-width: 515px;
  text-align: left;
}
.hero__text {
  font-family: "Geist", sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 120%;
  letter-spacing: -0.03em;
  color: #fff;
  max-width: 100%;
  text-align: left;
  opacity: 0;
  will-change: opacity;
}
.hero__text p {
  font-weight: 400;
  font-size: 20px;
  line-height: 120%;
  letter-spacing: -0.03em;
  color: #fff;
  text-align: left;
}
.hero__buttons {
  display: flex;
  gap: 16px;
  align-items: center;
}
.hero__buttons button, .hero__buttons a {
  width: 290px;
}
.hero__buttons button, .hero__buttons a {
  opacity: 0;
  transform: translateY(16px);
}
.hero__buttons button:nth-child(1), .hero__buttons a:nth-child(1) {
  animation-delay: var(--lh-after-text);
}
.hero__buttons button:nth-child(2), .hero__buttons a:nth-child(2) {
  animation-delay: calc(var(--lh-after-text) + 120ms);
}

.hero__tags .hero__tag:nth-child(1) {
  animation-delay: calc(var(--lh-after-text) + 0ms);
}

.hero__tags .hero__tag:nth-child(2) {
  animation-delay: calc(var(--lh-after-text) + 120ms);
}

.hero__tags .hero__tag:nth-child(3) {
  animation-delay: calc(var(--lh-after-text) + 240ms);
}

.hero__tags .hero__tag:nth-child(4) {
  animation-delay: calc(var(--lh-after-text) + 360ms);
}

.hero__tags .hero__tag:nth-child(5) {
  animation-delay: calc(var(--lh-after-text) + 480ms);
}

.hero__tags .hero__tag:nth-child(6) {
  animation-delay: calc(var(--lh-after-text) + 600ms);
}

.hero__tags .hero__tag:nth-child(7) {
  animation-delay: calc(var(--lh-after-text) + 720ms);
}

.hero__tags .hero__tag:nth-child(8) {
  animation-delay: calc(var(--lh-after-text) + 840ms);
}

.lh-anim .hero__title .lh-word {
  animation: lhWordUp var(--lh-word-dur) ease forwards;
  animation-delay: calc(var(--lh-title-delay) + var(--lh-word-index, 0) * var(--lh-word-stagger));
}
.lh-anim .hero__text {
  animation: lhFadeIn var(--lh-text-dur) ease var(--lh-after-title) forwards;
}
.lh-anim .hero__tag {
  animation: lhSlideInRight 520ms ease forwards;
}
.lh-anim .hero__buttons button,
.lh-anim .hero__buttons a {
  animation: lhSlideInUp 520ms ease forwards;
}

@media (prefers-reduced-motion: reduce) {
  .hero__tags .hero__tag,
  .hero__buttons button,
  .hero__buttons a {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
  }
  .hero__title .lh-word {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
  }
}
.features {
  background-color: rgb(219, 225, 233);
  padding: 120px 0 0;
  position: relative;
  z-index: 2;
}
.features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.features__item {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 600ms ease, transform 600ms ease;
  will-change: opacity, transform;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border-left: 1px solid rgba(37, 37, 37, 0.4);
}
.features__item p {
  text-align: left;
  font-weight: 500;
  color: rgba(37, 37, 37, 0.8);
  max-width: 356px;
  margin-left: auto;
  margin-right: auto;
}
.features__grid.is-inview .features__item {
  opacity: 1;
  transform: translateY(0);
}
.features__grid.is-inview .features__item:nth-child(1) {
  transition-delay: 0ms;
}
.features__grid.is-inview .features__item:nth-child(2) {
  transition-delay: 120ms;
}
.features__grid.is-inview .features__item:nth-child(3) {
  transition-delay: 240ms;
}
.features__grid.is-inview .features__item:nth-child(4) {
  transition-delay: 360ms;
}
.features__grid.is-inview .features__item:nth-child(5) {
  transition-delay: 480ms;
}
.features__grid.is-inview .features__item:nth-child(6) {
  transition-delay: 600ms;
}
.features__grid.is-inview .features__item:nth-child(7) {
  transition-delay: 720ms;
}
.features__grid.is-inview .features__item:nth-child(8) {
  transition-delay: 840ms;
}
.features__grid.is-inview .features__item:nth-child(9) {
  transition-delay: 960ms;
}
.features__grid.is-inview .features__item:nth-child(10) {
  transition-delay: 1080ms;
}
.features__grid.is-inview .features__item:nth-child(11) {
  transition-delay: 1200ms;
}
.features__grid.is-inview .features__item:nth-child(12) {
  transition-delay: 1320ms;
}
.features__item-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
}
.features__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.features__icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.features__title {
  font-family: "Geist", sans-serif;
  font-weight: 600;
  font-size: 32px;
  line-height: 100%;
  letter-spacing: -0.03em;
  color: rgb(27, 54, 93);
  max-width: 248px;
  text-align: left;
}
.features__image {
  max-width: 356px;
  width: 100%;
  overflow: hidden;
  margin-bottom: 32px;
  flex-shrink: 0;
  border-radius: 240px;
  max-height: 245px;
}
.features__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.features__image--video {
  border-radius: 240px;
  max-height: 245px;
  position: relative;
  padding-bottom: 245px;
  height: 0;
  overflow: hidden;
}
.features__image--video video {
  pointer-events: none;
}
.features__image--video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 240px;
}
.features__text {
  text-align: left;
  font-weight: 500;
  color: rgba(37, 37, 37, 0.8);
  max-width: 356px;
  margin-left: auto;
  margin-right: auto;
}
.features__bottom {
  display: flex;
  justify-content: space-between;
  gap: 60px;
  margin-top: 80px;
  padding-top: 80px;
}
.features__bottom-left {
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: 100%;
}
.features__bottom-title {
  color: rgb(27, 54, 93);
}
.features__bottom-right {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 584px;
  width: 100%;
}
.features__bottom-right p {
  font-family: "Geist", sans-serif;
  font-weight: 500;
  font-size: 24px;
  line-height: 120%;
  letter-spacing: -0.03em;
  color: rgb(27, 54, 93);
  margin-bottom: 15px;
}
.features__bottom-text {
  font-family: "Geist", sans-serif;
  font-weight: 500;
  font-size: 24px;
  line-height: 120%;
  letter-spacing: -0.03em;
  color: rgb(27, 54, 93);
}

.location-form {
  max-width: 584px;
  width: 100%;
}
.location-form__label {
  font-family: "Geist", sans-serif;
  font-weight: 500;
  font-size: 12px;
  color: rgb(27, 54, 93);
  letter-spacing: -0.03em;
}
.location-form__wrapper {
  background-color: #fff;
  border-radius: 8px;
  padding: 16px;
}
.location-form__input-wrapper {
  display: flex;
  gap: 12px;
  justify-content: space-between;
}
.location-form__input-wrapper input {
  width: 100%;
  border-bottom: 1px solid rgb(37, 37, 37);
  font-family: "Geist", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 120%;
  letter-spacing: -0.03em;
  color: rgb(27, 54, 93);
}
.location-form__input {
  width: 100%;
  border-bottom: 1px solid rgb(37, 37, 37);
  font-family: "Geist", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 120%;
  letter-spacing: -0.03em;
  color: rgb(27, 54, 93);
  display: flex;
  align-items: center;
  padding: 8px 0;
}

.location-form--mobile {
  display: none;
}

.sec-location {
  position: relative;
  background-color: rgb(219, 225, 233);
}

.location {
  position: relative;
  width: 100%;
  --lh-vw: max(1vw, 12px);
  height: clamp(555px, 50.0346981263vw, 1251px);
  padding: clamp(2.8645833333rem, 4.1666666667vw, 5rem) 0 clamp(3.5807291667rem, 5.2083333333vw, 6.25rem);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  background-color: rgb(27, 54, 93);
  scrollbar-width: none;
  -ms-overflow-style: none;
  background-color: rgb(219, 225, 233);
}
.location::-webkit-scrollbar {
  display: none;
}
.location__slider {
  padding-left: 14px !important;
  padding-right: 14px !important;
  min-width: 1200px;
}
.location .points {
  width: 100%;
  height: 100%;
  position: relative;
}
.location .container .swiper {
  overflow: initial;
}
.location .container_map {
  position: relative;
  overflow-x: auto;
  height: 100%;
}
.location__bg-wrapper {
  position: absolute;
  width: 100%;
  height: 100%;
  inset: 0;
  min-width: 1200px;
}
.location__bg {
  left: 0;
  position: absolute;
  top: 0;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: 50% 67%;
     object-position: 50% 67%;
  width: 100%;
  display: block;
}
.location .points__item-0 {
  width: clamp(3.245rem, 4.72 * var(--lh-vw, 1vw), 7.375rem);
  position: absolute;
  top: 21.222685%;
  left: clamp(8.8rem, 17.1 * var(--lh-vw), 28rem);
}
.location .points__item {
  width: clamp(1.54rem, 2.24 * var(--lh-vw, 1vw), 3.5rem);
  height: clamp(1.54rem, 2.24 * var(--lh-vw, 1vw), 3.5rem);
  background-color: rgb(27, 54, 93);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 2;
}
.location .points__item.active {
  background-color: rgb(255, 88, 93);
  transition: all 0.3s ease;
}
.location .points__item img {
  width: clamp(0.715rem, 1.04 * var(--lh-vw, 1vw), 1.625rem);
}
.location .points__item.points__item-1 {
  top: 45.006243%;
  left: clamp(3.685rem, 8.36 * var(--lh-vw), 9.375rem);
}
.location .points__item.points__item-2 {
  top: 29.397503%;
  left: clamp(7.7rem, 14.2 * var(--lh-vw), 20.5rem);
}
.location .points__item.points__item-3 {
  top: 29.628512%;
  left: clamp(11.88rem, 22.28 * var(--lh-vw), 35rem);
}
.location .points__item.points__item-4 {
  top: 36.224766%;
  left: clamp(23.32rem, 33.92 * var(--lh-vw), 53rem);
}
.location .points__item.points__item-5 {
  top: 36.514048%;
  left: clamp(32.12rem, 46.72 * var(--lh-vw), 75rem);
}
.location .points__item.points__item-6 {
  top: 27.402706%;
  left: clamp(30.305rem, 46.08 * var(--lh-vw), 69.875rem);
}
.location .points__item.points__item-7 {
  top: 28.96358%;
  left: clamp(37.84rem, 57.64 * var(--lh-vw), 86rem);
}
.location .points__item.points__item-8 {
  top: 39.16129%;
  left: clamp(41.8rem, 59.8 * var(--lh-vw), 95rem);
}
.location .points__item.points__item-9 {
  top: 35.496358%;
  right: clamp(2.2rem, 3.7 * var(--lh-vw), 5rem);
}
.location .points__route {
  position: absolute;
  display: block;
  pointer-events: none;
  z-index: 1;
  max-width: none;
  height: auto;
  opacity: 0;
  visibility: hidden;
  clip-path: inset(0 var(--route-clip-right, 100%) 0 var(--route-clip-left, 0%));
  transition: clip-path 600ms ease, opacity 250ms ease, visibility 0s linear 600ms;
}
.location .points__item.points__item-1.active + .points__route--1,
.location .points__item.points__item-2.active + .points__route--2,
.location .points__item.points__item-3.active + .points__route--3,
.location .points__item.points__item-4.active + .points__route--4,
.location .points__item.points__item-5.active + .points__route--5,
.location .points__item.points__item-6.active + .points__route--6,
.location .points__item.points__item-7.active + .points__route--7,
.location .points__item.points__item-8.active + .points__route--8,
.location .points__item.points__item-9.active + .points__route--9 {
  opacity: 1;
  visibility: visible;
  clip-path: inset(0 0 0 0);
  transition: clip-path 600ms ease, opacity 250ms ease, visibility 0s linear 0s;
}
.location .points__route--1 {
  --route-clip-left: 100%;
  --route-clip-right: 0%;
}
.location .points__route--1 {
  width: clamp(13.8875rem, 20.2 * var(--lh-vw, 1vw), 31.5625rem);
  top: clamp(10.56rem, 15.36 * var(--lh-vw, 1vw), 24rem);
  left: clamp(-0.5225rem, -0.76 * var(--lh-vw, 1vw), -1.1875rem);
}
.location .points__route--2 {
  width: clamp(4.404296875rem, 6.40625 * var(--lh-vw, 1vw), 10.25rem);
  top: clamp(11.171875rem, 16.25 * var(--lh-vw, 1vw), 26rem);
  left: clamp(9.3725585938rem, 13.6328125 * var(--lh-vw, 1vw), 21.8125rem);
}
.location .points__route--3 {
  width: clamp(2.1752929688rem, 3.1640625 * var(--lh-vw, 1vw), 5.0625rem);
  top: clamp(11.6015625rem, 16.875 * var(--lh-vw, 1vw), 27rem);
  left: clamp(13.0517578125rem, 18.984375 * var(--lh-vw, 1vw), 30.375rem);
}
.location .points__route--4 {
  width: clamp(11.0107421875rem, 16.015625 * var(--lh-vw, 1vw), 25.625rem);
  top: clamp(10.8764648438rem, 15.8203125 * var(--lh-vw, 1vw), 25.3125rem);
  left: clamp(12.5415039063rem, 18.2421875 * var(--lh-vw, 1vw), 29.1875rem);
}
.location .points__route--5 {
  width: clamp(20.4907226563rem, 29.8046875 * var(--lh-vw, 1vw), 47.6875rem);
  top: clamp(10.7421875rem, 15.625 * var(--lh-vw, 1vw), 25rem);
  left: clamp(12.9711914063rem, 18.8671875 * var(--lh-vw, 1vw), 30.1875rem);
}
.location .points__route--6 {
  width: clamp(19.4971145919rem, 28.3594394064 * var(--lh-vw, 1vw), 43rem);
  top: clamp(10.7421875rem, 15.625 * var(--lh-vw, 1vw), 25rem);
  left: clamp(12.5415039063rem, 18.2421875 * var(--lh-vw, 1vw), 29.1875rem);
}
.location .points__route--7 {
  width: clamp(27.0449308756rem, 39.3380812736 * var(--lh-vw, 1vw), 58.6875rem);
  top: clamp(10.7421875rem, 15.625 * var(--lh-vw, 1vw), 25rem);
  left: clamp(12.5415039063rem, 18.2421875 * var(--lh-vw, 1vw), 29.1875rem);
}
.location .points__route--8 {
  width: clamp(29.5141601563rem, 42.9296875 * var(--lh-vw, 1vw), 68.6875rem);
  top: clamp(10.7421875rem, 15.625 * var(--lh-vw, 1vw), 25rem);
  left: clamp(12.5415039063rem, 18.2421875 * var(--lh-vw, 1vw), 29.1875rem);
}
.location .points__route--9 {
  width: clamp(52.20703125rem, 75.9375 * var(--lh-vw, 1vw), 121.5rem);
  top: clamp(11.171875rem, 16.25 * var(--lh-vw, 1vw), 26rem);
  left: clamp(12.9711914063rem, 18.8671875 * var(--lh-vw, 1vw), 30.1875rem);
}
.location__slider {
  margin-top: 40px;
  padding-left: 15px;
  width: 100%;
}
.location__slider .swiper-wrapper {
  align-items: stretch;
}
.location__slider .swiper-slide {
  height: auto;
  display: flex;
}
.location__slider--mobile {
  display: none;
}
@media (max-width: 1200px) {
  .location__slider {
    display: none;
  }
  .location__slider--mobile {
    display: block;
    position: absolute;
    bottom: 40px;
    left: 0;
    right: 0;
    width: auto;
    max-width: 100vw;
    z-index: 5;
    min-width: 1px;
  }
}
.location__card {
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 4px;
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  padding: clamp(0.55rem, 0.8vw, 1.25rem);
  min-height: clamp(7.7rem, 11.2vw, 17.5rem);
  max-width: clamp(12.32rem, 17.92vw, 28rem);
  width: 100%;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  background-image: none;
  position: relative;
  cursor: pointer;
}
.location__card:hover .location__card-image {
  opacity: 1;
  transition: all 0.3s ease;
}
.location__card:hover .location__card-time {
  opacity: 0;
  transition: all 0.3s ease;
}
.location__card:hover .location__card-name {
  color: #fff;
  transition: all 0.3s ease;
}
.location__card.show-point .location__card-image {
  opacity: 1;
  transition: all 0.3s ease;
}
.location__card.show-point .location__card-time {
  opacity: 0;
  transition: all 0.3s ease;
}
.location__card.show-point .location__card-name {
  color: #fff;
  transition: all 0.3s ease;
}
.location__card-image {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0;
  transition: all 0.3s ease;
}
.location__card-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.location__card-image::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(0deg, #1B365D 0%, rgba(27, 54, 93, 0) 43.19%);
}
.location__card-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
  justify-content: space-between;
  height: 100%;
  flex: 1;
  z-index: 1;
}
.location__card-time-wrapper {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.location__card-icon {
  width: clamp(0.88rem, 1.28vw, 2rem);
  height: clamp(0.88rem, 1.28vw, 2rem);
  background-color: rgb(255, 88, 93);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.location__card-icon img, .location__card-icon svg {
  width: clamp(0.4125rem, 0.6vw, 0.9375rem) !important;
}
.location__card-time {
  font-family: "Geist", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 120%;
  color: rgb(80, 80, 80);
  display: flex;
  gap: 4px;
  font-weight: 400;
  font-size: clamp(0.55rem, 0.8vw, 1.25rem);
  line-height: 130%;
  letter-spacing: -3%;
  color: rgb(27, 54, 93);
  transition: all 0.3s ease;
}
.location__card-time span {
  font-family: "Geist", sans-serif;
  font-weight: 400;
  font-size: clamp(2.75rem, 4vw, 6.25rem);
  line-height: 80%;
  letter-spacing: -0.03em;
}
.location__card-name {
  font-weight: 500;
  font-size: clamp(1.1rem, 1.6vw, 2.5rem);
  line-height: 100%;
  letter-spacing: -0.03em;
  vertical-align: bottom;
  color: rgb(27, 54, 93);
  transition: all 0.3s ease;
}

.phases {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  min-height: 760px;
  position: relative;
}
.phases::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  right: 0;
  width: 100%;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.2);
}
.phases__left {
  background-color: rgb(27, 54, 93);
  padding: 80px 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}
.phases__logo {
  width: 37px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.phases__logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.phases__tabs {
  display: flex;
  gap: 16px;
  flex-wrap: nowrap;
  justify-content: center;
}
.phases__tab {
  width: 140px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background-color: transparent;
  color: #fff;
  font-weight: 500;
  font-size: 24px;
  line-height: 130%;
  letter-spacing: -0.03em;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 32px;
}
.phases__tab--active {
  background-color: #fff;
  color: rgb(27, 54, 93);
}
.phases__tab:hover:not(.phases__tab--active) {
  background-color: rgba(255, 255, 255, 0.1);
}
.phases__image {
  width: 260px;
  height: 368px;
  overflow: hidden;
  border-radius: 240px;
  flex-shrink: 0;
  z-index: 2;
}
.phases__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.phases__text {
  text-align: center;
  max-width: 555px;
  font-weight: 500;
  font-size: 16px;
  line-height: 120%;
  letter-spacing: -0.03em;
  color: #fff;
  margin-bottom: 14px;
}
.phases__text p {
  font-weight: 500;
  font-size: 16px;
  line-height: 120%;
  letter-spacing: -0.03em;
  color: #fff;
  margin-bottom: 14px;
}
.phases__text.active {
  display: block;
}
.phases__text:not(.active) {
  display: none;
}
.phases__text-item {
  font-weight: 500;
  font-size: 16px;
  line-height: 120%;
  letter-spacing: -0.03em;
  color: #fff;
  margin-bottom: 14px;
}
.phases__right {
  position: relative;
  overflow: hidden;
}
.phases__slider {
  width: 100%;
  height: 100%;
  position: relative;
}
.phases__slider.active {
  display: block;
}
.phases__slider:not(.active) {
  display: none;
}
.phases__slider .swiper-wrapper {
  height: 100%;
}
.phases__slider .swiper-slide {
  height: 100%;
}
.phases__slider img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.phases__slider.active {
  display: block;
}
.phases__slider:not(.active) {
  display: none;
}
.phases__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 64px;
  height: 64px;
  border-radius: 4px;
  background-color: rgb(255, 88, 93);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: opacity 0.3s ease;
  z-index: 10;
  overflow: hidden;
  position: absolute;
}
.phases__nav:hover {
  opacity: 0.9;
}
.phases__nav--prev {
  left: 20px;
}
.phases__nav--next {
  right: 20px;
}
.phases__nav--next img {
  transform: rotate(180deg);
}
.phases__nav img {
  width: 38px;
  height: 38px;
  display: block;
}
.phases__nav.lh-arrow-anim {
  --dir: 1;
  --rot: 0deg;
  --shift: calc(100% + 16px);
}
.phases__nav.lh-arrow-anim .lh-nav-arrow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) translateX(var(--lh-x, 0px)) rotate(var(--rot));
  transition: transform 250ms ease;
  pointer-events: none;
}
.phases__nav.lh-arrow-anim .lh-nav-arrow--a {
  --lh-x: 0px;
}
.phases__nav.lh-arrow-anim .lh-nav-arrow--b {
  --lh-x: calc(var(--dir) * -1 * var(--shift));
}
.phases__nav.lh-arrow-anim:hover .lh-nav-arrow--a {
  --lh-x: calc(var(--dir) * var(--shift));
}
.phases__nav.lh-arrow-anim:hover .lh-nav-arrow--b {
  --lh-x: 0px;
}

@media (prefers-reduced-motion: reduce) {
  .features__item {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}
.page-planning .planning__content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.page-planning .planning__center {
  padding-left: 200px;
}

.page-template-obrati-kvartyru .planning {
  padding-top: 0px;
}

.planning {
  background-color: rgb(219, 225, 233);
  padding: 120px 0 40px;
}
.planning__icon--mobile {
  display: none;
}
.planning__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.planning__left {
  display: flex;
  align-items: center;
}
.planning__title {
  color: rgb(27, 54, 93);
  max-width: 330px;
}
.planning__right {
  display: flex;
  align-items: flex-start;
  gap: 32px;
}
.planning__icon {
  width: 60px;
  height: 60px;
  flex-shrink: 0;
}
.planning__icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.planning__text {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.planning__text p {
  font-weight: 400;
  font-size: 20px;
  color: rgb(80, 80, 80);
}
.planning__text-item {
  font-weight: 400;
  font-size: 20px;
  color: rgb(80, 80, 80);
}

.apartments-filter {
  background-color: rgb(219, 225, 233);
  border-top: 1px solid rgba(37, 37, 37, 0.4);
  border-bottom: 1px solid rgba(37, 37, 37, 0.4);
}
.apartments-filter__open-btn {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 20px;
  background-color: transparent;
  border-radius: 4px;
  font-family: "Geist", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 120%;
  letter-spacing: -0.03em;
  color: rgb(27, 54, 93);
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
}
.apartments-filter__open-btn img {
  width: 24px;
  height: 24px;
}
.apartments-filter__open-btn:hover {
  opacity: 0.8;
}
@media (max-width: 1399px) {
  .apartments-filter__open-btn {
    display: flex;
  }
}
.apartments-filter__header {
  display: flex;
  justify-content: flex-end;
}
.apartments-filter__reset {
  display: flex;
  align-items: center;
  gap: 8px;
  background: none;
  border: none;
  font-family: "Geist", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 120%;
  color: rgb(80, 80, 80);
  cursor: pointer;
  transition: opacity 0.3s ease;
}
.apartments-filter__reset:hover {
  opacity: 0.7;
}
.apartments-filter__reset img {
  width: 24px;
  height: 24px;
}
.apartments-filter__content {
  display: grid;
  grid-template-columns: repeat(3, 1fr) 1fr 1fr;
  gap: 33px;
  padding: 0;
}
.apartments-filter__item {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 20px;
  padding-bottom: 35px;
}
.apartments-filter__item:nth-child(1) {
  border-left: 1px solid rgba(37, 37, 37, 0.4);
}
.apartments-filter__item:nth-child(1), .apartments-filter__item:nth-child(2), .apartments-filter__item:nth-child(3) {
  min-width: 260px;
}
.apartments-filter__item:nth-child(2) {
  min-width: 295px;
}
.apartments-filter__item:nth-child(2), .apartments-filter__item:nth-child(3), .apartments-filter__item:nth-child(4), .apartments-filter__item:nth-child(5) {
  border-left: 1px solid rgba(37, 37, 37, 0.4);
}
.apartments-filter__item:nth-child(4) {
  width: -moz-max-content;
  width: max-content;
}
.apartments-filter__label {
  font-weight: 600;
  font-size: 16px;
  line-height: 130%;
  letter-spacing: -0.03em;
  color: rgba(37, 37, 37, 0.8);
}
.apartments-filter__range {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.apartments-filter__range-inputs {
  display: flex;
  gap: 12px;
}
.apartments-filter__range-input-wrapper {
  display: flex;
  align-items: center;
  gap: 6px;
}
.apartments-filter__range-prefix {
  font-weight: 400;
  font-size: 16px;
  line-height: 130%;
  letter-spacing: -0.03em;
  color: rgba(37, 37, 37, 0.8);
}
.apartments-filter__range-input-container {
  display: flex;
  align-items: center;
  background-color: #fff;
  border-radius: 4px;
  padding: 8px 12px;
  gap: 4px;
}
.apartments-filter__range-currency {
  font-weight: 600;
  font-size: 16px;
  line-height: 120%;
  color: rgb(255, 88, 93);
}
.apartments-filter__range-input {
  width: -moz-min-content;
  width: min-content;
  border: none;
  outline: none;
  font-weight: 600;
  font-size: 16px;
  line-height: 120%;
  color: rgb(255, 88, 93);
  background: transparent;
  min-width: 0;
  text-align: left;
  padding: 0;
}
.apartments-filter__range-input::-webkit-outer-spin-button, .apartments-filter__range-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  appearance: none;
  margin: 0;
}
.apartments-filter__range-input[type=number] {
  -moz-appearance: textfield;
  -webkit-appearance: textfield;
          appearance: textfield;
}
.apartments-filter__range-suffix {
  font-weight: 400;
  font-size: 16px;
  line-height: 130%;
  letter-spacing: -0.03em;
  color: rgba(37, 37, 37, 0.8);
}
.apartments-filter__range-slider {
  position: relative;
  height: 1px;
  background-color: #fff;
  border-radius: 2px;
}
.apartments-filter__range-slider::before {
  content: "";
  position: absolute;
  height: 1px;
  background-color: rgb(255, 88, 93);
  border-radius: 2px;
  z-index: 1;
  top: 50%;
  transform: translateY(-50%);
  left: var(--range-left, 0%);
  width: var(--range-width, 0%);
}
.apartments-filter__slider {
  position: absolute;
  width: 100%;
  height: 1px;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  background: transparent;
  outline: none;
  z-index: 2;
  margin: 0;
  pointer-events: none;
  top: 50%;
  transform: translateY(-50%);
}
.apartments-filter__slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: rgb(27, 54, 93);
  cursor: pointer;
  position: relative;
  z-index: 3;
  pointer-events: all;
  margin-top: -8px;
}
.apartments-filter__slider::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: rgb(27, 54, 93);
  cursor: pointer;
  border: none;
  position: relative;
  z-index: 3;
  pointer-events: all;
}
.apartments-filter__slider::-webkit-slider-runnable-track {
  height: 1px;
  background: transparent;
}
.apartments-filter__slider::-moz-range-track {
  height: 1px;
  background: transparent;
}
.apartments-filter__buttons {
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
}
.apartments-filter__button {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background-color: #fff;
  font-weight: 600;
  font-size: 16px;
  line-height: 120%;
  letter-spacing: -0.03em;
  color: rgba(37, 37, 37, 0.8);
  cursor: pointer;
  transition: all 0.3s ease;
}
.apartments-filter__button--active {
  background-color: rgb(255, 88, 93);
  border-color: rgb(255, 88, 93);
  color: #fff;
}
.apartments-filter__button:hover:not(.apartments-filter__button--active) {
  border-color: rgb(27, 54, 93);
  color: rgb(27, 54, 93);
}

.apartments-grid {
  background-color: rgb(219, 225, 233);
  padding: 60px 0;
}
.apartments-grid__items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 40px;
}
.apartments-grid__item {
  background-color: transparent;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgb(173, 178, 184);
  margin-right: -1px;
  margin-bottom: -1px;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
}
/* Вся карточка клікабельна через stretched link */
.apartments-grid__item:not(.apartments-grid__item--ad) .apartments-grid__image a::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
}
.apartments-grid__item:nth-child(3n) {
  margin-right: 0;
}
.apartments-grid__item:nth-last-child(-n+3) {
  margin-bottom: 0;
}
.apartments-grid__item:hover {
  background-color: #fff;
  transition: all 0.3s ease;
}
.apartments-grid__header {
  padding: 40px 16px 25px 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.apartments-grid__tag {
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  letter-spacing: -0.03em;
  color: #fff;
  padding: 8px 12px;
  border-radius: 16px;
  background-color: rgb(27, 54, 93);
}
.apartments-grid__tag--active {
  background-color: rgb(255, 88, 93);
}
.apartments-grid__image {
  width: 100%;
  padding: 20px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 341px;
  margin-bottom: 30px;
}
.apartments-grid__image a {
  display: block;
  width: 100%;
  height: 100%;
}
.apartments-grid__image a img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.apartments-grid__info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.apartments-grid__title {
  font-weight: 600;
  font-size: 24px;
  line-height: 120%;
  letter-spacing: -0.03em;
  color: rgb(27, 54, 93);
  margin: 0;
  text-align: center;
}
.apartments-grid__divider {
  width: 100%;
  height: 1px;
  background-color: rgba(37, 37, 37, 0.2);
}
.apartments-grid__details {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid rgba(37, 37, 37, 0.4);
}
.apartments-grid__area {
  border-right: 1px solid rgba(37, 37, 37, 0.4);
}
.apartments-grid__area, .apartments-grid__price {
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  letter-spacing: -0.03em;
  color: rgba(37, 37, 37, 0.8);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 15px 0;
}
.apartments-grid__area strong, .apartments-grid__price strong {
  font-weight: 600;
  font-size: 25px;
  color: rgb(255, 88, 93);
  letter-spacing: -3%;
}
.apartments-grid__price-wrapper {
  display: flex;
  gap: 8px;
}
.apartments-grid__price strong.apartments-grid__price-old {
  font-weight: 600;
  font-size: 16px;
  line-height: 120%;
  letter-spacing: -0.03em;
  color: rgba(37, 37, 37, 0.3);
  text-decoration: line-through;
  display: block;
}
.apartments-grid__load-more {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}
.apartments-grid__load-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  background-color: rgb(219, 225, 233);
  border: 1px solid rgb(27, 54, 93);
  border-radius: 4px;
  font-weight: 600;
  font-size: 16px;
  line-height: 120%;
  letter-spacing: -0.03em;
  color: rgb(27, 54, 93);
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
}
.apartments-grid__load-btn:hover {
  background-color: rgba(173, 178, 184, 0.2);
}
.apartments-grid__load-btn img {
  width: 19px;
  height: 19px;
}
.apartments-grid__load-btn span {
  display: block;
  color: rgb(27, 54, 93);
}

.apartments-grid__item--ad {
  position: relative;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  height: 100%;
}

.apartments-grid__ad-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.apartments-grid__ad-image::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 40%;
  background: linear-gradient(to bottom, rgb(255, 255, 255), rgba(255, 255, 255, 0));
  pointer-events: none;
}
.apartments-grid__ad-image::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 50%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0));
  pointer-events: none;
}
.apartments-grid__ad-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.apartments-grid__ad-header {
  z-index: 2;
  padding: 20px;
}
.apartments-grid__ad-header h3 {
  font-family: "Geist", sans-serif;
  font-weight: 700;
  font-size: 40px;
  line-height: 100%;
  letter-spacing: -0.03em;
  color: rgb(27, 54, 93);
}

.apartments-grid__ad-content {
  z-index: 2;
  padding: 20px;
  color: #fff;
}

.apartments-grid__ad-description {
  margin-bottom: 15px;
  color: rgb(220, 220, 220);
  font-size: 18px;
  font-weight: 500;
}
.apartments-grid__ad-description p {
  margin-bottom: 15px;
  color: rgb(220, 220, 220);
  font-size: 18px;
  font-weight: 500;
}

.apartments-grid__ad-button {
  width: 100%;
  max-width: 100%;
}

.error404 .header__inner, .error404 .footer {
  display: none;
}

.conditions {
  padding: 120px 0;
  background-color: #fff;
}
.conditions__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}
.conditions__title {
  font-weight: 500;
  font-size: 56px;
  line-height: 100%;
  letter-spacing: -0.03em;
  color: rgb(27, 54, 93);
  margin: 0;
  flex: 1;
}
.conditions__logo {
  display: flex;
  align-items: center;
  gap: 20px;
  flex: 0.8;
}
.conditions__logo img {
  height: auto;
  max-width: 60px;
  flex-shrink: 0;
}
.conditions__logo-mobile {
  display: none;
}
.conditions__logo-text, .conditions p {
  display: flex;
  flex-direction: column;
  gap: 0;
  font-weight: 400;
  font-size: 20px;
  line-height: 140%;
  letter-spacing: -0.02em;
  color: rgba(37, 37, 37, 0.8);
}
.conditions__logo-text span, .conditions p span {
  display: block;
}
.conditions__content {
  border-top: 1px solid rgba(37, 37, 37, 0.4);
  font-weight: 500;
  font-size: 16px;
  line-height: 120%;
  letter-spacing: -0.03em;
  color: rgba(37, 37, 37, 0.7);
}
.conditions__content p {
  font-weight: 500;
  font-size: 16px;
  line-height: 120%;
  letter-spacing: -0.03em;
  color: rgba(37, 37, 37, 0.7);
}
.conditions__grid {
  display: grid;
}
.conditions__grid.conditions__slider, .conditions__grid.conditions__slider.swiper {
  overflow: visible;
}
@media (max-width: 1399px) {
  .conditions__grid.conditions__slider.swiper .conditions__item {
    margin-right: 0;
  }
}
@media (min-width: 1400px) {
  .conditions__grid.conditions__slider, .conditions__grid.conditions__slider.swiper {
    overflow: visible;
  }
  .conditions__grid.conditions__slider .swiper-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    transform: none !important;
  }
  .conditions__grid.conditions__slider .swiper-slide {
    width: auto !important;
    flex: initial;
  }
}
.conditions__item {
  display: flex;
  flex-direction: column;
  border-left: 1px solid rgba(37, 37, 37, 0.4);
  padding: 30px 20px;
  margin-right: 16px;
}
.conditions__item:last-child {
  margin-right: 0px;
}
.conditions__item--military {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.conditions__item--military .conditions__item-text, .conditions__item--military p {
  color: #fff;
}
.conditions__item-header {
  margin-bottom: 30px;
  z-index: 2;
  position: relative;
}
.conditions__item-title {
  display: inline-block;
  padding: 12px 21px;
  background-color: rgb(27, 54, 93);
  border-radius: 22px;
  font-weight: 500;
  font-size: 20px;
  line-height: 120%;
  letter-spacing: -0.03em;
  color: #fff;
}
.conditions__item-image {
  width: 100%;
  height: 240px;
  margin-bottom: 24px;
}
.conditions__item-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-clip-path: inset(123px 20px calc(100% - 363px) 20px round 120px);
          clip-path: inset(123px 20px calc(100% - 363px) 20px round 120px);
  transition: -webkit-clip-path 0.4s ease;
  transition: clip-path 0.4s ease;
  transition: clip-path 0.4s ease, -webkit-clip-path 0.4s ease;
}
.conditions__item-image--rect img {
  border-radius: 8px;
  aspect-ratio: auto;
}
.conditions__item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.conditions__item:hover .conditions__item-image img {
  -webkit-clip-path: inset(0 round 0px);
          clip-path: inset(0 round 0px);
}
.conditions__item:hover .conditions__item-btn {
  background-color: rgb(255, 88, 93);
  color: #fff;
  border-color: rgb(255, 88, 93);
}
.conditions__item:hover .conditions__item-text {
  color: #fff;
}
.conditions__item:hover .conditions p, .conditions__item:hover .conditions__item-content {
  color: #fff;
}
.conditions__item:hover .conditions__item-content p {
  color: #fff;
}
.conditions__item-content {
  margin-bottom: 24px;
  margin-top: auto;
  display: block;
  height: 180px;
  z-index: 2;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.conditions__item-text {
  font-weight: 500;
  font-size: 16px;
  line-height: 120%;
  letter-spacing: -0.03em;
  color: rgba(37, 37, 37, 0.8);
  margin-bottom: 12px;
}
.conditions__item-text:last-child {
  margin-bottom: 0;
}
.conditions__item-btn {
  z-index: 2;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 11px;
  background-color: #fff;
  border: 1px solid rgb(27, 54, 93);
  border-radius: 4px;
  font-weight: 600;
  font-size: 16px;
  line-height: 120%;
  letter-spacing: -0.03em;
  color: rgb(27, 54, 93);
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  cursor: pointer;
}
.conditions__item-btn span {
  flex: 1;
  text-align: left;
}
.conditions__item-btn-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgb(255, 88, 93);
  border-radius: 4px;
}
.conditions__item-btn-icon img {
  width: 20px;
  height: 20px;
}
.conditions__item-btn:hover {
  background-color: rgb(255, 88, 93);
  color: #fff;
  border-color: rgb(255, 88, 93);
}
.conditions__item-btn--calc .conditions__item-btn-icon {
  width: 24px;
  height: 24px;
}
.conditions__item-btn--red {
  background-color: rgb(255, 88, 93);
  border-color: rgb(255, 88, 93);
  color: #fff;
}
.conditions__item-btn--red .conditions__item-btn-icon {
  filter: brightness(0) invert(1);
}
.conditions__item-btn--red:hover {
  background-color: rgb(255, 37, 43.5269461078);
}
.conditions__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  border: 1px solid rgba(37, 37, 37, 0.2);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}
@media (min-width: 1400px) {
  .conditions__nav {
    display: none;
  }
}
.conditions__nav img {
  width: 20px;
  height: 20px;
}
.conditions__nav:hover {
  background-color: rgb(27, 54, 93);
  border-color: rgb(27, 54, 93);
}
.conditions__nav:hover img {
  filter: brightness(0) invert(1);
}
.conditions__nav--prev {
  left: 10px;
}
.conditions__nav--prev img {
  transform: rotate(180deg);
}
.conditions__nav--next {
  right: 10px;
}
.conditions__nav.swiper-button-disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.reviews {
  padding: 80px 0 120px;
  background-color: #fff;
  overflow: hidden;
}
.reviews__slider {
  padding-left: 14px !important;
  padding-right: 14px !important;
  padding-top: 32px;
  border-top: 1px solid rgba(37, 37, 37, 0.4);
}
.reviews .swiper-slide {
  display: flex;
  height: 471px;
}
.reviews__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
}
.reviews__title {
  font-weight: 500;
  font-size: 56px;
  line-height: 100%;
  letter-spacing: -0.03em;
  color: rgb(27, 54, 93);
  margin: 0;
}
.reviews__nav {
  display: flex;
  gap: 10px;
}
.reviews__nav-btn {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgb(27, 54, 93);
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  overflow: hidden;
  position: relative;
}
.reviews__nav-btn img {
  width: 24px;
  height: 24px;
  filter: brightness(0) invert(1);
}
.reviews__nav-btn--next img {
  transform: rotate(180deg);
}
.reviews__nav-btn:hover {
  background-color: rgb(15.525, 31.05, 53.475);
}
.reviews__nav-btn.lh-arrow-anim {
  --dir: 1;
  --rot: 0deg;
  --shift: calc(100% + 12px);
}
.reviews__nav-btn.lh-arrow-anim .lh-nav-arrow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) translateX(var(--lh-x, 0px)) rotate(var(--rot));
  transition: transform 250ms ease;
  pointer-events: none;
}
.reviews__nav-btn.lh-arrow-anim .lh-nav-arrow--a {
  --lh-x: 0px;
}
.reviews__nav-btn.lh-arrow-anim .lh-nav-arrow--b {
  --lh-x: calc(var(--dir) * -1 * var(--shift));
}
.reviews__nav-btn.lh-arrow-anim:hover .lh-nav-arrow--a {
  --lh-x: calc(var(--dir) * var(--shift));
}
.reviews__nav-btn.lh-arrow-anim:hover .lh-nav-arrow--b {
  --lh-x: 0px;
}
.reviews__slider {
  overflow: visible;
}
.reviews__card {
  background-color: rgb(219, 225, 233);
  border-radius: 8px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  height: auto;
  min-height: 471px;
}
.reviews__card-profile {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.reviews__card-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}
.reviews__card-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.reviews__card-name {
  font-weight: 500;
  font-size: 18px;
  line-height: 120%;
  letter-spacing: -0.03em;
  color: rgb(27, 54, 93);
}
.reviews__card-phase {
  font-weight: 500;
  font-size: 14px;
  line-height: 120%;
  letter-spacing: -0.03em;
  color: rgb(255, 88, 93);
}
.reviews__card-content {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.reviews__card-quote {
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.reviews__card-quote img {
  width: 24px;
}
.reviews__card-text {
  font-weight: 400;
  font-size: 14px;
  line-height: 140%;
  letter-spacing: -0.02em;
  color: rgba(37, 37, 37, 0.8);
  margin-bottom: 16px;
  flex-grow: 1;
}
.reviews__card-text.is-clamped {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 8;
  line-clamp: 8;
  max-height: 11.2em;
}
.reviews__card-text p {
  font-weight: 400;
  font-size: 14px;
  line-height: 140%;
  letter-spacing: -0.02em;
  color: rgba(37, 37, 37, 0.8);
  margin-bottom: 16px;
  flex-grow: 1;
}
.reviews__card-time-wrapper-quote {
  display: block;
  margin-top: auto;
  margin-bottom: auto;
}
.reviews__card-link {
  font-weight: 400;
  font-size: 14px;
  line-height: 120%;
  letter-spacing: -0.03em;
  color: rgb(27, 54, 93);
  text-decoration: none;
  transition: color 0.3s ease;
  margin-top: auto;
  text-align: center;
  text-decoration: underline;
  display: none;
  cursor: pointer;
}
.reviews__card-link.is-visible {
  display: block;
}
.reviews__card-link:hover {
  color: rgb(255, 88, 93);
}
.reviews__card-audio {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  background-color: rgb(255, 88, 93);
  border-radius: 4px;
  height: 41px;
  padding: 0 10px;
}
.reviews__card-audio-btn {
  height: 41px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  flex-shrink: 0;
  transition: all 0.3s ease;
}
.reviews__card-audio-waveform {
  flex: 1;
  border-radius: 4px;
  display: flex;
  align-items: center;
}
.reviews__card-audio-wave {
  width: 100%;
  height: 20px;
  border-radius: 2px;
}
.reviews__card-audio-duration {
  font-weight: 400;
  font-size: 14px;
  line-height: 120%;
  letter-spacing: -0.03em;
  color: #fff;
  flex-shrink: 0;
}
.reviews__card-video {
  position: relative;
  width: 100%;
  border-radius: 4px;
  overflow: hidden;
  margin-top: auto;
  max-height: 292px;
}
.reviews__card-video-img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}
.reviews__card-video-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: transform 0.3s ease;
}
.reviews__card-video-btn:hover {
  transform: translate(-50%, -50%) scale(1.1);
}

.director-quote {
  position: relative;
  min-height: 1109px;
  padding: 40px 0;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.director-quote__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  will-change: transform;
}
.director-quote__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.director-quote__overlay {
  background-color: rgba(255, 255, 255, 0.8);
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  border-radius: 4px;
  padding: 40px;
  width: 100%;
  max-width: 704px;
  min-height: 665px;
  margin: 0 auto;
}
.director-quote__quote-icon {
  margin-bottom: 18px;
}
.director-quote__quote-icon img {
  width: 48px;
  height: 48px;
}
.director-quote__text {
  font-weight: 500;
  font-size: 40px;
  line-height: 100%;
  letter-spacing: -0.03em;
  color: rgb(255, 88, 93);
  margin: 0;
}
.director-quote__text p {
  font-weight: 500;
  font-size: 40px;
  line-height: 100%;
  letter-spacing: -0.03em;
  color: rgb(255, 88, 93);
  margin: 0;
}
.director-quote__author {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 36px;
  border-top: 1px solid rgba(37, 37, 37, 0.2);
  padding-top: 24px;
}
.director-quote__name {
  font-weight: 500;
  font-size: 24px;
  line-height: 100%;
  letter-spacing: -0.03em;
  color: rgb(27, 54, 93);
  margin: 0;
}
.director-quote__position {
  font-weight: 500;
  font-size: 16px;
  line-height: 120%;
  letter-spacing: -0.03em;
  color: rgba(37, 37, 37, 0.8);
  margin: 0;
}
.director-quote__play-btn {
  position: absolute;
  bottom: 40px;
  left: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: transform 0.3s ease;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
}
.director-quote__play-btn svg {
  position: relative;
  z-index: 2;
}
.director-quote__play-btn::before, .director-quote__play-btn::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 2px solid rgb(255, 88, 93);
  opacity: 0.6;
  animation: pulse 4s infinite;
  z-index: 1;
}
.director-quote__play-btn::after {
  animation-delay: 1s;
}
.director-quote__play-btn:hover {
  transform: scale(1.1);
}
.director-quote__image {
  width: 100%;
  max-width: 366px;
  position: absolute;
  bottom: 0;
  right: 10px;
}

@keyframes pulse {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.6;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.5);
    opacity: 0.3;
  }
  100% {
    transform: translate(-50%, -50%) scale(2);
    opacity: 0;
  }
}
.about-developer {
  padding: 120px 0;
  background-color: #fff;
  overflow: hidden;
}
.about-developer__header {
  display: flex;
  gap: 40px;
  margin-bottom: 60px;
  align-items: flex-start;
}
.about-developer__title-wrapper {
  flex: 1;
}
.about-developer__title-wrapper img {
  width: 60px;
  height: 60px;
}
.about-developer__header-content {
  flex: 1;
}
.about-developer__title {
  font-weight: 500;
  font-size: 56px;
  line-height: 100%;
  letter-spacing: -0.03em;
  color: rgb(27, 54, 93);
  margin: 20px 0 0;
}
.about-developer__description, .about-developer p {
  font-weight: 400;
  font-size: 20px;
  line-height: 140%;
  letter-spacing: -0.03em;
  color: rgba(37, 37, 37, 0.8);
  margin: 0;
}
.about-developer__stats {
  border-top: 1px solid rgba(37, 37, 37, 0.4);
  position: relative;
}
.about-developer__stats .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 400px;
}
.about-developer__stats:nth-child(3) {
  border-bottom: 1px solid rgba(37, 37, 37, 0.4);
}
.about-developer__stats:nth-child(3) .about-developer__stats-left {
  border-right: none;
}
.about-developer__stats-left {
  border-right: 1px solid rgba(37, 37, 37, 0.4);
}
.about-developer__stats-left, .about-developer__stats-right {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.about-developer__stat-item {
  display: flex;
  flex-direction: column;
  gap: 66px;
  height: 100%;
  padding-top: 40px;
  padding-left: 40px;
}
.about-developer__stat-value-wrapper {
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.about-developer__stat-value {
  font-weight: 500;
  font-size: 140px;
  line-height: 100%;
  letter-spacing: -0.03em;
  color: rgb(255, 88, 93);
}
.about-developer__stat-unit {
  font-weight: 500;
  font-size: 24px;
  line-height: 100%;
  letter-spacing: -0.03em;
  color: rgb(255, 88, 93);
}
.about-developer__stat-image {
  width: 100%;
  max-width: 500px;
  margin-top: auto;
}
.about-developer__stat-image img {
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  position: absolute;
  bottom: 0;
}
.about-developer__projects {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.about-developer__projects .container {
  padding: 40px 0;
}
.about-developer__projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 40px;
}
.about-developer__project-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.about-developer__project-image {
  max-width: 352px;
  border-radius: 29px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-developer__project-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.about-developer__project-name {
  font-weight: 500;
  font-size: 24px;
  line-height: 100%;
  letter-spacing: -0.03em;
  color: rgb(27, 54, 93);
  margin: 0;
  text-align: center;
}
.about-developer__projects-subtitle {
  font-weight: 500;
  font-size: 24px;
  line-height: 100%;
  letter-spacing: -0.03em;
  color: rgb(27, 54, 93) !important;
  margin: 0 0 40px;
  padding-left: 40px;
}

p.about-developer__stat-label, p.about-developer__projects-subtitle, p.about-developer__project-name {
  font-weight: 500;
  font-size: 24px;
  line-height: 100%;
  letter-spacing: -0.03em;
  color: rgba(37, 37, 37, 0.8);
  margin: 0;
}

.news {
  padding: 120px 0;
  background-color: rgb(219, 225, 233);
}
.news__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 40px;
}
.news__header-container {
  border-bottom: 1px solid rgba(37, 37, 37, 0.4);
}
.news__title {
  font-weight: 500;
  font-size: 56px;
  line-height: 100%;
  letter-spacing: -0.03em;
  color: rgb(27, 54, 93);
  margin: 0;
}
.news__view-all {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 11px 15px;
  min-width: 312px;
  border-radius: 4px;
  border: 1px solid rgb(27, 54, 93);
  font-weight: 600;
  font-size: 16px;
  line-height: 120%;
  letter-spacing: -0.03em;
  color: rgb(27, 54, 93);
  cursor: pointer;
  transition: all 0.3s ease;
}
.news__view-all:hover {
  background-color: rgb(255, 88, 93);
  border-color: rgb(255, 88, 93);
  color: #fff;
}
.news__view-all--mobile {
  display: none;
}
.news__view-all-icon {
  width: 40px;
  height: 40px;
  border-radius: 4px;
  background-color: rgb(255, 88, 93);
  display: flex;
  align-items: center;
  justify-content: center;
}
.news__view-all-icon img {
  width: 20px;
  height: 20px;
}
.news__badge {
  width: -moz-fit-content;
  width: fit-content;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 17px;
  border-radius: 999px;
  background-color: rgb(27, 54, 93);
  font-weight: 500;
  font-size: 14px;
  line-height: 130%;
  letter-spacing: -0.03em;
  color: #fff;
}
.news__badge--secondary {
  background-color: rgb(27, 54, 93);
  color: #fff;
}
.news__content {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(0, 1.1fr);
  gap: 48px;
  align-items: stretch;
  padding: 80px 0;
  padding-bottom: 10px;
}
.news__main-card {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1.35fr);
  gap: 48px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(37, 37, 37, 0.4);
}
.news__main-card .news__badge {
  justify-content: center;
}
.news__main-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.news__main-title {
  font-weight: 600;
  font-size: 24px;
  line-height: 100%;
  letter-spacing: -0.03em;
  color: rgb(27, 54, 93);
  margin: 0;
}
.news__main-text {
  font-weight: 400;
  font-size: 18px;
  line-height: 120%;
  letter-spacing: -0.03em;
  color: rgba(37, 37, 37, 0.8);
}
.news__date {
  font-weight: 500;
  font-size: 12px;
  line-height: 130%;
  letter-spacing: -0.03em;
  color: rgba(37, 37, 37, 0.4);
  margin-top: auto;
}
.news__main-image {
  overflow: hidden;
  min-height: 352px;
}
.news__main-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.4s ease;
}
.news__main-card:hover .news__main-image img {
  transform: scale(1.07);
}
.news__side {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.news__card {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 32px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(37, 37, 37, 0.4);
}
.news__card .news__badge {
  align-self: flex-start;
  padding-inline: 28px;
}
.news__card-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.news__card-title {
  font-weight: 600;
  font-size: 20px;
  line-height: 130%;
  letter-spacing: -0.03em;
  color: rgb(27, 54, 93);
  margin: 0;
}
.news__card-image {
  overflow: hidden;
  min-height: 160px;
  max-width: 238px;
}
.news__card-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.4s ease;
}
.news__card:hover .news__card-image img {
  transform: scale(1.07);
}

.news--page {
  padding: 0px 0 50px;
}
.news--page .news__header-container {
  border-bottom: 1px solid rgba(37, 37, 37, 0.4);
}
.news--page .news__header {
  margin-bottom: 0;
  padding-bottom: 32px;
}
.news--page .news__title {
  font-weight: 500;
  font-size: 56px;
  line-height: 100%;
  letter-spacing: -0.03em;
  color: rgb(27, 54, 93);
  margin: 0;
}
.news--page .news__tabs {
  display: inline-flex;
  gap: 12px;
  flex-wrap: wrap;
}
.news--page .news__tab {
  padding: 10px 19px;
  border-radius: 999px;
  border: 0.76px solid rgba(37, 37, 37, 0.4);
  background-color: transparent;
  font-weight: 500;
  font-size: 20px;
  line-height: 120%;
  letter-spacing: -0.03em;
  color: rgb(27, 54, 93);
  cursor: pointer;
  transition: all 0.3s ease;
}
.news--page .news__tab--active {
  background-color: rgb(27, 54, 93);
  border-color: rgb(27, 54, 93);
  color: #fff;
  cursor: default;
}
.news--page .news__tab:hover:not(.news--page .news__tab--active) {
  background-color: rgb(27, 54, 93);
  border-color: rgb(27, 54, 93);
  color: #fff;
}

.news-page {
  padding: 0 0 120px;
  background-color: rgb(219, 225, 233);
}
.news-page__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 48px 32px;
}
.news-page__card {
  border-bottom: 1px solid rgba(37, 37, 37, 0.4);
  padding-bottom: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.news-page__card:hover {
  transform: translateY(-7px);
}
.news-page__image-wrapper {
  position: relative;
  margin-bottom: 16px;
}
.news-page__image {
  display: block;
  width: 100%;
  height: 280px;
  -o-object-fit: cover;
     object-fit: cover;
}
.news-page__content {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.news-page__title {
  margin: 0;
  font-weight: 700;
  font-size: 24px;
  line-height: 100%;
  letter-spacing: -0.03em;
  color: rgb(27, 54, 93);
}
.news-page__date {
  font-weight: 500;
  font-size: 12px;
  line-height: 130%;
  letter-spacing: -0.03em;
  color: rgba(37, 37, 37, 0.4);
  padding-top: 20px;
}

.post-template-default main {
  overflow-x: visible;
}

.construction-article {
  padding: 40px 0 0px;
  background-color: rgb(219, 225, 233);
  border-top: 1px solid rgba(37, 37, 37, 0.4);
  overflow: visible;
}
.construction-article .news__badge--secondary {
  padding: 4px 17px;
}
.construction-article__layout {
  display: flex;
  justify-content: space-between;
  gap: 60px;
  align-items: flex-start;
  align-content: flex-start;
  overflow: visible;
}
.construction-article .container {
  overflow: visible;
}
.construction-article__main-container {
  max-width: 880px;
  width: 100%;
  flex: 1;
}
.construction-article__main {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.construction-article__title {
  margin-bottom: 20px;
  color: rgb(27, 54, 93);
  max-width: 880px;
}
.construction-article__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.construction-article__date {
  font-weight: 500;
  font-size: 14px;
  line-height: 130%;
  letter-spacing: -0.03em;
  color: rgba(37, 37, 37, 0.8);
}
.construction-article__image {
  overflow: hidden;
  height: 480px;
  border-radius: 4px;
  overflow: hidden;
}
.construction-article__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.construction-article__sidebar-container {
  max-width: 478px;
  width: 100%;
  flex-shrink: 0;
  align-self: flex-start;
  position: sticky;
  top: 80px;
  height: -moz-fit-content;
  height: fit-content;
  padding-bottom: 120px;
  z-index: 1;
}
.construction-article__sidebar {
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding-top: 60px;
  flex: 1;
}
.construction-article__sidebar-mobile {
  display: none;
}
.construction-article__sidebar-title {
  font-weight: 600;
  font-size: 24px;
  line-height: 100%;
  letter-spacing: -0.03em;
  color: rgb(27, 54, 93);
  margin-bottom: 38px;
}
.construction-article__side-card {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 0 0 8px 0;
  border-bottom: 1px solid rgba(37, 37, 37, 0.4);
}
.construction-article__side-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.construction-article__side-title {
  margin: 0;
  font-weight: 600;
  font-size: 16px;
  line-height: 130%;
  letter-spacing: -0.03em;
  color: rgb(27, 54, 93);
  max-width: 244px;
}
.construction-article__side-date {
  font-weight: 500;
  font-size: 12px;
  line-height: 130%;
  letter-spacing: -0.03em;
  color: rgba(37, 37, 37, 0.4);
}
.construction-article__side-image {
  border-radius: 4px;
  overflow: hidden;
  height: 114px;
  width: 180px;
}
.construction-article__side-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.construction-timeline {
  padding: 60px 0 120px;
  background-color: rgb(219, 225, 233);
  overflow: visible;
}
.construction-timeline .container {
  overflow: visible;
}
.construction-timeline__list {
  position: relative;
  max-width: 880px;
  width: 100%;
}
.construction-timeline__list::before {
  content: "";
  position: absolute;
  top: 12px;
  bottom: 0;
  left: 12px;
  width: 0;
  border-left: 1px dashed rgba(37, 37, 37, 0.4);
}
.construction-timeline__item {
  display: grid;
  grid-template-columns: 140px minmax(0, 1fr);
  gap: 40px;
  align-items: flex-start;
  padding-bottom: 60px;
}
.construction-timeline__date-column {
  position: relative;
  padding-top: 4px;
}
.construction-timeline__date {
  display: block;
  font-weight: 600;
  font-size: 16px;
  line-height: 130%;
  letter-spacing: -0.03em;
  color: rgb(27, 54, 93);
  margin-left: 42px;
}
.construction-timeline__date-column::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: rgb(27, 54, 93);
  box-sizing: border-box;
}
.construction-timeline__card {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.6fr);
  gap: 24px;
}
.construction-timeline__card--grid {
  display: block;
}
.construction-timeline__media {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  height: 380px;
}
.construction-timeline__media--video .construction-timeline__play {
  display: flex;
}
.construction-timeline__media--video .construction-timeline__media-item {
  height: 100%;
}
.construction-timeline__media iframe {
  width: 100%;
  height: 380px;
}
.construction-timeline__media--slider {
  height: 365px;
}
.construction-timeline__media--slider .construction-timeline__media-item {
  height: 100%;
}
.construction-timeline__slider {
  width: 100%;
  height: 100%;
  position: relative;
}
.construction-timeline__slider .swiper-wrapper {
  height: 100%;
}
.construction-timeline__slider .swiper-slide {
  height: 100%;
}
.construction-timeline__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  background-color: rgb(255, 88, 93);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: opacity 0.3s ease;
  z-index: 5;
  overflow: hidden;
  position: absolute;
}
.construction-timeline__nav:hover {
  opacity: 0.9;
}
.construction-timeline__nav--prev {
  left: 20px;
}
.construction-timeline__nav--next {
  right: 20px;
}
.construction-timeline__nav--next img {
  transform: rotate(180deg);
}
.construction-timeline__nav img {
  width: 24px;
  height: 24px;
  display: block;
}
.construction-timeline__nav.lh-arrow-anim {
  --dir: 1;
  --rot: 0deg;
  --shift: calc(100% + 12px);
}
.construction-timeline__nav.lh-arrow-anim .lh-nav-arrow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) translateX(var(--lh-x, 0px)) rotate(var(--rot));
  transition: transform 250ms ease;
  pointer-events: none;
}
.construction-timeline__nav.lh-arrow-anim .lh-nav-arrow--a {
  --lh-x: 0px;
}
.construction-timeline__nav.lh-arrow-anim .lh-nav-arrow--b {
  --lh-x: calc(var(--dir) * -1 * var(--shift));
}
.construction-timeline__nav.lh-arrow-anim:hover .lh-nav-arrow--a {
  --lh-x: calc(var(--dir) * var(--shift));
}
.construction-timeline__nav.lh-arrow-anim:hover .lh-nav-arrow--b {
  --lh-x: 0px;
}
.construction-timeline__media-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 16px;
  border-radius: 4px;
  overflow: hidden;
}
.construction-timeline__media-item {
  height: 180px;
  overflow: hidden;
}
.construction-timeline__image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  border-radius: 4px;
}
.construction-timeline__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  border: none;
  border-radius: 50%;
  background-color: rgb(255, 88, 93);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: opacity 0.3s ease;
}
.construction-timeline__arrow--prev {
  left: 16px;
}
.construction-timeline__arrow--next {
  right: 16px;
}
.construction-timeline__arrow span {
  font-size: 14px;
  line-height: 1;
}
.construction-timeline__arrow:hover {
  opacity: 0.9;
}
.construction-timeline__play {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: none;
  background-color: rgb(255, 88, 93);
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: opacity 0.3s ease;
}
.construction-timeline__play span {
  display: block;
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 16px solid #fff;
  margin-left: 4px;
  transition: all 0.3s ease;
}
.construction-timeline__play:hover span {
  scale: 1.2;
}
.construction-timeline__info {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.construction-timeline__info--below {
  margin-top: 8px;
}
.construction-timeline__queue {
  font-weight: 700;
  font-size: 16px;
  line-height: 140%;
  letter-spacing: -0.02em;
  padding-top: 10px;
  color: rgba(37, 37, 37, 0.8);
}
.construction-timeline__tasks {
  margin: 0;
  padding-left: 18px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  list-style: disc;
}
.construction-timeline__tasks li {
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  letter-spacing: -0.02em;
  color: rgba(37, 37, 37, 0.8);
}

.article-share {
  padding: 40px 0 80px;
  background-color: rgb(219, 225, 233);
  border-top: 1px solid rgba(37, 37, 37, 0.4);
}
.article-share__inner {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.article-share__title {
  margin: 0;
  font-weight: 500;
  font-size: 24px;
  line-height: 120%;
  letter-spacing: -0.03em;
  color: rgb(27, 54, 93);
}
.article-share__buttons {
  display: flex;
  gap: 12px;
}
.article-share__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 16px;
  border-radius: 4px;
  background-color: #fff;
  border: 1px solid rgba(27, 54, 93, 0.16);
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.article-share__icon {
  width: 18px;
  height: 18px;
}
.article-share__icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.article-share__label {
  font-weight: 500;
  font-size: 16px;
  line-height: 120%;
  letter-spacing: -0.03em;
  color: rgb(27, 54, 93);
}
.article-share__btn:hover {
  background-color: rgb(27, 54, 93);
  border-color: rgb(27, 54, 93);
}
.article-share__btn:hover .article-share__label {
  color: #fff;
}
.article-share__btn:hover .article-share__icon img {
  filter: brightness(0) invert(1);
}

.single-benefits {
  padding: 24px 0;
  background-color: rgb(219, 225, 233);
}
.single-benefits__wrapper {
  max-width: 880px;
}
.single-benefits__title {
  margin: 0 0 24px;
  font-weight: 600;
  font-size: 24px;
  line-height: 120%;
  color: rgb(27, 54, 93);
}
.single-benefits__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.single-benefits__item {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-right: 24px;
  border-left: 1px solid rgba(37, 37, 37, 0.3);
  padding-left: 40px;
}
.single-benefits__icon {
  width: 48px;
  height: 48px;
  border-radius: 4px;
  background-color: rgb(27, 54, 93);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.single-benefits__icon img {
  width: 24px;
  height: 24px;
  -o-object-fit: contain;
     object-fit: contain;
}
.single-benefits__content {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.single-benefits__item-title {
  margin: 0;
  font-weight: 600;
  font-size: 18px;
  line-height: 120%;
  letter-spacing: -0.03em;
  color: rgb(27, 54, 93);
}
.single-benefits__text, .single-benefits p {
  margin: 0;
  font-weight: 500;
  font-size: 16px;
  line-height: 140%;
  letter-spacing: -0.02em;
  color: rgba(37, 37, 37, 0.8);
}
.single-benefits .container {
  padding-left: 0;
  padding-right: 0;
}

.single-content {
  padding: 24px 0;
  background-color: rgb(219, 225, 233);
}
.single-content .container {
  padding-left: 0;
  padding-right: 0;
}
.single-content__wrapper {
  max-width: 880px;
}
.single-content__title, .single-content h1, .single-content h2, .single-content h3, .single-content h4, .single-content h5, .single-content h6 {
  margin: 0 0 24px;
  font-weight: 600;
  font-size: 24px;
  line-height: 120%;
  color: rgb(27, 54, 93);
}
.single-content__text-block {
  margin-bottom: 0;
}
.single-content__text, .single-content p {
  margin: 0 0 20px;
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: -0.02em;
  color: rgba(37, 37, 37, 0.8);
}
.single-content__list, .single-content ul {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.single-content__list li, .single-content ul li {
  position: relative;
  padding-left: 24px;
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: -0.02em;
  color: rgba(37, 37, 37, 0.8);
}
.single-content__list li::before, .single-content ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: rgb(255, 88, 93);
}
.single-content__list li {
  position: relative;
  padding-left: 24px;
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: -0.02em;
  color: rgba(37, 37, 37, 0.8);
}
.single-content__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: rgb(255, 88, 93);
}

.single-stats {
  padding: 24px 0;
  background-color: rgb(219, 225, 233);
}
.single-stats .container {
  padding-left: 0;
  padding-right: 0;
}
.single-stats__wrapper {
  max-width: 880px;
}
.single-stats__title {
  margin: 0 0 24px;
  font-weight: 600;
  font-size: 24px;
  line-height: 120%;
  color: rgb(27, 54, 93);
}
.single-stats__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 15px;
  margin-bottom: 32px;
}
.single-stats__card {
  background-color: #fff;
  border-radius: 4px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 243px;
}
.single-stats__icon {
  width: 32px;
  height: 32px;
  margin-left: auto;
}
.single-stats__icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.single-stats__value {
  margin-top: 40px;
  font-weight: 600;
  font-size: 40px;
  line-height: 100%;
  letter-spacing: -0.03em;
  color: rgb(255, 88, 93);
}
.single-stats__label {
  margin-top: 16px;
  font-weight: 500;
  font-size: 16px;
  line-height: 120%;
  letter-spacing: -0.02em;
  color: rgba(37, 37, 37, 0.8);
}
.single-stats__text {
  margin: 0 0 16px;
  font-weight: 500;
  font-size: 16px;
  line-height: 140%;
  letter-spacing: -0.02em;
  color: rgba(37, 37, 37, 0.8);
}

.single-quote-gallery {
  padding: 24px 0;
  background-color: rgb(219, 225, 233);
}
.single-quote-gallery .container {
  padding-left: 0;
  padding-right: 0;
}
.single-quote-gallery__wrapper {
  max-width: 880px;
}
.single-quote-gallery__quote {
  margin: 0 0 40px;
  font-weight: 600;
  font-size: 48px;
  line-height: 120%;
  letter-spacing: -0.03em;
  color: rgb(255, 88, 93);
}
.single-quote-gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  gap: 12px;
}
.single-quote-gallery__item {
  border-radius: 4px;
  overflow: hidden;
}
.single-quote-gallery__item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.single-quote-gallery__item:nth-child(4), .single-quote-gallery__item:nth-child(5) {
  grid-column: span 1;
}

.single-plan {
  padding: 24px 0;
  background-color: rgb(219, 225, 233);
}
.single-plan .container {
  padding-left: 0;
  padding-right: 0;
}
.single-plan__wrapper {
  max-width: 880px;
}
.single-plan__title {
  margin: 0 0 24px;
  font-weight: 600;
  font-size: 24px;
  line-height: 120%;
  color: rgb(27, 54, 93);
}
.single-plan__text {
  margin: 0 0 16px;
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: -0.02em;
  color: rgba(37, 37, 37, 0.8);
}
.single-plan__grid {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}
.single-plan__image {
  border-radius: 4px;
  overflow: hidden;
  max-height: 250px;
}
.single-plan__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.faq {
  padding: 60px 0 120px;
  background-color: rgb(219, 225, 233);
}
.faq__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 1.35fr);
  gap: 30px;
  align-items: start;
}
.faq__image {
  overflow: hidden;
  position: -webkit-sticky;
  position: sticky;
  top: 100px;
  height: calc(100vh - 120px);
}
.faq__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.faq__content {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.faq__title {
  font-weight: 500;
  font-size: 56px;
  line-height: 100%;
  letter-spacing: -0.03em;
  color: rgb(27, 54, 93);
  margin: 0;
}
.faq__list {
  margin-top: 8px;
}
.faq__item {
  padding: 15px 0;
  border-bottom: 1px solid rgba(37, 37, 37, 0.4);
  cursor: pointer;
}
.faq__item:first-child {
  border-top: 1px solid rgba(37, 37, 37, 0.4);
}
.faq__item--active .faq__answer {
  opacity: 1;
}
.faq__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.faq__question {
  font-weight: 500;
  font-size: 24px;
  line-height: 130%;
  letter-spacing: -0.03em;
  color: rgba(37, 37, 37, 0.8);
  margin: 0;
  max-width: 640px;
}
.faq__toggle {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  cursor: pointer;
  transition: all 0.3s ease;
}
.faq__toggle:hover {
  border-color: rgb(27, 54, 93);
}
.faq__toggle--active {
  border-color: rgb(27, 54, 93);
}
.faq__toggle--active .faq__icon {
  background-color: transparent;
}
.faq__toggle--active .faq__icon::before, .faq__toggle--active .faq__icon::after {
  background-color: rgb(27, 54, 93);
}
.faq__icon {
  position: relative;
  width: 32px;
  height: 32px;
}
.faq__icon::before, .faq__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: rgb(27, 54, 93);
  transition: background-color 0.3s ease, transform 0.3s ease;
}
.faq__icon--plus::before {
  width: 2px;
  height: 32px;
}
.faq__icon--plus::after {
  width: 32px;
  height: 2px;
}
.faq__icon--close::before, .faq__icon--close::after {
  width: 2px;
  height: 32px;
}
.faq__icon--close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.faq__icon--close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.faq__answer {
  margin-top: 12px;
  padding-right: 48px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  overflow: hidden;
  height: 0;
  opacity: 0;
  transition: height 320ms ease, opacity 220ms ease;
  will-change: height, opacity;
}
.faq__answer-text {
  font-weight: 500;
  font-size: 16px;
  line-height: 140%;
  letter-spacing: -0.03em;
  color: rgba(37, 37, 37, 0.8);
  margin: 0;
}

.consult {
  padding: 120px 0 160px;
  background-color: rgb(219, 225, 233);
  position: relative;
}
.consult__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.1fr);
  gap: 40px;
}
.consult__left {
  max-width: 640px;
}
.consult__title {
  font-weight: 500;
  font-size: 56px;
  line-height: 110%;
  letter-spacing: -0.03em;
  color: rgb(27, 54, 93);
  margin: 0 0 60px;
}
.consult__messengers {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.consult__messengers--mobile {
  display: none;
}
.consult__messenger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 16px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  cursor: pointer;
  transition: all 0.3s ease;
}
.consult__messenger:hover {
  border-color: rgb(27, 54, 93);
}
.consult__messenger-icon {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.consult__messenger-icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.consult__messenger-label {
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  letter-spacing: -0.03em;
  color: rgb(27, 54, 93);
}
.consult__right {
  display: flex;
  justify-content: flex-end;
}
.consult__manager {
  position: absolute;
  left: 64%;
  bottom: 0;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  z-index: 0;
}
.consult__manager-photo {
  max-width: 380px;
}
.consult__manager-photo img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.consult__manager-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.consult__manager-logo {
  width: 48px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.consult__manager-logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.consult__manager-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: flex-start;
}
.consult__manager-name {
  font-weight: 500;
  font-size: 24px;
  line-height: 120%;
  letter-spacing: -0.03em;
  color: rgb(27, 54, 93);
  margin: 0;
}
.consult__manager-role {
  font-weight: 500;
  font-size: 14px;
  line-height: 120%;
  letter-spacing: -0.03em;
  color: rgba(37, 37, 37, 0.8);
  margin: 0;
  text-align: center;
}
.consult__form-wrapper {
  margin-top: 22px;
  position: relative;
  z-index: 5;
}
.consult__form {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(14px);
  border-radius: 4px;
  padding: 54px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.consult__form input {
  width: -webkit-fill-available;
}
.consult__form .wpcf7-spinner {
  position: absolute;
  bottom: 20px;
  right: 30px;
}
.consult__form-fields {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  align-items: flex-end;
}
.consult__field {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  max-width: 422px;
}
.consult__label {
  font-weight: 400;
  font-size: 14px;
  line-height: 120%;
  letter-spacing: -0.03em;
  color: rgba(37, 37, 37, 0.6);
}
.consult__input {
  border: none;
  border-bottom: 1px solid rgb(27, 54, 93);
  padding: 8px 0 10px;
  background: transparent;
  font-family: "Geist", sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 120%;
  letter-spacing: -0.03em;
  color: rgb(27, 54, 93);
}
.consult__input::-moz-placeholder {
  color: rgba(37, 37, 37, 0.3);
}
.consult__input::placeholder {
  color: rgba(37, 37, 37, 0.3);
}
.consult__submit {
  max-width: 427px;
  width: 100%;
  height: 64px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 16px;
  line-height: 120%;
  letter-spacing: -0.03em;
  white-space: nowrap;
}
.consult__note {
  margin: 16px 0 0;
  padding-left: 56px;
  font-weight: 500;
  font-size: 14px;
  line-height: 120%;
  letter-spacing: -0.03em;
  color: rgba(37, 37, 37, 0.7);
}

.consult__form p {
  margin: 0;
}

.consult__form p:has(.consult__submit) {
  display: contents;
}

.footer {
  background-color: rgb(27, 54, 93);
  padding: 62px 0 40px;
  color: #fff;
}
.footer__map-embed {
  width: 100%;
  height: 100%;
}
.footer__map-embed iframe {
  width: 100%;
  height: 100%;
}
.footer__header {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  margin-bottom: 80px;
}
.footer__left {
  justify-self: start;
}
.footer__center {
  justify-self: center;
}
.footer__right {
  justify-self: end;
}
.footer__logo {
  max-width: 386px;
}
.footer__logo img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.footer__contact {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 40px;
}
.footer__contact__phone {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.footer__phone {
  font-weight: 500;
  font-size: 56px;
  line-height: 100%;
  letter-spacing: -0.03em;
  color: #fff;
  text-decoration: none;
  transition: opacity 0.3s ease;
  text-align: center;
}
.footer__phone:hover {
  opacity: 0.8;
}
.footer__schedule {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 8px;
  position: relative;
}
.footer__schedule-separator {
  padding: 0 12px;
  width: auto;
  flex: 1;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.2);
}
.footer__schedule-label {
  font-weight: 400;
  font-size: 14px;
  line-height: 120%;
  letter-spacing: -0.03em;
  color: rgba(255, 255, 255, 0.7);
}
.footer__schedule-time {
  font-weight: 400;
  font-size: 14px;
  line-height: 120%;
  letter-spacing: -0.03em;
  color: rgb(255, 255, 255);
}
.footer__messengers {
  display: flex;
  gap: 8px;
}
.footer__messenger-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 16px;
  border-radius: 4px;
  background: #fff;
  border: 1px solid transparent;
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  letter-spacing: -0.03em;
  color: rgb(27, 54, 93);
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
}
.footer__messenger-btn img {
  width: 20px;
  height: 20px;
  -o-object-fit: contain;
     object-fit: contain;
}
.footer__messenger-btn:hover {
  opacity: 0.9;
}
.footer__main {
  display: flex;
  justify-content: space-between;
  gap: 60px;
  align-items: stretch;
  margin-bottom: 30px;
}
.footer__cta {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
  max-width: 448px;
  min-height: 1px;
  height: auto;
  position: relative;
}
.footer__cta::before {
  content: "";
  position: absolute;
  top: -62px;
  right: -30px;
  width: 1px;
  height: calc(100% + 92px);
  background: rgb(27, 54, 93);
  background-color: rgba(255, 255, 255, 0.2);
}
.footer__cta-btn {
  margin-top: auto;
}
.footer .btn-red-large {
  max-width: 100%;
  width: 100%;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 120%;
}
.footer__map-wrapper {
  position: relative;
  width: 100%;
  justify-self: end;
  padding-top: 8px;
}
.footer__map-image {
  width: 100%;
  height: 356px;
  border-radius: 4px;
  overflow: hidden;
}
.footer__map-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.footer__route {
  position: absolute;
  top: 127px;
  left: 0px;
  right: 0px;
  background: rgba(255, 255, 255, 0.95);
  padding: 24px;
  z-index: 8;
}
.footer__route-fields {
  display: flex;
  align-items: flex-end;
  gap: 16px;
}
.footer__route-field {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer__route-label {
  font-weight: 500;
  font-size: 14px;
  line-height: 120%;
  letter-spacing: -0.03em;
  color: rgba(37, 37, 37, 0.8);
}
.footer__route-input {
  border: none;
  border-bottom: 1px solid rgb(37, 37, 37);
  padding: 8px 0;
  background: transparent;
  font-family: "Geist", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  letter-spacing: -0.03em;
  color: rgb(27, 54, 93);
}
.footer__route-input::-moz-placeholder {
  color: rgba(37, 37, 37, 0.4);
}
.footer__route-input::placeholder {
  color: rgba(37, 37, 37, 0.4);
}
.footer__route-swap {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: transparent;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}
.footer__route-swap img {
  width: 20px;
  height: 20px;
  -o-object-fit: contain;
     object-fit: contain;
}
.footer__route-swap:hover {
  border-color: rgb(27, 54, 93);
  background: rgba(27, 54, 93, 0.05);
}
.footer__route-btn {
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 12px 24px;
  border-radius: 4px;
  background-color: rgb(27, 54, 93);
  border: none;
  font-family: "Geist", sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 120%;
  letter-spacing: -0.03em;
  color: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
  flex-shrink: 0;
}
.footer__route-btn img {
  width: 20px;
  height: 20px;
  -o-object-fit: contain;
     object-fit: contain;
}
.footer__route-btn:hover {
  background-color: rgb(21.2625, 42.525, 73.2375);
}
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}
.footer__copyright {
  font-weight: 500;
  font-size: 16px;
  line-height: 120%;
  letter-spacing: -0.03em;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}
.footer__author {
  font-weight: 500;
  font-size: 16px;
  line-height: 120%;
  letter-spacing: -0.03em;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}
.footer__links {
  display: flex;
  align-items: center;
  gap: 64px;
}
.footer__link {
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  letter-spacing: -0.03em;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: underline;
  transition: color 0.3s ease;
}
.footer__link:hover {
  color: #fff;
}
.footer__author-link {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: underline;
  transition: color 0.3s ease;
}
.footer__author-link:hover {
  color: #fff;
}

.breadcrumbs-selection {
  padding-top: 125px;
  padding-bottom: 40px;
  background-color: rgb(219, 225, 233);
}

.breadcrumbs {
  font-family: "Geist", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  letter-spacing: -0.03em;
  color: rgba(37, 37, 37, 0.8);
}
.breadcrumbs .breadcrumb-link {
  color: rgb(37, 37, 37);
  text-decoration: none;
  transition: color 0.3s ease;
}
.breadcrumbs .breadcrumb-link:hover {
  color: rgb(27, 54, 93);
}
.breadcrumbs .breadcrumb-separator {
  margin: 0 4px;
}
.breadcrumbs .breadcrumb-current {
  color: rgba(37, 37, 37, 0.4);
}

.purchase-conditions {
  background-color: rgb(219, 225, 233);
  padding: 160px 0 0px;
  position: relative;
  overflow: hidden;
}
.purchase-conditions-title {
  padding-top: 0px;
  padding-bottom: 40px;
  background-color: rgb(219, 225, 233);
}
.purchase-conditions-content {
  background-color: rgb(219, 225, 233);
}
.purchase-conditions__tabs {
  display: flex;
  justify-content: center;
  overflow: hidden;
}
.purchase-conditions__tab {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 19px 28px;
  background-color: transparent;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}
.purchase-conditions__tab:last-child {
  border-right: none;
}
.purchase-conditions__tab--active {
  background-color: #fff;
}
.purchase-conditions__tab--active .purchase-conditions__tab-icon {
  color: rgb(27, 54, 93);
}
.purchase-conditions__tab--active .purchase-conditions__tab-title {
  color: rgb(27, 54, 93);
}
.purchase-conditions__tab:hover:not(.purchase-conditions__tab--active) {
  background-color: rgba(255, 255, 255, 0.5);
}
.purchase-conditions__tab-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}
.purchase-conditions__tab-icon img {
  width: 40px;
  height: 40px;
  -o-object-fit: contain;
     object-fit: contain;
}
.purchase-conditions__content-wrapper {
  background-color: #fff;
}
.purchase-conditions__tab-title {
  font-weight: 600;
  font-size: 24px;
  line-height: 100%;
  letter-spacing: -0.03em;
  color: rgb(27, 54, 93);
  margin: 0;
  transition: color 0.3s ease;
  text-align: left;
}
.purchase-conditions__inner {
  display: flex;
  justify-content: space-between;
  padding: 80px 0;
}
.purchase-conditions__inner .btn-red-large {
  font-weight: 600;
  font-size: 16px;
  line-height: 120%;
  letter-spacing: -0.03em;
  margin-top: auto;
  max-width: 427px;
  width: 100%;
  margin-top: 20px;
}
.purchase-conditions__left {
  display: flex;
  flex-direction: column;
  flex: 0 0 50%;
  width: 50%;
  padding-right: 60px;
  padding-left: 120px;
}
.purchase-conditions__content {
  position: relative;
  height: 100%;
}
.purchase-conditions__text-block {
  display: none;
  flex-direction: column;
  gap: 24px;
  height: 100%;
}
.purchase-conditions__text-block h1, .purchase-conditions__text-block h2, .purchase-conditions__text-block h3, .purchase-conditions__text-block h4, .purchase-conditions__text-block h5, .purchase-conditions__text-block h6 {
  font-weight: 600;
  font-size: 32px;
  line-height: 120%;
  letter-spacing: -0.03em;
  color: rgb(27, 54, 93);
  margin: 0;
  max-width: 527px;
  margin-bottom: 20px;
}
.purchase-conditions__text-block p {
  margin-top: 30px;
}
.purchase-conditions__text-block--active {
  display: flex;
}
.purchase-conditions__subtitle {
  font-weight: 600;
  font-size: 32px;
  line-height: 120%;
  letter-spacing: -0.03em;
  color: rgb(27, 54, 93);
  margin: 0;
  max-width: 640px;
}
.purchase-conditions__right {
  display: flex;
  height: 100%;
  flex: 0 0 50%;
  width: 50%;
}
.purchase-conditions__shape-wrapper {
  width: 100%;
  display: none;
}
.purchase-conditions__shape-wrapper--active {
  display: block;
}
.purchase-conditions__shape {
  max-width: 584px;
  width: 100%;
  height: 400px;
  background-color: rgb(27, 54, 93);
  border-radius: 600px;
  overflow: hidden;
}
.purchase-conditions__shape img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.calculator-wrapper {
  padding: 32px 32px 0 32px;
  border-left: 1px solid rgba(37, 37, 37, 0.4);
}

.calculator {
  max-width: 559px;
  width: 100%;
}
.calculator__section {
  margin-bottom: 40px;
}
.calculator__section:last-child {
  margin-bottom: 0;
}
.calculator__label {
  font-weight: 500;
  font-size: 16px;
  line-height: 130%;
  letter-spacing: -0.03em;
  color: rgb(27, 54, 93);
  margin-bottom: 16px;
  background-color: rgb(219, 225, 233);
  padding: 10px 23px;
  border-radius: 20px;
  display: inline-block;
}
.calculator__queue-buttons {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.calculator__queue-btn {
  padding: 11px;
  width: 181px;
  border: 1px solid rgba(37, 37, 37, 0.2);
  border-radius: 32px;
  background-color: transparent;
  font-weight: 500;
  font-size: 20px;
  line-height: 130%;
  letter-spacing: -0.03em;
  color: rgb(27, 54, 93);
  cursor: pointer;
  transition: all 0.3s ease;
}
.calculator__queue-btn--active {
  background-color: rgb(27, 54, 93);
  color: #fff;
  border-color: rgb(27, 54, 93);
}
.calculator__queue-btn:hover:not(.calculator__queue-btn--active) {
  border-color: rgb(27, 54, 93);
}
.calculator__value {
  font-weight: 600;
  font-size: 32px;
  line-height: 120%;
  letter-spacing: -0.03em;
  color: rgb(27, 54, 93);
  margin-bottom: 16px;
}
.calculator__payment-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}
.calculator__percentage {
  font-weight: 600;
  font-size: 32px;
  line-height: 120%;
  letter-spacing: -0.03em;
  color: rgb(27, 54, 93);
}
.calculator__amount {
  font-weight: 600;
  font-size: 32px;
  line-height: 120%;
  letter-spacing: -0.03em;
  color: rgb(27, 54, 93);
}
.calculator__slider-wrapper {
  position: relative;
  width: 100%;
  height: 3px;
  background-color: rgba(37, 37, 37, 0.2);
  border-radius: 3px;
  margin-bottom: 8px;
}
.calculator__slider-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 3px;
  background: rgb(27, 54, 93);
  border-radius: 3px;
  width: var(--progress, 50%);
  z-index: 1;
}
.calculator__slider {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  width: 100%;
  height: 3px;
  background: transparent;
  outline: none;
  position: absolute;
  top: 0;
  left: 0;
  cursor: pointer;
  z-index: 2;
}
.calculator__slider::-webkit-slider-track {
  width: 100%;
  height: 3px;
  background: transparent;
  border-radius: 3px;
}
.calculator__slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  background: rgb(27, 54, 93);
  border-radius: 50%;
  cursor: pointer;
  margin-top: -1px;
}
.calculator__slider::-moz-range-track {
  width: 100%;
  height: 3px;
  background: transparent;
  border-radius: 3px;
  border: none;
}
.calculator__slider::-moz-range-thumb {
  width: 20px;
  height: 20px;
  background: rgb(27, 54, 93);
  border-radius: 50%;
  cursor: pointer;
  border: none;
}
.calculator__result {
  background-color: rgba(27, 54, 93, 0.1);
  padding: 17px 24px;
  border-radius: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
.calculator__result-label {
  font-weight: 500;
  font-size: 16px;
  line-height: 130%;
  letter-spacing: -0.03em;
  color: rgba(37, 37, 37, 0.8);
}
.calculator__result-label--bottom {
  font-size: 24px;
  font-weight: 600;
  line-height: 120%;
  max-width: 147px;
  color: rgb(27, 54, 93);
}
.calculator__result-label--bottom-equal {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 32px;
  font-weight: 600;
  line-height: 130%;
  color: rgb(27, 54, 93);
}
.calculator__result-value {
  font-weight: 600;
  font-size: 32px;
  line-height: 120%;
  letter-spacing: -0.03em;
  color: rgb(27, 54, 93);
}
.calculator__result-value--bottom {
  font-size: 56px;
  line-height: 100%;
  color: rgb(27, 54, 93);
}

.apartment-template-default {
  background-color: rgb(219, 225, 233);
}

.apartment-info {
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(37, 37, 37, 0.4);
  margin-top: 0px;
}
.apartment-info__bg {
  position: absolute;
  top: 0;
  height: 100%;
  width: 50%;
  z-index: 1;
}
.apartment-info__bg--gray {
  left: 0;
  background-color: rgb(219, 225, 233);
}
.apartment-info__bg--gray::before {
  content: "";
  position: absolute;
  bottom: 202px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: rgba(37, 37, 37, 0.4);
}
.apartment-info__bg--white {
  right: 0;
  background-color: #fff;
}
.apartment-info__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
}
.apartment-info__content {
  height: 100%;
  box-sizing: border-box;
  padding: 30px;
  border-left: 1px solid rgba(37, 37, 37, 0.4);
}
.apartment-info__header {
  margin-bottom: 32px;
}
.apartment-info__plan {
  box-sizing: border-box;
  height: 100%;
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.apartment-info__title {
  font-weight: 500;
  font-size: 48px;
  line-height: 100%;
  letter-spacing: -0.03em;
  color: rgb(27, 54, 93);
  margin: 0;
}
.apartment-info__title--mobile {
  display: none;
}
.apartment-info__details {
  display: flex;
  align-items: flex-end;
  margin-bottom: 48px;
}
.apartment-info__detail {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 224px;
  padding: 0 15px 20px;
  border-left: 1px solid rgba(37, 37, 37, 0.4);
}
.apartment-info__detail:first-child {
  border-left: none;
  padding-left: 0;
}
.apartment-info__detail-label {
  display: inline-flex;
  align-items: center;
  padding: 10px 12px;
  margin-bottom: 16px;
  background-color: #fff;
  border-radius: 999px;
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  color: rgba(37, 37, 37, 0.8);
  white-space: nowrap;
}
.apartment-info__detail-value {
  font-weight: 500;
  font-size: 56px;
  line-height: 100%;
  letter-spacing: -0.03em;
  text-align: left;
}
.apartment-info__detail-value--area {
  color: rgb(255, 88, 93);
}
.apartment-info__detail-value--rooms {
  color: rgb(255, 88, 93);
}
.apartment-info__detail-value--queue {
  color: rgb(255, 88, 93);
}
.apartment-info__features {
  margin-bottom: 40px;
}
.apartment-info__feature-label {
  font-weight: 400;
  font-size: 18px;
  line-height: 130%;
  color: rgba(37, 37, 37, 0.8);
  margin-bottom: 16px;
}
.apartment-info__features-list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 32px;
}
.apartment-info__feature {
  display: flex;
  align-items: center;
  gap: 12px;
}
.apartment-info__feature-icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}
.apartment-info__feature-icon img {
  width: 100%;
  height: 100%;
}
.apartment-info__feature-text {
  font-weight: 500;
  font-size: 20px;
  line-height: 130%;
  color: rgba(27, 54, 93, 0.7);
}
.apartment-info__price-label {
  font-weight: 400;
  font-size: 18px;
  line-height: 130%;
  color: rgba(37, 37, 37, 0.8);
  margin-bottom: 12px;
}
.apartment-info__price-wrapper {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.apartment-info__price-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 16px;
}
.apartment-info__price-old {
  font-weight: 400;
  font-size: 24px;
  line-height: 120%;
  letter-spacing: -0.03em;
  color: rgba(37, 37, 37, 0.4);
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
}
.apartment-info__price-old::before {
  content: "";
  position: absolute;
  bottom: 50%;
  transform: translateY(50%);
  left: 0;
  width: 100%;
  height: 2px;
  background-color: rgb(255, 88, 93);
}
.apartment-info__price-current {
  font-weight: 500;
  font-size: 56px;
  line-height: 100%;
  letter-spacing: -0.03em;
  color: rgb(255, 88, 93);
}
.apartment-info__price-section {
  padding-top: 40px;
  height: 182px;
}
.apartment-info__btn {
  flex-shrink: 0;
  max-width: 352px;
  width: 100%;
}
.apartment-info__plan img {
  max-width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  max-height: 570px;
}
.apartment-info__pdf-icon {
  width: 48px;
  height: 48px;
  background-color: rgb(255, 88, 93);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  cursor: pointer;
  transition: all 0.3s ease;
  position: absolute;
  top: 30px;
  left: 30px;
}
.apartment-info__pdf-icon:hover {
  opacity: 0.9;
}
.apartment-info__pdf-icon img {
  width: 24px;
  height: 24px;
}

.similar-apartments {
  background-color: rgb(219, 225, 233);
  padding: 80px 0;
  overflow: hidden;
}
.similar-apartments__slider-wrapper {
  border-top: 1px solid rgba(37, 37, 37, 0.4);
}
.similar-apartments__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}
.similar-apartments__title {
  margin: 0;
  font-weight: 500;
  font-size: 56px;
  line-height: 100%;
  letter-spacing: -0.03em;
  color: rgb(27, 54, 93);
}
.similar-apartments__nav {
  display: flex;
  gap: 10px;
}
.similar-apartments__nav-btn {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgb(27, 54, 93);
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.similar-apartments__nav-btn img {
  width: 24px;
  height: 24px;
  filter: brightness(0) invert(1);
}
.similar-apartments__nav-btn--next img {
  transform: rotate(180deg);
}
.similar-apartments__nav-btn:hover {
  background-color: rgb(15.525, 31.05, 53.475);
}
.similar-apartments__slider {
  overflow: visible !important;
}

.finish-options {
  padding: 120px 0 100px;
  background-color: rgb(219, 225, 233);
  border-top: 1px solid rgba(37, 37, 37, 0.4);
}
.finish-options__title {
  margin-bottom: 40px;
}
.finish-options__cards {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
}
.finish-options__inner {
  border-top: 1px solid rgba(37, 37, 37, 0.4);
}

.finish-card {
  position: relative;
  padding: 40px;
  padding-bottom: 20px;
  border-left: 1px solid rgba(37, 37, 37, 0.4);
  display: flex;
  flex-direction: column;
}
.finish-card:first-child {
  border-left: none;
  padding-left: 0;
}
.finish-card:last-child {
  padding-right: 0;
}
.finish-card__header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
}
.finish-card__icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.finish-card__icon img {
  max-width: 100%;
  max-height: 100%;
}
.finish-card__titles {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.finish-card__name {
  margin: 0;
  font-weight: 700;
  font-size: 40px;
  line-height: 100%;
  letter-spacing: -0.03em;
  color: rgb(27, 54, 93);
}
.finish-card__subtitle {
  margin: 0;
  font-weight: 500;
  font-size: 20px;
  line-height: 120%;
  letter-spacing: -0.03em;
  color: rgba(37, 37, 37, 0.7);
}
.finish-card__image-wrapper {
  margin-bottom: 32px;
  border-radius: 999px;
  height: 320px;
  overflow: hidden;
}
.finish-card__image {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.finish-card__list {
  margin: 0 0 40px;
  padding-left: 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  list-style: disc;
}
.finish-card__list-item {
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  letter-spacing: -0.03em;
  color: rgba(37, 37, 37, 0.8);
}
.finish-card__btn {
  margin-top: auto;
}
.finish-card__btn-icon img {
  width: 24px;
  height: 24px;
  -o-object-fit: contain;
     object-fit: contain;
}
.finish-card__divider {
  display: none;
  position: relative;
  width: 100%;
  margin: 20px 0;
  text-align: center;
}
.finish-card__divider::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(37, 37, 37, 0.4);
}
.finish-card__divider-text {
  position: relative;
  display: inline-block;
  padding: 0 12px;
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  letter-spacing: -0.03em;
  color: rgba(37, 37, 37, 0.7);
  background: rgb(219, 225, 233);
}

.error-page {
  min-height: 100vh;
  margin: 0;
  padding: 40px 16px 40px;
  box-sizing: border-box;
  background-color: #F16666;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #fff;
  text-align: center;
}
.error-page__logo {
  width: 436px;
  margin: 0 auto 80px;
}
.error-page__logo img {
  width: 100%;
  height: auto;
  display: block;
}
.error-page__content {
  max-width: 960px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}
.error-page__subtitle {
  margin: 0;
  font-weight: 500;
  font-size: 32px;
  line-height: 1.2;
  letter-spacing: -0.03em;
}
.error-page__image-wrapper {
  max-width: 800px;
  width: 100%;
  display: flex;
  justify-content: center;
}
.error-page__image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
}
.error-page__title {
  margin: 0;
  font-weight: 600;
  font-size: 60px;
  line-height: 1.2;
  letter-spacing: -0.03em;
}
.error-page__button {
  margin-top: 8px;
  text-decoration: none;
  min-width: 290px;
}
@media (max-width: 768px) {
  .error-page {
    padding: 32px 16px;
  }
  .error-page__logo {
    width: 180px;
    margin-bottom: 48px;
  }
  .error-page__subtitle {
    font-size: 22px;
  }
  .error-page__title {
    font-size: 28px;
  }
}

.page-template-thank-you .footer {
  display: none;
}

.thank-you-page {
  min-height: 100vh;
  padding: 140px 0;
  background-color: rgb(219, 225, 233);
  display: flex;
  align-items: center;
}
.thank-you-page__wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  min-height: 584px;
}
.thank-you-page__image {
  width: 100%;
  max-width: 584px;
  max-height: 712px;
  border-radius: 950px;
}
.thank-you-page__image img {
  width: 100%;
  height: 100%;
  display: block;
}
.thank-you-page__content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.thank-you-page__title, .thank-you-page h1, .thank-you-page h2, .thank-you-page h3, .thank-you-page h4, .thank-you-page h5, .thank-you-page h6 {
  margin: 0;
  font-weight: 700;
  font-size: 64px;
  line-height: 1.2;
  letter-spacing: -0.03em;
  color: rgb(27, 54, 93);
}
.thank-you-page__text {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.thank-you-page__text p {
  margin: 0;
  font-weight: 400;
  font-size: 24px;
  line-height: 130%;
  letter-spacing: -0.03em;
  color: rgba(37, 37, 37, 0.8);
}
.thank-you-page__text p + p {
  margin-top: 0;
}
.thank-you-page__text-line {
  margin: 0;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.5;
  letter-spacing: -0.03em;
  color: rgba(37, 37, 37, 0.8);
}
.thank-you-page__button {
  margin-top: 8px;
  text-decoration: none;
  min-width: 290px;
  align-self: flex-start;
}
@media (max-width: 1024px) {
  .thank-you-page {
    padding: 60px 0;
  }
  .thank-you-page__wrapper {
    gap: 40px;
  }
  .thank-you-page__title {
    font-size: 48px;
  }
  .thank-you-page__text-line {
    font-size: 18px;
  }
  .thank-you-page .container {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media (max-width: 768px) {
  .thank-you-page {
    padding: 40px 0;
  }
  .thank-you-page__wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  .thank-you-page__image {
    max-width: 300px;
    margin: auto;
  }
  .thank-you-page__title {
    font-size: 40px;
  }
  .thank-you-page__text-line {
    font-size: 16px;
  }
  .thank-you-page__button {
    align-self: center;
    min-width: 100%;
    max-width: 290px;
  }
}
@media (max-width: 480px) {
  .thank-you-page {
    padding: 32px 0;
  }
  .thank-you-page__wrapper {
    gap: 32px;
  }
  .thank-you-page__image {
    max-width: 300px;
  }
  .thank-you-page__title {
    font-size: 32px;
  }
  .thank-you-page__text-line {
    font-size: 14px;
  }
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.modal--open {
  display: flex;
  pointer-events: auto;
}
.modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}
.modal__dialog {
  position: relative;
  z-index: 1;
  max-width: 780px;
  width: 100%;
  margin: 0 16px;
  padding: 32px 32px 24px;
  background: #fff;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.25);
  box-sizing: border-box;
}
.modal__content {
  max-height: 80vh;
  overflow-y: auto;
}
.modal__video {
  display: block;
  width: 100%;
  min-height: 470px;
  border-radius: 16px;
  background-color: #000;
}
.modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  border: none;
  background: #fff;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 20;
}
@media (max-width: 768px) {
  .modal__dialog {
    margin: 0 12px;
    padding: 24px 20px 20px;
  }
}

.conditions__item:hover {
  color: #fff;
}

.conditions__item:hover .conditions__item-text {
  color: #fff;
}

.apartments-filter__modal-dialog {
  background-color: rgb(219, 225, 233);
  max-width: 575px;
  margin: 0;
  padding: 27px 15px 5px 15px;
  overflow-x: auto;
  display: flex;
  flex-direction: column;
}
.apartments-filter__modal-dialog .modal__content {
  overflow-y: auto;
  overflow-x: hidden;
  flex: 1;
  min-height: 0;
}
.apartments-filter__modal-dialog .apartments-filter__modal-title {
  font-weight: 500;
  font-size: 16px;
  line-height: 120%;
  letter-spacing: -0.03em;
  color: rgba(37, 37, 37, 0.4);
  margin-bottom: 20px;
}
.apartments-filter__modal-dialog .apartments-filter__modal-item {
  border-left: none !important;
  border-bottom: 1px solid rgba(37, 37, 37, 0.4);
  padding: 20px 0 40px 0;
  width: 100%;
}
.apartments-filter__modal-dialog .apartments-filter__modal-item:nth-child(4) {
  padding-bottom: 40px;
  border-bottom: none;
}
.apartments-filter__modal-dialog .btn-blue {
  width: 100%;
  max-width: 100%;
  height: 49px;
  font-size: 14px;
}
.apartments-filter__modal-dialog .apartments-filter__header {
  justify-content: center;
  padding: 20px 0;
}
.apartments-filter__modal-dialog .apartments-filter__reset {
  font-size: 16px;
}
.apartments-filter__modal-dialog .apartments-filter__reset img {
  width: 20px;
  height: 20px;
}

.apartments-filter__modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-shrink: 0;
  margin-bottom: 20px;
}
.apartments-filter__modal-header .modal__close {
  position: relative;
  top: auto;
  right: auto;
}
.apartments-filter__modal-header h2.apartments-filter__modal-title {
  margin: 0;
}

@keyframes lhFilterResetSpin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.apartments-filter__reset-icon--spin {
  animation: lhFilterResetSpin 0.6s ease-in-out;
  transform-origin: 50% 50%;
}

.header__block-burger {
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 11px;
  cursor: pointer;
}
.header__block-burger .header__burger-text {
  font-size: 16px;
  line-height: 120%;
  letter-spacing: -0.03em;
  color: rgb(27, 54, 93);
}
.header__block-burger .header__burger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
  height: 14px;
}
.header__block-burger .header__burger-line {
  width: 24px;
  height: 2px;
  background-color: rgb(27, 54, 93);
  border-radius: 2px;
}

.mobile-menu-modal .modal__overlay {
  background: rgba(0, 0, 0, 0.25);
}

.mobile-menu-modal__dialog {
  max-width: none;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  background: rgb(27, 54, 93);
  border-radius: 0;
}

.mobile-menu-modal__content {
  max-height: none;
  height: 100%;
  overflow: auto;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0 30px;
  overflow: auto;
}

.mobile-menu-modal__top {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 4px;
  align-items: center;
  margin-bottom: 34px;
  padding: 0 15px;
  width: 100%;
}

.mobile-menu-modal__brand,
.mobile-menu-modal__close-btn,
.mobile-menu-modal__call {
  background: #fff;
  border-radius: 4px;
  width: -moz-fit-content;
  width: fit-content;
  height: 40px !important;
  min-height: 40px !important;
}

.mobile-menu-modal__brand {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 8px 10px;
}
.mobile-menu-modal__brand img {
  width: 100%;
  max-width: 160px;
  height: 32px;
}

.mobile-menu-modal__close-btn {
  border: none;
  cursor: pointer;
  min-height: 56px;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  min-width: 100px;
}

.mobile-menu-modal__close-text {
  font-weight: 500;
  font-size: 14px;
  color: rgb(233, 102, 102);
}

.mobile-menu-modal__close-icon {
  width: 32px;
  height: 32px;
}

.mobile-menu-modal__call {
  border: none;
  cursor: pointer;
  min-height: 56px;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.mobile-menu-modal__call-text {
  font-weight: 500;
  font-size: 12px;
  color: rgb(27, 54, 93);
  line-height: 90%;
  max-width: 67px;
  text-align: left;
  letter-spacing: -0.02em;
}

.mobile-menu-modal__call-icon {
  width: 32px;
  height: 32px;
  border-radius: 4px;
  background: rgb(233, 102, 102);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}
.mobile-menu-modal__call-icon img {
  width: 20px;
  height: 20px;
}

.mobile-menu-modal__nav {
  padding: 10px 15px 44px;
}

.mobile-menu-modal__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  text-align: center;
}
.mobile-menu-modal__list li {
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mobile-menu-modal__list a {
  text-decoration: none;
  color: #fff;
  font-weight: 400;
  font-size: 24px;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.mobile-menu-modal__footer {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 28px;
  padding: 28px 0 0;
  width: 100%;
}

.mobile-menu-modal__phone {
  display: block;
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  font-size: 40px;
  line-height: 1;
  text-align: center;
  margin-bottom: 14px;
}

.mobile-menu-modal__schedule {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  padding: 0 0;
  margin-bottom: 22px;
  position: relative;
  max-width: 330px;
  margin-left: auto;
  margin-right: auto;
}
.mobile-menu-modal__schedule::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 46%;
  transform: translateX(-50%);
  width: 22%;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.3);
}

.mobile-menu-modal__schedule-label {
  opacity: 0.85;
}

.mobile-menu-modal__schedule-time {
  color: #fff;
}

.mobile-menu-modal__messengers {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 14px 0 22px;
  max-width: 330px;
  margin: auto;
}

.mobile-menu-modal__messenger-btn {
  background: #fff;
  border-radius: 4px;
  padding: 12px 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  text-decoration: none;
  color: rgb(27, 54, 93);
  font-weight: 500;
  font-size: 14px;
  width: -moz-fit-content;
  width: fit-content;
}
.mobile-menu-modal__messenger-btn img {
  width: 20px;
  height: 20px;
}

.mobile-menu-modal__langs {
  display: flex;
  justify-content: center;
  gap: 12px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.mobile-menu-modal__lang-btn {
  min-width: 45px;
  height: 35px;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 16px;
}
.mobile-menu-modal__lang-btn.is-active {
  background: #fff;
  border-color: #fff;
  color: rgb(27, 54, 93);
}

.mobile-menu-modal__phone-block {
  padding: 0 15px;
}

.lh-form-modal__dialog {
  max-width: 937px;
  min-height: 477px;
  padding: 0;
  overflow: hidden;
}

.lh-form-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  border: none;
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  opacity: 0.6;
}
.lh-form-modal__close img {
  width: 20px;
  display: block;
}

.lh-form-modal__content {
  display: flex;
  padding: 0;
  max-height: none;
  overflow: hidden;
}

.lh-form-modal__left {
  flex: 0 0 477px;
  background: #111;
  min-height: 477px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.lh-form-modal__left img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.lh-form-modal__right {
  flex: 0 0 461px;
  background: #fff;
  padding: 50px 40px 40px;
  box-sizing: border-box;
}

.lh-review-modal__right {
  flex: 1;
  padding: 50px 40px 40px;
}

.lh-form-modal__note {
  font-size: 12px;
  line-height: 120%;
  letter-spacing: -0.03em;
  color: rgba(37, 37, 37, 0.7);
  font-weight: 500;
  margin-top: 15px;
  text-align: center;
}

.lh-form-modal__title {
  font-weight: 500;
  font-size: 56px;
  line-height: 1.02;
  letter-spacing: -0.03em;
  color: rgb(27, 54, 93);
  margin: 0 0 20px;
  max-width: 329px;
}

.lh-review-modal__dialog {
  min-height: auto;
}

.lh-review-modal__content {
  display: block;
  overflow: auto;
  max-height: 80vh;
}

.lh-review-modal__right {
  flex: 1 1 auto;
  width: 100%;
  max-width: 100%;
}

.lh-review-modal__profile {
  margin-bottom: 16px;
}

.lh-review-modal__text p {
  margin: 0 0 16px;
  font-weight: 500;
  color: rgba(37, 37, 37, 0.8);
  line-height: 140%;
  letter-spacing: -0.02em;
}
.lh-review-modal__text p:last-child {
  margin-bottom: 0;
}

.lh-form-modal__form .wpcf7 form {
  margin: 0;
}
.lh-form-modal__form .consult__field {
  max-width: 100%;
}
.lh-form-modal__form .wpcf7-form-control-wrap {
  display: block;
  width: 100%;
}
.lh-form-modal__form input[type=text],
.lh-form-modal__form input[type=tel],
.lh-form-modal__form input[type=email],
.lh-form-modal__form textarea {
  width: 100%;
  border: none;
  border-bottom: 1px solid rgb(27, 54, 93);
  padding: 12px 0;
  font-size: 16px;
  color: rgb(27, 54, 93);
  outline: none;
  background: transparent;
  box-sizing: border-box;
}
.lh-form-modal__form input::-moz-placeholder, .lh-form-modal__form textarea::-moz-placeholder {
  color: rgba(27, 54, 93, 0.4);
}
.lh-form-modal__form input::placeholder,
.lh-form-modal__form textarea::placeholder {
  color: rgba(27, 54, 93, 0.4);
}
.lh-form-modal__form input[type=submit],
.lh-form-modal__form button[type=submit] {
  width: 100%;
  height: 61px;
  border: none;
  border-radius: 4px;
  background: rgb(255, 88, 93);
  color: #fff;
  font-weight: 500;
  font-size: 16px;
  cursor: pointer;
  margin-top: 35px;
}
.lh-form-modal__form .wpcf7-spinner {
  margin: 12px auto 0;
  display: block;
}
.lh-form-modal__form .wpcf7-spinner {
  margin: 0;
  position: absolute;
  bottom: 20px;
  right: 20px;
}

/* Приховуємо повідомлення CF7 про успіх і помилку відправки — редирект на thank-you */
.lh-form-modal__form .wpcf7 .sent .wpcf7-response-output,
.lh-form-modal__form .wpcf7 .failed .wpcf7-response-output,
.lh-form-modal__form .wpcf7.sent .wpcf7-response-output,
.lh-form-modal__form .wpcf7.failed .wpcf7-response-output {
  display: none !important;
}

.apartment-info__btn.btn-blue-large--mobile {
  display: none;
}

@media (max-width: 1024px) {
  .lh-form-modal__dialog {
    max-width: 720px;
  }
  .lh-form-modal__left {
    display: none;
  }
  .lh-form-modal__right {
    flex: 1 1 auto;
    padding: 44px 28px 28px;
  }
  .lh-form-modal__title {
    font-size: 44px;
    margin-bottom: 24px;
  }
}
.lh-video-modal__dialog {
  max-width: 980px;
  width: calc(100% - 32px);
  padding: 0;
  overflow: hidden;
}

.lh-video-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  border: none;
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  opacity: 0.8;
}
.lh-video-modal__close img {
  width: 20px;
  display: block;
}

.lh-video-modal__content {
  padding: 0;
  max-height: none;
  overflow: hidden;
  background: #000;
}

.lh-video-modal__player {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  background: #000;
}

.lh-video-modal__player iframe,
.lh-video-modal__player video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.construction-timeline__date-column--mobile {
  display: none;
}

.privacy-policy-page {
  padding: 60px 0 120px;
  background-color: rgb(219, 225, 233);
  border-top: 1px solid rgba(37, 37, 37, 0.4);
}
.privacy-policy-page__wrapper {
  max-width: 1148px;
  margin: 0 auto;
}
.privacy-policy-page__title {
  margin: 0 0 40px;
  font-weight: 500;
  font-size: 56px;
  line-height: 1.2;
  letter-spacing: -0.03em;
  color: rgb(27, 54, 93);
}
.privacy-policy-page__content {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: -0.03em;
  color: rgb(37, 37, 37);
}
.privacy-policy-page__content h1, .privacy-policy-page__content h2, .privacy-policy-page__content h3, .privacy-policy-page__content h4, .privacy-policy-page__content h5, .privacy-policy-page__content h6 {
  margin: 32px 0 16px;
  font-weight: 500;
  color: rgb(27, 54, 93);
}
.privacy-policy-page__content h1:first-child, .privacy-policy-page__content h2:first-child, .privacy-policy-page__content h3:first-child, .privacy-policy-page__content h4:first-child, .privacy-policy-page__content h5:first-child, .privacy-policy-page__content h6:first-child {
  margin-top: 0;
}
.privacy-policy-page__content h2 {
  font-size: 32px;
}
.privacy-policy-page__content h3 {
  font-size: 24px;
}
.privacy-policy-page__content h4 {
  font-size: 20px;
}
.privacy-policy-page__content p {
  margin: 0 0 16px;
  font-size: 16px;
  font-weight: 500;
  line-height: 130%;
}
.privacy-policy-page__content p:last-child {
  margin-bottom: 0;
}
.privacy-policy-page__content ul, .privacy-policy-page__content ol {
  margin: 16px 0;
  padding-left: 24px;
  list-style: disc;
}
.privacy-policy-page__content ul li, .privacy-policy-page__content ol li {
  margin-bottom: 8px;
}
.privacy-policy-page__content ul li:last-child, .privacy-policy-page__content ol li:last-child {
  margin-bottom: 0;
}
.privacy-policy-page__content strong {
  font-weight: 600;
}
.privacy-policy-page__content a {
  color: rgb(27, 54, 93);
  text-decoration: underline;
}
.privacy-policy-page__content a:hover {
  text-decoration: none;
}
@media (max-width: 1024px) {
  .privacy-policy-page {
    padding: 40px 0 80px;
  }
  .privacy-policy-page__title {
    font-size: 40px;
    margin-bottom: 32px;
  }
  .privacy-policy-page__content {
    font-size: 15px;
  }
  .privacy-policy-page__content h2 {
    font-size: 28px;
  }
  .privacy-policy-page__content h3 {
    font-size: 22px;
  }
}
@media (max-width: 768px) {
  .privacy-policy-page {
    padding: 32px 0 60px;
  }
  .privacy-policy-page__title {
    font-size: 32px;
    margin-bottom: 24px;
  }
  .privacy-policy-page__content {
    font-size: 14px;
  }
  .privacy-policy-page__content h2 {
    font-size: 24px;
  }
  .privacy-policy-page__content h3 {
    font-size: 20px;
  }
  .privacy-policy-page__content h4 {
    font-size: 18px;
  }
}
.privacy-policy-page .construction-timeline__queue {
  font-size: 14px;
}
.privacy-policy-page .construction-timeline__tasks li {
  font-size: 14px;
}
.privacy-policy-page .article-share__label {
  font-size: 14px;
}
.privacy-policy-page .article-share__btn {
  max-width: 117px;
  padding-left: 3px;
  padding-right: 3px;
  gap: 6px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.privacy-policy-page .article-share__title, .privacy-policy-page .construction-article__sidebar-title {
  font-size: 18px;
}
.privacy-policy-page .article-share__buttons {
  gap: 8px;
}
.privacy-policy-page .article-share {
  padding: 25px 0;
}

@media (max-width: 1024px) {
  .lh-video-modal__dialog {
    max-width: 720px;
  }
}
/* 1400px */
@media screen and (max-width: 1400px) {
  .header__block-burger {
    display: flex;
  }
  .header__nav {
    display: none;
  }
  .header__block-left {
    width: -moz-fit-content;
    width: fit-content;
  }
  .about-developer__project-image {
    max-width: 300px;
  }
  .about-developer__stat-value {
    font-size: 100px;
  }
  .about-developer__stat-item {
    gap: 40px;
  }
  .about-developer__stats .container {
    height: 350px;
  }
  .features__image {
    max-width: 300px;
    height: 245px;
  }
  .phases__tabs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .phases__tab {
    font-size: 20px;
    height: 42px;
  }
  .phases__nav {
    width: 48px;
    height: 48px;
  }
  .phases__nav img {
    width: 28px;
    height: auto;
  }
  .apartment-info__features-list {
    justify-content: flex-end;
  }
  .apartments-filter__content {
    display: none;
  }
  .footer__route-field {
    max-width: 175px;
  }
  .footer__phone {
    font-size: 42px;
  }
  .consult__field {
    max-width: 385px;
  }
  .privacy-policy-page__title {
    font-size: 32px;
  }
  .purchase-conditions__text-block p {
    font-size: 24px;
  }
  .purchase-conditions__tab-title {
    font-size: 20px;
  }
  .purchase-conditions__tab {
    padding: 10px 15px;
  }
  .purchase-conditions__tab-icon img {
    width: 30px;
    height: 30px;
  }
  .purchase-conditions__left {
    padding-left: 0;
  }
  .calculator__result-value--bottom {
    font-size: 44px;
  }
  .calculator__queue-btn {
    font-size: 18px;
  }
  .calculator__amount {
    font-size: 28px;
  }
  .apartment-info__details {
    flex-direction: column;
  }
  .apartment-info__detail {
    max-width: 100%;
    width: 100%;
    border-left: none;
    border-bottom: 1px solid rgba(37, 37, 37, 0.4);
    padding: 15px;
  }
  .apartment-info__price-content {
    flex-direction: column;
  }
  .apartment-info__price-section {
    display: flex;
    justify-content: space-between;
    height: auto;
    flex-wrap: wrap;
  }
  .apartment-info__detail-label {
    height: 32px;
    font-size: 12px;
  }
  .apartment-info__btn.btn-blue-large {
    display: none;
  }
  .apartment-info__btn.btn-blue-large--mobile {
    width: 100%;
    max-width: 475px;
    margin-top: 32px;
    display: block;
    height: 61px;
    margin-top: 10px;
  }
  .apartment-info__bg--gray::before {
    bottom: 252px;
  }
  .apartment-info__price-current {
    font-size: 32px;
  }
  .apartment-info__price-wrapper {
    align-items: flex-end;
  }
  .apartment-info__price-old {
    font-size: 18px;
  }
  .apartment-info__feature-icon {
    width: 24px;
    height: 24px;
  }
  .apartment-info__feature-text {
    font-size: 16px;
  }
  .apartment-info__detail-value {
    font-size: 32px;
  }
  .apartment-info__title {
    font-size: 32px;
  }
  .apartment-info__pdf-icon {
    width: 32px;
    height: 32px;
  }
  .apartment-info__pdf-icon img {
    width: 21px;
    height: 21px;
  }
  .single-benefits__wrapper, .single-content__wrapper, .single-stats__wrapper, .single-quote-gallery__wrapper, .single-plan__wrapper {
    max-width: 100%;
  }
  .construction-article__main-container, .construction-timeline__list {
    max-width: 100%;
  }
  .construction-article__sidebar-container {
    max-width: 100%;
    display: none;
  }
  .construction-article__sidebar-mobile {
    display: block;
    background-color: rgb(219, 225, 233);
  }
  .construction-article__sidebar-mobile .construction-article__sidebar-container {
    display: block;
  }
  .construction-timeline, .construction-article__sidebar-container, .article-share {
    padding-bottom: 40px;
  }
  .apartments-grid__ad-header h3 {
    font-size: 32px;
  }
  .apartments-grid__ad-description {
    font-size: 16px;
  }
  .conditions .container {
    padding-right: 0;
  }
}
/* 1200px */
@media screen and (max-width: 1200px) {
  .hero__title {
    font-size: 32px;
  }
  h2 {
    font-size: 32px;
  }
  .conditions__title {
    font-size: 32px;
  }
  .reviews__title {
    font-size: 32px;
  }
  .about-developer__title {
    font-size: 32px;
  }
  .features__title {
    font-size: 24px;
  }
  .news__title {
    font-size: 32px;
  }
  .features__icon {
    width: 40px;
    height: 40px;
  }
  .features__image {
    max-width: 332px;
    width: 100%;
    height: 215px;
    margin-left: 15px;
  }
  .features__image--video {
    padding-bottom: 215px;
  }
  .features__item p {
    padding: 0 15px;
  }
  .planning__icon {
    width: 30px;
    height: 30px;
  }
  .about-developer__title-wrapper img {
    width: 30px;
    height: 30px;
  }
  .conditions__logo img {
    max-width: 40px;
  }
  .conditions__item-title {
    font-size: 14px;
    padding: 10px 21px;
  }
  .conditions__item-text {
    font-size: 14px;
  }
  .director-quote__text p {
    font-size: 24px;
  }
  .location .points__item.points__item-1 {
    top: 44.006243%;
    left: clamp(3.685rem, 6.56 * var(--lh-vw, 1vw), 9.375rem);
  }
  .location .points__route--2 {
    top: clamp(11.171875rem, 13.25 * var(--lh-vw, 1vw), 26rem);
  }
  .location .points__route--3 {
    top: clamp(11.6015625rem, 14.875 * var(--lh-vw, 1vw), 27rem);
  }
  .location .points__route--4 {
    top: clamp(10.8764648438rem, 14.8203125 * var(--lh-vw, 1vw), 25.3125rem);
  }
  .location .points__route--6 {
    top: clamp(10.7421875rem, 14.625 * var(--lh-vw, 1vw), 25rem);
  }
  .location .points__route--7 {
    width: clamp(27.0449308756rem, 40.3380812736 * var(--lh-vw, 1vw), 58.6875rem);
    top: clamp(10.7421875rem, 14.625 * var(--lh-vw, 1vw), 25rem);
  }
  .location .points__route--9 {
    top: clamp(11.171875rem, 14.25 * var(--lh-vw, 1vw), 26rem);
  }
  .director-quote__play-btn {
    width: 40px;
    height: 40px;
  }
  .director-quote__name {
    font-size: 18px;
  }
  .about-developer__description, .about-developer p {
    font-size: 16px;
  }
  .about-developer__stat-value {
    font-size: 80px;
  }
  .about-developer__stat-unit {
    font-size: 16px;
  }
  .about-developer__stat-image img {
    height: 400px;
  }
  .about-developer__stats .container {
    height: 300px;
  }
  .news__main-title {
    font-size: 16px;
  }
  .news__main-text {
    font-size: 14px;
  }
  .news__content {
    grid-template-columns: minmax(0, 1.6fr) minmax(0, 1.4fr);
    gap: 28px;
  }
  .faq__title {
    font-size: 32px;
  }
  .faq__question {
    font-size: 18px;
  }
  .faq__answer-text {
    font-size: 14px;
  }
  .faq__icon {
    width: 24px;
    height: 24px;
  }
  .consult__title {
    font-size: 32px;
  }
  .consult__field {
    max-width: 340px;
  }
  .consult__manager-photo {
    max-width: 350px;
  }
  .consult__note {
    max-width: 520px;
  }
  .footer__logo {
    max-width: 316px;
  }
  .footer__cta {
    max-width: 328px;
  }
  .footer__phone {
    font-size: 36px;
  }
  .footer__route {
    top: auto;
    bottom: 0;
  }
  .footer__route-fields {
    flex-direction: column;
    align-items: center;
    align-items: flex-start;
    gap: 7px;
  }
  .footer__map-wrapper {
    padding-bottom: 250px;
  }
  .footer__route-field {
    max-width: 100%;
    width: 100%;
  }
  .footer__route-swap {
    transform: rotate(90deg);
  }
  .footer {
    padding: 60px 0;
  }
  .footer__main {
    flex-direction: column;
    gap: 40px;
  }
  .footer__cta::before {
    display: none;
  }
  .footer__cta {
    max-width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    align-items: center;
    padding-bottom: 30px;
  }
  .footer .btn-red-large {
    max-width: 475px;
    margin-left: auto;
    margin-right: auto;
    height: 59px;
  }
  .footer__logo {
    max-width: 238px;
  }
  .footer__bottom {
    flex-direction: column;
    gap: 20px;
  }
  .planning__title {
    font-size: 32px;
  }
  .footer__bottom {
    border-top: none;
    padding-top: 15px;
  }
  .footer__route-field {
    gap: 0;
  }
  .header__block-call {
    max-width: -moz-fit-content;
    max-width: fit-content;
  }
  .page-planning .planning__content {
    align-items: flex-start;
    flex-direction: column;
    gap: 15px;
  }
  .page-planning .planning__center {
    padding-left: 0;
  }
  .planning__text p {
    font-size: 16px;
  }
  .planning__text {
    gap: 12px;
  }
  .error-page__title {
    font-size: 40px;
  }
  .error-page__content {
    margin-top: auto;
    margin-bottom: auto;
  }
  .breadcrumbs {
    font-size: 14px;
  }
  .purchase-conditions {
    padding-top: 60px;
    padding-bottom: 0;
  }
  .purchase-conditions-title {
    padding-bottom: 25px;
  }
  .finish-card__name {
    font-size: 24px;
  }
  .finish-card__subtitle {
    font-size: 16px;
  }
  .finish-card__icon {
    width: 48px;
    height: 48px;
  }
  .btn-icon {
    padding: 11px 15px;
  }
  .similar-apartments__title {
    font-size: 32px;
  }
  .news--page .news__title {
    font-size: 32px;
  }
  .news--page .news__tab {
    font-size: 16px;
    padding: 8px 14px;
  }
  .news__badge {
    font-size: 12px;
  }
  .news-page__title {
    font-size: 18px;
  }
  .news-page__grid {
    gap: 24px;
  }
  .news {
    padding-bottom: 40px;
  }
  .news--page {
    padding-top: 0 !important;
  }
  .news-page {
    padding-bottom: 60px;
  }
  .construction-article__title {
    font-size: 32px;
  }
  .construction-article__date {
    font-size: 12px;
  }
  .construction-article__layout {
    flex-direction: column;
    gap: 20px;
  }
  .single-benefits__title, .single-content__title, .single-content h1, .single-content h2, .single-content h3, .single-content h4, .single-content h5, .single-content h6 {
    font-size: 20px;
  }
  .single-benefits__icon {
    width: 40px;
    height: 40px;
  }
  .single-stats__card {
    min-height: 180px;
  }
  .single-quote-gallery__quote {
    font-size: 32px;
  }
  .single-plan__image {
    max-height: 220px;
  }
  .single-stats, .single-benefits, .single-plan, .single-quote-gallery {
    padding: 25px 0;
  }
  .single-content {
    padding-bottom: 25px;
  }
  .single-content__text-block {
    margin-bottom: 25px;
  }
}
/* 1024px */
@media screen and (max-width: 1024px) {
  .header {
    top: 20px;
  }
  .header--fixed {
    top: 15px;
  }
  .header__block-lang {
    display: none;
  }
  .header__block-contact {
    display: none;
  }
  .header__logo {
    display: none;
  }
  .header__logo-mobile {
    display: block;
  }
  .header__block {
    height: 40px;
  }
  .header__block-burger .header__burger-text {
    font-size: 14px;
  }
  .header__text-call {
    font-size: 14px;
    max-width: 75px;
    color: rgb(27, 54, 93);
    font-weight: 500;
    line-height: 90%;
    white-space: wrap !important;
  }
  .header__call-btn {
    width: 32px;
    height: 32px;
    min-width: 32px;
  }
  .header__call-btn img {
    width: 20px;
    height: 20px;
  }
  .header__block {
    gap: 8px;
  }
  .hero__bg-video--desktop,
  .hero__bg-image--desktop {
    display: none;
  }
  .hero__bg-video--mobile,
  .hero__bg-image--mobile {
    display: block;
  }
  .hero__bg-video--mobile {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
  }
  .hero__bg-video--mobile video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center center;
       object-position: center center;
  }
  .hero__content {
    height: auto;
    flex-direction: column;
    gap: 20px;
    padding-bottom: 20px;
  }
  .hero__overlay-bottom {
    height: auto;
  }
  .hero__buttons {
    flex-wrap: wrap;
  }
  .hero__buttons button {
    width: 328px;
  }
  .hero__right {
    gap: 20px;
  }
  .features__grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    border-top: 1px solid rgba(37, 37, 37, 0.4);
    padding-top: 20px;
  }
  .features__item {
    border-bottom: 1px solid rgba(37, 37, 37, 0.4);
    border-left: none;
    padding-bottom: 20px;
  }
  .features__item:last-child {
    border-bottom: none;
  }
  .features {
    padding: 48px 0;
  }
  .features__bottom {
    margin-top: 0;
    padding-top: 60px;
    flex-direction: column;
    gap: 20px;
  }
  .features__image {
    margin-left: 0;
  }
  .location-form {
    max-width: 100%;
  }
  .features__bottom-right {
    max-width: 100%;
  }
  .features__bottom-right p {
    font-size: 18px;
    margin-bottom: 15px;
  }
  .features__bottom-right {
    gap: 0;
  }
  .phases {
    display: flex;
    flex-direction: column;
  }
  .phases__slider {
    height: 460px;
  }
  .phases__image {
    width: 180px;
    height: 260px;
  }
  .phases__left {
    gap: 25px;
  }
  .phases__left {
    padding: 40px 15px;
  }
  .phases__text {
    padding: 0 10px;
  }
  .planning__content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
  .planning__text p {
    font-size: 16px;
  }
  .planning__text {
    gap: 15px;
  }
  .planning__icon {
    display: none;
  }
  .planning__icon--mobile {
    display: block;
  }
  .planning__left {
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
  }
  .apartments-grid__items {
    grid-template-columns: repeat(2, 1fr);
  }
  .apartments-grid__tag {
    font-size: 12px;
    padding: 5px 9px;
  }
  .apartments-grid__header {
    padding: 25px 16px 25px 16px;
  }
  .apartments-grid__image {
    padding: 15px;
    margin-bottom: 5px;
  }
  .apartments-grid__title {
    font-size: 16px;
  }
  .apartments-grid__area, .apartments-grid__price {
    font-size: 12px;
  }
  .apartments-grid__area strong, .apartments-grid__price strong {
    font-size: 16px;
  }
  .apartments-grid {
    padding: 40px 0;
  }
  .apartments-grid__item:nth-child(3n) {
    margin-right: -1px;
  }
  .apartment-info__features-list {
    gap: 12px;
  }
  .conditions__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
  .conditions__logo-mobile {
    display: block;
    max-width: 30px;
  }
  .conditions__logo img {
    display: none;
  }
  .lh-review-modal__right {
    padding: 44px 28px 28px;
  }
  .conditions__logo-text {
    font-size: 14px;
  }
  .conditions p {
    font-size: 14px;
  }
  .conditions__item-content {
    font-size: 14px;
  }
  .conditions__item-content {
    overflow: hidden;
    -webkit-line-clamp: 6;
    line-clamp: 6;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
  }
  .conditions__item-content p + p::before {
    content: " ";
  }
  .conditions__item-content--truncated {
    position: relative;
  }
  .conditions__item--military .conditions__item-content--truncated::after {
    background: linear-gradient(90deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.55) 60%);
    color: #fff;
  }
  .conditions__slider.swiper .swiper-wrapper {
    align-items: stretch;
  }
  .conditions__slider.swiper .swiper-slide {
    height: auto;
  }
  .conditions__item {
    height: 100%;
    display: flex;
    flex-direction: column;
  }
  .conditions__item-content {
    flex: 1 1 auto;
    height: 100px;
  }
  .conditions__item-btn {
    margin-top: auto;
  }
  .planning {
    padding: 40px 0 25px;
  }
  .conditions__item-btn {
    font-size: 14px;
    padding: 8px;
  }
  .conditions__item-btn-icon {
    width: 28px;
    height: 28px;
  }
  .conditions__item-btn-icon img {
    width: 18px;
    height: 18px;
  }
  .reviews {
    position: relative;
    padding: 60px 0 100px;
  }
  .reviews__nav {
    position: absolute;
    bottom: 25px;
    left: 15px;
    right: 15px;
    justify-content: space-between;
  }
  .director-quote {
    min-height: 760px;
  }
  .director-quote__bg {
    top: auto;
    bottom: 0;
    height: 50%;
  }
  .director-quote__overlay {
    border: 1px solid rgba(37, 37, 37, 0.2);
  }
  .director-quote__overlay {
    padding: 20px;
  }
  .director-quote__text p {
    font-size: 18px;
  }
  .director-quote__name {
    font-size: 14px;
  }
  .director-quote__position {
    font-size: 12px;
  }
  .director-quote__image {
    max-width: 266px;
  }
  .director-quote__overlay {
    min-height: 455px;
  }
  .director-quote__quote-icon img {
    width: 22px;
    height: 22px;
  }
  .director-quote__overlay {
    margin-top: -143px;
  }
  .about-developer__header {
    flex-direction: column;
    gap: 25px;
  }
  .about-developer__stats .container {
    display: flex;
    flex-direction: column;
    height: auto;
  }
  .about-developer__stats-left {
    border-right: none;
    border-bottom: 1px solid rgba(37, 37, 37, 0.4);
  }
  .about-developer__stats {
    height: 350px;
  }
  .about-developer__stat-image img {
    height: 300px;
    right: 0;
  }
  .about-developer__stat-item {
    padding: 20px 0;
  }
  .about-developer__stat-item {
    gap: 20px;
  }
  .about-developer__stats:nth-child(3) .about-developer__stats-left {
    border-bottom: none;
  }
  .about-developer__project-image {
    max-width: 250px;
  }
  .about-developer__project-item {
    gap: 10px;
  }
  .about-developer {
    padding: 60px 0;
  }
  .news__view-all {
    display: none;
  }
  .news__view-all--mobile {
    display: flex;
  }
  .news__content {
    padding: 20px 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .article-share__label {
    font-size: 14px;
  }
  .article-share__btn {
    padding: 10px 14px;
  }
  .news {
    padding: 80px 0 60px;
  }
  .news__main-card {
    gap: 20px;
  }
  .news__card {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1.35fr);
  }
  .news__card-image {
    max-width: 100%;
  }
  .news__main-image {
    min-height: 270px;
    height: 270px;
  }
  .news__card-image {
    min-height: 270px;
    height: 270px;
    border-radius: 0;
  }
  .news__card-title {
    font-size: 16px;
  }
  .faq {
    padding: 60px 0;
  }
  .faq__inner {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }
  .faq__content {
    gap: 25px;
    width: 100%;
  }
  .faq__image {
    width: 100%;
    position: relative;
    top: auto;
    height: auto;
  }
  .faq__image img {
    height: auto;
    max-height: 350px;
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .faq__toggle {
    width: 24px;
    height: 24px;
  }
  .faq__icon--plus::before {
    height: 24px;
  }
  .faq__icon--plus::after {
    width: 24px;
  }
  .consult {
    padding: 60px 0;
  }
  .consult__inner {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .consult__left {
    max-width: 100%;
    text-align: center;
  }
  .consult__manager-info {
    align-items: center;
  }
  .consult__messengers {
    display: none;
  }
  .consult__messengers--mobile {
    display: flex;
    margin-top: 240px;
  }
  .consult__right {
    justify-content: center;
  }
  .consult__title {
    margin-bottom: 0;
  }
  .consult__manager-info {
    flex-direction: row;
  }
  .consult__manager-logo {
    width: 28px;
    height: auto;
  }
  .consult__manager-name {
    font-size: 18px;
    display: flex;
    gap: 8px;
  }
  .consult__manager-name br {
    display: none;
  }
  .hero__left {
    gap: 0;
  }
  .hero__title {
    margin-bottom: 16px;
  }
  .hero__content {
    gap: 24px;
  }
  .consult__messenger {
    background-color: #fff;
    padding: 10px 14px;
  }
  .consult__messenger-label {
    font-size: 14px;
  }
  .consult__form-wrapper {
    margin-top: 12px;
  }
  .consult__form {
    padding: 15px;
  }
  .consult__form-fields {
    flex-direction: column;
  }
  .consult__field {
    max-width: 100%;
  }
  .consult__form input {
    margin: auto;
    height: 59px;
    font-size: 16px;
    padding: 0 10px;
  }
  .consult__manager {
    left: 50%;
    bottom: 130px;
  }
  .consult__manager-photo {
    max-width: 240px;
  }
  .consult__note {
    max-width: 100%;
    text-align: center;
    padding: 0;
  }
  .phases::before {
    top: 32%;
  }
  .conditions {
    padding: 45px 0 40px;
  }
  .footer__messenger-btn {
    font-size: 14px;
    padding: 11px 14px;
  }
  .location-form {
    display: none;
  }
  .location-form--mobile {
    display: block;
  }
  .lh-form-modal__dialog {
    height: auto;
  }
  .planning__icon-header {
    display: block;
  }
  .breadcrumbs-selection {
    padding-top: 85px;
    padding-bottom: 25px;
  }
  .purchase-conditions__tabs {
    flex-direction: column;
    padding-bottom: 35px;
  }
  .purchase-conditions__tab {
    padding: 16px 15px;
    border-top: 1px solid rgba(37, 37, 37, 0.4);
  }
  .purchase-conditions__tab:last-child {
    border-bottom: 1px solid rgba(37, 37, 37, 0.4);
  }
  .purchase-conditions__tab--active {
    border-color: #fff;
    border-radius: 4px;
  }
  .purchase-conditions__tab-title {
    font-size: 18px;
  }
  .purchase-conditions__tab-icon img {
    width: 24px;
    height: 24px;
  }
  .purchase-conditions__inner {
    justify-content: center;
    padding: 40px 0 80px;
    flex-direction: column-reverse;
    align-items: center;
    gap: 25px;
  }
  .purchase-conditions__shape {
    height: 320px;
  }
  .purchase-conditions__left {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
    flex: 1 1 auto;
  }
  .purchase-conditions__text-block p {
    max-width: 100%;
    font-size: 20px;
  }
  .purchase-conditions__text-block {
    gap: 25px;
  }
  .purchase-conditions__content-wrapper.installment .purchase-conditions__inner {
    flex-direction: column;
  }
  .purchase-conditions__content-wrapper.installment .purchase-conditions__text-block {
    flex-direction: column;
  }
  .purchase-conditions__content-wrapper.installment .purchase-conditions__inner .btn-red-large {
    margin-bottom: 0;
    margin-left: auto;
    margin-right: auto;
    max-width: 480px;
    height: 59px;
  }
  .purchase-conditions__text, .purchase-conditions p {
    max-width: 100%;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }
  .calculator-wrapper {
    border-left: none;
    border-top: 1px solid rgba(37, 37, 37, 0.4);
    padding-left: 0;
    padding-right: 0;
  }
  .calculator__label {
    font-size: 12px;
    padding: 9px 15px;
  }
  .calculator__queue-btn {
    font-size: 16px;
    width: 104px;
  }
  .calculator__value {
    font-size: 24px;
  }
  .calculator__result {
    display: grid;
    grid-template-columns: auto auto;
    grid-template-rows: auto auto;
    align-items: center;
    justify-content: center;
    justify-items: center;
    text-align: center;
    gap: 10px 22px;
  }
  .calculator__result-label--bottom {
    grid-column: 1/-1;
    max-width: 100%;
    font-size: 24px;
  }
  .calculator__result-label--bottom-equal {
    grid-column: 1;
    font-size: 56px;
    line-height: 1;
  }
  .calculator__result-value--bottom {
    grid-column: 2;
    font-size: 56px;
    line-height: 1;
  }
  .calculator__result-label--bottom-equal {
    position: relative;
  }
  .purchase-conditions__right {
    width: 100%;
    flex: 1 1 auto;
    margin-left: auto;
    margin-right: auto;
    max-width: 480px;
  }
  .apartment-info__inner {
    display: flex;
    flex-direction: column-reverse;
    align-items: flex-start;
  }
  .apartment-info__title {
    display: none;
  }
  .apartment-info__title--mobile {
    display: block;
    padding: 35px 0 25px;
    text-align: left;
  }
  .apartment-info__bg--white {
    display: none;
  }
  .apartment-info__plan {
    background-color: #fff;
    width: calc(100% + 30px);
    margin-left: -15px;
    margin-right: -15px;
    padding: 30px 15px;
    box-sizing: border-box;
  }
  .apartment-info__pdf-icon {
    top: auto;
    left: 15px;
    bottom: 15px;
  }
  .apartment-info__content {
    border-left: none;
    width: 100%;
  }
  .apartment-info__header {
    display: none;
  }
  .apartment-info__content {
    padding: 15px 0 30px;
  }
  .apartment-info__detail {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
  .apartment-info__detail-label {
    margin-bottom: 0;
  }
  .apartment-info__detail {
    padding: 15px 0 25px;
  }
  .apartment-info__features {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0 25px;
    margin-bottom: 0;
    border-bottom: 1px solid rgba(37, 37, 37, 0.4);
    gap: 15px;
  }
  .apartment-info__bg--gray {
    display: none;
  }
  .apartment-info__details {
    margin-bottom: 0;
  }
  .apartment-info__price-section {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
    gap: 16px;
    align-items: start;
    padding-top: 15px;
  }
  .apartment-info__detail-label {
    grid-column: 1;
    grid-row: 1;
  }
  .apartment-info__price-content {
    grid-column: 2;
    grid-row: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
  }
  .apartment-info__btn.btn-blue-large--mobile {
    grid-column: 1/-1;
    grid-row: 2;
    margin-left: auto;
    margin-right: auto;
  }
  .finish-options__cards {
    display: flex;
    flex-direction: column;
  }
  .finish-card {
    padding: 25px 0 15px;
    border-left: none;
  }
  .finish-card--secondary {
    position: relative;
  }
  .finish-card__divider {
    display: block;
  }
  .finish-options {
    padding: 80px 0 60px;
  }
  .similar-apartments {
    padding: 40px 0 60px;
  }
  .similar-apartments__top {
    margin-bottom: 25px;
  }
  .news-page__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .news__header {
    flex-direction: column;
    align-items: flex-start;
  }
  .news--page .news__header {
    padding-bottom: 20px;
  }
  .single-stats__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .single-benefits__item {
    padding-left: 15px;
    padding-right: 15px;
    padding-top: 15px;
  }
  .apartments-grid__ad-image img {
    -o-object-position: 50% 28%;
       object-position: 50% 28%;
  }
  .apartments-grid__ad-header h3 {
    font-size: 28px;
  }
  .apartments-grid__ad-button {
    height: 48px;
    font-size: 14px;
  }
}
/* 768px */
@media screen and (max-width: 768px) {
  html {
    scroll-behavior: auto;
  }
  .single-plan__image img {
    -o-object-fit: contain;
       object-fit: contain;
  }
  .single-plan__grid {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  .single-quote-gallery__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .construction-timeline__media--slider {
    height: auto;
    max-height: 320px;
  }
  .single-benefits__grid {
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }
  .single-stats__grid {
    grid-template-columns: repeat(1, 1fr);
  }
  .calculator__queue-btn {
    width: 100px;
  }
  .hero__buttons button {
    width: 100%;
    max-width: 475px;
  }
  .hero__bg::after {
    top: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.4) 20%, rgba(0, 0, 0, 0) 38%);
  }
  .features__title {
    max-width: 184px;
  }
  .location__card {
    min-height: 160px;
    width: 330px !important;
  }
  .location__card-name {
    font-size: 20px;
  }
  .location__card-time span {
    font-size: 64px;
  }
  .lh-form-modal__form input[type=text], .lh-form-modal__form input[type=tel], .lh-form-modal__form input[type=email], .lh-form-modal__form textarea {
    border-radius: 0;
  }
  .lh-form-modal__dialog {
    min-height: 408px;
  }
  .hero {
    min-height: 809px;
  }
  .location__card-time {
    font-size: 16px;
  }
  .reviews__slider .swiper-slide {
    width: 270px !important;
    flex-shrink: 0;
  }
  .location .points__item {
    width: 2.3125rem;
    height: 2.3125rem;
  }
  .location .points__item img {
    width: 0.995rem;
    padding-left: 1px;
  }
  .location .points__item-0 {
    width: 3.75rem;
  }
  .conditions__item-title {
    white-space: nowrap;
    padding: 10px 11px;
  }
  .apartments-grid__info {
    padding-top: 10px;
  }
  .director-quote__quote-icon {
    margin-bottom: 8px;
  }
  .director-quote__author {
    padding-top: 10px;
  }
  .about-developer__header {
    margin-bottom: 20px;
  }
  .about-developer__stats {
    height: 332px;
  }
  .about-developer__projects-subtitle {
    padding-left: 15px;
    max-width: 280px;
  }
  .news__main-card, .news__card {
    display: flex;
    flex-direction: column-reverse;
    gap: 12px;
  }
  .news__main-info {
    gap: 12px;
  }
  .news__badge {
    font-size: 12px;
    padding: 4px 10px;
  }
  .faq__list {
    margin-top: 0;
  }
  .news__header {
    margin-bottom: 20px;
  }
  .reviews__header {
    margin-bottom: 20px;
  }
  .footer__contact {
    flex-direction: column;
    gap: 25px;
    margin-bottom: 25px;
    align-items: center;
  }
  .footer__phone {
    font-size: 40px;
  }
  .location {
    min-height: 600px;
  }
  .director-quote {
    min-height: auto;
  }
  .director-quote__overlay {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    min-height: auto;
    margin-top: 0;
    position: relative;
    padding-bottom: 240px;
  }
  .director-quote__image {
    max-width: 220px;
    right: 0;
    left: auto;
    transform: none;
    bottom: 0;
  }
  .consult__manager {
    bottom: 148px;
    z-index: 0;
  }
  .consult__messengers--mobile {
    position: relative;
    z-index: 3;
  }
  .consult__form-wrapper {
    position: relative;
    z-index: 5;
  }
  .consult__form {
    background: rgba(255, 255, 255, 0.8);
    -webkit-backdrop-filter: blur(14px);
            backdrop-filter: blur(14px);
  }
  .hero__right p {
    display: none;
  }
  .hero__text--mobile {
    display: block;
    margin-bottom: 16px;
  }
  .similar-apartments .apartments-grid__item {
    border: 1px solid rgb(173, 178, 184);
  }
  .similar-apartments {
    position: relative;
  }
  .news {
    padding-bottom: 25px;
  }
  .conditions__item {
    padding: 24px 12px 12px 12px;
    height: 449px;
  }
  .conditions__item-image {
    height: 170px;
    position: static;
    overflow: visible;
    border-radius: 0;
  }
  .conditions__item-image img {
    -webkit-clip-path: inset(84px 12px 195px 12px round 85px);
            clip-path: inset(84px 12px 195px 12px round 85px);
  }
  .conditions__item:hover .conditions__item-image img,
  .conditions__item:active .conditions__item-image img {
    -webkit-clip-path: inset(0 round 0px);
            clip-path: inset(0 round 0px);
  }
  .conditions__item-header {
    margin-bottom: 16px;
  }
  .news-page__date {
    padding-top: 15px;
  }
  .construction-article__image {
    margin-left: -15px;
    margin-right: -15px;
    width: calc(100% + 30px);
  }
  .construction-timeline .container {
    padding: 0;
  }
  .apartments-filter__range-input {
    min-width: 70px;
  }
  .construction-timeline {
    padding-top: 40px;
  }
  .construction-timeline__item {
    gap: 20px;
    padding-bottom: 25px;
  }
  .construction-timeline__date {
    display: none;
  }
  .apartments-grid__price strong.apartments-grid__price-old {
    font-size: 12px;
  }
  .construction-timeline__date-column--mobile {
    display: block;
  }
  .construction-timeline__date-column--mobile .construction-timeline__date {
    display: block;
    margin-left: 0;
    font-size: 16px;
    margin-bottom: 15px;
  }
  .construction-timeline__date-column--mobile::before {
    display: none;
  }
  .thank-you-page__text h1, .thank-you-page__text h2, .thank-you-page__text h3, .thank-you-page__text h4, .thank-you-page__text h5, .thank-you-page__text h6 {
    display: none;
  }
  .thank-you-page__text p {
    font-size: 20px;
  }
  .construction-timeline__item {
    grid-template-columns: 20px minmax(0, 1fr);
  }
  .hero__buttons button, .hero__buttons a {
    max-width: 475px;
    width: 100%;
  }
  .apartments-filter__range--price .apartments-filter__range-input-container {
    min-width: 110px;
  }
  .conditions__header {
    margin-bottom: 24px;
  }
  .conditions__grid.conditions__slider.swiper .swiper-slide {
    width: 256px !important;
    flex-shrink: 0;
  }
  .location__card {
    min-width: 258px !important;
  }
}
@media screen and (max-width: 575px) {
  .location__card {
    width: 280px !important;
  }
  .apartments-grid__item:nth-child(3n) {
    height: auto;
    min-height: 458px;
  }
  .apartments-grid__ad-image img {
    -o-object-position: 50% 19%;
       object-position: 50% 19%;
  }
  .similar-apartments__nav {
    position: absolute;
    bottom: 0;
    left: 15px;
    width: calc(100% - 30px);
    justify-content: space-between;
  }
  .similar-apartments {
    padding-bottom: 90px;
  }
  .location-form__input-wrapper {
    flex-direction: column;
  }
  .location-form__wrapper .btn-blue-small {
    max-width: 100%;
  }
  .apartments-grid__items {
    grid-template-columns: repeat(1, 1fr);
  }
  .apartments-grid .container {
    padding: 0;
  }
  .apartments-grid__load-more {
    padding-left: 15px;
    padding-right: 15px;
  }
  .apartments-grid__image {
    height: 264px;
  }
  .news__view-all--mobile {
    max-width: 100%;
    width: 100%;
  }
  .conditions__item-image {
    height: 170px;
  }
  .footer__main {
    margin-left: -15px;
    margin-right: -15px;
    width: calc(100% + 30px);
  }
  .footer__map-image, .footer__route {
    border-radius: 0;
  }
  .footer__map-image {
    height: 316px;
  }
  .footer__route {
    bottom: -5px;
  }
  .features__item {
    align-items: flex-start;
  }
  .footer__route {
    padding: 15px;
  }
  .apartments-filter__modal-dialog {
    height: 100dvh;
    padding-bottom: 15px;
  }
  .apartments-filter__modal-dialog .modal__content {
    overflow-y: auto;
    overflow-x: hidden;
    flex: 1;
    min-height: 0;
  }
  .footer__route-btn {
    width: 100%;
    max-width: 475px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 10px;
  }
  .footer__links {
    flex-direction: column;
    gap: 15px;
    padding: 10px 0;
  }
  .footer__bottom {
    gap: 15px;
  }
  .footer {
    padding: 40px 0;
  }
  .footer .btn-red-large {
    margin-left: 15px;
    margin-right: 15px;
    width: calc(100% - 30px);
  }
  .footer__messengers, .footer__contact__phone {
    padding-left: 15px;
    padding-right: 15px;
  }
  .purchase-conditions__shape {
    height: 220px;
  }
  .header__block-left, .mobile-menu-modal__brand {
    padding-left: 8px;
    padding-right: 8px;
    min-width: 109px;
  }
  .header__block-burger {
    min-width: 106.3px;
    padding-left: 8px;
    padding-right: 8px;
    justify-content: center;
    gap: 13px;
  }
  .construction-article__image {
    height: 215px;
  }
  .header__block-call {
    padding-left: 6px;
    padding-right: 8px;
    min-width: 109px;
    max-width: 109px;
  }
  .header__text-call {
    font-size: 12px;
  }
  .lh-form-modal__title {
    font-size: 32px;
    margin-bottom: 15px;
    margin-top: 10px;
  }
  .apartments-grid__item {
    border-left: none;
    border-right: none;
  }
  .about-developer__stat-value {
    white-space: nowrap;
    font-size: 70px;
  }
  .features__item p {
    margin: 0;
    max-width: 100%;
  }
  .faq__icon {
    width: 20px;
    height: 20px;
  }
  .faq__icon--close::before, .faq__icon--close::after {
    height: 24px;
  }
  .faq__icon--plus::after {
    width: 24px;
  }
  .faq__icon--plus::before {
    height: 24px;
  }
  .consult__form input {
    font-size: 16px;
    padding: 0 10px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .consult__manager {
    bottom: 188px;
  }
  .about-developer__projects-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .apartment-info__features-list {
    width: -moz-fit-content;
    width: fit-content;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .apartment-info__plan {
    height: 272px;
    padding: 15px;
  }
  .finish-card__image-wrapper {
    height: 200px;
  }
  .news-page__grid {
    grid-template-columns: repeat(1, 1fr);
  }
  .news-page__image {
    height: 200px;
  }
  .construction-timeline__media-item {
    height: 88px;
  }
  .construction-timeline__media--slider, .construction-timeline__media, .construction-timeline__media iframe {
    height: 180px;
  }
  .features__image {
    max-width: 100%;
    width: 100%;
  }
}
/* 480px */
@media screen and (max-width: 480px) {
  .about-developer__stats:nth-child(3) {
    overflow: hidden;
  }
  .location__card {
    width: 256px !important;
  }
  .about-developer__stat-image img {
    right: -50px;
    bottom: -42px;
  }
  .consult__messengers--mobile {
    gap: 6px;
    flex-wrap: nowrap;
  }
  .consult__messenger {
    padding: 10px;
  }
  .consult__manager {
    bottom: 156px;
  }
  .consult__field {
    gap: 0;
  }
  .consult__form-fields {
    gap: 10px;
  }
  .consult__submit {
    margin-top: 10px !important;
  }
  .director-quote__image {
    max-width: 170px;
  }
  .director-quote__overlay {
    min-height: 343px;
    padding: 15px;
  }
  .director-quote__position {
    max-width: 135px;
  }
  .director-quote__play-btn {
    bottom: 15px;
    left: 15px;
  }
  .director-quote {
    min-height: 620px;
  }
  .director-quote__author {
    margin-top: 15px;
  }
  .planning__title-header {
    max-width: 300px;
  }
  .apartments-grid__ad-image img {
    -o-object-position: 50% 79%;
       object-position: 50% 79%;
  }
  .article-share__buttons {
    gap: 6px;
    flex-wrap: wrap;
  }
  .features__bottom-title {
    max-width: 320px;
  }
}
@media screen and (max-width: 430px) {
  .consult__manager {
    bottom: 183px;
  }
  .hero__text p br {
    display: none;
  }
}
@media screen and (max-width: 415px) {
  .consult__manager {
    bottom: 233px;
  }
}
@media screen and (max-width: 400px) {
  .consult__manager {
    bottom: 246px;
  }
  .consult__messenger {
    padding-left: 8px;
    padding-right: 8px;
  }
}
@media screen and (max-width: 380px) {
  .consult__manager {
    bottom: 266px;
  }
  .consult__messengers--mobile {
    justify-content: space-between;
  }
  .about-developer__stat-image img {
    bottom: -62px;
  }
}
@media screen and (max-width: 356px) {
  .consult__manager {
    bottom: 296px;
  }
  .apartments-filter__range-inputs {
    gap: 8px;
  }
  .apartments-filter__modal-dialog {
    padding-left: 12px;
    padding-right: 12px;
  }
  .header__block-left, .mobile-menu-modal__brand {
    min-width: 100px;
    padding-left: 4px;
    padding-right: 4px;
  }
  .header__block-burger {
    min-width: auto;
    padding-left: 4px;
    padding-right: 4px;
  }
  .header__block-burger .header__burger-text, .mobile-menu-modal__close-text {
    font-size: 12px;
  }
  .header__block-call, .mobile-menu-modal__call-text {
    min-width: auto;
    padding-left: 4px;
    padding-right: 4px;
    font-size: 11;
    gap: 3px;
  }
  .header__block-burger .header__burger-line {
    width: 18px;
  }
  .header__call-btn, .mobile-menu-modal__call-icon {
    width: 28px;
    height: 28px;
    min-width: 28px;
  }
  .mobile-menu-modal__close-icon {
    width: 28px;
    height: 28px;
  }
  .mobile-menu-modal__phone, .footer__phone {
    font-size: 36px;
  }
  .mobile-menu-modal__messenger-btn, .footer__messenger-btn {
    font-size: 12px;
    padding: 9px 9px;
  }
  .consult__messenger-label {
    font-size: 12px;
  }
  .consult__messenger {
    gap: 6px;
  }
}
@media screen and (max-width: 340px) {
  .consult__manager {
    bottom: 306px;
  }
}

/* ========== PRELOADER ========== */
body.lh-preloader-open {
  overflow: hidden;
}
/* Full-screen navy overlay */
.lh-preloader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: #1b365d;
  opacity: 1;
  transition: opacity 0.5s ease;
}
.lh-preloader.is-fade-out {
  opacity: 0;
}
/* The visible window — fixed size, centered, capsule corners, overflow hidden */
.lh-preloader__window {
  position: absolute;
  width: 270px;
  height: 368px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 60px;
  overflow: hidden;
  transition:
    width  0.95s cubic-bezier(0.77, 0, 0.175, 1),
    height 0.95s cubic-bezier(0.77, 0, 0.175, 1),
    border-radius 0.95s cubic-bezier(0.77, 0, 0.175, 1);
}
/* Expand window to cover full viewport from center */
.lh-preloader__window.is-fullscreen {
  width: 100vw;
  height: 100vh;
  border-radius: 0;
}
/* Slides track — fills the window */
.lh-preloader__slides {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
/* Each slide fills the window and enters from the bottom */
.lh-preloader__slide {
  position: absolute;
  inset: 0;
  transform: translateY(100%);
  transition: transform 0.75s cubic-bezier(0.77, 0, 0.175, 1);
}
.lh-preloader__slide.is-active {
  transform: translateY(0);
}
.lh-preloader__slide.is-leaving {
  transform: translateY(-100%);
  transition: transform 0.75s cubic-bezier(0.77, 0, 0.175, 1);
}
.lh-preloader__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-user-drag: none;
  user-select: none;
}
/* Percentage counter — inside the window, bottom-left */
.lh-preloader__percent {
  position: absolute;
  bottom: 24px;
  left: 24px;
  color: #ffffff;
  font-size: 52px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.03em;
  z-index: 3;
  pointer-events: none;
  text-shadow: 0 2px 12px rgba(0,0,0,0.25);
  transition: opacity 0.3s ease;
}
@media (max-width: 767px) {
  .lh-preloader__window {
    width: 220px;
    height: 300px;
    border-radius: 48px;
  }
  .lh-preloader__percent {
    font-size: 38px;
    bottom: 18px;
    left: 18px;
  }
}
/* ================================ */

/* LightGallery backdrop override */
.lg-backdrop {
  background-color: rgb(219, 225, 233) !important;
}

/*# sourceMappingURL=style.css.map */