@import "../../public/css/glightbox.min.css";
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font: inherit;
}

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

.screen-reader-text {
  margin: -1px;
  padding: 0;
  height: 1px;
  width: 1px;
  position: absolute !important;
  overflow: hidden;
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  word-wrap: normal !important;
}
.screen-reader-text:focus {
  padding: 15px 23px 14px;
  display: block;
  height: auto;
  width: auto;
  left: 5px;
  top: 5px;
  z-index: 100000;
  color: #21759b;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: normal;
  text-decoration: none;
  background-color: #f1f1f1;
  border-radius: 3px;
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  clip: auto !important;
  clip-path: none;
}

.scroll-indicator {
  display: flex;
  justify-content: flex-end;
}
@media (min-width: 48rem) {
  .scroll-indicator {
    display: none;
  }
}
.scroll-indicator img {
  animation: moveImage 3s linear infinite;
}
@keyframes moveImage {
  0%, 100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(-100%);
  }
}

.filters__main, .filters__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-20);
  align-items: start;
}
@media (max-width: 86rem) {
  .filters__main, .filters__inner {
    grid-template-columns: repeat(4, 1fr);
    row-gap: var(--s-60);
  }
}
@media (max-width: 68rem) {
  .filters__main, .filters__inner {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 60rem) {
  .filters__main, .filters__inner {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 38rem) {
  .filters__main, .filters__inner {
    grid-template-columns: 1fr;
    row-gap: var(--s-20);
  }
}
.filters__advanced {
  padding-top: 0;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: 250ms ease-in-out all;
}
.filters__advanced.is-visible {
  padding-top: var(--sy-60);
  max-height: 500px;
  opacity: 1;
  overflow: unset;
  transition: 250ms ease-in-out all;
}
.filters__clear-all {
  padding-top: 16px;
  width: 100%;
  text-align: right;
}
.filters .promo-filter {
  padding-top: 32px;
}
.filters .promo-filter label {
  display: flex;
  gap: 8px;
  align-items: center;
}

.filter-dropdown {
  position: relative;
  align-self: center;
}
.filter-dropdown__clearField {
  justify-content: flex-end !important;
  overflow: hidden;
  max-height: 0;
  transition: 0.3s all;
  padding-block: 0px !important;
  position: sticky;
  top: 0;
  left: 0;
  background-color: var(--c-neutral-100);
  z-index: 10;
}
.filter-dropdown__clearField--all {
  z-index: unset;
}
.filter-dropdown__clearField.active {
  max-height: 60px;
  padding-block: 5px !important;
}
.filter-dropdown__clearField span {
  display: inline-block;
  text-transform: lowercase;
  border: 1px solid var(--c-violet-600);
  padding: 4px 16px;
  line-height: 1;
  cursor: pointer;
  transition: 0.3s all;
}
.filter-dropdown__clearField span:hover {
  color: var(--c-neutral-100);
  background: var(--c-violet-600);
}
.filter-dropdown a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: var(--fs-14);
  border-bottom: 1px solid var(--c-neutral-900);
}
.filter-dropdown a:before {
  content: attr(data-placeholder);
  position: absolute;
  top: -10px;
  left: 0;
  line-height: 1;
  font-size: 0.7em;
  opacity: 0;
  transition: 0.33s all;
}
@media (max-width: 767px) {
  .filter-dropdown a:before {
    top: -8px;
  }
}
.filter-dropdown a.active:before {
  opacity: 0.8;
}
.filter-dropdown a:hover, .filter-dropdown a:active {
  color: var(--c-neutral-900);
  text-decoration: none;
}
.filter-dropdown a:after {
  content: url("../../public/svg/ico-chevron-down.svg");
  rotate: 0deg;
  transition: 150ms ease-in-out all;
}
.filter-dropdown__inner {
  padding-inline: var(--s-10);
  width: 100%;
  max-height: 0;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 2;
  background-color: var(--c-neutral-100);
  box-shadow: 0px 0px 4px 0px rgba(66, 68, 90, 0.25);
  overflow: hidden;
}
.is-open .filter-dropdown__inner {
  overflow: auto;
  max-height: 12rem;
}
.filter-dropdown__inner label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-block: 5px;
  font-size: var(--fs-14);
}
.filter-dropdown.is-open .filter-dropdown__inner__scroll {
  padding-block: var(--s-10);
}
.filter-dropdown.is-open a:after {
  rotate: 180deg;
  transition: 150ms ease-in-out all;
}
@media (max-width: 38rem) {
  .filter-dropdown.JS-dropdown-pagination {
    margin-top: var(--s-10);
  }
}

.filter-range__label {
  display: flex;
  align-items: center;
  -moz-column-gap: var(--s-10);
       column-gap: var(--s-10);
  margin-bottom: var(--s-20);
  min-height: 30px;
  font-size: var(--fs-13);
  font-weight: var(--fw-bold);
}
.filter-range__label-separator {
  width: 1rem;
  height: 1px;
  background-color: currentColor;
}

.view-switch {
  display: flex;
  flex-direction: column;
}
@media (max-width: 60rem) {
  .view-switch {
    display: none;
  }
}
.view-switch__title {
  font-size: var(--fs-13);
  font-weight: var(--fw-bold);
  text-align: center;
}
.view-switch__inner {
  display: flex;
  justify-content: center;
  align-items: center;
}
.view-switch__label {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.view-switch__text {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.35rem 1rem;
  min-width: 6rem;
  height: 100%;
  font-size: var(--fs-13);
  font-weight: var(--fw-medium);
  color: var(--c-neutral-100);
  background-color: var(--c-violet-300);
  border: 1px solid transparent;
  cursor: pointer;
}
.view-switch__text--table:before, .view-switch__text--tiles:before {
  content: "";
  margin-right: 8px;
  width: 23px;
  height: 23px;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: contain;
}
.view-switch__text--table:before {
  background-image: url("../../public/svg/icon--table.svg");
}
.view-switch__text--tiles:before {
  background-image: url("../../public/svg/icon--tiles.svg");
}
.view-switch input[type=checkbox] {
  width: 0;
  height: 0;
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  opacity: 0;
}
.view-switch input[type=checkbox]:checked + .view-switch__text {
  color: var(--c-neutral-100);
  background-color: var(--c-violet-600);
  border: 1px solid var(--c-violet-600);
  transition: 150ms ease-in-out all;
}

.filters-toggle {
  justify-self: end;
  align-self: center;
}
@media (max-width: 86rem) {
  .filters-toggle {
    grid-column: span 4;
  }
}
@media (max-width: 68rem) {
  .filters-toggle {
    grid-column: span 2;
  }
}
@media (max-width: 60rem) {
  .filters-toggle {
    grid-column: unset;
  }
}
@media (max-width: 38rem) {
  .filters-toggle {
    grid-template-columns: 1fr;
    row-gap: var(--s-20);
  }
}
.filters-toggle__link {
  display: flex;
  align-items: center;
  gap: var(--s-10);
  font-size: var(--fs-14);
  font-weight: var(--fw-bold);
}
.filters-toggle__link:hover, .filters-toggle__link:active {
  text-decoration: none;
}
.filters-toggle__link:after {
  content: url("../../public/svg/ico-chevron-down.svg");
  rotate: 0deg;
  transition: 150ms ease-in-out all;
}
.filters-toggle__link.is-open:after {
  rotate: 180deg;
  transition: 150ms ease-in-out all;
}

.page {
  padding-inline: var(--sx-60);
}
@media (max-width: 30rem) {
  .page {
    padding-inline: unset;
  }
}
.page__nav {
  margin-bottom: var(--sy-60);
  padding-inline: var(--sx-60);
}
.page__nav ul {
  margin-inline: auto;
  padding-inline: var(--sx-60);
  width: min(var(--content-wide), 100%);
}
.page__nav--full ul {
  width: min(var(--content-full), 100%);
}
.page__content {
  margin-block: var(--sy-60);
  margin-inline: auto;
  padding-inline: var(--sx-60);
  width: min(var(--content-full), 100%);
  position: relative;
}
.page__content > .page__nav {
  padding-inline: unset;
}
.page__content > .section {
  margin-inline: calc(var(--sx-60) * -1);
}
.page__inner {
  margin-inline: auto;
  width: min(var(--content-wide), 100%);
}
.page__inner > .section {
  padding-inline: unset;
}

.section {
  margin-block: var(--sy-60);
  padding-inline: var(--sx-60);
}
.section__inner {
  margin-inline: auto;
  width: min(var(--content-wide), 100%);
}
.section--no-margin {
  margin-block: unset;
}
.section--background {
  padding-block: var(--sy-60);
  background-color: var(--c-violet-200);
}

.footer__companyData {
  padding: 16px 0 0 0;
  text-align: center;
  font-size: 13px;
  margin-top: 32px;
  border-top: 2px solid rgba(255, 255, 255, 0.333);
  color: rgba(255, 255, 255, 0.666);
  line-height: 1.2;
}
@media (max-width: 767px) {
  .footer__companyData {
    font-size: 11px;
  }
}
.footer__companyData p {
  margin: 0 !important;
}

.formButton:hover {
  color: inherit;
}

.favorite {
  opacity: 0;
  transition: 0.3s all;
  pointer-events: none;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 110000;
  color: #fff;
  font-weight: 300;
  transition-delay: 0.15s;
}
.favorite.active {
  opacity: 1;
  pointer-events: all;
  transition-delay: 0s;
}
.favorite.active .favorite__window {
  bottom: 0;
  transition-delay: 0.15s;
}
.favorite__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(10, 10, 10, 0.7);
}
.favorite__window {
  min-height: 60%;
  width: 100%;
  background: #a797c2;
  position: absolute;
  z-index: 99;
  bottom: -100%;
  left: 0;
  transition: 0.3s all;
  transition-delay: 0s;
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .favorite__window {
    width: 100%;
    height: 100%;
    overflow: auto;
    padding-top: 16px;
  }
}
.favorite__window__wrapper {
  width: 90%;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  overflow: hidden;
}
@media (max-width: 991px) {
  .favorite__window__wrapper {
    width: 100%;
    padding-left: 16px;
    padding-right: 16px;
  }
}
.favorite__window__list {
  flex: 0 0 70%;
  overflow: hidden;
  padding: 24px 0;
}
.favorite__window__form {
  flex: 0 0 25%;
  line-height: 1.2;
  padding: 24px 0;
}
@media (max-width: 991px) {
  .favorite__window__form {
    padding-bottom: 72px;
  }
}
.favorite__window__form form {
  position: relative;
}
.favorite__window__empty {
  font-size: 28px;
  margin-bottom: 24px;
  text-align: center;
  flex: 0 0 100%;
}
@media (max-width: 991px) {
  .favorite__window__empty {
    font-size: 24px;
  }
}
@media (max-width: 991px) {
  .favorite__window__list {
    flex: 0 0 65%;
  }
  .favorite__window__form {
    flex: 0 0 32%;
  }
}
@media (max-width: 767px) {
  .favorite__window__list {
    flex: 0 0 100%;
  }
  .favorite__window__form {
    flex: 0 0 100%;
  }
}
.favorite__form .wpcf7-list-item {
  margin: 12px 0 0 0;
  padding: 0;
  display: block;
}
.favorite__form .wpcf7-list-item label {
  display: flex;
  gap: 6px;
  align-items: center;
}
.favorite__form .wpcf7-list-item label input[type=checkbox] {
  border-color: #fff;
}
.favorite__form .wpcf7-list-item label input[type=checkbox]:before {
  box-shadow: inset 1rem 1rem #fff;
}
.favorite__form .wpcf7-list-item label .wpcf7-list-item-label {
  font-size: 16px;
}
@media (max-width: 991px) {
  .favorite__form .wpcf7-list-item label .wpcf7-list-item-label {
    font-size: 12px;
  }
}
.favorite__form__header {
  font-size: 28px;
  margin-bottom: 24px;
}
@media (max-width: 991px) {
  .favorite__form__header {
    font-size: 24px;
  }
}
.favorite__form__field {
  background: #fff;
  border-radius: 0px;
  position: relative;
}
.favorite__form__field span {
  display: block;
  width: 100%;
  height: 100%;
}
.favorite__form__field span .wpcf7-not-valid-tip {
  border-top: 1px solid #e5e5e5;
  padding: 2px 8px 4px;
  font-size: 13px;
}
.favorite__form__field span input {
  border: none;
  padding: 12px 107px 12px 16px;
}
.favorite__form__field span input:focus {
  outline: none;
}
.favorite__form__field .wpcf7-submit {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  padding: 0 24px;
  border-radius: 0px;
  background: #41325a;
  border: none;
  color: #fff;
  transition: 0.3s all;
  font-weight: bold;
  text-transform: uppercase;
  cursor: pointer;
}
.favorite__form__field .wpcf7-submit:hover {
  background: rgb(88.6785714286, 68.2142857143, 122.7857142857);
}
.favorite__close {
  position: absolute;
  bottom: 100%;
  right: 0;
  background: #41325a;
  transition: 0.3s all;
  height: 80px;
  width: 80px;
  cursor: pointer;
  z-index: 10;
}
.favorite__close:before, .favorite__close:after {
  content: "";
  width: 24px;
  height: 2.4px;
  background: #ffffff;
  position: absolute;
  top: 50%;
  left: 50%;
}
.favorite__close:before {
  transform: translateY(-50%) translateX(-50%) rotate(45deg);
}
.favorite__close:after {
  transform: translateY(-50%) translateX(-50%) rotate(-45deg);
}
.favorite__close:hover {
  background: rgb(88.6785714286, 68.2142857143, 122.7857142857);
}
@media (max-width: 767px) {
  .favorite__close {
    bottom: unset;
    top: 0;
    height: 48px;
    width: 48px;
  }
}
.favorite__slider {
  padding-top: 32px;
  padding-bottom: 4px;
}
.favorite__slider__buttons {
  padding-top: 8px;
  gap: 4px;
  display: none;
}
@media (max-width: 1440px) {
  .favorite__slider__buttons {
    display: flex;
  }
}
@media (max-width: 767px) {
  .favorite__slider__buttons {
    justify-content: center;
  }
}
.favorite__slider__button {
  display: block;
  width: 40px;
  height: 40px;
  transition: 0.3s all;
  transition-delay: 0.2s;
}
.favorite__slider__button:hover {
  background: rgb(82.7589285714, 63.6607142857, 114.5892857143);
}
@media (max-width: 767px) {
  .favorite__slider__button {
    width: 50%;
  }
}
.favorite__slider__button--prev, .favorite__slider__button--next {
  position: relative;
  cursor: pointer;
}
.favorite__slider__button--prev:before, .favorite__slider__button--next:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  width: 16px;
  height: 16px;
}
.favorite__slider__button--prev:before {
  transform: translateX(-30%) translateY(-50%) rotate(45deg);
}
.favorite__slider__button--next:before {
  transform: translateX(-70%) translateY(-50%) rotate(225deg);
}
.favorite__items {
  width: 100%;
  overflow: hidden;
}
.favorite__item__inner {
  border: 1px solid #fff;
  padding: 48px 12px 12px;
  position: relative;
}
.favorite__item__image {
  font-size: 11px;
  background: rgba(255, 255, 255, 0.333);
  margin: 0 0 16px 0;
  display: block;
}
.favorite__item__image img {
  max-height: 150px;
  width: auto;
  margin: 0 auto;
}
.favorite__item__data {
  font-size: 20px;
  line-height: 1.5;
  display: block;
}
.favorite__item__data--area {
  font-weight: 700;
  font-size: 24px;
  padding: 4px 0;
}
.favorite__item__data--link {
  margin-top: 8px;
  color: #fff;
}
.favorite__item__data--link:hover {
  color: #fff;
  text-decoration: underline;
}
.favorite__item__remove {
  position: absolute;
  top: 0;
  right: 0;
  background: transparent;
  height: 40px;
  width: 40px;
  cursor: pointer;
  z-index: 10;
  transition: 0.5s all;
}
.favorite__item__remove:before, .favorite__item__remove:after {
  content: "";
  width: 24px;
  height: 2.4px;
  background: #ffffff;
  position: absolute;
  top: 50%;
  left: 50%;
}
.favorite__item__remove:before {
  transform: translateY(-50%) translateX(-50%) rotate(45deg);
}
.favorite__item__remove:after {
  transform: translateY(-50%) translateX(-50%) rotate(-45deg);
}
.favorite__item__remove:hover {
  background: rgba(0, 0, 0, 0.333);
}
@media (max-width: 767px) {
  .favorite__item__remove:before, .favorite__item__remove:after {
    content: "";
    width: 16px;
    height: 1.6px;
    background: #ffffff;
    position: absolute;
    top: 50%;
    left: 50%;
  }
  .favorite__item__remove:before {
    transform: translateY(-50%) translateX(-50%) rotate(45deg);
  }
  .favorite__item__remove:after {
    transform: translateY(-50%) translateX(-50%) rotate(-45deg);
  }
}
.favorite__notice {
  opacity: 0;
  pointer-events: none;
  background: #fff;
  color: #333;
  position: fixed;
  bottom: -100%;
  left: 50%;
  z-index: 1000;
  max-width: 50%;
  transform: translateX(-50%);
  font-size: 18px;
  padding: 16px 32px;
  transition: 0.8s;
  transition-delay: 0s;
}
.favorite__notice.error {
  background: #ffe6e6;
  color: rgb(134, 3, 3);
}
.favorite__notice.active {
  bottom: 8px;
  opacity: 1;
  transition-delay: 0.25s;
  transition: 0.4s;
}
.favorite__hidden {
  display: none;
}

.popup {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10000;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.popup__contents {
  position: relative;
}
.popup__close {
  display: block;
  width: 50px;
  height: 50px;
  position: absolute;
  top: 0;
  right: 0;
  background: #333;
  opacity: 1;
  transition: 0.3s all;
  z-index: 10;
  transform: translateX(50%) translateY(-50%);
  box-shadow: 0 0 4px rgba(51, 51, 51, 0.2);
}
@media (max-width: 767px) {
  .popup__close {
    width: 40px;
    height: 40px;
    transform: translateX(0) translateY(0);
  }
}
.popup__close:after, .popup__close:before {
  content: "";
  display: block;
  width: 60%;
  height: 2px;
  background: #ffffff;
  position: absolute;
  top: 50%;
  left: 50%;
  transition: 0.3s all;
}
.popup__close:before {
  transform: translateY(-50%) translateX(-50%) rotate(45deg);
}
.popup__close:after {
  transform: translateY(-50%) translateX(-50%) rotate(-45deg);
}
.popup__close:hover:after, .popup__close:hover:before {
  height: 3px;
}
.popup__overlay {
  background-color: rgba(180, 180, 180, 0.8);
  opacity: 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  transition: 0.3s all;
}
.popup__wrapper {
  width: auto;
  max-width: 100%;
  padding: 3.3333333333vw 1.6666666667vw;
  max-height: 90vh;
  overflow: auto;
  transform: scale(0);
  color: #ffffff;
  transition: 0.66s all;
  opacity: 0;
}
@media (max-width: 767px) {
  .popup__wrapper {
    max-width: 100%;
  }
}
.popup--active {
  pointer-events: auto;
}
.popup--active .popup__overlay {
  opacity: 0.9;
}
.popup--active .popup__wrapper {
  transform: scale(1);
  opacity: 1;
}
.popup__logo {
  text-align: center;
  margin-bottom: 1.6666666667vw;
}
@media (max-width: 767px) {
  .popup__logo {
    margin-bottom: 32px;
  }
}
.popup__logo img {
  width: 9.1666666667vw;
  display: block;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .popup__logo img {
    width: 120px;
  }
}
.popup__header, .popup__copy {
  text-align: center;
  margin-bottom: 1.25vw;
}
@media (max-width: 767px) {
  .popup__header, .popup__copy {
    margin-bottom: 24px;
  }
}
.popup__header {
  font-size: 2.0833333333vw;
  line-height: 1.25;
}
@media (max-width: 767px) {
  .popup__header {
    font-size: 28px;
  }
}
.popup__copy {
  font-size: 1.25vw;
  line-height: 1.35;
}
@media (max-width: 767px) {
  .popup__copy {
    font-size: 16px;
  }
}
.popup__button {
  text-align: center;
}
.popup__image picture,
.popup__image img {
  max-height: 66vh;
  max-width: 80vw;
  width: auto;
}
@media (max-width: 767px) {
  .popup__image picture,
  .popup__image img {
    max-width: 100%;
  }
}

.modal-cacsp-position .modal-cacsp-box .modal-cacsp-box-header:before {
  content: "";
  background: url("../../components/cookies/logo.png") no-repeat 0 0;
  display: block;
  background-size: contain;
  height: 40px;
  margin-bottom: 16px;
}

.modal-cacsp-position .modal-cacsp-box .modal-cacsp-box-header {
  font-size: 1.05em;
  padding-bottom: 0;
  font-weight: 500;
}

.modal-cacsp-position .modal-cacsp-box .modal-cacsp-btns .modal-cacsp-btn,
.warning-cacsp-iframe-content .warning-cacsp-iframe-content-button a,
.warning-cacsp-iframe-content .warning-cacsp-object-content-button a,
.warning-cacsp-object-content .warning-cacsp-iframe-content-button a,
.warning-cacsp-object-content .warning-cacsp-object-content-button a {
  border-radius: 3px;
  border-width: 2px;
  text-transform: uppercase;
}

.modal-cacsp-position .modal-cacsp-box .modal-cacsp-btns .modal-cacsp-btn.modal-cacsp-btn-settings,
.modal-cacsp-position .modal-cacsp-box .modal-cacsp-btns .modal-cacsp-btn.modal-cacsp-btn-settings * {
  color: #1b2747;
  border-color: #1b2747;
}

.modal-cacsp-position .modal-cacsp-box .modal-cacsp-btns .modal-cacsp-btn.modal-cacsp-btn-accept-all,
.modal-cacsp-position .modal-cacsp-box .modal-cacsp-btns .modal-cacsp-btn.modal-cacsp-btn-accept,
.modal-cacsp-position .modal-cacsp-box .modal-cacsp-btns .modal-cacsp-btn.modal-cacsp-btn-accept * {
  background: #1b2747;
  border-color: #1b2747;
}

.modal-cacsp-position .modal-cacsp-box .modal-cacsp-box-content {
  font-size: 0.7em;
  line-height: 1.35;
  text-align: justify;
}
@media (max-width: 767px) {
  .modal-cacsp-position .modal-cacsp-box .modal-cacsp-box-content {
    font-size: 0.8em;
  }
}

.modal-cacsp-position .modal-cacsp-box .modal-cacsp-btns .modal-cacsp-btn,
.warning-cacsp-iframe-content .warning-cacsp-iframe-content-button a,
.warning-cacsp-iframe-content .warning-cacsp-object-content-button a,
.warning-cacsp-object-content .warning-cacsp-iframe-content-button a,
.warning-cacsp-object-content .warning-cacsp-object-content-button a {
  font-size: 15px;
}
@media (max-width: 991px) {
  .modal-cacsp-position .modal-cacsp-box .modal-cacsp-btns .modal-cacsp-btn,
  .warning-cacsp-iframe-content .warning-cacsp-iframe-content-button a,
  .warning-cacsp-iframe-content .warning-cacsp-object-content-button a,
  .warning-cacsp-object-content .warning-cacsp-iframe-content-button a,
  .warning-cacsp-object-content .warning-cacsp-object-content-button a {
    font-size: 14px;
    padding-left: 8px;
    padding-right: 8px;
  }
}

@media (max-width: 767px) {
  .modal-cacsp-position .modal-cacsp-box .modal-cacsp-btns {
    padding: 8px;
  }
}

.modal-cacsp-position .modal-cacsp-box .modal-cacsp-btns {
  justify-content: space-between;
}

.program {
  width: 1920px;
  max-width: 100%;
}
.program__text__line {
  line-height: 1.2;
  font-family: "Inter", sans-serif;
}
.program__text__line--line1, .program__text__line--line2, .program__text__line--line3 {
  font-family: "Ador Hairline", "Inter", sans-serif;
}
@media (max-width: 767px) {
  .program__text__line {
    margin-bottom: 24px;
  }
}
.program__text__line + .program__text__line {
  margin-top: 24px;
}
@media (max-width: 767px) {
  .program__text__line + .program__text__line {
    margin-top: 0;
  }
}
.program__text__line--line1 {
  font-size: 32px;
  font-weight: bold;
  color: #424242;
  text-transform: uppercase;
}
.program__text__line--line2 {
  font-size: 56px;
  font-weight: bold;
  color: #1b2747;
}
.program__text__line--line3 {
  color: black;
  font-size: 24px;
  font-weight: bold;
}
.program__text__line--line4 {
  color: #1d1d1b;
  font-size: 16px;
}
@media (max-width: 767px) {
  .program__text__line--line1 {
    font-size: 20px;
  }
  .program__text__line--line2 {
    font-size: 40px;
  }
  .program__text__line--line3 {
    font-size: 18px;
  }
  .program__text__line--line4 {
    font-size: 14px;
  }
}
.program--fullwidth {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  position: relative;
}
@media (max-width: 767px) {
  .program--fullwidth {
    background: #fff !important;
  }
}
.program--fullwidth:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 60%;
  height: 100%;
  pointer-events: none;
  background: rgb(255, 255, 255);
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.92) 80%, rgba(255, 255, 255, 0) 100%);
}
@media (max-width: 1280px) {
  .program--fullwidth:before {
    width: 75%;
  }
}
@media (max-width: 767px) {
  .program--fullwidth:before {
    content: unset;
  }
}
.program--fullwidth .program {
  /* do not place any .program sytles here */
}
.program--fullwidth .program__image {
  display: none;
}
@media (max-width: 767px) {
  .program--fullwidth .program__image {
    display: block;
  }
}
.program--fullwidth .program__contents {
  margin-inline: auto;
  width: min(1440px, 100%);
}
@media (max-width: 1500px) {
  .program--fullwidth .program__contents {
    padding: 0 32px;
  }
}
.program--fullwidth .program__text {
  width: 60%;
  padding: 120px 240px 120px 0;
  position: relative;
}
@media (max-width: 1280px) {
  .program--fullwidth .program__text {
    width: 75%;
    padding: 120px 160px 120px 0;
  }
}
@media (max-width: 767px) {
  .program--fullwidth .program__text {
    width: 100%;
    text-align: center;
    padding: 32px 0 64px 0;
  }
}
.program--fullwidth .program__text__line + .program__text__line {
  margin-top: 40px;
}
@media (max-width: 767px) {
  .program--fullwidth .program__text__line + .program__text__line {
    margin-top: 24px;
  }
}
.program--h-padding {
  padding: 0 128px;
}
@media (max-width: 1280px) {
  .program--h-padding {
    padding: 0 64px;
  }
}
@media (max-width: 767px) {
  .program--h-padding {
    padding: 0 16px;
  }
}

