footer {
    --footer-bg              : var(--color-1);
    --footer-logo-max-width  : 259px;
    --footer-logo-min-width  : 90px;
    --footer-link-color      : var(--dark);
    --footer-link-hover-color: white;
    --footer-link-bg         : var(--bg-light);
    --footer-ling-hover-bg   : var(--bg-light);
    --footer-link-gap        : 5px;
    --footer-gap             : 0 30px;
    --footer-link-padding    : 0 0;
    --footer-social-gap      : 8px;
    --footer-body-max-width  : 700px;
}
/* .btn-ciel {
    background-color: var(--color-1-alt);
    color: #fff;
}
.btn-ciel:hover {
    background-color: var(--color-1-alt);
    color: #fff;
} */
footer {
    background     : var(--footer-bg);
    padding-top    : 10rem;
    background-size: cover;
    clip-path      : polygon(0 15%, 101% 0, 100% 100%, 0% 100%);
}
footer li,
footer li a {
    margin-bottom: 0.8rem;
    color        : white !important;
    font-weight  : 300;
    line-height  : 1.2;
}
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 {
    background: none;
    padding   : var(--footer-link-padding);
    gap       : var(--footer-social-gap);
}
footer .social-link a {
    font-size     : var(--16px);
    color         : white;
    text-transform: uppercase;
}
footer .social-link i {
    font-size: var(--18px);
}
footer a {
    color      : var(--footer-link-color);
    transition : all ease 0.2s;
    /* text-transform: uppercase; */
    /* line-height: 1rem; */
    font-weight: 300;
}
footer .time {
    text-transform: unset;
}
footer .address span {
    font-size: var(--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;
}
footer .slot > li > a:hover {
    background: var(--footer-link-hover-bg);
}
footer .slot > li > a > i {
    display        : flex;
    justify-content: center;
    width          : 28px;
    padding-right  : 12px;
    margin-top     : 2px;
}
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   : bold;
    position      : relative;
    text-transform: uppercase;
    color         : #fff;
}
footer .footer-link-title:after {
    content   : "";
    position  : absolute;
    bottom    : 4px;
    left      : 0;
    width     : 100%;
    height    : 1px;
    background: #fff;
}
.social-link i {
    font-size: var(--25px);
    color    : #fff;
}
.social-link li {
    margin-right: 0.5rem;
}
/* ------------- GRID ------------- */
footer .container {
    display              : grid;
    grid-template-columns: 259px 1fr 1fr 1fr 1fr 1fr;
    grid-template-rows   : 1fr;
    grid-auto-columns    : 1fr;
    gap                  : 20px 20px;
    grid-auto-flow       : row dense;
    grid-template-areas  : "logo slot-1 slot-2 slot-3 slot-4 slot-5";
}
.logo {
    grid-area: logo;
    margin   : auto 0;
}
.slot-1 {
    grid-area: slot-1;
}
.slot-1 li a {
    text-transform: uppercase;
}
.slot-2 {
    grid-area: slot-2;
}
.slot-3 {
    grid-area: slot-3;
}
.slot-3 li a {
    /* text-transform: uppercase; */
}
.slot-4 {
    grid-area: slot-4;
}
.slot-5 {
    grid-area: slot-5;
}
@media screen and (max-width:1400px) {
    footer .container {
        display              : grid;
        grid-template-columns: 259px 1fr 1fr;
        grid-template-rows   : auto auto;
        grid-template-areas  : "logo slot-1 slot-2 " "slot-3 slot-4 slot-5";
        gap                  : 20px 40px;
    }
}
@media screen and (max-width:992px) {
    footer .container {
        grid-template-columns: 1fr 1fr;
        grid-template-rows   : auto auto auto;
        grid-template-areas  : "logo logo" "slot-1 slot-2" "slot-3 slot-4" "slot-5 slot-5";
    }
}
@media screen and (max-width:768px) {
    footer .container {
        grid-template-columns: 1fr;
        grid-template-rows   : auto;
        grid-template-areas  : "logo" "slot-1" "slot-2" "slot-3" "slot-4" "slot-5";
    }
    footer {
        padding-top: 6rem;
        clip-path  : polygon(0 6%, 100% 0, 100% 100%, 0% 100%);
    }
}