.top-intro-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #FAE048;
    z-index: 1000;
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
     video {
        width: 100%;
        height: 100%;
        object-fit: cover;
     }
}

.top-intro-overlay.hidden {
    opacity: 0;
    visibility: hidden;
}