@font-face {
  font-family: "PP Mori";
  font-display: block;
  font-weight: 400;
  src: url(../fonts/ppmori-regular.otf) format("opentype"), url(../fonts/ppmori-regular.woff2) format("woff2"), url(../fonts/ppmori-regular.woff) format("woff"), url(../fonts/ppmori-regular.ttf) format("truetype");
}
@font-face {
  font-family: "PP Mori";
  font-display: block;
  font-weight: 600;
  src: url(../fonts/ppmori-semibold.otf) format("opentype"), url(../fonts/ppmori-semibold.woff2) format("woff2"), url(../fonts/ppmori-semibold.woff) format("woff"), url(../fonts/ppmori-semibold.ttf) format("truetype");
}
:root {
  --grid-col-amount: 12;
  --grid-col-width: 6.4vw;
  --grid-col-gap: 1vw;
  --grid-row-gap: 1vw;
  --grid-offset: -6.1vw;
  --container-width: calc(calc(var(--grid-col-amount) * var(--grid-col-width)) + calc((calc(var(--grid-col-amount) - 1)) * var(--grid-col-gap)));
}
@media (max-width: 1099px) {
  :root {
    --grid-col-amount: 8;
    --grid-col-width: 7.6vw;
    --grid-col-gap: 20px;
    --grid-row-gap: 20px;
    --grid-offset: calc(calc(100vw - var(--container-width)) / -2);
  }
}
@media (max-width: 799px) {
  :root {
    --grid-col-amount: 4;
    --grid-col-width: 19.4vw;
    --grid-col-gap: 10px;
    --grid-row-gap: 10px;
    --grid-offset: calc(calc(100vw - var(--container-width)) / -2);
  }
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
a {
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease-in-out;
}
a:hover {
  opacity: 0.7;
}
.btn {
  display: inline-block;
  overflow: hidden;
  position: relative;
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
  border: 2px solid #324938;
  border-radius: 60px;
  text-align: center;
  padding: 12px 0 8px;
  width: 198px;
  color: #324938;
  cursor: pointer;
  z-index: 1;
  transition: color 0.2s ease-in-out 0.3s;
}
.btn:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  background: #D9FFE5;
  width: 0%;
  z-index: -1;
  transition: 0.5s ease-in-out;
}
.btn:after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  background: #fff;
  width: 100%;
  z-index: -2;
}
@media (hover: hover) {
  .btn {
    opacity: 1 !important;
  }
  .btn:hover:not(:disabled) {
    color: #324938;
  }
  .btn:hover:not(:disabled):before {
    width: 100%;
  }
}
.grid {
  display: grid;
  margin: 0 auto;
  overflow-x: visible;
  column-gap: var(--grid-col-gap);
  row-gap: var(--grid-row-gap);
  width: var(--container-width);
  grid-template-columns: [col1-start] var(--grid-col-width) [col1-end col2-start] var(--grid-col-width) [col2-end col3-start] var(--grid-col-width) [col3-end col4-start] var(--grid-col-width) [col4-end col5-start] var(--grid-col-width) [col5-end col6-start] var(--grid-col-width) [col6-end col7-start] var(--grid-col-width) [col7-end col8-start] var(--grid-col-width) [col8-end col9-start] var(--grid-col-width) [col9-end col10-start] var(--grid-col-width) [col10-end col11-start] var(--grid-col-width) [col11-end col12-start] var(--grid-col-width) [col12-end];
}
@media (max-width: 1099px) {
  .grid {
    grid-template-columns: [col1-start] var(--grid-col-width) [col1-end col2-start] var(--grid-col-width) [col2-end col3-start] var(--grid-col-width) [col3-end col4-start] var(--grid-col-width) [col4-end col5-start] var(--grid-col-width) [col5-end col6-start] var(--grid-col-width) [col6-end col7-start] var(--grid-col-width) [col7-end col8-start] var(--grid-col-width) [col8-end];
  }
}
@media (max-width: 799px) {
  .grid {
    grid-template-columns: [col1-start] var(--grid-col-width) [col1-end col2-start] var(--grid-col-width) [col2-end col3-start] var(--grid-col-width) [col3-end col4-start] var(--grid-col-width) [col4-end];
  }
}
.header-headline {
  font-size: 100px;
  font-weight: 600;
  line-height: 110px;
}
@media (max-width: 1099px) {
  .header-headline {
    font-size: 70px;
    font-weight: 600;
    line-height: 80px;
  }
}
@media (max-width: 799px) {
  .header-headline {
    font-size: 55px;
    font-weight: 600;
    line-height: 60px;
  }
}
.headline {
  font-size: 75px;
  font-weight: 600;
  line-height: 80px;
}
@media (max-width: 1099px) {
  .headline {
    font-size: 70px;
    font-weight: 600;
    line-height: 80px;
  }
}
@media (max-width: 799px) {
  .headline {
    font-size: 38px;
    font-weight: 600;
    line-height: 48px;
  }
}
.headline-small {
  font-size: 55px;
  font-weight: 600;
  line-height: 65px;
}
@media (max-width: 1099px) {
  .headline-small {
    font-size: 38px;
    font-weight: 600;
    line-height: 48px;
  }
}
@keyframes headerPlayButton {
  0% {
    transform: scale(1), translate(-50%, -50%);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}
html body {
  font-family: "PP Mori", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
}
@media (max-width: 1099px) {
  html body {
    font-size: 15px;
  }
}
html body nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 152px;
  z-index: 10;
  transition: 0.3s ease-in-out;
}
html body nav::before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 100%;
  width: 100%;
  transition: 0.3s ease-in-out;
  opacity: 0;
  background-image: url(/assets/images/background.svg);
  background-size: 100% 100%;
}
html body nav .grid {
  padding: 45px 0;
  transition: 0.3s ease-in-out;
}
html body nav .grid .logo-container {
  grid-column: col1-start / col12-end;
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}
html body nav .grid .logo-container .logo {
  width: 100%;
  display: flex;
  justify-content: center;
}
html body nav .grid .logo-container .logo svg {
  max-width: 80%;
}
html body nav .grid .logo-container .logo:first-child {
  justify-content: flex-start;
}
html body nav .grid .logo-container .logo:last-child {
  justify-content: flex-end;
}
html body nav.scrolled {
  height: 120px;
}
html body nav.scrolled .grid {
  padding: 20px 0;
}
html body nav.scrolled::before {
  opacity: 1;
}
@media (max-width: 1099px) {
  html body nav::before {
    background-image: url(/assets/images/background-mobile.svg);
  }
  html body nav .grid .logo-container {
    grid-column: col1-start / col8-end;
  }
}
@media (max-width: 799px) {
  html body nav {
    height: 80px;
  }
  html body nav .grid {
    padding: 20px 0;
  }
  html body nav .grid .logo-container {
    grid-column: col1-start / col4-end;
  }
  html body nav.scrolled {
    height: 80px;
  }
  html body nav.scrolled .grid {
    padding: 10px 0;
  }
}
html body header {
  position: relative;
  min-height: 100vh;
  background: #01071E;
}
html body header .video-container {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  /* .overlay { position: absolute; left: 0; top: -1.5vw; width: 100%; height: 100%; background-color: #00000090; z-index: 1; transition: .3s ease-in-out;
                    &.hide { opacity: 0; }
                } */
}
html body header .video-container video {
  position: relative;
  z-index: 0;
  width: 100%;
  opacity: 0.4;
}
html body header .video-container video.playing {
  opacity: 1;
}
html body header .video-container .play-button {
  position: absolute;
  z-index: 2;
  width: 120px;
  height: 120px;
  margin-top: 50px;
  cursor: pointer;
  background-color: white;
  border-radius: 50%;
  box-shadow: 5px 5px 5px #00000090;
  z-index: 1;
  transition: 0.3s ease-in-out;
  animation: headerPlayButton 3s infinite ease-in-out;
  background-image: url(/assets/images/play.png);
  background-position: center;
  background-size: 64px;
  background-repeat: no-repeat;
}
html body header .video-container .play-button.hide {
  opacity: 0;
}
html body header .grid {
  padding-top: 165px;
  position: relative;
  z-index: 1;
}
html body header .grid .header-headline {
  grid-column: col2-start / col12-end;
  color: white;
  transition: 0.3s ease-in-out;
}
html body header .grid .header-headline.hide {
  opacity: 0;
}
@media (max-width: 1800px) {
  html body header .grid .header-headline {
    grid-column: col1-start / col12-end;
  }
}
@media (max-width: 1099px) {
  html body header .grid .header-headline {
    grid-column: col1-start / col8-end;
  }
}
@media (max-width: 799px) {
  html body header .video-container video {
    margin-top: 50px;
  }
  html body header .grid {
    padding-top: 95px;
  }
  html body header .grid .header-headline {
    grid-column: col1-start / col4-end;
  }
  html body header .grid .header-headline.hide {
    opacity: 1;
  }
}
html body .intro {
  position: relative;
  background-color: #01071E;
  padding-bottom: 350px;
}
html body .intro .animation-container {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
html body .intro .grid {
  padding: 200px 0;
  position: relative;
  z-index: 1;
}
html body .intro .grid .headline-container, html body .intro .grid .text-container {
  color: white;
}
html body .intro .grid .headline-container {
  grid-column: col2-start / col6-end;
}
html body .intro .grid .headline-container .headline {
  font-size: 70px;
  line-height: 80px;
}
html body .intro .grid .text-container {
  grid-column: col7-start / col10-end;
}
html body .intro::after {
  content: "";
  position: absolute;
  display: block;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 350px;
  background-image: url(/assets/images/shapebottom.svg);
  background-size: 100% 100%;
  z-index: 1;
}
@media (max-width: 1800px) {
  html body .intro .grid .headline-container {
    grid-column: col1-start / col6-end;
  }
  html body .intro .grid .text-container {
    grid-column: col7-start / col12-end;
  }
}
@media (max-width: 1099px) {
  html body .intro {
    padding-bottom: 160px;
  }
  html body .intro .grid .headline-container {
    grid-column: col1-start / col8-end;
  }
  html body .intro .grid .text-container {
    grid-column: col1-start / col8-end;
  }
  html body .intro::after {
    height: 160px;
  }
}
@media (max-width: 799px) {
  html body .intro {
    padding-bottom: 70px;
  }
  html body .intro .grid .headline-container {
    grid-column: col1-start / col4-end;
  }
  html body .intro .grid .headline-container .headline {
    font-size: 38px;
    line-height: 48px;
  }
  html body .intro .grid .text-container {
    grid-column: col1-start / col4-end;
  }
  html body .intro::after {
    height: 70px;
  }
}
html body .scroll-text-section {
  padding: 100px 0 0;
  overflow-x: hidden;
  position: relative;
}
html body .scroll-text-section .scroll-text {
  font-size: 300px;
  line-height: 320px;
  font-weight: 600;
  text-wrap: nowrap;
  white-space: nowrap;
}
@media (max-width: 1099px) {
  html body .scroll-text-section .scroll-text {
    font-size: 150px;
    line-height: 170px;
  }
}
@media (max-width: 799px) {
  html body .scroll-text-section {
    padding: 50px 0 0;
  }
  html body .scroll-text-section .scroll-text {
    font-size: 100px;
    line-height: 120px;
    text-wrap: wrap;
    white-space: pre-wrap;
  }
}
html body .facts-sections {
  position: relative;
  color: white;
  background-image: url(/assets/images/gradient.jpg);
  background-size: 100% 100%;
  padding: 350px 0;
}
html body .facts-sections::before {
  content: "";
  position: absolute;
  display: block;
  top: -5px;
  left: 0;
  width: 100%;
  height: 350px;
  background-image: url(/assets/images/shapetop.svg);
  background-size: 100% 100%;
}
html body .facts-sections::after {
  content: "";
  position: absolute;
  display: block;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 350px;
  background-image: url(/assets/images/shapebottom.svg);
  background-size: 100% 100%;
}
@media (max-width: 1099px) {
  html body .facts-sections {
    padding: 160px 0;
  }
  html body .facts-sections::before, html body .facts-sections::after {
    height: 160px;
  }
}
@media (max-width: 799px) {
  html body .facts-sections {
    padding: 70px 0;
  }
  html body .facts-sections::before, html body .facts-sections::after {
    height: 70px;
  }
}
html body .facts-sections .baume {
  position: absolute;
  top: 90px;
  right: 10vw;
}
@media (max-width: 1099px) {
  html body .facts-sections .baume {
    top: 15px;
    height: 140px;
  }
}
@media (max-width: 799px) {
  html body .facts-sections .baume {
    top: 5px;
    height: 60px;
  }
}
html body .facts-sections .fact-intro {
  padding: 150px 0;
}
html body .facts-sections .fact-intro .intro-text-container {
  max-width: calc(857px + (100vw - var(--container-width)));
  width: 100%;
  margin: 0 auto;
  text-align: center;
  padding: 0 calc((100vw - var(--container-width)) / 2) 0;
}
html body .facts-sections .fact-intro .intro-text-container .headline {
  margin-bottom: 25px;
}
html body .facts-sections .fact-intro .intro-text-container .tooltip {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 1;
}
html body .facts-sections .fact-intro .intro-text-container .tooltip .tooltip-icon {
  width: 30px;
  height: 30px;
  background-image: url(/assets/images/Info_Icon.svg);
  cursor: help;
}
html body .facts-sections .fact-intro .intro-text-container .tooltip .tooltip-text {
  position: absolute;
  margin-top: 40px;
  opacity: 0;
  padding: 15px;
  transition: 0.3s ease-in-out;
  max-width: 400px;
  color: white;
  font-size: 10px;
  line-height: 12px;
  border: 1px solid white;
  border-radius: 5px;
}
html body .facts-sections .fact-intro .intro-text-container .tooltip .tooltip-text::before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #5b5b5b52;
  z-index: -1;
}
html body .facts-sections .fact-intro .intro-text-container .tooltip .tooltip-text.visible {
  opacity: 1;
}
@media (max-width: 799px) {
  html body .facts-sections .fact-intro {
    padding: 80px 0;
  }
}
html body .facts-sections .fact-section {
  padding: 100px 0;
}
@media (max-width: 799px) {
  html body .facts-sections .fact-section {
    padding: 60px 0;
  }
  html body .facts-sections .fact-section:last-child {
    padding-bottom: 150px;
  }
}
html body .facts-sections .fact-section.text-left .grid .text-container, html body .facts-sections .fact-section.text-right .grid .text-container {
  transition: 1.3s ease-in-out 0.3s;
}
html body .facts-sections .fact-section.text-left .grid .text-container .headline-small, html body .facts-sections .fact-section.text-right .grid .text-container .headline-small {
  margin-bottom: 25px;
}
html body .facts-sections .fact-section.text-left .grid .animation-container, html body .facts-sections .fact-section.text-right .grid .animation-container {
  transition: 1.3s ease-in-out 0.9s;
  height: 420px;
}
html body .facts-sections .fact-section.text-left.anim .text-container, html body .facts-sections .fact-section.text-left.anim .animation-container, html body .facts-sections .fact-section.text-right.anim .text-container, html body .facts-sections .fact-section.text-right.anim .animation-container {
  opacity: 0;
}
html body .facts-sections .fact-section.text-right .grid .text-container {
  order: 2;
  grid-column: col7-start / col10-end;
}
html body .facts-sections .fact-section.text-right .grid .animation-container {
  order: 1;
  grid-column: col2-start / col5-end;
}
@media (max-width: 1800px) {
  html body .facts-sections .fact-section.text-right .grid .text-container {
    grid-column: col7-start / col12-end;
  }
  html body .facts-sections .fact-section.text-right .grid .animation-container {
    grid-column: col1-start / col5-end;
  }
}
@media (max-width: 1099px) {
  html body .facts-sections .fact-section.text-right .grid .text-container {
    order: 2;
    grid-column: col1-start / col8-end;
  }
  html body .facts-sections .fact-section.text-right .grid .animation-container {
    order: 1;
    grid-column: col1-start / col8-end;
  }
}
@media (max-width: 799px) {
  html body .facts-sections .fact-section.text-right .grid .text-container {
    grid-column: col1-start / col4-end;
  }
  html body .facts-sections .fact-section.text-right .grid .animation-container {
    grid-column: col1-start / col4-end;
  }
}
html body .facts-sections .fact-section.text-left .grid .text-container {
  order: 1;
  grid-column: col3-start / col6-end;
}
html body .facts-sections .fact-section.text-left .grid .animation-container {
  order: 2;
  grid-column: col8-start / col11-end;
}
@media (max-width: 1800px) {
  html body .facts-sections .fact-section.text-left .grid .text-container {
    grid-column: col1-start / col6-end;
  }
  html body .facts-sections .fact-section.text-left .grid .animation-container {
    grid-column: col8-start / col12-end;
  }
}
@media (max-width: 1099px) {
  html body .facts-sections .fact-section.text-left .grid .text-container {
    order: 2;
    grid-column: col1-start / col8-end;
  }
  html body .facts-sections .fact-section.text-left .grid .animation-container {
    order: 1;
    grid-column: col1-start / col8-end;
  }
}
@media (max-width: 799px) {
  html body .facts-sections .fact-section.text-left .grid .text-container {
    grid-column: col1-start / col4-end;
  }
  html body .facts-sections .fact-section.text-left .grid .animation-container {
    grid-column: col1-start / col4-end;
  }
}
html body .future-section {
  position: relative;
}
html body .future-section .kugel-e4 {
  position: absolute;
  top: -180px;
  left: 2vw;
}
html body .future-section .kugel-default {
  position: absolute;
  top: -340px;
  right: 2vw;
}
html body .future-section .animation-container {
  position: absolute;
  left: 50%;
  top: -350px;
  max-width: calc(var(--container-width) / 2 - 50px);
}
html body .future-section .grid {
  padding: 70px 0 200px;
}
html body .future-section .grid .text-container {
  grid-column: col3-start / col6-end;
}
html body .future-section .grid .text-container .headline {
  margin-bottom: 16px;
}
html body .future-section .grid .text-container .btn {
  margin-top: 40px;
}
@media (max-width: 1800px) {
  html body .future-section {
    /* .grid {
                    .text-container { grid-column: col2-start / col6-end; }
                } */
  }
  html body .future-section .kugel-e4 {
    max-width: 180px;
  }
}
@media (max-width: 1099px) {
  html body .future-section .kugel-e4, html body .future-section .kugel-default {
    display: none;
  }
  html body .future-section .animation-container {
    position: relative;
    top: 0;
    left: 0;
    max-width: 100%;
    width: calc(var(--container-width) / 2);
    margin: -150px auto 0;
  }
  html body .future-section .grid {
    padding: 0 0 120px;
  }
  html body .future-section .grid .text-container {
    grid-column: col1-start / col8-end;
    order: 2;
  }
}
@media (max-width: 799px) {
  html body .future-section {
    padding: 80px 0;
  }
  html body .future-section .grid {
    padding: 0;
  }
  html body .future-section .grid .text-container {
    grid-column: col1-start / col4-end;
  }
}
html body .end-section {
  position: relative;
  padding: 150px 0 410px;
}
html body .end-section .grid .logo-container {
  grid-column: col5-start / col8-end;
  display: flex;
  align-items: center;
}
html body .end-section .grid .logo-container .logo {
  width: 100%;
  display: flex;
  justify-content: center;
}
html body .end-section .grid .logo-container .logo svg {
  max-width: 80%;
}
html body .end-section .end-text-container {
  max-width: calc(857px + (100vw - var(--container-width)));
  width: 100%;
  margin: 40px auto 0;
  text-align: center;
  padding: 0 calc((100vw - var(--container-width)) / 2) 0;
}
html body .end-section .logos-headline-container {
  width: 100%;
  text-align: center;
  margin: 250px 0 0;
  display: flex;
  justify-content: center;
}
html body .end-section .logos-container {
  padding: 50px 10vw 0;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}
