@keyframes growWide {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.header {
  width: 100%;
  height: 100px;
  display: flex;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
}
.header::before {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  content: "";
  background: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 40%);
  opacity: 0;
  transition: 0.4s;
}
@media screen and (max-width: 900px) {
  .header::before {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 20%);
  }
}
.header.scrolled::before {
  opacity: 1;
}
.header-inside {
  position: relative;
  display: flex;
  justify-content: center;
}
@media screen and (min-width: 900px) {
  .header-inside {
    flex-direction: row;
    gap: 30px;
  }
}
@media screen and (max-width: 900px) {
  .header-inside {
    flex-wrap: wrap;
    gap: 0 30px;
  }
}
.header-link {
  position: relative;
  padding: 10px;
  font-family: "GT America Expanded", -apple-system, BlinkMacSystemFont, Roboto, Helvetica Neue, sans-serif;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #999999;
  transition: 0.4s;
}
@media screen and (max-width: 900px) {
  .header-link {
    padding: 8px 10px;
  }
}
.header-link:before {
  width: 0;
  height: 2px;
  display: block;
  content: "";
  background: #CCFF5E;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.header-link.active, .header-link:hover {
  color: #FFFFFF;
}
.header-link.active:before {
  animation: growWide 0.4s ease-in forwards;
  animation-delay: 0.1s;
}

/*# sourceMappingURL=header.css.map */
