/*     FOOTER     */

.footer {
    padding: 2rem 1rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    position: relative;
    width: 100%;
    margin: auto;
    background-color: #282828;
}

.footer__logo {
    height: 3rem;
    margin-bottom: 2rem;
}

.footer__logo svg{
    height: inherit;
}

.footer__nav {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 2rem;
}

.footer__nav ul{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 1rem;
    font-family: Avenir, sans-serif;
    font-weight: 500;
    gap: 1.5rem;
}

.footer__nav ul li a{
    color: #fff;
}

#facebookLink {
    height: 1.5rem;
    margin: 0 .5rem;
}

#facebookLink svg{
    height: inherit;
}

.footer__copyright {
    font-size: .7rem;
    color: #fff;
    font-family: Avenir, sans-serif;
    font-weight: 500;
}

@media only screen and (min-width: 600px) {

   /*     FOOTER     */

   .footer__nav ul{
        flex-direction: row;
    }

}

@media only screen and (min-width: 768px) {

    /*     FOOTER     */

    .footer__logo {
        height: 4rem;
    }

}

@media only screen and (min-width: 1024px) {

    /*     FOOTER     */

    #facebookLink {
        height: 2rem;
    }
}