/*Специалисты (мобильная версия) - между карточками, отредактировал отступ*/
@media screen and (max-width: 960px) {
    .t853__col {
        margin-top: 0;
        margin-bottom: 30px !important;
    }
}

/*Специалисты (мобильная версия) - нижняя карточка, убрал отступ - снизу*/
@media screen and (max-width: 960px) {
    .t853__col_mobile-grid:last-child {
        margin-bottom: 0;
        padding-bottom: 0px !important;
    }
}

/*Специалисты (мобильная версия) - убрал внутр. отступ - снизу (весь контейнер)*/
@media screen and (max-width: 480px) {
    .t-rec_pb-res-480_15 {
        padding-bottom: 10px !important;
    }
}

/*В блоке с цифрами - "О Клинике", уменьшил Margin, был 14 сделал 10*/
.t1050__line {
    margin: 10px 20px 10px 0 !important;
}

/*Подчеркивается пункты при наведении Хедер и Футер*/

.hover_link2[data-elem-type="text"] a {
    border: 0 !important;
    display: inline-block !important;
    width: auto !important;
    position: relative !important;
    transition: all 0.3s ease !important;
    /* цвет ссылки до наведения */
    color: #202020 !important;
}

.hover_link2[data-elem-type="text"] a:hover {
    /* цвет ссылки после наведения */
    color: #EE2323 !important;
}

.hover_link2[data-elem-type="text"] a::after {
    content: '';
    position: absolute;
    transition: all 0.3s ease;
    margin: auto;
    /* отступ между ссылкой и подчеркиванием; 
    если нужно сделать расстояние больше, то используй отрицательное значение */
    margin-bottom: -0px;
    /* толщина подчеркивания */
    height: 1.2px;  
    /* цвет подчеркивания до наведения */
    background: transparent; 
     
    opacity: 0;
    top: auto;
    bottom: 20%;
    left: 0;
    right: 0;
    width: 100%;
     
}

.hover_link2[data-elem-type="text"] a:hover::after {
    /* цвет подчеркивания после наведения */
    background: #EE2323;
     
    opacity: 1;
    top: auto;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
     
}

/*Меняется цвет при наведении у Политика и Согласие- Футер - Документы*/
.footerlink-hover .tn-atom:hover {
  color: #EE2323 !important;
}

/*Меняется цвет при наведении в хлебных крошках -Главная*/
.breadcrumbs-hover .tn-atom:hover {
  color: #222222 !important;
}