.header {
  position: fixed;
  top: 0;
  width: 100%;
  display: flex;
  z-index: 1000;
  background: linear-gradient(
    0deg,
    rgb(var(--color-black-rgb) / 0) 0%,
    rgb(var(--color-black-rgb) / 0.9) 100%
  );
  pointer-events: none;
}
.header .header__inner {
  width: 100%;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  position: relative;
}
.header .header-bar {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  width: 100%;
  position: relative;
}
.header .header-bar.header-bar--main {
  height: 6.4rem;
}
.header .header-bar .header-bar__inner {
  display: flex;
  align-self: stretch;
  width: 100%;
  align-items: center;
  padding-right: 0.6rem;
}

/*  */

.header .menu-button {
  pointer-events: auto;
  position: relative;
  justify-content: center;
  align-items: center;
  display: flex;
  align-self: stretch;
  padding: 0 2.4rem;
  transform: rotate(0deg);
  cursor: pointer;
  flex-shrink: 0;
}
.header .menu-button .button__icon {
  position: relative;
  display: block;
}
.header .menu-button .button__icon .menu-icon {
  position: relative;
  width: 2rem;
  height: 2rem;
  display: block;
  transition: var(--duration-slow);
}
.header .menu-button.is-active .button__icon .menu-icon {
  transform: rotate(90deg);
}
.header .menu-button .button__icon .menu-icon__dash {
  display: block;
  position: absolute;
  height: 0.2rem;
  width: 100%;
  background: var(--color-text-light);
  transform: rotate(0deg);
  transition: var(--duration-normal) ease-in-out;
}
.header .menu-button .button__icon .menu-icon__dash.menu-icon__dash--top {
  top: 0.4rem;
}
.header .menu-button .button__icon .menu-icon__dash.menu-icon__dash--bottom {
  bottom: 0.4rem;
}
.header
  .menu-button.is-active
  .button__icon
  .menu-icon__dash.menu-icon__dash--top {
  top: 0.9rem;
  transform: rotate(45deg);
}
.header
  .menu-button.is-active
  .button__icon
  .menu-icon__dash.menu-icon__dash--bottom {
  bottom: 0.9rem;
  transform: rotate(-45deg);
}

/*  */

.header .logo {
  display: flex;
  flex-shrink: 0;
  width: 12rem;
  align-self: stretch;
}
.header .logo__link {
  position: relative;
  align-self: stretch;
  width: 100%;
  display: flex;
  pointer-events: auto;
}
.header .logo__media {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}

/*  */
