footer { 
    background-color: var(--blue); 
    color: var(--white);
}

footer section.f3 {
    padding-top: 30px;
}

footer .lblue {
    background-color: var(--sl-red);
    color: var(--dgray);
    padding: 20px 20px 60px 20px;
    text-align: center;
}

footer .lblue h2 {
    margin-bottom: 10px;
}

footer h3 {
    color: var(--white);
    font-weight: 400;
}

footer a {
    color: var(--white);
    text-decoration: none;
}

footer a:hover {
    color: var(--l-blue);
    /* text-decoration: underline; */
}

footer nav a {
    display: inline-block;
}

footer > section nav a {
    padding: 5px 0;
}

footer > nav a {
    padding: 3px 10px;
}

footer .logo {
    display: inline-block;
    margin-top: 30px;
}

footer .social a {
    background-color: #FFF3;
    border: 1px solid var(--white);
    display: inline-block;
    margin: 5px;
    border-radius: 50%;
    transition: background-color .3s;
}

footer .social a:hover {
    background-color: transparent;
}

footer .social a img {
    width: 16px;    
    height: 16px;
    padding: 10px;
}

footer > nav { 
    border-top: 1px solid var(--l-blue);
    border-bottom: 1px solid var(--l-blue);
    text-align: center;
    margin: 40px 0 0 0;
    padding: 7px;
}

footer div > nav div a {
    line-height: 20px;
}

footer div.phone,
footer div.email,
footer div.address {
    background-repeat: no-repeat;
    background-position: left top 3px;
    background-size: 22px;
    padding-left: 34px;
    margin-top: 20px;
}

footer div.address {
    background-image: url('/animus/svg/footer/pin.svg');
}

footer div.phone {
    background-image: url('/animus/svg/footer/phone.svg');
}

footer div.email {
    background-image: url('/animus/svg/footer/send.svg');
}

footer div > nav div a { 
    background-image: url('/animus/svg/footer/bullet.svg');
    background-size: 12px;
    background-repeat: no-repeat;
    background-position: left top 10px;
    padding-left: 24px;
}

footer > section:last-child {
    padding-top: 10px;
    padding-bottom: 10px;
    font-size: 13px;
}

footer > section strong {
    white-space: nowrap;
}

/* Mobile */
@media (max-width: 799.999px) {
    footer > section:last-child {
        text-align: center;
    }
}

/* Desktop */
@media (min-width: 800px) {

    footer .f3 > div:first-child p {
        max-width: 90%;
    }

    footer > nav > div { 
        display: inline-block; 
        margin: 0 10px;
    }

    footer > section:last-child {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    footer > section:last-child > div:last-child {
        text-align: right;
    }
}