.sections__item {
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .sections__item {
    margin: 64px 0;
  }
}
.sections__item__box {
  flex: 0 0 50%;
}
@media (max-width: 768px) {
  .sections__item__box {
    flex: 0 0 100%;
  }
}
.sections__item__box--text {
  align-self: center;
  padding: 80px 64px 32px;
}
@media (max-width: 768px) {
  .sections__item__box--text {
    padding: 64px 16px 0 16px;
  }
}
@media (max-width: 768px) {
  .sections__item__box--image {
    order: 1 !important;
  }
  .sections__item__box--text {
    order: 2 !important;
  }
}
.sections__item__box--image {
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
}
.sections__item__box--image img {
  opacity: 0;
}
@media (max-width: 768px) {
  .sections__item__box--image {
    background: #fff;
  }
  .sections__item__box--image img {
    opacity: 1;
  }
}
.sections__item__box__header {
  font-size: 2.9166666667vw;
  font-weight: bold;
  line-height: 1.3;
  color: #cd9280;
  font-family: "Nexa", "Manrope", sans-serif;
}
@media (max-width: 1366px) {
  .sections__item__box__header {
    font-size: 3.8945827233vw;
  }
}
@media (max-width: 1280px) {
  .sections__item__box__header {
    font-size: 3.9375vw;
  }
}
@media (max-width: 1024px) {
  .sections__item__box__header {
    font-size: 4.6484375vw;
  }
}
@media (max-width: 767px) {
  .sections__item__box__header {
    font-size: 7.875vw;
  }
}
.sections__item__box__contents {
  margin-top: 24px;
}
.sections__item:nth-child(even) .sections__item__box--image {
  order: 2;
}
.sections__item:nth-child(even) .sections__item__box--text {
  order: 1;
}
.sections__item--headerOnly .sections__item__box__header {
  color: #103330;
  font-weight: bold;
  font-size: 4.1666666667vw;
}
@media (max-width: 1366px) {
  .sections__item--headerOnly .sections__item__box__header {
    font-size: 5.5636896047vw;
  }
}
@media (max-width: 1280px) {
  .sections__item--headerOnly .sections__item__box__header {
    font-size: 5.625vw;
  }
}
@media (max-width: 1024px) {
  .sections__item--headerOnly .sections__item__box__header {
    font-size: 6.640625vw;
  }
}
@media (max-width: 767px) {
  .sections__item--headerOnly .sections__item__box__header {
    font-size: 11.25vw;
  }
}
.sections__item--noImage .sections__item__box {
  flex: 0 0 100%;
}
.sections__item--noImage .sections__item__box--text {
  justify-content: center;
}
@media (max-width: 768px) {
  .sections__item--noImage .sections__item__box--text {
    padding-top: 0;
  }
}
.sections__item--noImage .sections__item__box__header {
  text-align: center;
  font-size: 2.0833333333vw;
}
@media (max-width: 1366px) {
  .sections__item--noImage .sections__item__box__header {
    font-size: 2.7818448023vw;
  }
}
@media (max-width: 1280px) {
  .sections__item--noImage .sections__item__box__header {
    font-size: 2.8125vw;
  }
}
@media (max-width: 1024px) {
  .sections__item--noImage .sections__item__box__header {
    font-size: 3.3203125vw;
  }
}
@media (max-width: 767px) {
  .sections__item--noImage .sections__item__box__header {
    font-size: 5.625vw;
  }
}
.sections__item--noImage .sections__item__box__contents {
  text-align: center;
}

.glightbox-open {
  overflow: unset !important;
}
@media (min-width: 769px) {
  .glightbox-open {
    height: unset !important;
  }
}

.glightbox-clean .gslide-description {
  background: rgba(0, 0, 0, 0.5);
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  transition: 0.3s all;
}
.glightbox-clean .gslide-description:hover {
  background: rgba(0, 0, 0, 0.75);
}
.glightbox-clean .gdesc-inner {
  padding: 12px;
}
.glightbox-clean .gslide-title {
  font-size: 0.7em;
  color: #eeeeee;
  margin-bottom: 0;
  line-height: 1.333;
  font-family: Inter, sans-serif;
  text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.25);
}

.glightbox-mobile .glightbox-container .gslide-title {
  color: #cecbcb;
  font-size: 1em;
}
.glightbox-mobile .glightbox-container .gslide-description {
  padding: 0;
}

.garages__options {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.garages__wrapper {
  display: grid;
  grid-template-columns: 1fr 15rem;
  gap: 24px;
}
@media (max-width: 75rem) {
  .garages__wrapper {
    grid-template-columns: 1fr 12rem;
    gap: 20px;
  }
}
@media (max-width: 60rem) {
  .garages__wrapper {
    grid-template-columns: 1fr 10rem;
    gap: 16px;
  }
}
@media (max-width: 48rem) {
  .garages__wrapper {
    grid-template-columns: 1fr;
  }
}
.garages__sidebar {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.garages__map {
  display: grid;
  margin-inline: auto;
  position: relative;
}
@media (max-height: 35rem) {
  .garages__map {
    width: min(32rem, 100%);
  }
}
@media (max-height: 66rem) {
  .garages__map {
    width: min(50rem, 100%);
  }
}
.garages__map__item {
  display: none;
  margin-inline: auto;
  position: relative;
}
@media (max-height: 35rem) {
  .garages__map__item {
    width: min(32rem, 100%);
  }
}
@media (max-height: 66rem) {
  .garages__map__item {
    width: min(50rem, 100%);
  }
}
.garages__map__item.active {
  display: grid;
}
.garages__svg, .garages__plan {
  grid-row: 1/2;
  grid-column: 1/2;
}
.garages__svg {
  z-index: 2;
}
.garages__svg__item {
  fill: rgba(0, 0, 0, 0);
}
.garages__svg__item--free {
  fill: #0b9f00;
  opacity: 0.333;
}
.garages__svg__item--pre_reservation {
  fill: #ffb700;
  opacity: 0.333;
}
.garages__svg__item--reservation {
  fill: #ff8800;
  opacity: 0.333;
}
.garages__svg__item--sold {
  fill: #d12828;
  opacity: 0.333;
}
.garages__legend {
  margin-bottom: clamp(1.25rem, -0.0543rem + 6.5217vw, 5rem);
  padding-inline: clamp(1.25rem, 0.1927rem + 3.9526vi, 3.75rem);
  display: flex;
  gap: 24px;
}
@media (max-width: 48rem) {
  .garages__legend {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    margin-top: 16px;
  }
}
@media (max-width: 38rem) {
  .garages__legend {
    flex-wrap: wrap;
  }
}
.garages__legend-item {
  display: flex;
  align-items: center;
  gap: 8px;
}
@media (max-width: 60rem) {
  .garages__legend-item {
    font-size: 12px;
  }
}
@media (max-width: 38rem) {
  .garages__legend-item {
    min-width: calc(50% - 8px);
  }
}
.garages__legend .legend-color {
  display: block;
  width: 20px;
  height: 20px;
  border: 1px solid #333;
  background-color: transparent;
}
.garages__legend .legend-color--free {
  background-color: rgba(11, 159, 0, 0.333);
  color: #fff;
}
.garages__legend .legend-color--pre_reservation {
  background-color: rgba(255, 183, 0, 0.333);
  color: rgb(0, 0, 0);
}
.garages__legend .legend-color--reservation {
  background-color: rgba(255, 136, 0, 0.333);
  color: rgb(0, 0, 0);
}
.garages__legend .legend-color--sold {
  background-color: rgba(209, 40, 40, 0.333);
  color: #fff;
}
.garages__tooltip {
  display: flex;
  flex-direction: column;
  padding: 16px;
  position: absolute;
  background-color: #e5e5e5;
  color: #fff;
  transition: 200ms ease-in-out opacity;
  box-shadow: 0px 0px 24px 0px rgba(66, 68, 90, 0.25);
  text-transform: uppercase;
}
@media (max-width: 60rem) {
  .garages__tooltip {
    padding: 8px;
  }
}
.garages__tooltip-number {
  margin-bottom: 8px;
  font-size: 24px;
  font-weight: bold;
  line-height: 1;
}
@media (max-width: 60rem) {
  .garages__tooltip-number {
    font-size: 16px;
  }
}
.garages__tooltip-status {
  font-size: 16px;
  line-height: 1.25;
  text-transform: uppercase;
}
@media (max-width: 60rem) {
  .garages__tooltip-status {
    font-size: 14px;
  }
}
.garages__tooltip.status--free {
  background-color: #0b9f00;
  color: #fff;
}
.garages__tooltip.status--pre_reservation {
  background-color: #ffb700;
  color: rgb(0, 0, 0);
}
.garages__tooltip.status--reservation {
  background-color: #ff8800;
  color: rgb(0, 0, 0);
}
.garages__tooltip.status--sold {
  background-color: #d12828;
  color: #fff;
}

.omnibus {
  font-size: 12px;
  line-height: 1.5;
  margin-top: 8px;
  color: #444;
}
.omnibus__value {
  font-weight: bold;
}

.promoApartments {
  margin: 128px 0 48px 0;
}
.promoApartments--no-margin {
  margin: 0;
}
.promoApartments--padding {
  padding: 128px 0 48px 0;
}
.promoApartments--section {
  margin: 104px 0 0 0;
}
.promoApartments--section .promoApartments__inner {
  margin-bottom: 16px;
}
.promoApartments--padded {
  padding-bottom: 64px;
}
.promoApartments__header {
  text-align: center;
  padding: 0 100px;
  position: relative;
}
@media (max-width: 767px) {
  .promoApartments__header {
    padding: 0 80px;
  }
}
.promoApartments__header__control {
  position: absolute;
  height: 100%;
  width: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 0;
  cursor: pointer;
  transition: 0.5s all;
}
@media (max-width: 767px) {
  .promoApartments__header__control {
    width: 80px;
  }
}
.promoApartments__header__control.swiper-button-disabled {
  opacity: 0.2;
  pointer-events: none;
}
.promoApartments__header__control:before {
  content: "";
  width: 24px;
  height: 24px;
  border-top: 3px solid #777;
  border-left: 3px solid #777;
}
@media (max-width: 767px) {
  .promoApartments__header__control:before {
    width: 20px;
    height: 20px;
    border-width: 2px;
  }
}
.promoApartments__header #js-promo-apartments-prev {
  left: 0;
}
.promoApartments__header #js-promo-apartments-prev:before {
  transform: rotate(-45deg);
}
.promoApartments__header #js-promo-apartments-next {
  right: 0;
}
.promoApartments__header #js-promo-apartments-next:before {
  transform: rotate(135deg);
}
.promoApartments__inner {
  margin: 48px 0;
}
.promoApartments__inner .swiper-slide {
  padding-top: 40px;
}

.legalNotice {
  position: fixed;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  max-width: 99%;
  width: 99%;
  max-height: 50vh;
  overflow: auto;
  background: rgba(255, 255, 255, 0.99);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2), 0 1px 0 rgba(0, 0, 0, 0.2);
  padding: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 8000;
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
  color: #333;
  transition: 1s all;
}
.legalNotice.closed {
  bottom: -200vh;
}
.legalNotice__icon {
  padding-right: 32px;
  flex: 0 0 40px;
}
.legalNotice__icon img {
  animation: pulseScale 2s ease 0s infinite;
  max-width: 36px;
  max-height: 36px;
}
@media (max-width: 767px) {
  .legalNotice__icon {
    display: none;
  }
}
.legalNotice__icon__default {
  background-size: cover;
  height: 80px;
  width: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: auto;
}
.legalNotice__icon__default--branded {
  transform: scale(0.8);
}
.legalNotice__icon__default--branded:before, .legalNotice__icon__default--branded:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%) rotate(45deg);
  z-index: 5;
}
.legalNotice__icon__default--branded:before {
  background: #e4051f;
  width: 100%;
  height: 100%;
}
.legalNotice__icon__default--branded:after {
  border: 3px solid #fff;
  width: 74px;
  height: 74px;
}
.legalNotice__icon__default img {
  transform-origin: 50% 3px;
  position: relative;
  z-index: 10;
  width: 50px;
  margin-top: -4px;
}
.legalNotice__contents {
  line-height: 1.2;
  font-size: 15px;
}
@media (max-width: 767px) {
  .legalNotice__contents {
    font-size: 13px;
    flex: 0 0 100%;
  }
}
.legalNotice__contents p {
  margin: 8px 0;
}
.legalNotice__contents > * + * {
  margin-top: 12px !important;
}
@media (max-width: 767px) {
  .legalNotice__contents > * + * {
    margin-top: 8px !important;
  }
}
.legalNotice__close {
  position: absolute;
  top: 1px;
  right: 1px;
  cursor: pointer;
  width: 40px;
  height: 40px;
  transition: 0.3s all;
}
.legalNotice__close:hover {
  background: rgba(0, 0, 0, 0.1);
}
.legalNotice__close:before, .legalNotice__close:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 50%;
  height: 2px;
  background: #333;
}
.legalNotice__close:before {
  transform: translateX(-50%) translateY(-50%) rotate(45deg);
}
.legalNotice__close:after {
  transform: translateX(-50%) translateY(-50%) rotate(-45deg);
}

@keyframes pulseScale {
  0% {
    transform: rotate(0deg);
  }
  82% {
    transform: rotate(0deg);
  }
  85% {
    transform: rotate(6deg);
  }
  91% {
    transform: rotate(-6deg);
  }
  97% {
    transform: rotate(6deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
.screenMenu__item a {
  text-transform: uppercase;
  white-space: nowrap;
}
.screenMenu__item--phone a {
  color: var(--c-violet-600);
}
.screenMenu__item--red a {
  color: #d80101;
}
@media (max-width: 767px) {
  .screenMenu__item {
    display: none;
  }
}

.investPacks {
  margin: 80px 0;
  line-height: 1.75;
}
@media (max-width: 767px) {
  .investPacks {
    margin: 64px 0;
  }
}
.investPacks__section {
  margin: 64px 0;
}
@media (max-width: 767px) {
  .investPacks__section {
    margin: 48px 0;
  }
}
.investPacks__header {
  font-size: 24px;
  line-height: 1.5;
  font-weight: 700;
  color: #3b3b3b;
  margin-bottom: 24px;
}
.investPacks__icons__header {
  margin-bottom: 32px;
  font-size: 24px;
  line-height: 1.5;
  font-weight: 700;
  color: #3b3b3b;
}
.investPacks__icons__icons {
  display: flex;
  margin-left: -16px;
  margin-right: -16px;
  flex-wrap: wrap;
  gap: 32px 0;
}
.investPacks__icons__icons__item {
  padding: 0 16px;
  flex: 0 0 33.33%;
}
@media (max-width: 767px) {
  .investPacks__icons__icons__item {
    flex: 0 0 100%;
  }
}
.investPacks__icons__icons__item__copy strong {
  font-weight: 600;
}
.investPacks__icons__icons__item__icon {
  text-align: center;
  margin-bottom: 24px;
}
.investPacks__icons__icons__item__icon img {
  width: 120px;
  height: auto;
  display: inline-block;
  max-height: 100px;
  filter: grayscale(1);
  opacity: 0.9;
}
@media (max-width: 767px) {
  .investPacks__icons__icons__item__icon img {
    max-height: 80px;
  }
}
.investPacks__versions {
  display: flex;
  margin-left: -16px;
  margin-right: -16px;
  flex-wrap: wrap;
  gap: 32px 0;
}
.investPacks__versions__item {
  padding: 0 16px;
  flex: 0 0 33.33%;
  text-align: center;
}
@media (max-width: 767px) {
  .investPacks__versions__item {
    flex: 0 0 100%;
  }
}
.investPacks__versions__item__inner {
  background-color: #f2f2f2;
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 1199px) {
  .investPacks__versions__item__inner {
    min-height: 400px;
  }
}
@media (max-width: 767px) {
  .investPacks__versions__item__inner {
    min-height: 360px;
  }
}
.investPacks__versions__item__inner:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(20, 20, 20, 0.2);
  z-index: 5;
}
.investPacks__versions__item__name {
  margin-bottom: 64px;
  color: #fff;
  font-size: 48px;
  font-weight: 700;
  position: relative;
  z-index: 10;
  text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.25);
  line-height: 1.1;
}
@media (max-width: 1199px) {
  .investPacks__versions__item__name {
    font-size: 32px;
  }
}
.investPacks__versions__item__button {
  z-index: 10;
  position: absolute;
  left: 50%;
  bottom: 32px;
  border: 1px solid #fff;
  transform: translateX(-50%);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
}
.investPacks__versions__item__button a {
  display: block;
  color: #fff;
  padding: 16px 24px;
  font-size: 20px;
  border: 1px solid transparent;
  transition: 0.3s all;
  white-space: nowrap;
}
@media (max-width: 1199px) {
  .investPacks__versions__item__button a {
    font-size: 18px;
    padding: 12px 18px;
  }
}
@media (max-width: 767px) {
  .investPacks__versions__item__button a {
    font-size: 16px;
  }
}
.investPacks__versions__item__button a:hover {
  text-decoration: none;
  color: #fff;
}
.investPacks__versions__item__button:hover a {
  border: 1px solid #fff;
}
.investPacks__legal {
  font-size: 13px;
  line-height: 1.2;
}
@media (max-width: 767px) {
  .investPacks__legal {
    font-size: 12px;
  }
}
.investPacks__legal p {
  margin-bottom: 8px;
}

.packages-button {
  margin: 32px 0 24px 0;
}
.packages-button__link {
  display: flex;
  padding: 8px 16px;
  align-items: center;
  justify-content: flex-end;
  cursor: pointer;
  transition: 0.3s all;
  font-size: var(--fs-24);
  text-transform: uppercase;
}
.packages-button__link span {
  display: block;
  position: relative;
  padding-right: 24px;
  font-weight: 300;
  text-transform: lowercase;
  font-size: 0.9em;
}
.packages-button__link span:after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  border-top: 1px solid black;
  border-right: 1px solid black;
  top: 50%;
  right: 0;
  transform: translateY(-50%) rotate(135deg);
  transition: 0.3s all;
}
.packages-button__link.active span:after {
  transform: translateY(-50%) rotate(-45deg);
}

.packages-table-container {
  overflow: hidden;
  transition: 0.4s all;
}
.packages-table-container.active {
  max-height: 5000px !important;
}

.additionalElements {
  line-height: 1.2;
  color: #222;
  font-size: 13px;
  flex: 0 0 100%;
}
.additionalElements__section {
  display: flex;
  align-items: center;
  grid-column: 1/-1;
}
.additionalElements div {
  margin: 0;
}
.additionalElements__header {
  font-weight: bold;
  margin-bottom: 4px;
}
.additionalElements__item {
  display: flex;
  justify-content: space-between;
  width: 100%;
  border-bottom: 1px solid #a5a5a5;
}

.investmentDisclaimer {
  font-size: 12px;
  line-height: 1.4;
  padding: 8px 0 0 0;
  color: #444444;
}

.wp-child-theme-opoczynska .investmentDisclaimer {
  padding-inline: clamp(1.25rem, 0.3804rem + 4.3478vw, 3.75rem);
}

.wp-child-theme-symbioza .investmentDisclaimer {
  padding-inline: clamp(1.25rem, 0.1927rem + 3.9526vi, 3.75rem);
}

.wp-child-theme-zawislanska .investmentDisclaimer {
  padding-inline: clamp(1.25rem, -1.25rem + 6.9444vi, 5rem);
}

.wp-child-theme-warszawska .investmentDisclaimer {
  padding: 8px 16px;
}

.apartmentGallery {
  overflow: hidden;
  display: block;
  max-width: 100%;
  margin-bottom: 32px;
  /* Paginacja */
}
.apartmentGallery__slider {
  width: 100%;
  height: auto !important;
}
.apartmentGallery__slider__item {
  width: 100%;
  height: auto !important;
  display: block;
  max-width: 100%;
}
.apartmentGallery__slider__item img {
  width: 100%;
  height: auto;
  display: block;
}
.apartmentGallery .swiper-wrapper {
  align-items: stretch;
}
.apartmentGallery .swiper-pagination-bullet {
  background-color: #fff;
  border: 1px solid #333;
  opacity: 0.7;
  width: 12px;
  height: 12px;
  border-radius: 100%;
  cursor: pointer;
}
.apartmentGallery .swiper-pagination-bullet-active {
  opacity: 1;
  background-color: #333;
}
.apartmentGallery .swiper,
.apartmentGallery .swiper-wrapper,
.apartmentGallery .swiper-slide {
  all: unset;
}
.apartmentGallery .swiper {
  display: block;
  overflow: hidden;
  position: relative;
  width: 100% !important;
}
.apartmentGallery .swiper-wrapper {
  display: flex !important;
  width: 100% !important;
  transition: transform 0.3s ease;
}
.apartmentGallery .swiper-slide {
  flex-shrink: 0 !important;
  width: 100% !important;
}
.apartmentGallery__pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-top: 16px;
}

