

footer {
    background-color: var(--footer-color);
    text-align: center;
    padding: 2em 15px;
    display: grid;
    place-items: center;
}

footer .container {
    max-width: 1280px;
    width: 100%;
    margin: auto;
}

footer .content {
    width: 100%;
}

#contacto {
    margin: 0 0 2em;
    color: var(--white);
}

footer p {
    color: var(--white);
    margin: 0;
}

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

footer .web a {
    font-size: 18px;
    font-weight: 400;
    display: block;
    width: 100%;
    text-transform: uppercase;
}

footer .legal a {
    font-size: 14px;
    font-weight: 400;
    display: block;
    width: 100%;
}

footer ul.menu {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 150px));
    place-content: center;
    place-items: center;
    padding: 1em 0;
    border-bottom: solid 1px var(--white);
}

section#kit-digital {
    padding: 1em 0;
    display: grid;
    gap: 1em;
}

section#kit-digital p {
    font-size: 16px;
    font-weight: 400;
}

section#identity {
    margin: 0 0 2em;
}

section#kit-digital .images {
    max-width: 650px;
    margin: auto;
    display: flex;
    flex-flow: row;
    justify-content: space-evenly;
    width: 100%;
    gap: 1em;
}

@media(max-width: 930px) {
    footer ul.menu {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

@media(max-width: 600px) {
    section#kit-digital .images {
        flex-flow: column;
        align-items: center;
    }

    section#kit-digital .images img {
        display: block;
        max-width: 190px;
        width: 100%;
    }
}