a {
    opacity: .9;
    transition: opacity 0.3s;
}
a:hover {
    opacity: 1;
    color: #EA5B0C !important;
    transition: opacity 0.3s easy;
    
}

header {
    animation: gradientBG 2s ease infinite;
}
.uc-head-back { 
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px); /* Для Safari */
            mask: linear-gradient(to bottom, 
                rgba(0,0,0,1) 0%, 
                rgba(0,0,0,0.2) 80%, 
                rgba(0,0,0,0) 100%
                );
    background: linear-gradient(
                to bottom,
                rgba(255, 255, 255, 0.92) 0%,
                rgba(255, 255, 255, 0.08) 80%,
                rgba(255, 255, 255, 0) 100%
            );        
} 
@keyframes gradientBG {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }
.uc-menu-link a { 
    color: #2c2c2c; 
}
.uc-menu-link a:hover {
    color: #EA5B0C !important;
    transition: .5s opacity ease;
    transition-property: opacity,transform,color;
    transition-delay: 0s; 
} 
.uc-title_about h1 {
    text-indent: 24vw;
}
.uc-head-link-more {
    position: absolute;
    top: 94dvh;
}
.uc-head-link-more a:hover {
    color: #EA5B0C;
}
.uc-privacy-title h1 {
    text-indent: 0;
}


