footer {
    background-color: var(--footer-color);
    color: var(--white);
    padding: 2em 15px;
}

.footer-container {
    position: relative;
    max-width: 1380px;
    margin: 0 auto;
    display: grid;
    gap: 2rem;
}

footer a, footer a:hover, footer a:active, footer a:focus {
    color: var(--white) !important;
    text-decoration: none !important;
    font-weight: 500 !important;
}

footer p {
    color: var(--white) !important;
}

footer .faqs {
    display: grid;
    grid-template-columns: 1fr;
    place-content: center;
    place-items: center;
}

footer .faqs a {
    font-size: 13px;
}

footer .socials {
    display: flex;
    flex-flow: row wrap;
    gap: 14px;
    justify-content: center;
    align-items: center;
}

footer section.footer_menu ul {
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
}

div#identity {
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    align-items: center;
    gap: 4.5em;
}

#info .content li {
    font-size: 18px;
}

#info .content ul {
    margin: 0 0 2em;
}

#info .content p {
    font-size: 13px;
    margin: 0;
}

@media(max-width: 1280px) {

    footer section.footer_menu ul {
        flex-flow: column;
        gap: 5px;
    }

}

@media(max-width: 1060px) {
    footer .faqs {
        position: relative;
        top: unset;
        right: unset;
        place-items: center;
        text-align: center;
        grid-row: 2;
    }
}