/* ========================================================================== */
/* Основа =================================================================== */
/* ========================================================================== */

:root{
    --max-width: 1200;
}

/* Обертка ================================================================== */
body{
    margin: 0 auto;
    line-height: 1;
    min-width: 300px;
    max-width: 1920px;
    font-family: 'Segoe UI';
    background-color: var(--f8f8f8);
    color: var(--black);
}

/* Ссылки =================================================================== */
a{
    color: var(--black);
    text-decoration: none; 
    transition-property: color, background-color;
}
a:hover{
    color: var(--violet);
}

/* Тело ===================================================================== */
.main{}

/* Заголовки ================================================================ */
.heading{
    font-size: 36px;
    line-height: 42px;
    font-family: Mega;
    text-align: center;
    margin-bottom: 30px;
}

/* Кнопки =================================================================== */
.btn{
    border-radius: 4px;
    color: var(--white);
    background-color: var(--violet);
}
.btn:hover{
    color: var(--white);
    background-color: var(--violetdark);
}
.btn-style,
.btn-style-2,
.btn-style-3{
    display: table;
    font-size: 14px;
    font-weight: bold;
    padding: 10px 20px;
    text-align: center;
    border-radius: 50px;
    color: var(--white);
    border: 2px solid var(--violet);
    background-color: var(--violet);
    transition: color .15s linear, background-color .15s linear;
    cursor: pointer;
    line-height: 1;
}
.btn-style-2,
.btn-style:hover{
    color: var(--violet);
    background-color: var(--white);
}
.btn-style-2:hover{
    color: var(--white);
    background-color: var(--violet);
}
.btn-style-3{
    overflow: hidden;
    position: relative;
}
.btn-style-3:hover{
    color: var(--violet);
    background-color: var(--white);
}
.btn-style-3:after{
    top: 10px;
    left: 0px;
    width: 100%;
    display: block;
    position: absolute;
    transform: translateY(26px);
    transition-property: transform;
    content: '\27A5\00A0'attr(data-hover);
}
.btn-style-3:hover:after{
    transform: translateY(0);
}
.btn-style-3 span{
    display: block;
    transition: transform .15s ease-in-out;
}
.btn-style-3:hover span{
    transform: translateY(-26px);
}


/* ========================================================================== */
/* Статья, вывод ============================================================ */
/* ========================================================================== */
.content-box{
    padding: 15px;
    margin-bottom: 15px;
    box-shadow: var(--shadow-7);
    background-color: var(--white);
}
.content-box:last-child{
    margin-bottom: 0;
}
.content-text{
    line-height: 22px;
}
.content-text > *{
    margin-bottom: 15px;
}
.content-text > *:last-child{
    margin-bottom: 0;
}
.content-text h2,
.content-text h3{
    font-family: Mega;
    margin-bottom: 5px;
    letter-spacing: 0.4px;
}
.content-text h2{
    font-size: 22px;
    line-height: 28px;
}
.content-text h2:nth-child(1n + 2){
    margin-top: 25px;
} 
.content-text h3{
    font-size: 18px;
}
.content-text > p + ul {
    margin-top: -10px;
}
.content-text ul li:before{
    content: '\2022';
    margin-right: 10px;
}
.content-text ul.check li:before{
    content: '\2714';
    margin-right: 4px;
}
.content-text ol{
    counter-reset: ol-counter;
}
.content-text ol li:before{
    counter-increment: ol-counter;
    content: counter(ol-counter)".";
    margin-right: 5px;
}
.content-text img{
    height: auto;
}
.content-text iframe{
    max-width: 100% !important;
}


/* ============================================================ */
/* Форма обратной связи ======================================= */
/* ============================================================ */
.feedback{
    padding: 40px;
    background-color: var(--white);
}
.fb-modal{
    top: 50%;
    left: 50%;
    opacity: 0;
    width: 480px;
    z-index: 101;
    position: fixed;
    transition-duration: .1s;
    transition-timing-function: ease-in-out;
    transition-property: transform, opacity, visibility;
    transform: translate(-50%, calc(-50% - 20px));
    visibility: hidden;
}
.fb-modal_show{
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%);
    transition: transform .3s ease-in-out, opacity .3s ease-in-out, visibility .3s ease-in-out;
}
.feedback__heading{
    font-size: 24px;
    text-align: center;
    font-family: 'Mega';
    letter-spacing: .6px;
    margin-bottom: 25px;
    line-height: 22px;
}
.feedback__form{
    --margin: 15px;
    --margin-lr: 7.5px;
}
.feedback__rows{
    display: block;
    overflow: auto;
    padding: 0 10px;
}
.feedback__row{
    display: block;
}
.feedback__row:nth-child(1n + 2){
    margin-top: 25px;
}
.feedback__field{}
.feedback__title{
    display: block;
    font-family: 'Mega';
    letter-spacing: 0.6px;
    margin-bottom: 10px;
}
.feedback__input,
.feedback__select,
.feedback__textarea{
    width: 100%;
    font-size: 14px;
    padding: 10px 12px;
    line-height: 18px;
    border-radius: 4px;
    border: 1px solid var(--eeeeee);
    background-color: var(--f8f8f8);
    color: var(--black);
}
.feedback__select{
    height: auto;
    box-shadow: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}
