@font-face {
  font-family: "Open Sans";
  src: url(../fonts/OpenSans-Regular.ttf?17e98b9e5586529b13ccb1f7af16861c);
  font-weight: 400;
}
@font-face {
  font-family: "Open Sans";
  src: url(../fonts/OpenSans-SemiboldItalic.ttf?2010272e7b458452ae46966c2ae09829);
  font-style: italic;
  font-weight: 600;
}
@font-face {
  font-family: "Open Sans";
  src: url(../fonts/OpenSans-Semibold.ttf?029b9bc9d72f4d799803735f6295f763);
  font-weight: 600;
}
@font-face {
  font-family: "Lora";
  src: url(../fonts/Lora-Bold.ttf?6925b3e17e535cffec13b9b7518d5da6);
  font-weight: 700;
}
@font-face {
  font-family: "Lora";
  src: url(../fonts/Lora-Medium.ttf?2d39b3fb9e37292b943eed08b450926c);
  font-weight: 500;
}
* {
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
  -webkit-overflow-scrolling: touch;
}

*::-moz-selection {
  background: #cfc5ba; /* WebKit/Blink Browsers */
}

*::selection {
  background: #cfc5ba; /* WebKit/Blink Browsers */
}

*::-moz-selection {
  background: #cfc5ba; /* Gecko Browsers */
}

html {
  font-size: 16px;
}
@media screen and (max-width: 1600px) {
  html {
    font-size: 15px;
  }
}
@media screen and (max-width: 1440px) {
  html {
    font-size: 13px;
  }
}
@media screen and (max-width: 1366px) {
  html {
    font-size: 13px;
  }
}
@media screen and (max-width: 1100px) {
  html {
    font-size: 12px;
  }
}
@media screen and (max-width: 768px) {
  html {
    font-size: 14px;
  }
}

