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

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

.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);
}