.apartmentSetup {
  display: flex;
  margin-left: -16px;
  margin-right: -16px;
  flex-wrap: wrap;
  color: #333;
  margin-bottom: 48px;
}
@media (max-width: 767px) {
  .apartmentSetup {
    gap: 32px 0;
    margin-left: 0;
    margin-right: 0;
  }
}
.apartmentSetup__item {
  flex: 0 0 50%;
  padding: 0 16px;
}
@media (max-width: 767px) {
  .apartmentSetup__item {
    flex: 0 0 100%;
    padding: 0;
  }
}
.apartmentSetup__item__header {
  font-size: 21px;
  margin-bottom: 24px;
}
.apartmentSetup__item__data {
  display: flex;
  flex-wrap: wrap;
  margin-left: -16px;
  margin-right: -16px;
  gap: 16px 0;
}
@media (max-width: 767px) {
  .apartmentSetup__item__data {
    margin-right: 0;
    margin-left: 0;
    gap: 24px 0;
  }
}
.apartmentSetup__item__data__item {
  flex: 0 0 100%;
  display: flex;
  padding: 0 16px;
  font-size: 15px;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .apartmentSetup__item__data__item {
    padding: 0;
  }
}
.apartmentSetup__item__data__item__label {
  flex: 0 0 66.666%;
  font-weight: 500;
  font-size: 16px;
}
@media (max-width: 767px) {
  .apartmentSetup__item__data__item__label {
    font-size: 14px;
  }
}
.apartmentSetup__item__data__item__value {
  flex: 0 0 33.333%;
  text-align: right;
  font-weight: bold;
}
.apartmentSetup__item__data__item__label, .apartmentSetup__item__data__item__value {
  line-height: 1.2;
}
@media (max-width: 767px) {
  .apartmentSetup__item__data__item__label, .apartmentSetup__item__data__item__value {
    flex: 0 0 100%;
  }
}
.apartmentSetup__item__data__item__link {
  font-size: 16px;
  font-weight: 500;
  color: #333;
  position: relative;
  display: inline-block;
  padding-right: 20px;
  line-height: 1.2;
}
@media (max-width: 767px) {
  .apartmentSetup__item__data__item__link {
    font-size: 14px;
  }
}
.apartmentSetup__item__data__item__link:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-60%);
  width: 14px;
  height: 14px;
  background: url("../../../przewoz42/public/svg/icon--link.svg") no-repeat 50% 50%;
  background-size: contain;
  opacity: 0.6;
  transition: opacity 0.2s;
}

.apartmentParameters {
  margin: 64px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  color: #333;
  font-size: 16px;
}
.apartmentParameters__item {
  flex: 0 0 48%;
  padding: 8px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #e5e5e5;
}
@media (max-width: 767px) {
  .apartmentParameters__item {
    flex: 0 0 100%;
  }
}
.apartmentParameters__item--full {
  flex: 0 0 100%;
}
.apartmentParameters__item--noborder {
  border-bottom: unset;
}
.apartmentParameters__item__label {
  flex: 0 0 45%;
  font-weight: 500;
  font-size: 14px;
}
.apartmentParameters__item__value {
  flex: 0 0 50%;
}
.apartmentParameters__item__value .formButton {
  position: relative;
  z-index: 10;
  text-transform: uppercase;
  color: #e4051f;
  font-weight: 500;
}
.apartmentParameters__item__value .formButton:hover {
  color: #333;
}
@media (max-width: 767px) {
  .apartmentParameters__item__label, .apartmentParameters__item__value {
    flex: 0 0 47.5%;
  }
}
.apartmentParameters__item--promo .apartment__data__parameters__item__value {
  color: #e4051f;
  font-weight: 500;
}
.apartmentParameters__item__status {
  font-weight: bold;
  text-transform: uppercase;
}
.apartmentParameters__item__status--available {
  color: #189300;
}
.apartmentParameters__item__status--pre_reservation, .apartmentParameters__item__status--reservation {
  color: #e6b800;
}
.apartmentParameters__item__status--sold {
  color: #e60000;
}

.apartmentPrices {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 0;
  padding-top: 32px;
}
.apartmentPrices__item {
  flex: 0 0 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  margin-left: -16px;
  margin-right: -16px;
}
@media (max-width: 767px) {
  .apartmentPrices__item {
    gap: 8px 0;
  }
}
.apartmentPrices__item__label {
  flex: 0 0 33.333%;
  font-size: 16px;
}
.apartmentPrices__item__value {
  flex: 0 0 66.666%;
  font-size: 20px;
}
.apartmentPrices__item--promo .apartmentPrices__item__value__price {
  color: #e4051f;
}
.apartmentPrices__item__label, .apartmentPrices__item__value {
  line-height: 1.1;
  font-weight: bold;
  color: #333;
  padding: 0 16px;
}
@media (max-width: 767px) {
  .apartmentPrices__item__label, .apartmentPrices__item__value {
    flex: 0 0 100%;
  }
}
.apartmentPrices__item__label a,
.apartmentPrices__item__label span, .apartmentPrices__item__value a,
.apartmentPrices__item__value span {
  font-size: 12px;
  color: #818181;
  font-weight: normal;
}

.contactButton {
  display: flex;
  justify-content: center;
  align-items: center;
}
.contactButton__item {
  display: block;
  padding: 16px 32px;
  background: #fff;
  border-radius: 100px;
  border: 1px solid #aaa;
  transition: 0.3s all;
  font-size: 16px;
  text-transform: uppercase;
  font-weight: 700;
  line-height: 1.2;
}
.contactButton__item:hover {
  color: inherit;
  text-decoration: none;
  border: 1px solid #1b2747;
  background: rgba(27, 39, 71, 0.1);
}

.apartmentDetails {
  margin-bottom: 64px;
  padding: 0 32px;
}
@media (max-width: 767px) {
  .apartmentDetails {
    padding: 0 12px;
  }
}
.apartmentDetails__row {
  margin-left: -16px;
  margin-right: -16px;
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .apartmentDetails__row {
    margin-left: 0;
    margin-right: 0;
  }
}
.apartmentDetails__row > div {
  padding: 0 16px;
}
@media (max-width: 767px) {
  .apartmentDetails__row > div {
    padding: 0;
  }
}
.apartmentDetails__buttons {
  display: flex;
  flex: 0 0 100%;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.apartmentDetails__box--gallery {
  flex: 0 0 45%;
}
@media (max-width: 767px) {
  .apartmentDetails__box--gallery {
    flex: 0 0 100%;
  }
}
.apartmentDetails__box--data {
  flex: 0 0 55%;
}
@media (max-width: 767px) {
  .apartmentDetails__box--data {
    flex: 0 0 100%;
  }
}
.apartmentDetails__box__buttons {
  margin-top: 64px;
}
.apartmentDetails__disclaimer {
  font-size: 12px;
  color: #333;
  line-height: 1.5;
}
.apartmentDetails__button {
  display: block;
}
@media (max-width: 767px) {
  .apartmentDetails__button {
    flex: 0 0 100%;
  }
}
.apartmentDetails__button__item {
  display: flex;
  gap: 8px;
  background: #fff;
  padding: 4px 24px 4px 5px;
  border-radius: 100px;
  border: 1px solid #aaa;
  transition: 0.3s all;
  font-size: 16px;
  text-transform: uppercase;
  font-weight: 400;
  line-height: 1.2;
  align-items: center;
}
@media (max-width: 767px) {
  .apartmentDetails__button__item {
    width: 100%;
    font-size: 14px;
  }
}
.apartmentDetails__button__item:hover {
  color: inherit;
  text-decoration: none;
  border: 1px solid #1b2747;
  background: rgba(27, 39, 71, 0.1);
}
.apartmentDetails__pills {
  margin-bottom: 48px;
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: flex-start;
}
.apartmentDetails__pills__pill {
  padding: 8px 24px 8px 48px;
  border: 1px solid #e5e5e5;
  border-radius: 30px;
  text-transform: uppercase;
  font-size: 14px;
  position: relative;
  font-weight: 400;
  align-items: center;
  display: flex;
  line-height: 1;
}
.apartmentDetails__pills__pill:before {
  content: "";
  width: 20px;
  height: 20px;
  position: absolute;
  top: 50%;
  left: 16px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  transform: translateY(-50%);
}
.apartmentDetails__pills__pill--showroom:before {
  background-image: url("../../../przewoz42/public/svg/showroom.svg");
}
.apartmentDetails__pills__pill--disability:before {
  background-image: url("../../../przewoz42/public/svg/disability-2.svg");
}

.pricing-table {
  width: 100%;
  overflow-x: auto;
}
.pricing-table__category {
  display: block;
  font-size: 12px;
  opacity: 0.6;
}
.pricing-table table {
  width: 100%;
  border-collapse: collapse;
}
@media (max-width: 1249px) {
  .pricing-table table {
    width: 940px;
  }
}
.pricing-table table thead tr {
  border-bottom: 1px solid #1b2747;
}
.pricing-table table thead td {
  font-size: 17px;
  text-align: center;
  padding-bottom: 20px;
  font-weight: 500;
  padding-inline: 4px;
}
.pricing-table table tbody tr {
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}
.pricing-table table tbody td {
  text-align: center;
  font-size: 15px;
  padding-inline: 4px;
  padding-block: 10px;
}

.pricing-status {
  font-weight: 500;
}
.pricing-status--available, .pricing-status--1 {
  color: var(--c-green);
}
.pricing-status--pre_reservation, .pricing-status--2 {
  color: var(--c-orange);
}
.pricing-status--reservation, .pricing-status--3 {
  color: var(--c-orange);
}
.pricing-status--sold, .pricing-status--4 {
  color: var(--c-red);
}

.pricing-history {
  position: relative;
}
.pricing-history__popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 15000;
}
.pricing-history__popup__overlay {
  display: block;
  background: rgba(0, 0, 0, 0.5);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  transition: 0.3s all;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.pricing-history__popup__window {
  position: fixed;
  background: #ffffff;
  box-shadow: 0 4px 9px 6px rgba(0, 0, 0, 0.1);
  z-index: 1001;
  padding: 24px 16px;
  width: 90vw;
  max-width: 400px;
  max-height: 80vh;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s all;
  pointer-events: none;
}
.pricing-history__popup.is-active .pricing-history__popup__overlay {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.pricing-history__popup.is-active .pricing-history__popup__window {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.pricing-history__close {
  position: absolute;
  top: 0;
  right: 0;
  display: grid;
  width: 49px;
  height: 38px;
  place-content: center;
  cursor: pointer;
  background: #1b2747;
  border: none;
}
.pricing-history__id {
  font-size: 24px;
  font-weight: 700;
  text-align: left;
  margin: 0;
  margin-bottom: 12px;
  line-height: 1;
}
.pricing-history__title {
  font-size: 10px;
  font-weight: 600;
  color: #1b2747;
  text-align: left;
  margin: 0;
  margin-bottom: 16px;
}
.pricing-history__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.pricing-history__item {
  font-size: 11px;
  font-weight: 600;
  display: flex;
  gap: 12px;
  justify-content: space-between;
  line-height: 1;
}
.pricing-history__toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  font-size: 13px;
  font-weight: normal;
  color: #818181;
}
.pricing-history__toggle--inline {
  display: inline-flex;
}
.pricing-history__toggle:hover {
  color: #222;
}

.pricing-download a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

/**
 * Swiper 11.2.10
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2025 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: June 28, 2025
 */
@font-face {
  font-family: "swiper-icons";
  src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA") format("woff");
  font-weight: 400;
  font-style: normal;
}
:root {
  --swiper-theme-color: #007aff;
  /*
  --swiper-preloader-color: var(--swiper-theme-color);
  --swiper-wrapper-transition-timing-function: initial;
  */
}

:host {
  position: relative;
  display: block;
  margin-left: auto;
  margin-right: auto;
  z-index: 1;
}

.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
  display: block;
}

.swiper-vertical > .swiper-wrapper {
  flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
  box-sizing: content-box;
}

.swiper-android .swiper-slide,
.swiper-ios .swiper-slide,
.swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}

.swiper-horizontal {
  touch-action: pan-y;
}

.swiper-vertical {
  touch-action: pan-x;
}

.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
  display: block;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

/* Auto Height */
.swiper-autoheight,
.swiper-autoheight .swiper-slide {
  height: auto;
}

.swiper-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}

.swiper-backface-hidden .swiper-slide {
  transform: translateZ(0);
  backface-visibility: hidden;
}

/* 3D Effects */
.swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px;
}

.swiper-3d .swiper-wrapper {
  transform-style: preserve-3d;
}

.swiper-3d {
  perspective: 1200px;
}
.swiper-3d .swiper-slide,
.swiper-3d .swiper-cube-shadow {
  transform-style: preserve-3d;
}

/* CSS Mode */
.swiper-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none; /* For Firefox */
  -ms-overflow-style: none; /* For Internet Explorer and Edge */
}
.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}
.swiper-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}
.swiper-css-mode.swiper-horizontal > .swiper-wrapper {
  scroll-snap-type: x mandatory;
}
.swiper-css-mode.swiper-vertical > .swiper-wrapper {
  scroll-snap-type: y mandatory;
}
.swiper-css-mode.swiper-free-mode > .swiper-wrapper {
  scroll-snap-type: none;
}
.swiper-css-mode.swiper-free-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: none;
}
.swiper-css-mode.swiper-centered > .swiper-wrapper::before {
  content: "";
  flex-shrink: 0;
  order: 9999;
}
.swiper-css-mode.swiper-centered > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: center center;
  scroll-snap-stop: always;
}
.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {
  margin-inline-start: var(--swiper-centered-offset-before);
}
.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper::before {
  height: 100%;
  min-height: 1px;
  width: var(--swiper-centered-offset-after);
}
.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
  margin-block-start: var(--swiper-centered-offset-before);
}
.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper::before {
  width: 100%;
  min-width: 1px;
  height: var(--swiper-centered-offset-after);
}

/* Slide styles start */
/* 3D Shadows */
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}
.swiper-3d .swiper-slide-shadow {
  background: rgba(0, 0, 0, 0.15);
}
.swiper-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  transform-origin: 50%;
  box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}

.swiper:not(.swiper-watch-progress) .swiper-lazy-preloader,
.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader {
  animation: swiper-preloader-spin 1s infinite linear;
}

.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff;
}

.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000;
}

@keyframes swiper-preloader-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* Slide styles end */
[data-sal] {
  transition-delay: 0s;
  transition-delay: var(--sal-delay, 0s);
  transition-duration: 0.2s;
  transition-duration: var(--sal-duration, 0.2s);
  transition-timing-function: ease;
  transition-timing-function: var(--sal-easing, ease);
}

[data-sal][data-sal-duration="200"] {
  transition-duration: 0.2s;
}

[data-sal][data-sal-duration="250"] {
  transition-duration: 0.25s;
}

[data-sal][data-sal-duration="300"] {
  transition-duration: 0.3s;
}

[data-sal][data-sal-duration="350"] {
  transition-duration: 0.35s;
}

[data-sal][data-sal-duration="400"] {
  transition-duration: 0.4s;
}

[data-sal][data-sal-duration="450"] {
  transition-duration: 0.45s;
}

[data-sal][data-sal-duration="500"] {
  transition-duration: 0.5s;
}

[data-sal][data-sal-duration="550"] {
  transition-duration: 0.55s;
}

[data-sal][data-sal-duration="600"] {
  transition-duration: 0.6s;
}

[data-sal][data-sal-duration="650"] {
  transition-duration: 0.65s;
}

[data-sal][data-sal-duration="700"] {
  transition-duration: 0.7s;
}

[data-sal][data-sal-duration="750"] {
  transition-duration: 0.75s;
}

[data-sal][data-sal-duration="800"] {
  transition-duration: 0.8s;
}

[data-sal][data-sal-duration="850"] {
  transition-duration: 0.85s;
}

[data-sal][data-sal-duration="900"] {
  transition-duration: 0.9s;
}

[data-sal][data-sal-duration="950"] {
  transition-duration: 0.95s;
}

[data-sal][data-sal-duration="1000"] {
  transition-duration: 1s;
}

[data-sal][data-sal-duration="1050"] {
  transition-duration: 1.05s;
}

[data-sal][data-sal-duration="1100"] {
  transition-duration: 1.1s;
}

[data-sal][data-sal-duration="1150"] {
  transition-duration: 1.15s;
}

[data-sal][data-sal-duration="1200"] {
  transition-duration: 1.2s;
}

[data-sal][data-sal-duration="1250"] {
  transition-duration: 1.25s;
}

[data-sal][data-sal-duration="1300"] {
  transition-duration: 1.3s;
}

[data-sal][data-sal-duration="1350"] {
  transition-duration: 1.35s;
}

[data-sal][data-sal-duration="1400"] {
  transition-duration: 1.4s;
}

[data-sal][data-sal-duration="1450"] {
  transition-duration: 1.45s;
}

[data-sal][data-sal-duration="1500"] {
  transition-duration: 1.5s;
}

[data-sal][data-sal-duration="1550"] {
  transition-duration: 1.55s;
}

[data-sal][data-sal-duration="1600"] {
  transition-duration: 1.6s;
}

[data-sal][data-sal-duration="1650"] {
  transition-duration: 1.65s;
}

[data-sal][data-sal-duration="1700"] {
  transition-duration: 1.7s;
}

[data-sal][data-sal-duration="1750"] {
  transition-duration: 1.75s;
}

[data-sal][data-sal-duration="1800"] {
  transition-duration: 1.8s;
}

[data-sal][data-sal-duration="1850"] {
  transition-duration: 1.85s;
}

[data-sal][data-sal-duration="1900"] {
  transition-duration: 1.9s;
}

[data-sal][data-sal-duration="1950"] {
  transition-duration: 1.95s;
}

[data-sal][data-sal-duration="2000"] {
  transition-duration: 2s;
}

[data-sal][data-sal-delay="50"] {
  transition-delay: 0.05s;
}

[data-sal][data-sal-delay="100"] {
  transition-delay: 0.1s;
}

[data-sal][data-sal-delay="150"] {
  transition-delay: 0.15s;
}

[data-sal][data-sal-delay="200"] {
  transition-delay: 0.2s;
}

[data-sal][data-sal-delay="250"] {
  transition-delay: 0.25s;
}

[data-sal][data-sal-delay="300"] {
  transition-delay: 0.3s;
}

[data-sal][data-sal-delay="350"] {
  transition-delay: 0.35s;
}

[data-sal][data-sal-delay="400"] {
  transition-delay: 0.4s;
}

[data-sal][data-sal-delay="450"] {
  transition-delay: 0.45s;
}

[data-sal][data-sal-delay="500"] {
  transition-delay: 0.5s;
}

[data-sal][data-sal-delay="550"] {
  transition-delay: 0.55s;
}

[data-sal][data-sal-delay="600"] {
  transition-delay: 0.6s;
}

[data-sal][data-sal-delay="650"] {
  transition-delay: 0.65s;
}

[data-sal][data-sal-delay="700"] {
  transition-delay: 0.7s;
}

[data-sal][data-sal-delay="750"] {
  transition-delay: 0.75s;
}

[data-sal][data-sal-delay="800"] {
  transition-delay: 0.8s;
}

[data-sal][data-sal-delay="850"] {
  transition-delay: 0.85s;
}

[data-sal][data-sal-delay="900"] {
  transition-delay: 0.9s;
}

[data-sal][data-sal-delay="950"] {
  transition-delay: 0.95s;
}

[data-sal][data-sal-delay="1000"] {
  transition-delay: 1s;
}

[data-sal][data-sal-easing=linear] {
  transition-timing-function: linear;
}

[data-sal][data-sal-easing=ease] {
  transition-timing-function: ease;
}

[data-sal][data-sal-easing=ease-in] {
  transition-timing-function: ease-in;
}

[data-sal][data-sal-easing=ease-out] {
  transition-timing-function: ease-out;
}

[data-sal][data-sal-easing=ease-in-out] {
  transition-timing-function: ease-in-out;
}

