/* ---- GENERAL-CSS: for keeping the place of the scrollbar even if it is absent ---- */
html {
    scrollbar-gutter: stable;
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

/* --- APP-HEADER : STRUCTURE ET NAVIGATION PRINCIPALE --- */
app-header header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 5px;
    background: #fff;
    position: relative;
    min-height: 60px;
}

app-header header a:first-child {
    margin-left: 10px;
}

app-header header a:last-child {
    margin-right: 10px;
}

app-header svg {
    width: 21px;
    height: 21px;
    display: block;
}

@media (max-width: 599px) {
    app-header svg {
        width: 19px;
    }

    app-header .logo {
        width: 19px;
    }
    app-header header a:first-child {
    margin-left: 5px;
}

app-header header a:last-child {
    margin-right: 5px;
}
}

@media (min-width: 768px) {
    app-header header {
        justify-content: space-between;
    }
}

/* --- CONFIGURATION GLOBALE DU FOOTER --- */
app-footer .footer {
    background-color: white;
    color: #665;
    min-height: 150vh;
    padding: 60px 5% 100px 5%;
    display: flex;
    flex-direction: column;
    position: relative;
    box-sizing: border-box;
}

app-footer .footer a {
    color: #665;
    text-decoration: none;
}

app-footer .footer h2 {
    color: #333;
    margin-bottom: 20px;
}

app-footer .footer h4 {
    color: #ff007f;
    margin-bottom: 15px;
    font-weight: 600;
}

app-footer .footer-main-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-top: 150px;
}

@media (min-width: 1024px) {
    app-footer .footer-main-content {
        grid-template-columns: 1fr 1fr;
    }
    app-header header a:first-child {
    margin-left: 25px;
}

app-header header a:last-child {
    margin-right: 25px;
}
}

app-footer .footer .essential-links {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

app-footer .footer .essential-links ul {
    list-style: none;
    padding: 0;
}

app-footer .footer .essential-links li {
    margin-bottom: 10px;
}

app-footer .footer .essential-links div {
    padding: 10px 40px 0 0;
}

app-footer .footer .essential-links ul {
    list-style-type: none;
    padding-left: 0;
    padding-top: 10px;
}

app-footer .footer .essential-links li {
    padding-top: 5px;
    font-size: .75em;
}


app-footer .footer .essential-links a {
    text-decoration: none;
}

@media (min-width: 992px) {
    app-footer .footer .essential-links {
        grid-template-columns: 1fr;
    }
}

/* @media (min-width: 1024px) {
    app-footer .footer-essentials {
        display: flex;
        flex-direction: row-reverse;
        align-items: self-end;
    }
} */

@media(min-width: 1200px) {
    app-footer .footer-main-content .graphic h2 {
        font-size: 3em;
    }
    app-footer .footer-main-content .graphic h2 strong{
        color: #ff007f;
    }
}

app-footer .footer .copyright {
    position: absolute;
    bottom: 50px;
    left: 0;
    right: 0;
    text-align: center;
    color: #ff007f;
    font-weight: 100;
    font-size: 0.85em;
    margin: 0;
}

app-footer .footer .progress img {
    max-width: 100%;
    height: auto;
}

app-footer .footer .container.center-content.footer {
    min-height: 150vh;
    margin: 0 auto;
    padding: 0;
    max-width: 100vw;
    background-color: #222;
    color: #ccc;
}