html body .end-section .logos-container .logo-container {
  display: flex;
  align-items: center;
  justify-content: center;
}
html body .end-section .logos-container .logo-container a img {
  max-height: 80px;
  max-width: 100%;
}
html body .end-section .candle {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
}
html body .end-section .baume {
  position: absolute;
  bottom: 0;
  left: 10vw;
}
@media (max-width: 1099px) {
  html body .end-section {
    padding-bottom: 250px;
  }
  html body .end-section .grid .logo-container {
    grid-column: col1-start / col8-end;
  }
  html body .end-section .logos-container {
    grid-template-columns: repeat(3, 1fr);
  }
  html body .end-section .candle, html body .end-section .baume {
    max-height: 100px;
  }
  html body .end-section .candle {
    bottom: 10px;
  }
}
@media (max-width: 799px) {
  html body .end-section {
    padding: 80px 0 140px;
  }
  html body .end-section .grid .logo-container {
    grid-column: col1-start / col4-end;
  }
  html body .end-section .grid .logo-container .logo:first-child {
    justify-content: flex-start;
  }
  html body .end-section .grid .logo-container .logo:last-child {
    justify-content: flex-end;
  }
  html body .end-section .logos-headline-container {
    margin-top: 150px;
  }
  html body .end-section .logos-container {
    padding: 40px 10vw 0;
    grid-template-columns: repeat(2, 1fr);
  }
  html body .end-section .candle, html body .end-section .baume {
    max-height: 60px;
  }
}
html body footer {
  width: 100%;
  background-color: #01071E;
}
html body footer .grid {
  padding: 24px 0 26px;
}
html body footer .grid .logo-container {
  grid-column: col1-start / col12-end;
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}
html body footer .grid .logo-container .logo {
  width: 100%;
  display: flex;
  justify-content: center;
}
html body footer .grid .logo-container .logo svg {
  max-width: 80%;
}
html body footer .grid .logo-container .logo:first-child {
  justify-content: flex-start;
}
html body footer .grid .logo-container .logo:last-child {
  justify-content: flex-end;
}
html body footer .grid .footer-menu {
  grid-column: col1-start / col12-end;
  display: flex;
  align-items: center;
  gap: 20px;
  list-style: none;
}
html body footer .grid .footer-menu li a {
  color: white;
}
@media (max-width: 1099px) {
  html body footer .grid .logo-container, html body footer .grid .footer-menu {
    grid-column: col1-start / col8-end;
  }
}
@media (max-width: 799px) {
  html body footer .grid .logo-container, html body footer .grid .footer-menu {
    grid-column: col1-start / col4-end;
  }
}
test