
/*Стиль ссылок в меню*/

.menu-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: #161616 !important;
}

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

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

.menu-link[data-elem-type="text"] a:hover::after {
    /* цвет подчеркивания после наведения */
    background: #161616;
     
    opacity: 1;
    top: auto;
    bottom: 0;
    left: 0;
    right: auto;
    width: 100%;
    
/*обесцвечивание видео*/
    .video-bg {
        -ms-filter: grayscale(1);
    	-webkit-filter: grayscale(1);
    	-moz-filter: grayscale(1);
    	-o-filter: grayscale(1);
    	filter: grayscale(1);
    }
    
/*режим наложения на шейп и отключение реакции курсора*/
    .color-video {
        mix-blend-mode: color;
        pointer-events: none;
        }
/*элементы, которые должны быть нижним слоем*/
.tn-elem__3218473971622590412303 {
        z-index: 0 !important;
    }
    
/*РАЗМЕР шрифта стандартных блоков на мобильном*/
@media screen and (max-width: 640px) {
    .t-name_xs {
        font-size: 16px!important;
    }
    .t-name_lg {
        font-size: 20px!important;
    }
    .t-descr_sm {
        font-size: 13px!important;
        line-height: 1.45!important;
    }
    .t-name_md {
        font-size: 20px!important;
    }
}