@import url(reset.css);
@import url(variables.css);

footer {
    position: relative;
    height: auto;
    bottom: 0;
    z-index: 1;
}

#footer {
    display: flex;
    flex-flow: column nowrap;
    align-items: space-around;
    justify-content: flex-start;
    width: 100%;
    height: auto;
    background: linear-gradient(180deg, var(--home-bg-top) 0%, var(--home-bg-bottom) 100%);
    color: var(--lcap-blanc);
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    z-index: 1;
}

section#footerHaut {
    display: flex;
    flex-flow: column nowrap;
    align-items: center;
    justify-content: space-around;
    width: 100%;
    height: auto;
}

.separation {
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
}

.footer {
    display: flex;
    flex-flow: row wrap;
    align-items: flex-start;
    justify-content: space-around;
    width: 96%;
    height: auto;
    padding: 0;
}

.partenaires {
    display: block;
    position: relative;
    width: auto;
    height: auto;
    font-size: 1rem;
    padding: 1%;
    z-index: 1;
}

.partenaires>img {
    width: auto;
    height: 2em;
    padding: 0.25em 0.5em;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.9);
    transition: var(--ease);
}

.partenaires>img:hover {
    transform: scale(1.1);
    z-index: 2;
}

#footer a,
.plan a {
    font-weight: bolder;
    text-decoration: none;
    color: var(--lcap-blanc);
    transition: var(--ease);
}

#footer a:hover,
.plan a:hover {
    color: var(--lcap-jaune);
}

section#footerBas {
    display: flex;
    flex-flow: row wrap;
    align-items: flex-start;
    justify-content: space-around;
    width: 100%;
    height: auto;
    padding: 0;
    margin: 0;
}

.plan {
    display: flex;
    flex-flow: column nowrap;
    align-items: flex-start;
    justify-items: center;
    justify-content: flex-start;
    width: 20%;
    height: auto;
    line-height: 1.35;
    padding: 0 0 1.5rem 0;
    gap: 0.35rem;
}

.plan h4 {
    margin: 0;
}

.copyleft {
    display: block;
    position: relative;
    background-color: var(--home-bg-bottom);
    color: var(--lcap-blanc);
    text-align: center;
    font-weight: bolder;
    font-style: oblique;
    width: 100%;
    height: auto;
    padding: 0 5% 0 5%;
    border-top: 1px solid var(--home-border-subtle);
}

.copyleft-note {
    margin: 0.35rem 0 0.75rem;
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.75rem;
    font-style: italic;
    font-weight: 400;
    line-height: 1.45;
}

@media screen and (max-width: 950px) {
    .plan {
        width: 30%;
        font-size: .8em;
    }
}

@media screen and (max-width: 750px) {
    .plan {
        width: 40%;
    }
}
