* {
  padding: 0;
  margin: 0;
  outline: none;
  border: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
ul,
ol {
  list-style-type: none;
}
a {
  text-decoration: none;
  color: inherit;
}
html,
body {
  line-height: 1.6;
  font-size: 16px;
  font-family: 'Geologica', system-ui, -apple-system, 'Segoe UI', sans-serif;
  color: #333;
  width: 100%;
  overflow-x: hidden;
  background-color: #f6f6f8;
}
.aic {
  -webkit-box-align: center;
  -moz-box-align: center;
  -o-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.wrapper {
  width: 100%;
  overflow-x: hidden;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .row {
    margin-left: -15px;
    margin-right: -15px;
  }
  .row >* {
    padding-left: 15px;
    padding-right: 15px;
  }
}
svg {
  width: 16px;
  height: 16px;
}
svg path {
  fill: #333;
  fill-opacity: 1;
}
@media only screen and (max-width: 991px) {
  .mobile-hidden {
    display: none !important;
  }
}
@media only screen and (min-width: 1200px) {
  .pc-hidden {
    display: none !important;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .tablet-hidden {
    display: none !important;
  }
}
h1,
h2,
h3,
h4,
h5 {
  line-height: 1.4;
}
.hero {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100vh;
  min-height: 800px;
}
@media only screen and (max-width: 991px) {
  .hero {
    height: auto;
    min-height: auto;
  }
}
.hero__bg {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
.hero__bg video {
  overflow: hidden;
  pointer-events: none;
  width: 100%;
  z-index: 1;
}
@media only screen and (max-width: 2200px) {
  .hero__bg video {
    height: 100%;
    width: auto;
  }
}
.hero__bg:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-linear-gradient(bottom, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.25) 50%, rgba(0,0,0,0.5) 100%);
  background: -moz-linear-gradient(bottom, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.25) 50%, rgba(0,0,0,0.5) 100%);
  background: -o-linear-gradient(bottom, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.25) 50%, rgba(0,0,0,0.5) 100%);
  background: -ms-linear-gradient(bottom, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.25) 50%, rgba(0,0,0,0.5) 100%);
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.25) 50%, rgba(0,0,0,0.5) 100%);
  z-index: 2;
}
.hero__logo {
  text-align: center;
  padding-top: 32px;
}
.hero__logo img {
  max-height: 80px;
}
@media only screen and (max-width: 991px) {
  .hero__logo img {
    max-height: 64px;
  }
}
.hero__inner {
  z-index: 5;
  position: relative;
  height: 100%;
}
@media only screen and (min-width: 991px) {
  .hero__bottom {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
  }
}
.hero__title h1 {
  color: #fff;
  font-size: 80px;
  text-align: center;
  padding-bottom: 40px;
}
@media only screen and (max-width: 1199px) {
  .hero__title h1 {
    font-size: 64px;
  }
}
@media only screen and (max-width: 991px) {
  .hero__title h1 {
    font-size: 32px;
    margin-top: 80px;
    padding-bottom: 80px;
  }
}
.hero-card {
  background: -webkit-linear-gradient(178deg, rgba(255,255,255,0) 4.64%, rgba(255,255,255,0.01) 50%, rgba(255,255,255,0.01) 75%, rgba(255,255,255,0) 95%);
  background: -moz-linear-gradient(178deg, rgba(255,255,255,0) 4.64%, rgba(255,255,255,0.01) 50%, rgba(255,255,255,0.01) 75%, rgba(255,255,255,0) 95%);
  background: -o-linear-gradient(178deg, rgba(255,255,255,0) 4.64%, rgba(255,255,255,0.01) 50%, rgba(255,255,255,0.01) 75%, rgba(255,255,255,0) 95%);
  background: -ms-linear-gradient(178deg, rgba(255,255,255,0) 4.64%, rgba(255,255,255,0.01) 50%, rgba(255,255,255,0.01) 75%, rgba(255,255,255,0) 95%);
  background: linear-gradient(272deg, rgba(255,255,255,0) 4.64%, rgba(255,255,255,0.01) 50%, rgba(255,255,255,0.01) 75%, rgba(255,255,255,0) 95%);
  backdrop-filter: blur(7.5px);
  padding: 40px 0;
  color: #fff;
}
@media only screen and (max-width: 991px) {
  .hero-card {
    padding: 24px 16px;
  }
}
.hero-card__inner {
  gap: 80px;
  max-width: 80%;
  margin: 0 auto;
}
@media only screen and (min-width: 992px) {
  .hero-card__inner {
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: box;
    display: flex;
    -webkit-box-pack: center;
    -moz-box-pack: center;
    -o-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -moz-box-align: center;
    -o-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
  }
}
@media only screen and (max-width: 1399px) {
  .hero-card__inner {
    max-width: 90%;
  }
}
@media only screen and (max-width: 1199px) {
  .hero-card__inner {
    gap: 32px;
    max-width: 100%;
  }
}
@media only screen and (max-width: 991px) {
  .hero-card__inner .btn {
    width: 100%;
    margin-top: 8px;
    text-align: center;
    -webkit-box-pack: center;
    -moz-box-pack: center;
    -o-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.hero-card__content {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -o-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  gap: 24px;
}
@media only screen and (max-width: 991px) {
  .hero-card__content {
    gap: 16px;
    -webkit-box-pack: center;
    -moz-box-pack: center;
    -o-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.hero-card__info {
  text-align: right;
}
@media only screen and (max-width: 991px) {
  .hero-card__info {
    margin-bottom: 16px;
    text-align: center;
  }
}
.hero-card__info h2 {
  font-size: 24px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
@media only screen and (max-width: 991px) {
  .hero-card__info h2 {
    font-size: 18px;
  }
}
.hero-card__info p {
  font-size: 14px;
}
.hero-card__desc {
  margin-bottom: -8px;
}
.hero-card__desc >* {
  margin-bottom: 8px;
}
.hero-card__picture {
  width: 260px;
  height: 140px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 16px;
}
@media only screen and (max-width: 991px) {
  .hero-card__picture {
    margin-bottom: 16px;
    width: 120px;
    height: 80px;
    border-radius: 8px;
  }
}
.hero-card__title h4 {
  font-size: 18px;
}
.hero-card__title p {
  font-size: 12px;
  opacity: 0.5;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
  filter: alpha(opacity=50);
}
.hero-card__price {
  font-size: 24px;
  font-weight: 700;
}
.header {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -o-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: justify;
  -moz-box-pack: justify;
  -o-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  padding: 64px 0;
}
@media only screen and (max-width: 991px) {
  .header {
    padding: 24px 0;
    -webkit-box-pack: center;
    -moz-box-pack: center;
    -o-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
}
@media only screen and (max-width: 1199px) {
  .header__logo {
    display: none;
  }
}
.header__logo img {
  max-height: 40px;
}
.header__nav ul {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -o-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  gap: 32px;
}
@media only screen and (max-width: 1399px) {
  .header__nav ul {
    gap: 16px;
  }
}
.header__nav ul li {
  display: -webkit-inline-box;
  display: -moz-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-box;
  display: inline-flex;
}
.header__nav ul li a {
  color: #fff;
  text-decoration: none;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  opacity: 0.75;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=75)";
  filter: alpha(opacity=75);
}
.header__nav ul li a:hover {
  opacity: 1;
  -ms-filter: none;
  filter: none;
}
.header__buttons {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -o-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  gap: 16px;
}
.header__socials {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -o-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  gap: 16px;
}
.subheader {
  background: #1b4626;
}
.subheader__back {
  display: none;
  -webkit-box-align: center;
  -moz-box-align: center;
  -o-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -o-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  color: #fff;
  opacity: 0.85;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=85)";
  filter: alpha(opacity=85);
  -webkit-transition: opacity 0.2s ease-in-out;
  -moz-transition: opacity 0.2s ease-in-out;
  -o-transition: opacity 0.2s ease-in-out;
  -ms-transition: opacity 0.2s ease-in-out;
  transition: opacity 0.2s ease-in-out;
}
.subheader__back svg path {
  fill: #fff;
}
.subheader__back:hover {
  opacity: 1;
  -ms-filter: none;
  filter: none;
}
@media only screen and (max-width: 991px) {
  .subheader__back {
    display: -webkit-inline-box;
    display: -moz-inline-box;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-box;
    display: inline-flex;
  }
}
.btn {
  font-size: 16px;
  background-color: #1b4626;
  padding: 12px 32px;
  color: #fff;
  border-radius: 32px;
  cursor: pointer;
  display: -webkit-inline-box;
  display: -moz-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-box;
  display: inline-flex;
  font-family: 'Geologica', system-ui, -apple-system, 'Segoe UI', sans-serif;
  font-weight: 300;
  white-space: nowrap;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.btn:hover {
  background-color: #15381e;
}
.btn_white {
  border: 1px solid #1b4626;
  background-color: #fff;
  color: #000;
}
.btn_white:hover {
  color: #fff;
}
.btn_subheader {
  background-color: #fff;
  color: #1b4626;
}
.btn_subheader:hover {
  background-color: #fff;
  color: #15381e;
}
.btn_twhite {
  background-color: RGBA(255, 255, 255, 0.1);
  color: #fff;
}
.btn_icon svg {
  width: 16px;
  height: 16px;
  margin-right: 12px;
}
.btn_icon svg path {
  fill: #fff;
}
.btn_w100 {
  width: 100%;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -o-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.btn_nob {
  border: 0 !important;
}
.social-link {
  display: -webkit-inline-box;
  display: -moz-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-box;
  display: inline-flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -o-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -o-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #fff;
  color: #fff;
  text-decoration: none;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.social-link svg {
  width: 16px;
  height: 16px;
}
.social-link svg path {
  fill: #fff;
}
.social-link:hover {
  background-color: #15381e;
  border-color: #15381e;
}
.block {
  padding: 80px 0;
  overflow: hidden;
}
@media only screen and (max-width: 991px) {
  .block {
    padding: 32px 0;
  }
}
.block_minus {
  padding: 48px 0;
}
@media only screen and (max-width: 991px) {
  .block_minus {
    padding: 24px 0;
  }
}
.block_slogan {
  padding: 120px 0;
}
@media only screen and (max-width: 991px) {
  .block_slogan {
    padding: 32px 0;
  }
}
.simple-title {
  text-transform: uppercase;
  color: #000;
  margin-bottom: 24px;
}
.simple-title h2 {
  font-size: 40px;
}
@media only screen and (max-width: 991px) {
  .simple-title h2 {
    font-size: 24px;
  }
}
.simple-title__additional {
  font-size: 24px;
  font-weight: bold;
  color: #1b4626;
}
@media only screen and (max-width: 991px) {
  .simple-title__additional {
    font-size: 18px;
  }
}
.simple-picture {
  height: 100%;
  width: 100%;
  border-radius: 16px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}
.vdt p {
  margin-bottom: 8px;
}
.vdt ul {
  padding-left: 24px;
  list-style-type: disc;
  margin-bottom: 12px;
}
@media only screen and (max-width: 991px) {
  .vdt ul {
    padding-left: 16px;
  }
}
.vdt ul li:not(:last-of-type) {
  margin-bottom: 8px;
}
@media only screen and (min-width: 992px) {
  .vdt__row-list {
    list-style-type: none !important;
    padding-left: 0 !important;
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: box;
    display: flex;
    -webkit-box-lines: multiple;
    -moz-box-lines: multiple;
    -o-box-lines: multiple;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-bottom: -8px;
  }
  .vdt__row-list li {
    position: relative;
    padding-right: calc(12px + 6px + 12px);
    margin-bottom: 8px;
  }
  .vdt__row-list li:not(:last-of-type):before {
    content: '';
    display: block;
    position: absolute;
    top: calc(50% - 6px);
    right: 12px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #1b4626;
  }
}
.buttons-row {
  gap: 16px;
}
@media only screen and (min-width: 992px) {
  .buttons-row {
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: box;
    display: flex;
    -webkit-box-align: center;
    -moz-box-align: center;
    -o-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
  }
}
@media only screen and (max-width: 991px) {
  .buttons-row {
    margin-bottom: -12px;
  }
  .buttons-row .btn {
    width: 100%;
    -webkit-box-pack: center;
    -moz-box-pack: center;
    -o-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    margin-bottom: 12px;
  }
}
.buttons-row_right {
  -webkit-box-pack: end;
  -moz-box-pack: end;
  -o-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.simple-content {
  margin-bottom: -32px;
}
@media only screen and (max-width: 991px) {
  .simple-content {
    margin-bottom: -16px;
  }
}
.simple-content >* {
  margin-bottom: 32px;
}
@media only screen and (max-width: 991px) {
  .simple-content >* {
    margin-bottom: 16px;
  }
}
.background {
  position: relative;
}
.background_primary {
  background-color: #1b4626;
}
.background__image {
  z-index: 1;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-size: cover;
  background-position: center;
}
.background__image_security:before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: -webkit-linear-gradient(right, RGBA(0, 0, 0, 0) 0%, RGBA(0, 0, 0, 0.75) 50%);
  background: -moz-linear-gradient(right, RGBA(0, 0, 0, 0) 0%, RGBA(0, 0, 0, 0.75) 50%);
  background: -o-linear-gradient(right, RGBA(0, 0, 0, 0) 0%, RGBA(0, 0, 0, 0.75) 50%);
  background: -ms-linear-gradient(right, RGBA(0, 0, 0, 0) 0%, RGBA(0, 0, 0, 0.75) 50%);
  background: linear-gradient(to left, RGBA(0, 0, 0, 0) 0%, RGBA(0, 0, 0, 0.75) 50%);
}
.background__image_territory {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-align: end;
  -moz-box-align: end;
  -o-box-align: end;
  -ms-flex-align: end;
  -webkit-align-items: flex-end;
  align-items: flex-end;
}
.background__image_territory img {
  width: 100%;
  height: auto;
}
@media only screen and (max-width: 991px) {
  .background__image_territory img {
    width: auto;
    height: 90%;
  }
}
.background__image_tour:before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: -webkit-linear-gradient(left, RGBA(0, 0, 0, 0) 0%, RGBA(0, 0, 0, 0.5) 50%);
  background: -moz-linear-gradient(left, RGBA(0, 0, 0, 0) 0%, RGBA(0, 0, 0, 0.5) 50%);
  background: -o-linear-gradient(left, RGBA(0, 0, 0, 0) 0%, RGBA(0, 0, 0, 0.5) 50%);
  background: -ms-linear-gradient(left, RGBA(0, 0, 0, 0) 0%, RGBA(0, 0, 0, 0.5) 50%);
  background: linear-gradient(to right, RGBA(0, 0, 0, 0) 0%, RGBA(0, 0, 0, 0.5) 50%);
}
.background >*:not(.background__image,
.background .background__gradient) {
  position: relative;
  z-index: 10;
}
.background__element_t1,
.background__element_t2 {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -o-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -o-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.background__element_t1 img,
.background__element_t2 img {
  height: 100%;
}
.background__element_t3 {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
}
.background__element_t3 img {
  height: 100%;
}
.background__gradient {
  z-index: 1;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
.background__gradient_creme_v1 {
  background: -webkit-linear-gradient(left, RGBA(253, 240, 213, 0.05), RGBA(253, 240, 213, 0.5));
  background: -moz-linear-gradient(left, RGBA(253, 240, 213, 0.05), RGBA(253, 240, 213, 0.5));
  background: -o-linear-gradient(left, RGBA(253, 240, 213, 0.05), RGBA(253, 240, 213, 0.5));
  background: -ms-linear-gradient(left, RGBA(253, 240, 213, 0.05), RGBA(253, 240, 213, 0.5));
  background: linear-gradient(to right, RGBA(253, 240, 213, 0.05), RGBA(253, 240, 213, 0.5));
}
.background__gradient_creme_v2 {
  background: -webkit-linear-gradient(top, RGBA(253, 240, 213, 0.1), RGBA(253, 240, 213, 0.5));
  background: -moz-linear-gradient(top, RGBA(253, 240, 213, 0.1), RGBA(253, 240, 213, 0.5));
  background: -o-linear-gradient(top, RGBA(253, 240, 213, 0.1), RGBA(253, 240, 213, 0.5));
  background: -ms-linear-gradient(top, RGBA(253, 240, 213, 0.1), RGBA(253, 240, 213, 0.5));
  background: linear-gradient(to bottom, RGBA(253, 240, 213, 0.1), RGBA(253, 240, 213, 0.5));
}
.background__gradient_creme_v3 {
  background: -webkit-linear-gradient(bottom, RGBA(253, 240, 213, 0.05), RGBA(253, 240, 213, 0.25));
  background: -moz-linear-gradient(bottom, RGBA(253, 240, 213, 0.05), RGBA(253, 240, 213, 0.25));
  background: -o-linear-gradient(bottom, RGBA(253, 240, 213, 0.05), RGBA(253, 240, 213, 0.25));
  background: -ms-linear-gradient(bottom, RGBA(253, 240, 213, 0.05), RGBA(253, 240, 213, 0.25));
  background: linear-gradient(to top, RGBA(253, 240, 213, 0.05), RGBA(253, 240, 213, 0.25));
}
.background__gradient_gray_v1 {
  background: -webkit-linear-gradient(left, RGBA(0, 0, 0, 0.05), RGBA(0, 0, 0, 0.15));
  background: -moz-linear-gradient(left, RGBA(0, 0, 0, 0.05), RGBA(0, 0, 0, 0.15));
  background: -o-linear-gradient(left, RGBA(0, 0, 0, 0.05), RGBA(0, 0, 0, 0.15));
  background: -ms-linear-gradient(left, RGBA(0, 0, 0, 0.05), RGBA(0, 0, 0, 0.15));
  background: linear-gradient(to right, RGBA(0, 0, 0, 0.05), RGBA(0, 0, 0, 0.15));
}
.big-title {
  text-transform: uppercase;
}
.big-title h2 {
  font-size: 80px;
  text-align: left;
  margin-left: -80px;
  white-space: nowrap;
  color: #e7e7e7;
}
@media only screen and (max-width: 1199px) {
  .big-title h2 {
    font-size: 64px;
    margin-left: 0;
  }
}
@media only screen and (max-width: 991px) {
  .big-title h2 {
    font-size: 24px;
    white-space: normal;
    color: #000;
  }
}
.big-title_fwhite {
  color: #fff;
}
.big-title_fwhite h2 {
  color: #2f5639;
}
@media only screen and (max-width: 991px) {
  .big-title_fwhite h2 {
    color: #fff;
  }
}
.big-title_white h2 {
  color: #fff;
}
.big-title__additional {
  text-align: right;
  font-size: 32px;
  font-weight: bold;
}
@media only screen and (max-width: 991px) {
  .big-title__additional {
    font-size: 18px;
    text-align: left;
  }
}
.big-title_minus h2 {
  font-size: 56px;
}
@media only screen and (max-width: 1199px) {
  .big-title_minus h2 {
    font-size: 40px;
  }
}
@media only screen and (max-width: 991px) {
  .big-title_minus h2 {
    font-size: 24px;
  }
}
.big-title_right h2 {
  text-align: right;
  margin-left: 0;
  margin-right: -80px;
}
@media only screen and (max-width: 1199px) {
  .big-title_right h2 {
    margin-right: 0;
  }
}
.big-title_plus h2 {
  font-size: 120px;
}
@media only screen and (max-width: 1199px) {
  .big-title_plus h2 {
    font-size: 80px;
  }
}
@media only screen and (max-width: 991px) {
  .big-title_plus h2 {
    font-size: 40px;
  }
}
.big-title_center h2 {
  text-align: center;
  margin-left: 0;
  margin-right: 0;
}
.big-title__text {
  font-size: 24px;
  color: #fff;
  margin-top: 16px;
  text-transform: none;
}
@media only screen and (max-width: 1199px) {
  .big-title__text {
    font-size: 18px;
  }
}
@media only screen and (max-width: 991px) {
  .big-title__text {
    font-size: 16px;
  }
}
.big-title__text_center {
  text-align: center;
}
.numbers-row {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
}
@media only screen and (min-width: 992px) {
  .numbers-row {
    -webkit-box-align: center;
    -moz-box-align: center;
    -o-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-box-pack: justify;
    -moz-box-pack: justify;
    -o-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    gap: 48px;
    padding: 40px 0;
  }
}
@media only screen and (max-width: 991px) {
  .numbers-row {
    -webkit-box-orient: vertical;
    -moz-box-orient: vertical;
    -o-box-orient: vertical;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 32px 0 24px 0;
  }
  .numbers-row >* {
    margin-bottom: 12px;
  }
}
.numbers-row:not(:last-of-type) {
  border-bottom: 1px solid RGBA(0, 0, 0, 0.1);
}
.numbers-row__number {
  font-size: 48px;
  font-weight: bold;
}
@media only screen and (max-width: 991px) {
  .numbers-row__number {
    line-height: 1;
    font-size: 24px;
  }
}
.numbers-row__title {
  font-size: 32px;
}
@media only screen and (min-width: 1200px) {
  .numbers-row__title {
    white-space: nowrap;
  }
}
@media only screen and (max-width: 991px) {
  .numbers-row__title {
    font-size: 24px;
  }
}
.numbers-row__desc {
  font-size: 14px;
  opacity: 0.75;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=75)";
  filter: alpha(opacity=75);
}
.numbers-row__picture {
  height: 120px;
  width: 200px;
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -o-box-flex: 1;
  box-flex: 1;
  -webkit-flex: 0 0 200px;
  -ms-flex: 0 0 200px;
  flex: 0 0 200px;
  border-radius: 16px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
}
@media only screen and (max-width: 991px) {
  .numbers-row__picture {
    width: 100%;
  }
}
@media only screen and (min-width: 992px) {
  .numbers-row:nth-child(2n) .numbers-row__desc {
    text-align: right;
  }
}
.splide_location .splide__arrows {
  position: absolute;
  right: 64px;
  bottom: 64px;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -o-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  gap: 8px;
}
@media only screen and (max-width: 991px) {
  .splide_location .splide__arrows {
    bottom: 16px;
    left: 16px;
  }
}
.splide_location .splide__arrows button {
  left: 0;
  right: 0;
  position: relative;
  display: -webkit-inline-box;
  display: -moz-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-box;
  display: inline-flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -o-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -o-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border: 1px solid #fff;
  background: transparent;
  -webkit-transform: none;
  -moz-transform: none;
  -o-transform: none;
  -ms-transform: none;
  transform: none;
}
@media only screen and (max-width: 991px) {
  .splide_location .splide__arrows button {
    width: 40px;
    height: 40px;
  }
}
.splide_location .splide__arrows button svg {
  -webkit-transform: none;
  -moz-transform: none;
  -o-transform: none;
  -ms-transform: none;
  transform: none;
  width: 24px;
  height: 24px;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -o-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -o-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
@media only screen and (max-width: 991px) {
  .splide_location .splide__arrows button svg {
    width: 16px;
    height: 16px;
  }
}
.splide_location .splide__arrows button svg path {
  fill: #fff;
}
.location-element {
  overflow: hidden;
  position: relative;
  width: 100%;
  padding: 64px 0;
  color: #fff;
  height: 560px;
}
@media only screen and (max-width: 991px) {
  .location-element {
    height: auto;
    padding: 32px 0 80px 0;
  }
}
.location-element__picture {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
}
.location-element__picture:before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
.location-element__title {
  font-weight: bold;
  font-size: 80px;
  margin-left: -80px;
  z-index: 5;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 120px;
}
@media only screen and (max-width: 1199px) {
  .location-element__title {
    margin-left: 0;
  }
}
@media only screen and (max-width: 991px) {
  .location-element__title {
    font-size: 32px;
  }
}
.location-element__inner {
  position: relative;
  z-index: 5;
  height: 100%;
}
.location-element__content {
  max-width: 50%;
  position: absolute;
  bottom: 0;
  left: 0;
}
@media only screen and (max-width: 1199px) {
  .location-element__content {
    max-width: 70%;
  }
}
@media only screen and (max-width: 991px) {
  .location-element__content {
    position: relative;
    max-width: 100%;
    padding: 0;
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: box;
    display: flex;
    -webkit-box-align: end;
    -moz-box-align: end;
    -o-box-align: end;
    -ms-flex-align: end;
    -webkit-align-items: flex-end;
    align-items: flex-end;
    height: calc(100% - 220px);
  }
}
.location-element__content b {
  font-size: 32px;
  text-transform: uppercase;
  font-weight: bold;
  display: inline-block;
  margin-bottom: 12px;
}
@media only screen and (max-width: 991px) {
  .location-element__content b {
    font-size: 18px;
  }
}
.location-element__content .vdt p {
  margin-bottom: 4px;
}
.location-element_v1 .location-element__picture:before {
  background: -webkit-linear-gradient(left, RGBA(0, 0, 0, 0.8) 0%, RGBA(0, 0, 0, 0.5) 30%, RGBA(0, 0, 0, 0) 100%);
  background: -moz-linear-gradient(left, RGBA(0, 0, 0, 0.8) 0%, RGBA(0, 0, 0, 0.5) 30%, RGBA(0, 0, 0, 0) 100%);
  background: -o-linear-gradient(left, RGBA(0, 0, 0, 0.8) 0%, RGBA(0, 0, 0, 0.5) 30%, RGBA(0, 0, 0, 0) 100%);
  background: -ms-linear-gradient(left, RGBA(0, 0, 0, 0.8) 0%, RGBA(0, 0, 0, 0.5) 30%, RGBA(0, 0, 0, 0) 100%);
  background: linear-gradient(to right, RGBA(0, 0, 0, 0.8) 0%, RGBA(0, 0, 0, 0.5) 30%, RGBA(0, 0, 0, 0) 100%);
}
.location-element_v2 .location-element__picture:before {
  background: -webkit-linear-gradient(left, RGBA(0, 0, 0, 0.8) 0%, RGBA(0, 0, 0, 0.5) 30%, RGBA(0, 0, 0, 0) 100%);
  background: -moz-linear-gradient(left, RGBA(0, 0, 0, 0.8) 0%, RGBA(0, 0, 0, 0.5) 30%, RGBA(0, 0, 0, 0) 100%);
  background: -o-linear-gradient(left, RGBA(0, 0, 0, 0.8) 0%, RGBA(0, 0, 0, 0.5) 30%, RGBA(0, 0, 0, 0) 100%);
  background: -ms-linear-gradient(left, RGBA(0, 0, 0, 0.8) 0%, RGBA(0, 0, 0, 0.5) 30%, RGBA(0, 0, 0, 0) 100%);
  background: linear-gradient(to right, RGBA(0, 0, 0, 0.8) 0%, RGBA(0, 0, 0, 0.5) 30%, RGBA(0, 0, 0, 0) 100%);
}
.location-element_v2 .location-element__title {
  text-align: left;
  color: RGBA(255, 255, 255, 1);
  margin-left: -80px;
}
@media only screen and (max-width: 991px) {
  .location-element_v2 .location-element__title {
    margin-left: 0;
  }
}
.location-element_v3 .location-element__picture:before {
  background: -webkit-linear-gradient(left, RGBA(0, 0, 0, 0.8) 0%, RGBA(0, 0, 0, 0.5) 30%, RGBA(0, 0, 0, 0) 100%);
  background: -moz-linear-gradient(left, RGBA(0, 0, 0, 0.8) 0%, RGBA(0, 0, 0, 0.5) 30%, RGBA(0, 0, 0, 0) 100%);
  background: -o-linear-gradient(left, RGBA(0, 0, 0, 0.8) 0%, RGBA(0, 0, 0, 0.5) 30%, RGBA(0, 0, 0, 0) 100%);
  background: -ms-linear-gradient(left, RGBA(0, 0, 0, 0.8) 0%, RGBA(0, 0, 0, 0.5) 30%, RGBA(0, 0, 0, 0) 100%);
  background: linear-gradient(to right, RGBA(0, 0, 0, 0.8) 0%, RGBA(0, 0, 0, 0.5) 30%, RGBA(0, 0, 0, 0) 100%);
}
.location-element_v3 .location-element__title {
  text-align: right;
  margin-right: -80px;
  margin-left: 0;
  color: RGBA(255, 255, 255, 0.25);
}
@media only screen and (max-width: 991px) {
  .location-element_v3 .location-element__title {
    margin-right: 0;
    text-align-last: left;
    color: RGBA(255, 255, 255, 0.5);
  }
}
.location-element_v4 .location-element__picture:before {
  background: -webkit-linear-gradient(left, RGBA(0, 0, 0, 0.8) 0%, RGBA(0, 0, 0, 0.5) 30%, RGBA(0, 0, 0, 0) 100%);
  background: -moz-linear-gradient(left, RGBA(0, 0, 0, 0.8) 0%, RGBA(0, 0, 0, 0.5) 30%, RGBA(0, 0, 0, 0) 100%);
  background: -o-linear-gradient(left, RGBA(0, 0, 0, 0.8) 0%, RGBA(0, 0, 0, 0.5) 30%, RGBA(0, 0, 0, 0) 100%);
  background: -ms-linear-gradient(left, RGBA(0, 0, 0, 0.8) 0%, RGBA(0, 0, 0, 0.5) 30%, RGBA(0, 0, 0, 0) 100%);
  background: linear-gradient(to right, RGBA(0, 0, 0, 0.8) 0%, RGBA(0, 0, 0, 0.5) 30%, RGBA(0, 0, 0, 0) 100%);
}
.location-element_v4 .location-element__title {
  color: RGBA(255, 255, 255, 0.25);
  margin-left: -80px;
}
@media only screen and (max-width: 991px) {
  .location-element_v4 .location-element__title {
    margin-left: 0;
    text-align-last: left;
    color: RGBA(255, 255, 255, 0.5);
  }
}
.title-head {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
}
@media only screen and (min-width: 992px) {
  .title-head {
    -webkit-box-align: center;
    -moz-box-align: center;
    -o-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-box-pack: justify;
    -moz-box-pack: justify;
    -o-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    margin-bottom: 48px;
  }
}
@media only screen and (max-width: 991px) {
  .title-head {
    -webkit-box-orient: vertical;
    -moz-box-orient: vertical;
    -o-box-orient: vertical;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-bottom: 24px;
  }
}
.title-head svg {
  height: 40px;
  width: auto;
}
.title-head svg path {
  fill: #1b4626;
}
@media only screen and (max-width: 991px) {
  .title-head svg {
    height: 24px;
    margin-bottom: 16px;
  }
}
.house-card {
  margin-top: 48px;
  background-color: #fff;
  border-radius: 24px;
  border: 1px solid rgba(0,0,0,0.1);
  -webkit-box-shadow: 0 65px 100px 0 rgba(0,0,0,0.06), 0 19.596px 30.147px 0 rgba(0,0,0,0.04), 0 8.139px 12.522px 0 rgba(0,0,0,0.03), 0 2.944px 4.529px 0 rgba(0,0,0,0.02);
  box-shadow: 0 65px 100px 0 rgba(0,0,0,0.06), 0 19.596px 30.147px 0 rgba(0,0,0,0.04), 0 8.139px 12.522px 0 rgba(0,0,0,0.03), 0 2.944px 4.529px 0 rgba(0,0,0,0.02);
  padding: 16px;
  margin-right: 24px;
}
.house-card__pictures {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -o-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  gap: 16px;
}
.house-card__general-picture {
  height: 240px;
  width: 340px;
  background-size: cover;
  background-position: center;
  border-radius: 16px;
  overflow: hidden;
}
@media only screen and (max-width: 991px) {
  .house-card__general-picture {
    height: 160px;
    width: 240px;
  }
}
.house-card__plan-picture {
  width: auto;
  height: 240px;
  border-radius: 16px;
  overflow: hidden;
}
@media only screen and (max-width: 991px) {
  .house-card__plan-picture {
    height: 160px;
  }
}
.house-card__content {
  padding: 24px 0;
}
.house-card__title {
  font-weight: bold;
  font-size: 24px;
  text-transform: uppercase;
}
.house-card__description {
  font-size: 14px;
  opacity: 0.75;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=75)";
  filter: alpha(opacity=75);
}
.house-card__price {
  font-size: 32px;
  font-weight: bold;
  padding: 8px 0;
  color: #000;
}
.house-card__list p {
  font-size: 14px;
  color: RGBA(0, 0, 0, 0.5);
}
.house-card__buttons {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  gap: 16px;
}
.splide__track_ov {
  overflow: visible;
  width: 100%;
}
.service-title {
  color: #fff;
  text-align: right;
}
.service-title h2 {
  font-size: 40px;
  text-transform: uppercase;
}
@media only screen and (max-width: 991px) {
  .service-title h2 {
    font-size: 24px;
  }
}
.service-title p {
  text-transform: uppercase;
  opacity: 0.5;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
  filter: alpha(opacity=50);
  font-size: 24px;
}
@media only screen and (max-width: 991px) {
  .service-title p {
    font-size: 18px;
  }
}
.service-text {
  color: #fff;
  font-size: 18px;
  margin-top: 32px;
}
.security-list {
  margin-bottom: -16px;
  margin-top: 32px;
}
.security-element {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -o-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  color: #fff;
  width: 50%;
}
@media only screen and (max-width: 1199px) {
  .security-element {
    width: 100%;
  }
}
.security-element svg {
  width: 40px;
  height: 40px;
}
.security-element svg path {
  fill: #fff;
}
.security-element__content {
  padding: 24px;
  border-radius: 16px;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(5px);
  width: 100%;
}
.territory-cards {
  margin-bottom: -24px;
  margin-top: 48px;
}
@media only screen and (max-width: 991px) {
  .territory-cards {
    margin-top: 16px;
  }
}
.territory-cards >.row {
  margin-bottom: 24px;
}
@media only screen and (max-width: 991px) {
  .territory-cards >.row {
    margin: 0;
  }
}
.territory-card {
  background-color: #fff;
  padding: 24px;
  border-radius: 16px;
}
@media only screen and (max-width: 991px) {
  .territory-card {
    margin-bottom: 16px;
  }
}
.territory-card__icon {
  margin-bottom: 12px;
}
.territory-card svg {
  width: 32px;
  height: 32px;
}
.territory-card svg path {
  fill: #1b4626;
}
.communications {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -o-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  gap: 32px;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -o-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  max-width: 80%;
  margin: 0 auto;
  margin-top: 32px;
}
@media only screen and (max-width: 1399px) {
  .communications {
    max-width: 100%;
  }
}
@media only screen and (max-width: 1199px) {
  .communications {
    margin-top: 24px;
  }
}
@media only screen and (max-width: 991px) {
  .communications {
    display: block;
  }
}
.communications >p {
  text-align: right;
  opacity: 0.5;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
  filter: alpha(opacity=50);
}
@media only screen and (max-width: 991px) {
  .communications >p {
    text-align: center;
    margin-bottom: 24px;
  }
}
.communications-element {
  white-space: nowrap;
}
@media only screen and (max-width: 991px) {
  .communications-element {
    margin-bottom: 16px;
    text-align: left;
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: box;
    display: flex;
    gap: 16px;
    -webkit-box-align: center;
    -moz-box-align: center;
    -o-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
  }
}
.communications-element__icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  margin-bottom: 16px;
  background-color: #1b4626;
  display: -webkit-inline-box;
  display: -moz-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-box;
  display: inline-flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -o-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -o-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.communications-element__icon svg {
  width: 18px;
  height: 18px;
}
.communications-element__icon svg path {
  fill: #fff;
}
@media only screen and (max-width: 991px) {
  .communications-element__icon {
    width: 64px;
    height: 64px;
    margin-bottom: 0;
  }
  .communications-element__icon svg {
    width: 24px;
    height: 24px;
  }
}
@media only screen and (max-width: 991px) {
  .communications-element >p {
    font-size: 18px;
    font-weight: bold;
  }
}
.gallery-element img {
  height: 320px;
  width: auto;
}
@media only screen and (max-width: 991px) {
  .gallery-element img {
    height: 160px;
  }
}
.tour-text {
  color: #fff;
  max-width: 50%;
  margin-left: auto;
  margin-bottom: -24px;
  text-align: right;
}
@media only screen and (max-width: 1199px) {
  .tour-text {
    max-width: 70%;
  }
}
@media only screen and (max-width: 991px) {
  .tour-text {
    max-width: 100%;
  }
}
.tour-text >* {
  margin-bottom: 24px;
}
.tour-text h2 {
  font-weight: bold;
  font-size: 48px;
  text-transform: uppercase;
}
@media only screen and (max-width: 991px) {
  .tour-text h2 {
    font-size: 24px;
  }
}
.disclaimer-note {
  font-size: 12px;
  opacity: 0.5;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
  filter: alpha(opacity=50);
  margin-top: 12px;
  line-height: 150%;
}
.footer {
  background: #000;
  color: #fff;
  padding: 40px 0;
}
@media only screen and (max-width: 991px) {
  .footer {
    padding: 24px 0;
  }
}
@media only screen and (min-width: 992px) {
  .footer__inner {
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: box;
    display: flex;
    -webkit-box-align: center;
    -moz-box-align: center;
    -o-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-box-pack: justify;
    -moz-box-pack: justify;
    -o-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
  }
}
@media only screen and (max-width: 991px) {
  .footer__info {
    margin-bottom: 24px;
  }
}
.footer__logo {
  margin-bottom: 24px;
}
@media only screen and (max-width: 991px) {
  .footer__logo {
    margin-bottom: 16px;
  }
}
.footer__logo img {
  max-height: 40px;
}
.footer__links p {
  display: block;
}
.footer__links a {
  display: -webkit-inline-box;
  display: -moz-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-box;
  display: inline-flex;
  opacity: 0.5;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
  filter: alpha(opacity=50);
  font-size: 12px;
}
.footer__general {
  text-align: right;
}
.footer__contacts {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -o-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: end;
  -moz-box-pack: end;
  -o-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  gap: 24px;
}
@media only screen and (max-width: 1199px) {
  .footer__contacts {
    display: block;
    margin-bottom: -8px;
    text-align: right;
  }
  .footer__contacts >* {
    -webkit-box-pack: end;
    -moz-box-pack: end;
    -o-box-pack: end;
    -ms-flex-pack: end;
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
    margin-bottom: 8px;
  }
}
@media only screen and (max-width: 991px) {
  .footer__contacts {
    text-align: left;
  }
  .footer__contacts >* {
    -webkit-box-pack: start;
    -moz-box-pack: start;
    -o-box-pack: start;
    -ms-flex-pack: start;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
}
.footer-contact {
  display: -webkit-inline-box;
  display: -moz-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-box;
  display: inline-flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -o-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  gap: 16px;
  white-space: nowrap;
}
@media only screen and (max-width: 991px) {
  .footer-contact {
    white-space: normal;
  }
}
.footer-contact__icon {
  width: 40px;
  height: 40px;
  background-color: #1b4626;
  border-radius: 50%;
  display: -webkit-inline-box;
  display: -moz-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-box;
  display: inline-flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -o-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -o-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.footer-contact__icon svg {
  width: 16px;
  width: 16px;
}
.footer-contact__icon svg path {
  fill: #fff;
}
.footer__nav {
  margin-top: 16px;
}
.footer__nav ul {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -o-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: end;
  -moz-box-pack: end;
  -o-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  gap: 24px;
}
.footer__nav ul li a {
  color: #fff;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  opacity: 0.75;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=75)";
  filter: alpha(opacity=75);
}
.footer__nav ul li a:hover {
  opacity: 1;
  -ms-filter: none;
  filter: none;
}
.footer__legal-notice {
  margin-top: 24px;
  text-align: left;
}
.footer__legal-notice p {
  font-size: 12px;
  opacity: 0.6;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=60)";
  filter: alpha(opacity=60);
  line-height: 150%;
}
.footer__disclaimer {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  text-align: left;
}
.footer__disclaimer-toggle {
  display: -webkit-inline-box;
  display: -moz-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-box;
  display: inline-flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -o-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  gap: 8px;
  background: none;
  border: none;
  padding: 0;
  color: #fff;
  opacity: 0.6;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=60)";
  filter: alpha(opacity=60);
  font-family: 'Geologica', system-ui, -apple-system, 'Segoe UI', sans-serif;
  font-size: 12px;
  cursor: pointer;
  -webkit-transition: opacity 0.2s ease-in-out;
  -moz-transition: opacity 0.2s ease-in-out;
  -o-transition: opacity 0.2s ease-in-out;
  -ms-transition: opacity 0.2s ease-in-out;
  transition: opacity 0.2s ease-in-out;
}
.footer__disclaimer-toggle:hover {
  opacity: 1;
  -ms-filter: none;
  filter: none;
}
.footer__disclaimer-arrow {
  -webkit-transition: transform 0.25s ease-in-out;
  -moz-transition: transform 0.25s ease-in-out;
  -o-transition: transform 0.25s ease-in-out;
  -ms-transition: transform 0.25s ease-in-out;
  transition: transform 0.25s ease-in-out;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.footer__disclaimer-text {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: alpha(opacity=0);
  -webkit-transition: max-height 0.35s ease-in-out, opacity 0.25s ease-in-out;
  -moz-transition: max-height 0.35s ease-in-out, opacity 0.25s ease-in-out;
  -o-transition: max-height 0.35s ease-in-out, opacity 0.25s ease-in-out;
  -ms-transition: max-height 0.35s ease-in-out, opacity 0.25s ease-in-out;
  transition: max-height 0.35s ease-in-out, opacity 0.25s ease-in-out;
}
.footer__disclaimer-text p {
  font-size: 12px;
  line-height: 150%;
  opacity: 0.6;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=60)";
  filter: alpha(opacity=60);
  margin-top: 12px;
}
.footer__disclaimer.footer__disclaimer_open .footer__disclaimer-arrow {
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}
.footer__disclaimer.footer__disclaimer_open .footer__disclaimer-text {
  max-height: 2000px;
  opacity: 1;
  -ms-filter: none;
  filter: none;
}
.footer__offer-mark {
  margin-top: 16px;
  text-align: left;
  font-size: 11px;
  opacity: 0.4;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=40)";
  filter: alpha(opacity=40);
}
@media only screen and (max-width: 991px) {
  .slogan {
    padding: 48px 0;
  }
  .slogan h2 {
    font-size: 32px;
  }
}
.house-card__general-picture {
  cursor: pointer;
  -webkit-transition: opacity 0.25s ease-in-out;
  -moz-transition: opacity 0.25s ease-in-out;
  -o-transition: opacity 0.25s ease-in-out;
  -ms-transition: opacity 0.25s ease-in-out;
  transition: opacity 0.25s ease-in-out;
}
.house-card__general-picture:hover {
  opacity: 0.88;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=88)";
  filter: alpha(opacity=88);
}
.house-card__plan-picture {
  cursor: pointer;
  -webkit-transition: opacity 0.25s ease-in-out;
  -moz-transition: opacity 0.25s ease-in-out;
  -o-transition: opacity 0.25s ease-in-out;
  -ms-transition: opacity 0.25s ease-in-out;
  transition: opacity 0.25s ease-in-out;
}
.house-card__plan-picture:hover {
  opacity: 0.88;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=88)";
  filter: alpha(opacity=88);
}
.hmodal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 900;
  -webkit-box-align: center;
  -moz-box-align: center;
  -o-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -o-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  padding: 20px;
}
.hmodal--open {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
}
.hmodal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.62);
  cursor: pointer;
}
.hmodal__window {
  position: relative;
  z-index: 1;
  background: #fff;
  border-radius: 24px;
  max-width: 820px;
  width: 100%;
  max-height: 92vh;
  overflow-y: auto;
  overscroll-behavior: contain;
}
.hmodal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  background: rgba(0,0,0,0.07);
  border-radius: 50%;
  border: none;
  cursor: pointer;
  font-size: 20px;
  line-height: 1;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -o-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -o-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-transition: background 0.2s ease;
  -moz-transition: background 0.2s ease;
  -o-transition: background 0.2s ease;
  -ms-transition: background 0.2s ease;
  transition: background 0.2s ease;
  z-index: 2;
  color: #333;
}
.hmodal__close:hover {
  background: rgba(0,0,0,0.14);
}
.hmodal__head {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-align: start;
  -moz-box-align: start;
  -o-box-align: start;
  -ms-flex-align: start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
  gap: 16px;
  padding: 28px 28px 16px;
}
@media only screen and (max-width: 600px) {
  .hmodal__head {
    -webkit-box-orient: vertical;
    -moz-box-orient: vertical;
    -o-box-orient: vertical;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 20px 16px 12px;
  }
}
.hmodal__gallery-left {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -o-box-flex: 1;
  box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  min-width: 0;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-orient: vertical;
  -moz-box-orient: vertical;
  -o-box-orient: vertical;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 12px;
}
@media only screen {
  .hmodal__gallery-left {
    width: 100%;
  }
}
.hmodal__main-wrap {
  border-radius: 12px;
  overflow: hidden;
  cursor: zoom-in;
  background: #f0f0f0;
}
.hmodal__main-img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
  -webkit-transition: opacity 0.25s ease;
  -moz-transition: opacity 0.25s ease;
  -o-transition: opacity 0.25s ease;
  -ms-transition: opacity 0.25s ease;
  transition: opacity 0.25s ease;
}
@media only screen and (max-width: 991px) {
  .hmodal__main-img {
    height: 240px;
  }
}
.hmodal__thumbs {
  margin-top: 0;
}
.hmodal__thumbs-splide.splide {
  padding: 0;
}
.hmodal__thumb {
  width: 92px;
  height: 64px;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
  display: block;
  border: 2px solid transparent;
  -webkit-transition: border-color 0.2s ease, opacity 0.2s ease;
  -moz-transition: border-color 0.2s ease, opacity 0.2s ease;
  -o-transition: border-color 0.2s ease, opacity 0.2s ease;
  -ms-transition: border-color 0.2s ease, opacity 0.2s ease;
  transition: border-color 0.2s ease, opacity 0.2s ease;
  opacity: 0.7;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=70)";
  filter: alpha(opacity=70);
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-user-drag: none;
}
@media only screen and (max-width: 600px) {
  .hmodal__thumb {
    width: 72px;
    height: 50px;
  }
}
.hmodal__thumb:hover {
  opacity: 1;
  -ms-filter: none;
  filter: none;
}
.hmodal__thumb--active {
  border-color: #1b4626;
  opacity: 1;
  -ms-filter: none;
  filter: none;
}
.hmodal__plan-wrap {
  width: 210px;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
@media only screen and (max-width: 600px) {
  .hmodal__plan-wrap {
    width: 100%;
  }
}
.hmodal__plan-img {
  width: 100%;
  border-radius: 12px;
  object-fit: contain;
  display: block;
  background: #f8f8f8;
  cursor: zoom-in;
  -webkit-transition: opacity 0.2s ease;
  -moz-transition: opacity 0.2s ease;
  -o-transition: opacity 0.2s ease;
  -ms-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}
.hmodal__plan-img:hover {
  opacity: 0.88;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=88)";
  filter: alpha(opacity=88);
}
@media only screen and (max-width: 991px) {
  .hmodal__plan-img {
    max-height: 240px;
  }
}
.hmodal__info {
  padding: 8px 28px 28px;
}
@media only screen and (max-width: 600px) {
  .hmodal__info {
    padding: 8px 16px 20px;
  }
}
.hmodal__title {
  font-size: 22px;
  font-weight: 600;
  color: #000;
}
.hmodal__desc {
  font-size: 14px;
  color: rgba(0,0,0,0.5);
}
.hmodal__price {
  font-size: 32px;
  font-weight: bold;
  padding: 8px 0;
}
.hmodal__price span {
  color: #000;
}
.hmodal__list p {
  font-size: 14px;
  color: RGBA(0, 0, 0, 0.5);
}
.hmodal__disclaimer {
  font-size: 12px;
  color: rgba(0, 0, 0, 0.4);
  margin-top: 8px;
}
.hmodal__buttons {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  gap: 12px;
  -webkit-box-lines: multiple;
  -moz-box-lines: multiple;
  -o-box-lines: multiple;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-top: 16px;
}
.hmodal__buttons .btn {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -o-box-flex: 1;
  box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  min-width: 120px;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -o-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
@media only screen and (max-width: 480px) {
  .hmodal__buttons {
    -webkit-box-orient: vertical;
    -moz-box-orient: vertical;
    -o-box-orient: vertical;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
body.hmodal-open {
  overflow: hidden;
}
