#menuToggle {
    display: block;
    position: relative;
    top: 43px;
    left: 30px;
    z-index: 1;
    -webkit-user-select: none;
    user-select: none;
    height: 100vh;
}
   
#menuToggle a {
    text-decoration: none;
    color: #232323;
    transition: color 0.3s ease;
    font-weight: 800;
}

#menuToggle a:hover {
    color: white;
}    
    
#menuToggle input {
    display: block;
    width: 52px;
    height: 32px;
    position: absolute;
    top: -7px;
    left: -5px;        
    cursor: pointer;        
    opacity: 0; /* hide this */
    z-index: 2; /* and place it over the hamburger */       
    -webkit-touch-callout: none;
}

#menuToggle span {
    display: block;
    width: 52px;
    height: 4px;
    margin-bottom: 5px;
    position: relative;       
    background: #232323;
    border-radius: 3px;        
    z-index: 1;        
    transform-origin: 4px 0px;        
    transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,0.1),
                background 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
                opacity 0.55s ease;
}

#menuToggle span:first-child {
    transform-origin: 0% 0%;
}

#menuToggle span:nth-last-child(2) {
    transform-origin: 0% 100%;
}

/* 
* Transform all the slices of hamburger
* into a crossmark.
*/
#menuToggle input:checked ~ span {
    opacity: 1;
    transform: rotate(45deg) translate(-5px, -5px) scale(.8);
    background: #232323;
    width: 52px;
}

/*
* But let's hide the middle one.
*/
#menuToggle input:checked ~ span:nth-last-child(3) {
    opacity: 0;
    transform: rotate(0deg) scale(0.2, 0.2);
}

/*
* Ohyeah and the last one should go the other direction
*/
#menuToggle input:checked ~ span:nth-last-child(2) {
    transform: rotate(-45deg) translate(0, -1px) scale(.8);
}

/*
* Make this absolute positioned
* at the top left of the screen
*/
#menu {
    position: relative;
    width: 545px;
    margin: -100px 0 0 -50px;
    padding: 125px 50px 50px 50px;
    border-radius: 0px 0px 50px 0px;
    background: #67fbb6;
    list-style-type: none;
    -webkit-font-smoothing: antialiased;
    /* to stop flickering of text in safari */
            
    transform-origin: 0% 0%;
    transform: translate(-100%, 0);
            
    transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0);
    height: 105%;
    left: -190px;
}

.menu-titulo {
    font-family: Fluro;
    font-size: 1.7rem;
}

.active .linea-blanca {
    display: inline !important;
    width: 70px;
    height: 5px;
    background-color: white !important;
}

.menu-subtitulo {
    font-family: Gotu;
    font-size: 0.9rem;
    padding: 1px 0;
}

.active a {
    font-size: 2.3rem;
    color: white !important;
    font-family: Gotu;
}

#menuToggle input:checked ~ ul {
    transform: none;
    left: 4vw;
}

@media only screen and (max-width: 575px) {
    #menu {
        width: 100vw;
    }
}

@media only screen and (min-width: 576px) {
    #menuToggle input:checked ~ ul {
        transform: none;
        left: -14vw;
    } 

    #menu {
        padding: 125px 20px 50px 200%;
    }
}

@media only screen and (min-width: 768px) {
    #menuToggle input:checked ~ ul {
        transform: none;
        left: -12vw;
    } 
}

@media only screen and (min-width: 1200px) {
    #menuToggle input:checked ~ ul {
        transform: none;
        left: -11vw;
    } 
}

@media only screen and (min-width: 1920px) {
    #menuToggle input:checked ~ ul {
        transform: none;
        left: -10vw;
    } 
}