[data-sal][data-sal-easing=ease-in-cubic] {
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

[data-sal][data-sal-easing=ease-out-cubic] {
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

[data-sal][data-sal-easing=ease-in-out-cubic] {
  transition-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1);
}

[data-sal][data-sal-easing=ease-in-circ] {
  transition-timing-function: cubic-bezier(0.6, 0.04, 0.98, 0.335);
}

[data-sal][data-sal-easing=ease-out-circ] {
  transition-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
}

[data-sal][data-sal-easing=ease-in-out-circ] {
  transition-timing-function: cubic-bezier(0.785, 0.135, 0.15, 0.86);
}

[data-sal][data-sal-easing=ease-in-expo] {
  transition-timing-function: cubic-bezier(0.95, 0.05, 0.795, 0.035);
}

[data-sal][data-sal-easing=ease-out-expo] {
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}

[data-sal][data-sal-easing=ease-in-out-expo] {
  transition-timing-function: cubic-bezier(1, 0, 0, 1);
}

[data-sal][data-sal-easing=ease-in-quad] {
  transition-timing-function: cubic-bezier(0.55, 0.085, 0.68, 0.53);
}

[data-sal][data-sal-easing=ease-out-quad] {
  transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

[data-sal][data-sal-easing=ease-in-out-quad] {
  transition-timing-function: cubic-bezier(0.455, 0.03, 0.515, 0.955);
}

[data-sal][data-sal-easing=ease-in-quart] {
  transition-timing-function: cubic-bezier(0.895, 0.03, 0.685, 0.22);
}

[data-sal][data-sal-easing=ease-out-quart] {
  transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
}

[data-sal][data-sal-easing=ease-in-out-quart] {
  transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1);
}

[data-sal][data-sal-easing=ease-in-quint] {
  transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
}

[data-sal][data-sal-easing=ease-out-quint] {
  transition-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
}

[data-sal][data-sal-easing=ease-in-out-quint] {
  transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
}

[data-sal][data-sal-easing=ease-in-sine] {
  transition-timing-function: cubic-bezier(0.47, 0, 0.745, 0.715);
}

[data-sal][data-sal-easing=ease-out-sine] {
  transition-timing-function: cubic-bezier(0.39, 0.575, 0.565, 1);
}

[data-sal][data-sal-easing=ease-in-out-sine] {
  transition-timing-function: cubic-bezier(0.445, 0.05, 0.55, 0.95);
}

[data-sal][data-sal-easing=ease-in-back] {
  transition-timing-function: cubic-bezier(0.6, -0.28, 0.735, 0.045);
}

[data-sal][data-sal-easing=ease-out-back] {
  transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

[data-sal][data-sal-easing=ease-in-out-back] {
  transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

[data-sal|=fade] {
  opacity: 0;
  transition-property: opacity;
}

[data-sal|=fade].sal-animate, body.sal-disabled [data-sal|=fade] {
  opacity: 1;
}

[data-sal|=slide] {
  opacity: 0;
  transition-property: opacity, transform;
}

[data-sal=slide-up] {
  transform: translateY(20%);
}

[data-sal=slide-down] {
  transform: translateY(-20%);
}

[data-sal=slide-left] {
  transform: translateX(20%);
}

[data-sal=slide-right] {
  transform: translateX(-20%);
}

[data-sal|=slide].sal-animate, body.sal-disabled [data-sal|=slide] {
  opacity: 1;
  transform: none;
}

[data-sal|=zoom] {
  opacity: 0;
  transition-property: opacity, transform;
}

[data-sal=zoom-in] {
  transform: scale(0.5);
}

[data-sal=zoom-out] {
  transform: scale(1.1);
}

[data-sal|=zoom].sal-animate, body.sal-disabled [data-sal|=zoom] {
  opacity: 1;
  transform: none;
}

[data-sal|=flip] {
  backface-visibility: hidden;
  transition-property: transform;
}

[data-sal=flip-left] {
  transform: perspective(2000px) rotateY(-91deg);
}

[data-sal=flip-right] {
  transform: perspective(2000px) rotateY(91deg);
}

[data-sal=flip-up] {
  transform: perspective(2000px) rotateX(-91deg);
}

[data-sal=flip-down] {
  transform: perspective(2000px) rotateX(91deg);
}

[data-sal|=flip].sal-animate, body.sal-disabled [data-sal|=flip] {
  transform: none;
}


html {
  --sal-duration: 1s;
  scroll-behavior: smooth;
  background-color: #ffffff;
}

.site-wrapper {
  overflow: hidden;
}

html {
  font-family: "Open Sans Variable", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.9;
  color: #1b2747;
}

body {
  font-family: inherit;
  font-size: clamp(0.875rem, 0.7727rem + 0.2841vi, 1rem);
  font-weight: inherit;
  line-height: inherit;
  color: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Tenor Sans", "DM Serif Display", "Open Sans Variable", sans-serif;
  font-weight: 400;
}

h1 {
  font-size: clamp(2.625rem, 1.8068rem + 2.2727vi, 3.625rem);
  line-height: 1.2;
}

h2 {
  font-size: clamp(2.25rem, 1.6364rem + 1.7045vi, 3rem);
  line-height: 1.25;
}

h3 {
  font-size: clamp(2rem, 1.4886rem + 1.4205vi, 2.625rem);
  line-height: 1.3;
}

h4 {
  font-size: clamp(1.5rem, 0.8864rem + 1.7045vi, 2.25rem);
}

h5 {
  font-size: clamp(1.125rem, 0.8182rem + 0.8523vi, 1.5rem);
}

h6 {
  font-size: clamp(0.875rem, 0.7727rem + 0.2841vi, 1rem);
}

p {
  margin-bottom: 1.5em;
}
p:last-child, p:only-child {
  margin-bottom: 0;
}

a {
  padding-bottom: 0.2em;
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  text-decoration: none;
  background-image: none;
  transition: 150ms ease-in-out color;
}
a:hover, a:active {
  color: #d0d2d8;
  text-decoration: none;
}
a.wave-link, .contact-offer a.wpcf7-submit, .contact-us__data a, .contact-us__form a.wpcf7-submit {
  position: relative;
}
a.wave-link::after, .contact-offer a.wpcf7-submit::after, .contact-us__data a::after, .contact-us__form a.wpcf7-submit::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: -20px;
  width: 100%;
  height: 6px;
  opacity: 0;
  background: transparent;
  transition: 450ms ease-in-out opacity;
}
a.wave-link:hover::after, .contact-offer a.wpcf7-submit:hover::after, .contact-us__data a:hover::after, .contact-us__form a.wpcf7-submit:hover::after, a.wave-link:active::after, .contact-offer a.wpcf7-submit:active::after, .contact-us__data a:active::after, .contact-us__form a.wpcf7-submit:active::after {
  left: 0;
  opacity: 1;
  background: currentcolor;
  transition: 450ms ease-in-out opacity;
  -webkit-mask-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns:ev='http://www.w3.org/2001/xml-events' viewBox='0 0 20 4'%3E%3Cstyle type='text/css'%3E.squiggle{animation:shift 2.5s linear infinite;}@keyframes shift {from {transform:translateX(0);}to {transform:translateX(-20px);}}%3C/style%3E%3Cpath fill='none' stroke='currentColor' stroke-width='var(--stroke-width)' class='squiggle' d='M0,3.5 c 5,0,5,-3,10,-3 s 5,3,10,3 c 5,0,5,-3,10,-3 s 5,3,10,3'/%3E%3C/svg%3E");
          mask-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns:ev='http://www.w3.org/2001/xml-events' viewBox='0 0 20 4'%3E%3Cstyle type='text/css'%3E.squiggle{animation:shift 2.5s linear infinite;}@keyframes shift {from {transform:translateX(0);}to {transform:translateX(-20px);}}%3C/style%3E%3Cpath fill='none' stroke='currentColor' stroke-width='var(--stroke-width)' class='squiggle' d='M0,3.5 c 5,0,5,-3,10,-3 s 5,3,10,3 c 5,0,5,-3,10,-3 s 5,3,10,3'/%3E%3C/svg%3E");
}

b,
strong {
  font-weight: 700;
}

ul:not([class]),
ol:not([class]) {
  margin-left: 1rem;
}
ul:not([class]) ul:not([class]),
ul:not([class]) ol:not([class]),
ol:not([class]) ul:not([class]),
ol:not([class]) ol:not([class]) {
  margin-bottom: 0;
  margin-left: 2rem;
}

sub,
sup {
  font-size: 0.625em;
  vertical-align: center;
}

@keyframes wave {
  0% {
    margin-left: 0;
  }
  100% {
    margin-left: -1600px;
  }
}
@keyframes swell {
  0%, 100% {
    transform: translate3d(0, -25px, 0);
  }
  50% {
    transform: translate3d(0, 5px, 0);
  }
}
@keyframes liquidButton {
  0% {
    transform: translate(-50%, -75%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -75%) rotate(360deg);
  }
}
.nav__toggle {
  display: grid;
  place-content: center;
  width: 54px;
  height: 54px;
  background: none;
  border: none;
  cursor: pointer;
}
.nav__toggle span {
  display: block;
  width: 29px;
  height: 2px;
  position: relative;
  background-color: #ffffff;
  border-radius: 3px;
  transition: 150ms linear all;
}
.nav__toggle span:before, .nav__toggle span:after {
  content: "";
  position: absolute;
  width: 29px;
  height: 2px;
  left: 0;
  background-color: #ffffff;
  border-radius: 3px;
  transition: 150ms linear all;
}
.nav__toggle span:before {
  top: -9px;
}
.nav__toggle span:after {
  top: 9px;
}
.nav__toggle.is-expanded span {
  background-color: transparent;
}
.nav__toggle.is-expanded span:before {
  transform: translateY(9px) rotate(45deg);
}
.nav__toggle.is-expanded span:after {
  transform: translateY(-9px) rotate(-45deg);
}
.nav--primary .nav__list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding-block: clamp(6.25rem, 3.6932rem + 7.1023vi, 9.375rem) 40px;
  width: 50vw;
  height: 100vh;
  position: absolute;
  top: 0;
  right: -110vw;
  z-index: -1;
  background-color: #1b2747;
  list-style: none;
  transition: 350ms linear right;
  overflow: auto;
}
@media (max-width: 959px) {
  .nav--primary .nav__list {
    width: 100vw;
  }
}
.nav--primary .nav__list.is-visible {
  right: 0;
}
@media (max-height: 759px) {
  .nav--primary .nav__list {
    gap: 16px;
    padding-top: 120px;
  }
}
@media (max-height: 559px) {
  .nav--primary .nav__list {
    overflow-y: auto;
  }
}
.nav--primary .nav__link {
  font-family: "Tenor Sans", "DM Serif Display", "Open Sans Variable", sans-serif;
  font-size: clamp(1.5rem, 0.8864rem + 1.7045vi, 2.25rem);
  color: #ffffff;
}
@media (max-height: 759px) {
  .nav--primary .nav__link {
    line-height: 1.1;
  }
}
@media (max-height: 559px) {
  .nav--primary .nav__link {
    font-size: clamp(1.125rem, 0.8182rem + 0.8523vi, 1.5rem);
  }
}
.nav--primary .nav__link:hover, .nav--primary .nav__link:active {
  color: rgb(152.2558139535, 156.6279069767, 169.7441860465);
  text-decoration: none;
}
.nav--page {
  margin-top: 40px;
}
.nav--page .nav__list {
  display: flex;
  gap: clamp(1.25rem, 0.2273rem + 2.8409vi, 2.5rem);
  padding: 0;
  height: unset;
  position: unset;
  background: none;
  box-shadow: unset;
  overflow-y: unset;
  list-style: none;
}
@media (max-width: 767px) {
  .nav--page .nav__list {
    gap: 8px;
    flex-wrap: wrap;
  }
}
@media (max-width: 767px) {
  .nav--page .nav__item {
    flex: 0 0 100%;
  }
}
.nav--page .nav__link {
  font-size: clamp(1.125rem, 0.8182rem + 0.8523vi, 1.5rem);
}
.nav--page .nav__link.is-active {
  color: #1b2747;
  font-weight: 700;
}

.xtext {
  color: #000;
}

.branding * {
  transition: 350ms ease-in-out height;
}
.branding a {
  display: block;
}
.branding img {
  height: 71px;
}
.is-fixed .branding img {
  height: 40px;
}

.favorites__toggle {
  display: block;
  margin-right: 10px;
  background: none;
  border: none;
  cursor: pointer;
  transition: 150ms ease-in-out all;
}
@media (max-width: 30rem) {
  .favorites__toggle {
    width: 17px;
  }
}
.favorites__toggle:hover {
  opacity: 0.7;
}

.favorite__window {
  background-color: #1b2747;
}
.favorite__close {
  background-color: rgb(41.0510204082, 59.2959183673, 107.9489795918);
}
.favorite__close:hover {
  background-color: rgb(34.0255102041, 49.1479591837, 89.4744897959);
}
.favorite__form__field .wpcf7-submit {
  background-color: rgb(41.0510204082, 59.2959183673, 107.9489795918);
}
.favorite__form__field .wpcf7-submit:hover {
  background-color: rgb(34.0255102041, 49.1479591837, 89.4744897959);
}

.lang__list {
  margin: 0;
  list-style: none;
  overflow-y: hidden;
}
.lang li {
  text-transform: uppercase;
}
.lang li a {
  font-size: clamp(0.8125rem, 0.7614rem + 0.142vi, 0.875rem);
  font-weight: 700;
  color: #ffffff;
}
.lang li a:after {
  content: "";
}

.hero {
  position: relative;
  width: 100vw;
  height: 100svh;
  background-color: #1b2747;
}
.hero::before, .hero::after {
  content: none;
  position: absolute;
  bottom: 0;
  transform: translate3d(0, 0, 0);
  width: 6400px;
  height: 144px;
}
@media (max-width: 767px) {
  .hero::before, .hero::after {
    bottom: -44px;
  }
}
.hero::before {
  z-index: 3;
  background: url("data:image/svg+xml,%3Csvg width='1600' height='144' viewBox='0 0 1600 144' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M1600 87.9996C1289 87.9996 1190.1 -0.182025 789 -0.000207506C389 -0.000207506 289 87.9996 0 87.9996V144H1600C1600 144 1600 109.09 1600 87.9996Z' fill='%23ffffff'/%3E%3C/svg%3E%0A") repeat-x;
  animation: wave 12s cubic-bezier(0.36, 0.45, 0.63, 0.53) infinite;
}
.hero::after {
  z-index: 2;
  bottom: 10px;
  opacity: 0.25;
  background: url("data:image/svg+xml,%3Csvg width='1600' height='144' viewBox='0 0 1600 144' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M1600 87.9996C1289 87.9996 1190.1 -0.182025 789 -0.000207506C389 -0.000207506 289 87.9996 0 87.9996V144H1600C1600 144 1600 109.09 1600 87.9996Z' fill='%23d0d2d8'/%3E%3C/svg%3E%0A") repeat-x;
  animation: wave 8s cubic-bezier(0.36, 0.45, 0.63, 0.53) -0.125s infinite, swell 8s ease -1.25s infinite;
}
@media (max-width: 767px) {
  .hero::after {
    bottom: -34px;
  }
}
.hero__image {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
}
.hero__image img {
  display: none;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (min-width: 960px) {
  .hero__image img.hero-image-desktop {
    display: block;
  }
}
@media (min-width: 576px) and (max-width: 959px) {
  .hero__image img.hero-image-tablet {
    display: block;
  }
}
@media (max-width: 575px) {
  .hero__image img.hero-image-mobile {
    display: block;
  }
}
.hero__inner {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding-block: clamp(8.75rem, 5.6818rem + 8.5227vi, 12.5rem);
  padding-inline: clamp(1.25rem, -1.3068rem + 7.1023vi, 4.375rem);
}
@media (max-width: 60rem) {
  .hero__inner {
    margin-left: unset;
  }
}
.hero__content {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
  text-align: left;
}
.hero__heading {
  margin-bottom: 0;
  font-size: clamp(2.625rem, 1.8068rem + 2.2727vi, 3.625rem);
  color: #1d1d1b;
}
.hero__heading--light {
  color: #ffffff !important;
}
.hero__slogan {
  order: -1;
  margin-bottom: 0;
  font-size: clamp(2rem, 1.4886rem + 1.4205vi, 2.625rem);
  color: #1d1d1b;
  text-transform: uppercase;
}
.hero__slogan--light {
  color: #ffffff !important;
}
.hero__slogan--dark {
  color: #1d1d1b !important;
}
.hero__bg-logo {
  pointer-events: none;
  position: absolute;
  right: 0;
  bottom: -17vw;
}
@media (min-width: 120rem) {
  .hero__bg-logo {
    bottom: -10rem;
  }
}
.hero--noimage {
  height: 600px;
  color: #1d1d1b;
}
@media (width <= 767px) {
  .hero--noimage {
    overflow: hidden;
    height: 480px;
  }
}
@media (max-width: 767px) {
  .contact .hero--noimage {
    height: 360px;
  }
}
.hero--noimage .hero__inner {
  position: relative;
  top: 0;
  left: 0;
}
@media (max-width: 767px) {
  .hero--noimage .hero__inner {
    padding-top: 120px;
  }
}
.hero--noimage .hero__content {
  justify-content: center;
}
.hero--noimage .hero__heading {
  color: #ffffff;
}

.hero-home {
  will-change: transform;
  position: relative;
  display: grid;
  color: #ffffff;
}
.hero-home::before {
  content: "";
  position: absolute;
  z-index: 4;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.06);
}
.hero-home__image {
  position: relative;
  grid-column: 1/2;
  grid-row: 1/2;
  height: auto;
  max-height: 1500px;
}
.hero-home__image img {
  display: none;
  aspect-ratio: 1440/1500;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
@media (min-width: 960px) {
  .hero-home__image img.hero-image-desktop {
    display: block;
  }
}
@media (min-width: 576px) and (max-width: 959px) {
  .hero-home__image img.hero-image-tablet {
    display: block;
  }
}
@media (max-width: 575px) {
  .hero-home__image img.hero-image-mobile {
    display: block;
  }
}
.hero-home__content {
  z-index: 5;
  grid-column: 1/2;
  grid-row: 1/2;
  width: min(1440px, 100%);
  margin-inline: auto;
  padding-block: clamp(8.75rem, 5.6818rem + 8.5227vi, 12.5rem);
  padding-inline: clamp(1.25rem, -1.3068rem + 7.1023vi, 4.375rem);
  text-align: center;
}
.hero-home__slogan {
  font-size: clamp(2.625rem, 0.2917rem + 6.4815vw, 6.125rem);
  line-height: 1.1;
  text-align: center;
  text-transform: uppercase;
}
@media (max-width: 339px) {
  .hero-home__slogan {
    font-size: 36px;
  }
}
.hero-home__description {
  margin-top: 12px;
  font-size: clamp(1.125rem, 0.8182rem + 0.8523vi, 1.5rem);
}
.hero-home__button {
  position: relative;
  z-index: 1;
  overflow: unset !important;
  margin-top: clamp(1.25rem, 0.2273rem + 2.8409vi, 2.5rem);
}
.hero-home__button:hover {
  background: rgb(229.5, 0, 0);
}
.hero-home__button .liquid {
  display: none;
}

.button {
  cursor: pointer;
  position: relative;
  z-index: 1;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 280px;
  padding: 0.625rem 2rem;
  border: 1px solid #ffffff;
  border-radius: 50px;
  font-size: clamp(0.8125rem, 0.7614rem + 0.142vi, 0.875rem);
  font-weight: 700;
  line-height: 28px;
  color: #ffffff;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  background-color: transparent;
  transition: 250ms ease-in-out all;
}
.section-light .button {
  border-color: #1b2747;
  color: #1b2747;
}
.section-dark .button:hover, .section-dark .button:active, .section-dark .button:focus {
  color: #ffffff;
  background-color: #1b2747;
}
.section-light .button:hover, .section-light .button:active, .section-light .button:focus {
  color: #ffffff;
  background-color: #1b2747;
}
.button:hover .liquid, .button:active .liquid, .button:focus .liquid {
  top: -100px;
}
.button .liquid {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  rotate: 180deg;
  width: 100%;
  height: 200px;
  background: transparent;
  box-shadow: inset 0 0 50px rgba(27, 39, 71, 0.25);
  transition: 1s;
}
.button .liquid::before, .button .liquid::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -75%);
  width: 200%;
  height: 200%;
  background: transparent;
}
.button .liquid::before {
  border-radius: 45%;
  background: rgba(255, 255, 255, 0.15);
  animation: liquidButton 12s linear infinite;
}
.button .liquid::after {
  border-radius: 40%;
  background: rgba(255, 255, 255, 0.4);
  animation: liquidButton 14s linear infinite;
}
.button--secondary, .contact-offer .wpcf7-submit {
  border: 1px solid #1b2747;
  color: #1b2747;
}
.button--secondary:hover, .contact-offer .wpcf7-submit:hover {
  color: #1b2747;
}
.button--red {
  border-color: red;
  color: #ffffff !important;
  background: red;
}

input[type=text],
input[type=tel],
input[type=email],
textarea {
  display: block;
  width: 100%;
  padding-block: 0.625rem;
  padding-inline: 1.5rem;
  font-size: 0.75rem;
  line-height: 2;
  color: #ffffff;
  background-color: transparent;
  border: 1px solid #ffffff;
  border-radius: 50px;
}
.contact input[type=text], .apartments input[type=text],
.contact input[type=tel],
.apartments input[type=tel],
.contact input[type=email],
.apartments input[type=email],
.contact textarea,
.apartments textarea {
  color: #1d1d1b;
  border-color: #1b2747;
}
input[type=text]:focus-visible,
input[type=tel]:focus-visible,
input[type=email]:focus-visible,
textarea:focus-visible {
  border-color: #d0d2d8 !important;
  outline-color: #d0d2d8;
}
input[type=text]::-moz-placeholder, input[type=tel]::-moz-placeholder, input[type=email]::-moz-placeholder, textarea::-moz-placeholder {
  text-transform: uppercase;
}
input[type=text]::placeholder,
input[type=tel]::placeholder,
input[type=email]::placeholder,
textarea::placeholder {
  text-transform: uppercase;
}
.contact input[type=text]::-moz-placeholder, .apartments input[type=text]::-moz-placeholder, .contact input[type=tel]::-moz-placeholder, .apartments input[type=tel]::-moz-placeholder, .contact input[type=email]::-moz-placeholder, .apartments input[type=email]::-moz-placeholder, .contact textarea::-moz-placeholder, .apartments textarea::-moz-placeholder {
  color: #1b2747;
  font-weight: 500;
}
.contact input[type=text]::placeholder, .apartments input[type=text]::placeholder,
.contact input[type=tel]::placeholder,
.apartments input[type=tel]::placeholder,
.contact input[type=email]::placeholder,
.apartments input[type=email]::placeholder,
.contact textarea::placeholder,
.apartments textarea::placeholder {
  color: #1b2747;
  font-weight: 500;
}

input[type=checkbox] {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  display: grid;
  place-content: center;
  margin: 0;
  margin-top: 3px;
  font: inherit;
  color: #ffffff;
  width: 13px;
  height: 13px;
  background-color: transparent;
  border: 1px solid #ffffff;
  border-radius: 0;
}
.contact input[type=checkbox], .apartments input[type=checkbox] {
  border-color: #1b2747;
}
input[type=checkbox]:before {
  content: "";
  width: 9px;
  height: 9px;
  transform: scale(0);
  transition: 150ms transform ease-in-out;
  box-shadow: inset 1rem 1rem #ffffff;
  border-radius: 0;
}
.contact input[type=checkbox]:before, .apartments input[type=checkbox]:before {
  box-shadow: inset 1rem 1rem #1b2747;
}
input[type=checkbox]:checked:before {
  transform: scale(1);
}

input[type=date] {
  padding-block: 12px;
  padding-inline: 24px;
  font-size: 0.75rem;
  line-height: 2;
  background-color: transparent;
  border: 1px solid #1b2747;
  border-radius: 0;
}
input[type=date]:focus-visible {
  border-color: #d0d2d8 !important;
  outline-color: #d0d2d8;
}

