.bHome{
    display: none;
    position: fixed;
    height: 100vh;
    top: 0;
    width: 5%;
    transition: .2s;
}

.bHome:first-of-type{
    left: 0;
}
.bHome:last-of-type{
    right: 0;
}

.bHome:hover{
    backdrop-filter: invert(1);
}

#getMenu{
    display: block;
    position: fixed;
    bottom: 1vw;
    border-radius: 50%;
    height: 3vw;
    width: 3vw;
    z-index: 5;
    background-color: white;
    cursor: pointer;
    border: 1px solid transparent;
    font-size: var(--CenLow);
    left: 50%;
    transition: .2s;
    transform: translate(-50%, 0);
}

.gmClose{
    border: 1px solid black !important;
}

.gmClose:hover{
    background-color: black !important;
}

.gmClose:hover span{
    background-color: white !important;
}
#flexSpan{
    display: flex;
    position: absolute;
    flex-direction: column;
    transform: translate(-50%, -50%);
    top: 50%;
    width: 60%;
    left: 50%;
}
#getMenu span{
    display: block;
    background-color: black;
    width: 100%;
    transition: .2s;
    height: 2px;
    margin: 5px 0;
    border-radius: 150px;
 
}

.close span{
    position: relative;
    left: 50%;
    transform: translate(-50% , 0);
    transform-origin: center;
}
.open span{
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform-origin: center;
    transform: translate(-50%, -50%) rotate(-45deg);

}

.open span:first-of-type{
    transform: translate(-50%, -50%) rotate(45deg);
}



#switchLang{
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    cursor: pointer;
    border-radius: 50%;
    height: 2vw;
    width: 2vw;
    position: fixed;
    line-height: 1;
    font-size: var(--CenLow);
    background-color: white;
    border: 1px solid black;
    transition: .2s;
    top: 1vw;
    left: 50%;
    transform: translate(-50%, 0);
}

#switchLang:hover{
    border: 1px solid white;
    filter: invert(1);
}

#switchLang span{
    position: relative;
    line-height: 1;
    display: block;
    transform: translate(0, 10%);
}


#menuAccessHome{
    display: none;
    position: fixed;
    bottom: 0;
    height: 5vw;
    background-color: white;
    z-index: 4;
    width: 90%;
    left: 5%;
}

#switchLangHome{
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    border-radius: 50%;
    height: 2vw;
    transition: .2s;
    font-size: var(--CenLow);
    width: 2vw;
    cursor: pointer;
    line-height: 1;
    position: absolute;
    background-color: white;
    border: 1px solid black;
    cursor: pointer;
    top: 50%;
    transform: translate(0, -50%);
    right: 3%;

}


#switchLangHome span{
    line-height: 1;
    transform: translate(0, 10%);
    position: relative;
    display: block;
}


#switchLangHome:hover{
    filter: invert(1);
    border: 1px solid white;
}


#toHome{
    display: block;
    position: absolute;
    left: 3%;
    top: 50%;
    width: auto;
    height: 50%;
    transform: translate(0, -50%);
}
#toHome img{
    display: block;
    height: 100%;
    width: auto;

}



@media (orientation:portrait){

  

    .bHome{
        display: none !important;
    }

    #menuAccessHome{
        height: 10vh;
        width: 100%;
        left: 0%;
    }

    #getMenu span{
        margin: 2px 0;
     
    }

    #switchLang{
        height: 5dvh;
        width: 5dvh;
        top: 2.5dvh;
    }
    

    #switchLangHome{
        height: 5dvh;
        width: 5dvh;
        right: 3%;
    }
    
    #getMenu{
        bottom: 2.5dvh;
        height: 5dvh;
        width: 5dvh;
    }


}