html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: #000;
}

.video-panel {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100vh;
    min-height: 700px;
    overflow: hidden;
    padding: 0;
}

.video-panel .video-panel-video-wrapper {
    position: absolute;
    width: 100%;
    height: 100%;
    background: transparent;
}

.video-panel .video-panel-video-wrapper:after {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    content: "";
    background: rgba(14, 16, 50, 0.6);
}

.video-panel .video-panel-bg-video {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: transparent;
    opacity: 0;
    transition: opacity 2s;
}

.video-panel .video-panel-bg-video.active {
    opacity: 1;
}

.video-panel .video-panel-bg-image {
    position: absolute;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 50%;
}