.location-map {
  margin-block: 40px clamp(2.5rem, -0.517rem + 8.3807vi, 6.1875rem);
  margin-inline: auto;
}
.location-map__map {
  position: relative;
  overflow: hidden;
  height: 100vh;
  max-height: 724px;
}
.location-map__map::before {
  pointer-events: none;
  content: none;
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  width: 100%;
  height: 200px;
  background: linear-gradient(0deg, rgba(27, 39, 71, 0) 0%, rgb(27, 39, 71) 100%);
}
.location-map__legend {
  width: min(1440px, 100%);
  margin-top: clamp(1.25rem, 0.2273rem + 2.8409vi, 2.5rem);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, -1.3068rem + 7.1023vi, 4.375rem);
}
.contact .location-map__legend {
  width: min(1280px, 100%);
}
.location-map__legend-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  list-style: none;
}
@media (max-width: 959px) {
  .location-map__legend-list {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 639px) {
  .location-map__legend-list {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 359px) {
  .location-map__legend-list {
    grid-template-columns: 1fr;
  }
}
.location-map__legend-item {
  display: flex;
  gap: 10px;
  align-items: center;
}
.location-map__legend-item img {
  border: 2px solid #d0d2d8;
  border-radius: 50px;
}

.image-carousel {
  margin-block: clamp(3.75rem, 0.8333rem + 8.1019vw, 8.125rem) 60px;
}
.image-carousel__header {
  padding-inline: clamp(1.25rem, -1.3068rem + 7.1023vi, 4.375rem);
  text-align: center;
}
.image-carousel__heading {
  margin-bottom: clamp(2.5rem, 0.9659rem + 4.2614vi, 4.375rem);
  font-size: clamp(2.25rem, 0.9167rem + 3.7037vw, 4.25rem);
  text-transform: uppercase;
}
.image-carousel__inner {
  position: relative;
}
.image-carousel__inner .swiper-wrapper {
  height: 100%;
}
.image-carousel__item a {
  display: block;
}
.image-carousel__item a img {
  width: auto;
  max-width: 670px;
  height: 100%;
  max-height: 560px;
  -o-object-fit: contain;
     object-fit: contain;
  transition: 350ms ease-in-out scale;
}
.image-carousel__item a:hover img {
  scale: 1.025;
  height: 100%;
}
.image-carousel__controls {
  position: absolute;
  z-index: 2;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 24px;
  justify-content: center;
}
.image-carousel__controls .swiper-button {
  cursor: pointer;
  padding-inline: 8px;
  border: none;
  background: none;
}

.image-slider {
  margin-block: clamp(3.75rem, 0.8333rem + 8.1019vw, 8.125rem) 60px;
  padding-inline: clamp(1.25rem, -1.3068rem + 7.1023vi, 4.375rem);
}
.image-slider__inner {
  width: min(1440px, 100%);
  margin-inline: auto;
}
.image-slider__header {
  padding-inline: clamp(1.25rem, -1.3068rem + 7.1023vi, 4.375rem);
  text-align: center;
}
.image-slider__heading {
  margin-bottom: clamp(2.5rem, 0.9659rem + 4.2614vi, 4.375rem);
  font-size: clamp(2.25rem, 0.9167rem + 3.7037vw, 4.25rem);
  text-transform: uppercase;
}
.image-slider__item {
  overflow: hidden;
  display: block;
}
.image-slider__item img {
  width: auto;
  max-width: 670px;
  height: 100%;
  max-height: 560px;
  -o-object-fit: contain;
     object-fit: contain;
  transition: 350ms ease-in-out scale;
}
.image-slider__item:hover img {
  scale: 1.025;
  height: 100%;
}
.image-slider .splide {
  position: relative;
}
.image-slider .splide__track {
  overflow: visible;
}
.image-slider .splide__arrows {
  position: relative;
  transform: unset;
  display: flex;
  gap: 20px;
  margin-top: clamp(1.25rem, 0.6364rem + 1.7045vi, 2rem);
}
.image-slider .splide__arrow {
  position: unset;
  transform: unset;
  rotate: unset;
  width: 60px;
  height: 60px;
  border: none;
  opacity: 1;
  background: transparent;
  outline: none;
}
@media (max-width: 575px) {
  .image-slider .splide__arrow {
    width: 40px;
    height: 40px;
  }
}
.image-slider .splide__arrow svg {
  width: 100%;
  height: 100%;
}
.image-slider .splide__arrow--prev {
  rotate: 180deg;
}

.large-image {
  background: #1b2747;
}
.large-image__image {
  width: 100%;
  border-top: 12px solid #ffffff;
  border-bottom: 12px solid #ffffff;
}
.large-image__image img {
  aspect-ratio: 2/1;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

.filters__main, .filters__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  align-items: start;
}
@media (max-width: 86rem) {
  .filters__main, .filters__inner {
    grid-template-columns: repeat(4, 1fr);
    row-gap: 3.75rem;
  }
}
@media (max-width: 68rem) {
  .filters__main, .filters__inner {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 60rem) {
  .filters__main, .filters__inner {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 38rem) {
  .filters__main, .filters__inner {
    grid-template-columns: 1fr;
    row-gap: 1.25rem;
  }
}
.filters__advanced {
  padding-top: 0;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: 250ms ease-in-out all;
}
.filters__advanced.is-visible {
  padding-top: clamp(1.25rem, 0.3804rem + 4.3478vw, 3.75rem);
  max-height: 500px;
  opacity: 1;
  overflow: unset;
  transition: 250ms ease-in-out all;
}

.filter-dropdown {
  position: relative;
  align-self: center;
}
.filter-dropdown__slider {
  position: relative;
  z-index: 1;
}
.filter-dropdown__clearField {
  justify-content: flex-end !important;
  overflow: hidden;
  max-height: 0;
  transition: 0.3s all;
  padding-block: 0px !important;
  position: sticky;
  top: 0;
  left: 0;
  background-color: #ffffff;
  z-index: 10;
}
.filter-dropdown__clearField.active {
  max-height: 60px;
  padding-block: 5px !important;
}
.filter-dropdown__clearField span {
  display: inline-block;
  text-transform: lowercase;
  border: 1px solid #1b2747;
  padding: 0.5rem 1rem;
  font-size: 1rem;
  line-height: 1;
  cursor: pointer;
  transition: 300ms all;
}
.filter-dropdown__clearField span:hover {
  color: #1b2747;
  background: #d0d2d8;
}
.filter-dropdown a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: clamp(15px, 0.8375rem + 0.1875vw, 1.0625rem);
  font-weight: 500;
  border-bottom: 1px solid #1b2747;
}
.filter-dropdown a:before {
  content: attr(data-placeholder);
  position: absolute;
  top: -10px;
  left: 0;
  line-height: 1;
  font-size: 0.7em;
  opacity: 0;
  transition: 0.33s all;
}
@media (max-width: 767px) {
  .filter-dropdown a:before {
    top: -8px;
  }
}
.filter-dropdown a.active:before {
  opacity: 0.8;
}
.filter-dropdown a:hover, .filter-dropdown a:active {
  color: #1b2747;
  text-decoration: none;
}
.filter-dropdown a:after {
  content: url("../../public/svg/ico-chevron-down.svg");
  rotate: 0deg;
  transition: 150ms ease-in-out all;
}
.filter-dropdown__inner {
  padding-inline: 0.625rem;
  width: 100%;
  max-height: 0;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 20;
  background-color: #ffffff;
  box-shadow: 0px 0px 4px 0px rgba(66, 68, 90, 0.25);
  overflow: hidden;
}
.is-open .filter-dropdown__inner {
  padding-block: 0.625rem;
  max-height: 12rem;
  overflow: auto;
}
.filter-dropdown__inner label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-block: 5px;
  font-size: clamp(15px, 0.8375rem + 0.1875vw, 1.0625rem);
}
.filter-dropdown.is-open a:after {
  rotate: 180deg;
  transition: 150ms ease-in-out all;
}
@media (max-width: 38rem) {
  .filter-dropdown.JS-dropdown-pagination {
    margin-top: 0.625rem;
  }
}

.filter-range__label {
  display: flex;
  align-items: center;
  -moz-column-gap: 0.625rem;
       column-gap: 0.625rem;
  margin-bottom: 1.25rem;
  min-height: 30px;
  font-size: clamp(0.8125rem, 0.7875rem + 0.125vw, 0.9375rem);
  font-weight: 500;
}
.filter-range__label-separator {
  width: 1rem;
  height: 1px;
  background-color: currentColor;
}

.view-switch {
  display: flex;
  flex-direction: column;
}
@media (max-width: 60rem) {
  .view-switch {
    display: none;
  }
}
.view-switch__title {
  font-size: clamp(0.8125rem, 0.7875rem + 0.125vw, 0.9375rem);
  font-weight: 500;
  text-align: center;
}
.view-switch__inner {
  display: flex;
  justify-content: center;
  align-items: center;
}
.view-switch__label {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.view-switch__text {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.5rem 1rem;
  min-width: 6rem;
  height: 100%;
  font-size: clamp(0.8125rem, 0.7875rem + 0.125vw, 0.9375rem);
  font-weight: 400;
  color: #ffffff;
  background-color: #b3b3b3;
  border: 1px solid transparent;
  cursor: pointer;
}
.view-switch--table:before, .view-switch--tiles:before {
  content: "";
  margin-right: 8px;
  width: 23px;
  height: 23px;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: contain;
}
.view-switch--table:before {
  background-image: url("../../public/svg/icon--table.svg");
}
.view-switch--tiles:before {
  background-image: url("../../public/svg/icon--tiles.svg");
}
.view-switch input[type=checkbox] {
  width: 0;
  height: 0;
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  opacity: 0;
}
.view-switch input[type=checkbox]:checked + .view-switch__text {
  color: #ffffff;
  background-color: #1b2747;
  border: 1px solid #1b2747;
  transition: 150ms ease-in-out all;
}

.filters-toggle {
  justify-self: end;
  align-self: center;
}
@media (max-width: 86rem) {
  .filters-toggle {
    grid-column: span 4;
  }
}
@media (max-width: 68rem) {
  .filters-toggle {
    grid-column: span 2;
  }
}
@media (max-width: 60rem) {
  .filters-toggle {
    grid-column: unset;
  }
}
@media (max-width: 38rem) {
  .filters-toggle {
    grid-template-columns: 1fr;
    row-gap: 1.25rem;
  }
}
.filters-toggle__link {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: clamp(15px, 0.8375rem + 0.1875vw, 1.0625rem);
  font-weight: 500;
}
.filters-toggle__link:hover, .filters-toggle__link:active {
  text-decoration: none;
}
.filters-toggle__link:after {
  content: url("../../public/svg/ico-chevron-down.svg");
  rotate: 0deg;
  transition: 150ms ease-in-out all;
}
.filters-toggle__link.is-open:after {
  rotate: 180deg;
  transition: 150ms ease-in-out all;
}

.ui-slider {
  margin-inline: 0.75rem !important;
  height: 2px !important;
  background-color: rgb(207.75, 207.75, 207.75) !important;
  border: 0 !important;
}
.ui-slider-range {
  background: none !important;
  background-color: #1b2747 !important;
}
.ui-slider-handle {
  width: 1.5rem !important;
  height: 1.5rem !important;
  top: -11px !important;
  border-radius: 1rem !important;
  background: none !important;
  background-color: #1b2747 !important;
  border-color: #1b2747 !important;
  transition: 0.3s background-color;
}
.ui-slider-handle:after {
  content: "|||";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-42%) scaleY(0.8);
  color: #ffffff;
  font-size: 11px;
  font-weight: bold;
  line-height: 1;
  opacity: 0.666;
  margin-top: -1px;
  transition: 0.3s all;
  letter-spacing: 1px;
}
.ui-slider-handle:hover, .ui-slider-handle.ui-state-hover, .ui-slider-handle.ui-state-active {
  background-color: #1b2747 !important;
}
.ui-slider-handle:hover:after, .ui-slider-handle.ui-state-hover:after, .ui-slider-handle.ui-state-active:after {
  color: white;
  opacity: 1;
}

.curtain {
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  background: #1b2747;
  opacity: 1;
  visibility: visible;
  animation: slideUp 1s forwards;
  animation-delay: 3s;
  overflow: hidden;
}
.curtain__inner {
  width: 100vw;
  height: 30vh;
  position: fixed;
  bottom: 0;
  background: #d0d2d8;
  animation: water 2s forwards;
  animation-delay: 2s;
}
.curtain__inner:before, .curtain__inner:after {
  content: "";
  width: 6400px;
  height: 144px;
  top: -144px;
  position: absolute;
  transform: translate3d(0, 0, 0);
}
.curtain__inner:before {
  background: url("data:image/svg+xml,%3Csvg width='1600' height='144' viewBox='0 0 1600 144' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M1600 87.9996C1289 87.9996 1190.1 -0.182025 789 -0.000207506C389 -0.000207506 289 87.9996 0 87.9996V144H1600C1600 144 1600 109.09 1600 87.9996Z' fill='%23d0d2d8'/%3E%3C/svg%3E%0A") repeat-x;
  z-index: 3;
  animation: wave 12s cubic-bezier(0.36, 0.45, 0.63, 0.53) infinite;
}
.curtain__inner:after {
  bottom: 25px;
  background: url("data:image/svg+xml,%3Csvg width='1600' height='144' viewBox='0 0 1600 144' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M1600 87.9996C1289 87.9996 1190.1 -0.182025 789 -0.000207506C389 -0.000207506 289 87.9996 0 87.9996V144H1600C1600 144 1600 109.09 1600 87.9996Z' fill='%23d0d2d8'/%3E%3C/svg%3E%0A") repeat-x;
  animation: wave 8s cubic-bezier(0.36, 0.45, 0.63, 0.53) -0.125s infinite, swell 8s ease -1.25s infinite;
  opacity: 0.25;
  z-index: 2;
}
.curtain__logo {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1001;
  transform: translate(-50%, -50%);
}

@keyframes water {
  0% {
    bottom: 0;
    opacity: 1;
    pointer-events: none;
  }
  100% {
    bottom: -50vh;
    opacity: 0;
    pointer-events: none;
  }
}
@keyframes slideUp {
  0% {
    top: 0;
  }
  100% {
    top: -101vh;
  }
}
.waves {
  max-width: 100vw;
  overflow-x: hidden;
}
.waves:before, .waves:after {
  content: "";
  width: 6400px;
  height: 144px;
  bottom: 0;
  position: absolute;
  transform: translate3d(0, 0, 0);
}
.waves:before {
  background: url("data:image/svg+xml,%3Csvg width='1600' height='144' viewBox='0 0 1600 144' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M1600 87.9996C1289 87.9996 1190.1 -0.182025 789 -0.000207506C389 -0.000207506 289 87.9996 0 87.9996V144H1600C1600 144 1600 109.09 1600 87.9996Z' fill='%231B2747'/%3E%3C/svg%3E%0A") repeat-x;
  z-index: 3;
  animation: wave 12s cubic-bezier(0.36, 0.45, 0.63, 0.53) infinite;
}
.waves:after {
  bottom: 10px;
  background: url("data:image/svg+xml,%3Csvg width='1600' height='144' viewBox='0 0 1600 144' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M1600 87.9996C1289 87.9996 1190.1 -0.182025 789 -0.000207506C389 -0.000207506 289 87.9996 0 87.9996V144H1600C1600 144 1600 109.09 1600 87.9996Z' fill='%23d0d2d8'/%3E%3C/svg%3E%0A") repeat-x;
  animation: wave 8s cubic-bezier(0.36, 0.45, 0.63, 0.53) -0.125s infinite, swell 8s ease -1.25s infinite;
  opacity: 0.25;
  z-index: 2;
}
.waves--white:before {
  background: url("data:image/svg+xml,%3Csvg width='1600' height='144' viewBox='0 0 1600 144' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M1600 87.9996C1289 87.9996 1190.1 -0.182025 789 -0.000207506C389 -0.000207506 289 87.9996 0 87.9996V144H1600C1600 144 1600 109.09 1600 87.9996Z' fill='%23ffffff'/%3E%3C/svg%3E%0A") repeat-x;
}

.screenMenu__item a {
  display: inline-block;
  padding: 0 12px;
  border-radius: 20px;
  color: #ffffff;
  text-transform: unset !important;
  background: rgba(27, 39, 71, 0.5);
  transition: 0.3s all;
}
.screenMenu__item a:hover {
  color: #ffffff;
  opacity: 0.8;
}
.screenMenu__item--red {
  padding: 6px;
  border-radius: 40px;
  background: rgba(255, 255, 255, 0.1);
  animation: pulse 2s ease-in-out infinite;
}
.screenMenu__item--red a {
  background: #d80101;
}

@keyframes pulse {
  0%, 100% {
    background: rgba(255, 255, 255, 0.1);
  }
  50% {
    background: rgba(255, 255, 255, 0.4);
  }
}
.ti-section {
  position: relative;
  margin-block: clamp(3.75rem, 0.8333rem + 8.1019vw, 8.125rem);
  padding-inline: clamp(1.25rem, -1.3068rem + 7.1023vi, 4.375rem);
}
.ti-section .ornament-dark,
.ti-section .ornament-light {
  display: none;
}
.ti-section .ornament-dark svg,
.ti-section .ornament-light svg {
  position: absolute;
  z-index: 1;
  right: 0;
  width: 100%;
  height: auto;
}
.ti-section--dark {
  margin-block: 0;
  padding-block: clamp(2.5rem, 0.9659rem + 4.2614vi, 4.375rem);
  color: #ffffff;
  background: #1b2747;
}
.ti-section--dark .ornament-dark {
  display: block;
}
.ti-section--dark .ornament-dark svg {
  top: 50%;
  transform: translateY(-50%);
}
.ti-section--dark .ornament-dark svg .svg-line {
  stroke-dasharray: 1806.5612792969px;
  stroke-dashoffset: 1806.5612792969px;
  transition: stroke-dashoffset 2s cubic-bezier(0.47, 0, 0.745, 0.715) 0s;
}
.ti-section--dark .ornament-dark svg .svg-line.is-active {
  stroke-dashoffset: 0;
}
.ti-section--light .ornament-light {
  display: block;
}
.ti-section--light .ornament-light svg {
  bottom: 0;
}
.ti-section--light .ornament-light svg .svg-line {
  stroke-dasharray: 2040.3403320313px;
  stroke-dashoffset: 2040.3403320313px;
  transition: stroke-dashoffset 3s cubic-bezier(0.47, 0, 0.745, 0.715) 0s;
}
.ti-section--light .ornament-light svg .svg-line.is-active {
  stroke-dashoffset: 0;
}
.ti-section__inner {
  width: min(1440px, 100%);
  margin-inline: auto;
}
.ti-section__heading {
  position: relative;
  z-index: 3;
  margin-bottom: -45px;
  font-size: clamp(2.25rem, 0.9167rem + 3.7037vw, 4.25rem);
  line-height: 1.2;
  text-transform: uppercase;
}
.ti-section__content {
  position: relative;
  z-index: 2;
  display: flex;
  gap: clamp(2.5rem, -0.517rem + 8.3807vi, 6.1875rem);
  align-items: center;
}
@media (max-width: 767px) {
  .ti-section__content {
    flex-direction: column;
  }
}
.ti-section__image {
  flex: 1 1 50%;
  max-width: 620px;
}
@media (max-width: 992px) {
  .ti-section__image {
    max-width: 50%;
  }
}
.ti-section__image img {
  transform: scale(0.95);
  aspect-ratio: 500/625;
  width: 100%;
  max-width: 500px;
  margin-left: auto;
  opacity: 0;
  -o-object-fit: cover;
     object-fit: cover;
  transition: opacity 2s ease-out, transform 1.2s cubic-bezier(0.77, 0, 0.175, 1);
}
@media (max-width: 992px) {
  .ti-section__image img {
    max-width: unset;
  }
}
.ti-section__image img.is-revealed {
  transform: scale(1);
  opacity: 1;
}
.ti-section__text {
  flex: 1 1 50%;
  max-width: 452px;
}
@media (max-width: 992px) {
  .ti-section__text {
    max-width: 50%;
  }
}
@media (max-width: 767px) {
  .ti-section__text {
    max-width: unset;
    margin-left: auto;
  }
}

.li-text {
  position: relative;
  padding-block: clamp(2.5rem, 0.9659rem + 4.2614vi, 4.375rem) 0;
}
.li-text--dark {
  color: #ffffff;
}
.li-text--dark::after {
  content: "";
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 70%;
  background-color: #1b2747;
}
.li-text__wrapper {
  padding-inline: clamp(1.25rem, -1.3068rem + 7.1023vi, 4.375rem);
}
.li-text__inner {
  width: min(1440px, 100%);
  margin-inline: auto;
}
.li-text__heading {
  position: relative;
  z-index: 3;
  font-size: clamp(2.25rem, 0.9167rem + 3.7037vw, 4.25rem);
  line-height: 1.2;
  text-transform: uppercase;
}
.li-text__content {
  position: relative;
  z-index: 2;
  width: 50%;
  margin-left: auto;
}
@media (max-width: 767px) {
  .li-text__content {
    width: 100%;
  }
}
.li-text__text {
  max-width: 530px;
  margin-block: clamp(2.5rem, 0.9659rem + 4.2614vi, 4.375rem);
}
.li-text__image {
  position: relative;
  z-index: 2;
  width: 100%;
}
.li-text__image img {
  aspect-ratio: 2/1;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (min-width: 960px) {
  .li-text__image img {
    transform: translateY(100px);
  }
}
.li-text svg {
  position: absolute;
  z-index: 1;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 100%;
  height: auto;
}

.images-section {
  margin-block: clamp(3.75rem, 0.8333rem + 8.1019vw, 8.125rem);
  padding-inline: clamp(1.25rem, -1.3068rem + 7.1023vi, 4.375rem);
}
.images-section__inner {
  width: min(1440px, 100%);
  margin-inline: auto;
}
.images-section__heading {
  max-width: 880px;
  margin-bottom: clamp(2.5rem, 0.9659rem + 4.2614vi, 4.375rem);
  margin-left: clamp(3.75rem, 0.8333rem + 8.1019vw, 8.125rem);
  font-size: clamp(2.25rem, 0.9167rem + 3.7037vw, 4.25rem);
  text-transform: uppercase;
}
.images-section__items {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
@media (max-width: 959px) {
  .images-section__items {
    grid-template-columns: 1fr;
  }
}
.images-section__item {
  position: relative;
  transform: translateY(100px);
  max-width: 500px;
  margin-inline: auto;
  opacity: 0;
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.images-section__item:nth-child(1).is-revealed {
  transition-delay: 0.2s;
}
.images-section__item:nth-child(2).is-revealed {
  transition-delay: 0.4s;
}
.images-section__item:nth-child(3).is-revealed {
  transition-delay: 0.6s;
}
.images-section__item:nth-child(4).is-revealed {
  transition-delay: 0.8s;
}
.images-section__item:nth-child(5).is-revealed {
  transition-delay: 1s;
}
.images-section__item:nth-child(6).is-revealed {
  transition-delay: 1.2s;
}
.images-section__item:nth-child(7).is-revealed {
  transition-delay: 1.4s;
}
.images-section__item:nth-child(8).is-revealed {
  transition-delay: 1.6s;
}
.images-section__item:nth-child(9).is-revealed {
  transition-delay: 1.8s;
}
.images-section__item:nth-child(10).is-revealed {
  transition-delay: 2s;
}
.images-section__item:nth-child(11).is-revealed {
  transition-delay: 2.2s;
}
.images-section__item:nth-child(12).is-revealed {
  transition-delay: 2.4s;
}
.images-section__item.is-revealed {
  transform: translateY(0);
  opacity: 1;
}
.images-section__item:hover img {
  scale: 1.05;
}
.images-section__image {
  overflow: hidden;
}
.images-section__image img {
  aspect-ratio: 42/56;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 250ms ease-in-out all;
}
.images-section__content {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  width: 100%;
  height: 100%;
  padding: clamp(1.25rem, 0.6364rem + 1.7045vi, 2rem);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  color: #ffffff;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 59.5%, rgba(0, 0, 0, 0.4) 100%);
}

.text-section {
  margin-block: clamp(3.75rem, 0.8333rem + 8.1019vw, 8.125rem) 60px;
  padding-inline: clamp(1.25rem, -1.3068rem + 7.1023vi, 4.375rem);
}
.text-section__inner {
  width: min(1440px, 100%);
  margin-inline: auto;
}
.text-section__heading {
  max-width: 1180px;
  margin-inline: auto;
  font-size: clamp(2.25rem, 0.9167rem + 3.7037vw, 4.25rem);
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
}
.text-section__text {
  max-width: 640px;
  margin-top: clamp(1.5rem, -0.3409rem + 5.1136vi, 3.75rem);
  margin-inline: auto;
  text-align: center;
}
.text-section__button {
  margin-top: clamp(1.25rem, 0.2273rem + 2.8409vi, 2.5rem);
  text-align: center;
}
.text-section__button a {
  display: inline-flex;
  padding-block: 10px;
  padding-inline: 20px;
  border: 1px solid #1b2747;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  background: transparent;
  transition: 250ms ease-in-out all;
}
.text-section__button a:hover {
  background: #1b2747;
}

.square-boxes {
  margin-block: 60px;
  padding-inline: clamp(1.25rem, -1.3068rem + 7.1023vi, 4.375rem);
}
.square-boxes__inner {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  width: min(1440px, 100%);
  margin-inline: auto;
}
@media (max-width: 959px) {
  .square-boxes__inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 429px) {
  .square-boxes__inner {
    grid-template-columns: 1fr;
  }
}
.square-boxes .square-box {
  transform: translateY(80px);
  aspect-ratio: 1/1;
  border: 1px solid #1b2747;
  opacity: 0;
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.square-boxes .square-box:nth-child(1).is-revealed {
  transition-delay: 0.15s;
}
.square-boxes .square-box:nth-child(2).is-revealed {
  transition-delay: 0.3s;
}
.square-boxes .square-box:nth-child(3).is-revealed {
  transition-delay: 0.45s;
}
.square-boxes .square-box:nth-child(4).is-revealed {
  transition-delay: 0.6s;
}
.square-boxes .square-box:nth-child(5).is-revealed {
  transition-delay: 0.75s;
}
.square-boxes .square-box:nth-child(6).is-revealed {
  transition-delay: 0.9s;
}
.square-boxes .square-box:nth-child(7).is-revealed {
  transition-delay: 1.05s;
}
.square-boxes .square-box:nth-child(8).is-revealed {
  transition-delay: 1.2s;
}
@media (max-width: 429px) {
  .square-boxes .square-box {
    aspect-ratio: 3/2;
  }
}
.square-boxes .square-box.is-revealed {
  transform: translateY(0);
  opacity: 1;
}
.square-boxes .square-box__content {
  display: grid;
  place-content: center;
  width: 100%;
  height: 100%;
  text-align: center;
}
.square-boxes .square-box__text-large {
  font-family: "Tenor Sans", "DM Serif Display", "Open Sans Variable", sans-serif;
  font-size: clamp(2.25rem, 0.9167rem + 3.7037vw, 4.25rem);
  line-height: 1.2;
}
.square-boxes .square-box__text-large span {
  font-size: 28px;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .square-boxes .square-box__text-large span {
    font-size: 18px;
  }
}
.square-boxes .square-box__text-large span.top {
  vertical-align: super;
}
.square-boxes .square-box__text-small {
  margin-top: 16px;
  font-weight: 600;
  line-height: normal;
}
@media (max-width: 429px) {
  .square-boxes .square-box__text-small {
    margin-top: 4px;
  }
}
.square-boxes .square-box__image {
  width: 100%;
  height: 100%;
}
.square-boxes .square-box__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.square-boxes .square-box--dark {
  color: #ffffff;
  background: #1b2747;
}

.home-map {
  color: #ffffff;
  background: #1b2747;
}
.home-map__inner {
  padding-inline: clamp(1.25rem, -1.3068rem + 7.1023vi, 4.375rem);
}
.home-map__header {
  width: min(1440px, 100%);
  margin-inline: auto;
  padding-block: clamp(2.5rem, 0.9659rem + 4.2614vi, 4.375rem) 40px;
}
.home-map__heading {
  font-size: clamp(2.25rem, 0.9167rem + 3.7037vw, 4.25rem);
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
}
.home-map__heading + .home-map__text {
  margin-top: 40px;
}
.home-map__text {
  max-width: 680px;
  margin-inline: auto;
  text-align: center;
}
.home-map__map {
  height: 600px;
}
.home-map__legend {
  padding-block: 32px;
  padding-inline: clamp(1.25rem, -1.3068rem + 7.1023vi, 4.375rem);
  border-bottom: 12px solid #ffffff;
}
.home-map__legend-list {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.25rem, 0.6364rem + 1.7045vi, 2rem);
  justify-content: center;
  width: min(1440px, 100%);
  margin-inline: auto;
  list-style: none;
}
@media (max-width: 575px) {
  .home-map__legend-list {
    flex-direction: column;
    align-items: flex-start;
  }
}
.home-map__legend-item {
  display: flex;
  gap: 16px;
  align-items: center;
  white-space: nowrap;
}

.newCard {
  position: relative;
  padding: 0 8px;
  font-size: 18px;
  line-height: 1.1;
  color: #000;
}
@media (width <= 1599px) {
  .newCard {
    font-size: 16px;
  }
}
.newCard__icon {
  pointer-events: none;
}
.newCard__icon svg {
  width: auto;
  height: 20px;
}
.newCard__icon svg path {
  fill: #1b2747;
}
.newCard__inner {
  cursor: pointer !important;
  position: relative;
  width: 100%;
  padding: 24px 24px 120px;
  border: 1px solid #e5e5e5;
  border-radius: 14px;
  background: #ffffff;
  transition: 0.3s all;
}
@media (width <= 767px) {
  .newCard__inner {
    padding: 16px 16px 96px;
  }
}
.newCard:hover .newCard__inner {
  box-shadow: inset 0 0 16px rgba(0, 0, 0, 0.1);
}
.newCard__header {
  position: relative;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  justify-content: space-between;
}
.newCard__header__copy {
  font-family: "Tenor Sans", "DM Serif Display", "Open Sans Variable", sans-serif;
  font-size: 30px;
  color: #000;
}
.newCard__header__copy__subtitle {
  font-size: 13px;
  font-weight: normal;
}
.newCard__header__inner {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.newCard__header__status {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 14px;
  font-weight: 600;
}
.newCard__header__status::before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 10px;
}
.newCard__header__status--available {
  color: #0b9f00;
}
.newCard__header__status--available::before {
  background: #0b9f00;
}
.newCard__header__status--reservation {
  color: #ff8800;
}
.newCard__header__status--reservation::before {
  background: #ff8800;
}
.newCard__header__status--pre_reservation {
  color: #ffb700;
}
.newCard__header__status--pre_reservation::before {
  background: #ffb700;
}
.newCard__header__status--sold {
  color: #d12828;
}
.newCard__header__status--sold::before {
  background: #d12828;
}
.newCard__header__buttons {
  display: flex;
  gap: 0 16px;
  justify-content: flex-end;
}
.newCard__header__buttons__button {
  padding: 0;
}
.newCard__header__buttons__button__image {
  pointer-events: none;
}
.newCard__header__buttons__button__image--fav-active {
  display: none;
}
.newCard__header__buttons__button__image--fav {
  display: block;
}
.newCard__header__buttons__button.in-favorite .newCard__header__buttons__button__image--fav-active {
  display: block;
}
.newCard__header__buttons__button.in-favorite .newCard__header__buttons__button__image--fav {
  display: none;
}
.newCard__image {
  position: relative;
  overflow: hidden;
  height: 180px;
  margin: 24px 0;
}
@media (width <= 767px) {
  .newCard__image {
    height: 120px;
  }
}
.newCard__image__container {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  text-align: center;
}
.newCard__image__container img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.newCard__params {
  color: #000;
}
.newCard__params__basic {
  display: flex;
  flex-wrap: wrap;
  margin: 24px 0;
}
.newCard__params__basic__item {
  flex: 0 0 33.333%;
}
.newCard__params__basic__item + .newCard__params__basic__item {
  position: relative;
}
.newCard__params__basic__item + .newCard__params__basic__item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  height: 100%;
  border-left: 2px solid #A797C2;
}
.newCard__params__basic__item--rooms {
  text-align: center;
}
.newCard__params__basic__item--floor {
  text-align: right;
}
.newCard__params__additional {
  display: flex;
  flex-wrap: wrap;
  gap: 0 16px;
  justify-content: center;
  margin: 24px 0;
}
.newCard__params__additional__item {
  position: relative;
  font-size: 16px;
}
.newCard__params__additional__item::before {
  content: "+";
  margin-right: 6px;
  font-weight: bold;
  color: #A797C2;
}
.newCard__price {
  padding: 16px 0;
  text-align: center;
}
.newCard__price__buttons {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-bottom: 8px;
}
.newCard__price__buttons__item {
  display: inline-flex;
  padding: 8px;
  border: 1px solid #1b2747;
  border-radius: 40px;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.5;
  text-transform: uppercase;
}
.newCard__price__buttons__item:hover {
  color: inherit;
  text-decoration: none;
  background: rgba(167, 151, 194, 0.1);
}
.newCard__price__history {
  margin: 16px 0 0;
  opacity: 0.8;
}
.newCard__price__history a span {
  font-size: 13px !important;
}
.newCard__price__history a:hover {
  color: #333333;
}
.newCard__price--ask {
  padding: 32px 0;
}
.newCard__price__sqm {
  font-size: 23px;
  font-weight: bold;
  color: #e4051f;
  white-space: nowrap;
}
.newCard__price__label {
  font-size: 13px;
  text-transform: lowercase;
}
.newCard__price__value {
  font-size: 13px;
  font-weight: 600;
  line-height: 1.1;
  color: #333;
}
.newCard__price__value--promo {
  color: #e4051f;
}
.newCard__price__value .omnibus {
  margin-top: 8px;
  font-size: 13px;
  line-height: normal;
}
.newCard__footer {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 0 16px;
  text-align: center;
}
@media (width <= 767px) {
  .newCard__footer {
    padding: 0 16px;
  }
}
.newCard__footer__pdf a {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  margin-block: 16px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}
.newCard__footer__pdf a:hover {
  text-decoration: none;
}
.newCard__promos {
  cursor: pointer;
  position: absolute;
  right: 9px;
  bottom: 100%;
  left: 9px;
  transform: translateY(7px);
  overflow: hidden;
  display: flex;
  gap: 4px;
  height: 39px;
}
.newCard__promo {
  padding: 6px 16px;
  font-family: "Tenor Sans", "DM Serif Display", "Open Sans Variable", sans-serif;
  font-size: 20px;
  line-height: normal;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: #E72A2A;
}
.newCard__promo--info {
  color: #333333;
  letter-spacing: 0;
  background: transparent;
}

.packPrice--promo {
  display: block;
  font-size: 32px;
  font-weight: bold;
  color: #e4051f;
}
@media (width <= 767px) {
  .packPrice--promo {
    font-size: 24px;
  }
}
.packPrice--old {
  display: block;
  margin-top: 4px;
  font-size: 14px;
  font-weight: 100;
  opacity: 0.333;
}
.packPrice__stroke {
  font-size: 24px;
  font-weight: 100;
  text-decoration: line-through;
}
.packPrice--promo span, .packPrice--old span {
  font-size: 0.7em;
}
.packPrice--omnibus {
  display: block;
  margin-top: 8px;
  font-size: 11px;
  font-weight: 100;
  line-height: 1.2;
  color: #444444;
}

.va-top {
  vertical-align: top;
}

.omnibus {
  display: block;
  font-size: 0.7em;
  font-weight: 400;
  line-height: 0.8rem;
  color: #444444;
  opacity: 0.6;
}

.header {
  padding-block: clamp(1.25rem, 0.2273rem + 2.8409vi, 2.5rem);
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 500;
  box-shadow: none;
  transition: 350ms ease-in-out all;
  background-color: rgba(27, 39, 71, 0.5);
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
}
.header--light {
  background-color: rgba(255, 255, 255, 0.2);
}
.home .header {
  background-color: unset;
  -webkit-backdrop-filter: unset;
          backdrop-filter: unset;
}
.home .header.is-fixed {
  background-color: rgba(27, 39, 71, 0.5);
}
.header.is-fixed {
  padding-block: 10px;
  background-color: rgba(27, 39, 71, 0.5);
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
  transition: 350ms ease-in-out all;
}
.header__inner {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-inline: auto;
  padding-inline: clamp(1.25rem, -1.3068rem + 7.1023vi, 4.375rem);
  width: min(2560px, 100%);
}
.header__content {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 20px;
}
.header__controls {
  display: flex;
  align-items: center;
  gap: clamp(1.25rem, -0.0543rem + 6.5217vw, 5rem);
  margin-left: auto;
}

.footer {
  margin-inline: auto;
  padding-inline: clamp(1.25rem, -1.3068rem + 7.1023vi, 4.375rem);
  padding-block: 20px;
  color: #ffffff;
  background-color: #1b2747;
}
@media (max-width: 48rem) {
  .footer {
    padding-bottom: 2.5rem 5rem;
  }
}
.footer--news {
  position: relative;
  z-index: 10;
}
.footer__inner {
  margin-inline: auto;
  width: min(1440px, 100%);
}
.footer__copy {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  -moz-column-gap: clamp(1.25rem, 0.1927rem + 3.9526vi, 3.75rem);
       column-gap: clamp(1.25rem, 0.1927rem + 3.9526vi, 3.75rem);
  row-gap: clamp(0.625rem, 0.4076rem + 1.087vw, 1.25rem);
  width: 100%;
  font-size: 0.75rem;
}
@media (max-width: 1259px) {
  .footer__copy {
    justify-content: center;
  }
}
@media (max-width: 499px) {
  .footer__copy {
    justify-content: flex-start;
  }
}
.footer__logos {
  flex-grow: 1;
  display: flex;
  align-items: center;
  gap: clamp(1.25rem, 0.1927rem + 3.9526vi, 3.75rem);
}
@media (max-width: 1259px) {
  .footer__logos {
    width: 100%;
    justify-content: center;
  }
}
@media (max-width: 499px) {
  .footer__logos {
    flex-wrap: wrap;
    justify-content: flex-start;
  }
}
@media (max-width: 399px) {
  .footer__logos {
    gap: 10px;
  }
}
.footer__logos a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.75rem;
  color: #ffffff;
}
.footer__logos a img {
  display: block;
  width: auto;
  max-height: 40px;
  transition: 150ms ease-in-out filter;
}
.footer__logos a:first-of-type img {
  height: 40px;
}
.footer__links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: clamp(1.25rem, 0.1927rem + 3.9526vi, 3.75rem);
}
@media (max-width: 399px) {
  .footer__links {
    gap: 10px;
  }
}
.footer__links a {
  font-size: 0.75rem;
  color: #ffffff;
}
.footer__links a:hover {
  text-decoration: underline;
}
.footer__copyright {
  margin-bottom: 0;
}

.section-dark {
  position: relative;
  color: #1b2747;
}
.section-dark::after {
  content: none;
  position: absolute;
  z-index: -1;
  top: 25%;
  left: -20px;
  width: calc(100% + 40px);
  height: 1500px;
  background-image: url("../../public/svg/bg-waves-02.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
@media (min-width: 959px) {
  .section-dark::after {
    content: "";
  }
}

.section-white {
  position: relative;
}

.text-image {
  position: relative;
  overflow: hidden;
  margin-block: clamp(2.5rem, -0.517rem + 8.3807vi, 6.1875rem);
}
.text-image__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, -0.517rem + 8.3807vi, 6.1875rem);
  align-items: start;
  width: min(1440px, 100%);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, -1.3068rem + 7.1023vi, 4.375rem);
}
@media (max-width: 959px) {
  .text-image__inner {
    grid-template-columns: 1fr;
  }
}
.text-image__content {
  width: 100%;
  padding-block: clamp(1.25rem, -1.3068rem + 7.1023vi, 4.375rem);
  color: #1b2747;
}
@media (max-width: 959px) {
  .text-image__content {
    padding-block: 0;
  }
}
.text-image__icon {
  filter: brightness(0) saturate(100%) invert(14%) sepia(8%) saturate(4829%) hue-rotate(188deg) brightness(92%) contrast(93%);
}
.text-image__icon + .text-image__heading {
  margin-top: 24px;
}
.text-image__heading--medium {
  font-size: 40px;
}
@media (width <= 767px) {
  .text-image__heading--medium {
    font-size: 32px;
  }
}
.text-image__description {
  max-width: 560px;
  margin-top: clamp(1.5rem, 0.8864rem + 1.7045vi, 2.25rem);
  margin-left: 50px;
}
@media (max-width: 959px) {
  .text-image__description {
    margin-left: 0;
  }
}
.text-image__description p + p {
  margin-top: 1.9em;
}
.text-image__button {
  margin-top: clamp(1.5rem, 0.8864rem + 1.7045vi, 2.25rem);
  margin-left: clamp(0rem, -2.4545rem + 6.8182vi, 3rem);
}
.text-image__image {
  position: relative;
  width: 100%;
  height: 100%;
}
@media (max-width: 959px) {
  .text-image__image {
    max-height: 600px;
  }
}
.text-image__image > img,
.text-image__image > video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.text-image__ornament {
  position: absolute;
  bottom: 16px;
  transform: translateX(calc(50% + 3px));
  rotate: 180deg;
}
.section-light .text-image__ornament {
  transform: translateX(calc(50% + 3px));
  rotate: 180deg;
}
.text-image--right .text-image__image {
  order: -1;
}
@media (max-width: 959px) {
  .text-image--right .text-image__image {
    order: unset;
  }
}
.text-image--right .text-image__ornament {
  right: 0;
  transform: translateX(calc(-50% + 4px));
  rotate: 180deg;
}
.section-light .text-image--right .text-image__ornament {
  transform: translateX(calc(50% + 3px));
  rotate: unset;
}
.text-image--center {
  display: grid;
  margin-top: 0;
}
@media (max-width: 959px) {
  .text-image--center {
    display: block;
  }
}
.text-image--center .text-image__inner {
  z-index: 2;
  grid-column: 1/2;
  grid-row: 1/2;
  grid-template-columns: 1fr;
}
.text-image--center .text-image__content {
  max-width: 680px;
  margin-inline: auto;
  color: #1b2747;
  text-align: center;
}
@media (max-width: 959px) {
  .text-image--center .text-image__content {
    margin-bottom: clamp(2.5rem, 0.9659rem + 4.2614vi, 4.375rem);
  }
}
.text-image--center .text-image__content--light {
  color: #ffffff;
}
.text-image--center .text-image__content--medium {
  max-width: 100%;
}
.text-image--center .text-image__description {
  max-width: unset;
  margin-left: 0;
}
.text-image--center .text-image__image {
  position: relative;
  grid-column: 1/2;
  grid-row: 1/2;
  height: 200vh;
  max-height: 1500px;
}
@media (max-width: 959px) {
  .text-image--center .text-image__image {
    max-height: 100vh;
  }
}
@media (max-width: 639px) {
  .text-image--center .text-image__image {
    height: 500px;
    max-height: unset;
  }
}
.text-image--center .text-image__image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 75%;
  opacity: 0.5;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 100%);
}
.text-image--center:has(.text-image__image) .text-image__content {
  color: #ffffff;
}
@media (max-width: 959px) {
  .text-image--center:has(.text-image__image) .text-image__content {
    color: #1b2747;
  }
}
.text-image--columns .text-image__inner {
  grid-template-columns: 1fr;
}
.text-image--columns .text-image__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  -moz-column-gap: clamp(2.5rem, -0.517rem + 8.3807vi, 6.1875rem);
       column-gap: clamp(2.5rem, -0.517rem + 8.3807vi, 6.1875rem);
}
@media (min-width: 960px) {
  .text-image--columns .text-image__content {
    padding-block: 0;
  }
}
@media (max-width: 959px) {
  .text-image--columns .text-image__content {
    display: block;
  }
}
.text-image--columns .text-image__icon,
.text-image--columns .text-image__heading {
  grid-column: 1;
}
.text-image--1 .text-image__image img, .text-image--3 .text-image__image img {
  aspect-ratio: 60/75;
}
.text-image--1 {
  margin-top: 0;
}
.text-image--4 {
  margin-bottom: 0;
}
.text-image--7 {
  margin-bottom: clamp(1.25rem, -2.8409rem + 11.3636vi, 6.25rem);
}
.text-image--8 {
  margin-bottom: 0;
}
.text-image--8 .text-image__content {
  color: #1b2747;
}
.contact-us {
  margin-inline: auto;
  padding-block: clamp(2.5rem, -0.517rem + 8.3807vi, 6.1875rem);
  padding-inline: clamp(1.25rem, -1.3068rem + 7.1023vi, 4.375rem);
  color: #ffffff;
  background-color: #1b2747;
}
.contact-us__wrapper {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 20px;
  width: min(1440px, 100%);
  margin-inline: auto;
}
@media (max-width: 959px) {
  .contact-us__wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
@media (min-width: 60rem) {
  .contact-us__info {
    position: relative;
  }
  .contact-us__info::after {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    right: 0;
    width: 200%;
    height: calc(100% + 80px);
  }
}
@media (max-width: 959px) {
  .contact-us__form {
    order: -1;
  }
}
.contact-us__form form {
  position: relative;
}
.contact-us__form input::-moz-placeholder, .contact-us__form textarea::-moz-placeholder {
  color: #ffffff;
}
.contact-us__form input::placeholder,
.contact-us__form textarea::placeholder {
  color: #ffffff;
}
.contact-us__notice {
  margin-top: 20px;
  margin-bottom: 0;
  font-size: 0.75rem;
  opacity: 0.7;
}
.contact-us__overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(10, 10, 10, 0.7);
}
.contact-us__heading {
  margin-bottom: clamp(1.25rem, 0.2273rem + 2.8409vi, 2.5rem);
  font-size: clamp(2rem, 1.4886rem + 1.4205vi, 2.625rem);
}
.contact-us__inner {
  max-width: 60%;
}
@media (max-width: 959px) {
  .contact-us__inner {
    max-width: unset;
  }
}
.contact-us__inner + .contact-us__inner {
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid rgba(40, 40, 40, 0.3);
}
.contact-us__inner address,
.contact-us__inner .contact-us__hours {
  margin-top: clamp(1.25rem, 0.6364rem + 1.7045vi, 2rem);
}
.contact-us__data {
  display: block;
  grid-column: span 2;
}
@media (max-width: 30rem) {
  .contact-us__data {
    grid-column: unset;
  }
}
.contact-us__data strong {
  font-size: 1.2em;
  font-weight: 900;
  text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.4);
}
.contact-us .contact-us__block {
  display: block;
}
.footer .contact-us__block {
  display: block;
  margin-bottom: 3.75rem;
}
@media (min-width: 60rem) {
  .footer .contact-us__block {
    display: none;
  }
}
.contact-us__nav {
  margin-top: clamp(1.25rem, 0.8152rem + 2.1739vw, 2.5rem);
}
@media (max-width: 60rem) {
  .footer .contact-us__nav {
    margin-top: 0;
  }
}
.contact-us__logos {
  margin-top: clamp(1.25rem, 0.8152rem + 2.1739vw, 2.5rem);
}
.contact-us__logos a {
  display: inline-flex;
}
.contact-us__logos a:nth-child(2) {
  display: none;
}
.contact-us__social {
  display: flex;
  gap: clamp(0.625rem, 0.1902rem + 2.1739vw, 1.875rem);
  margin-top: clamp(1.25rem, 0.8152rem + 2.1739vw, 2.5rem);
}
@media (width <= 767px) {
  .contact-us__social {
    margin-left: -8px;
  }
}
@media (max-width: 60rem) {
  .footer .contact-us__social {
    margin-top: 3.75rem;
  }
}
@media (width <= 767px) {
  .contact-us__social a {
    display: block;
    padding: 8px;
  }
}
@media (width <= 767px) {
  .contact-us__social img {
    width: 20px;
  }
}
.contact-us__catalog {
  max-width: 200px;
  padding-top: 16px;
  padding-bottom: 8px;
  border-top: 1px solid #ffffff;
}
.contact-us__catalog a {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  text-decoration: none;
}

