.toro {
    width: 200px;
    height: auto;
    top: 15%;
    left: 50%;
    transform: translateX(-50%) scale(1,0);
    position: fixed;
    z-index: 1111;
    display: none;
}
.toro.appear {
    animation-delay: 0.3s;
    animation: toroappear 1s forwards;
}
@keyframes toroappear {
    0% {transform: translateX(-50%) scale(1,0);}
    100% {transform: translateX(-50%) scale(1,1);}
}
#triggerMenuWrapper {
position: fixed;
top: 0;
left: 0;
width: 100vw;
height: 100vh;
z-index: 2;
}
.menu-collapsed {
  transition: all 0.25s;
  position: fixed;
  top: 10px;
  left: 9px;
  height: 36px;
  width: 36px;
  z-index: 111;
  cursor: pointer;
  font-weight: bold;
}
.menu-collapsed ul {
  transition: all 0.1s;
  position: fixed;
  left: -9000px;
   margin-top: 50vh;
    margin-left: 0px;
    padding: 0px;
    list-style-type: none;
}
.menu-collapsed ul li {
    margin-left: 0px;
    padding: 0px;
    list-style-type: none;
}
.bar {
  position: fixed;
  left: 20px;
  top: 30px;
  height: 6px;
  width: 30px;
    z-index: 111;
  border-radius: 0px;
  background-color: #fff;
}
.bar:before {
  transition: all 0.25s;
  content: "";
  position: absolute;
  left: 0;
  top: -10px;
  height: 6px;
  width: 30px;
  border-radius: 0px;
  background-color: #fff;
}
.bar:after {
  transition: all 0.25s;
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  height: 6px;
  width: 30px;
  border-radius: 0px;
  background-color: #fff;
}

.menu-expanded {
  transition: all 0.25s;
  text-align: center;
  line-height: 50px;
  height: 100%;
  width: 100%;
  border-radius: 0px;
  top: 0;
  left: 0;
  position: fixed;
  z-index: 111;
  background-color: rgba(0, 0, 0, 0.9);
}
.menu-expanded ul {
  transition: all 0.1s;
  position: relative;
  left: 0;
  z-index: 2;
}
.menu-expanded a {
  transition: all 0.15s;
  text-decoration: none;
  color: #898c8d;
  font-size: 2em;
  padding: 5px;
}
.menu-expanded a:hover {
  transition: all 0.15s;
  text-decoration: underline;
}
.menu-expanded .bar {
  background-color: transparent;
  transition: all 0.25s;
}
.menu-expanded .bar:before {
  transition: all 0.25s;
  content: "";
  transform: rotate(45deg);
  top: 0px;
}
.menu-expanded .bar:after {
  transition: all 0.25s;
  content: "";
  transform: rotate(-45deg);
  top: 0px;
}

@media (min-width: 800px) and (max-height: 800px) {
    
    
    .menu-expanded ul {
        margin-top: 35vh;
    }
    
    .menu-expanded a {
        font-size: 1.5rem;    
    } 
    
    .toro {
        top: 20px;
        width: 150px;
    }    
}

@media (max-width: 800px) {
    
    #triggerMenuWrapper { 
        display: none;
    }
 
.toro {
    width: 150px;
    top: 30px;
}   
    
    .menu-collapsed ul {
        margin-top: 220px;
    }    
    
.menu-expanded a {
    font-size: 1.5rem;
}    
    
}