.footer {
    border-top: 1px solid var(--grey);
    flex-direction: column;
    gap: 80px;
    display: flex;
    padding: 0;
    width: 100%;
    max-width: var(--content-width);
    margin-bottom: 40px;

    .footer-level1 {
        margin-top: 50px;
        display: flex;   
        width: 100%;
        max-width: var(--content-width);
        flex-direction: row;
        align-items: center;
        gap: 40px;
        justify-content: space-around;
    }
    .footer-level1--description p{
        text-align: center;
        font-family: var(--font-family-montserrat);
        color: var(--blue);
        font-size: 1.25rem;
        font-style: normal;
        font-weight: 700;
        line-height: 55px; /* 220% */
        text-transform: uppercase;
    }

    .footer-level1--socials {
        display: flex;
        flex-direction: row;
        gap: 20px;
    }
    .footer-level1--socials-logo {

        height: 85px;
        width: auto;
    }

    .footer-level2 {
        width: 100%;
        max-width: var(--content-width);
        list-style: none;
        display: flex;
        flex-direction: column;
        gap: 20px;
        justify-content: center;
        padding: 0 10px;
    }
    .footer-level2 li {
        font-family: var(--font-family-montserrat);
        color: var(--blue);
        font-size: 1rem;
        font-style: normal;
        font-weight: 700;
        line-height: 1rem; /* 100% */
        letter-spacing: -0.206px;
        text-transform: uppercase;
        text-align: center;
    }
    
}
@media screen and (max-width: 768px) { /* 768px */
    .footer {
        gap: 40px;
        .footer-level1,
        .footer-level2 {
            flex-direction: column;
        }
        .footer-level1--socials-logo {
            height: 70px;
        }
        .footer-level2 li {
            font-size: 1.1875rem; /* 19px */
            line-height: 1rem; /* 100% */
        }
    }
}

@media screen and (min-width: 769px) { /* 768px */
    .footer {
        .footer-level1 {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            > picture > img {
                margin: 0 auto;
            } 
        }
        .footer-level2 {
            flex-direction: row;
        }
        .footer-level1--socials-logo {
            height: 85px;
        }
    }
}


@media screen and (min-width: 1024px) { /* 1024px */
     .footer {
        .footer-level1 {
            margin-top: 65px;
        }
        .footer-level2 {
            gap: 45px;
        }
    } 
}