.contact-offer {
  margin-block: clamp(2.5rem, -0.517rem + 8.3807vi, 6.1875rem);
  padding-block: clamp(2.5rem, 0.9659rem + 4.2614vi, 4.375rem) !important;
  padding-inline: clamp(1.25rem, -1.3068rem + 7.1023vi, 4.375rem);
  border: none;
  color: #1b2747;
  background-color: rgb(241.4465116279, 242.023255814, 243.7534883721);
}
.apartments .contact-offer {
  position: fixed;
  z-index: -100;
  top: 0;
  left: 0;
  display: grid;
  place-content: center;
  width: 100%;
  height: 100vh;
  margin: unset !important;
  padding: unset;
  visibility: hidden;
  opacity: 0;
  transition: 300ms ease-in-out opacity;
}
@media (max-height: 48rem) {
  .apartments .contact-offer {
    overflow: scroll;
    width: 100vw;
    max-height: 100vh;
  }
}
.apartments .contact-offer.is-visible {
  z-index: 600;
  visibility: visible;
  opacity: 1;
}
.apartments .contact-offer.is-visible .contact-offer__overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(10, 10, 10, 0.7);
}
.apartments .contact-offer .contact-offer__form {
  overflow: scroll;
  width: 80vw;
  max-height: 95vh;
  padding: clamp(1.25rem, 0.8152rem + 2.1739vw, 2.5rem) clamp(1.25rem, 0.1927rem + 3.9526vi, 3.75rem);
  color: #1b2747 !important;
  background-color: rgb(241.4465116279, 242.023255814, 243.7534883721) !important;
}
@media (width <= 767px) {
  .apartments .contact-offer .contact-offer__form {
    width: 100vw;
    max-height: 100vh;
    padding-block: 80px;
  }
}
.contact-offer__heading {
  margin-bottom: 40px;
}
@media (max-width: 27rem) {
  .contact-offer__heading {
    max-width: 300px;
  }
}
.contact-offer__form {
  position: relative;
  z-index: 200;
  width: min(1440px, 100%);
  margin-inline: auto;
}
.contact-offer__form form {
  position: relative;
}
.contact-offer__notice {
  margin-top: clamp(0.625rem, 0.4076rem + 1.087vw, 1.25rem);
  font-size: 0.75rem;
  opacity: 0.7;
}
.contact-us .contact-offer__notice {
  grid-column: span 2;
  margin-top: 0;
  opacity: 1;
}
@media (max-width: 30rem) {
  .contact-us .contact-offer__notice {
    grid-column: unset;
  }
}
.contact-offer__close, .contact-offer__hide {
  cursor: pointer;
  position: absolute;
  z-index: 10;
  top: 0;
  right: 0;
  width: 50px;
  height: 50px;
  border: none;
  color: transparent;
  background-color: transparent;
}
@media (max-width: 419px) {
  .contact-offer__close, .contact-offer__hide {
    top: -30px;
  }
}
.contact-offer__close::before, .contact-offer__close::after, .contact-offer__hide::before, .contact-offer__hide::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 24px;
  height: 2px;
  background: #1b2747;
  transition: 150ms ease-in-out all;
}
.contact-offer__close:hover::before, .contact-offer__close:hover::after, .contact-offer__hide:hover::before, .contact-offer__hide:hover::after {
  background: rgb(138.3197674419, 143.2848837209, 158.1802325581);
}
.contact-offer__close::before, .contact-offer__hide::before {
  transform: translateY(-50%) translateX(-50%) rotate(45deg);
}
.contact-offer__close::after, .contact-offer__hide::after {
  transform: translateY(-50%) translateX(-50%) rotate(-45deg);
}
.apartments .contact-offer__close, .apartments .contact-offer__hide {
  top: clamp(1.25rem, 0.8152rem + 2.1739vw, 2.5rem);
  right: clamp(1.25rem, 0.1927rem + 3.9526vi, 3.75rem);
}
.contact .contact-offer__close {
  z-index: -10;
  display: none;
}
.contact-offer__hide {
  visibility: hidden;
  opacity: 0;
  transition: 400ms ease-in-out all;
}
.is-expanded .contact-offer__hide {
  visibility: visible;
  opacity: 1;
}
.apartments .contact-offer__hide {
  z-index: -10;
  display: none;
}
.contact-offer .wpcf7-submit {
  margin-top: 40px;
}