.feedback__textarea{
    width: 100% !important;
    height: 100px;
    display: block;
}
.feedback__hint{
    font-size: 12px;
    line-height: 16px;
    color: var(--999999);
    margin-top: 10px;
}
.feedback__button{
    width: 220px;
    display: block;
    font-size: 14px;
    line-height: 18px;
    font-family: Mega;
    border-radius: 4px;
    color: var(--white);
    letter-spacing: 0.6px;
    border: 2px solid var(--violet);
    background-color: var(--violet);
    margin: 15px auto 0;
    padding: 9px;
    text-align: center;
    transition: color .1s linear, background-color .1s linear;
    text-transform: uppercase;
}
.feedback__button:hover{
    background-color: var(--white);
    color: var(--violet);
}
.feedback__close{
    width: 30px;
    height: 30px;
    padding: 8px;
    user-select: none;
    border-radius: 50px;
    border: 1px solid var(--eeeeee);
    background-color: var(--f8f8f8);
    transition: background-color .2s linear;
    position: absolute;
    cursor: pointer;
    right: 15px;
    top: 15px;
}
.feedback__close:hover{
    background-color: var(--black-10);
}
.feedback__close svg{
    width: 100%;
    height: 100%;
    display: block;
}


/* ============================================================ */
/* Шапка ====================================================== */
/* ============================================================ */
.h-top{
    top: 0;
    left: 0;
    width: 100%;
    z-index: 20;
    position: absolute;
    padding: 15px 0;
}
.h-top__wrap{
    display: flex;
    align-items: center;
}
.h-logo{
    width: 500px;
    display: inline-flex;
    align-items: center;
}
.h-logo__image{
    height: 120px;
    flex: 0 0 120px;
    background: url(../images/h-logo.png) no-repeat center left / contain;
    margin-right: 10px;
    position: relative;
    display: block;
    z-index: 10;
}
.h-logo__text{
    font-size: 28px;
    line-height: 35px;
    font-family: 'Mega';
    color: var(--white);
}
.h-top__right{
    margin-left: auto;
}
.h-conatcs{
    display: flex;
    margin-bottom: 10px;
    align-items: center;
}
.h-conatcs__phone{
    display: none;
    font-size: 26px;
    font-weight: bold;
    letter-spacing: .5px;
    color: var(--white);
}
.h-conatcs__btn{
    margin-left: auto;
    transition: color .15s linear, border-color .15s linear, background-color .15s linear;
    letter-spacing: .6px;
}
.h-conatcs__btn:hover{
    background-color: var(--violetdark);
    border-color: var(--violetdark);
    color: var(--white);
}

/* Фикс шапка ================================================= */
/*.h-top_fixed{
    padding: 5px 0;
    position: fixed;
    background-color: var(--white-95);
    box-shadow: var(--shadow-2);
}
.h-top *{
    transition: all .3s ease-in-out;
}
.h-top_fixed .h-logo{
    width: 400px;
}
.h-top_fixed .h-logo__image{
    height: 90px;
    flex: 0 0 90px;
}
.h-top_fixed .h-logo__text{
    color: var(--black);
    font-size: 20px;
    line-height: 22px;
}
.h-top_fixed .h-conatcs{
    display: none;
}
.h-top_fixed .h-menu__link{
    color: var(--black);
    cursor: pointer;
}
.h-top_fixed .h-menu__link:hover{
    color: var(--violet);
}
.h-menu__link[data-link="record"]{
    display: none;
}
.h-top_fixed .h-menu__link[data-link="record"]{
    display: initial;
}*/

