.footer {
    background-color: var(--footer-color);
    padding-top: 4rem;
    padding-bottom: 0.4rem;
}

.footer__img-logobianco {
    margin: 0 0 1rem -0.55rem ;
}

.footer__description {
    font-size: 0.8rem;
    font-family: var(--second-font);
    font-weight: 300;
}

.footer__contact-container {
    display: flex;
    align-items: center;
    margin: 2rem 0;
    gap: 0.6rem;
}

.footer__title {
    margin-bottom: 1rem;
}

.footer__contact {
    font-size: 1rem;
    font-family: var(--second-font);
    font-weight: 400;
    margin-bottom: 0.5rem;
}

.footer__contact-small {
    font-size: 0.8rem;
    font-weight: 300;
    margin-top: 1rem;
}

.footer__legacy {
    text-align: center;
    font-size: 0.65rem;
    margin-top: 3rem;
}




/* Media query */

@media(min-width: 768px) {
    .footer {
        padding-bottom: 0.5rem;
    }

    .footer__description {
        width: 500px;
    }

    .footer__legacy {
        font-size: 0.9rem;
    }
}

@media(min-width: 1024px) {
    .footer__container {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 20rem;
    }

    .footer__description {
        font-size: 1rem;
        font-weight: 400;
    }

    .footer__contact-small {
        text-align: center;
        margin-bottom: -2.5rem;
    }
}

@media(min-width: 1280px) {
    .footer__container-left {
        margin-left: -6rem;
    }
}