#top_footer {
    border-top: 1px solid var(--silver);
    color: var(--white);
    background-color: var(--blueMed);
    padding: 1rem 0;
    text-align: center;
    line-height: 1.5;
    font-size: 16px;
}

#top_footer .footer_section {
    padding: 1rem;
    text-align: left;
}

#top_footer .footer_section_title {
    font-weight: 900;
    margin-bottom: 1rem;
    text-transform: uppercase;
    border-bottom: .1rem solid var(--blueBright);
    width: fit-content;
    margin: 1rem 0;
}

#top_footer .footer_section_subtitle {
    font-weight: 700;
    margin-top: 1rem;
    text-transform: uppercase;
}

#top_footer a {
    color: var(--white);
    font-weight: 900;
    text-decoration: none;
}

#top_footer a:hover {
    text-decoration: underline;
}

#top_footer .footer_sections {
    display: flex;
    justify-content: space-evenly;
}

#social_links {
    margin: 1rem 0
}

#social_links a.sprite {
    display: inline-block;
    margin-right: 1rem;
}

#bottom_footer {
    text-align: center;
    font-weight: 900;
    margin-top: 0;
    padding-bottom: 2rem;
    border-top: 1px solid var(--slateGrey);
    padding-top: 2rem;
    background: var(--graphite);
    color: var(--greySubdued);
    text-transform: uppercase;
    font-size: .9rem;
    font-family: Oswald, sans-serif;
    letter-spacing: .1rem;
}

#sitemap_section {
    margin-top: 2rem;
}

#ep-footer-link {
    display: inline-block;
    margin: 0 auto 1rem;
}

.fb-icon {
    width: 21px;
    height: 39px;
    background-position: -148px -64px;
}

.fb-icon:hover {
    background-position: -10px -130px
}

.ig-icon {
    width: 40px;
    height: 40px;
    background-position: -70px -70px
}

.ig-icon:hover {
    background-position: -10px -70px
}

.twitter-icon {
    width: 49px;
    height: 40px;
    background-position: -79px -10px
}

.twitter-icon:hover {
    background-position: -10px -10px
}

.marker-icon {
    width: 19px;
    height: 31px;
    background-position: -51px -130px
}

@media (min-width:992px) {
    #top_footer {
        text-align: left;
    }

    #top_footer .footer_sections {
        display: flex;
        justify-content: space-evenly;
    }

    #top_footer .logo_section {
        align-self: center;
    }
}
@media (max-width:991px) {
    #top_footer .footer_section {
        text-align: center;
    }
    #top_footer .footer_sections {
        display: block;
    }
    #top_footer .footer_section_title {
        width: fit-content;
        margin: 0 auto 1rem auto;
    }
}