footer {
    background-color: #f0f0f0;
    display: flex;
    flex-direction: column;
    align-items: center;

    margin-top: 50px;
    padding-top: 25px;
}

/*This class serve when we aren't in the home page*/
.footer-not-home {
    background-color: unset;
    display: flex;
    flex-direction: column;
    align-items: center;

    margin-top: 0;
    padding-top: 0;
}

.footer-first, .footer-second, .footer-third {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 4%;
    width: 100%;

    color: white;
}

.footer-first {
    justify-content: space-between;
    flex-wrap: wrap;
}

.footer-first div {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 20px;
    width: 100vw;
}

.footer-first div:nth-child(1) img {
    width: 98px;
}

.footer-first div:nth-child(2) img {
    width: 157px;
}

.footer-first div:nth-child(3) img {
    width: 108px;
}

.footer-first div:nth-child(4) img {
    width: 116px;
}

.footer-first p {
    padding-top: 15px;
    color: #346fb5;
}

.footer-second {
    background-color: #346fb5;
}

.footer-second div {
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-second img {
    padding-right: 10px;
    min-width: 52px;
}

.footer-second p {
    font-size: 13px;
}

.footer-third {
    background-color: #222222;
    font-size: 14px;
}


/* ====== BREAKPOINT  ====== */
@media (min-width: 650px) {
    .footer-first div {
        width: 40vw;
    }
}

@media (min-width: 880px) {

    footer {
        padding-top: 5px;
    }

    .footer-first div {
        padding-bottom: 0;
        width: unset;
    }

    .footer-first div:nth-child(1) img {
        width: 46px;
    }

    .footer-first div:nth-child(2) img {
        width: 88px;
    }

    .footer-first div:nth-child(3) img {
        width: 70px;
    }

    .footer-first div:nth-child(4) img {
        width: 81px;
    }

    .footer-first {
        width: 880px;
    }

    .footer-second div {
        width: 880px;
        padding-left: 4%;
        padding-right: 4%;
    }
}

@media (min-width: 1276px) {
    .footer-first {
        width: 1038px;
        padding-left: 0;
        padding-right: 0;
    }

    .footer-second div {
        width: 1038px;
        padding-left: 0;
        padding-right: 0;
    }
}