.contact-us .contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 16px;
}
@media (max-width: 30rem) {
  .contact-us .contact-form {
    grid-template-columns: 1fr;
  }
}
.contact-form input {
  color: #ffffff;
}
.contact-form__container {
  overflow-y: hidden;
  max-height: 0;
  transition: 500ms ease-in-out;
}
.contact-form__container.is-visible {
  max-height: 2000px;
}
.contact-form__wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  align-items: start;
  margin-top: 0.625rem;
}
@media (max-width: 60rem) {
  .contact-form__wrapper {
    grid-template-columns: 1fr;
  }
}
.contact-form__wrapper--notequal {
  grid-template-columns: 2fr 3fr;
}
@media (max-width: 72rem) {
  .contact-form__wrapper--notequal {
    grid-template-columns: 1fr;
  }
}
.contact-form__wrapper--four {
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 60rem) {
  .contact-form__wrapper--four {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media (max-width: 48rem) {
  .contact-form__wrapper--four {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 575px) {
  .contact-form__wrapper--four {
    grid-template-columns: 1fr;
  }
}
.contact-form__field--full, .contact-form__checkbox--full {
  grid-column: span 2;
}
@media (max-width: 30rem) {
  .contact-form__field--full, .contact-form__checkbox--full {
    grid-column: unset;
  }
}
.contact-form__wrapper--four .contact-form__field--full, .contact-form__wrapper--four .contact-form__checkbox--full {
  grid-column: span 4;
}
@media (max-width: 60rem) {
  .contact-form__wrapper--four .contact-form__field--full, .contact-form__wrapper--four .contact-form__checkbox--full {
    grid-column: span 2;
  }
}
@media (max-width: 575px) {
  .contact-form__wrapper--four .contact-form__field--full, .contact-form__wrapper--four .contact-form__checkbox--full {
    grid-column: unset;
  }
}
.contact-form__checkbox, .contact-form__consent {
  display: block;
}
.contact-form__checkbox .wpcf7-list-item, .contact-form__consent .wpcf7-list-item {
  margin-left: unset;
}
.contact-form__checkbox label, .contact-form__consent label {
  display: grid;
  grid-template-columns: 24px 1fr;
  -moz-column-gap: 0.625rem;
       column-gap: 0.625rem;
  align-items: center;
}
.contact-form__checkbox input[type=checkbox], .contact-form__consent input[type=checkbox] {
  margin-top: 0;
}
.contact-form__checkbox label span {
  font-size: 0.75rem;
}
.contact-form__checkbox .wpcf7-list-item-label {
  white-space: break-spaces;
}
.contact-form__consent label span {
  font-size: 0.75rem;
  opacity: 1;
}
.contact-form__consent--bold label span {
  font-weight: 700;
}
.contact-form__visit {
  display: grid;
  grid-template-columns: 1fr 1fr;
  -moz-column-gap: 0.625rem;
       column-gap: 0.625rem;
}
@media (max-width: 48rem) {
  .contact-form__visit {
    grid-template-columns: 1fr;
  }
}
.contact-form__date, .contact-form__time {
  display: grid;
  grid-template-columns: 1fr 1fr;
  -moz-column-gap: 0.625rem;
       column-gap: 0.625rem;
  align-items: start;
  font-size: 0.75rem;
}
@media (max-width: 575px) {
  .contact-form__date, .contact-form__time {
    grid-template-columns: 1fr;
    row-gap: 0.625rem;
  }
}
.contact-form__date .contact-form__group-title, .contact-form__time .contact-form__group-title {
  grid-column: span 2;
}
@media (max-width: 575px) {
  .contact-form__date .contact-form__group-title, .contact-form__time .contact-form__group-title {
    grid-column: unset;
  }
}
.contact-form__date-label, .contact-form__time-label {
  display: flex;
  -moz-column-gap: 0.625rem;
       column-gap: 0.625rem;
  align-items: center;
  width: 100%;
}
.contact-form__date-label .wpcf7-form-control-wrap, .contact-form__time-label .wpcf7-form-control-wrap {
  width: 100%;
}
.contact-form__date input, .contact-form__time input {
  width: 100%;
}
.contact-form__days, .contact-form__rooms {
  display: grid;
  grid-template-columns: 1fr 1fr;
  -moz-column-gap: clamp(1.25rem, 0.8152rem + 2.1739vw, 2.5rem);
       column-gap: clamp(1.25rem, 0.8152rem + 2.1739vw, 2.5rem);
  margin-top: 0.625rem;
}
@media (max-width: 575px) {
  .contact-form__days, .contact-form__rooms {
    grid-template-columns: 1fr;
  }
}
.contact-form__days {
  margin-top: 1.5rem;
}
.contact-form__group {
  display: grid;
  align-items: start;
}
.contact-form__group-title {
  margin-block: clamp(0.625rem, 0.4076rem + 1.087vw, 1.25rem) 0.625rem;
  font-size: 0.75rem;
  text-transform: uppercase;
}
.contact-form__label {
  display: block;
  font-size: 0.75rem;
  line-height: 2;
}
.contact-us .contact-form__consents {
  grid-column: span 2;
}
@media (max-width: 30rem) {
  .contact-us .contact-form__consents {
    grid-column: unset;
  }
}
.contact-offer .contact-form__consents {
  margin-top: var(--sy-40);
}
.contact-form__consents .wpcf7-form-control-wrap {
  display: block;
  margin-top: 0.625rem;
}
.contact-form__consents .wpcf7-form-control-wrap:first-of-type {
  margin-top: 0;
}
.contact-form__consents .wpcf7-form-control {
  display: block;
  font-size: 0.75rem;
}
.contact-form__consents .wpcf7-list-item {
  margin: 0;
}
.contact-form__consents .wpcf7-list-item label {
  display: grid;
  grid-template-columns: 0.75rem 1fr;
  gap: 1rem;
  align-items: start;
}
.contact-form__consents .wpcf7-list-item-label {
  font-size: 0.75rem;
}
.contact-form__consents .consent-bold {
  font-weight: 700;
}
.contact-form .wpcf7-not-valid-tip {
  font-size: 0.75rem;
}

.wpcf7-response-output {
  margin: clamp(0.625rem, 0.4076rem + 1.087vw, 1.25rem) 0 0 0 !important;
  font-size: 0.75rem;
}

.wpcf7-spinner {
  display: none;
}

.wpcf7 form .wpcf7-response-output {
  display: flex;
  place-content: center center;
  align-items: center;
  padding: 0.6em 1em;
}

.wpcf7 form.sent .wpcf7-response-output {
  color: #46b450;
}

.wpcf7 form.invalid .wpcf7-response-output {
  border-color: #b02f37;
  color: #b02f37;
}

.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  background: #d0d2d8 !important;
  box-shadow: unset !important;
}

.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  background: #d0d2d8 !important;
}

.consents__item__label--sub {
  display: block;
  margin-left: 40px;
}

.certificates {
  margin-block: clamp(1.875rem, -0.7337rem + 13.0435vw, 9.375rem);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 0.1927rem + 3.9526vi, 3.75rem);
  width: min(1440px, 100%);
}
.certificates__heading {
  margin-bottom: clamp(1.25rem, 0.3804rem + 4.3478vw, 3.75rem);
}
.certificates__item a {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.625rem;
  background-color: transparent;
  transition: 500ms ease-in-out all;
}
.certificates__item a img {
  filter: brightness(0) saturate(100%) invert(12%) sepia(78%) saturate(588%) hue-rotate(188deg) brightness(92%) contrast(94%);
  transition: 1ms ease-in-out all;
}
.certificates__item a:hover {
  background-color: #d0d2d8;
  transition: 250ms ease-in-out all;
}
.certificates__item a:hover img {
  transition: 1ms ease-in-out all;
}
.certificates .swiper-pagination {
  display: none;
  justify-content: center;
  align-items: center;
  gap: 5px;
  margin-top: clamp(0.625rem, 0.4076rem + 1.087vw, 1.25rem);
}
.certificates .swiper-pagination-bullet {
  width: 30px;
  height: 3px;
  background-color: #d0d2d8;
  cursor: pointer;
}
.certificates .swiper-pagination-bullet-active {
  background-color: #1b2747;
}

.entry {
  margin-bottom: clamp(1.25rem, 1.0326rem + 1.087vw, 1.875rem);
  margin-inline: auto;
  width: min(1440px, 100%);
}
.news .entry {
  padding: clamp(0.625rem, 0.4076rem + 1.087vw, 1.25rem) clamp(1.25rem, 0.8152rem + 2.1739vw, 2.5rem);
  background-color: rgba(255, 255, 255, 0.7);
  box-shadow: 0 -2px 8px rgba(29, 29, 27, 0.3);
  -webkit-backdrop-filter: blur(4.5px);
          backdrop-filter: blur(4.5px);
}
.entry__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: clamp(1.25rem, 0.8152rem + 2.1739vw, 2.5rem);
}
@media (max-width: 25rem) {
  .entry__header {
    flex-direction: column;
    align-items: flex-start;
  }
}
.entry__date {
  margin-bottom: 1em;
}
.entry__title {
  margin-bottom: 0;
  font-size: clamp(2rem, 1.4886rem + 1.4205vi, 2.625rem);
}
.entry__title a {
  font-weight: 300;
}
.entry__title a:hover, .entry__title a:active {
  color: rgb(55.1020408163, 79.5918367347, 144.8979591837);
}
.entry__more {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 300;
  text-decoration: none;
}
@media (max-width: 25rem) {
  .entry__more {
    align-self: flex-end;
  }
}
.entry__more:hover, .entry__more:active {
  color: rgb(55.1020408163, 79.5918367347, 144.8979591837);
  text-decoration: none;
}
.entry__more:after {
  content: url("../../public/svg/ico-chevron-down.svg");
  display: grid;
  place-content: center;
  width: 15px;
  height: 9px;
  rotate: 0deg;
  transition: 250ms ease-in-out all;
}
.entry__more.is-open:after {
  rotate: 180deg;
}
.entry__content {
  display: grid;
  grid-template-rows: 0fr;
  overflow-y: hidden;
  padding-top: 0;
  transition: 250ms ease-in-out all;
}
.entry__content * {
  overflow-y: hidden;
}
.entry__content.is-visible {
  grid-template-rows: 1fr;
  padding-top: clamp(1.25rem, 0.8152rem + 2.1739vw, 2.5rem);
}
.entry__link {
  display: block;
  margin-top: clamp(1.25rem, 1.0326rem + 1.087vw, 1.875rem);
  text-decoration: underline;
}
.entry__link:hover, .entry__link:active {
  text-decoration: underline;
}

.page {
  min-height: 100vh;
}
.page.apartments {
  min-height: unset;
}
.page.gallery {
  min-height: unset;
}
.page__content {
  margin-bottom: clamp(1.875rem, -0.7337rem + 13.0435vw, 9.375rem);
  margin-inline: auto;
  width: min(2560px, 100%);
  position: relative;
}
.contact .page__content {
  padding-top: clamp(2.5rem, -0.517rem + 8.3807vi, 6.1875rem);
  padding-inline: clamp(1.25rem, -1.3068rem + 7.1023vi, 4.375rem);
}
@media (max-width: 60rem) {
  .news .page__content {
    margin-block: 3.75rem;
  }
}
@media (max-width: 40rem) {
  .news .page__content {
    margin-block: 2.5rem;
  }
}
.page__content h2 + h2,
.page__content h2 + h3,
.page__content h2 + h4,
.page__content h2 + h5,
.page__content h2 + h6,
.page__content h2 + p,
.page__content h2 + ul,
.page__content h2 + ol,
.page__content h3 + h2,
.page__content h3 + h3,
.page__content h3 + h4,
.page__content h3 + h5,
.page__content h3 + h6,
.page__content h3 + p,
.page__content h3 + ul,
.page__content h3 + ol,
.page__content h4 + h2,
.page__content h4 + h3,
.page__content h4 + h4,
.page__content h4 + h5,
.page__content h4 + h6,
.page__content h4 + p,
.page__content h4 + ul,
.page__content h4 + ol,
.page__content h5 + h2,
.page__content h5 + h3,
.page__content h5 + h4,
.page__content h5 + h5,
.page__content h5 + h6,
.page__content h5 + p,
.page__content h5 + ul,
.page__content h5 + ol,
.page__content h6 + h2,
.page__content h6 + h3,
.page__content h6 + h4,
.page__content h6 + h5,
.page__content h6 + h6,
.page__content h6 + p,
.page__content h6 + ul,
.page__content h6 + ol,
.page__content p + h2,
.page__content p + h3,
.page__content p + h4,
.page__content p + h5,
.page__content p + h6,
.page__content p + p,
.page__content p + ul,
.page__content p + ol,
.page__content ul + h2,
.page__content ul + h3,
.page__content ul + h4,
.page__content ul + h5,
.page__content ul + h6,
.page__content ul + p,
.page__content ul + ul,
.page__content ul + ol,
.page__content ol + h2,
.page__content ol + h3,
.page__content ol + h4,
.page__content ol + h5,
.page__content ol + h6,
.page__content ol + p,
.page__content ol + ul,
.page__content ol + ol {
  margin-top: calc(1em + 0.5rem);
}
.page__inner {
  margin-block: clamp(1.875rem, -0.7337rem + 13.0435vw, 9.375rem);
  padding-inline: clamp(1.25rem, 0.1927rem + 3.9526vi, 3.75rem);
  width: min(1440px, 100%);
}
.news .page__inner {
  margin-block: unset;
}
.page__nav {
  margin-bottom: clamp(1.25rem, -0.0543rem + 6.5217vw, 5rem);
  padding-inline: clamp(1.25rem, 0.1927rem + 3.9526vi, 3.75rem);
}
.page .page__content > .page__nav {
  padding-inline: clamp(1.25rem, 0.1927rem + 3.9526vi, 3.75rem);
}
.page .page__content > .section {
  margin-inline: auto;
}

.apartments .page__content {
  padding-top: clamp(2.5rem, -0.517rem + 8.3807vi, 6.1875rem);
  padding-inline: clamp(1.25rem, -1.3068rem + 7.1023vi, 4.375rem);
}
.apartments__content {
  display: grid;
  grid-template-columns: 1fr 30rem;
  padding-inline: clamp(1.25rem, 0.1927rem + 3.9526vi, 3.75rem);
  position: relative;
}
@media (max-width: 90rem) {
  .apartments__content {
    grid-template-columns: 1fr 24rem;
  }
}
@media (max-width: 60rem) {
  .apartments__content {
    display: block;
  }
}
.apartments__content--wide {
  display: block;
}
@media (max-width: 767px) {
  .apartments__content--wide {
    padding-inline: 0 !important;
  }
}
.apartments__box {
  min-height: 800px;
  position: relative;
}
@media (max-width: 1280px) {
  .apartments__box {
    min-height: 600px;
  }
}
@media (max-width: 767px) {
  .apartments__box {
    max-height: 80vh;
  }
}
.apartments__box iframe {
  position: absolute;
  width: 100%;
  height: 100%;
}
.apartments__box img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.apartments__sidebar {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-inline: clamp(0.625rem, 0.1902rem + 2.1739vw, 1.875rem);
  background-color: #d0d2d8;
}
@media (max-width: 60rem) {
  .apartments__sidebar {
    justify-content: unset;
    padding-inline: 1.25rem;
  }
}
.apartments__sidebar > .apartments__side-card {
  padding-inline: 0;
}
@media (max-width: 60rem) {
  .apartments__sidebar > .apartments__side-card {
    display: none !important;
  }
}
.stats-hidden .apartments__stats {
  display: none;
}
.apartments__filters {
  margin-block: clamp(1.875rem, -0.7337rem + 13.0435vw, 9.375rem);
}
.apartments__table {
  display: none;
  width: 100%;
  font-size: 0.75rem;
  border-collapse: collapse;
}
.apartments__table.is-visible {
  display: table;
}
@media (max-width: 60rem) {
  .apartments__table.is-visible {
    display: none;
  }
}
.apartments__table--hide {
  display: none !important;
}
.apartments__table td {
  padding-inline: 5px;
  line-height: 1.5;
  text-align: center;
}
.apartments__table tr {
  border-bottom: 1px solid #1b2747;
}
.apartments__table thead {
  font-weight: 500;
}
.apartments__table thead td {
  padding: 1.25rem 0;
}
.apartments__table--premises .apartments__table__th--rooms, .apartments__table--premises .apartments__table__th--garden, .apartments__table--premises .apartments__table__th--balcony, .apartments__table--premises .apartments__table__td--rooms, .apartments__table--premises .apartments__table__td--garden, .apartments__table--premises .apartments__table__td--balcony {
  display: none !important;
}
.apartments__cards {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.25rem clamp(0.625rem, 0.1902rem + 2.1739vw, 1.875rem);
}
.apartments__cards.is-visible {
  display: flex;
}
@media (min-width: 60rem) {
  .apartments__cards {
    display: none;
  }
}
.apartments__cards--hide {
  display: none !important;
}

.stats {
  display: flex;
  flex-direction: column;
  row-gap: 1.25rem;
  align-items: center;
  justify-content: center;
}
@media (max-width: 960px) {
  .stats {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0;
    padding-block: clamp(1.25rem, 0.8152rem + 2.1739vw, 2.5rem);
    width: 100%;
  }
}
.stats__item {
  flex: 0 0 100%;
  text-align: center;
}
@media (max-width: 960px) {
  .stats__item {
    flex: 0 0 50%;
    padding: 4px;
  }
}
.stats p {
  margin-bottom: 0;
  text-align: center;
}
.stats__label {
  font-size: clamp(0.8125rem, 0.7614rem + 0.142vi, 0.875rem);
  font-weight: 400;
  text-transform: lowercase;
  opacity: 0.5;
}
@media (max-width: 60rem) {
  .stats__label {
    font-size: 0.75rem;
  }
}
.stats__count {
  font-size: clamp(1.5rem, 0.8864rem + 1.7045vi, 2.25rem);
  font-weight: 500;
  line-height: 1;
}
@media (max-width: 60rem) {
  .stats__count {
    font-size: clamp(0.875rem, 0.7727rem + 0.2841vi, 1rem);
  }
}

.apartment {
  transition: 450ms ease-in-out;
  transition-delay: 0.075s;
  cursor: pointer;
}
.apartment.is-visible {
  display: table-row !important;
}
.apartment:hover {
  background: #d0d2d8;
}
.apartment__details {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  height: 4rem;
}
.apartment__details a {
  display: block;
  width: 30px;
  min-width: 30px;
}
.apartment__details a img {
  width: 100%;
  height: 100%;
}
@media (max-width: 65rem) {
  .apartment__details a {
    width: 24px;
    min-width: 24px;
  }
}
.apartment__status {
  max-width: 120px;
  font-weight: 500;
}
.apartment__status--available {
  color: #189300;
}
.apartment__status--pre_reservation {
  color: #e6b800;
}
.apartment__status--reservation {
  color: #e60000;
}
.apartment__price {
  white-space: nowrap;
}
.apartment__price--promo {
  color: #e60707;
  font-weight: 500;
}
.apartment__price .apartment__price__net {
  font-size: 12px;
  font-weight: 300;
  line-height: 1;
  opacity: 0.7;
}
.apartment__button {
  transition: 0.35s all;
  border-radius: 100%;
}
.apartment__button img {
  pointer-events: none;
}
.apartment__button--fav .apartment__button__icon--empty {
  display: block;
}
.apartment__button--fav .apartment__button__icon--full {
  display: none;
}
.apartment__button--fav.in-favorite .apartment__button__icon--empty {
  display: none;
}
.apartment__button--fav.in-favorite .apartment__button__icon--full {
  display: block;
}
.apartment__button:hover {
  transform: scale(1.15);
  background: rgb(9.4362244898, 13.6301020408, 24.8137755102);
}
.apartment__button:hover img {
  filter: invert(1);
}
.apartment__button.disabled {
  opacity: 0.333;
  cursor: default;
}
.apartment__button.disabled:hover {
  transform: none;
  background: none;
}
.apartment__button.disabled:hover img {
  filter: none;
}

.acard {
  padding: 1.25rem;
  width: min(22rem, 100%);
  border: 1px solid #1b2747;
  background: #ffffff;
}
.acard--side {
  padding: 2.5rem;
  width: 100%;
  border: 0;
  background: transparent;
}
.acard__wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  -moz-column-gap: 0.625rem;
       column-gap: 0.625rem;
}
@media (max-width: 20rem) {
  .acard__wrapper {
    grid-template-columns: 1fr 1fr;
  }
}
.acard__section {
  padding-block: 0.625rem;
  font-size: clamp(15px, 0.8375rem + 0.1875vw, 1.0625rem);
  font-weight: 500;
}
.acard__section--gallery {
  padding-block: unset;
  padding-bottom: 1.25rem;
  width: 100%;
  height: 240px;
}
@media (max-width: 60rem) {
  .acard__section--gallery {
    height: 180px;
  }
}
.acard__section--details {
  grid-column: span 3;
  display: flex;
  align-items: center;
  gap: 0.625rem;
}
@media (max-width: 20rem) {
  .acard__section--details {
    grid-column: span 2;
  }
}
.acard__section--details a:first-of-type {
  margin-left: auto;
}
.acard__section span.acard__title {
  display: block;
  font-size: clamp(0.75rem, 0.725rem + 0.125vw, 0.875rem);
  font-weight: 400;
  text-transform: uppercase;
  color: #1d1d1b;
}
.acard__status--available,
.acard__status [data-status=available] {
  color: #189300;
}
.acard__status--pre_reservation,
.acard__status [data-status=pre_reservation] {
  color: #e6b800;
}
.acard__status--reservation,
.acard__status [data-status=reservation] {
  color: #e60000;
}

.card-gallery,
.side-gallery {
  margin-bottom: 2vw;
}
.card-gallery .swiper .swiper-slide img, .card-gallery__swiper .swiper-slide img,
.side-gallery .swiper .swiper-slide img,
.side-gallery__swiper .swiper-slide img {
  display: block;
  margin: 0 auto;
  -o-object-fit: contain;
     object-fit: contain;
  height: 240px;
}
@media (max-width: 60rem) {
  .card-gallery .swiper .swiper-slide img, .card-gallery__swiper .swiper-slide img,
  .side-gallery .swiper .swiper-slide img,
  .side-gallery__swiper .swiper-slide img {
    height: 180px;
  }
}
.card-gallery__pagination,
.side-gallery__pagination {
  display: flex;
  gap: 8px;
  justify-content: center;
  align-items: center;
  padding: 12px;
}
.card-gallery__pagination .swiper-pagination-bullet,
.side-gallery__pagination .swiper-pagination-bullet {
  display: block;
  width: 12px;
  height: 12px;
  background: var(--c-neutral-500);
  border-radius: 6px;
  cursor: pointer;
}
.card-gallery__pagination .swiper-pagination-bullet.swiper-pagination-bullet-active,
.side-gallery__pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: var(--c-violet-600);
}

.acard__status--available,
.apartment__status--available {
  font-weight: var(--fw-bold);
  color: var(--c-green);
}
.acard__status--pre_reservation,
.apartment__status--pre_reservation {
  font-weight: var(--fw-bold);
  color: var(--c-orange);
}
.acard__status--reservation,
.apartment__status--reservation {
  font-weight: var(--fw-bold);
  color: var(--c-red);
}

.prices__payment {
  margin-inline: auto;
}
.prices__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(0.625rem, 0.4076rem + 1.087vw, 1.25rem);
  padding-inline: clamp(1.25rem, 0.1927rem + 3.9526vi, 3.75rem);
}
@media (max-width: 1199px) {
  .prices__inner {
    grid-template-columns: 3fr 2fr;
  }
}
@media (max-width: 60rem) {
  .prices__inner {
    grid-template-columns: 1fr;
    height: unset;
  }
}
.prices__content {
  max-width: 100%;
  padding-right: clamp(0.625rem, 0.4076rem + 1.087vw, 1.25rem);
}
.prices__image {
  max-width: 100%;
}
.prices__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 16/9;
}

