:root {
  --font-family: "Playfair", sans-serif;
  --content-width: 1350px;
  --container-offset: 15px;
  --container-width: calc(var(--content-width) + (var(--container-offset) * 2));
  --light-color: #FFFFFF;
  --accent-color: #FFC807;
  --main-color: #333333;
  --bg-color: #6A7CA0;
  --bg-light-color: #FBFAF6;
  --bg-footer: #333C4F;
}

/* stylelint-disable */ /* stylelint-disable */ /* stylelint-disable */
.custom-checkbox__field:checked + .custom-checkbox__content::after {
  opacity: 1;
}

.custom-checkbox__field:focus + .custom-checkbox__content::before {
  outline: 2px solid #f00;
  outline-offset: 2px;
}

.custom-checkbox__field:disabled + .custom-checkbox__content {
  opacity: 0.4;
  pointer-events: none;
}

/* stylelint-disable */ /* stylelint-disable */ /* stylelint-disable value-keyword-case */
@font-face {
  font-family: "Playfair";
  src: url("../fonts/../fonts/PlayfairDisplay-Regular.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Playfair";
  src: url("../fonts/../fonts/PlayfairDisplay-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Playfair";
  src: url("../fonts/../fonts/PlayfairDisplay-Bold.woff2") format("woff2");
  font-weight: 700;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "OpenSans";
  src: url("../fonts/../fonts/OpenSans-Regular.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "OpenSans";
  src: url("../fonts/../fonts/OpenSans-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Kaushan";
  src: url("../fonts/../fonts/KaushanScript-Regular.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Praise";
  src: url("../fonts/../fonts/Praise-Regular.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
  font-style: normal;
}
html {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

*,
*::before,
*::after {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}

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

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

.page {
  height: 100%;
  font-family: var(--font-family, sans-serif);
  -webkit-text-size-adjust: 100%;
}

.page__body {
  margin: 0;
  min-width: 320px;
  min-height: 100%;
}

img {
  height: auto;
  max-width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

a {
  text-decoration: none;
}

.site-container {
  overflow: hidden;
}

.is-hidden {
  display: none !important; /* stylelint-disable-line declaration-no-important */
}

.btn-reset {
  border: none;
  padding: 0;
  background-color: transparent;
  cursor: pointer;
}

.list-reset {
  list-style: none;
  margin: 0;
  padding: 0;
}

.input-reset {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  border-radius: 0;
  background-color: #fff;
}
.input-reset::-webkit-search-decoration, .input-reset::-webkit-search-cancel-button, .input-reset::-webkit-search-results-button, .input-reset::-webkit-search-results-decoration {
  display: none;
}

.visually-hidden {
  position: absolute;
  overflow: hidden;
  margin: -1px;
  border: 0;
  padding: 0;
  width: 1px;
  height: 1px;
  clip: rect(0 0 0 0);
}

.container-box {
  margin: 0 auto;
  padding: 0 var(--container-offset);
  max-width: var(--container-width);
}

.js-focus-visible :focus:not(.focus-visible) {
  outline: none;
}

.centered {
  text-align: center;
}

.dis-scroll {
  position: fixed;
  left: 0;
  top: 0;
  overflow: hidden;
  width: 100%;
  height: 100vh;
  -ms-scroll-chaining: none;
  overscroll-behavior: none;
}

.page--ios .dis-scroll {
  position: relative;
}

.btn-light {
  font-family: "Playfair";
  font-style: normal;
  font-weight: 700;
  line-height: 30px;
  text-align: center;
  text-transform: uppercase;
  color: var(--bg-color);
  border: 2px solid #FBFAF6;
  background-color: #FBFAF6;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.btn-light:hover {
  background-color: var(--bg-color);
  color: var(--light-color);
}

.btn-outline {
  font-family: "Playfair";
  font-style: normal;
  font-weight: 700;
  line-height: 30px;
  text-transform: uppercase;
  color: var(--light-color);
  border: 2px solid var(--accent-color);
  display: inline-block;
  position: relative;
  z-index: 1;
}
.btn-outline:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 0%;
  height: 100%;
  background-color: var(--accent-color);
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  z-index: -1;
}
.btn-outline:hover:after {
  width: 100%;
}

.btn-card {
  font-family: "Playfair";
  font-style: normal;
  font-weight: 700;
  line-height: 30px;
  text-transform: uppercase;
  color: var(--bg-color);
  border: 2px solid var(--accent-color);
  display: inline-block;
  position: relative;
  z-index: 1;
}
.btn-card:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-color: var(--accent-color);
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  z-index: -1;
}
.btn-card:hover:after {
  width: 0%;
}

.btn-grey {
  font-family: "Playfair";
  font-style: normal;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
  color: #FFFFFF;
  border: 2px solid var(--bg-color);
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  position: relative;
  z-index: 1;
  cursor: pointer;
}
.btn-grey:after {
  content: "";
  background-color: var(--bg-color);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.btn-grey:hover {
  color: var(--bg-color);
}
.btn-grey:hover:after {
  width: 0%;
}

.title-44 {
  font-family: "Playfair";
  font-style: normal;
  font-weight: 700;
  font-size: 44px;
  line-height: 60px;
  color: var(--bg-color);
}
@media (max-width: 992px) {
  .title-44 {
    font-size: 38px;
    line-height: 50px;
  }
}
@media (max-width: 576px) {
  .title-44 {
    font-size: 32px;
    line-height: 45px;
  }
}
@media (max-width: 480px) {
  .title-44 {
    font-size: 26px;
    line-height: 38px;
  }
}

.title-36d {
  font-family: "Playfair";
  font-style: normal;
  font-weight: 700;
  font-size: 36px;
  line-height: 50px;
  position: relative;
}
.title-36d:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -20px;
  width: 100px;
  height: 2px;
  z-index: 50;
}
@media (max-width: 480px) {
  .title-36d {
    font-size: 27px !important;
    line-height: 35px !important;
  }
}

.card-single {
  background-color: var(--light-color);
  cursor: pointer;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  -webkit-transform-origin: 50% 100%;
  -ms-transform-origin: 50% 100%;
  transform-origin: 50% 100%;
  position: relative;
}
.card-single:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0%;
  width: 1px;
  height: 100%;
  background: #FBFAF6;
  -webkit-box-shadow: 0 0 25px 0 rgba(244, 228, 170, 0.6);
  box-shadow: 0 0 25px 0 rgba(244, 228, 170, 0.6);
}
@media (min-width: 992px) {
  .card-single:hover .card-single__btn-wrap {
    bottom: -64%;
    z-index: 5;
    opacity: 1;
  }
  .card-single:hover .card-single__btn {
    width: 100%;
    height: 100%;
  }
  .card-single:hover .card-single__img img:nth-child(1) {
    -webkit-transform: scale(1.2);
    -ms-transform: scale(1.2);
    transform: scale(1.2);
  }
}
@media (max-width: 992px) {
  .card-single:after {
    content: none;
  }
}
.card-single__img {
  height: 300px;
  position: relative;
  overflow: hidden;
}
.card-single__img img:first-child {
  -webkit-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
@media (max-width: 1400px) {
  .card-single__img {
    height: auto;
  }
}
.card-single__favorite {
  position: absolute;
  top: 30px;
  left: 30px;
  cursor: pointer;
}
@media (max-width: 576px) {
  .card-single__favorite {
    width: 20px;
    height: 20px;
    top: 15px;
    left: 15px;
  }
}
.card-single__wrapper {
  padding: 20px 30px 0px 30px;
  position: relative;
}
@media (max-width: 576px) {
  .card-single__wrapper {
    padding: 15px;
  }
}
.card-single__content {
  padding-bottom: 30px;
}
.card-single__descr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 20px;
  background-color: var(--light-color);
}
.card-single__name {
  font-family: "Playfair";
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
  line-height: 40px;
  color: var(--main-color);
}
@media (max-width: 480px) {
  .card-single__name {
    font-size: 20px;
    line-height: 30px;
  }
}
.card-single__button {
  font-family: "OpenSans";
  font-style: normal;
  font-weight: 600;
  font-size: 12px;
  line-height: 12px;
  text-transform: uppercase;
  color: var(--light-color);
  background-color: var(--bg-color);
  padding: 5px 15px;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.card-single__button:hover {
  background-color: #404c64;
}
@media (max-width: 480px) {
  .card-single__button {
    font-size: 10px;
    line-height: 10px;
  }
}
.card-single__details {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.card-single__details > li {
  padding-left: 30px;
  background-position: left center;
  background-repeat: no-repeat;
  background-size: 20px 20px;
  font-family: "OpenSans";
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  line-height: 20px;
  color: var(--bg-color);
}
@media (max-width: 480px) {
  .card-single__details > li {
    font-size: 14px;
    background-size: 15px 15px;
  }
}
.card-single__details > li:not(:last-child) {
  margin-right: 20px;
}
.card-single__details > li:first-child {
  background-image: url("../img/bedroom.svg");
}
.card-single__details > li:nth-child(2) {
  background-image: url("../img/hot-tub.svg");
}
.card-single__details > li:nth-child(3) {
  background-image: url("../img/width.svg");
}
.card-single__btn {
  display: block;
  padding: 10px 0;
  display: block;
  width: 100%;
  font-size: 16px;
  text-align: center;
  -webkit-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
  width: 0;
  height: 0;
}
@media (max-width: 992px) {
  .card-single__btn {
    width: 100%;
    height: 100%;
  }
}
.card-single__btn-wrap {
  padding: 0 30px 30px 30px;
  width: 100%;
  background-color: var(--light-color);
  position: absolute;
  bottom: 0%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: -1;
  -webkit-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
  opacity: 0;
}
@media (max-width: 992px) {
  .card-single__btn-wrap {
    bottom: -64%;
    opacity: 1;
    z-index: 1;
    position: relative;
  }
}
@media (max-width: 768px) {
  .card-single__btn-wrap {
    padding: 0 10px 25px 10px;
  }
}
@media (max-width: 576px) {
  .card-single__btn-wrap {
    padding: 0 15px 15px 15px;
    bottom: -49%;
  }
}

.banner {
  max-height: 600px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center top;
  padding-top: 470px;
  padding-bottom: 60px;
  position: relative;
}
.banner:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.35);
  z-index: 1;
}
@media (max-width: 1200px) {
  .banner {
    max-height: 500px;
    padding-top: 370px;
  }
}
@media (max-width: 480px) {
  .banner {
    max-height: 450px;
    padding-top: 340px;
    padding-bottom: 40px;
  }
}
.banner__title {
  font-family: "Kaushan";
  font-style: normal;
  font-weight: 400;
  font-size: 50px;
  line-height: 70px;
  color: var(--light-color);
  position: relative;
  z-index: 2;
}
@media (max-width: 768px) {
  .banner__title {
    font-size: 40px;
    line-height: 45px;
  }
}
@media (max-width: 480px) {
  .banner__title {
    font-size: 32px;
    line-height: 36px;
  }
}

.banner-investment {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center top;
  padding-top: 360px;
  padding-bottom: 290px;
}
@media (max-width: 1200px) {
  .banner-investment {
    padding-top: 250px;
    padding-bottom: 200px;
  }
}
@media (max-width: 576px) {
  .banner-investment {
    padding-bottom: 108px;
  }
}
@media (max-width: 480px) {
  .banner-investment {
    min-height: 450px;
  }
}
.banner-investment__wrap {
  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;
}
.banner-investment__title {
  font-family: "Kaushan";
  font-style: normal;
  font-weight: 400;
  font-size: 80px;
  line-height: 80px;
  color: var(--light-color);
  margin-bottom: 30px;
}
@media (max-width: 1400px) {
  .banner-investment__title {
    font-size: 60px;
    line-height: 60px;
  }
}
@media (max-width: 768px) {
  .banner-investment__title {
    font-size: 48px;
    line-height: 55px;
    margin-bottom: 15px;
  }
}
@media (max-width: 480px) {
  .banner-investment__title {
    font-size: 38px;
    line-height: 38px;
  }
}
.banner-investment__subtitle {
  font-family: "Playfair";
  font-style: normal;
  font-weight: 600;
  font-size: 40px;
  line-height: 60px;
  color: var(--light-color);
  text-align: center;
}
@media (max-width: 1200px) {
  .banner-investment__subtitle {
    font-size: 30px;
    line-height: 40px;
  }
}
@media (max-width: 768px) {
  .banner-investment__subtitle {
    font-size: 26px;
    line-height: 36px;
  }
}
@media (max-width: 480px) {
  .banner-investment__subtitle {
    font-size: 22px;
    line-height: 32px;
  }
}

.card-articles {
  background-color: var(--light-color);
  cursor: pointer;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  -webkit-transform-origin: 50% 100%;
  -ms-transform-origin: 50% 100%;
  transform-origin: 50% 100%;
}
@media (min-width: 992px) {
  .card-articles:hover .card-articles__img img {
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    -webkit-transform: scale(1.2);
    -ms-transform: scale(1.2);
    transform: scale(1.2);
  }
  .card-articles:hover .card-articles__name {
    color: var(--bg-color);
  }
}
.card-articles__img {
  height: 300px;
  position: relative;
  overflow: hidden;
}
.card-articles__img img {
  -webkit-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
@media (max-width: 1400px) {
  .card-articles__img {
    height: auto;
  }
}
.card-articles__wrapper {
  padding: 20px 30px 0px 30px;
  position: relative;
}
@media (max-width: 576px) {
  .card-articles__wrapper {
    padding: 15px;
  }
}
.card-articles__content {
  padding-bottom: 30px;
}
@media (max-width: 576px) {
  .card-articles__content {
    padding-bottom: 0;
  }
}
.card-articles__descr {
  background-color: var(--light-color);
  font-family: "OpenSans";
  font-style: normal;
  font-weight: 400;
  font-size: 15px;
  line-height: 25px;
  color: var(--main-color);
  margin-bottom: 10px;
}
.card-articles__descr span {
  display: inline-block;
  font-family: "OpenSans";
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
  color: rgba(51, 51, 51, 0.5);
}
.card-articles__descr span time {
  display: inline-block;
}
@media (max-width: 480px) {
  .card-articles__descr span {
    font-size: 12px;
  }
}
.card-articles__name {
  font-family: "Playfair";
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
  line-height: 32px;
  color: var(--main-color);
  margin-bottom: 10px;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
@media (max-width: 480px) {
  .card-articles__name {
    font-size: 20px;
    line-height: 30px;
  }
}

.all_pages {
  position: fixed;
  top: 20%;
  right: 0;
  z-index: 101;
}
.all_pages:hover ul {
  right: 0;
}
.all_pages .page_point {
  padding: 10px 15px;
  background: #00d2ff;
  cursor: pointer;
  color: #fff;
  font-size: 16px;
}
.all_pages ul {
  background: #00D2FF;
  padding: 15px 20px;
  position: absolute;
  top: 100%;
  width: 200px;
  right: -200px;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
  max-height: 450px;
  overflow-y: auto;
}
.all_pages ul li {
  list-style: none;
  margin-bottom: 15px;
  font-size: 16px;
}
.all_pages ul li a {
  color: #fff;
}

.header-bg .header {
  background-color: transparent;
  border-bottom: 2px solid rgba(210, 215, 226, 0.1);
}
.header-bg .header.scroll {
  border-bottom: none;
}

.header-container {
  max-width: 1835px;
  margin: 0 auto;
  padding: 0 15px;
}

.header {
  background-color: var(--bg-color);
  padding: 20px 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.header.scroll {
  padding: 10px 0;
  background-color: var(--bg-color);
  -webkit-box-shadow: 0 0 5px 5px rgba(106, 124, 160, 0.3);
  box-shadow: 0 0 5px 5px rgba(106, 124, 160, 0.3);
}
@media (max-width: 992px) {
  .header {
    padding: 10px 0;
  }
}
.header__wrap {
  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;
}
.header__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-column-gap: 40px;
  -moz-column-gap: 40px;
  column-gap: 40px;
}
@media (max-width: 1400px) {
  .header__wrapper {
    -webkit-column-gap: 20px;
    -moz-column-gap: 20px;
    column-gap: 20px;
  }
}
@media (max-width: 992px) {
  .header__wrapper > .header__button {
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
  }
}
.header__phone {
  font-family: "Playfair";
  font-style: normal;
  font-weight: 700;
  font-size: 14px;
  line-height: 30px;
  color: #FFFFFF;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  background-repeat: no-repeat;
  background-position: left center;
  background-size: 0px 0px;
}
@media (max-width: 1400px) {
  .header__phone {
    font-size: 0;
    background-size: 18px 18px;
    padding-left: 20px;
  }
}
@media (max-width: 992px) {
  .header__phone {
    font-size: 14px;
    background-size: 0 0;
    padding-left: 0;
    padding-right: 25px;
  }
}
@media (max-width: 480px) {
  .header__phone {
    font-size: 0;
    background-size: 18px 18px;
    padding-right: 20px;
  }
}
.header__phone:hover {
  color: var(--accent-color);
}
.header__logo {
  position: relative;
  z-index: 100;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 1500px) {
  .header__logo {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 10px;
  }
}
@media (max-width: 1200px) {
  .header__logo {
    width: 230px;
  }
}
@media (max-width: 350px) {
  .header__logo {
    width: 200px;
  }
}
.header__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
@media (max-width: 992px) {
  .header__nav {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 99;
    overflow-y: auto;
    width: 100%;
    height: 100vh;
    -webkit-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    transform: translateY(-100%);
  }
  .header__nav.menu--active {
    -webkit-transform: translateY(0%);
    -ms-transform: translateY(0%);
    transform: translateY(0%);
  }
}
.header__nav > ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 992px) {
  .header__nav > ul {
    width: 100%;
    height: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-right: 0;
    background-color: var(--bg-color);
    background: -o-radial-gradient(circle, rgb(160, 177, 213) 35%, rgb(106, 124, 160) 100%);
    background: radial-gradient(circle, rgb(160, 177, 213) 35%, rgb(106, 124, 160) 100%);
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}
.header__nav > ul > li:not(:last-child) {
  margin-right: 25px;
}
@media (max-width: 1450px) {
  .header__nav > ul > li:not(:last-child) {
    margin-right: 15px;
  }
}
@media (max-width: 1200px) {
  .header__nav > ul > li:not(:last-child) {
    margin-right: 14px;
  }
}
@media (max-width: 1050px) {
  .header__nav > ul > li:not(:last-child) {
    margin-right: 7px;
  }
}
@media (max-width: 992px) {
  .header__nav > ul > li:not(:last-child) {
    margin-right: 0;
    margin-bottom: 5px;
  }
}
@media (max-height: 400px) {
  .header__nav > ul > li:not(:last-child) {
    margin-bottom: 0;
  }
}
@media (max-width: 1400px) {
  .header__nav > ul > li:last-child {
    margin-right: 14px;
  }
}
@media (max-width: 1400px) and (max-width: 992px) {
  .header__nav > ul > li:last-child {
    margin-right: 0;
  }
}
.header__nav > ul > li > a {
  font-family: "Playfair";
  font-style: normal;
  font-weight: 700;
  font-size: 14px;
  line-height: 30px;
  text-transform: uppercase;
  color: var(--light-color);
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
@media (max-width: 1400px) {
  .header__nav > ul > li > a {
    font-size: 12px;
  }
}
@media (max-width: 1200px) {
  .header__nav > ul > li > a {
    font-size: 11px;
  }
}
@media (min-width: 992px) {
  .header__nav > ul > li > a:hover {
    color: var(--accent-color);
  }
}
@media (max-width: 992px) {
  .header__nav > ul > li > a {
    font-size: 18px;
    line-height: 24px;
  }
}
@media (max-height: 400px) {
  .header__nav > ul > li > a {
    font-size: 14px;
    line-height: 20px;
  }
}
.header__nav > ul > li > a.active {
  color: var(--accent-color);
}
.header__button {
  font-size: 14px;
  padding: 5px 38px;
}
@media (max-width: 1200px) {
  .header__button {
    font-size: 12px;
    padding: 5px 15px;
  }
}
@media (max-width: 992px) {
  .header__button {
    padding: 5px 30px;
    position: absolute;
    bottom: 10%;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    margin-left: 0;
  }
}
.header .burger {
  --burger-width: 30px;
  --burger-height: 20px;
  --burger-line-height: 2px;
  position: relative;
  border: none;
  padding: 0;
  width: var(--burger-width);
  height: var(--burger-height);
  color: var(--light-color);
  background-color: transparent;
  cursor: pointer;
  display: none;
  z-index: 100;
}
.header .burger::before, .header .burger::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: var(--burger-line-height);
  background-color: currentColor;
  -webkit-transition: top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  -o-transition: transform 0.3s ease-in-out, top 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, top 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
.header .burger::before {
  top: 0;
}
.header .burger::after {
  top: calc(100% - var(--burger-line-height));
}
.header .burger__line {
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  height: var(--burger-line-height);
  background-color: currentColor;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  -o-transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
.header .burger--active::before {
  top: 50%;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  -o-transition: transform 0.3s ease-in-out, top 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, top 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
.header .burger--active::after {
  top: 50%;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transition: top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  -o-transition: transform 0.3s ease-in-out, top 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, top 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
.header .burger--active .burger__line {
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  -o-transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
@media (max-width: 992px) {
  .header .burger {
    display: block;
  }
}

.hero {
  position: relative;
  padding-top: 350px;
  padding-bottom: 100px;
  background-color: var(--bg-color);
}
@media (max-width: 1200px) {
  .hero {
    padding-top: 300px;
  }
}
.hero:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(72.69%, rgba(106, 124, 160, 0)), to(#6A7CA0)), -webkit-gradient(linear, left bottom, left top, from(rgba(0, 14, 50, 0.4)), to(rgba(0, 14, 50, 0.4)));
  background: -o-linear-gradient(top, rgba(106, 124, 160, 0) 72.69%, #6A7CA0 100%), -o-linear-gradient(bottom, rgba(0, 14, 50, 0.4), rgba(0, 14, 50, 0.4));
  background: linear-gradient(180deg, rgba(106, 124, 160, 0) 72.69%, #6A7CA0 100%), linear-gradient(0deg, rgba(0, 14, 50, 0.4), rgba(0, 14, 50, 0.4));
}
.hero__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.hero__wrap {
  text-align: center;
  position: relative;
  z-index: 1;
  margin-bottom: 25px;
}
.hero__title {
  font-family: "Kaushan";
  font-style: normal;
  font-weight: 400;
  font-size: 80px;
  line-height: 80px;
  color: var(--light-color);
  position: relative;
  z-index: 1;
  margin-bottom: 60px;
}
@media (max-width: 1200px) {
  .hero__title {
    font-size: 70px;
    line-height: 70px;
  }
}
@media (max-width: 768px) {
  .hero__title {
    font-size: 60px;
    line-height: 60px;
  }
}
@media (max-width: 480px) {
  .hero__title {
    font-size: 45px;
    line-height: 45px;
  }
}
.hero__title span {
  font-family: "Playfair";
  font-style: normal;
  font-weight: 600;
  font-size: 40px;
  line-height: 60px;
  color: var(--light-color);
  display: inline-block;
}
@media (max-width: 1200px) {
  .hero__title span {
    font-size: 30px;
    line-height: 50px;
  }
}
@media (max-width: 768px) {
  .hero__title span {
    font-size: 25px;
    line-height: 45px;
  }
}
@media (max-width: 480px) {
  .hero__title span {
    font-size: 20px;
    line-height: 40px;
  }
}
.hero__btn {
  font-size: 18px;
  padding: 15px 60px;
  margin-bottom: 200px;
}
@media (max-width: 1200px) {
  .hero__btn {
    margin-bottom: 100px;
  }
}
@media (max-width: 400px) {
  .hero__btn {
    padding: 10px 0;
    font-size: 14px;
    width: 100%;
  }
}
.hero__playpause {
  width: 26px;
  height: 26px;
  border: 3px solid var(--light-color);
  border-radius: 50%;
  background-color: transparent;
  margin-right: 10px;
  margin-left: 10px;
  position: relative;
  cursor: pointer;
  -webkit-transition: all 0.2s ease 0s;
  -o-transition: all 0.2s ease 0s;
  transition: all 0.2s ease 0s;
  /* &:before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 2px;
    height: 8px;
    background-color: var(--light-color);
    transition: all 0.1s ease 0s;
    border-radius: 1px;
    padding-left: 2px;
  } */
}
.hero__playpause:hover {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}
.hero__playpause:after {
  content: "";
  position: absolute;
  width: 8px;
  height: 7px;
  background-color: var(--light-color);
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: all 0.1s ease 0s;
  -o-transition: all 0.1s ease 0s;
  transition: all 0.1s ease 0s;
  border-radius: 1px;
}
.hero__playpause:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 2px;
  height: 7px;
  background-color: var(--bg-footer);
  z-index: 5;
}
.hero__playpause.is-paused:after {
  content: "";
  width: 8px;
  height: 10px;
  left: calc(50% + 1px);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background-color: var(--light-color);
  -webkit-clip-path: polygon(0 0, 100% 50%, 100% 50%, 0 100%);
  clip-path: polygon(0 0, 100% 50%, 100% 50%, 0 100%);
  -webkit-transition: all 0.1s ease 0s;
  -o-transition: all 0.1s ease 0s;
  transition: all 0.1s ease 0s;
}
.hero__playpause.is-paused:before {
  width: 0;
  height: 0;
}
.hero__play-control {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.hero__dividerLeft {
  display: block;
  width: 50px;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.2);
}
.hero__dividerRight {
  display: block;
  width: auto;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.2);
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}
.hero__items {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media (max-width: 576px) {
  .hero__items {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 5px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}
.hero__item:not(:last-child) {
  margin-right: 60px;
}
@media (max-width: 768px) {
  .hero__item:not(:last-child) {
    margin-right: 30px;
  }
}
@media (max-width: 768px) and (max-width: 576px) {
  .hero__item:not(:last-child) {
    margin-right: 0;
  }
}
.hero__item > .hero__link {
  background-position: left center;
  background-size: 24px 24px;
  background-repeat: no-repeat;
}
@media (max-width: 576px) {
  .hero__item > .hero__link {
    background-image: none !important;
  }
}
.hero__item:first-child .hero__link {
  background-image: url("../img/hero-icons-1.svg");
}
.hero__item:nth-child(2) .hero__link {
  background-image: url("../img/hero-icons-2.svg");
}
.hero__item:nth-child(3) .hero__link {
  background-image: url("../img/hero-icons-3.svg");
}
.hero__link {
  padding-left: 39px;
  font-family: "Playfair";
  font-style: normal;
  font-weight: 700;
  font-size: 18px;
  line-height: 24px;
  text-transform: uppercase;
  color: var(--light-color);
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
@media (max-width: 768px) {
  .hero__link {
    font-size: 16px;
  }
}
@media (max-width: 576px) {
  .hero__link {
    font-size: 14px;
    padding-left: 0;
  }
}
@media (min-width: 993px) {
  .hero__link:hover {
    color: var(--accent-color);
  }
}

.welcome, .land-location {
  padding-top: 70px;
  padding-bottom: 65px;
  position: relative;
}
@media (max-width: 576px) {
  .welcome, .land-location {
    padding-top: 0;
  }
}
.welcome:after, .land-location:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 60%;
  background-color: var(--bg-color);
  z-index: -1;
}
.welcome__wrap, .land-location__wrap {
  background-color: var(--light-color);
  padding: 80px 80px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 100px;
  -moz-column-gap: 100px;
  column-gap: 100px;
}
@media (max-width: 1400px) {
  .welcome__wrap, .land-location__wrap {
    padding: 40px 40px 0;
    -webkit-column-gap: 50px;
    -moz-column-gap: 50px;
    column-gap: 50px;
  }
}
@media (max-width: 992px) {
  .welcome__wrap, .land-location__wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 50px;
  }
}
@media (max-width: 480px) {
  .welcome__wrap, .land-location__wrap {
    padding: 20px 20px 0;
  }
}
.welcome__content, .land-location__content {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 50%;
  flex: 0 1 50%;
}
@media (max-width: 992px) {
  .welcome__content, .land-location__content {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
  }
}
.welcome__title, .land-location__title {
  font-family: "Praise";
  font-style: normal;
  font-weight: 400;
  font-size: 50px;
  line-height: 60px;
  color: var(--bg-color);
  margin-bottom: 20px;
}
@media (max-width: 480px) {
  .welcome__title, .land-location__title {
    margin-bottom: 10px;
  }
}
.welcome__text, .land-location__text {
  font-family: "Playfair";
  font-style: normal;
  font-weight: 400;
  font-size: 24px;
  line-height: 40px;
  color: var(--main-color);
  margin-bottom: 40px;
}
@media (max-width: 1200px) {
  .welcome__text, .land-location__text {
    font-size: 22px;
    line-height: 36px;
  }
}
@media (max-width: 480px) {
  .welcome__text, .land-location__text {
    font-size: 18px;
    line-height: 28px;
  }
}
.welcome__btn, .land-location__btn {
  font-size: 16px;
  color: var(--bg-color);
  padding: 10px 50px;
}
@media (max-width: 576px) {
  .welcome__btn, .land-location__btn {
    display: block;
    max-width: -webkit-fit-content;
    max-width: -moz-fit-content;
    max-width: fit-content;
    margin: 0 auto;
  }
}
@media (max-width: 480px) {
  .welcome__btn, .land-location__btn {
    font-size: 14px;
  }
}
.welcome__images, .land-location__images {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 50%;
  flex: 0 1 50%;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 250px 260px;
  grid-template-columns: 250px 260px;
  -ms-grid-rows: (260px)[2];
  grid-template-rows: repeat(2, 260px);
  gap: 30px;
}
@media (max-width: 992px) {
  .welcome__images, .land-location__images {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    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;
  }
}
@media (max-width: 576px) {
  .welcome__images, .land-location__images {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 20px;
  }
}
.welcome__images img, .land-location__images img {
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  -o-object-fit: cover !important;
  object-fit: cover !important;
}
@media (max-width: 992px) {
  .welcome__images img, .land-location__images img {
    width: 30%;
  }
}
@media (max-width: 576px) {
  .welcome__images img, .land-location__images img {
    width: auto;
  }
}
.welcome__images img:hover, .land-location__images img:hover {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}
.welcome__images img:first-child, .land-location__images img:first-child {
  -ms-grid-row-align: center;
  align-self: center;
  -ms-grid-row: 1;
  -ms-grid-row-span: 2;
  grid-row: 1/3;
}
@media (max-width: 576px) {
  .welcome__images img:first-child, .land-location__images img:first-child {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }
}
.welcome__images img:nth-child(3), .land-location__images img:nth-child(3) {
  -ms-grid-column: 2;
  -ms-grid-column-span: 1;
  grid-column: 2/3;
}
.welcome__images img:nth-child(2), .land-location__images img:nth-child(2) {
  -webkit-box-ordinal-group: 0;
  -ms-flex-order: -1;
  order: -1;
  -ms-flex-item-align: end;
  -ms-grid-row-align: end;
  align-self: end;
}

@media (max-width: 992px) {
  .land-location {
    padding-top: 40px;
  }
}
@media (max-width: 992px) and (max-width: 768px) {
  .land-location {
    padding-top: 20px;
  }
}
.land-location:after {
  content: none;
}
.land-location__title {
  font-family: "Playfair";
  font-style: normal;
  font-weight: 700;
  font-size: 44px;
  line-height: 60px;
  color: #6A7CA0;
}
@media (max-width: 1200px) {
  .land-location__title {
    font-size: 40px;
    line-height: 50px;
  }
}
@media (max-width: 768px) {
  .land-location__title {
    font-size: 36px;
    line-height: 42px;
  }
}
@media (max-width: 480px) {
  .land-location__title {
    margin-bottom: 10px;
    font-size: 32px;
    line-height: 37px;
  }
}
.land-location__wrap {
  padding-right: 0;
  padding-left: 0;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-column-gap: 60px;
  -moz-column-gap: 60px;
  column-gap: 60px;
}
@media (max-width: 1200px) {
  .land-location__wrap {
    padding-top: 0;
    padding-bottom: 0;
  }
}
@media (max-width: 992px) {
  .land-location__wrap {
    padding-right: 40px;
    padding-left: 40px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 50px;
  }
}
@media (max-width: 768px) {
  .land-location__wrap {
    padding-right: 20px;
    padding-left: 20px;
  }
}
@media (max-width: 480px) {
  .land-location__wrap {
    padding: 10px 10px 0;
  }
}
@media (max-width: 1200px) {
  .land-location__text {
    font-size: 20px;
    line-height: 30px;
  }
}
@media (max-width: 1200px) {
  .land-location__text {
    font-size: 18px;
    line-height: 32px;
  }
}
@media (max-width: 992px) {
  .land-location__text {
    margin-bottom: 0;
  }
}
@media (max-width: 480px) {
  .land-location__text {
    font-size: 16px;
    line-height: 28px;
  }
}
.land-location__images {
  -ms-flex-preferred-size: calc(50% - 60px);
  flex-basis: calc(50% - 60px);
}

.limited {
  padding-top: 65px;
  padding-bottom: 120px;
}
@media (max-width: 768px) {
  .limited {
    padding-top: 0;
    padding-bottom: 60px;
  }
}
.limited__wrap {
  padding: 80px 60px 80px 30px;
  position: relative;
  /* &:after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 80px;
    height: 80px;
    background-color: var(--light-color);
    @media (max-width: 1200px){
        content: none;
    }
  } */
  /* &:before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 80px;
    height: 80px;
    background-color: var(--light-color);
    @media (max-width: 1200px){
      content: none;
    }
  } */
}
@media (max-width: 1200px) {
  .limited__wrap {
    padding: 60px 40px;
  }
}
@media (max-width: 992px) {
  .limited__wrap {
    padding: 30px;
  }
}
@media (max-width: 480px) {
  .limited__wrap {
    padding: 15px;
  }
}
@media (max-width: 1200px) {
  .limited__slider {
    max-height: none;
  }
}
.limited__img {
  position: relative;
  background-color: var(--bg-color);
  -webkit-box-flex: 0;
  -ms-flex: 0 1 calc(100% - 430px);
  flex: 0 1 calc(100% - 430px);
}
@media (max-width: 1200px) {
  .limited__img {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 100%;
    flex: 0 1 100%;
    overflow-y: hidden;
  }
}
@media (max-width: 1200px) {
  .limited__img {
    margin-bottom: 50px;
  }
}
@media (max-width: 480px) {
  .limited__img {
    margin-bottom: 30px;
  }
}
.limited__img > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.limited__info {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 370px;
  flex: 0 1 370px;
}
@media (max-width: 1200px) {
  .limited__info {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 100%;
    flex: 0 1 100%;
  }
}
.limited__title {
  margin-bottom: 40px;
  color: var(--light-color);
}
.limited__title:after {
  background-color: rgba(255, 255, 255, 0.2);
}
.limited__descr {
  font-family: "OpenSans";
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 30px;
  color: var(--light-color);
  margin-bottom: 30px;
}
@media (max-width: 480px) {
  .limited__descr {
    font-size: 16px;
    line-height: 25px;
  }
}
.limited__price {
  font-family: "Praise";
  font-style: normal;
  font-weight: 400;
  font-size: 60px;
  line-height: 50px;
  color: var(--light-color);
  margin-bottom: 40px;
}
@media (max-width: 480px) {
  .limited__price {
    font-size: 50px;
    line-height: 40px;
    margin-bottom: 25px;
  }
}
.limited__price span.from {
  font-size: 24px;
  line-height: 20px;
  display: block;
}
.limited__btn {
  padding: 10px 50px;
  font-size: 16px;
}
@media (max-width: 576px) {
  .limited__btn {
    display: block;
    max-width: -webkit-fit-content;
    max-width: -moz-fit-content;
    max-width: fit-content;
    margin: 0 auto;
  }
}
@media (max-width: 480px) {
  .limited__btn {
    font-size: 14px;
  }
}
@media (max-width: 1200px) {
  .limited .swiper-wrapper {
    max-height: none;
  }
}
.limited .swiper-slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 60px;
  -moz-column-gap: 60px;
  column-gap: 60px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
@media (max-width: 1200px) {
  .limited .swiper-slide {
    height: auto;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 50px;
  }
}
@media (max-width: 1200px) {
  .limited .swiper-slide {
    display: block !important;
  }
}
.limited .limited-button-prev {
  background-color: var(--bg-color);
  position: absolute;
  bottom: 0;
  right: 80px;
  width: 80px;
  height: 80px;
  z-index: 1;
  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;
  cursor: pointer;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.limited .limited-button-prev:active {
  background-color: #56688C;
}
@media (max-width: 992px) {
  .limited .limited-button-prev {
    width: 60px;
    height: 60px;
    right: 60px;
  }
}
@media (max-width: 480px) {
  .limited .limited-button-prev {
    width: 40px;
    height: 40px;
    right: 40px;
  }
}
.limited .limited-button-next {
  background-color: #56688C;
  position: absolute;
  right: 0px;
  bottom: 0;
  width: 80px;
  height: 80px;
  z-index: 1;
  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;
  cursor: pointer;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.limited .limited-button-next:active {
  background-color: var(--bg-color);
}
@media (max-width: 992px) {
  .limited .limited-button-next {
    width: 60px;
    height: 60px;
  }
}
@media (max-width: 480px) {
  .limited .limited-button-next {
    width: 40px;
    height: 40px;
  }
}
.limited .swiper-button-prev {
  display: none !important;
}
.limited .swiper-button-next {
  display: none !important;
}

.design {
  padding: 90px 0;
}
.design .container-box {
  position: relative;
}
@media (max-width: 768px) {
  .design {
    padding-top: 60px;
    padding-bottom: 50px;
  }
}
.design__title {
  margin-bottom: 70px;
  font-size: 36px;
  text-align: center;
  color: var(--bg-color);
}
.design__title:after {
  background-color: var(--bg-color);
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}
@media (max-width: 576px) {
  .design__title {
    margin-bottom: 90px;
  }
}
.design__btn {
  padding: 10px 60px;
  font-size: 16px;
  color: var(--bg-color);
  display: block;
  margin: 0 auto;
  max-width: -webkit-fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content;
  cursor: pointer;
  -webkit-transform: translateY(-15px);
  -ms-transform: translateY(-15px);
  transform: translateY(-15px);
  position: relative;
  z-index: 0;
}
@media (max-width: 992px) {
  .design__btn {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    margin-top: 20px;
  }
}
@media (max-width: 480px) {
  .design__btn {
    margin-top: 0px;
    padding: 10px 0;
    width: 100%;
    max-width: none;
    font-size: 14px;
  }
}
.design .swiper {
  padding-bottom: 100px;
}
@media (max-width: 1200px) {
  .design .swiper {
    width: 880px !important;
  }
}
@media (max-width: 992px) {
  .design .swiper {
    width: 90% !important;
    padding-bottom: 50px;
  }
}
@media (max-width: 768px) {
  .design .swiper {
    width: 430px !important;
  }
}
@media (max-width: 480px) {
  .design .swiper {
    width: 100% !important;
    max-width: 430px !important;
  }
}
.design .swiper-slide {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.design .swiper-button-prev {
  display: none !important;
}
.design .swiper-button-next {
  display: none !important;
}
.design .design-button-prev {
  position: absolute;
  left: -60px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  cursor: pointer;
}
@media (max-width: 1550px) {
  .design .design-button-prev {
    left: auto;
    right: 100px;
    top: 80px;
  }
}
@media (max-width: 1200px) {
  .design .design-button-prev {
    left: 10px;
    right: auto;
    top: 50%;
  }
}
@media (max-width: 992px) {
  .design .design-button-prev {
    left: auto;
    right: 120px;
    top: 80px;
  }
}
@media (max-width: 768px) {
  .design .design-button-prev {
    left: 10px;
    right: auto;
    top: 50%;
  }
}
@media (max-width: 576px) {
  .design .design-button-prev {
    left: 50%;
    top: 80px;
    right: auto;
    -webkit-transform: translate(calc(-50% - 25px));
    -ms-transform: translate(calc(-50% - 25px));
    transform: translate(calc(-50% - 25px));
  }
}
@media (max-width: 480px) {
  .design .design-button-prev {
    top: 60px;
  }
}
.design .design-button-next {
  position: absolute;
  right: -60px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  cursor: pointer;
}
@media (max-width: 1550px) {
  .design .design-button-next {
    right: 15px;
    top: 80px;
  }
}
@media (max-width: 1200px) {
  .design .design-button-next {
    right: 10px;
    top: 50%;
  }
}
@media (max-width: 992px) {
  .design .design-button-next {
    right: 60px;
    top: 80px;
  }
}
@media (max-width: 768px) {
  .design .design-button-next {
    right: 10px;
    top: 50%;
  }
}
@media (max-width: 576px) {
  .design .design-button-next {
    right: 50%;
    top: 80px;
    -webkit-transform: translate(calc(-50% + 65px));
    -ms-transform: translate(calc(-50% + 65px));
    transform: translate(calc(-50% + 65px));
  }
}
@media (max-width: 480px) {
  .design .design-button-next {
    top: 60px;
  }
}
.houses {
  padding-top: 30px;
  padding-bottom: 120px;
  position: relative;
}
@media (max-width: 992px) {
  .houses {
    padding-bottom: 60px;
  }
}
.houses:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 150px;
  background-color: #FBFAF6;
  z-index: -1;
}
.houses__items {
  width: 100%;
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(auto-fit, 315px);
  -ms-grid-rows: 400px;
  grid-template-rows: 400px;
  grid-auto-rows: 400px;
  gap: 30px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media (max-width: 345px) {
  .houses__items {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
    -ms-grid-rows: auto;
    grid-template-rows: auto;
  }
}
.houses__item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.houses__item img {
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
@media (min-width: 992px) {
  .houses__item:hover img {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
  }
}
.houses__descr {
  position: absolute;
  left: 30px;
  bottom: 30px;
  font-family: "Playfair";
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  line-height: 30px;
  color: var(--light-color);
}

.difference__wrap {
  padding: 50px 60px 80px 0;
  position: relative;
}
.difference__wrap:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 80px;
  height: 100%;
  background-color: var(--light-color);
  z-index: 0;
}
@media (max-width: 576px) {
  .difference__wrap:before {
    content: none;
  }
}
@media (max-width: 1200px) {
  .difference__wrap {
    padding: 30px;
  }
}
@media (max-width: 576px) {
  .difference__wrap {
    padding: 15px;
  }
}
.difference__title {
  position: relative;
  z-index: 1;
  font-family: "Praise";
  font-style: normal;
  font-weight: 400;
  font-size: 50px;
  line-height: 60px;
  color: var(--bg-color);
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .difference__title {
    text-align: center;
  }
}
@media (max-width: 576px) {
  .difference__title {
    font-size: 40px;
    line-height: 50px;
    margin-bottom: 20px;
  }
}
@media (max-width: 480px) {
  .difference__title {
    line-height: 40px;
  }
}
.difference__tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 60px;
  -moz-column-gap: 60px;
  column-gap: 60px;
}
@media (max-width: 1200px) {
  .difference__tabs {
    -webkit-column-gap: 10px;
    -moz-column-gap: 10px;
    column-gap: 10px;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}
@media (max-width: 992px) {
  .difference__tabs {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 30px;
  }
}
.difference__list {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 430px;
  flex: 0 1 430px;
}
.difference__list > ul {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
@media (max-width: 992px) {
  .difference__list > ul {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}
@media (max-width: 992px) {
  .difference__list {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 auto;
    flex: 0 1 auto;
    text-align: center;
  }
}
.difference__item {
  margin-bottom: 20px;
  position: relative;
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
}
@media (max-width: 992px) {
  .difference__item {
    margin-bottom: 15px;
  }
}
@media (max-width: 480px) {
  .difference__item {
    margin-bottom: 10px;
  }
}
.difference__content {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 calc(100% - 490px);
  flex: 0 1 calc(100% - 490px);
}
@media (max-width: 1200px) {
  .difference__content {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 calc(100% - 430px);
    flex: 0 1 calc(100% - 430px);
  }
}
@media (max-width: 992px) {
  .difference__content {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 100%;
    flex: 0 1 100%;
  }
}
.difference__text {
  font-family: "Playfair";
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 30px;
  color: var(--main-color);
  margin-bottom: 30px;
}
.difference__images {
  text-align: center;
}
.difference__images img {
  margin-right: 5px;
  margin-bottom: 10px;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.difference__images img:hover {
  -webkit-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
}
@media (max-width: 480px) {
  .difference__images {
    text-align: center;
  }
  .difference__images img {
    margin-right: 0;
    margin-bottom: 10px;
  }
}
.difference .tabs__btn {
  font-family: "Playfair";
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
  line-height: 30px;
  color: var(--main-color);
}
@media (max-width: 480px) {
  .difference .tabs__btn {
    font-size: 18px;
    line-height: 26px;
  }
}

.tabs {
  position: relative;
}

.tabs__item:not(:last-child) {
  margin-right: 10px;
}

.tabs__content {
  display: none;
}

.tabs__content--active {
  display: block;
}

.tabs__btn {
  display: inline !important;
}
.tabs__btn--active {
  color: var(--bg-color) !important;
}
.tabs__btn--active:after {
  content: "";
  position: absolute;
  top: 62%;
  right: -80px;
  width: 60px;
  height: 2px;
  background-color: var(--bg-color);
}
@media (max-width: 1200px) {
  .tabs__btn--active:after {
    width: 40px;
    right: -50px;
  }
}
@media (max-width: 992px) {
  .tabs__btn--active:after {
    width: 60px;
    right: -80px;
  }
}
@media (max-width: 480px) {
  .tabs__btn--active:after {
    width: 10px;
    height: 2px;
    border-radius: 50%;
    top: 45%;
    right: -25px;
  }
}
@media (max-width: 992px) {
  .tabs__btn--active:before {
    content: "";
    position: absolute;
    top: 62%;
    left: -80px;
    width: 60px;
    height: 2px;
    background-color: var(--bg-color);
  }
}
@media (max-width: 992px) and (max-width: 480px) {
  .tabs__btn--active:before {
    width: 10px;
    height: 2px;
    border-radius: 50%;
    top: 45%;
    left: -25px;
  }
}

.quote {
  margin-top: 120px;
  padding-left: calc((100% - var(--content-width)) / 2);
}
@media (max-width: 576px) {
  .quote {
    margin-top: 40px;
  }
}
.quote__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 1400px) {
  .quote__wrap {
    padding-left: 15px;
  }
}
@media (max-width: 992px) {
  .quote__wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
@media (max-width: 992px) {
  .quote__wrap {
    padding: 0;
  }
}
.quote__block {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 675px;
  flex: 0 1 675px;
  padding: 120px 95px 120px 0;
}
@media (max-width: 1400px) {
  .quote__block {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    padding: 60px 60px 60px 0;
  }
}
.quote__block img {
  display: inline-block;
  margin-bottom: 30px;
}
@media (max-width: 480px) {
  .quote__block img {
    margin-bottom: 15px;
    width: 25px;
  }
}
@media (max-width: 992px) {
  .quote__block {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    padding-top: 60px;
    padding-bottom: 60px;
    padding-left: 15px;
  }
}
@media (max-width: 480px) {
  .quote__block {
    padding: 30px 15px;
  }
}
.quote__text {
  font-family: "Playfair";
  font-style: normal;
  font-weight: 400;
  font-size: 24px;
  line-height: 40px;
  color: var(--light-color);
  margin-bottom: 40px;
}
@media (max-width: 480px) {
  .quote__text {
    font-size: 18px;
    line-height: 30px;
  }
}
.quote__author {
  font-family: "Praise";
  font-style: normal;
  font-weight: 400;
  font-size: 30px;
  line-height: 25px;
  color: var(--light-color);
}
@media (max-width: 480px) {
  .quote__author {
    font-size: 24px;
    line-height: 20px;
  }
}
.quote__author span {
  font-family: "Playfair";
  font-style: normal;
  font-weight: 700;
  font-size: 14px;
  line-height: 25px;
  text-transform: uppercase;
  color: #D2D7E2;
  display: block;
}
@media (max-width: 480px) {
  .quote__author span {
    font-size: 12px;
    line-height: 20px;
  }
}
.quote__img {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 calc(100% - 675px);
  flex: 0 1 calc(100% - 675px);
}
@media (max-width: 1400px) {
  .quote__img {
    -ms-flex-preferred-size: calc(100% - (50% - 30px));
    flex-basis: calc(100% - (50% - 30px));
  }
}
.quote__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
@media (max-width: 992px) {
  .quote__img {
    max-height: 500px;
  }
}

@media (max-width: 992px) {
  .experience {
    background-image: none !important;
  }
}
@media (max-width: 1400px) {
  .experience .container-box {
    padding-left: 30px;
  }
}
@media (max-width: 1390px) {
  .experience .container-box {
    padding-left: 25px;
  }
}
@media (max-width: 1380px) {
  .experience .container-box {
    padding-left: 20px;
  }
}
@media (max-width: 1370px) {
  .experience .container-box {
    padding-left: 15px;
  }
}
@media (max-width: 1360px) {
  .experience .container-box {
    padding-left: 10px;
  }
}
@media (max-width: 1350px) {
  .experience .container-box {
    padding-left: 0;
  }
}
@media (max-width: 992px) {
  .experience .container-box {
    padding-right: 0 !important;
  }
}
.experience__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 992px) {
  .experience__wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
}
.experience__video {
  position: relative;
  -webkit-box-flex: 0;
  -ms-flex: 0 1 675px;
  flex: 0 1 675px;
}
@media (max-width: 1400px) {
  .experience__video {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 calc(50% + 1px);
    flex: 0 1 calc(50% + 1px);
  }
}
.experience__video > a > img:nth-child(1) {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
@media (max-width: 992px) {
  .experience__video {
    max-height: 500px;
  }
  .experience__video img {
    max-height: 500px;
  }
}
.experience__play {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
@media (max-width: 576px) {
  .experience__play {
    width: 80px;
    height: 80px;
  }
}
@media (max-width: 480px) {
  .experience__play {
    width: 50px;
    height: 50px;
  }
}
.experience__content {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 calc(100% - 675px);
  flex: 0 1 calc(100% - 675px);
  padding: 120px 15px 120px 95px;
}
@media (max-width: 1400px) {
  .experience__content {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    padding: 60px 15px 60px 60px;
  }
}
@media (max-width: 992px) {
  .experience__content {
    background-color: var(--light-color);
    padding-left: 15px;
  }
}
@media (max-width: 576px) {
  .experience__content {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
.experience__title {
  font-family: "Kaushan";
  font-style: normal;
  font-weight: 400;
  font-size: 44px;
  line-height: 50px;
  color: var(--main-color);
  margin-bottom: 30px;
}
@media (max-width: 576px) {
  .experience__title {
    font-size: 36px;
    line-height: 45px;
    margin-bottom: 20px;
  }
}
.experience__text {
  font-family: "Playfair";
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 30px;
  color: var(--main-color);
  margin-bottom: 40px;
}
.experience__btn {
  font-size: 18px;
  color: var(--main-color);
  padding: 15px 120px;
}
@media (max-width: 480px) {
  .experience__btn {
    padding: 10px 0;
    width: 100%;
    text-align: center;
    font-size: 14px;
  }
}

.testimonials {
  padding-left: calc((100% - var(--content-width)) / 2);
}
.testimonials__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 1400px) {
  .testimonials__wrap {
    padding-left: 15px;
  }
}
@media (max-width: 992px) {
  .testimonials__wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
@media (max-width: 992px) {
  .testimonials__wrap {
    padding: 0;
  }
}
.testimonials__block {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 675px;
  flex: 0 1 675px;
  padding: 90px 95px 0 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
@media (max-width: 1600px) {
  .testimonials__block {
    padding: 60px 60px 60px 0;
  }
}
@media (max-width: 1400px) {
  .testimonials__block {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
  }
}
@media (max-width: 992px) {
  .testimonials__block {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    padding: 60px 15px;
  }
}
@media (max-width: 576px) {
  .testimonials__block {
    padding: 40px 15px;
  }
}
@media (max-width: 480px) {
  .testimonials__block {
    padding: 30px 15px;
  }
}
.testimonials__img {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 calc(100% - 675px);
  flex: 0 1 calc(100% - 675px);
}
.testimonials__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
@media (max-width: 1400px) {
  .testimonials__img {
    -ms-flex-preferred-size: calc(100% - (50% - 30px));
    flex-basis: calc(100% - (50% - 30px));
  }
}
@media (max-width: 992px) {
  .testimonials__img {
    max-height: 500px;
  }
}
.testimonials__title {
  font-family: "Playfair";
  font-style: normal;
  font-weight: 700;
  font-size: 30px;
  line-height: 50px;
  color: var(--main-color);
  margin-bottom: 30px;
}
@media (max-width: 480px) {
  .testimonials__title {
    font-size: 24px;
    line-height: 32px;
    margin-bottom: 20px;
  }
}
.testimonials__raiting {
  margin-bottom: 20px;
}
.testimonials__text {
  font-family: "Playfair";
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 30px;
  color: var(--main-color);
  margin-bottom: 30px;
}
.testimonials__info-author {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-column-gap: 20px;
  -moz-column-gap: 20px;
  column-gap: 20px;
}
.testimonials__avatar {
  width: 60px;
  height: 60px;
}
.testimonials__avatar img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.testimonials__names {
  font-family: "Praise";
  font-style: normal;
  font-weight: 400;
  font-size: 24px;
  line-height: 22px;
  color: var(--bg-color);
}
.testimonials__names span {
  display: block;
  font-family: "Playfair";
  font-style: normal;
  font-weight: 700;
  font-size: 14px;
  line-height: 22px;
  text-transform: uppercase;
  color: var(--main-color);
}
.testimonials .swiper-pagination {
  text-align: left;
  bottom: 5%;
}
@media (max-width: 1800px) {
  .testimonials .swiper-pagination {
    bottom: 7%;
  }
}
@media (max-width: 1400px) {
  .testimonials .swiper-pagination {
    left: 30%;
  }
}
@media (max-width: 992px) {
  .testimonials .swiper-pagination {
    bottom: 0%;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    text-align: center;
    padding: 10px;
    background-color: #fff;
  }
}
.testimonials .swiper-pagination-bullet {
  width: 40px;
  height: 6px;
  border-radius: 0 !important;
  background-color: rgba(106, 124, 160, 0.9);
}
.testimonials .swiper-pagination-bullet-active {
  width: 80px;
  background-color: var(--accent-color);
}

.filter {
  padding-top: 160px;
}
@media (max-width: 992px) {
  .filter {
    padding-top: 140px;
  }
}
.filter__title {
  margin-bottom: 20px;
}
.filter__subtitle {
  font-family: "OpenSans";
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 30px;
  color: var(--main-color);
  margin-bottom: 60px;
}
@media (max-width: 576px) {
  .filter__subtitle {
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 30px;
  }
}
.filter__filters {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[4];
  grid-template-columns: repeat(4, 1fr);
  -ms-grid-rows: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 40px 30px;
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .filter__filters {
    -ms-grid-columns: (1fr)[3];
    grid-template-columns: repeat(3, 1fr);
    -ms-grid-rows: (1fr)[3];
    grid-template-rows: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .filter__filters {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
    -ms-grid-rows: (1fr)[4];
    grid-template-rows: repeat(4, 1fr);
    row-gap: 20px;
  }
}
@media (max-width: 576px) {
  .filter__filters {
    -webkit-column-gap: 15px;
    -moz-column-gap: 15px;
    column-gap: 15px;
    row-gap: 15px;
  }
}
@media (max-width: 480px) {
  .filter__filters {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    -ms-grid-rows: (1fr)[auto];
    grid-template-rows: repeat(auto, 1fr);
  }
}
.filter__select-wrap {
  border-bottom: 1px solid #D2D7E2;
  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;
  -webkit-column-gap: 10px;
  -moz-column-gap: 10px;
  column-gap: 10px;
  -ms-flex-item-align: end;
  -ms-grid-row-align: end;
  align-self: end;
}
@media (max-width: 650px) {
  .filter__select-wrap {
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
  }
}
.filter__select-wrap label {
  font-family: "OpenSans";
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  color: var(--main-color);
}
@media (max-width: 480px) {
  .filter__select-wrap label {
    font-size: 12px;
  }
}
.filter__btn {
  padding: 10px 0px;
  font-size: 12px;
  line-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;
  -webkit-column-gap: 10px;
  -moz-column-gap: 10px;
  column-gap: 10px;
}
.filter__btn:hover img {
  -webkit-filter: brightness(50%);
  filter: brightness(50%);
}
@media (max-width: 576px) {
  .filter__btn {
    -ms-flex-item-align: end;
    -ms-grid-row-align: end;
    align-self: end;
    padding: 5px 0;
    font-size: 10px;
  }
}
.filter__sort {
  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-bottom: 20px;
}
.filter__sort .filter__select-wrap {
  width: 315px;
}
@media (max-width: 768px) {
  .filter__sort {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    row-gap: 20px;
  }
}
@media (max-width: 650px) {
  .filter__sort {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}
@media (max-width: 480px) {
  .filter__sort {
    row-gap: 15px;
  }
  .filter__sort .filter__select-wrap {
    width: 100%;
  }
}
.filter__showing {
  font-family: "OpenSans";
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
  color: var(--main-color);
}
@media (max-width: 480px) {
  .filter__showing {
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
    font-size: 12px;
    line-height: 12px;
  }
}
.filter__cards {
  padding-bottom: 120px;
  background-color: #FBFAF6;
}
@media (max-width: 992px) {
  .filter__cards {
    padding-bottom: 60px;
  }
}
@media (max-width: 576px) {
  .filter__cards {
    padding-bottom: 60px;
  }
}
.filter__items {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(300px, 430px))[3];
  grid-template-columns: repeat(3, minmax(300px, 430px));
  -ms-grid-rows: (1fr)[4];
  grid-template-rows: repeat(4, 1fr);
  grid-auto-rows: auto;
  gap: 60px 30px;
  margin-bottom: 60px;
}
@media (max-width: 1200px) {
  .filter__items {
    -webkit-column-gap: 15px;
    -moz-column-gap: 15px;
    column-gap: 15px;
  }
  .filter__items .card-single__name {
    font-size: 20px;
    line-height: 30px;
  }
}
@media (max-width: 992px) {
  .filter__items {
    -ms-grid-columns: (minmax(300px, 430px))[2];
    grid-template-columns: repeat(2, minmax(300px, 430px));
    -ms-grid-rows: (1fr)[6];
    grid-template-rows: repeat(6, 1fr);
    -ms-flex-line-pack: center;
    align-content: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    row-gap: 60px;
  }
  .filter__items .card-single {
    -webkit-box-shadow: 0px 0px 15px 0 rgba(0, 0, 0, 0.2);
    box-shadow: 0px 0px 15px 0 rgba(0, 0, 0, 0.2);
  }
  .filter__items .card-single__favorite {
    top: 15px;
    left: 15px;
  }
}
@media (max-width: 768px) {
  .filter__items {
    row-gap: 30px;
  }
}
@media (max-width: 650px) {
  .filter__items {
    -ms-grid-columns: minmax(300px, 430px);
    grid-template-columns: minmax(300px, 430px);
    -ms-grid-rows: (1fr)[12];
    grid-template-rows: repeat(12, 1fr);
  }
}

.filter__cards .pagination {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-column-gap: 10px;
  -moz-column-gap: 10px;
  column-gap: 10px;
}
.filter__cards .pagination > li {
  width: 40px;
  height: 40px;
}
.filter__cards .pagination > li > a {
  width: 100%;
  height: 100%;
  font-family: "Playfair";
  font-style: normal;
  font-weight: 700;
  font-size: 14px;
  line-height: 20px;
  text-align: center;
  text-transform: uppercase;
  color: var(--bg-color);
}
.filter__cards .page-item .page-link {
  border: 2px solid var(--bg-color);
  background-color: #FBFAF6;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.filter__cards .page-item .page-link:hover {
  background-color: var(--bg-color);
  color: var(--light-color);
}
.filter__cards .page-item .page-link__active {
  border: 2px solid var(--accent-color);
}
.filter__cards .page-item .page-link__active:hover {
  background-color: var(--accent-color);
  color: var(--bg-color);
}
.filter__cards .page-item:first-child .page-link,
.filter__cards .page-item:last-child .page-link {
  border-radius: 0;
}
.filter__cards .page-dots {
  padding-left: 14px;
  padding-right: 14px;
}

.padding-limited .limited {
  padding: 120px 0;
}
@media (max-width: 992px) {
  .padding-limited .limited {
    padding-top: 60px;
  }
}
@media (max-width: 576px) {
  .padding-limited .limited {
    padding: 60px 0;
  }
}

.select2 {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  font-family: "OpenSans";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  color: var(--main-color);
  padding: 6px 0 !important;
}
@media (max-width: 480px) {
  .select2 {
    padding: 3px 0 !important;
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .select2-results__option {
    font-size: 12px !important;
  }
  .select2-search__field {
    font-size: 12px !important;
  }
}
.select2-selection__arrow b {
  border-color: transparent !important;
  border-width: 0 !important;
  width: 7px !important;
  height: 7px !important;
  border: 2px solid #000000 !important;
  border-top: none !important;
  border-left: none !important;
  -webkit-transform: rotate(45deg) translateY(-3px) !important;
  -ms-transform: rotate(45deg) translateY(-3px) !important;
  transform: rotate(45deg) translateY(-3px) !important;
  -webkit-transform-origin: 50% 50% !important;
  -ms-transform-origin: 50% 50% !important;
  transform-origin: 50% 50% !important;
  -webkit-transition: all 0.3s ease 0s !important;
  -o-transition: all 0.3s ease 0s !important;
  transition: all 0.3s ease 0s !important;
  top: 18px !important;
}
@media (max-width: 480px) {
  .select2-selection__arrow b {
    width: 5px !important;
    height: 5px !important;
  }
}

.select2-container--open .select2-selection__arrow b {
  -webkit-transform-origin: 50% 50% !important;
  -ms-transform-origin: 50% 50% !important;
  transform-origin: 50% 50% !important;
  -webkit-transform: rotate(-135deg) !important;
  -ms-transform: rotate(-135deg) !important;
  transform: rotate(-135deg) !important;
  top: 18px !important;
}

.select2-selection {
  border: none;
  padding-right: 15px;
  background-color: #FBFAF6 !important;
  border: none !important;
}
@media (max-width: 576px) {
  .select2-selection {
    padding-right: 5px;
  }
}

.filter .select2-container .select2-dropdown {
  background-color: red !important;
  outline: 1px solid red !important;
}

.select2-selection__rendered {
  text-align: right;
}

.faq {
  padding-top: 90px;
  padding-bottom: 120px;
  background-color: #FBFAF6;
}
@media (max-width: 576px) {
  .faq {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
.faq__title {
  margin-bottom: 70px;
  font-size: 36px;
  text-align: center;
  color: var(--bg-color);
}
.faq__title:after {
  background-color: var(--bg-color);
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}
@media (max-width: 576px) {
  .faq__title {
    margin-bottom: 90px;
  }
}

.accordion-item {
  margin-bottom: 10px;
  border: 0 !important;
}
.accordion-item.active {
  -webkit-box-shadow: 0px 10px 50px #E3DCC9;
  box-shadow: 0px 10px 50px #E3DCC9;
  position: relative;
  z-index: 95;
}

.accordion-item:first-of-type,
.accordion-item:last-of-type {
  border-top-left-radius: 0px !important;
  border-top-right-radius: 0px !important;
}

.accordion-item:last-of-type .accordion-button.collapsed {
  border-bottom-right-radius: 0px !important;
  border-bottom-left-radius: 0px !important;
  border-top-left-radius: 0px !important;
  border-top-right-radius: 0px !important;
}

.accordion-item:last-of-type {
  border-bottom-right-radius: 0px !important;
  border-bottom-left-radius: 0px !important;
}

.accordion-item:first-of-type .accordion-button {
  border-top-left-radius: 0px !important;
  border-top-right-radius: 0px !important;
}

.accordion-button {
  font-family: "Playfair";
  font-style: normal;
  font-weight: 700;
  font-size: 18px;
  line-height: 30px;
  color: var(--main-color) !important;
  background-color: none !important;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  padding: 20px 30px;
  -webkit-column-gap: 20px;
  -moz-column-gap: 20px;
  column-gap: 20px;
}
.accordion-button:after {
  background-image: url("../img/arrow-down.svg");
  background-size: 10px 7px;
  width: 10px !important;
  height: 7px !important;
}
@media (max-width: 480px) {
  .accordion-button {
    padding: 10px 20px 10px 20px;
    font-size: 16px;
    line-height: 20px;
  }
}

.accordion-button:not(.collapsed) {
  background: none !important;
}

.accordion-button:not(.collapsed)::after {
  background-image: url("../img/arrow-down.svg");
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.accordion-body {
  font-family: "OpenSans";
  font-style: normal;
  font-weight: 400;
  font-size: 15px;
  line-height: 25px;
  color: var(--main-color);
  padding: 0px 60px 20px 30px;
}
@media (max-width: 480px) {
  .accordion-body {
    font-size: 14px;
    line-height: 23px;
    padding: 10px 30px 10px 20px;
  }
}

.accordion-collapse.collapse.show .accordion-item {
  outline: 1px solid red;
}

.how-it-works {
  background-color: #FBFAF6;
  padding-top: 30px;
  padding-bottom: 120px;
}
@media (max-width: 768px) {
  .how-it-works {
    padding-top: 0;
    padding-bottom: 60px;
  }
}
@media (max-width: 480px) {
  .how-it-works {
    padding-bottom: 30px;
  }
}
.how-it-works__title {
  margin-bottom: 60px;
  font-size: 36px;
  text-align: center;
  color: var(--bg-color);
}
.how-it-works__title:after {
  background-color: var(--bg-color);
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}
@media (max-width: 768px) {
  .how-it-works__title {
    margin-bottom: 40px;
  }
}
.how-it-works__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-column-gap: 20px;
  -moz-column-gap: 20px;
  column-gap: 20px;
}
@media (max-width: 768px) {
  .how-it-works__wrap {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    row-gap: 30px;
  }
}
.how-it-works__item {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 370px;
  flex: 0 1 370px;
  text-align: center;
  position: relative;
}
.how-it-works__item:first-child:after {
  content: "";
  position: absolute;
  right: -100px;
  z-index: 5;
  top: 20%;
  background-image: url("../img/arrow-how-it-works-up.svg");
  background-repeat: no-repeat;
  width: 70px;
  height: 18px;
}
@media (max-width: 1400px) {
  .how-it-works__item:first-child:after {
    right: -70px;
  }
}
@media (max-width: 1200px) {
  .how-it-works__item:first-child:after {
    right: -50px;
  }
}
@media (max-width: 768px) {
  .how-it-works__item:first-child:after {
    content: none;
  }
}
.how-it-works__item:nth-child(2):after {
  content: "";
  position: absolute;
  right: -100px;
  z-index: 5;
  top: 30%;
  background-image: url("../img/arrow-how-it-works-down.svg");
  background-repeat: no-repeat;
  width: 70px;
  height: 18px;
}
@media (max-width: 1400px) {
  .how-it-works__item:nth-child(2):after {
    right: -100px;
  }
}
@media (max-width: 1200px) {
  .how-it-works__item:nth-child(2):after {
    right: -50px;
  }
}
@media (max-width: 768px) {
  .how-it-works__item:nth-child(2):after {
    content: none;
  }
}
.how-it-works__img {
  width: 120px;
  height: 120px;
  background-color: var(--light-color);
  border-radius: 50%;
  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;
  margin: 0 auto;
  margin-bottom: 20px;
  overflow: hidden;
}
.how-it-works__img img {
  width: 60px;
  height: 60px;
}
@media (max-width: 768px) {
  .how-it-works__img {
    margin-bottom: 10px;
  }
}
@media (max-width: 480px) {
  .how-it-works__img {
    width: 90px;
    height: 90px;
  }
  .how-it-works__img img {
    width: 40px;
    height: 40px;
  }
}
.how-it-works__name {
  font-family: "Playfair";
  font-style: normal;
  font-weight: 700;
  font-size: 18px;
  line-height: 30px;
  color: var(--main-color);
  margin-bottom: 10px;
}
.how-it-works__text {
  font-family: "OpenSans";
  font-style: normal;
  font-weight: 400;
  font-size: 15px;
  line-height: 25px;
  color: var(--main-color);
}

.expert {
  background-color: var(--light-color);
  padding: 120px 0;
}
@media (max-width: 768px) {
  .expert {
    padding: 60px 0;
  }
}
@media (max-width: 480px) {
  .expert {
    padding: 30px 0;
  }
}
.expert__wrap {
  padding: 100px 80px 100px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 100px;
  -moz-column-gap: 100px;
  column-gap: 100px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #FBFAF6;
  position: relative;
}
.expert__wrap:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 80px;
  height: 100%;
  background-color: var(--light-color);
  z-index: 0;
}
@media (max-width: 620px) {
  .expert__wrap:before {
    content: none;
  }
}
@media (max-width: 992px) {
  .expert__wrap {
    -webkit-column-gap: 50px;
    -moz-column-gap: 50px;
    column-gap: 50px;
    padding: 50px 10px 50px 0;
  }
}
@media (max-width: 768px) {
  .expert__wrap {
    -webkit-column-gap: 20px;
    -moz-column-gap: 20px;
    column-gap: 20px;
  }
}
@media (max-width: 620px) {
  .expert__wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 30px;
  }
}
.expert__img {
  position: relative;
  z-index: 1;
  max-height: 460px;
  -webkit-box-flex: 0;
  -ms-flex: 0 1 360px;
  flex: 0 1 360px;
  overflow: hidden;
}
.expert__img:hover img {
  -webkit-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
}
.expert__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
@media (max-width: 768px) {
  .expert__img {
    -ms-flex-item-align: start;
    align-self: flex-start;
    -webkit-box-flex: 0;
    -ms-flex: 0 1 280px;
    flex: 0 1 280px;
  }
}
@media (max-width: 620px) {
  .expert__img {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
  }
}
.expert__content {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 calc(100% - 460px);
  flex: 0 1 calc(100% - 460px);
}
@media (max-width: 992px) {
  .expert__content {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 calc(100% - 410px);
    flex: 0 1 calc(100% - 410px);
  }
}
@media (max-width: 768px) {
  .expert__content {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 calc(100% - 290px);
    flex: 0 1 calc(100% - 290px);
  }
}
@media (max-width: 620px) {
  .expert__content {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
  }
}
.expert__title {
  font-family: "Praise";
  font-style: normal;
  font-weight: 400;
  font-size: 50px;
  line-height: 60px;
  color: var(--bg-color);
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .expert__title {
    font-size: 40px;
    line-height: 50px;
    margin-bottom: 10px;
  }
}
.expert__name {
  font-family: "Playfair";
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
  line-height: 30px;
  color: var(--main-color);
  margin-bottom: 10px;
}
@media (max-width: 768px) {
  .expert__name {
    font-size: 20px;
  }
}
.expert__info {
  font-family: "Playfair";
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 30px;
  color: var(--main-color);
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .expert__info {
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 20px;
  }
}
.expert__phone, .expert__email {
  font-family: "Playfair";
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 35px;
  color: var(--main-color);
}
@media (max-width: 768px) {
  .expert__phone, .expert__email {
    font-size: 16px;
    line-height: 26px;
  }
}
.expert__phone a, .expert__email a {
  color: var(--main-color);
  font-weight: 700;
}
.expert__phone a:hover, .expert__email a:hover {
  text-decoration: underline;
}
.expert__phone span, .expert__email span {
  margin-right: 40px;
}
@media (max-width: 768px) {
  .expert__phone span, .expert__email span {
    margin-right: 10px;
  }
}
.expert__email {
  margin-bottom: 40px;
}
@media (max-width: 325px) {
  .expert__email {
    font-size: 15px;
  }
}
.expert__social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 10px;
  -moz-column-gap: 10px;
  column-gap: 10px;
}
.expert__item {
  width: 30px;
  height: 30px;
}
.expert__link {
  width: 100%;
  height: 100%;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.expert__link:hover {
  -webkit-filter: brightness(55%);
  filter: brightness(55%);
}

.display {
  padding-top: 90px;
  padding-bottom: 110px;
  position: relative;
}
@media (max-width: 992px) {
  .display {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
@media (max-width: 576px) {
  .display {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
.display__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 100px;
  -moz-column-gap: 100px;
  column-gap: 100px;
}
@media (max-width: 1400px) {
  .display__wrap {
    -webkit-column-gap: 50px;
    -moz-column-gap: 50px;
    column-gap: 50px;
  }
}
@media (max-width: 992px) {
  .display__wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 50px;
  }
}
.display__content {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 50%;
  flex: 0 1 50%;
}
@media (max-width: 992px) {
  .display__content {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
  }
}
.display__title {
  font-family: "Playfair";
  font-style: normal;
  font-weight: 700;
  font-size: 44px;
  line-height: 60px;
  color: var(--bg-color);
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .display__title {
    font-size: 40px;
    line-height: 50px;
  }
}
@media (max-width: 576px) {
  .display__title {
    margin-bottom: 10px;
  }
}
@media (max-width: 480px) {
  .display__title {
    font-size: 32px;
    line-height: 37px;
  }
}
.display__text {
  font-family: "Playfair";
  font-style: normal;
  font-weight: 400;
  font-size: 24px;
  line-height: 40px;
  color: var(--main-color);
  margin-bottom: 40px;
}
@media (max-width: 1200px) {
  .display__text {
    font-size: 22px;
    line-height: 36px;
  }
}
@media (max-width: 992px) {
  .display__text {
    margin-bottom: 0;
  }
}
@media (max-width: 480px) {
  .display__text {
    font-size: 18px;
    line-height: 28px;
  }
}
.display__images {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 50%;
  flex: 0 1 50%;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 250px 260px;
  grid-template-columns: 250px 260px;
  -ms-grid-rows: (260px)[2];
  grid-template-rows: repeat(2, 260px);
  gap: 30px;
}
@media (max-width: 992px) {
  .display__images {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    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;
  }
}
@media (max-width: 576px) {
  .display__images {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 20px;
  }
}
.display__images img {
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  object-fit: cover !important;
}
@media (max-width: 992px) {
  .display__images img {
    width: 30%;
  }
}
@media (max-width: 576px) {
  .display__images img {
    width: auto;
  }
}
.display__images img:hover {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}
.display__images img:first-child {
  -ms-grid-row-align: center;
  align-self: center;
  -ms-grid-row: 1;
  -ms-grid-row-span: 2;
  grid-row: 1/3;
}
@media (max-width: 576px) {
  .display__images img:first-child {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }
}
.display__images img:nth-child(3) {
  -ms-grid-column: 2;
  -ms-grid-column-span: 1;
  grid-column: 2/3;
}
.display__images img:nth-child(2) {
  -webkit-box-ordinal-group: 0;
  -ms-flex-order: -1;
  order: -1;
  -ms-flex-item-align: end;
  -ms-grid-row-align: end;
  align-self: end;
}

.want-to-see {
  max-height: 600px;
  padding-left: calc((100% - var(--content-width)) / 2);
  overflow: hidden;
}
@media (max-width: 1200px) {
  .want-to-see {
    max-height: none;
  }
}
.want-to-see__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media (max-width: 1200px) {
  .want-to-see__wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 40px;
    padding: 40px 0;
  }
}
.want-to-see__content {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 675px;
  flex: 0 1 675px;
  padding-right: 100px;
}
@media (max-width: 1350px) {
  .want-to-see__content {
    padding-left: 15px;
    padding-right: 50px;
    -webkit-box-flex: 0;
    -ms-flex: 0 1 50%;
    flex: 0 1 50%;
  }
}
@media (max-width: 1200px) {
  .want-to-see__content {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 100%;
    flex: 0 1 100%;
    max-width: 90%;
    padding-right: 15px;
  }
}
@media (max-width: 480px) {
  .want-to-see__content {
    max-width: 100%;
  }
}
.want-to-see__title {
  font-family: "Kaushan";
  font-style: normal;
  font-weight: 400;
  font-size: 44px;
  line-height: 50px;
  color: var(--light-color);
  margin-bottom: 30px;
}
@media (max-width: 1400px) {
  .want-to-see__title {
    font-size: 36px;
    line-height: 44px;
    margin-bottom: 20px;
  }
}
@media (max-width: 1200px) {
  .want-to-see__title {
    text-align: center;
  }
}
@media (max-width: 992px) {
  .want-to-see__title {
    font-size: 32px;
    line-height: 37px;
  }
}
.want-to-see__text {
  font-family: "Playfair";
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 30px;
  color: var(--light-color);
}
@media (max-width: 1400px) {
  .want-to-see__text {
    font-size: 16px;
    line-height: 28px;
  }
}
@media (max-width: 1200px) {
  .want-to-see__text {
    text-align: center;
  }
}
.want-to-see__img {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 calc(100% - 675px);
  flex: 0 1 calc(100% - 675px);
}
.want-to-see__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
@media (max-width: 1350px) {
  .want-to-see__img {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 50%;
    flex: 0 1 50%;
  }
}
@media (max-width: 1200px) {
  .want-to-see__img {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 100%;
    flex: 0 1 100%;
    max-width: 60%;
  }
}
@media (max-width: 768px) {
  .want-to-see__img {
    max-width: 80%;
  }
}
@media (max-width: 480px) {
  .want-to-see__img {
    max-width: 100%;
  }
}

.real-exp {
  background-color: var(--light-color);
  padding: 120px 0;
}
@media (max-width: 992px) {
  .real-exp {
    padding: 60px 0;
  }
}
@media (max-width: 480px) {
  .real-exp {
    padding: 30px 0;
  }
}
.real-exp__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 110px;
  -moz-column-gap: 110px;
  column-gap: 110px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media (max-width: 1200px) {
  .real-exp__wrap {
    -webkit-column-gap: 50px;
    -moz-column-gap: 50px;
    column-gap: 50px;
  }
}
@media (max-width: 992px) {
  .real-exp__wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    row-gap: 40px;
  }
}
.real-exp__img {
  max-height: 460px;
  -webkit-box-flex: 0;
  -ms-flex: 0 1 350px;
  flex: 0 1 350px;
}
@media (max-width: 992px) {
  .real-exp__img {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
  }
}
.real-exp__content {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 calc(100% - 460px);
  flex: 0 1 calc(100% - 460px);
}
@media (max-width: 992px) {
  .real-exp__content {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
  }
}
.real-exp__title {
  font-family: "Playfair";
  font-style: normal;
  font-weight: 700;
  font-size: 30px;
  line-height: 50px;
  color: var(--main-color);
  margin-bottom: 24px;
}
@media (max-width: 480px) {
  .real-exp__title {
    font-size: 26px;
    line-height: 40px;
    margin-bottom: 15px;
  }
}
.real-exp__text {
  font-family: "OpenSans";
  font-style: normal;
  font-weight: 400;
  font-size: 15px;
  line-height: 25px;
  color: var(--main-color);
  margin-bottom: 30px;
}
.real-exp__item {
  font-family: "OpenSans";
  font-style: normal;
  font-weight: 600;
  font-size: 15px;
  line-height: 35px;
  color: var(--main-color);
  padding-left: 40px;
  position: relative;
}
.real-exp__item::after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  background-image: url("../img/check.png");
  width: 20px;
  height: 20px;
}
@media (max-width: 480px) {
  .real-exp__item::after {
    top: 15px;
    width: 15px;
    height: 15px;
    background-size: 100% 100%;
  }
}
@media (max-width: 1200px) {
  .real-exp__item {
    line-height: 22px;
    margin-bottom: 7px;
  }
}
@media (max-width: 480px) {
  .real-exp__item {
    padding-left: 25px;
  }
}

.padding-how-it-works {
  padding-top: 120px;
  background-color: #FBFAF6;
}
.padding-how-it-works .how-it-works {
  padding-top: 0;
}
@media (max-width: 992px) {
  .padding-how-it-works {
    padding-top: 60px;
  }
}

.banner-slider {
  margin: 0 auto;
}
@media (max-width: 992px) {
  .banner-slider {
    min-height: 400px;
  }
}
.banner-slider__slider {
  max-height: 800px;
}
@media (max-width: 992px) {
  .banner-slider__slider {
    height: 100%;
  }
}
.banner-slider__img {
  position: relative;
  max-height: 800px;
  overflow: hidden;
}
.banner-slider__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
@media (max-width: 992px) {
  .banner-slider__img {
    min-height: 400px;
  }
  .banner-slider__img img {
    min-height: 400px;
    width: 100% !important;
    height: 100% !important;
    -o-object-fit: cover !important;
    object-fit: cover !important;
  }
}
.banner-slider__wrap {
  width: 100%;
  max-width: 1350px;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  bottom: 60px;
}
@media (max-width: 1400px) {
  .banner-slider__wrap {
    bottom: 20px;
  }
}
.banner-slider__info {
  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;
}
@media (max-width: 1350px) {
  .banner-slider__info {
    padding: 0 15px;
  }
}
@media (max-width: 992px) {
  .banner-slider__info {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 10px;
  }
}
.banner-slider__title {
  font-family: "Kaushan";
  font-style: normal;
  font-weight: 400;
  font-size: 50px;
  line-height: 70px;
  color: var(--light-color);
}
@media (max-width: 768px) {
  .banner-slider__title {
    font-size: 36px;
    line-height: 36px;
    text-align: center;
  }
}
.banner-slider__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 768px) {
  .banner-slider__items {
    -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;
  }
}
.banner-slider__item {
  height: 24px;
}
.banner-slider__item:not(:last-child) {
  margin-right: 40px;
}
@media (max-width: 1400px) {
  .banner-slider__item:not(:last-child) {
    margin-right: 20px;
  }
}
@media (max-width: 768px) {
  .banner-slider__item:not(:last-child) {
    margin-right: 30px;
  }
}
@media (max-width: 768px) and (max-width: 576px) {
  .banner-slider__item:not(:last-child) {
    margin-right: 0;
  }
}
.banner-slider__item > .banner-slider__link {
  background-position: left center;
  background-size: 24px 24px;
  background-repeat: no-repeat;
}
@media (max-width: 1400px) {
  .banner-slider__item > .banner-slider__link {
    background-size: 18px 18px;
  }
}
@media (max-width: 768px) {
  .banner-slider__item > .banner-slider__link {
    background-image: none !important;
  }
}
.banner-slider__item:first-child .banner-slider__link {
  background-image: url("../img/floorplane-icon-1.svg");
}
.banner-slider__item:nth-child(2) .banner-slider__link {
  background-image: url("../img/floorplane-icon-2.svg");
}
.banner-slider__item:nth-child(3) .banner-slider__link {
  background-image: url("../img/floorplane-icon-3.svg");
}
.banner-slider__link {
  padding-left: 39px;
  font-family: "Playfair";
  font-style: normal;
  font-weight: 700;
  font-size: 18px;
  line-height: 24px;
  text-transform: uppercase;
  color: var(--light-color);
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
@media (max-width: 1400px) {
  .banner-slider__link {
    font-size: 14px;
    padding-top: 5px;
    padding-bottom: 5px;
    padding-left: 28px;
  }
}
@media (max-width: 576px) {
  .banner-slider__link {
    font-size: 14px;
    padding-left: 0;
  }
}
@media (min-width: 993px) {
  .banner-slider__link:hover {
    color: var(--accent-color);
  }
}
@media (max-width: 992px) {
  .banner-slider .swiper {
    min-height: 400px !important;
  }
}
.banner-slider .swiper-wrapper {
  min-height: 400px !important;
  max-height: 800px !important;
}
.banner-slider .swiper-slide {
  min-height: 400px !important;
  max-height: 800px !important;
}
.banner-slider .swiper-button-next {
  display: none;
}
.banner-slider .swiper-button-prev {
  display: none;
}
.banner-slider .banner-button-prev {
  position: absolute;
  top: 50%;
  left: 100px;
  width: 40px;
  height: 40px;
  z-index: 5;
}
@media (max-width: 1600px) {
  .banner-slider .banner-button-prev {
    left: 30px;
  }
}
@media (max-width: 576px) {
  .banner-slider .banner-button-prev {
    left: 5px;
  }
}
.banner-slider .banner-button-next {
  position: absolute;
  top: 50%;
  right: 100px;
  width: 40px;
  height: 40px;
  z-index: 5;
}
@media (max-width: 1600px) {
  .banner-slider .banner-button-next {
    right: 30px;
  }
}
@media (max-width: 576px) {
  .banner-slider .banner-button-next {
    right: 5px;
  }
}
.banner-slider .swiper-button-disabled {
  opacity: 0.4;
}

.information {
  padding-top: 80px;
  padding-bottom: 120px;
}
@media (max-width: 992px) {
  .information {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
@media (max-width: 480px) {
  .information {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
.information__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 30px;
  -moz-column-gap: 30px;
  column-gap: 30px;
}
@media (max-width: 992px) {
  .information__wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 40px;
  }
}
.information__content {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 890px;
  flex: 0 1 890px;
}
@media (max-width: 1400px) {
  .information__content {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 70%;
    flex: 0 1 70%;
  }
}
@media (max-width: 1200px) {
  .information__content {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 60%;
    flex: 0 1 60%;
  }
}
.information__title {
  font-family: "Playfair";
  font-style: normal;
  font-weight: 700;
  font-size: 30px;
  line-height: 50px;
  color: var(--main-color);
  margin-bottom: 20px;
}
@media (max-width: 1200px) {
  .information__title {
    font-size: 24px;
    line-height: 30px;
  }
}
.information__location {
  padding-left: 30px;
  font-family: "OpenSans";
  font-style: normal;
  font-weight: 600;
  font-size: 15px;
  line-height: 25px;
  color: var(--bg-color);
  background-image: url("../img/pin.svg");
  background-position: left center;
  background-repeat: no-repeat;
  background-size: 20px 20px;
  margin-bottom: 20px;
}
.information__location_area {
  background-image: url("../img/area.svg");
}
.information__text {
  font-family: "OpenSans";
  font-style: normal;
  font-weight: 400;
  font-size: 15px;
  line-height: 25px;
  color: var(--main-color);
}
.information p.information__text {
  margin-bottom: 40px;
}
.information div.information__text {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 calc(100% - 345px);
  flex: 0 1 calc(100% - 345px);
}
.information__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 30px;
  -moz-column-gap: 30px;
  column-gap: 30px;
  margin-bottom: 40px;
}
.information__box p:first-child {
  margin-bottom: 20px;
}
@media (max-width: 1200px) {
  .information__box {
    display: block;
  }
}
@media (max-width: 992px) {
  .information__box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media (max-width: 850px) {
  .information__box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.information__image {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 315px;
  flex: 0 1 315px;
}
@media (max-width: 1200px) {
  .information__image {
    float: left;
    margin-right: 20px;
    margin-bottom: 20px;
  }
}
@media (max-width: 850px) {
  .information__image {
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
    margin-right: 0;
    margin-bottom: 25px;
  }
}
.information__banner {
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 40px;
}
@media (max-width: 475px) {
  .information__banner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.information__img {
  overflow: hidden;
  -webkit-box-flex: 0;
  -ms-flex: 0 1 50%;
  flex: 0 1 50%;
  -webkit-clip-path: polygon(0 0, 100% 0%, 85% 100%, 0% 100%);
  clip-path: polygon(0 0, 100% 0%, 85% 100%, 0% 100%);
}
@media (max-width: 475px) {
  .information__img {
    -webkit-clip-path: polygon(0 0, 100% 0%, 100% 100%, 0% 100%);
    clip-path: polygon(0 0, 100% 0%, 100% 100%, 0% 100%);
  }
}
.information__names {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 50%;
  flex: 0 1 50%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
  text-align: center;
}
@media (max-width: 475px) {
  .information__names {
    padding-top: 20px;
    padding-bottom: 20px;
  }
}
.information__bonus {
  font-family: "Playfair";
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  line-height: 30px;
  color: var(--light-color);
}
@media (max-width: 1200px) {
  .information__bonus {
    font-size: 16px;
    line-height: 26px;
  }
}
@media (max-width: 992px) {
  .information__bonus {
    font-size: 20px;
    line-height: 30px;
  }
}
@media (max-width: 768px) {
  .information__bonus {
    font-size: 16px;
    line-height: 26px;
  }
}
.information__name {
  font-family: "Praise";
  font-style: normal;
  font-weight: 400;
  font-size: 48px;
  line-height: 60px;
  color: var(--light-color);
  margin-bottom: 15px;
}
@media (max-width: 1200px) {
  .information__name {
    font-size: 32px;
    line-height: 40px;
    margin-bottom: 5px;
  }
}
@media (max-width: 992px) {
  .information__name {
    font-size: 48px;
    line-height: 60px;
  }
}
@media (max-width: 768px) {
  .information__name {
    font-size: 32px;
    line-height: 40px;
    margin-bottom: 0px;
  }
}
.information__icons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-column-gap: 40px;
  -moz-column-gap: 40px;
  column-gap: 40px;
}
@media (max-width: 576px) {
  .information__icons {
    -webkit-column-gap: 20px;
    -moz-column-gap: 20px;
    column-gap: 20px;
  }
}
.information__icon {
  width: 50px;
  height: 50px;
  opacity: 0.5;
}
.information__icon img {
  width: 100%;
  height: 100%;
}
@media (max-width: 1200px) {
  .information__icon {
    width: 35px;
    height: 35px;
  }
}
@media (max-width: 576px) {
  .information__icon {
    width: 25px;
    height: 25px;
  }
}
.information__quote {
  padding: 40px;
  background-color: #FBFAF6;
  font-family: "Playfair";
  font-style: normal;
  font-weight: 700;
  font-size: 18px;
  line-height: 30px;
  color: var(--bg-color);
}
@media (max-width: 480px) {
  .information__quote {
    padding: 20px;
    font-size: 16px;
    line-height: 24px;
  }
}
.information__form {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 calc(100% - 920px);
  flex: 0 1 calc(100% - 920px);
  z-index: 1;
}
@media (max-width: 1400px) {
  .information__form {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 30%;
    flex: 0 1 30%;
  }
}
@media (max-width: 1200px) {
  .information__form {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 40%;
    flex: 0 1 40%;
  }
}
@media (max-width: 992px) {
  .information__form {
    width: 60%;
    margin: 0 auto;
  }
}
@media (max-width: 768px) {
  .information__form {
    width: 70%;
  }
}
@media (max-width: 576px) {
  .information__form {
    width: 100%;
  }
}
.information__subtitle {
  font-family: "Playfair";
  font-style: normal;
  font-weight: 700;
  font-size: 18px;
  line-height: 30px;
  text-align: center;
  text-transform: uppercase;
  color: var(--bg-color);
  background-color: var(--accent-color);
  padding: 15px 0;
  width: 100%;
  margin-bottom: 30px;
}
@media (max-width: 480px) {
  .information__subtitle {
    font-size: 16px;
    line-height: 24px;
  }
}
.information .form-price {
  background-color: var(--bg-color);
  padding: 40px;
}
@media (max-width: 480px) {
  .information .form-price {
    padding: 30px 20px;
  }
}
.information .form-price__title {
  font-family: "Kaushan";
  font-style: normal;
  font-weight: 400;
  font-size: 36px;
  line-height: 40px;
  color: var(--light-color);
  margin-bottom: 30px;
}
.information .form-price form input, .information .form-price form textarea, .information .form-price form select {
  display: block;
  width: 100%;
  border: none;
  background-color: var(--bg-color);
  outline: none;
  border-bottom: 1px solid rgba(210, 215, 226, 0.3);
  margin-bottom: 10px;
  font-family: "OpenSans";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: var(--light-color);
}
.information .form-price form input::-webkit-input-placeholder, .information .form-price form textarea::-webkit-input-placeholder, .information .form-price form select::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.information .form-price form input::-moz-placeholder, .information .form-price form textarea::-moz-placeholder, .information .form-price form select::-moz-placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.information .form-price form input:-ms-input-placeholder, .information .form-price form textarea:-ms-input-placeholder, .information .form-price form select:-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.information .form-price form input::-ms-input-placeholder, .information .form-price form textarea::-ms-input-placeholder, .information .form-price form select::-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.information .form-price form input::placeholder, .information .form-price form textarea::placeholder, .information .form-price form select::placeholder {
  color: rgba(255, 255, 255, 0.5);
}
@media (max-width: 480px) {
  .information .form-price form input, .information .form-price form textarea, .information .form-price form select {
    margin-bottom: 20px;
  }
}
.information .form-price form input {
  padding: 9px 10px 9px 0;
  border-radius: 0 !important;
}
.information .form-price form select {
  padding: 9px 0;
  border-radius: 0 !important;
  background-color: transparent;
}
.information .form-price form select option {
  background-color: rgba(0, 14, 50, 0.4);
}
.information .form-price form textarea {
  height: 80px;
  resize: vertical;
  border-radius: 0 !important;
}
.information .form-price form input[type=submit] {
  font-family: "Playfair";
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 30px;
  text-align: center;
  text-transform: uppercase;
  color: var(--bg-color);
  border: 2px solid #FBFAF6;
  background-color: #FBFAF6;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  margin-bottom: 0;
  border-radius: 0 !important;
}
.information .form-price form input[type=submit]:hover {
  background-color: var(--bg-color);
  color: var(--light-color);
}
@media (max-width: 992px) {
  .information .form-price form input[type=submit] {
    max-width: -webkit-max-content;
    max-width: -moz-max-content;
    max-width: max-content;
    padding-right: 60px;
    padding-left: 60px;
    margin: 0 auto;
  }
}

.information__create {
  padding-bottom: 20px;
}
.information__create .information__form {
  -webkit-transform: translateY(-240px);
  -ms-transform: translateY(-240px);
  transform: translateY(-240px);
}
@media (max-width: 1200px) {
  .information__create .information__form {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}
@media (max-width: 768px) {
  .information__create .information__text:not(:last-child) {
    margin-bottom: 25px !important;
  }
  .information__create .information__text:last-child {
    margin-bottom: 0;
  }
}

.specifications {
  padding-top: 80px;
  padding-bottom: 120px;
}
@media (max-width: 768px) {
  .specifications {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
@media (max-width: 480px) {
  .specifications {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
.specifications__title {
  margin-bottom: 40px;
}
.specifications__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 30px;
  -moz-column-gap: 30px;
  column-gap: 30px;
  row-gap: 30px;
}
@media (max-width: 992px) {
  .specifications__wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
}
.specifications__info {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 430px;
  flex: 0 1 430px;
  background-color: var(--light-color);
  padding: 40px;
  font-family: "OpenSans";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 25px;
  color: var(--main-color);
}
@media (max-width: 1200px) {
  .specifications__info {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 30%;
    flex: 0 1 30%;
    padding: 30px 20px;
  }
}
@media (max-width: 480px) {
  .specifications__info {
    padding: 20px 10px;
  }
}
.specifications__text {
  margin-bottom: 20px;
}
.specifications__name {
  font-family: "Playfair";
  font-style: normal;
  font-weight: 700;
  font-size: 18px;
  line-height: 30px;
  color: var(--main-color);
  margin-bottom: 10px;
}
.specifications__list {
  margin-bottom: 30px;
}
.specifications__item {
  padding-left: 26px;
  background-image: url("../img/check.png");
  background-position: left 5px;
  background-repeat: no-repeat;
  background-size: 16px 16px;
  margin-bottom: 8px;
}
.specifications__btn {
  font-size: 16px;
  padding: 10px 0;
  display: block;
  width: 100%;
}
@media (max-width: 992px) {
  .specifications__btn {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    padding-right: 60px;
    padding-left: 60px;
  }
}
@media (max-width: 480px) {
  .specifications__btn {
    width: 100%;
  }
}
.specifications__scheme {
  position: relative;
  -webkit-box-flex: 0;
  -ms-flex: 0 1 calc(100% - 460px);
  flex: 0 1 calc(100% - 460px);
  background-color: var(--light-color);
  padding: 40px;
  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-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
@media (max-width: 1200px) {
  .specifications__scheme {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 70%;
    flex: 0 1 70%;
    padding: 30px 20px;
  }
}
@media (max-width: 992px) {
  .specifications__scheme {
    row-gap: 50px;
  }
}
@media (max-width: 480px) {
  .specifications__scheme {
    padding: 20px 10px;
  }
}
.specifications__button {
  position: absolute;
  right: 40px;
  bottom: 40px;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.specifications__button:active {
  -webkit-transform: translate(1px, 1px);
  -ms-transform: translate(1px, 1px);
  transform: translate(1px, 1px);
}
@media (max-width: 992px) {
  .specifications__button {
    right: 20px;
    bottom: 30px;
  }
}
.specifications__informations {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 30px;
  -moz-column-gap: 30px;
  column-gap: 30px;
}
@media (max-width: 1300px) {
  .specifications__informations {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (180px)[3];
    grid-template-columns: repeat(3, 180px);
    -ms-grid-rows: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    row-gap: 10px;
  }
}
@media (max-width: 992px) {
  .specifications__informations {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-column-gap: 20px;
    -moz-column-gap: 20px;
    column-gap: 20px;
  }
}
@media (max-width: 600px) {
  .specifications__informations {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (180px)[2];
    grid-template-columns: repeat(2, 180px);
    -ms-grid-rows: 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr 1fr;
    row-gap: 5px;
  }
}
@media (max-width: 480px) {
  .specifications__informations {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
    -ms-grid-rows: auto;
    grid-template-rows: auto;
    row-gap: 12px;
    -webkit-column-gap: 10px;
    -moz-column-gap: 10px;
    column-gap: 10px;
  }
}
.specifications__information {
  font-family: "OpenSans";
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 20px;
  color: var(--bg-color);
  padding-left: 30px;
  background-size: 20px 20px;
  background-position: left center;
  background-repeat: no-repeat;
}
.specifications__information:first-child {
  background-image: url("../img/spec-bedroom.svg");
}
.specifications__information:nth-child(2) {
  background-image: url("../img/spec-bath.svg");
}
.specifications__information:nth-child(3) {
  background-image: url("../img/spec-car.svg");
}
.specifications__information:nth-child(4) {
  background-image: url("../img/spec-area.svg");
}
.specifications__information:last-child {
  background-image: url("../img/spec-width.svg");
}
@media (max-width: 1300px) {
  .specifications__information {
    font-size: 12px;
    background-size: 14px 14px;
    padding-left: 22px;
  }
}
@media (max-width: 480px) {
  .specifications__information {
    line-height: 12px;
  }
}
.specifications__scheme-inner {
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
}
.specifications__scheme-inner img {
  cursor: pointer;
}
.specifications__links {
  font-family: "OpenSans";
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 20px;
}
.specifications__floorplane {
  color: var(--bg-color);
  text-decoration: underline;
  margin-right: 30px;
  padding-left: 30px;
  display: inline-block;
  background-size: 20px 20px;
  background-position: left center;
  background-repeat: no-repeat;
  background-image: url("../img/dounload-plan.svg");
}
.specifications__floorplane:hover {
  text-decoration: none;
}
@media (max-width: 1300px) {
  .specifications__floorplane {
    font-size: 12px;
    background-size: 14px 14px;
    padding-left: 22px;
  }
}
@media (max-width: 576px) {
  .specifications__floorplane {
    display: block;
    margin-bottom: 5px;
  }
}
.specifications__specification {
  color: var(--bg-color);
  text-decoration: underline;
  padding-left: 30px;
  display: inline-block;
  background-size: 20px 20px;
  background-position: left center;
  background-repeat: no-repeat;
  background-image: url("../img/dounload-spec.svg");
}
.specifications__specification:hover {
  text-decoration: none;
}
@media (max-width: 1300px) {
  .specifications__specification {
    font-size: 12px;
    background-size: 14px 14px;
    padding-left: 22px;
  }
}

.floorplane-design .design {
  background-image: none !important;
  padding-top: 0;
}

.package-design .design {
  background-image: none !important;
  padding-top: 90px;
}
@media (max-width: 992px) {
  .package-design .design {
    padding-top: 60px;
  }
}
@media (max-width: 480px) {
  .package-design .design {
    padding-top: 30px;
  }
}

.floorplane-how-it-works .how-it-works {
  padding-top: 120px;
}
@media (max-width: 992px) {
  .floorplane-how-it-works .how-it-works {
    padding-top: 60px;
  }
}

.dream-home {
  max-height: 600px;
  max-width: 1920px;
  margin: 0 auto;
}
@media (max-width: 992px) {
  .dream-home {
    max-height: none;
  }
}
.dream-home__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  overflow: hidden;
}
@media (max-width: 1400px) {
  .dream-home__wrap {
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
  }
}
@media (max-width: 992px) {
  .dream-home__wrap {
    -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;
  }
}
.dream-home__img {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 50%;
  flex: 0 1 50%;
}
.dream-home__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
@media (max-width: 992px) {
  .dream-home__img {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 100%;
    flex: 0 1 100%;
  }
  .dream-home__img img {
    width: 80%;
  }
}
@media (max-width: 576px) {
  .dream-home__img img {
    width: 100%;
  }
}
.dream-home__content {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 50%;
  flex: 0 1 50%;
  max-width: 660px;
}
@media (max-width: 1400px) {
  .dream-home__content {
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
    padding: 40px 15px 40px 40px;
  }
}
@media (max-width: 992px) {
  .dream-home__content {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 100%;
    flex: 0 1 100%;
    max-width: 100%;
  }
}
@media (max-width: 576px) {
  .dream-home__content {
    padding: 30px 15px 30px 20px;
  }
}
.dream-home__title {
  font-family: "Kaushan";
  font-style: normal;
  font-weight: 400;
  font-size: 50px;
  line-height: 55px;
  color: var(--bg-color);
  max-width: 500px;
  margin-bottom: 30px;
}
@media (max-width: 1600px) {
  .dream-home__title {
    font-size: 40px;
    line-height: 40px;
  }
}
@media (max-width: 1400px) {
  .dream-home__title {
    margin-bottom: 15px;
  }
}
@media (max-width: 480px) {
  .dream-home__title {
    font-size: 32px;
    line-height: 37px;
  }
}
.dream-home__text {
  font-family: "OpenSans";
  font-style: normal;
  font-weight: 400;
  font-size: 15px;
  line-height: 25px;
  color: var(--main-color);
  margin-bottom: 35px;
}
@media (max-width: 1600px) {
  .dream-home__text {
    margin-bottom: 20px;
  }
}
.dream-home__btn {
  font-size: 16px;
  color: var(--bg-color);
  padding: 10px 60px;
}
@media (max-width: 480px) {
  .dream-home__btn {
    margin-top: 0px;
    padding: 10px 0;
    width: 100%;
    font-size: 14px;
    text-align: center;
  }
}

.why-house {
  max-height: 600px;
  padding-left: calc((100% - var(--content-width)) / 2);
}
@media (max-width: 1200px) {
  .why-house {
    max-height: none;
  }
}
.why-house__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media (max-width: 1600px) {
  .why-house__wrap {
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
  }
}
@media (max-width: 1200px) {
  .why-house__wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 40px;
    padding: 40px 0;
  }
}
@media (max-width: 1200px) {
  .why-house__wrap {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}
.why-house__content {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 675px;
  flex: 0 1 675px;
  padding-right: 100px;
}
@media (max-width: 1600px) {
  .why-house__content {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
@media (max-width: 1350px) {
  .why-house__content {
    padding-left: 15px;
    padding-right: 50px;
    -webkit-box-flex: 0;
    -ms-flex: 0 1 50%;
    flex: 0 1 50%;
  }
}
@media (max-width: 1200px) {
  .why-house__content {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 100%;
    flex: 0 1 100%;
    max-width: 90%;
    padding-right: 15px;
  }
}
@media (max-width: 480px) {
  .why-house__content {
    max-width: 100%;
  }
}
.why-house__title {
  font-family: "Kaushan";
  font-style: normal;
  font-weight: 400;
  font-size: 44px;
  line-height: 50px;
  color: var(--light-color);
  margin-bottom: 30px;
}
@media (max-width: 1400px) {
  .why-house__title {
    font-size: 36px;
    line-height: 44px;
    margin-bottom: 20px;
  }
}
@media (max-width: 1200px) {
  .why-house__title {
    text-align: center;
  }
}
@media (max-width: 992px) {
  .why-house__title {
    font-size: 32px;
    line-height: 37px;
  }
}
.why-house__text {
  font-family: "Playfair";
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 30px;
  color: var(--light-color);
  margin-bottom: 30px;
}
@media (max-width: 1400px) {
  .why-house__text {
    font-size: 16px;
    line-height: 28px;
  }
}
@media (max-width: 1200px) {
  .why-house__text {
    text-align: center;
  }
}
.why-house__img {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 calc(100% - 675px);
  flex: 0 1 calc(100% - 675px);
}
.why-house__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
@media (max-width: 1350px) {
  .why-house__img {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 50%;
    flex: 0 1 50%;
  }
}
@media (max-width: 1200px) {
  .why-house__img {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 100%;
    flex: 0 1 100%;
    max-width: 60%;
  }
}
@media (max-width: 768px) {
  .why-house__img {
    max-width: 80%;
  }
}
@media (max-width: 480px) {
  .why-house__img {
    max-width: 100%;
  }
}
.why-house__btn {
  font-size: 18px;
  padding: 15px 45px;
}
@media (max-width: 1200px) {
  .why-house__btn {
    display: block;
    margin: 0 auto;
    max-width: -webkit-fit-content;
    max-width: -moz-fit-content;
    max-width: fit-content;
  }
}
@media (max-width: 480px) {
  .why-house__btn {
    padding: 12px 0;
    max-width: none;
    width: 100%;
    text-align: center;
  }
}

.contacts {
  background-color: var(--light-color);
  padding-top: 80px;
  padding-bottom: 150px;
}
@media (max-width: 992px) {
  .contacts {
    padding-top: 60px;
    padding-bottom: 90px;
  }
}
@media (max-width: 576px) {
  .contacts {
    padding-top: 50px;
    padding-bottom: 70px;
  }
}
.contacts__map {
  height: 590px;
}
@media (max-width: 992px) {
  .contacts__map {
    height: 500px;
  }
}
@media (max-width: 576px) {
  .contacts__map {
    height: 400px;
  }
}
.contacts__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 133px;
  -moz-column-gap: 133px;
  column-gap: 133px;
}
@media (max-width: 1400px) {
  .contacts__wrap {
    -webkit-column-gap: 40px;
    -moz-column-gap: 40px;
    column-gap: 40px;
  }
}
@media (max-width: 768px) {
  .contacts__wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 40px;
  }
}
.contacts__form {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 787px;
  flex: 0 1 787px;
}
@media (max-width: 1400px) {
  .contacts__form {
    -ms-flex-preferred-size: 65%;
    flex-basis: 65%;
  }
}
@media (max-width: 992px) {
  .contacts__form {
    -ms-flex-preferred-size: 60%;
    flex-basis: 60%;
  }
}
@media (max-width: 768px) {
  .contacts__form {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
  }
}
.contacts__title {
  margin-bottom: 20px;
}
.contacts__subtitle {
  font-family: "OpenSans";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 30px;
  color: var(--main-color);
  margin-bottom: 30px;
}
.contacts__input-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-column-gap: 30px;
  -moz-column-gap: 30px;
  column-gap: 30px;
}
.contacts__input-wrap label {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 50%;
  flex: 0 1 50%;
}
@media (max-width: 576px) {
  .contacts__input-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .contacts__input-wrap label {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
  }
}
.contacts__head-office {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 calc(100% - 920px);
  flex: 0 1 calc(100% - 920px);
  padding: 40px;
  background-color: var(--bg-color);
  color: var(--light-color);
}
@media (max-width: 1400px) {
  .contacts__head-office {
    -ms-flex-preferred-size: 35%;
    flex-basis: 35%;
  }
}
@media (max-width: 992px) {
  .contacts__head-office {
    padding: 30px 20px;
    -ms-flex-preferred-size: 40%;
    flex-basis: 40%;
  }
}
@media (max-width: 768px) {
  .contacts__head-office {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
  }
}
.contacts__head-office a {
  color: var(--light-color);
  display: inline-block;
}
.contacts__head-office a:hover {
  text-decoration: underline;
}
.contacts__head-office address {
  font-family: "Playfair";
  font-style: normal;
  font-weight: 700;
  font-size: 18px;
  line-height: 30px;
  margin-bottom: 30px;
}
.contacts__head-office-title {
  font-family: "Kaushan";
  font-style: normal;
  font-weight: 400;
  font-size: 30px;
  line-height: 40px;
  margin-bottom: 30px;
}
.contacts__head-office-label {
  font-family: "Playfair";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  opacity: 0.5;
  margin-bottom: 5px;
  display: block;
}
.contacts__number {
  font-family: "Playfair";
  font-style: normal;
  font-weight: 700;
  font-size: 18px;
  line-height: 30px;
  margin-bottom: 30px;
}
.contacts__email {
  font-family: "Playfair";
  font-style: normal;
  font-weight: 700;
  font-size: 18px;
  line-height: 30px;
  margin-bottom: 30px;
}
.contacts__social-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 10px;
  -moz-column-gap: 10px;
  column-gap: 10px;
}
.contacts__social-item {
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
@media (min-width: 993px) {
  .contacts__social-item:hover {
    -webkit-transform: translateY(-5px);
    -ms-transform: translateY(-5px);
    transform: translateY(-5px);
    -webkit-filter: brightness(80%);
    filter: brightness(80%);
  }
}
.contacts .contacts-form label {
  font-family: "OpenSans";
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
  color: var(--main-color);
  display: block;
}
.contacts .contacts-form label > span {
  color: #E30000;
}
.contacts .contacts-form input {
  border-radius: 0 !important;
}
.contacts .contacts-form input:not([type=submit]), .contacts .contacts-form select, .contacts .contacts-form textarea {
  display: block;
  background-color: none;
  border: none;
  outline: none;
  width: 100%;
  border-bottom: 1px solid #D2D7E2;
  font-family: "OpenSans";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: var(--main-color);
}
.contacts .contacts-form input, .contacts .contacts-form select {
  padding: 9px 15px 9px 0;
  margin-bottom: 10px;
}
.contacts .contacts-form select {
  background-color: transparent;
  border-radius: 0 !important;
}
.contacts .contacts-form input::-webkit-input-placeholder, .contacts .contacts-form textarea::-webkit-input-placeholder {
  opacity: 0.5;
}
.contacts .contacts-form input::-moz-placeholder, .contacts .contacts-form textarea::-moz-placeholder {
  opacity: 0.5;
}
.contacts .contacts-form input:-ms-input-placeholder, .contacts .contacts-form textarea:-ms-input-placeholder {
  opacity: 0.5;
}
.contacts .contacts-form input::-ms-input-placeholder, .contacts .contacts-form textarea::-ms-input-placeholder {
  opacity: 0.5;
}
.contacts .contacts-form input::placeholder, .contacts .contacts-form textarea::placeholder {
  opacity: 0.5;
}
.contacts .contacts-form input[type=submit] {
  margin-bottom: 0;
  padding: 10px 90px;
  font-family: "Playfair";
  font-style: normal;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
  color: #FFFFFF;
  border: 2px solid var(--bg-color);
  background-color: var(--bg-color);
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  cursor: pointer;
}
.contacts .contacts-form input[type=submit]:hover {
  color: var(--bg-color);
  background-color: transparent;
}
@media (max-width: 480px) {
  .contacts .contacts-form input[type=submit] {
    width: 100%;
  }
}
.contacts .contacts-form textarea {
  height: 100px;
  padding: 9px 15px 9px 0;
  resize: vertical;
  width: 100%;
  margin-right: 0;
  margin-bottom: 20px;
}

.about-block {
  padding-top: 120px;
  padding-bottom: 120px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 992px) {
  .about-block {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
@media (max-width: 480px) {
  .about-block {
    padding-top: 40px;
  }
}
.about-block:last-child .about-block__title {
  font-size: 36px;
  line-height: 50px;
}
@media (max-width: 7680px) {
  .about-block:last-child .about-block__title {
    font-size: 30px;
    line-height: 40px;
  }
}
@media (max-width: 480px) {
  .about-block:last-child .about-block__title {
    font-size: 26px;
    line-height: 38px;
  }
}
.about-block:last-child .about-block__img {
  -webkit-box-ordinal-group: 0;
  -ms-flex-order: -1;
  order: -1;
}
@media (max-width: 992px) {
  .about-block:last-child .about-block__img {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
}
.about-block:last-child .about-block__img {
  padding-left: 30px;
}
@media (max-width: 992px) {
  .about-block:last-child .about-block__img {
    padding: 0;
  }
}
.about-block:last-child .about-block__img:after {
  right: auto;
  left: 0px;
  top: 0;
}
.about-block:last-child .about-block__img:before {
  left: 0px;
}
.about-block__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 80px;
  -moz-column-gap: 80px;
  column-gap: 80px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
@media (max-width: 1200px) {
  .about-block__wrap {
    -webkit-column-gap: 40px;
    -moz-column-gap: 40px;
    column-gap: 40px;
  }
}
@media (max-width: 992px) {
  .about-block__wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 40px;
  }
}
.about-block__content {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 calc(100% - 460px);
  flex: 0 1 calc(100% - 460px);
}
@media (max-width: 1200px) {
  .about-block__content {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 calc(100% - 420px);
    flex: 0 1 calc(100% - 420px);
  }
}
@media (max-width: 992px) {
  .about-block__content {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 100%;
    flex: 0 1 100%;
  }
}
.about-block__title {
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .about-block__title {
    margin-bottom: 15px;
  }
}
.about-block__text {
  font-family: "Playfair";
  font-style: normal;
  font-weight: 400;
  font-size: 24px;
  line-height: 40px;
  color: var(--main-color);
}
@media (max-width: 1200px) {
  .about-block__text {
    font-size: 22px;
    line-height: 36px;
  }
}
@media (max-width: 480px) {
  .about-block__text {
    font-size: 18px;
    line-height: 30px;
  }
}
.about-block__img {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 380px;
  flex: 0 1 380px;
  position: relative;
  overflow: hidden;
  padding-top: 30px;
}
@media (max-width: 992px) {
  .about-block__img {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 100%;
    flex: 0 1 100%;
    overflow: visible;
    border: 15px solid var(--bg-color);
    padding: 0;
    display: inline-block;
    max-width: -webkit-max-content;
    max-width: -moz-max-content;
    max-width: max-content;
    margin: 0 auto;
  }
}
.about-block__img:after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 30px;
  height: 94%;
  background-color: var(--bg-color);
}
@media (max-width: 992px) {
  .about-block__img:after {
    content: none;
  }
}
.about-block__img:before {
  content: "";
  position: absolute;
  left: 30px;
  top: 0px;
  width: 93%;
  height: 30px;
  background-color: var(--bg-color);
}
@media (max-width: 992px) {
  .about-block__img:before {
    content: none;
  }
}
.about-block__img img {
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.about-block__img:hover img {
  -webkit-filter: saturate(60%);
  filter: saturate(60%);
}

.about-mission {
  max-height: 600px;
  padding-left: calc((100% - var(--content-width)) / 2);
}
@media (max-width: 1200px) {
  .about-mission {
    max-height: none;
  }
}
.about-mission__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media (max-width: 1600px) {
  .about-mission__wrap {
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
  }
}
@media (max-width: 1200px) {
  .about-mission__wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 40px;
    padding: 40px 0;
  }
}
@media (max-width: 1200px) {
  .about-mission__wrap {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}
.about-mission__content {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 675px;
  flex: 0 1 675px;
  padding-right: 100px;
}
@media (max-width: 1600px) {
  .about-mission__content {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
@media (max-width: 1350px) {
  .about-mission__content {
    padding-left: 15px;
    padding-right: 50px;
    -webkit-box-flex: 0;
    -ms-flex: 0 1 50%;
    flex: 0 1 50%;
  }
}
@media (max-width: 1200px) {
  .about-mission__content {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 100%;
    flex: 0 1 100%;
    max-width: 90%;
    padding-right: 15px;
  }
}
@media (max-width: 480px) {
  .about-mission__content {
    max-width: 100%;
  }
}
.about-mission__title {
  font-family: "Kaushan";
  font-style: normal;
  font-weight: 400;
  font-size: 44px;
  line-height: 50px;
  color: var(--light-color);
  margin-bottom: 30px;
}
@media (max-width: 1400px) {
  .about-mission__title {
    font-size: 36px;
    line-height: 44px;
    margin-bottom: 20px;
  }
}
@media (max-width: 1200px) {
  .about-mission__title {
    text-align: center;
  }
}
@media (max-width: 992px) {
  .about-mission__title {
    font-size: 32px;
    line-height: 37px;
  }
}
.about-mission__text {
  font-family: "Playfair";
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 30px;
  color: var(--light-color);
  margin-bottom: 30px;
}
@media (max-width: 1400px) {
  .about-mission__text {
    font-size: 16px;
    line-height: 28px;
  }
}
@media (max-width: 1200px) {
  .about-mission__text {
    text-align: center;
    margin-bottom: 0;
  }
}
.about-mission__img {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 calc(100% - 675px);
  flex: 0 1 calc(100% - 675px);
}
.about-mission__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
@media (max-width: 1350px) {
  .about-mission__img {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 50%;
    flex: 0 1 50%;
  }
}
@media (max-width: 1200px) {
  .about-mission__img {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 100%;
    flex: 0 1 100%;
    max-width: 60%;
  }
}
@media (max-width: 768px) {
  .about-mission__img {
    max-width: 80%;
  }
}
@media (max-width: 480px) {
  .about-mission__img {
    max-width: 100%;
  }
}

.quote-block {
  padding-top: 120px;
  padding-bottom: 120px;
}
@media (max-width: 992px) {
  .quote-block {
    padding-top: 90px;
    padding-bottom: 90px;
  }
}
@media (max-width: 768px) {
  .quote-block {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
.quote-block__wrap {
  text-align: center;
  max-width: 1120px;
  margin: 0 auto;
}
.quote-block__img {
  text-align: center;
  overflow: hidden;
  width: 90px;
  height: 90px;
  background-color: #EDE6D3;
  border-radius: 50%;
  margin: 0 auto 30px 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;
}
@media (max-width: 768px) {
  .quote-block__img {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
  }
  .quote-block__img img {
    width: 30%;
  }
}
.quote-block__text {
  font-family: "Playfair";
  font-style: normal;
  font-weight: 400;
  font-size: 24px;
  line-height: 40px;
  color: var(--main-color);
}
@media (max-width: 768px) {
  .quote-block__text {
    font-size: 22px;
    line-height: 34px;
  }
}
@media (max-width: 480px) {
  .quote-block__text {
    font-size: 20px;
    line-height: 30px;
  }
}

.good-news {
  max-height: 600px;
  padding-left: calc((100% - var(--content-width)) / 2);
  overflow: hidden;
}
@media (max-width: 1200px) {
  .good-news {
    max-height: none;
  }
}
.good-news__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media (max-width: 1600px) {
  .good-news__wrap {
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
  }
}
@media (max-width: 1200px) {
  .good-news__wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 40px;
    padding: 40px 0;
  }
}
@media (max-width: 1200px) {
  .good-news__wrap {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}
.good-news__content {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 675px;
  flex: 0 1 675px;
  padding-right: 100px;
}
@media (max-width: 1600px) {
  .good-news__content {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
@media (max-width: 1350px) {
  .good-news__content {
    padding-left: 15px;
    padding-right: 50px;
    -webkit-box-flex: 0;
    -ms-flex: 0 1 50%;
    flex: 0 1 50%;
  }
}
@media (max-width: 1200px) {
  .good-news__content {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 100%;
    flex: 0 1 100%;
    max-width: 90%;
    padding-right: 15px;
  }
}
@media (max-width: 480px) {
  .good-news__content {
    max-width: 100%;
  }
}
.good-news__title {
  font-family: "Kaushan";
  font-style: normal;
  font-weight: 400;
  font-size: 44px;
  line-height: 50px;
  color: var(--light-color);
  margin-bottom: 30px;
}
@media (max-width: 1400px) {
  .good-news__title {
    font-size: 36px;
    line-height: 44px;
    margin-bottom: 20px;
  }
}
@media (max-width: 1200px) {
  .good-news__title {
    text-align: center;
  }
}
@media (max-width: 992px) {
  .good-news__title {
    font-size: 32px;
    line-height: 37px;
  }
}
.good-news__text {
  font-family: "Playfair";
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 30px;
  color: var(--light-color);
  margin-bottom: 30px;
}
@media (max-width: 1400px) {
  .good-news__text {
    font-size: 16px;
    line-height: 28px;
  }
}
@media (max-width: 1200px) {
  .good-news__text {
    text-align: center;
    margin-bottom: 0;
  }
}
.good-news__img {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 calc(100% - 675px);
  flex: 0 1 calc(100% - 675px);
}
.good-news__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
@media (max-width: 1350px) {
  .good-news__img {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 50%;
    flex: 0 1 50%;
  }
}
@media (max-width: 1200px) {
  .good-news__img {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 100%;
    flex: 0 1 100%;
    max-width: 60%;
  }
}
@media (max-width: 768px) {
  .good-news__img {
    max-width: 80%;
  }
}
@media (max-width: 480px) {
  .good-news__img {
    max-width: 100%;
  }
}

.finance-expert-padding .expert {
  padding-top: 55px;
}
@media (max-width: 992px) {
  .finance-expert-padding .expert {
    padding-bottom: 60px;
  }
}

.finance {
  padding-top: 120px;
}
@media (max-width: 992px) {
  .finance {
    padding-top: 60px;
  }
}
@media (max-width: 576px) {
  .finance {
    padding-top: 30px;
  }
}
.finance__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  overflow-y: hidden;
}
@media (max-width: 1200px) {
  .finance__wrap {
    background-image: none !important;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.finance__block {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 570px;
  flex: 0 1 570px;
}
@media (max-width: 1200px) {
  .finance__block {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 100%;
    flex: 0 1 100%;
    max-width: 570px;
  }
}
.finance__block:first-child .finance__item:after {
  top: 50%;
  right: -86px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: -1;
}
@media (max-width: 1350px) {
  .finance__block:first-child .finance__item:after {
    right: -50px;
  }
}
@media (max-width: 1300px) {
  .finance__block:first-child .finance__item:after {
    right: -30px;
  }
}
@media (max-width: 1250px) {
  .finance__block:first-child .finance__item:after {
    right: -10px;
  }
}
@media (max-width: 1200px) {
  .finance__block:first-child .finance__item:after {
    right: auto;
    left: 50%;
    -webkit-transform: translateX(-50%) rotate(90deg);
    -ms-transform: translateX(-50%) rotate(90deg);
    transform: translateX(-50%) rotate(90deg);
    top: auto;
    bottom: -40px;
  }
}
.finance__block:last-child .finance__item:after {
  top: 50%;
  left: -86px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: -1;
}
@media (max-width: 1350px) {
  .finance__block:last-child .finance__item:after {
    left: -50px;
  }
}
@media (max-width: 1300px) {
  .finance__block:last-child .finance__item:after {
    left: -30px;
  }
}
@media (max-width: 1250px) {
  .finance__block:last-child .finance__item:after {
    left: -10px;
  }
}
@media (max-width: 1200px) {
  .finance__block:last-child .finance__item:after {
    left: 50%;
    -webkit-transform: translateX(-50%) rotate(90deg);
    -ms-transform: translateX(-50%) rotate(90deg);
    transform: translateX(-50%) rotate(90deg);
    top: auto;
    bottom: -40px;
  }
}
@media (max-width: 1200px) {
  .finance__block:last-child .finance__item:last-child {
    margin-bottom: 0;
  }
}
@media (max-width: 1200px) {
  .finance__block:last-child .finance__item:last-child:after {
    content: none;
  }
}
.finance__item {
  padding: 40px 60px 50px 40px;
  background-color: #FBFAF6;
  position: relative;
}
.finance__item:not(:last-child) {
  margin-bottom: 30px;
}
@media (max-width: 1200px) {
  .finance__item:not(:last-child) {
    margin-bottom: 70px;
  }
}
@media (max-width: 576px) {
  .finance__item:not(:last-child) {
    margin-bottom: 53px;
  }
}
.finance__item:after {
  content: "";
  position: absolute;
  background-image: url("../img/dots.svg");
  background-repeat: no-repeat;
  width: 70px;
  height: 10px;
}
@media (max-width: 1200px) {
  .finance__item {
    margin-bottom: 70px;
  }
}
@media (max-width: 576px) {
  .finance__item {
    padding: 35px 20px;
    margin-bottom: 53px;
  }
}
.finance__title {
  font-family: "Playfair";
  font-style: normal;
  font-weight: 700;
  font-size: 30px;
  line-height: 50px;
  color: var(--bg-color);
  margin-bottom: 10px;
}
@media (max-width: 576px) {
  .finance__title {
    font-size: 26px;
    line-height: 32px;
  }
}
.finance__text {
  font-family: "Playfair";
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 30px;
  color: var(--main-color);
  margin-bottom: 20px;
}
@media (max-width: 576px) {
  .finance__text {
    font-size: 18px;
    line-height: 24px;
  }
}
.finance__link {
  display: inline-block;
  font-size: 13px;
  padding: 10px 47px;
}

.interior {
  padding-left: calc((100% - var(--content-width)) / 2);
}
.interior__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 1400px) {
  .interior__wrap {
    padding-left: 15px;
  }
}
@media (max-width: 992px) {
  .interior__wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
@media (max-width: 992px) {
  .interior__wrap {
    padding: 0;
  }
}
.interior__block {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 675px;
  flex: 0 1 675px;
  padding: 120px 95px 120px 0;
}
@media (max-width: 1400px) {
  .interior__block {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    padding: 60px 60px 60px 0;
  }
}
.interior__block img {
  display: inline-block;
  margin-bottom: 30px;
}
@media (max-width: 480px) {
  .interior__block img {
    margin-bottom: 15px;
    width: 25px;
  }
}
@media (max-width: 992px) {
  .interior__block {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    padding-top: 60px;
    padding-bottom: 60px;
    padding-left: 15px;
  }
}
@media (max-width: 480px) {
  .interior__block {
    padding: 30px 15px;
  }
}
.interior__title {
  font-family: "Playfair";
  font-style: normal;
  font-weight: 700;
  font-size: 30px;
  line-height: 50px;
  color: var(--light-color);
  margin-bottom: 20px;
}
@media (max-width: 576px) {
  .interior__title {
    font-size: 26px;
    line-height: 30px;
    margin-bottom: 15px;
  }
}
.interior__text {
  font-family: "Playfair";
  font-style: normal;
  font-weight: 400;
  font-size: 24px;
  line-height: 40px;
  color: var(--light-color);
}
@media (max-width: 768px) {
  .interior__text {
    font-size: 18px;
    line-height: 30px;
  }
}
.interior__img {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 calc(100% - 675px);
  flex: 0 1 calc(100% - 675px);
  overflow: hidden;
}
@media (max-width: 1400px) {
  .interior__img {
    -ms-flex-preferred-size: calc(100% - (50% - 30px));
    flex-basis: calc(100% - (50% - 30px));
  }
}
.interior__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
@media (max-width: 992px) {
  .interior__img {
    max-height: 500px;
  }
}

@media (max-width: 992px) {
  .benefits {
    background-image: none !important;
  }
}
@media (max-width: 1400px) {
  .benefits .container-box {
    padding-left: 30px;
  }
}
@media (max-width: 1390px) {
  .benefits .container-box {
    padding-left: 25px;
  }
}
@media (max-width: 1380px) {
  .benefits .container-box {
    padding-left: 20px;
  }
}
@media (max-width: 1370px) {
  .benefits .container-box {
    padding-left: 15px;
  }
}
@media (max-width: 1360px) {
  .benefits .container-box {
    padding-left: 10px;
  }
}
@media (max-width: 1350px) {
  .benefits .container-box {
    padding-left: 0;
  }
}
@media (max-width: 992px) {
  .benefits .container-box {
    padding-right: 0 !important;
  }
}
.benefits__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 992px) {
  .benefits__wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
}
.benefits__video {
  position: relative;
  -webkit-box-flex: 0;
  -ms-flex: 0 1 675px;
  flex: 0 1 675px;
}
@media (max-width: 1400px) {
  .benefits__video {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 calc(50% + 3px);
    flex: 0 1 calc(50% + 3px);
  }
}
.benefits__video > a > img:nth-child(1) {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
@media (max-width: 992px) {
  .benefits__video {
    max-height: 500px;
  }
  .benefits__video img {
    max-height: 500px;
  }
}
.benefits__play {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
@media (max-width: 576px) {
  .benefits__play {
    width: 80px;
    height: 80px;
  }
}
@media (max-width: 480px) {
  .benefits__play {
    width: 50px;
    height: 50px;
  }
}
.benefits__content {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 calc(100% - 675px);
  flex: 0 1 calc(100% - 675px);
  padding: 120px 15px 120px 95px;
}
@media (max-width: 1400px) {
  .benefits__content {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    padding: 60px 15px 60px 60px;
  }
}
@media (max-width: 992px) {
  .benefits__content {
    background-color: var(--light-color);
    padding-left: 15px;
  }
}
@media (max-width: 576px) {
  .benefits__content {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
.benefits__title {
  font-family: "Kaushan";
  font-style: normal;
  font-weight: 400;
  font-size: 44px;
  line-height: 50px;
  color: var(--main-color);
  margin-bottom: 30px;
}
@media (max-width: 576px) {
  .benefits__title {
    font-size: 36px;
    line-height: 45px;
    margin-bottom: 20px;
  }
}
.benefits__text {
  font-family: "Playfair";
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 30px;
  color: var(--main-color);
  margin-bottom: 40px;
}
.benefits__btn {
  font-size: 18px;
  color: var(--main-color);
  padding: 15px 120px;
}
@media (max-width: 480px) {
  .benefits__btn {
    padding: 10px 0;
    width: 100%;
    text-align: center;
    font-size: 14px;
  }
}

.developing {
  padding-top: 120px;
  padding-bottom: 120px;
  position: relative;
}
@media (max-width: 1200px) {
  .developing {
    padding-top: 90px;
    padding-bottom: 90px;
  }
}
@media (max-width: 768px) {
  .developing {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
@media (max-width: 576px) {
  .developing {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
.developing__wrap {
  background-color: var(--light-color);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 60px;
  -moz-column-gap: 60px;
  column-gap: 60px;
}
@media (max-width: 1400px) {
  .developing__wrap {
    -webkit-column-gap: 50px;
    -moz-column-gap: 50px;
    column-gap: 50px;
  }
}
@media (max-width: 1200px) {
  .developing__wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 50px;
  }
}
.developing__content {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 60%;
  flex: 0 1 60%;
}
@media (max-width: 992px) {
  .developing__content {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
  }
}
.developing__title {
  margin-bottom: 20px;
}
.developing__text {
  font-family: "Playfair";
  font-style: normal;
  font-weight: 400;
  font-size: 24px;
  line-height: 40px;
  color: var(--main-color);
}
@media (max-width: 1200px) {
  .developing__text {
    font-size: 22px;
    line-height: 36px;
  }
}
@media (max-width: 992px) {
  .developing__text {
    font-size: 18px;
    line-height: 32px;
  }
}
@media (max-width: 480px) {
  .developing__text {
    font-size: 18px;
    line-height: 28px;
  }
}
.developing__btn {
  font-size: 16px;
  color: var(--bg-color);
  padding: 10px 50px;
}
@media (max-width: 576px) {
  .developing__btn {
    display: block;
    max-width: -webkit-fit-content;
    max-width: -moz-fit-content;
    max-width: fit-content;
    margin: 0 auto;
  }
}
@media (max-width: 480px) {
  .developing__btn {
    font-size: 14px;
  }
}
.developing__images {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 40%;
  flex: 0 1 40%;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 250px 260px;
  grid-template-columns: 250px 260px;
  -ms-grid-rows: (260px)[2];
  grid-template-rows: repeat(2, 260px);
  gap: 30px;
}
@media (max-width: 1200px) {
  .developing__images {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    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;
  }
}
@media (max-width: 576px) {
  .developing__images {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 40px;
  }
}
.developing__images img {
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  -o-object-fit: cover !important;
  object-fit: cover !important;
}
@media (max-width: 992px) {
  .developing__images img {
    width: 30%;
  }
}
@media (max-width: 576px) {
  .developing__images img {
    width: auto;
  }
}
.developing__images img:hover {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}
.developing__images img:first-child {
  -ms-grid-row-align: center;
  align-self: center;
  -ms-grid-row: 1;
  -ms-grid-row-span: 2;
  grid-row: 1/3;
}
@media (max-width: 576px) {
  .developing__images img:first-child {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }
}
.developing__images img:nth-child(3) {
  -ms-grid-column: 2;
  -ms-grid-column-span: 1;
  grid-column: 2/3;
}
.developing__images img:nth-child(2) {
  -webkit-box-ordinal-group: 0;
  -ms-flex-order: -1;
  order: -1;
  -ms-flex-item-align: end;
  -ms-grid-row-align: end;
  align-self: end;
}

.type-investment {
  padding-top: 90px;
}
@media (max-width: 1400px) {
  .type-investment {
    padding-bottom: 60px;
  }
}
@media (max-width: 768px) {
  .type-investment {
    padding-top: 60px;
  }
}
.type-investment__title {
  margin-bottom: 70px;
  font-size: 36px;
  text-align: center;
  color: var(--bg-color);
}
@media (max-width: 992px) {
  .type-investment__title {
    max-width: 70%;
    margin: 0 auto;
    margin-bottom: 70px;
  }
}
@media (max-width: 768px) {
  .type-investment__title {
    max-width: 80%;
  }
}
@media (max-width: 576px) {
  .type-investment__title {
    max-width: 100%;
  }
}
.type-investment__title:after {
  background-color: var(--bg-color);
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}
@media (max-width: 576px) {
  .type-investment__title {
    margin-bottom: 50px;
  }
}

.blocks {
  padding-top: 120px;
  padding-bottom: 120px;
}
@media (max-width: 992px) {
  .blocks {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
@media (max-width: 480px) {
  .blocks {
    padding-top: 40px;
  }
}
.blocks__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 80px;
  -moz-column-gap: 80px;
  column-gap: 80px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.blocks__wrap:first-child {
  margin-bottom: 120px;
}
@media (max-width: 992px) {
  .blocks__wrap:first-child {
    margin-bottom: 60px;
  }
}
@media (max-width: 576px) {
  .blocks__wrap:first-child {
    margin-bottom: 30px;
  }
}
.blocks__wrap:last-child .blocks__img {
  -webkit-box-ordinal-group: 0;
  -ms-flex-order: -1;
  order: -1;
}
@media (max-width: 992px) {
  .blocks__wrap:last-child .blocks__img {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
}
.blocks__wrap:last-child .blocks__img {
  padding-left: 30px;
}
@media (max-width: 992px) {
  .blocks__wrap:last-child .blocks__img {
    padding: 0;
  }
}
.blocks__wrap:last-child .blocks__img:after {
  right: auto;
  left: 0px;
  top: 0;
}
.blocks__wrap:last-child .blocks__img:before {
  left: 0px;
}
.blocks__wrap:last-child .blocks__text {
  margin-bottom: 40px;
}
.blocks__wrap:last-child .blocks__btn {
  font-size: 16px;
  line-height: 30px;
  padding: 10px 60px;
}
@media (max-width: 576px) {
  .blocks__wrap:last-child .blocks__btn {
    padding: 10px 20px;
  }
}
@media (max-width: 480px) {
  .blocks__wrap:last-child .blocks__btn {
    padding: 8px 0;
    display: block;
    width: 100%;
    font-size: 12px;
  }
}
@media (max-width: 1200px) {
  .blocks__wrap {
    -webkit-column-gap: 40px;
    -moz-column-gap: 40px;
    column-gap: 40px;
  }
}
@media (max-width: 992px) {
  .blocks__wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 40px;
  }
}
.blocks__content {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 calc(100% - 460px);
  flex: 0 1 calc(100% - 460px);
}
@media (max-width: 1200px) {
  .blocks__content {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 calc(100% - 420px);
    flex: 0 1 calc(100% - 420px);
  }
}
@media (max-width: 992px) {
  .blocks__content {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 100%;
    flex: 0 1 100%;
  }
}
.blocks__title {
  margin-bottom: 30px;
  font-size: 36px;
  line-height: 50px;
}
@media (max-width: 768px) {
  .blocks__title {
    font-size: 30px;
    line-height: 40px;
    margin-bottom: 15px;
  }
}
@media (max-width: 480px) {
  .blocks__title {
    font-size: 26px;
    line-height: 38px;
  }
}
.blocks__text {
  font-family: "Playfair";
  font-style: normal;
  font-weight: 400;
  font-size: 24px;
  line-height: 40px;
  color: var(--main-color);
}
@media (max-width: 1200px) {
  .blocks__text {
    font-size: 22px;
    line-height: 36px;
  }
}
@media (max-width: 992px) {
  .blocks__text {
    font-size: 18px;
    line-height: 30px;
  }
}
.blocks__img {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 380px;
  flex: 0 1 380px;
  position: relative;
  overflow: hidden;
  padding-top: 30px;
  -ms-flex-item-align: start;
  align-self: flex-start;
}
@media (max-width: 992px) {
  .blocks__img {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 100%;
    flex: 0 1 100%;
    overflow: visible;
    border: 15px solid var(--bg-color);
    padding: 0;
    display: inline-block;
    max-width: -webkit-max-content;
    max-width: -moz-max-content;
    max-width: max-content;
    margin: 0 auto;
  }
}
.blocks__img:after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 30px;
  height: 94%;
  background-color: var(--bg-color);
}
@media (max-width: 992px) {
  .blocks__img:after {
    content: none;
  }
}
.blocks__img:before {
  content: "";
  position: absolute;
  left: 30px;
  top: 0px;
  width: 93%;
  height: 30px;
  background-color: var(--bg-color);
}
@media (max-width: 992px) {
  .blocks__img:before {
    content: none;
  }
}
.blocks__img img {
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.blocks__img:hover img {
  -webkit-filter: saturate(60%);
  filter: saturate(60%);
}

.articles {
  padding: 90px 0 120px 0;
}
@media (max-width: 992px) {
  .articles {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
@media (max-width: 576px) {
  .articles {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
.articles .container-box {
  position: relative;
}
@media (max-width: 768px) {
  .articles {
    padding-top: 60px;
    padding-bottom: 50px;
  }
}
.articles__title {
  margin-bottom: 70px;
  font-size: 36px;
  text-align: center;
  color: var(--bg-color);
}
.articles__title:after {
  background-color: var(--bg-color);
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}
@media (max-width: 576px) {
  .articles__title {
    margin-bottom: 90px;
  }
}
.articles .card-articles__descr > span {
  display: none;
}
@media (max-width: 1200px) {
  .articles .swiper {
    width: 880px !important;
  }
}
@media (max-width: 992px) {
  .articles .swiper {
    width: 90% !important;
  }
}
@media (max-width: 768px) {
  .articles .swiper {
    width: 430px !important;
  }
}
@media (max-width: 480px) {
  .articles .swiper {
    width: 100% !important;
    max-width: 430px !important;
  }
}
.articles .swiper-slide {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.articles .swiper-button-prev {
  display: none !important;
}
.articles .swiper-button-next {
  display: none !important;
}
.articles .articles-button-prev {
  position: absolute;
  left: -60px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  cursor: pointer;
}
@media (max-width: 1550px) {
  .articles .articles-button-prev {
    left: auto;
    right: 100px;
    top: 80px;
  }
}
@media (max-width: 1200px) {
  .articles .articles-button-prev {
    left: 10px;
    right: auto;
    top: 50%;
  }
}
@media (max-width: 992px) {
  .articles .articles-button-prev {
    left: auto;
    right: 120px;
    top: 80px;
  }
}
@media (max-width: 768px) {
  .articles .articles-button-prev {
    left: 10px;
    right: auto;
    top: 50%;
  }
}
@media (max-width: 576px) {
  .articles .articles-button-prev {
    left: 50%;
    top: 80px;
    right: auto;
    -webkit-transform: translate(calc(-50% - 25px));
    -ms-transform: translate(calc(-50% - 25px));
    transform: translate(calc(-50% - 25px));
  }
}
@media (max-width: 480px) {
  .articles .articles-button-prev {
    top: 60px;
  }
}
.articles .articles-button-next {
  position: absolute;
  right: -60px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  cursor: pointer;
}
@media (max-width: 1550px) {
  .articles .articles-button-next {
    right: 15px;
    top: 80px;
  }
}
@media (max-width: 1200px) {
  .articles .articles-button-next {
    right: 10px;
    top: 50%;
  }
}
@media (max-width: 992px) {
  .articles .articles-button-next {
    right: 60px;
    top: 80px;
  }
}
@media (max-width: 768px) {
  .articles .articles-button-next {
    right: 10px;
    top: 50%;
  }
}
@media (max-width: 576px) {
  .articles .articles-button-next {
    right: 50%;
    top: 80px;
    -webkit-transform: translate(calc(-50% + 65px));
    -ms-transform: translate(calc(-50% + 65px));
    transform: translate(calc(-50% + 65px));
  }
}
@media (max-width: 480px) {
  .articles .articles-button-next {
    top: 60px;
  }
}

.page-404 {
  height: 100vh;
  text-align: center;
}
.page-404 .container-box {
  height: 100%;
}
.page-404__wrap {
  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-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.page-404__header {
  padding-top: 25px;
}
.page-404__main {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  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-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.page-404__img {
  margin-bottom: 60px;
}
.page-404__title {
  font-family: "Playfair";
  font-style: normal;
  font-weight: 700;
  font-size: 44px;
  line-height: 60px;
  color: var(--bg-color);
  margin-bottom: 10px;
}
@media (max-width: 480px) {
  .page-404__title {
    font-size: 32px;
    line-height: 45px;
  }
}
.page-404__subtitle {
  font-family: "Playfair";
  font-style: normal;
  font-weight: 400;
  font-size: 24px;
  line-height: 40px;
  color: var(--bg-color);
  margin-bottom: 30px;
}
@media (max-width: 1200px) {
  .page-404__subtitle {
    font-size: 20px;
    line-height: 26px;
  }
}
.page-404__btn {
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
  font-size: 16px;
  line-height: 30px;
  padding: 10px 65px;
}
@media (max-width: 480px) {
  .page-404__btn {
    padding: 8px 0;
    display: block;
    width: 100%;
    font-size: 14px;
    line-height: 25px;
  }
}
.page-404__copyright-wrap {
  margin-top: auto;
  padding-bottom: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  font-family: "OpenSans";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
}
@media (max-width: 768px) {
  .page-404__copyright-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 10px;
  }
}
.page-404__design {
  color: var(--main-color);
}
.page-404__design > a {
  color: var(--bg-color);
}
.page-404__design > a:hover {
  color: var(--main-color);
  text-decoration: underline;
}
.page-404__policy > a {
  color: var(--bg-color);
}
.page-404__policy > a:hover {
  color: var(--main-color);
  text-decoration: underline;
}
.page-404__policy a:first-child {
  margin-right: 10px;
}

.blog-slider {
  padding-top: 160px;
  padding-bottom: 40px;
}
@media (max-width: 1200px) {
  .blog-slider {
    padding-top: 140px;
  }
}
@media (max-width: 992px) {
  .blog-slider {
    padding-top: 100px;
  }
}
.blog-slider__wrap {
  position: relative;
  background-color: var(--bg-color);
}
.blog-slider__slider {
  max-height: 500px;
}
@media (max-width: 1200px) {
  .blog-slider__slider {
    max-height: none;
  }
}
.blog-slider__img {
  position: relative;
  max-height: 500px;
  background-color: var(--bg-color);
  -webkit-box-flex: 0;
  -ms-flex: 0 1 calc(100% - 490px);
  flex: 0 1 calc(100% - 490px);
}
@media (max-width: 1200px) {
  .blog-slider__img {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 50%;
    flex: 0 1 50%;
  }
}
@media (max-width: 992px) {
  .blog-slider__img {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 100%;
    flex: 0 1 100%;
    overflow-y: hidden;
  }
}
.blog-slider__img > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.blog-slider__info {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 490px;
  flex: 0 1 490px;
  padding: 50px 60px 60px;
}
@media (max-width: 1200px) {
  .blog-slider__info {
    padding: 40px 30px;
    -webkit-box-flex: 0;
    -ms-flex: 0 1 50%;
    flex: 0 1 50%;
  }
}
@media (max-width: 992px) {
  .blog-slider__info {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 100%;
    flex: 0 1 100%;
    padding-bottom: 30px;
  }
}
@media (max-width: 576px) {
  .blog-slider__info {
    padding: 30px 15px;
    padding-bottom: 15px;
  }
}
.blog-slider__info > h2 {
  font-family: "Playfair";
  font-style: normal;
  font-weight: 700;
  font-size: 36px;
  line-height: 50px;
  color: var(--light-color);
  max-width: 380px;
  margin-bottom: 20px;
}
@media (max-width: 1200px) {
  .blog-slider__info > h2 {
    max-width: none;
  }
}
@media (max-width: 992px) {
  .blog-slider__info > h2 {
    font-size: 32px;
    line-height: 44px;
  }
}
@media (max-width: 576px) {
  .blog-slider__info > h2 {
    font-size: 28px;
    line-height: 36px;
  }
}
@media (max-width: 480px) {
  .blog-slider__info > h2 {
    font-size: 22px;
    line-height: 30px;
    margin-bottom: 10px;
  }
}
.blog-slider__info > span {
  display: inline-block;
  font-family: "OpenSans";
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 20px;
}
@media (max-width: 480px) {
  .blog-slider__info > span {
    font-size: 12px;
    margin-bottom: 10px;
  }
}
.blog-slider__info > p {
  font-family: "OpenSans";
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 30px;
  color: var(--light-color);
  margin-bottom: 40px;
  max-width: 380px;
}
@media (max-width: 1200px) {
  .blog-slider__info > p {
    max-width: none;
  }
}
@media (max-width: 480px) {
  .blog-slider__info > p {
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 35px;
  }
}
.blog-slider__title {
  margin-bottom: 40px;
  color: var(--bg-color);
  font-family: "Kaushan";
  font-style: normal;
  font-weight: 400;
  font-size: 50px;
  line-height: 70px;
}
@media (max-width: 768px) {
  .blog-slider__title {
    font-size: 40px;
    line-height: 45px;
  }
}
@media (max-width: 480px) {
  .blog-slider__title {
    font-size: 32px;
    line-height: 36px;
  }
}
.blog-slider__title:after {
  background-color: rgba(255, 255, 255, 0.2);
}
.blog-slider__btn {
  padding: 10px 50px;
  font-size: 16px;
}
@media (max-width: 576px) {
  .blog-slider__btn {
    display: block;
    max-width: -webkit-fit-content;
    max-width: -moz-fit-content;
    max-width: fit-content;
    margin: 0 auto;
  }
}
@media (max-width: 480px) {
  .blog-slider__btn {
    font-size: 14px;
  }
}
.blog-slider .swiper-wrapper {
  max-height: 500px;
}
@media (max-width: 992px) {
  .blog-slider .swiper-wrapper {
    max-height: -webkit-max-content;
    max-height: -moz-max-content;
    max-height: max-content;
  }
}
.blog-slider .swiper-slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  height: 500px;
}
@media (max-width: 992px) {
  .blog-slider .swiper-slide {
    display: block !important;
    height: -webkit-max-content;
    height: -moz-max-content;
    height: max-content;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 50px;
  }
}
.blog-slider .blog-slider-button-prev {
  background-color: #56688C;
  position: absolute;
  bottom: 0;
  right: 80px;
  width: 80px;
  height: 80px;
  z-index: 1;
  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;
  cursor: pointer;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.blog-slider .blog-slider-button-prev:active {
  background-color: var(--bg-color);
}
@media (max-width: 992px) {
  .blog-slider .blog-slider-button-prev {
    width: 60px;
    height: 60px;
    right: 60px;
  }
}
@media (max-width: 480px) {
  .blog-slider .blog-slider-button-prev {
    width: 40px;
    height: 40px;
    right: 40px;
  }
}
.blog-slider .blog-slider-button-next {
  background-color: var(--bg-color);
  position: absolute;
  right: 0px;
  bottom: 0;
  width: 80px;
  height: 80px;
  z-index: 1;
  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;
  cursor: pointer;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.blog-slider .blog-slider-button-next:active {
  background-color: #56688C;
}
@media (max-width: 992px) {
  .blog-slider .blog-slider-button-next {
    width: 60px;
    height: 60px;
  }
}
@media (max-width: 480px) {
  .blog-slider .blog-slider-button-next {
    width: 40px;
    height: 40px;
  }
}
.blog-slider .swiper-button-prev {
  display: none !important;
}
.blog-slider .swiper-button-next {
  display: none !important;
}

.blog {
  padding-top: 40px;
  padding-bottom: 155px;
}
@media (max-width: 992px) {
  .blog {
    padding-bottom: 100px;
  }
}
@media (max-width: 575px) {
  .blog {
    padding-bottom: 60px;
  }
}
.blog nav:first-child {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .blog nav:first-child {
    margin-bottom: 40px;
  }
}
.blog nav:first-child > ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-column-gap: 30px;
  -moz-column-gap: 30px;
  column-gap: 30px;
}
@media (max-width: 768px) {
  .blog nav:first-child > ul {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    row-gap: 5px;
  }
}
@media (max-width: 480px) {
  .blog nav:first-child > ul {
    -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;
  }
}
.blog nav:first-child > ul > li {
  display: inline-block;
  font-family: "Playfair";
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
  line-height: 40px;
  color: var(--main-color);
  cursor: pointer;
}
.blog nav:first-child > ul > li.active {
  color: var(--bg-color);
}
@media (max-width: 992px) {
  .blog nav:first-child > ul > li {
    font-size: 20px;
    line-height: 30px;
  }
}
.blog .hide {
  display: none;
}
.blog__wrap {
  padding-bottom: 90px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
  -ms-grid-rows: 1fr;
  grid-template-rows: 1fr;
  grid-auto-rows: 1fr;
  gap: 60px 30px;
}
@media (max-width: 992px) {
  .blog__wrap {
    gap: 30px 15px;
  }
}
@media (max-width: 768px) {
  .blog__wrap {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    padding-bottom: 60px;
  }
}
@media (max-width: 480px) {
  .blog__wrap {
    grid-auto-rows: -webkit-max-content;
    grid-auto-rows: max-content;
    padding-bottom: 40px;
  }
}
.blog__item {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 calc(50% - 15px);
  flex: 0 1 calc(50% - 15px);
}
.blog__item:hover .blog__img img {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}
.blog__item:hover h6 {
  color: #3f5480;
}
.blog__item > h6 {
  font-family: "Playfair";
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
  line-height: 40px;
  color: var(--bg-color);
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  margin-bottom: 10px;
}
@media (max-width: 1200px) {
  .blog__item > h6 {
    line-height: 32px;
  }
}
@media (max-width: 480px) {
  .blog__item > h6 {
    font-size: 20px;
    line-height: 28px;
  }
}
.blog__item span {
  font-family: "OpenSans";
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
  color: rgba(51, 51, 51, 0.5);
  display: block;
  margin-bottom: 10px;
}
.blog__item p {
  font-family: "OpenSans";
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 30px;
  color: var(--main-color);
}
@media (max-width: 480px) {
  .blog__item p {
    font-size: 16px;
    line-height: 26px;
  }
}
.blog__img {
  overflow: hidden;
  max-height: 385px;
  margin-bottom: 20px;
}
.blog__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.blog .pagination {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-column-gap: 10px;
  -moz-column-gap: 10px;
  column-gap: 10px;
}
.blog .pagination > li {
  width: 50px;
  height: 50px;
  text-align: center;
}
@media (max-width: 480px) {
  .blog .pagination > li {
    width: 30px;
    height: 30px;
  }
}
.blog .pagination > li:first-child .page-link:hover, .blog .pagination > li:last-child .page-link:hover {
  background-color: var(--bg-color) !important;
  border: 2px solid var(--bg-color) !important;
}
.blog .pagination > li:first-child .page-link:active, .blog .pagination > li:last-child .page-link:active {
  background-color: #485672;
}
.blog .pagination > li > a {
  width: 100%;
  height: 100%;
  font-family: "Playfair";
  font-style: normal;
  font-weight: 700;
  font-size: 18px;
  line-height: 30px;
  text-align: center;
  text-transform: uppercase;
  color: var(--light-color);
  background-color: var(--bg-color) !important;
  border: 2px solid var(--bg-color) !important;
}
@media (max-width: 480px) {
  .blog .pagination > li > a {
    font-size: 12px;
    line-height: 22px;
    padding: 0 !important;
  }
}
.blog .page-item .page-link {
  border: 2px solid var(--bg-color);
  background-color: #FBFAF6;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.blog .page-item .page-link:hover {
  background-color: transparent !important;
  color: var(--bg-color) !important;
}
.blog .page-item .page-link__active {
  background-color: transparent !important;
  color: var(--bg-color) !important;
}
.blog .page-item .page-link__active:hover {
  background-color: var(--bg-color) !important;
  color: var(--light-color) !important;
}
.blog .page-item:first-child .page-link,
.blog .page-item:last-child .page-link {
  border-radius: 0;
}
.blog .page-dots {
  padding-left: 14px;
  padding-right: 14px;
  color: #ccc;
}
@media (max-width: 480px) {
  .blog .page-dots {
    padding-left: 0;
    padding-right: 0;
  }
}

.single {
  padding-top: 170px;
  padding-bottom: 95px;
}
@media (max-width: 992px) {
  .single {
    padding-top: 120px;
  }
}
@media (max-width: 576px) {
  .single {
    padding-top: 100px;
    padding-bottom: 60px;
  }
}
.single h1 {
  font-family: "Playfair";
  font-style: normal;
  font-weight: 700;
  font-size: 36px;
  line-height: 50px;
  color: var(--main-color);
  margin-bottom: 20px;
}
@media (max-width: 576px) {
  .single h1 {
    font-size: 30px;
    line-height: 37px;
  }
}
@media (max-width: 400px) {
  .single h1 {
    font-size: 26px;
    line-height: 32px;
  }
}
.single .container-box > span {
  display: block;
  margin-bottom: 20px;
  font-family: "OpenSans";
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
  color: var(--main-color);
}
@media (max-width: 576px) {
  .single .container-box > span {
    font-size: 12px;
    margin-bottom: 10px;
  }
}
.single img {
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.single .container-box > img {
  margin-bottom: 40px;
}
@media (max-width: 576px) {
  .single .container-box > img {
    margin-bottom: 25px;
  }
}
.single__wrap {
  max-width: 890px;
  margin: 0 auto;
}
.single__wrap h4 {
  font-family: "Playfair";
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
  line-height: 40px;
  color: var(--main-color);
  margin-bottom: 10px;
}
@media (max-width: 576px) {
  .single__wrap h4 {
    font-size: 22px;
    line-height: 30px;
  }
}
.single__wrap p, .single__wrap ol li {
  font-family: "OpenSans";
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 30px;
  color: var(--main-color);
}
@media (max-width: 576px) {
  .single__wrap p, .single__wrap ol li {
    font-size: 16px;
    line-height: 25px;
  }
}
.single__wrap p {
  margin-bottom: 25px;
}
@media (max-width: 576px) {
  .single__wrap p {
    margin-bottom: 40px;
  }
}
.single__wrap ol li {
  margin-bottom: 10px;
}
.single__wrap > img {
  margin-top: 40px;
  margin-bottom: 40px;
}
@media (max-width: 576px) {
  .single__wrap > img {
    margin-top: 20px;
    margin-bottom: 20px;
  }
}
.single__footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-column-gap: 40px;
  -moz-column-gap: 40px;
  column-gap: 40px;
}
@media (max-width: 576px) {
  .single__footer {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    row-gap: 30px;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
}
.single__share {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 10px;
  -moz-column-gap: 10px;
  column-gap: 10px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.single__share > span {
  font-family: "Playfair";
  font-style: normal;
  font-weight: 700;
  font-size: 18px;
  line-height: 30px;
  color: var(--main-color);
}
@media (max-width: 480px) {
  .single__share > span {
    font-size: 14px;
    line-height: 26px;
  }
}
.single__share > ul {
  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;
  -webkit-column-gap: 10px;
  -moz-column-gap: 10px;
  column-gap: 10px;
}
.single__share > ul > li {
  width: 30px;
  height: 30px;
  border: 1px solid var(--bg-color);
}
@media (max-width: 480px) {
  .single__share > ul > li {
    width: 26px;
    height: 26px;
  }
}
.single__share > ul > li:hover .fa-square-facebook,
.single__share > ul > li:hover .fa-twitter,
.single__share > ul > li:hover .fa-linkedin-in,
.single__share > ul > li:hover .fa-solid.fa-link {
  color: var(--main-color);
}
.single__share > ul > li > a {
  display: inline-block;
  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: 100%;
  height: 100%;
  font-size: 12px;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.single__share > ul > li > a:hover {
  color: var(--main-color);
}
.single__tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 5px;
  -moz-column-gap: 5px;
  column-gap: 5px;
  row-gap: 5px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.single__tags > li > a {
  white-space: nowrap;
  border: 1px solid var(--bg-color);
  font-family: "OpenSans";
  font-style: normal;
  font-weight: 600;
  font-size: 12px;
  line-height: 20px;
  text-transform: uppercase;
  color: var(--light-color);
  background-color: var(--bg-color);
  padding: 1px 15px;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.single__tags > li > a:hover {
  background-color: transparent;
  color: var(--bg-color);
}
@media (max-width: 480px) {
  .single__tags > li > a {
    font-size: 10px;
    line-height: 18px;
    padding: 1px 10px;
  }
}
.single .fa-square-facebook {
  color: #3B5998;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.single .fa-twitter {
  color: #00AEEE;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.single .fa-linkedin-in {
  color: #0077B5;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.single .fa-solid.fa-link {
  color: #6A7CA0;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.related .card-articles__descr span {
  display: inline-block;
}

.footer {
  background-color: var(--bg-footer);
  padding: 50px 0 0 0;
}
.footer__subscribe {
  padding-bottom: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: 1px solid rgba(237, 230, 211, 0.2);
}
@media (max-width: 992px) {
  .footer__subscribe {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 30px;
    text-align: center;
    border-bottom: none;
    padding-bottom: 0;
  }
}
.footer__text > h5 {
  font-family: "Playfair";
  font-style: normal;
  font-weight: 700;
  font-size: 18px;
  line-height: 30px;
  color: var(--light-color);
}
.footer__text > p {
  font-family: "OpenSans";
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #FFFFFF;
}
.footer__form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
}
.footer__form input {
  border-radius: 0 !important;
  background: none;
  border: none;
  outline: none;
  width: 545px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  padding: 14px 40px 14px 0;
  font-family: "OpenSans";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  color: #D2D7E2;
}
.footer__form input::-webkit-input-placeholder {
  font-family: "OpenSans";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #D2D7E2;
}
.footer__form input::-moz-placeholder {
  font-family: "OpenSans";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #D2D7E2;
}
.footer__form input:-ms-input-placeholder {
  font-family: "OpenSans";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #D2D7E2;
}
.footer__form input::-ms-input-placeholder {
  font-family: "OpenSans";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #D2D7E2;
}
.footer__form input::placeholder {
  font-family: "OpenSans";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #D2D7E2;
}
@media (max-width: 1200px) {
  .footer__form input {
    width: 450px;
  }
}
@media (max-width: 480px) {
  .footer__form input {
    width: 100% !important;
  }
}
.footer__form button {
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.footer__form button:active {
  -webkit-transform: translate(7px, -10px);
  -ms-transform: translate(7px, -10px);
  transform: translate(7px, -10px);
}
@media (max-width: 1200px) {
  .footer__form {
    width: 450px;
  }
}
@media (max-width: 1200px) and (max-width: 480px) {
  .footer__form {
    width: 100%;
  }
}
@media (max-width: 992px) {
  .footer__form {
    margin: 0 auto;
  }
}
.footer__social {
  padding-top: 50px;
  padding-bottom: 50px;
  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;
}
@media (max-width: 480px) {
  .footer__social {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 30px;
  }
}
@media (max-width: 400px) {
  .footer__logo {
    width: 240px;
  }
}
.footer__social-list {
  height: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 10px;
  -moz-column-gap: 10px;
  column-gap: 10px;
}
.footer__social-list > li {
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  width: 30px;
  height: 30px;
}
.footer__social-list > li:hover {
  -webkit-transform: translateY(-5px);
  -ms-transform: translateY(-5px);
  transform: translateY(-5px);
}
.footer__copyright {
  background-color: #252C3B;
  padding: 20px 0;
}
.footer__copyright > * {
  font-family: "OpenSans";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #D2D7E2;
}
.footer__copyright > * a {
  color: var(--light-color);
}
.footer__copyright > * a:hover {
  text-decoration: underline;
}
@media (max-width: 480px) {
  .footer__copyright > * {
    font-size: 12px;
    line-height: 20px;
  }
}
.footer__copyright-wrap {
  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;
}
@media (max-width: 768px) {
  .footer__copyright-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 10px;
    text-align: center;
  }
}
.footer__policy a:nth-child(1) {
  margin-right: 10px;
}

.wpcf7-not-valid-tip {
  margin-bottom: 20px;
}

@media (max-width: 576px) {
  .wpcf7-not-valid-tip {
    margin-bottom: 10px;
  }
}
/*# sourceMappingURL=main.css.map */