body > footer {
    background:var(--color-blue);
    color:var(--color-white);
    padding:var(--padding) 0;
}
body > footer div article li {
    margin-top:10px;
}
body > footer div article:last-of-type {
    display:flex;
    flex-direction: column;
    justify-content: end;
    align-items: flex-end;
}
body > footer div article:last-of-type h1 {
    max-width:140px;
}
body > footer address {
    margin-top:20px;
}

@media (max-width:520px ) {
    body > footer {
        padding-bottom:100px;
    }
    body > footer div article li {
        margin-top:20px;
    }
    body > footer div article:last-of-type {
        align-items: center;
        margin-top:20px;
    }
}