#menu{
    display: block;
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    z-index: 3;
    left: 0;
    overflow-y: scroll;
    transition: .2s, filter .4s;
    background-color: var(--ndColor);
    color: var(--mainColor);
}

.offMenu{
    opacity: 0;
    pointer-events: none;
    filter: blur(.5rem);
}

.onMenu{
    opacity: 1;
    filter: blur(0);
    pointer-events: all;
}

#backMenu{
    display: block;
    position: absolute;
    top: 0;
    transition: .2s;
    font-size: var(--fontInter);
    left: 0;
    margin:1vw;
    text-align: justify;
    text-align-last: justify;
    text-transform: uppercase;
    font-family: trouble;
}

#getMenu span{
    display: block;
    width: 100%;
    height: 18%;
    transition: .2s;
    border-radius: 10px;
    transform-origin: center;

}

#getMenu:hover span{
    filter: blur(1px);
}

.getMenuOff span{
    background-color: var(--ndColor);
    position: relative;
    left: 50%;
    transform: translate(-50%, 0);
}

.getMenuOn span{
    background-color: var(--mainColor);
    position: relative;
    top: 50%;
    left: 50%;
    
}

.getMenuOn span:nth-of-type(1){
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
}

.getMenuOn span:nth-of-type(3){
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
}

.getMenuOn span:nth-of-type(2){
    display: none !important;
    position: absolute;
}

.menuLong{
    width: 90vw;
}
.menuShort{
    width: 25vw;
}


#generalMenu{
    font-size: 1.7vw;
    display: block;
    position: relative;
    line-height: 1.2;
    margin-top: 1vw;
    margin-left: 54.5vw;
}

#generalMenu a{
    display: block;
    cursor: pointer;
    transition: .1s;
}

#generalMenu a:hover{
    margin-left: .5vw;
}

#numeroMenu{
    display: block;
    padding-top: 10vh;
    padding-bottom: 10vh;
    position: relative;
}



.accesNumero div{
    vertical-align: top;
    display: inline-block;
}

.accesNumero{
    display: inline-block;
    padding: 0 0 4vw 0;
}

.accesNumero:hover .titleNum{
    filter: blur(2px);
}

.accesSom{
    display: inline-block;
    text-align: right;
    cursor: pointer;
    transform-origin: center;
    transition: .2s;
    width: 14vw;
    vertical-align: middle;
    margin-top: 1.5vw;
    font-family: adelphe;
    font-size: 2.5vw;
}

.accesSom:hover{
    filter: blur(1px);
}


.sommaireNum{
    display: none;
    margin: 0 11vw;
    margin-bottom: 4vw;
    margin-right: 47vw;
}

.sommaireNum h2{
    font-family: trouble;
    text-transform: uppercase;
    font-size: calc(var(--textS)* 1.3);
}

.sommaireNum h2::after{
    display: block;
    content: " ";
    white-space: pre;
}

.sommaireNum a{
    display: block;
    transition: .2s;
    font-size: var(--textS);
}

.sommaireNum a:hover{
   filter: blur(1px);
   margin-left: .5vw;
}

.sommaireNum a span{
    display: block;
}

.sommaireNum a:after{
    display: block;
    white-space: pre;
    content: " ";    
}

.sommaireNum a:last-of-type::after{
    display: none;
    white-space: pre;
    content: " ";    
}

.num{
    width: 10vw;
    margin-left: 1vw;
    font-size: 1.7vw;
}
.titleNum{
    font-size: 2.5vw;
    font-family: trouble;
    text-align: center;
    transition: .2s;
    text-align-last: center;
    text-transform: uppercase;
    width: 38vw;
    margin: 0;
}
.coordDate{
    font-size: 1.4vw;
    margin-left: 5vw;
    width: 30vw;
}

.coordDate div{
    display: block;
}

.coordDate div:nth-of-type(2){
    font-family: trouble;
}

.coordDate div:nth-of-type(2)::before{
    content: " ";
    display: block;
    white-space: pre;
}



@media (orientation:portrait){

    .accesNumero div:nth-of-type(3){
        display: none;
    }

    .accesNumero{
        width: 100vw;
        padding-bottom: calc(var(--smallMarge)*2);
    }

    #backMenu{
        display: none;
    }


    #generalMenu{
        font-size: var(--fontTitleLess);
        display: block;
        position: relative;
        line-height: 1.1;
        margin-top: 3vw;
        margin-left: 3vw;
    }
    
    #generalMenu a{
        display: block;
        cursor: pointer;
        transition: .1s;
    }

    #numeroMenu{
        padding-top: 5vh;
    }

    .num{
        width: 100%;
        margin-left: 0;
        text-align: center;
        font-size: 4.5vw;
    }
    .titleNum{
        font-size: 4.5vw;
        text-align: center;
        margin: 0 15vw;
        text-align-last: center;
        width: 70%;
       
    }

    .accesSom{
        display: none;
    }

    
    
 

    
}