@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat/Montserrat-VariableFont_wght.ttf') format('truetype');
    font-weight: 100 900;
    font-style: normal;
}
@font-face {
    font-family: 'Montserrat Italic';
    src: url('../fonts/Montserrat/Montserrat-Italic-VariableFont_wght.ttf') format('truetype');
    font-weight: 100 900;
    font-style: italic;
}

@font-face {
	font-family: 'ViaodaLibre';
	src: url('../fonts/ViaodaLibre-Regular.ttf') format('truetype'),
}

:root {
  --gradient-brown:linear-gradient(90deg, rgba(0, 0, 0, 0.24) 0%, rgba(102, 102, 102, 0.24) 100%), linear-gradient(89.95deg, #2B1B11 7.19%, #201209 99.95%);
  --gradient-gold: linear-gradient(88.53deg, #4D3614 0%, #8C6633 0%, #FFE8A4 37%, #DBAB48 99.66%, #8C6633 100%, #FFE8A4 100%, #D9BD7E 100%);
  --gradient-gold-dark: linear-gradient(87.75deg, #4D3614 -0.1%, #8C6633 -0.1%, #DBAB48 62.93%, #FFE8A4 63.04%, #8C6633 63.14%, #FFE8A4 63.14%, #D9BD7E 63.14%);
;
  --gradient-gray: linear-gradient(90.33deg, #373737 1.57%, #5E5E5E 56.8%, #000000 100%);
  --color-white: #ffff;
  --color-gray: #FFFFFF99;
  --color-black: #292724;
  --color-brown: #21150E;
}

body{
    font-family: 'Montserrat';
    font-size: 16px;
    font-weight: 400;
    line-height: 120%;
}
h1{
    font-family: 'ViaodaLibre';
    font-size: 60px;
    font-weight: 400;
    line-height: 100%;
}
h2{
    font-family: 'ViaodaLibre';
    font-size: 40px;
    font-weight: 400;
    line-height: 100%;
}
h3{
    font-family: 'ViaodaLibre';
    font-size: 22px;
    font-weight: 400;
    line-height: 100%;
}
h4{
    font-family: 'ViaodaLibre';
    font-size: 20px;
    font-weight: 400;
    line-height: 100%;
}

.txt-big{
    font-size: 16px;
}
.btn{
	font-size: 16px;
	padding: 20px 35px;
	background: transparent;
	border-radius: 90px;
	cursor: pointer;
	
}
.btn span{
	position: relative;
	z-index: 3;
}
.btn-gold{
	border: 1px solid transparent;
	background: 
		linear-gradient(#201209, #201209) padding-box, 
		var(--gradient-gold) border-box;
	color: var(--color-white);
	transition: all .3s ease-in-out;
	position: relative;
}
.btn-gold::before {
  content: "";
  position: absolute;
  top: 0; 
  left: 0; 
  right: 0; 
  bottom: 0;
  z-index: -1;
  background-image: var(--gradient-gold);
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 2;
  border-radius: 90px;
}
.btn-gold:hover{
	color: var(--color-black);
}
.btn-gold:hover::before{
	opacity:1;
}
.btn-black{
	transition: .3s all ease-in-out;
	border: 1px solid var(--color-black);
	text-align: center;
}
.btn-black:hover, .btn-black-active{
	background: var(--color-black);
	color: var(--color-white)
}

.btn-white{
	border-color:var(--color-white); 
	color: var(--color-white);
	transition: all .3s ease-in-out;
}
.btn-white:hover{
	color: var(--color-black);
	border-color:transparent; 
	background: var(--gradient-gold);
}
.container{
	max-width: 1240px;
	margin: 0 auto;
}
.txt-gold, .sub-item-active{
	 background: var(--gradient-gold);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}
.txt-gold-dark{
	 background: var(--gradient-gold-dark);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}
.txt-gray{
	background: var(--gradient-gray);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}
.l-border{
	border-width: 0;
	border-left: 2px solid; 
	border-image: linear-gradient(2.45deg, #DBAB48 0%, #8C6633 30.11%, #FFE8A4 81.97%, #DBAB48 100%) 0 0 0 2;
	padding: 16px 0 16px 20px;
	
}
.mobile{
	display: none !important;
}



/* Шапка */
.header{
	background-image: var(--gradient-brown);
	color: var(--color-white);
	font-size: 16px;
	position: relative;
	border-bottom: 1px solid #E8CFBC33;
	z-index: 1000;
	transition: box-shadow .3s ease;
}
body.header-active .header{
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	width: 100%;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
	background-image: linear-gradient(90deg, rgb(0 0 0 / 0%) 0%, rgba(102, 102, 102, 6.1) 100%), linear-gradient(89.95deg, #2b1b11eb 7.19%, #201209 99.95%);
}
.header .container{
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 25px 0;
}
.header__nav-desctop a {
	color: var(--color-white);

}
.header__nav-desctop{
	display: flex;
	gap: 30px;
	align-items: center;
}
.header__nav-desctop > .menu-item-has-children > a{
	position: relative;
}
.header__nav-desctop > .menu-item-has-children > a::after{
	content: "";
	background-repeat: no-repeat;
	background-size: cover;
	background-image: url("../img/menu-arrow.svg");
	width: 6px;
	height: 4px;
	display: block;
	position: absolute;
	top: 40%;
	right: -10px;
	transition: all .3s ease-in-out;
}
.header__nav-desctop .menu-item-has-children > .sub-menu{
	display: none;
}
.header__buttons{
	display: flex;
	gap: 10px;
	align-items: center;
	cursor: pointer;
}
.header__buttons .call-popup{
	background-color: #008000ab;
}
.header__buttons a{
	color: var(--color-white);
}
.header__buttons > *{
	border-radius: 40px;
	border: 1px solid var(--color-white);
	padding: 14px;
	background: transparent;
	cursor: pointer;
}

.header__button img{
	width: 22px;
	height: 22px;
}
.header__contacts{
	padding: 10px 25px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}
.header__contacts p{
	font-size: 10px;
	color: var(--color-gray);
}
.header__nav-desctop > .menu-item-has-children > .sub-menu{
	left: 0;
    top: 100%;
    height: 100vh;
    width: 100%;
	position: absolute;
	z-index: 9999;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
.sub-menu__outer{
	background-color: var(--color-brown);
}
.item-active > a{
	background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.item-active > a::after{
	transform: rotate(180deg);
}
.sub-menu__inner > .menu-item-has-children > a{
	position: relative;
}
.sub-menu__inner > .menu-item-has-children > a::after{
	content: "";
	background-repeat: no-repeat;
	background-size: cover;
	background-image: url("../img/menu-arrow.svg");
	width: 6px;
	height: 4px;
	display: block;
	position: absolute;
	top: 45%;
	right: -16px;
	transform: rotate(-90deg);
}
.sub-menu__inner > .sub-item-active > a::after{
	background-image: url("../img/menu-arrow-gold.svg");
}
.sub-menu__inner {
	max-width: 400px;
	padding-top: 10px;
	border-right: 2px solid #919393;
	width: 100%;
	display: flex;
	flex-direction: column;
	gap: 20px;
	position: relative;
}
.sub-menu__inner > li{
	font-size: 24px;
}
.sub-menu__inner > li {
	line-height: 130%;
}
.sub-menu__inner .menu-item-has-children .sub-menu{
	display: none;
    position: absolute;
    top: 0;
    left: 430px;
    width: 420px;

}
.sub-menu__inner .menu-item-has-children .sub-menu a{
	font-size: 16px;
	-webkit-text-fill-color: initial;
}
.sub-menu__inner .menu-item-has-children .sub-menu li:not(:last-child){
	margin-bottom: 20px;
}
.sub-menu__inner > .menu-item-has-children > .sub-menu > li{
	line-height: 100%;
}
.header a{
	transition: -webkit-text-fill-color .3s ease-in-out;
}
.header a:hover{
	background: var(--gradient-gold);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}
.header__button-burger{
	display: none;
cursor: pointer;
	background: none;
	appearance: none;
	-webkit-appearance: none;
}
.header__button-burger img{
	display: block;
	pointer-events: none;
}

/* мобильное меню */
.mobile-menu{
	display: none;
	position: fixed;
	inset: 0;
	z-index: 1100;
	background-image: var(--gradient-brown);
	color: var(--color-white);
	overflow: hidden;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: opacity .3s ease, visibility .3s ease;
}
.mobile-menu.is-open{
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}
.mobile-menu__inner{
	position: relative;
	height: 100%;
	overflow: hidden;
}
.mobile-menu__list,
.mobile-menu .sub-menu{
	list-style: none;
	margin: 0;
	padding: 100px 24px 40px;
	height: 100%;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
}
.mobile-menu__list > li,
.mobile-menu .sub-menu > li{
	border-bottom: 1px solid #E8CFBC33;
}
.mobile-menu a,
.mobile-menu__back{
	display: flex;
	align-items: center;
	justify-content: start;
	gap: 16px;
	width: 100%;
	padding: 18px 0;
	color: var(--color-white);
	font-size: 16px;
	line-height: 130%;
	text-align: left;
	background: none;
	border: none;
	cursor: pointer;
	appearance: none;
	-webkit-appearance: none;
}
.mobile-menu .menu-item-has-children > a::after{
	content: "";
	flex-shrink: 0;
	width: 8px;
	height: 8px;
	border-right: 2px solid var(--color-white);
	border-bottom: 2px solid var(--color-white);
	transform: rotate(-45deg);
}
.mobile-menu .sub-menu{
	position: absolute;
	inset: 0;
	z-index: 2;
	background-image: var(--gradient-brown);
	transform: translateX(100%);
	transition: transform .3s ease;
}
.mobile-menu .sub-menu.is-active{
	transform: translateX(0);
}
.mobile-menu__back{
	font-size: 16px;
	color: var(--color-gray);
	border-bottom: 1px solid #E8CFBC33;
}
.mobile-menu__back::before{
	content: "";
	flex-shrink: 0;
	width: 8px;
	height: 8px;
	border-left: 2px solid currentColor;
	border-bottom: 2px solid currentColor;
	transform: rotate(45deg);
}
body.menu-open{
	overflow: hidden;
}
body.menu-open .header{
	z-index: 1200;
}
body.menu-open .header__button-burger{
	position: relative;
}
body.menu-open .header__button-burger img{
	opacity: 0;
}
body.menu-open .header__button-burger::before,
body.menu-open .header__button-burger::after{
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 18px;
	height: 2px;
	background: var(--color-white);
}
body.menu-open .header__button-burger::before{
	transform: translate(-50%, -50%) rotate(45deg);
}
body.menu-open .header__button-burger::after{
	transform: translate(-50%, -50%) rotate(-45deg);
}


/* главная страница */
.page-main{
	background-image: var(--gradient-brown);
}
.hero{
	color: var(--color-white);
}
.hero .container{
	padding-top: 100px;
	padding-bottom: 45px;
}
.hero__content{
	display: flex;
	gap: 22px;
}
.hero__right img{
	max-width: 478px;
	border-radius: 25px;
	height: 361px;
	object-fit: cover;
}
.hero__title{
	margin-bottom: 40px;
}
.hero__txt{
	font-size: 20px;
	margin-bottom: 30px;
	max-width: 500px;
	line-height: 120%;
}
.hero__present {
	display: flex;
	align-items: center;
	gap:10px;
	font-size: 20px;
	margin-bottom: 40px;
}

.hero__btn{
	margin-bottom: 70px;
}
.hero__advantages{
	display: flex;
	flex-direction: row;
	max-width: 88%;
	justify-content: space-between;
	width: 100%;
}
.hero__advantage{
	max-width: 235px;
}
.advantage__name{
	font-size: 20px;
	margin-bottom: 10px;
	position: relative;
}
.advantage__txt{
	font-size: 16px;
	line-height: 130%;
}
.list-syle{
	position: relative;
}
.list-syle::before{
	content: "";
	position: absolute;
	background-image: url("../img/icon-bullet.svg");
	background-size: cover;
	background-repeat: no-repeat;
	width: 20px;
	height: 20px;
	left: -30px;
	top: -4px;
}
.list-syle-white::before{
	background-image: url("../img/icon-bullet-white.svg");
	top: 4px;
	width: 12px;
	height: 12px;
	left: -22px;
}
.about{
	padding-top: 80px;
	margin-bottom: 80px;
	position: relative;
}
.about__bg{
	position: absolute;
	z-index: 0;
	top: -66px;
	width: 100%;
	left: 0;
	max-height: 460px;
}
.about .container{
	background-color: var(--color-white);
	border-radius: 30px;
	padding: 60px;
	display: flex;
	gap:85px;
	justify-content: space-between;
	position: relative;
	z-index: 2;
}
.about__img{
	max-width: 545px;
	border-radius: 25px;
	object-fit: cover;
}
.about__title{
	margin-bottom: 20px;
}
.about__subtitle{
	margin-bottom: 30px;
}
.about__txt{
	font-size: 20px;
	margin-bottom: 20px;
}
.about__txt ul{
	padding-left: 24px;
	display: flex;
    flex-direction: column;
    gap: 10px;
}

.about__txt li{
	position: relative;
}
.about__txt li::before{
	position: absolute;
	content:'';
    background-image: url(../img/icon-bullet-white.svg);
    top: 4px;
    width: 12px;
    height: 12px;
    left: -22px;
	background-size: cover;
    background-repeat: no-repeat;
}
.about__list{
	padding-left: 22px;
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin-bottom: 20px;
}
.plan{
	margin-bottom: 142px;
}
.plan .container{
	display: flex;
	gap: 83px;
	color: var(--color-white);
}
.plan__img{
	max-width: 552px;
	border-radius: 25px;
}
.plan__title{
	margin-bottom: 40px;
}
.plan__txt{
	font-size: 20px;
	margin-bottom:20px;
}
.plan__content{
	max-width: 520px;
}
.plan__list{
	display: flex;
	flex-direction: column;
	gap: 10px;
	padding-left: 32px;
}
.plan__list .list-syle:before{
	width: 12px;
	height: 12px;
	top:4px
}

.why{
	position: relative;
	padding: 80px 0;
	background-color: var(--color-white);
}
.why__bg{
	position: absolute;
	z-index: 0;
	left: 0;
	width: 100%;
	top:0;
	transform: translateY(-98%);
}
.why__title{
	max-width: 780px;
	margin: 0 auto 40px;
}
.why__list{
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap:30px;
	margin-bottom: 30px;
}
.why__item{
	border: 1px solid #2927241A;
	padding: 30px;
	border-radius: 20px;
}
.why__item__name{
	font-size: 22px;
	margin-bottom: 20px;
	display: inline-block;
	text-transform: uppercase;
	line-height: 100%;
	font-family: 'ViaodaLibre'
}
.why_warranty{
	max-width: 828px;
	border: 1px solid #636466;
	padding: 10px 20px;
	display: flex;
	gap: 14px;
	align-items: center;
	margin: 0 auto 30px;
	border-radius: 30px;
}
.why_warranty img{
	width: 20px;
	height: 20px;
}
.why__video{
	width: 100%;
	height: 480px;
	border-radius: 20px;
	object-fit: cover;
}

.help{
	padding-top: 80px;
	color: var(--color-white);
	margin-bottom: 80px;
}
.help__title{
	margin-bottom: 10px;
}
.help__top{
	margin-bottom: 50px;
}
.help__problems{
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 50px;
}
.help__problem{
	display: flex;
	gap: 30px;
	align-items: center;
}
.problem__img{
	width: 320px;
	height: 180px;
	object-fit: cover;
	border-radius: 10px;
	min-width: 320px;
}
.problem__name{
	font-size: 22px;
	text-transform: uppercase;
	font-family: "ViaodaLibre";
	margin-bottom:30px;
	line-height: 120% ;
}

.founder{
	margin-bottom: 140px;
}
.founder .container{
	background: url('../img/founder_bg.png');
	border-radius: 30px;
	padding: 60px;
	display: flex;
	gap: 120px;
	align-items: center;
	justify-content: space-between;
	background-size: cover;
    background-position: bottom left;
	position: relative;
}
.founder__commas{
	position: absolute;
	top: 50px;
	left: 50px;
	width: 88px;
	height: 88px;
	z-index: 1;
}
.founder__left{
	position: relative;
	z-index: 2;
}
.founder__left p:not(:last-child){
	margin-bottom: 30px;
}
.founder__img{
	max-width: 476px;
	height: 435px;
	border-radius: 25px;
	margin-bottom: 15px;
	object-fit: cover;
}
.founder__name{
	text-align: center;
	font-family: "ViaodaLibre";
	font-size: 20px;
	margin: 0 auto 10px;
	text-transform: uppercase;
	max-width: 377px;
}
.founder__txt{
	max-width: 377px;
	margin: 0 auto;
	text-align: center;
}

.services{
	background: linear-gradient(180deg, #FFFFFF 0%, #EEDDCF 100%);
	padding-top: 80px;
	position: relative;
	padding-bottom: 150px;
	margin-top: -1px;
}
.services__bg{
	position: absolute;
	width: 100%;
	top:0;
	left: 0;
	transform: translateY(-98%);
}
.services__title{
	max-width: 650px;
	margin: 0 auto 50px;
	padding-top: 16px;
	padding-bottom: 16px;
}
.page-main  .services__list{
	display: flex;
	flex-direction: column;
	gap:30px;
}
.service{
	display: flex;
	gap:85px;
	padding: 60px;
	justify-content: space-between;
	background-color: var(--color-white);
	border: 1px solid #2927241A;
	border-radius: 30px;
}

.service__title{
	margin-bottom:30px;
}
.service__txt{
	font-size: 20px;
	margin-bottom:20px;
}
.service__list{
	display: flex;
	flex-direction: column;
	gap:10px;
	margin-bottom: 20px;
}
.service__list ul{
	display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}
.page-service ul{
	display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
	padding-left: 22px;
}
.page-service li{
	position: relative;
}
.page-service li::before {
    background-image: url(../img/icon-bullet-white.svg);
    top: 4px;
    width: 12px;
    height: 12px;
    left: -22px;
    background-size: cover;
    background-repeat: no-repeat;
    content: "";
    position: absolute;
}
.faq__list .faq__item::before {
	content: none;
}
.page-service h3{
	margin-top: 24px;
	margin-bottom: 16px;
}
.service__list li{
	position: relative;
}
.service__list li::before{
	background-image: url(../img/icon-bullet-white.svg);
    top: 4px;
    width: 12px;
    height: 12px;
    left: -22px;
	background-size: cover;
    background-repeat: no-repeat;
	content: "";
    position: absolute;
}
.service__img{
	min-width: 545px;
	height: 400px;
	border-radius: 25px;
	object-fit: cover;
}

.team{
	padding-top: 80px;
	position: relative;
	padding-bottom: 80px;
}
.team__bg{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	transform: translateY(-98%);
}
.team__title{
	padding-top: 16px;
	padding-bottom: 16px;
	margin-bottom: 40px;
}
.team__list{
	display: flex;
	justify-content: center;
	gap: 30px;
	flex-wrap: wrap;
}
.doctor{
	display: flex;
	flex-direction: column;
	padding: 20px;
	width: 30%;
	border-radius: 30px;
	background-color: var(--color-white);
}
.doctor__img{
	width: 100%;
	height:352px;
	object-fit: cover;
	background: linear-gradient(180deg, #FFFFFF 0%, #D3D3D4 100%);
	z-index: 1;
}
.doctor__top{
	position: relative;
	margin-bottom: 20px;
	border: 1px solid #D9D9D980;
	border-radius: 18px;
	overflow: hidden;
}
.text-overlay{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 2;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0) 62.16%, #FFFFFF 89.61%);
}
.doctor__name{
	position: absolute;
	bottom: 17px;
	width: 240px;
	left: 50%;
	transform: translateX(-50%);
	font-size: 22px;
	line-height: 100%;
	font-family: "ViaodaLibre";
	color:#373737;
	text-align: center;
	z-index: 3;
	text-transform: uppercase;
}
.doctor__desc{
	text-align: center;
	margin-bottom: 40px;
}
.doctor__btn{
	margin-top: auto;
}
.reviews{
	padding-top: 80px;
	background-color: var(--color-white);
	border-top-left-radius: 40px;
	border-top-right-radius: 40px;
	padding-bottom: 80px;
}
.reviews{
	text-align: center;
}
.reviews__title{
	margin-bottom: 40px;
}
.reviews__top{
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	margin-bottom: 40px;
}
.reviews__top .reviews__title{
	margin-bottom: 0;
	text-align: left;
}
.reviews__list{
	display: flex;
	gap: 30px;
	justify-content: center;
	margin-bottom: 60px;
}
.reviews__swiper{
	overflow: hidden;
	margin-bottom: 60px;
}
.reviews__swiper .reviews__video{
	width: 100%;
}

.reviews__list{
	display: flex;
	gap: 30px;
	justify-content: center;
	margin-bottom: 60px;
}
.reviews__video{
	width: 390px;
	height: 620px;
	border-radius: 40px;
	object-fit: cover;
}
.reviews__yandex{
	margin: 0 auto;
}
.form{
	background-color: var(--color-white);
}
.form .container{
	display: flex;
	gap:30px;
}
.form-reverse .container{
	flex-direction: row-reverse;
}
.form__img{
	max-width: 600px;
	height: 100%;
	object-fit: cover;
	border-radius: 25px;
	height: auto;
}
.form__content{
	padding: 40px;
	border-radius: 25px;
	background: var(--gradient-brown);
	color: var(--color-white);
	width: 100%;
}
.form__top{
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 20px;
}
.form__contacts{
	display: flex;
	flex-direction: column;
	align-items: end;
}
.form__phone{
	font-size: 20px;
	color: var(--color-white);
}
.form__hours{
	font-size: 10px;
	color: var(--color-gray);
}
.form__title{
	max-width: 360px;
	margin-bottom: 20px;
	font-size: 32px;
}
.form__txt{
	margin-bottom: 10px;
}
.form__input{
	width: 100%;
	padding: 20px;
	border-radius: 30px;
	border: 1px solid #FFFFFF33;
	color: white;
	margin-bottom: 16px;
	background-color: transparent;
}
.wpcf7-acceptance{
	font-size: 12px;
	color: var(--color-white);
	display: block;
}
.form__btn{
	margin: 0 auto;
	display: block;
}
.form__btn:hover{
	background: var(--gradient-gold);
}
.wpcf7-spinner{
	position: absolute;
}


.faq{
	padding-top: 120px;
	background-color: var(--color-white);
	padding-bottom: 120px;
}

.faq__title{
	text-align: center;
	margin-bottom: 40px;
}
.faq__list{
	background: linear-gradient(180deg, #FFFFFF 0%, #EEDDCF 100%);
	padding: 0 40px !important;
	border-radius: 25px;
}
.faq__question{
	font-size: 20px;
}
.faq__item{
	padding: 16px 0 ;
	cursor: pointer;
}
.faq__item:not(:last-child){
	border-bottom: 1px solid #C5C4C4;
}
.faq__btn{
	width: 50px;
	height: 50px;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 100%;
	border: 1px solid #2B1B111A;
	background: transparent;
	cursor: pointer;
	font-size: 28px;
    line-height: 100%;
	font-family: math;
    font-weight: 400;
}
.faq__visible{
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.faq__answer{
	display: none;
	padding-right: 60px;
}
.map{
	border-top-left-radius: 25px;
	border-top-right-radius: 25px;
	overflow: hidden;
}
.map iframe{
	width: 100%;
	height: 450px;
}
.footer{
	padding-top: 80px;
	padding-bottom: 35px;
	background: var(--gradient-brown);
	border-top-left-radius: 25px;
	border-top-right-radius: 25px;
	margin-top: -50px;
	z-index: 2;
    position: relative;
}
.footer a{
	transition: .3s all ease-in-out;
}
.footer a:hover{
	background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.footer__top{
	display: flex;
	padding-bottom: 33px;
	border-bottom: 1px solid #D0D0D033;
	height: 333px;
}
.footer__logo{
	width: 180px;
}
.footer__left{
	max-width: 230px;
	color: #FFFFFF99;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	margin-right: 190px;
}
.footer__info{
	display:  inline-block;	
	color: #FFFFFF99;
}


.footer__center .header__nav-desctop{
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	height: 100%;
	align-items: start;
}
.footer__center .header__nav-desctop a{
	font-size: 20px;
}
.footer__center nav{
	height: 100%;
}
.footer__right{
	margin-left: auto;
	max-width: 340px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: end;
	color: var(--color-white);
}
.footer__contacts{
	display: flex;
	flex-direction: column;
	align-items: end;
	gap:5px;
}
.footer__phone{
	color:var(--color-white);
	font-size: 20px;
	line-height: 120%;
}
.footer__hours{
	font-size: 14px;
	color: #FFFFFF99;
}
.footer__adress{
	display: flex;
	align-items: center;
	gap: 20px;
}
.footer__icons{
	display: flex;
	flex-direction: column;
	gap: 20px;
	align-items: end;
	text-align: right;
}
.footer__icons a{
	color: var(--color-white);
}
.footer__bottom{
	display: flex;
	justify-content: space-between;
	color:#FFFFFF99;
	padding-top: 40px;
}
.footer__bottom a{
	color:#FFFFFF99;
}
.page-main .why__item__name{
	font-family: "ViaodaLibre";
}
.onetap-container-toggle{
    display: none !important;
}
@media(max-width: 1150px){
	.hero__right img {
		max-width: 370px;
	}
	.mobile-menu{
		display: block;
	}
	.container{
		max-width: 850px;
	}
	.btn{
		padding: 12px 20px;
	}
	.header__nav{
		display: none;
	}
	.header__button-burger{
		display: block;
	}
	.h1{
		font-size: 50px;
	}
	h2{
		font-size: 32px;
	}
	.about .container{
		gap: 20px
	}
	.about__title {
		margin-bottom: 10px;
	}
	.about__subtitle{
		margin-bottom: 20px;
	}
	.about__txt{
		font-size: 18px;
		margin-bottom: 10px;
	}
	.about__list{
		gap: 5px;
		margin-bottom: 10px;
	}
	.about__img{
		max-width: 380px;
	}
	.plan .container{
		gap: 50px;
	}
	.plan__title{
		margin-bottom: 20px;
	}
	.plan__txt{
		font-size: 18px;
	}
	.plan__list{
		gap:5px;
	}
	.plan__img{
		max-width: 420px;
	}
	.problem__name{
		font-size: 18px;
	}
	.help__problem {
		gap: 20px;
	}
	.problem__img{
		width: 190px;
		min-width: 190px;
	}
	.founder__left p:not(:last-child){
		margin-bottom: 16px;
	}
	.founder .container{
		gap: 40px;
		padding: 30px;
	}
	.founder__img {
		max-width: 412px;
		height: 350px;
	}
	.founder__name{
		font-size: 18px;
	}
	.service{
		gap: 40px;
		padding: 30px;
	}
	.service__title{
		margin-bottom: 20px;
	}
	.service__txt {
		font-size: 18px;
		margin-bottom: 16px;
	}
	.service__img {
		min-width: 380px;
		height: 370px;
	}
	.services__title{
		 margin: 0 auto 30px;
	}
	.team__title{
		margin-bottom: 30px;
	}
	.doctor__img{
		height: 200px;
	}
	.team__list{
		gap: 20px;
	}
	.doctor__name {
		width: 200px;
		font-size: 18px;
	}
	.doctor__top{
		margin-bottom:16px;
	}
	.doctor__desc{
		margin-bottom: 16px;
	}
	.reviews__title{
		margin-bottom:30px;
	}
	.reviews__top{
		margin-bottom: 30px;
	}
	.reviews__video {
		width: 300px;
		height: 500px;
	}
	.reviews__list{
		margin-bottom:40px;
	}
	.reviews__swiper{
		margin-bottom: 40px;
	}
	.reviews__video {
		width: 300px;
		height: 500px;
	}
	.reviews__list{
		margin-bottom:40px;
	}
	.form__img {
		max-width: 400px;
		height: auto;
	}
	.form .container{
		gap: 16px;
	}
	.form__content{
		padding: 30px;
	}
	.form__top{
		margin-bottom: 10px;
	}
	.form__title{
		margin-bottom: 10px;
		font-size: 24px;
	}
	.form__input{
		padding: 16px;
	}
	.form__phone {
		font-size: 18px;
	}
	.footer__left{
		margin-right: 130px;
	}
}
@media(max-width: 767px){
	.form__img {
		max-width: 100%;
	}
	.mobile{
		display: block !important;
	}
	.desctop{
		display: none !important;
	}
	body{
		font-size: 14px;
	}
	.container{
		max-width: 95%;
	}
	h1{
		font-size: 32px;
	}
	h2{
		font-size: 28px;
	}
	.btn{
		padding: 20px;
	}
	.header__contacts{
		display: none;
	}
	.custom-logo{
		max-width: 192px;
	}
	.header__buttons > *{
		padding: 11px;
	}
	.header__button img{
		width: 18px;
		height: 18px;
	}
	.hero__content{
		flex-direction: column-reverse;
	}
	.hero .container{
		padding-top: 26px;
	}
	.hero__right img{
		max-width: 100%;
	}
	.hero__content{
		gap: 30px;
	}
	.hero__title{
		margin-bottom: 20px;
	}
	.hero__txt{
		font-size: 18px;
		margin-bottom: 22px;
	}
	.hero__present{
		font-size: 18px;
		margin-bottom: 30px;
	}
	.hero__btn{
		margin-bottom: 30px;
		width: 100%;
	}
	.hero__advantages{
		flex-direction: column;
		max-width: 100%;
		padding-left: 30px;
		gap: 30px
	}
	.hero__advantage{
		max-width: 100%;
	}
	.about{
		padding-top: 30px;
		margin-bottom: 40px;
	}
	.about .container{
		padding: 30px;
	}
	.about__img {
		max-width: 100%;
		margin-bottom: 20px;
	}
	.about__title{
		margin-bottom: 20px;
	}
	.about__subtitle{
		font-size: 14px;
	}
	.about__list{
		gap: 10px;
		margin-bottom: 16px
	}
	.about__content .btn{
		width: 100%;
	}
	.about__bg{
		top: -30px
	}
	.about__bg{
		max-height: 100%;
		height: 500px;
	}
	.plan .container{
		flex-direction: column;
	}
	.plan__img{
		margin-bottom: 20px;
	}
	.plan__txt{
		margin-bottom: 10px;
	}
	.plan{
		margin-bottom: 40px;
	}
	.why{
		padding-top: 40px;
		padding-bottom: 40px;
	}
	.why__title{
		margin-bottom: 20px;
	}
	.why__list{
		grid-template-columns: 1fr;
		gap:20px;
		margin-bottom: 20px;
	}
	.why__item{
		padding: 20px;
	}
	.why__bg {
		transform: translateY(-94%);
	}
	.why .container{
		display: flex;
		flex-direction: column;
	}
	.why_warranty{
		order: 5;
	}
	.why__video{
		width: 100%;
		height: 140px;
		margin-bottom: 20px;
	}
	.help{
		padding-top: 40px;
		margin-bottom: 40px;
	}
	.help__top{
		margin-bottom: 30px;
	}
	.help__problems{
		grid-template-columns: 1fr;
		gap: 30px;
	}
	.help__problem{
		flex-direction: column;
		gap: 0;
	}
	.problem__img {
		width: 100%;
		margin-bottom: 20px
	}
	.problem__name{
		width: 100%;
		margin-bottom: 20px
	}
	.problem__content{
		width:100%;
	}
	.problem__content .btn{
		width: 100%;
	}
	.founder{
		margin-bottom: 60px;
	}
	.founder .container{
		flex-direction: column-reverse;
		gap:40px;
		padding: 20px;
		background-image: url(../img/founder_bg-mobile.png);
		padding-bottom: 60px;
	}
	.founder__img {
		width: 100%;
		height: 300px;
		margin-bottom: 20px;
	}
	.founder__name{
		margin-bottom: 10px;
	}
	.founder__left p{
		font-size: 18px;
	}
	.founder__left p:not(:last-child){
		margin-bottom: 30px;
	}
	.founder__commas{
		top: 404px;
		left: 15px;
		width: 50px;
		height: 50px;
	}
	.services__bg{
		transform: translateY(-95%);
	}
	.services{
		padding-top: 40px;
	}
	.services__title{
		margin-bottom: 16px;
	}
	.services__list{
		gap: 20px;
	}
	.service{
		flex-direction: column-reverse;
		padding: 30px;
	}
	.service__img{
		width: 100%;
		max-height: 210px;
		margin-bottom: 20px;
		min-width: initial;
	}
	.service__txt{
		margin-bottom: 10px;
	}
	.about__list{
		margin-bottom: 20px;
	}
	.service .btn{
		width: 100%;
	}
	.services{
		padding-bottom: 60px;
	}
	.team__bg{
		transform: translateY(-94%);
	}
	.team{
		padding-top: 40px;
	}
	.team__title{
		margin-bottom: 32px;
	}
	.doctor{
		width: 100%;
	}
	.doctor__img{
		height: 335px;
		margin-bottom: 10px;
	}
	.doctor__name{
		font-size: 20px;
	}
	.doctor__desc{
		margin-bottom: 30px;
	}
	.team{
		padding-bottom: 32px;
	}
	.reviews{
		padding-top: 46px;
		padding-bottom: 90px;
	}
	.reviews__title{
		margin-bottom: 30px;
	}
	.reviews__top{
		margin-bottom: 30px;
	}
	.reviews__list{
		gap: 8px
	}
	.reviews__swiper{
		margin-bottom: 40px;
	}
	.reviews__video{
		width: 45%;
		height: 270px;
	}
	.reviews__swiper .reviews__video{
		width: 100%;
	}
	.reviews .swiper__btns{
		position: initial;
		transform: initial;
	}
	.reviews__list{
		gap: 8px
	}
	.reviews__video{
		width: 45%;
		height: 450px;
	}
	.reviews__video{
		border-radius: 20px;
	}
	.reviews__yandex{
		width: 100% !important;
	}
	.form .container{
		flex-direction: column;
		gap: 10px;
	}
	.form__top{
		padding-bottom: 20px;
	}
	.form__title{
		margin-bottom: 20px;
		font-size: 28px;
	}
	.form__btn{
		width: 100%;
	}
	.faq__title{
		margin-bottom: 30px;
	}
	.faq__list{
		padding: 20px;
	}
	.faq__item {
		padding: 10px 0;
	}

	.faq__btn{
		min-width: 40px;
		min-height: 40px;
		height: 40px;
		width: 40px;
	}
	.faq__visible{
		gap: 20px;
	}
	.faq__question{
		font-size: 18px;
	}
	.faq__answer{
		padding-left: 10px;
		padding-right: 60px;
		margin-top: 20px;
	}
	.faq{
		padding-bottom: 80px;
	}
	.map iframe{
		height: 360px;
	}
	.footer{
		padding-top: 40px;
		padding-bottom: 20px;
	}
	.footer__top{
		flex-direction: column;
		height: auto;
		position: relative;
		padding-bottom: 20px;
	}
	.footer__right{
		max-width: 100%;
		align-items: start;
		order: 2;
		margin-bottom: 30px;
	}
	.footer__contacts{
		align-items: start;
		margin-bottom: 30px;
	}
	.footer__phone{
		font-size: 18px;
	}
	.footer__hours{
		font-size: 12px;
	}
	.footer__icons{
		gap: 20px;
		align-items: start;
	}
	.footer__adress{
		flex-direction: row-reverse;
		text-align: start;
	}
	.footer__adress img{
		width: 40px;
		height: 40px;
	}
	.footer__left{
		margin-right: 0;
		max-width: 100%;
		margin-bottom: 30px;
	}
	.footer__logo{
		margin-bottom: 10px;
	}
	.footer__center{
		order: 3;
		margin-bottom: 30px;
	}
	.footer__warning{
		color: #FFFFFF99;
		order: 4;
		margin-bottom: 20px;
	}
	.footer__details{
		color: #FFFFFF99;
		order: 5;
		margin-bottom: 20px;
	}
	.footer__info{
		order: 6;
	}
	.footer__bottom{
		padding-top: 20px;
		flex-direction: column;
		gap:10px;
	}
}



/* Страница О компании */
.breadcrumbs{
	padding: 50px 0;
}
.breadcrumbs .container, .breadcrumbs{
	display: flex;
	gap: 6px;
	align-items: center;
	width: 100%;
}
.breadcrumbs .dot{
	color: var(--color-black)
}
.breadcrumbs__item{
	color: #29272480;
}
.breadcrumbs__item-active{
	color: var(--color-black)
}
.breadcrumbs a{
	transition: .3s all ease-in-out;
}
.breadcrumbs a:hover{
	color: #DBAB48;
}
.page-about h1{
	margin-bottom: 30px;
}
.page-about .txt__top{
	font-size: 20px;
	margin-bottom: 30px;
	line-height: 120%;
}
.page-about .founder{
	margin-bottom: 40px;
}
.page-about .founder .container{
	border: 1px solid #8C663333;
}
.page-about .founder__name{
	max-width: 380px;
	text-align: start;
	margin: 0 0 10px;
}
.page-about .founder__txt{
	max-width: 380px;
	text-align: start;
	margin: 0 0 40px;
}
.page-about .founder .container{
	padding: 50px;
}
.page-about .founder__txt-big{
	font-size: 20px;
	line-height: 120%;
}
.page-about .txt__bottom{
	font-size: 20px;
	line-height: 120%;
	margin-bottom: 100px;
}
.clinics__title{
	margin-bottom: 50px;
}
.clinics__list{
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 30px;
	margin-bottom: 30px;
}
.clinic{
	border: 1px solid #2927241A;
	padding: 30px;
	border-radius: 20px;
}
.clinic__name{
	font-size: 22px;
	text-transform: uppercase;
	margin-bottom: 20px;
	line-height: 100%;
	font-family: "ViaodaLibre";
}
.clinics__txt{
	font-size: 20px;
	line-height: 120%;
	margin-bottom: 100px;
}
.form_about{
	margin-bottom: 100px;
}
.form_about .form__title{
	text-align: left;
}
.form_about .form__top{
	margin-bottom: 85px;
}
.form_about .form__content{
	display: flex;
	flex-direction: column;
}
.form_about .btn{
	margin-top: auto;
	width: fit-content;
}
.form_about .form__txt{
	font-size: 20px;
	line-height: 120%;
}
.btn-txt{
	position: relative;
	z-index: 4;
}
@media(max-width: 1150px){
	.form_about .form__top{
		margin-bottom: 10px;
	}
	.page-about .txt__top{
		font-size: 18px;
	}
	.page-about .founder__txt-big{
		font-size: 18px;
	}
	.page-about .txt__bottom{
		font-size: 18px;
	}
	.clinics__txt{
		font-size: 18px;
	}
	.form_about .form__txt{
		font-size: 18px;
	}
	.form_about .form__title{
		font-size: 28px;
	}

}
@media(max-width: 767px){
	.form_about .btn{
		width: 100%;
	}
	.breadcrumbs{
		padding: 30px 0;
	}
	.page-about h1{
		margin-bottom: 20px;
	}
	.page-about .txt__top{
		margin-bottom: 20px;
	}
	.page-about .founder .container{
		padding: 20px;
		gap: 20px;
		padding-bottom: 70px;
	}

	.page-about .founder__name{
		font-size: 19px;
		text-align: center;
	}
	.page-about .founder__txt{
		font-size: 14px;
		text-align: center;
		margin-bottom: 50px;
	}
	.page-about .founder{
		margin-bottom: 20px;
	}
	.page-about .txt__bottom{
		margin-bottom: 80px;
	}
	.clinics__title{
		margin-bottom: 20px;
	}
	.clinics__list{
		grid-template-columns: 1fr;
	}
	.clinic__name{
		margin-bottom: 10px;
	}
	.clinic{
		padding: 20px;
	}
	.clinics__txt{
		margin-bottom: 80px;
	}
	.form_about .form__txt{
		margin-bottom: 20px;
	}
	.form_about{
		margin-bottom: 80px;
	}
}


/* Страница врача */
.page-doctor .form{
	margin-bottom: 100px;
}
.page-doctor .hero{
	background-image: url("../img/doctor_hero_bg.png");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: bottom left;
}
.page-doctor .hero .container{
	padding: 0;
	padding-bottom: 240px;
}
.page-doctor .breadcrumbs{
	margin-bottom: 60px;
}
.page-doctor .hero{
	position: relative;
}
.page-doctor .hero h1{
	max-width: 430px;
	margin-bottom: 40px;
}
.page-doctor .hero__txt{
	color: var(--color-black);
}
.page-doctor .hero__list{
	display: flex;
	flex-direction: column;
	gap: 10px;
	color: var(--color-black);
	margin-bottom: 40px;
	padding-left: 22px;
}
.page-doctor .hero .hero__img{
	position: absolute;
	z-index: 0;
	height: 100%;
	right: 85px;
	bottom: 0;
}
.doctor-info{
	position: relative;
}
.doctor-info{
	padding-top: 60px;
}
.doctor-info__txt{
	font-size: 20px;
	margin-bottom: 50px;
}
.doctor-info__txt p:not(:last-child){
	margin-bottom: 16px;
}
.doctor-info__lists{
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 50px 30px;
}
.doctor-info__list:nth-child(3){
	grid-column: 1/3;
}
.doctor-info__list h2{
	margin-bottom: 30px;
}
.doctor-info__list .list-syle{
	margin-left: 22px;
}
.doctor-info__list .list-syle:not(:last-child){
	margin-bottom: 10px;
}
.doctor-info{
	margin-bottom: 100px;
}
.more-doctors{
	margin-bottom: 100px;
}
.more-doctors__top{
	display: flex;
	justify-content: space-between;
	margin-bottom: 40px;
}
.swiper__btn{
	background: none;
	border: 1px solid #8C6633;
	border-radius: 100%;
	width: 60px;
	height: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: .3s all ease-in-out;
}
.swiper__btn:hover{
	background: var(--gradient-gold);
}
.swiper__btns{
	display: flex;
	gap: 20px;
	align-items: center;
}
.swiper__btn-next img{
	transform: rotate(180deg);
}
.more-doctors__swiper{
	overflow-x: hidden;
}
.more-doctors__swiper .swiper-container-autoheight, .swiper-container-autoheight .swiper-slide{
	height: 100%;
}
.more-doctors .doctor{
	border: 1px solid #8C663333;
}
@media(max-width: 1150px){
	.page-doctor .hero .hero__img{
		height: auto;
		width: 50%;
	}
	.doctor-info__txt{
		font-size: 18px;
	}

}
@media(max-width: 767px){
	.page-doctor .form{
		margin-bottom: 80px;
	}
	.mobile-menu__list, .mobile-menu .sub-menu{
		padding: 140px 24px 40px;
	}
	.page-doctor .hero{
		min-height: 700px;
	}
	.page-doctor .hero .btn{
		width: 100%;
	}
	.page-doctor .breadcrumbs{
		margin-bottom: 0;
	}
	.page-doctor .hero h1{
		margin-bottom: 20px;
	}
	.page-doctor .hero__list{
		margin-bottom: 20px
	}
	.page-doctor .hero .hero__img{
		right: 50%;
        width: 80%;
        transform: translateX(50%);
	}
	.page-doctor .hero{
		background-image: url("../img/doctor_hero_bg-mobile.png");
	}
	.page-doctor .hero .container{
		padding-bottom: 380px;
	}
	.doctor-info{
		padding-top: 40px;
		margin-bottom: 80px;
	}
	.doctor-info__txt{
		margin-bottom: 40px;
	}
	.doctor-info__lists{
		grid-template-columns: 1fr;
		gap: 40px;
	}
	.doctor-info__list:nth-child(3){
		grid-column: 1 / 2;
	}
	.doctor-info__list h2{
		margin-bottom: 20px;
	}
	.more-doctors .container{
		position: relative;
	}
	.swiper__btn{
		width: 40px;
		height: 40px;
	}
	.swiper__btns{
		gap: 20px;
		position: absolute;
        bottom: 0;
        transform: translate(-50%, 130%);
        left: 50%;
	}

	.more-doctors{
		margin-bottom: 140px;
	}
}


/* Страница врачей */
.page-doctors .doctor{
	border: 1px solid #8C663333;
	width: 100%;
}
.page-doctors .team{
	padding: 0;
	margin-bottom: 100px;
}
.page-doctors .team__list{
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	justify-content: start;
	gap:30px;
}
.page-doctors .form{
	margin-bottom: 100px;
}
@media(max-width: 767px){
	.page-doctors .team__list{
		grid-template-columns: 1fr;
		gap:20px;
	}
	.page-doctors .team__title{
		padding: 0;
		margin-bottom: 30px;
	}
	.page-doctors .team{
		margin-bottom: 80px;
	}
	.page-doctors .form{
		margin-bottom: 80px;
	}
}

/* Страница До/После */
.page-before-after h1{
	margin-bottom: 40px;
}
.filters{
	display:flex;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 12px;
	margin-bottom: 60px;
}
.filters a {
	display: block;
}
.before-after__list{
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px 30px;
	margin-bottom: 100px;
}
.before-after__images{
	margin-bottom: 30px;
}
.before-after-container{
	height: 300px !important;
}
.before-after-container img{
	height: 300px !important;
	object-fit: cover;
}
.before-after__item .separator-bullet{
	background-image: url('../img/icon-before-afterr-arrow.svg');
	background-repeat: no-repeat;
	background-size: 60%;
	background-position: center center;
}
.before-after__item .separator .arrow{
	    border-color: white !important;
		opacity: 0;
}
.before-after__txt{
	display: flex;
	flex-direction: column;
	gap: 10px; 
}
.page-before-after .form{
	margin-bottom: 100px;
}
.filters-mobile{
	position: relative;
	margin-bottom: 30px;
}
.filters-mobile__current{
	position: relative;
	font-size: 16px;
}
.filters-mobile__current::after{
	content: "";
	background-repeat: no-repeat;
	background-size: cover;
	background-image: url("../img/menu-arrow.svg");
	width: 12px;
	height: 8px;
	display: block;
	position: absolute;
	top: 40%;
	right: 30px;
	transition: all .3s ease-in-out;
}
.filters-mobile__current-active::after{
	transform: rotate(180deg);
}
.filters-mobile__list{
	display: none;
	border:1px solid var(--color-black) ;
	border-radius: 30px;
	position: absolute;
	bottom: 0;
	transform: translateY(100%);
	z-index: 999;
	background-color: var(--color-white);
	width: 100%;
	overflow: hidden;
}
.filters-mobile__list>*{
	padding: 20px;
	text-align: center;
	display: block;
	transition: all .3s ease-in-out;
	overflow: hidden;
	cursor: pointer;
}
.filters-mobile__list>*:hover{
	background-color: var(--color-black);
	color: var(--color-white);
}
@media(max-width: 767px){
	.before-after__list{
		grid-template-columns: 1fr;
		gap: 30px;
	}
	.before-after__images{
		margin-bottom: 20px;
	}
}


/* Страница отзывов */
.page-reviews h1{
	margin-bottom: 40px;
}
.reviews__list .container{
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 30px;
}
.add_review{
	display: flex;
	justify-content: center;
	align-items: center;
	background: linear-gradient(180deg, #FFFFFF 0%, #EEDDCF 91.89%);
	border: 1px solid #8C663333
}
.page-reviews .form{
	margin-bottom: 100px;
}
@media(max-width: 1150px){
	.page-reviews .reviews__video{
		width: 100%;
        height: 400px;
	}
}
@media(max-width: 767px){
	.page-reviews h1{
		margin-bottom: 20px;
	}
	.reviews__list .container{
		grid-template-columns: 1fr;
	}
	.page-reviews .reviews__video{
		height: auto;
		width: 100%;
	}
	.add_review{
		min-height: 650px;
	}
}

/* Страница контактов */
.page-contacts h1{
	margin-bottom: 40px;
}
.page-contacts .contacts .container{
	display: flex;
	gap: 30px;
}
.contacts__content a{
	transition: .3s all ease-in-out;
}
.contacts__content a:hover{
	background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.page-contacts .contacts .container .contacts__content{
	padding: 50px 50px 110px;
	border-radius: 30px;
	border: 1px solid #8C663333;
	display: flex;
	flex-direction: column;
	background-image: url(../img/contacts__bg.png);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: left bottom;
	width: 50%;
}
.page-contacts .contacts__left{
	max-width: 350px;
	font-size: 20px;
	margin-bottom: 60px;
}
.contacts__map{
	width: 50%;
	border-radius: 30px;
	overflow: hidden;
}
.contacts__map> div{
	height: 100%;
}
.contacts__map iframe{
	width: 100%;
	height: 100%;
}
.page-contacts .contacts__mid{
	font-size: 20px;
	display: flex;
	gap: 90px;
	margin-bottom: 32px;
}
.page-contacts .contact__right{
	max-width: 390px;
	font-size: 20px;
	display: flex;
	flex-direction: column;
	gap: 35px;
}
.contact__name {
	font-size: 14px;
	color: #29272499;
	margin-bottom: 15px;
}
.contact:last-child{
	margin-top: auto;
}
.page-contacts .contacts{
	margin-bottom: 100px;
}
.page-contacts .form{
	margin-bottom: 100px;
}
.wpcf7-acceptance a{
	color: var(--color-white) !important;
	text-decoration: underline !important;
}
@media(max-width: 1150px){
	.page-contacts h1{
		margin-bottom: 30px;
	}
	.page-contacts .contacts .container .contacts__content{
		padding: 20px 20px 140px;
	}
	.page-contacts .contacts__left {
		max-width: 320px;
		font-size: 18px;
	}
	.page-contacts .contacts__mid {
		gap: 20px;
	}
	.page-contacts .contact__right {
		max-width: 280px;
		font-size: 18px;
		gap: 20px;
	}
	.contact__name {
		font-size: 13px;
		margin-bottom: 10px;
	}
	.page-contacts .contacts{
		margin-bottom: 80px;
	}
	.page-contacts .form{
		margin-bottom: 80px;
	}
}
@media(max-width: 767px){
	.page-contacts .contacts .container .contacts__content{
		flex-direction: column;
		padding: 20px 20px 60px;
		gap: 30px;
		width: 100%;
	}
	.contacts__map{
		width: 100%;
	}
	.page-contacts .contacts .container{
		flex-direction: column;
	}
	.page-contacts .contacts__left {
		max-width: 100%;
		margin-bottom: 0;
	}
	.page-contacts .contact__right {
		max-width: 100%;
		margin-bottom: 0;
	}
	.page-contacts .contacts__mid {
		margin-bottom: 20px;
		margin-bottom: 0;
	}
	.contacts__map{
		height: 480px;
	}
}


/* Страница потребителю */
.cosumer-info{
	margin-bottom: 100px;
}
.page-consumer .form{
	margin-bottom: 100px;
}
.page-consumer h1{
	margin-bottom: 40px;
}
.cosumer-info__name{
	margin-bottom: 40px;
	grid-column: 1/3;
}
.cosumer-info .container{
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px 70px;
}
.cosumer-info__txt-title{
	font-size: 20px;
	margin-bottom: 20px;
}
.cosumer-info__txt p{
	margin-bottom: 20px;
}
.cosumer-info__txt .btn{
	display: block;
	width: fit-content;
}
.cosumer-info__txt:nth-child(4){
	grid-column: 1/3;
}
@media(max-width: 1150px){
	.cosumer-info{
		margin-bottom: 80px;
	}
	.page-consumer .form{
		margin-bottom: 80px;
	}
	.page-consumer h1{
		margin-bottom: 20px;
	}
	.cosumer-info__name{
		margin-bottom: 20px;
	}

}
@media(max-width: 767px){
	.cosumer-info .container{
		grid-template-columns: 1fr;
		gap: 30px;
	}
	.cosumer-info__name{
		grid-column: 1 / 2;
		margin-bottom: 0;
	}
	.cosumer-info__txt-title{
		margin-bottom: 10px;
	}
	.cosumer-info__txt p{
		margin-bottom: 20px;
	}
	.cosumer-info__txt:nth-child(4) {
		grid-column: 1 / 2;
	}
	.cosumer-info__txt .btn{
		width: 100%;
	}
}


/* 404 */
.error{
	background-image: url('../img/404_bg.avif');
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
}
.error .container{
	padding: 190px 0 260px 0;
	margin-bottom: -30px;
	position: relative;
}
.error h1{
	margin-bottom: 30px;
}
.error h1, .error__txt{
	max-width: 570px;
}
.error__txt{
	color: var(--color-white);
	margin-bottom: 30px;
}
.error .btn{
	display: block;
	width: fit-content;
}
.error__tooth{
	position: absolute;
	right: 0;
	width: 640px;
	bottom: 0;
}
@media(max-width: 1150px){
	.error__tooth {
		right: -80px;
		width: 425px;
	}
	.error{
		overflow-x: hidden;
	}
}
@media(max-width: 767px){
	.error{
		overflow-x: initial;
		background-image: url("../img/404_bg_mobile.avif");
	}
	.error .container{
		padding: 50px 0 330px;
	}
	.error h1, .error__txt{
		text-align: center;
		max-width: 100%;
	}
	.error h1{
		margin-bottom: 20px;
	}
	.error__txt{
		margin-bottom: 25px;
		line-height: 130%;
	}
	.error .btn{
		width: 100%;
		text-align: center;
	}
	.error__tooth{
		right: 50%;
		transform: translateX(50%);
		width: 80%;
	}
}


/* Страница успешной отправки формы */
.thanks{
	margin-bottom: 100px;
}
.thanks .container{
	display: flex;
	justify-content: space-between;
	gap: 60px;
}
.page-thanks h1{
	margin-bottom: 30px;
}
.thanks__txt p{
	margin-bottom: 30px;
}
.thanks__txt {
	margin-bottom: 40px;
}
.thanks .btn{
	display: block;
	width: fit-content;
}
.thanks__img{
	width: 100%;
	height: 360px;
	border-radius: 25px;
	object-fit: cover;
}
@media(max-width: 767px){
	.thanks .container{
		flex-direction: column;
		gap: 20px;
	}
	.thanks__txt p{
		margin-bottom: 20px;
	}
	.thanks__img{
		height: 200px;
	}
	.thanks .btn{
		width: 100%;
	}
}

/* Страница политики */
.page-policy h1{
	margin-bottom: 50px;
}
.policy__content{
	margin-bottom: 100px;
}
.policy__content h2{
	margin-bottom: 20px;
	font-size: 24px;
	font-family: 'Montserrat';
}
.policy__content h2:not(:first-child){
	margin-top: 40px;
}
.policy__content ul{
	list-style: disc;
	margin: 20px 0;
	padding-left: 24px;
}
.page-policy .form{
	margin-bottom: 100px;
}
@media(max-width: 767px){
	.policy__content{
		margin-bottom: 80px;
	}
	.page-policy .form{
		margin-bottom: 80px;
	}
	.page-policy h1{
		margin-bottom: 40px;
	}
	.policy__content h2{
		font-size: 20px;
	}
	.policy__content h2:not(:first-child){
		margin-top: 30px;
	}
	.page-service .hero .breadcrumbs .container{
		margin-bottom: 0;
	}
}


/* Страница услуга */
.page-service .hero{
	background-image: var(--gradient-brown);
}
.page-service .hero__txt{
	max-width: 100%;
}
.page-service .hero__txt p:not(:last-child){
	margin-bottom: 16px;
}
.page-service .hero__right img{
	width: 480px;
	height: 420px;
}
.page-service .form {
	margin-bottom: 80px;
}
.page-service .breadcrumbs{
	padding: 0;
}
.page-service .breadcrumbs .container{
	padding: 50px 0 80px;
}
.page-service .breadcrumbs .breadcrumbs__item{
	color:#FFFFFF80;
}
.page-service .breadcrumbs .breadcrumbs__item-active{
	color: var(--color-white);
}
.page-service .hero .container{
	padding: 0 0 90px;
	margin-bottom: 50px;
}
.page-service .about{
	padding-top: 0;
}
.page-service .about__txt-before{
	margin-bottom: 60px;
}

.page-service .about .container{
	padding: 0;
}
.page-service .hero__title{
	max-width: 650px;
}
.page-service .hero__content{
	justify-content: space-between;
	gap: 60px
}
.page-service .about .container:nth-child(3), .page-service .about .container:nth-child(5){
	background-color: transparent;
	padding: 0;
	border-radius: initial;
	border: none;
}
.about__txt-before{
	margin-bottom: 40px;
}
.about__txt-after{
	margin-top: 50px;
}
.about__txt-after p, .about__txt-before p{
	line-height: 120%;
}
.about__txt-after p:not(:last-child), .about__txt-before p:not(:last-child){
	margin-bottom: 16px;
}
.page-service .about__bg{
	max-height: 530px;
    height: 100%;
}
.page-service .services{
	padding-top: 0;
	background: none;
	margin-bottom: 100px;
	padding-bottom: 0;
}
.services__txt{
	margin-bottom: 40px;
}
.page-service .services__title{
	max-width: fit-content;
}
.page-service .why__title{
	max-width: fit-content;
}
.page-service .service__title{
	font-size: 32px;
}
.page-service .why{
	margin-bottom: 100px;
	padding-bottom: 0;
	padding-top: 0;
}
.why__txt-before{
	margin-bottom: 30px;
}
.page-service .why__item {
	padding: 30px;
	display: flex;
	flex-direction: column;
	border: 1px solid #8C663333;
	border-radius: 20px;
}
.page-service .why__list{
	grid-template-columns: 1fr;
}
.why__item__number{
	margin-bottom: 20px;
	font-size: 40px;
	line-height: 100%;
	display: block;
	font-family: 'ViaodaLibre';
}

.sevice-advant__title{
	width: fit-content;
	margin: 0 auto 40px;
}
.sevice-advant__txt{
	margin-bottom: 30px;
}
.sevice-advant{
	margin-bottom: 100px;
}
.sevice-advant__list{
	display: grid;
	gap: 30px;
	grid-template-columns: 1fr;
}
.sevice-advant__item{
	padding: 30px;
	background-image: linear-gradient(180deg, #FFFFFF 0%, #EEDDCF 100%);
	border-radius: 20px;
}
.sevice-advant__name{
	font-family: "Montserrat";
	font-weight: 700;
	margin-bottom: 15px;
}
.choose{
	position: relative;
	margin-bottom: 100px;
}
.choose h2{
	width: fit-content;
	margin: 0 auto 40px;
}
.choose__txt-before{
	margin-bottom: 50px;
}
.choose table{
	border-spacing: 0;
	border-radius: 20px;
	overflow: hidden;
	border: 1px solid #E8E0D6;
	margin-bottom: 50px;
}

.choose table td{
	border: 1px solid #E8E0D6;
	padding: 20px 30px;
}
.choose table tbody tr:nth-child(2n-1){
	background-color: #E8E0D633;
}
.choose table tbody tr:first-child{
	background-color: #8C663333;
}
.choose table tbody tr:first-child{
	font-size: 20px;
}
.choose__txt-after p{
	margin-bottom: 16px;
}
.text-block{
	position: relative;
	background-color: var(--color-white);
	margin-bottom: 100px;
}
.text-block__title{
	width: fit-content;
	margin: 0 auto 40px;
}
.text-block__txt p{
	margin-bottom: 16px;
}
.page-service .about-2{
	background-color: var(--color-white);
	margin-bottom: 100px;
	padding-top: 0;
}
.page-service .about-2 .container{
	border-radius: 30px;
	border: 1px solid #2B1B111A;
	gap: 40px;
	padding: 60px;
}

.page-service .about__right>img{
	margin-bottom: 35px;
	height: 100%;
	width: 605px;
	object-fit: cover;
	min-height: 400px;
}
.page-service .about-2 .about__right>img{
	max-height: 350px;	
}
.page-service .about__note{
	position: relative;
	padding: 10px 20px;
	display: flex;
	align-items: center;
	gap: 15px;
	border: 1px solid #636466;
	border-radius: 30px;
}
.page-service .about__txt{
	line-height: 120%;
	font-size: 16px;
}
.page-service .about__note-icon{
	width: 20px;
	height: 20px;
}
.price{
	background-color: var(--color-white);
	margin-bottom: 100px;
}
.price .container{
	padding: 60px;
	border: 1px solid #2B1B111A;
	border-radius: 30px;
}
.price__title{
	width: fit-content;
	margin: 0 auto 40px;
}
.price__txt{
	text-align: center;
	margin-bottom: 30px;
}
.price .btn{
	width: fit-content;
	margin: 0 auto;
}
.price table{
	width: 100%;
	border-spacing: 0;
	border-radius: 20px;
	overflow: hidden;
	background: #E8E0D633;
	margin-bottom: 30px;
}
.price table thead{
	background-color: #E8E0D6;
}
.price table th, .price table td{
	padding: 20px 30px;
	border: 1px solid #E8E0D6;
	text-align: start;
}
.page-service .reviews{
	border-radius: 0;
	padding: 0;
	margin-bottom: 100px;
}
.more-services{
	background-color: var(--color-white);
	margin-bottom: 100px;
}
.more-services__top{
	display: flex;
	justify-content: space-between;
	margin-bottom: 40px;
}
.page-service .faq{
	padding: 0;
	margin-bottom: 100px;
}
.service-slide{
	padding: 20px;
	height: 100%;
	border: 1px solid #8C663333;
	border-radius: 20px;
	display: flex;
	flex-direction: column;
}
.service-slide__img{
	width: 100%;
	height: 200px;
	border-radius: 18px;
	object-fit: cover;
	overflow: hidden;
	margin-bottom: 20px;
}
.service-slide__title{
	font-size: 20px;
	font-weight: 700;
	margin-bottom: 20px;
}
.slide__desc{
	margin-top: auto;
}
.hidden{
	display: none;
}
.services__list{
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 30px;
	margin-bottom: 100px;
}
.services-prices{
	padding-top: 100px;
	margin-bottom: 100px;
}
.services-prices h2{
	margin-bottom: 40px;
}
.services-prices__list {
	display: flex;
	flex-direction: column;
	margin-bottom: 30px;
}
.services-prices__list-cat{
	background-color:#8C663333;
	padding: 20px 30px;
	font-size: 20px;
	font-weight: 700;
	border-top-left-radius: 20px;
	border-top-right-radius: 20px;
}
.services-prices__list-item{
	display: flex;
	justify-content: space-between;
	padding: 20px 30px;
	border:1px solid #8C663333;
	font-weight: 700;
}
.services-prices .btn{
	display: block;
	width: fit-content;
	margin: 0 auto;
}
.page-services .why__title{
	width: fit-content;
}
.page-service .dot{
	color: #FFFFFF80;
}
.page-services h1{
	margin-bottom: 40px;
}
.page-services {
	padding-bottom: 100px;
}
.more-services .container{
	overflow: hidden;
}
.more-services{
	position: relative;
}
.page-service .why__item__name{
	font-family: 'ViaodaLibre';
}
.page-services .filters{
	gap: 10px;
	justify-content: initial;
}
.page-services .filters .btn{
	padding: 10px 24px;
}
.page-service .services .services__list{
	display: flex;
	flex-direction: column;
	margin-bottom: 0;
}
.page-service .hero .breadcrumbs .container{
	padding: 50px 0;
}
@media(max-width: 1150px){
	.services__list{
		grid-template-columns: 1fr 1fr;
	}
	.page-services .why__list{
		grid-template-columns: 1fr 1fr;
	}
	.page-service .why__list{
		grid-template-columns: 1fr 1fr;
	}
	.sevice-advant__list{
		grid-template-columns: 1fr 1fr;
	}
}
@media(max-width: 767px){
	.services__list{
		grid-template-columns: 1fr;
		gap: 20px;
	}
	.service-slide__img{
		margin-bottom: 10px;
	}
	.services__list{
		margin-bottom: 80px;
	}
	.form-reverse .container{
		flex-direction: column-reverse;
	}
	.services-prices{
		padding-top: 80px;
    	margin-bottom: 80px;
	}
	.services-prices h2{
		text-align: center;
		width: 100%;
	}
	.services-prices__list-cat{
		text-align: center;
		font-size: 18px;
	}
	.services-prices__list-item-name{
		max-width: 50%;
	}
	.services-prices__list-item{
		padding: 20px 10px;
		align-items: center;
	}
	.services-prices .btn{
		width: 100%;
	}
	.page-services .why__title{
		margin-left: 0;
	}
	.page-services .why__list{
		grid-template-columns: 1fr;
	}
	.page-services .why__item__name{
		font-size: 18px;
		margin-bottom: 10px;
	}
	.page-services .why{
		padding-top: 0;
	}
	.page-services  .more-doctors{
		margin-bottom: 100px;
	}
	.page-services .faq{
		padding-top: 0;
	}
	.page-services {
		padding-bottom: 80px;
	}
	.page-service .hero .container{
		padding-bottom: 60px;
	}
	.page-service .breadcrumbs .container{
		padding: 30px 0;
	}
	.about__txt-before {
		margin-bottom: 30px;
	}
	.page-service .about .container{
		flex-direction: column;
	}
	.page-service .about .about__txt{
		font-size: 14px;
		line-height: 130%;
	}
	.about__txt-after{
		margin: 30px 0 0;
	}
	.page-service .service__title{
		font-size: 28px;
	}
	.page-service .services__list{
		margin-bottom: 0;
	}
	.page-service .why__list{
		grid-template-columns: 1fr;
	}
	.why__item__number{
		font-size: 28px;
		margin-bottom: 10px;
	}
	.page-service .why__item__name{
		font-size: 18px;
		margin-bottom: 10px;
	}
	.page-service .why__item{
		padding: 20px;
	}
	.page-service .why{
		padding-bottom: 0;
		margin-bottom: 60px;
	}
	.sevice-advant{
		padding: 0;
		margin-bottom: 60px;
	}
	.sevice-advant__title{
		margin-bottom: 32px;
	}
	.sevice-advant__txt{
		margin-bottom: 20px;
	}
	.sevice-advant__list{
		grid-template-columns: 1fr ;
		gap: 20px;
	}
	.sevice-advant__item{
		padding: 20px;
	}
	.sevice-advant__name{
		font-size: 20px;
		margin-bottom: 10px;
	}
	.choose{
		padding: 0;
		margin-bottom: 60px;
	}
	.choose h2{
		margin-bottom: 30px;
	}
	.choose__txt-before{
		margin-bottom: 30px;
	}
	.choose table tbody tr:first-child{
		font-size: 18px;
	}
	.choose table td{
		padding: 20px;
	}
	.choose__table{
		overflow-x: scroll;
	}
	.choose table{
		width: 900px;
	}
	.text-block{
		padding: 0;
	}
	.text-block__title{
		margin-bottom: 60px;
	}
	.page-service .about__list{
		margin-bottom: 0;
	}
	.about-2 .container{
		gap: 20px;
	}
	.page-service .price{
		margin-top: -1px;
	}
	.page-service .price .container{
		padding: 0 0 20px;
		border: none;
	}
	.page-service  .price__title{
		margin-bottom: 20px;
	}
	.price .btn{
		width: 100%;
	}
	.page-service .reviews{
		margin-top: -1px;
	}
	.more-services{
		padding-bottom: 0;
		margin-top: -1px;
	}
	.page-service .form {
		padding-top: 0;
	}
	.more-services__title{
		margin-bottom: 20px;
	}
	.page-service .faq{
		margin-top: -1px;
		padding-top: 80px;
	}
	.price{
		margin-bottom: 60px;
	}
	.page-service .reviews{
		margin-bottom: 60px;
	}
	.page-service .faq{
		padding-top: 0;
	}
}


/* Блог */
.page-blog h1{
	margin-bottom: 40px;
}
.blog-filters .container{
	display: flex;
	gap:10px;
	align-items: center;
	flex-wrap: wrap; 
}
.blog-filters .container .btn{
	display: block;
	padding: 10px 24px;
}
.blog-filters{
	margin-bottom: 32px;
}
.post-list{
	margin-bottom: 40px;
}
.post-list .container{
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 30px;
}
.wp-block-image figure{
	width: 100%;
}
.wp-block-image figure img{
	width: 100%;
}
.post{
	padding: 20px;
	border: 1px solid #8C663333;
	border-radius: 30px;
	position: relative;
	display: flex;
	flex-direction: column;
}
.post__img{
	width: 100%;
	height: 200px;
	object-fit: cover;
	border-radius: 18px;
	margin-bottom: 20px;
}
.post__cats{
	position: absolute;
	top: 30px;
	left: 30px;
	display: flex;
	gap: 5px;
}
.post__cat{
	display: block;
	cursor: pointer;
	background: var(--gradient-gold);
	padding: 6px 15px;
	border-radius: 90px;
}
.post__info{
	display: flex;
	align-items: center;
	justify-content: space-between;
	color: #29272480;
	margin-bottom: 10px;
}
.post__title{
	font-weight: 700;
	margin-bottom: 10px;
}
.post__excerpt{
	margin-bottom: 70px;
}
.page-blog .post__excerpt{
	margin-bottom: 32px;
}
.post__link{
	display: block;
	width: 100%;
	margin-top: auto;
}
.pagination .container{
	max-width: fit-content;
}
.pagination {
	margin-bottom: 100px;
}
.page-numbers + .current{
	font-weight: 700;
}
.page-blog .form {
	margin-bottom: 100px;
}
.page-post h1{
	margin-bottom: 30px;
}
.post-top .container{
	display: flex;
	gap: 30px;
}
.post-top__left{
	display: flex;
	flex-direction: column;
	gap: 15px;
	max-width: 50%;
}
.post-top__date, .post-top__autor{
	color: #29272480;
}
.post-top__excerpt{
	font-weight: 700;
}
.post-top__img{
	min-height: 360px;
	height: 100%;
	width: 48%;
	object-fit: cover;
	border-radius: 30px;
}
.post-top{
	margin-bottom: 50px;
}
.post-content .container{
	display: flex;
	gap:30px;
	flex-direction: column-reverse;
}
.post-content__right{
	min-width: 390px;
	position: relative;
}
.post-content__left h2:not(:first-child){
	margin-top: 20px;
}
.post-content__left h2{
	margin-bottom: 30px;
}
.post-content__left p{
	margin-bottom: 30px;
}
.post-content__left ul{
	list-style: disc;
}
.post-content__left ol{
	list-style: decimal;
}
.post-content__left ul, .post-content__left ol{
	margin-left: 24px;
	margin-bottom: 30px;
}
.post-content__left img{
	max-height: 600px;
	border-radius: 30px;
	margin-bottom: 30px;
	object-fit: cover !important;
}
.post-content__left video{
	border-radius: 30px;
	overflow: hidden;
	max-height: 600px;
	object-fit: cover;
	width: fit-content;
}
.post-content .wp-block-video{
	display: flex;
    justify-content: center;
}
.page-policy a, .page-post a{
	color: #DBAB48;
	transition: .3s all ease-in-out;
}
.page-policy a:hover, .page-post a:hover{
	text-decoration: underline;
}
.post-form .form__input-container > p{
	display: grid;
	gap: 16px;
	grid-template-columns: 1fr 1fr;
}
.post-content__left table{
	margin-bottom: 30px;
	border-top-left-radius: 20px;
	border-top-right-radius: 20px;
	overflow: hidden;
}
.post-content__left table thead th{
	border: none;
	padding: 20px 30px;
	font-size: 20px;
}
.post-content__left table thead{
	background-color:#8C663333;
	border: none;
}
.wp-block-table td, .wp-block-table th{
	border: 1px solid #8C663333;
	padding: 20px 30px;
	font-weight: 400;
}
.acf-note-box{
    padding: 12px 20px;
    border-radius: 30px;
    font-size: 20px;
    display: flex;
    border: 1px solid #8C663333;
    gap:15px;
    align-items: center;
	margin-bottom: 30px;
}
.acf-note-box img,.acf-logo-box img, .post-form img{
	margin-bottom: 0;
	border-radius: 0;
}
.acf-note-box p, .acf-logo-box p, .post-form p{
	margin-bottom: 0;
}
.post-slider{
	display: flex;
	flex-direction: column-reverse;
}
.post-slider .swiper__btn img{
	margin-bottom: 0;
}
.post-slider .swiper-slide img{
	margin-bottom: 0;
	width: 100%;
	height: 350px;
	object-fit: cover;
}
.post-slider .more-doctors__top{
	justify-content: center;
	margin-bottom: 0;
	margin-top: 16px;
}
.post-slider{
	margin-bottom: 24px;
}
.acf-logo-box{
	padding: 30px;
    border-radius: 30px;
    font-size: 20px;
    display: flex;
    border: 1px solid #8C663333;
    gap:15px;
    align-items: start;
	margin-bottom: 30px;
}
.post-content{
	margin-bottom: 100px;
}
.post-form .form__title{
	font-family: 'ViaodaLibre';
    font-size: 40px;
    font-weight: 400;
    line-height: 100%;
	margin-bottom: 30px;
}
.post-toc{
	padding: 20px;
	border-radius: 20px;
	border: 1px solid #8C663333;
	position: sticky;
	top: 120px;
}
.post-toc__title{
	font-family: 'ViaodaLibre';
	font-size: 32px;
	margin-bottom: 24px;
}
.page-in-dev{
	padding: 150px;
    text-align: center;
}
.post-toc__nav{
	display: none;
	padding-top: 32px;
}
.post-toc__list{
	display: flex;
	gap: 15px;
	flex-direction: column;
}
.post-toc__sublist{
	display: flex;
	flex-direction: column;
	gap: 12px;
	list-style: none;
	margin: 12px 0 0;
	padding: 0 0 0 16px;
}
.post-toc__link{
	color: inherit;
	text-decoration: none;
}
.post-toc__link:hover{
	color: #8C6633;
}
.post-toc__link--h2{
	display: inline-block;
	font-size: 20px;
}
.post-toc__link--h3{
	font-size: 18px;
}
.post-toc__item--has-children > .post-toc__link--h2{
	position: relative;
	padding-right: 16px;
}
.post-toc__title{
	position: relative;
	display: inline-block;
	padding: 0 16px 0 0;
	border: none;
	background: none;
	font: inherit;
	color: inherit;
	cursor: pointer;
	text-align: left;
	font-family: 'ViaodaLibre';
	font-size: 32px;
	margin-bottom: 0;
}
.post-toc__title::after{
	content: "";
	background: url("../img/menu-arrow-black.svg") center / cover no-repeat;
	width: 6px;
	height: 4px;
	display: block;
	position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
	transition: transform .3s ease-in-out;
}
.post-toc.is-open > .post-toc__title::after{
	transform: translateY(-50%) rotate(180deg);
}
.post-toc__list{
	display: flex;
	flex-direction: column;
	gap: 12px;
	list-style: none;
	margin: 0;
	padding: 0;
}
.post-toc__sublist{
	display: flex;
	flex-direction: column;
	gap: 12px;
	list-style: none;
	margin: 12px 0 0;
	padding: 0 0 0 16px;
}
.post-toc__link{
	color: inherit;
	text-decoration: none;
}
.post-toc__link:hover{
	color: #8C6633;
}
.post-toc__link--h2{
	display: inline-block;
	font-size: 20px;
}
.post-toc__number{
	margin-right: 4px;
}
.post-content__left h2{
	scroll-margin-top: 30px;
	margin-bottom: 30px;
}
.post-content__left h3{
	scroll-margin-top: 30px;
	margin-top: 16px;
	margin-bottom: 24px;
}
.post-toc__item{
	font-size: 14px;
}
.post-toc__item a{
	transition: .3s all ease-in-out;
}
.post-toc__item a:hover{
	color: #DBAB48;
}
.more-posts h2{
	margin-bottom: 40px;
}
.more-posts__list{
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 30px;
}
.more-posts{
	margin-bottom: 100px;
}
.page-post > .form {
	margin-bottom: 100px;
}
.wp-block-quote{
	padding: 50px 0 50px 65px;
	font-size: 20px;
	position: relative;
}
.wp-block-quote:after{
	content: "";
	width: 65px;
	height: 65px;
	background-image: url('../img/commas.svg');
	position: absolute;
	top: 0;
	left: 0;
	background-repeat: no-repeat;
	background-size: contain;
}
.wp-block-quote:before{
	content: "";
	width: 65px;
	height: 65px;
	background-image: url('../img/commas.svg');
	position: absolute;
	bottom: 0;
	right: 0;
	transform: rotate(180deg);
	background-repeat: no-repeat;
	background-size: contain;
}
@media(max-width: 1150px){
	.post-list .container{
		grid-template-columns: 1fr 1fr;
	}
	.more-posts__list{
		grid-template-columns: 1fr 1fr;
	}
}
@media(max-width: 767px){
	.post-slider .more-doctors__top .swiper__btns{
		position: initial;
		transform: initial;
	}
	.post-slider .swiper-slide img{
		max-height: 350px;
	}
	.post-toc__link--h2{
		font-size: 16px;
	}
	.post-toc__link--h3 {
		font-size: 16px;
	}
	.post-list .container{
		grid-template-columns: 1fr;
		gap: 20px;
	}
	.post__title{
		font-size: 18px;
	}
	.post__excerpt{
		margin-bottom: 20px;
	}
	.pagination{
		margin-bottom: 40px;
	}
	.page-blog .form{
		margin-bottom: 80px;
	}
	.post-top .container{
		flex-direction: column;
		gap: 20px;
	}
	.post-top__left{
		max-width: 100%;
	}
	.post-top__img{
		height: 150px;
		width: 100%;
	}
	.post-content .container{
		flex-direction: column-reverse;
		gap: 50px;
	}
	.post-content__right{
		min-width: initial;
		width: 100%;
	}
	.post-top{
		margin-bottom: 20px;
	}
	.post-content__left h2{
		margin-bottom: 10px;
	}
	.post-content__left p{
		margin-bottom: 10px;
	}
	.wp-block-quote{
		font-size: 18px;
	}
	.post-content__left img{
		max-height: 250px;
	}
	.acf-note-box {
		font-size: 18px;
		line-height: 120%;
	}
	.acf-logo-box{
		flex-direction: column;
		align-items: start;
		font-size: 14px;
	}
	.post-content__left table thead th{
		font-size: 18px;
	}
	.wp-block-table{
		overflow-x: scroll;
	}
	.min-width-table table{
		min-width: 650px;
	}
	.post-form .form__title{
		font-size: 28px;
	}
	.more-posts__list{
		grid-template-columns: 1fr;
	}
	.post-content{
		margin-bottom: 80px;
	}
	.more-posts__title{
		text-align: center;
		margin-bottom: 20px;
	}
	.more-posts{
		margin-bottom: 80px;
	}
	.page-post > .form {
    	margin-bottom: 80px;
	}
}

/* куки */
.cookie{
	position: fixed;
	bottom: -500px;
	right: 20px;
	background: var(--color-white);
	padding: 30px;
	display: flex;
	gap: 10px;
	flex-direction: column;
	z-index: 9999;
	width: 370px;
	border-radius: 30px;
	box-shadow: 0px 0px 6px #201209;
	transition: .5s all ease-in-out;
}
.cookie .btn{
	width: fit-content;
	padding: 10px 25px;
    border: 1px solid transparent;
    background: linear-gradient(#ffffff, #ffffff) padding-box, var(--gradient-gold) border-box;
    color: var(--color-black);
}
.cookie .btn:hover{
	color: var(--color-white);
}
.cookie .btn span{
	z-index: 3;
}
.cookie-active{
	bottom: 20px;
}
.cookie__txt a{

}
@media(max-width: 767px){
	.cookie{
		border-radius: 20px;
		border-bottom-left-radius: 0;
		border-bottom-right-radius: 0;
		width: 100%;
		right: 0;
		padding: 16px;
		font-size: 13px;
	}
	.cookie-active{
		bottom: 0;
	}
	.cookie .btn{
		width: 100%;
	}
}

/* попап форма */
.popup{
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: #2B1B11B2;
	z-index: 999;
	display: none;
}
.popup__container{
	padding: 50px;
	max-width: 650px;
	border-radius: 30px;
	background: var(--color-white);
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translateX(-50%) translateY(-50%);
	width: 100%;
}
.popup__close{
	cursor: pointer;
	position: absolute;
	top: 20px;
	right: 20px;
	width: 20px;
	height: 20px;
}
.popup .form__title{
	font-family: 'ViaodaLibre';
    font-size: 32px;
    font-weight: 400;
    line-height: 100%;
}
.popup .form__input{
	border-color: #4D361433;
}
.popup .wpcf7-acceptance{
	color: #292724;
}
.popup .wpcf7-acceptance a{
	color: #292724;
}
@media(max-width: 767px){
	.popup__container{
		padding: 50px 16px;
	}
	.popup .form__title{
		font-size: 24px;
	}
	.page-service .faq{
		margin-bottom: 60px;
	}
	.page-service .about-2 .container{
		padding: 20px;
	}
	.page-service .services{
		margin-bottom: 60px;
	}
}
html :where(.wp-block) {
	max-width: 85%;
}
.services-prices .container{
	border: none;
	padding: 0;
}