
@font-face {
  font-family: 'Cavas Demo';
  src: url('../fonts/Cavas-Demo.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

:root {
  --accent-color: #DBAD50;
  --text-color: #121212;
  --main-color: #141414;
}
/* font-family: 'Cavas Demo', sans-serif; */

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  padding: 0;
  color: var(--text-color);
  background: var(--main-color);
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.25;
}
.container {
  width: 1200px;
  max-width: 100%;
  margin: 0 auto;
}

a {
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}
ul {
  list-style-type: none;
}
ul, h1, h2, h3, h4, p {
  margin: 0;
  padding: 0;
}
h2, h3, h4 {
  font-family: 'Cavas Demo', sans-serif;
  font-weight: 400;
}
input, select, textarea {
  outline:none;
}
img {
  max-width: 100%;
}

.underline {
  position: absolute;
  bottom: -32px;
  left: 0;
  height: 3px;
  background-color: #fff;
  width: 0;
  transition: all 0.5s ease;
}

.block-to-animate {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.block-to-animate.animate-fadeIn {
  opacity: 1;
}

.btn {
  display: block;
  max-width: fit-content;
  position: relative;
  padding: 11px 64px 11px 24px;
  background: #DBAD50;
  border: 1px solid #E4ACB4;
  color: #0F0912;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  border-radius: 50px;
}
.btn::after {
  position: absolute;
  content: url(../img/btn-arrow.svg);
  top: 11px;
  right: 17px;
  transition: all 0.3s ease-in-out;
}

.btn:hover {
  background: transparent;
  color: #fff;
}
.btn:hover::after {
  filter: invert(1);
}

.title__block {
  font-size: 38px;
  color: #DBAD50;
}

.mobile, .burger-menu, .header__link-block.mobile, .hero__video-mobile {
  display: none;
}

.header {
  padding: 20px 0;
  background: var(--accent-color);
  position: fixed;
  width: 100vw;
  left: 0;
  top: 0;
  right: 0;
  z-index: 1000;
}
.header__wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header__block {
  display: flex;
  align-items: center;
  gap: 30px;
}
.main-navigation ul {
  display: flex;
  align-items: center;
  gap: 20px;
}
.main-navigation ul a {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-color);
  text-transform: uppercase;
}
.main-navigation ul a:hover {
  color: #fff;
}
.main-navigation .menu {
  position: relative;
}

.header__link-block {
  display: flex;
  align-items: center;
  padding: 12px;
  background: #fff;
  font-size: 13px;
  font-weight: 600;
  border-radius: 100px;
  gap: 12px;
}
.header__link-block a {
  display: block;
  color: #121212;
}
.header__link {
  border-right: 0.5px solid rgba(0, 0, 0, 0.12);
  padding-right: 12px;
  color: #121212;
}
.header__link-viber {
  width: 14px;
  height: 14px;
  background: url(../img/viber-ico.svg) no-repeat;
  border-right: 0.5px solid rgba(0, 0, 0, 0.12);
  padding: 0 12px;
}
.header__link-telegram {
  width: 16px;
  height: 14px;
  background: url(../img/telegram-ico.svg) no-repeat;
}

.hero {
  position: relative;
  padding-top: 85px;
  /* background: 
  linear-gradient(268.5deg, rgba(0, 0, 0, 0) -3.44%, rgba(0, 0, 0, 0.82) 61.35%),
  url(../img/hero-img.png) no-repeat center;
  background-size: cover; */
}
.hero__video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero__content {
  padding: 125px 0 25px;
  height: 70vh;
  min-height: 500px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #fff;
  z-index: 2;
}
.hero__title {
  margin-bottom: 24px;
  max-width: 880px;
  font-size: 46px;
  font-weight: 700;
  line-height: 1.25;
}
.hero__title span {
  font-weight: 400;
  font-size: 34px;
}
.hero__list {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 30px;
}
.hero__item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px;
  background: rgba(25, 25, 25, 0.5);
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  border-radius: 6px;
}
.hero__item::after {
  position: absolute;
  content: '';
  height: 10px;
  width: 0.5px;
  background: #E4ACB4;
  top: 15px;
  right: -16px;
}
.hero__item:last-child:after {
  content: none;
}

