footer
{
    width: 100%;
    position: relative;
    background-color: var(--main-bg);
    z-index: 4;
}

footer:before
{
    content: '';
    top: -20px;
    left: 0;
    width: 100%;
    height: 40px;
    display: block;
    position: absolute;
    background-color: inherit;
    mask: url('../images/header.svg') repeat-x top;
    z-index: -1;
}

footer > .content
{
    display: flex;
    place-content: space-between;
    place-items: center;
    flex-wrap: wrap;
    gap: 10px;
    padding-bottom: 10px;
}

footer .logo
{
    width: 160px;
    aspect-ratio: 128 / 85;
    margin-top: -60px;
    margin-bottom: -10px;
}

footer nav a
{
    font-size: 12px;
    padding: 0px 10px;
}

footer nav a:not(:last-of-type)
{
    border-right-style: solid;
    border-right-width: 1px;
    border-right-color: var(--yellow);
}

footer small
{
    font-family: Arial, Helvetica, sans-serif;
    font-size: 11px;
    color: var(--grey-3);
}

@media screen and (max-width: 900px)
{
    footer > .content
    {
        flex-direction: column;
        place-content: center;
        padding-bottom: 20px;
    }

    footer .logo
    {
        width: 200px;
        margin-top: -70px;
        margin-bottom: 0;
    }
}
