.nav-bar-wrapper {
  height: 60px;
  width: 100%;
  z-index: 5;
}
.nav-bar-wrapper #header-nav-bar {
  position: relative;
  margin: 0;
  padding: 0;
  height: 0;
  transition: height 0.3s;
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  background-color: var(--color-primary);
  list-style-type: none;
  overflow: hidden;
}
.nav-bar-wrapper #header-nav-bar.always-visible {
  height: 100% !important;
}
.nav-bar-wrapper #header-nav-bar li {
  width: 25%;
  height: auto;
  text-align: center;
}
.nav-bar-wrapper #header-nav-bar li:hover {
  background-color: var(--color-secondary);
  transition: background-color 0.3s;
}
.nav-bar-wrapper #header-nav-bar li:hover a {
  display: block;
  color: black;
  transition: color 0.3s;
  height: 100%;
  width: 100%;
  position: relative;
}
.nav-bar-wrapper #header-nav-bar a {
  text-decoration: none;
  color: var(--color-text-inverse);
  line-height: 60px;
  font-weight: bold;
  width: 100%;
  height: 100%;
  position: relative;
}

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