#nav-bar {
  position: sticky;
  display: flex;
  align-items: center;
  height: 70px;
  width: 100%;
  padding: 7px 20px 7px 14px;
  top: -1px;
  z-index: 100000000000000000000000000000000000000000000000;
  font-size: 23px;
  background-color: black;
  border: 1px solid lime;
  border-left: 0;
  border-right: 0;
  box-sizing: border-box;
  box-shadow: 0 4px 5px rgba(0, 0, 0, 0.5);
  overflow: hidden;
}
@media (max-width: 720px) {
  #nav-bar {
    justify-content: center;
    padding-right: 14px;
  }
}

#nav-heading-cont {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 11px;
}
@media (max-width: 720px) {
  #nav-heading-cont {
    display: none;
  }
}

#logo {
  height: 45px;
  border-radius: 50%;
}

#nav-heading {
  font-size: 25px;
}

#nav-item-list {
  display: flex;
  gap: 1.7em;
  margin: 0;
  padding: 0;
  margin-left: auto;
  list-style-type: none;
  width: -moz-fit-content;
  width: fit-content;
}
@media (max-width: 720px) {
  #nav-item-list {
    width: calc(-moz-fit-content + 60%);
    width: calc(fit-content + 60%);
    gap: 8vw;
    margin-left: 0;
  }
}
@media (max-width: 350px) {
  #nav-item-list {
    gap: 7.5vw;
  }
}

.nav-item {
  font-size: 25px;
  transition: text-shadow 330ms ease-in-out;
}
.nav-item::before {
  content: ">";
  position: absolute;
  margin-top: -1px;
  margin-left: -14px;
  transform: scaleX(0);
  transition: transform 250ms ease-in-out;
  transform-origin: 100% 50%;
}
.nav-item:hover::before {
  transform: scaleX(1);
  transform-origin: 0% 50%;
}
.nav-item::after {
  content: "";
  display: block;
  border-bottom: 2px dashed lime;
  box-sizing: border-box;
  transform: scaleX(0);
  transition: transform 250ms ease-in-out;
  transform-origin: 100% 50%;
}
.nav-item:hover {
  text-shadow: 0 0 5px lime, 0 0 10px lime, 0 0 15px lime, 0 0 20px lime;
  animation: glow-nav-bar 0.7s ease-in-out 330ms infinite alternate;
}
@media (max-width: 573px) {
  .nav-item {
    font-size: clamp(8.33px, 8.33px + 2.8vw, 25px);
  }
}
@media (max-width: 350px) {
  .nav-item {
    font-size: clamp(8.33px, 8.33px + 2.5vw, 25px);
  }
}

.nav-item--active::after {
  transform: scaleX(1);
  transform-origin: 0% 50%;
}/*# sourceMappingURL=nav-bar.css.map */