.display-wrapper {
  top: -35px;
}
.display-wrapper h1 {
  transform: translate(-243px, 0);
  opacity: 0;
  transition:
    transform 1.2s cubic-bezier(.22,1,.36,1),
    opacity 1s ease;
  will-change: transform, opacity;
}

/* Endzustand */
body.loaded .display-wrapper h1 {
  transform: translate(0, 0);
  opacity: 0.7;
}

.display {
    font-size: clamp(40px, 6vw, 70px)!important;
    line-height: 101% !important;
    color: white !important;
    font-weight: 700 !important;
    font-family: 'Archivo Black' !important;
    text-transform: uppercase !important;
    position: relative;
    text-shadow: 0 8px 15px rgba(53, 54, 25, 0.6), 0 0 18px rgba(53, 54, 25, 1);
    hyphens: auto;
    word-break: normal !important;
    overflow-wrap: normal !important;
    overflow-wrap: normal !important;
    max-width: 850px;
    opacity: 0.7;
}
.paraglide {
  z-index: 2;
}
.paraglide figure {
    width: 140%;
}

.paraglide img {
    width: 100%;
    max-width: 750px;
    transform: scale(0.75);
  opacity: 0;
  transition:
    transform 1.6s cubic-bezier(.22,1,.36,1),
    opacity 1.2s ease;
  will-change: transform, opacity;
}

/* Endzustand */
.loaded .paraglide img {
  transform: scale(1);
  opacity: 1;
}


@media (min-width: 550px) {
  .paraglide figure {
    width:100%;
}
}

@media (min-width: 800px) {
  .display {
    font-size: clamp(70px, 5vw, 110px)!important;
  }
  .paraglide figure {
    width:70%;
    right: -60px;
}
}

@media (min-width: 1024px) {
    .paraglide {
    position: absolute!important;
    top: 0%;
    right: 0%;
    }
    .paraglide > figure {
        display: flex;
        justify-content: flex-end;
        right: -13%;
        top: 80px;
    }
    .display-wrapper {
    position: relative;
    top: 0px;
    } 
  .display-wrapper::before,
  .display-wrapper::after {
    transition: transform 1.8s cubic-bezier(.22,1,.36,1);
  }
  .display-wrapper::before {
    content: "";
    position:absolute;
    left: -133px !important;
    bottom: 0 !important;
    background: url(images/heroteaser/clouds-top-left.png);
    width: 1018px;
    height: 628px;
    background-repeat: no-repeat;
    background-position: -30px 100px;
    z-index: -1;
    transform: translate(0px, 0px);
  }
  .display-wrapper::after {
    content: "";
    position: absolute;
    left: 0;
    top: -88%;
    background: url(images/heroteaser/clouds-bottom-right.png);
    width: 1018px;
    height: 628px;
    background-repeat: no-repeat;
    background-position: -40px 56px;
    z-index: -1;
    transform: translate(0px, 0px);
  }
  body.loaded .display-wrapper::before {
    transform: translate(-310px, 120px);
  }

  body.loaded .display-wrapper::after {
    transform: translate(360px, -200px);
  }

  .paraglide img {
    transform: translate(120px, -400px) scale(0.2);
  }

  body.loaded .paraglide img {
    transform: translate(0px, 0px) scale(1);
    opacity: 1;
  }
}

@media (min-width: 1500px) {
   .heroteaser {
    aspect-ratio: 16/9;
   }
   .paraglide > figure {
        right: 0%;
    }
}

@media (min-width: 1700px) {
   .display-wrapper {
    left: -100px;
   }
}