body {
  background: #fff;
  width: 100%;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

nav {
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  width: calc(100% - 18.75rem);
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
nav .top {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  border-bottom: 1px solid #fff;
  height: 7rem;
  margin-bottom: 1.25rem;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  nav {
    justify-content: flex-start;
  }
}
@media screen and (max-width: 1200px) {
  nav {
    display: none;
  }
}
nav .logo {
  display: flex;
  margin-right: 2.5rem;
  height: calc(100% - 2rem);
}
@media screen and (max-width: 1366px) {
  nav .logo {
    margin-right: 2rem;
  }
}
@media screen and (max-width: 1280px) {
  nav .logo {
    margin-right: 1.5rem;
  }
}
nav .logo img {
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
nav .urban-awards {
  display: flex;
  align-items: center;
}
nav .urban-awards img {
  width: 3.75rem;
  -o-object-fit: contain;
     object-fit: contain;
}
nav .urban-awards span {
  font: 400 1rem "Open Sans";
  line-height: 110%;
  font-size: 0.8125rem;
  font-weight: 400;
  color: #fff;
  display: flex;
  margin-left: 0.625rem;
  max-width: 7.5rem;
}
nav ul {
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(8, auto);
  gap: 2.6rem;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  nav ul {
    display: flex;
    flex-direction: row;
  }
}
@media screen and (max-width: 1600px) and (min-width: 1441px) {
  nav ul {
    gap: 2.1rem;
  }
}
@media screen and (max-width: 1366px) {
  nav ul {
    gap: 2.1rem;
  }
}
@media screen and (max-width: 1280px) {
  nav ul {
    gap: 1.7rem;
  }
}
nav ul li {
  display: flex;
  font: 400 1rem "Open Sans";
  font-size: 0.85rem;
  color: #fff;
  cursor: pointer;
  position: relative;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  nav ul li {
    margin-right: 2.6rem;
  }
}
nav ul li::after, nav ul li::before {
  content: "";
  position: absolute;
  width: 0%;
  height: 1px;
  bottom: -3px;
  background: #fff;
  pointer-events: none;
}
nav ul li::after {
  right: 0;
  background: #fff;
  transition: width 0.8s cubic-bezier(0.22, 0.61, 0.36, 1);
}
nav ul li::before {
  left: 0;
}
nav ul li:hover::after {
  background: transparent;
  width: 100%;
  transition: 0s;
}
nav ul li:hover::before {
  background: #fff;
  width: 100%;
  transition: width 0.5s cubic-bezier(0.22, 0.61, 0.36, 1);
}
nav ul li.active::after {
  width: 100%;
}
nav ul li a {
  text-decoration: none;
  color: #fff;
  font: 400 1rem "Open Sans";
  font-size: 0.85rem;
}
nav ul li.dropdown-wrapper {
  display: flex;
  flex-direction: column;
  position: relative;
}
nav ul li.dropdown-wrapper::before {
  display: none;
}
nav ul li.dropdown-wrapper::after {
  width: 0.5rem;
  height: 0.5rem;
  background-image: url("../images/arrow-up-filled.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  background-color: transparent;
  top: 50%;
  right: -0.5rem;
  transform: translateX(50%) translateY(-50%) rotate(180deg);
  transition: 0.3s ease;
}
nav ul li.dropdown-wrapper .dropdown {
  display: flex;
  flex-direction: column;
}
nav ul li.dropdown-wrapper .dropdown .dropdown-links {
  opacity: 0;
  pointer-events: none;
  transition: 0.3s ease;
  display: flex;
  flex-direction: column;
  position: absolute;
  left: 0;
  top: 0;
  padding-top: 1.75rem;
}
nav ul li.dropdown-wrapper .dropdown .dropdown-links:hover {
  opacity: 1;
  pointer-events: auto;
}
nav ul li.dropdown-wrapper .dropdown .dropdown-links a {
  white-space: nowrap;
  margin-bottom: 0.625rem;
  font-size: 0.85rem;
  line-height: 1.125rem;
  position: relative;
}
nav ul li.dropdown-wrapper .dropdown .dropdown-links a::after, nav ul li.dropdown-wrapper .dropdown .dropdown-links a::before {
  content: "";
  position: absolute;
  width: 0%;
  height: 1px;
  bottom: -3px;
  background: #fff;
  pointer-events: none;
}
nav ul li.dropdown-wrapper .dropdown .dropdown-links a::after {
  right: 0;
  background: #fff;
  transition: width 0.8s cubic-bezier(0.22, 0.61, 0.36, 1);
}
nav ul li.dropdown-wrapper .dropdown .dropdown-links a::before {
  left: 0;
}
nav ul li.dropdown-wrapper .dropdown .dropdown-links a:hover::after {
  background: transparent;
  width: 100%;
  transition: 0s;
}
nav ul li.dropdown-wrapper .dropdown .dropdown-links a:hover::before {
  background: #fff;
  width: 100%;
  transition: width 0.5s cubic-bezier(0.22, 0.61, 0.36, 1);
}
nav ul li.dropdown-wrapper:hover::after {
  transform: translateX(50%) translateY(-50%) rotate(0deg);
}
nav ul li.dropdown-wrapper:hover .dropdown .dropdown-links {
  opacity: 1;
  pointer-events: auto;
}
nav .phone {
  color: #fff;
  text-decoration: none;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin-left: auto;
}
nav .phone .icon {
  margin-right: 0.95rem;
  width: 1.25rem;
  height: 1.25rem;
}
nav .phone .icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
nav .phone span {
  font: 600 1rem "Open Sans";
  font-size: 1rem;
}
nav .download {
  color: #fff;
  text-decoration: none;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  position: relative;
  margin-left: 5rem;
  border: 1px solid #fff;
  padding: 0.75rem 1.125rem;
  font: 400 1rem "Open Sans";
  font-size: 0.82rem;
  cursor: pointer;
}
nav .download:not(.pdf) {
  margin-left: 1rem;
}
@media screen and (max-width: 1366px) {
  nav .download {
    margin-left: 4rem;
  }
}
@media screen and (max-width: 1280px) {
  nav .download {
    margin-left: 3rem;
  }
}
nav .download span {
  transition: 0.3s ease;
  z-index: 1;
}
nav .download .icon {
  margin-right: 0.625rem;
  height: 0.82rem;
  z-index: 1;
  position: relative;
}
nav .download .icon svg {
  width: auto;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  nav .download .icon svg {
    max-width: 15px;
  }
}
nav .download .icon svg path {
  fill: #fff;
  transition: 0.3s ease;
}
nav .download.link .icon {
  width: 1.5rem;
  height: 1.2rem;
}
nav .download.link .icon svg {
  width: 100%;
}
nav .download::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  transform: scaleY(0);
  transition: 0.3s ease;
  background: #fff;
  z-index: 0;
  left: 0;
  transform-origin: bottom;
}
nav .download:hover span {
  color: #A39382;
}
nav .download:hover svg path {
  fill: #A39382;
}
nav .download:hover::before {
  transform: scaleY(1);
}

.burger_button {
  position: fixed;
  right: 1.7rem;
  top: 2.5rem;
  width: 40px;
  z-index: 3;
  flex-direction: column;
  align-items: flex-end;
  display: none;
  cursor: pointer;
}
@media screen and (max-width: 1200px) {
  .burger_button {
    display: flex;
  }
}
.burger_button div {
  width: 100%;
  height: 3px;
  background-color: #fff;
  margin-bottom: 6px;
}
.burger_button div:not(:nth-child(2)) {
  width: 75%;
}
.burger_button div:not(:nth-child(2))::after {
  width: 75%;
}
.burger_button img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.burger {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow-y: auto;
  overflow-x: hidden;
  background: transparent;
  z-index: 4;
  display: none;
  pointer-events: none;
}
.burger::before, .burger::after {
  content: "";
  width: 50%;
  height: 100%;
  background-color: #A39382;
  position: fixed;
  left: 0;
  top: 0;
  transform-origin: bottom;
  transform: scaleY(0);
  transition: 0.5s ease;
  transition-delay: 0s;
  z-index: -1;
}
.burger::after {
  left: unset;
  right: 0;
  transform-origin: top;
}
@media screen and (max-width: 1200px) and (min-width: 900px) {
  .burger {
    width: 100%;
    left: unset;
    right: 0;
  }
  .burger::before {
    width: 100%;
    background: rgba(0, 0, 0, 0.3);
    transform: scaleY(1);
    opacity: 0;
  }
  .burger.active::before {
    opacity: 1;
  }
}
@media screen and (max-width: 1200px) {
  .burger {
    display: block;
  }
}
.burger .inner {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 2.9rem 1.8rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  opacity: 0;
  transition: 0.3s ease;
}
@media screen and (max-width: 1200px) and (min-width: 900px) {
  .burger .inner {
    width: 50%;
    margin-left: auto;
    padding: 2.9rem 4rem;
  }
}
@media screen and (max-width: 900px) and (min-width: 601px) {
  .burger .inner {
    padding: 2.9rem 6.7rem;
  }
}
.burger .inner .burger_button {
  width: 1.9rem;
}
.burger .inner .slogan {
  width: 1.9rem;
  position: absolute;
  right: 1.8rem;
  top: 35%;
  transform: translateY(-50%);
  pointer-events: none;
}
.burger .inner .slogan img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.burger .inner .logo {
  margin-bottom: 4.85rem;
}
@media screen and (max-width: 1200px) {
  .burger .inner .logo {
    width: 30%;
  }
}
@media screen and (max-width: 900px) {
  .burger .inner .logo {
    width: 47%;
  }
}
.burger .inner .logo img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.burger .inner ul {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  margin: 0;
  padding: 0;
  margin-bottom: 2.45rem;
  position: relative;
  width: 100%;
}
.burger .inner ul .hills {
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  transform: translateY(50%);
  pointer-events: none;
}
.burger .inner ul .hills img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.burger .inner ul li {
  display: flex;
  font: 500 1rem "Lora";
  font-size: 1.45rem;
  color: #fff;
}
.burger .inner ul li:not(:last-child) {
  margin-bottom: 1.8rem;
}
.burger .inner ul li a {
  color: #fff;
  text-decoration: none;
}
.burger .inner ul li.active {
  border-bottom: 1px solid #fff;
}
.burger .inner ul .dropdown-wrapper span {
  position: relative;
  display: flex;
  align-items: center;
}
.burger .inner ul .dropdown-wrapper span::after {
  content: "";
  width: 1rem;
  height: 0.8rem;
  background-image: url("../images/arrow-up-filled.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  margin-left: 0.5rem;
  transform: rotate(180deg);
  transition: 0.3s ease;
}
.burger .inner ul .dropdown-wrapper .dropdown-links {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  padding-left: 1rem;
  display: none;
}
.burger .inner ul .dropdown-wrapper .dropdown-links a:not(:last-child) {
  margin-bottom: 1rem;
}
.burger .inner ul .dropdown-wrapper.opened span::after {
  transform: none;
}
.burger .inner ul .dropdown-wrapper.opened .dropdown-links {
  display: flex;
}
.burger .inner .buttons {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: center;
  margin-bottom: 2.5rem;
}
.burger .inner .buttons a {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  align-items: center;
  justify-content: flex-start;
}
.burger .inner .buttons a:first-child {
  margin-right: 1.43rem;
}
.burger .inner .buttons a .icon {
  width: 3rem;
  height: 3rem;
  margin-bottom: 0.5rem;
}
.burger .inner .buttons a .icon svg {
  height: 100%;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  fill: #fff;
}
.burger .inner .buttons a span {
  color: #fff;
  text-decoration: none;
  font: 500 1rem "Lora";
  font-weight: 400;
  font-size: 1rem;
}
.burger .inner .download {
  color: #fff;
  text-decoration: none;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  position: relative;
  border: 1px solid #fff;
  padding: 0.9rem 1.3rem;
  font: 400 1rem "Open Sans";
  font-size: 0.93rem;
  margin-bottom: 2.5rem;
}
.burger .inner .download .icon {
  margin-right: 0.72rem;
  height: 0.93rem;
  z-index: 1;
}
.burger .inner .download .icon svg {
  width: auto;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.burger .inner .download .icon svg path {
  fill: #fff;
  transition: 0.3s ease;
}
.burger .inner .download span {
  z-index: 1;
  transition: 0.3s ease;
}
.burger .inner .download::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  transform: scaleY(0);
  transition: 0.3s ease;
  background: #fff;
  z-index: 0;
  left: 0;
  transform-origin: bottom;
}
.burger .inner .download:hover span {
  color: #A39382;
}
.burger .inner .download:hover svg path {
  fill: #A39382;
}
.burger .inner .download:hover::before {
  transform: scaleY(1);
}
.burger .inner .burger_contacts {
  padding-top: 2.5rem;
  border-top: 1px solid #fff;
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  width: 100%;
  padding-bottom: 2.9rem;
}
@media screen and (max-width: 320px) {
  .burger .inner .burger_contacts {
    align-items: flex-start;
    flex-direction: column;
  }
}
.burger .inner .burger_contacts .links {
  display: flex;
  flex-direction: column;
}
.burger .inner .burger_contacts .links a {
  font: 400 1rem "Open Sans";
  font-size: 1.15rem;
  text-decoration: none;
  color: #fff;
}
.burger .inner .burger_contacts .links a:first-child {
  margin-bottom: 0.5rem;
}
.burger .inner .burger_contacts .social {
  display: flex;
  flex-direction: row;
  margin: 0;
  padding: 0;
  margin-left: auto;
  width: auto;
}
@media screen and (max-width: 320px) {
  .burger .inner .burger_contacts .social {
    margin-left: 0;
    margin-top: 2rem;
  }
}
.burger .inner .burger_contacts .social li {
  display: flex;
  justify-content: center;
  align-items: center;
  width: auto;
  height: calc(1.375rem + 8px);
  overflow: hidden;
  position: relative;
  margin-bottom: 0;
}
.burger .inner .burger_contacts .social li::before, .burger .inner .burger_contacts .social li::after {
  content: "";
  width: 100%;
  height: 1px;
  background: #fff;
  position: absolute;
  left: 50%;
}
.burger .inner .burger_contacts .social li::before {
  left: 0;
  top: 0px;
  transform-origin: left;
  transform: translateX(-100%);
  transition: 0.6s ease;
}
.burger .inner .burger_contacts .social li::after {
  bottom: 0px;
  transform-origin: right;
  transform: translateX(-50%) scaleX(0);
  transition: 0.4s ease;
}
.burger .inner .burger_contacts .social li:hover::after {
  transition-delay: 0.2s;
  transform: translateX(-50%) scaleX(1);
}
.burger .inner .burger_contacts .social li:hover::before {
  transform: translateX(100%);
}
.burger .inner .burger_contacts .social li:not(:last-child) {
  margin-right: 1.5rem;
}
.burger .inner .burger_contacts .social li a {
  width: 100%;
  height: calc(100% - 8px);
}
.burger .inner .burger_contacts .social li a img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.burger.active {
  pointer-events: auto;
}
.burger.active::before, .burger.active::after {
  transform: scaleY(1);
  transition-delay: 0s;
}
.burger.active .inner {
  opacity: 1;
  transition-delay: 0.6s;
}

.block {
  display: flex;
  flex-direction: column;
  margin-bottom: 8.125rem;
  position: relative;
  overflow: hidden;
}
.block .heading {
  margin: 0;
  padding: 0;
  display: flex;
  align-items: flex-start;
  font: 500 1rem "Lora";
  font-size: 1.85rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #000;
  margin-bottom: 2rem;
}
@media screen and (max-width: 900px) {
  .block .heading {
    font-size: 1.6rem;
    margin-bottom: 2.3rem;
  }
}
.block .heading .animation_wrapper {
  display: block;
}
.block .heading .animation_wrapper .wrap {
  display: inline-flex;
  overflow: hidden;
}
.block .heading .animation_wrapper .wrap .text {
  position: relative;
  bottom: -100px;
  transition: bottom 1s cubic-bezier(0.23, 1, 0.32, 1);
  will-change: position, transform, bottom;
}
.block .heading .animation_wrapper .wrap.active .text {
  bottom: 0;
}
.block .heading::before {
  content: "A";
  color: transparent;
  min-width: 5.3rem;
  width: 5.3rem;
  border-bottom: 1px solid #000;
  margin-right: 2.56rem;
  transform: translateY(-50%);
}
@media screen and (max-width: 900px) {
  .block .heading::before {
    min-width: 3rem;
    width: 3rem;
    margin-right: 1.4rem;
  }
}
.block .more {
  display: flex;
  align-items: center;
  font: 600 1rem "Open Sans";
  font-size: 0.9rem;
  color: #000;
  text-decoration: none;
}
.block .more.light {
  color: #fff;
}
.block .more img {
  width: 3.125rem;
  -o-object-fit: contain;
     object-fit: contain;
  margin-left: 1.875rem;
  transform: translateY(12.5%);
  transition: 0.3s cubic-bezier(0.075, 0.82, 0.165, 1);
  will-change: transform;
}
@media screen and (max-width: 900px) {
  .block .more img {
    width: 3.6rem;
    margin-left: 2.15rem;
  }
}
@media screen and (max-width: 900px) {
  .block .more {
    font-size: 0.95rem;
  }
}
.block .more:hover img {
  /* animation: more 0.6s ease infinite;
  transform-origin: left center;
  @keyframes more {
      0% {
          transform: scaleX(1);
      }
      50% {
          transform: scaleX(0.8);
      }
      100% {
          transform: scaleX(1);
      }
  } */
  transform-origin: left center;
  transform: translateY(12.5%) translateX(10%);
}
.block .slogan {
  pointer-events: none;
  position: absolute;
  height: 3rem;
  bottom: 0;
  right: 0;
}
.block .slogan img {
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 900px) {
  .block .slogan {
    width: 50%;
    height: auto;
  }
  .block .slogan img {
    width: 100%;
    height: auto;
  }
}
@media screen and (max-width: 600px) {
  .block .slogan {
    width: 100%;
  }
}
.block .hills {
  pointer-events: none;
  position: absolute;
  width: 78vw;
  z-index: -1;
}
@media screen and (max-width: 900px) {
  .block .hills {
    width: 180%;
  }
}
.block .hills img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.block .hills .overflow_block {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: #fff;
  will-change: transform;
}
.block .hills.dark .overflow_block {
  background: #A39382;
}
.block .slider {
  padding: 0 16.485rem;
  position: relative;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 1200px) {
  .block .slider {
    padding: 0 7.86rem;
  }
}
@media screen and (max-width: 900px) {
  .block .slider {
    padding: 0;
  }
}
.block .slider .wrapper {
  width: 100%;
  padding-top: 56.25%;
  position: relative;
  margin-bottom: 1.875rem;
  display: flex;
}
@media screen and (max-width: 900px) {
  .block .slider .wrapper {
    margin-bottom: 1.45rem;
  }
}
.block .slider .wrapper .image {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  transition-duration: 0.7s;
  transition-timing-function: cubic-bezier(0.5, 0, 0.5, 1);
  will-change: transform, opacity;
}
.block .slider .wrapper .image img {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  -o-object-fit: contain;
     object-fit: contain;
  transition-duration: 0.7s;
  transition-timing-function: cubic-bezier(0.5, 0, 0.5, 1);
}
.block .slider .wrapper .image {
  opacity: 0;
  transform: translateX(-100%);
}
.block .slider .wrapper .image img {
  transform: scale(0.85);
}
.block .slider .wrapper .image[data-active] ~ .image {
  transform: translateX(100%);
}
.block .slider .wrapper .image[data-active] {
  opacity: 1;
  transform: translateX(0%);
}
.block .slider .wrapper .image[data-active] img {
  transform: scale(1);
}
.block .slider .button {
  position: absolute;
  width: 16.485rem;
  height: calc(100% - 3rem);
  top: 0;
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  transition: 0.3s ease;
  z-index: 2;
}
.block .slider .button[disabled] {
  opacity: 0.35;
}
@media screen and (max-width: 1200px) {
  .block .slider .button {
    width: 7.86rem;
  }
}
@media screen and (max-width: 900px) {
  .block .slider .button {
    bottom: 0;
    top: unset;
    width: auto;
    height: 1rem;
  }
}
.block .slider .button#prev {
  left: 0;
}
.block .slider .button#prev img {
  margin-left: auto;
  margin-right: 3.125rem;
}
@media screen and (max-width: 900px) {
  .block .slider .button#prev img {
    margin-right: 0;
    margin-left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
  }
}
.block .slider .button#next {
  right: 0;
}
.block .slider .button#next img {
  margin-right: auto;
  margin-left: 3.125rem;
  transform: rotate(180deg);
}
@media screen and (max-width: 900px) {
  .block .slider .button#next img {
    margin-right: 0;
    margin-left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
  }
}
.block .slider .counter {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 900px) {
  .block .slider .counter {
    justify-content: center;
  }
}
.block .slider .counter .current {
  color: #fff;
  font: 600 1rem "Open Sans";
  font-size: 1rem;
  margin-right: 0.35rem;
}
.block .slider .counter .delimeter {
  color: #fff;
  font: 400 1rem "Open Sans";
  font-size: 1rem;
  margin-right: 0.35rem;
}
.block .slider .counter .total {
  color: #fff;
  font: 400 1rem "Open Sans";
  font-size: 0.8rem;
}
@media screen and (max-width: 900px) {
  .block .slider .counter .total {
    font-size: 0.7rem;
  }
}
.block .slider.dark .counter .current, .block .slider.dark .counter .delimeter, .block .slider.dark .counter .total {
  color: #000;
}

