.site-video-background {
    position: fixed;
    inset: 0;
    z-index: -2;
    overflow: hidden;
    pointer-events: none;
    background: #07398f;
}

.site-video-background video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0;
    transform: scale(1.015);
    transition: opacity 3.5s cubic-bezier(0.45, 0, 0.55, 1);
}

.site-video-background video.is-active {
    opacity: 1;
}
