.hero_wrapper {
    margin: 80px 10px;
    height: 700px;
    border-radius: 10px;
    opacity: 1;
    /* I cannot get the background overlay to appear, on load you can see a blink of it attempting to work
    but it will not correctly overlay.
    TODO: Figure out why this is not working
    */
    background: url("../images/hero-single-house.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    /* ^ */

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.hero_content {
    font-family: var(--font-header);
    color: white;
    z-index: 20;
    display: flex;
    flex-direction: column;
}

.hero_header {
    width: 480px;
    font-size: 4rem;
}

.hero_buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.btn-secondary {
    background: var(--font-color-mute-grey);
    color: white;
    border-radius: 10px;
    height: 40px;
    width: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
}

.btn_active {
    background: var(--color-seagreen);
    color: white;
}

.btn-secondary:hover {
    background: var(--color-seagreen) !important;
    color: white;
}

.hero_buttons:hover > .btn-secondary {
    background: var(--font-color-mute-grey);
    color: white;
}


@media screen and (max-width: 900px){
    .hero_wrapper {
        width: 100%;
        margin: 80px 10px 10px 0px;
        height: 500px;
        background-size: cover;
        overflow: none;
    }

    .btn-secondary {
        background: var(--color-seagreen);
    }
}

@media screen and (max-width: 600px){
    .hero_header {
        width: 100%;
        font-size: 2rem;
        text-align: center;
        padding-left: 20px;
        padding-right: 20px;
    }

    .hero_search {
        display: none;
    }
}