footer {
    background-color: var(--bs-noir-carbone);
    padding-top: 70px;
    padding-bottom: 70px;
    font-size: 20px;
    font-family: 'ClashGrotesk-Regular';
    color: #fff;

    @media (min-width: 720px) { 
        padding-top: 100px;
        padding-bottom: 100px;
    }   

    a {
        text-decoration: none; 

        &:hover {
            text-decoration: none;
            color: var(--bs-vert-mousse);
        }
    }

    span.heading {
        display: inline-block;
        font-size: 1.5rem;
        font-family: 'ClashGrotesk-Medium';
        text-transform: uppercase;
        margin-bottom: 1rem; 
    }

    ul, li {
        list-style: none;
        padding: 0;
        font-size: 1rem;
        line-height: 1.8rem;
    }

    #logo-footer {
        text-align: center;
        
        img {
            max-width: 220px;
        }

        @media (min-width: 768px) {
            text-align: left;

            img {
                max-width: 296px;
            }
        }
    }
}

