footer {
    background: var(--cs-color-footer);
    color: var(--prisme-color-font-footer);
    text-align: center;
    /* border-top: 1px solid var(--prisme-color-font-footer); */
}

.footer-bloc-border {
    border-bottom: 1px solid var(--cs-color-footer-border);
}

.footer-title {
    padding: 5rem 0;
}

.footer-columns {
    padding-bottom: 3rem;
    display: flex;
    align-items: center;
}

.footer-column {
    flex: 0 0 calc(100% / 3);
    position: relative;
    padding: 0 8rem;
}

.footer-column:after {
    position: absolute;
    content: '';
    width: 1px;
    height: 5rem;
    background: var(--cs-color-footer-border);
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
}

.footer-column:last-child:after {
    display: none;
}

#menu-pied-de-page {
    list-style: none;
    padding: 0;
    margin: 0;
    /*text-align:left;*/
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    color: var(--prisme-color-font-footer);
}

#menu-pied-de-page a {
    color: var(--prisme-color-font-footer);
    text-decoration: none;
}

#menu-pied-de-page a:hover {
    text-decoration: underline;
}

.footer-paiements {
    padding: 2rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.footer-social-title {
    margin-bottom: 1rem;
}

.footer-social-list {
    color: var(--prisme-color-font-footer);
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
}

.footer-social-list a {
    padding: 1rem;
}

.footer-social-list i {
    color: var(--prisme-color-font-footer);
}

.footer-mentions {
    padding: 2rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

#menu-mentions a {
    color: var(--prisme-color-font-footer);
    text-decoration: none;
}

#menu-mentions a:hover {
    text-decoration: underline;
}

.footer-contact-subtitle {
    margin-bottom: 1rem;
}

#menu-mentions {
    list-style: none;
    margin: 0;
    padding: 0;
    /*display: flex;*/
}

.footer-responsive-alignement-g,
.footer-responsive-alignement-d {
    text-align: center;
}


@media screen and (max-width: 992px) {
    .footer-columns {
        flex-direction: column;
        gap: 3rem;
    }

    .footer-column {
        flex: 0 0 100%;
        text-align: center;
        padding: 0;
    }

    .footer-column:after {
        display: none;
    }

    .menu-pied-de-page-container li {
        text-align: center;
    }

    .footer-paiements {
        flex-direction: column;
    }


}

@media (min-width: 992px) {
    .footer-responsive-alignement-g {
        text-align: right;
    }

    .footer-responsive-alignement-d {
        text-align: left;
    }
}