/* FOOTER */

.footer {
    height: auto;
    position: relative;
    left: 0;
    right: 0;
    background: var(--white);
}

.footer__container {
    width: 90vw;
    height: 25em;
    margin: 2em auto;
    padding: 2em 0 4em 0;
    display: flex;
    justify-content: space-evenly;
}

.logo--footer {
    display: flex;
    margin: 0;
    width: 11em;
    height: 5em;
}

.footer__content {
    display: flex;
    flex-direction: column;
    color: var(--dark);
}

.footer a {
    color: var(--dark);
    text-decoration: none;
}

.social--icons img {
    width: 25px;
    height: 25px;
}

.footer__social {
    padding-right: .2em;
}

.social--icons {
    display: inline;
}

/* Tablet */
@media only screen and (max-width: 960px) {
    
        
}

/* Mobile */
@media only screen and (max-width: 600px) {
    .footer__container {
        flex-direction: column;
        align-items: center;
        text-align: center;
        width: 100%;
        height: auto;
    }

    .footer__content {
        margin: 1em;
    }
    .footer__content:last-child{
        margin-bottom: 6em;
    }
}