.logo_block {
  background: #A39382;
  padding-top: 12rem;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 0;
  padding-bottom: 5rem;
}
.logo_block img {
  width: 17.6%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 900px) {
  .logo_block {
    padding-top: 4.3rem;
    padding-bottom: 4.3rem;
  }
  .logo_block img {
    width: 35%;
  }
}
@media screen and (max-width: 600px) {
  .logo_block img {
    width: 60%;
  }
}

.cottage_cards {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1.2rem;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cottage_cards {
    display: flex;
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 900px) {
  .cottage_cards {
    display: flex;
    flex-direction: column;
    gap: unset;
  }
}
.cottage_cards .cottage_card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: #000;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cottage_cards .cottage_card {
    width: calc(32% - 0.4rem);
    margin-bottom: 1.2rem;
  }
  .cottage_cards .cottage_card:not(:nth-child(3n)) {
    margin-right: 1.2rem;
  }
}
@media screen and (max-width: 900px) {
  .cottage_cards .cottage_card:not(:last-child) {
    margin-bottom: 1.45rem;
  }
}
.cottage_cards .cottage_card .preview {
  position: relative;
  width: 100%;
  padding-top: 66.7%;
  overflow: hidden;
}
.cottage_cards .cottage_card .preview img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.3s ease;
  will-change: transform;
}
.cottage_cards .cottage_card .card_info {
  padding: 1.875rem;
  width: 100%;
  border: 1px solid #000;
  border-top: none;
  height: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
}
.cottage_cards .cottage_card .card_info::before, .cottage_cards .cottage_card .card_info::after {
  content: "";
  width: 50%;
  height: 100%;
  position: absolute;
  background: #fff;
  z-index: 1;
  top: 0;
  transform: scaleY(0);
  transition: 0.45s ease;
  transition-delay: 0.6s;
  will-change: transform;
}
.cottage_cards .cottage_card .card_info::before {
  left: 0;
  transform-origin: top;
}
.cottage_cards .cottage_card .card_info::after {
  right: 0;
  transform-origin: bottom;
}
.cottage_cards .cottage_card .card_info .title {
  font: 700 1rem "Lora";
  font-size: 1.3rem;
  margin-bottom: 1.25rem;
}
@media screen and (max-width: 900px) {
  .cottage_cards .cottage_card .card_info .title {
    margin-bottom: 1.1rem;
  }
}
.cottage_cards .cottage_card .card_info .description {
  font: 400 1rem "Open Sans";
  font-size: 0.9rem;
  width: 100%;
  margin-bottom: 2.1rem;
}
@media screen and (max-width: 900px) {
  .cottage_cards .cottage_card .card_info .description {
    font-size: 1rem;
    margin-bottom: 2.15rem;
  }
}
.cottage_cards .cottage_card .card_info .more {
  margin-top: auto;
}
.cottage_cards .cottage_card .card_info .props {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  padding: 1.875rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  z-index: 2;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cottage_cards .cottage_card .card_info .props {
    display: flex;
    flex-wrap: wrap;
  }
}
.cottage_cards .cottage_card .card_info .props .prop {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(10px);
  transition: 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  will-change: transform, opacity;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cottage_cards .cottage_card .card_info .props .prop {
    width: 49%;
  }
}
.cottage_cards .cottage_card .card_info .props .prop:nth-child(1) {
  transition-delay: 0.15s;
}
.cottage_cards .cottage_card .card_info .props .prop:nth-child(2) {
  transition-delay: 0.3s;
}
.cottage_cards .cottage_card .card_info .props .prop:nth-child(3) {
  transition-delay: 0.45s;
}
.cottage_cards .cottage_card .card_info .props .prop:nth-child(4) {
  transition-delay: 0.6s;
}
.cottage_cards .cottage_card .card_info .props .prop .title {
  font-size: 1.6rem;
  margin-bottom: 5px;
  filter: blur(0px) !important;
}
.cottage_cards .cottage_card .card_info .props .prop .description {
  font-size: 1rem;
  margin-bottom: 0;
  width: auto;
  filter: blur(0px) !important;
}
.cottage_cards .cottage_card:hover .preview img {
  transform: scale(1.1);
}
@media screen and (min-width: 1025px) {
  .cottage_cards .cottage_card:hover .card_info::before, .cottage_cards .cottage_card:hover .card_info::after {
    transition-delay: 0s;
    transform: scaleY(1);
  }
  .cottage_cards .cottage_card:hover .props .prop {
    opacity: 1;
    transform: translateY(0);
  }
}

