/*CHARTE GRAPHIQUE*/
:root {
    --blanc1: #ffffff;
    --noir2: #101010;
}

body {
    margin: 0;
    position: relative;
}

* {
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth;
}

a {
    text-decoration: none;
}

header,
footer,
footer a,
header a {
    color: white;
}

/* HEADER */

header {
    display: flex;
    margin: 25px 50px 0px 100px;
    font-weight: 100;
    align-items: center;
}

header div{
    font-size: 30px;
}

#LOGO {
    background-image: url("../img/ES_White.svg");
    background-repeat: no-repeat;
    position: absolute;
    top: 0;
    left: 25px;
    height: 50px;
    width: 25px;
}

header nav {
    width: 50%;
    margin-left: 15%;
}

header ul {
    list-style: none;
    display: flex;
    margin: 0;
    justify-content: space-between;
    width: auto;
    font-size: 20px;
}

/* FOOTER */

footer {
    position: absolute;
    bottom: 10px;
    display: flex;
    width: 100%;
}

footer #reseaux {
    display:  flex;
    margin-left: 25px;
}

footer #reseaux a {
    margin: 10px;
}

footer #mentions {
    margin: 0 50px 0 auto;
    display: flex;
    justify-content: space-between;
    font-size: 14px;
}

footer #mentions a {
    margin-left: 75px;
}

.popup {
    position: relative;
    display: inline-block;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* The actual popup */
.popup .popuptext {
    visibility: hidden;
    width: 160px;
    background-color: white;
    text-align: center;
    border-radius: 6px;
    padding: 8px 0;
    position: absolute;
    z-index: 1;
    bottom: 125%;
    left: 50%;
    margin-left: -80px;
    font-size: 16px;
    font-style: italic;
    color: #101010;
}

/* Popup arrow */
.popup .popuptext::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: white transparent transparent transparent;
}


/* Toggle this class - hide and show the popup */
.popup .showpop {
    visibility: visible;
    -webkit-animation: fadeIn 1s;
    animation: fadeIn 1s;
}

/* Add animation (fade in the popup) */
@-webkit-keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}