/* === HERO VIDEO === */

section#hero-video {
    position: relative;
    width: 100%;
    height: 496px;
    overflow: hidden;
    background: #000;
}

section#hero-video .hero-video-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

section#hero-video .hero-video-wrapper iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 177.78vh; /* 16:9 ratio */
    height: 100vh;
    min-width: 100%;
    min-height: 100%;
    pointer-events: none;
}

@media screen and (max-width: 500px) {
    section#hero-video {
        height: 300px;
    }
}
