footer
{
    display: grid;
    width: 100%;
    grid-template-columns: 1fr 3fr 1fr 1fr;
    background-color: var(--blue);
    color: white;
    min-height: var(--header_ht);
    padding-bottom: calc(2 * var(--margin));
}
    footer a,
    footer a:visited
    {
        color: white;
        text-decoration: none;
    }
    footer a:hover
    {
        color: var(--red);
    }
    footer > div:nth-child(1)
    {
        display: flex;
        justify-content: center;
        align-items: center;
    }
    footer > div:nth-child(3),
    footer > div:nth-child(4)
    {
        padding-top: calc(2 * var(--margin));
    }
    footer > div:nth-child(3) > div,
    footer > div:nth-child(4) > div
    {
        display: block;
        text-align: left;
        font-family: hhr_clarendon_lt_btlight;
    }
    footer > div:nth-child(3) > ul,
    footer > div:nth-child(4) > ul
    {
        margin: 0;
        font-family: hhr_dauphinregular;
        list-style-type: none;
    }
    footer > div:nth-child(3) > li,
    footer > div:nth-child(4) > li
    {
        margin: 0;
    }