header {
  position: fixed;
  z-index: 10;
  left: 0;
  top: 0;
  width: 100%;
  background-color: transparent;
  transition: 0.3s;
}
@media (min-width: 0) {
  header {
    height: 60px;
  }
}
@media (min-width: 1000px) {
  header {
    height: 90px;
  }
}
header.compact {
  height: 60px;
  background-color: var(--color-grey1);
}
header.compact .h-content .h-left .h-logo {
  font-size: 20px;
  opacity: 1;
}
header .h-content {
  max-width: var(--width);
  height: 100%;
  margin: 0 auto;
  padding: 0 15px;
  display: flex;
  justify-content: space-between;
}
header .h-content .h-left {
  display: flex;
  align-items: center;
}
header .h-content .h-left .h-logo {
  color: white;
  text-transform: uppercase;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  cursor: pointer;
  transition: 0.3s;
  opacity: 0;
}
@media (min-width: 0) {
  header .h-content .h-left .h-logo {
    font-size: 20px;
  }
}
@media (min-width: 1000px) {
  header .h-content .h-left .h-logo {
    font-size: 30px;
  }
}
header .h-content .h-right {
  display: flex;
  align-items: center;
}
@media (min-width: 0) {
  header .h-content .h-right nav {
    display: none;
  }
}
@media (min-width: 1000px) {
  header .h-content .h-right nav {
    display: flex;
  }
}
header .h-content .h-right nav a {
  display: inline-block;
  color: white;
  margin: 0 0 0 30px;
  transition: 0.3s;
  text-decoration: none;
}
header .h-content .h-right nav a:hover {
  color: var(--color-green);
}
header .h-content .h-right .h-mobmenubtn {
  cursor: pointer;
  font-size: 20px;
  transition: 0.3s;
  color: white;
}
@media (min-width: 0) {
  header .h-content .h-right .h-mobmenubtn {
    display: block;
  }
}
@media (min-width: 1000px) {
  header .h-content .h-right .h-mobmenubtn {
    display: none;
  }
}
header .h-content .h-right .h-mobmenubtn.active {
  transform: rotate(90deg);
}
header .h-content .h-right .h-mobmenubtn span::before {
  font-family: "fa-solid";
  content: "\f0c9";
}
header .h-mobmenu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background-color: var(--color-grey1-t);
  height: 0;
  overflow: hidden;
  transition: 0.3s;
}
header .h-mobmenu.active {
  height: 180px;
  border-top: 1px white solid;
}
header .h-mobmenu nav {
  padding: 0 15px;
  max-width: var(--width);
  margin: 0 auto;
}
header .h-mobmenu nav a {
  display: flex;
  width: 100%;
  height: 45px;
  align-items: center;
  color: white;
  text-decoration: none;
}
header .h-mobmenu nav a:last-child {
  border-bottom: none;
}/*# sourceMappingURL=head.css.map */