/* Footer */

/* Mobile Style */
@media only screen and (max-width: 768px) {

    .footer {
        line-height: 1.5; 
        text-align: center;
        color: white;
        background-image: url('../images/mobile/footer-bg.jpg');
        background-size: cover;
        background-repeat: no-repeat;
        background-position: bottom;
    }

    .footer_left,
    .footer_right {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding-top: 1rem;
    }
    .footer_middle {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        width: 8.2rem;
        margin: 1rem auto 0 auto;
    }

    .footer_logo,
    .footer #ep {
        display: none;
    }

    .footer #sitemap {
        width: 7rem;
        height: 2rem;
        border: 1px solid white;
        border-radius: 2rem;
        background: rgba(255, 255, 255, 0.3);
    }
    .footer #sitemap a {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        height: 100%;
    }

    .footer #contact {
        margin-top: 0.7rem;
    }
    .footer #address {
        margin-top: 1rem;
    }

    .footer #disclaimer {
        text-decoration: underline;
    }

}

/* Desktop Style */
@media screen and (min-width: 769px) {

    .footer {
        position: relative;
        display: block;
        width: 78%;
        height: 15.625rem;
        border-top: 0.16rem solid white;
        margin: 5.2rem auto 0 auto;
        color: white;
        line-height: 1.5;
    }

    .footer_logo {
        position: absolute;
        display: block;
        top: 35%;
        left: 5%;
        width: 15%;
        height: auto;
    }

    .footer_text_wrapper{
        position: absolute;
        display: block;
        width: 85%;
        left: 20%;
        top: 10%;
    }

    .footer_left {
        position: relative;
        display: inline-block;
        margin-left: 5%;
        margin-right: auto;
        width: 50%;
    }

    .footer_right {
        position: relative;
        display: inline-block;
        margin-right: auto;
        width: 40%;
    }

    .footer_middle {
        display: none;
    }

}