/* Меню ======================================================= */
.h-menu{
    margin-left: auto;
    font-size: 16px;
    font-weight: 600;
    text-align: right;
    display: flex;
}
.h-menu__link{
    display: inline-flex;
    margin-left: 25px;
    color: var(--white);
    cursor: pointer;
    transition-duration: .15s;
}
.h-menu__link[data-link="license"]{
    order: 5;
}
.h-menu__link:hover{
    color: var(--violetdark);
    
}

/* Анонс ====================================================== */
.h-center{
    position: relative;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
.h-center:after{
    content: '';
    position: absolute;
    background-color: rgb(0 0 0 / 0.65);
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
}
.h-center__wrap{
    position: relative;
    z-index: 10;
    padding: 250px 0;
    display: flex;
    align-items: center;
}
.h-center__anons{
    width: 620px;
}
.h-center__title{
    font-size: 40px;
    line-height: 50px;
    font-family: 'Mega';
    color: red;
}
.h-center__subtitle{
    margin-top: 40px;
    font-size: 28px;
    color: var(--white);
    line-height: 36px;
    font-weight: 600;
}
.feedback_header{
    width: 420px;
    margin-left: auto;  
}
.feedback__row_hide{
    display: none;
}


/* ============================================================ */
/* Соц сети =================================================== */
/* ============================================================ */
.f-social{
    top: 0;
    bottom: 0;
    right: 30px;
    margin:  auto;
    display: table;
    position: fixed;
    z-index: 50;
	display: none !important;
}
.f-social__link{
    width: 50px;
    height: 50px;
    padding: 13px;
    display: block;
    border-radius: 50%;
    margin-bottom: 15px;
    box-sizing: border-box;
    transition-property: transform;
}
.f-social__link:last-child{
    margin-bottom: 0;
}
.f-social__link:hover{
    transform: scale(.9);
}
.f-social__link svg{
    fill: #fff;
    width: 100%;
    height: 100%;
}
.f-social__link_phone{
    background-color: #d0147f;
}
.f-social__link_whatsapp{
    background-color: #83cf2d;
}
.f-social__link_instagram{
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%,#d6249f 60%,#285AEB 90%);
}


/* ============================================================ */
/* Контект - текст ============================================ */
/* ============================================================ */
.w-content{
    padding: 50px 0;
    /* background-color: var(--white); */
}
.w-content__wrap{}
.w-content__text{
    font-size: 20px;
    line-height: 30px;
    max-width: 780px;
    text-align: center;
    margin: 0 auto;
}
.w-content__text h2{
    font-size: 28px;
    line-height: 34px;
    margin-bottom: 20px;
    color: var(--violet);
}
.w-content__text:nth-child(2){
    margin-top: 30px;
}
.w-content__text:nth-child(2) h2{
    font-size: 100px;
    line-height: 110px;
    color: var(--violet);
}
.w-content__video{
    height: calc(675px / (var(--max-width) / var(--cur-width)));
    margin-top: 40px;
}
.w-content__video iframe{
    width: 100% !important;
    height: 100% !important;
}


/* ============================================================ */
/* Врачи ====================================================== */
/* ============================================================ */
.w-doctors{
    background-color: var(--white);
	padding: 30px 0;
}
.w-doctors__wrap{
    position: relative;
}
.w-doctors__list{}
.w-doctors__item{
    background: var(--f8f8f8);
    padding: 15px;
    border-radius: 10px;
}
.w-doctors__item:nth-child(1n + 2){
    margin-top: 50px;
}
.w-doctors__image{
    width: 480px;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 10px;
}
.w-doctors__image_left{
    float: left;
    margin-right: 30px;
}
.w-doctors__image_right{
    float: right;
    margin-left: 30px;
}
.w-doctors__box{
}
.w-doctors__name{
    text-align: left;
    margin-bottom: 20px;
    font: normal 28px/34px 'Mega';
	letter-spacing: 0.6px;
}
.w-doctors__name:after{
    background: linear-gradient(to right, var(--violet), transparent);
    margin: 15px 0 0;
}
.w-doctors__title{
    font: normal 26px/34px 'Mega';
    letter-spacing: 0.6px;
    margin-bottom: 15px;
}
.w-doctors__text{
    line-height: 24px;
}
.w-doctors__text:last-child{
    margin-top: 0;
}
.w-doctors__text li{
    margin-bottom: 5px;
}
.w-doctors__text li:last-child{}
.feedback_doctors{
    position: relative;
    margin: 50px auto 0;
    padding: 25px 0 30px;
    box-shadow: var(--shadow-1);
    border-radius: 8px;
    z-index: 10;
}
.feedback_doctors .feedback__heading{
    line-height: 34px;
}
.feedback_doctors .feedback__form{
    display: flex;
    align-items: flex-end;
    max-width: 860px;
    margin: 0 auto;
}
.feedback_doctors .feedback__rows{
    padding: 0;
    display: flex;
    align-items: center;
    width: calc(100% - 250px);
}
.feedback_doctors .feedback__row{
    width: calc(50% - 15px);
}
.feedback_doctors .feedback__row:nth-child(1n + 2){
    margin-top: 0;
    margin-left: 30px;
}
.feedback_doctors .feedback__field{}
.feedback_doctors .feedback__title{}
.feedback_doctors .feedback__input{}
.feedback_doctors .feedback__button{
    margin: 0;
    margin-left: 30px;
}

/* ============================================================ */
/* Видео ====================================================== */
/* ============================================================ */
.w-video{
	padding: 50px 0;
    background-color: var(--white);
}
.w-video__wrap{}
.w-video__item{
    overflow: hidden;
    border-radius: 8px;
    height: calc(675px / (var(--max-width) / var(--cur-width)));
}
.w-video__item iframe{
    width: 100% !important;
    height: 100% !important;
}


/* ============================================================ */
/* Политика конф ============================================== */
/* ============================================================ */
.f-privacy{
    top: 50%;
    left: 50%;
    width: 100%;
    height: 75%;
    position: fixed;
    max-width: 860px;
    padding: 30px 15px;
    background-color: var(--white);
    transform: translate(-50%, -50%);
    transition: transform .1s ease-in-out, opacity .1s ease-in-out, visibility .1s ease-in-out;
    transform: translate(-50%, calc(-50% - 20px));
    border-radius: 10px;
    visibility: hidden;
    z-index: 101;
    opacity: 0;
}
.f-privacy_show{
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%);
    transition: transform .3s ease-in-out, opacity .3s ease-in-out, visibility .3s ease-in-out;
}
.f-privacy__title{
    font-size: 20px;
    text-align: center;
    font-weight: 600;
    margin-bottom: 20px;
}
.f-privacy__close{
    width: 30px;
    height: 30px;
    padding: 8px;
    user-select: none;
    border-radius: 50px;
    border: 1px solid var(--eeeeee);
    background-color: var(--f8f8f8);
    transition: background-color .2s linear;
    position: absolute;
    cursor: pointer;
    right: 15px;
    top: 15px;
}
.f-privacy__close:hover{
    background-color: var(--black-10);
}
.f-privacy__close svg{
    width: 100%;
    height: 100%;
    display: block;
}
.f-privacy__text{
    overflow: auto;
    height: calc(100% - 40px);
    padding: 0 15px;
}
.f-privacy__text::-webkit-scrollbar{
    width: 2px;
}
.f-privacy__text::-webkit-scrollbar-thumb{ 
    background-color: var(--black-40);
}
.f-privacy__text::-webkit-scrollbar-track{
    background-color: var(--f8f8f8);
}


