@charset "UTF-8";
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0;
  margin: 0;
}

:root {
  --app-height: 100%;
  --white: #ffffff;
  --red: #ff4310;
  --red2: #e03f13;
  --green_4: #083720;
  --green_5: #091f14;
  --green_6: #081a11;
  --grey_text: #373737;
  --light: #f7f7ec;
}

.scroll_to * {
  pointer-events: none;
}

.c_wh {
  color: var(--white);
}

.c_grey_text {
  color: var(--grey_text);
}

.c_light {
  color: var(--light);
}

.c_red {
  color: var(--red);
}

.c_red2 {
  color: var(--red2);
}

.c_green_4 {
  color: var(--green_4);
}

.c_green_5 {
  color: var(--green_5);
}

.c_green_6 {
  color: var(--green_6);
}

.bg_wh {
  background-color: var(--white);
}

.bg_light {
  background-color: var(--light);
}

.bg_red {
  background-color: var(--red);
}

.bg_red2 {
  background-color: var(--red2);
}

.bg_green_4 {
  background-color: var(--green_4);
}

.bg_green_5 {
  background-color: var(--green_5);
}

.bg_green_6 {
  background-color: var(--green_6);
}

.elem__anim > h1, .elem__anim > h2, .elem__anim > h3, .elem__anim > h4, .elem__anim > a, .elem__anim > button, .elem__anim > p, .elem__anim > ul, .elem__anim > ol {
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  opacity: 0;
}

body,
html {
  scrollbar-color: var(--red) var(--grey);
  scrollbar-width: thick;
  overflow-x: hidden;
}

.swiper-container {
  overflow: hidden;
}

.xyz_start {
  opacity: 0;
}

.xyz_start.xyz-in {
  opacity: 1;
}

body {
  font-family: "Roboto", sans-serif;
  color: var(--dark);
  background-color: var(--light);
  margin: 0;
  padding: 0;
  position: relative;
  min-height: 100vh;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: 18px;
  padding-top: 80px;
}

section {
  position: relative;
}

/* ::-webkit-scrollbar {
  height: 5px;
} */
::-webkit-scrollbar {
  width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
  background: var(--white);
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: var(--green_4);
}

h1,
h2,
h3,
h4 {
  margin: 0;
  padding: 0;
}

a:hover,
a:active,
a:visited,
a {
  text-decoration: none;
  -webkit-transition: 0.4s ease;
  transition: 0.4s ease;
}

ol,
ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

li {
  display: block;
}

p {
  margin-bottom: 0;
  line-height: 1.3em;
}

[data-tabcontent] {
  position: absolute;
  z-index: -2;
  opacity: 0;
  pointer-events: none;
  width: initial;
  max-width: 100%;
  top: 0;
}
[data-tabcontent].active {
  position: relative;
  z-index: 2;
  opacity: 1;
  pointer-events: all;
}

input:hover,
select:hover,
textarea:hover,
input:active,
select:active,
textarea:active,
input:focus,
select:focus,
textarea:focus,
input,
select,
textarea {
  display: block;
  outline: none;
  font-family: "Roboto", sans-serif;
}

button {
  background-color: transparent;
  border: none;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  cursor: pointer;
}

button,
button:focus,
button:active,
button:hover {
  outline: none;
}

svg,
path,
stroke {
  -webkit-transition: 0.4s ease;
  transition: 0.4s ease;
}

.container {
  position: relative;
}

.ff_mp {
  font-family: "Maven Pro", sans-serif;
}

a.btn,
button.btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-family: "Maven Pro", sans-serif;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 18px;
  font-weight: 600;
  color: var(--white);
  height: 50px;
  width: 245px;
  max-width: 100%;
  position: relative;
  background-color: var(--green_4);
  border-radius: 60px;
  padding: 0 50px 0 0;
}
a.btn .icon,
button.btn .icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 38px;
  height: 38px;
  position: absolute;
  right: 11px;
  top: calc(50% - 19px);
  border: 1px solid var(--white);
  border-radius: 50%;
}
a.btn .icon svg,
button.btn .icon svg {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
a.btn .icon path,
button.btn .icon path {
  fill: var(--white);
}
a.btn:hover .icon,
button.btn:hover .icon {
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}
a.btn:hover .icon path,
button.btn:hover .icon path {
  fill: var(--white);
}
a.btn:active,
button.btn:active {
  color: var(--white);
  background-color: var(--green_5);
}
a.btn:active .icon,
button.btn:active .icon {
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}
a.btn:active .icon path,
button.btn:active .icon path {
  fill: var(--white);
}
a.btn.btn_gr,
button.btn.btn_gr {
  background-color: var(--green_4);
  color: var(--white);
}
a.btn.btn_tr,
button.btn.btn_tr {
  background-color: transparent;
  color: var(--white);
  width: 280px;
}
a.btn.btn_tr::before,
button.btn.btn_tr::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 300px;
  border: 1px solid transparent;
  background: -webkit-gradient(linear, left top, right top, from(rgb(255, 255, 255)), to(rgba(255, 255, 255, 0.411))) border-box;
  background: linear-gradient(90deg, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0.411) 100%) border-box;
  -webkit-mask: -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff)) padding-box, -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff));
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
}
a.btn.btn_tr:hover,
button.btn.btn_tr:hover {
  color: var(--green_4);
  background-color: var(--white);
  border: 1px solid var(--white);
}
a.btn.btn_tr:hover .icon,
button.btn.btn_tr:hover .icon {
  border-color: var(--green_4);
}
a.btn.btn_tr:hover .icon svg,
button.btn.btn_tr:hover .icon svg {
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}
a.btn.btn_tr:hover .icon path,
button.btn.btn_tr:hover .icon path {
  fill: var(--green_4);
}
a.btn.btn_tr:active,
button.btn.btn_tr:active {
  color: var(--green_4);
  background-color: var(--white);
  border: 1px solid var(--white);
}
a.btn.btn_tr:active .icon,
button.btn.btn_tr:active .icon {
  border-color: var(--red);
  background-color: var(--red);
}
a.btn.btn_tr:active .icon svg,
button.btn.btn_tr:active .icon svg {
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}
a.btn.btn_tr:active .icon path,
button.btn.btn_tr:active .icon path {
  fill: var(--white);
}
a.btn.btn_wh,
button.btn.btn_wh {
  background-color: transparent;
  color: var(--green_4);
  border: 1px solid var(--white);
  background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0.25)), color-stop(45%, rgba(255, 255, 255, 0.37)), color-stop(55%, rgb(255, 255, 255)), to(rgb(255, 255, 255)));
  background: linear-gradient(to right, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0.37) 45%, rgb(255, 255, 255) 55%, rgb(255, 255, 255) 100%);
  background-size: 240% 100%;
  background-position: left center;
  color: var(--white);
}
a.btn.btn_wh .icon,
button.btn.btn_wh .icon {
  background: linear-gradient(225deg, rgba(50, 50, 50, 0.5) 0%, rgba(0, 0, 0, 0.28) 100%);
}
a.btn.btn_wh:hover,
button.btn.btn_wh:hover {
  background-position: right center;
  color: var(--green_4);
}
a.btn.btn_wh:hover .icon,
button.btn.btn_wh:hover .icon {
  border: 1px solid var(--white);
  background: linear-gradient(225deg, rgba(50, 50, 50, 0.5) 0%, rgba(0, 0, 0, 0.28) 100%);
}
a.btn.btn_wh:hover .icon svg,
button.btn.btn_wh:hover .icon svg {
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}
a.btn.btn_wh:hover .icon path,
button.btn.btn_wh:hover .icon path {
  fill: var(--white);
}
a.btn.btn_wh:active,
button.btn.btn_wh:active {
  color: var(--green_4);
  background-position: right top;
  border: 1px solid var(--dark);
}
a.btn.btn_wh:active .icon,
button.btn.btn_wh:active .icon {
  border-color: var(--white);
  background: linear-gradient(225deg, rgba(50, 50, 50, 0.5) 0%, rgba(0, 0, 0, 0.28) 100%);
}
a.btn.btn_wh:active .icon svg,
button.btn.btn_wh:active .icon svg {
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}
a.btn.btn_wh:active .icon path,
button.btn.btn_wh:active .icon path {
  fill: var(--white);
}
a.btn.btn_red,
button.btn.btn_red {
  background-color: var(--light);
  color: var(--green_4);
  border: 1px solid var(--light);
  padding: 0;
}
a.btn.btn_red:hover,
button.btn.btn_red:hover {
  color: var(--light);
  border-color: var(--red);
  background-color: var(--red);
}
a.btn.btn_red:active,
button.btn.btn_red:active {
  color: var(--white);
  border-color: var(--red2);
  background-color: var(--red2);
}

.breadcrumbs span {
  color: var(--white);
  font-size: 14px;
  font-weight: 400;
  margin-right: 5px;
}
.breadcrumbs span:not(:first-child) {
  margin-left: 5px;
}
.breadcrumbs span a {
  color: var(--white);
  text-decoration: underline;
}
.breadcrumbs span a:hover {
  color: var(--red);
}
.breadcrumbs span.breadcrumb_last {
  color: var(--light);
}

.header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 9;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  background-color: var(--light);
  -webkit-box-shadow: 0 0 0px rgba(56, 12, 14, 0.24);
          box-shadow: 0 0 0px rgba(56, 12, 14, 0.24);
  padding: 14px 0;
}
.header.header_fixed {
  -webkit-box-shadow: 0 0 24px rgba(56, 12, 14, 0.24);
          box-shadow: 0 0 24px rgba(56, 12, 14, 0.24);
}
.header .social a {
  width: 28px;
  height: 28px;
  margin-right: 12px;
}
.header .social a svg {
  width: 28px;
  height: 28px;
}
.header .header__phone {
  font-size: 20px;
  font-weight: 700;
  color: var(--dark);
}
.header .header__phone:hover {
  color: var(--orange);
}

@media screen and (min-width: 1200px) {
  .header.header_fixed.scroll__up {
    top: 0px;
  }
  .header.header_fixed.scroll__down {
    top: -130px;
  }
}
.custom-logo-link {
  width: 52px;
  display: block;
}
.custom-logo-link img {
  width: 100%;
  height: auto;
}

.nav__menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: auto;
}
.nav__menu .menu-item {
  position: relative;
  margin: 0 15px;
}
.nav__menu .menu-item a {
  font-size: 16px;
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  line-height: 1.2em;
  padding: 0;
  color: var(--grey_text);
  position: relative;
  display: block;
}
.nav__menu .menu-item a:hover {
  color: var(--green_4);
}

.menu__burger {
  display: none;
  width: 42px;
  height: 42px;
}

