/* Base */

/* Primary */

/* Secondary */

/* Containers */

/* Header height */

/* Rich text */

/* Widths */

/* Spacing */

/* Radius */

/* Misc */

.nav-link {
  position: relative;
  transition: color .3s ease-in-out .2s;
  will-change: color, transform, opacity, border-color, outline;
}

@media (prefers-reduced-motion: reduce) {
  .nav-link {
    transition: none;
  }

  .nav-link::before, .nav-link::after {
    transition: none;
  }
}

.nav-link:active {
  transform: scale(.98);
  transition-duration: .1s;
}

.nav-link:active:before {
  height: 0;
}

.nav-link:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 0;
  color: #000;
  background-color: #fefe00;
  z-index: -1;
  transition: background-color .3s ease-in-out, height .2s ease-in-out .2s;
  will-change: background-color, height;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #fff;
  opacity: 0;
  transition: background-color .3s ease-in-out, opacity .3s ease-in-out;
  will-change: background-color, opacity;
}

.nav-link:hover {
  text-decoration: none;
}

.nav-link:hover::after {
  opacity: 1;
}

.nav-link:focus {
  outline: none;
  color: #000;
}

.nav-link:focus:before {
  height: 100%;
}

.nav-link:focus:after {
  width: 100%;
  left: 0;
  background-color: #000;
  opacity: 1;
}

.nav-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  color: #033803;
  font-weight: 600;
  text-decoration: none;
}

.nav-link:not(:focus):after {
  display: none;
}

.nav-link--primary {
  font-size: 1.375rem;
  line-height: 120%;
  will-change: transform, opacity, border-color, outline;
}

@media only screen and (max-width: 1023px) {
  .nav-link--primary {
    padding-bottom: 1.25rem;
    opacity: 0;
    transform: translateX(-50px);
    transition: transform .3s ease-in-out, opacity .4s ease-in-out, border-color .3s ease, outline .3s ease;
  }
}

@media only screen and (min-width: 1024px) {
  .nav-link--primary {
    position: relative;
    padding-top: 6px;
    padding-bottom: 6px;
    font-size: 1.25rem;
    opacity: 1;
  }
}

@media only screen and (min-width: 1024px) {
  .nav-link--primary:hover:after {
    width: 100%;
    left: 0;
  }
}

@media only screen and (min-width: 1024px) {
  .nav-link--primary:after {
    bottom: 0;
    content: "";
    display: block !important;
    height: 2px;
    bottom: 0;
    left: 50%;
    position: absolute;
    background-color: #a7d936;
    transition: background-color .3s ease-in-out, width .3s ease-in-out 0s, left .3s ease-in-out 0s;
    will-change: width, left;
    width: 0;
  }
}

@media only screen and (max-width: 1023px) {
  .is-open .nav-link--primary {
    opacity: 1;
    transform: translateX(0);
  }
}

.nav-link--back {
  justify-content: flex-start;
  gap: .5rem;
  padding-bottom: 0;
  font-size: 1.25rem;
  font-weight: 400;
}

@media only screen and (min-width: 1024px) {
  .nav-link--back {
    display: none;
  }
}

.nav-link--back:active {
  transform: none;
}

.nav-link--heading {
  font-size: 1.375rem;
}

.nav-link--heading:active {
  transform: none;
}

.nav-link--featured {
  display: block;
  color: #033803;
  font-size: 1.375rem;
  font-weight: 600;
  text-decoration: none;
}

@media only screen and (min-width: 1024px) {
  .nav-link--featured {
    font-size: 1.5rem;
  }
}

.nav-link--featured:active {
  transform: none;
}

.nav-link--heading {
  display: block;
  color: #033803;
  font-weight: 600;
  text-decoration: none;
}

.nav-link--sub {
  display: block;
  padding-bottom: .75rem;
  color: #000;
  font-size: 1.25rem;
  font-weight: 500;
}

.nav-link--sub:active {
  transform: none;
}

.nav-link__icon {
  display: inline-block;
  width: 26px;
  height: 26px;
  stroke: #033803;
}

@media only screen and (min-width: 1024px) {
  .nav-link__icon {
    display: none;
  }
}


/*# sourceMappingURL=nav-link.css.map*/