:root {
  --clr-100: #fff;
  --clr-100-20: rgba(255, 255, 255, 0.2);
  --clr-100-33: rgba(255, 255, 255, 0.3294117647);
  --clr-100-75: rgba(255, 255, 255, 0.7490196078);
  --clr-900: #231f20;
  --clr-900-10: rgba(35, 31, 32, 0.1019607843);
  --clr-primary: #ffca32;
  --clr-primary-lighter: rgb(255, 215.1853658537, 101);
  --clr-primary-darker: rgb(228.5, 169.4243902439, 0);
  --clr-grey: #797678;
  --clr-grey-lighter: rgb(146.3807531381, 143.6192468619, 145.460251046);
  --clr-grey-darker: rgb(95.179916318, 92.820083682, 94.3933054393);
  --clr-grey-20: hsla(320, 1%, 47%, 0.2);
  --clr-body-bg: #fff;
  --border-radius: 10px;
  --box-shadow: 0px 10px 10px -10px #00000033;
  --font-primary: "Optima", sans-serif;
  --font-secondary: "Avenir LT Std", sans-serif;
  --container-padding-xs: 20px;
  --container-padding-md: 30px;
  --container-padding-lg: 40px;
  --container-padding-xl: 50px;
  --container-padding-xxl: 120px;
  --container-padding-xxxl: 20px;
  --swiper-pagination-bullet-size: 15px;
  --swiper-pagination-bullet-width: 15px;
  --swiper-pagination-bullet-height: 15px;
  --swiper-pagination-bullet-vertical-gap: 12px;
}

/*

>=390px:   xs - mobile x-small
>=576px:   sm - mobile small
>=768px:   md - Tablet portrait
>=992px:   lg - Tablet landscape
>=1200px:  xl - Extra large
>=1440px:  xxl - Extra extra large
>=1920px:  xxxl - Extra extra extra large
$breakpoint arguement choices:
- xs
- sm
- md
- lg
- xl
- xxl
- xxxl

1em = 16px
*/
.w-100 {
  width: 100%;
}

.h-100 {
  height: 100%;
}

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

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

.hidden {
  display: none;
}

.visibility-hidden {
  visibility: hidden !important;
  opacity: 0 !important;
}

@media only screen and (min-width: 90em) {
  .hidden-xxl {
    display: none !important;
  }
}

@media only screen and (max-width: calc(90em - 1px)) {
  .hidden-before-xxl {
    display: none !important;
  }
}

.page-wrapper {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
}
.page-wrapper > *:last-child {
  margin-top: auto;
}

* {
  padding: 0;
  margin: 0;
}

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

body {
  font-family: var(--font-secondary);
  font-size: 15px;
  line-height: 1.2;
  font-weight: 300;
  color: var(--clr-900);
  background-color: var(--clr-body-bg);
  letter-spacing: 1px;
}
@media only screen and (min-width: 120em) {
  body {
    font-size: 17px;
  }
}
body.scroll-disabled {
  overflow: hidden;
}

p {
  font-size: 17px;
  line-height: 1.8;
  letter-spacing: 1px;
}

img {
  display: block;
}

html {
  scroll-behavior: smooth;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-primary);
  font-weight: 600;
  letter-spacing: 0.1rem;
  color: #23201f;
  margin: 0;
}

.heading {
  font-size: 20px;
  line-height: 1.3;
  letter-spacing: 0.1rem;
  text-transform: uppercase;
}
@media only screen and (min-width: 300px) {
  .heading {
    font-size: 24px;
  }
}
@media only screen and (min-width: 24.375em) {
  .heading {
    font-size: 34px;
  }
}
@media only screen and (min-width: 62em) {
  .heading {
    font-size: 52px;
  }
}
@media only screen and (min-width: 90em) {
  .heading {
    font-size: 56px;
  }
}
@media only screen and (min-width: 120em) {
  .heading {
    font-size: 72px;
  }
}
.heading--primary {
  color: var(--clr-primary);
}
.heading--100 {
  color: #fff;
}

.section-heading {
  line-height: 0.9;
  width: -moz-fit-content;
  width: fit-content;
  letter-spacing: 0.1rem;
}
.section-heading__top {
  font-family: var(--font-primary);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 24px;
}
@media only screen and (min-width: 24.375em) {
  .section-heading__top {
    font-size: 32px;
  }
}
@media only screen and (min-width: 36em) {
  .section-heading__top {
    font-size: 36px;
  }
}
@media only screen and (min-width: 48em) {
  .section-heading__top {
    font-size: 42px;
  }
}
@media only screen and (min-width: 62em) {
  .section-heading__top {
    font-size: 48px;
  }
}
@media only screen and (min-width: 90em) {
  .section-heading__top {
    font-size: 56px;
  }
}
@media only screen and (min-width: 120em) {
  .section-heading__top {
    font-size: 72px;
  }
}
.section-heading__top--clr-100 {
  color: var(--clr-100);
}
.section-heading__top--clr-900 {
  color: var(--clr-900);
}
.section-heading__top--me-40 {
  margin-right: 40px;
}
.section-heading__top--me-100 {
  margin-right: 105px;
}
.section-heading__bottom {
  display: flex;
  justify-content: end;
  font-family: var(--font-secondary);
  font-weight: 300;
  font-size: 20px;
  color: var(--clr-primary);
  margin-left: 60px;
}
@media only screen and (min-width: 24.375em) {
  .section-heading__bottom {
    font-size: 25px;
  }
}
@media only screen and (min-width: 36em) {
  .section-heading__bottom {
    font-size: 32px;
  }
}
@media only screen and (min-width: 48em) {
  .section-heading__bottom {
    font-size: 36px;
  }
}
@media only screen and (min-width: 62em) {
  .section-heading__bottom {
    font-size: 38px;
  }
}
@media only screen and (min-width: 90em) {
  .section-heading__bottom {
    font-size: 44px;
  }
}
@media only screen and (min-width: 120em) {
  .section-heading__bottom {
    font-size: 56px;
  }
}

@media only screen and (min-width: 75em) {
  .heading-wrapper {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
  }
}
.heading-wrapper__decor-line {
  display: none;
  position: relative;
  margin-bottom: 15px;
}
@media only screen and (min-width: 62em) {
  .heading-wrapper__decor-line {
    flex-grow: 1;
    margin-bottom: 0;
  }
}
@media only screen and (min-width: 75em) {
  .heading-wrapper__decor-line {
    display: block;
  }
}
.heading-wrapper__decor-line--darck hr {
  color: rgba(35, 31, 32, 0.1019607843);
  background-color: rgba(35, 31, 32, 0.1019607843);
}
.heading-wrapper__decor-line--light hr {
  color: rgba(255, 255, 255, 0.2509803922);
  background-color: rgba(255, 255, 255, 0.2509803922);
}
.heading-wrapper__decor-line hr {
  height: 2px;
  border-width: 0;
  width: 100%;
}
@media only screen and (min-width: 62em) {
  .heading-wrapper__decor-line hr {
    position: absolute;
    top: 22px;
    left: 0;
    width: calc(100% + 40px);
    transform: translateX(-40px);
  }
}
@media only screen and (min-width: 75em) {
  .heading-wrapper__decor-line hr {
    top: 30px;
  }
}

