.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.8) 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;
  padding-left: 2rem;
}
@media (width >= 1200px) {
  .header .header-bar.header-bar--main {
    height: 8rem;
    padding-left: 2.8rem;
  }
}
.header .header-bar .header-bar__inner {
  display: flex;
  align-self: stretch;
  width: 100%;
  align-items: center;
  justify-content: space-between;
}
@media (width >= 1200px) {
  .header .header-bar .header-bar__inner {
    justify-content: flex-start;
  }
}

/*  */

.header .logo {
  display: flex;
  flex-shrink: 0;
  width: 7.4rem;
  align-self: stretch;
}
@media (width >= 1200px) {
  .header .logo {
    width: 6rem;
  }
}
.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;
}

/*  */

.header .nav-menu {
  display: none;
}

/*  */

.header .button {
  cursor: pointer;
  display: flex;
  pointer-events: auto;
  align-items: center;
  padding: 0 2.4rem;
  gap: 1.2rem;
  flex-shrink: 0;
  align-self: stretch;
}
.header .button.menu-button {
}
.header .button .button__text {
  display: none;
}
.header .button .button__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.header .button .button__icon .icon {
  color: var(--color-text-light);
  width: 2.2rem;
  height: 2.2rem;
}
.header .button.menu-button .button__icon .menu-icon {
  position: relative;
  width: 2rem;
  height: 2rem;
  display: flex;
  flex-shrink: 0;
}
.header .button.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);
}
.header .button.menu-button .button__icon .menu-icon__dash--top {
  top: 0.4rem;
}
.header .button.menu-button .button__icon .menu-icon__dash--bottom {
  bottom: 0.4rem;
}
.header .button.menu-button.is-active .button__icon .menu-icon__dash--top {
  top: 0.9rem;
  transform: rotate(45deg);
}
.header .button.menu-button.is-active .button__icon .menu-icon__dash--bottom {
  bottom: 0.9rem;
  transform: rotate(-45deg);
}

.header .button.consultation-button {
  background-color: rgb(var(--color-primary-rgb) / 0.8);
  -webkit-backdrop-filter: blur(0.6rem);
  backdrop-filter: blur(0.6rem);
  border-radius: 20rem;
  align-self: center;
  height: 4.8rem;
  padding-right: 1.8rem;
}
.header .button.consultation-button .button__text {
  display: block;
  color: var(--color-on-primary);
}
.header .button.consultation-button .button__label {
  font-size: var(--font-size-xs);
  display: block;
  line-height: var(--line-height-snug);
  text-align: left;
}
.header .button.consultation-button .button__icon .icon {
  color: var(--color-on-primary);
  width: 2.2rem;
  height: 2.2rem;
  opacity: 0.7;
}
