footer {
    background-color: #000B20;
    padding: 20px;
    padding-bottom: 10px;
}

footer #footer-content {
    display: grid;
    align-items: center;
    grid-template-columns: auto auto auto;
    height: 100%;
    width: auto;
    max-width: var(--max-width);
    margin: 0 auto;
}

footer #footer-content p,
footer #footer-content a {
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.6;
    margin: 0;
    text-wrap: nowrap;
}

footer #footer-content a:hover {
    color: #dddddd;
}

/* footer #footer-content #mapSection #map, */
footer #footer-content #mapSection > img {
    width: 315px;
    /* height: 200px; */
    margin-right: 20px;
    border-radius: 5px;
    cursor: pointer;
}

/* footer #footer-content > div {
    padding: 0 30px;
    border-right: 1px solid #0a1b3b;
} */

footer #footer-content > div:last-child {
    border-right: none;
    pointer-events: none;
}

#footer-content #mapSection {
    display: flex;
    align-items: center;
}

#footer-content #mapSection p {
    text-align: center;
    font-size: 14px;
    margin: 0;
}

#footer-content #mapSection #libelleAddress {
    display: flex;
    align-items: center;
    font-weight: bold;
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.5);
}

#footer-content #mapSection #libelleAddress i {
    font-size: 30px;
    margin-right: 10px;
    color: rgba(255, 255, 255, 0.5);
}

#footer-content #linkSection {
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: center;
    font-size: 14px;
}

#footer-content #linkSection i {
    color: rgba(255, 255, 255, 0.5);
}

#footer-content #linkSection a:hover i {
    color: #dddddd;
}

#footer-content #linkSection a {
    text-decoration: none;
    width: fit-content;
}

#copyright {
    margin: 0;
    color: rgba(255,255,255, 0.5);
    font-size: 14px;
    text-align: center;
    padding-top: 15px;
}

@media (max-width: 1200px) {
    footer #footer-content {
        grid-template-columns: auto;
    }

    footer #footer-content > div {
        padding: 20px 0;
        border-right: none;
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    footer #footer-content > div:last-child {
        border-bottom: none;
    }

    footer #footer-content p, footer #footer-content a {
        text-align: center;
        margin-bottom: 5px;
    }

    footer #footer-content p:last-child, footer #footer-content a:last-child {
        margin-bottom: 0;
    }
    
    footer #footer-content #linkSection {
        display: grid;
        grid-template-columns: auto auto;
        justify-content: center;
        column-gap: 20px;
    }
    
    footer #footer-content #logosSection img {
        width: 200px;
    }

    footer #footer-content > div:first-child {
        padding-top: 0;
    }
}

@media (max-width: 576px) {
    footer #footer-content #mapSection #map {
        display: none;
    }
    
    footer #footer-content #linkSection {
        grid-template-columns: auto;
    }
}