footer {
    padding: 40px 90px;
    background: #3B629C;
    display: flex;
    gap: 60px;
    justify-content: center;
}

.links {
    gap: 6px;
}

.links h4 {
    line-height: normal;
}

.footer-links {
    display: flex;
    gap: 40px;
}

footer span {
    color: white;
    font-size: 12px;
}

footer a{
    color: var(--Blanc-fond, #FFF);
    font-size: 12px;
    font-weight: 400;
    text-decoration-line: underline;
}

footer h4{
    color: var(--Blanc-fond, #FFF);
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 17px;
}

footer img{
    height: 115px;
    border-right: 1px solid white;
    padding-right: 50px;
}

footer .linkedin {
    display: flex;
    align-items: flex-end;
}

footer .linkedin a{
    display: flex;
    align-items: flex-end;
    height: 32px;
    width: 32px;
}

footer .linkedin img {
    border-right: none;
    width: 100%;
    height: 100%;
    padding: 0;
}

footer .footer-contact {
    display: flex;
    justify-content: center;
    flex-direction: column;
    font-size: 12px;
}

footer .footer-contact > div {
    display: flex;
    color: white;
    align-items: center;
    margin-bottom: 10px;
}

footer .footer-contact > div address {
    display: flex;
    flex-direction: column;
}

footer .footer-contact > div address span {
    margin: 3px 0px;
    text-align: start;
}


footer .footer-contact svg {
    margin-right: 10px;
}

@media (max-width: 1024px) {
    footer img {
        border: none;
        padding-right: 0px;
    }

    .footer-links {
        flex-direction: column;
        padding-left: 60px;
        border-left: 1px solid white;
    }
}

@media (max-width: 540px) {
    footer {
        flex-direction: column;
        gap: 50px;
        align-items: center;
    }
    
    .footer-links {
        flex-direction: column;
        border-left: none;
        padding: 0;
    }

    .linkedin {
        justify-content: center;
    }

    footer > div{
        text-align: center;
    }

    footer img{
        height: 115px;
        border: none;
        padding-right: 0px;
    }
}