.service_cards {
  padding: 0 8.625rem;
}
@media screen and (max-width: 1200px) {
  .service_cards {
    padding: 0;
  }
}
@media screen and (max-width: 900px) {
  .service_cards {
    display: flex;
    flex-direction: column;
    gap: unset;
    padding: 0;
  }
}
.service_cards .service_card {
  display: flex;
  flex-direction: column;
  width: calc(50% - 5.15rem);
  float: left;
  margin-right: 10.3rem;
  text-decoration: none;
  color: #fff;
}
.service_cards .service_card:nth-child(2n) {
  margin-right: inherit;
  float: right;
}
.service_cards .service_card:nth-child(2) {
  margin-top: 0;
}
@media screen and (max-width: 900px) {
  .service_cards .service_card:nth-child(2) {
    margin-top: 0;
  }
}
@media screen and (max-width: 1200px) {
  .service_cards .service_card {
    width: calc(50% - 3rem);
    margin-right: 6rem;
  }
}
@media screen and (max-width: 900px) {
  .service_cards .service_card {
    width: 100%;
    margin-right: 0;
  }
}
.service_cards .service_card:not(:last-child) {
  margin-bottom: 3.75rem;
}
@media screen and (max-width: 600px) {
  .service_cards .service_card:not(:last-child) {
    margin-bottom: 2.9rem;
  }
}
.service_cards .service_card .image {
  width: 100%;
  position: relative;
  padding-top: 64%;
  margin-bottom: 1.875rem;
  overflow: hidden;
}
@media screen and (max-width: 900px) {
  .service_cards .service_card .image {
    margin-bottom: 1rem;
  }
}
.service_cards .service_card .image img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.3s ease;
  will-change: transform;
}
.service_cards .service_card .title {
  font: 700 1rem "Lora";
  font-size: 1.15rem;
  color: #fff;
  display: flex;
  flex-direction: row;
  align-items: center;
}
@media screen and (max-width: 900px) {
  .service_cards .service_card .title span {
    max-width: 75%;
  }
}
.service_cards .service_card .title img {
  margin-left: auto;
  width: 3.125rem;
  -o-object-fit: contain;
     object-fit: contain;
  transform: translateY(12.5%);
  transition: 0.3s cubic-bezier(0.075, 0.82, 0.165, 1);
  will-change: transform;
}
@media screen and (max-width: 900px) {
  .service_cards .service_card .title img {
    width: 3.6rem;
  }
}
.service_cards .service_card .overflow_block {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #A39382;
  will-change: transform;
}
.service_cards .service_card.dark .title {
  color: #000;
}
.service_cards .service_card.dark .overflow_block {
  background: #fff;
}
.service_cards .service_card:hover .image img {
  transform: scale(1.035) !important;
}
.service_cards .service_card:hover .title img {
  transform: translateY(12.5%) translateX(10%);
}

