.youtube-bg-section {
    position: relative;
    overflow: hidden;
    min-height: 500px;
    padding: 0 !important;
    margin: 0 !important;
}

/* YouTube background */
.youtube-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.youtube-background iframe {
    position: absolute;
    top: 50%;
    left: 50%;

    /* Make video larger than container */
    width: 100vw;
    height: 56.25vw;

    min-width: 177.78vh;
    min-height: 100vh;

    transform: translate(-50%, -50%) scale(1.15);

    border: 0;
    pointer-events: none;
}

/* Overlay */
.youtube-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 1;
}

/* Content */
.content-over-video {
    position: relative;
    z-index: 2;
}