
a {
    text-decoration: none;
    color: #ffffff;
}

a:hover {
    text-decoration: underline;
}

ul {
    margin: 0;
    padding: 0;
}

#footer__contact-us__list {
    padding-left: 0;
}

ul li {
    list-style-type: none;
    margin: 5px 0px;
}

#footer {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: start;
    background: url(../../images/png/FOOTER__BG__IMAGE@2x.png) no-repeat;
    background-size: cover;
    min-height: 500px;
    color: #ffffff;
    margin: 0;
}

#footer__links {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
    width: 100%
}

#footer__address1__link span, #footer__address2__link span {
    font-size: 1.7rem;
    font-weight: bold;
}

#footer__bottom {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    width: 100%;
}

.footer__bottom__social__link {
    margin: auto 10px;
}

#footer__bottom__logo {
    margin: 0px 0px 0px 7%;
}

#footer__bottom__legal {
    display: flex;
    flex-direction: row;
    align-items: center;
    height: 100%;
}

#footer__bottom__legal a {
    margin: auto 10px;
    font-weight: 600;
}

#footer__copyright {
    text-align: center;
    width: 100%;
}

#footer__copyright p span {
    font-weight: 600;
}

#footer .row {
    align-items: start;
}

.footer__column {
    margin-top: 100px;
}

@media only screen and (max-width: 768px) {
    #footer__links {
        flex-wrap: wrap;
    }
    .footer__column h1 {
        font-size: 1.2rem;
    }
    #footer__bottom__logo {
        margin: 0px 0px 0px 12%;
    }
}

@media only screen and (max-width: 425px) {
    #footer__links {
        flex-direction: column;
        margin: 200px 50px 50px 50px
    }
    .footer__column {
        margin-top: 20px;
    }
    #footer__bottom {
        flex-direction: column;
    }
    #footer__bottom__social, #footer__bottom__logo, #footer__bottom__legal {
        width: 100%;
        text-align: center;
        margin: 10px 0px;
    } 
    #footer__bottom__legal {
        justify-content: space-around;
    }
}