.Header {
  position: sticky;
  top: 0;
  width: 100%;
  height: 6.25rem;
  z-index: 1;
  display: flex;
  align-items: center;
  transition: var(--animationBase);
}

.Header.Header--homepage {
  position: fixed;
  --colorHeaderLink: #fff;
  --colorHeaderLinkUnderline: #fff;
  --colorHeaderBackground: var(--colorBrandSecondary);
  background: linear-gradient(to bottom, var(--colorHeaderGradient), transparent);
}

.Header.Header--homepage .Header-logo {
  filter: brightness(0) invert(1);
}

.Header.is-up {
  transform: translateY(-100%);
}

.Header.is-sticked {
  background: var(--colorHeaderBackground);
}

.Header:not(.is-up).is-sticked {
  box-shadow: 0 0 0.5rem var(--colorShadeBg);
}

.Header-frame {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--colorHeaderLink);
}

.Header-hmb {
  display: flex;
  flex-direction: column;
  font-size: .5rem;
  cursor: pointer;
}

.Header-hmb svg {
  width: 1.6rem;
  height: auto;
}

@media (min-width: 80.01rem) {
  .Header-hmb {
    display: none;
  }
}

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