/*
* Prefixed by https://autoprefixer.github.io
* PostCSS: v8.4.14,
* Autoprefixer: v10.4.7
* Browsers: last 4 version
*/

* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
*:before,
*:after {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
input,
button,
select,
textarea {
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
}
input:focus,
button:focus,
select:focus,
textarea:focus {
    outline: 0;
}
input,
textarea {
    border: 1px solid #DBDBDB;
    background: #FFF;
    border-radius: 0;
}
a {
    text-decoration: underline;
    color: #1A0B22;
}
a:hover {
    text-decoration: none;
}
img {
    vertical-align: middle;
    max-width: 100%;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: inherit;
    font-weight: bold;
    padding: 0;
    margin: 0;
}
p{
    margin: 0;
}
.clearfix:after{
    display: table;
    content: " ";
    clear: both;
}
.container {
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
    outline: 0px solid red;
}
.container::after {
    clear: both;
    content: "";
    display: table;
}

@media (min-width: 480px) and (max-width: 767px) {
    .container {
        max-width: 748px;
    }
}
@media (min-width: 768px) {
    .container {
        width: 750px;
    }
}
@media (min-width: 992px) {
    .container {
        width: 970px;
    }
}
@media (min-width: 1200px) {
    .container {
        width: 1170px;
    }
}
@media (min-width: 1470px) {
    .container {
        width: 1440px;
    }
}

html, body{
    padding: 0;
    margin: 0;
    font-family: "Inter", sans-serif;
    font-weight: 300;
    font-size: 14px;
    color: #2e2926;
    background: #D9C2B6;
}

.header-wrapper{
    background: #614C41;
}

.header{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #FFF;
    gap: 20px;
    padding: 20px 0;
}
.header__left{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 30px;
}
.header__right{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 30px;
}

.header__slogan{
    color: #FFF;
}
.header__logo{}
.header__callback{}
.header__nav{}
.header__nav ul{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 20px;
    list-style: none;
    margin: 0;
    padding: 0;
}
.header__nav ul li{}
.header__nav ul li a{
    color: #FFF;
    text-decoration: none;
}
.header__nav ul li a:hover{
    text-decoration: underline;
}
.header__place{
    font-size: 16px;
}
.header__contacts{}

.btn-feedback{
    border: 0;
    color: #FFF;
    background-image: -o-linear-gradient(308.16deg, rgba(141,117,105,1) 0%, rgba(217,194,182,1) 50%, rgba(141,117,105,1) 98%);
    background-image: linear-gradient(0.394turn, rgba(141,117,105,1) 0%, rgba(217,194,182,1) 50%, rgba(141,117,105,1) 98%);
    cursor: pointer;
    font-size: 12px;
    padding: 5px 15px;
}

.contacts-lists{}

.contacts-list{
    padding: 3px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 10px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.contacts-list__phone a{
    text-decoration: none;
    color: #FFF;
}
.contacts-list__phone a:hover{
    text-decoration: underline;
}
.contacts-list__social{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 10px;
}
.contacts-list__social a{
    display: block;
    width: 18px;
    height: 18px;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
}

.social-tlg{
    background-image: url("../img/telegram.svg");
}
.social-max{
    background-image: url("../img/max.svg");
}

.site-menu-wrapper{
    background: #EEE8E2;
    height: 60px;
    position: relative;
    z-index: 10;
}
.site-menu-wrapper .container{
    height: 100%;
}
.site-menu{
    list-style: none;
    padding: 0;
    margin: 0;
    display: table;
    width: 100%;
    height: 100%;
}
.site-menu > li{
    display: table-cell;
    height: 100%;
    vertical-align: middle;
    position: relative;
}
.site-menu > li.dropdown:before{
    content: "";
    -webkit-mask-image: url("../img/arrow-down.svg");
    mask-image: url("../img/arrow-down.svg");
    background-color: #2E2926;
    position: absolute;
    width: 12px;
    height: 12px;
    -webkit-mask-size: contain;
    mask-size: contain;
    display: block;
    z-index: 1;
    right: 15px;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    top: 50%;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
}
.site-menu > li.dropdown > a{
    padding-right: 30px;
}
.site-menu > li > a{
    text-decoration: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    height: 100%;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0 20px;
    font-size: 15px;
    font-weight: 500;
}
.site-menu > li > a:hover{
    opacity: .7;
}
.site-menu > li > ul{
    display: none;
    list-style: none;
    padding: 0;
    margin: 0;
    background: #EEE8E2;
    -webkit-box-shadow: 0 6px 12px rgba(0,0,0,.175);
    box-shadow: 0 6px 12px rgba(0,0,0,.175);
    min-width: 100%;
    position: absolute;
    left: 0;
    top: 60px;
}
.site-menu > li > ul > li > a{
    color: #EEE8E2;
    padding: 14px 30px;
    display: block;
    width: 100%;
    text-decoration: none;
    white-space: nowrap;
    color: #2E2926;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
}
.site-menu > li > ul > li > a:hover{
    background: #614C41;
    color: #FFF;
}
@media (min-width: 1200px) {
    .site-menu > li:hover > ul{
        display: block;
        -webkit-animation: fadeIn 0.5s ease-out;
        animation: fadeIn 0.5s ease-out;
    }
}
@-webkit-keyframes fadeIn {
    0% {display: none; opacity: 0;}
    1% {display: block;opacity: 0;}
    100% {display: block; opacity: 1;}
}
@keyframes fadeIn {
    0% {display: none; opacity: 0;}
    1% {display: block;opacity: 0;}
    100% {display: block; opacity: 1;}
}

input[type="text"], input[type="tel"]{
    width: 100%;
    height: 44px;
    padding: 0 20px;
    border: none;
    outline: none;
    background: #fff;
    border: 1px solid #b3b3b3;
}


.slider{
    position: relative;
}
.slider .owl-carousel .owl-item > div{
    height: 700px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

.index-slider-wrapper{
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    z-index: 1;
    height: 100%;
}
.index-slider-wrapper .container{
    height: 100%;
}

.index-slider{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 100%;
}
.index-slider__text{}
.index-slider__subtitle{
    color: #FFF;
    font-size: 30px;
    font-weight: 400;
    display: inline-block;
    background: #614C41;
    padding: 5px 10px;
}
.index-slider__sale{
    color: #614C41;
    font-size: 64px;
    font-weight: 700;
    padding: 60px 0 20px;
    color: #FFF;
}
.index-slider__desc{
    color: #FFF;
    font-size: 30px;
    font-weight: 600;
}

.forma{
    background: #857D73;
    padding: 40px;
    width: 470px;
}
.forma__title{
    color: #FFF;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 20px;
    margin-bottom: 40px;
    text-align: center;
}
.forma__label{
    margin-bottom: 20px;
}
.forma__policy{
    color: #FFF;
    font-size: 13px;
    margin-bottom: 35px;
}
.forma__policy a{
    color: #FFF;
}
.forma__policy input[type=checkbox]{
    width: 16px;
    height: 16px;
    accent-color: #614c41;
    margin: 0;
    margin-right: 10px;
    vertical-align: -2px;
}
.forma__btn{}

.forma-btn{
    color: #fff;
    width: 100%;
    background: -o-linear-gradient(308.16deg, rgba(46, 41, 38, 1) 2%, rgba(97, 76, 65, 1) 52%, rgba(46, 41, 38, 1) 100%);
    background: linear-gradient(0.394turn, rgba(46, 41, 38, 1) 2%, rgba(97, 76, 65, 1) 52%, rgba(46, 41, 38, 1) 100%);
    border: 0;
    text-transform: uppercase;
    font-size: 18px;
    padding: 15px;
    cursor: pointer;
}
.forma-btn:hover{
    opacity: .8;
}

.stats{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 100px 0 20px 0;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0 -25px;
}
.stats > div{
    width: 25%;
    padding: 0 25px;
}

.stat{}
.stat > div:nth-child(1){
    border: 1px solid #614C41;
    border-radius: 50px;
    text-align: center;
    height: 50px;
    position: relative;
    font-size: 28px;
    line-height: 46px;
    font-weight: 400;
}
.stat > div:nth-child(1):before{
    content: '';
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #614C41;
    background-image: url("../img/stat.png");
    background-position: center center;
    background-repeat: no-repeat;
    position: absolute;
    left: -1px;
    top: -1px;
}
.stat > div:nth-child(2) {
    padding: 15px 0 0 25px;
}


.arcticmodal-overlay,
.arcticmodal-container{
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 1000;
}
.arcticmodal-container{
    overflow: auto;
    margin: 0;
    padding: 0;
    border: 0;
    border-collapse: collapse;
    height: 100%;
}
.arcticmodal-container .arcticmodal-container_i{
    height: 100%;
    margin: 0;
    width: 100%;
}
.arcticmodal-container .arcticmodal-container_i2{
    padding: 15px;
    margin: 0;
    border: 0;
    vertical-align: middle;
}
.box-modal{
    display: none;
}
.arcticmodal-container .box-modal{
    position: relative;
    width: 100%;
    display: block;
    max-width: 500px;
    padding: 0;
    background: #fff;
    border-radius: 2px;
    margin: 0 auto;
    max-height: 800px;
    overflow: auto;
}
.box-modal-close{
    height: 44px;
    width: 44px;
    display: block;
    -webkit-transition: color 0.2s;
    -o-transition: color 0.2s;
    transition: color 0.2s;
    position: absolute;
    border: 0;
    right: 0;
    top: 0;
    cursor: pointer;
    background: transparent;
}
.box-modal-close:before{
    content: "";
    width: 24px;
    height: 24px;
    mask-image: url("../img/close.svg");
    -webkit-mask-image: url("../img/close.svg");
    mask-size: contain;
    -webkit-mask-size: contain;
    mask-repeat: no-repeat;
    -webkit-mask-repeat: no-repeat;
    mask-position: center center;
    -webkit-mask-position: center center;
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    background: #FFF;
}
.box-modal-close:hover:before{
    opacity: .8;
}

.box-modal .forma{
    width: 100%;
    border-radius: 2px;
}

.footer-wrapper{
    background: #614C41;
}

.footer{
    padding: 50px 0;
}
.footer-nav{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 50px;
}

.footer-menu ul{
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-menu ul li{
    float: left;
    margin-right: 20px;
    padding: 5px 0;
}
.footer-menu ul li a{
    color: #FFF;
    text-decoration: none;
}
.footer-menu ul li a:hover{
    text-decoration: underline;
}
.footer-copy{
    text-align: center;
    color: #d9c2b6;
    font-size: 14px;
    padding: 50px 0;
}
.footer-links{
    text-align: center;
}
.footer-links a{
    color: #d9c2b6;
    font-size: 14px;
    text-decoration: none;
}
.footer-links a:hover{
    text-decoration: underline;
}
.header__burger{
    display: none;
}

.burger{
    display: none;
    -webkit-transition: .3s ease;
    -o-transition: .3s ease;
    transition: .3s ease;
    cursor: pointer;
    width: 38px;
    height: 38px;
    border: 2px solid #C9B5A8;
    position: relative;
    border-radius: 50%;
}
.burger .burger-top-line {
    top: 9px;
}
.burger .burger-inner {
    top: 16px;
}
.burger .burger-bot-line {
    bottom: 9px;
}
.burger div {
    width: 20px;
    height: 2px;
    background-color: #FFF;
    border-radius: 3px;
    position: absolute;
    left: 7px;
}
.burger:hover {
    opacity: 0.7;
}

body.blackout:before {
    content: "";
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background: #000;
    z-index: 10;
    width: 100%;
    height: 100%;
    opacity: 0.5;
    display: block;
}

.header-mobile{
    display: none;
}
.site-menu > li.mobile-link{
    display: none;
}
.contacts-mobile{
    display: none;
}

.map{
    position: relative;
}
.map > iframe{
    height: 600px;
    width: 100%;
}

.contacts-card{
    position: absolute;
    padding: 20px 30px;
    -webkit-box-shadow: 0 12px 35px rgba(0,0,0,0.18);
    box-shadow: 0 12px 35px rgba(0,0,0,0.18);
    z-index: 5;
    background: #EEE8E2;
    left: 30px;
    bottom: 30px;
}

.contacts-card__title{
    font-weight: 600;
    font-size: 26px;
    margin-bottom: 10px;
}

.contacts-card__item{
    padding: 10px 0;
}
.contacts-card__name{
    font-weight: 600;
    font-size: 16px;
}
.contacts-card__desc{}
.contacts-card__desc > div{
    padding: 3px 0;
}
.contacts-card__desc > div a{}
.contacts-card__desc > div a:hover{}

.section{
    padding: 70px 0;
}
.section__title{
    text-align: center;
    margin-bottom: 50px;
    font-size: 28px;
    font-weight: 400;
}

.advantages{
    width: 446px;
    height: 446px;
    margin: 0 auto;
    position: relative;
    border-radius: 50%;
    background: #cbb3a6;
    padding: 8px;
}
.advantages__img{}
.advantages__img img{
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 50%;
}

.advantages-text{}
.advantages-text > div{
    position: absolute;
    z-index: 1;
    width: 230px;
    font-size: 16px;
    left: -250px;
}
.advantages-text > div:nth-child(1){
    top: 65px;
}
.advantages-text > div:nth-child(2){
    left: auto;
    right: -250px;
    top: 65px;
    text-align: right;
}
.advantages-text > div:nth-child(3){
    top: 220px;
}
.advantages-text > div:nth-child(4){
    left: auto;
    right: -250px;
    text-align: right;
    top: 220px;
}
.advantages-text > div:nth-child(5){
    top: 380px;
}
.advantages-text > div:nth-child(6){
    left: auto;
    top: 380px;
    right: -250px;
    text-align: right;
}

.cost-form-wrapper{
    background: #614C41;
}

.cost-form{
    width: 100%;
    margin: 0 auto;
    max-width: 1000px;
}
.cost-form__title{
    color: #FFF;
    text-align: center;
    font-size: 34px;
    font-weight: 500;
}
.cost-form__subtitle{
    color: #FFF;
    text-align: center;
    font-weight: 400;
    font-size: 20px;
    padding: 30px 0 40px 0;
}

.cost-form-wrapper{
    background: #614C41;
    padding: 100px 0;
}

.cost-form_fields{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 0 -10px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.cost-form_fields > div{
    padding: 0 10px;
    width: 33.33333%;
}
.cost-form__policy{
    color: #FFF;
    font-size: 13px;
    padding-top: 15px;
}
.cost-form__policy a{
    color: #FFF;
}
.cost-form__policy input[type=checkbox]{
    width: 16px;
    height: 16px;
    accent-color: #d9c2b6;
    margin: 0;
    margin-right: 10px;
    vertical-align: -2px;
}
.cost-form_fields input[type=text]{
    height: 50px;
    border: 1px solid #c9c9c9;
}

.forma-btn.forma-btn_lighter{
    background-image: -o-linear-gradient( 308.16deg, rgba(141,117,105,1) 0%, rgba(217,194,182,1) 52%, rgba(141,117,105,1) 98% );
    background-image: linear-gradient( 0.394turn, rgba(141,117,105,1) 0%, rgba(217,194,182,1) 52%, rgba(141,117,105,1) 98% );
    color: #000;
}

.reviews{}
.reviews__banner{
    background: #FFF;
    padding: 20px;
    text-align: center;
    margin-bottom: 30px;
}
.reviews__slider{}

.reviews__item{
    background: #FFF;
    padding: 30px;
}
.reviews__title{
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 15px;
}
.reviews__text{
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}
.reviews__text.open{
    -webkit-line-clamp: unset;
    display: block;
}
.reviews__link{
    padding-top: 10px;
}
.reviews__link a{}
.reviews__link a:hover{}

.reviews .owl-nav{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 10px;
    margin-top: 30px;
    position: relative;
}
.reviews .owl-nav:before{
    content: '';
    position: absolute;
    height: 2px;
    background: #c7b0a4;
    top: 50%;
    margin-top: -1px;
    left: 120px;
    right: 0;
}
.reviews .owl-nav .owl-prev, .reviews .owl-nav .owl-next{
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    background: #f0f1f6;
    cursor: pointer;
    -webkit-box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    -webkit-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.2s;
    position: relative;
}
.reviews .owl-nav .owl-prev:before, .reviews .owl-nav .owl-next:before{
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    -webkit-mask-size: 12px;
    mask-size: 12px;
    -webkit-mask-position: center center;
    mask-position: center center;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    background-color: #000;
}
.reviews .owl-nav .owl-prev:before{
    -webkit-mask-image: url("../img/back-light.svg");
    mask-image: url("../img/back-light.svg");
}
.reviews .owl-nav .owl-next:before{
    -webkit-mask-image: url("../img/next-light.svg");
    mask-image: url("../img/next-light.svg");
}
.reviews .owl-nav .owl-prev:hover, .reviews .owl-nav .owl-next:hover {
    background: #8d7569;
}
.reviews .owl-nav .owl-prev:hover:before, .reviews .owl-nav .owl-next:hover:before {
    background: #fff;
}
.reviews .owl-nav .owl-prev{}
.reviews .owl-nav .owl-next{}

.clinic-info{
    text-align: center;
    font-size: 20px;
    max-width: 1000px;
    margin: 0 auto;
    margin-top: -30px;
}


.faqs{
    border-top: 1px solid #2e2926;
}
.faq{
    position: relative;
    border-bottom: 1px solid #2e2926;
}
.faq:before{}
.faq.active:before{}
.faq-name{
    font-weight: 500;
    color: #120900;
    font-size: 16px;
    padding: 25px 0;
    cursor: pointer;
    padding-right: 50px;
}
.faq-desc{
    display: none;
}
.faq.active .faq-desc{
    display: block;
    padding-bottom: 20px;
}

.content p{
    margin-bottom: 20px;
    line-height: 1.5;
}
.content ul{
    list-style: none;
    padding: 0;
    margin: 0;
    margin-bottom: 20px;
}
.content ul li{
    position: relative;
    padding-left: 15px;
    margin-bottom: 5px;
}
.content ul li:before{
    content: "";
    display: block;
    position: absolute;
    top: 6px;
    left: 0;
    background: #2e2926;
    width: 5px;
    height: 5px;
    border-radius: 50%;
}
.content ul li p:last-child{
    margin-bottom: 0;
}

/* иконка как в Tilda: плюс + круг */
.faq-icon{
    width: 34px;
    height: 34px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 34px;
    flex: 0 0 34px;
    display: -ms-grid;
    display: grid;
    place-items: center;
    position: absolute;
    right: 0;
    top: 17px;
}

.faq-icon-circle{
    position: absolute;
    inset: 0;
    border-radius: 999px;
    background: transparent; /* default */
    -webkit-transition: background-color .2s ease;
    -o-transition: background-color .2s ease;
    transition: background-color .2s ease;
}

.faq-icon-lines{
    position: relative;
    width: 22px;
    height: 22px;
}

.faq-icon-lines::before,
.faq-icon-lines::after{
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 22px;
    height: 2px;
    background: #2e2926;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-transition: background-color .2s ease, -webkit-transform .2s ease;
    transition: background-color .2s ease, -webkit-transform .2s ease;
    -o-transition: transform .2s ease, background-color .2s ease;
    transition: transform .2s ease, background-color .2s ease;
    transition: transform .2s ease, background-color .2s ease, -webkit-transform .2s ease;
}

.faq-icon-lines::after{
    -webkit-transform: translate(-50%, -50%) rotate(90deg);
    -ms-transform: translate(-50%, -50%) rotate(90deg);
    transform: translate(-50%, -50%) rotate(90deg);
}

/* hover как в t585__icon-hover */
.faq-icon:hover .faq-icon-circle{
    background: #8d7569;
}

.faq-icon:hover .faq-icon-lines::before,
.faq-icon:hover .faq-icon-lines::after{
    background: #ffffff;
}

/* active/open state: превращаем плюс в минус */
.faq.active .faq-icon-lines::after{
    -webkit-transform: translate(-50%, -50%) rotate(0deg);
    -ms-transform: translate(-50%, -50%) rotate(0deg);
    transform: translate(-50%, -50%) rotate(0deg);
    opacity: 0;
}

.faq.active .faq-icon-circle{
    background: #8d7569;
}

.faq.active .faq-icon-lines::before{
    background: #ffffff;
}

.faqs__footer{
    padding-top: 20px;
}

.doctors-wrapper{
    background: #614C41;
}
.section.section_dark .section__title{
    color: #FFF;
}

.doctors{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: -15px;
}
.doctors > div{
    padding: 15px;
    width: 25%;
}

.doctor{
    overflow: hidden;
    background: -o-linear-gradient(308.16deg, rgba(141,117,105,1) 0%, rgba(217,194,182,1) 50%, rgba(244,232,226,1) 98%);
    background: linear-gradient(0.394turn, rgba(141,117,105,1) 0%, rgba(217,194,182,1) 50%, rgba(244,232,226,1) 98%);
}
.doctor__img{}
.doctor__img img{}
.doctor__type{
    text-align: center;
    padding: 20px;
}
.doctor__type > div{
    display: inline-block;
    padding: 7px 18px;
    border-radius: 40px;
    background: -o-linear-gradient(308.16deg, rgba(217,194,182,1) 0%, rgba(244,232,226,1) 52%, rgba(217,194,182,1) 98%);
    background: linear-gradient(0.394turn, rgba(217,194,182,1) 0%, rgba(244,232,226,1) 52%, rgba(217,194,182,1) 98%);
}
.doctor__name{
    text-align: center;
    font-size: 20px;
    font-weight: 500;
}
.doctor__line{
    margin: 10px 0;
}
.doctor__line > div{
    width: 50%;
    height: 2px;
    margin: 0 auto;
    border-radius: 5px;
    background: -o-linear-gradient(308.16deg, rgba(46,41,38,1) 2%, rgba(97,76,65,1) 52%, rgba(46,41,38,1) 100%);
    background: linear-gradient(0.394turn, rgba(46,41,38,1) 2%, rgba(97,76,65,1) 52%, rgba(46,41,38,1) 100%);
}
.doctor__status{
    text-align: center;
    padding: 0 20px;
}
.doctor__link{
    padding: 20px;
    text-align: center;
}
.doctor__link a{
    display: inline-block;
    width: 100%;
    text-align: center;
    padding: 14px;
    text-decoration: none;
    font-size: 16px;
    color: #fff;
    background: -o-linear-gradient(308.16deg, rgba(46,41,38,1) 2%, rgba(97,76,65,1) 52%, rgba(46,41,38,1) 100%);
    background: linear-gradient(0.394turn, rgba(46,41,38,1) 2%, rgba(97,76,65,1) 52%, rgba(46,41,38,1) 100%);
    -webkit-transition: background-color .2s ease, color .2s ease;
    -o-transition: background-color .2s ease, color .2s ease;
    transition: background-color .2s ease, color .2s ease;
}
.doctor__link a:hover{
    background: #f4e8e2;
    color: #000;
}

.doctors__all{
    text-align: center;
    padding-top: 50px;
}
.doctors__all a{
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    color: #000000;
    background: -o-linear-gradient(308.16deg, rgba(141, 117, 105, 1) 0%, rgba(217, 194, 182, 1) 52%, rgba(141, 117, 105, 1) 98%);
    background: linear-gradient(0.394turn, rgba(141, 117, 105, 1) 0%, rgba(217, 194, 182, 1) 52%, rgba(141, 117, 105, 1) 98%);
    -webkit-transition: .2s ease;
    -o-transition: .2s ease;
    transition: .2s ease;
    display: inline-block;
    padding: 15px 45px;
}
.doctors__all a:hover{
    background: #f4e8e2;
    color: #000;
}

.application-wrapper{
    background: url("../img/010-1.png") left center no-repeat;
    background-size: contain;
}

.application{
    text-align: center;
    padding: 50px 0;
}
.application-forma{
    display: inline-block;
}
.application-forma .forma{
    background: transparent;
    width: auto;
    max-width: 550px;
    text-align: left;
}
.application-forma .forma__title{
    color: #2e2926;
    text-transform: none;
    font-size: 24px;
    margin-bottom: 10px;
}
.application-forma .forma__subtitle{
    font-weight: 400;
    font-size: 16px;
    margin-bottom: 25px;
    text-align: center;
}
.application-forma .forma__policy, .application-forma .forma__policy a{
    color: #2e2926;
}

.content-section{
    padding: 50px 0;
}
.content-section h1{
    text-align: center;
    margin-bottom: 40px;
}

.content h2, .content h3{
    text-align: center;
    margin-bottom: 30px;
    margin-top: 30px;
}

.articles-items{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: -15px;
}
.articles-items > div{
    width: 25%;
    padding: 15px;
}

.articles-item{}
.articles-item__img{}
.articles-item__img a{
    display: block;
}
.articles-item__img a img{
    max-height: 230px;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
.articles-item__name{}
.articles-item__name a{
    text-decoration: none;
    font-weight: 500;
    display: block;
    padding: 15px;
}
.articles-item__name a:hover{
    text-decoration: underline;
}

.page{
    max-width: 1200px;
    margin: 0 auto;
}

.img-left{
    float: left;
    max-width: 470px;
    margin-right: 40px;
    margin-bottom: 20px;
}
.img-right{
    float: right;
    max-width: 470px;
    margin-left: 40px;
    margin-bottom: 20px;
}

.banners{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 30px 0;
    width: 100%;
}
.banners > div{
    width: 25%;
    padding: 15px;
}
.banners > div a{
    display: block;
}
.banners > div a img{
    width: 100%;
}

.price-subtitle{
    text-transform: uppercase;
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    max-width: 600px;
    margin: 0 auto;
    margin-bottom: 50px;
    line-height: 24px;
}

table {
    width:100%;
    border: 1px solid #EEE8E2;
    border-spacing: 0;
    border-top-width: 0;
    border-right-width: 0;
}
tbody, td, tfoot, th, thead, tr {
    border-top: 1px solid #EEE8E2;
    border-right: 1px solid #EEE8E2;
    padding: 10px;
    vertical-align: middle;
    text-align: left;
}
table th, table thead, table thead td {
    background: #EEE8E2;
    font-weight: 500;
}
table p{margin-bottom: 0;}

.contacts-page{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.contacts-page__left{
    width: 40%;
}
.contacts-page__right{
    width: 60%;
}
.contacts-page__right > iframe{
    width: 100%;
    height: 100%;
}

.contacts-page__item{
    margin-bottom: 20px;
}
.contacts-page__item > div{
    padding: 2px 0;
}
.contacts-page__item > div strong{
    font-weight: 600;
}

.category-nav{
    counter-reset: nav-counter;
    -webkit-column-count: 2;
    -moz-column-count: 2;
    column-count: 2;
    -webkit-column-gap: 50px;
    -moz-column-gap: 50px;
    column-gap: 50px;
    margin-bottom: 50px;
}
.category-nav div{
    -webkit-column-break-inside: avoid;
    -moz-column-break-inside: avoid;
    break-inside: avoid;
    margin-bottom: 10px;
}
.category-nav a{
    counter-increment: nav-counter;
    border-bottom: 1px solid #b9aca4;
    display: block;
    padding: 10px 0;
    font-size: 16px;
    font-weight: 400;
    position: relative;
}
.category-nav a:before{
    content: counter(nav-counter, decimal-leading-zero);
    color: #8d7569;
    font-size: 14px;
    position: absolute;
    right: 0;
    bottom: 3px;
}








@media screen and (max-width: 1469.98px) {
    .header__slogan {
        display: none;
    }
    .site-menu-wrapper {
        height: 50px;
    }
    .site-menu > li.dropdown::before {
        right: 5px;
        -webkit-mask-repeat: no-repeat;
        mask-repeat: no-repeat;
        -webkit-mask-size: 8px;
        mask-size: 8px;
        -webkit-mask-position: center;
        mask-position: center;
    }
    .site-menu > li.dropdown > a {
        padding-right: 10px;
    }
    .site-menu > li > a {
        font-size: 13px;
        white-space: nowrap;
        padding-left: 5px;
    }
    .site-menu > li > ul {
        top: 50px;
    }
    .header__place {
        font-size: 14px;
    }
    .stats {
        margin: 0 -15px;
    }
    .stats > div {
        padding: 0 15px;
    }
    .slider .owl-carousel .owl-item > div {
        height: 600px;
    }
    .forma {
        padding: 30px;
        width: auto;
    }
    .index-slider__sale {
        font-size: 54px;
    }
    .index-slider__desc {
        font-size: 24px;
    }
    .index-slider__sale {
        padding: 50px 0 10px;
    }
    .index-slider__subtitle {
        font-size: 26px;
    }
    .forma__title {
        font-size: 18px;
    }
    .forma-btn {
        font-size: 16px;
    }
    .articles-items > div{
        width: 33.333333%;
    }



}
@media screen and (max-width: 1199.98px) {

    .footer-nav {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        text-align: center;
        gap: 30px;
    }
    .footer-logo{
        width: 100%;
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1;
        text-align: center;
    }
    .footer-menu{
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2;
        width: 100%;
        text-align: center;
    }
    .footer-menu ul {
        display: inline-block;
        text-align: center;
    }
    .footer-menu ul li {
        float: none;
        padding: 5px 0;
        display: inline-block;
        margin: 0 10px;
    }
    .footer-copy {
        padding: 30px 0;
    }
    .header__burger{
        display: block;
    }

    .header__place, .header__contacts{
        display: none;
    }
    .burger{
        display: block;
    }

    .site-menu-wrapper{
        width: 300px;
        left: 0;
        -webkit-transition: 0.4s;
        -o-transition: 0.4s;
        transition: 0.4s;
        position: fixed;
        display: block;
        top: 0;
        z-index: 999;
        left: -320px;
        bottom: 0;
        -webkit-box-shadow: 3px 0 10px 0 rgba(0, 0, 0, 0.2);
        box-shadow: 3px 0 10px 0 rgba(0, 0, 0, 0.2);
        overflow: auto;
        height: 100%;
    }
    body.open .site-menu-wrapper {
        left: 0;
        -webkit-transition: 0.4s;
        -o-transition: 0.4s;
        transition: 0.4s;
    }
    .site-menu-wrapper .container{
        width: 100%;
        padding: 0;
        margin: 0;
    }

    .header-mobile{
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        background: #614C41;
        padding: 15px;
    }
    .header-mobile__logo img{
        width: 120px;
    }
    .header-mobile__close button{
        height: 34px;
        width: 34px;
        display: block;
        cursor: pointer;
        background: transparent;
        position: relative;
        border: 2px solid #C9B5A8;
        border-radius: 50%;
        -webkit-transition: .3s ease;
        -o-transition: .3s ease;
        transition: .3s ease;
    }
    .header-mobile__close button:hover{
        opacity: 0.7;
    }
    .header-mobile__close button:before{
        content: "";
        width: 24px;
        height: 24px;
        -webkit-mask-image: url("../img/close.svg");
        mask-image: url("../img/close.svg");
        -webkit-mask-size: 30px;
        mask-size: 30px;
        -webkit-mask-repeat: no-repeat;
        mask-repeat: no-repeat;
        -webkit-mask-position: center center;
        mask-position: center center;
        background: #FFF;
        display: block;
        position: absolute;
        left: 50%;
        top: 50%;
        -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
    }

    .site-menu-wrap {
        height: auto;
    }
    .site-menu {
        display: block;
    }
    .site-menu > li {
        display: block;
    }
    .site-menu > li {
        border-bottom: 1px solid #C5AFA4;
    }
    .site-menu > li > a {
        padding: 12px 15px;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
    }
    .site-menu-wrapper .container {
        height: auto;
    }
    .site-menu > li.dropdown::before {
        right: 10px;
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
        top: 12px;
    }
    .site-menu > li.dropdown > a {
        padding-right: 10px;
    }
    .site-menu > li > ul {
        top: auto;
        left: auto;
        position: relative;
        -webkit-box-shadow: none;
        box-shadow: none;
    }
    .site-menu > li > ul {
        padding: 0px 0 10px 0;
    }
    .site-menu > li > ul > li > a {
        padding: 5px 15px;
        white-space: normal;
        font-size: 13px;
    }
    .site-menu > li.mobile-link {
        display: block;
    }

    .contacts-mobile{
        display: block;
    }
    .contacts-mobile .contacts-lists {
        padding: 20px 15px;
    }
    .contacts-mobile .contacts-list {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
    .contacts-mobile .contacts-list:first-child {
        padding-bottom: 15px;
    }
    .contacts-mobile .contacts-list__address {
        width: 100%;
        font-size: 13px;
        line-height: 13px;
    }
    .contacts-mobile .contacts-list__phone a {
        color: #2e2926;
        font-size: 16px;
        font-weight: 400;
    }
    .header__nav{
        display: none;
    }
    .slider .owl-carousel .owl-item > div {
        height: 500px;
    }
    .index-slider__sale {
        padding: 20px 0 20px;
    }
    .index-slider__desc {
        font-size: 20px;
    }
    .stats {
        padding: 70px 0 0 0;
    }
    .stat > div:nth-child(1) {
        height: 40px;
    }
    .stat > div:nth-child(1)::before {
        content: '';
        width: 40px;
        height: 40px;
        background-size: 30px;
    }
    .stat > div:nth-child(1) {
        font-size: 20px;
        line-height: 38px;
    }
    .stat > div:nth-child(2) {
        padding: 15px 0 0 0px;
        text-align: center;
    }

    .advantages-text > div {
        left: -220px;
    }
    .advantages-text > div:nth-child(2), .advantages-text > div:nth-child(4), .advantages-text > div:nth-child(6) {
        right: -220px;
    }
    .doctors {
        margin: -5px;
    }
    .doctors > div {
        padding: 5px;
    }
    .application-wrapper {
        background-position: left -150px center;
    }
    .application-forma .forma {
        max-width: 450px;
    }
    .application-forma .forma__title {
        font-size: 21px;
    }
    .application-forma .forma__subtitle {
        font-size: 15px;
    }









}
@media screen and (max-width: 991.98px) {
    .stats {
        padding: 50px 0 30px 0;
    }
    .stats > div {
        width: 50%;
    }
    .stat {
        margin-bottom: 20px;
    }
    .stat > div:nth-child(2) {
        padding: 5px 0 0 0px;
    }
    .slider .owl-carousel{
        display: none !important;
    }
    .index-slider-wrapper {
        position: static;
        height: auto;
    }
    .index-slider {
        display: block;
    }
    .index-slider__text {
        padding: 25px 0;
    }
    .index-slider__subtitle {
        font-size: 14px;
        padding: 3px 5px;
    }
    .index-slider__sale {
        padding: 10px 0 10px;
        color: #614C41;
        font-size: 22px;
    }
    .index-slider__desc {
        font-size: 16px;
        color: #614C41;
        font-weight: 300;
    }
    .section {
        padding: 30px 0;
    }
    .section__title {
        margin-bottom: 30px;
    }
    .advantages__img{
        display: none;
    }
    .advantages {
        width: auto;
        height: auto;
        position: relative;
        border-radius: 0%;
        background: transparent;
        padding: 0;
    }
    .advantages-text > div {
        position: relative;
        z-index: 1;
        width: auto;
        font-size: 16px;
        text-align: left !important;
        padding-left: 35px;
        margin-bottom: 15px;
        left: auto !important;
        right: auto !important;
        top: auto !important;
    }
    .advantages-text > div:before {
        content: '';
        width: 30px;
        height: 30px;
        position: absolute;
        left: 0;
        top: -3px;
        background: url("../img/galka.svg") center center no-repeat;
        background-size: 24px;
    }
    .section__title {
        font-size: 24px;
    }
    .cost-form-wrapper {
        padding: 50px 0;
    }
    .cost-form__title {
        font-size: 24px;
    }
    .cost-form__subtitle {
        font-size: 16px;
        padding: 15px 0 20px 0;
    }
    .cost-form_fields {
        margin: 0;
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
    }
    .cost-form_fields > div {
        padding: 0;
        width: 100%;
        margin-bottom: 15px;
    }
    .cost-form__policy {
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
        padding-top: 0px;
    }
    .clinic-info {
        font-size: 16px;
        margin-top: -10px;
    }
    .doctors > div {
        width: 50%;
    }
    .doctors__all {
        padding-top: 30px;
    }
    .application {
        padding: 30px 0;
    }
    .articles-items > div{
        width: 50%;
    }
    .content-section {
        padding: 30px 0;
    }
    .content-section h1 {
        font-size: 22px;
        margin-bottom: 30px;
    }
    .banners > div {
        width: 33.3333%;
    }
    .img-left {
        margin-right: 30px;
        max-width: 360px;
    }
    .img-right {
        margin-left: 30px;
        max-width: 360px;
    }



}
@media screen and (max-width: 767.98px) {
    .stats > div {
        width: 100%;
    }
    .stats {
        padding: 30px 0 10px 0;
    }
    .stat > div:nth-child(1) {
        font-size: 18px;
        line-height: 22px;
        text-align: left;
        padding-left: 35px;
        border: 0;
        height: auto;
    }
    .stat > div:nth-child(1)::before {
        content: '';
        width: 30px;
        height: 30px;
        background-size: 26px;
        background-color: transparent;
        top: -3px;
    }
    .stat > div:nth-child(2) {
        text-align: left;
        padding: 0;
        padding-left: 35px;
    }
    .map > iframe {
        height: 400px;
    }
    .contacts-card {
        position: static;
        padding: 15px 15px;
    }
    .contacts-card__title {
        font-size: 20px;
    }
    .contacts-card__name {
        font-size: 14px;
    }
    .cost-form__title {
        font-size: 22px;
    }
    .cost-form__subtitle {
        font-size: 14px;
    }
    .reviews__item {
        padding: 20px;
    }
    .section__title {
        font-size: 22px;
    }
    .application-wrapper {
        background-position: left -200px top;
    }
    .faq-name {
        font-size: 14px;
    }
    .faq-name {
        padding-right: 30px;
    }
    .faq-name {
        padding: 20px 0;
    }
    .faq-icon {
        top: 14px;
    }
    .faq-icon {
        width: 28px;
        height: 28px;
    }
    .faq-icon-lines {
        width: 18px;
        height: 18px;
    }
    .faq-icon-lines::before, .faq-icon-lines::after {
        width: 18px;
    }
    .banners > div {
        width: 50%;
    }
    .img-left {
        margin-right: 20px;
        max-width: 260px;
    }
    .img-right {
        margin-left: 20px;
        max-width: 260px;
    }
    .contacts-page__left{
        width: 100%;
    }
    .contacts-page__right{
        width: 100%;
    }
    .contacts-page__right > iframe{
        width: 100%;
        height: 360px;
    }
    .category-nav {
        -webkit-column-count: 1;
        -moz-column-count: 1;
        column-count: 1;
        -webkit-column-gap: 0px;
        -moz-column-gap: 0px;
        column-gap: 0px;
        margin-bottom: 30px;
    }
    .category-nav a {
        font-size: 14px;
    }
    .category-nav a::before {
        font-size: 12px;
    }

}
@media screen and (max-width: 575.98px) {
    .header {
        gap: 15px;
        padding: 15px 0;
    }
    .header__logo img{
        width: 100px;
    }
    .forma {
        padding: 20px;
    }
    .forma__title {
        font-size: 14px;
        margin-bottom: 20px;
    }
    .forma-btn {
        font-size: 14px;
    }
    .footer-menu ul li {
        padding: 4px 0;
        margin: 0 7px;
    }
    .doctors > div {
        width: 100%;
    }
    .articles-items > div{
        width: 100%;
    }
    .content-section {
        padding: 20px 0;
    }
    .content-section h1 {
        font-size: 20px;
        margin-bottom: 20px;
    }
    .banners > div {
        width: 100%;
    }

    .img-left {
        float: none;
        margin: 0 auto;
        margin-right: auto;
        max-width: 100%;
        margin-bottom: 20px;
        display: block;
    }
    .img-right {
        float: none;
        margin: 0 auto;
        margin-left: auto;
        max-width: 100%;
        margin-bottom: 20px;
        display: block;
    }






}