*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  font-family: "chaparral-pro", Georgia, serif;
  background: #fff;
  color: #747477;
  font-size: 1.3rem;
  font-weight: 300;
  line-height: 1.8;
}
a {
  color: #90afc4;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}
#wrap-all {
  position: relative;
}
#main-wrap {
  position: relative;
}
#main-content-container {
  position: relative;
}
#logo {
  position: absolute;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  width: 160px;
}
#logo a {
  display: block;
}
#logo img,
#logo svg {
  width: 100%;
  height: auto;
}
#slider-container {
  position: relative;
  width: 100%;
  height: 50vw;
  min-height: 400px;
  overflow: hidden;
  background: #1a2a35;
}
#film {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
#film video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.mobile-slider {
  display: none;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.mobile-slider .slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}
.mobile-slider .slide.active {
  opacity: 1;
}
#main-content-wrap-outer {
  background: #fff;
}
#main-content-wrap {
  max-width: 1000px;
  margin: 0 auto;
  padding: 70px 30px 60px;
}
.ce-textpic.ce-center {
  text-align: center;
}
.ce-bodytext h1 {
  font-family: "chaparral-pro", Georgia, serif;
  font-size: clamp(2.2rem, 6vw, 3.2rem);
  font-weight: 700;
  color: #90afc4;
  margin-bottom: 28px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.ce-bodytext p {
  color: #747477;
  margin-bottom: 16px;
}
#footer-wrap {
  padding: 30px 0 20px;
  text-align: center;
  min-height: 20rem;
  background: url("../assets/images/Welle-invers.svg") no-repeat;
  background-size: cover;
  background-position: top center;
}
@media (max-width: 800px) {
  #film {
    display: none;
  }
  .mobile-slider {
    display: block;
  }
  #logo {
    width: 20vw;
    min-width: 120px;
    top: 20px;
  }
  #main-content-wrap {
    padding: 50px 20px 50px;
  }
}
