footer {
    --footer-bg              : white;
    --footer-logo-max-width  : 170px;
    --footer-logo-min-width  : 100px;
    --footer-link-color      : black;
    --footer-link-hover-color: #4d4d4dc7;
    --footer-link-bg         : var(--light);
    --footer-ling-hover-bg   : var(--light);
    --footer-link-gap        : 5px;
    --footer-gap             : 0 30px;
    --footer-link-padding    : 0.2rem 0;
    --footer-social-gap      : 10px;
    --footer-body-max-width  : 700px;
}
.footer {
    background: linear-gradient(90deg, #59866A 0%, #6CA080 29.73%, #7DDFA3 59.42%, #B8E7CA 84.95%);
}
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 li {
    margin-bottom: 0;
}
footer .social-link a {
    display        : flex;
    justify-content: center;
    align-items    : center;
    font-size      : 16px;
    padding        : 8px;
    color          : var(--dark);
    border-radius  : 50%;
    width          : 30px;
    height         : 30px;
    background     : white;
    border         : 1px solid var(--dark);
}
footer .social-link a:hover {
    background-color: var(--bg-light);
    color           : var(--dark);
}
footer #tarteaucitronManager,
footer a {
    color          : var(--footer-link-color);
    transition     : all ease 0.2s;
    /* text-transform: uppercase; */
    line-height    : 1rem;
    text-decoration: underline !important;
}
footer a.btn {
    text-decoration: none !important;
}
footer #tarteaucitronManager:hover,
footer a:hover {
    cursor         : pointer;
    color          : var(--footer-link-hover-color);
    text-decoration: none !important;
}
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(--footer-link-color) !important;
    text-decoration: underline !important;
    transition     : 0.2s all;
}
footer .slot > li > a:hover {
    background     : var(--footer-link-hover-bg);
    text-decoration: none!important;
}
footer .slot > li > a > i {
    display        : flex;
    justify-content: center;
    width          : 20px;
    padding-right  : 12px;
}
footer .footer-link-title {
    padding      : 15px 0;
    font-family  : var(--title-font);
    position     : relative;
    /* text-transform: uppercase; */
    color        : var(--footer-link-color);
    font-weight  : 700;
    margin-bottom: 0;
}
footer .footer-link-title span {
    position      : relative;
    padding-bottom: 10px;
}
/* ------------- GRID ------------- */
.footer-container {
    display              : grid;
    grid-template-columns: 1fr 2fr 0.7fr;
    grid-template-rows   : 1fr;
    gap                  : 40px;
    grid-auto-flow       : row;
    grid-template-areas  : "slot-1 slot-2 slot-3";
    overflow             : hidden;
}
.footer-container .logo {
    grid-area      : logo;
    padding        : 1rem;
    border-right   : 1px solid black;
    display        : flex;
    align-items    : center;
    justify-content: center;
}
.footer-container h2 {
    font-weight: 700;
    font-size  : 35px;
}
.footer-container p {
    font-size  : 20px;
    font-weight: 400;
    line-height: 1.2;
}
.footer-container .logo span {
    color      : white;
    text-align : center;
    font-weight: 300;
    margin-top : 1rem;
}
.footer-container .slot-1 {
    grid-area  : slot-1;
    display    : flex;
    align-items: end;
}
.footer-container .slot-2 {
    grid-area: slot-2;
    padding  : 2rem 0;
}
.footer-container .slot-3 {
    grid-area: slot-3;
    padding  : 2rem 0;
}
.footer-container .slot-4 {
    grid-area: slot-4;
    padding  : 2rem 0;
}
@media(max-width:1599px) {
    .footer-container {
        gap: 20px 50px;
    }
}
/* @media(max-width:1299px) {
    footer .logo-footer img {
        max-width: 265px;
    }
    .footer-container .slot-1 {
        padding: 2rem 0;
    }
    .footer-container {
        gap: 20px 40px;
    }
    .footer-container {
        grid-template-columns: 200px 0.2fr 0.15fr 0.12fr 0.5fr;
    }
    .deco .split:after {
        width: 40px;
    }
} */
/* @media(max-width:1199px) {
    .footer-container {
        grid-template-columns: 200px 1fr 1fr;
        grid-template-rows   : 1fr 1fr;
        grid-template-areas  : "logo slot-1 slot-2 " "logo slot-3 slot-4 ";
    }
    .footer-container .slot {
        padding: 1rem 0 0;
    }
    .footer-container .slot-2 {
        padding: 1rem 0 0;
    }
    .footer-container .slot-3 {
        padding: 0 0 1rem;
    }
    .footer-container .slot-4 {
        padding: 0 0 1rem;
    }
    .footer-container {
        gap: 0 40px;
    }
} */
@media(max-width:991px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
        grid-template-rows   : auto auto;
        grid-template-areas  : "slot-1 slot-3" "slot-2 slot-2";
        gap                  : 0;
    }
    .footer-container .slot-1 {
        padding: 1rem 0 0 2rem;
    }
    .footer-container .slot-2 {
        padding: 1rem 2rem;
    }
    .footer-container .slot-3 {
        padding: 0 0 2rem 2rem;
    }
}
@media(max-width:375px) {
    .footer-container {
        grid-template-columns: 1fr;
        grid-template-rows   : auto auto auto;
        grid-template-areas  : "slot-3" "slot-2" "slot-1";
    }
    .footer-container .slot-1 {
        padding: 0 2rem;
    }
    .footer-container .slot-2 {
        padding: 0 2rem 1rem;
    }
    .footer-container .slot-3 {
        padding: 0 2rem;
    }
    .footer-container .slot-4 {
        padding: 0 2rem 2rem;
    }
}