.header {
  height: 50%;
  width: 100%;
  z-index: 1;
}
@media (max-width: 768px) {
  .header {
    height: 30%;
  }
}
.header #header-padded-bar {
  position: relative;
  width: 100%;
  height: 100%;
}
.header #header-padded-bar #header-bg-image-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../../images/header.jpeg");
  background-position: 0 50%;
  background-size: cover;
  z-index: 1;
}
.header #header-padded-bar #header-bg-image-container #header-bg-image-filter {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.35);
  z-index: 2;
}
.header #header-padded-bar #header-logo-container {
  position: absolute;
  height: 100%;
  width: 100%;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}
.header #header-padded-bar #header-logo-container #header-logo-image {
  height: 40vh;
  width: auto;
}
@media (max-width: 768px) {
  .header #header-padded-bar #header-logo-container #header-logo-image {
    height: 30vh;
    width: auto;
    max-width: 80%;
  }
}
.header #header-nav-bar {
  position: relative;
  margin: 0;
  padding: 0;
  height: 0px;
  transition: height 0.3s;
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  background-color: var(--color-primary);
  list-style-type: none;
  overflow: hidden;
}
.header #header-nav-bar li {
  width: 25%;
  height: auto;
  text-align: center;
}
.header #header-nav-bar li:hover {
  background-color: var(--color-secondary);
  transition: background-color 0.3s;
}
.header #header-nav-bar li:hover a {
  color: black;
  transition: color 0.3s;
}
.header #header-nav-bar a {
  text-decoration: none;
  color: var(--color-text-inverse);
  font-size: var(--font-size-normal);
  line-height: 60px;
  font-weight: bold;
}

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