.about {
  padding: 64px 0;
}
.about .title__block, .apartments .title__block {
  margin-bottom: 24px;
  text-align: center;
}
.about .title__block span, .apartments .title__block span {
  margin-bottom: 24px;
  font-family: "Montserrat", sans-serif;
  color: #fff;
}
.about-slider {
  padding-bottom: 40px;
}
.about__list .about__item {
  display: flex;
  gap: 80px;
  padding: 18px 20px;
  background: url(../img/about-slider-bg.svg), var(--main-color);
  background-repeat: no-repeat;
  background-size: cover;
  font-size: 18px;
  font-weight: 300;
  border-radius: 24px;
}
.about__item-block {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.about__item-content {
  margin: auto;
}
.about__item-title {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 28px;
}
.about__item-text {
  margin: 15px 0;
}
.about__item-img {
  border-radius: 25px;
  max-width: 550px;
}
.about__link-block {
  margin: 20px 0 0 14px;
  width: fit-content;
}
.about__link-block .btn {
  max-width: 315px;
  text-transform: inherit;
}
.splide__pagination__page {
  background: #fff;
  border-radius: 4px;
  height: 4px;
  margin: 1px;
  opacity: 0.5;
  width: 20px;
}
.splide__pagination__page.is-active {
  background: #fff;
  transform: none;
  z-index: 1;
  opacity: 1;
  width: 48px;
}
.splide__arrow--next {
  right: -80px;
}
.splide__arrow--prev {
  left: -80px;
}
.splide__arrow {
  width: 60px;
  height: 60px;
  background: #fff;
}
.splide__arrow svg {
  background: url(../img/slide-arrow.svg) no-repeat center;
  fill: transparent;
  height: 100%;
  width: 100%;
}

.quiz {
  padding: 80px 0;
  background: url(../img/quiz-bg.png) no-repeat center;
  background-size: cover;
}
.quiz__wrapper {
  padding: 24px 30px;
  margin: 0 auto;
  max-width: 780px;
  min-height: 512px;
  border-radius: 24px;
  background: rgba(244, 244, 244, 0.8);
  backdrop-filter: blur(9px);
  text-align: center;
}
.title__block.quiz_title {
  color: var(--main-color);
  font-size: 38px;
  font-weight: 400;
  text-transform: uppercase;
}
.title__block.quiz_title span {
  font-family: "Poppins", sans-serif;
  text-transform: initial;
}
.text__question {
  margin: 35px 0;
  text-transform: uppercase;
  font-size: 18px;
  font-weight: 300;
}
.fieldset-cf7mls {
  padding: 0;
  margin: 0;
}
.radio-group .wpcf7-list-item {
  margin: 0;
}
.radio-group .wpcf7-form-control.wpcf7-radio {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}
.radio-group-rental .wpcf7-form-control.wpcf7-radio {
  display: flex;
  gap: 50px;
  justify-content: center;
}
.radio-group-rental .wpcf7-list-item {
  margin: 0;
}
.radio-group label span {
  display: inline-block;
  width: 300px;
  padding: 20px;
  background: rgba(20, 20, 20, 0.05);
  text-align: center;
  cursor: pointer;
  border-radius: 50px;
  font-weight: 500;
  font-size: 18px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  transition: background 0.3s ease;
  position: relative;
}
.radio-group-rental label span {
  display: block;
  position: relative;
  padding: 25px 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  width: 160px;
  height: 160px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  color: rgba(18, 18, 18, 0.8);
  font-size: 16px;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
}
.radio-group-rental .wpcf7-list-item.first label span {
  background: url(../img/Independently-bg.svg) no-repeat top 40px center, rgba(20, 20, 20, 0.05);
}
.radio-group-rental .wpcf7-list-item.last label span {
  background: url(../img/control-ico.svg) no-repeat top 40px center, rgba(20, 20, 20, 0.05);
}
.radio-group-rental .wpcf7-list-item.first input[type="radio"]:checked + span {
  background: url(../img/Independently-bg.svg) no-repeat top 40px center, #DBAD50;
}
.radio-group-rental .wpcf7-list-item.last input[type="radio"]:checked + span {
  background: url(../img/control-ico.svg) no-repeat top 40px center, #DBAD50;
}
.radio-group-rental label span::after {
  position: absolute;
  content: '';
  top: -14px;
  right: -14px;
  width: 32px;
  height: 32px;
  background: url(../img/tire-ico.svg) no-repeat center, #ccc;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 50%;
}
.radio-group-rental .wpcf7-list-item input[type="radio"]:checked + span::after {
  background: url(../img/checked-ico.svg) no-repeat center, linear-gradient(88.33deg, #B0FF8B -7.64%, #0E6200 145.94%);
  ;
}
.radio-group input[type="radio"], .radio-group-rental input[type="radio"] {
  display: none;
}
.radio-group .wpcf7-list-item.last label span {
  cursor: default;
}
.radio-group input[type="radio"]:checked + span {
  background: #DBAD50;
  box-shadow: 0px 2px 2px 0px #0000004D;
}
.cf7mls-btns {
  margin: 0 auto;
  max-width: fit-content;
}
.cf7mls-btns .cf7mls_next.action-button {
  position: relative;
  padding: 11px 64px 11px 24px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 500;
}
.cf7mls-btns .cf7mls_next.action-button::after {
  position: absolute;
  content: url(../img/btn-next-arrow.svg);
  top: 11px;
  right:20px;
  transition: all 0.3s ease-in-out;
}
.cf7ms-progress {
  display: flex;
  gap: 2px;
  justify-content: center;
}
.cf7ms-step {
  height: 4px;
  width: 30px;
  background: rgba(20, 20, 20, 0.24);
  transition: all 0.3s ease;
  border-radius: 2px;
}
.cf7ms-step.active {
  width: 48px;
  background: #141414;
}

label br, .form__block br {
  display: none;
}
.quiz__wrapper form.cf7mls input.wpcf7-form-control.wpcf7-submit {
  margin: 50px auto;
  max-width: fit-content;
  padding: 11px 64px 11px 24px;
  background: url(../img/btn-next-arrow.svg) no-repeat center right 20px, #DBAD50;
  border-radius: 50px;
  font-size: 16px;
  border: 1px solid #E4ACB4;
  float: none;
}
.form__block > p {
  display: flex;
  gap: 12px;
  max-width: 100%;
}
.form__block .wpcf7-form-control {
  margin-top: 18px;
  padding: 20px;
  max-width: 230px;
  border: 1px solid #FFFFFF;
  border-radius: 1px;
  color: rgba(18, 18, 18, 1);
  font-size: 16px;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  background: transparent;
  cursor: pointer;
}
.form__block label {
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  color: rgba(18, 18, 18, 1);
}
input::placeholder {
  color: rgba(18, 18, 18, 0.8);
}
.wpcf7 form .wpcf7-response-output {
  margin-top: 0;
}

.apartments {
  padding: 100px 0;
}
.apartments-slider {
  padding-bottom: 40px;
}
.apartments__item {
  height: auto;
  min-height: 373px;
  display: flex;
  padding: 18px 20px;
  background: url(../img/apartments-bg.png), var(--main-color);
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 24px;
  background-position: right bottom;
}
.apartment-filters {
  display: flex;
  gap: 24px;
  margin-bottom: 24px;
}
.apartment-filter-btn {
  padding: 18px 38px;
  display: flex;
  align-items: center;
  background: transparent;
  border: 1px solid #FFFFFF;
  border-radius: 30px;
  font-size: 18px;
  font-weight: 400;
  color: #fff;
  cursor: pointer;
}
.apartment-filter-btn p, .apartment-filter-btn b {
  display: block;
}
.apartment-filter-btn p {
  padding-right: 16px;
  border-right: 0.5px solid rgba(255, 255, 255, 0.5)
}
.apartment-filter-btn b {
  padding-left: 16px;
}
.apartment-filter-btn.active {
  background: #DBAD50;
  color: #121212;
  font-weight: 600;
}
.apartment__inner {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}
.apartment__gallery {
  max-width: 400px;
  width: 400px;
  height: 100%;
}
.apartment__gallery .splide__track {
  height: 100%;
}
.apartment__gallery li {
  max-width: 100%;
}
.apartment__gallery li img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 16px;
}
.apartment__content {
  position: relative;
  max-width: calc(100% - 424px);
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.apartment__plane {
  width: 185px;
  height: 220px;
  overflow: hidden;
  border-radius: 5px;
}
.apartment__plane-img {
  position: absolute;
  transition: all 0.3s ease-in-out;
  width: 0;
  height: 0;
}
.apartment__plane.active .apartment__plane-img {
  width: auto;
  height: 370px;
  top: -15px;
  z-index: 2;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}
.plane-preview {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 5px;
}
.apartment__top {
  display: flex;
  gap: 55px;
  align-items: center;
}
.apartment__top-title {
  font-size: 21px;
  color: var(--text-color);
}
.apartment__top-title b {
  font-weight: 700;
}
.apartment__top-desc {
  display: flex;
  align-items: center;
  gap: 8px;
}
.apartment__top-desc p {
  padding: 13px 16px 13px 50px;
  border: 1px solid #121212;
  font-size: 14px;
  font-weight: 600;
  border-radius: 8px;
}
.apartment__top-desc p:first-child {
  background: url(../img/fully.svg) no-repeat top 13px left 16px, rgba(18, 18, 18, 0.08);
}
.apartment__top-desc p:last-child {
  background: url(../img/sea.svg) no-repeat top 12px left 16px, rgba(18, 18, 18, 0.08);
}
.apartment__gallery .splide__arrow {
  width: 24px;
  height: 24px;
  opacity: 1;
  top: auto;
  bottom: 14px;
}
.apartment__gallery .splide__arrow svg {
  background-size: 13px;
}
.apartment__gallery .splide__arrow--next {
  right: 10px;
}
.apartment__gallery .splide__arrow--prev {
  left: 10px;
}
.apartment__gallery .splide__pagination {
  bottom: 26px;
}
.apartment__squares {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 0;
}
.apartment__squares li {
  padding-right: 12px;
  border-right: 0.5px solid rgba(18, 18, 18, 0.5);
  margin-right: 12px;
}
.apartment__squares li:first-child {
  padding-left: 0;
}
.apartment__squares li:last-child {
  border: none;
  margin-right: 0;
}
.apartment__main-content {
  display: flex;
  align-items: flex-start;
  gap: 24px;
}
.apartment__description {
  width: calc(100% - 185px);
  padding: 16px;
  background: #fff;
  border-radius: 16px;
  margin-bottom: 90px;
}
.apartment__description-text {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 400;
}
.apartment__price-block {
  margin-top: 16px;
  display: flex;
  align-items: center;
  gap: 5px;
}
.apartment__old-price {
  color: #5D5D5D;
  text-decoration: line-through;
  font-size: 16px;
  font-weight: 500;
}
.apartment__price {
  color: var(--text-color);
  font-size: 21px;
  font-weight: 600;
}
.apartments__link-block {
  position: absolute;
  right: 0;
  bottom: 20px;
}
.apartments__link-block a {
  text-transform: inherit;
}

.choose {
  padding: 80px 0;
  background: url(../img/choose-bg.jpg) no-repeat center;
  background-size: cover;
}
.choose__wrapper {
  padding: 24px 30px;
  margin: 0 auto;
  max-width: 940px;
  border-radius: 24px;
  background: rgba(244, 244, 244, 0.8);
  backdrop-filter: blur(9px);
  text-align: center;
}
.title__block.choose_title {
  color: var(--main-color);
  font-size: 38px;
  font-weight: 400;
  text-transform: uppercase;
}
.title__block.choose_title span {
  font-family: "Poppins", sans-serif;
  text-transform: initial;
}
.choose__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
}
.choose__item-title {
  margin: 40px 0 15px;
}
.choose__item-text {
  text-transform: uppercase;
  font-size: 18px;
  font-weight: 600;
}
.choose__item:nth-child(3n + 1) {
  min-width: 160px;
  text-align: left;
  text-transform: uppercase;
  font-size: 18px;
  font-weight: 600;
}
.choose__item:nth-child(3n + 2) {
  width: 30%;
  min-width: 300px;
}
.choose__item:nth-child(3n) {
  width: 30%;
  min-width: 300px;
}
.choose__pluses {
  padding: 8px 20px;
  background: #DBAD50;
  border: 1px solid #FFFFFF;
  backdrop-filter: blur(20px);
  font-size: 18px;
  font-weight: 600;
  text-align: center;
  line-height: 1.3;
  border-radius: 50px;
}
.choose__item p {
  position: relative;
  padding-left: 35px;
  display: inline;
}
.choose__not {
  padding: 8px 20px;
  background: rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(20px);
  font-size: 18px;
  font-weight: 600;
  text-align: center;
  line-height: 1.3;
  border-radius: 50px;
}
.choose__not p::before {
  position: absolute;
  content: url(../img/cross-ico.svg);
  top: 3px;
  left: 0;
}
.choose__item:nth-child(3n + 5) p::before {
  position: absolute;
  content: '';
  top: 3px;
  left: 0;
}
.choose__item:nth-child(5) p::before {
  content: url(../img/location-ico.svg);
}
.choose__pluses:nth-child(8) p::before {
  content: url(../img/brend-ico.svg);
}
.choose__pluses:nth-child(11) p::before {
  content: url(../img/percent-ico.svg);
}
.choose__pluses:nth-child(14) p::before {
  content: url(../img/status-ico.svg);
}
.choose__pluses:nth-child(17) p::before {
  content: url(../img/key-guarantees-ico.svg);
}
.choose__btn {
  margin: 40px auto 0;
  background: #141414;
  color: #DBAD50;
  text-transform: initial;
}
.choose__btn::after {
  content: url(../img/arrow-btn-yellow.svg);
}
.choose__btn:hover {
  color: var(--text-color);
}
.choose__btn:hover::after {
  filter: brightness(0) saturate(100%);
}

.reviews {
  padding: 64px 0;
}
.reviews__item-block {
  position: relative;
  padding: 28px 22px;
  background: #fff;
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
  border-radius: 24px;
}
.reviews__item-block p {
  margin-bottom: 26px;
  font-size: 17px;
}
.reviews__item {
  padding: 0 0 24px 24px;
}
.reviews__img {
  margin-left: -40px;
  margin-bottom: -50px;
  height: 390px;
  overflow: hidden;
  border-radius: 16px;
}
.reviews__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.reviews .splide__track {
  padding-bottom: 5px;
}

.support {
  padding: 80px 0;
  background: 
  linear-gradient(rgba(244, 244, 244, 0.8), rgba(244, 244, 244, 0.8)),
  url(../img/support-bg.jpg) no-repeat center;
  background-size: cover;
}
.support__title {
  margin-bottom: 40px;
  text-align: center;
  text-transform: uppercase;
  color: var(--main-color);
}
.support__title span {
  font-family: "Poppins", sans-serif;
  text-transform: initial;
}
.support__list {
  display: flex;
  justify-content: space-between;
  gap: 23px;
}
.support__item {
  width: calc(25% - 20px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  text-align: center;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
}

.gallery {
  padding: 64px 0 64px;
}
.gallery .splide__slide {
  overflow: hidden;
  border-radius: 16px;
}
.gallery .splide__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 16px;
}
.gallery .splide__slide:nth-child(odd) {
  padding-bottom: 15px;
}
.gallery .splide__slide:nth-child(even) {
  padding-top: 15px;
}

.form {
  padding: 24px 0 64px;
}
.form__title {
  text-align: center;
  margin-bottom: 24px;
}
.form__title span {
  font-family: "Poppins", sans-serif;
  text-transform: initial;
  color: #fff;
}
.form__wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: auto;
  min-height: 373px;
  padding: 26px 30px;
  background: url(../img/form-bg.svg), var(--main-color);
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 24px;
  background-position: left bottom;
}
.contact-form__block {
  display: flex;
  justify-content: space-between;
  gap: 45px;
}
.form__image {
  border-radius: 25px;
  max-width: 250px;
  max-height: 235px;
}
.contact__block > p {
  display: flex;
  gap: 15px;
}
.contact-form__block .radio-group .wpcf7-form-control.wpcf7-radio {
  display: flex;
  gap: 6px;
  justify-content: flex-start;
  flex-wrap: nowrap;
}
.contact-form__block .radio-group label span {
  max-width: 202px;
  padding: 20px 10px;
  font-size: 16px;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  color: #505050;
}
.contact-form__block .radio-group input[type="radio"]:checked + span {
  color: var(--text-color);
}
.contact-form__block form label {
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  color: rgba(18, 18, 18, 1);
}
.contact__block .wpcf7-form-control:not([type="submit"]) {
  width: 100%;
  margin-top: 18px;
  padding: 20px 16px;
  background: #fff;
  border: 1px solid #9A9A9A;
  border-radius: 4px;
  color: #121212;
}
.contact__block .wpcf7-form-control:not([type="submit"])::placeholder {
  color: rgba(48, 48, 48, 0.5);
}
.contact__block {
  margin-bottom: 24px;
}
.label__budget {
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  color: rgba(18, 18, 18, 1);
  margin-bottom: 16px;
}
.contact-form__block .wpcf7-form {
  position: static;
}
.contact-form__block .wpcf7-form-control.wpcf7-submit {
  position: absolute;
  bottom: 20px;
  left: 0;
  text-transform: inherit;
  background: url(../img/btn-arrow.svg) no-repeat center right 20px, #DBAD50;
  cursor: pointer;
}
.contact-form__block .wpcf7-form-control.wpcf7-submit:hover {
  color: #121212;
  opacity: 0.7;
}
.form__list {
  display: flex;
  gap: 8px;
  justify-content: flex-end;
}
.form__item {
  padding: 7px 11px;
  display: flex;
  align-items: center;
  gap: 5px;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 400;
  background: #141414;
  border-radius: 4px;
}
.form__wrapper .wpcf7 form .wpcf7-response-output {
  max-width: fit-content;
  margin-left: auto;
  font-size: 14px;    
  border: none;
  color: rgb(70, 180, 80);
}
.wpcf7 form.invalid .wpcf7-response-output {
  color: #ffb900;
  border: none;
}
.form__wrapper .wpcf7-not-valid-tip {
  font-size: 14px;
}

.footer {
  padding: 24px 0;
  background: var(--accent-color);
}
.footer__wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer__logo {
  display: block;
  max-width: fit-content;
}
.footer__contact {
  display: flex;
  gap: 16px;
}
.footer__link-block {
  display: flex;
  align-items: center;
  padding: 12px;
  background: #fff;
  font-size: 13px;
  font-weight: 600;
  border-radius: 100px;
  gap: 12px;
}
.footer__btn {
  background: #fff;
  border: 1px solid #E4ACB4;
}
.btn.footer__btn:hover::after {
  filter: none;
}
.footer__btn:hover {
  background: #fff;
  opacity: 0.7;
  color: #0F0912;
}
.page-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 165px);
}
.page-title {
  color: #fff;
  text-align: center;
}
