.front-hero-image {
    background-color: var(--color-primary-black);
    height: calc(100vh - 100px);
    overflow: hidden;
    position: relative;
    width: 100%;
    z-index: 1;
}

.front-hero-image .parallax-hero {
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 120%;
    left: 0;
    position: absolute;
    width: 100%;
}

.front-hero-image .hero-text-container {
    color: var(--color-primary-white);
    left: 5vw;
    line-height: 1.2;
    max-width: 40vw;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60%;
}

.front-hero-image .hero-headline {
    font-family: "Kievit Bold", sans-serif;
    font-size: 5rem;
    margin-bottom: 2rem;
}

.front-hero-image .hero-subheadline {
    font-family: "Kievit Light", sans-serif;
    font-size: 4rem;
}

.front-hero-image .hero-button {
    margin-top: 4rem;
}

.front-hero-image .hero-video-button {
    color: var(--color-primary-white);
    font-size: 0;
    margin-top: 6rem;
    width: 80%;
}

.front-hero-image .hero-video-button .play-button {
    box-sizing: border-box;
    display: inline-block;
    font-size: var(--font-body-medium);
    text-align: center;
    vertical-align: middle;
    width: 18%;
}

.front-hero-image .hero-video-button .play-button > * {
    cursor: pointer;
    display: block;
}

.front-hero-image .hero-video-button .play-button svg {
    height: auto;
    transition: all 0.5s ease-in-out 0s;
    width: 100%;
}

.front-hero-image .hero-video-button .play-button > *:hover svg {
    transform: scale3d(1.1, 1.1, 1.0);
}

.front-hero-image .hero-video-button .play-text {
    box-sizing: border-box;
    display: inline-block;
    font-size: var(--font-body-medium);
    padding-left: 3rem;
    vertical-align: middle;
    width: 75%;
}

@media (max-width: 1300px) {
    .front-hero-image .hero-text-container {
        max-width: 50vw;
    }

    .front-hero-image .hero-headline {
        font-size: 4rem;
    }
}

@media (max-width: 1280px) and (max-height: 720px) {
    .front-hero-image .hero-text-container {
        max-width: 60vw;
    }

    .front-hero-image .hero-headline {
        font-size: 4rem;
    }
}

@media (max-width: 750px) {
    .front-hero-image {
        background-color: var(--color-primary-white);
        height: 100%;
        min-height: auto;
        overflow: visible;
    }

    .front-hero-image .parallax-hero {
        height: 30vh;
        position: relative;
        left: auto;
        top: auto !important;
    }

    .front-hero-image .hero-text-container {
        box-sizing: border-box;
        color: var(--color-primary-black);
        left: auto;
        max-width: none;
        margin: 3rem 5vw 0 5vw;
        position: relative;
        top: auto;
        transform: none;
        width: auto;
    }

    .front-hero-image .hero-headline {
        font-size: 3.5rem;
    }

    .front-hero-image .hero-subheadline {
        font-size: 2.5rem;
    }

    .front-hero-image .hero-button {
        font-size: 2.5rem;
        text-align: center;
    }

    .front-hero-image .hero-video-button {
        border: solid 2px var(--color-light-gray);
        box-sizing: border-box;
        color: var(--color-primary-black);
        margin-top: 4rem;
        padding: 2rem;
        width: 100%;
    }
}