.footer {
    padding-top: 80px;
    padding-bottom: 80px;
    background: #DDDAE0;
}

.footer-content h5{
    font-family: 'ordaxmedium_italic';;
    font-weight: 500;
    font-style: italic;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-gap: 20px;
    justify-items: center;
}


.footer-social {
    display: flex;
    margin-top: 10px;
    grid-gap: 5px;
}

.footer-menu > a, .footer-menu > p{
    margin-left: 10px;
}

.footer-menu > a:hover{
   color: #D40C26;
}

.footer-menu h5 {
    margin-bottom: 5px;
    font-size: 1.125rem;
}

.footer-menu-filiais {
    margin-top: 10px;
}

@media only screen and (min-width: 501px) and (max-width: 850px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        justify-items: start;
        max-width: 600px;
    }
    .logo-footer {
        max-width: 300px;
    }
}

@media only screen and (max-width: 500px) {
    .footer-content {
        grid-template-columns: 1fr;
        justify-items: start;
        max-width: 300px;
    }
    .logo-footer {
        max-width: 300px;
    }
}