/* ============================================================ */
/* Футер ====================================================== */
/* ============================================================ */
.feedback_footer{
    top: 50%;
    margin: 0;
    width: 370px;
    right: calc((100% - 1200px) / 2);
    box-shadow: var(--shadow-2);
    transform: translateY(-50%);
    border-radius: 10px;
    position: absolute;
    z-index: 99;
}
.feedback_footer .feedback__rows{
    padding: 0;
}
.feedback_footer .feedback__input{
    padding: 10px;
}
.feedback_footer .feedback__button{
    width: 100%;
    margin-top: 20px;
}
.w-contacts{
    position: relative;
}
.w-contacts__map{
    height: 440px;
    background-color: var(--white);
}
.copyright{    
    display: flex;
    padding: 20px 0;
    font-size: 13px;
    color: var(--white);
    align-items: center;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}
.copyright__privacy{    
    margin-left: auto;
}
.copyright__link{    
    margin-right: 20px;
}

/* ============================================================ */
/* Адаптив ==================================================== */
/* ============================================================ */
@media only screen and (max-width: 1200px){

.h-top{
    padding: 10px 0;
}
.h-logo{
    width: 420px;
}
.h-logo__image{
    height: 90px;
    flex: 0 0 90px;
}
.h-logo__text{
    font-size: 24px;
    line-height: 30px;
}
.h-conatcs__btn{
    font-size: 12px;
    padding: 4px 15px 6px;
}
.h-menu{
    font-size: 14px;
}
.h-menu__link{
    margin-left: 20px;
}
.h-menu__link:first-child{
    margin-left: 0;
}
.h-menu__link:hover{
    color: var(--white);
}
.h-center__anons {
    width: 560px;
}
.h-center__title{
    font-size: 36px;
}
.f-social{
    z-index: 50;
}
.f-social__link:hover{
    transform: none;
}
.w-advantage__title{
    height: 78px;
    overflow: hidden;
}
.w-doctors__image{
    width: 330px;
}
.feedback_footer{
    right: calc((100% - 1000px) / 2);
}

} /* 1200 */

