@font-face {
    font-family: 'Gotham Pro';
    src: url('../fonts/GothamPro-Bold.eot');
    src: local('../fonts/Gotham Pro Bold'), local('../fonts/GothamPro-Bold'),
        url('../fonts/GothamPro-Bold.eot?#iefix') format('embedded-opentype'),
        url('../fonts/GothamPro-Bold.woff2') format('woff2'),
        url('../fonts/GothamPro-Bold.woff') format('woff'),
        url('../fonts/GothamPro-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'Gotham Pro';
    src: url('../fonts/GothamPro-Black.eot');
    src: local('../fonts/Gotham Pro Black'), local('../fonts/GothamPro-Black'),
        url('../fonts/GothamPro-Black.eot?#iefix') format('embedded-opentype'),
        url('../fonts/GothamPro-Black.woff2') format('woff2'),
        url('../fonts/GothamPro-Black.woff') format('woff'),
        url('../fonts/GothamPro-Black.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
}

@font-face {
    font-family: 'Gotham Pro Narrow';
    src: url('../fonts/GothamProNarrow-Bold.eot');
    src: local('../fonts/Gotham Pro Narrow Bold'), local('../fonts/GothamProNarrow-Bold'),
        url('../fonts/GothamProNarrow-Bold.eot?#iefix') format('embedded-opentype'),
        url('../fonts/GothamProNarrow-Bold.woff2') format('woff2'),
        url('../fonts/GothamProNarrow-Bold.woff') format('woff'),
        url('../fonts/GothamProNarrow-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'Gotham Pro';
    src: url('../fonts/GothamPro-Medium.eot');
    src: local('../fonts/Gotham Pro Medium'), local('../fonts/GothamPro-Medium'),
        url('../fonts/GothamPro-Medium.eot?#iefix') format('embedded-opentype'),
        url('../fonts/GothamPro-Medium.woff2') format('woff2'),
        url('../fonts/GothamPro-Medium.woff') format('woff'),
        url('../fonts/GothamPro-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Gotham Pro';
    src: url('../fonts/GothamPro.eot');
    src: local('../fonts/Gotham Pro'), local('../fonts/GothamPro'),
        url('../fonts/GothamPro.eot?#iefix') format('embedded-opentype'),
        url('../fonts/GothamPro.woff2') format('woff2'),
        url('../fonts/GothamPro.woff') format('woff'),
        url('../fonts/GothamPro.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Gotham Pro Narrow';
    src: url('../fonts/GothamProNarrow-Medium.eot');
    src: local('../fonts/Gotham Pro Narrow Medium'), local('../fonts/GothamProNarrow-Medium'),
        url('../fonts/GothamProNarrow-Medium.eot?#iefix') format('embedded-opentype'),
        url('../fonts/GothamProNarrow-Medium.woff2') format('woff2'),
        url('../fonts/GothamProNarrow-Medium.woff') format('woff'),
        url('../fonts/GothamProNarrow-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}



:root {
  --accent-color: #C28864;
  --text-color: #fff;
  --text-color-dark: #000;
  --dark-color: #1E1A1E;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  padding: 0;
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
  color: var(--text-color-dark);
  background: #fff;
  font-family: 'Gotham Pro', sans-serif;
}
.container {
  max-width: 1470px;
  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;
}
input, select, textarea {
  outline:none;
}
img {
  max-width: 100%;
}
.block__title {
	font-size: clamp(28px, 2.9vw, 54px);
	line-height: 1;
	font-weight: 500;
	color: #3F3834;
}
.block__title span {
	color: var(--accent-color);
}

.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 {
	padding: 24px;
  position: relative;
	max-width: fit-content;
	display: block;
	color: var(--text-color);
	font-size: 20px;
	background: var(--accent-color);
	border-radius: 24px;
	text-align: center;
	line-height: 1.2;
	white-space: nowrap;
}
.btn:hover {
  background: #B57D5B;
}

.header {
  position: fixed;
  top: 15px;
  left: 0;
  width: 100%;
  z-index: 9999;
}
.header__wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
	gap:10px;
}
.header__logo {
  padding: 21px 31px;
  background: #0000004D;
  backdrop-filter: blur(50px);
  border-radius: 24px;
  line-height: 1;
  display: flex;
  align-items: center;
  align-self: stretch;
}
.header__block {
  padding: 10px 10px 10px 40px;
  width: calc(100% - 270px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #0000004D;
  backdrop-filter: blur(50px);
  border-radius: 24px;
}
.nav__wrapper.mobile {
	display: none;
}
.menu {
  position: relative;
}
.menu {
  display: flex;
  align-items: center;
  gap: clamp(15px, 1.6vw, 30px);
}
.menu-item a {
  color: var(--text-color);
  transition: all 0.3s ease;
  white-space: nowrap;
}
.menu-item a:hover {
  color: #DCC0B1;
}

.header__wrapper-phone {
  display: flex;
  align-items: center;
  gap: 20px;
}
.header__wrapper-phone.mobile, .header__wrapper-phone.desktop .header__wrapper-phone.mobile {
  display: none;
}
.header__phone {
  font-weight: 600;
  font-size: 18px;
  color: #000;
  white-space: nowrap;
}
.header__phone-text {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #D9D9D9;
}
p.header__phone {
  color: #D9D9D9;
}
.header__phone-text a {
  font-size: 18px;
  color: var(--text-color);
}
.header__phone-ico {
  border-radius: 50%;
  background: url(../img/call-ico.svg), var(--accent-color);
  background-repeat: no-repeat;
  background-position: center;
  animation: phone-ring 5s infinite;
  transform-origin: 50% 50%;
}
.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, .trp-shortcode-arrow {
  display: none;
}
.header__wrapper .trp-shortcode-switcher {
    padding: 0;
    background: transparent;
    width: auto;
    box-shadow: none;
	border: none;
    border-radius: 0;
}
.header__wrapper .trp-current-language-item__wrapper:not(.trp-hide-arrow) {
	padding: 0;
	cursor: pointer;
}
.header__wrapper .trp-shortcode-anchor:not(.trp-opposite-button) {
    visibility: visible;
    background: #00000029;
    border-radius: 32px;
}
.trp-language-item-name {
	transition: all 0.3s ease-in-out;
}
.header__wrapper .trp-language-item:hover .trp-language-item-name {
    color: #DCC0B1;
}
.header__wrapper .trp-language-item {
    gap: 5px;
    padding: 9px 11px;
    min-height: auto;
	line-height: 1;
}
.header__wrapper .trp-language-item-name {
	color: var(--text-color);
	line-height: 1;
}
.header__wrapper .trp-ls-dropdown.is-open .trp-switcher-dropdown-list {
	width: 185px;
	border-radius: 16px;
    background: #0000004D;
    backdrop-filter: blur(50px);
}
.trp-language-item-img {
	height:16px;
	width: 16px;
	border-radius: 50%;
	overflow: hidden;
}
.trp-language-item-img .trp-flag-image {
	width: 100% !important;
    height: 100% !important;
    object-fit: cover;
}
.trp-shortcode-switcher__wrapper {
    margin-left: auto;
    margin-right: 18px;
	line-height: 1;
}

.hero {
    position: relative;
	margin-bottom: 36px;
	display: flex;
	flex-direction: column;
  height: 52rem;
	max-height: 96vh;
  overflow: hidden;
  padding: 2rem 0 45px;
}
.hero__video,
.hero__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.hero__bg.mobile, .hero__video.mobile, .video__mobile-block {
  display: none;
}
.hero__video {
    object-fit: cover;
}

.hero__bg {
    background-size: cover;
    background-position: center;
}
.hero .container {
	margin-top: auto;
}
.hero__wrapper {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 50px;
}
.blur-block {
	background: #0000004D;
	backdrop-filter: blur(50px);
	border-radius: 32px;
}
.hero__title-block {
	width: 665px;
	padding: 42px;
}
.hero__title {
	font-size: 39px;
	color: var(--text-color);
	line-height: 1.2;
	font-weight: 400;
}
.hero__info-block {
	display: flex;
	gap: 12px;
}
.hero__info-block-item {
	padding: 12px 24px;
	display: flex;
	align-items: center;
	gap: 12px;
	color: #E0E0E0;
	white-space: nowrap;
}
.hero__info-block-item h3 {
	font-size: 22px;
	font-weight: 700;
	color: #fff;
}
.hero .btn {
	max-width: 100%;
	margin-top: 24px;
}

.results {
	padding: 46px 0;
}
.results__item {
	display: flex;
	gap: 18px;
}
.results__item.turn {
	flex-direction: row-reverse;
}
.results__img {
	width: 608px;
  min-width: 42%;
  height: 495px;
  overflow: hidden;
  border-radius: 32px;
}
.results__img-item {
  height: 50%;
}
.results__img img {
	width: 100%;
    height: 100%;
    object-fit: cover;
}
.results__content {
	background: url(/wp-content/uploads/2026/03/background-logo.png) no-repeat top right, #EEEEEE;
    padding: clamp(28px, 2.3vw, 56px) clamp(24px, 2.2vw, 42px);
    border-radius: 32px;
}
.results__title {
	font-size: 36px;
	line-height: 1;
	font-weight: 500;
}
.results__content-text {
	margin-top: 24px;
}
.results__content-text ul, .results__content-text ol, .faq__item ul, .faq__item ol {
  margin: 5px 0 5px 20px
}
.results__content-text ul li, .results__content-text ol li, .faq__item ul li, .faq__item ol li {
  list-style-type: initial;
}
.results__befor, .results__after {
	position: relative;
	padding-left: 44px;
}
.results__after {
	margin-top: 20px;
}
.results__befor:before, .results__after:before {
	position: absolute;
	content: '';
	top: 0;
	left: 0;
}
.results__befor:before {
	content: url(/wp-content/uploads/2026/03/cross-circle.svg);
}
.results__after:before {
	content: url(/wp-content/uploads/2026/03/check.svg);
}
.results__title-befor {
	margin-bottom:18px;
	color: #BC5555;
	line-height: 1.7;
}
.results__title-after {
	margin-bottom:18px;
	color: #4CAF5F;
	line-height: 1.7;
}

.implantation {
	padding: 46px 0;
}
.implantation__list {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
}
.implantation__item {
	width: calc(50% - 12px);
}
.implantation__list-title {
	margin: 24px 0 4px;
	font-size: 18px;
	font-weight: 500;
	line-height: 1.7
}
.implantation__list-text ul {
	display: flex;
	flex-direction: column;
	gap: 9px;
}
.implantation__list-text ul li {
	position: relative;
	padding-left: 50px;
	line-height: 1.7;
}
.implantation__list-text ul li:before {
	position: absolute;
	content: url('/wp-content/uploads/2026/03/page-1.svg');
	top: 0;
	left: 0;
}
.implantation__test-wrapper {
	padding: 23px 22px;
	margin-top: 24px;
	display: flex;
	align-items: center;
	gap: 14px;
	border: 1px solid #C28864;
	border-radius: 32px;
	color: #3F3834;
	font-size: 15px;
	line-height: 1.7;
}
.implantation__test-title {
	margin-bottom: 4px;
	font-size: 20px;
	font-weight: 700;
	color: #000;
}
.implantation__test-wrapper .btn {
	margin-left: auto;
}
.implantation__item-img {
	padding: 14px 28px;
	display: flex;
	align-items: center;
	gap: 15px;
}
.implantation__col {
	display: flex;
	flex-direction: column;
	gap: 16px;
}
.implantation__col img {
	border-radius: 30px;
}

.decision {
	margin: 38px 0;
	padding: 40px 0 88px;
	background: #EEEEEE;
}
.decision__wrapper {
	padding-top: 78px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: clamp(30px, 3vw, 90px);
	background: url('/wp-content/uploads/2026/03/bg-decision.png') no-repeat top right;
}
.decision__video-block {
	position: relative;
	border-radius: 32px;
	width: 435px;
	background: #fff;
}
.decision__video-block:after {
	position: absolute;
	content: url('/wp-content/uploads/2026/03/decore.png');
	top: -55px;
	right: -60px;
}
.decision__video {
	width: 100%;
	border-radius: 32px 32px 0 0;
}
.decision_title_decision {
	margin: 24px 0;
	font-size: 18px;
	font-weight: 500;
	line-height: 1.7;
}
.decision__video-text-block {
	padding: 18px 40px;
	display: flex;
	align-items: center;
	gap: 16px;
	color: #7D7672;
}
.decision__name {
	font-size: 18px;
	color: #000;
	font-weight: 700;
}
.decision__block {
	max-width: 65%;
}
.decision__list {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}
.decision__item {
	padding: 25px 24px;
	width: 100%;
	display: flex;
	align-items: center;
	gap: 16px;
	background: #fff;
	color: #3F3834;
	border-radius: 24px;
}
.decision__item:first-child, .decision__item:nth-child(2) {
	width: calc(50% - 9px);
}
.decision__title {
	color: #000;
	font-size: 18px;
}
.decision__item img {
	width: 56px;
	min-width: 56px;
}
.decision__block .btn {
	margin-top: 26px;
}

.premium {
	padding: 46px 0;
}
.premium__block {
	margin-bottom: 36px;
	display: flex;
	gap: 26px;
}
.premium__block .block__title {
	max-width: clamp(450px, 30vw, 520px);
	font-size: clamp(28px, 4vw, 64px);
}
.premium__text {
	max-width: 700px;
	font-size: 18px;
}
.premium__list {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
}
.premium__item {
	padding: 45px 42px;
	width: calc(50% - 12px);
	display: flex;
    gap: 16px;
    align-items: center;
	background: #EEEEEE;
	border-radius: 24px;
}
.premium__img img {
  max-width: 203px;
}
.premium__flag {
	display: flex;
    gap: 8px;
    background: #fff;
    max-width: fit-content;
    padding: 8px 11px;
    border-radius: 32px;
}
.premium__title {
	margin: 12px 0;
    font-size: 24px;
    line-height: 1.7;
}
.premium__item-text {
	font-size: 15px;
}
.premium__item-text ul {
	display: flex;
	flex-direction: column;
	gap: 8px;
}
.premium__item-text ul li {
	position: relative;
	padding-left: 40px;
	min-height: 32px;
}
.premium__item-text ul li:before {
	position:absolute;
	content: url(/wp-content/uploads/2026/03/check-circle-min.svg);
	top: calc(50% - 16px);
	left: 0;
}

.complex {
	padding: 46px 0;
}
.complex__wrapper {
	display: flex;
	justify-content: space-between;
}
.complex__item {
	width: calc(50% - clamp(20px, 2.5vw, 40px));
}
.complex__item-img {
	margin: 8px 18px;
	max-width: 700px;
	display: flex;
    gap: 16px;
}
.complex__col {
	width: calc(50% - 9px);
	display: flex;
	flex-direction: column;
    gap: 18px;
}
.complex__col img {
	display: block;
	border-radius: 32px;
}
.complex__col:first-child {
	margin-bottom: 35px;
}
.complex__col:last-child {
	margin-top: auto;
}
.complex__item .block__title {
	font-size: clamp(28px, 4vw, 64px);
	line-height: 1;
}
.complex__text-list {
	margin: 28px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}
.complex__text-item {
	width: calc(50% - 13px);
    display: flex;
    align-items: center;
    gap: 12px;
}
.complex__certificate-title {
	margin-bottom: 4px;
	font-size: 24px;
	line-height: 1.7;
}
.certificates-slider {
	margin: 30px 12% 0;
}
.certificates-slider .splide__slide {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.splide__arrow {
	width: 50px;
	height: 50px;
	transition: all 0.3s ease-in-out;
}
.splide__arrow svg {
	display: none;
}
.complex .splide__arrow--prev {
    left: -12%;
}
.splide__arrow--prev {
	background: url(/wp-content/uploads/2026/03/slide-arrow-left.svg) no-repeat center, #EEEEEE;
}
.complex .splide__arrow--next {
	right: -12%;
}
.splide__arrow--next {
	background: url(/wp-content/uploads/2026/03/slide-arrow.svg) no-repeat center, #EEEEEE;
}
.splide__arrow:disabled {
    opacity: 1;
}
.splide__arrow:hover {
	opacity: 0.5;
}

.healing {
	padding: 46px 0;
}
.healing__wrapper {
	padding: 8.2% 6.2%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: clamp(14px, 2vw, 38px);
	background: url('/wp-content/uploads/2026/03/clinic-17-2.svg') no-repeat top 20px right 6%, #3F3834;
	border-radius: 32px;
	color: #fff;
	z-index: 1;
}
.healing .block__title {
	color: #fff;
	 font-size: clamp(28px, 4vw, 64px);
}
.healing__text-allocated {
	margin: 20px 0;
    display: flex;
    gap: 7px;
    align-items: center;
    background: #fff;
    padding: 10px 20px 10px 14px;
    color: #3F3834;
    border-radius: 40px;
    max-width: fit-content;
	white-space: nowrap;
}
.healing__text-allocated img {
	width: 25px;
	height: 25px;
}
.healing__text-block, .healing__list {
	width: calc(50% - clamp(15px, 1.8vw, 40px));
}
.healing__text-block {
	min-width: 550px;
	font-size: 18px;
}
.healing__list {
    counter-reset: step;
}
.healing__item {
	counter-increment: step;
    position: relative;
    padding: 32px 0 32px 38px;
    display: flex;
    align-items: center;
    gap: 5px;
    justify-content: space-between;
}
.healing__item::before {
    content: counter(step, decimal-leading-zero);
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 16px;
    color: #7D7672;
}
.healing__item:not(:last-child) {
    border-bottom: 1px solid #FFFFFF;
}
.healing__comment {
	white-space: nowrap;
	font-size: 15px;
	color: #D9D9D9;
}
.healing__title {
	font-size: 20px;
    font-weight: 500;
}
.healing__wrapper-bottom {
	background: linear-gradient(0deg, #EEEEEE, #EEEEEE), linear-gradient(0deg, #EEEEEE, #EEEEEE);
    border-radius: 0 0 32px 32px;
    padding: 90px 42px 46px;
    margin-top: -50px;
    display: flex;
    gap: 40px;
    align-items: center;
    justify-content: space-between;background: linear-gradient(0deg, #EEEEEE, #EEEEEE),
	linear-gradient(0deg, #EEEEEE, #EEEEEE);
	border-radius: 0 0 32px 32px;
}
.healing__title-bottom {
	font-size: 36px;
	font-weight: 500;
    line-height: 1.1;
}
.healing__terxt-bottom {
	margin-top: 15px;
	font-size: 18px;
	color: #3F3834;
}
.healing .container {
	position: relative;
    display: flex;
    flex-direction: column;
}

.reviews {
	padding: 36px 0;
}
.reviews .block__title {
	width: clamp(400px, 40vw, 700px);
	max-width: 100%;
	font-size: clamp(28px, 4vw, 64px);
}
.reviews__wrapper {
	margin-top: 38px;
	display: flex;
	gap: 22px;
}
.reviews__google-block {
	width: 24%;
	padding: 46px 32px;
	height: 280px;
	border: 1px solid #EEEEEE;
	border-radius: 32px;
	color: #7D7672;
	text-align: center;
}
.reviews__wrapper-splide {
	width: 74%;
}
.reviews__name-company {
	margin: 5px 0;
	font-size: 28px;
    font-weight: 500;
    color: #000;
}
.reviews__rating {
	font-size: 32px;
    font-weight: 500;
    color: #FA9B5F;
    display: flex;
    gap: 6px;
	justify-content: center;
}
.reviews__rating img, .reviews__google-ico {
	width: 107px;
}
.review-item {
	background: #EEEEEE;
    padding: 32px;
    border-radius: 24px;
    color: #3F3834;
}
.review-image {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	overflow: hidden;
}
.review-image img {
	width: 100%;
    height: 100%;
    object-fit: cover;
	object-position: center;
}
.review-content {
	display: flex;
    gap: 16px;
    align-items: center;
    margin-bottom: 16px;
}
.reviews .splide__arrow {
	top: -80px;
    transform: none;
}
.reviews .splide__arrow--prev {
    left: auto;
    right: 74px;
}

.cases {
	padding: 47px 0; 
}
.cases__gallery {
	margin-top: 50px;
	visibility: visible;
}
.results-gallery {

    display: flex;
    flex-wrap: wrap;
    overflow: hidden;
    border-radius: 24px;
}
.results-gallery__item {
	position: relative;
	width: 33.3%;
	height: 383px;
	overflow: hidden;
}
.results-gallery__item-img {
  height: 50%;
}
.results-gallery__link {
	position: absolute;
	opacity: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	background: rgba(0, 0, 0, 0.3);
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	transition: all 0.3s ease-in-out;
}
.results-gallery__item:hover .results-gallery__link {
	opacity: 1
}
.results-gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.contacts {
	margin-top: 46px;
	padding-top: 94px;
	background: #3F3834;
}
.contacts__wrapper {
	display: flex;
	justify-content: space-between;
	gap: 20px;
}
.contacts__left-block {
	max-width: 100%;
	width: 520px;
	display: flex;
    flex-direction: column;
	gap: 18px;
	text-align: center;
}
.contacts__left-title {
	font-size: 38px;
	color: #fff;
	line-height: 1;
}
.contacts__left-title span {
	color: var(--accent-color);
}
.contacts__block {
	width: 778px;
    max-width: 58%;
}
.contacts__info-block {
	margin: 24px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    color: #3F3834;
    padding: 20px 22px;
    border-radius: 32px;
}
.contacts__info-block img {
	width: 25px;
}
.contacts .block__title {
	color: var(--text-color);
	font-size: clamp(28px, 4vw, 64px);
}
.contacts__text {
	color: #fff;
	font-size: 18px;
	line-height: 1.7;
}
.contacts .wpcf7, .modal .wpcf7 {
	margin-top: 24px;
	color: #959595;
}
.contacts .wpcf7 label, .modal .wpcf7 label {
	width: calc(50% - 13px);
	text-transform: uppercase;
    font-size: 14px;
}
.contacts .wpcf7 form p br, .modal .wpcf7 form p br {
	display: none;
}
.contacts .wpcf7 form > p, .modal .wpcf7 form > p {
	display: flex;
	/* align-items: center; */
	gap: 24px;
}
.contacts .wpcf7 label input, .modal .wpcf7 label input {
	 width: 100%;
    margin-top: 8px;
    background: #595755;
    border: none;
    color: #fff;
    padding: 20px 24px;
    border-radius: 24px;
}
input::placeholder {
	color: #fff;
}
.form__link-block {
	display: flex;
    gap: 5px;
    align-items: center;
    margin: 24px 0 30px;
}
.contacts__left-block img {
	margin-top: auto;
}
.form__link-block p:last-of-type {
	display: flex;
    flex-direction: row-reverse;
}
.form__link {
	color: #959595;
	text-decoration: underline;
}
.contacts .wpcf7 .btn, .modal .wpcf7 .btn {
	padding: 25px 60px 25px 28px;
	border: none;
	background: url(/wp-content/uploads/2026/03/arrow-btn.svg) no-repeat center right 30px, var(--accent-color);
	cursor: pointer;
}
.contacts .wpcf7 .btn:hover, .modal .wpcf7 .btn:hover {
	background: url(/wp-content/uploads/2026/03/arrow-btn.svg) no-repeat center right 30px, rgb(181, 125, 91);
}
.wpcf7 form .wpcf7-response-output {
    margin: 0 0 10px;
    padding: 0.2em 0;
    border: none;
    color: #BC5555;
}

.faq {
	padding: 100px 0;
	background: #181615;
	color: var(--text-color);
}
.faq .block__title {
	color: var(--text-color);
	font-size: clamp(28px, 4vw, 64px);
}
.faq__list {
	margin-top: 30px;
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.faq__item {
	padding: 26px 60px 26px 24px;
	border: 1px solid #3F3834;
	border-radius: 24px;
}
.faq__question {
	position: relative;
	font-size: 18px;
	font-weight: 500;
	cursor: pointer;
}
.faq__question:after {
	position: absolute;
	content: url(/wp-content/uploads/2026/03/plus-ico.svg);
	top: 0;
	right: -30px;
}
.faq__question.active:after {
	content: url(/wp-content/uploads/2026/03/minus-ico.svg);
	top: -6px;
}
.faq__answer {
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    max-height: 0;
	color: #D9D9D9;
}
.faq__answer.open {
    max-height: 500px;
	padding-top: 16px;
}

.footer {
	padding: 64px 0 24px;
	background: #000;
	color: #D9D9D9;
}
.footer__wrapper {
	display: flex;
	justify-content: space-between;
	gap: 24px;
}
.footer__left-block {
	margin-right: 2.5%;
	width: 290px;
	max-width: 100%;
	font-size: 15px;
}
.footer__logo {
	margin-bottom: 26px;
	display: block;
	width: 290px;
}
.footer__left-text {
	padding-right: 40px;
}
.footer__title {
	margin-bottom: 18px;
	text-transform: uppercase;
	line-height: 1.7;
	color: #7D7672;
}
.footer__nav {
	margin-right: auto;
}
.footer__nav .menu-item a {
	color: #D9D9D9;
}
.footer__nav .menu-item a:hover {
	color: #C28864;
}
.footer__contact {
	width: 210px;
	max-width: 100%;
}
.footer__contact-list {
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.footer__contact-list a {
	display: block;
}
.footer__phone {
	font-size: 20px;
	line-height: 1.7;
	font-weight: 500;
}
.footer__instagram {
	display: flex;
    align-items: center;
    gap: 15px;
}
.footer__instagram a {
	color: #D9D9D9
}
.footer__phone:hover {
	color:  var(--accent-color);
}
.footer__bottom {
	margin-top: 58px;
	display: flex;
	align-items: center;
	gap: 30px;
	font-size: 14px;
	color: #7D7672;
	line-height: 1.4;
}
.footer__bottom a {
	display: block;
	color: #7D7672;
}
.footer__bottom a:hover {
	color: #D9D9D9;
}

.contacts__block .wpcf7-not-valid-tip, .modal .wpcf7-not-valid-tip {
    font-size: 15px;
    font-weight: normal;
    display: block;
    text-transform: initial;
	color: #BC5555;
}
.modal-content-after {
	display: none
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(50px);
    display: flex;
    align-items: center;
    justify-content: center;

    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    z-index: 9999;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}
.modal {
    background: #3F3834;
    width: 700px;
    max-width: 90%;
    padding: 64px 64px 44px;
    border-radius: 32px;
    position: relative;
    color: #fff;
	text-align: center;
}
.modal h3 {
	font-size: 32px;
}
.modal__text {
	margin: 24px 0;
	font-size: 18px;
}
.modal form {
	text-align: left;
}
.modal-close {
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 28px;
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
}
.modal-content-after .btn {
	margin: 0 auto;
}

.thank-you {
  min-height: 60vh;
  background: #EEEEEE;
  text-align: center;
  padding-top: 10%;
}
.thank-you .btn {
  margin: 30px auto;
}

.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;
}