header {
  position: relative;
  padding: 48px 0;
  min-height: 40.255vw;
  max-height: 760px;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}
header .header__top {
  display: flex;
  flex-direction: row-reverse;
}
header picture.header-bild__mobile {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 0;
  translate: 0px 0.55vw;
  z-index: -1;
}
header picture.header-bild__mobile img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
header .site-logo {
  display: flex;
  max-width: 20.573vw;
  max-height: 146px;
  background-color: #fff;
  width: 100%;
  height: 100%;
}
header .site-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 768px) {
  header {
    padding-bottom: 0;
    padding-top: 26px;
    min-height: 106.67vw;
    display: flex;
  }
  header .header__top {
    flex-direction: column;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
  }
  header .site-logo {
    max-width: 76vw;
    max-height: 28vw;
  }
  header picture.header-bild__mobile {
    position: static;
    width: 100%;
    height: 66vw;
    translate: none;
  }
  header picture.header-bild__mobile img {
    object-fit: cover;
    object-position: 10% center;
  }
}
