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

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

#showMenu {
    position: fixed;
    top: 50px;
    right: 30px;
    width: 50px;
    height: 50px;
    cursor: pointer;
    z-index: 1001;
    opacity: 1;
}
@media screen and (max-width: 480px) {
    #showMenu {
        right: 10px;
    }
}

#showMenu .hambLine1, #showMenu .hambLine2, #showMenu .hambLine3 {
    position: absolute;
    width: 40px;
    height: 6px;
    background-color: var(--theme-secondary-color);
    transition: all 0.4s;
}
#showMenu .hambLine1 {
    top: 10px;
    transform-origin: left center;
}
#showMenu .hambLine2 {
    top: 22px;
}
#showMenu .hambLine3 {
    top: 34px;
    transform-origin: left center;
}

.is-open-right #showMenu .hambLine1 {
    transform: rotate(45deg) translate(0px, -10px);
    background-color: var(--theme-secondary-color);
}
.is-open-right .hambLine2 {
    opacity: 0;
}
.is-open-right #showMenu .hambLine3 {
    transform: rotate(-45deg) translate(0px, 10px);
    background-color: var(--theme-secondary-color);
}

/* ----------------- Mobile Nav ---------------- */
.off-canvas.position-right ul.menu {
  display: block;
  margin-left: 0;
  margin-top: 6rem;
}
.off-canvas.position-right ul.menu li {
  width: 100%;
  text-align: center;
}
.off-canvas.position-right ul.menu a {
    font-size: 1.2rem;
    font-weight: bold;
}
.off-canvas.position-right ul.menu a.is-active {
  border-bottom: none;
  color: var(--theme-tertiary-color);
}