@font-face {
  font-family: "Optima";
  src: url("../fonts/optima/Optima-Italic.woff2") format("woff2"), url("../fonts/optima/Optima-Italic.woff") format("woff");
  font-weight: normal;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Optima";
  src: url("../fonts/optima/Optima-ExtraBlack.woff2") format("woff2"), url("../fonts/optima/Optima-ExtraBlack.woff") format("woff");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Optima";
  src: url("../fonts/optima/Optima-Regular.woff2") format("woff2"), url("../fonts/optima/Optima-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Optima";
  src: url("../fonts/optima/Optima-BoldItalic.woff2") format("woff2"), url("../fonts/optima/Optima-BoldItalic.woff") format("woff");
  font-weight: bold;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Optima";
  src: url("../fonts/optima/Optima-Bold.woff2") format("woff2"), url("../fonts/optima/Optima-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Avenir LT Std";
  src: url("../fonts/avenir/AvenirLTStd-Light.woff2") format("woff2"), url("../fonts/avenir/AvenirLTStd-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Avenir LT Std";
  src: url("../fonts/avenir/AvenirLTStd-Medium.woff2") format("woff2"), url("../fonts/avenir/AvenirLTStd-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Avenir LT Std";
  src: url("../fonts/avenir/AvenirLTStd-Roman.woff2") format("woff2"), url("../fonts/avenir/AvenirLTStd-Roman.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Avenir LT Std";
  src: url("../fonts/avenir/AvenirLTStd-Book.woff2") format("woff2"), url("../fonts/avenir/AvenirLTStd-Book.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
.container-header {
  margin: 0 auto;
  padding-left: var(--container-padding-xs);
  padding-right: var(--container-padding-xs);
}
@media only screen and (min-width: 75em) {
  .container-header {
    padding-left: var(--container-padding-md);
    padding-right: var(--container-padding-md);
  }
}
@media only screen and (min-width: 120em) {
  .container-header {
    max-width: 1920px;
  }
}

.container-large {
  margin: 0 auto;
  max-width: 393px;
}
@media only screen and (min-width: 36em) {
  .container-large {
    max-width: 576px;
  }
}
@media only screen and (min-width: 48em) {
  .container-large {
    max-width: 768px;
  }
}
@media only screen and (min-width: 62em) {
  .container-large {
    max-width: 992px;
  }
}
@media only screen and (min-width: 75em) {
  .container-large {
    max-width: 1200px;
  }
}
@media only screen and (min-width: 90em) {
  .container-large {
    max-width: 1440px;
  }
}
@media only screen and (min-width: 120em) {
  .container-large {
    max-width: 1920px;
  }
}

.container-wide {
  margin: 0 auto;
}
@media only screen and (min-width: 36em) {
  .container-wide {
    max-width: 576px;
  }
}
@media only screen and (min-width: 48em) {
  .container-wide {
    max-width: 768px;
  }
}
@media only screen and (min-width: 62em) {
  .container-wide {
    max-width: 992px;
  }
}
@media only screen and (min-width: 75em) {
  .container-wide {
    max-width: 1200px;
  }
}
@media only screen and (min-width: 90em) {
  .container-wide {
    max-width: 1440px;
  }
}
@media only screen and (min-width: 120em) {
  .container-wide {
    max-width: 1920px;
    padding-left: var(--container-padding-md);
    padding-right: var(--container-padding-md);
  }
}

.container {
  max-width: 576px;
  margin: 0 auto;
  padding-left: var(--container-padding-xs);
  padding-right: var(--container-padding-xs);
}
@media only screen and (min-width: 48em) {
  .container {
    max-width: 768px;
    padding-left: var(--container-padding-xl);
    padding-right: var(--container-padding-xl);
  }
}
@media only screen and (min-width: 62em) {
  .container {
    padding-left: 0;
    padding-right: 0;
  }
}
@media only screen and (min-width: 75em) {
  .container {
    max-width: 1100px;
    padding-left: var(--container-padding-md);
    padding-right: var(--container-padding-md);
  }
}
@media only screen and (min-width: 90em) {
  .container {
    max-width: 1440px;
    padding-left: var(--container-padding-xxl);
    padding-right: var(--container-padding-xxl);
  }
}
@media only screen and (min-width: 120em) {
  .container {
    padding-left: var(--container-padding-xs);
    padding-right: var(--container-padding-xs);
  }
}

.section {
  padding-top: 60px;
  padding-bottom: 70px;
}
@media only screen and (min-width: 48em) {
  .section {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
@media only screen and (min-width: 75em) {
  .section {
    padding-top: 90px;
    padding-bottom: 90px;
  }
}
@media only screen and (min-width: 90em) {
  .section {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
@media only screen and (min-width: 120em) {
  .section {
    padding-top: 110px;
    padding-bottom: 110px;
  }
}

.about-realty-agent__bg {
  width: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.about-realty-agent__heading {
  margin-bottom: 30px;
}
@media only screen and (min-width: 75em) {
  .about-realty-agent__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 80px;
  }
}
.about-realty-agent p {
  margin-bottom: 35px;
}
.about-realty-agent .btn {
  width: 100%;
}
@media only screen and (min-width: 75em) {
  .about-realty-agent .btn {
    width: auto;
  }
}

.accordion__item {
  border-radius: var(--border-radius);
}
.accordion__item:not(:last-child) {
  margin-bottom: 20px;
}
.accordion__panel {
  width: 100%;
  min-height: 52px;
  padding-top: 15px;
  padding-bottom: 15px;
  padding-right: 20px;
  padding-left: 20px;
  background-color: #fff;
  box-shadow: 0px 10px 40px -10px rgba(35, 31, 32, 0.2);
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
@media only screen and (min-width: 48em) {
  .accordion__panel {
    min-height: 60px;
    padding-top: 15px;
    padding-bottom: 15px;
  }
}
@media only screen and (min-width: 75em) {
  .accordion__panel {
    min-height: 75px;
    padding-top: 15px;
    padding-bottom: 15px;
    padding-right: 30px;
    padding-left: 30px;
  }
}
.accordion__item-title {
  font-family: var(--clr-primary);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.5;
}
@media only screen and (min-width: 36em) {
  .accordion__item-title {
    font-size: 22px;
  }
}
@media only screen and (min-width: 62em) {
  .accordion__item-title {
    font-size: 24px;
  }
}
.accordion .toggle-btn {
  min-width: 40px;
}
.accordion__content {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease-in-out;
}
.accordion__item.is-open .accordion__content {
  grid-template-rows: 1fr;
}
.accordion__item.is-open .accordion__panel {
  background-color: var(--clr-primary);
  border-bottom-left-radius: 0px;
  border-bottom-right-radius: 0px;
}
.accordion__inner {
  overflow: hidden;
}
.accordion__text-wrapper {
  padding-top: 30px;
  padding-bottom: 40px;
  padding-left: 30px;
  padding-right: 30px;
}
@media only screen and (min-width: 75em) {
  .accordion__text-wrapper {
    padding-top: 40px;
    padding-bottom: 50px;
    padding-left: 30px;
    padding-right: 30px;
  }
}
.accordion__text-wrapper p:not(:last-child) {
  font-family: var(--font-secondary);
  margin-bottom: 20px;
}
@media only screen and (min-width: 75em) {
  .accordion__text-wrapper p:not(:last-child) {
    margin-bottom: 30px;
  }
}
.accordion__text-wrapper a {
  color: var(--clr-primary-darker);
  text-decoration: underline;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}
.accordion__text-wrapper a:hover {
  color: var(--clr-primary);
}
.accordion__text-wrapper ul,
.accordion__text-wrapper ol {
  color: inherit;
  padding-left: 20px;
  margin-bottom: 20px;
}
.accordion__text-wrapper ul li:not(:last-child),
.accordion__text-wrapper ol li:not(:last-child) {
  margin-bottom: 10px;
}
.accordion__text-wrapper img {
  width: 100%;
  margin-top: 20px;
  margin-bottom: 20px;
}
@media only screen and (min-width: 48em) {
  .accordion__text-wrapper img {
    margin-top: 40px;
    margin-bottom: 40px;
  }
}
.accordion__text-wrapper b,
.accordion__text-wrapper strong {
  font-size: 18px;
  font-family: var(--font-primary);
  color: var(--clr-900);
  font-weight: 600;
  letter-spacing: 0.1rem;
}
@media only screen and (min-width: 75em) {
  .accordion__text-wrapper b,
  .accordion__text-wrapper strong {
    font-size: 22px;
  }
}

.all-realty__heading {
  margin-bottom: 40px;
  margin-left: auto;
  margin-right: auto;
}
@media only screen and (min-width: 62em) {
  .all-realty__heading {
    margin-left: 0;
    margin-right: 0;
  }
}
@media only screen and (min-width: 75em) {
  .all-realty__heading {
    margin-top: 10px;
    margin-bottom: 50px;
  }
}
@media only screen and (min-width: 90em) {
  .all-realty__heading {
    margin-top: 5px;
    margin-bottom: 80px;
  }
}
@media only screen and (min-width: 120em) {
  .all-realty__heading {
    margin-top: 0;
    margin-bottom: 100px;
  }
}
.all-realty__sort {
  margin-bottom: 40px;
}
@media only screen and (min-width: 62em) {
  .all-realty__sort {
    margin-bottom: 50px;
  }
}
@media only screen and (min-width: 75em) {
  .all-realty__sort {
    margin-top: 10px;
    margin-bottom: 0;
  }
}
.all-realty__objects {
  overflow: hidden;
  margin-bottom: 20px;
}
@media only screen and (min-width: 75em) {
  .all-realty__objects {
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (min-width: 48em) {
  .all-realty__objects {
    margin-bottom: 40px;
  }
}
@media only screen and (min-width: 62em) {
  .all-realty__objects {
    margin-bottom: 50px;
  }
}
@media only screen and (min-width: 75em) {
  .all-realty__objects {
    gap: 2px;
    margin-bottom: 70px;
  }
}
@media only screen and (min-width: 90em) {
  .all-realty__objects {
    margin-bottom: 90px;
  }
}
@media only screen and (min-width: 120em) {
  .all-realty__objects {
    margin-bottom: 100px;
  }
}
@media only screen and (min-width: 75em) {
  .all-realty__column {
    overflow: hidden;
  }
  .all-realty__column--mt {
    margin-top: 40px;
  }
  .all-realty__column .object-card {
    margin-bottom: 2px;
  }
}

.arrow-btn-v2 {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  border: none;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.arrow-btn-v2--next {
  margin-left: 20px;
}
.arrow-btn-v2--prev {
  margin-right: 20px;
}
.arrow-btn-v2--next, .arrow-btn-v2--prev {
  z-index: 1000;
}
.arrow-btn-v2--next img, .arrow-btn-v2--prev img {
  width: 16px;
  height: 16px;
  transition: all 0.2s ease-in-out;
}
.arrow-btn-v2--next:hover img {
  transform: translateX(2px);
}
.arrow-btn-v2--prev:hover img {
  transform: translateX(-2px);
}

.arrow-btn {
  width: 30px;
  height: 30px;
  border: none;
  position: absolute;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.arrow-btn--next {
  right: 0;
  transform: translateX(100%);
}
.arrow-btn--prev {
  left: 0;
  transform: translateX(-100%);
}
.arrow-btn--next, .arrow-btn--prev {
  top: 0%;
  z-index: 1000;
}
.arrow-btn--next img, .arrow-btn--prev img {
  width: 16px;
  height: 16px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.2s ease-in-out;
}
.arrow-btn--next:hover img {
  left: 52%;
}
.arrow-btn--prev:hover img {
  left: 48%;
}

.article-card-v2 {
  display: flex;
  flex-direction: column;
  max-width: 353px;
  margin-top: 0;
  margin-bottom: 20px;
  margin-left: auto;
  margin-right: auto;
  height: 100%;
}
@media only screen and (min-width: 36em) {
  .article-card-v2 {
    max-width: 430px;
  }
}
@media only screen and (min-width: 48em) {
  .article-card-v2 {
    max-width: 530px;
  }
}
@media only screen and (min-width: 62em) {
  .article-card-v2 {
    margin-bottom: 2px;
    max-width: none;
    margin-bottom: 0;
  }
  .article-card-v2 > * {
    height: 50%;
  }
}
@media only screen and (min-width: 75em) {
  .article-card-v2--card-reversed {
    flex-direction: column-reverse;
  }
  .article-card-v2--card-reversed .article-card__content {
    margin-top: 0;
    margin-bottom: 2px;
  }
}
.article-card-v2__img-box {
  overflow: hidden;
  cursor: pointer;
  max-height: 240px;
}
@media only screen and (min-width: 36em) {
  .article-card-v2__img-box {
    max-height: 300px;
  }
}
@media only screen and (min-width: 62em) {
  .article-card-v2__img-box {
    margin-top: 2px;
  }
}
@media only screen and (min-width: 75em) {
  .article-card-v2__img-box {
    max-height: 300px;
  }
}
@media only screen and (min-width: 120em) {
  .article-card-v2__img-box {
    max-height: 270px;
  }
}
.article-card-v2__img {
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  transform: scale(1);
  transition: 0.2s ease-in-out;
  height: 100%;
  min-height: 268px;
}
.article-card-v2__img-box:hover .article-card-v2__img {
  transform: scale(1.01);
}
.article-card-v2__content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: var(--clr-900);
  padding-top: 25px;
  min-height: 294px;
}
@media only screen and (min-width: 62em) {
  .article-card-v2__content {
    padding-top: 40px;
    margin-top: 2px;
  }
}
@media only screen and (min-width: 75em) {
  .article-card-v2__content {
    padding-top: 50px;
    width: 50%;
  }
  .nb-title{
    margin-bottom: 100px;
  }
}
.article-card-v2__header {
  display: block;
  font-family: var(--font-primary);
  font-size: 22px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.1rem;
  color: var(--clr-100);
  padding-left: 20px;
  padding-right: 20px;
  margin-bottom: 20px;
  text-decoration: none;
  transition: color 0.2s ease-in-out;
}
@media only screen and (min-width: 75em) {
  .article-card-v2__header {
    padding-left: 40px;
    padding-right: 40px;
    margin-bottom: 12px;
  }
}
.article-card-v2__header:hover {
  color: var(--clr-primary);
}
.article-card-v2__publication-date {
  display: flex;
  align-items: center;
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.1rem;
  text-transform: uppercase;
  line-height: 1;
  color: var(--clr-100);
  padding-left: 20px;
  padding-right: 20px;
}
@media only screen and (min-width: 75em) {
  .article-card-v2__publication-date {
    padding-left: 40px;
    padding-right: 40px;
  }
}
.article-card-v2__publication-date .icon {
  font-size: 15px;
  color: var(--clr-primary);
  margin-right: 15px;
}
.article-card-v2__text-wrapper {
  overflow: hidden;
  max-height: 114px;
}
.article-card-v2__text {
  color: var(--clr-100-75);
  padding-left: 20px;
  padding-right: 20px;
}
@media only screen and (min-width: 75em) {
  .article-card-v2__text {
    padding-left: 40px;
    padding-right: 30px;
  }
}
.article-card-v2 .text-btn {
  padding-left: 20px;
  padding-right: 20px;
  padding-bottom: 30px;
}
@media only screen and (min-width: 62em) {
  .article-card-v2 .text-btn {
    padding-top: 20px;
    padding-bottom: 20px;
  }
}
@media only screen and (min-width: 75em) {
  .article-card-v2 .text-btn {
    padding-left: 40px;
    padding-right: 30px;
    padding-top: 25px;
    padding-bottom: 25px;
  }
}

.article-card {
  display: flex;
  flex-direction: column;
  max-width: 353px;
  margin-top: 0;
  margin-bottom: 20px;
  margin-left: auto;
  margin-right: auto;
}
@media only screen and (min-width: 36em) {
  .article-card {
    max-width: 430px;
  }
}
@media only screen and (min-width: 48em) {
  .article-card {
    max-width: 530px;
  }
}
@media only screen and (min-width: 62em) {
  .article-card {
    max-width: none;
    margin-bottom: 2px;
  }
}
@media only screen and (min-width: 75em) {
  .article-card > * {
    height: 50%;
  }
}
@media only screen and (min-width: 75em) {
  .article-card--card-reversed {
    flex-direction: column-reverse;
  }
  .article-card--card-reversed .article-card__content {
    margin-top: 0;
    margin-bottom: 2px;
  }
}
.article-card__img-box {
  overflow: hidden;
  cursor: pointer;
}
@media only screen and (min-width: 36em) {
  .article-card__img-box {
    max-height: 300px;
  }
}
@media only screen and (min-width: 75em) {
  .article-card__img-box {
    max-height: 350px;
  }
}
@media only screen and (min-width: 90em) {
  .article-card__img-box {
    max-height: 400px;
  }
}
@media only screen and (min-width: 90em) {
  .article-card__img-box {
    max-height: 465px;
  }
}
.article-card__img {
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  transform: scale(1);
  transition: 0.2s ease-in-out;
}
@media only screen and (min-width: 75em) {
  .article-card__img {
    height: 100%;
  }
}
.article-card__img-box:hover .article-card__img {
  transform: scale(1.01);
}
.article-card__content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: var(--clr-900);
  padding-top: 25px;
  min-height: 255px;
}
@media only screen and (min-width: 36em) {
  .article-card__content {
    min-height: 300px;
  }
}
@media only screen and (min-width: 62em) {
  .article-card__content {
    margin-top: 2px;
  }
}
@media only screen and (min-width: 75em) {
  .article-card__content {
    min-height: 350px;
    padding-top: 40px;
  }
}
@media only screen and (min-width: 90em) {
  .article-card__content {
    min-height: 400px;
  }
}
@media only screen and (min-width: 90em) {
  .article-card__content {
    min-height: 465px;
  }
}
.article-card__header {
  display: block;
  font-family: var(--font-primary);
  font-size: 22px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.1rem;
  color: var(--clr-100);
  padding-left: 20px;
  padding-right: 20px;
  margin-bottom: 6px;
  text-decoration: none;
  transition: color 0.2s ease-in-out;
}
@media only screen and (min-width: 75em) {
  .article-card__header {
    padding-left: 40px;
    padding-right: 40px;
    margin-bottom: 12px;
  }
}
.article-card__header:hover {
  color: var(--clr-primary);
}
.article-card__publication-date {
  display: flex;
  align-items: center;
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.1rem;
  text-transform: uppercase;
  line-height: 1;
  color: var(--clr-100);
  padding-left: 20px;
  padding-right: 20px;
}
@media only screen and (min-width: 75em) {
  .article-card__publication-date {
    padding-left: 40px;
    padding-right: 40px;
  }
}
.article-card__publication-date .icon {
  font-size: 15px;
  color: var(--clr-primary);
  margin-right: 15px;
}
.article-card__text-wrapper {
  overflow: hidden;
  max-height: 180px;
}
.article-card__text {
  color: var(--clr-100-75);
  overflow: hidden;
  max-height: 85px;
  padding-left: 20px;
  padding-right: 20px;
  margin-top: 25px;
  margin-bottom: 15px;
}
@media only screen and (min-width: 75em) {
  .article-card__text {
    padding-left: 40px;
    padding-right: 40px;
    margin-bottom: 20px;
  }
}
@media only screen and (min-width: 120em) {
  .article-card__text {
    max-height: 220px;
  }
}
.article-card .text-btn {
  padding-left: 20px;
  padding-right: 20px;
  padding-bottom: 30px;
  margin-top: auto;
}
@media only screen and (min-width: 62em) {
  .article-card .text-btn {
    padding-top: 20px;
    padding-bottom: 20px;
    border-top: 1px solid hsla(0, 0%, 100%, 0.33);
  }
}
@media only screen and (min-width: 75em) {
  .article-card .text-btn {
    padding-left: 30px;
    padding-right: 30px;
    padding-top: 25px;
    padding-bottom: 25px;
  }
}
@media only screen and (min-width: 90em) {
  .article-card .text-btn {
    padding-left: 40px;
    padding-right: 40px;
    padding-top: 35px;
    padding-bottom: 35px;
  }
}

.article {
  margin-top: 40px;
  margin-bottom: 70px;
}
@media only screen and (min-width: 75em) {
  .article {
    margin-top: 70px;
    margin-bottom: 80px;
  }
}
@media only screen and (min-width: 120em) {
  .article {
    margin-top: 95px;
    margin-bottom: 100px;
  }
}
.article__inner {
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}
.article__inner img {
  display: block;
  width: 100%;
  margin: 0 auto;
}
.article__top {
  border-bottom: 2px solid var(--clr-primary);
  padding-bottom: 30px;
}
@media only screen and (min-width: 120em) {
  .article__top {
    padding-bottom: 100px;
  }
}
.article__publication-date {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  line-height: 1;
  letter-spacing: 0.1rem;
  color: var(--clr-900);
  padding-left: 20px;
  padding-right: 20px;
  margin-bottom: 25px;
}
@media only screen and (min-width: 75em) {
  .article__publication-date {
    padding-left: 40px;
    padding-right: 40px;
  }
}
.article__icon-bg {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 50%;
  background-color: var(--clr-900);
  margin-right: 15px;
}
.article__icon-bg .icon {
  font-size: 15px;
  color: var(--clr-primary);
}
.article__heading {
  max-width: 890px;
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 17px;
  line-height: 1.7;
  letter-spacing: 0.1rem;
  color: var(--clr-900);
  text-align: center;
  margin: 0 auto;
}
@media only screen and (min-width: 48em) {
  .article__heading {
    font-size: 24px;
  }
}
.article__container {
  max-width: 890px;
  margin: 0 auto;
}
.article__container img {
  width: 100%;
  margin-top: 20px;
  margin-bottom: 20px;
}
@media only screen and (min-width: 48em) {
  .article__container img {
    margin-top: 40px;
    margin-bottom: 40px;
  }
}
.article__img-wrapper {
  margin-top: 40px;
  margin-bottom: 40px;
}
@media only screen and (min-width: 75em) {
  .article__img-wrapper {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: repeat(3, 1fr);
  }
}
@media only screen and (min-width: 75em) {
  .article__img-wrapper {
    margin-top: 60px;
    margin-bottom: 60px;
  }
}
.article__img-wrapper img {
  width: 100%;
  margin-bottom: 20px;
}
@media only screen and (min-width: 75em) {
  .article__img-wrapper img {
    margin-bottom: 0;
  }
}
@media only screen and (min-width: 75em) {
  .article__img-wrapper img:first-child {
    grid-row: 1/4;
    grid-column: 1/4;
  }
}
@media only screen and (min-width: 75em) {
  .article__img-wrapper img:last-child {
    grid-row: 2/-1;
    grid-column: 3/-1;
  }
}
.article__content {
  line-height: 1.6;
  margin-top: 35px;
  padding-bottom: 40px;
}
@media only screen and (min-width: 75em) {
  .article__content {
    padding-bottom: 60px;
    margin-top: 45px;
  }
}
@media only screen and (min-width: 120em) {
  .article__content {
    padding-bottom: 70px;
    margin-top: 100px;
  }
}
.article__content h1,
.article__content h2,
.article__content h3,
.article__content h4,
.article__content h5,
.article__content h6 {
  font-family: var(--font-primary);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.1rem;
  margin-top: 35px;
  margin-bottom: 30px;
}
@media only screen and (min-width: 75em) {
  .article__content h1,
  .article__content h2,
  .article__content h3,
  .article__content h4,
  .article__content h5,
  .article__content h6 {
    margin-top: 25px;
    margin-bottom: 25px;
  }
}
.article__content h1,
.article__content h2 {
  font-size: 24px;
}
@media only screen and (min-width: 75em) {
  .article__content h1,
  .article__content h2 {
    font-size: 24px;
  }
}
.article__content h3 {
  font-size: 18px;
}
@media only screen and (min-width: 75em) {
  .article__content h3 {
    font-size: 20px;
  }
}
.article__content h4 {
  font-size: 16px;
}
@media only screen and (min-width: 75em) {
  .article__content h4 {
    font-size: 18px;
  }
}
.article__content h5 {
  font-size: 14px;
}
@media only screen and (min-width: 75em) {
  .article__content h5 {
    font-size: 16px;
  }
}
.article__content h6 {
  font-size: 12px;
}
@media only screen and (min-width: 75em) {
  .article__content h6 {
    font-size: 14px;
  }
}
.article__content p {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.5;
  margin-bottom: 25px;
}
@media only screen and (min-width: 75em) {
  .article__content p {
    margin-bottom: 40px;
  }
}
.article__content ul,
.article__content ol {
  color: inherit;
  padding-left: 10px;
  margin-bottom: 20px;
}
.article__content ul li:not(:last-child),
.article__content ol li:not(:last-child) {
  margin-bottom: 10px;
}
.article__content ul li,
.article__content ol li {
  list-style: none;
}
.article__content ul li::before,
.article__content ol li::before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 11px;
  background-image: url(../img/icons/logo-li-marker.svg);
  background-repeat: no-repeat;
  background-position: left center;
  background-size: contain;
  margin-right: 5px;
}
.article__content a {
  color: var(--clr-primary-darker);
  text-decoration: underline;
  cursor: pointer;
  transition: all 0.1s ease-in-out;
}
.article__content a:hover {
  color: var(--clr-primary);
}
.article__content b,
.article__content strong {
  color: var(--clr-900);
  font-weight: 700;
}
.article__content *:last-child {
  margin-bottom: 0;
}

.articles {
  padding-top: 40px;
  padding-bottom: 40px;
}
@media only screen and (min-width: 36em) {
  .articles {
    padding-top: 60px;
    padding-bottom: 70px;
  }
}
.articles--bg {
  background-color: rgba(35, 31, 32, 0.0509803922);
}
@media only screen and (min-width: 90em) {
  .articles {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
@media only screen and (min-width: 120em) {
  .articles {
    padding-top: 110px;
    padding-bottom: 110px;
  }
}
.articles__heading {
  margin-bottom: 80px;
}
@media only screen and (min-width: 120em) {
  .articles__heading {
    margin-bottom: 110px;
  }
}
.articles .pagination {
  margin-top: 40px;
}
@media only screen and (min-width: 48em) {
  .articles .pagination {
    margin-top: 60px;
  }
}
@media only screen and (min-width: 75em) {
  .articles .pagination {
    margin-top: 80px;
  }
}
@media only screen and (min-width: 90em) {
  .articles .pagination {
    margin-top: 100px;
  }
}
@media only screen and (min-width: 120em) {
  .articles .pagination {
    margin-top: 110px;
  }
}
.articles .btn-wrapper {
  margin-top: 40px;
}
.articles__sort {
  margin-bottom: 40px;
}
@media only screen and (min-width: 36em) {
  .articles__sort {
    margin-bottom: 60px;
  }
}
@media only screen and (min-width: 90em) {
  .articles__sort {
    margin-bottom: 110px;
  }
}
.articles__sort-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
  font-family: var(--font-primary);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 1px;
  text-decoration: none;
  list-style: none;
  color: var(--clr-900);
}
.articles__sort-list-item {
  text-transform: uppercase;
  background-color: #f2f2f2;
  border-radius: 20px;
  padding: 9px 25px;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  transition: all 0.2s ease-in-out;
}
.articles__sort-list-item.active {
  background-color: var(--clr-primary);
}
@media only screen and (min-width: 62em) {
  .articles__objects {
    display: grid;
    gap: 2px;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (min-width: 75em) {
  .articles__objects {
    gap: 2px;
  }
}
@media only screen and (min-width: 75em) {
  .articles__column {
    overflow: hidden;
  }
  .articles__column--mt {
    margin-top: 40px;
  }
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-width: 1px;
  border-style: solid;
  transition: all 0.2s ease-in-out;
  font-family: var(--font-primary);
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.1rem;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  text-align: center;
  padding: 18px 40px;
}
.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100px;
  width: 100px;
  height: 100%;
  background-image: linear-gradient(120deg, rgba(255, 255, 255, 0) 30%, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0) 70%);
  opacity: 0.3;
}
.btn:hover::before {
  animation: shine 1.5s ease-out infinite;
}
.btn__inner {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.btn__inner .icon {
  font-size: 14px;
  margin-left: 10px;
}
.btn--primary {
  color: var(--clr-900);
  background-color: var(--clr-primary);
  border-color: var(--clr-primary);
}
.btn--900 {
  color: var(--clr-primary);
  background-color: var(--clr-900);
  border-color: var(--clr-900);
}
.btn--primary-outline {
  color: var(--clr-primary);
  border-color: var(--clr-primary);
  background: none;
}
@media only screen and (min-width: 75em) {
  .btn--mobile {
    display: none;
  }
}
.btn--desk {
  display: none;
}
@media only screen and (min-width: 75em) {
  .btn--desk {
    display: inline-flex;
  }
}

.btn-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}
.btn-wrapper--max-width {
  max-width: 250px;
  margin: 0 auto;
}
@media only screen and (min-width: 75em) {
  .btn-wrapper--hidden {
    display: none;
  }
}

@keyframes shine {
  0% {
    left: -100px;
  }
  60% {
    left: 100%;
  }
  100% {
    left: 100%;
  }
}
.building-card {
  background-color: var(--clr-100);
  min-width: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  margin-bottom: 20px;
}
@media only screen and (min-width: 90em) {
  .building-card {
    min-height: 465px;
  }
}
@media only screen and (min-width: 75em) {
  .building-card--card-reversed {
    flex-direction: column-reverse;
  }
}
@media only screen and (min-width: 75em) {
  .building-card--card-reversed .building-card__content {
    padding-left: 0;
    padding-right: 40px;
  }
}
@media only screen and (min-width: 120em) {
  .building-card--card-reversed .building-card__content {
    padding-right: 80px;
  }
}
.building-card__img-box-wrapper {
  overflow: hidden;
}
.building-card__img-box {
  overflow: hidden;
  transform: scale(1);
  transition: 0.5s all ease-in-out;
}
@media only screen and (min-width: 75em) {
  .building-card__img-box {
    filter: grayscale(100%);
  }
}
@media only screen and (min-width: 75em) {
  .building-card__img-box:hover {
    filter: grayscale(0%);
    transform: scale(1.2);
  }
  .building-card__img-box:hover .swiper .circle-btn--prev {
    transform: translate(50px, -50%);
  }
  .building-card__img-box:hover .swiper .circle-btn--next {
    transform: translate(-50px, -50%);
  }
  .building-card__img-box:hover .circle-btn--big {
    opacity: 1;
    visibility: visible;
  }
  .building-card__img-box:hover .object-card__address {
    opacity: 1;
    visibility: visible;
  }
}
.building-card .circle-btn--big {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  visibility: hidden;
  z-index: 10;
  transition: 0.5s all ease-in-out;
}
.building-card__img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  aspect-ratio: 1.5;
  max-height: 465px;
  transition: all 0.5s ease-in-out;
}
.building-card__content {
  display: flex;
  flex-direction: column;
}
@media only screen and (min-width: 75em) {
  .building-card__content {
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 40px;
    margin-top: auto;
    margin-bottom: auto;
  }
}
@media only screen and (min-width: 120em) {
  .building-card__content {
    min-height: 425px;
    max-height: 426px;
    padding-left: 80px;
  }
}
.building-card__content-inner {
  margin-top: auto;
  margin-bottom: auto;
}
.building-card__header {
  display: block;
  font-family: var(--font-primary);
  font-size: 22px;
  font-weight: 600;
  line-height: 1.2;
  color: var(--clr-900);
  padding-top: 25px;
  padding-bottom: 20px;
  transition: color 0.2s ease-in-out;
}
@media only screen and (min-width: 75em) {
  .building-card__header {
    padding-top: 0;
  }
}
.building-card__header:hover {
  color: var(--clr-primary);
}
.building-card__header-link {
  color: inherit;
  text-decoration: none;
}
.building-card__properties {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.building-card__properties-item {
  display: flex;
  align-items: center;
  gap: 10px;
}
.building-card__properties-item .icon {
  color: var(--clr-primary);
  font-size: 17px;
  padding-top: 1px;
  padding-left: 1px;
}
.building-card__card-circle {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 50%;
  background-color: var(--clr-900);
  display: flex;
  align-items: center;
  justify-content: center;
}
.building-card__properties-title {
  font-family: var(--font-primary);
  font-weight: 600;
  color: var(--clr-900);
  font-size: 15px;
  line-height: 1;
  letter-spacing: 0.1rem;
  text-transform: uppercase;
}
.building-card__text {
  font-size: 15px;
  color: var(--clr-900);
  overflow: hidden;
  max-height: 235px;
}
.building-card__text p {
  margin-top: 25px;
  margin-bottom: 25px;
}
.building-card__text p:not(:last-child) {
  margin-top: 25px;
}
.building-card .text-btn {
  padding-bottom: 25px;
  border-bottom: 1px solid rgba(35, 31, 32, 0.1019607843);
}
@media only screen and (min-width: 75em) {
  .building-card .text-btn {
    border-bottom: none;
  }
}
.building-card__time-box {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  color: rgb(248, 251, 252);
  font-size: 15px;
  line-height: 1.2;
  text-align: center;
  background-color: rgba(35, 31, 32, 0.8980392157);
  padding: 9px 10px;
  z-index: 1;
}
.building-card__time-box img {
  width: 16px;
  height: 16px;
}
@media only screen and (min-width: 120em) {
  .building-card__time-box img {
    width: 20px;
    height: 20px;
  }
}
.building-card__time-box-text {
  margin-left: 10px;
}

.burger-btn {
  cursor: pointer;
  background-color: transparent;
  border: none;
  height: 40px;
  min-width: 40px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1001;
  color: var(--clr-100);
}
.burger-btn:focus {
  outline: none;
}
.burger-btn:hover {
  color: var(--clr-primary);
}
.burger-btn__title {
  display: none;
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 16px;
  line-height: 1;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-right: 15px;
  transition: all 0.3s ease-out;
}
@media only screen and (min-width: 36em) {
  .burger-btn__title {
    display: block;
  }
}
.burger-btn__inner {
  position: relative;
  height: 12px;
  width: 24px;
  margin-bottom: 2px;
}
.burger-btn__top, .burger-btn__mid, .burger-btn__bottom {
  right: 0;
  display: block;
  height: 2px;
  position: absolute;
  background-color: currentColor;
  transition: all 0.3s ease-out;
}
.burger-btn__top {
  top: 0;
  width: 50%;
}
.burger-btn__mid {
  top: 5px;
  width: 100%;
}
.burger-btn__bottom {
  bottom: 0;
  width: 75%;
}

.burger-btn.active .burger-btn__title {
  color: var(--clr-900);
}
.burger-btn.active .burger-btn__title:hover {
  color: var(--clr-100);
}

.burger-btn.active .burger-btn__inner {
  color: var(--clr-100);
}
.burger-btn.active .burger-btn__inner:hover {
  color: var(--clr-900);
}

.burger-btn.active .burger-btn__top {
  transform: rotate(-225deg);
  top: 50%;
  width: 100%;
}

.burger-btn.active .burger-btn__mid {
  scale: 0;
}

.burger-btn.active .burger-btn__bottom {
  transform: rotate(225deg);
  top: 50%;
  width: 100%;
}

.call-section {
  color: var(--clr-900);
  background-color: var(--clr-100);
  padding-top: 20px;
  padding-bottom: 20px;
  padding-left: 20px;
  padding-right: 20px;
}
@media only screen and (min-width: 75em) {
  .call-section {
    max-height: 360px;
    margin-top: auto;
    margin-bottom: auto;
  }
}
@media only screen and (min-width: 90em) {
  .call-section {
    min-width: 500px;
    padding-top: 30px;
    padding-bottom: 30px;
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media only screen and (min-width: 120em) {
  .call-section {
    min-width: 580px;
    padding-top: 40px;
    padding-bottom: 40px;
    padding-left: 40px;
    padding-right: 40px;
  }
}
.call-section__on-hours {
  display: none;
}
.call-section__on-hours .btn {
  width: 100%;
}
.call-section__content {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
}
@media only screen and (min-width: 75em) {
  .call-section__content {
    justify-content: start;
    margin-bottom: 30px;
  }
}
@media only screen and (min-width: 120em) {
  .call-section__content {
    margin-bottom: 40px;
  }
}
.call-section__avatars {
  display: flex;
  margin-right: 20px;
}
.call-section__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  margin-left: -18px;
}
.call-section__avatar:first-child {
  margin-left: 0;
}
.call-section__avatar img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.call-section__list {
  display: none;
  font-weight: 350;
  font-size: 17px;
  margin-bottom: 30px;
}
@media only screen and (min-width: 75em) {
  .call-section__list {
    display: block;
  }
}
@media only screen and (min-width: 120em) {
  .call-section__list {
    margin-bottom: 40px;
  }
}
.call-section__list-item {
  display: flex;
  align-items: center;
  list-style: none;
}
.call-section__list-item-icon {
  width: 18px;
  height: 18px;
  margin-right: 15px;
}
@media only screen and (min-width: 36em) {
  .call-section__btn-wrapper {
    margin: 0 auto;
    max-width: 220px;
  }
}
@media only screen and (min-width: 75em) {
  .call-section__btn-wrapper {
    margin: 0;
  }
}
.call-section__off-hours {
  display: none;
}
.call-section__title {
  display: block;
  font-size: 18px;
  font-weight: 600;
  font-family: var(--font-primary);
  line-height: 1.4;
  margin-bottom: 15px;
}
.call-section__list {
  list-style: none;
  line-height: 1.6;
}

.call-section.on-hours .call-section__on-hours {
  display: block;
}

.call-section.off-hours .call-section__off-hours {
  display: block;
}

.card-label {
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  background-color: var(--clr-900);
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 14px;
  line-height: 1.2;
  letter-spacing: 0.1rem;
  color: inherit;
  text-align: center;
  padding: 5px;
  margin: 10px;
}

.circle-btn {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: none;
  background-color: var(--clr-900);
  box-shadow: var(--box-shadow);
  position: absolute;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  transition: 0.5s all ease-in-out;
  color: #fff;
}
@media only screen and (min-width: 36em) {
  .circle-btn {
    width: 40px;
    height: 40px;
  }
}
.circle-btn--big {
  width: 50px;
  height: 50px;
  color: var(--clr-primary);
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.circle-btn--big .icon {
  color: var(--clr-primary);
  font-size: 32px;
  margin-left: 2px;
  transition: all 0.2s ease-in-out;
}
.circle-btn--big:hover .icon {
  color: var(--clr-primary-darker);
}
@media only screen and (min-width: 62em) {
  .circle-btn {
    width: 40px;
    height: 40px;
  }
  .circle-btn--big {
    width: 72px;
    height: 72px;
  }
}
.circle-btn--next {
  right: 0;
  margin-right: 20px;
}
@media only screen and (min-width: 75em) {
  .circle-btn--next {
    margin-right: 30px;
  }
}
.circle-btn--prev {
  left: 0;
  margin-left: 20px;
}
@media only screen and (min-width: 75em) {
  .circle-btn--prev {
    margin-left: 30px;
  }
}
.circle-btn--next, .circle-btn--prev {
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
}
.circle-btn--next img, .circle-btn--prev img {
  width: 12px;
  height: 12px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.2s ease-in-out;
}
@media only screen and (min-width: 90em) {
  .circle-btn--next img, .circle-btn--prev img {
    width: 16px;
    height: 16px;
  }
}
.circle-btn--next:hover img {
  left: 52%;
}
.circle-btn--prev:hover img {
  left: 48%;
}

.close-btn {
  cursor: pointer;
  background-color: var(--clr-900);
  border: none;
  height: 40px;
  width: 40px;
  position: relative;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1001;
}

.close-btn:focus {
  outline: none;
}

.close-btn__inner {
  position: relative;
  height: 12px;
  width: 14px;
  pointer-events: none;
}

.close-btn__top,
.close-btn__bottom {
  left: 0;
  display: block;
  width: 100%;
  height: 2px;
  position: absolute;
  background-color: var(--clr-primary);
  transition: all 0.3s ease-out;
  pointer-events: none;
}

.close-btn__top {
  top: 50%;
  transform: rotate(225deg);
}

.close-btn__bottom {
  top: 50%;
  transform: rotate(-225deg);
}

.close-btn:hover .close-btn__top {
  transform: rotate(135deg);
}

.close-btn:hover .close-btn__bottom {
  transform: rotate(-135deg);
}

.contact-us-form {
  max-width: 450px;
  margin: 0 auto;
  padding: 5px;
}
@media only screen and (min-width: 48em) {
  .contact-us-form {
    max-width: 576px;
  }
}
@media only screen and (min-width: 62em) {
  .contact-us-form {
    max-width: 660px;
  }
}
@media only screen and (min-width: 75em) {
  .contact-us-form {
    max-width: 950px;
  }
}
@media only screen and (min-width: 62em) {
  .contact-us-form__input-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
  }
}
.contact-us-form__item {
  flex: 1 1;
  margin-bottom: 40px;
}
.contact-us-form__item .form-textarea {
  display: block;
}
.contact-us-form__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 46px;
}
@media only screen and (min-width: 90em) {
  .contact-us-form__bottom {
    margin-top: 54px;
  }
}
.contact-us-form .btn {
  align-self: center;
}

.contact-us-card__bg {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
@media only screen and (min-width: 75em) {
  .contact-us-card__inner {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}
@media only screen and (min-width: 90em) {
  .contact-us-card__inner {
    gap: 40px;
  }
}
@media only screen and (min-width: 120em) {
  .contact-us-card__inner {
    gap: 80px;
  }
}
.contact-us-card__img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  min-height: 250px;
  margin-bottom: 20px;
}
@media only screen and (min-width: 24.375em) {
  .contact-us-card__img {
    min-height: 353px;
  }
}
@media only screen and (min-width: 75em) {
  .contact-us-card__img {
    margin-bottom: 0px;
  }
}

.contact-us-form-v2 {
  width: 100%;
  background-color: var(--clr-100);
  box-shadow: 0px 10px 40px -10px rgba(35, 31, 32, 0.2);
  margin: 0 auto;
  padding: 40px 20px;
}
@media only screen and (min-width: 75em) {
  .contact-us-form-v2 {
    padding: 40px;
  }
}
@media only screen and (min-width: 48em) {
  .contact-us-form-v2__input-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}
.contact-us-form-v2__item {
  width: 100%;
  flex: 1 1;
  margin-bottom: 40px;
}
.contact-us-form-v2__item .form-textarea {
  display: block;
}
.contact-us-form-v2__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 46px;
}
@media only screen and (min-width: 90em) {
  .contact-us-form-v2__bottom {
    margin-top: 54px;
  }
}
.contact-us-form-v2 .btn {
  align-self: center;
}

.contact-us__bg {
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.contact-us__heading {
  text-align: center;
  margin: 0 auto 60px;
}

.custom-checkbox {
  border-radius: 3px;
  font-weight: 500;
  cursor: pointer;
}
.custom-checkbox input {
  display: none;
}
.custom-checkbox label {
  display: inline-block;
  position: relative;
  cursor: pointer;
  padding-left: 36px;
}
.custom-checkbox label::before {
  content: "";
  width: 24px;
  height: 24px;
  border-radius: 3px;
  background-color: rgba(35, 31, 32, 0.1490196078);
  background-position: top;
  position: absolute;
  left: 0;
  top: 0;
  transition: background-color 0.15s ease-in-out, background-position 0.15s ease-in-out;
}
.custom-checkbox input:checked + label::before {
  background-color: var(--clr-900);
  background-image: url(../img/icons/check-box-checked.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 16px;
}
.custom-checkbox input:indeterminate + label::before {
  background-color: var(--clr-900);
  background-image: url(../img/icons/check-box-indeterminate.svg);
  background-repeat: no-repeat;
  background-position: center;
}

.dropdown {
  cursor: default;
  visibility: hidden;
  opacity: 0;
  max-width: 400px;
  width: 90%;
  overflow-y: auto;
  max-height: 540px;
  background: var(--clr-primary);
  transition: all 0.2s ease-in-out;
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% - 10px);
  z-index: 10;
  margin-left: auto;
  margin-right: auto;
}
.dropdown.show {
  visibility: visible;
  opacity: 1;
}
@media only screen and (min-width: 36em) {
  .dropdown {
    max-width: none;
    width: 90%;
  }
}
@media only screen and (min-width: 75em) {
  .dropdown {
    min-width: 400px;
    top: calc(100% + 5px);
  }
}
.dropdown__select-body {
  padding: 20px;
  padding-bottom: 12px;
}
.dropdown__checkbox-list-wrapper {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.2s ease-in-out;
}
.dropdown__checkbox-list {
  list-style: none;
  overflow: hidden;
}
li .dropdown__checkbox-list {
  padding-left: 36px;
}
.dropdown li.has-dropdown {
  position: relative;
}
.dropdown li.has-dropdown::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 10px;
  right: 0;
  top: 13px;
  transform: translateY(-50%);
  z-index: -1;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url(../img/icons/chevron-black-right.svg);
}
.dropdown li.has-dropdown.active::after {
  background-image: url(..icons/chevron-black-down.svg);
  width: 10px;
  height: 8px;
}
li.active > .dropdown__checkbox-list-wrapper {
  grid-template-rows: 1fr;
}
.dropdown .custom-checkbox {
  margin-bottom: 8px;
}

.employee-card-v2 {
  display: flex;
  flex-direction: column;
  margin-bottom: 40px;
}
@media only screen and (min-width: 75em) {
  .employee-card-v2 {
    margin-bottom: 15px;
  }
}
.employee-card-v2__img-box {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.employee-card-v2__img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  aspect-ratio: 0.67;
  transform: scale(1);
  transition: 0.2s ease-in-out;
}
.employee-card-v2__img-box:hover .employee-card-v2__img {
  transform: scale(1.01);
}
.employee-card-v2__header {
  background-color: #fff;
  padding-top: 30px;
  padding-bottom: 20px;
  margin-bottom: auto;
}
.employee-card-v2__title {
  display: block;
  font-family: var(--font-primary);
  font-size: 22px;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: 0.1rem;
  color: var(--clr-neutral-900);
  text-decoration: none;
  transition: color 0.2s ease-in-out;
  margin-bottom: 5px;
}
.employee-card-v2__title:hover {
  color: var(--clr-primary-darker);
}
@media only screen and (min-width: 75em) {
  .employee-card-v2__title {
    font-size: 24px;
  }
}
.employee-card-v2__subtitle {
  font-size: 15px;
  font-weight: 350;
  line-height: 1.5;
}
.employee-card-v2__contacts-list {
  list-style: none;
}
.employee-card-v2__contacts-item {
  display: flex;
  align-items: center;
  width: 100%;
  padding-top: 10px;
  padding-bottom: 10px;
  transition: color 0.2s ease-in-out;
}
.employee-card-v2__contacts-item:hover {
  color: var(--clr-primary-darker);
}
.employee-card-v2__contacts-item:hover .icon {
  color: inherit;
}
.employee-card-v2__contacts-item .icon {
  color: var(--clr-900);
  font-size: 24px;
  margin-right: 15px;
}
.employee-card-v2__contacts-link {
  width: 100%;
  font-size: 17px;
  font-weight: 300;
  line-height: 1;
  text-decoration: none;
  color: inherit;
}

.employee-card {
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid var(--clr-900-10);
}
@media only screen and (min-width: 90em) {
  .employee-card {
    border-bottom: none;
  }
}
.employee-card__img-box {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.employee-card__img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  aspect-ratio: 0.67;
  transform: scale(1);
  transition: 0.2s ease-in-out;
}
.employee-card__img-box:hover .employee-card__img {
  transform: scale(1.01);
}
.employee-card__header {
  background-color: #fff;
  padding-top: 25px;
  padding-bottom: 25px;
  padding-left: 20px;
  padding-right: 20px;
  margin-bottom: auto;
}
@media only screen and (min-width: 62em) {
  .employee-card__header {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
@media only screen and (min-width: 90em) {
  .employee-card__header {
    padding-top: 35px;
    padding-bottom: 35px;
  }
}
.employee-card__title {
  display: block;
  font-family: var(--font-primary);
  font-size: 22px;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: 0.1rem;
  color: var(--clr-neutral-900);
  text-decoration: none;
  transition: color 0.2s ease-in-out;
  margin-bottom: 5px;
}
.employee-card__title:hover {
  color: var(--clr-primary-darker);
}
@media only screen and (min-width: 75em) {
  .employee-card__title {
    font-size: 24px;
  }
}
.employee-card__subtitle {
  font-size: 15px;
  font-weight: 350;
  line-height: 1.5;
}

.employee {
  width: 100%;
  max-width: 400px;
  margin-top: 20px;
  margin-bottom: 70px;
  margin-right: auto;
  margin-left: auto;
}
@media only screen and (min-width: 36em) {
  .employee {
    max-width: 500px;
    margin-top: 30px;
  }
}
@media only screen and (min-width: 48em) {
  .employee {
    max-width: 600px;
    margin-top: 40px;
  }
}
@media only screen and (min-width: 62em) {
  .employee {
    max-width: 650px;
    margin-top: 60px;
  }
}
@media only screen and (min-width: 75em) {
  .employee {
    display: flex;
    min-width: 100%;
    margin-top: 70px;
  }
  .employee > * {
    width: 50% !important;
  }
}
@media only screen and (min-width: 90em) {
  .employee {
    margin-top: 90px;
    margin-bottom: 90px;
  }
}
@media only screen and (min-width: 120em) {
  .employee {
    margin-top: 110px;
    margin-bottom: 110px;
  }
}
.employee__img-box {
  display: block;
  overflow: hidden;
  max-width: 353px;
  margin-bottom: 60px;
}
@media only screen and (min-width: 36em) {
  .employee__img-box {
    max-width: none;
  }
}
@media only screen and (min-width: 75em) {
  .employee__img-box {
    max-width: none;
    margin-bottom: 0;
  }
}
.employee__img {
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 0.67;
  width: 100%;
}
@media only screen and (min-width: 120em) {
  .employee__img {
    height: auto;
    width: auto;
  }
}
@media only screen and (min-width: 75em) {
  .employee__content-wrapper {
    padding-left: 40px;
  }
}
.employee__heading {
  margin: 0;
}
.employee__info {
  border-bottom: 2px solid var(--clr-900-10);
  padding-top: 20px;
  padding-bottom: 30px;
  margin-bottom: 30px;
}
.employee__info p:not(:last-child) {
  margin-bottom: 30px;
}
.employee__title {
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 24px;
  letter-spacing: 0.1rem;
  margin-bottom: 25px;
}
.employee__content {
  display: flex;
  flex-direction: column-reverse;
}
@media only screen and (min-width: 90em) {
  .employee__content {
    flex-direction: row;
    gap: 30px;
    margin-bottom: 20px;
  }
}
.employee__contacts {
  display: flex;
  flex-direction: column-reverse;
  list-style: none;
}
@media only screen and (min-width: 90em) {
  .employee__contacts {
    flex-direction: row;
    gap: 30px;
  }
}
.employee__contacts-item {
  display: flex;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  color: var(--clr-900);
  transition: color 0.2s ease-in-out;
  padding: 5px;
  margin-bottom: 15px;
}
@media only screen and (min-width: 90em) {
  .employee__contacts-item {
    margin-bottom: 0;
  }
}
.employee__contacts-item:hover {
  color: var(--clr-primary-darker);
}
.employee__contacts-item .icon {
  color: var(--color-primary);
  font-size: 24px;
  margin-right: 15px;
}
.employee__link {
  font-size: 17px;
  font-weight: 500;
  line-height: 1.5;
  text-decoration: none;
  color: inherit;
}
.employees__heading {
  margin-bottom: 60px;
  margin-left: auto;
  margin-right: auto;
}
@media only screen and (min-width: 62em) {
  .employees__heading {
    margin-left: 0;
    margin-right: 0;
  }
}
@media only screen and (min-width: 90em) {
  .employees__heading {
    margin-bottom: 110px;
  }
}
.employees__grid {
  display: grid;
  gap: 20px;
  justify-content: center;
  grid-template-columns: 1fr;
}
@media only screen and (min-width: 24.375em) {
  .employees__grid {
    grid-template-columns: 350px;
  }
}
@media only screen and (min-width: 48em) {
  .employees__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (min-width: 75em) {
  .employees__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media only screen and (min-width: 90em) {
  .employees__grid {
    grid-template-columns: repeat(4, 1fr);
    -moz-column-gap: 28px;
         column-gap: 28px;
    row-gap: 35px;
  }
}

.feature-card {
  display: flex;
  flex-direction: column;
  text-align: center;
  max-width: 353px;
  padding: 10px;
  margin-top: 0;
  margin-bottom: 30px;
  margin-left: auto;
  margin-right: auto;
}
@media only screen and (min-width: 62em) {
  .feature-card {
    margin-bottom: 0;
  }
}
.feature-card__card-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background-color: var(--clr-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0;
  margin-bottom: 30px;
  margin-left: auto;
  margin-right: auto;
}
@media only screen and (min-width: 75em) {
  .feature-card__card-circle {
    margin-bottom: 40px;
  }
}
.feature-card__card-circle .icon {
  color: var(--clr-900);
  font-size: 24px;
}
.feature-card__title {
  font-family: var(--font-primary);
  font-size: 22px;
  color: var(--clr-100);
  letter-spacing: 0.1rem;
  text-transform: none;
  margin-bottom: 20px;
}
.feature-card__text {
  color: var(--clr-100-75);
  line-height: 1.8;
}
@media only screen and (min-width: 75em) {
  .feature-card__text {
    margin-top: auto;
  }
}
@media only screen and (min-width: 120em) {
  .feature-card__text {
    margin-top: 0;
  }
}

.features__bg {
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.features__heading {
  margin-bottom: 50px;
  margin-left: auto;
  margin-right: auto;
  text-wrap: none;
}
@media only screen and (min-width: 48em) {
  .features__heading {
    margin-bottom: 60px;
  }
}
@media only screen and (min-width: 62em) {
  .features__heading {
    margin-bottom: 70px;
  }
}
@media only screen and (min-width: 75em) {
  .features__heading {
    margin-bottom: 90px;
  }
}
@media only screen and (min-width: 90em) {
  .features__heading {
    margin-bottom: 100px;
  }
}
@media only screen and (min-width: 90em) {
  .features__heading {
    margin-bottom: 110px;
  }
}
.features__heading .section-heading__top--me-40 {
  margin-right: 5px;
}
@media only screen and (min-width: 36em) {
  .features__heading .section-heading__top--me-40 {
    margin-right: 40px;
  }
}
.features__items {
  margin-bottom: 30px;
}
@media only screen and (min-width: 36em) {
  .features__items {
    margin-bottom: 40px;
  }
}
@media only screen and (min-width: 48em) {
  .features__items {
    margin-bottom: 50px;
  }
}
@media only screen and (min-width: 62em) {
  .features__items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-bottom: 60px;
  }
}
@media only screen and (min-width: 90em) {
  .features__items {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 70px;
  }
}
@media only screen and (min-width: 90em) {
  .features__items {
    gap: 30px;
    margin-bottom: 80px;
  }
}
@media only screen and (min-width: 120em) {
  .features__items {
    margin-bottom: 100px;
  }
}
.features__objects {
  margin: 40px auto;
}

.filter-form {
  max-width: 940px;
  margin: 0 auto;
}
.filter-form__row:not(:last-child) {
  margin-bottom: 10px;
}
@media only screen and (min-width: 75em) {
  .filter-form__row:not(:last-child) {
    margin-bottom: 40px;
  }
}
.filter-form__row {
  display: grid;
  gap: 10px;
}
@media only screen and (min-width: 48em) {
  .filter-form__row {
    grid-template-columns: repeat(2, 1fr);
    -moz-column-gap: 30px;
         column-gap: 30px;
  }
}
@media only screen and (min-width: 75em) {
  .filter-form__row {
    gap: 20px;
    grid-template-columns: repeat(3, 1fr);
  }
}
.filter-form__item {
  cursor: pointer;
  position: relative;
  min-width: 0;
  background: var(--clr-900-10);
  border-bottom: 1px solid var(--clr-100-75);
  margin-bottom: 35px;
}
@media only screen and (min-width: 48em) {
  .filter-form__item--street-name-area {
    grid-column: span 2;
  }
}
@media only screen and (min-width: 48em) {
  .filter-form__item:nth-child(3) {
    grid-column: 1/-1;
  }
}
@media only screen and (min-width: 75em) {
  .filter-form__item {
    padding: 0;
    margin-bottom: 0;
  }
  .filter-form__item:nth-child(3) {
    grid-column: 3;
  }
}
.filter-form__label {
  display: block;
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 13px;
  line-height: 1.4;
  letter-spacing: 2px;
  color: #fff;
  margin-bottom: 4px;
  text-transform: uppercase;
}
.filter-form__title-wrapper {
  position: relative;
  padding-right: 15px;
  padding-bottom: 5px;
}
.filter-form__title-wrapper::after {
  content: "";
  background: url(../img/icons/chevron-icon-down.svg);
  position: absolute;
  width: 10px;
  height: 8px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  right: 0;
  top: 10px;
}
.filter-form__select-title, .filter-form__input {
  border: none;
  background: none;
  width: 100%;
  font-family: var(--font-secondary);
  font-weight: 300;
  font-size: 17px;
  line-height: 1.6;
  color: var(--clr-100-75);
}
.filter-form__select-title {
  white-space: nowrap;
  overflow-x: auto;
  display: block;
  scrollbar-color: var(--color-primary-lighter) var(--color-grey);
  scrollbar-width: thin;
}
.filter-form__select-title::-webkit-scrollbar {
  height: 4px;
}
.filter-form__select-title::-webkit-scrollbar-track {
  background: var(--color-grey);
  border-radius: 1px;
}
.filter-form__select-title::-webkit-scrollbar-thumb {
  background: var(--color-primary-lighter);
  border-radius: 1px;
}
.filter-form__input {
  padding-right: 20px;
}
.filter-form__input:focus {
  outline: none;
}
.filter-form__input::-moz-placeholder {
  color: var(--clr-100-75);
}
.filter-form__input::placeholder {
  color: var(--clr-100-75);
}
.filter-form__btn-wrapper {
  display: flex;
  gap: 20px;
}
.filter-form__btn-wrapper .btn {
  padding: 15px;
}

.footer {
  background-color: var(--clr-100);
}
.footer__top {
  margin: 20px auto 70px;
}
@media only screen and (min-width: 75em) {
  .footer__top {
    margin: 30px auto 110px;
  }
}
.footer__decor-wrapper {
  margin: 0 auto;
  padding-left: var(--container-padding-xs);
  padding-right: var(--container-padding-xs);
}
@media only screen and (min-width: 36em) {
  .footer__decor-wrapper {
    max-width: 576px;
  }
}
@media only screen and (min-width: 48em) {
  .footer__decor-wrapper {
    max-width: 768px;
  }
}
@media only screen and (min-width: 62em) {
  .footer__decor-wrapper {
    max-width: 992px;
  }
}
@media only screen and (min-width: 75em) {
  .footer__decor-wrapper {
    max-width: 1200px;
  }
}
@media only screen and (min-width: 90em) {
  .footer__decor-wrapper {
    max-width: 1440px;
  }
}
@media only screen and (min-width: 120em) {
  .footer__decor-wrapper {
    max-width: 1860px;
    padding: 0;
  }
}
.footer__decor {
  height: 6px;
  border-width: 0;
  color: var(--clr-primary);
  background-color: var(--clr-primary);
}
.footer__logo {
  margin: 70px auto;
  max-width: 222px;
  max-height: 150px;
}
@media only screen and (min-width: 75em) {
  .footer__logo {
    margin-top: 110px;
    margin-bottom: 40px;
  }
}
.footer__nav {
  margin: 0 auto;
}
.footer__nav-list {
  list-style: none;
  text-align: center;
}
@media only screen and (min-width: 62em) {
  .footer__nav-list {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
  }
}
.footer__nav-list li:not(:last-child) {
  margin-bottom: 25px;
}
@media only screen and (min-width: 62em) {
  .footer__nav-list li:not(:last-child) {
    line-height: 1;
    border-right: 1px solid var(--clr-primary);
    padding-right: 30px;
    margin-bottom: 0;
  }
}
.footer__nav-link {
  font-family: var(--font-primary);
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.1rem;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--clr-900);
  transition: color 0.3s ease-in-out;
}
.footer__nav-link:hover {
  color: var(--clr-primary-darker);
}
.footer__bottom {
  background-color: var(--clr-900);
  padding: 40px;
}
.footer__contacts-list {
  list-style: none;
  text-align: center;
}
.footer__contacts-list li:not(:last-child) {
  margin-bottom: 25px;
}
@media only screen and (min-width: 62em) {
  .footer__contacts-list li:not(:last-child) {
    margin-bottom: 0;
  }
}
@media only screen and (min-width: 62em) {
  .footer__contacts-list {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
  }
}
.footer__contacts-item {
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer__contacts-item .icon {
  color: var(--clr-primary);
  font-size: 17px;
  margin-right: 10px;
}
.footer__contacts-link {
  font-size: 15px;
  font-weight: 300;
  line-height: 1;
  text-decoration: none;
  color: var(--clr-100);
  transition: color 0.2s ease-in-out;
}
.footer__contacts-link:hover {
  color: var(--clr-primary);
}

.form-input,
.form-select,
.form-textarea {
  color: var(--clr-100-75);
  letter-spacing: 1px;
  border: none;
  border-radius: 0;
  border-bottom: 2px solid var(--clr-100-33);
  background: none;
  padding-top: 5px;
  padding-bottom: 2px;
  width: 100%;
}
.form-input--darck,
.form-select--darck,
.form-textarea--darck {
  color: var(--clr-900);
  border-bottom: 2px solid var(--clr-900);
}
.form-input--darck:focus,
.form-select--darck:focus,
.form-textarea--darck:focus {
  border-bottom: 2px solid var(--clr-primary-darker);
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
}

.form-textarea {
  height: 150px;
  resize: none;
}

.form-input:focus,
.form-textarea:focus {
  border-bottom: 2px solid var(--clr-primary);
}

.form-item {
  display: flex;
  flex-direction: column-reverse;
}
.form-item input:focus + label {
  color: var(--clr-primary);
}
.form-item textarea:focus + label {
  color: var(--clr-primary);
}

.form-input::-moz-placeholder, .form-textarea::-moz-placeholder {
  font-family: var(--font-primary);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.4;
  letter-spacing: 0.1rem;
  color: rgba(103, 119, 126, 0.5);
}

.form-input::placeholder,
.form-textarea::placeholder {
  font-family: var(--font-primary);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.4;
  letter-spacing: 0.1rem;
  color: rgba(103, 119, 126, 0.5);
}

.form-select {
  padding-bottom: 0;
  padding-left: 0;
  height: 35px;
  color: var(--color-primary-darkest);
  float: none;
}
.form-select ul {
  color: var(--color-primary-darkest);
  font-family: var(--font-primary);
  letter-spacing: 0.1rem;
}
.form-select .nice-select-dropdown {
  width: 100%;
}
.form-select .placeholder {
  color: rgba(103, 119, 126, 0.66);
}
.form-select:hover, .form-select:focus {
  border-color: var(--color-primary);
}
.form-select:hover:after, .form-select:focus:after {
  border-bottom-color: var(--color-primary);
  border-right-color: var(--color-primary);
}
.form-select:after {
  right: 5px;
  border-bottom-color: var(--color-primary);
  border-right-color: var(--color-primary);
  margin-top: -5px;
}

.form-input--white::-moz-placeholder {
  color: #96b7c6;
}

.form-input--white::placeholder {
  color: #96b7c6;
}

.form-select {
  font-family: var(--font-primary);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.4;
  letter-spacing: 0.1rem;
}

.form-label {
  display: block;
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 12px;
  line-height: 1.4;
  letter-spacing: 0.1rem;
  color: var(--clr-100);
  margin-bottom: 2px;
  text-transform: uppercase;
}
.form-label--darck {
  color: var(--clr-900);
}

.form-item .form-actions {
  margin-top: 45px;
}

.get-offer {
  overflow: hidden;
  background-color: var(--clr-100);
  box-shadow: 0px 10px 40px -10px rgba(35, 31, 32, 0.2);
  max-width: 450px;
  margin: 0 auto;
  padding: 40px 20px;
}
@media only screen and (min-width: 62em) {
  .get-offer {
    max-width: 660px;
  }
}
@media only screen and (min-width: 75em) {
  .get-offer {
    padding: 40px;
  }
}
@media only screen and (min-width: 75em) {
  .get-offer {
    max-width: none;
    width: 100%;
  }
}
.get-offer__form-wrapper {
  padding-top: 2px;
  padding-right: 2px;
  padding-bottom: 2px;
  padding-left: 2px;
}
.get-offer__form-row {
  width: 100%;
}
@media only screen and (min-width: 62em) {
  .get-offer__form-row {
    display: flex;
    justify-content: center;
    gap: 20px;
  }
}
.get-offer__form-item {
  width: 100%;
  margin-bottom: 40px;
}
.get-offer__form-item .form-textarea {
  display: block;
}

.get-quote__bg {
  width: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.get-quote__form {
  background-color: var(--clr-100);
  box-shadow: 0px 10px 40px -10px rgba(35, 31, 32, 0.2);
  padding: 40px 20px;
  margin-bottom: 60px;
}
@media only screen and (min-width: 75em) {
  .get-quote__form {
    padding: 40px 40px;
    margin-bottom: 100px;
  }
}
@media only screen and (min-width: 62em) {
  .get-quote__form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}
@media only screen and (min-width: 75em) {
  .get-quote__form-row {
    grid-template-columns: repeat(4, 1fr);
  }
}
.get-quote__form-item {
  width: 100%;
  margin-bottom: 40px;
}
@media only screen and (min-width: 90em) {
  .get-quote__description {
    display: flex;
    justify-content: space-between;
    gap: 30px;
  }
  .get-quote__description > * {
    width: 50% !important;
  }
}
.get-quote__heading {
  max-width: 520px;
  margin-bottom: 30px;
}
@media only screen and (min-width: 120em) {
  .get-quote__heading {
    max-width: 600px;
  }
}
.get-quote__text p:not(:last-child) {
  margin-bottom: 30px;
}
.get-quote__text a {
  color: var(--clr-primary-darker);
  text-decoration: underline;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}
.get-quote__text a:hover {
  color: var(--clr-primary);
}
.get-quote__text ul,
.get-quote__text ol {
  color: inherit;
  padding-left: 20px;
  margin-bottom: 20px;
}
.get-quote__text ul li:not(:last-child),
.get-quote__text ol li:not(:last-child) {
  margin-bottom: 10px;
}
.get-quote__text img {
  width: 100%;
  margin-top: 20px;
  margin-bottom: 20px;
}
@media only screen and (min-width: 48em) {
  .get-quote__text img {
    margin-top: 40px;
    margin-bottom: 40px;
  }
}
@media only screen and (min-width: 75em) {
  .get-quote__text img {
    width: 50%;
  }
}
.get-quote__text b,
.get-quote__text strong {
  font-size: 18px;
  font-family: var(--font-primary);
  color: var(--clr-900);
  font-weight: 600;
  letter-spacing: 0.1rem;
}
@media only screen and (min-width: 75em) {
  .get-quote__text b,
  .get-quote__text strong {
    font-size: 22px;
  }
}

.header-nav {
  display: none;
}
@media only screen and (min-width: 90em) {
  .header-nav {
    display: flex;
    gap: 30px;
    z-index: 1001;
    margin-right: auto;
  }
}
.header-nav__list {
  display: flex;
  list-style: none;
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 16px;
  line-height: 1;
  letter-spacing: 2px;
}
.header-nav__list-item:not(:last-child) {
  border-right: 1px solid var(--clr-primary);
}
.header-nav__list-link {
  text-decoration: none;
  text-transform: uppercase;
  color: #fff;
  font-weight: inherit;
  margin: auto 20px;
  transition: all 0.2s ease-in-out;
}
.header-nav__list-link:hover {
  color: var(--clr-primary);
}

.header {
  width: 100%;
  z-index: 2000;
  position: sticky;
  top: 0;
  background-color: transparent;
  padding-top: 20px;
  padding-bottom: 20px;
  transition: all 0.2s ease-in-out;
}
@media only screen and (min-width: 36em) {
  .header {
    background: linear-gradient(360deg, rgba(35, 31, 32, 0) 0%, rgba(35, 31, 32, 0.304) 50%, rgba(35, 31, 32, 0.8) 100%);
  }
}
@media only screen and (min-width: 75em) {
  .header {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
@media only screen and (min-width: 120em) {
  .header {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header__logo-link {
  display: flex;
  align-items: center;
  height: 100%;
}
@media only screen and (min-width: 75em) {
  .header__logo-link {
    margin-right: 60px;
  }
}
@media only screen and (min-width: 90em) {
  .header__logo-link {
    margin-right: 130px;
  }
}
.header__logo {
  width: 75%;
}
@media only screen and (min-width: 24.375em) {
  .header__logo {
    width: 250px;
  }
}
.header.scrolled:not(.menu-open) {
  background: linear-gradient(to right, #fff calc(100% - 80px), var(--clr-900) 80px);
}
@media only screen and (min-width: 36em) {
  .header.scrolled:not(.menu-open) {
    background: linear-gradient(to right, #fff calc(100% - 170px), var(--clr-900) 170px);
  }
}
@media only screen and (min-width: 75em) {
  .header.scrolled:not(.menu-open) {
    background: linear-gradient(to right, #fff calc(100% - 200px), var(--clr-900) 200px);
  }
}
@media only screen and (min-width: 1925px) {
  .header.scrolled:not(.menu-open) {
    background: linear-gradient(to right, #fff);
  }
}
.header.scrolled:not(.menu-open) .header__logo {
  content: url(../img/icons/valholl-logo-black.svg);
}
.header.scrolled:not(.menu-open) .header-nav__list-link {
  color: var(--clr-900);
}
.header.scrolled:not(.menu-open) .header-nav__list-link:hover {
  color: var(--clr-primary);
}
.header.scrolled:not(.menu-open) .burger-btn__top,
.header.scrolled:not(.menu-open) .burger-btn__mid,
.header.scrolled:not(.menu-open) .burger-btn__bottom {
  background-color: var(--clr-primary-darker);
}
.header.scrolled:not(.menu-open) .burger-btn__title {
  color: var(--clr-primary);
}

.header.menu-open .header-nav__list-link {
  color: var(--clr-900);
  transition: all 0.3s ease-in-out;
}
.header.menu-open .header-nav__list-link:hover {
  color: var(--clr-100);
}
.header.menu-open .header-nav__list-item:not(:last-child) {
  border-right: 1px solid var(--clr-100);
}

.hero-v1 {
  --header-height: -80px;
  margin: var(--header-height) auto 0;
  position: relative;
}
@media only screen and (min-width: 75em) {
  .hero-v1 {
    --header-height: -100px;
  }
}
@media only screen and (min-width: 120em) {
  .hero-v1 {
    --header-height: -120px;
  }
}
.hero-v1__bg {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  height: 75vh;
  height: 75dvh;
}
@media only screen and (min-width: 24.375em) {
  .hero-v1__bg {
    height: 850px;
  }
}
@media only screen and (min-width: 48em) {
  .hero-v1__bg {
    height: 760px;
  }
}
.hero-v1__content-box {
  text-align: center;
  max-width: 1920px;
  margin: 0 auto;
}
.hero-v1__content-box h1 {
  margin: 0;
}
.hero-v1__logo {
  width: 100%;
  margin-bottom: 12px;
}
.hero-v1__socials-wrapper {
  display: none;
}
@media only screen and (min-width: 75em) {
  .hero-v1__socials-wrapper {
    display: block;
    position: absolute;
    right: 0;
    margin-right: 30px;
  }
}

.hero-v2 {
  --header-height: -80px;
  margin: var(--header-height) auto 0;
  position: relative;
}
@media only screen and (min-width: 75em) {
  .hero-v2 {
    --header-height: -100px;
  }
}
@media only screen and (min-width: 120em) {
  .hero-v2 {
    --header-height: -120px;
  }
}
.hero-v2__bg {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 425px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
@media only screen and (min-width: 75em) {
  .hero-v2__bg {
    height: 435px;
  }
}
.hero-v2__content-box {
  text-align: center;
  max-width: 1920px;
  margin: 0 auto;
  padding-top: 60px;
}
.hero-v2__content-box h1 {
  margin: 0;
}
.hero-v2__logo {
  width: 100%;
  margin-bottom: 12px;
}
.hero-v2__socials-wrapper {
  display: none;
}
@media only screen and (min-width: 75em) {
  .hero-v2__socials-wrapper {
    display: block;
    position: absolute;
    right: 0;
    margin-right: 30px;
  }
}

.houses__bg {
  position: relative;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.houses__heading {
  margin-bottom: 70px;
  margin-left: auto;
  margin-right: auto;
}
@media only screen and (min-width: 75em) {
  .houses__heading {
    margin-bottom: 80px;
  }
}
@media only screen and (min-width: 120em) {
  .houses__heading {
    margin-bottom: 100px;
  }
}
@media only screen and (min-width: 48em) {
  .houses__slider {
    margin-bottom: 30px;
  }
}
@media only screen and (min-width: 75em) {
  .houses__slider {
    max-height: 840px;
    margin-bottom: 0;
  }
}
@media only screen and (min-width: 90em) {
  .houses__slider {
    max-height: 940px;
  }
}
@media only screen and (min-width: 120em) {
  .houses__slider {
    max-height: 980px;
  }
}
.houses__slider-pagination {
  position: absolute !important;
  top: 50% !important;
  right: 40px !important;
}
.houses__slider-pagination .swiper-pagination-bullet {
  background: var(--clr-100);
}
.houses__slider-pagination .swiper-pagination-bullet-active {
  background: var(--clr-primary);
}
.houses__objects {
  margin-bottom: 40px;
  margin-left: auto;
  margin-right: auto;
}
@media only screen and (min-width: 75em) {
  .houses__objects {
    display: grid;
    grid-template-columns: repeat(70, 1fr);
    grid-template-rows: repeat(45, 1fr);
    gap: 2px;
    margin-bottom: 0;
  }
  .houses__objects .object-card:nth-child(1) {
    grid-column: 1/36;
    grid-row: 1/23;
  }
  .houses__objects .object-card:nth-child(2) {
    grid-column: 3/36;
    grid-row: 23/-1;
  }
  .houses__objects .object-card:nth-child(3) {
    grid-column: 36/-1;
    grid-row: 7/33;
  }
}
@media only screen and (min-width: 75em) and (min-width: 120em) {
  .houses__objects .object-card:nth-child(3) {
    grid-row: 7/35;
  }
}
@media only screen and (min-width: 75em) and (min-width: 75em) {
  .houses__objects .object-card:nth-child(3) .object-card__img {
    aspect-ratio: 1.15;
    max-height: none;
  }
}
.houses__text {
  margin-bottom: 70px;
}

.img-grid {
  padding-top: 20px;
  padding-bottom: 20px;
}
@media only screen and (min-width: 48em) {
  .img-grid {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
@media only screen and (min-width: 75em) {
  .img-grid {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
@media only screen and (min-width: 90em) {
  .img-grid {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
@media only screen and (min-width: 120em) {
  .img-grid {
    padding-top: 110px;
    padding-bottom: 110px;
  }
}
@media only screen and (min-width: 75em) {
  .img-grid__img-wrapper {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: repeat(3, 1fr);
  }
}
.img-grid__img-wrapper img {
  width: 100%;
  max-height: 235px;
  -o-object-fit: cover;
     object-fit: cover;
  margin-bottom: 20px;
}
@media only screen and (min-width: 36em) {
  .img-grid__img-wrapper img {
    max-height: none;
    aspect-ratio: 1.63;
  }
}
@media only screen and (min-width: 75em) {
  .img-grid__img-wrapper img {
    aspect-ratio: 1.5;
    margin-bottom: 0;
  }
}
@media only screen and (min-width: 75em) {
  .img-grid__img-wrapper img:first-child {
    grid-row: 1/4;
    grid-column: 1/4;
  }
}
@media only screen and (min-width: 75em) {
  .img-grid__img-wrapper img:nth-child(2) {
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    transform: scale(1.1);
    grid-row: 2/3;
    grid-column: 3/4;
    z-index: 2;
  }
}
@media only screen and (min-width: 75em) {
  .img-grid__img-wrapper img:last-child {
    grid-row: 2/-1;
    grid-column: 3/-1;
  }
}

.info {
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
@media only screen and (min-width: 90em) {
  .info__inner {
    display: grid;
    grid-template-columns: 44% 56%;
  }
}
@media only screen and (min-width: 75em) {
  .info__heading-wrapper {
    padding-right: 60px;
    margin-top: auto;
    margin-bottom: auto;
  }
}
@media only screen and (min-width: 90em) {
  .info__heading-wrapper {
    padding-right: 80px;
  }
}
@media only screen and (min-width: 120em) {
  .info__heading-wrapper {
    padding-right: 100px;
  }
}
.info__heading {
  margin-bottom: 30px;
}
.info__text {
  margin-bottom: 70px;
  text-align: center;
}
@media only screen and (min-width: 75em) {
  .info__text {
    text-align: left;
  }
}
.info__articles {
  margin: 40px auto;
}
@media only screen and (min-width: 62em) {
  .info__articles {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2px;
  }
}

.menu {
  --header-height: 80px;
  position: fixed;
  inset: 0;
  z-index: 1000;
  background-color: rgba(255, 202, 50, 0.8980392157);
  transition: all 0.6s ease-in-out;
  clip-path: polygon(0% 0%, 100% 0%, 100% 0, 0% 0%);
}
@media only screen and (min-width: 75em) {
  .menu {
    --header-height: 100px;
  }
}
@media only screen and (min-width: 120em) {
  .menu {
    --header-height: 120px;
  }
}
.menu__logo-wrapper {
  background-color: var(--clr-primary);
  padding: 20px;
}
@media only screen and (min-width: 75em) {
  .menu__logo-wrapper {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
@media only screen and (min-width: 120em) {
  .menu__logo-wrapper {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
.menu__logo {
  width: 75%;
}
@media only screen and (min-width: 24.375em) {
  .menu__logo {
    width: 250px;
  }
}
.menu__inner {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: calc(100vh - var(--header-height));
  height: calc(100dvh - var(--header-height));
  overflow-y: auto;
}
@media only screen and (min-width: 75em) {
  .menu__inner .call-section {
    display: none;
  }
}
.menu__nav {
  padding-top: 30px;
  padding-bottom: 30px;
  margin-top: auto;
  margin-bottom: auto;
}
@media only screen and (min-width: 75em) {
  .menu__nav {
    padding-bottom: 0;
  }
}
.menu__container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media only screen and (min-width: 48em) {
  .menu__container {
    flex-direction: row;
    justify-content: space-evenly;
  }
}
@media only screen and (min-width: 75em) {
  .menu__container {
    justify-content: space-around;
    align-items: center;
  }
}
.menu__container .call-section {
  display: none;
}
@media only screen and (min-width: 75em) {
  .menu__container .call-section {
    display: block;
    transition: all 0.4s ease-in-out;
    opacity: 0;
    visibility: hidden;
    transform: translateX(50px);
  }
}
.menu__nav-list {
  list-style: none;
  text-transform: uppercase;
  text-align: center;
  font-family: var(--font-primary);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.1rem;
}
@media only screen and (min-width: 36em) {
  .menu__nav-list {
    font-size: 24px;
  }
}
@media only screen and (min-width: 48em) {
  .menu__nav-list {
    font-size: 30px;
  }
}
@media only screen and (min-width: 90em) {
  .menu__nav-list {
    font-size: 36px;
  }
}
@media only screen and (min-width: 120em) {
  .menu__nav-list {
    font-size: 40px;
  }
}
.menu__nav-item {
  padding: 5px 0;
  margin-bottom: 20px;
  overflow: hidden;
}
@media only screen and (min-width: 75em) {
  .menu__nav-item {
    text-align: left;
  }
}
.menu__nav-link {
  display: block;
  position: relative;
  text-decoration: none;
  color: var(--clr-900);
  transition: all 0.4s ease-in-out;
  transform: translateY(40px);
  overflow: hidden;
}
.menu__nav-link::before {
  content: "";
  position: absolute;
  top: 0;
  left: -140px;
  width: 100px;
  height: 100%;
  background-image: linear-gradient(120deg, rgba(255, 255, 255, 0) 30%, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0) 70%);
  opacity: 0.3;
}
.menu__nav-link:hover::before {
  animation: shine-link 1.5s ease-out infinite;
}

.menu-open .menu {
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
}
.menu-open .menu .menu__nav-link {
  transform: translateY(0);
  transition-delay: 0.3s;
}
.menu-open .menu .menu__container .call-section {
  display: none;
}
@media only screen and (min-width: 75em) {
  .menu-open .menu .menu__container .call-section {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: translateX(0px);
    transition-delay: 0.3s;
  }
}

@keyframes shine-link {
  0% {
    left: -140px;
  }
  60% {
    left: 100%;
  }
  100% {
    left: 100%;
  }
}
.modal-v2__overlay {
  position: fixed;
  inset: 0;
  background: rgba(35, 31, 32, 0.4);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2100;
}
.modal-v2__container {
  background-color: #fff;
  box-shadow: var(--box-shadow);
  width: calc(100% - 75px);
  max-width: 960px;
  position: relative;
}
.modal-v2__main-area {
  max-height: 85vh;
  max-height: 85dvh;
  overflow-y: auto;
}
@media only screen and (min-width: 75em) {
  .modal-v2__main-area {
    display: flex;
  }
}
.modal-v2__img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  max-height: 290px;
}
@media only screen and (min-width: 48em) {
  .modal-v2__img {
    max-height: 350px;
  }
}
@media only screen and (min-width: 62em) {
  .modal-v2__img {
    max-height: 400px;
  }
}
@media only screen and (min-width: 75em) {
  .modal-v2__img {
    width: 35%;
    max-height: none;
  }
}
.modal-v2__content {
  padding-top: 30px;
  padding-bottom: 30px;
  padding-left: 20px;
  padding-right: 20px;
  margin-top: auto;
  margin-bottom: auto;
}
@media only screen and (min-width: 62em) {
  .modal-v2__content {
    padding-top: 60px;
    padding-bottom: 60px;
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media only screen and (min-width: 120em) {
  .modal-v2__content {
    padding-left: 40px;
    padding-right: 40px;
  }
}
.modal-v2__heading {
  line-height: 0.9;
  padding: 10px 0;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 30px;
}
.modal-v2__heading-top {
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 32px;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
}
@media only screen and (min-width: 75em) {
  .modal-v2__heading-top {
    font-size: 48px;
  }
}
.modal-v2__heading-top--clr-100 {
  color: var(--clr-100);
}
.modal-v2__heading-top--clr-900 {
  color: var(--clr-900);
}
.modal-v2__heading-top--me-40 {
  margin-right: 40px;
}
.modal-v2__heading-top--me-100 {
  margin-right: 105px;
}
.modal-v2__heading-bottom {
  display: flex;
  justify-content: end;
  font-family: var(--font-secondary);
  font-weight: 300;
  font-size: 28px;
  color: var(--clr-primary);
  margin-left: 60px;
}
@media only screen and (min-width: 75em) {
  .modal-v2__heading-bottom {
    font-size: 36px;
  }
}
.modal-v2__text {
  margin-bottom: 30px;
}
.modal-v2__close-btn {
  position: absolute;
  top: 0;
  right: 0;
  transform: translate(50%, -50%);
}
.modal-v2__text {
  margin-bottom: 33px;
}
.modal-v2 .btn .icon {
  margin-left: 15px;
}

/**************************\
  Animation Style
\**************************/
@keyframes mmfadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes mmfadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes mmslideIn {
  from {
    transform: translateY(15%);
  }
  to {
    transform: translateY(0);
  }
}
@keyframes mmslideOut {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-10%);
  }
}
.micromodal-slide {
  display: none;
}

.micromodal-slide.is-open {
  display: block;
}

.micromodal-slide[aria-hidden=false] .modal-v2__overlay {
  animation: mmfadeIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide[aria-hidden=false] .modal-v2__container {
  animation: mmslideIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide[aria-hidden=true] .modal-v2__overlay {
  animation: mmfadeOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide[aria-hidden=true] .modal-v2__container {
  animation: mmslideOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide .modal-v2__container,
.micromodal-slide .modal-v2__overlay {
  will-change: transform;
}

.modal__overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(3, 3, 3, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2100;
}
.modal__container {
  background-color: #fff;
  box-shadow: var(--box-shadow);
  width: calc(100% - 75px);
  max-width: 960px;
  position: relative;
}
.modal__main-area {
  max-height: 85vh;
  max-height: 85dvh;
  overflow-y: auto;
  padding-top: 30px;
  padding-bottom: 25px;
  padding-left: 20px;
  padding-right: 20px;
}
@media only screen and (min-width: 62em) {
  .modal__main-area {
    padding-top: 40px;
    padding-bottom: 35px;
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media only screen and (min-width: 120em) {
  .modal__main-area {
    padding-top: 70px;
    padding-bottom: 45px;
    padding-left: 40px;
    padding-right: 40px;
  }
}
.modal__heading {
  line-height: 0.9;
  padding: 10px 0;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 45px;
}
.modal__heading-top {
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 32px;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
}
@media only screen and (min-width: 75em) {
  .modal__heading-top {
    font-size: 48px;
  }
}
.modal__heading-top--clr-100 {
  color: var(--clr-100);
}
.modal__heading-top--clr-900 {
  color: var(--clr-900);
}
.modal__heading-top--me-40 {
  margin-right: 40px;
}
.modal__heading-top--me-100 {
  margin-right: 105px;
}
.modal__heading-bottom {
  display: flex;
  justify-content: end;
  font-family: var(--font-secondary);
  font-weight: 300;
  font-size: 28px;
  color: var(--clr-primary);
  margin-left: 60px;
}
@media only screen and (min-width: 75em) {
  .modal__heading-bottom {
    font-size: 36px;
  }
}
.modal__close-btn {
  position: absolute;
  top: 0;
  right: 0;
  transform: translate(50%, -50%);
}
.modal__text {
  margin-bottom: 33px;
}

/**************************\
  Demo Animation Style
\**************************/
@keyframes mmfadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes mmfadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes mmslideIn {
  from {
    transform: translateY(15%);
  }
  to {
    transform: translateY(0);
  }
}
@keyframes mmslideOut {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-10%);
  }
}
.micromodal-slide {
  display: none;
}

.micromodal-slide.is-open {
  display: block;
}

.micromodal-slide[aria-hidden=false] .modal__overlay {
  animation: mmfadeIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide[aria-hidden=false] .modal__container {
  animation: mmslideIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide[aria-hidden=true] .modal__overlay {
  animation: mmfadeOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide[aria-hidden=true] .modal__container {
  animation: mmslideOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide .modal__container,
.micromodal-slide .modal__overlay {
  will-change: transform;
}

.new-buildings {
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.new-buildings__heading {
  margin-bottom: 70px;
  margin-left: auto;
  margin-right: auto;
}
@media only screen and (min-width: 75em) {
  .new-buildings__heading {
    margin-bottom: 80px;
  }
}
@media only screen and (min-width: 120em) {
  .new-buildings__heading {
    margin-bottom: 100px;
  }
}
.new-buildings__realty {
  margin-bottom: 40px;
  margin-left: auto;
  margin-top: auto;
}
@media only screen and (min-width: 75em) {
  .new-buildings__realty {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2px;
  }
  .new-buildings__realty > :nth-child(2) {
    margin-top: 40px;
  }
  .new-buildings__realty > :nth-child(1) {
    margin-bottom: 40px;
  }
}
.new-buildings__realty-column {
  overflow: hidden;
}
.new-buildings__realty-column .object-card {
  margin-bottom: 4px;
}

.new-property {
  background-color: var(--clr-100);
}
.new-property__objects-wrapper .new-property__objects:not(:last-child) {
  margin-bottom: 180px;
}
.new-property__objects {
  margin-bottom: 100px;
}
@media only screen and (min-width: 75em) {
  .new-property__objects {
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (min-width: 75em) {
  .new-property__objects {
    -moz-column-gap: 2px;
         column-gap: 2px;
    row-gap: 60px;
  }
}
@media only screen and (min-width: 90em) {
  .new-property__objects {
    row-gap: 80px;
  }
}
@media only screen and (min-width: 120em) {
  .new-property__objects {
    row-gap: 110px;
  }
}

.object-card {
  position: relative;
  overflow: hidden;
  margin-bottom: 20px;
}
@media only screen and (min-width: 75em) {
  .object-card {
    margin-bottom: 0;
  }
}
.object-card--regular {
  border-bottom: 1px solid var(--clr-900-10);
}
@media only screen and (min-width: 75em) {
  .object-card--regular {
    border-bottom: none;
  }
}
.object-card--invert {
  border-bottom: 1px solid var(--clr-100-20);
}
@media only screen and (min-width: 75em) {
  .object-card--invert {
    border-bottom: none;
  }
}
.object-card__img-box {
  overflow: hidden;
  transform: scale(1);
  transition: 0.5s all ease-in-out;
}
@media only screen and (min-width: 75em) {
  .object-card__img-box {
    filter: grayscale(100%);
  }
}
@media only screen and (min-width: 75em) {
  .object-card__img-box:hover {
    filter: grayscale(0%);
    transform: scale(1.2);
  }
  .object-card__img-box:hover .swiper .circle-btn--prev {
    transform: translate(50px, -50%);
  }
  .object-card__img-box:hover .swiper .circle-btn--next {
    transform: translate(-50px, -50%);
  }
  .object-card__img-box:hover .circle-btn--big {
    opacity: 1;
    visibility: visible;
  }
  .object-card__img-box:hover .object-card__address {
    opacity: 1;
    visibility: visible;
  }
}
.object-card .circle-btn--big {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  visibility: hidden;
  z-index: 10;
  transition: 0.5s all ease-in-out;
}
.object-card__img {
  -o-object-fit: fill;
     object-fit: fill;
  width: 100%;
  aspect-ratio: 1.5;
  max-height: 465px;
  transition: all 0.5s ease-in-out;
}
.object-card__description {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 15px;
  padding-bottom: 10px;
  padding-left: 0;
  padding-right: 0;
}
@media only screen and (min-width: 75em) {
  .object-card__description {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
    background: linear-gradient(rgba(35, 31, 32, 0) 0%, #231f20 100%);
    padding-top: 5px;
    padding-bottom: 5px;
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media only screen and (min-width: 90em) {
  .object-card__description {
    padding-top: 10px;
    padding-bottom: 10px;
  }
}
@media only screen and (min-width: 120em) {
  .object-card__description {
    padding-top: 20px;
    padding-bottom: 10px;
  }
}
.object-card__properties {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  padding-top: 20px;
  padding-bottom: 20px;
  padding-left: 0;
  padding-right: 0;
}
@media only screen and (min-width: 48em) {
  .object-card__properties {
    justify-content: space-around;
  }
}
@media only screen and (min-width: 75em) {
  .object-card__properties {
    justify-content: start;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
    background: linear-gradient(rgba(35, 31, 32, 0) 0%, #231f20 100%);
    transition: 0.5s all ease-in-out;
    padding-top: 20px;
    padding-bottom: 20px;
    padding-left: 20px;
    padding-right: 20px;
  }
}
.object-card__properties .icon {
  color: var(--clr-primary);
  font-size: 15px;
}
.object-card__properties-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 5px;
}
.object-card__properties-title {
  color: var(--clr-100);
  font-size: 15px;
  line-height: 1;
  margin-top: auto;
}
.object-card__time-box {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  color: rgb(248, 251, 252);
  font-size: 15px;
  line-height: 1.2;
  text-align: center;
  background-color: rgba(35, 31, 32, 0.8980392157);
  padding: 9px 10px;
  z-index: 2;
}
@media only screen and (min-width: 75em) {
  .object-card__time-box {
    right: auto;
    margin: 10px;
  }
}
.object-card__time-box img {
  width: 16px;
  height: 16px;
}
@media only screen and (min-width: 120em) {
  .object-card__time-box img {
    width: 20px;
    height: 20px;
  }
}
.object-card__time-box-text {
  margin-left: 10px;
}
.object-card__address {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 1px;
  color: var(--clr-100);
  text-align: center;
  z-index: 1;
  padding: 4px;
  background: linear-gradient(rgba(35, 31, 32, 0) 0%, #231f20 100%);
}
@media only screen and (min-width: 75em) {
  .object-card__address {
    font-size: 21px;
    background: none;
    bottom: 30%;
    transition: 0.5s all ease-in-out;
    transition-delay: 0.1s;
    opacity: 0;
    visibility: hidden;
  }
}
.object-card__city {
  font-size: 18px;
  font-weight: 500;
}
.object-card__city--100 {
  color: var(--clr-100);
}
.object-card__city--900 {
  color: var(--clr-900);
}
@media only screen and (min-width: 75em) {
  .object-card__city--900 {
    color: var(--clr-100);
  }
}
@media only screen and (min-width: 36em) {
  .object-card__city {
    font-size: 19px;
  }
}
@media only screen and (min-width: 62em) {
  .object-card__city {
    font-size: 20px;
  }
}
@media only screen and (min-width: 120em) {
  .object-card__city {
    font-size: 21px;
  }
}
.object-card__price {
  font-size: 22px;
  font-weight: 600;
  color: var(--clr-primary);
}
@media only screen and (min-width: 36em) {
  .object-card__price {
    font-size: 24px;
  }
}
@media only screen and (min-width: 48em) {
  .object-card__price {
    font-size: 26px;
  }
}
@media only screen and (min-width: 62em) {
  .object-card__price {
    font-size: 28px;
  }
}
@media only screen and (min-width: 75em) {
  .object-card__price {
    font-size: 26px;
  }
}
@media only screen and (min-width: 120em) {
  .object-card__price {
    font-size: 30px;
  }
}
.object-card__label {
  display: flex;
  align-items: center;
  color: var(--clr-primary);
  position: absolute;
  left: 10px;
  top: 10px;
}
@media only screen and (min-width: 75em) {
  .object-card__label {
    top: auto;
    left: 10px;
    bottom: 50px;
  }
}

.our-contacts__bg {
  width: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.our-contacts__heading {
  margin: 0 auto 60px;
}
.our-contacts__contacts-list {
  list-style: none;
}
@media only screen and (min-width: 75em) {
  .our-contacts__contacts-list {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    max-width: 1220px;
    margin: 0 auto;
    padding-left: 120px;
    padding-right: 120px;
  }
}
@media only screen and (min-width: 120em) {
  .our-contacts__contacts-list {
    padding-left: 0;
    padding-right: 0;
  }
}
.our-contacts__contacts-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  max-width: 330px;
  margin: 0 auto;
}
.our-contacts__contacts-item:not(:last-child) {
  margin-bottom: 35px;
}
@media only screen and (min-width: 36em) {
  .our-contacts__contacts-item:not(:last-child) {
    margin-bottom: 40px;
  }
}
@media only screen and (min-width: 48em) {
  .our-contacts__contacts-item:not(:last-child) {
    margin-bottom: 50px;
  }
}
@media only screen and (min-width: 75em) {
  .our-contacts__contacts-item:not(:last-child) {
    margin-bottom: 0;
  }
}
@media only screen and (min-width: 36em) {
  .our-contacts__contacts-item {
    max-width: 350px;
  }
}
@media only screen and (min-width: 75em) {
  .our-contacts__contacts-item {
    min-width: 320px;
  }
}
.our-contacts__card-circle {
  width: 64px;
  height: 64px;
  min-width: 64px;
  border-radius: 50%;
  background-color: var(--clr-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.our-contacts__card-circle .icon {
  font-size: 24px;
}
.our-contacts__contacts-link {
  font-family: var(--font-primary);
  font-weight: 400;
  font-size: 22px;
  line-height: 1.4;
  letter-spacing: 0.1rem;
  text-wrap: balance;
  text-decoration: none;
  color: var(--clr-100);
}
@media only screen and (min-width: 48em) {
  .our-contacts__contacts-link {
    font-size: 24px;
  }
}
@media only screen and (min-width: 90em) {
  .our-contacts__contacts-link {
    font-weight: 600;
  }
}

.our-location {
  margin: 0 auto;
}
@media only screen and (min-width: 90em) {
  .our-location {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    max-width: 1440px;
    padding-left: var(--container-padding-xs);
    padding-right: 0;
  }
  .our-location > * {
    width: 50% !important;
  }
}
@media only screen and (min-width: 120em) {
  .our-location {
    gap: 80px;
    max-width: 1920px;
    padding-left: 260px;
  }
}
.our-location__content {
  max-width: 576px;
  padding-left: var(--container-padding-xs);
  padding-right: var(--container-padding-xs);
  margin: 0 auto;
}
@media only screen and (min-width: 48em) {
  .our-location__content {
    padding-left: var(--container-padding-md);
    padding-right: var(--container-padding-md);
  }
}
@media only screen and (min-width: 62em) {
  .our-location__content {
    max-width: 768px;
    padding-left: var(--container-padding-lg);
    padding-right: var(--container-padding-lg);
  }
}
@media only screen and (min-width: 75em) {
  .our-location__content {
    padding-left: var(--container-padding-xl);
    padding-right: var(--container-padding-xl);
  }
}
@media only screen and (min-width: 90em) {
  .our-location__content {
    max-width: none;
    padding-right: 0;
  }
}
@media only screen and (min-width: 120em) {
  .our-location__content {
    max-width: 960px;
    padding: 0;
    margin-top: auto;
    margin-bottom: auto;
  }
}
.our-location__heading {
  margin-bottom: 30px;
}
.our-location__text {
  max-width: 540px;
  margin-bottom: 70px;
}
.our-location__map {
  width: 100%;
  margin: auto;
  height: 550px;
}
@media only screen and (min-width: 120em) {
  .our-location__map {
    min-width: 960px;
  }
}

@media only screen and (min-width: 75em) {
  .map-wrapper {
    margin-bottom: 60px;
  }
}
@media only screen and (min-width: 90em) {
  .map-wrapper {
    margin-bottom: 80px;
  }
}
@media only screen and (min-width: 120em) {
  .map-wrapper {
    margin-bottom: 110px;
  }
}

.owner-card {
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid var(--clr-900-10);
}
@media only screen and (min-width: 90em) {
  .owner-card {
    border-bottom: none;
  }
}
.owner-card__img-box {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.owner-card__img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  aspect-ratio: 0.89;
  transform: scale(1);
  transition: 0.2s ease-in-out;
}
.owner-card__img-box:hover .owner-card__img {
  transform: scale(1.01);
}
.owner-card__header {
  padding-top: 25px;
  padding-bottom: 25px;
  padding-left: 20px;
  padding-right: 20px;
  margin-bottom: auto;
}
@media only screen and (min-width: 62em) {
  .owner-card__header {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
@media only screen and (min-width: 90em) {
  .owner-card__header {
    padding-top: 35px;
    padding-bottom: 35px;
  }
}
.owner-card__title {
  display: block;
  font-family: var(--font-primary);
  font-size: 24px;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: 0.1rem;
  color: var(--clr-neutral-900);
  text-decoration: none;
  transition: color 0.2s ease-in-out;
  margin-bottom: 5px;
}
.owner-card__title:hover {
  color: var(--clr-primary-darker);
}
@media only screen and (min-width: 75em) {
  .owner-card__title {
    font-size: 30px;
  }
}
.owner-card__subtitle {
  font-size: 15px;
  font-weight: 350;
  line-height: 1.5;
}
@media only screen and (min-width: 75em) {
  .owner-card__subtitle {
    font-size: 21px;
  }
}
.owner-card__label {
  position: absolute;
  bottom: 0;
  right: 0;
  color: #fff;
}

.owners__bg {
  width: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.owners__heading {
  margin-bottom: 60px;
  margin-left: auto;
  margin-right: auto;
}
@media only screen and (min-width: 62em) {
  .owners__heading {
    margin-left: 0;
    margin-right: 0;
  }
}
@media only screen and (min-width: 90em) {
  .owners__heading {
    margin-bottom: 110px;
  }
}
.owners__grid {
  display: grid;
  gap: 20px;
  justify-content: center;
  grid-template-columns: 1fr;
}
@media only screen and (min-width: 24.375em) {
  .owners__grid {
    grid-template-columns: 350px;
  }
}
@media only screen and (min-width: 48em) {
  .owners__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
}

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 14px;
  line-height: 1;
  letter-spacing: 0.1rem;
  text-align: center;
}
.pagination__list {
  display: flex;
  align-items: center;
  justify-content: center;
  list-style: none;
}
.pagination__list-item {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 36px;
  min-width: 36px;
  background-color: #f2f2f2;
  border-radius: 50%;
  text-decoration: none;
  color: var(--clr-900);
  text-align: center;
  transition: all 0.2s ease-in-out;
  padding-top: 10px;
  padding-right: 10px;
  padding-bottom: 10px;
  padding-left: 10px;
  margin: 0 5px;
}
.pagination__list-item:hover {
  background-color: var(--clr-primary);
}
.pagination__list-item--dots {
  margin: 0;
  padding: 10px 16px;
  background-color: transparent;
  border-radius: var(--border-radius);
  text-decoration: none;
  color: var(--clr-900);
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.pagination__list-item--dots:hover {
  background-color: transparent;
}
.pagination__list-item--hidden {
  display: none;
}
@media only screen and (min-width: 36em) {
  .pagination__list-item--hidden {
    display: block;
  }
}
.pagination__list-item.active {
  border: none;
  background-color: var(--clr-primary);
}
.pagination__page {
  text-decoration: none;
  color: var(--clr-900);
}
.pagination .arrow-btn {
  margin-top: 4px;
}
.pagination .arrow-btn--prev {
  left: -20px;
}
.pagination .arrow-btn--next {
  right: -20px;
}

.pictures-gallery {
  margin-top: 40px;
  margin-bottom: 40px;
}
.pictures-gallery img {
  width: 100%;
  margin: 0 auto 30px;
}
@media only screen and (min-width: 75em) {
  .pictures-gallery img {
    max-width: 900px;
  }
}
@media only screen and (min-width: 90em) {
  .pictures-gallery img {
    max-width: 1200px;
  }
}

.pictures-gallery-heading {
  margin: 40px auto 40px;
}
@media only screen and (min-width: 62em) {
  .pictures-gallery-heading {
    margin: 60px auto 60px;
  }
}
@media only screen and (min-width: 75em) {
  .pictures-gallery-heading {
    margin: 80px auto 80px;
  }
}
@media only screen and (min-width: 90em) {
  .pictures-gallery-heading {
    margin: 100px auto 100px;
  }
}
@media only screen and (min-width: 120em) {
  .pictures-gallery-heading {
    margin: 110px auto 110px;
  }
}

.icon-arrow-right.til {
  transform: rotate(180deg);
  margin-right: 10px;
}

.property-about {
  --desc-margin-bottom-opened: 45px;
  --desc-margin-bottom-closed: 45px;
  margin-bottom: 40px;
}
@media only screen and (min-width: 48em) {
  .property-about {
    margin-bottom: var(--margin-md);
  }
}
@media only screen and (min-width: 75em) {
  .property-about {
    margin-bottom: var(--margin-xl);
  }
}
@media only screen and (min-width: 90em) {
  .property-about {
    margin-bottom: var(--margin-xxl);
  }
}
@media only screen and (min-width: 75em) {
  .property-about__inner {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 40px;
    margin-bottom: var(--margin-xl);
  }
}
@media only screen and (min-width: 90em) {
  .property-about__inner {
    margin-bottom: var(--margin-xxl);
  }
}
.property-about__description {
  background-color: #fff;
  border-bottom: 2px solid rgba(35, 31, 32, 0.1019607843);
  transition: all 0.3s linear;
  padding-top: 40px;
  padding-bottom: 40px;
}
@media only screen and (min-width: 75em) {
  .property-about__description {
    width: 75%;
    border-bottom: none;
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media only screen and (min-width: 75em) {
  .property-about__description {
    max-width: 920px;
  }
}
.property-about__description .text-btn.is-open .icon {
  transform: rotate(180deg);
}
.property-about__description-heading {
  margin-bottom: 25px;
}
@media only screen and (min-width: 90em) {
  .property-about__description-heading {
    margin-bottom: 32px;
  }
}
.property-about__title {
  font-size: 22px;
  font-weight: 600;
  line-height: 1.55;
  text-transform: uppercase;
}
.property-about__description-text {
  transition: height 0.3s linear;
  overflow: hidden;
  position: relative;
}
.property-about__description-text p:not(:last-child) {
  margin-bottom: 25px;
}
.property-about__description-text::after {
  content: "";
  height: 256px;
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #fff 100%);
  transition: all 0.3s linear;
}
.property-about__description-text.is-open {
  margin-bottom: 20px;
}
.property-about__description-text.is-open::after {
  visibility: hidden;
  opacity: 0;
}
.property-about__description-text p {
  font-size: 17px;
  margin-bottom: 30px;
}
.property-about__description-text span,
.property-about__description-text b {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.4;
}
.property-about__description-text span {
  margin-bottom: 4px;
}
.property-about__description-text b,
.property-about__description-text strong {
  color: var(--clr-900);
}
.property-about__description-text ul,
.property-about__description-text ol {
  color: inherit;
  margin-bottom: 20px;
  list-style: none;
}
.property-about__description-text ul li,
.property-about__description-text ol li {
  list-style: none;
}
.property-about__description-text a {
  color: var(--clr-primary-darker);
  text-decoration: underline;
  cursor: pointer;
  transition: all 0.1s ease-in-out;
}
.property-about__description-text a:hover {
  color: var(--clr-primary);
}
@media only screen and (min-width: 75em) {
  .property-about__description-text {
    font-size: 17px;
  }
}
.property-about__seller {
  max-width: 353px;
  margin-right: auto;
  margin-left: auto;
}
@media only screen and (min-width: 75em) {
  .property-about__seller {
    padding-left: 20px;
  }
}
@media only screen and (min-width: 90em) {
  .property-about__seller {
    max-width: 435px;
    margin-right: 0;
    margin-left: 0;
    padding-left: 30px;
  }
}

.property-actions {
  margin-top: 40px;
}
@media only screen and (min-width: 62em) {
  .property-actions {
    display: flex;
    align-items: start;
  }
}
@media only screen and (min-width: 75em) {
  .property-actions {
    display: block;
    border-left: 1px solid rgba(35, 31, 32, 0.1019607843);
  }
}
@media only screen and (min-width: 120em) {
  .property-actions {
    min-width: 435px;
  }
}
.property-actions__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 40px;
}
@media only screen and (min-width: 75em) {
  .property-actions__inner {
    border-bottom: 1px solid rgba(35, 31, 32, 0.1019607843);
    margin-bottom: 20px;
    padding-left: 20px;
    padding-bottom: 20px;
  }
}
@media only screen and (min-width: 90em) {
  .property-actions__inner {
    padding-left: 30px;
    padding-bottom: 30px;
  }
}
.property-actions__btn {
  display: flex;
  align-items: center;
  min-width: 350px;
  max-width: 400px;
}
.property-actions__btn .icon {
  margin-right: 15px;
  font-size: 18px;
}
.property-actions__btn .icon-binoculars {
  font-weight: 600;
}

.property-characteristics__inner {
  background-color: rgba(35, 31, 32, 0.0509803922);
  padding: 20px;
}
.property-characteristics__list {
  display: flex;
  align-items: center;
  justify-content: space-between;
  row-gap: 20px;
  flex-wrap: wrap;
  list-style: none;
}
.property-characteristics__item {
  flex-grow: 1;
  min-width: 150px;
  width: 50%;
  display: flex;
  align-items: center;
  gap: 10px;
}
@media only screen and (min-width: 75em) {
  .property-characteristics__item {
    width: auto;
  }
}
.property-characteristics__item .icon {
  color: var(--clr-primary);
  font-size: 17px;
  padding-top: 1px;
  padding-left: 1px;
}
.property-characteristics__card-circle {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 50%;
  background-color: var(--clr-900);
  display: flex;
  align-items: center;
  justify-content: center;
}
.property-characteristics__title {
  font-family: var(--font-primary);
  font-weight: 600;
  color: var(--clr-900);
  font-size: 15px;
  line-height: 1;
  letter-spacing: 0.1rem;
  text-transform: uppercase;
}

.property-details {
  margin-bottom: 40px;
}
@media only screen and (min-width: 75em) {
  .property-details {
    margin-bottom: 50px;
  }
}
@media only screen and (min-width: 90em) {
  .property-details {
    margin-bottom: 60px;
  }
}
@media only screen and (min-width: 120em) {
  .property-details {
    margin-bottom: 110px;
  }
}
.property-details__heading {
  text-wrap: balance;
}

.property-features {
  margin-top: 35px;
  margin-bottom: 30px;
}
@media only screen and (min-width: 62em) {
  .property-features {
    margin-top: 45px;
    margin-bottom: 35px;
  }
}
@media only screen and (min-width: 90em) {
  .property-features {
    margin-top: 50px;
    margin-bottom: 40px;
  }
}
@media only screen and (min-width: 120em) {
  .property-features {
    margin-top: 70px;
    margin-bottom: 45px;
  }
}
.property-features__inner {
  display: flex;
  flex-direction: column;
  background-color: #fff;
}
@media only screen and (min-width: 62em) {
  .property-features__inner {
    align-items: flex-start;
  }
}
.property-features__inner .decor-line {
  position: relative;
  margin-bottom: 15px;
}
@media only screen and (min-width: 62em) {
  .property-features__inner .decor-line {
    flex-grow: 1;
    margin-bottom: 0;
  }
}
.property-features__inner .decor-line hr {
  height: 1px;
  border-width: 0;
  color: rgba(35, 31, 32, 0.1019607843);
  background-color: rgba(35, 31, 32, 0.1019607843);
  width: 100%;
}
@media only screen and (min-width: 62em) {
  .property-features__inner .decor-line hr {
    position: absolute;
    top: 22px;
    left: 0;
    width: calc(100% + 40px);
    max-width: 610px;
    transform: translateX(-40px);
  }
}
@media only screen and (min-width: 75em) {
  .property-features__inner .decor-line hr {
    top: 30px;
  }
}
@media only screen and (min-width: 62em) {
  .property-features__inner {
    flex-direction: row;
    justify-content: space-between;
    gap: 10px;
  }
}
@media only screen and (min-width: 75em) {
  .property-features__inner {
    gap: 20px;
  }
}
.property-features__item {
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 10px;
}
.property-features__item .section-heading__top {
  font-size: 32px;
}
@media only screen and (min-width: 75em) {
  .property-features__item .section-heading__top {
    font-size: 48px;
  }
}
.property-features__item .section-heading__bottom {
  font-size: 25px;
}
@media only screen and (min-width: 75em) {
  .property-features__item .section-heading__bottom {
    font-size: 36px;
  }
}
.property-features__price {
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 32px;
  line-height: 0.9;
  letter-spacing: 0.1rem;
  text-transform: uppercase;
  padding: 10px 0;
}
@media only screen and (min-width: 75em) {
  .property-features__price {
    font-size: 48px;
  }
}

.property-photos {
  transform: translateY(-300px);
  margin-bottom: -300px;
  padding: 2px;
  margin-left: auto;
  margin-right: auto;
}
@media only screen and (min-width: 75em) {
  .property-photos {
    display: grid;
    grid-template-columns: 5fr 1fr;
    grid-template-rows: 1fr;
    gap: 2px;
    max-height: 550px;
  }
}
@media only screen and (min-width: 90em) {
  .property-photos {
    transform: translateY(-230px);
    margin-bottom: -230px;
    max-height: 660px;
  }
}
@media only screen and (min-width: 120em) {
  .property-photos {
    max-width: 1400px;
    max-height: 770px;
  }
}
.property-photos .swiper-slide {
  height: auto;
  overflow: hidden;
}
.property-photos__main-photo {
  margin-bottom: 2px;
  width: 100%;
}
@media only screen and (min-width: 75em) {
  .property-photos__main-photo {
    margin-bottom: 0;
  }
}
.property-photos__main-photo .circle-btn--prev {
  top: 50%;
  transform: translateY(-50%);
  z-index: 1000;
}
.property-photos__main-photo .circle-btn--next {
  top: 50%;
  transform: translateY(-50%);
  z-index: 1000;
}
.property-photos__main-photo .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: fill;
     object-fit: fill;
}
.property-photos__photos-mini {
  width: 100%;
}
.property-photos__photos-mini .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  cursor: pointer;
}
.property-photos__photos-mini .swiper-slide-thumb-active {
  border: 1px solid #ffca32;
}
.property-photos__photos-mini .swiper-slide:nth-child(3), .property-photos__photos-mini .swiper-slide:nth-child(4) {
  display: none;
}
@media only screen and (min-width: 75em) {
  .property-photos__photos-mini .swiper-slide:nth-child(3) {
    display: block;
  }
}
@media only screen and (min-width: 90em) {
  .property-photos__photos-mini .swiper-slide:nth-child(4) {
    display: block;
  }
}
.property-photos__btn {
  display: flex;
  flex-direction: column;
  padding: 5px;
}
.property-photos__btn .icon {
  margin-bottom: 10px;
  font-size: 14px;
}
@media only screen and (min-width: 75em) {
  .property-photos__btn .icon {
    font-size: 20px;
    margin-bottom: 15px;
  }
}
@media only screen and (min-width: 120em) {
  .property-photos__btn .icon {
    font-size: 24px;
    margin-bottom: 20px;
  }
}

.proprietors-card {
  max-width: 353px;
  margin: 0 auto;
}
@media only screen and (min-width: 36em) {
  .proprietors-card {
    max-width: 576px;
  }
}
@media only screen and (min-width: 75em) {
  .proprietors-card {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    max-width: none;
  }
}
.proprietors-card__content {
  background-color: var(--clr-900);
  padding: 25px 20px;
}
@media only screen and (min-width: 75em) {
  .proprietors-card__content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-top: 40px;
  }
}
.proprietors-card__img {
  width: 100%;
  max-width: 353px;
  max-height: 353px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media only screen and (min-width: 36em) {
  .proprietors-card__img {
    max-width: 576px;
    max-height: 576px;
  }
}
@media only screen and (min-width: 48em) {
  .proprietors-card__img {
    max-width: none;
    max-height: none;
  }
}
@media only screen and (min-width: 75em) {
  .proprietors-card__img {
    max-height: 440px;
    grid-column: 1/3;
    -o-object-position: left top;
       object-position: left top;
    margin-bottom: 40px;
  }
}
.proprietors-card__title {
  display: block;
  font-family: var(--font-primary);
  font-size: 24px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.1rem;
  color: var(--clr-100);
  text-decoration: none;
  transition: color 0.2s ease-in-out;
  margin-bottom: 23px;
}
.proprietors-card__title:hover {
  color: var(--clr-primary);
}
.proprietors-card__text-wrapper {
  max-height: 220px;
  overflow: hidden;
}
.proprietors-card__text {
  color: var(--clr-100-75);
  margin-bottom: 30px;
}
.proprietors-card__bottom {
  display: flex;
  align-items: start;
  justify-content: space-between;
  margin-top: 30px;
}
.proprietors-card__logo {
  width: 80px;
  height: 30px;
}
@media only screen and (min-width: 75em) {
  .proprietors-card__logo {
    width: 110px;
    height: 40px;
  }
}
@media only screen and (min-width: 120em) {
  .proprietors-card__logo {
    width: 135px;
    height: 50px;
    margin-top: 30px;
  }
}
.proprietors-card .text-btn {
  margin-top: -6px;
}

.proprietors {
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.proprietors__heading {
  margin-bottom: 70px;
  margin-left: auto;
  margin-right: auto;
}
@media only screen and (min-width: 75em) {
  .proprietors__heading {
    margin-bottom: 80px;
  }
}
@media only screen and (min-width: 120em) {
  .proprietors__heading {
    margin-bottom: 100px;
  }
}
.proprietors__content {
  margin-bottom: 40px;
}
@media only screen and (min-width: 75em) {
  .proprietors__content {
    margin-bottom: 0;
  }
}

.range-popup {
  visibility: hidden;
  opacity: 0;
  display: flex;
  width: 90%;
  gap: 20px;
  background: var(--clr-primary);
  transition: all 0.2s ease-in-out;
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 10px);
  z-index: 10;
  margin-left: auto;
  margin-right: auto;
  padding: 10px;
}
@media only screen and (min-width: 90em) {
  .range-popup {
    padding: 20px;
  }
}
.range-popup.show {
  visibility: visible;
  opacity: 1;
}
.range-popup__select-wrapper {
  display: flex;
  flex: 1 1;
  border-bottom: 2px solid var(--clr-900);
}
@media only screen and (max-width: 390px) {
  .range-popup {
    padding: 10px;
  }
}
@media only screen and (min-width: 36em) {
  .range-popup {
    max-width: 374px;
    padding: 15px;
  }
}
@media only screen and (min-width: 48em) {
  .range-popup {
    padding: 20px;
  }
}
@media only screen and (min-width: 75em) {
  .range-popup {
    min-width: 350px;
    width: auto;
  }
}
@media only screen and (min-width: 90em) {
  .range-popup {
    min-width: 400px;
  }
}
.range-popup__select {
  width: 100%;
  background: var(--clr-primary);
  color: var(--clr-900);
  font-family: var(--font-secondary);
  font-size: 16px;
  font-weight: 300;
  border: none;
  height: 36px;
  line-height: 50px;
}
.range-popup__select .nice-select-dropdown {
  width: 100%;
  color: var(--clr-900);
  background-color: var(--clr-primary);
  border-radius: 0 !important;
  top: calc(100% + 5px);
}
.range-popup__select .nice-select-dropdown .list {
  border-radius: 0 !important;
}
.range-popup__select:after {
  top: 25px;
  border-bottom-color: var(--clr-900);
  border-right-color: var(--clr-900);
}

.nice-select .option.selected.focus {
  color: var(--clr-900) !important;
  background-color: var(--clr-primary) !important;
}

.nice-select .option:hover,
.nice-select .option.selected.focus:hover {
  color: var(--clr-primary) !important;
  background-color: var(--clr-900) !important;
}

.realty-filter__inner {
  transform: translateY(-280px);
  margin-bottom: -280px;
  background: var(--clr-900);
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 60px;
  padding-bottom: 30px;
  padding-left: 20px;
  padding-right: 20px;
}
@media only screen and (min-width: 75em) {
  .realty-filter__inner {
    transform: translateY(-230px);
    margin-bottom: -230px;
    padding-top: 95px;
    padding-bottom: 100px;
    padding-left: 30px;
    padding-right: 30px;
  }
}
.realty-filter__bg {
  width: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.realty-filter__heading {
  padding-right: 20px;
  padding-left: 20px;
  margin-bottom: 60px;
  margin-left: auto;
  margin-right: auto;
}
@media only screen and (min-width: 75em) {
  .realty-filter__heading {
    margin-bottom: 52px;
  }
}
@media only screen and (min-width: 120em) {
  .realty-filter__heading {
    margin-bottom: 90px;
  }
}
@media only screen and (min-width: 120em) {
  .realty-filter__heading .section-heading__top {
    min-width: 305px;
  }
}
.realty-filter__btn {
  padding: 0;
}
.realty-filter__btn .icon {
  margin-right: 15px;
  font-size: 18px;
}

.realty {
  background-color: var(--clr-100);
}
.realty__bg {
  width: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.realty__inner {
  margin: 0 auto 40px;
}
@media only screen and (min-width: 75em) {
  .realty__inner {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 5px;
  }
}
@media only screen and (min-width: 120em) {
  .realty__inner {
    transform: translateY(-150px);
    margin-bottom: -150px;
    display: flex;
    flex-wrap: wrap;
    gap: 0;
  }
  .realty__inner > * {
    width: 50%;
    padding: 1px;
  }
  .realty__inner .object-card:nth-child(2) {
    transform: scale(1);
    margin-top: 13px;
    margin-bottom: 0px;
    margin-left: 0px;
    margin-right: 0px;
  }
  .realty__inner .object-card:nth-child(3) {
    margin-top: 75px;
    margin-bottom: 0px;
    margin-left: 5px;
    margin-right: 0px;
    transform: scale(0.98);
  }
  .realty__inner .object-card:nth-child(4) {
    margin-top: -17px;
    margin-bottom: 92px;
    margin-left: -34px;
    margin-right: 0px;
    transform: scale(0.92);
  }
}
@media only screen and (min-width: 120em) {
  .realty__top {
    padding-top: 120px;
  }
}
.realty__heading {
  margin-bottom: 30px;
  margin-left: auto;
  margin-right: auto;
}
@media only screen and (min-width: 120em) {
  .realty__heading {
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 10px;
  }
}
.realty__text {
  margin-bottom: 70px;
  text-align: center;
}
@media only screen and (min-width: 75em) {
  .realty__text {
    text-align: left;
    margin-bottom: 30px;
  }
}
@media only screen and (min-width: 120em) {
  .realty__text {
    padding-right: 100px;
  }
}

.request-form {
  width: 100%;
  background-color: var(--clr-100);
  margin: 0 auto;
}
@media only screen and (min-width: 48em) {
  .request-form__input-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
  }
}
.request-form__item {
  width: 100%;
  flex: 1 1;
  margin-bottom: 40px;
}
.request-form__item .form-textarea {
  display: block;
}
.request-form__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 46px;
}
@media only screen and (min-width: 90em) {
  .request-form__bottom {
    margin-top: 54px;
  }
}
.request-form .btn {
  margin-bottom: 45px;
}
.request-form__error {
  display: flex;
  align-items: center;
}
.request-form__error img {
  margin-right: 15px;
}
.request-form__error-text {
  margin-top: 6px;
}

.request__bg {
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
@media only screen and (min-width: 75em) {
  .request__inner {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
  .request__inner > :nth-child(1) {
    grid-column: 2/-1;
    grid-row: 1;
  }
  .request__inner > :nth-child(2) {
    grid-column: 1/2;
    grid-row: 1;
  }
}
@media only screen and (min-width: 90em) {
  .request__inner {
    gap: 60px;
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
@media only screen and (min-width: 120em) {
  .request__inner {
    gap: 80px;
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
.request__heading-wrapper {
  margin-top: auto;
  margin-bottom: auto;
}
.request__heading {
  margin-bottom: 60px;
  margin-left: auto;
  margin-right: auto;
}
@media only screen and (min-width: 75em) {
  .request__heading {
    margin-bottom: 30px;
    margin-left: 0;
  }
}
.request__description {
  display: none;
}
@media only screen and (min-width: 75em) {
  .request__description {
    line-height: 1.8;
    display: block;
  }
}

.share-list {
  display: flex;
  align-items: center;
  list-style: none;
  flex-wrap: wrap;
}
.share-list__item {
  padding-top: 5px;
  padding-bottom: 5px;
  margin-right: 15px;
}
.share-list__item--title {
  width: 100%;
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 24px;
  line-height: 1;
  letter-spacing: 0.1rem;
}
@media only screen and (min-width: 36em) {
  .share-list__item--title {
    width: auto;
  }
}
.share-list__link {
  text-decoration: none;
}
.share-list__link-bg {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 50%;
  background-color: var(--clr-900);
  display: flex;
  align-items: center;
  justify-content: center;
}
.share-list__link-bg .icon {
  color: var(--clr-primary);
  font-size: 12px;
}
.share-list__link-bg .icon.icon-facebook {
  font-size: 16px;
}

.socials {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 15px;
  z-index: 100;
}
.socials--vertical {
  flex-direction: column;
}
.socials__link {
  text-decoration: none;
  color: var(--clr-primary);
}
.socials__link:hover {
  color: #fff;
}
.socials__link .icon {
  transition: color 0.2s ease-in-out;
}
.socials__link--primary {
  color: var(--clr-900);
}
.socials__link--primary .socials__circle {
  background-color: var(--clr-primary);
}
.socials__link--primary .icon-facebook {
  font-size: 16px;
}
.socials__link--primary .icon-instagram {
  font-size: 20px;
}
.socials__circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--clr-900);
  display: flex;
  align-items: center;
  justify-content: center;
}

.socials-wrapper {
  display: none;
  margin-top: 35px;
}
@media only screen and (min-width: 48em) {
  .socials-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

.sort-list {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  font-family: var(--font-primary);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 1px;
  text-decoration: none;
  list-style: none;
  color: var(--clr-900);
}
.sort-list__item {
  text-transform: uppercase;
  background-color: #f2f2f2;
  border-radius: 20px;
  padding: 9px 25px;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  transition: all 0.2s ease-in-out;
}
.sort-list__item.active {
  background-color: var(--clr-primary);
}

.tariff__bg {
  width: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.tariff__inner {
  margin-right: auto;
  margin-left: auto;
  padding-top: 40px;
  padding-bottom: 70px;
}
@media only screen and (min-width: 48em) {
  .tariff__inner {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
@media only screen and (min-width: 62em) {
  .tariff__inner {
    padding-top: 80px;
    padding-bottom: 90px;
  }
}
@media only screen and (min-width: 75em) {
  .tariff__inner {
    max-width: 880px;
    padding-bottom: 100px;
  }
}
@media only screen and (min-width: 90em) {
  .tariff__inner {
    max-width: 992px;
    padding-top: 100px;
    padding-bottom: 120px;
  }
}
@media only screen and (min-width: 120em) {
  .tariff__inner {
    padding-top: 110px;
    padding-bottom: 140px;
  }
}

.testimonial {
  display: flex;
  gap: 20px;
  padding: 2px;
  max-width: 353px;
  margin: 0 auto;
}
@media only screen and (min-width: 36em) {
  .testimonial {
    max-width: 390px;
  }
}
@media only screen and (min-width: 48em) {
  .testimonial {
    max-width: 576px;
  }
}
@media only screen and (min-width: 62em) {
  .testimonial {
    max-width: 650px;
  }
}
@media only screen and (min-width: 90em) {
  .testimonial {
    max-width: 850px;
  }
}

@media only screen and (min-width: 75em) and (min-width: 75em) {
  .houses__objects .object-card:nth-child(3) .object-card__img {
    aspect-ratio: 1.5;

  }
}

@media only screen and (min-width: 1740px) {

  .our-contacts .container-wide,
  .contact-us .container-wide,
  .features.full-wd .container-wide{
    max-width: 100%;
    padding: 0;
  }
}
.testimonial__card-circle {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 50%;
  background-color: var(--clr-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.testimonial__initials {
  font-family: var(--font-primary);
  color: var(--clr-900);
  font-weight: 600;
  font-size: 18px;
  line-height: 1;
  letter-spacing: 0.1rem;
}
.testimonial__content {
  width: 100%;
}
.testimonial__heading {
  font-family: var(--font-primary);
  color: var(--clr-100);
  font-weight: 400;
  font-size: 24px;
  line-height: 1;
  letter-spacing: 0.1rem;
  margin-bottom: 30px;
}
.testimonial__text {
  color: var(--clr-100-75);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 30px;
}
.testimonial__author {
  display: flex;
  align-items: center;
}
.testimonial__author .icon {
  font-size: 2px;
  color: var(--clr-primary);
  margin-right: 15px;
}
.testimonial__author-name {
  font-family: var(--font-primary);
  color: var(--clr-100);
  font-weight: 600;
  font-size: 13px;
  line-height: 1;
  letter-spacing: 0.1rem;
  text-transform: uppercase;
}

.testimonials {
  overflow: hidden;
}
.testimonials__bg {
  width: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.testimonials__heading {
  margin-bottom: 70px;
  margin-left: auto;
  margin-right: auto;
}
@media only screen and (min-width: 48em) {
  .testimonials__heading {
    margin-bottom: 80px;
  }
}
@media only screen and (min-width: 75em) {
  .testimonials__heading {
    margin-bottom: 90px;
  }
}
@media only screen and (min-width: 90em) {
  .testimonials__heading {
    margin-bottom: 100px;
  }
}
@media only screen and (min-width: 120em) {
  .testimonials__heading {
    margin-bottom: 110px;
  }
}
.testimonials__wrapper .swiper {
  margin-bottom: 65px;
}
@media only screen and (min-width: 48em) {
  .testimonials__wrapper .swiper {
    margin-bottom: 75px;
  }
}
@media only screen and (min-width: 75em) {
  .testimonials__wrapper .swiper {
    margin-bottom: 85px;
  }
}
@media only screen and (min-width: 90em) {
  .testimonials__wrapper .swiper {
    margin-bottom: 90px;
  }
}
@media only screen and (min-width: 120em) {
  .testimonials__wrapper .swiper {
    margin-bottom: 100px;
  }
}

.pagination-wrapper {
  display: flex;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  padding: 0 30px;
}

.swiper-pagination {
  position: relative;
  font-size: 17px;
  color: var(--clr-100-75);
  padding-top: 20px;
}

.text-btn {
  font-family: var(--font-primary);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--clr-primary);
}
.text-btn--dark {
  color: var(--clr-900);
}
.text-btn__inner {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  transition: all 0.2s ease-in-out;
}
.text-btn__inner:hover {
  color: var(--clr-primary-darker);
  transform: translateX(1px);
}
.text-btn__link {
  color: inherit;
  text-decoration: none;
}
.text-btn .icon {
  font-size: 1.1em;
}

button.text-btn {
  display: flex;
  align-items: center;
  border: none;
  background: none;
}
@media only screen and (min-width: 120em) {
  button.text-btn {
    margin-top: 30px;
  }
}
button.text-btn .icon {
  color: var(--clr-primary);
  margin-right: 10px;
}

.toggle-btn {
  position: relative;
  height: 40px;
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--clr-900);
  border: none;
  border-radius: 50%;
  z-index: 1001;
  cursor: pointer;
  transition: all 0.3s ease-out;
  transform: rotate(-90deg);
}
.toggle-btn .icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--clr-primary);
  font-size: 12px;
  margin-top: 2px;
}
.toggle-btn.is-open {
  transform: rotate(0deg);
}

@font-face {
  font-family: "icomoon";
  src: url("../fonts/icomoon/icomoon.ttf?rm2jl") format("truetype"), url("../fonts/icomoon/icomoon.woff?rm2jl") format("woff"), url("../fonts/icomoon/icomoon.svg?rm2jl#icomoon") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: block;
}
.icon {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: "icomoon" !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-arrow-down:before {
  content: "\e900";
}

.icon-arrow-right:before {
  content: "\e901";
}

.icon-arrow-rotate:before {
  content: "\e902";
}

.icon-arrow-up:before {
  content: "\e903";
}

.icon-binoculars:before {
  content: "\e904";
}

.icon-chevron:before {
  content: "\e905";
}

.icon-clock:before {
  content: "\e906";
}

.icon-deal:before {
  content: "\e907";
}

.icon-door:before {
  content: "\e908";
}

.icon-facebook:before {
  content: "\e909";
}

.icon-garage:before {
  content: "\e90a";
}

.icon-google:before {
  content: "\e90b";
}

.icon-graph:before {
  content: "\e90c";
}

.icon-instagram:before {
  content: "\e90d";
}

.icon-kayaking:before {
  content: "\e90e";
}

.icon-linkedin:before {
  content: "\e90f";
}

.icon-location-pin:before {
  content: "\e910";
}

.icon-mail-outline:before {
  content: "\e911";
}

.icon-mail:before {
  content: "\e912";
}

.icon-notepad:before {
  content: "\e913";
}

.icon-pdf:before {
  content: "\e914";
}

.icon-person:before {
  content: "\e915";
}

.icon-phone-outline:before {
  content: "\e916";
}

.icon-phone:before {
  content: "\e917";
}

.icon-plant:before {
  content: "\e918";
}

.icon-plus:before {
  content: "\e919";
}

.icon-rectangle:before {
  content: "\e91a";
}

.icon-search:before {
  content: "\e91b";
}

.icon-shower:before {
  content: "\e91c";
}

.icon-square:before {
  content: "\e91d";
}

.icon-star:before {
  content: "\e91e";
}

.icon-triangle:before {
  content: "\e91f";
}

.icon-twitter:before {
  content: "\e920";
}

.icon-valholl:before {
  content: "\e921";
}

.icon-warning-circle .path1:before {
  content: "\e922";
}

.icon-warning-circle .path2:before {
  content: "\e923";
  margin-left: -1em;
}
/*# sourceMappingURL=main.css.map */


@media only screen and (max-width: 1760px) {
  .empty-block{
    display: none;
  }
}
@media only screen and (min-width: 1760px) {

  .container-wide {
    max-width: 1740px;
  }

  .container-wide .realty__top,
  .container-wide .object-card--regular {
    max-width: 542px;
    width: 100%;
  }

  .block-parent {
    margin-top: 110px;
  }

  .container-wide .realty__top {
    padding-top: 30px;
    max-width: 573px;
  }
  .container-wide .houses__slider .houses__objects{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  .container-wide .houses__slider .houses__objects .object-card:nth-child(2) ,
  .container-wide .realty__inner .object-card:nth-child(2) {
    margin-top: 38px;
  }

  .container-wide .houses__slider .houses__objects .object-card:nth-child(3) ,
  .container-wide .realty__inner .object-card:nth-child(3) {
    margin-top: 0;
    margin-left: 0;
    max-width: 582px;
    height: 400px;
    transform: scale(1);
  }

  .container-wide .houses__slider .houses__objects .object-card:nth-child(4) ,
  .container-wide .realty__inner .object-card:nth-child(4) {
    margin: 0;
    transform: scale(1);
    height: 360px;
  }

  .container-wide .houses__slider .houses__objects .object-card:nth-child(5) ,
  .container-wide .realty__inner .object-card:nth-child(5) {
    max-width: 616px;
    height: 400px;
  }

  .container-wide .houses__slider .houses__objects .object-card:nth-child(6) ,
  .container-wide .realty__inner .object-card:nth-child(6) {
    height: 360px;
  }

  .container-wide .houses__slider .houses__objects .object-card:nth-child(1),
  .container-wide .houses__slider .houses__objects .object-card:nth-child(2),
  .container-wide .houses__slider .houses__objects .object-card:nth-child(3),
  .container-wide .houses__slider .houses__objects .object-card:nth-child(4),
  .container-wide .houses__slider .houses__objects .object-card:nth-child(5){
    transform: none;
  }
  .container-wide .houses__slider .houses__objects .object-card:nth-child(1){
    width: 582px;
  }
  .container-wide .houses__slider .houses__objects .object-card:nth-child(2),
  .container-wide .houses__slider .houses__objects .object-card:nth-child(3),
  .container-wide .houses__slider .houses__objects .object-card:nth-child(4){
    width: 542px;
  }
  .container-wide .houses__slider .houses__objects .object-card:nth-child(5){
    width: 520px;
    height: 360px;
  }
  .container-wide .houses__slider .houses__objects .object-card:nth-child(6){
    width: 650px;
    height: 400px;
  }
  .container-wide .houses__slider .houses__objects .object-card:nth-child(7){
    width: 520px;
    height: 360px;
  }

  .container-wide .houses__slider .houses__objects .object-card:nth-child(2){
    height: 400px;
  }
  .container-wide .houses__slider .houses__objects .object-card:nth-child(3){
    height: 360px;
    margin-top: 78px;
  }
  .container-wide .new-buildings__realty{
    display: flex;
    flex-wrap: wrap;
  }

  .container-wide .new-buildings__realty .object-card:nth-child(2){
    margin-top: 0;
    width: 582px;
    height: 400px;
  }

  .container-wide .new-buildings__realty .object-card:nth-child(3),
  .container-wide .new-buildings__realty .object-card:nth-child(5),
  .container-wide .new-buildings__realty .object-card:nth-child(7),
  .container-wide .new-buildings__realty .object-card:nth-child(8){
    width: 582px;
    height: 360px;
  }
  .container-wide .new-buildings__realty .object-card:nth-child(3){
    margin-top: 40px;
  }
  .container-wide .new-buildings__realty .object-card:nth-child(5),
  .container-wide .new-buildings__realty .object-card:nth-child(7){
    width: 522px;
  }
  .container-wide .new-buildings__realty .object-card:nth-child(6){
    width: 650px;
    height: 400px;
  }

}

.call-section__title{
    color: #231F20;
    font-weight: 600;
    font-size: 24px;
    line-height: 100%;
    margin-bottom: 24px;
}


.properties-card-mod{
  grid-template-columns: repeat(2, 1fr);
}
.employee-card__circle{
    display: none;
}
.employee-card__img-box:hover .employee-card__circle{
    z-index: 1;
    position: absolute;
    left: 50%;
    top:50%;
    -webkit-transform: translate(-50% ,-50%);
    -moz-transform: translate(-50% ,-50%);
    -ms-transform: translate(-50% ,-50%);
    -o-transform: translate(-50% ,-50%);
    transform: translate(-50% ,-50%);
    display: flex;
    justify-content: center;
    align-items: center;
    width: 72px;
    height: 72px;
    border-radius: 100px;
    background-color: rgba(0, 0, 0, 1);
    color: #FFCA32;
    font-family: "Optima", sans-serif;
    font-weight: 600;
    font-size: 13px;
    line-height: 100%;
    text-transform: uppercase;

}

.employee-card__circle:hover + .employee-card__img {
    -ms-filter: grayscale(0);
    filter: grayscale(0);
}

.properties-card-mod .proprietors-card__img{
  grid-column: 1 / 2;
  max-height: 100%;
}


.properties-card-mod .proprietors-card__text-wrapper{
  max-height: 100%;
}

.article .article__img-wrapper{
    display: flex;
}

.slick-items{
    display: flex;
}
.article-card-v2__img-box{
  overflow: visible;
}
.article-card-v2__img-box:hover .article-card-v2__img{
  transform: scale(1.03);
}


@media (min-width: 1200px) and (max-width: 1919px) {
    .houses__slider {
        max-height: 100%;
    }
    .houses__slider .houses__objects{
        display: flex;
        flex-wrap: wrap;
    }
    .houses__slider .object-card{
        width: calc(50% - 1px);
    }
}
@media only screen and (min-width: 1920px) {
  .header.scrolled:not(.menu-open) .burger-btn__title {
    color: var(--clr-900);
  }
}
@media only screen and (min-width: 1200px) {
  .properties-card-mod .proprietors-card__content{
    margin-left: -40px;
  }
}

@media only screen and (max-width: 769px) {
  .subscribe-modal img {
    display: none;
  }
}

@media only screen and (max-width: 569px) {
    .slick-slide > div {
        margin: 0 auto;
        max-width: 320px;
    }
}

.video-container {
  position: relative;
  width: 100%;
  height: auto; /* 100% of the viewport height */
}
iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.vimeo-video-container iframe {
  pointer-events: none;
}

.vimeo-video-container iframe::after {
  content: "";
  display: none;
}


.send-form{
  z-index: 1;
  position: relative;
}

.send-form:before{
  content: '';
  display: block;
  position: absolute;
  top:0;
  bottom:0;
  left:0;
  right:0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: -1;
}

#subscribe-modal {
  display: flex;
  z-index: 100;
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #ffffff;
  max-width: 780px;

  opacity: 0;
  visibility: hidden;
  transform: translateY(30px);
  transition: all 0.4s ease;
}

#subscribe-modal.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.subscribe-modal .form{
  width: 390px;
  padding: 36px 40px 40px;
}

.subscribe-modal .title{
  color: #231F20;
  font-weight: 600;
  font-size: 24px;
  line-height: 100%;
  margin-bottom : 30px;
}

.testimonials__slider.swiper{
  overflow: visible !important;
}

@media only screen and (min-width: 120em) {
  .article-card-v2__img-box {
    max-height: 285px;
    height: 100%;
    min-width: 280px;
  }
}

@media only screen and (min-width: 90em) {
  .subpage-article .article-card__img-box {
    max-height: 465px;
    max-width: 50%;
    width: 100%;
  }

  .subpage-article .article-card__content {
    min-height: 465px;
    max-width: 50%;
    width: 100%;
  }
}

@media only screen and (min-width: 75em) {
  .article-card-v2.article-card--card-reversed {
    flex-direction: row-reverse;
    height: fit-content;
  }

  .subpage-article .article-card.article-card--card-reversed {
    flex-direction: row-reverse;
  }

  .article-card-v2__img-box {
    min-width: inherit;
    width: 50%;
    overflow: hidden;
    max-height: 294px;
  }

}


@media only screen and (min-width: 62em) {
  .info__articles {
    display: flex;
    flex-wrap: wrap;
  }

  .subpage-article .articles__objects {
    display: flex;
  }

  .subpage-article .article-card {
    flex-direction: row;
  }

}

@media only screen and (min-width: 62em) {
  .article-card-v2 {
    flex-direction: row;
  }
}

.swiper-wrapper {
  transition-timing-function: ease-in-out;
}

@media only screen and (max-width: 62em) {
  .realty .building-card__img,
  .new-buildings .object-card__img,
  .houses .object-card__img{
    filter: grayscale(100%);
  }
  .realty .building-card__img:hover,
  .new-buildings .object-card__img:hover,
  .houses .object-card__img:hover{
    filter: grayscale(0%);
  }
}


.footer__bottom-inner {
  display: flex;
  background-color: var(--clr-900);
  justify-content: flex-end; /* push content to the right */
  align-items: center;
  padding: 12px 0;
}
.footer__bottom-inner .container{
  width: 100%;
}


.footer__developer {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: var(--clr-100);
  text-align: right;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.footer__developer span {
  opacity: 0.8;
}

.footer__developer-link {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  transition: opacity .2s ease;
}

.footer__developer-link:hover {
  opacity: 0.7;
}

.icon-thinksoftware {
  margin: 0 4px;
}

/* Responsive */
@media (max-width: 768px) {
  .footer__bottom-inner {
    justify-content: center;
    text-align: center;
  }

  .footer__developer {
    justify-content: center;
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .footer__developer {
    flex-direction: column;
    gap: 4px;
  }
}
/* ---------- Homepage parallax (see docs/superpowers/specs/2026-05-12-homepage-parallax-design.md) ---------- */
.has-parallax {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.has-parallax::before {
  content: '';
  position: absolute;
  inset: -20% 0;
  background-image: var(--parallax-bg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: translate3d(0, var(--parallax-y, 0), 0);
  will-change: transform;
  z-index: -1;
}
@media (max-width: 767px), (prefers-reduced-motion: reduce) {
  .has-parallax::before {
    transform: none;
    inset: 0;
  }
}
/* ============================================================
   VALHOLL.IS — PARALLAX ENHANCEMENTS
   ============================================================ */
/* ----------------------------------------------------------
   Section heading: fade + slide-up animation on scroll
   ---------------------------------------------------------- */
.section-heading {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.section-heading.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.section-heading__top {
  transition-delay: 0s;
}
.section-heading__bottom {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease 0.2s, transform 0.7s ease 0.2s;
}
.section-heading.is-visible .section-heading__bottom {
  opacity: 1;
  transform: translateY(0);
}
/* ----------------------------------------------------------
   Hero video: smooth zoom transition
   ---------------------------------------------------------- */
.hero-v1 {
  overflow: hidden;
}
.hero-v1 video {
  transition: transform 0.1s linear;
  will-change: transform;
}
/* ----------------------------------------------------------
   Sections: set up for JS-driven background parallax
   ---------------------------------------------------------- */
.realty__bg {
  background-size: cover !important;
  background-attachment: scroll !important;
  background-repeat: no-repeat !important;
}
.proprietors {
  background-size: cover;
  background-attachment: scroll;
  background-repeat: no-repeat;
}
.info {
  background-size: cover;
  background-attachment: scroll;
  background-repeat: no-repeat;
}
.testimonials__bg {
  background-size: cover;
  background-attachment: scroll;
  background-repeat: no-repeat;
}
/* ----------------------------------------------------------
   Performance hint for all parallax elements
   ---------------------------------------------------------- */
.realty__bg,
.proprietors,
.info,
.testimonials__bg,
.houses__bg,
.new-buildings,
.hero-v1 video {
  will-change: transform;
}
/* ----------------------------------------------------------
   iOS Safari fix:
   background-attachment: fixed does NOT work on iOS Safari.
   .new-buildings uses fixed — this overrides it on iOS only.
   ---------------------------------------------------------- */
@supports (-webkit-touch-callout: none) {
  .new-buildings {
    background-attachment: scroll;
  }
}
