.footer {
    background-color: var(--color-footer-background-opacity);
}

.footer .content {
    padding: 20px 0;
}

.footer_block {
    display: flex;
    flex-direction: column;
    text-align: start;
}

.footer_block span {
    color: var(--color-footer-text);
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2px;
}

.footer_links {
    display: flex;
    width: 100%;
}

.footer_links article {
    text-align: start;
}

.footer_links article h1 {
    color: var(--color-footer-text);
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
}

.footer_links article ul {
    margin: 20px 0;
}

.footer_links article ul li {
    margin: 10px 0;
}

.footer_links article ul li a,
.footer_links article ul li span {
    color: var(--color-footer-text);
    font-size: .8rem;
}

.footer_links article ul li a:hover {
    color: var(--color-footer-text-opacity);
}

.footer_links article ul li a:hover i {
    color: var(--color-footer-text-opacity);
}

.footer_links article ul li a i {
    font-size: 2rem;
    vertical-align: middle;
}

.footer_copy {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-footer-background);
    color: var(--color-footer-text);
    width: 100%;
}

.footer_copy p {
    text-align: center;
    font-size: .75rem;
    color: var(--color-footer-text);
    margin: 0;
}


/*
768px
*/
@media (max-width: 48em) {
    .footer_links {
        flex-wrap: wrap;
    }

    .footer_links article {
        padding: 0;
    }
}


/*
544px and 768px
*/
@media (min-width: 34em) and (max-width: 48em) {
    .footer_links article {
        width: 100%;
        margin: 15px 0 15px 0 !important;
    }

    .footer_contact_whatsapp {
        font-size: 1.3rem;
    }

    .footer_about_social a i {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }
}