@media only screen and (max-width: 1023px){

.heading{
    font-size: 28px;
    line-height: 32px;
    margin-bottom: 30px;
}
.h-center{
    background-position: left center;
}
.h-logo__image,
.h-top_fixed .h-logo__image{
    height: 80px;
    flex: 0 0 80px;
}
.h-logo__text,
.h-top_fixed .h-logo__text{
    font-size: 20px;
    line-height: 24px;
}
.h-top_fixed .h-logo__text{
    color: var(--black);
}
.h-top__right{
    display: none;
}
.h-center__wrap{
    padding: 100px 0 50px;
    display: block;
}
.h-center__anons{
    width: 100%;
    text-align: center;
    max-width: 500px;
    margin: 50px auto 60px;
}
.h-center__subtitle{
    margin-top: 30px;
}
.feedback_header{
    margin-right: auto;
    padding: 30px;
}
.feedback_header .feedback__heading{
    margin-bottom: 20px;
}
.feedback_header .feedback__rows{
    padding: 0;
}
.feedback_header .feedback__button{
    width: 100%;
    margin-top: 20px;
}
.f-social{
    position: initial;
    margin: 0 0 0 auto;
    display: flex;
}
.f-social__link{
    width: 34px;
    height: 34px;
    padding: 7px;
    border-radius: 5px;
    margin-bottom: 0;
    margin-left: 15px;
}
.f-social__link_phone{
    margin-left: 0;
}
.w-advantage{
    padding: 30px 0;
}
.w-advantage__list{
    max-width: 320px;
    margin: 0 auto;
    --margin-top: 15px;
}
.w-advantage__title{
    font-size: 16px;
    line-height: 20px;
    margin: 10px 0;
    min-height: auto;
    height: auto;
}
.w-types{
    padding: 25px 0 30px;
}
h3.w-types__heading{
    font-size: 22px;
    line-height: 28px;
    margin-top: -10px;
}
h4.w-types__heading{
    font-size: 18px;
    margin: 10px auto 20px;
}
.w-types__item{
    padding-left: 90px;
    width: 100%;
}
.w-types__item:before{
    width: 90px;
}
.feedback_types{
    max-width: 100%;
}
.feedback_types .feedback__heading{
    font-size: 24px;
    line-height: 28px;
}
.w-doctors__item:nth-child(1n + 2){
	margin-top: 30px;
}
.w-doctors__image{
    width: 100%;
    margin: 0 0 20px;
    float: none;
}
.w-doctors__name{
    font-size: 22px;
    line-height: 28px;
    margin-bottom: 15px;
}
.w-doctors__box{
    width: 100%;
}
.feedback_doctors .feedback__form{
    max-width: 680px;
}
.feedback_doctors .feedback__rows{
    width: calc(100% - 230px);
}
.feedback_doctors .feedback__button{
    width: 200px;
}
.footer{
    background-color: var(--white);
}
.w-contacts{
    display: flex;
    flex-wrap: wrap;
}
.feedback_footer{
    position: initial;
    transform: none;
    border-radius: 0;
    width: 100%;
    box-shadow: none;
}
.w-contacts__map{
    width: 100%;
    height: 300px;
}
.w-content__text:nth-child(2){
    margin-top: 20px;
}
.w-content__text:nth-child(2) h2{
    font-size: 70px;
    line-height: 76px;
}
.w-content{
    padding: 40px 0;
}
.w-content__text{
    font-size: 18px;
    line-height: 26px;   
}


} /* 1023 */

