/*************************************
* FOOTER
*************************************/
footer.footer .first-row {
    display: flex;
    margin-bottom: 1rem !important;
}
footer.footer .col {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
footer.footer .news {
    align-items: flex-end;
}
footer.footer .news p {
    margin: 0;
    margin-bottom: 10px;
    font-size: 0.9em;
}
footer.footer .news .social-media {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    width: 100%;
}
footer.footer .news .social-media a {
    width: 40px;
    height: 40px;
    margin: 0 5px;
}
footer.footer .news .social-media a img {
    height: 115%;
    border-radius: 5px;
    -webkit-filter: invert(100%);
    filter: invert(100%);
}
footer.footer .contact {
    align-items: center;
}
footer.footer .contact a {
    text-decoration: none;
    color: var(--text-color-white);
    padding: 10px 20px;
    border: 2px solid var(--bg-color-white);
    border-radius: 12px;
    transition: all 0.4s;
}
footer.footer .contact a:hover {
    background-color: var(--bg-color-white);
    color: var(--text-color-black);
}
footer.footer .copyright {
    align-items: flex-start;
}
footer.footer .copyright a {
    width: 100px;
}
footer.footer .copyright a > img {
    width: 100%;
    height: 100%;
}
footer.footer .second-row p {
    margin: 0;
    text-align: center;
    padding: 6px 0;
    font-size: 0.7em;
}

footer.footer .first-row {
    width: 68rem;
    margin: 0 auto;
}


@media all and (max-width: 1250px) {
    footer.footer .first-row {
        width: unset;
        margin: 0 4rem;
    }
}

@media all and (max-width: 1000px) {
    footer.footer .first-row {
        margin: 0 2rem;
    }
}

@media all and (max-width: 800px) {
    footer.footer .first-row {
        margin: 0 1rem;
    }
    footer.footer .first-row {
        flex-direction: column;
    }
    footer.footer .col {
        align-items: center;
        margin-bottom: 2rem;
    }
    footer.footer .contact {
        order: 1;
    }
    footer.footer .copyright {
        order: 2;
    }
    footer.footer .news {
        order: 3;
    }
}

@media all and (max-width: 550px) {
    footer.footer .first-row {
        margin: 0 25px;
    }
}