footer {
    --footer-bg              : var(--color-1);
    --footer-logo-max-width  : 220px;
    --footer-logo-min-width  : 100px;
    --footer-link-color      : white;
    --footer-link-hover-color: #ffffffc7;
    --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-container {
    background : var(--footer-bg);
    margin-left: 5rem;
}
.bloc-bg-2 {
    width     : 829px;
    height    : 50px;
    background: var(--color-2);
    max-width : 100%;
}
footer li p {
    color: white;
}
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 {
    display        : flex;
    justify-content: center;
    align-items    : center;
    font-size      : 16px;
    padding        : 8px;
    color          : white!important;
    border-radius  : 50%;
    width          : 30px;
    height         : 30px;
    background     : var(--color-1);
    border         : 1px solid white;
}
footer .social-link a:hover {
    background-color: white;
    border          : 1px solid var(--color-1);
}
footer .social-link a:hover i {
    color: var(--color-1);
}
footer #tarteaucitronManager,
footer a {
    color      : var(--footer-link-color);
    transition : all ease 0.2s;
    /* text-transform: uppercase; */
    line-height: 1rem;
}
footer .time {
    text-transform: unset;
}
footer .address span {
    line-height: 20px;
    /* font-size: 14px; */
}
footer #tarteaucitronManager:hover,
footer a:hover {
    cursor: pointer;
    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      : var(--footer-link-color) !important;
}
footer .slot > li > a:hover {
    background: var(--footer-link-hover-bg);
    color     : var(--footer-link-hover-color) !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);
}
footer .footer-link-title span {
    position      : relative;
    padding-bottom: 10px;
    font-weight   : 600;
}
footer .footer-link-title span:after {
    content   : "";
    position  : absolute;
    bottom    : 4px;
    left      : 0;
    width     : 100%;
    height    : 1px;
    background: var(--footer-link-color);
}
/* ------------- GRID ------------- */
.footer-container {
    display              : grid;
    grid-template-columns: 1.5fr 250px 200px 226px 1fr;
    grid-template-rows   : auto auto;
    gap                  : 20px 30px;
    grid-auto-flow       : row;
    grid-template-areas  : "logo slot-1 slot-2 slot-3 slot-4";
    overflow             : hidden;
}
.footer-container .logo .subtitle .lettrine {
    font-weight: 500;
}
.footer-container .logo .subtitle .lettrine {
    font-size: 20px;
    color    : var(--color-3);
}
.footer-container .logo span {
    color      : white;
    text-align : center;
    font-weight: 300;
    margin-top : 1rem;
}
.footer-container {
    padding: 2.5rem;
}
footer ul.slot {
    padding-top: 1.5rem;
}
.footer-container .logo {
    grid-area  : logo;
    padding-top: 0;
}
.footer-container .slot-1 {
    grid-area: slot-1;
}
.footer-container .slot-2 {
    grid-area: slot-2;
}
.footer-container .slot-3 {
    grid-area: slot-3;
}
.footer-container .slot-4 {
    grid-area: slot-4;
}
/* breackpoint */
@media(max-width:1399px) {
    .footer-container {
        grid-template-columns: 1fr 180px 173px 205px 1fr;
        gap                  : 30px;
    }
}
@media(max-width:1199px) {
    .footer-container {
        grid-template-columns: 1fr 240px 1fr;
        grid-template-areas  : "logo slot-1 slot-2 " "logo slot-3 slot-4";
        gap                  : 20px;
    }
    .footer-container .logo {
        display        : flex;
        align-items    : center;
        justify-content: center;
    }
    .footer-container {
        margin-left: 3rem;
    }
}
@media(max-width:991px) {
    .footer-container {
        gap: 40px;
    }
}
@media(max-width:768px) {
    .footer-container {
        grid-template-rows   : auto auto;
        grid-template-areas  : "logo logo" "slot-1 slot-2" "slot-3 slot-4";
        grid-template-columns: 250px 250px;
        gap                  : 0 50px;
        justify-content      : center;
    }
    .footer-container .slot-1 {
        padding: 1.5rem 0 0 2rem;
    }
    .footer-container .slot-2 {
        padding: 1.5rem 2rem 0 0;
    }
    .footer-container .slot-3 {
        padding: 0 0 2rem 2rem;
    }
    .footer-container .slot-4 {
        padding: 0 2rem 0 0;
    }
}
@media(max-width:575px) {
    .footer-container .slot-1 {
        padding: 1rem 2rem 0;
    }
    .footer-container .slot-2 {
        padding: 0 2rem;
    }
    .footer-container .slot-3 {
        padding: 0 0 0 2rem;
    }
    .footer-container .slot-4 {
        padding: 0 2rem 2rem;
    }
    .footer-container {
        display       : flex;
        flex-direction: column;
    }
    .footer-container {
        margin-left: 0;
        padding    : 2rem 0;
    }
    .bloc-bg-2 {
        height: 15px;
    }
}