#hero-section {
    width: 100%;
    min-height: 100vh;
    height: auto;
    background-image: linear-gradient(rgba(0,0,0,.25), rgba(0,0,0,.1)), url(/images/misc/highangle-racks.jpg);
    background-color: rgba(0,0,0,0.5);
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: space-between;
    align-items: center;
    overflow: hidden;
}
#hero-left {
    color: white;
    text-shadow: 0 0 10px black;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 100%;
    flex: 1;

    h1 {
        font-weight: 900;
        text-align: center;
    }
}
#hero-left #upper-hero-header {
    font-size: 64pt;
    line-height: 0.9;
}
#hero-left #mid-hero-header {
    font-size: 59pt;
    line-height: 0.9;
}
#hero-left #lower-hero-header {
    font-size: 17pt;
    margin-top: 20px;
    line-height: 1;
}
#hero-right {
    background-color: rgba(238, 241, 245, 0.8);
    padding: 0 4vw;
    width: 35vw;
    height: auto;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    backdrop-filter: blur(5px);
    margin-right: 5vw;
    h2 {
        margin: var(--nav-bar-height) 0 20px;
        text-align: left;
        overflow-wrap: break-word;
        hyphens: auto;
        font-size: 21pt;
    }
    p {
        font-size: 16pt;
    }
}

/* @media (max-width: 780px) {
    #hero-section {
        height: auto;
        min-height: calc(100vh - var(--nav-bar-height));
        flex-direction: column;
        padding-top: var(--nav-bar-height);
    }
    #hero-section > .hero-left {
        color: white;
        text-shadow: 0 0 10px black;
        overflow: hidden;
        text-align: center;
        display: flex;
        flex-direction: column;
        margin: 10vw 0;
    }
    #hero-section .upper-hero-header {
        font-size: 6vw;
    }
    #hero-section .lower-hero-header {
        font-size: 2.55vw;
    }
    #hero-section > .hero-right {
        height: fit-content;
        padding: 50px 0;
        width: 100%;
        text-shadow: 0 0 5px white;
        h2, p {
            margin: 0 50px;
        }
    }
} */

#services {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 20px 5vw;
}

#reviews {
    h2 {
        text-wrap-style: pretty;
        text-align: center;
        margin: 25px 0;
    }

    #reviews-flex-container {
        background-color: var(--extra-light);
        box-shadow: 0 1px 20px rgba(0,0,0,0.2);
        display: flex;
        justify-content: center;

        gap: 3vw 4vw;
        padding: 50px;

        .review-wrapper {
            flex: 1 1 300px;
            max-width: 450px;
        }
    }
    padding-bottom: 25px;
}

#render-map {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px 0;
    background-image: linear-gradient(#222, #000);
    width: 100vw;
    h2 {
        color: white;
        margin-bottom: 50px;
        text-align: center;
    }
    .render-container {
        max-width: 90vw;
        position: relative;
        img {
            width: 100%;
            max-height: 75vh;
            height: auto;
            filter:contrast(200%) brightness(80%) saturate(125%);
        }
        svg {
            width: 100%;
            position: absolute;
            top: 0;
            left: 0;
            bottom: 0;
            right: 0;
        }
    }
}

.render-hover-container {
    color: white;
    background-color: var(--orange);
    width: calc(100% - 20px);
    height: calc(100% - 20px);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background-color .1s;
    padding: 10px;
    font-size: small;
    text-align: center;
    text-decoration: none;
}
.map-poly {
    fill: var(--orange);
    fill-opacity: 25%;
    stroke: var(--orange);
    stroke-width: 3px;
    stroke-opacity: 100%;
    stroke-miterlimit: 10;
    transition: fill .1s, fill-opacity .1s, stroke-opacity .1s;
}
.map-poly-hl-wrapper:hover .render-hover-container {
    background-color: var(--yellow);
}
.map-poly-hl-wrapper:hover .map-poly {
    fill: var(--yellow);
    fill-opacity: 50%;
    stroke-opacity: 100%;
}

.gen-banner-container {
    width: 100%;
    margin: 0;
    padding: 3vw 0;
    overflow: hidden;
    box-shadow: 0 0 0;
    align-items: stretch;
    gap: 0;
    
    background-position: calc(100% + 0px) center;
    background-size: 1000px;

    &::after {
        content: "";
        position: absolute;
        top: 0; right: 0; bottom: 0; left: 0;
        background-color: rgba(238, 241, 245, .9);
        z-index: 1;
    }

    .gen-banner-col-wrapper {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-between;
        flex: 1;
        padding: 0 2.5vw;

        &:not(:last-child) {
            border-right: var(--gray) solid 1px;
            z-index: 2;
        }
        &:not(:first-child) {
            border-left: var(--gray) solid 1px;
            z-index: 2;
        }
        
        .gen-banner-text-wrapper {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 20px;
            z-index: 2;
            text-align: center;

            h3 {
                width: fit-content;
                padding: 0 25px;
                padding-bottom: 15px;
                border-bottom: 2px solid var(--orange);
            }
            p {
                padding-left: 5px;
            }
        }
        a.hl-button {
            margin-top: 25px;
            width: 50%;
        }
    }
}


@media (max-midth: 780px) {
    #services {
        padding: 1000px 0;
    }
}