.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-top: 40px;
    padding-bottom: 40px;
    padding-left: var(--wp--custom--px);
    padding-right: var(--wp--custom--px);
    border-top: 1px solid #e6eaee;
    gap: 40px;
}

.footer-container>.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.footer-container>.footer-secteur,
.footer-container>.footer-ville {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.footer-contact a {
    text-decoration: none;
    color: #1B1C1C;
}

.footer-contact a:first-child svg {
    max-width: 350px;
    max-height: 130px;
    width: 100%;
    height: auto;
    flex-shrink: 1;

}

.footer-phone {
    display: inline-flex;
    align-items: center;
    gap: 20px;
}

.footer-phone:hover span {
    color: var(--wp--preset--color--dark);
    transition: color .2s ease-in-out;
}

.footer-phone:hover span {
    color: var(--wp--preset--color--blue);
}

.footer-contact .button {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    text-decoration: none;
    width: fit-content;
}

.footer-secteur>p,
.footer-ville>p {
    font-size: var(--wp--preset--font-size--callout);
    font-weight: 400;
    font-family: var(--wp--preset--font-family--inter);
    letter-spacing: 0.9px;
}


.footer-secteur nav ul,
.footer-ville nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: .4rem;
}

.footer-secteur nav ul li {
    white-space: wrap;
}

.footer-secteur nav a,
.footer-ville nav a {
    display: flex;
    align-items: center;
    gap: 20px;
    text-decoration: none;
    color: #1B1C1C;
    transition: color .2s ease;
    white-space: wrap;
}

.footer-secteur nav a:hover,
.footer-ville nav a:hover {
    color: var(--wp--preset--color--blue);
}

.footer-secteur nav a::before,
.footer-ville nav a::before {
    content: "";
    width: 24px;
    min-width: 24px;
    height: 24px;
    background: currentColor;
    transition: transform .2s ease;
    -webkit-mask: url("data:image/svg+xml;utf8,\<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'>\<path d='M17 12H3' stroke='black' stroke-linecap='round' stroke-linejoin='round'/>\<path d='M21.6427 11.7856L18.2116 9.72696C17.6784 9.40703 17 9.79112 17 10.413V13.587C17 14.2089 17.6784 14.593 18.2116 14.273L21.6427 12.2144C21.8045 12.1173 21.8045 11.8827 21.6427 11.7856Z' fill='black'/>\</svg>") center/contain no-repeat;
    mask: url("data:image/svg+xml;utf8,\<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'>\<path d='M17 12H3' stroke='black' stroke-linecap='round' stroke-linejoin='round'/>\<path d='M21.6427 11.7856L18.2116 9.72696C17.6784 9.40703 17 9.79112 17 10.413V13.587C17 14.2089 17.6784 14.593 18.2116 14.273L21.6427 12.2144C21.8045 12.1173 21.8045 11.8827 21.6427 11.7856Z' fill='black'/>\</svg>") center/contain no-repeat;
}

.footer-secteur nav a:hover::before,
.footer-ville nav a:hover::before {
    transform: translateX(3px);
}


@media not all and (min-width: 1025px) {
    .footer-container {
        align-items: flex-start;
        gap: 40px;
        padding-left: 40px;
        padding-right: 40px;
        flex-wrap: wrap;
    }

    .footer-container>div {
        flex: 0 1 calc(50% - 20px);
        max-width: calc(50% - 20px);
    }

    .footer-contact {
        align-items: flex-start;
    }

    .footer-contact a:first-child svg {
        width: 300px;
        height: 100px;
    }

}

@media not all and (min-width: 769px) {
    .footer-container {
        flex-direction: column;
    }

    .footer-container>div {
        max-width: 100%;
    }
}

@media not all and (min-width: 641px) {
    .footeur-items {
        width: 100%;
    }

    .footer-container>.footer-secteur {
        width: 100%;
    }
}