.hero-banner {
    min-height: calc(75vh - 120px);
    max-height: calc(100vh - 120px);
    width: 100vw;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    position: relative;
}

.hero-banner:after {
    content: '';
    display: block;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
}

.hero-banner .content {
    position: absolute;
    bottom: 15vw;
    left: 10vw;
    display: block;
    width: 80%;
    z-index: 67;
    margin-top: 40px;
}

.hero-banner .content p {
    margin: 0;
    padding: 0;
    color: var(--foe-color-four);
}

.button {
    background-color: var(--foe-color-three);
    border: 2px solid var(--foe-color-three);
}

.button:hover,
.button:focus,
.button:active {
    background-color: var(--foe-color-one);
    border: 2px solid var(--foe-color-one);
}

/**    ███  ██████████  ██████████     ██████████  ███    ███
███    ███  ███    ███  ███    ███     ███    ███   ███  ███
███    ███  ███    ███  ███    ███     ███    ███     ████
██████████  ██████████  ███    ███     ██████████      ██
       ███  ███    ███  ███    ███     ███            ████
       ███  ███    ███  ███    ███     ███          ███  ███
       ███  ██████████  ██████████     ███         ███    █*/

@media only screen and (min-width: 480px) {}

/**███████  ███         ██████████     ██████████  ███    ███
       ███  ███         ███    ███     ███    ███   ███  ███
       ███  ███         ███    ███     ███    ███     ████
    ██████  ██████████  ██████████     ██████████      ██
       ███  ███    ███  ███    ███     ███            ████
       ███  ███    ███  ███    ███     ███          ███  ███
       ███  ██████████  ██████████     ███         ███    █*/

@media only screen and (min-width: 768px) {
    .hero-banner {
        min-height: 350px;
        max-height: calc(100vh - 120px);
        display: flex;
        align-items: flex-end;
        justify-content: flex-start;
    }

    .hero-banner .content {
        display: block;
        position: relative;
        bottom: auto;
        left: auto;
        width: 80%;
        margin: 0 auto 25px 10%;
    }

    .hero-banner .content .button-container {
        justify-content: flex-start;
    }
}

/**  ██████████  ██████████  ███    ███     ██████████  ███    ███
███  ███    ███         ███  ███    ███     ███    ███   ███  ███
███  ███    ███         ███  ███    ███     ███    ███     ████
███  ███    ███  ██████████  ██████████     ██████████      ██
███  ███    ███  ███                ███     ███            ████
███  ███    ███  ███                ███     ███          ███  ███
███  ██████████  ██████████         ███     ███         ███    █*/

@media only screen and (min-width: 1024px) {
    .hero-banner .content {
        width: 50%;
        margin: 0 auto 30px 10%;
    }
}

/**  ███    ███  ███    ███  ██████████     ██████████  ███    ███
███  ███    ███  ███    ███  ███    ███     ███    ███   ███  ███
███  ███    ███  ███    ███  ███    ███     ███    ███     ████
███  ██████████  ██████████  ███    ███     ██████████      ██
███         ███         ███  ███    ███     ███            ████
███         ███         ███  ███    ███     ███          ███  ███
███         ███         ███  ██████████     ███         ███    █*/

@media only screen and (min-width: 1440px) {
    .hero-banner .content {
        width: 50%;
        margin: 0 auto 40px 10%;
    }
}