.header {
  background: var(--color-white);
  height: auto;
  padding: .5rem 0;
  transition: all .3s ease;
  width: 100%;
  z-index: 100;
}

.header__content,
.header__top {
  align-items: center;
  display: flex;
  padding-left: 6%;
  padding-right: 6%;
}

.header__top {
  justify-content: flex-end;
  line-height: 1.5rem;
}

.header__top,
.header__top a {
  font-size: .7rem;
}

.header--sticky {
  position: fixed;
}

.header--transparent {
  background: transparent;
  transition: all .3s ease;
}

.header--transparent .navigation__item .link,
.header--transparent .navigation__foldout-button__text {
  color: var(--color-white);
}

.header--transparent .navigation__foldout-button .navigation__foldout-button__lines,
.header--transparent .navigation__foldout-button .navigation__foldout-button__lines:before,
.header--transparent .navigation__foldout-button .navigation__foldout-button__lines:after,
.header--transparent .navigation__foldout-button:hover .navigation__foldout-button__lines,
.header--transparent .navigation__foldout-button:hover .navigation__foldout-button__lines:before,
.header--transparent .navigation__foldout-button:hover .navigation__foldout-button__lines:after {
  background-color: var(--color-white);
}

.header--logo-centered .header__content {
  display: grid;
  grid-gap: 2rem;
  grid-template-columns: 1fr auto 1fr;
}

.header--logo-centered .navigation-primary--left .navigation__list--inline {
  justify-content: flex-end;
}

.header--logo-centered .branding__logo {
  display: none;
}

.header--logo-centered .branding--centered .branding__logo {
  display: revert;
}

.header--logo-centered.header--content-outside  .navigation-primary--left .navigation__list--inline {
  justify-content: flex-start;
}

.header--logo-centered.header--content-outside  .navigation-primary--right .navigation__list--inline {
  justify-content: flex-end;
}
