/*Замена иконки Play на YouTube плеере в ZeroBlock*/
.tn-atom__video-play-icon {
    position: relative;
}
.tn-atom__video-play-icon svg {
    display: none;
}
 .tn-atom__video-play-icon::after {
    content: "";
    background-image: url(https://static.tildacdn.com/tild6665-3362-4534-a133-386334326335/Play.svg);
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: 100%;
    position: absolute;
    left: 0;
    top: 0;
}
.tn-atom__video-play-icon:hover {
    transform: scale(1.05);
}







/*Стиль подчеркивания черных ссылок с классом .sainuu-link-black*/
.sainuu-link-black[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: #1a1a1a !important;
}

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

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

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











/*Стиль подчеркивания белых ссылок с классом .sainuu-link-white*/
.sainuu-link-white[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;
}

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

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

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










/* анимация для шапки */

.menu-st {transition:  all 0.3s cubic-bezier(0, 0, 0.8, 1.0)}
.uc-scrollmenu{
    transform: translateY(-100%);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 99;
}
.uc-scrollmenu.show-menu{
    transform: translateY(0%)
}
















