footer {
    --footer-bg              : var(--light);
    --footer-logo-max-width  : 110px;
    --footer-logo-min-width  : 90px;
    --footer-link-color      : var(--dark);
    --footer-link-hover-color: #ffffffb5;
    --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      : 10px;
    --footer-body-max-width  : 700px;
}
footer {
    background-size: cover;
}
footer .logo-footer-custom img {
    width        : 300px;
    margin-bottom: 1rem;
}
.bloc-logo {
    width          : 25%;
    display        : flex;
    justify-content: center;
    align-items    : center;
}
footer li {
    margin-bottom: 0.5rem;
}
footer .logo-footer {
    display        : flex;
    align-items    : center;
    justify-content: center;
}
footer .logo-footer img {
    width    : 100%;
    max-width: var(--footer-logo-max-width);
    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;
    width          : 29px;
    height         : 29px;
    display        : block;
    border         : 1px solid var(--color-2);
    border-radius  : 50%;
    display        : flex;
    align-items    : center;
    justify-content: center;
    padding        : 15px;
}
footer .social-link a:hover {
    background: #EDE7D2;
}
footer a {
    color      : var(--footer-link-color);
    transition : all ease 0.2s;
    line-height: 1rem;
}
body .page-wrapper {
    overflow-x: hidden;
}
footer .time {
    text-transform: unset;
}
footer .address span {
    font-size: 14px;
}
footer a:hover {
    color: var(--footer-link-hover-color);
}
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      : #fff;
    font-size  : 14px;
}
footer .slot > li > a:hover {
    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;
    font-weight: 400;
    position   : relative;
    color      : #fff;
    font-size  : 17px;
}
footer .footer-link-title:after {
    content   : "";
    position  : absolute;
    bottom    : 4px;
    left      : 0;
    width     : 100%;
    height    : 1px;
    background: #fff;
}
.social-link i {
    font-size: 20px;
    color    : var(--color-2);
}
/* ------------- GRID ------------- */
footer .footer-body {
    /* max-width            : var(--footer-body-max-width); */
    margin               : 0;
    display              : flex;
    flex-wrap            : wrap;
    display              : grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    grid-template-rows   : auto;
    gap                  : var(--footer-gap);
    grid-template-areas  : " slot-1 slot-2 slot-3 slot-4 slot-5";
    padding              : 1rem 1rem 1rem 2rem;
    background           : var(--color-1-alt);
    border-radius        : 30px;
    width                : 75%;
}
.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: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;
    }
}