main.main-wrapper {
    font-size: 1.6rem;
    width: 100vw;
    display: flex;
    flex-direction: column;
    background-color: var(--primary-grey);
}

/* start of hero section */
.hero-container-full {
    width: 100%;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 .3rem rgba(0, 0, 0, .2);
            
    background-image: linear-gradient(
        to right bottom,
        rgba(30, 60, 125, 0.4),
        rgba(30, 60, 125, 0.6)),
        url(../img/jpg/hero-home.jpg);
    
    background-position: center;
    background-size: cover; 

    color: var(--primary-grey);
}

    .hero-wrap {
        width: 80%;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
    }

    .hero-wrap h1 {
        font-family: Lato;
        font-weight: 700;
        text-align: center;
        margin-top: 1.5rem;
        margin-bottom: 7.5rem;
    }

    .hero-wrap p.bible-quote {
        margin: 0 auto;
        width: 33%;
        text-align: center;
        margin-bottom: 5rem;
    }

    /* end of hero image content section */
    /* start of hero location, overlay color */
    .location-container-full-overlay {
        background-image: linear-gradient(to bottom,
        rgba(30, 60, 125, 0.4),
        rgba(30, 60, 125, 0.6));
        padding: 2rem;

        
    }

    .location-wrap {
        width: 80%;
        margin: 0 auto;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        position: relative;
        font-size: 1.3rem;
    }

    .location-address {
        display: flex;
        justify-content: flex-start;
        align-items: center;
        width: 30%;
    }

    .location-address i {
        font-size: 3rem;
        margin-right: .75rem;
    }

    .church-hours {
        width: 60%;
        margin-left: 2rem;
        padding-left: 1rem;
        text-align: right;
        display: flex;
        justify-content: space-between;
    }

.section-container-full {
    width: 100vw;
    
    background-color: var(--primary-grey);

}

    .section-wrap {
        width: 80%;
        margin: 0 auto;
       
        display: flex;
        justify-content: space-between;
        text-align: center;
    }

    .section-column {
        margin: 2rem;
        padding: 2rem;
        color: var(--secondary-blue);
    }

.section-column i {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.section-column h2 {
    margin-bottom: 2rem;
    font-family: 'Lato', sans-serif;
}

@media screen and (max-height: 900px) {

    .flex-container {
        min-height: 150vh;
    }

}

@media screen and (max-width: 900px) {

    .flex-container {
        min-height: 150vh;
    }

    .header-wrapper {
        min-height: 15rem;
        flex-grow: 0;
    }

    .main-wrapper {
        flex-grow: 8;
        
    }

    .footer-wrapper {
        flex-grow: 0;
    }
    

main.main-container {
    flex-grow: 1;
}

.hero-wrap h1 {
    font-weight: 600;
    text-align: center;
    margin-top: 1rem;
    margin-bottom: 3rem;
    font-size: 2rem;
}

.hero-wrap p.bible-quote {
    width: 75%;
    margin-bottom: 3rem;
}

.location-wrap {
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.location-address {
    width: 100%;
    justify-content: center;
    margin: 1rem;
}

.church-hours {
    width: 100%;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0;
    padding: 0;
}

.church-hours span {
    width: 100%;
    padding: 1rem;
    margin: 1rem;
    text-align: center;
}

.section-wrap {
    
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.section-column {
    font-size: 1.5rem;
    margin: 1rem;
    padding: 1rem;
}

}

@media screen and (max-width: 500px) {

        .flex-container {
            min-height: 250vh;
        }

}