.hero-video {
    position: relative;
    width: 100%;
    max-width: 100%;
    height: 100vh;
    min-height: 100vh;
    margin: 0;
    padding: 0;
    overflow: hidden;
    box-sizing: border-box;
    background: #000;
}

.hero-video::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 10;
    background: transparent;
}

.hero-video__video {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
    border: 0;
    object-fit: cover;
    object-position: center center;
}

.hero-video__poster {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.hero-video__video--mobile {
    display: none;
}

@media (max-width: 900px) {
    .hero-video {
        height: 100vh;
        min-height: 100vh;
    }

    .hero-video__video--desktop {
        display: none;
    }

    .hero-video__video--mobile {
        display: block;
    }
}

@media (min-width: 901px) {
    .hero-video__video--desktop {
        display: block;
    }

    .hero-video__video--mobile {
        display: none;
    }
}