.bHome{
    display: block;
    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);
}


#mainWrap{
    display: block;
    position: relative;
    top: 0;
    left: 5%;
    width: 90%;
    padding-bottom:5vw;
    min-height: calc(100vh - 5vw);
    background-color: black;
    color: white;
}


#pageTitle{
    display: block;
    position: sticky;
    z-index: 2;
    top: 0;
    font-family: druk;
    font-size: var(--DrTitle);
    padding: 10px 0 ;
    background-color: black;
    text-align: center;
}

#subtitle{
    display: block;
    position: relative;
    font-size: var(--CenText);
    color: black;
    padding: 10px 0 5px ;
    background-color: white;
    text-align: center;
}



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

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

}

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

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

#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;

}

#getMenu{
    display: block;
    position: fixed;
    bottom: 1vw;
    border-radius: 50%;
    height: 3vw;
    width: 3vw;
    cursor: pointer;
    left: 50%;
    transition: .2s;
    transform: translate(-50%, 0);
}

#getMenu:hover .close span{
    margin: 3px 0;
}
#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);
}


.backUp{
    display: block;
    position: absolute;
    margin-left: 1vw;
    height: calc(var(--CenText)*.7);
    transform-origin: center;
    transform: scaleX(-1);
    left: 0;
}

.backUp img{
    height: 100%;
    width: auto;
}





@media (orientation:portrait){

    .bHome{
        display: none;
    }

    #homeSelection{
        display: none;
    }

    #getMenu span{
        margin: 2px 0;
     
    }

    #mainWrap{
     
        left: 0%;
        width: 100%;
        padding-bottom: 10vh;
    }

    #menuAccess{
        display: block;
        position: fixed;
        bottom: 0;
        height: 10vh;
        width: 100%;
        left: 0;
    }

    #switchLang{
        height: 5vh;
        width: 5vh;
        right: 3%;
    }
    
    #getMenu{
        bottom: 2.5vh;
        height: 5vh;
        width: 5vh;
        left: 50%;
    }

    .backUp{
    
        margin-left: 5vw;
     
    }


}