footer {
    --footer-bg              : white;
    --footer-logo-max-width  : 110px;
    --footer-logo-min-width  : 90px;
    --footer-link-color      : var(--dark);
    --footer-link-hover-color: #14537ce8;
    --footer-link-bg         : var(--light);
    --footer-ling-hover-bg   : var(--light);
    --footer-link-gap        : 5px;
    --footer-gap             : 0 30px;
    --footer-link-padding    : 0 0;
    --footer-social-gap      : 8px;
    --footer-body-max-width  : 700px;
}
footer li {
    margin-bottom: 0.5rem;
}
footer .logo-footer {
    display        : flex;
    align-items    : center;
    justify-content: center;
}
.logo-footer img {
    width    : 100%;
    max-width: 130px;
    min-width: var(--footer-logo-min-width);
}
footer .social-link {
    display    : flex;
    align-items: center;
    background : none;
    padding    : var(--footer-link-padding);
    gap        : var(--footer-social-gap);
}
footer .social-link a {
    font-size: 20px;
}
footer a {
    color      : var(--footer-link-color);
    transition : all ease 0.2s;
    line-height: 20px;
}
footer .time {
    text-transform: unset;
}
footer .footer-body > * {
    display       : flex;
    flex-direction: column;
    gap           : var(--footer-link-gap);
}
footer .slot > li > a {
    display    : flex;
    padding    : var(--footer-link-padding);
    background : none;
    white-space: nowrap;
    color      : var(--color-1);
}
footer .slot > li > a:hover {
    /* background: var(--footer-link-hover-bg); */
    color: var(--footer-link-hover-color);
}
footer .slot > li > a > i {
    display        : flex;
    justify-content: center;
    width          : 20px;
    padding-right  : 12px;
}
footer .bottom-bar {
    height          : 60px;
    width           : 100%;
    margin-top      : 3rem;
    display         : flex;
    justify-content : center;
    align-items     : center;
    background-color: var(--color-1);
    color           : #fff;
    gap             : 0.5rem;
}
footer .bottom-bar span {
    color: #fff;
}
footer .footer-link-title {
    padding    : 15px 0 7px;
    position   : relative;
    color      : var(--color-1);
    font-weight: 700;
    line-height: 20px;
}
footer .footer-link-title:after {
    content   : "";
    position  : absolute;
    bottom    : 4px;
    left      : 0;
    width     : 100%;
    height    : 1px;
    background: var(--color-1);
}
.social-link li {
    background     : none;
    width          : 30px;
    height         : 30px;
    border-radius  : 50%;
    display        : flex;
    align-items    : center;
    justify-content: center;
    background     : var(--color-1);
}
.social-link li:hover {
    background: var(--color-1-alt);
}
.social-link i {
    font-size: 18px;
    color    : white;
}
.bloc-footer .split-container {
    width      : 40%;
    margin-left: 0 !important;
    text-align : center;
}
.bloc-footer .split-container-fluid {
    width: 60%;
}
/* ------------- GRID ------------- */
footer .footer-body {
    max-width            : var(--footer-body-max-width);
    margin               : 0 auto;
    display              : flex;
    flex-wrap            : wrap;
    display              : grid;
    grid-template-columns: 250px 200px 200px;
    grid-template-rows   : auto;
    gap                  : var(--footer-gap);
    grid-template-areas  : " slot-1 slot-2 slot-3";
}
.nuage-footer {
    position     : absolute;
    content      : url("../../img/nuage-footer.svg");
    z-index      : 1;
    width        : 100%;
    object-fit   : cover;
    margin-bottom: -2px;
    top          : 0;
}
footer.logo-center .footer-body {
    grid-template-columns: 1fr auto 1fr;
    grid-template-rows   : auto auto auto;
    grid-template-areas  : "slot-1 logo slot-3" "slot-2 slot-5 slot-6" "slot-4 slot-5 slot-6";
}
footer .logo-footer {
    grid-area: logo;
}
footer .slot-1 {
    grid-area: slot-1;
}
footer .slot-2 {
    grid-area: slot-2;
}
footer .slot-3 {
    grid-area: slot-3;
}
footer .slot-4 {
    grid-area: slot-4;
}
footer .slot-5 {
    grid-area: slot-5;
}
footer .slot-6 {
    grid-area: slot-6;
}
/* breackpoint */
@media(max-width:1400px) {
    footer {
        padding-top: 7rem;
    }
}
@media(max-width:1200px) {
    footer .footer-body {
        grid-template-columns: 1fr 1fr 1fr;
        grid-template-rows   : auto auto auto;
        grid-template-areas  : "logo logo logo" "slot-1 slot-2 slot-3" "slot-4 slot-5 slot-6";
    }
}
@media(max-width:767px) {
    footer .footer-body,
    footer.logo-center .footer-body {
        grid-template-columns: 1fr 1fr;
        grid-template-rows   : auto auto auto auto;
        grid-template-areas  : "logo logo " "slot-1 slot-2" "slot-3 slot-4" "slot-5 slot-6";
    }
}
@media(max-width:450px) {
    footer .footer-body,
    footer.logo-center .footer-body {
        display       : flex;
        flex-direction: column;
    }
    footer .slot-1 {
        order: 1;
    }
    footer .slot-2 {
        order: 3;
    }
    footer .slot-3 {
        order: 4;
    }
    footer .slot-4 {
        order: 6;
    }
    footer .slot-5 {
        order: 2;
    }
    footer .slot-6 {
        order: 5;
    }
}