/* ----------------- Hamburger icon ------------------ */

.mobile-nav-toggle { 
  position: relative;
}

#showMenu {
  position: fixed;
  top: 23px;
  right: 0;
  width: 50px;
  height: 50px;
  cursor: pointer;
  z-index: 1001;
  opacity: 1;
}

#showMenu .hambLine1, #showMenu .hambLine2, #showMenu .hambLine3 {
  position: absolute;
  width: 30px;
  height: 6px;
  background-color: var(--theme-blue);
  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: #FFF;
  padding-top: 3rem;
}
#offCanvasRight ul.menu {
  display: block;
  margin-left: 0;
}
#offCanvasRight ul.menu li {
  width: 100%;
  text-align: left;
  border-bottom: 1px solid rgba(120, 117, 129, 0.3)
}
#offCanvasRight ul.menu a {
  color: var(--theme-dark-grey);
  font-family: 'blackstone';
  font-size: 1.2rem;
  text-transform: uppercase;
}
#offCanvasRight ul.menu a:hover {
  text-decoration: none;
}
#offCanvasRight ul.menu a:focus-visible {
  outline: none;
}