/* ----------------- Hamburger icon ------------------ */

.mobile-nav-toggle { 
  position: relative;
}

#showMenu {
    position: fixed;
    top: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    cursor: pointer;
    z-index: 1001;
    opacity: 1;
}

#showMenu .hambLine1, #showMenu .hambLine2, #showMenu .hambLine3 {
    position: absolute;
    width: 50px;
    height: 5px;
    background-color: var(--black);
    transition: all 0.4s;
}
#showMenu .hambLine1 {
    top: 10px;
    transform-origin: left center;
}
#showMenu .hambLine2 {
    top: 20px;
}
#showMenu .hambLine3 {
    top: 30px;
    transform-origin: left center;
}

#showMenu.open .hambLine1 {
    transform: rotate(45deg) translate(0px, -10px);
    background-color: #fff;
}
.open .hambLine2 {
    opacity: 0;
}
#showMenu.open .hambLine3 {
    transform: rotate(-45deg) translate(0px, 10px);
    background-color: #fff;
}


/* ----------------- Mobile Nav ---------------- */
#offCanvasRight {
    background-color: var(--black);
    padding-top: 120px;
}
#offCanvasRight ul.menu {
  display: block;
  margin-left: 0;
}
#offCanvasRight ul.menu li {
  width: 100%;
  text-align: center;
}
#offCanvasRight ul.menu a {
  display: block;
  color: #fff;
  font-size: 16px;
  text-transform: uppercase;
  padding: 10px;
}