header {
  position: fixed;
  z-index: 10;
  left: 0;
  top: 0;
  width: 100%;
  background-color: white;
  -webkit-box-shadow: var(--head-shadow);
          box-shadow: var(--head-shadow);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

@media (min-width: 0) {
  header {
    height: 60px;
  }
}

@media (min-width: 1000px) {
  header {
    height: 90px;
  }
}

header.compact {
  height: 60px;
}

header.compact .h-content .h-left .h-logo {
  font-size: 30px;
}

header .h-content {
  max-width: var(--width);
  height: 100%;
  margin: 0 auto;
  padding: 0 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

header .h-content .h-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

header .h-content .h-left .h-logo {
  color: var(--color-blue1);
  font-weight: bold;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

@media (min-width: 0) {
  header .h-content .h-left .h-logo {
    font-size: 30px;
  }
}

@media (min-width: 1000px) {
  header .h-content .h-left .h-logo {
    font-size: 45px;
  }
}

header .h-content .h-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          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: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

header .h-content .h-right nav a {
  display: inline-block;
  color: var(--color-default);
  text-transform: uppercase;
  margin: 0 0 0 30px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  font-weight: 600;
  text-decoration: none;
}

header .h-content .h-right nav a:hover {
  color: var(--color-blue1);
}

header .h-content .h-right .h-mobmenubtn {
  cursor: pointer;
  font-size: 20px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

@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 {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

header .h-content .h-right .h-mobmenubtn span::before {
  font-family: "fa-regular";
  content: "\f0c9";
}

header .h-mobmenu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background-color: white;
  height: 0;
  overflow: hidden;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

header .h-mobmenu.active {
  height: 180px;
  -webkit-box-shadow: var(--head-shadow);
          box-shadow: var(--head-shadow);
}

header .h-mobmenu nav {
  padding: 0 15px;
  max-width: var(--width);
  margin: 0 auto;
}

header .h-mobmenu nav a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 45px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: var(--color-default);
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px var(--color-grey1) solid;
}

header .h-mobmenu nav a:last-child {
  border-bottom: none;
}
/*# sourceMappingURL=head.css.map */