@media screen and (max-width: 1199px) {
  .nav__menu .menu-item {
    margin-right: 10px;
  }
}
@media screen and (max-width: 991px) {
  .header {
    padding: 8px 0;
  }
  body {
    padding-top: 70px;
  }
  .nav {
    position: fixed;
    width: 100%;
    max-width: 400px;
    height: 100vh;
    z-index: 9;
    right: -100%;
    top: 0;
    opacity: 0;
    pointer-events: none;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
    overflow-y: auto;
    padding: 10px 15px 40px;
    margin: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    background-color: var(--light);
    padding-bottom: 90px;
  }
  .nav.open_menu {
    right: 0;
    top: 0px;
    opacity: 1;
    pointer-events: all;
  }
  .nav .nav__row {
    width: 100%;
    padding: 0 0 15px;
    position: relative;
  }
  .nav .header__social {
    margin-top: auto;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .nav .header__social a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    font-size: 18px;
    color: var(--grey_text);
  }
  .nav .header__social a:hover {
    color: var(--green_4);
  }
  .nav .header__social a img {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    margin-right: 4px;
  }
  .nav .menu__close {
    width: 40px;
    height: 40px;
    outline: none;
    /* margin-left: auto; */
    position: relative;
    background-color: none;
    border: none;
    cursor: pointer;
    border-radius: 50px;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
    margin-left: auto;
    background: var(--light) url(../img/close_menu.svg) no-repeat center;
  }
  .nav .menu__close > * {
    pointer-events: none;
  }
  .nav .nav__menu {
    padding: 0;
    width: 100%;
    display: block;
    margin-bottom: 30px;
  }
  .nav .nav__menu .menu-item {
    margin-bottom: 0;
    width: 100%;
    text-align: center;
    margin-right: 0;
    padding: 0;
  }
  .nav .nav__menu .menu-item a {
    font-size: 24px;
    font-weight: 300;
    position: relative;
    color: var(--grey_text);
    display: block;
    padding: 8px 0;
    border: none;
    line-height: 1em;
    padding: 20px 0;
  }
  .nav .nav__menu .menu-item a:hover {
    color: var(--green_4);
  }
  .nav .nav__menu .menu-item.menu-item-has-children > a {
    padding-right: 10px;
  }
  .nav .nav__menu .menu-item.menu-item-has-children > a.open .open_child_menu {
    -webkit-transform: rotate(-180deg);
            transform: rotate(-180deg);
  }
  .nav .nav__menu .menu-item.menu-item-has-children .open_child_menu {
    position: absolute;
    display: block;
    right: -8px;
    top: calc(50% - 13px);
    width: 26px;
    height: 26px;
    background-color: var(--grey);
    cursor: pointer;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
  }
  .nav .nav__menu .menu-item.menu-item-has-children .open_child_menu::before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: url(../img/menu_arrow.svg) no-repeat center;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
    pointer-events: none;
  }
  .nav .nav__menu .menu-item.menu-item-has-children .sub-menu {
    width: 100%;
    min-width: 250px;
    padding: 0 10px;
    background-color: transparent;
    position: static;
    left: auto;
    top: auto;
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 0;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
    pointer-events: all;
    border-radius: 0;
  }
  .nav .nav__menu .menu-item.menu-item-has-children .sub-menu li {
    margin-bottom: 0;
  }
  .nav .nav__menu .menu-item.menu-item-has-children .sub-menu li:last-child {
    padding-bottom: 20px;
  }
  .nav .nav__menu .menu-item.menu-item-has-children .sub-menu li a {
    font-size: 12px;
    font-weight: 500;
    position: relative;
    color: var(--white);
    display: block;
    padding: 5px 0;
    border: none;
    text-transform: uppercase;
    line-height: 1.8em;
  }
  .nav .nav__menu .menu-item.menu-item-has-children .sub-menu li a:hover {
    color: var(--gold);
  }
  .menu__burger {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    height: 40px;
    width: 40px;
    cursor: pointer;
    background-color: transparent;
    border: none;
    border-radius: 50%;
    background-color: transparent;
  }
  .menu__burger span {
    display: block;
    width: 20px;
    height: 2px;
    background-color: var(--green_4);
    border-radius: 3px;
    margin: 2px 0;
  }
}
@media screen and (max-width: 576px) {
  body {
    padding-top: 50px;
  }
}
.favorite_link {
  display: block;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
.favorite_link .favorite_count {
  position: absolute;
  right: -2px;
  bottom: -2px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: var(--red);
  color: var(--white);
  font-size: 10px;
  width: 11px;
  height: 11px;
  border-radius: 20px;
}

.title_1 {
  font-family: "Roboto", sans-serif;
  font-size: 40px;
  font-weight: 600;
  line-height: 1em;
}

.section__title {
  font-family: "Roboto", sans-serif;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
  color: var(--green_4);
  line-height: 1.2em;
}

.section__title2 {
  font-family: "Roboto", sans-serif;
  font-size: 52px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
}

.section__subtitle {
  font-family: "Roboto", sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
  color: var(--grey_text);
  padding-top: 4px;
}

.title_2 {
  font-family: "Roboto", sans-serif;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
  color: var(--green_4);
  margin-bottom: 12px;
}

.title_3 {
  font-family: "Roboto", sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 100%;
  margin-bottom: 1em;
}

.title_4 {
  font-family: "Roboto", sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.2em;
  margin-bottom: 16px;
}

.text__content h2 {
  font-family: "Roboto", sans-serif;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
  color: var(--green_4);
  margin-bottom: 12px;
}
.text__content h3 {
  font-family: "Roboto", sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 120%;
  margin-bottom: 24px;
}
.text__content h4 {
  font-family: "Roboto", sans-serif;
  font-family: Roboto;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.2em;
  margin-bottom: 16px;
}
.text__content p,
.text__content li {
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  font-style: normal;
  line-height: 140%;
  color: var(--text_grey);
}
.text__content p {
  margin-bottom: 1.4em;
}
.text__content p:last-child {
  margin-bottom: 0;
}
.text__content p a {
  color: var(--red);
}
.text__content p a:hover {
  color: #80181c;
}
.text__content ol,
.text__content ul {
  margin-bottom: 15px;
}
.text__content li {
  padding-left: 27px;
  position: relative;
  color: var(--dark);
}
.text__content li:not(:last-child) {
  margin-bottom: 8px;
}
.text__content li:before {
  content: "";
  display: block;
  width: 15px;
  height: 15px;
  background: url(../img/icon_list.svg) no-repeat center/100%;
  position: absolute;
  left: 0;
  top: 4px;
}
.text__content ol {
  list-style: none;
  counter-reset: item;
}
.text__content ol li {
  counter-increment: item;
  color: var(--black);
  font-size: 18px;
}
.text__content ol li:before {
  margin-right: 16px;
  content: counter(item) ".";
  background: transparent;
  color: var(--black);
  font-size: 18px;
  width: 1.2em;
  text-align: center;
  display: inline-block;
  height: 16px;
  top: 0px;
}

@media screen and (max-width: 1439px) {
  .section__title2 {
    font-size: 48px;
  }
  .section__title {
    font-size: 26px;
  }
  .text__content h2 {
    font-size: 26px;
  }
}
@media screen and (max-width: 1199px) {
  .section__title2 {
    font-size: 40px;
  }
  .section__title {
    font-size: 26px;
  }
  .text__content h2 {
    font-size: 26px;
  }
}
@media screen and (max-width: 991px) {
  .title_1 {
    font-size: 32px;
  }
  .section__title2 {
    font-size: 36px;
  }
  .section__title {
    font-size: 26px;
  }
  .text__content h2 {
    font-size: 26px;
  }
  .section__subtitle {
    font-size: 20px;
  }
}
@media screen and (max-width: 767px) {
  .title_1 {
    font-size: 28px;
  }
  .section__title2 {
    font-size: 32px;
  }
  .section__title {
    font-size: 24px;
  }
  .text__content h2 {
    font-size: 24px;
  }
  .section__subtitle {
    font-size: 18px;
  }
}
@media screen and (max-width: 576px) {
  .section__title2 {
    font-size: 24px;
  }
}
.form__wrap .input__group {
  margin-bottom: 15px;
}
.form__wrap .input__group p {
  margin: 0 !important;
}
.form__wrap .input__group .order__input {
  display: block;
  width: 100%;
  height: 50px;
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 150%;
  padding-left: 19px;
  border: 1px solid #949494;
  border-radius: 5px;
  background-color: var(--green_5);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  color: var(--white);
}
.form__wrap .input__group .order__input.wpcf7-not-valid {
  border-color: red;
}
.form__wrap .input__group .order__input::-webkit-input-placeholder {
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 150%;
  color: #949494;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.form__wrap .input__group .order__input::-moz-placeholder {
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 150%;
  color: #949494;
  -moz-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.form__wrap .input__group .order__input:-ms-input-placeholder {
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 150%;
  color: #949494;
  -ms-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.form__wrap .input__group .order__input::-ms-input-placeholder {
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 150%;
  color: #949494;
  -ms-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.form__wrap .input__group .order__input::placeholder {
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 150%;
  color: #949494;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.form__wrap .input__group .order__input:hover {
  border-color: var(--white);
}
.form__wrap .input__group .order__input:focus {
  border-color: var(--white);
}
.form__wrap .input__group .order__input.order__input_text {
  height: 200px;
  padding-top: 20px;
}
.form__wrap .input__group select.order__input {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  color: #949494;
  background: var(--green_5) url(../img/select_arrow.svg) no-repeat calc(100% - 20px) center;
}
.form__wrap .input__group select.order__input:focus, .form__wrap .input__group select.order__input:active, .form__wrap .input__group select.order__input:hover {
  color: var(--white);
}
.form__wrap .accept__block label {
  font-size: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.form__wrap .input__acceptance {
  margin-bottom: 8px;
}
.form__wrap .input__acceptance label {
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-family: "Maven Pro", sans-serif;
  color: var(--white);
  font-size: 12px;
  line-height: 1em;
}
.form__wrap .input__acceptance label input[type=checkbox] {
  margin-bottom: 0;
}
.form__wrap input[type=checkbox] {
  pointer-events: none;
  display: block;
  width: 12px;
  height: 12px;
  border-radius: 50px;
  border: 1px solid var(--white);
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  margin-right: 10px;
  cursor: pointer;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  background-color: var(--green_4);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.form__wrap input[type=checkbox]:checked {
  border: 4px solid var(--red);
}
.form__wrap .wpcf7-not-valid-tip {
  font-size: 18px;
  color: var(--orange);
}
.form__wrap span {
  display: block;
}
.form__wrap .wpcf7-list-item {
  display: block;
  margin: 0 !important;
}
.form__wrap .btn {
  max-width: 100%;
  width: 100%;
  padding-right: 0;
}

.head__section {
  height: 676px;
}
.head__section .container {
  height: 100%;
}
.head__section .head__bg {
  width: 98%;
  max-width: 1350px;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  top: 0;
  height: 100%;
  border-radius: 64px 64px 64px 0;
}
.head__section .head__bg::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  background-color: #000;
  opacity: 0.4;
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 64px 64px 64px 0;
}
.head__section .head__bg video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.head__section .head__bg .overlay_elem {
  bottom: -1px;
  left: -1px;
  border-radius: 0 64px 0 0;
  top: auto;
  z-index: 1;
  height: 120px;
}
.head__section .head__bg .overlay_elem .overlay__item {
  border-left: 45px solid #f7f7ec;
  border-bottom: 45px solid #f7f7ec;
  border-top: none;
  border-radius: 0 0 0 100px;
  top: auto;
  width: 100px;
  height: 97px;
}
.head__section .head__bg .overlay_elem .overlay__item.overlay_left {
  top: -52px;
  left: -44px;
}
.head__section .head__bg .overlay_elem .overlay__item.overlay_right {
  bottom: -44px;
  right: -54px;
}
.head__section .offer {
  padding-top: 50px;
  position: relative;
}
.head__section .offer .head__title {
  font-size: 100px;
  font-size: clamp(50px, 6.3vw, 100px);
  line-height: 1em;
  letter-spacing: 0.04em;
}
.head__section .offer .head__subtitle1 {
  line-height: 1.2em;
}
.head__section .offer .head__subtitle2 {
  max-width: 580px;
  line-height: 1.2em;
}
.head__section .offer .btn {
  padding: 0 44px 0 0;
}
.head__section .offer .btn .icon {
  right: 6px;
}

.overlay_elem {
  background-color: #f7f7ec;
  height: 40px;
  width: 48%;
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 0 0 24px 0;
  width: calc(55% + 10px);
  width: 42%;
  height: 90px;
}
.overlay_elem .overlay__item {
  position: absolute;
  left: -15px;
  bottom: -25px;
  width: 40px;
  height: 40px;
  border-left: 15px solid #f7f7ec;
  border-top: 15px solid #f7f7ec;
  background-color: transparent;
  border-radius: 40px 0 0 0;
}
.overlay_elem .overlay__item.overlay_right {
  left: auto;
  bottom: auto;
  right: -25px;
  top: -15px;
}

@media screen and (max-width: 1439px) {
  .head__section .head__bg::after,
  .head__section .head__bg {
    border-radius: 45px 45px 45px 0;
  }
  .head__section .head__bg .overlay_elem {
    border-radius: 0 45px 0 0;
  }
  .head__section .offer .head__subtitle1 {
    font-size: 28px;
  }
  .head__section .offer .head__subtitle2 {
    font-size: 22px;
  }
}
@media screen and (max-width: 1199px) {
  .head__section .offer .head__subtitle1 {
    font-size: 24px;
  }
  .head__section .offer .head__subtitle2 {
    font-size: 20px;
  }
  .head__section {
    height: 580px;
  }
}
@media screen and (max-width: 991px) {
  .head__section {
    height: 500px;
  }
  .head__section .offer .head__subtitle1 {
    font-size: 22px;
  }
  .head__section .offer .head__subtitle2 {
    font-size: 18px;
  }
  .head__section + .padding_block {
    padding-top: 30px;
  }
  section.pt_50 {
    padding-bottom: 30px;
  }
  section.pb_50 {
    padding-bottom: 30px;
  }
  section.mt_50 {
    margin-top: 30px;
  }
  section.mb_50 {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 767px) {
  .head__section {
    height: auto;
  }
  .head__section .head__bg {
    width: 100%;
  }
  .head__section .offer {
    padding-bottom: 50px;
    padding-top: 130px;
  }
  .head__section .head__bg::after,
  .head__section .head__bg {
    border-radius: 0;
  }
  .head__section .head__bg .overlay_elem {
    display: none;
  }
  .head__section .offer .head__title {
    font-size: clamp(48px, 9vw, 100px);
  }
}
@media screen and (max-width: 576px) {
  .head__section + .pt_50 {
    display: none;
  }
  .head__section .offer .head__title {
    font-size: clamp(48px, 14vw, 100px);
  }
  .head__section .offer .head__subtitle1 {
    font-size: 18px;
  }
  .head__section .offer .head__subtitle2 {
    font-size: 14px;
  }
}
.other__head {
  min-height: 420px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 30px 0;
}
.other__head:before {
  content: "";
  display: block;
  width: 55%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.75)), color-stop(95%, rgba(0, 0, 0, 0)));
  background: linear-gradient(to right, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0) 95%);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
}
.other__head .main__title {
  font-size: clamp(48px, 6.3vw, 72px);
  line-height: 1em;
  color: #ffeed6;
}
.other__head .main__title.main__title_hide {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.other__head .main__title.main__title_secondary {
  font-size: clamp(24px, 6.3vw, 52px);
}
.other__head .other__list .other__item:not(:last-child) {
  margin-bottom: 20px;
}
.other__head .other__list .other__item .other__number {
  width: 40px;
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 50px;
  margin-right: 20px;
  background-color: #ffeed6;
}
.other__head .other__list .other__item .other__text {
  font-size: 50px;
  color: #ffeed6;
}
.other__head .text__content {
  max-width: 626px;
}
.other__head .text__content p {
  font-size: 24px;
  margin-bottom: 1em;
  line-height: 1.2em;
}
.other__head .text__content p:last-child {
  margin-bottom: 0;
}
.other__head.other__head_full:before {
  display: none;
}

@media screen and (min-width: 1440px) {
  .other__head:before {
    background: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.75)), color-stop(30%, rgba(0, 0, 0, 0.75)), color-stop(95%, rgba(0, 0, 0, 0)));
    background: linear-gradient(to right, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.75) 30%, rgba(0, 0, 0, 0) 95%);
  }
}
@media screen and (max-width: 1439px) {
  .other__head .other__list .other__item .other__text {
    font-size: 42px;
  }
}
@media screen and (max-width: 1199px) {
  .other__head .other__list .other__item .other__text {
    font-size: 40px;
  }
}
@media screen and (max-width: 991px) {
  .other__head .text__content p {
    font-weight: 500;
  }
  .other__head .text__content p,
  .other__head .text__content li {
    font-size: 20px;
  }
  .other__head:before {
    width: 100%;
    background: #000;
    opacity: 0.4;
    -webkit-backdrop-filter: none;
            backdrop-filter: none;
  }
  .other__head .other__list .other__item .other__text {
    font-size: 36px;
  }
}
@media screen and (max-width: 767px) {
  .other__head + .padding_block {
    display: none;
  }
}
@media screen and (max-width: 576px) {
  .other__head .other__list .other__item .other__text {
    font-size: 32px;
  }
}
.transparent {
  background-attachment: fixed;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.transparent .bg__image {
  width: 100%;
  height: 100%;
  background-color: #f7f7ec;
  height: 18vw;
  max-height: 250px;
}
.transparent .transparent__mask {
  background-attachment: fixed;
  opacity: 1;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  text-align: center;
  background-clip: text;
  text-fill-color: transparent;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
  font-size: clamp(90px, 17.4vw, 250px);
  line-height: 1em;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.transparent .transparent__content {
  min-height: 430px;
  margin-top: auto;
}
.transparent .transparent__content.transparent__content_height {
  min-height: 630px;
}

@media screen and (max-width: 767px) {
  .transparent .transparent__content,
  .transparent .transparent__content.transparent__content_height {
    min-height: initial;
    height: 400px;
    padding: 0;
  }
  .transparent .transparent__content .transparent_subtitle {
    font-size: 18px;
  }
  .transparent .transparent__content .container {
    height: 100%;
    padding-top: 30px;
    padding-bottom: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center;
  }
}
@media screen and (max-width: 576px) {
  .transparent .transparent__mask {
    font-size: clamp(90px, 29.4vw, 250px);
  }
  .transparent .transparent__mask span {
    font-size: clamp(90px, 46.4vw, 250px);
  }
  .transparent .bg__image {
    height: 66vw;
    max-height: initial;
  }
}
.about .about__tabs {
  border-radius: 50px;
  border: 1px solid var(--green_4);
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  max-width: 100%;
}
.about .about__tabs .about__tab {
  height: 40px;
  width: 150px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  cursor: pointer;
  color: var(--grey_text);
  border-radius: 50px;
}
.about .about__tabs .about__tab.active, .about .about__tabs .about__tab:hover {
  background-color: var(--green_4);
  color: var(--white);
}
.about .about__wrap .text__content p {
  font-size: 18px;
  margin-bottom: 0.5em;
}
.about .text__content p {
  font-size: 24px;
  margin-bottom: 0.5em;
}
.about .about__card {
  border-radius: 16px 16px 0 16px;
  min-height: 160px;
  width: 100%;
  padding: 30px 22px 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.about .about__card .about__card_value {
  font-weight: 700;
  text-align: center;
}
.about .about__card .about__card_value sub {
  font-size: 18px;
  bottom: 0em;
}
.about .about__card .about__card_describe {
  margin-top: auto;
}
.about .about__card .overlay_elem {
  height: 36px;
  left: auto;
  top: auto;
  bottom: 0;
  right: 0;
  border-radius: 16px 0 0 0;
}
.about .about__card .overlay_elem .overlay__item {
  position: absolute;
  width: 40px;
  height: 40px;
  border-left: none;
  border-top: none;
  border-right: 16px solid #f7f7ec;
  border-bottom: 16px solid #f7f7ec;
  background-color: transparent;
  border-radius: 0 0 36px 0;
}
.about .about__card .overlay_elem .overlay__item.overlay_left {
  top: auto;
  left: -23px;
  bottom: -16px;
}
.about .about__card .overlay_elem .overlay__item.overlay_right {
  top: -23px;
  right: -16px;
}
.about .about__slider {
  position: relative;
  height: 480px;
}
.about .about__slider.about_hight {
  height: 600px;
}
.about .about__slider .swiper-slide {
  border-radius: 20px;
  overflow: hidden;
}
.about .about__slider .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.about .about__img {
  height: 480px;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}
.about .about__img.about_hight {
  height: 600px;
}
.about .about__img > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.about .about__list {
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 0 28px 42px;
  z-index: 2;
}
.about .about__list .about__item:not(:last-child) {
  margin-bottom: 12px;
}
.about .about__list .about__item .about__icon {
  width: 30px;
  height: 30px;
  border-radius: 50px;
  border: 1px solid var(--white);
  background-color: rgba(247, 247, 236, 0.5);
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-right: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.about .about__list .about__item .about__icon img {
  width: 18px;
  height: auto;
}
.about .swiper__pag {
  position: absolute;
  top: 100%;
  left: 0;
}

.swiper__pag {
  padding-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.swiper__pag .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: var(--light);
  border: 1px solid var(--green_4);
  opacity: 1;
}
.swiper__pag .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--green_4);
}

.swiper__arrows {
  position: absolute;
  pointer-events: none;
  width: 100%;
  top: calc(50% - 25px);
  z-index: 2;
  padding: 0 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.swiper__arrows .swiper__arrow {
  width: 50px;
  height: 50px;
  border-radius: 50px;
  border: 1px solid var(--white);
  background-color: rgba(50, 50, 50, 0.5);
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  pointer-events: all;
}

@media screen and (max-width: 1439px) {
  .about .text__content p br {
    display: none;
  }
}
@media screen and (max-width: 1199px) {
  .about .about__card {
    padding: 30px 18px 15px;
  }
  .about .about__card .overlay_elem {
    width: 30%;
  }
  .about .about__card .about__card_value {
    font-size: 36px;
  }
  .about .about__card {
    min-height: 150px;
  }
}
@media screen and (max-width: 991px) {
  .about .about__slider {
    height: 400px;
  }
  .about .about__slider.about_hight {
    height: 400px;
  }
  .about .about__img {
    height: 400px;
  }
  .about .about__img.about_hight {
    height: 400px;
  }
  .about .text__content p {
    font-size: 20px;
  }
}
@media screen and (max-width: 767px) {
  .about .about__card .about__card_describe {
    padding-right: 30%;
  }
}
@media screen and (max-width: 576px) {
  .about .about__tabs .about__tab {
    font-size: 12px;
    height: 30px;
  }
  .about .about__card {
    padding-left: 2px;
    padding-right: 5px;
    border-radius: 10px 10px 0 10px;
  }
  .about .about__card .overlay_elem {
    border-radius: 10px 0 0 0;
  }
  .about .about__card .overlay_elem .overlay__item {
    border-radius: 0 0 30px 0;
  }
  .about .about__card .about__card_describe {
    padding-right: 38px;
    padding-left: 16px;
  }
  .about .about__card .overlay_elem {
    width: 36px;
  }
  .about .about__card .about__card_value {
    font-size: 28px;
  }
  .swiper__arrows {
    top: calc(50% - 15px);
  }
  .swiper__arrows .swiper__arrow {
    width: 30px;
    height: 30px;
  }
  .swiper__arrows .swiper__arrow svg {
    width: 14px;
    height: 14px;
  }
  .about .text__content p {
    font-size: 18px;
  }
  .about .about__list {
    padding-bottom: 28px;
    max-width: 100%;
  }
  .about .about__list .about__item p {
    font-size: 14px;
  }
}
.service .service__card {
  width: 100%;
  min-height: 400px;
  overflow: hidden;
  border-radius: 0 24px 24px 24px;
  position: relative;
}
.service .service__card .service__content {
  padding: 180px 35px 40px;
}
.service .service__card .service__content .service__subname {
  color: #ffeed6;
}
.service .service__card .service__content .service_subdescribe {
  line-height: 1.1em;
}
.service .service__card:hover .service__name {
  background-color: var(--green_4);
}
.service .service__card:hover .service__name p {
  color: var(--light);
}
.service .service__card:hover .icon {
  -webkit-transform: rotate(0);
          transform: rotate(0);
  border-color: var(--red);
}
.service .service__card:hover .icon path {
  fill: var(--red);
}
.service .service__card .service__img {
  width: 100%;
  height: 100%;
}
.service .service__card .service__name {
  position: absolute;
  left: 0;
  top: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #fff;
  border-radius: 20px;
  height: 80px;
  width: 182px;
  -webkit-box-shadow: -7px 9px 26px rgba(104, 87, 60, 0.06);
          box-shadow: -7px 9px 26px rgba(104, 87, 60, 0.06);
  z-index: 3;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.service .service__card .service__name p {
  text-align: center;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  font-weight: 600;
  font-size: 20px;
  color: var(--green_4);
}
.service .service__card .overlay_elem {
  width: 192px;
  height: 90px;
  border-radius: 0 0 24px 0;
}
.service .service__card.service__card_bt {
  border-radius: 24px 24px 0 24px;
}
.service .service__card.service__card_bt .service__name {
  left: auto;
  top: auto;
  bottom: 0;
  right: 0;
}
.service .service__card.service__card_bt .overlay_elem {
  width: 192px;
  height: 90px;
  border-radius: 24px 0 0;
  left: auto;
  top: auto;
  bottom: 0;
  right: 0;
}
.service .service__card.service__card_bt .overlay_elem .overlay__item {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.service .service__card.service__card_bt .overlay_elem .overlay__item.overlay_left {
  left: -24px;
  bottom: -15px;
}
.service .service__card.service__card_bt .overlay_elem .overlay__item.overlay_right {
  right: -14px;
  top: -25px;
}
.service .service__card .icon {
  position: absolute;
  right: 20px;
  top: 20px;
  width: 38px;
  height: 38px;
  border-radius: 50px;
  border: 1px solid var(--white);
  background-color: rgba(50, 50, 50, 0.5);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  pointer-events: all;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

@media screen and (max-width: 1199px) {
  .service .service__card .service__name p {
    font-size: 18px;
  }
  .service .service__card .service__content {
    padding: 180px 25px 30px;
  }
  .service .service__card .service__content .service_subdescribe {
    font-size: 20px;
  }
}
@media screen and (max-width: 991px) {
  .service .service__card .service__content .service_subdescribe {
    font-size: 24px;
  }
}
.advant .advant__item.advant_20 {
  width: 20%;
}
.advant .advant__item.advant_25 {
  width: 25%;
}
.advant .advant__item.advant_30 {
  width: 33.3333333333%;
}
.advant .advant__item .advant__name {
  padding-left: 15px;
  padding-right: 15px;
  margin: 0 auto;
}
.advant .advant__item .advant__text {
  max-width: 220px;
  margin: 0 auto;
}
.advant .advant__item .advant__icon {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.advant .advant__item .advant__icon img {
  width: 50px;
  height: auto;
}

@media screen and (max-width: 1199px) {
  .advant .advant__item.advant_20 {
    width: 33.3333333333%;
  }
}
@media screen and (max-width: 767px) {
  .advant {
    padding-bottom: 20px !important;
  }
  .advant .advant__item.advant_25,
  .advant .advant__item.advant_30,
  .advant .advant__item.advant_20 {
    width: 50%;
    margin-bottom: 23px;
  }
  .advant .advant__item .advant__text {
    font-size: 18px;
    padding-top: 8px;
  }
}
@media screen and (max-width: 576px) {
  .advant .advant__item.advant_30 {
    width: 100%;
  }
  .advant .advant__item .advant__name {
    font-size: 18px;
    padding-left: 0;
    padding-right: 0;
  }
  .advant .advant__item .advant__icon {
    width: 60px;
    height: 60px;
  }
  .advant .advant__item .advant__icon img {
    width: 30px;
  }
}
.investors .investors__cards {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.investors .investors__cards .investors__card {
  width: calc(50% - 12px);
  height: 440px;
}
.investors .investors__cards .investors__card.investors__card_min .overlay_elem {
  width: 250px;
}
.investors .investors__cards .investors__card.investors__card_min.investors__card_right .investors__bg {
  position: absolute;
  border-radius: 0 38px 38px 38px;
  overflow: hidden;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.investors .investors__cards .investors__card.investors__card_min.investors__card_right .investors__bg .overlay_elem {
  left: 0;
  right: auto;
  border-radius: 0 0 38px 0;
  height: 120px;
}
.investors .investors__cards .investors__card.investors__card_min.investors__card_right .investors__bg .overlay_elem .overlay__item {
  -webkit-transform: scale(1.5) rotate(0deg);
          transform: scale(1.5) rotate(0deg);
}
.investors .investors__cards .investors__card.investors__card_min.investors__card_right .investors__bg .overlay_elem .overlay__item.overlay_left {
  left: -12px;
  bottom: -27px;
  top: auto;
}
.investors .investors__cards .investors__card.investors__card_min.investors__card_right .investors__bg .overlay_elem .overlay__item.overlay_right {
  left: auto;
  bottom: auto;
  right: -27px;
  top: -13px;
}
.investors .investors__cards .investors__card.investors__card_long {
  z-index: 1;
}
.investors .investors__cards .investors__card.investors__card_long.investors__card_right .investors__bg {
  border-radius: 30px;
  background-size: calc(100% + 250px) auto;
  background-position: right top;
  overflow: visible;
}
.investors .investors__cards .investors__card.investors__card_long.investors__card_right .investors__bg .overlay_elem {
  right: auto;
  left: 0;
}
.investors .investors__cards .investors__card.investors__card_long.investors__card_right .investors__bg .overlay_elem {
  width: 250px;
  left: -250px;
  height: 21px;
  top: 100px;
  z-index: 2;
  border-radius: 0 30px 0 30px;
}
.investors .investors__cards .investors__card.investors__card_long.investors__card_right .investors__bg .overlay_elem .overlay__item.overlay_left {
  -webkit-transform: scale(1) rotate(270deg);
  transform: scale(1) rotate(270deg);
  left: -11px;
  bottom: auto;
  top: -50px;
  border-left: 10px solid #f7f7ec;
  border-top: 10px solid #f7f7ec;
  border-radius: 39px 0 0 0;
  width: 60px;
  height: 60px;
}
.investors .investors__cards .investors__card.investors__card_long.investors__card_right .investors__bg .overlay_elem .overlay__item.overlay_right {
  border: none;
  border-radius: 0;
  background-color: #f7f7ec;
  width: 10px;
  height: 10px;
  left: -10px;
  bottom: 16px;
}
.investors .investors__cards .investors__card.investors__card_long.investors__card_right .investors__bginner {
  left: auto;
  right: 0;
  background-size: 100% auto;
  background-position: right top;
}
.investors .investors__cards .investors__card.investors__card_long.investors__card_left .investors__bginner {
  left: 0;
  right: auto;
  background-size: 100% auto;
  background-position: left top;
}
.investors .investors__cards .investors__card.investors__card_long.investors__card_left .investors__bg {
  border-radius: 30px;
  background-size: calc(100% + 250px) auto;
  background-position: left top;
  overflow: visible;
}
.investors .investors__cards .investors__card.investors__card_long.investors__card_left .investors__bg .overlay_elem {
  right: auto;
  left: 0;
}
.investors .investors__cards .investors__card.investors__card_long.investors__card_left .investors__bg .overlay_elem {
  width: 250px;
  left: 100%;
  height: 21px;
  top: 100px;
  z-index: 2;
  border-radius: 30px 0 30px 0;
}
.investors .investors__cards .investors__card.investors__card_long.investors__card_left .investors__bg .overlay_elem .overlay__item.overlay_left {
  -webkit-transform: scale(1) rotate(180deg);
          transform: scale(1) rotate(180deg);
  right: -10px;
  left: auto;
  bottom: auto;
  top: -50px;
  border-left: 10px solid #f7f7ec;
  border-top: 10px solid #f7f7ec;
  border-radius: 39px 0 0 0;
  width: 60px;
  height: 60px;
}
.investors .investors__cards .investors__card.investors__card_long.investors__card_left .investors__bg .overlay_elem .overlay__item.overlay_right {
  border: none;
  border-radius: 0;
  background-color: #f7f7ec;
  width: 10px;
  height: 10px;
  right: -4px;
  bottom: 16px;
}
.investors .investors__cards .investors__card.investors__card_full {
  width: 100%;
}
.investors .investors__cards .investors__card.investors__card_full .investors__bg {
  border-radius: 38px;
}
.investors .investors__cards .investors__card.investors__card_full .investors__text {
  width: 426px;
  max-width: 100%;
  padding: 0;
  margin: auto;
}
.investors .investors__cards .investors__card .investors__bg {
  position: absolute;
  border-radius: 38px 0 38px 38px;
  overflow: hidden;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.investors .investors__cards .investors__card .investors__bg .overlay_elem {
  left: auto;
  right: 0;
  border-radius: 0 0 0 38px;
  height: 120px;
}
.investors .investors__cards .investors__card .investors__bg .overlay_elem .overlay__item {
  -webkit-transform: scale(1.5) rotate(90deg);
          transform: scale(1.5) rotate(90deg);
}
.investors .investors__cards .investors__card .investors__bg .overlay_elem .overlay__item.overlay_left {
  left: -27px;
  bottom: auto;
  top: -12px;
}
.investors .investors__cards .investors__card .investors__bg .overlay_elem .overlay__item.overlay_right {
  left: auto;
  bottom: -28px;
  right: -13px;
  top: auto;
}
.investors .investors__cards .investors__card .investors__bginner {
  width: calc(100% + 250px);
  height: 120px;
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 30px;
  overflow: hidden;
}
.investors .investors__cards .investors__text {
  padding: 0 10px 40px 50px;
  position: relative;
  z-index: 2;
  color: var(--white);
}

@media screen and (max-width: 1439px) {
  .investors .investors__cards .investors__text {
    font-size: 28px;
  }
}
@media screen and (max-width: 1199px) {
  .investors .investors__cards .investors__text {
    font-size: 26px;
  }
}
@media screen and (max-width: 991px) {
  .investors .investors__cards .investors__text {
    font-size: 24px;
    padding: 0 26px 26px;
  }
  .investors .investors__cards .investors__card {
    width: 100%;
    height: 380px;
  }
  .investors .investors__cards .investors__card.investors__card_min .overlay_elem {
    height: 70px;
    width: 40%;
    border-radius: 0 0 0 25px;
  }
  .investors .investors__cards .investors__card.investors__card_min .overlay_elem .overlay__item {
    border-radius: 30px 0 0 0;
  }
  .investors .investors__cards .investors__card.investors__card_min.investors__card_right .investors__bg .overlay_elem {
    height: 70px;
    width: 40%;
    border-radius: 0 0 25px 0;
  }
  .investors .investors__cards .investors__card.investors__card_min.investors__card_right .investors__bg .overlay_elem .overlay__item {
    border-radius: 30px 0 0 0;
  }
  .investors .investors__cards .investors__card.investors__card_full .investors__bg {
    border-radius: 25px;
  }
  .investors .investors__cards .investors__card.investors__card_min.investors__card_right .investors__bg {
    border-radius: 0 25px 25px 25px;
  }
  .investors .investors__cards .investors__card .investors__bg {
    border-radius: 25px 0 25px 25px;
  }
  .investors .investors__cards .investors__card .investors__bg .overlay__item {
    border-radius: 30px 0 0 0;
  }
  .investors .investors__cards .investors__card .investors__bginner {
    height: 90px;
  }
  .investors .investors__cards .investors__card.investors__card_long.investors__card_right .investors__bg .overlay_elem,
  .investors .investors__cards .investors__card.investors__card_long.investors__card_left .investors__bg .overlay_elem {
    top: 70px;
  }
  .investors .investors__cards .investors__card.investors__card_full .investors__text {
    padding: 0 26px 26px;
  }
}
@media screen and (max-width: 767px) {
  .investors .investors__cards .investors__card {
    height: 300px;
  }
}
@media screen and (max-width: 576px) {
  .investors .investors__cards .investors__card {
    height: 240px;
  }
  .investors .investors__cards .investors__text {
    font-size: 20px;
  }
}
.finishing .finishing__card {
  border-radius: 20px;
  overflow: hidden;
  height: 400px;
}
.finishing .finishing__card .finishing__top {
  height: 90px;
}

@media screen and (max-width: 576px) {
  .finishing .finishing__card .finishing__top {
    height: 70px;
  }
  .finishing .finishing__card .finishing__top .finishing__name {
    font-size: 24px;
  }
}
.cta .cta__block {
  position: relative;
  border-radius: 20px;
  padding: 90px 0;
  overflow: hidden;
  background-color: #111;
}
.cta .cta__block .cta__bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0.2;
  pointer-events: none;
}
.cta .cta__block .cta__btn {
  background-color: var(--red);
  color: var(--white);
}
.cta .cta__block .cta__btn:hover {
  background-color: var(--red2);
}

@media screen and (max-width: 767px) {
  .cta .cta__block {
    padding: 50px 0;
  }
  .cta .cta__block .section__title2 {
    font-size: 24px;
  }
  .cta .cta__block .cta__subtitle {
    font-size: 20px;
  }
}
.information .text__content p,
.information .text__content li {
  font-family: "Maven Pro", sans-serif;
  font-size: 24px;
  margin-bottom: 0.5em;
  line-height: 1.2em;
}
.information .text__content p.c_red,
.information .text__content li.c_red {
  color: var(--red);
}
.information .table_block .information__table {
  max-width: 500px;
}
.information .information__table {
  width: 100%;
}
.information .information__table table {
  max-width: 800px;
  margin: 0 auto;
  border-collapse: collapse;
  width: 100%;
  margin-bottom: 20px;
}
.information .information__table table tr td {
  border-bottom: 1px solid #eaead1;
  background-color: var(--light);
  font-family: "Maven Pro", sans-serif;
  color: var(--green_4);
  padding: 8px 10px 7px 18px;
}
.information .information__table table tr td:first-child {
  font-size: 14px;
  font-weight: 500;
  width: 55%;
}
.information .information__table table tr td:last-child {
  font-size: 16px;
  font-weight: 700;
  padding-left: 0;
}
.information .information__table table tr:first-child td:first-child {
  border-radius: 20px 0 0 0;
}
.information .information__table table tr:first-child td:last-child {
  border-radius: 0 20px 0 0;
}
.information .information__table table tr:last-child td {
  border-bottom: none;
}
.information .information__table table tr:last-child td:first-child {
  border-radius: 0 0 0 20px;
}
.information .information__table table tr:last-child td:last-child {
  border-radius: 0 0 20px 0;
}
.information .information__table .information__table_subscribe {
  font-size: 18px;
  font-weight: 500;
  font-family: "Maven Pro", sans-serif;
  padding-top: 20px;
  color: var(--white);
}

@media screen and (max-width: 1439px) {
  .information {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
@media screen and (max-width: 1199px) {
  .information {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
@media screen and (max-width: 991px) {
  .information {
    padding-top: 70px;
    padding-bottom: 70px;
  }
  .information .information__table .information__table_subscribe {
    font-size: 16px;
  }
}
@media screen and (max-width: 767px) {
  .information {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .information .text__content p,
  .information .text__content li {
    font-size: 18px;
  }
  .information .information__table table tr:first-child td:first-child {
    border-radius: 10px 0 0 0;
  }
  .information .information__table table tr:first-child td:last-child {
    border-radius: 0 10px 0 0;
  }
  .information .information__table table tr:last-child td:last-child {
    border-radius: 0 0 10px 0;
  }
  .information .information__table table tr:last-child td:first-child {
    border-radius: 0 0 0 10px;
  }
  .information .information__table table tr td {
    padding: 5px 7px 4px 5px;
  }
  .information .information__table table tr td:first-child {
    font-size: 12px;
  }
  .information .information__table table tr td:last-child {
    font-size: 14px;
  }
}
@media screen and (max-width: 576px) {
  .information .information__table .information__table_subscribe {
    font-size: 14px;
    padding-top: 10px;
  }
}
.list .list__name {
  padding-left: 28px;
  position: relative;
}
.list .list__name::before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  border-radius: 50px;
  background-color: var(--red);
  border: 1px solid var(--red);
  -webkit-box-shadow: inset 0 0 0 2px var(--light);
          box-shadow: inset 0 0 0 2px var(--light);
  position: absolute;
  left: 0;
  top: 7px;
}

@media screen and (max-width: 991px) {
  .list .list__name {
    font-size: 24px;
  }
  .list .fz_24 {
    font-size: 18px;
  }
}
.flats__favorite {
  cursor: pointer;
}
.flats__favorite * {
  pointer-events: none;
}
.flats__favorite.favorite path {
  stroke: var(--red);
  fill: var(--red);
}

.favorite_not {
  border-radius: 20px;
}

.flats {
  overflow: hidden;
}
.flats .flats__link {
  width: 100%;
  max-width: 280px;
}
.flats .sircle {
  top: 170px;
  left: -60px;
}
.flats .sircle.sircle_right {
  left: auto;
  top: auto;
  bottom: 40px;
  right: 0;
}
.flats .flats__swiper {
  overflow: visible;
}
.flats .flats__swiper .swiper-slide {
  border-radius: 20px;
  padding: 22px 40px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.flats .flats__swiper .swiper-slide.swiper-slide-active {
  background-color: var(--green_4);
  margin-top: -30px;
}
.flats .flats__swiper .swiper-slide.swiper-slide-active .overlay_elem {
  background-color: var(--green_4);
}
.flats .flats__swiper .swiper-slide.swiper-slide-active .overlay_elem .overlay__item {
  border-right: 24px solid var(--green_4);
  border-bottom: 24px solid var(--green_4);
}
.flats .flats__swiper .swiper-slide .flats__favorite {
  cursor: pointer;
}
.flats .flats__swiper .swiper-slide .flats__favorite * {
  pointer-events: none;
}
.flats .flats__swiper .swiper-slide .flats__favorite path {
  fill: transparent;
}
.flats .flats__swiper .swiper-slide .flats__favorite:hover path {
  fill: #ffffff;
}
.flats .flats__swiper .swiper-slide .flats__favorite.active path {
  fill: var(--red);
}
.flats .flats__swiper .swiper-slide .flats__imgs {
  border-radius: 24px 24px 0 24px;
  overflow: hidden;
  position: relative;
  height: 340px;
}
.flats .flats__swiper .swiper-slide .flats__imgs .flats__thumbnail {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.flats .flats__swiper .swiper-slide .flats__plans {
  position: absolute;
  right: 20px;
  top: 20px;
  z-index: 2;
}
.flats .flats__swiper .swiper-slide .flats__plans .flats__plan {
  background: linear-gradient(130deg, #fff, rgba(255, 255, 255, 0.1));
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  border: 1px solid var(--white);
  border-radius: 10px;
  width: 120px;
  height: 120px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.flats .flats__swiper .swiper-slide .flats__plans .flats__plan img {
  width: auto;
  height: auto;
  max-width: 85%;
  max-height: 90%;
}
.flats .flats__swiper .swiper-slide .flats__permalink {
  width: 180px;
  height: 40px;
  position: absolute;
  right: 40px;
  top: 385px;
  z-index: 2;
  font-size: 12px;
  border: 1px solid var(--white);
  text-align: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-weight: 500;
  padding: 0;
}
.flats .flats__swiper .swiper-slide .flats__permalink:hover {
  background-color: var(--white);
  color: var(--green_4);
}
.flats .flats__swiper .swiper-slide .flats__permalink:hover {
  background-color: var(--white);
  color: var(--green_4);
}
.flats .flats__swiper .swiper-slide .flats__consult {
  position: absolute;
  z-index: 5;
  left: 10px;
  bottom: 5px;
  color: var(--white);
  font-weight: 600;
  font-size: 12px;
}
.flats .flats__swiper .swiper-slide .flats__consult .flats_icon {
  width: 30px;
  height: 30px;
  border-radius: 50px;
  background-color: rgba(255, 255, 255, 0.5);
  -webkit-backdrop-filter: filter(5px);
          backdrop-filter: filter(5px);
  border: 1px solid var(--white);
}
.flats .flats__swiper .swiper-slide .overlay_elem {
  height: 60px;
  left: auto;
  top: auto;
  bottom: 0;
  right: 0;
  border-radius: 24px 0 0 0;
  background-color: var(--green_5);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  width: 210px;
}
.flats .flats__swiper .swiper-slide .overlay_elem .overlay__item {
  position: absolute;
  width: 60px;
  height: 60px;
  border-left: none;
  border-top: none;
  border-right: 24px solid var(--green_5);
  border-bottom: 24px solid var(--green_5);
  background-color: transparent;
  border-radius: 0 0 50px 0;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.flats .flats__swiper .swiper-slide .overlay_elem .overlay__item.overlay_left {
  top: auto;
  left: -35px;
  bottom: -24px;
}
.flats .flats__swiper .swiper-slide .overlay_elem .overlay__item.overlay_right {
  top: -35px;
  right: -24px;
}
.flats .swiper__pag {
  margin: 0 20px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
.flats .swiper__pag .swiper-pagination-bullet {
  border-color: var(--white);
  background-color: var(--green_5);
}
.flats .swiper__pag .swiper-pagination-bullet.swiper-pagination-bullet-active {
  border-color: var(--white);
  background-color: var(--white);
}
.flats .swiper__arrow {
  width: 20px;
  height: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: 1px solid var(--white);
  border-radius: 20px;
}
.flats .swiper__arrow svg {
  width: 10px;
  height: 10px;
}

.sircle {
  background-color: #157848;
  width: 390px;
  height: 390px;
  position: absolute;
  -webkit-filter: blur(200px);
          filter: blur(200px);
}

@media screen and (max-width: 1439px) {
  .flats .flats__swiper .swiper-slide .flats__name {
    font-size: 36px;
  }
}
@media screen and (max-width: 1199px) {
  .flats .flats__swiper .swiper-slide .flats__name {
    font-size: 32px;
  }
}
@media screen and (max-width: 767px) {
  .flats .flats__swiper .swiper-slide {
    padding: 20px 15px 100px;
  }
  .flats .flats__swiper .swiper-slide .flats__top {
    margin-bottom: 16px;
  }
  .flats .flats__swiper .swiper-slide .flats__name {
    font-size: 20px;
  }
  .flats .flats__swiper .swiper-slide .flats__permalink {
    top: auto;
    bottom: 30px;
    right: calc(50% - 90px);
    height: 40px;
    font-size: 12px;
  }
  .flats .flats__swiper .swiper-slide .flats__imgs {
    height: 170px;
  }
  .flats .flats__swiper .swiper-slide .flats__item p {
    font-size: 12px;
  }
  .flats .flats__swiper .swiper-slide .flats__consult {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .flats .flats__swiper .swiper-slide .flats__imgs {
    border-radius: 15px 15px 0 15px;
  }
  .flats .flats__swiper .swiper-slide .flats__info {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .flats .flats__swiper .swiper-slide .flats__plans {
    right: 5px;
    top: 5px;
  }
  .flats .flats__swiper .swiper-slide .flats__plans .flats__plan {
    width: 58px;
    height: 58px;
    border-radius: 5px;
  }
  .flats .flats__swiper .swiper-slide .overlay_elem {
    width: calc(100% - 146px);
    height: 30px;
    max-width: 110px;
    border-radius: 15px 0 0 0;
  }
  .flats .flats__swiper .swiper-slide .overlay_elem .overlay__item {
    width: 40px;
    height: 40px;
  }
  .flats .flats__swiper .swiper-slide .overlay_elem .overlay__item.overlay_left {
    top: auto;
    left: -16px;
    bottom: -24px;
  }
  .flats .flats__swiper .swiper-slide .overlay_elem .overlay__item.overlay_right {
    top: -16px;
    right: -24px;
  }
}
.steps .steps__wrap {
  overflow: hidden;
  height: auto;
  padding: 0 12px;
}
.steps .step__swiper {
  margin: 0 -15px;
}
.steps .step__swiper .swiper-wrapper {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.steps .steps__cards {
  padding: 118px 40px 44px;
  position: relative;
  border-radius: 24px;
  min-height: 380px;
}
.steps .steps__cards .steps__number {
  left: 20px;
  top: 20px;
}
.steps .steps__cards .overlay_elem {
  width: 155px;
  height: 85px;
  left: auto;
  top: 0;
  right: 0;
  border-radius: 0 0 0 24px;
  background-color: var(--light);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  width: 160lpx;
}
.steps .steps__cards .overlay_elem .steps__arrow {
  width: 145px;
  height: 74px;
  z-index: 2;
}
.steps .steps__cards .overlay_elem .overlay__item {
  position: absolute;
  width: 60px;
  height: 60px;
  border-left: none;
  border-bottom: none;
  border-top: 24px solid var(--light);
  border-right: 24px solid var(--light);
  background-color: transparent;
  border-radius: 0 50px 0 0;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.steps .steps__cards .overlay_elem .overlay__item.overlay_left {
  top: auto;
  left: -35px;
  bottom: 49px;
}
.steps .steps__cards .overlay_elem .overlay__item.overlay_right {
  top: auto;
  bottom: -36px;
  right: -24px;
}

@media screen and (max-width: 1199px) {
  .steps .steps__cards {
    padding: 118px 20px 30px;
  }
}
@media screen and (max-width: 991px) {
  .steps .steps__wrap {
    width: 316px;
    padding: 0;
  }
  .steps .step__swiper .swiper-wrapper {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    margin: 0;
  }
  .steps .steps__cards {
    padding: 90px 20px 20px;
  }
  .steps .steps__cards .steps__name {
    font-size: 18px;
  }
  .steps .steps__cards .steps__text {
    font-size: 14px;
  }
  .steps .step__swiper {
    margin: 0;
  }
}
@media screen and (max-width: 375px) {
  .steps .steps__wrap {
    width: 290px;
    padding: 0;
  }
}
.filter {
  overflow: hidden;
}
.filter .section__title {
  color: var(--white);
}
.filter .sircle {
  width: 530px;
  height: 370px;
  left: auto;
  left: -287px;
  -webkit-transform: rotate(-73.46°);
          transform: rotate(-73.46°);
  top: auto;
  bottom: 20%;
}
.filter .sircle.sircle_right {
  left: auto;
  top: 170px;
  right: -70px;
}
.filter .filter__wrap {
  padding: 30px 40px;
  border-radius: 20px;
  overflow: hidden;
}
.filter .filter__wrap .btn {
  width: 180px;
  margin-top: 50px;
  margin-left: auto;
}
.filter .filter__item label {
  cursor: pointer;
  display: block;
  width: 100%;
}
.filter .filter__item label input {
  position: absolute;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  opacity: 0;
}
.filter .filter__item label input:checked + .filter__tax {
  border-color: var(--red);
}
.filter .filter__item label .filter__tax {
  min-height: 170px;
  padding: 12px 12px 20px;
  border-radius: 10px;
  border: 1px solid var(--green_4);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.filter .filter__item label .filter__tax .filter__thumbnail {
  height: 85px;
  border-radius: 10px 10px 0 10px;
  overflow: hidden;
}
.filter .filter__item label .filter__tax .filter__thumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.filter .filter__item label .filter__tax .filter__thumbnail .overlay_elem {
  height: 20px;
  right: 0;
  bottom: 0;
  left: auto;
  top: auto;
  border-radius: 10px 0 0 0;
  background-color: var(--green_4);
}
.filter .filter__item label .filter__tax .filter__thumbnail .overlay_elem .overlay__item {
  border-left: none;
  border-top: none;
  width: 20px;
  height: 20px;
  border-right: 8px solid var(--green_4);
  border-bottom: 8px solid var(--green_4);
  border-radius: 0 0 40px 0;
  left: -11px;
  bottom: -8px;
}
.filter .filter__item label .filter__tax .filter__thumbnail .overlay_elem .overlay__item.overlay_right {
  left: auto;
  bottom: auto;
  right: -8px;
  top: -12px;
}
.filter .filter__contact {
  border-radius: 20px;
  padding: 43px 0;
}
.filter .filter__contact .hide__title {
  opacity: 0;
  position: absolute;
  pointer-events: none;
}
.filter .filter__contact .contact__title {
  color: var(--green_4);
}
.filter .filter__contact .contact__subtitle {
  max-width: 300px;
}
.filter .filter__contact .form__wrap .input__group .order__input {
  background-color: var(--white);
  color: var(--grey_text);
}
.filter .filter__contact .form__wrap .input__acceptance label {
  color: var(--grey_text);
}
.filter .filter__contact .form__wrap .input__acceptance label input[type=checkbox] {
  background-color: var(--light);
  border: 1px solid var(--grey_text);
}
.filter .filter__contact .form__wrap .input__acceptance label input[type=checkbox]:checked {
  border: 4px solid var(--red);
}
.filter .filter__contact .form__wrap .btn {
  height: 60px;
  color: #ffeed6;
}
.filter .filter__contact .form__wrap .wpcf7-not-valid-tip {
  position: static;
}

.filter__card {
  padding: 30px 25px;
  border-radius: 20px;
}
.filter__card .filter__card_thumbnail {
  height: 230px;
  background-color: var(--white);
  border-radius: 10px;
  margin-bottom: 15px;
  text-align: center;
  cursor: pointer;
}
.filter__card .filter__card_thumbnail img {
  width: auto;
  height: auto;
  pointer-events: none;
  max-height: 95%;
}
.filter__card .filter__consult {
  color: var(--white);
  font-weight: 600;
  font-size: 12px;
}
.filter__card .filter__consult .flats_icon {
  width: 30px;
  height: 30px;
  border-radius: 50px;
  background-color: rgba(255, 255, 255, 0.5);
  -webkit-backdrop-filter: filter(5px);
          backdrop-filter: filter(5px);
  border: 1px solid var(--white);
}
.filter__card .btn.card__btn {
  width: 140px;
  height: 30px;
  font-size: 12px;
  font-weight: 600;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.514);
  background-color: var(--green_4);
}

@media screen and (max-width: 1439px) {
  .filter .filter__wrap {
    padding: 28px 20px;
  }
  .filter .filter__swiper {
    overflow: visible;
  }
  .filter .filter__title {
    text-align: center;
  }
}
@media screen and (max-width: 991px) {
  .filter .filter__contact .contact__title {
    text-align: center;
    max-width: 500px;
    margin: 0 auto;
  }
  .filter .filter__contact .contact__subtitle {
    margin: 0 auto;
    text-align: center;
  }
}
@media screen and (max-width: 576px) {
  .filter .filter__item {
    width: 205px;
  }
  .filter .filter__wrap .btn {
    width: 100%;
    max-width: 350px;
    margin-top: 25px;
    margin-right: auto;
  }
  .filter__card {
    padding: 30px 18px;
  }
}
.future .future_bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.future .container {
  z-index: 2;
}
.future .future__wrap {
  padding-left: 37px;
  padding-right: 50px;
  background: linear-gradient(130deg, rgba(50, 50, 50, 0.5), rgba(0, 0, 0, 0.28));
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  width: 100%;
  max-width: 810px;
  overflow: hidden;
}
.future .future__list .future__item:not(:last-child) {
  margin-bottom: 30px;
}
.future .future__list .future__item .future__value {
  width: 200px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  padding-right: 15px;
}
.future .future__list .future__item .future__text {
  max-width: 450px;
}

@media screen and (max-width: 991px) {
  .future {
    padding-top: 30px;
  }
  .future .future_bg {
    position: static;
    margin-top: 20px;
    width: 100%;
    height: 100wh;
    min-height: 384px;
    max-height: 500px;
  }
  .future .future__wrap {
    padding: 0;
    background: transparent;
  }
  .future .future__wrap .section__title2 {
    font-size: 32px;
    text-align: center;
    color: var(--green_4);
  }
  .future .future__list .future__item .future__value {
    color: var(--green_4);
  }
  .future .future__list .future__item .future__text {
    font-weight: 400;
    color: var(--grey_text);
  }
}
@media screen and (max-width: 576px) {
  .future .future__wrap .section__title2 {
    font-size: 24px;
  }
  .future .future__list .future__item .future__value {
    width: 39%;
    font-size: 24px;
    font-weight: 700;
    color: var(--green_4);
  }
  .future .future__list .future__item .future__text {
    width: 59%;
    font-size: 18px;
    font-weight: 400;
  }
}
.map iframe {
  height: 655px;
  width: 100%;
  display: block;
}

.flat .flat__content {
  width: 100%;
}
.flat .flat__content.flat__content_slider .flat__slider {
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
  height: 570px;
  border-radius: 10px;
  background-color: var(--white);
}
.flat .flat__content.flat__content_slider .flat__slider .swiper-slide img {
  max-width: 100%;
  height: auto;
}
.flat .flat__content.flat__content_slider .flat__slider .swiper__arrows {
  left: 0;
}
.flat .flat__content.flat__content_slider .flat__pag {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
}
.flat .flat__content .flat__load .icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid var(--grey_text);
}
.flat .flat__content .flat__load .icon path {
  fill: var(--grey_text);
}
.flat .flat__content .flat__load:hover .icon {
  border-color: var(--green_4);
  background-color: var(--green_4);
}
.flat .flat__content .flat__load:hover .icon path {
  fill: #ffeed6;
}
.flat .flat__content .flat__load:active .icon {
  border-color: var(--red);
  background-color: var(--red);
}
.flat .flat__content .flat__load:active .icon path {
  fill: #ffeed6;
}
.flat .flat__content .flat__price_val svg {
  width: 28px;
  height: 28px;
}
.flat .flat__content .flat__price_val path {
  fill: var(--green_4);
}
.flat .flat__content .flat__info {
  margin-bottom: 70px;
}
.flat .flat__content .flat__info p {
  padding: 10px 20px 9px;
  border-radius: 50px;
  border: 1px solid var(--grey_text);
}
.flat .flat__content .flat__cards {
  background-color: var(--white);
  border-radius: 5px;
  overflow: hidden;
  width: 100%;
  margin-bottom: 50px;
}
.flat .flat__content .flat__cards .flat__card {
  height: 120px;
  width: 50%;
  padding-left: 60px;
  padding-right: 15px;
}
.flat .flat__content .flat__cards .flat__card:first-child {
  position: relative;
}
.flat .flat__content .flat__cards .flat__card:first-child::after {
  content: "";
  display: block;
  width: 1px;
  height: 76%;
  position: absolute;
  right: 0;
  top: 13%;
  background-color: #e9e9d4;
}
.flat .flat__content .btn {
  width: 100%;
  height: 50px;
  padding-right: 0;
}
.flat .flat__content .btn:hover, .flat .flat__content .btn:active {
  background-color: var(--green_5);
}
.flat .flat__content .btn.flat_btn_tr {
  background-color: transparent;
  color: var(--red);
  border: 1px solid var(--red);
}
.flat .flat__content .btn.flat_btn_tr:hover {
  color: #ffeed6;
  background-color: var(--red);
}
.flat .flat__content .btn.flat_btn_tr:active {
  color: #ffeed6;
  background-color: var(--red2);
  border: 1px solid var(--red2);
}

@media screen and (min-width: 1200px) {
  .flat .flat__content {
    width: 100%;
    max-width: 560px;
  }
  .flat .flat__content.flat__content_slider {
    max-width: 510px;
  }
}
@media screen and (max-width: 1199px) {
  .flat .flat__content {
    width: 100%;
    max-width: 50%;
  }
  .flat .flat__content.flat__content_slider {
    max-width: 50%;
  }
  .flat .flat__content.flat__content_slider .flat__slider {
    height: 500px;
  }
}
@media screen and (max-width: 991px) {
  .flat .flat__content {
    width: 100%;
    max-width: 100%;
  }
  .flat .flat__content.flat__content_slider {
    max-width: 100%;
  }
  .flat .flat__content.flat__content_slider .flat__slider {
    margin-bottom: 50px;
  }
  .flat .flat__content.flat__content_slider .flat__slider {
    height: 400px;
  }
}
@media screen and (max-width: 576px) {
  .flat .flat__content.flat__content_slider .flat__slider {
    max-width: 400px;
    margin: 0 auto 50px;
    max-height: 400px;
    height: 90vw;
    padding: 15px;
  }
  .flat .flat__content .flat__cards {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 20px;
  }
  .flat .flat__content .flat__cards .flat__card {
    height: 107px;
    padding-right: 18px;
    width: 100%;
  }
  .flat .flat__content .flat__cards .flat__card:first-child::after {
    height: 1px;
    width: calc(100% - 56px);
    left: 28px;
    right: auto;
    bottom: 0;
    top: auto;
  }
  .flat .flat__content .flat__info {
    margin-bottom: 20px;
  }
  .flat .flat__content .flat__info p {
    padding: 4px 12px 3px;
    font-size: 12px;
  }
  .flat .flat__content .flat__head {
    margin-bottom: 17px;
  }
  .flat .flat__content .flat__price p {
    font-size: 20px;
  }
  .flat .flat__title {
    font-size: 32px;
  }
}
.oferta .oferta__arrows .swiper__arrow {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid var(--green_4);
  background-color: transparent;
}
.oferta .oferta__arrows .swiper__arrow path {
  fill: var(--green_4);
}
.oferta .oferta__arrows .swiper__arrow:hover {
  background-color: var(--green_4);
}
.oferta .oferta__arrows .swiper__arrow:hover path {
  fill: var(--light);
}
.oferta .oferta__slider {
  width: 60vw;
}
.oferta .oferta__slider .swiper-slide {
  width: 275px;
}
.oferta .oferta__slider .swiper-slide .oferta__img {
  height: 435px;
  border-radius: 20px;
  overflow: hidden;
}
.oferta .oferta__slider .swiper-slide .oferta__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.oferta .oferta__slider.oferta__slider_info .swiper-slide .oferta__img {
  height: 400px;
}

@media screen and (max-width: 991px) {
  .oferta .oferta__slider {
    width: 130vw;
  }
}
.faq .faq__item {
  background-color: var(--white);
  padding: 18px 50px 17px 80px;
  margin-bottom: 12px;
  border-radius: 5px;
}
.faq .faq__item .faq__question {
  padding-right: 35px;
  cursor: pointer;
  position: relative;
}
.faq .faq__item .faq__question .faq__question_text {
  max-width: 785px;
}
.faq .faq__item .faq__question .icon {
  width: 30px;
  height: 30px;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: calc(50% - 15px);
}
.faq .faq__item .faq__answer .text__content {
  padding: 15px 0 0 15px;
}
.faq .faq__item .faq__answer .text__content p,
.faq .faq__item .faq__answer .text__content li {
  font-size: 18px;
  font-family: "Maven Pro", sans-serif;
  margin-bottom: 0.5em;
  line-height: 1.2em;
}

.contact {
  overflow: hidden;
}
.contact .section__title {
  color: var(--white);
}
.contact .sircle {
  width: 530px;
  height: 370px;
  top: auto;
  bottom: -96px;
  left: 0;
  -webkit-filter: blur(150px);
          filter: blur(150px);
}
.contact .sircle.sircle_right {
  top: 256px;
  left: auto;
  right: -70px;
}
.contact .contact__item img {
  width: 20px;
  height: 20px;
  margin-right: 8px;
}
.contact .contact__item a:hover {
  color: var(--red);
}
.contact .form__wrap .wpcf7-not-valid-tip {
  position: static;
}

.chats .chats__block {
  background-color: var(--white);
  border-radius: 20px;
  -webkit-box-shadow: -7px 9px 26px 0 rgba(104, 87, 60, 0.06);
          box-shadow: -7px 9px 26px 0 rgba(104, 87, 60, 0.06);
  padding-top: 95px;
  padding-bottom: 95px;
}
.chats .chats__title {
  max-width: 480px;
}
.chats .chats__btns {
  width: 100%;
  max-width: 370px;
}
.chats .chats__btn {
  background-color: var(--green_4);
  width: 100%;
  height: 50px;
  font-size: 18px;
  font-weight: 600;
  color: var(--white);
  font-family: "Maven Pro", sans-serif;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 50px;
}
.chats .chats__btn:hover {
  background-color: var(--green_5);
}
.chats .chats__btn img {
  margin-left: 8px;
}

@media screen and (max-width: 1439px) {
  .contact {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
@media screen and (max-width: 1199px) {
  .chats,
  .contact {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
@media screen and (max-width: 991px) {
  .chats {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .chats .chats__title {
    text-align: center;
  }
  .chats .chats__block {
    padding-top: 65px;
    padding-bottom: 60px;
  }
  .contact {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .contact .contact__name {
    font-size: 20px;
  }
}
@media screen and (max-width: 576px) {
  .chats .chats__btns {
    max-width: 260px;
  }
}
.not_404 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 680px;
  height: 100vh;
}
.not_404 .not_404__number {
  font-size: 200px;
  font-weight: 700;
  margin-bottom: 40px;
  color: #ff2f22;
  line-height: 1em;
}
.not_404 h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1em;
}
.not_404 .not_404__subtitle {
  max-width: 540px;
  margin: 0 auto 40px;
  line-height: 1.6em;
}
.not_404 .btn {
  width: 262px;
}

@media screen and (max-width: 1439px) {
  .not_404 .not_404__number {
    font-size: 160px;
  }
  .not_404 h1 {
    font-size: 42px;
  }
}
@media screen and (max-width: 1199px) {
  .not_404 .not_404__number {
    font-size: 150px;
  }
  .not_404 h1 {
    font-size: 36px;
  }
}
@media screen and (max-width: 991px) {
  .not_404 .not_404__number {
    font-size: 100px;
  }
  .not_404 h1 {
    font-size: 32px;
  }
}
.footer {
  background-color: #111111;
}
.footer .custom-logo-link {
  width: 64px;
  display: block;
}
.footer .custom-logo-link img {
  width: 100%;
  height: auto;
}
.footer .footer__menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  max-width: 400px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.footer .footer__menu li {
  padding: 7px 5px 7px 0;
  width: 50%;
}
.footer .footer__menu li:last-child {
  margin-right: 0;
}
.footer .footer__menu li a {
  font-weight: 400;
  font-size: 18px;
  color: var(--white);
  font-family: "Maven Pro", sans-serif;
  line-height: 1.2em;
}
.footer .footer__menu li a:hover {
  color: var(--red);
}
.footer .footer__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.footer .footer__info li {
  margin-right: 20px;
}
.footer .footer__info li:last-child {
  margin-right: 0;
}
.footer .footer__info li a {
  font-weight: 500;
  font-size: 10px;
  color: #aaaaaa;
  font-family: "Maven Pro", sans-serif;
  line-height: 1.2em;
  text-decoration: underline;
}
.footer .footer__info li a:hover {
  color: var(--red);
}
.footer .footer__social a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 7px 0;
  font-weight: 400;
  font-size: 18px;
  color: var(--white);
  font-family: "Maven Pro", sans-serif;
  line-height: 1.2em;
}
.footer .footer__social a:hover {
  color: var(--red);
}
.footer .footer__social a img {
  width: 14px;
  height: 14px;
  display: block;
  margin-right: 10px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.footer .footer__text {
  line-height: 1.1em;
  max-width: 370px;
}
.footer .copyright__text,
.footer .footer__text {
  color: #aaa;
}

@media screen and (max-width: 991px) {
  .footer .custom-logo-link {
    margin: 0 auto 25px;
  }
  .footer .footer__menu {
    margin-bottom: 40px;
  }
  .footer .footer__menu li {
    width: 100%;
  }
  .footer .footer__social {
    margin-bottom: 40px;
  }
}
.sticky__btn {
  font-size: 13px;
  font-weight: 500;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: var(--white);
  line-height: 1.1em;
  width: 96px;
  height: 96px;
  -webkit-box-shadow: 1px 2px 4px rgba(0, 0, 0, 0.1), 3px 7px 7px rgba(0, 0, 0, 0.1), 8px 15px 10px rgba(0, 0, 0, 0.05);
          box-shadow: 1px 2px 4px rgba(0, 0, 0, 0.1), 3px 7px 7px rgba(0, 0, 0, 0.1), 8px 15px 10px rgba(0, 0, 0, 0.05);
  background-color: #5c8678;
  position: fixed;
  right: 30px;
  bottom: 30px;
  z-index: 999;
  border-radius: 50%;
  text-transform: uppercase;
}
.sticky__btn:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0px;
  top: 0px;
  border-radius: 50%;
  border: 1px solid #5c8678;
  pointer-events: none;
  -webkit-animation: zoomElem 2.5s ease-in-out infinite;
          animation: zoomElem 2.5s ease-in-out infinite;
}
@-webkit-keyframes zoomElem {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1.5);
            transform: scale(1.5);
    opacity: 0;
  }
}
@keyframes zoomElem {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1.5);
            transform: scale(1.5);
    opacity: 0;
  }
}
.sticky__btn span {
  display: block;
  position: relative;
  z-index: 1;
  pointer-events: none;
}

.popup {
  position: fixed;
  z-index: -1;
  opacity: 0;
  pointer-events: none;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: rgba(14, 15, 15, 0.35);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.popup.open {
  z-index: 999999;
  opacity: 1;
  pointer-events: all;
}
.popup.open .popup__content {
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
}
.popup .popup__content {
  background-color: var(--white);
  width: 96%;
  max-width: 500px;
  padding: 0;
  position: relative;
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  max-height: 96%;
  overflow-y: auto;
  padding: 40px 30px;
  border-radius: 20px 0;
}
.popup .popup__content .popup__head {
  padding: 45px 30px;
  background-color: var(--btn_hover);
}
.popup .popup__content .close_popup {
  background: transparent url(../img/close_menu.svg) no-repeat center;
  border: none;
  width: 40px;
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: absolute;
  right: 20px;
  top: 20px;
  cursor: pointer;
}
.popup .popup__content .form__wrap .input__group {
  margin-bottom: 20px;
}
.popup.popup_consult .close_popup {
  background: transparent url(../img/close_menu_wh.svg) no-repeat center;
}
.popup.popup_consult .popup__content {
  border-radius: 20px;
  overflow: hidden;
  width: 96%;
  max-width: 1180px;
  padding: 23px 70px 42px;
  background-color: var(--red);
}
.popup.popup_consult .popup__content .btn {
  width: 280px;
}
.popup.popup_consult .popup__content .popup__logo {
  width: 64px;
  height: auto;
  display: block;
  margin-bottom: 18px;
}
.popup.popup_consult .popup__content .popup_consult__title {
  color: var(--white);
  font-weight: 700;
  font-size: 80px;
  line-height: 1.05em;
}
.popup.popup_consult .popup__content .popup__img {
  width: 100%;
  height: auto;
}
.popup.popup_appartments .close_popup {
  background: transparent url(../img/close_menu_wh.svg) no-repeat center;
}
.popup.popup_appartments .popup__content {
  border-radius: 20px;
  overflow: hidden;
  width: 96%;
  max-width: 1180px;
  padding: 23px 70px 42px;
  background-color: var(--red);
}
.popup.popup_appartments .popup__content .btn {
  width: 100%;
  max-width: 360px;
}
.popup.popup_appartments .popup__content .popup__logo {
  width: 64px;
  height: auto;
  display: block;
  margin-bottom: 18px;
}
.popup.popup_appartments .popup__content .popup_appartments_text1 {
  font-size: 44px;
  font-weight: 700;
  color: var(--light);
  line-height: 1em;
}
.popup.popup_appartments .popup__content .popup_appartments_text2 {
  font-size: 62px;
  font-weight: 700;
  color: var(--light);
  line-height: 1em;
}
.popup.popup_appartments .popup__content .popup_appartments_text3 {
  font-size: 36px;
  font-weight: 700;
  color: var(--light);
  line-height: 1em;
}
.popup.popup_appartments .popup__content .popup_appartments_text4 {
  font-size: 24px;
  font-weight: 700;
  color: var(--light);
  line-height: 1em;
}
.popup.popup_appartments .popup__content .popup__img {
  width: 100%;
  height: auto;
  max-width: 580px;
}
.popup.popup_single .popup__content {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  overflow-y: auto;
  background-color: var(--light);
  border-radius: 0;
  padding: 60px 0;
}
.popup.popup_single .filter__card {
  max-width: 380px;
}
.popup.popup_single .form__wrap .input__group .order__input {
  background-color: var(--white);
  color: var(--grey_text);
}
.popup.popup_single .form__wrap .input__acceptance label {
  color: var(--grey_text);
}
.popup.popup_single .form__wrap .input__acceptance label input[type=checkbox] {
  background-color: var(--light);
  border: 1px solid var(--grey_text);
}
.popup.popup_single .form__wrap .input__acceptance label input[type=checkbox]:checked {
  border: 4px solid var(--red);
}
.popup.popup_single .form__wrap .btn {
  height: 60px;
  color: #ffeed6;
}
.popup.popup_single .form__wrap .wpcf7-not-valid-tip {
  position: static;
}
.popup.popup_flat .popup__content {
  border-radius: 20px;
  padding: 60px;
  max-width: 1440px;
  background-color: var(--light);
}

.open__form > * {
  pointer-events: none;
}

@media screen and (max-width: 1440px) {
  .popup.popup_consult .popup__content .popup_consult__title {
    font-size: 70px;
  }
}
@media screen and (max-width: 1200px) {
  .popup.popup_consult .popup__content .popup_consult__title {
    font-size: 60px;
  }
}
@media screen and (max-width: 991px) {
  .popup.popup_consult .popup__content .popup_consult__title {
    font-size: 48px;
  }
  .popup.popup_consult .popup__content .popup__img,
  .popup.popup_appartments .popup__content .popup__img {
    display: block;
    margin: 0 auto;
  }
  .popup.popup_flat .popup__content,
  .popup.popup_consult .popup__content,
  .popup.popup_appartments .popup__content {
    max-width: 600px;
    padding: 60px 18px;
  }
  .popup.popup_consult .popup__content {
    padding-top: 20px;
  }
}
@media screen and (max-width: 576px) {
  .popup.popup_consult .popup__content .popup_consult__title {
    font-size: 42px;
  }
  .popup.popup_consult .popup__content .popup_consult__text {
    font-size: 24px;
  }
  .sticky__btn {
    right: 16px;
    bottom: 16px;
    width: 88px;
    height: 88px;
    font-size: 11px;
  }
  .popup.popup_appartments .popup__content .popup_appartments_text1 {
    font-size: 42px;
  }
  .popup.popup_appartments .popup__content .popup_appartments_text2 {
    font-size: 42px;
  }
  .popup.popup_appartments .popup__content .popup_appartments_text3,
  .popup.popup_appartments .popup__content .popup_appartments_text4 {
    font-size: 24px;
  }
  .popup.popup_appartments .popup__content .btn {
    font-size: 14px;
    margin-top: 20px;
  }
}
.wpcf7 form {
  position: relative;
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output {
  position: absolute;
  top: 100%;
  margin-top: 0;
  left: 0;
  font-size: 14px;
  width: 100%;
  margin: 0;
}

.contact .wpcf7 form.invalid .wpcf7-response-output,
.contact .wpcf7 form.unaccepted .wpcf7-response-output {
  color: var(--white);
}

.wpcf7 form.sent .wpcf7-response-output {
  display: none;
}

.form__wrap .wpcf7-not-valid-tip {
  font-size: 10px;
  position: absolute;
  top: 100%;
  margin-top: 0;
  left: 0;
  width: 100%;
}

.page_404 {
  height: calc(100vh - 43px);
  min-height: 560px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
}
.page_404 .page_404__title {
  font-size: 200px;
  font-style: normal;
  font-weight: 600;
  font-family: "Roboto";
  text-transform: uppercase;
  color: var(--lightgrey);
  margin-bottom: 30px;
  line-height: 0.75em;
}
.page_404 .page_404_subtitle {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--dark);
  line-height: 1em;
}
.page_404 .page_404__text {
  font-size: 18px;
  max-width: 284px;
  margin: 0 auto 30px;
  font-weight: 400;
}

@media screen and (max-width: 991px) {
  .page_404 .page_404__title {
    font-size: 150px;
  }
}
@media screen and (max-width: 576px) {
  .page_404 .page_404__title {
    font-size: 120px;
  }
  .page_404 .page_404_subtitle {
    font-size: 32px;
  }
  .page_404 .page_404__text {
    font-size: 16px;
  }
  .popup .popup__content ifrane {
    padding-bottom: 45px;
  }
}
html.with-fancybox {
  overflow: auto;
}/*# sourceMappingURL=main.css.map */