.vrHero {
    position: relative;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 0;
    margin: 0;
    max-width: unset;

    .hero-media {
        position: absolute;

        width: 100%;
        overflow: hidden;
        height: 100vh;
        background-color: #000;
        picture>img {

            opacity:.95;
            object-fit: cover;
            width: 100vw;
            height: 100vh;
            position: absolute;
            top: 0;
            left: 0;

        }


    }

    .hero-text {
        width: 100vw;
        height: 100vh;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        max-width: var(--content-width);
        margin: 0 auto;
        flex-wrap:wrap;
        transform: translateY(10vh);
        align-content: center;
        z-index: 1;
        padding:0 .5rem;
        h1 {
            max-width: 90%;
            text-align: left;
            font-size: 3.4rem;
            line-height: 1.25em;
            color: #fff;
            font-weight:300;
            text-shadow: 0 0 15px rgba(0,0,0,.2);

            strong {
                color: inherit;
                font-weight: 700;
            }
        }

        .buttons-container {
            flex: 0 0 100%;
            justify-content: flex-start;
        }
    }
}

@media all AND (max-width: 700px) {

    .vrHero {
        .hero-text {
            padding:0;
            h1 {
                font-size: 2rem;
                padding: 0 var(--gap);
            }
        }
        .button{
            margin-left: var(--gap);
        }
    }
}