@font-face {
  font-family: 'Gilroy';
  src: url('../fonts/Gilroy-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Gilroy';
  src: url('../fonts/Gilroy-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Gilroy';
  src: url('../fonts/Gilroy-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}


:root {
  --accent-color: #C68762;
  --text-color: #323232;
  --text-color-dark: #3F3834;
  --dark-color: #1E1A1E;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  padding: 0;
  font-size: 24px;
  line-height: 1.38;
  font-weight: 400;
  color: var(--text-color);
  background: #f2f2f2;
  font-family: "Gilroy", sans-serif;
}
.container {
  max-width: 1620px;
  margin: 0 auto;
}
a {
  text-decoration: none;
  color: var(--text-color);
  transition: all 0.3s ease-in-out;
}
ul {
  list-style-type: none;
}
ul, h1, h2, h3, h4, p {
  margin: 0;
  padding: 0;
}
h1, h2, h3, h4 {
  font-family: "Days One", sans-serif;
}
input, select, textarea {
  outline:none;
}
img {
  max-width: 100%;
}
.mobile, .through {
  display: none;
}
.through {
	padding-right: 18px;
	position: absolute;
	top: -35px;
	right: 0;
	font-size: 12px;
	color: #494949;
	background: url(../img/fluent-mdl2_touch.svg) no-repeat top right;
}

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

.block-to-animate.animate-fadeIn {
  opacity: 1;
}
.block-to-slide {
  opacity: 0;
  transform: translateY(10px); /* старт трохи нижче */
  transition: opacity 1.9s ease-out, transform 1.9s ease-out;
}

.block-to-slide.animate-slideIn {
  opacity: 1;
  transform: translateY(0);
}

/* затримка для кожного елемента */
.block-to-slide:nth-child(1) { transition-delay: 0.1s; }
.block-to-slide:nth-child(2) { transition-delay: 0.4s; }
.block-to-slide:nth-child(3) { transition-delay: 0.7s; }
.block-to-slide:nth-child(4) { transition-delay: 1.0s; }
.block-to-slide:nth-child(5) { transition-delay: 1.3s; }
.block-to-slide:nth-child(6) { transition-delay: 1.6s; }
.block-to-slide:nth-child(7) { transition-delay: 1.9s; }


.btn {
  position: relative;
  max-width: fit-content;
  padding: 22px 88px 22px 48px;
  display: block;
  font-family: "Days One", sans-serif;
  font-size: 24px;
  color: #fff;
  border-radius: 20px;
  background: linear-gradient(90deg, #C68762 0%, #604130 50%, #C68762 100%);
  background-size: 200% 100%;
  background-position: left;
  transition: background-position 0.3s ease-in-out;
  white-space: nowrap;
}
.btn:hover {
  background-position: right;
}
.btn::after {
  position: absolute;
  content: url(../img/btn-bg.svg);
  top: 50%;
  right: 50px;
  transform: translate(0, -50%);
}

.title__block {
 font-size: 60px;
 line-height: 1.27;
 color: #3F3834;
}
.title__block span {
  color: #C68762;
}
.underline {
  position: absolute;
  bottom: -2px;
  left: 0;
  height: 1px;
  background-color: var(--text-color);
  width: 0;
  transition: all 0.5s ease;
}

.header {
  padding: 15px 0;
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  background: #f2f2f2;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}
.header.dark {
  background: var(--text-color-dark);
}
.dynamics, .header.dark .statics {
  display: none;
}
.header.dark .dynamics {
  display: block;
}
.header__wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header__block {
  width: calc(100% - 360px);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header__wrapper .statics {
  max-width: 156px;
}
.menu {
  position: relative;
}
.main-navigation .menu {
  display: flex;
  align-items: center;
  gap: 50px;
}
.menu-item {
  font-size: 18px;
  font-weight: 400;
}
.menu-item a {
  transition: all 0.3s ease;
  white-space: nowrap;
}
.header.dark .menu-item a {
  color: #EFEFEF;
}
.header.dark .underline {
  background-color: #EFEFEF;
}
.header__wrapper-phone {
  display: flex;
  align-items: center;
  gap: 20px;
}
.header__wrapper-phone.mobile {
	display: none;
}
.header__phone {
  font-weight: 600;
  font-size: 18px;
  color: #000;
  white-space: nowrap;
}
.header.dark .header__phone {
  color: #fff;
}
.header__phone-ico {
  border-radius: 50%;
  background: url(../img/call-ico.svg), #3F3834;
  background-repeat: no-repeat;
  background-position: center;
  animation: phone-ring 5s infinite;
  transform-origin: 50% 50%
}
.header.dark .header__phone-ico {
  background: url(../img/call-ico.svg), var(--accent-color);
  background-repeat: no-repeat;
  background-position: center;
}
.header__phone-ico a {
  display: block;
  width: 61px;
  height: 61px;
}

@keyframes phone-ring {
  0%, 30%, 100% {
    transform: rotate(0deg);
  }

  2% { transform: rotate(20deg); }
  4% { transform: rotate(-20deg); }
  6% { transform: rotate(20deg); }
  8% { transform: rotate(-20deg); }
  10% { transform: rotate(15deg); }
  12% { transform: rotate(-15deg); }
  14% { transform: rotate(10deg); }
  16% { transform: rotate(-10deg); }
  18% { transform: rotate(5deg); }
  20% { transform: rotate(-5deg); }

  30%, 100% {
    transform: rotate(0deg);
  }
}
.burger-menu {
  display: none;
}

.hero__wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}
.hero__text-block {
  padding: 98px 0 138px;
  max-width: 715px;
}
.hero__title {
  max-width: 530px;
  font-size: 70px;
  line-height: 1.27;
  font-weight: 400;
}
.hero__title span {
  color: var(--accent-color);
}
.hero__text {
  padding: 50px 0 60px;
  font-size: 30px;
}
.hero__img-wrapper {
  width: 50%;
}
.hero__img-wrapper {
  display: flex;
  justify-content: flex-end;
  gap: 30px;
  height: 815px;
  overflow-y: scroll; 
  overflow-x: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.hero__img-wrapper::-webkit-scrollbar {
  display: none;
}
.hero__img-block {
  display: flex;
  flex-direction: column;
  gap: 30px;
	width: 50%;
}
.hero__img-block img {
  border-radius: 10px;
}
.after__hero {
  padding: 15px 0;
  background: var(--dark-color);
}
.after__hero-list {
  display: flex;
}
.after__hero-item {
  display: flex;
  padding: 25px 0;
  color: #fff;
  font-size: 30px;
}
.after__hero-item > div {
  display: flex;
  align-items: center;
  gap: 22px;
  min-width: 250px;
  justify-content: flex-start;
}
.after__hero-item:first-child, .after__hero-item:last-child {
  width: 30%;
}
.after__hero-item:last-child {
  justify-content: flex-end;
}
.after__hero-item:nth-child(2) {
  width: 40%;
  justify-content: center;
  border-left: 1px solid #BFAA9E;
  border-right: 1px solid #BFAA9E;
}

.about {
  padding: 100px 0 75px;
}
.about__block {
  display: flex;
  justify-content: space-between;
  gap: 50px;
}
.about video {
  border-radius: 20px;
}
.about__video {
  position: relative;
  cursor: pointer;
}
.video__play {
  position: absolute;
  top: calc(50% - 53px);
  left: calc(50% - 53px);
  width: 106px;
  height: 106px;
  border-radius: 50%;
  background: url(../img/play-ico.svg) no-repeat center, linear-gradient(90deg, #C68762 0%, #604130 100%);
  z-index: 2;
  cursor: pointer;
}
.video__play span {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
}
.video__play span::after,
.video__play span::before {
  position: absolute;
  content: '';
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  animation: pulse 2.5s ease-in-out infinite;
}

.video__play span::after {
  top: -17px;
  left: -17px;
  width: 140px;
  height: 140px;
  background-image: url(../img/Ellipse-24.png);
  /* animation-delay: 0.3s; */
}

.video__play span::before {
  top: -28px;
  left: -28px;
  width: 160px;
  height: 160px;
  background-image: url(../img/Ellipse-25.png);
}

/* Анімація пульсації */
@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.05);
    opacity: 0.7;
  }
}

.about__block-text {
  max-width: 600px;
  font-size: 24px;
}
.about .title__block {
  margin-bottom: 30px;
}
.about__gallery {
  margin-top: 65px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px 15px;
}
  .about__gallery div {
    width: calc(33% - 7px);
    height: 300px;
    overflow: hidden;
  }
.about__gallery div:nth-child(4), .about__gallery div:nth-child(5), .about__gallery div:nth-child(6), .about__gallery div:nth-child(7) {
	width: calc(25% - 12px);
}
.about__gallery img {
  border-radius: 10px;
  max-height: 525px;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

.benefits {
  padding: 75px 0;
}
.benefits__list-wrapper.mobile {
  display: none;
}
.benefits__wrapper {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 80px;
}
.benefits__block {
  max-width: 470px;
}
.benefits__block .title__block {
  margin-bottom: 30px;
}
.benefits__list-wrapper {
  display: flex;
  gap: 30px;
}
.benefits__list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.benefits__list:nth-child(2), .benefits__list:nth-child(4) {
  margin-top: 40px;
}
.benefits__item {
  padding: 15px;
  width: 245px;
  min-height: 222px;
  border: 1px solid #AAA;
  border-radius: 10px;
  font-size: 20px;
  font-family: "Days One", sans-serif;
  color: #000;
}
.benefits__item img {
  border-radius: 10px;
}
.benefits__item-ico {
  margin-bottom: 20px;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 10px;
}
.benefits__item-img {
  padding: 0;
  border: none;
}

.services {
  padding: 75px 0;
}
.services__splide {
  margin-top: 60px;
  visibility: visible;
}
.services__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 30px;
  transition: all 0.6s ease-in-out;
}
.services__item {
  padding: 30px;
  width: calc(33% - 15px);
  border-radius: 20px;
  border: 1px solid #1E1A1E;
  transition: all 0.6s ease-in-out;
}
.services__item-last {
	width: calc(67% - 15px);
    padding: 60px;
    border-radius: 20px;
    border: 1px solid #1E1A1E;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.services__item-title-last {
	font-size: 40px;
	color: #C68762;
}
.services__item-text-last {
	font-size: 20px;
}
.services__item-text-last p:not(:last-child) {
	margin-bottom:10px;
}
.services__item-img {
  width: 100%;
  height: 340px;
  min-height: 340px;
}
.services__item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.services__item:hover {
  background: var(--dark-color);
}
.services__item-block {
  overflow: hidden;
  max-height: 490px;
  border-radius: 20px 20px 0 0;
}
.services__item-block-inner {
  display: flex;
	align-self: stretch;
	height: 100%;
  flex-direction: column;
  transform: translateY(0);
  transition: transform 0.6s ease-in-out;
}
.services__item:hover .services__item-block-inner {
  transform: translateY(-20%);
}
.services__item img {
  border-radius: 20px;
}
.services__item-title {
  margin: 20px 0 10px;
  color: var(--accent-color);
  font-size: 30px;
  line-height: 1.1;
  transition: all 0.6s ease-in-out;
}
.services__item:hover .services__item-title {
  color: #fff;
}
.services__item-text {
	min-height: 80px;
  margin-bottom: 20px;
  font-size: 16px;
  color: #484848;
  transition: all 0.6s ease-in-out;
}
.services__item:hover .services__item-text {
  color: #DBDBDB;
}
.btn-light {
  background: #fff;
  color: var(--accent-color);
  transition: all 0.3s ease-in-out;
  font-size: clamp(16px, 2vw, 20px);
}
.btn-light:hover {
  background: #fff;
  color: var(--accent-color);
  transform: translateY(2px);
  box-shadow: 0 2px 0 rgba(0,0,0,0.02);
}
.btn.btn-light:hover:after, .btn.btn-light:after {
  content: url(../img/btn-bg-orange.svg);
}
.modal__content .btn-light {
	max-width: 100%;
	background: url(../img/btn-bg-orange.svg) no-repeat center right 30px, #fff;
  font-size: clamp(15px, 2vw, 20px);
  line-height: 1;
	border: none;
	cursor:pointer;
}
.modal__content .btn.btn-light:hover {
	background-position: right 30px center;
}
.wpcf7-form {
	max-width: 440px;
	margin: 0 auto;
}
.wpcf7-form input {
	width: 100%;
}

.work {
  padding: 10px 0 20px;
}
.work__wrapper {
  display: flex;
  justify-content: space-between;
  gap: 50px;
}
.work__block {
  margin-top: 40px;
}
.work__text {
  margin: 40px 0 60px;
  max-width: 665px;
  font-size: 24px;
}
.work__text p {
  margin-bottom: 20px;
}
.work__list {
  padding: 66px 0;
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 55px;
  background: url(../img/Line-3.png) no-repeat top left 100px;
}
.work__item {
  display: flex;
  align-items: center;
  gap: 46px;
}
.work__item-num {
  width: 206px;
  padding: 12px;
  display: block;
  font-size: 24px;
  text-align: center;
  background: #fff;
  border-radius: 20px;
  color: var(--accent-color);
  font-family: "Days One", sans-serif;
}
.work__item-name {
  font-size: 24px;
  font-weight: 600;
}

.results {
  padding: 75px 0;
}
.results__slider {
  margin-top: 60px;
}
.results__slide {
  display: flex;
  gap: 30px;
  justify-content: flex-start;
}
.results__slide-text {

  border: 1px solid #C8C8C8;
  border-radius: 10px;
  font-size: 24px;
  line-height: 1.27;
}
.results__slide-text-wrapper {
  height: 580px;
  /* overflow-x: hidden;
	overflow-y: auto; */
  padding: 55px 55px 0;
  margin-bottom: 55px;
}
.results__slide-text p {
  margin-bottom: 15px;
}
.results__slide-text p:last-child {
  margin-bottom: 0;
}
.results__slide-text ul li {
  margin-bottom: 10px;
}
.results__slide-text .min-text {
  font-size: 18px;
}
.results__slide-text h4 {
  margin-bottom: 20px;
  font-size: 30px;
}
.results__slide-text ul {
  list-style-type: initial;
  margin-left: 25px;
}

.compare-container {
  position: relative;
  width: 100%;
  max-width: 500px;
  height: 750px;
  overflow: hidden;
  border-radius: 20px;
}
.compare-img {
  height: 50%;
  overflow: hidden;
}
.compare-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.splide__arrow svg {
  display: none;
}
.splide__arrow {
  opacity: 1;
  top: -150px;
  transform: none;
  width: 90px;
  height: 90px;
  border: 1px solid #fff;

  transition: all 0.3s ease-in-out;
}
.splide__arrow--prev:hover:not(:disabled) {
  background: url(../img/arrow-left-white.svg) no-repeat center, #C68762;
  border: 1px solid #C68762;
}
.splide__arrow--next:hover:not(:disabled) {
  background: url(../img/arrow-right-white.svg) no-repeat center, #C68762;
  border: 1px solid #C68762;
}
.splide__arrow--prev {
  left: auto;
  right: 150px;
}
.splide__arrow--prev:not(:disabled) {
  background: url(../img/arrow-left.svg) no-repeat center, #fff;
}
.splide__arrow--next:not(:disabled) {
  background: url(../img/arrow-right.svg) no-repeat center, #fff;
}
.splide__arrow--next:disabled {
  opacity: 1;
  border: 1px solid #888888;
  background: url(../img/arrow-right.svg) no-repeat center, transparent;
  filter: grayscale(100%);
}
.splide__arrow--prev:disabled {
  opacity: 1;
  border: 1px solid #888888;
  background: url(../img/arrow-left.svg) no-repeat center, transparent;
  filter: grayscale(100%);
}

.team {
  padding: 75px 0;
}
.team__slider {
  visibility: visible;
  max-width: 66%;
}
.team__block {
  max-width: 33%;
  font-size: 24px;
}
.team__block .title__block {
  margin-bottom: 35px;
}
.team__wrapper {
  display: flex;
  gap: 30px;
}
.team__list {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}
.team__item {
  position: relative;
  max-width: 100%;
  width: calc(50% - 18px);
  overflow: hidden;
  border-radius: 10px;
}
.team__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.team__item-text {
  padding: 20px 30px;
  position: absolute;
  bottom: 15px;
  right: 9px;
  left: 9px;
  background: rgba(219, 219, 219, 0.15);
  backdrop-filter: blur(50px);
  color: #000;
  border-radius: 10px;
  transition: color 0.3s ease-in-out;
  text-align: center;
}
.team__item-text .name {
  font-size: 20px;
  font-weight: 600;
}
.team__item-text .position {
  margin-top: 4px;
  font-size: 16px;
  font-weight: 400;
}
.team__item:hover .team__item-text {
  color: #fff;
}

.reviews {
  padding: 75px 0 190px;
}
.reviews__wrapper {
  display: flex;
  gap: 30px;
}
.reviews__block {
  max-width: 385px;
}
.reviews__list {
  position: relative;
  max-width: calc(100% - 415px);
}
.reviews__block .title__block {
  margin-bottom: 25px;
}
.reviews__list .ti-widget.ti-goog .ti-review-item>.ti-inner {
  background: linear-gradient(to bottom, #1E1A1E, #604130) !important;
  height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: none !important;
}
.reviews__list .ti-reviews-container .ti-controls {
  top: auto !important;
  bottom: -40px;
}
.reviews__list .ti-platform-icon.ti-with-tooltip {
  display: none;
}
.reviews__list .ti-widget.ti-goog .ti-controls .ti-next, .reviews__list .ti-widget.ti-goog .ti-controls .ti-prev {
  width: 90px;
  height: 90px;
  background-color: #fff;
  outline-color: #fff;
  border: 1px solid #fff;
  border-radius: 50%;
}
.reviews__list .ti-widget.ti-goog .ti-controls .ti-next::before, 
.reviews__list .ti-widget.ti-goog .ti-controls .ti-prev::before {
  content: none;
}
.reviews__list .ti-widget.ti-goog .ti-controls .ti-prev {
  background: url(../img/arrow-left.svg) no-repeat center, #fff;
  left: calc(50% - 120px);
}
.reviews__list .ti-widget.ti-goog .ti-controls .ti-next {
  background: url(../img/arrow-right.svg) no-repeat center, #fff;
  right: calc(50% - 120px);
}
.reviews__list .ti-widget.ti-goog .ti-controls .ti-prev:hover {
  background: url(../img/arrow-left-white.svg) no-repeat center, #C68762;
  border: 1px solid #C68762;
  background-color: #C68762 !important;
}
.reviews__list .ti-widget.ti-goog .ti-controls .ti-next:hover {
  background: url(../img/arrow-right-white.svg) no-repeat center, #C68762;
  border: 1px solid #C68762;
  background-color: #C68762 !important;
}


.faq {
  padding: 75px 0;
	position: relative;
}
.fq-through {
	cursor:pointer;
}
.faq__tabs {
  display: flex;
  justify-content: flex-start;
  gap: 10px;
  margin: 50px 0 40px;
	max-width: 100%;
	overflow-x: auto;
	overflow-y: hidden;
	-webkit-overflow-scrolling: touch;
  }
  .faq__tabs::-webkit-scrollbar {
    display: none;
  }
  .faq__tabs {
    scrollbar-width: none;
  }
.faq__tab {
  padding: 10px 20px;
  border: 1px solid var(--text-color-dark);
  background: #fff;
  color: var(--text-color-dark);
  font-size: 16px;
  font-family: "Days One", sans-serif;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  border-radius: 10px;
  white-space: nowrap;
}
.faq__tab:not(.active):hover {
  border-color: var(--accent-color);
  color: var(--accent-color);
}
.faq__tab.active {
  background: var(--text-color-dark);
  color: #fff;
}
.faq__list {
  display: none;
}
.faq__list.active {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0 30px;
}
.faq__item {
  width: calc(50% - 15px);
  border-bottom: 1px solid #BFBFBF;
  padding: 30px 0;
}
.faq__item:first-child, .faq__item:nth-child(2) {
  border-top: 1px solid #BFBFBF;
}
.faq__question {
  position: relative;
  font-weight: 600;
  cursor: pointer;
}
.faq__question::after {
  position: absolute;
  content: '';
  width: 55px;
  height: 55px;
  top: -10px;
  right: 0;
  background: url(../img/faq-plus.svg) no-repeat center, #EAEAEA;
  border-radius: 10px;
  transition: all 0.3s ease-in-out;
}
.faq__item.active .faq__question::after {
  background: url(../img/faq-minus.svg) no-repeat center, #1E1A1E;
}
.faq__answer {
  padding-top: 0;
  font-size: 18px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-in-out;
  color: var(--text-color);
}
.faq__item.active .faq__answer {
  max-height: 200px;
}
.faq__answer p {
  padding-top: 20px;
  padding-right: 60px;
}

.contacts {
  padding: 75px 0 150px;
}
.contacts__wrapper {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}
.contacts__block {
  width: 520px;
  max-width: 100%;
}
.contacts__block .title__block {
  margin-bottom: 38px;
  color: var(--accent-color);
}
.contacts__text-block {
  margin-bottom: 20px;
  width: 100%;
  padding: 15px;
  font-size: 20px;
  color: #000;
  line-height: 1.27;
  background: #fff;
  border-radius: 10px;
}
.contacts__text-block a {
  color: #000;
}
.contacts__text-block .name {
  margin-bottom: 5px;
  font-size: 18px;
  color: #5D5D5D;
}
.contacts__block .btn {
  max-width: 100%;
  text-align: center;
}
.contacts__wrapper iframe {
  max-width: 1050px;
  width: 100%;
}
.contacts__social-list {
  margin-bottom: 40px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
.contacts__social-item {
  width: calc(33% - 10px);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px;
  text-align: center;
  background: #1E1A1E;
  color: #fff;
  border-radius: 10px;
  font-family: "Days One", sans-serif;
  font-size: 16px;
  transition: all 0.3s ease-in-out;
}
.contacts__social-item:hover {
  background: #604130;
}

.footer {
  padding: 20px 0;
  background: var(--dark-color);
  color: #fff;
}
.footer a {
  color: #fff;
}
.footer__center {
  display: flex;
  justify-content: space-between;
  width: 50%;
  max-width: 100%;
}
.footer__center a {
  display: block;
  font-size: 20px;
  text-decoration: underline;
}
.footer__wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.footer__left {
  max-width: fit-content;
  font-size: 16px;
}
.footer__left .footer__logo {
  margin-bottom: 10px;
  display: block;
}
.footer__logo img {
  max-width: 156px;
}
.footer-phone {
  display: flex;
  align-items: center;
  gap: 20px;
}
.footer-phone .header__phone {
  color: #fff;
}
.footer-phone .header__phone-ico {
  background: url(../img/footer-phone.svg), #fff ;
  background-repeat: no-repeat;
  background-position: center;
}
.footer__left-text-mobile {
  display: none;
}

.modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}
.modal.active {
  display: flex;
}
.modal__content {
  padding: 55px;
  border-radius: 20px;
  max-width: 590px;
  width: 90%;
  position: relative;
	color: #fff;
	background: linear-gradient(146.97deg, #1E1A1E 1.66%, #604130 99.12%);
}
.modal__title {
	font-size: 36px;
	text-align:center;
}
.modal__text {
	margin: 20px 0 30px;
	font-size:18px;
	line-height: 1.4;
	text-align: center;
}
.modal__close {
  position: absolute;
  top: 26px;
  right: 32px;
  background: url(/wp-content/uploads/2025/10/close-ico.svg) no-repeat;
  border: none;
	width:22px;
	height: 22px;
  cursor: pointer;
}
input:not([type="submit"]) {
	padding: 15px 20px;
	background: #2F211B;
	border: none;
	color: #CDCDCD;
	font-size: 16px;
	border-radius: 20px;
}
input::placeholder {
	color: #CDCDCD;
	font-size: 16px;
}
.wpcf7-form-control-wrap:first-child input {
	margin-bottom: 15px;
}
.thank-you-page__wrapper {
	margin: 10%;
    min-height: 38vh;
    text-align: center;
}
.thank-you-page__wrapper p {
  margin: 20px 0;
}
.thank-you-page__wrapper .btn {
	margin: 0 auto;
}

.seo-text__content {
  overflow: hidden;
  max-height: 6.5em;
  line-height: 1.6;
  transition: max-height 0.4s ease;
}

.seo-text__content.is-open {
  max-height: 2000px;
}

.seo-text__btn {
  margin-top: 10px;
	color: #C68762;
  cursor: pointer;
  font-weight: 600;
  padding: 0;
}

.seo-text {
  padding: 50px 0;
}
.seo-text__content {
  overflow: hidden;
  max-height: 6.5em;
  line-height: 1.6;
  transition: max-height 0.4s ease;
}
.seo-text__content.is-open {
  max-height: 2000px;
}
.seo-text__btn {
  display: block;
  margin-top: 20px;
	color: #C68762;
  cursor: pointer;
  font-weight: 600;
  padding: 0;
}

.reviews .ti-widget.ti-goog .ti-footer-filter-text {
	display: none;
}

.modal__content .wpcf7 form.invalid .wpcf7-response-output, .modal__content .wpcf7 form.unaccepted .wpcf7-response-output, 
.modal__content .wpcf7 form.payment-required .wpcf7-response-output {
    border-color: transparent;
}
.modal__content .wpcf7 form .wpcf7-response-output {
  margin: 0;
  padding: 0;
}
#bingc-active div.bingc-active-overlay {
  max-width: 100%;
}