/* HEADER */
#header {
    height: 120px;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 0;
    z-index: 99;
    background-color: white;
}

.header-logo {
    width: 35%;
}

.header-logo img {
    width: 120px;
    padding-left: 8%;
    cursor: pointer;
}

.header-nav__responsive {
    display: none;
}

.header-nav {
    width: 65%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-evenly;
}

.header__bouton {
    color: #004687;
    font-weight: bold;
    font-size: 18px;
    cursor: pointer;
}

.header-nav .header__bouton:hover {
    text-decoration: underline;
}

.active {
    text-decoration: underline;
}

#menu {
    display: none;
    width: 100%;
    height: 100%;
    min-height: 100vh;
}

.menu-listing {
    width: 100%;
    height: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #004687;
    font-weight: bold;
    font-size: 24px;
}

.menu-listing span {
    margin: 12px 0;
    cursor: pointer;
}

/* MEDIA QUERIES */
@media (max-width: 480px) {

    #header {
        height: 80px;
    }

    .header-nav__responsive {
        width: 65%;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: flex-end;
    }

    .header-nav {
        display: none;
    }

    .header-logo img {
        width: 80px;
    }

    .header__bouton {
        padding-right: 24px;
    }
}

/* MEDIA QUERIES */
@media (min-width: 481px) and (max-width: 630px) {
    .header-nav__responsive {
        width: 65%;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: flex-end;
    }

    .header-nav {
        display: none;
    }
}

@media (min-width: 481px) and (max-width: 1080px) {
    .header__bouton {
        font-size: 14px;
    }

    .header-logo {
        width: 15%;
    }

    .header-logo img {
        width: 80px;
    }

    .header-nav {
        width: 85%;
    }
}

/* MEDIA QUERIES */
@media (min-width: 1260px) and (max-width: 1350px) {
    .header__bouton {
        font-size: 14px;
    }
}

/* MEDIA QUERIES */
@media (min-width: 1350px) and (max-width: 1700px) {
    .header__bouton {
        font-size: 16px;
    }
}