.news_list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  -moz-column-gap: 5.25rem;
       column-gap: 5.25rem;
  padding: 0 8.625rem;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .news_list {
    display: flex;
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 1200px) {
  .news_list {
    padding: 0;
  }
}
@media screen and (max-width: 900px) {
  .news_list {
    display: flex;
    flex-direction: column;
    gap: unset;
    width: 100%;
    padding: 0;
  }
}
.news_list .news_card {
  width: 100%;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: #000;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .news_list .news_card {
    width: calc(30% - 1.75rem);
    margin-bottom: 2.9rem;
  }
  .news_list .news_card:not(:nth-child(3n)) {
    margin-right: 5.25rem;
  }
}
@media screen and (max-width: 900px) {
  .news_list .news_card:not(:last-child) {
    margin-bottom: 2.9rem;
  }
}
.news_list .news_card .image {
  position: relative;
  width: 100%;
  padding-top: 67%;
  margin-bottom: 1.25rem;
  overflow: hidden;
}
.news_list .news_card .image img {
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.3s ease;
  will-change: transform;
}
@media screen and (max-width: 900px) {
  .news_list .news_card .image {
    margin-bottom: 1.1rem;
  }
}
.news_list .news_card .title {
  width: 100%;
  font: 700 1rem "Lora";
  color: #000;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid #000;
  margin-bottom: 1.25rem;
}
@media screen and (max-width: 900px) {
  .news_list .news_card .title {
    padding-bottom: 1.1rem;
    margin-bottom: 1.1rem;
    font-size: 1.15rem;
  }
}
.news_list .news_card .content {
  font: 400 1rem "Open Sans";
  color: #000;
  width: 100%;
  margin-bottom: 1.25rem;
  font-size: 0.9rem;
}
@media screen and (max-width: 900px) {
  .news_list .news_card .content {
    font-size: 1rem;
    margin-bottom: 1.1rem;
  }
}
.news_list .news_card .created_at {
  font: 400 1rem "Open Sans";
  color: #acacac;
  font-size: 0.85rem;
}
@media screen and (max-width: 900px) {
  .news_list .news_card .created_at {
    font-size: 0.95rem;
  }
}
.news_list .news_card:hover .image img {
  transform: scale(1.035);
}

