@charset "UTF-8";

* {
  padding: 0;
  margin: 0;
  border: 0;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

aside,
nav,
footer,
header,
section {
  display: block;
}

html,
body {
  height: 100%;
  min-height: 100vh;
  scrollbar-gutter: stable;
}

img,
video,
canvas,
svg {
  display: block;
}

input::-ms-clear {
  display: none;
}

button {
  display: inline-block;
  cursor: pointer;
  padding: 0;
  border: none;
  background: none;
  -webkit-user-select: none;
  user-select: none;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  color: inherit;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

a,
a:visited {
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  text-decoration: none;
}

a:hover,
a:visited:hover {
  text-decoration: none;
}

img {
  vertical-align: top;
}

ol,
ul {
  padding: 0 !important;
  margin: 0 !important;
}

ol[role='list'],
ul[role='list'] {
  list-style: none;
}

.container {
  max-width: 1680px;
  width: 100%;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}

.link {
  padding: 5px 0;
  transition: color 0.37s cubic-bezier(0.52, 0.01, 0.16, 1);
}

.link:hover {
  color: var(--color-logo-hover);
}

.outlined-link {
  position: relative;
  display: inline-block;
  color: #fff;
  padding: 5px 0;
  transition: color 0.37s cubic-bezier(0.52, 0.01, 0.16, 1);
  text-transform: uppercase;
}

.outlined-link::after {
  content: '';
  position: absolute;
  bottom: 1px;
  left: 0;
  height: 3px;
  width: 100%;
  background-color: #fff;
  transition: background-color 0.37s cubic-bezier(0.52, 0.01, 0.16, 1);
}

.outlined-link:hover {
  color: var(--color-logo-hover);
}

.outlined-link:hover::after {
  background-color: var(--color-logo-hover);
}

.outlined-link--black {
  color: var(--color-dark);
}

.outlined-link--black::after {
  background-color: var(--color-dark);
}

.text-button {
  font-family: 'RobotoCondensed';
  font-size: 18px;
  line-height: 1.3;
  text-transform: uppercase;
}

.no-drag {
  pointer-events: none;
  -webkit-user-drag: none;
  -khtml-user-drag: none;
  -moz-user-drag: none;
  -o-user-drag: none;
  user-drag: none;
}

.swiper-fade .swiper-slide {
  opacity: 0 !important;
  transition: opacity 0.6s ease !important;
  pointer-events: none;
}

.swiper-fade .swiper-slide-active {
  pointer-events: auto;
  opacity: 1 !important;
}

main {
  padding-top: 65px;
}

main.under-header {
  padding-top: 0;
}

.header {
  position: relative;
  top: 0;
  left: 0;
  flex: 0 0 0;
  height: 0;
  width: 100%;
}

.header__wrapper {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 100;
  width: 100%;
  color: #fff;
  background: transparent;
  transition: background-color 0.74s ease;
}

.header__container {
  position: relative;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 65px;
  transition-duration: 0.74s;
  transition-timing-function: ease;
  transition-property: border, background-color;
  background-color: transparent;
  border-bottom: 1px solid transparent;
}

.header a,
.header a::after,
.header button {
  transition-duration: 0.3s;
  transition-timing-function: cubic-bezier(0.52, 0.01, 0.16, 1);
  transition-property: color, background-color;
}

.header._scroll .header__wrapper,
.header._open .header__wrapper {
  background: rgba(255, 255, 255, 0.8);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  color: #040038;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
}

.header._scroll a,
.header._open a {
  color: #040038;
}

.header._scroll .outlined-link::after,
.header._open .outlined-link::after {
  background-color: #040038;
}

.header._scroll .link:hover,
.header._open .link:hover {
  color: #0462ea;
}

.header._scroll .outlined-link:hover,
.header._open .outlined-link:hover {
  color: #0462ea;
}

.header._scroll .outlined-link:hover::after,
.header._open .outlined-link:hover::after {
  background-color: #0462ea;
}

.header__list {
  display: none;
}

.header__list a {
  padding: 5px 0;
}

.header__shared-block a {
  padding: 5px 0;
}

.header__tel {
  display: none;
}

.header__choose-flat {
  display: none;
}

.header__logo svg {
  height: 26px;
}

.header._open .header__wrapper,
.header._open .header__container {
  background-color: #fff;
}

.header._open [data-burger-open-button] {
  display: none;
}

.header._open [data-burger-close-button] {
  display: block;
}

.header._open .header__tel,
.header._open .header__choose-flat {
  display: none;
}

.burger-menu {
  display: none;
  pointer-events: none;
}

[data-burger-close-button] {
  display: none;
}

[data-burger-wrapper] {
  position: relative;
  z-index: 80;
  background-color: #fff;
  color: var(--color-dark);
  pointer-events: auto;
  transform: translateY(calc(-100% - 65px));
  transition: transform 0.6s ease;
}

[data-burger-wrapper]._open {
  transform: translateY(0);
}

[data-burger-shadow-bg] {
  position: absolute;
  inset: 0;
  z-index: 70;
  pointer-events: none;
  opacity: 0;
  background-color: rgba(0, 0, 0, 0.3);
  transition: opacity 0.6s ease;
}

[data-burger-shadow-bg]._active {
  pointer-events: auto;
  opacity: 1;
}

.black-header .header a,
.black-header .header [data-burger-open-button] {
  color: #040038;
}

.black-header .header .outlined-link::after {
  background-color: #040038;
}

.black-header .header .link:hover {
  color: #0462ea;
}

.black-header .header .outlined-link:hover {
  color: #0462ea;
}

.black-header .header .outlined-link:hover::after {
  background-color: #0462ea;
}

.footer__wrapper {
  display: flex;
  flex-direction: column;
}

.footer__content-wrapper {
  padding-top: 64px;
}

.footer__top-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 32px;
}

.footer .button-outline-dark {
  width: 100%;
}

.footer__contacts-wrapper {
  border-bottom: 1px solid var(--color-grey);
}

.footer__contact-item {
  border-top: 1px solid var(--color-grey);
  padding: 16px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

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

.footer .text-subtitle {
  color: var(--color-logo);
}

.footer__words-wrapper {
  position: relative;
  height: 200px;
  margin: 0 -24px;
}

.footer__words {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.footer__word-line--nakhimov {
  display: flex;
  gap: 50px;
  margin-top: 4px;
}

.footer__word-line--nakhimov img {
  display: block;
  height: 64px;
  width: 413px;
  padding-left: 10px;
}

.footer__word-line--kvartal {
  display: flex;
  gap: 50px;
  margin-top: -12px;
}

.footer__word-line--kvartal img {
  display: block;
  height: 75px;
  width: 823px;
  transform: translateX(-48px);
}

.pixel-label {
  padding: 16px 0;
  text-align: center;
  background-color: var(--color-grey-light);
}

.pixel-label .container {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.pixel-label span {
  color: var(--color-grey);
}

.pixel-label a {
  color: var(--color-logo);
}

.pixel-label a:hover {
  color: var(--color-logo-hover);
}
.copyright-label {
  padding: 48px 0;
  text-align: start;
  background-color: var(--color-grey-light);
}

.copyright-label .container {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 16px;
}

.copyright-label span, .copyright-label p {
  color: var(--color-grey);
}

.copyright-label a {
  color: var(--color-logo);
}

.copyright-label a:hover {
  color: var(--color-logo-hover);
}

@font-face {
  font-family: 'RobotoCondensed';
  src: url('../fonts/RobotoCondensed-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/Montserrat-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Angst';
  src: url('../fonts/Angst-Normal.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: 'Angst';
  src: url('../fonts/Angst-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
}

:root {
  --color-blue: #72b1dd;
  --color-blue-hover: #4b93c6;
  --color-blue-dark: #253057;
  --color-dark: #040038;
  --color-grey: #b8b9c2;
  --color-grey-light: #f1f2f5;
  --color-logo: #BCA593;
  --color-logo-hover: #9a7f6b;
  --color-logo-dark: #574134;
}

body {
  font-family: 'Montserrat';
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  background-color: #fff;
  color: #000;
}

body._locked {
  overflow: hidden;
}

h1 {
  font-family: 'RobotoCondensed';
  font-size: 32px;
  line-height: 1.2;
  font-weight: 500;
  text-transform: uppercase;
}

h1 span {
  color: var(--color-logo);
}

.text-subtitle {
  font-family: 'RobotoCondensed';
  font-size: 20px;
  line-height: 1.3;
  font-weight: 700;
  text-transform: uppercase;
}

.nah-text-button {
  font-family: 'RobotoCondensed';
  font-size: 18px;
  line-height: 1.4;
  font-weight: 500;
  text-transform: uppercase;
}

.text-info {
  font-size: 12px;
  line-height: 1.2;
}

.button-primary {
  font-family: 'RobotoCondensed';
  font-size: 18px;
  line-height: 1.4;
  font-weight: 500;
  text-transform: uppercase;
  background-color: var(--color-logo);
  color: #fff;
  padding: 16px 48px;
  border-radius: 30px;
  -webkit-user-select: none;
  user-select: none;
  transition: background-color 0.45s cubic-bezier(0.25, 1, 0.33, 1);
}

.button-primary:hover:not(:disabled) {
  background-color: var(--color-logo-hover);
  color: #574134 !important;
}

.button-primary:disabled {
  background-color: var(--color-logo-dark);
  color: #574134 !important;
  cursor: default;
}

.button-outline-light,
.button-outline-dark {
  padding: 8px 24px;
  border-radius: 30px;
  text-align: center;
  background-color: transparent;
  transition-duration: 0.45s;
  transition-timing-function: cubic-bezier(0.25, 1, 0.33, 1);
  transition-property: color, background-color;
}

.button-outline-light {
  border: 1px solid #fff;
  color: #fff;
}

.button-outline-light:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.button-outline-light._active {
  background-color: #fff;
  color: #000;
}

.button-outline-dark {
  border: 1px solid #000;
  color: #000;
}

.button-outline-dark:hover {
  background-color: var(--color-logo-dark);
  color: #fff;
}

.button-outline-dark._active {
  background-color: #000;
  color: #fff;
}

[data-dropdown-button]::after {
  content: '';
  width: 24px;
  height: 24px;
  background: url('../img/icons/arrow-down.svg') center no-repeat;
}

input[type='text'],
input[type='number'],
input[type='email'],
input[type='tel'] {
  width: 100%;
  height: 58px;
  float: left;
  display: block;
  padding: 16px 32px;
  margin: 0;
  border-radius: 30px;
  border: 2px solid transparent;
  background-color: var(--color-grey-light);
  text-transform: none;
  transition-duration: 0.45s;
  transition-timing-function: cubic-bezier(0.25, 1, 0.33, 1);
  transition-property: color, background-color, border;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  color: var(--color-logo);
}

input[type='text']::-webkit-inner-spin-button,
input[type='text']::-webkit-outer-spin-button,
input[type='number']::-webkit-inner-spin-button,
input[type='number']::-webkit-outer-spin-button,
input[type='email']::-webkit-inner-spin-button,
input[type='email']::-webkit-outer-spin-button,
input[type='tel']::-webkit-inner-spin-button,
input[type='tel']::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type='text']:hover,
input[type='number']:hover,
input[type='email']:hover,
input[type='tel']:hover {
  border: 2px solid var(--color-logo);
}

input[type='text']::placeholder,
input[type='number']::placeholder,
input[type='email']::placeholder,
input[type='tel']::placeholder {
  font-family: 'Montserrat';
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  color: var(--color-grey);
}

input[type='text']:focus,
input[type='number']:focus,
input[type='email']:focus,
input[type='tel']:focus {
  outline: 0;
  border: 2px solid transparent;
}

.custom-select {
  position: relative;
  z-index: 11;
  border: 4px solid #fff;
  border-radius: 30px;
}

.custom-select button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 48px;
  color: var(--color-logo);
  padding: 0 24px;
  border-radius: 30px;
  font-weight: 600;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.custom-select button svg {
  transform: rotate(0deg);
  transition: transform 0.3s ease;
}

.custom-select.active button::after,
.custom-select button[aria-expanded='true']::after {
  transform: rotate(-180deg);
}

.custom-select ul {
  position: absolute;
  left: 0;
  right: 0;
  top: 61px;
  border-radius: 15px;
  max-height: 400px;
  overflow-y: auto;
  list-style-type: none;
  padding: 8px 0;
  opacity: 0;
  background-color: #fff;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  pointer-events: none;
  z-index: 2;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
}

.custom-select ul.top {
  transform: translateY(10px);
  top: -380px;
}

.custom-select ul li + li {
  border-top: 1px solid var(--color-grey-light);
}

.custom-select ul li {
  padding: 12px 24px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  color: var(--color-green-dark);
}

.custom-select ul li:hover {
  background: var(--color-green-light);
}

.custom-select ul a {
  display: block;
}

.custom-select.active ul,
.custom-select ul.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.section {
  padding-top: 100px;
}

.h-section {
  text-align: center;
  margin-bottom: 32px;
}

.link:hover {
  color: var(--color-logo-hover);
}

.link-blue {
  color: var(--color-blue);
  transition: color 0.45s cubic-bezier(0.25, 1, 0.33, 1);
}

.link-blue:hover {
  color: var(--color-blue-hover);
}

.link-logo {
  color: var(--color-logo);
  transition: color 0.45s cubic-bezier(0.25, 1, 0.33, 1);
}

.link-logo:hover {
  color: var(--color-logo-hover);
}

.outlined-link:hover {
  color: var(--color-logo-hover);
}

.outlined-link:hover::after {
  background-color: var(--color-logo-hover);
}

.dash-list li {
  position: relative;
  padding-left: 32px;
}

.dash-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  top: 0;
  padding-left: 2px;
}

.main-slider-section__button a {
  display: inline-block;
  text-align: center;
}

@media (max-width: 767px) {
  .main-slider-section__button a {
    width: 100%;
  }
}

.chat-icon {
  position: fixed;
  bottom: 35px;
  right: 15px;
  z-index: 30;
  height: 90px;
  width: 90px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background-color: var(--color-logo-dark);
  color: #fff;
  transition-duration: 0.6s;
  transition-timing-function: ease;
  transition-property: color, background-color;
}

.chat-icon._white {
  background-color: #fff;
  color: var(--color-logo-dark);
}

.chat-icon:hover {
  background-color: var(--color-logo-hover);
}

[data-tab-content-wrapper] {
  padding-top: 2px;
  transition: padding-top 0.6s ease;
}

[data-tab-content] {
  position: absolute !important;
  top: 0;
  left: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

[data-tab-content]._active {
  pointer-events: auto;
  opacity: 1;
}

[data-tab-link] {
  white-space: nowrap;
}

.nakhimov-logo-section {
  position: relative;
  overflow: hidden;
}

.nakhimov-logo-section__logo {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.nakhimov-logo-section__logo img {
  /* height: 3200px; */
  width: 2862px;
}

.nakhimov-logo-section__logo--center {
  top: -840px;
  left: 110%;
}

.nakhimov-logo-section__logo--center img {
  height: 3077px;
  width: 2753px;
}

.nakhimov-logo-section section {
  position: relative;
  z-index: 5;
}

.blue-section {
  position: relative;
  overflow: hidden;
  background-color: var(--color-blue-dark);
  color: #fff;
  padding: 100px 0;
}

.blue-section .container {
  position: relative;
  z-index: 5;
}

.blue-section__lines,
.blue-section__lines {
  position: absolute;
  z-index: 2;
}

.blue-section__lines img,
.blue-section__lines img {
  height: 400px;
}

.blue-section__lines--top-left {
  top: 0;
  left: 0;
  transform: translate(17%, -27%) rotate(45deg);
}

.blue-section__lines--bottom-right {
  bottom: 0;
  right: 0;
  transform: translate(-7%, 27%) rotate(45deg);
}

.blue-section__lines--bottom-right img {
  transform: scaleX(-1);
}

.blue-section__lines--top-right {
  top: 0;
  right: 0;
  transform: translate(-17%, -27%) rotate(-45deg);
}

.blue-section__lines--bottom-left {
  bottom: 0;
  left: 0;
  transform: translate(7%, 27%) rotate(-45deg);
}

.blue-section__lines--bottom-left img {
  transform: scaleX(-1);
}

.back-link {
  margin: 32px 0;
}

.back-link__arrow {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  padding-right: 16px;
}

.back-link__arrow::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 2px;
  width: 19px;
  transform: translateY(-50%);
  height: 1px;
  background-color: #000;
  transition: background-color 0.3s cubic-bezier(0.52, 0.01, 0.16, 1), width 0.3s ease;
}

.back-link a {
  position: relative;
  font-family: 'RobotoCondensed';
  display: inline-block;
  color: #000;
  padding-left: 36px;
  transition: color 0.3s cubic-bezier(0.52, 0.01, 0.16, 1), padding-left 0.3s ease;
}

.back-link a:hover {
  color: var(--color-logo);
  padding-left: 46px;
}

.back-link a:hover .back-link__arrow::after {
  width: 29px;
  background-color: var(--color-logo);
}

.main-slider-section {
  position: relative;
  overflow: hidden;
}

.main-slider-section::before {
  content: '';
  position: absolute;
  inset: 0;
  display: block;
  z-index: 8;
  background: linear-gradient(180deg, rgba(0, 13, 28, 0) 24.74%, rgba(0, 13, 28, 0.5) 51.78%);
}

.main-slider-section::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 80px;
  border-top-left-radius: 30px;
  border-top-right-radius: 30px;
  background-color: #fff;
  z-index: 10;
}

.main-slider-section__content-wrapper {
  position: absolute;
  z-index: 10;
  inset: 65px 0 24px;
  display: flex;
  flex-direction: column;
  padding-bottom: 56px;
}

.main-slider-section .container {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: end;
  gap: 32px;
  height: 100%;
}

.main-slider-section__content {
  display: flex;
  flex-direction: column;
  gap: 32px;
  color: #fff;
}

.main-slider-section__text-wrapper {
  position: relative;
}

.main-slider-section__text {
  position: absolute;
  bottom: 0;
  left: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.main-slider-section__text .text-subtitle {
  margin-bottom: 8px;
}

.main-slider-section__text._active {
  position: relative;
  opacity: 1;
  pointer-events: auto;
}

.main-slider-section h1 {
  margin-bottom: 16px;
  font-size: 46px !important;
}

.main-slider-section ul {
  max-width: 616px;
}

.main-slider-section li + li {
  margin-top: 8px;
}

.main-slider-section__pagination {
  display: flex;
  gap: 10px;
  margin-bottom: 16px;
}

.main-slider-section .swiper-pagination-bullet {
  --progress: 0;
  position: relative;
  display: block;
  flex-grow: 1;
  height: 2px;
  background-color: var(--color-grey);
}

.main-slider-section .swiper-pagination-bullet::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 14px;
  cursor: pointer;
  top: -7px;
  left: 0;
  z-index: 20;
}

.main-slider-section .swiper-pagination-bullet::after {
  content: '';
  display: block;
  background-color: #fff;
  height: 100%;
  width: var(--progress);
  max-width: 100%;
}

.main-slider-section__button a {
  display: inline-block;
}

.main-swiper {
  height: calc(100vh + 80px);
  width: 100%;
}

.main-swiper .swiper-slide {
  position: relative;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.6s ease !important;
}

.main-swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-user-select: none;
  user-select: none;
}

.facade-section {
  position: relative;
  padding-top: 20px;
  color: var(--color-logo-dark);
}

.facade-section__logo {
  padding-bottom: 32px;
  margin-bottom: 32px;
  border-bottom: 1px solid var(--color-grey);
}

.facade-section__logo img {
  width: 30%;
  height: auto;
  float: left;
  margin-right: 20px;
  margin-bottom: 20px;
}
@media (max-width: 750px) {
	.facade-section__logo img {
		width: 100%;
		margin-right: 0;
		margin-bottom: 20px;
	}
}

.facade-section__content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.facade-section__text {
  text-align: center;
}

.facade-section h1 {
  margin-bottom: 24px;
}

.facade-section h1 span {
  color: var(--color-logo);
}

.facade-section__image {
  height: 450px;
  border-radius: 10px;
  overflow: hidden;
}

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

.features-section .container {
  position: relative;
  z-index: 5;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.features-section__images-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  height: 300px;
}

.features-section__image {
  width: 100%;
  height: 100%;
}

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

.features-section__content-wrapper {
  text-align: center;
}

.features-section h1 {
  margin-bottom: 32px;
}

.features-section h1 span {
  color: var(--color-logo);
}

.features-section__tabs-wrapper {
  display: grid;
  grid-template-columns: repeat(10, auto);
  grid-template-rows: auto;
  gap: 16px;
  padding-bottom: 32px;
}

.features-section__text-wrapper {
  position: relative;
}

.infrastructure-section {
  text-align: center;
}

.infrastructure-section h1 {
  display: flex;
  flex-direction: column;
  margin-bottom: 32px;
}

.infrastructure-section h1 span {
  color: var(--color-logo);
}

.infrastructure-section__images-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 300px 200px 200px;
  gap: 8px;
  margin-bottom: 32px;
}

.infrastructure-section__image {
  overflow: hidden;
  border-radius: 10px;
}

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

.infrastructure-section__text-wrapper {
  width: 100%;
  max-width: 730px;
  margin: 0 auto;
}

.infrastructure-section__text {
  margin-bottom: 24px;
}

.infrastructure-section .text-subtitle {
  color: var(--color-logo);
}

.repair-section .container {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.repair-section__image {
  height: 300px;
  overflow: hidden;
  border-radius: 10px;
}

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

.repair-section__content {
  text-align: center;
}

.repair-section h1 {
  margin-bottom: 24px;
}

.repair-section h1 span {
  color: var(--color-logo);
}

.plans-section {
  text-align: center;
}

.plans-section h1 {
  margin-bottom: 24px;
}

.plans-section__text-wrapper {
  margin-bottom: 32px;
}

.plans-section__cards-container .plans-swiper {
  padding: 0 24px;
}

.plan-card {
  text-align: center;
}

.plan-card__image {
  display: flex;
  align-items: center;
  background-color: #fff;
  border-radius: 10px;
  border: 2px solid var(--color-grey-light);
  overflow: hidden;
  min-height: 320px;
  width: 100%;
  margin-bottom: 16px;
}

.plan-card__image img {
  height: auto;
  width: 100%;
}

.plans-swiper-progress-bar {
  display: none;
}

.choose-section h1 {
  text-align: center;
  margin-bottom: 32px;
}

.svg-layout {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
}

.svg-layout a {
  color: transparent;
  transition: color 0.3s ease;
}

.svg-layout a:hover {
  color: rgba(114, 177, 221, 0.6);
}

.choose-apartment {
  position: relative;
}

.choose-apartment__image img {
  width: 100%;
  height: auto;
}

.choose-label {
  position: absolute;
  z-index: 7;
  padding: 10px 24px 6px;
  background-color: #fff;
  border-radius: 10px;
  -webkit-user-select: none;
  user-select: none;
  pointer-events: none;
  transition-duration: 0.3s;
  transition-timing-function: ease;
  transition-property: color, background-color;
}

.choose-label__arrow {
  position: absolute;
  left: 50%;
  bottom: -4px;
  transform: translate(-50%, 100%);
}

.choose-label__arrow svg {
  fill: #fff;
  transition: fill 0.3s ease;
}

.choose-label--nakhimov {
  top: 9%;
  left: 35%;
}

@media (min-width: 350px) {
  .choose-label--nakhimov {
    top: 9%;
    left: 34%;
  }
}

.choose-label--apatova {
  top: 50%;
  left: 41.5%;
}

.choose-apartment:has(.choose-apartment__link--nakhimov:hover) .choose-label--nakhimov {
  background-color: var(--color-logo);
  color: #fff;
}

.choose-apartment:has(.choose-apartment__link--nakhimov:hover) .choose-label--nakhimov svg {
  fill: var(--color-logo);
}

.choose-apartment:has(.choose-apartment__link--apatova:hover) .choose-label--apatova {
  background-color: var(--color-logo);
  color: #fff;
}

.choose-apartment:has(.choose-apartment__link--apatova:hover) .choose-label--apatova svg {
  fill: var(--color-logo);
}

.pay-section h1 {
  text-align: center;
  margin-bottom: 32px;
}

.pay-section__cards-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: repeat(3, auto);
  gap: 48px 20px;
}

.pay-section__image {
  height: 300px;
  border-radius: 10px;
  overflow: hidden;
}

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

.pay-section .text-subtitle {
  margin: 24px 0 16px;
  color: var(--color-logo);
}

.mortgage-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin-top: 8px;
}

.mortgage-grid__item {
  display: flex;
  align-items: center;
  gap: 4px 16px;
  grid-column: span 2;
  padding: 9px 16px;
  background-color: var(--color-grey-light);
  border-radius: 10px;
  color: #000;
}

.mortgage-grid__item span {
  color: var(--color-logo);
  white-space: nowrap;
}

.mortgage-grid__item .text-button {
  font-family: 'RobotoCondensed';
}

.docs-section .container {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.docs-section h1 {
  text-align: center;
}

.docs-section__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: 8px;
}

.docs-section__item {
  padding: 16px 24px;
  background-color: #fff;
  border-radius: 10px;
  color: #000;
  grid-column: span 3;
}

.map {
  position: relative;
  width: 100%;
  height: 600px;
  background-color: #eee;
}

.map__links-select {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  padding: 16px;
  background-color: #fff;
  border-radius: 10px;
}

.map__links-select .custom-select {
  color: var(--color-logo) !important;
}

.map__links-select .show-all-button {
  padding-top: 16px;
  margin-top: 16px;
  border-top: 1px solid var(--color-grey-light);
}

.map__links-select .button-primary {
  width: 100%;
}

.links-list {
  display: none;
}

.map-links-list li {
  position: relative;
}

.map-links-list input[type='radio'] {
  position: absolute;
  width: 100%;
  height: 100%;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

[data-input-radio-wrapper] {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
}

[data-input-radio] {
  position: relative;
  display: block;
  flex: 0 1 50%;
}

[data-input-radio] input[type='checkbox'],
[data-input-radio] input[type='radio'] {
  position: absolute;
  width: 100%;
  height: 100%;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.filter-section {
  margin-bottom: 100px;
}

.filter-section__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.filter-item {
  text-align: center;
  grid-column: span 4;
}

.filter-item__image {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  border-radius: 10px;
  border: 2px solid var(--color-grey-light);
  overflow: hidden;
  min-height: 320px;
  width: 100%;
  margin-bottom: 16px;
}

.filter-item__image img {
  height: auto;
  width: 100%;
  max-width: 350px;
}

.filter-item .text-button {
  font-family: 'RobotoCondensed';
}

.filter-item__size {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin: 8px 0 16px;
}

.filter-item__size .text-info {
  color: var(--color-logo);
}

.filter-item button {
  display: inline-block;
  width: 100%;
}

.apartment-section__content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.apartment-section__image {
  height: 300px;
  flex: 0 0 300px;
  border: 2px solid var(--color-grey-light);
  border-radius: 10px;
  overflow: hidden;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.apartment-section__image img {
  width: 100%;
  height: auto;
  max-width: 650px;
}

.apartment-section__image svg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.apartment-section__image svg polygon,
.apartment-section__image svg path {
  opacity: 0;
  transition: all 0.3s ease;
}
.apartment-section__image svg a:hover polygon,
.apartment-section__image svg a:hover path {
  fill: var(--color-logo);
  opacity: 0.5;
}

.apartment-info {
  border: 2px solid var(--color-grey-light);
  border-radius: 10px;
  padding: 16px;
  margin-bottom: 8px;
  background-color: #fff;
  color: #000;
  text-align: center;
}

.apartment-info__items-wrapper {
  display: flex;
}

.apartment-info__item {
  flex: 0 1 50%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 8px;
}

.apartment-info__item:nth-child(1) {
  padding-right: 8px;
}

.apartment-info__item:nth-child(2) {
  border-left: 2px solid var(--color-grey-light);
  padding-left: 8px;
}

.apartment-info__item .text-subtitle {
  color: var(--color-logo);
}

.apartment-info__title {
  margin-bottom: 16px;
}

.blue-block {
  border-radius: 10px;
  background-color: var(--color-blue);
  color: #fff;
  padding: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.request-section h1 {
  margin-bottom: 32px;
}

.request-section__content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.request-section form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.request-section form .text-info {
  color: var(--color-grey);
}

.flat-section__content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.flat-section__image {
  min-height: 300px;
  border: 2px solid var(--color-grey-light);
  border-radius: 10px;
  overflow: hidden;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.flat-section__image img {
  width: 100%;
  height: 100%;
  max-width: 350px;
  object-fit: contain;
}

.flat-section__info-wrapper {
  flex: 0 1 50%;
}

.flat-info {
  border: 2px solid var(--color-grey-light);
  border-radius: 10px;
  background-color: #fff;
  padding: 16px;
}

.flat-info__items-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.flat-info__item {
  text-align: center;
}

.flat-info__item:nth-child(1),
.flat-info__item:nth-child(2) {
  border-bottom: 2px solid var(--color-grey-light);
  padding-bottom: 20px;
}

.flat-info__item:nth-child(2) > *,
.flat-info__item:nth-child(4) > * {
  border-left: 2px solid var(--color-grey-light);
}

.flat-info__item:nth-child(3),
.flat-info__item:nth-child(4) {
  padding: 30px 0;
}

.flat-info .text-subtitle {
  padding-top: 8px;
  color: var(--color-logo);
}

.flat-info__image {
  border-radius: 10px;
  overflow: hidden;
}

.flat-info__image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

[data-popup] {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 150;
  padding: 15px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
}

[data-popup]._open {
  opacity: 1;
  visibility: visible;
}

[data-popup-shadow] {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
  background-color: rgba(0, 0, 0, 0.4);
}

[data-popup-wrapper] {
  position: absolute;
  z-index: 10;
  top: 50%;
  left: 50%;
  width: 88%;
  max-width: 530px;
  transform: translate(-50%, -50%);
  background-color: #fff;
  padding: 80px 24px 48px;
  border-radius: 10px;
  text-align: center;
}

[data-popup-wrapper] h1 {
  margin-bottom: 32px;
}

[data-popup-wrapper] .request-form {
  margin-top: 32px;
}

[data-popup-wrapper] form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

[data-popup-wrapper] form .text-info {
  text-align: left;
  color: var(--color-grey);
}

[data-popup-slide] {
  overflow: auto;
  max-height: 60vh;
  display: none;
}

[data-popup-slide]._active {
  display: block;
}

[data-popup-close-btn] {
  position: absolute;
  top: 30px;
  right: 30px;
}

[data-popup-close-btn] svg {
  transition: fill 0.37s cubic-bezier(0.25, 1, 0.33, 1);
  fill: var(--color-grey);
}

[data-popup-close-btn]:hover svg {
  fill: var(--color-logo);
}

@media (min-width: 400px) {
  .choose-label--nakhimov {
    top: 9%;
    left: 33%;
  }
}

@media (min-width: 400px) {
  .features-section__image img[data-tab-content='safe'] {
    transform: translateY(50px);
  }
}

@media (min-width: 500px) {
  .flat-info__image img {
    height: 300px;
  }
}

@media (min-width: 580px) {
  .choose-label--nakhimov {
    top: 10%;
    left: 24.5%;
  }
}

@media (min-width: 767px) {
  .container {
    padding-left: 40px;
    padding-right: 40px;
  }

  .header__shared-block {
    display: flex;
    gap: 48px;
  }

  .header__choose-flat {
    display: inline-block;
  }

  .header__logo svg {
    height: 34px;
  }

  .header._open .container {
    border-bottom: 1px solid #b2b5c2;
  }

  .footer__top-links {
    flex-direction: row;
    margin-bottom: 48px;
  }

  .footer .button-outline-dark {
    width: auto;
  }

  .footer__contact-item {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .footer__contact {
    flex: 0 0 65.4%;
  }

  .footer__words-wrapper {
    height: 300px;
    margin: 0 -40px;
  }

  .footer__word-line--nakhimov img {
    height: 97px;
    width: 625px;
    padding-left: 0;
    transform: translateX(-105px);
  }

  .footer__word-line--kvartal {
    margin-top: -16px;
  }

  .footer__word-line--kvartal img {
    height: 112px;
    width: 1230px;
    transform: translateX(-155px);
  }

  .pixel-label .container {
    flex-direction: row;
    justify-content: center;
    gap: 16px;
  }
  .copyright-label .container {
    justify-content: start;
    gap: 16px;
  }

  h1 {
    font-size: 48px;
  }

  .section {
    padding-top: 120px;
  }

  .h-section {
    margin-bottom: 48px;
  }

  .nakhimov-logo-section__logo img {
    /* height: 3040px; */
    width: 2721px;
  }

  .nakhimov-logo-section__logo--center {
    top: -730px;
    left: 60%;
  }

  .nakhimov-logo-section__logo--center img {
    height: 2653px;
    width: 2373px;
  }

  .blue-section {
    padding: 120px 0;
  }

  .blue-section__lines img,
  .blue-section__lines img {
    height: 500px;
  }

  .blue-section__lines--top-left {
    transform: translate(37%, -24%) rotate(45deg);
  }

  .blue-section__lines--bottom-right {
    transform: translate(-20px, 120px) rotate(45deg);
  }

  .blue-section__lines--top-right {
    transform: translate(-37%, -24%) rotate(-45deg);
  }

  .blue-section__lines--bottom-left {
    transform: translate(20px, 120px) rotate(-45deg);
  }

  .back-link {
    margin: 48px 0;
  }

  .main-slider-section::before {
    background: linear-gradient(180deg, rgba(0, 13, 28, 0) 14.75%, rgba(0, 13, 28, 0.5) 58.63%);
  }

  .main-slider-section::after {
    border-top-left-radius: 60px;
    border-top-right-radius: 60px;
  }

  .main-slider-section .container {
    gap: 48px;
  }

  .main-slider-section__content {
    gap: 48px;
  }

  .main-slider-section h1 {
    margin-bottom: 18px;
  }

  .facade-section {
    padding-top: 40px;
  }

  .facade-section__logo {
    padding-bottom: 48px;
    margin-bottom: 48px;
  }

  .features-section .container {
    gap: 48px;
  }

  .features-section__images-wrapper {
    height: 450px;
  }

  .features-section__tabs-wrapper {
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(3, auto);
    gap: 8px;
  }

  .features-section .button-outline-light:nth-child(1),
  .features-section .button-outline-light:nth-child(2),
  .features-section .button-outline-light:nth-child(3),
  .features-section .button-outline-light:nth-child(4),
  .features-section .button-outline-light:nth-child(5),
  .features-section .button-outline-light:nth-child(6) {
    grid-column: span 4;
  }

  .features-section .button-outline-light:nth-child(7),
  .features-section .button-outline-light:nth-child(8),
  .features-section .button-outline-light:nth-child(9),
  .features-section .button-outline-light:nth-child(10) {
    grid-column: span 3;
  }

  .infrastructure-section h1 {
    margin-bottom: 48px;
  }

  .infrastructure-section__images-wrapper {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 300px 200px;
    gap: 20px;
    margin-bottom: 48px;
  }

  .infrastructure-section__image:nth-child(1) {
    grid-column: 1 / span 2;
  }

  .repair-section .container {
    gap: 48px;
  }

  .repair-section__image {
    height: 450px;
  }

  .plans-section__text-wrapper {
    margin-bottom: 48px;
  }

  .plans-section__cards-container .plans-swiper {
    padding: 0 40px;
  }

  .plan-card__image {
    height: auto;
    min-height: 300px;
  }

  .choose-section h1 {
    margin-bottom: 48px;
  }

  .pay-section h1 {
    margin-bottom: 48px;
  }

  .pay-section__cards-wrapper {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(3, auto);
  }

  .pay-section__image {
    height: 400px;
  }

  .mortgage-grid {
    margin-top: 16px;
  }

  .mortgage-grid__item:nth-child(1),
  .mortgage-grid__item:nth-child(2) {
    grid-column: span 1;
  }

  .docs-section .container {
    gap: 48px;
  }

  .docs-section__item:nth-child(1),
  .docs-section__item:nth-child(2),
  .docs-section__item:nth-child(3) {
    grid-column: span 1;
  }

  .map__links-select {
    display: none;
  }

  .links-list {
    display: block;
    position: absolute;
    top: 50%;
    left: 40px;
    transform: translateY(-50%);
    z-index: 55;
    width: 300px;
    padding: 16px 6px;
    background-color: #fff;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
  }

  .links-list .text-subtitle {
    color: var(--color-logo);
    text-align: center;
    margin: 0 10px;
    padding-bottom: 16px;
    margin-bottom: 16px;
    border-bottom: 1px solid var(--color-grey-light);
  }

  .links-list ul {
    margin-bottom: 16px;
  }

  .links-list li + li {
    margin-top: 6px;
  }

  .links-list li {
    display: grid;
    align-items: center;
    grid-template-columns: auto auto 1fr;
    gap: 16px;
    padding: 5px 16px 5px 10px;
    border-radius: 10px;
  }

  .links-list li._checked,
  .links-list li:hover {
    background-color: var(--color-grey-light);
  }

  .links-list__count {
    font-family: 'RobotoCondensed';
    justify-self: end;
    color: var(--color-logo);
  }

  .links-list__button {
    padding: 0 10px;
  }

  .links-list .button-primary {
    width: 100%;
  }

  [data-input-radio-wrapper] {
    flex-direction: row;
    gap: 30px;
  }

  .filter-section {
    margin-bottom: 120px;
  }

  .filter-section__grid {
    gap: 48px 20px;
  }

  .filter-item {
    grid-column: span 2;
  }

  .filter-item__image {
    height: auto;
    min-height: 300px;
  }

  .apartment-section__content-wrapper {
    gap: 20px;
  }

  .apartment-section__image {
    height: 350px;
    flex: 0 0 350px;
  }

  .apartment-info {
    margin-bottom: 16px;
  }

  .blue-block {
    flex-direction: row;
    gap: 16px;
    justify-content: center;
  }

  .request-section h1 {
    margin-bottom: 48px;
  }

  .flat-section__content-wrapper {
    gap: 20px;
  }

  .flat-section__image {
    min-height: 450px;
  }

  [data-popup-wrapper] {
    padding: 100px 48px 64px;
  }

  [data-popup-wrapper] .request-form {
    margin-top: 48px;
  }
}

@media (min-width: 767px) and (min-width: 1023px) {
  .links-list {
    padding: 24px 14px;
  }
}

@media (min-width: 767px) and (min-width: 1299px) {
  .links-list {
    left: 80px;
    padding: 32px 22px;
    width: 360px;
  }

  .links-list .text-subtitle {
    padding-bottom: 24px;
    margin-bottom: 24px;
  }

  .links-list ul {
    margin-bottom: 24px;
  }
}

@media (min-width: 767px) and (min-width: 1600px) {
  .links-list {
    left: 10%;
    width: 380px;
  }
}

@media (min-width: 1023px) {
  .header__tel {
    display: inline-block;
  }

  .footer__contact {
    flex: 0 0 74.7%;
  }

  .footer__words-wrapper {
    height: 414px;
  }

  .footer__word-line--nakhimov {
    margin-top: 6px;
    gap: 68px;
  }

  .footer__word-line--nakhimov img {
    height: 135px;
    width: 870px;
    transform: translateX(-65px);
  }

  .footer__word-line--kvartal {
    margin-top: -25px;
    gap: 68px;
  }

  .footer__word-line--kvartal img {
    height: 155px;
    width: 1702px;
    transform: translateX(-393px);
  }

  .chat-icon {
    bottom: 30px;
    right: 30px;
  }

  .nakhimov-logo-section__logo img {
    /* height: 3000px; */
    width: 2595px;
  }

  .nakhimov-logo-section__logo--center {
    top: -830px;
    left: 50%;
  }

  .nakhimov-logo-section__logo--center img {
    height: 2990px;
    width: 2675px;
  }

  .blue-section__lines--top-left.blue-section__lines--sm {
    top: -50px;
    left: -50px;
  }

  .blue-section__lines--bottom-right.blue-section__lines--sm {
    bottom: -50px;
    right: -50px;
  }

  .blue-section__lines--top-right.blue-section__lines--sm {
    top: -50px;
    right: -50px;
  }

  .blue-section__lines--bottom-left.blue-section__lines--sm {
    bottom: -50px;
    left: -50px;
  }

  .main-slider-section::before {
    background: linear-gradient(270deg, rgba(0, 13, 28, 0) 31.6%, rgba(0, 13, 28, 0.5) 70.25%);
  }

  .main-slider-section__content-wrapper {
    inset: 65px 0 34px;
    padding-bottom: 46px;
  }

  .main-slider-section .container {
    gap: 180px;
  }

  .facade-section__image {
    height: 600px;
  }

  .infrastructure-section__images-wrapper {
    grid-template-columns: repeat(17, 1fr);
    grid-template-rows: repeat(9, 50px);
    gap: 0;
  }

  .infrastructure-section__image:nth-child(1) {
    grid-column: 1 / span 4;
    grid-row: 1 / span 4;
    margin-right: 10px;
  }

  .infrastructure-section__image:nth-child(2) {
    grid-column: 5 / span 9;
    grid-row: 1 / span 9;
    margin: 0 10px;
  }

  .infrastructure-section__image:nth-child(3) {
    grid-column: 14 / span 4;
    grid-row: 6 / span 4;
    margin-left: 10px;
  }

  .plans-section__cards-container .plans-swiper {
    padding: 0;
  }

  .plans-section__cards-container .swiper-wrapper {
    display: flex;
    gap: 20px;
  }

  .plans-section .swiper-slide {
    flex-shrink: 1;
  }

  .choose-label--nakhimov {
    top: 11.5%;
    left: 25%;
  }

  .pay-section__cards-wrapper {
    grid-template-columns: 1fr repeat(2, 27.2%);
    grid-template-rows: auto;
  }

  .apartment-section__content-wrapper {
    flex-direction: row;
  }

  .apartment-section__image {
    height: auto;
    flex-grow: 1;
  }

  .apartment-section__info-wrapper {
    flex: 0 0 43.4%;
  }

  .request-section__content-wrapper {
    flex-direction: row;
    justify-content: space-between;
  }

  .request-section__text {
    flex: 0 0 43.2%;
  }

  .request-section__form {
    flex: 0 0 43.2%;
  }

  .flat-section__content-wrapper {
    flex-direction: row;
  }

  .flat-section__image {
    flex: 0 1 50%;
    height: auto;
    height: 530px;
  }

  .flat-section__image img {
    max-width: 450px;
  }

  [data-popup-wrapper] {
    max-width: 730px;
  }

  [data-popup-wrapper] .request-form {
    margin-top: 64px;
  }
}

@media (min-width: 1299px) {
  .container {
    padding-left: 80px;
    padding-right: 80px;
  }

  main {
    padding-top: 90px;
  }

  .header__container {
    height: 90px;
  }

  .header__list {
    display: flex;
    gap: 32px;
  }

  .header__shared-block {
    gap: 64px;
  }

  .header__logo svg {
    height: 46px;
  }

  [data-burger-open-button] {
    display: none;
  }

  .footer__wrapper {
    flex-direction: row;
  }

  .footer__content-wrapper {
    flex: 0 0 48.7%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-right: 1px solid var(--color-grey);
  }

  .footer__top-links {
    flex-direction: column;
  }

  .footer .button-outline-dark {
    width: 305px;
  }

  .footer__contacts-wrapper {
    border-bottom: none;
  }

  .footer__contact {
    flex: 0 0 57%;
  }

  .footer__words-wrapper {
    height: 690px;
    margin: 0;
    margin-right: -80px;
    flex-grow: 1;
  }

  .footer__word-line--nakhimov img {
    transform: translateX(0);
  }

  .footer__word-line--kvartal img {
    transform: translateX(-850px);
  }

  .chat-icon {
    bottom: 55px;
    right: 55px;
  }

  body {
    font-size: 18px;
  }

  h1 {
    font-size: 56px;
  }

  .text-subtitle {
    font-size: 24px;
  }

  .nah-text-button {
    font-size: 20px;
  }

  .button-primary {
    font-size: 20px;
  }

  .section {
    padding-top: 160px;
  }

  .h-section {
    margin-bottom: 64px;
  }

  .nakhimov-logo-section__logo img {
    /* height: 3805px; */
    width: 3403px;
  }

  .nakhimov-logo-section__logo--center {
    top: -818px;
    left: 40%;
  }

  .nakhimov-logo-section__logo--center img {
    height: 2990px;
    width: 2875px;
  }

  .blue-section {
    padding: 160px 0;
  }

  .blue-section__lines img,
  .blue-section__lines img {
    height: 600px;
  }

  .back-link {
    margin: 64px 0;
  }

  .main-slider-section::before {
    background: linear-gradient(270deg, rgba(0, 13, 28, 0) 37.64%, rgba(0, 13, 28, 0.5) 64.36%);
  }

  .main-slider-section__content-wrapper {
    inset: 90px 0 34px;
  }

  .main-slider-section .container {
    gap: 120px;
  }

  .main-slider-section__content {
    gap: 64px;
  }

  .main-slider-section h1 {
    max-width: 555px;
    margin-bottom: 48px;
	font-size: 46px !important;
  }

  .facade-section {
    padding-top: 80px;
  }

  .facade-section__logo {
    padding-bottom: 64px;
    margin-bottom: 64px;
  }

  .facade-section__content-wrapper {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 130px;
  }

  .facade-section__text {
    flex: 0 0 40.4%;
  }

  .facade-section h1 {
    margin-bottom: 64px;
  }

  .facade-section__image {
    flex-grow: 1;
  }

  .features-section .container {
    flex-direction: row;
    gap: 128px;
  }

  .features-section__images-wrapper {
    height: 665px;
    flex-grow: 1;
  }

  .features-section__content-wrapper {
    flex: 0 0 48.7%;
  }

  .features-section .button-outline-light {
    grid-column: span 6 !important;
	font-size: 16px;
  }

  .infrastructure-section h1 {
    margin-bottom: 64px;
  }

  .infrastructure-section__images-wrapper {
    grid-template-rows: repeat(12, 50px);
    margin-bottom: 64px;
  }

  .infrastructure-section__image:nth-child(1) {
    grid-row: 1 / span 8;
    margin-right: 0;
  }

  .infrastructure-section__image:nth-child(2) {
    grid-row: 1 / span 12;
    margin: 0 30px;
  }

  .infrastructure-section__image:nth-child(3) {
    grid-row: 5 / span 8;
    margin-left: 0;
  }

  .infrastructure-section__text-wrapper {
    max-width: 750px;
  }

  .infrastructure-section__text {
    margin-bottom: 32px;
  }

  .repair-section .container {
    flex-direction: row;
    align-items: center;
    gap: 130px;
  }

  .repair-section__image {
    height: 600px;
    flex-grow: 1;
  }

  .repair-section__content {
    flex: 0 0 40.4%;
  }

  .repair-section__content {
    flex: 0 0 40.5%;
  }

  .repair-section h1 {
    margin-bottom: 64px;
  }

  .plans-section h1 {
    margin-bottom: 64px;
  }

  .plans-section__text-wrapper {
    max-width: 745px;
    margin: 0 auto 64px;
  }

  .plans-section__cards-container .swiper-wrapper {
    gap: 30px;
  }

  .plan-card__image {
    min-height: 500px;
  }

  .choose-section h1 {
    margin-bottom: 64px;
  }

  .pay-section h1 {
    margin-bottom: 64px;
  }

  .pay-section__cards-wrapper {
    gap: 30px;
  }

  .docs-section .container {
    flex-direction: row;
    gap: 130px;
  }

  .docs-section h1 {
    flex: 0 0 40.4%;
  }

  .docs-section__grid {
    flex-grow: 1;
  }

  .map {
    height: 700px;
  }

  [data-input-radio-wrapper] {
    margin-bottom: 32px;
  }

  .filter-section {
    margin-bottom: 160px;
  }

  .filter-item {
    grid-column: span 1;
  }

  .filter-item__image {
    min-height: 500px;
    margin-bottom: 24px;
  }

  .filter-item__size {
    margin: 8px 24px;
  }

  .apartment-section__content-wrapper {
    gap: 30px;
  }

  .apartment-section__info-wrapper {
    flex: 0 0 40.4%;
  }

  .apartment-info {
    padding: 24px;
    margin-bottom: 30px;
  }

  .apartment-info__title {
    margin-bottom: 24px;
  }

  .blue-block {
    padding: 24px;
  }

  .request-section h1 {
    margin-bottom: 64px;
  }

  .request-section__text {
    flex: 0 0 48.7%;
  }

  .request-section__form {
    flex: 0 0 40.1%;
  }

  .flat-section__content-wrapper {
    gap: 30px;
  }

  .flat-section__image {
    height: 673px;
  }

  .flat-info {
    padding: 24px;
  }

  .flat-info__item:nth-child(1),
  .flat-info__item:nth-child(2) {
    padding-bottom: 30px;
  }

  .flat-info__item:nth-child(3),
  .flat-info__item:nth-child(4) {
    padding: 30px 0;
  }

  .flat-info__image img {
    height: 400px;
  }

  [data-popup-wrapper] {
    padding: 120px 64px 80px;
    max-width: 650px;
  }
}

@media (min-width: 1600px) {
  .text-button {
    font-size: 20px;
  }

  .footer__content-wrapper {
    flex: 0 0 50%;
  }

  .footer__words-wrapper {
    height: 835px;
  }

  .footer__word-line--nakhimov img {
    height: 163px;
    width: 1051px;
  }

  .footer__word-line--kvartal {
    margin-top: -27px;
  }

  .footer__word-line--kvartal img {
    height: 188px;
    width: 2064px;
    transform: translateX(-1030px);
  }

  h1 {
    font-size: 64px;
  }

  .text-subtitle {
    font-size: 24px;
  }

  .button-primary {
    font-size: 20px;
  }

  input[type='text'],
  input[type='number'],
  input[type='email'],
  input[type='tel'] {
    font-size: 18px;
  }

  .section {
    padding-top: 180px;
  }

  .dash-list li {
    padding-left: 40px;
  }

  .nakhimov-logo-section__logo img {
    /* height: 4550px; */
    width: 4690px;
  }

  .nakhimov-logo-section__logo--center {
    left: 50%;
    top: -1330px;
  }

  .nakhimov-logo-section__logo--center img {
    height: 4550px;
    width: 4690px;
  }

  .blue-section {
    padding: 180px 0;
  }

  .blue-section__lines img,
  .blue-section__lines img {
    height: 850px;
  }

  .blue-section__lines--bottom-right {
    transform: translate(-60px, 230px) rotate(45deg);
  }

  .blue-section__lines--bottom-left {
    transform: translate(60px, 230px) rotate(-45deg);
  }

  .main-slider-section::before {
    background: linear-gradient(270deg, rgba(0, 13, 28, 0) 37.64%, rgba(0, 13, 28, 0.5) 64.36%);
  }

  .main-slider-section::after {
    height: 130px;
  }

  .main-slider-section__content-wrapper {
    padding-bottom: 96px;
  }

  .main-slider-section .container {
    gap: 155px;
  }

  .main-slider-section h1 {
    max-width: 616px;
  }

  .main-swiper {
    height: calc(100vh + 130px);
  }

  .facade-section {
    padding-top: 50px;
  }

  .facade-section__content-wrapper {
    gap: 160px;
  }

  .features-section .container {
    gap: 160px;
  }

  .features-section__images-wrapper {
    height: 726px;
  }

  .features-section__content-wrapper {
    flex: 0 0 40.5%;
  }

  .features-section h1 {
    margin-bottom: 64px;
  }

  .features-section .button-outline-light:nth-child(1),
  .features-section .button-outline-light:nth-child(2),
  .features-section .button-outline-light:nth-child(3),
  .features-section .button-outline-light:nth-child(4),
  .features-section .button-outline-light:nth-child(5),
  .features-section .button-outline-light:nth-child(6) {
    grid-column: span 6 !important;
  }

  .features-section .button-outline-light:nth-child(7),
  .features-section .button-outline-light:nth-child(8),
  .features-section .button-outline-light:nth-child(9) {
    grid-column: span 4 !important;
  }

  .features-section .button-outline-light:nth-child(10) {
    grid-column: span 12 !important;
  }

  .repair-section .container {
    gap: 160px;
  }

  .choose-label--nakhimov {
    top: 12.5%;
    left: 29%;
  }

  .choose-label--apatova {
    top: 52%;
    left: 44%;
  }

  .pay-section__cards-wrapper {
    grid-template-columns: 1fr repeat(2, 27.6%);
  }

  .docs-section .container {
    gap: 160px;
  }

  .docs-section h1 {
    flex: 0 0 40.5%;
  }

  .map {
    height: 800px;
  }

  .filter-section {
    margin-bottom: 180px;
  }

  .filter-section__grid {
    gap: 64px 30px;
  }

  .apartment-section__info-wrapper {
    flex: 0 0 40.5%;
  }

  .request-section__text {
    flex: 0 0 49%;
  }

  .request-section__form {
    flex: 0 0 32%;
  }

  [data-popup-wrapper] {
    max-width: 740px;
  }
}

@media (min-width: 1600px) and (max-height: 850px) {
  .main-slider-section .container {
    gap: 80px;
  }
}

@media (min-width: 1680px) {
  .footer__words-wrapper {
    margin-right: 0;
  }
}

@media (max-width: 1299px) {
  .burger-menu {
    display: block;
    position: absolute;
    inset: 64px 0 0;
    width: 100%;
    height: 100vh;
    color: #040038 !important;
    font-family: 'RobotoCondensed' !important;
  }

  .burger-menu._active {
    pointer-events: auto;
  }

  .burger-menu__nav {
    padding-top: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid #b2b5c2;
  }

  .burger-menu li + li {
    margin-top: 24px;
  }

  .burger-menu h3 {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.3;
    text-transform: uppercase;
  }

  .burger-menu__shared-block {
    padding-top: 32px;
    padding-bottom: 32px;
    display: flex;
    flex-direction: column;
    gap: 19px;
  }

  .burger-menu .text-info {
    color: var(--color-grey);
    margin-bottom: 4px;
  }

  .burger-menu .outlined-link {
    text-align: center;
  }

  .footer__word-line:nth-child(4) {
    display: none;
  }

  .footer__word-line:nth-child(5) {
    display: none;
  }
}

@media (max-width: 1023px) {
  .plans-section__cards-container {
    padding: 0;
  }

  .plans-swiper-progress-bar {
    display: block;
    margin: 24px 24px 0;
    height: 2px;
    background-color: var(--color-grey-light);
  }

  .plans-swiper-progress-bar div {
    height: 100%;
    width: 100%;
    background-color: var(--color-logo);
    width: 0;
    transition: width 0.6s ease;
  }

  .choose-apartment__image {
    height: 619px;
  }

  .choose-apartment__image img,
  .choose-apartment__labels-wrapper,
  .choose-apartment .svg-layout {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1067px;
    height: 600px;
    min-width: 600px;
  }
}

@media (max-width: 1023px) and (max-width: 767px) {
  .plans-swiper-progress-bar {
    margin: 32px 40px 0;
  }
}

@media (max-width: 767px) {
  .main-slider-section__pagination {
    margin-bottom: 24px;
  }

  .features-section__tabs-wrapper {
    margin: 0 -24px 16px;
    padding: 0 24px 16px;
    overflow: scroll;
  }

  .mortgage-grid__item {
    flex-wrap: wrap;
  }
}

@media (max-width: 374px) {
  .text-button {
    font-size: 16px;
  }

  body {
    font-size: 14px;
  }
}

@media (max-width: 1299px) and (min-width: 767px) {
  .burger-menu .container {
    display: flex;
    padding-bottom: 48px;
  }

  .burger-menu__nav {
    padding-top: 48px;
    padding-bottom: 0;
    border-bottom: none;
    flex-grow: 1;
  }

  .burger-menu__shared-block {
    padding-top: 48px;
    padding-bottom: 0;
    padding-left: 20px;
    border-left: 1px solid var(--color-grey);
    flex: 0 0 32.8%;
    align-items: start;
  }
}

@media (max-width: 1299px) and (min-width: 1023px) {
  .burger-menu__shared-block {
    flex: 0 0 33.9%;
  }
}

@media (min-width: 767px) and (max-width: 1023px) {
  .pay-section__card:nth-child(1) {
    grid-column: 1 / span 2;
  }
}

@media (max-width: 2000px) {
  .choose-label--nakhimov {
    left: 30%;
  }
  .choose-label--apatova {
    top: 54%;
    left: 46%;
  }
}
@media (max-width: 2400px) {
  .choose-label--nakhimov {
    left: 32%;
  }
  .choose-label--apatova {
    top: 55%;
    left: 46%;
  }
}
/* МОР */
.photo_mop_ul {
	position:absolute;
	top:0;
	bottom:0;
	left:0;
	right:0;
	margin:auto;
	list-style:none;
	width:100%;
	height:100%;
	border-radius:3px;
	overflow:hidden;
	box-shadow:1px 1px 3px 1px;
}
.photo_mop_li {
	position:relative;
	width:33%;
	height:100%;
	float:left;
	border-left:1px solid white;
	-webkit-transition:all 0.7s;
	-moz-transition:all 0.7s;
	transition:all 0.7s;
	box-shadow:-2px 0 10px 2px;
}
.photo_mop_li_middle {
	position:relative;
	width:34%;
	height:100%;
	float:left;
	border-left:1px solid white;
	-webkit-transition:all 0.7s;
	-moz-transition:all 0.7s;
	transition:all 0.7s;
	box-shadow:-2px 0 10px 2px;
}
.photo_mop_ul .photo_mop_li:first-child, .photo_mop_ul .photo_mop_li_middle:first-child {
	border:none;
}
.photo_mop_img {
	width:100%;
	height:100%;
}
.photo_mop_ul:hover .photo_mop_li, .photo_mop_ul:hover .photo_mop_li_middle {
	width:0;  
	border:none;
}
.photo_mop_ul .photo_mop_li:hover, .photo_mop_ul .photo_mop_li_middle:hover {
	width:100%;
	border:none;
}
/* Ипотечный калькулятор */
:root {
    --black: #000000;
    --gray: #878787;
    --gray_pale: #F6F6F5;
    --gray_middle: #E0E0DF;
    --white: #FFFFFF;
    --red: #FF731C;
    --red_pale: #FFE3DB;
    --green: #B9D153;
    --green_middle: #D5F065;
    --green_dark: #9BB337;
    --green_pale: #F6FFD2;
    --font: Century Gothic, sans-serif;
}
.calculator-section {
	padding-top: 50px;
}
.mortgage-calculator__title, .mortgage-calculator__desc {
	text-align: center;
}
.mortgage-calculator__form {
	padding-top: 20px;
}
.mortgage-calculator__results-row {
	display: flex;
}
.mortgage-calculator__results-item {
	width: 50%;
}
.mortgage-calculator__results-item-end {
	width: 50%;
	text-align: end;
}
.mortgage-calculator__results-title {
	color: var(--color-logo);
	font-family: 'RobotoCondensed';
	font-size: 20px;
}
.mortgage-calculator__results-cost {
	color: var(--color-logo);
	font-family: 'RobotoCondensed';
	font-size: 24px;
	line-height: 1.3;
	font-weight: 700;
	margin-top: 10px;
}


@media (min-width: 992px) {
    .col-lg-6 {
        flex: 0 0 auto;
        width: 50%;
    }
}
@media (max-width: 575px) {
  .purchase-slide__calculator-cell {
    display: none;
  }
}
.mortgage-calculator {
  position: relative;
  padding: 0 3rem 0 0;
  z-index: 1;
}
@media (max-width: 1024px) {
  .mortgage-calculator {
    padding: 0;
  }
}
@media (max-width: 575px) {
  .mortgage-calculator {
    padding: 0;
  }
}
.mortgage-form .range-slider {
  -webkit-transform: translateX(0.5rem);
      -ms-transform: translateX(0.5rem);
          transform: translateX(0.5rem);
}
.mortgage-form__row:not(:last-child) {
  margin-bottom: 1rem;
}
.mortgage-form__label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
}
.mortgage-form__data-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
@media (max-width: 575px) {
  .mortgage-form__data-wrapper {
    overflow: hidden;
  }
}
.mortgage-form__input-label {
  position: relative;
  padding: 1.25rem 1.5rem !important;
  border: none !important;
  outline: none;
  background-color: var(--gray_pale) !important;
  font-size: 1.0875rem;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 0px;
          flex: 0 0 0;
  white-space: nowrap;
}
.mortgage-form__input {
  font-family: 'RobotoCondensed';
  font-size: 18px;
  height: 65px !important;
  border-radius: 0px !important;
  width: auto !important;
  position: relative;
  padding: 1.25rem 1.5rem !important;
  border: none !important;
  outline: none;
  background-color: var(--gray_pale) !important;
  font-size: 1.285rem !important;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 auto;
          flex: 1 0 auto;
}
@media (max-width: 575px) {
	.mortgage-form__input-label {
		padding: 1.5rem 0.8rem !important;
		font-size: 0.75rem;
	}
	.mortgage-form__input {
		font-size: 0.85rem !important;
		padding: 1.5rem 0.8rem !important;
	}
}

.filters__range-slider {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}
.range-slider {
  width: calc(100% - 1rem);
  height: 0.25rem;
  border: none;
}
.range-slider .noUi-connects {
  position: relative;
  background-color: var(--gray_middle);
  border: none;
  overflow: unset;
}
.range-slider .noUi-connects::after, .range-slider .noUi-connects::before {
  position: absolute;
  content: " ";
  display: block;
  height: 1rem;
  width: 1rem;
  top: -6px;
  border-radius: 50%;
  border: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  background-color: var(--gray_middle);
  opacity: 1;
}
.range-slider .noUi-connects::before {
  left: -8px;
  /* half the width */
}
.range-slider .noUi-connects::after {
  right: -8px;
  /* half the width */
}
.range-slider .noUi-connect {
  background: var(--green);
}
.range-slider .noUi-handle {
  height: 1.1rem;
  width: 1.1rem;
  top: -10px;
  right: -8px;
  /* half the width */
  border-radius: 50%;
  border: 2px solid #72b1dd;
  -webkit-box-shadow: none;
          box-shadow: none;
  background-color: var(--white);
  cursor: pointer;
}
.range-slider .noUi-handle::after, .range-slider .noUi-handle::before {
  opacity: 0;
}
.mortgage-form .range-slider {
  -webkit-transform: translateX(0.5rem);
      -ms-transform: translateX(0.5rem);
          transform: translateX(0.5rem);
}

.noUi-target,
.noUi-target * {
    -webkit-touch-callout: none;
    -webkit-tap-highlight-color: transparent;
    -webkit-user-select: none;
    -ms-touch-action: none;
    touch-action: none;
    -ms-user-select: none;
    -moz-user-select: none;
    user-select: none;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.noUi-target {
    position: relative;
}
.noUi-target {
    background: #fafafa;
    border-radius: 4px;
    border: 1px solid #d3d3d3;
    box-shadow: inset 0 1px 1px #f0f0f0, 0 3px 6px -5px #bbb;
}
[disabled] .noUi-handle,
[disabled].noUi-handle,
[disabled].noUi-target {
    cursor: not-allowed;
}
.noUi-txt-dir-rtl.noUi-horizontal .noUi-origin {
    left: 0;
    right: auto;
}
.noUi-horizontal .noUi-origin {
    height: 0;
}
.noUi-txt-dir-rtl.noUi-horizontal .noUi-handle {
    left: -17px;
    right: auto;
}
.noUi-horizontal .noUi-tooltip {
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
    left: 50%;
    bottom: 120%;
}
.noUi-horizontal .noUi-origin > .noUi-tooltip {
    -webkit-transform: translate(50%, 0);
    transform: translate(50%, 0);
    left: auto;
    bottom: 10px;
}

.mortgage-form__labels {
  margin-top: 0.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.mortgage-form__label-item {
  font-size: 0.875rem;
}
/* CallBack */
#SendResultCallBack{display:block;}
#SendResultCallBack span.error{display:block;color:#D60000;font-weight:bold;height:20px;margin-top:10px;}
#SendResultCallBack span.valid{display:block;color:#72b1dd;font-weight:bold;height:20px;margin-top:10px;}
#SendResultCallBackC{display:block;}
#SendResultCallBackC span.error{display:block;color:#D60000;font-weight:bold;height:20px;margin-top:10px;}
#SendResultCallBackC span.valid{display:block;color:#72b1dd;font-weight:bold;height:20px;margin-top:10px;}

.statistics{display:none;visibility:hidden;}