.payment + .payment {
  margin-block: clamp(1.25rem, -0.4891rem + 8.6957vw, 6.25rem);
}
.payment__wrapper {
  display: flex;
  align-items: center;
  -moz-column-gap: clamp(1.25rem, -0.7065rem + 9.7826vw, 6.875rem);
       column-gap: clamp(1.25rem, -0.7065rem + 9.7826vw, 6.875rem);
}
@media (max-width: 48rem) {
  .payment__wrapper {
    flex-wrap: wrap;
  }
}
.payment__heading {
  font-size: clamp(2rem, 1.4886rem + 1.4205vi, 2.625rem);
  margin-bottom: 0.5em;
}
.payment__subheading {
  display: none;
  margin-bottom: 0;
  font-size: clamp(0.875rem, 0.7727rem + 0.2841vi, 1rem);
  font-family: "Open Sans Variable", sans-serif;
  font-weight: 500;
}
.payment__variant {
  margin-bottom: 0;
  font-size: clamp(1.125rem, 0.8182rem + 0.8523vi, 1.5rem);
  font-weight: 500;
}
.payment__prices {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: clamp(1.25rem, 1.0326rem + 1.087vw, 1.875rem) clamp(0.625rem, 0.4076rem + 1.087vw, 1.25rem);
  margin-block: clamp(1.25rem, 1.0326rem + 1.087vw, 1.875rem);
}
@media (max-width: 78rem) {
  .payment__prices {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 30rem) {
  .payment__prices {
    grid-template-columns: 1fr;
  }
}
.payment__prices p {
  margin-bottom: 0;
}
.payment__prices-item {
  display: flex;
  flex-direction: column;
}
.payment__price-type {
  flex-grow: 1;
  font-size: clamp(0.875rem, 0.7727rem + 0.2841vi, 1rem);
}
.payment__price-price {
  margin-top: 1rem !important;
  font-size: clamp(1.125rem, 0.8182rem + 0.8523vi, 1.5rem);
  font-weight: 500;
  line-height: 1.05;
}
.payment__price-price--promo {
  color: #e60707;
}
.payment__price-unit {
  margin-top: 1rem !important;
  font-size: clamp(0.875rem, 0.7727rem + 0.2841vi, 1rem);
  line-height: 1.5;
  color: #1b2747;
}

.finishing {
  margin-block: clamp(1.25rem, -0.4891rem + 8.6957vw, 6.25rem);
}
.finishing__wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: clamp(1.25rem, 1.0326rem + 1.087vw, 1.875rem) 1.25rem;
  margin-top: clamp(1.25rem, 1.0326rem + 1.087vw, 1.875rem);
}
@media (max-width: 78rem) {
  .finishing__wrapper {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 30rem) {
  .finishing__wrapper {
    grid-template-columns: 1fr;
  }
}
.finishing__wrapper p {
  margin-bottom: 0;
}
.finishing__heading {
  font-size: clamp(2rem, 1.4886rem + 1.4205vi, 2.625rem);
}
.finishing__desc {
  max-width: 230px;
  font-size: clamp(0.875rem, 0.7727rem + 0.2841vi, 1rem);
  line-height: 1.5;
}
.finishing__item {
  display: flex;
  flex-direction: column;
}
.finishing__price {
  flex-grow: 1;
  margin-top: 1rem !important;
  font-size: clamp(1.125rem, 0.8182rem + 0.8523vi, 1.5rem);
  font-weight: 500;
  line-height: 1.05;
}
.finishing__price--promo {
  color: #e60707;
}
.finishing__unit {
  margin-top: 1rem !important;
  font-size: clamp(0.875rem, 0.7727rem + 0.2841vi, 1rem);
  line-height: 1.5;
  color: #1b2747;
}

.addons {
  margin-block: clamp(1.25rem, -0.4891rem + 8.6957vw, 6.25rem);
}
.addons__wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px 1.25rem;
  margin-top: clamp(1.25rem, 1.0326rem + 1.087vw, 1.875rem);
}
@media (max-width: 78rem) {
  .addons__wrapper {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 30rem) {
  .addons__wrapper {
    grid-template-columns: 1fr;
  }
}
.addons__wrapper p {
  margin-bottom: 0;
}
.addons__heading {
  font-size: clamp(2rem, 1.4886rem + 1.4205vi, 2.625rem);
}
.addons__item {
  display: flex;
  flex-direction: column;
}
.addons__desc {
  flex-grow: 1;
  font-size: clamp(0.875rem, 0.7727rem + 0.2841vi, 1rem);
  line-height: 1.5;
}
.addons__price {
  margin-top: 1rem !important;
  font-size: clamp(1.125rem, 0.8182rem + 0.8523vi, 1.5rem);
  font-weight: 500;
  line-height: 1.05;
}
.addons__price--promo {
  color: #e60707;
}
.addons__unit {
  margin-top: 1rem !important;
  font-size: clamp(0.875rem, 0.7727rem + 0.2841vi, 1rem);
  line-height: 1.5;
  color: #1b2747;
}

.notes {
  margin-block: clamp(1.25rem, -0.4891rem + 8.6957vw, 6.25rem);
}
.notes__wrapper {
  display: grid;
  gap: clamp(1.25rem, 1.0326rem + 1.087vw, 1.875rem) 2.5rem;
  margin-top: clamp(1.25rem, 1.0326rem + 1.087vw, 1.875rem);
}
@media (max-width: 30rem) {
  .notes__wrapper {
    grid-template-columns: 1fr;
  }
}
.notes__wrapper p {
  margin-bottom: 0;
}
.notes__heading {
  font-size: clamp(2rem, 1.4886rem + 1.4205vi, 2.625rem);
}
.notes__desc {
  font-size: clamp(0.875rem, 0.7727rem + 0.2841vi, 1rem);
  line-height: 1.5;
}

.financing__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(0.625rem, 0.4076rem + 1.087vw, 1.25rem);
  padding-inline: clamp(1.25rem, 0.1927rem + 3.9526vi, 3.75rem);
}
@media (max-width: 1199px) {
  .financing__inner {
    grid-template-columns: 3fr 2fr;
  }
}
@media (max-width: 60rem) {
  .financing__inner {
    grid-template-columns: 1fr;
    height: unset;
  }
}
.financing__content {
  padding-right: clamp(0.625rem, 0.4076rem + 1.087vw, 1.25rem);
}
.financing__content h2 {
  font-size: clamp(2rem, 1.4886rem + 1.4205vi, 2.625rem);
  margin-bottom: 40px;
}
.financing__content p + p,
.financing__content p + ul,
.financing__content p + ol {
  margin-top: calc(1em + 0.5rem);
}
.financing__content ul + p,
.financing__content ul + ul,
.financing__content ul + ol,
.financing__content ol + p,
.financing__content ol + ul,
.financing__content ol + ol {
  margin-top: calc(1em + 0.5rem);
}
.financing__image {
  max-width: 100%;
}
.financing__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 16/9;
}

.promotions__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(0.625rem, 0.4076rem + 1.087vw, 1.25rem);
  padding-inline: clamp(1.25rem, 0.1927rem + 3.9526vi, 3.75rem);
}
@media (max-width: 1199px) {
  .promotions__inner {
    grid-template-columns: 3fr 2fr;
  }
}
@media (max-width: 60rem) {
  .promotions__inner {
    grid-template-columns: 1fr;
    height: unset;
  }
}
.promotions__content {
  padding-right: clamp(0.625rem, 0.4076rem + 1.087vw, 1.25rem);
}
.promotions__image {
  max-width: 100%;
}
.promotions__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 16/9;
}
.promotions__item {
  margin-inline: auto;
}
.promotions__item.is-expanded {
  margin-bottom: 1.25rem;
}

.promotion__name {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-inline: auto;
  margin-bottom: clamp(1.25rem, 1.0326rem + 1.087vw, 1.875rem);
  font-size: clamp(2rem, 1.4886rem + 1.4205vi, 2.625rem);
  scroll-margin-top: 100px;
  cursor: pointer;
  color: red;
}
.promotion__name:after {
  content: "+";
  width: 40px;
  height: 32px;
  font-size: clamp(2.25rem, 1.6364rem + 1.7045vi, 3rem);
  text-align: right;
}
.is-expanded .promotion__name.JS-accordion-single:after {
  content: none;
}
.is-expanded .promotion__name:after {
  content: "-";
}
.promotion__content {
  display: grid;
  grid-template-rows: 0fr;
  margin-inline: auto;
  width: min(var(--content-wide), 100%);
  overflow-y: hidden;
  transition: 150ms ease-in-out all;
}
.promotion__content-inner {
  overflow-y: hidden;
}
.is-expanded .promotion__content {
  grid-template-rows: 1fr;
  transition: 150ms ease-in-out all;
}
.promotion__content table tr td:first-of-type {
  padding-top: var(--s-10);
  padding-right: 1.25rem;
  width: 90px;
  vertical-align: top;
}
@media (max-width: 30rem) {
  .promotion__content table tr td:first-of-type {
    padding-right: 0;
    width: 1px;
  }
  .promotion__content table tr td:first-of-type img {
    display: none;
  }
}

.finish__intro {
  display: flex;
  gap: clamp(1.25rem, 0.8152rem + 2.1739vw, 2.5rem);
  align-items: center;
  margin-block: clamp(1.25rem, 0.3804rem + 4.3478vw, 3.75rem);
}
@media (max-width: 60rem) {
  .finish__intro {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 1.875rem;
  }
}
.finish__intro p {
  margin-bottom: 0;
}
.finish__logos {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1.25rem;
  margin-block: clamp(1.25rem, 0.3804rem + 4.3478vw, 3.75rem);
}
@media (max-width: 48rem) {
  .finish__logos {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 30rem) {
  .finish__logos {
    grid-template-columns: 1fr;
  }
}
.finish__logos img {
  margin-inline: auto;
}
@media (max-width: 48rem) {
  .finish__logos img {
    margin-inline: unset;
  }
}
.finish__advantages-heading {
  margin-top: 24px;
  margin-bottom: 16px;
  font-size: 24px;
  font-weight: 700;
}
.finish__advantages {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: clamp(1.25rem, 0.8152rem + 2.1739vw, 2.5rem) clamp(1.25rem, 0.8152rem + 2.1739vw, 2.5rem);
}
@media (max-width: 48rem) {
  .finish__advantages {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 30rem) {
  .finish__advantages {
    grid-template-columns: 1fr;
  }
}
.finish__advantages-text {
  margin-top: calc(1em + 0.5rem);
}
.finish__adv img {
  margin-bottom: clamp(0.625rem, 0.4076rem + 1.087vw, 1.25rem);
}
.finish h2,
.finish h3 {
  margin-bottom: clamp(1.25rem, 0.3804rem + 4.3478vw, 3.75rem);
}

.packages-table {
  border-collapse: collapse;
  width: 100%;
  margin-top: clamp(1.25rem, 0.3804rem + 4.3478vw, 3.75rem);
}
@media (max-width: 60rem) {
  .packages-table {
    min-width: 50rem;
  }
}
.packages-table__logo {
  height: 75px;
  margin-inline: auto;
}
.packages-table__price {
  margin-top: clamp(0.625rem, 0.4076rem + 1.087vw, 1.25rem);
  margin-bottom: 0;
  font-size: clamp(0.875rem, 0.7727rem + 0.2841vi, 1rem);
  font-weight: 500;
  line-height: 1;
  text-align: center;
}
.packages-table__heading {
  font-weight: 500;
  text-transform: uppercase;
}
@media (max-width: 60rem) {
  .packages-table__wrapper {
    overflow-x: auto;
  }
}
.packages-table__description {
  margin-top: clamp(1.25rem, 0.8152rem + 2.1739vw, 2.5rem);
}
.packages-table tr {
  border-bottom: 1px solid #ffffff;
}
.packages-table tr td {
  text-align: center;
}
.packages-table tr td img {
  margin-inline: auto;
}
.packages-table tr:first-of-type td {
  padding-block: clamp(0.625rem, 0.4076rem + 1.087vw, 1.25rem);
}
.packages-table td {
  max-width: 180px;
  padding-inline: 0.625rem;
}
.packages-table td:first-of-type {
  max-width: unset;
  padding-left: 0;
  text-align: unset;
}
@media (max-width: 60rem) {
  .packages-table td:first-of-type {
    max-width: 15rem;
  }
}
.packages-table td:nth-of-type(2) {
  background-color: rgb(215.1530612245, 221.887755102, 239.8469387755);
}
.packages-table td:nth-of-type(3) {
  background-color: rgb(178.2040816327, 191.1836734694, 225.7959183673);
}
.packages-table td:nth-of-type(4) {
  background-color: rgb(141.2551020408, 160.4795918367, 211.7448979592);
}

.packPrice--promo {
  display: block;
  font-size: 32px;
  font-weight: bold;
  color: #e4051f;
}
@media (width <= 767px) {
  .packPrice--promo {
    font-size: 24px;
  }
}
.packPrice--old {
  display: block;
  margin-top: 4px;
  font-size: 14px;
  font-weight: 100;
  opacity: 0.333;
}
.packPrice__stroke {
  font-size: 24px;
  font-weight: 100;
  text-decoration: line-through;
}
.packPrice--promo span, .packPrice--old span {
  font-size: 0.7em;
}
.packPrice--omnibus {
  display: block;
  margin-top: 8px;
  font-size: 11px;
  font-weight: 100;
  line-height: 1.2;
  color: #444444;
}

.va-top {
  vertical-align: top;
}

.packages-button__link {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: clamp(1.125rem, 0.8182rem + 0.8523vi, 1.5rem);
  font-weight: 500 !important;
}
.packages-button__link span {
  font-weight: inherit;
}
.packages-button__link span::after {
  margin-top: -2px;
}

.atal__investments {
  margin-bottom: clamp(1.875rem, -0.7337rem + 13.0435vw, 9.375rem);
  margin-inline: auto;
}
.atal__investments-heading {
  margin-inline: auto;
  margin-bottom: clamp(1.25rem, 0.3804rem + 4.3478vw, 3.75rem);
  padding-inline: clamp(1.25rem, -1.3068rem + 7.1023vi, 4.375rem);
  text-align: center;
}
.atal__investments-item {
  height: 660px;
}
@media (max-width: 48rem) {
  .atal__investments-item {
    height: 30rem;
  }
}
@media (max-width: 20rem) {
  .atal__investments-item {
    height: 20rem;
  }
}
.atal__investments-item a {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  font-weight: 400;
  position: relative;
}
.atal__investments-item a img {
  width: 100%;
  max-width: unset;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  transition: 150ms linear all;
}
.atal__investments-item.swiper-slide-next {
  width: 660px;
}
.atal__investments-item-name {
  margin-bottom: 0;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: clamp(1.25rem, 1.0326rem + 1.087vw, 1.875rem) clamp(0.625rem, 0.4076rem + 1.087vw, 1.25rem);
  z-index: 3;
  color: #ffffff;
}
@media (max-width: 767px) {
  .atal__investments-item-name {
    line-height: 1.1;
    text-shadow: 2px 1px 0 rgba(0, 0, 0, 0.5);
    font-size: 1.666rem;
  }
}
.atal__investments-controls {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: clamp(1.25rem, 0.2273rem + 2.8409vi, 2.5rem);
}
.atal__investments-controls .swiper-button {
  border-radius: 50px;
  transition: 150ms linear all;
  cursor: pointer;
}
.atal__investments-controls .swiper-button img {
  transition: 150ms linear all;
}
.atal__investments-controls .swiper-button:hover {
  background-color: #1b2747;
}
.atal__investments-controls .swiper-button:hover img {
  filter: invert(100%);
}

.gallery__inner {
  display: grid;
  padding-inline: clamp(1.25rem, 0.1927rem + 3.9526vi, 3.75rem);
}
.gallery__inner > .section {
  margin-block: unset;
  margin-inline: calc(clamp(1.25rem, 0.1927rem + 3.9526vi, 3.75rem) * -1);
}
.gallery__section {
  grid-column: 1/2;
  grid-row: 1/2;
  padding-inline: clamp(1.25rem, 0.1927rem + 3.9526vi, 3.75rem);
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transition: 150ms ease-in-out all;
}
.gallery__section.is-visible {
  max-height: 20000px;
  opacity: 1;
  visibility: visible;
  overflow: unset;
}
.no-js .gallery__section {
  grid-column: unset;
  grid-row: unset;
  margin-top: clamp(1.25rem, 0.3804rem + 4.3478vw, 3.75rem);
  max-height: 2000px;
  opacity: 1;
  visibility: visible;
}
.gallery__title {
  margin-bottom: clamp(1.25rem, 0.3804rem + 4.3478vw, 3.75rem);
  font-size: clamp(2.25rem, 1.6364rem + 1.7045vi, 3rem);
}
.gallery__container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 1.25rem;
}
@media (max-width: 60rem) {
  .gallery__container {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media (max-width: 40rem) {
  .gallery__container {
    grid-template-columns: 1fr 1fr;
    gap: 0.625rem;
  }
}
@media (max-width: 25rem) {
  .gallery__container {
    grid-template-columns: 1fr;
  }
}
.gallery__item {
  width: 100%;
  height: 100%;
  position: relative;
}
.gallery__item:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -10;
  background-color: rgba(27, 39, 71, 0.3);
  opacity: 0;
  transition: 250ms ease-in-out all;
}
.gallery__item:hover, .gallery__item:active {
  transition: 250ms ease-in-out all;
}
.gallery__item:hover:before, .gallery__item:active:before {
  opacity: 1;
  z-index: unset;
  transition: 250ms ease-in-out all;
}
.gallery__item:nth-child(2), .gallery__item:nth-child(6), .gallery__item:nth-child(7), .gallery__item:nth-child(11), .gallery__item:nth-child(13) {
  grid-column: span 2;
}
@media (max-width: 60rem) {
  .gallery__item:nth-child(2), .gallery__item:nth-child(6), .gallery__item:nth-child(7), .gallery__item:nth-child(11), .gallery__item:nth-child(13) {
    grid-column: unset;
  }
}
.gallery__item img {
  width: 100%;
  height: 100%;
  max-height: 315px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
@media (max-width: 60rem) {
  .gallery__item img {
    max-height: 200px;
  }
}

.news {
  padding-top: clamp(8.75rem, 5.6818rem + 8.5227vi, 12.5rem);
}
@media (max-width: 60rem) {
  .news {
    padding-top: 8.75rem;
  }
}
.news__background {
  width: 100vw;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -10;
}
.news__background img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.contact__urgent {
  margin-top: 16px;
  padding: 16px;
  border: 2px solid #1b2747;
  font-weight: 300;
  line-height: 1.333;
  white-space: pre-wrap;
}
.contact__urgent *:last-child {
  margin-bottom: 0;
}
.contact__office, .contact__office-wrapper {
  margin-inline: auto;
  width: min(1440px, 100%);
}
.contact__office-wrapper {
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 2.5rem clamp(1.25rem, 0.8152rem + 2.1739vw, 2.5rem);
  margin-block: clamp(1.875rem, -0.7337rem + 13.0435vw, 9.375rem);
}
@media (max-width: 60rem) {
  .contact__office-wrapper {
    grid-template-columns: 1fr 2fr;
  }
}
@media (max-width: 40rem) {
  .contact__office-wrapper {
    grid-template-columns: 1fr;
  }
}
.contact__office-wrapper .office + .office {
  margin-top: 0;
}
.contact__map {
  margin-top: clamp(1.25rem, -0.0543rem + 6.5217vw, 5rem);
  margin-inline: auto;
  width: min(1280px, 100%);
  height: 30rem;
}

.office__inner {
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: clamp(1.25rem, 0.8152rem + 2.1739vw, 2.5rem);
}
@media (max-width: 50rem) {
  .office__inner {
    grid-template-columns: 1fr;
  }
}
.office__heading {
  padding-bottom: 10px;
  font-size: clamp(1.5rem, 0.8864rem + 1.7045vi, 2.25rem);
  white-space: break-spaces;
}
@media (max-width: 40rem) {
  .office__heading {
    margin-bottom: 0.625rem;
  }
}
@media (max-width: 40rem) {
  .office__address address p {
    margin-bottom: 0.625rem;
  }
}
.office__advisors {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.25rem, 0.8152rem + 2.1739vw, 2.5rem) clamp(1.25rem, 0.8152rem + 2.1739vw, 2.5rem);
}
@media (max-width: 25rem) {
  .office__advisors {
    row-gap: clamp(0.625rem, 0.4076rem + 1.087vw, 1.25rem);
  }
}
.office--full {
  grid-template-columns: 1fr;
}
.office + .office,
.office + .contact__office-wrapper {
  margin-top: clamp(1.875rem, -0.7337rem + 13.0435vw, 9.375rem);
}
@media (max-width: 25rem) {
  .office + .office,
  .office + .contact__office-wrapper {
    margin-top: clamp(1.25rem, 0.8152rem + 2.1739vw, 2.5rem);
  }
}

.advisor {
  width: calc((100% - clamp(1.25rem, 0.8152rem + 2.1739vw, 2.5rem) * 2) / 3);
}
@media (max-width: 69rem) {
  .advisor {
    width: calc((100% - clamp(1.25rem, 0.8152rem + 2.1739vw, 2.5rem)) / 2);
  }
}
@media (max-width: 50rem) {
  .advisor {
    width: calc((100% - clamp(1.25rem, 0.8152rem + 2.1739vw, 2.5rem) * 2) / 3);
  }
}
@media (max-width: 40rem) {
  .advisor {
    width: calc((100% - clamp(1.25rem, 0.8152rem + 2.1739vw, 2.5rem)) / 2);
  }
}
@media (max-width: 25rem) {
  .advisor {
    width: 100%;
  }
}
.advisor__image {
  display: block;
  min-width: 175px;
}
.advisor__image img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
}
.advisor__name {
  margin-top: 1.25rem;
  margin-bottom: 0;
  font-size: clamp(1.125rem, 1rem + 0.625vw, 1.75rem);
  font-weight: 400;
}
.advisor__position {
  display: block;
  margin-bottom: 1em;
  min-height: 2.4rem;
  font-size: clamp(0.8125rem, 0.7875rem + 0.125vw, 0.9375rem);
}
@media (max-width: 25rem) {
  .advisor__position {
    min-height: unset;
  }
}
.advisor__separator {
  display: block;
  margin-bottom: 0.75rem;
  width: 50px;
  height: 2px;
  background-color: var(--c-violet-200);
}
.advisor__phone, .advisor__email {
  line-height: 1.6;
}

.contact-offer {
  padding-block: clamp(1.25rem, -0.4891rem + 8.6957vw, 6.25rem);
}

.location__map {
  margin-block: clamp(1.25rem, -2.8409rem + 11.3636vi, 6.25rem);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, -1.3068rem + 7.1023vi, 4.375rem);
  width: min(1440px, 100%);
  aspect-ratio: 144/70;
}
@media (max-width: 767px) {
  .location__map {
    aspect-ratio: unset;
    height: 400px;
  }
}

.page-template-home .contact-offer {
  position: fixed;
  z-index: 1000 !important;
  top: 0;
  left: 0;
}
.page-template-home .promoApartments {
  margin-block: clamp(2.5rem, -0.517rem + 8.3807vi, 6.1875rem);
}
.page-template-home .promoApartments .page__content {
  margin: 0;
  padding: 0;
}

.customContainer {
  width: 80%;
  max-width: 100%;
  margin: 0 auto;
}

.newCard__image__container a {
  position: relative;
  overflow: hidden;
  display: block;
  height: 100%;
}

.promoApartments__header__control::before, .promoApartments__header__control::after {
  border-color: #eeeeee;
}

#map3d {
  scroll-margin-top: 200px;
  position: relative;
  overflow: hidden;
  margin-bottom: 12px;
}
#map3d iframe {
  pointer-events: auto;
  width: 100%;
  height: 100%;
}