.about {
  width: 100%;
  padding: 0 9.375rem;
}
@media screen and (max-width: 1200px) {
  .about {
    padding: 0 6rem;
  }
}
@media screen and (max-width: 900px) {
  .about {
    padding: 0 6.7rem;
    margin-bottom: 5.7rem;
  }
}
@media screen and (max-width: 600px) {
  .about {
    padding: 0 1.7rem;
    margin-bottom: 5.7rem;
  }
}
.about .heading {
  padding-left: 8.625rem;
  width: 50%;
}
@media screen and (max-width: 1200px) {
  .about .heading {
    padding-left: 0;
  }
}
@media screen and (max-width: 900px) {
  .about .heading {
    padding-left: 0;
    width: 100%;
  }
}
.about .info {
  display: flex;
  width: 100%;
  padding: 0 8.625rem;
  margin-bottom: 5rem;
}
@media screen and (max-width: 1200px) {
  .about .info {
    padding: 0;
  }
}
@media screen and (max-width: 900px) {
  .about .info {
    padding: 0;
    flex-direction: column;
    margin-bottom: 4.3rem;
  }
}
.about .info .text {
  width: 50%;
  padding-left: 7.86rem;
}
@media screen and (max-width: 900px) {
  .about .info .text {
    padding-left: 0;
    width: 100%;
    margin-bottom: 4.3rem;
  }
}
.about .info .text .subheading {
  margin: 0;
  padding: 0;
  font: 600 1rem "Open Sans";
  font-style: italic;
  font-size: 1rem;
  margin-bottom: 1.875rem;
  color: #000;
  line-height: 1.25em;
}
@media screen and (max-width: 900px) {
  .about .info .text .subheading {
    font-size: 1rem;
    margin-bottom: 2rem;
  }
}
.about .info .text p {
  margin: 0;
  padding: 0;
  font: 400 1rem "Open Sans";
  color: #000;
}
.about .info .text p:not(:last-child) {
  margin-bottom: 1em;
}
.about .info .infographics {
  margin-left: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-auto-rows: 1fr;
  -moz-column-gap: 3.5rem;
       column-gap: 3.5rem;
  row-gap: 5.4rem;
  width: 40.5%;
  grid-auto-rows: auto;
  align-self: flex-start;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .about .info .infographics {
    display: flex;
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 900px) {
  .about .info .infographics {
    margin-left: 0;
    width: 75%;
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (max-width: 600px) {
  .about .info .infographics {
    width: 75%;
    display: flex;
    flex-direction: column;
    row-gap: unset;
    margin-left: 0;
  }
}
.about .info .infographics .item {
  display: flex;
  flex-direction: column;
  padding-top: 1.56rem;
  border-top: 1px solid #000;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .about .info .infographics .item {
    width: calc(50% - 1.75rem);
    margin-bottom: 5.4rem;
  }
  .about .info .infographics .item:not(:nth-child(2n)) {
    margin-right: 3.5rem;
  }
}
@media screen and (max-width: 900px) {
  .about .info .infographics .item:not(:last-child) {
    margin-bottom: 2.15rem;
    padding-top: 1.1rem;
  }
}
.about .info .infographics .item .number {
  font: 500 1rem "Lora";
  font-size: 2.5rem;
  color: #000;
  margin-bottom: 0.8rem;
}
@media screen and (max-width: 900px) {
  .about .info .infographics .item .number {
    font-size: 2.15rem;
    margin-bottom: 0.75rem;
  }
}
.about .info .infographics .item .description {
  font: 400 1rem "Open Sans";
  color: #000;
}
.about .gallery {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1.25rem;
  width: 100%;
  margin-bottom: 3.125rem;
}
@media screen and (max-width: 900px) {
  .about .gallery {
    display: flex;
    flex-direction: column;
    gap: unset;
    margin-bottom: 2rem;
  }
}
.about .gallery .image {
  width: 100%;
  position: relative;
  padding-top: 66%;
  overflow: hidden;
}
@media screen and (max-width: 900px) {
  .about .gallery .image:not(:last-child) {
    margin-bottom: 1.43rem;
  }
}
.about .gallery .image .overflow_block {
  width: 100%;
  height: 100%;
  background: #fff;
  position: absolute;
  left: 0;
  top: 0;
  will-change: transform;
}
.about .gallery .image img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  will-change: transform;
}
.about .additional_info {
  display: flex;
  width: 100%;
}
@media screen and (max-width: 900px) {
  .about .additional_info {
    flex-direction: column;
  }
}
.about .additional_info .content {
  font: 600 1rem "Open Sans";
  font-style: italic;
  width: 34%;
  color: #000;
}
@media screen and (max-width: 900px) {
  .about .additional_info .content {
    width: 100%;
    margin-bottom: 2.9rem;
  }
}
.about .additional_info .more {
  margin-left: auto;
  margin-top: auto;
}
@media screen and (max-width: 900px) {
  .about .additional_info .more {
    margin-left: 0;
    margin-top: 0;
  }
}
.about .hills {
  left: 0;
  top: 8rem;
}
@media screen and (max-width: 900px) {
  .about .hills {
    top: 50%;
    transform: translateY(-50%);
  }
}

.contacts .social,
footer .social {
  display: flex;
  flex-direction: row;
  margin: 0;
  padding: 0;
}
.contacts .social li,
footer .social li {
  display: flex;
  justify-content: center;
  align-items: center;
  width: auto;
  height: calc(1.375rem + 8px);
  overflow: hidden;
  position: relative;
}
.contacts .social li::before, .contacts .social li::after,
footer .social li::before,
footer .social li::after {
  content: "";
  width: 100%;
  height: 1px;
  background: #fff;
  position: absolute;
  left: 50%;
}
.contacts .social li::before,
footer .social li::before {
  left: 0;
  top: 0px;
  transform-origin: left;
  transform: translateX(-100%);
  transition: 0.6s ease;
}
.contacts .social li::after,
footer .social li::after {
  bottom: 0px;
  transform-origin: right;
  transform: translateX(-50%) scaleX(0);
  transition: 0.4s ease;
}
.contacts .social li:hover::after,
footer .social li:hover::after {
  transition-delay: 0.2s;
  transform: translateX(-50%) scaleX(1);
}
.contacts .social li:hover::before,
footer .social li:hover::before {
  transform: translateX(100%);
}
.contacts .social li:not(:last-child),
footer .social li:not(:last-child) {
  margin-right: 1.5rem;
}
.contacts .social li a,
footer .social li a {
  width: 100%;
  height: calc(100% - 8px);
}
.contacts .social li a img,
footer .social li a img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.contacts {
  width: 100%;
  padding: 8.125rem 18rem;
  background: #A39382;
  margin-bottom: 0;
}
@media screen and (max-width: 1200px) {
  .contacts {
    padding: 8.125rem 6rem;
  }
}
@media screen and (max-width: 900px) {
  .contacts {
    padding: 5.7rem 6.7rem;
  }
}
@media screen and (max-width: 600px) {
  .contacts {
    padding: 5.7rem 1.7rem;
  }
}
.contacts .heading {
  color: #fff;
}
.contacts .heading::before {
  border-color: #fff;
}
.contacts .content {
  display: flex;
}
@media screen and (max-width: 900px) {
  .contacts .content {
    flex-direction: column;
  }
}
.contacts .content .info {
  display: flex;
  flex-direction: column;
  padding-left: 7.86rem;
  width: 40%;
}
@media screen and (max-width: 1600px) {
  .contacts .content .info {
    width: 45%;
  }
}
@media screen and (max-width: 1366px) {
  .contacts .content .info {
    width: 50%;
  }
}
@media screen and (max-width: 1280px) {
  .contacts .content .info {
    width: 55%;
  }
}
@media screen and (max-width: 1200px) {
  .contacts .content .info {
    width: 45%;
  }
}
@media screen and (max-width: 900px) {
  .contacts .content .info {
    width: 60%;
    padding-left: 0;
    margin-bottom: 4.3rem;
  }
}
@media screen and (max-width: 600px) {
  .contacts .content .info {
    width: 100%;
  }
}
.contacts .content .info .description {
  font: 400 1rem "Open Sans";
  color: #fff;
  margin-bottom: 1.875rem;
}
@media screen and (max-width: 900px) {
  .contacts .content .info .description {
    margin-bottom: 1.45rem;
  }
}
.contacts .content .info .time {
  font: 400 1rem "Open Sans";
  color: #fff;
  margin-bottom: 1.875rem;
}
@media screen and (max-width: 900px) {
  .contacts .content .info .time {
    margin-bottom: 1.45rem;
  }
}
.contacts .content .info .phone,
.contacts .content .info .mail {
  font: 600 1rem "Open Sans";
  font-size: 1.25rem;
  color: #fff;
  text-decoration: none;
}
@media screen and (max-width: 900px) {
  .contacts .content .info .phone,
  .contacts .content .info .mail {
    font-size: 1.3rem;
  }
}
.contacts .content .info .phone {
  margin-bottom: 0.625rem;
}
@media screen and (max-width: 900px) {
  .contacts .content .info .phone {
    margin-bottom: 0.35rem;
  }
}
.contacts .content .info .mail {
  margin-bottom: 1.875rem;
}
@media screen and (max-width: 900px) {
  .contacts .content .info .mail {
    margin-bottom: 1.45rem;
  }
}
.contacts .content .info .address {
  font: 400 1rem "Open Sans";
  color: #fff;
  margin-bottom: 1.875rem;
}
@media screen and (max-width: 900px) {
  .contacts .content .info .address {
    margin-bottom: 1.45rem;
  }
}
.contacts.light {
  background: transparent;
}
.contacts.light .heading {
  color: #000;
}
.contacts.light .heading::before {
  border-color: #000;
}
.contacts.light .content .info .description,
.contacts.light .content .info .time,
.contacts.light .content .info a,
.contacts.light .content .info .address {
  color: #000;
}
.contacts.light .content form .form_group label {
  color: #000;
}
.contacts.light .content form .form_group input {
  color: #000;
  border-color: #000;
}
.contacts.light .content form .form_group.error input {
  border-color: #D71515;
}
.contacts.light .content form .form_group button {
  color: #000;
  border-color: #000;
}
.contacts.light .content form .form_group button::before {
  background: #A39382;
}
.contacts.light .content form .form_group button:hover {
  color: #fff;
  border-color: #A39382;
}
.contacts.light .content form .form_group button.success:hover {
  color: #000;
  border-color: #000;
}
.contacts.light .content form .policy {
  color: #000;
}
.contacts.light .content form .policy a {
  color: #A39382;
}
.contacts.light .social li::before, .contacts.light .social li::after {
  background: #000;
}

.contacts form,
.investments_popup form {
  display: flex;
  flex-direction: column;
  width: 41%;
  margin-left: auto;
}
@media screen and (max-width: 900px) {
  .contacts form,
  .investments_popup form {
    margin-left: 0;
    width: 100%;
  }
}
.contacts form .form_group,
.investments_popup form .form_group {
  display: flex;
  flex-direction: column;
  position: relative;
  margin-bottom: 1.875rem;
}
@media screen and (max-width: 900px) {
  .contacts form .form_group,
  .investments_popup form .form_group {
    margin-bottom: 2.15rem;
  }
}
.contacts form .form_group label,
.investments_popup form .form_group label {
  font: 400 1rem "Open Sans";
  font-size: 0.9rem;
  color: #fff;
  transition: 0.3s ease;
}
@media screen and (max-width: 900px) {
  .contacts form .form_group label,
  .investments_popup form .form_group label {
    font-size: 1rem;
  }
}
.contacts form .form_group input,
.investments_popup form .form_group input {
  background: transparent;
  border: none;
  outline: none;
  font: 400 1rem "Open Sans";
  color: #fff;
  padding: 0.8rem 0;
  border-bottom: 1px solid #fff;
  transition: 0.3s ease;
  border-radius: 0;
}
@media screen and (max-width: 900px) {
  .contacts form .form_group input,
  .investments_popup form .form_group input {
    font-size: 1.15rem;
    padding: 0.95rem 0;
  }
}
.contacts form .form_group.error label,
.investments_popup form .form_group.error label {
  color: #D71515;
}
.contacts form .form_group.error input,
.investments_popup form .form_group.error input {
  border-color: #D71515;
}
.contacts form .form_group button,
.investments_popup form .form_group button {
  border: none;
  outline: none;
  background: transparent;
  margin: 0;
  padding: 0;
  border: 1px solid #fff;
  font: 600 1rem "Open Sans";
  cursor: pointer;
  position: relative;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: 0.3s ease;
}
@media screen and (max-width: 900px) {
  .contacts form .form_group button,
  .investments_popup form .form_group button {
    font-size: 0.95rem;
  }
}
.contacts form .form_group button span,
.investments_popup form .form_group button span {
  padding: 1.125rem 0;
  z-index: 2;
}
.contacts form .form_group button .success,
.investments_popup form .form_group button .success {
  position: absolute;
  bottom: 0;
  transform: translateY(100%);
  padding: 1.125rem 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.contacts form .form_group button .success span,
.investments_popup form .form_group button .success span {
  padding: 0;
}
.contacts form .form_group button .success img,
.investments_popup form .form_group button .success img {
  height: 1.1rem;
  margin-right: 1rem;
  transform: translateY(-12.5%);
}
.contacts form .form_group button.success span:first-child,
.investments_popup form .form_group button.success span:first-child {
  -webkit-animation: success 1s ease forwards;
          animation: success 1s ease forwards;
}
@-webkit-keyframes success {
  0% {
    transform: translateY(0);
  }
  25% {
    transform: translateY(0.25rem);
  }
  30% {
    transform: translateY(0.25rem);
  }
  100% {
    transform: translateY(-100%);
  }
}
@keyframes success {
  0% {
    transform: translateY(0);
  }
  25% {
    transform: translateY(0.25rem);
  }
  30% {
    transform: translateY(0.25rem);
  }
  100% {
    transform: translateY(-100%);
  }
}
.contacts form .form_group button.success .success,
.investments_popup form .form_group button.success .success {
  -webkit-animation: success_finish 1s ease 0.35s forwards;
          animation: success_finish 1s ease 0.35s forwards;
}
@-webkit-keyframes success_finish {
  0% {
    transform: translateY(100%);
  }
  75% {
    transform: translateY(-0.25rem);
  }
  80% {
    transform: translateY(-0.25rem);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes success_finish {
  0% {
    transform: translateY(100%);
  }
  75% {
    transform: translateY(-0.25rem);
  }
  80% {
    transform: translateY(-0.25rem);
  }
  100% {
    transform: translateY(0);
  }
}
.contacts form .form_group button::before,
.investments_popup form .form_group button::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  transform: scaleY(0);
  transition: 0.3s ease;
  background: #fff;
  z-index: 0;
  left: 0;
  transform-origin: bottom;
}
.contacts form .form_group button:hover,
.investments_popup form .form_group button:hover {
  color: #A39382;
}
.contacts form .form_group button:hover::before,
.investments_popup form .form_group button:hover::before {
  transform: scaleY(1);
}
.contacts form .form_group button.success:hover,
.investments_popup form .form_group button.success:hover {
  color: #fff;
}
.contacts form .form_group button.success:hover::before,
.investments_popup form .form_group button.success:hover::before {
  transform: scaleY(0);
}
.contacts form .form_group .error_message,
.investments_popup form .form_group .error_message {
  position: absolute;
  right: 0;
  top: 0;
  color: #D71515;
  font: 400 1rem "Open Sans";
  font-size: 0.85rem;
}
.contacts form .check-group,
.investments_popup form .check-group {
  flex-direction: row;
  align-items: flex-start;
  position: relative;
}
.contacts form .check-group:not(:last-child),
.investments_popup form .check-group:not(:last-child) {
  margin-right: auto;
}
.contacts form .check-group input,
.investments_popup form .check-group input {
  width: 1.25rem;
  height: 1.25rem;
  position: absolute;
  left: 0;
  opacity: 0;
  margin: 0;
  z-index: 1;
  cursor: pointer;
}
.contacts form .check-group label,
.investments_popup form .check-group label {
  cursor: pointer;
}
.contacts form .check-group .custom-check,
.investments_popup form .check-group .custom-check {
  width: 1.25rem;
  height: 1.25rem;
  min-width: 1.25rem;
  min-height: 1.25rem;
  margin-right: 0.625rem;
  background: #A39382;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border: 1px solid #fff;
  cursor: pointer;
  transition: 0.3s ease;
}
.contacts form .check-group .custom-check::after,
.investments_popup form .check-group .custom-check::after {
  content: "";
  width: 0.75rem;
  height: 0.75rem;
  background-image: url(../images/form-check.svg?09ec6233a3b12148a17fd10a04ea3d74);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: 0.3s ease;
}
.contacts form .check-group.error label,
.investments_popup form .check-group.error label {
  color: #fff;
}
.contacts form .check-group.error .custom-check,
.investments_popup form .check-group.error .custom-check {
  border-color: #D71515;
}
.contacts form .check-group a,
.investments_popup form .check-group a {
  color: #FFE7D0;
  text-decoration: none;
}
.contacts form .check-group input:checked ~ .custom-check,
.investments_popup form .check-group input:checked ~ .custom-check {
  border-color: rgba(255, 255, 255, 0.3);
}
.contacts form .check-group input:checked ~ .custom-check::after,
.investments_popup form .check-group input:checked ~ .custom-check::after {
  opacity: 1;
}
.contacts form .policy,
.investments_popup form .policy {
  font: 400 1rem "Open Sans";
  font-size: 0.75rem;
  color: #fff;
}
.contacts form .policy a,
.investments_popup form .policy a {
  color: #FFE7D0;
  text-decoration: none;
}
@media screen and (max-width: 900px) {
  .contacts form .policy,
  .investments_popup form .policy {
    font-size: 0.9rem;
  }
}
.contacts form .checkbox-row,
.investments_popup form .checkbox-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.contacts form .checkbox-row .check-group,
.investments_popup form .checkbox-row .check-group {
  flex-direction: row;
  align-items: center;
  position: relative;
}
.contacts form .checkbox-row .check-group:not(:last-child),
.investments_popup form .checkbox-row .check-group:not(:last-child) {
  margin-right: auto;
}
.contacts form .checkbox-row .check-group input,
.investments_popup form .checkbox-row .check-group input {
  width: 1.25rem;
  height: 1.25rem;
  position: absolute;
  left: 0;
  opacity: 0;
  margin: 0;
  z-index: 1;
  cursor: pointer;
}
.contacts form .checkbox-row .check-group label,
.investments_popup form .checkbox-row .check-group label {
  cursor: pointer;
}
.contacts form .checkbox-row .check-group .custom-check,
.investments_popup form .checkbox-row .check-group .custom-check {
  width: 1.25rem;
  height: 1.25rem;
  margin-right: 0.625rem;
  background: #A39382;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border: 1px solid #fff;
  cursor: pointer;
  transition: 0.3s ease;
}
.contacts form .checkbox-row .check-group .custom-check::after,
.investments_popup form .checkbox-row .check-group .custom-check::after {
  content: "";
  width: 0.75rem;
  height: 0.75rem;
  background-image: url(../images/form-check.svg?09ec6233a3b12148a17fd10a04ea3d74);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: 0.3s ease;
}
.contacts form .checkbox-row .check-group input:checked ~ .custom-check,
.investments_popup form .checkbox-row .check-group input:checked ~ .custom-check {
  border-color: rgba(255, 255, 255, 0.3);
}
.contacts form .checkbox-row .check-group input:checked ~ .custom-check::after,
.investments_popup form .checkbox-row .check-group input:checked ~ .custom-check::after {
  opacity: 1;
}

.map {
  margin: 0;
  padding: 0;
  width: 100%;
  position: relative;
  background: #fff;
  padding-top: 27.6%;
}
@media screen and (max-width: 900px) {
  .map {
    padding-top: 93%;
  }
}
.map iframe {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.map.active iframe {
  pointer-events: auto;
}

footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #A39382;
  width: 100%;
}
footer::before {
  content: "";
  width: calc(100% - 18.75rem);
  height: 1px;
  background: #fff;
  margin-top: 8.125rem;
}
@media screen and (max-width: 1200px) {
  footer::before {
    width: calc(100% - 12rem);
  }
}
@media screen and (max-width: 900px) {
  footer::before {
    width: calc(100% - 13.4rem);
    margin-top: 5.7rem;
  }
}
@media screen and (max-width: 600px) {
  footer::before {
    width: calc(100% - 3.4rem);
  }
}
footer .footer {
  margin: 0;
  width: 100%;
  display: grid;
  padding: 0 9.375rem;
  grid-template-columns: 45% 2fr 2fr;
  padding-top: 6.25rem;
  padding-bottom: 1.5rem;
  background: #A39382;
}
@media screen and (max-width: 1200px) {
  footer .footer {
    padding: 0 6rem;
    padding-top: 6.25rem;
    padding-bottom: 1.5rem;
  }
}
@media screen and (max-width: 900px) {
  footer .footer {
    align-self: flex-start;
    width: 60%;
    grid-template-columns: 1fr;
    padding: 4.3rem 8%;
    padding-left: 6.7rem;
    padding-bottom: 1.45rem;
  }
}
@media screen and (max-width: 600px) {
  footer .footer {
    grid-template-columns: 1fr;
    width: 100%;
    padding: 4.3rem 8%;
    padding-bottom: 1.45rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  footer .footer {
    display: -ms-flexbox;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
  }
}
footer .footer .info {
  width: 45%;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 900px) {
  footer .footer .info {
    width: 100%;
    margin-bottom: 2.9rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  footer .footer .info {
    width: 25%;
  }
}
footer .footer .info .logo {
  width: 63%;
  margin-bottom: 1.9rem;
}
@media screen and (max-width: 900px) {
  footer .footer .info .logo {
    width: 70%;
    margin-bottom: 1.1rem;
  }
}
footer .footer .info .logo img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
footer .footer .info .copyright {
  font: 400 1rem "Open Sans";
  font-size: 0.9rem;
  margin-bottom: 1.9rem;
  color: #fff;
}
footer .footer .info .social {
  margin-bottom: 1.9rem;
}
footer .footer .info .app_buttons {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
}
@media screen and (max-width: 900px) {
  footer .footer .info .app_buttons {
    gap: 0.9rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  footer .footer .info .app_buttons {
    display: -ms-flexbox;
  }
}
footer .footer .info .app_buttons a {
  width: 100%;
  transition: 0.3s ease;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  footer .footer .info .app_buttons a {
    width: 50%;
  }
}
footer .footer .info .app_buttons a:hover {
  transform: translateY(-4px);
}
footer .footer .info .app_buttons a img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
footer .footer .company_info {
  padding-right: 6rem;
}
@media screen and (max-width: 900px) {
  footer .footer .company_info {
    grid-row: 4;
    padding-right: 2rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  footer .footer .company_info {
    margin-left: auto;
    width: 25%;
  }
}
footer .footer .company_info .title {
  font: 600 1rem "Open Sans";
  color: #fff;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}
@media screen and (max-width: 900px) {
  footer .footer .company_info .title {
    margin-bottom: 0.75rem;
  }
}
footer .footer .company_info p {
  margin: 0;
  padding: 0;
  font: 400 1rem "Open Sans";
  color: #fff;
  text-decoration: none;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}
footer .footer .company_info p a {
  text-decoration: none;
  color: #fff;
}
@media screen and (max-width: 900px) {
  footer .footer .company_info p {
    margin-bottom: 0.75rem;
  }
}
@media screen and (max-width: 900px) {
  footer .footer .menu {
    grid-row: 2;
    margin-bottom: 2.9rem;
  }
}
footer .footer .menu ul {
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  height: 10.75rem;
  width: 100%;
}
@media screen and (max-width: 900px) {
  footer .footer .menu ul {
    height: auto;
  }
}
footer .footer .menu ul li {
  display: flex;
  width: 50%;
}
footer .footer .menu ul li:not(:last-child) {
  margin-bottom: 0.95rem;
}
@media screen and (max-width: 900px) {
  footer .footer .menu ul li {
    width: auto;
  }
}
footer .footer .menu ul li a {
  cursor: pointer;
  color: #fff;
  font: 400 1rem "Open Sans";
  font-size: 0.9rem;
  text-decoration: none;
}
footer .footer .made_by_atmabrand {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  grid-column-start: 1;
  grid-column-end: 4;
  padding-top: 5.5rem;
  font: 400 1rem "Open Sans";
  font-size: 0.9rem;
  color: #c0c0c0;
  text-decoration: none;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  footer .footer .made_by_atmabrand {
    display: none;
  }
}
@media screen and (max-width: 900px) {
  footer .footer .made_by_atmabrand {
    grid-row: 5;
    align-items: flex-start;
    justify-content: flex-start;
    padding-top: 4.2rem;
  }
}

.block.policy {
  width: 100%;
  padding: 8.125rem 18rem;
}
@media screen and (max-width: 1200px) {
  .block.policy {
    padding: 8.125rem 6rem;
  }
}
@media screen and (max-width: 900px) {
  .block.policy {
    padding: 5.7rem 6.7rem;
  }
}
@media screen and (max-width: 600px) {
  .block.policy {
    padding: 5.7rem 1.7rem;
  }
}
.block.policy .heading {
  margin-bottom: 5rem;
}
@media screen and (max-width: 900px) {
  .block.policy .heading {
    margin-bottom: 4.3rem;
  }
}
.block.policy h1,
.block.policy h2,
.block.policy p {
  width: 62%;
}
@media screen and (max-width: 900px) {
  .block.policy h1,
  .block.policy h2,
  .block.policy p {
    width: 100%;
  }
}
.block.policy h2 {
  margin: 0;
  padding: 0;
  font: 700 1rem "Lora";
  font-size: 1.25rem;
  color: #000;
  margin-bottom: 1.25rem;
}
@media screen and (max-width: 900px) {
  .block.policy h2 {
    margin-bottom: 1.45rem;
  }
}
.block.policy p ~ h2 {
  margin-top: 1.25rem;
}
@media screen and (max-width: 900px) {
  .block.policy p ~ h2 {
    margin-top: 1.45rem;
  }
}
.block.policy p {
  margin: 0;
  padding: 0;
  font: 400 1rem "Open Sans";
}
.block.policy p:not(:last-child) {
  margin-bottom: 1.25rem;
}
@media screen and (max-width: 900px) {
  .block.policy p:not(:last-child) {
    margin-bottom: 1.45rem;
  }
}
.block.policy p a {
  color: #7A6855;
}
.block.policy h2,
.block.policy p {
  padding-left: 8.625rem;
}
@media screen and (max-width: 1200px) {
  .block.policy h2,
  .block.policy p {
    padding-left: 7.86rem;
  }
}
@media screen and (max-width: 900px) {
  .block.policy h2,
  .block.policy p {
    padding-left: 0;
  }
}

.investments_popup {
  align-items: center;
  display: flex;
  height: 100%;
  justify-content: center;
  left: 0;
  pointer-events: none;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 10;
}
.investments_popup .close_wrapper {
  background: rgba(0, 0, 0, 0.5);
  height: 100%;
  left: 0;
  opacity: 0;
  position: fixed;
  top: 0;
  transition: 0.3s ease;
  width: 100%;
}
.investments_popup .close_icon {
  cursor: pointer;
  opacity: 0;
  position: fixed;
  right: 1rem;
  top: 1rem;
  transition: 0.3s ease;
}
.investments_popup .content {
  position: relative;
  width: 56.25%;
  padding: 10.625rem 16.5rem 8.125rem 16.5rem;
  background: #A39382;
  opacity: 0;
  transform: translateY(10px);
  transition: 0.3s ease;
  max-height: 95%;
  overflow-x: hidden;
  overflow-y: auto;
}
@media screen and (max-width: 1600px) {
  .investments_popup .content {
    padding: 10.625rem 12.5rem 8.125rem 12.5rem;
  }
}
@media screen and (max-width: 1366px) {
  .investments_popup .content {
    padding: 8.625rem 10.5rem 6.125rem 10.5rem;
  }
}
@media screen and (max-width: 1280px) {
  .investments_popup .content {
    padding: 8.625rem 10.5rem 6.125rem 10.5rem;
    width: 60%;
  }
}
@media screen and (max-width: 1024px) {
  .investments_popup .content {
    width: 70%;
  }
}
@media screen and (max-width: 900px) {
  .investments_popup .content {
    max-height: 85%;
    overflow-y: auto;
    overflow-x: hidden;
    width: 90%;
    padding: 5.7rem 5.7rem;
  }
}
@media screen and (max-width: 550px) {
  .investments_popup .content {
    padding: 3rem 1.7rem;
  }
}
.investments_popup .content .form_logo {
  position: absolute;
  top: 3.125rem;
  left: 3.75rem;
  width: 8.125rem;
}
@media screen and (max-width: 1366px) {
  .investments_popup .content .form_logo {
    width: 6.125rem;
  }
}
@media screen and (max-width: 900px) {
  .investments_popup .content .form_logo {
    display: none;
  }
}
.investments_popup .content .form_logo img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.investments_popup .content .heading {
  color: #fff;
  margin-bottom: 3.125rem;
}
.investments_popup .content .heading::before {
  display: none;
}
.investments_popup .content form {
  width: 100%;
  margin-left: 0;
}
.investments_popup.active {
  pointer-events: auto;
}
.investments_popup.active .close_wrapper,
.investments_popup.active .close_icon {
  opacity: 1;
}
.investments_popup.active .content {
  opacity: 1;
  transform: translateY(0);
}

.presentation_popup .content {
  padding: 8.625rem 16.5rem 4.125rem 16.5rem;
}
@media screen and (max-width: 1600px) {
  .presentation_popup .content {
    padding: 8.625rem 12.5rem 4.125rem 12.5rem;
  }
}
@media screen and (max-width: 900px) {
  .presentation_popup .content {
    padding: 5.7rem;
  }
}
@media screen and (max-width: 550px) {
  .presentation_popup .content {
    padding: 3rem 1.7rem;
  }
}