@media only screen and (max-width: 767px){
.heading{
    font-size: 24px;
    line-height: 28px;
}
.h-logo{
    width: 100%;
}
.h-logo__image,
.h-top_fixed .h-logo__image{
    height: 65px;
    flex: 0 0 65px;
}
.h-logo__text,
.h-top_fixed .h-logo__text{
    font-size: 16px;
    line-height: 18px;
    letter-spacing: .6px;
}
.h-center__wrap{
    padding: 80px 0 10px;
}
.h-center__anons{
    margin: 50px auto 30px;
}
.h-center__title{
    font-size: 32px;
    letter-spacing: .6px;
    line-height: 38px;
}
.h-center__subtitle{
    font-size: 24px;
    line-height: 28px;
    margin-top: 20px;
}
.feedback_header{
    width: 100%;
}
.f-social__link{
    width: 30px;
    height: 30px;
    padding: 5px;
    margin-left: 10px;
}
h2.w-types__heading br{
    display: none;
}
.w-types__list{
    padding: 0;
}
.w-types__item{
    padding-left: 0;
}
.w-types__item:before{
    display: none;
}
.w-types__item p:before{
    counter-increment: types;
    content: counter(types)')';
    font-weight: bold;
    margin-right: 5px;
}
.w-types__title{
    padding-left: 40px;
    min-height: 40px;
    display: flex;
    align-items: center;
}
.feedback_types .feedback__heading{
    font-size: 20px;
    line-height: 24px;
}
.feedback_types .feedback__form{
    max-width: 360px;
    margin: 0 auto;
    display: block;
}
.feedback_types .feedback__rows{
    width: 100%;
    display: block;
}
.feedback_types .feedback__row{
    margin-bottom: 15px;
}
.feedback_types .feedback__button{
    width: 100%;
}
.w-doctors__name{
    font-size: 18px;
    line-height: 24px;
}
.w-doctors__title{
    font-size: 22px;
    line-height: 28px;
    margin-bottom: 10px;
}
.feedback_doctors{
    margin-top: 30px;
    padding: 30px;
}
.feedback_doctors .feedback__heading{
    font-size: 20px;
    line-height: 30px;
}
.feedback_doctors .feedback__form{
    max-width: 100%;
    display: block;
}
.feedback_doctors .feedback__rows{
    width: 100%;
    display: block;
}
.feedback_doctors .feedback__row{
    width: 100%;
}
.feedback_doctors .feedback__row:nth-child(1n + 2){
    margin: 20px 0 0;
}
.feedback_doctors .feedback__button{
    margin: 20px 0 0;
    width: 100%;
}

.feedback_footer{
    padding: 30px 90px;
    background-color: var(--white);
}
.copyright{
    display: block;
    text-align: center;
}
.copyright__link{
    display: table;
    margin: 0 auto;
}
.copyright__privacy{
    margin-top: 15px;
}

.w-content__text{
    font-size: 16px;
}
.w-content__text:nth-child(2){
    margin-top: 0;

}
.w-content__text:nth-child(2) h2{
    font-size: 36px;
    line-height: 38px;
    margin: 10px 0;
    
}

} /* 767 */

@media only screen and (max-width: 480px){

.w-video{
    padding: 30px 0 !important;
}

} /* 480 */

@media only screen and (max-width: 425px){

.heading{
    font-size: 20px;
    line-height: 24px;
}
.feedback_footer{
    padding: 30px 50px;
}

} /* 425 */

@media only screen and (max-width: 375px){

.h-logo{
    width: 200px;
}
.h-logo__image,
.h-top_fixed .h-logo__image{
    height: 50px;
    flex: 0 0 50px;
    margin-right: 5px;
}
.h-logo__text,
.h-top_fixed .h-logo__text{
    font-size: 12px;
    line-height: 15px;
    letter-spacing: .6px;
}
.h-center__wrap{
    padding-top: 70px;
}
.h-center__anons{
    margin: 70px auto;
}
.h-center__title{
    font-size: 24px;
    line-height: 28px;
}
.h-center__subtitle{
    font-size: 18px;
    line-height: 22px;
}
.feedback_footer{
    padding: 30px;
}

} /* 375 */

@media only screen and (max-width: 320px){
    
.h-logo__text,
.h-top_fixed .h-logo__text{
    font-size: 10px;
}
.h-center__anons{
    margin: 40px auto 50px;
}
.feedback_header{
    padding: 30px 15px;
}
.feedback_header .feedback__heading{
    font-size: 16px;
}
.feedback_doctors{
    padding: 30px 15px;
}
.feedback_doctors .feedback__heading{
    font-size: 18px;
    line-height: 26px;
}
.feedback_footer{
    padding: 30px 15px;
}

} /* 320 */