.active--nav-link {
  text-decoration: underline;
  text-decoration-color: rgb(255, 0, 0);
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
  pointer-events: none;
  border-radius: 0 !important;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

a {
  color: rgb(32, 32, 32);
  text-decoration: none;
}

ul {
  list-style: none;
}

.header--nav {
  border-top: 20px solid rgb(51, 51, 51);
}

.header--container {
  text-align: center;
}

.header--logo {
  padding: 16px 0;
  min-height: 80px;
  border-bottom: 2px solid rgb(51, 51, 51);
}

.logo--text--a {
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-family: BlackOpsOne-Regular;
  font-size: 38px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 2px;
  pointer-events: none;
}

.logo--sub-headline {
  line-height: 1;
  margin-top: 0px;
  font-size: 13px;
  color: rgb(51, 51, 51);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 400;
  padding-bottom: 0;
}

.nav--container {
  padding: 14px 0;
  min-height: 50px;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: 12px;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.nav-links--a {
  border-bottom: 2px solid rgb(255, 255, 255);
  padding-bottom: 2px;
  transition: all 0.5s ease-in-out;
}
.nav-links--a:hover {
  border-bottom: 2px solid red;
  padding-bottom: 2px;
  color: rgba(51, 51, 51, 0.9) !important;
}

@media screen and (min-width: 768px) {
  .header--logo {
    padding: 24px 0 !important;
    min-height: 100px !important;
  }
  .logo--text--a {
    font-size: 42px !important;
  }
  .logo--sub-headline {
    letter-spacing: 2px !important;
  }
  .nav--container {
    padding: 16px 0 !important;
    min-height: 40px !important;
  }
  .nav-links {
    gap: 2px !important;
  }
  .nav-links--a {
    border-bottom: 2px solid rgba(255, 255, 255, 0);
    background-color: rgb(255, 255, 255);
    padding: 4px 16px 2px 16px;
    margin: 0 1px;
    transition: all 0.5s ease-in-out;
  }
  .nav-links--a:hover {
    border-bottom: 2px solid rgba(255, 0, 0, 0);
    background-color: rgb(255, 0, 0);
    color: rgb(255, 255, 255) !important;
    padding: 4px 16px 2px 16px;
    border-radius: 4px;
  }
}/*# sourceMappingURL=header.css.map */