/* MENU  */
.box {
    width: 50px;
    height: 40px;
    position: relative;
    cursor: pointer;
    margin: 10px;
}
    
.line {
    width: 50px;
    height: 5px;
    background: #ffffff;
    position: absolute;
    opacity: 1;
    left: 50%;
    transform: translate(-50%,0);
    transition: all 0.4s;

    &:nth-child(1) {
      top: 0;
    }
    &:nth-child(2),
    &:nth-child(3){
      top: 50%;
      transform: translate(-50%,-50%);
      
    }
    &:nth-child(4) {
      bottom: 0;
    }
}
    
.is-hidden {
    opacity: 0 !important;
}

.is-rotated {
    transform: translate(-50%,-50%) rotate(225deg) !important;
}

.is-rotatedInv {
    transform: translate(-50%,-50%) rotate(-225deg) !important;
}
    
.menu-bar {
    display: flex;
    justify-content: flex-end;
    padding: 0px;
    background-color: #ffffff;
    top: 0;
    width: 100dvw;
    z-index: 6;
}
    
h1 {
    color: white;
    font-size: 1.8rem;
    margin: 10px;
}
    
#main-logo {
    height: 30vh;
    display: flex;
    margin: auto;
}

#menu-container {
    display: none;
    transition: 0.5s;
    overflow-x: hidden;
    position: fixed;
    left: 0;
    z-index: 1;
    height: 100dvh;
    background-color: #004586;
    color: white;
    padding-top: 10dvh;
  }
  
  #menu-container.show {
    width: 100dvw;
    transition: 0.5s;
    color: white;
    display: block;
  }
  
  #menu-container.show ul li a {
    display: block;
    opacity: 1;
    color: white;
    width: 100%;
    line-height: 3rem;
  }

  #menu-container ul li {
    list-style: none;
    font-size: 2.5rem;
    padding: 2rem;
    transition: 0.5s;
    display: block;
  }
  
  #menu-container ul li.show {
    display: block;
    transition: 0.5s;
  }
  
  @media (orientation: landscape) {
    #menu-container {
      padding-top: 0;
    }
  
    #menu-container ul li {
      font-size: 1.2rem;
      padding: .5rem;
      line-height: 1rem;
    }
  
    #menu-container ul li a {
      font-size: 1.2rem;
      padding: .5rem;
      line-height: 1rem !important;
    }
  }