.link[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: #ffffff !important;
}

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

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

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


/* ------------------MENU------------------ */

.uc-fix {
top: 0;
position: fixed;
z-index: 999;
}
.uc-fix .t396__artboard {
position: fixed;
z-index: 999;
}