/* --------------------------------

File#: _2_off-canvas-navigation
Title: Off-Canvas Navigation
Descr: An off-canvas section containing the main navigation
Usage: codyhouse.co/license

-------------------------------- */
.offnav-control {
  --anim-menu-btn-size: 48px;
  --anim-menu-btn-icon-size: 24px;
  --anim-menu-btn-icon-stroke: 2px;
  position: fixed;
  border-radius: 50%;
  transition: transform 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.offnav-control.anim-menu-btn--state-b {
  transform: rotate(180deg);
}
.offnav-control__bg {
  display: block;
  stroke-width: 1.5;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.offnav-control--ready-to-animate circle {
  transition: stroke-dashoffset 0.3s 0s;
}
.anim-menu-btn--state-b.offnav-control circle {
  stroke-dashoffset: 0;
  transition-delay: 0.3s;
}
.offnav__link {
  font-family: "tinefont", sans-serif;
    font-weight: 800;
  text-decoration: none;
  background-size: 0% 100%;
  background-repeat: no-repeat;
  background-image: linear-gradient(transparent 60%, hsla(37, 66%, 48%, 0.2) 60%);
  will-change: background-size;
  transition: background-size 0.3s cubic-bezier(0.645, 0.045, 0.355, 1), color 0.3s;
}
.offnav__link:hover, .offnav__link[aria-current=page], .offnav__link.offnav__link--current {
  /* @apply text-indigo-700; */
  color: #eab308;
  
}
.offnav__link:hover {
  background-size: 100% 100%;
}
.offnav__a11y-close-btn {
  position: absolute;
  top: 0;
  right: 0;
  clip: rect(1px, 1px, 1px, 1px);
  -webkit-clip-path: inset(50%);
  clip-path: inset(50%);
}
.offnav__a11y-close-btn:focus {
  clip: auto;
  -webkit-clip-path: none;
  clip-path: none;
}
@media (min-width: 64rem) {
  .offnav__label::before {
    content: "";
    display: inline-block;
    width: 2em;
    height: 1px;
    background-color: currentColor;
    vertical-align: middle;
    margin-right: 0.5em;
  }


}
/*# sourceMappingURL=2_off-canvas-navigation.css.map */