.modal__overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.modal__container {
  background-color: #fff;
  padding: 30px;
  max-width: 500px;
  max-height: 100vh;
  border-radius: 4px;
  overflow-y: auto;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.modal__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.modal__header .modal__close:before {
  content: '\2715';
}
.modal__title {
  margin-top: 0;
  margin-bottom: 0;
  font-weight: 600;
  font-size: 1.25rem;
  line-height: 1.25;
  color: #00449e;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.modal__close {
  background: transparent;
  border: 0;
}
.modal__content {
  margin-top: 2rem;
  margin-bottom: 2rem;
  line-height: 1.5;
  color: rgba(0, 0, 0, 0.8);
}
.modal__btn {
  font-size: 0.875rem;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  background-color: #e6e6e6;
  color: rgba(0, 0, 0, 0.8);
  border-radius: 0.25rem;
  border-style: none;
  border-width: 0;
  cursor: pointer;
  text-transform: none;
  overflow: visible;
  margin: 0;
  will-change: transform;
  -moz-osx-font-smoothing: grayscale;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-transition: -webkit-transform 0.25s ease-out;
  transition: -webkit-transform 0.25s ease-out;
  -o-transition: transform 0.25s ease-out;
  transition: transform 0.25s ease-out;
  transition: transform 0.25s ease-out, -webkit-transform 0.25s ease-out;
}
.modal__btn:hover,
.modal__btn:focus {
  -webkit-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
}
.modal__btn-primary {
  background-color: #00449e;
  color: #fff;
}
@-webkit-keyframes mmfadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes mmfadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes mmfadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes mmfadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@-webkit-keyframes mmslideIn {
  from {
    -webkit-transform: translateY(15%);
    transform: translateY(15%);
  }
  to {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes mmslideIn {
  from {
    -webkit-transform: translateY(15%);
    transform: translateY(15%);
  }
  to {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@-webkit-keyframes mmslideOut {
  from {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  to {
    -webkit-transform: translateY(-10%);
    transform: translateY(-10%);
  }
}
@keyframes mmslideOut {
  from {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  to {
    -webkit-transform: translateY(-10%);
    transform: translateY(-10%);
  }
}
.micromodal-slide {
  display: none;
}
.micromodal-slide.is-open {
  display: block;
}
.micromodal-slide[aria-hidden='false'] .modal__overlay {
  -webkit-animation: mmfadeIn 0.3s cubic-bezier(0, 0, 0.2, 1);
  animation: mmfadeIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}
.micromodal-slide[aria-hidden='false'] .modal__container {
  -webkit-animation: mmslideIn 0.3s cubic-bezier(0, 0, 0.2, 1);
  animation: mmslideIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}
.micromodal-slide[aria-hidden='true'] .modal__overlay {
  -webkit-animation: mmfadeOut 0.3s cubic-bezier(0, 0, 0.2, 1);
  animation: mmfadeOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}
.micromodal-slide[aria-hidden='true'] .modal__container {
  -webkit-animation: mmslideOut 0.3s cubic-bezier(0, 0, 0.2, 1);
  animation: mmslideOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}
.micromodal-slide .modal__container,
.micromodal-slide .modal__overlay {
  will-change: transform;
}
a {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
a:hover {
  color: inherit;
  text-decoration: none;
}
button {
  background-color: transparent;
  color: inherit;
  border-width: 0;
  padding: 0;
  cursor: pointer;
  outline: none;
}
button:focus {
  outline: none;
}
figure {
  margin: 0;
}
input {
  outline: none;
}
input:focus {
  outline: none;
}
input::-moz-focus-inner {
  border: 0;
  padding: 0;
  margin: 0;
}
ul,
ol,
dd,
li {
  margin: 0;
  padding: 0;
  list-style: none;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-size: inherit;
  font-weight: inherit;
}
p {
  margin: 0;
}
cite {
  font-style: normal;
}
fieldset {
  border-width: 0;
  padding: 0;
  margin: 0;
}
form {
  margin: 0;
}
.page {
  font-family: Roboto;
  font-size: 1rem;
  font-weight: 400;
  color: #515050;
}
html,
body {
  -webkit-overflow-scrolling: touch !important;
  overflow: auto !important;
  height: 100% !important;
}
.page {
  min-height: 100vh;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
section {
  padding-top: 100px;
  padding-bottom: 100px;
}
.outer {
  padding-left: 2rem;
  padding-right: 2rem;
}
@media screen and (max-width: 1023px) {
  .outer {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}
@media screen and (max-width: 639px) {
  .outer {
    padding-left: 10px;
    padding-right: 10px;
  }
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}
.section__title {
  font-family: Roboto;
  font-size: 30px;
  line-height: 35px;
  text-transform: uppercase;
  color: #2c2c2c;
}
.section__subtitle {
  font-family: Roboto;
  font-size: 18px;
  line-height: 21px;
  color: #2c2c2c;
  margin-top: 30px;
  margin-bottom: 50px;
}
@media screen and (max-width: 639px) {
  .section__title {
    font-size: 20px;
    line-height: 21px;
  }
  .section__subtitle {
    margin-top: 10px;
    margin-bottom: 30px;
    font-size: 12px;
    line-height: 14px;
  }
}
.btn {
  width: 220px;
  height: 60px;
  display: inline-block;
}
.btn-white {
  margin-top: 28px;
  margin-left: 39px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-weight: 400;
  font-size: 12px;
  line-height: 14px;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: #000;
  background: #fff;
}
.btn-white:hover {
  font-weight: 700;
}
.green-transparent-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  max-width: 260px;
  width: 100%;
  height: 60px;
  border: 1px solid #035635;
  font-family: Roboto;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #035635;
}
.green-transparent-button:hover {
  border-width: 2px;
  font-weight: 900;
}
@media screen and (max-width: 639px) {
  .green-transparent-button {
    height: 40px;
    max-width: 320px;
  }
}
.calculate-btn {
  margin-top: 59px;
  max-width: 240px;
  width: 100%;
  height: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-family: Roboto;
  font-style: normal;
  font-weight: 700;
  font-size: 14px;
  line-height: 16px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #035635;
  border: 1px solid #035635;
  cursor: pointer;
}
.calculate-btn:hover {
  font-weight: 900;
}
.show-more-btn {
  display: none;
  margin-top: 30px;
  color: #2c2c2c;
  font-size: 12px;
  text-decoration: underline;
}
@media screen and (max-width: 1023px) {
  .calculate-btn {
    margin-top: 30px;
  }
}
@media screen and (max-width: 767px) {
  .green-transparent-button {
    width: 100%;
    text-align: center;
  }
}
@media screen and (max-width: 639px) {
  .show-more-btn {
    display: block;
  }
  .show-more-btn-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
  }
  .show-more-btn.active {
    display: none;
  }
  .calculate-btn {
    max-width: 100%;
    height: 40px;
    font-size: 12px;
    line-height: 14px;
  }
}
.modal-form {
  padding: 60px;
  border: 2px solid #035635;
  background-color: #fff;
}
.modal-form .modal-btn {
  max-width: 260px;
}
.modal-done-content {
  padding-top: 90px;
  width: 100%;
  height: 100%;
  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;
}
.modal-done-title {
  margin-top: 30px;
  font-size: 29px;
}
.modal-title {
  margin-bottom: 54px;
  font-family: Source Sans Pro;
  font-size: 23px;
  text-transform: uppercase;
  color: #035635;
}
.main-form-wrapper {
  max-width: 330px;
}
.main-form-inputs {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
  grid-gap: 15px;
}
.main-form-input.invalid input {
  border-color: #ff0505;
  color: #ff0505;
}
.main-form-input.invalid input::-webkit-input-placeholder {
  color: #ff0505;
}
.main-form-input.invalid input::placeholder,
.main-form-input.invalid input::-webkit-input-placeholder,
.main-form-input.invalid input::-moz-placeholder {
  color: #ff0505;
}
.main-form-input-field input {
  padding: 23px 0 23px 23px;
  max-width: 330px;
  width: 100%;
  height: 60px;
  outline: 0;
  border: 1px solid #035635;
  font-family: Roboto;
  font-size: 12px;
  line-height: 14px;
  letter-spacing: 0.02em;
  color: #035635;
  text-transform: uppercase;
}
.main-form-input-field input::-webkit-input-placeholder {
  font-family: Roboto;
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 14px;
  letter-spacing: 0.02em;
  color: #035635;
}
.main-form-input-field input::placeholder,
.main-form-input-field input::-webkit-input-placeholder,
.main-form-input-field input::-moz-placeholder {
  font-family: Roboto;
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 14px;
  letter-spacing: 0.02em;
  color: #035635;
}
.main-form-check {
  margin-top: 32px;
}
.main-form-check > label {
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
}
.main-form-check > label .check-text {
  font-family: Roboto;
  font-style: normal;
  font-size: 12px;
  line-height: 14px;
  color: #888;
  margin-left: 8px;
}
.main-form-check > label input {
  height: 0;
  width: 0;
  position: absolute;
  opacity: 0;
  cursor: pointer;
}
.main-form-check > label input:checked ~ .check-mark::after {
  display: block;
}
.main-form-check > label .check-mark {
  margin-right: 6px;
  padding: 2px;
  height: 14px;
  width: 14px;
  border: 1px solid #000;
}
.main-form-check > label .check-mark::after {
  content: '';
  display: none;
  background: url('/assets/img/check.svg') 50% / contain no-repeat;
  width: 100%;
  height: 100%;
}
.main-form-check.invalid .check-text {
  color: #ff0505;
}
.modal-btn {
  font-weight: 700;
  font-size: 14px;
  line-height: 16px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  background: #035635;
  outline: 0;
  max-width: 240px;
  width: 100%;
  height: 60px;
  margin-top: 50px;
  border: none;
  cursor: pointer;
}
.modal-btn:hover {
  font-weight: 900;
}
.modal__container {
  padding: 60px 60px 50px;
  max-width: 450px;
  height: 520px;
  max-height: 80vh;
}
@media screen and (max-width: 639px) {
  .modal__container {
    padding: 50px 25px 50px;
    height: 405px;
  }
  .modal__container .main-form-check {
    margin-bottom: 20px;
  }
  .modal-done .modal__container {
    padding: 50px 25px 50px;
    height: 520px;
  }
  .modal-title {
    margin-bottom: 20px;
    font-size: 18px;
    line-height: 21px;
  }
  .main-form-wrapper {
    margin-left: auto;
    margin-right: auto;
    max-width: 320px;
    width: 100%;
  }
  .main-form-input-field input {
    padding: 12px 0 12px 12px;
    height: 40px;
  }
  .main-form-check {
    margin-top: 30px;
  }
  .main-form-check > label .check-text {
    font-size: 9px;
  }
  .modal-btn {
    margin-top: 40px;
    max-width: 100%;
    height: 40px;
  }
  .modal-form .modal-btn {
    max-width: 100%;
  }
}
@media screen and (max-width: 1023px) {
  section.outer {
    padding-top: 75px;
    padding-bottom: 75px;
  }
}
@media screen and (max-width: 767px) {
  section.outer {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}
@media screen and (max-width: 639px) {
  section.outer {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
.h2-title {
  font-family: Roboto;
  font-style: normal;
  font-weight: 400;
  font-size: 30px;
  line-height: 35px;
  color: #035635;
  text-transform: uppercase;
  margin-top: 30px;
  margin-bottom: 30px;
}
.ml-60 {
  margin-left: 100px;
}
.flex-other {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.flex-other-size {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-left: 20px;
}
.flex-other-size span {
  margin: 0;
}
@media screen and (max-width: 768px) {
  .container .container {
    max-width: 860px;
  }
  .house__item {
    width: 100%;
  }
  .house__item a {
    width: 100%;
    text-align: center;
  }
  .calculate__text {
    width: 100%;
  }
  .calculate-btn {
    width: 100%;
    text-align: center;
  }
  .calculate__gallery {
    display: none;
  }
  .ml-60 {
    margin-left: 0;
  }
  .jc-start {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .jc-end {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .form__map__map {
    width: 100%;
  }
  .form__map__inner form {
    width: 100%;
    margin-bottom: 30px;
  }
  .form__map__inner form input {
    width: 100%;
  }
  .form__map__inner form button {
    width: 100%;
  }
  .form__map__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.header {
  background-image: url(/assets/img/header-bg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  min-height: 900px;
  padding-bottom: 86px;
}
.header__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-top: 60px;
}
.header__nav {
  margin-left: 5%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.header__nav--link {
  font-family: Roboto;
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 21px;
  color: #2c2c2c;
  margin-left: 60px;
  position: relative;
  -webkit-transition: 0.3s all ease;
  -o-transition: 0.3s all ease;
  transition: 0.3s all ease;
}
.header__nav--link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 1px;
  background: #2c2c2c;
  -webkit-transition: 0.3s all ease;
  -o-transition: 0.3s all ease;
  transition: 0.3s all ease;
}
.header__nav--link.active::before {
  width: 100%;
}
.header__nav--link:hover::before {
  width: 100%;
}
.header__nav--link:first-child {
  margin-left: 0;
}
.header__number {
  font-family: Roboto;
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 21px;
  color: #2c2c2c;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.header__number img {
  margin-right: 15px;
}
.header__main {
  padding: 18px 0 70px 39px;
  background: rgba(63, 133, 126, 0.42);
  margin-top: 99px;
  max-width: 811px;
  width: 100%;
}
.header__main-title {
  font-family: Source Sans Pro;
  font-style: normal;
  font-weight: 600;
  font-size: 80px;
  line-height: 101px;
  color: #fff;
}
.header__main-subtitle {
  font-family: Roboto;
  font-style: normal;
  font-weight: 400;
  font-size: 30px;
  line-height: 35px;
  color: #fff;
  margin-top: 30px;
}
.header__main-subtitle--2 {
  text-transform: uppercase;
}
.header__main-text {
  font-family: Roboto;
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 21px;
  color: #fff;
  margin-top: 20px;
}
.header__main-text:first-child {
  margin-top: 30px;
}
@media screen and (max-width: 920px) {
  .header__nav {
    display: none;
  }
  .header__main {
    width: 100%;
  }
  .header__main-title {
    font-size: 60px;
  }
}
@media screen and (max-width: 639px) {
  .header {
    min-height: 656px;
    background-position: left left;
    background-image: url(/assets/img/main.jpg);
  }
  .header .btn-white {
    display: none;
  }
  .header__top {
    padding-top: 15px;
  }
  .header__number {
    font-size: 12px;
  }
  .header__logo img {
    max-width: 90px;
  }
  .header__main {
    padding-left: 20px;
    padding-bottom: 30px;
  }
  .header__main-text {
    margin-top: 13px;
  }
  .header__main-subtitle br {
    display: none;
  }
  .header__main-subtitle br.br-ignore-dn {
    display: inline;
  }
  .header__main-subtitle--1 {
    display: none;
  }
}
@media screen and (max-width: 639px) {
  .header__main-title {
    font-size: 40px;
    line-height: 50px;
  }
  .header__main-subtitle {
    font-size: 25px;
  }
}
.footer {
  padding-top: 0;
  padding-bottom: 80px;
}
.footer__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}
.footer__inner__first {
  line-height: 1;
}
.footer__logo {
  margin-bottom: 55px;
}
.footer__nav {
  margin-right: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.footer__nav--link {
  margin-left: 60px;
  font-family: Roboto;
  font-size: 18px;
  text-transform: uppercase;
  color: #2c2c2c;
  position: relative;
  -webkit-transition: 0.3s all ease;
  -o-transition: 0.3s all ease;
  transition: 0.3s all ease;
}
.footer__nav--link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 1px;
  background: #2c2c2c;
  -webkit-transition: 0.3s all ease;
  -o-transition: 0.3s all ease;
  transition: 0.3s all ease;
}
.footer__nav--link:hover::before {
  width: 100%;
}
@media screen and (max-width: 1023px) {
  .footer__nav--link {
    margin-left: 30px;
  }
}
@media screen and (max-width: 767px) {
  .footer {
    padding-top: 25px;
  }
  .footer .header__number {
    font-size: 18px;
  }
  .footer__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  .footer__nav {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  .footer__nav--link {
    margin-left: 0;
    margin-top: 31px;
  }
  .footer__logo {
    margin-bottom: 30px;
  }
}
.info {
  padding-top: 200px;
}
.info .btn-info {
  display: none;
  height: 40px;
  max-width: 100%;
  width: 100%;
  background: #035635;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.info .btn-info:hover {
  font-weight: 900;
}
.info__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.info__wrap__first {
  width: 45%;
}
.info__wrap__second {
  margin-left: 60px;
}
.info__wrap__second__items {
  margin-top: 27px;
  display: grid;
  gap: 27px;
  grid-gap: 27px;
}
.info__wrap__second__items li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.info__wrap__second__items li span {
  margin-left: 20px;
  font-family: Roboto;
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 21px;
  text-transform: uppercase;
  color: #2c2c2c;
}
@media screen and (max-width: 767px) {
  .info__wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .info__wrap__first {
    width: 100%;
  }
  .info__wrap__second {
    margin-left: 0;
    margin-top: 60px;
  }
}
@media screen and (max-width: 639px) {
  .info .btn-info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .info__wrap__first {
    margin-top: 80px;
  }
  .info__wrap__second__items {
    gap: 9px;
    grid-gap: 9px;
  }
  .info__wrap__second__items li img {
    max-width: 12px;
  }
  .info__wrap__second__items li span {
    margin-left: 10px;
    font-size: 12px;
  }
}
.section__house .container {
  position: relative;
}
.house-form-title {
  font-size: 25px;
  margin-bottom: 30px;
}
.house-form-wrapper {
  max-width: 450px;
  max-height: 520px;
  position: absolute;
  bottom: 100px;
  right: 150px;
}
.house-form-wrapper .modal-form-inputs {
  gap: 20px;
  grid-gap: 20px;
}
.house__title {
  margin-top: 27px;
}
.house__items__wrap {
  padding-top: 49px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
  gap: 60px;
  grid-gap: 60px;
}
.house__item img {
  width: 100%;
  margin-top: 30px;
  margin-bottom: 30px;
}
.house__item h3 {
  font-family: Roboto;
  font-style: normal;
  font-weight: 400;
  font-size: 25px;
  line-height: 29px;
  color: #2c2c2c;
}
.house__item span {
  font-family: Roboto;
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 21px;
  color: #888;
}
.house__item .check-price {
  margin-top: 46px;
  max-width: 240px;
  width: 100%;
  height: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-family: Roboto;
  font-style: normal;
  font-weight: 700;
  font-size: 14px;
  line-height: 16px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #035635;
  border: 1px solid #035635;
  cursor: pointer;
}
.house__item .check-price:hover {
  border-width: 2px;
  font-weight: 900;
}
.houses__wrap {
  margin-top: 0;
  gap: 21px;
  grid-gap: 21px;
}
.houses__wrap li span {
  margin-left: 0;
}
@media screen and (max-width: 1023px) {
  .house__items__wrap {
    grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
  }
  .house-form-wrapper {
    position: static;
    margin-top: 40px;
  }
}
@media screen and (max-width: 767px) {
  .house-subtitle {
    margin-top: 30px;
    margin-bottom: 25px;
  }
  .house__items__wrap {
    padding-top: 10px;
    -webkit-column-gap: 30px;
    -moz-column-gap: 30px;
    column-gap: 30px;
    grid-column-gap: 30px;
  }
  .house__item img {
    margin-top: 17px;
    margin-bottom: 7px;
  }
}
@media screen and (max-width: 639px) {
  .houses__wrap {
    gap: 7px;
    grid-gap: 7px;
  }
  .house__wrap .info__wrap__first {
    margin-top: 0px;
  }
  .house__wrap__second {
    margin-top: 0;
  }
  .house__title h2 {
    margin-top: 10px;
    margin-bottom: 10px;
    font-size: 12px;
    line-height: 14px;
    letter-spacing: -0.01em;
  }
  .house__title h2 span {
    display: none;
  }
  .house__item h3 {
    font-size: 18px;
    line-height: 21px;
  }
  .house__item span {
    font-size: 12px;
    line-height: 14px;
  }
  .house__item .check-price {
    margin-top: 15px;
    margin-left: auto;
    margin-right: auto;
    height: 40px;
    max-width: 320px;
    font-size: 12px;
  }
  .house__item.hidden {
    display: none;
  }
  .house__item.active {
    display: block;
  }
  .house-form-title {
    font-size: 18px;
    margin-bottom: 30px;
  }
  .house-form-wrapper {
    margin-left: auto;
    margin-right: auto;
    max-width: 320px;
  }
  .house-form-wrapper .modal-form-inputs {
    gap: 13px;
    grid-gap: 13px;
  }
  .house-form-wrapper .modal-btn {
    margin-top: 20px;
    font-size: 12px;
  }
}
.buys__inner {
  margin-top: 65px;
  display: grid;
  grid-template-columns: calc(383 / 1200 * 100%) calc(33 / 120 * 100%) calc(
      33 / 120 * 100%
    );
  gap: 78px;
  grid-gap: 78px;
}
.buys__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.buys__item__first {
  line-height: 0.5;
  font-family: Source Sans Pro;
  font-size: 60px;
  text-transform: uppercase;
  color: #035635;
}
.buys__item__last {
  margin-left: 30px;
  padding-bottom: 85px;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  position: relative;
}
.buys__item__last-title {
  margin-bottom: 39px;
  padding-bottom: 3px;
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
  border-bottom: 1px #2c2c2c solid;
}
.buys__item__last span {
  display: none;
}
.buys__item__last h3 {
  font-family: Roboto;
  font-size: 30px;
  text-transform: uppercase;
  color: #035635;
}
.buys__item__last .line {
  width: 100%;
  display: block;
  background: #2c2c2c;
  height: 1px;
  margin-bottom: 39px;
}
.buys__item__last button {
  max-width: 240px;
  width: 100%;
  position: absolute;
  bottom: 0;
}
.buys__item__last p {
  font-family: Roboto;
  font-size: 18px;
  line-height: 21px;
  color: #2c2c2c;
}
@media screen and (max-width: 1279px) {
  .buys__inner {
    gap: 70px;
    grid-gap: 70px;
  }
}
@media screen and (max-width: 1023px) {
  .buys__inner {
    grid-template-columns: 1fr;
    justify-items: center;
  }
  .buys__item {
    max-width: 320px;
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .buys__inner {
    margin-top: 30px;
    gap: 40px;
    grid-gap: 40px;
  }
}
@media screen and (max-width: 639px) {
  .buys__inner {
    margin-top: 20px;
  }
  .buys__item {
    position: relative;
  }
  .buys__item__first {
    display: none;
  }
  .buys__item__last {
    padding-bottom: 65px;
    margin-left: 0;
  }
  .buys__item__last h3 {
    font-size: 18px;
    line-height: 21px;
  }
  .buys__item__last p {
    font-size: 12px;
    line-height: 14px;
  }
  .buys__item__last p br {
    display: none;
  }
  .buys__item__last-title {
    padding-bottom: 9px;
    margin-bottom: 16px;
    max-width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
  }
  .buys__item__last-title span {
    line-height: 0.9;
    display: block;
    margin-right: 20px;
    font-family: Source Sans Pro;
    font-size: 40px;
    text-transform: uppercase;
    color: #035635;
  }
  .buys__item__last button {
    max-width: 100%;
    font-size: 12px;
  }
}
.calculate__title {
  font-family: Roboto;
  font-style: normal;
  font-weight: 400;
  font-size: 30px;
  line-height: 35px;
  text-transform: uppercase;
  color: #035635;
}
.calculate__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.calculate__text {
  padding-top: 26px;
  width: 46.7%;
}
.calculate__text__block {
  margin-top: 25px;
  padding-bottom: 24px;
  border-bottom: 1px #888 solid;
}
.calculate__text__block p {
  font-family: Roboto;
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 21px;
  text-transform: uppercase;
  color: #2c2c2c;
}
.calculate__text__block .calculate__text__line {
  background: #888;
  width: 100%;
  height: 1px;
  margin-top: 25px;
}
.calculate__gallery {
  padding-top: 80px;
  width: 45%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 100px 50px;
  grid-gap: 100px 50px;
}
.calculate__gallery--img img {
  max-width: 100%;
  height: auto;
}
@media screen and (max-width: 1023px) {
  .calculate__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .calculate__text {
    max-width: 100%;
    padding-top: 17px;
    width: unset;
  }
  .calculate__gallery {
    padding-top: 40px;
    width: 100%;
    grid-template-columns: -webkit-max-content -webkit-max-content;
    grid-template-columns: max-content max-content;
    gap: 50px;
    grid-gap: 50px;
    justify-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}
@media screen and (max-width: 639px) {
  .calculate__title {
    max-width: -webkit-max-content;
    max-width: -moz-max-content;
    max-width: max-content;
    font-size: 18px;
    line-height: 21px;
  }
  .calculate__text__block {
    margin-top: 15px;
    padding-bottom: 13px;
  }
  .calculate__text__block p {
    font-size: 12px;
    line-height: 14px;
  }
  .calculate__gallery {
    display: none;
  }
}
.tour-subtitle {
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .tour-subtitle {
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 639px) {
  .tour-subtitle {
    margin-bottom: 15px;
  }
  .tour iframe {
    max-height: 300px;
  }
}
.settings {
  padding-top: 131px;
}
.settings h2 {
  font-family: Roboto;
  font-style: normal;
  font-weight: 400;
  font-size: 30px;
  line-height: 35px;
  text-transform: uppercase;
  color: #2c2c2c;
}
.settings h3 {
  font-family: Roboto;
  font-style: normal;
  font-weight: 400;
  font-size: 30px;
  line-height: 35px;
  color: #2c2c2c;
}
.settings__btn {
  max-width: 180px;
  width: 100%;
  height: 60px;
  border: 1px solid #035635;
}
.settings__btn input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}
.settings__btn input:checked ~ span {
  -webkit-transition: 0.3s all ease;
  -o-transition: 0.3s all ease;
  transition: 0.3s all ease;
  background: #035635;
  color: #fff;
}
.settings__btn span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  height: 100%;
  font-family: Source Sans Pro;
  font-size: 18px;
  color: #035635;
  text-align: center;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.settings-form {
  margin-top: 50px;
}
.settings-form-group-items {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
  grid-gap: 60px;
}
.settings-form-group-inputs {
  margin-top: 33px;
  display: grid;
  grid-template-columns: repeat(auto-fill, 180px);
  gap: 25px 60px;
  grid-gap: 25px 60px;
}
.settings-form-btn {
  margin-top: 60px;
}
@media screen and (max-width: 639px) {
  .settings h2 {
    font-size: 18px;
    line-height: 21px;
  }
  .settings h3 {
    font-size: 18px;
    line-height: 21px;
  }
  .settings-form {
    margin-top: 30px;
  }
  .settings-form-group-items {
    gap: 31px;
    grid-gap: 31px;
  }
  .settings-form-group-inputs {
    margin-top: 14px;
    grid-template-columns: repeat(auto-fill, 120px);
    gap: 15px;
    grid-gap: 15px;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .settings-form-btn {
    margin-top: 30px;
  }
  .settings__btn {
    height: 40px;
  }
}
.recomend h2 {
  font-family: Roboto;
  font-style: normal;
  font-weight: 400;
  font-size: 30px;
  line-height: 35px;
  text-transform: uppercase;
  color: #2c2c2c;
}
.recomend__inner {
  padding-top: 60px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(260px, 100%), 1fr));
  gap: 64px 60px;
  grid-gap: 64px 60px;
}
.recomend__item img {
  width: 100%;
  margin-top: 30px;
  margin-bottom: 27px;
}
.recomend__item h3 {
  font-family: Source Sans Pro;
  font-style: normal;
  font-weight: 400;
  font-size: 25px;
  line-height: 31px;
  text-transform: uppercase;
  color: #2c2c2c;
}
.recomend__item p {
  font-family: Source Sans Pro;
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 23px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #2c2c2c;
}
.recomend__item span {
  display: block;
  margin-top: 10px;
  font-family: Source Sans Pro;
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 23px;
  letter-spacing: 0.02em;
  color: #888;
}
.flex-other-price-bottom {
  margin-top: 5px;
}
@media screen and (max-width: 1023px) {
  .recomend__inner {
    padding-top: 20px;
    gap: 47px;
    grid-gap: 47px;
  }
}
@media screen and (max-width: 639px) {
  .recomend h2 {
    font-size: 18px;
    line-height: 21px;
  }
  .recomend__item.hidden {
    display: none;
  }
  .recomend__item.active {
    display: block;
  }
  .recomend__item h3 {
    font-size: 18px;
    line-height: 21px;
  }
  .recomend__item img {
    margin-top: 20px;
    margin-bottom: 10px;
  }
  .recomend__item span {
    display: none;
  }
  .recomend-show-more-btn {
    margin-top: 12px;
  }
}
.plus {
  padding-top: 65px;
}
.plus h2 {
  font-family: Roboto;
  font-weight: 400;
  font-size: 30px;
  line-height: 35px;
  text-transform: uppercase;
  color: #2c2c2c;
}
.plus__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.plus__text {
  width: 55%;
  padding-top: 75px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 67px;
  grid-gap: 67px;
}
.plus__text__item {
  max-width: 460px;
}
.plus__text__item p {
  margin-top: 44px;
  font-family: Roboto;
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 21px;
  color: #2c2c2c;
}
.plus__text__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}
.plus__text__top h3 {
  font-family: Source Sans Pro;
  font-style: normal;
  font-weight: 400;
  font-size: 60px;
  line-height: 0.8;
  text-transform: uppercase;
  color: #035635;
}
.plus__text__top span {
  font-family: Source Sans Pro;
  font-style: normal;
  font-weight: 400;
  font-size: 25px;
  line-height: 31px;
  text-transform: uppercase;
  color: #888;
  margin-left: 17px;
}
.plus__video {
  padding-top: 100px;
  width: 55%;
}
.plus__video video {
  width: 100%;
}
@media screen and (max-width: 1023px) {
  .plus__inner {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .plus__text {
    padding-top: 32px;
    width: 100%;
    gap: 22px;
    grid-gap: 22px;
  }
  .plus__text__item p {
    margin-top: 20px;
  }
  .plus__text__top {
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
  }
  .plus__text__top h3 {
    font-size: 40px;
    line-height: 40px;
  }
  .plus__text__top span {
    margin-left: 15px;
    font-size: 18px;
    line-height: 21px;
  }
  .plus__video {
    padding-top: 50px;
    width: 100%;
  }
}
@media screen and (max-width: 639px) {
  .plus h2 {
    font-size: 18px;
    line-height: 21px;
  }
  .plus__text__item p {
    display: none;
  }
  .plus__video {
    margin-top: 25px;
    padding-bottom: 43%;
    height: 0;
    position: relative;
  }
  .plus__video iframe {
    margin: 0 auto;
    position: absolute;
    top: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 100%;
    height: 100%;
  }
}
.slider h2 {
  font-family: Roboto;
  font-style: normal;
  font-weight: 400;
  font-size: 30px;
  line-height: 35px;
  text-transform: uppercase;
  color: #2c2c2c;
}
.swiper-slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: calc(365 / 1200 * 100%);
  background: #fff;
  text-align: center;
  font-size: 18px;
}
.swiper-slide picture {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: transparent;
}
.swiper-slide picture img {
  display: block;
  height: 300px;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: left;
  object-position: left;
}
.swiper-slide--left picture {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}
.swiper-slide--left picture img {
  max-width: 220px;
}
.swiper-slide--center {
  width: calc(450 / 1200 * 100%);
}
.swiper-slide--center picture img {
  width: 100%;
}
.swiper-slide--right picture {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
.swiper-slide--right picture img {
  max-width: 220px;
}
.jc-start {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}
.jc-end {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
.swiper-container {
  width: 100%;
}
.mySwiper {
  margin-top: 60px;
}
.swiper-button-next-custom,
.swiper-button-prev-custom {
  margin-top: 10px;
  position: relative;
  z-index: 15;
  cursor: pointer;
}
.slider__buttons {
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.slider__count {
  width: unset;
  font-family: Source Sans Pro;
  font-size: 25px;
  text-transform: uppercase;
  color: #035635;
  letter-spacing: -0.05em;
}
.slider__count .swiper-pagination-total {
  color: #888;
}
@media screen and (max-width: 767px) {
  .mySwiper {
    margin-top: 30px;
  }
  .swiper-slide {
    width: 100%;
  }
  .swiper-slide picture img {
    width: 100%;
    max-width: 100%;
    height: 300px;
    -o-object-position: center center;
    object-position: center center;
  }
}
@media screen and (max-width: 639px) {
  .slider h2 {
    font-size: 18px;
    line-height: 21px;
  }
  .slider__buttons {
    margin-top: 0;
  }
  .slider__buttons {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .slider__count {
    font-size: 18px;
    line-height: 21px;
  }
  .swiper-button-prev-custom,
  .swiper-button-next-custom {
    margin-top: 5px;
  }
  .swiper-button-prev-custom img,
  .swiper-button-next-custom img {
    max-width: 33px;
  }
}
.form__map {
  padding-top: 5px;
  padding-bottom: 48px;
}
.form__map__text {
  padding-top: 90px;
  max-width: 100%;
}
.form__map__map {
  width: 50%;
}
.form__map__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.form__map h2 {
  font-family: Roboto;
  font-style: normal;
  font-weight: 400;
  font-size: 30px;
  line-height: 35px;
  text-transform: uppercase;
  color: #2c2c2c;
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .form__map h2 {
    margin-bottom: 30px;
    font-size: 18px;
    line-height: 21px;
  }
  .form__map__text {
    margin-left: auto;
    margin-right: auto;
    padding-top: 10px;
    max-width: 320px;
  }
  .form__map__map {
    width: 100%;
  }
  .form__map__map iframe {
    height: 500px;
  }
}
@media screen and (max-width: 639px) {
  .form__map__map {
    width: 100%;
  }
  .form__map__map iframe {
    height: 308px;
  }
  .form__map-btn {
    margin-top: 16px;
  }
}
