footer {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: start;
    gap: 2em;

    font-family: "Open Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-variation-settings:
        "wdth" 100;

    margin: 0.6em auto;
    margin-bottom: 0;
    margin-top: 13em;
    padding: 2em;
    padding-bottom: 0;
    z-index: 1600;
    position: relative;

    border-radius: 1.4em 1.4em 0 0;
    width: 90%;
    border: 2px solid rgba(205, 214, 244, 0.1);
    border-bottom: none;
}

footer .info {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 2em;
    width: 100%;
}

footer .branding {
    display: flex;
    flex-direction: column;
}

footer .social {
    display: flex;
    flex-direction: column;
    align-items: end;
}

.marin {
    margin: 0;
    padding: 0;
}

.marin a {
    font-variant-caps: all-petite-caps;
    text-decoration: none;
    font-size: 1.2em;
}

footer .social a {
    color: inherit;
    text-decoration: none;
}

footer .social a:hover {
    text-decoration: underline;
}

footer * nav {
    display: flex;
    flex-direction: column;
    align-items: center;
}

@media (max-width: 1280px) {
    footer,
    footer .info {
        flex-direction: column;
    }

    footer {
        margin-top: 0;
        margin: 0;
        width: 100%;
    }
    
    footer .social {
        align-items: start;
    }
}