footer,
footer a:hover,
footer a:focus,
footer a:active,
footer a {
    color: var(--white);
}

footer .content {
    width: 100%;
}

footer {
    background-color: var(--footer-color);
}

#portfolio .content {
    width: 100%;
}

footer .footer-container {
    max-width: 1280px;
    margin: auto;
    text-align: center;
    padding: 30px 15px 45px;
    display: grid;
    gap: 2em;
}

footer #menu ul {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    border-top: solid 1px var(--white);
    border-bottom: solid 1px var(--white);
    padding: 22px 0;
}

footer #menu ul a {
    font-size: 13px;
    font-weight: 400;
    font-family: 'Monserrat', sans-serif;
}

footer #identity-footer {
    display: flex;
    flex-flow: column;
    gap: 2em;
    justify-content: center;
    align-items: center;
}

footer #kit {
    display: grid;
    gap: 1em;
}

footer #kit .content {
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    font-size: 16px;
}

footer .images {
    display: flex;
    flex-flow: row;
    justify-content: center;
    gap: 3em;
}

footer #identity-footer .contact {
    display: flex;
    flex-flow: column;
    gap: 5px;
}

footer #identity-footer .contact a {
    line-height: 1;
}

@media(max-width: 1035px) {
    footer #menu ul {
        grid-template-columns: 1fr;
    }
}

@media(max-width: 640px) {

    footer #kit, footer .images {
        gap: 2em;
    }

    footer .images {
        flex-flow: column;
        text-align: center;
        justify-content: center;
        align-items: center;
    }

    footer .images img {
        max-width: 200px;
    }
}

