/* MENUPLUS */

.menuplus {
    width: calc(var(--unite-base)*2);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    list-style-type: none;
    box-sizing: border-box;
    /* background-color: rgba(255, 255, 255, 0.2);
    padding-top: 10px;
    padding-bottom: 10px; */
    /* background-image: url('../img/fond_galerie.svg');
    background-repeat: no-repeat; */
}

.menuplus .galerie {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.menuplus li {
    width: 100%;
    height: var(--unite-base);
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    box-sizing: border-box;
    cursor: pointer;
    list-style-type: none;
    /* color: var(--menuplus-color); */
}


/* .menuplus a:hover {
    padding-left: 30%;
    transition: padding var(--vitesse-transitions);
} */

.menuplus li div {
    padding: 5px;
    font-family: 'kanitregular', sans-serif;
    font-size: 24px;
}


.menuplus a div:nth-child(1) {
    width: 10%;
}

.menuplus li div:nth-child(2) {
    width: 90%;
}

.menuplus li div:nth-child(3), .menuplus li div:nth-child(4) {
    display: none;
}

hr {
    width: 100%;
    height: 1px;
    border: none;
    /* color: var(--menuplus-color); */
    color: #333333;
    background-color: #333333;
}


/* COULEURS */

section:nth-child(2) .menuplus li {
    color: var(--couleur-page1);
}

section:nth-child(3) .menuplus li {
    color: var(--couleur-page2);
}

section:nth-child(4) .menuplus li {
    color: var(--couleur-page3);
}

section:nth-child(5) .menuplus li {
    color: var(--couleur-page4);
}

/* section:nth-child(2) .menuplus hr {
    color: #7c72dc;
    background-color: #7c72dc;
} */




/* RESPONSIVE */
/* ------------------------------------ */

/* IPAD Portrait */
@media screen and (max-width: 768px) and (orientation: Portrait)
{

    .menuplus {
        height: calc(var(--unite-base)*3);
        width: 100%;
        display: flex;
        flex-direction: row;
    }

    .semighost {
        display: none;
    }

}