.li-widgets--heroWidget {
  --base-color: var(--e-global-color-primary);
  --text-color: #ffffff;
  --padding: 10vh;
  --min-height: 700px;
  --cta-min-height: 80px;
  --headline-size: 74px;
  --circle-size: calc(var(--headline-size) * 6.5);
  --circle-offset: calc(var(--min-height) / 6 + 10px);
  --content-offset: 0px;
  /**
   * Mobile Fixed Aspect Ration
   */
  --mobile-aspect-ratio--width: 18;
  --mobile-aspect-ratio--height: 25;
  font-size: 16px;
  text-transform: uppercase; }
  .li-widgets--heroWidget--wrapper {
    position: relative;
    min-height: var(--min-height);
    padding: var(--padding) 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 40px;
    color: #ffffff; }
  .li-widgets--heroWidget .circle {
    position: absolute;
    width: var(--circle-size);
    height: var(--circle-size);
    border-radius: 50%;
    background-color: var(--base-color);
    top: var(--circle-offset);
    opacity: 0.8;
    transform: translateY(-50%);
    z-index: -1; }
  .li-widgets--heroWidget .circle-multiply {
    position: absolute;
    width: var(--circle-size);
    height: var(--circle-size);
    border-radius: 50%;
    background-color: var(--base-color);
    top: calc(var(--circle-offset));
    left: calc((100vw - 1000px) / 2);
    z-index: -1;
    mix-blend-mode: multiply; }
    @media (max-width: 1100px) {
      .li-widgets--heroWidget .circle-multiply {
        left: 50px; } }
    @media (max-width: 767px) {
      .li-widgets--heroWidget .circle-multiply {
        left: 20px; } }
  .li-widgets--heroWidget--bg-video {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1; }
    .li-widgets--heroWidget--bg-video > video {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center; }
  .li-widgets--heroWidget--content, .li-widgets--heroWidget--cta {
    z-index: 2;
    max-width: var(--content-width);
    width: 100%;
    margin: 0 auto; }
  .li-widgets--heroWidget--content {
    position: relative;
    min-height: var(--circle-size);
    display: flex;
    flex-direction: column;
    justify-content: flex-start; }
    .li-widgets--heroWidget--content .headline {
      width: calc(100% - 90px);
      position: absolute;
      top: calc(50% + var(--content-offset));
      left: 90px;
      transform: translateY(-50%);
      font-size: var(--headline-size);
      font-weight: 900;
      font-style: italic;
      line-height: 0.95;
      margin-bottom: 20px;
      letter-spacing: 0.03em; }
    .li-widgets--heroWidget--content .text {
      position: absolute;
      left: 0;
      top: calc(100% + 20px);
      margin-left: 130px;
      width: calc(100% - (var(--circle-size) / 2.5) - 100px);
      font-size: 28px;
      font-style: normal;
      text-transform: initial;
      line-height: 1.25;
      font-weight: 500;
      letter-spacing: 0.4px; }
      @media (max-width: 1024px) {
        .li-widgets--heroWidget--content .text {
          margin-left: calc(var(--circle-size) / 4);
          width: calc(100% - (var(--circle-size) / 4) - 60px); } }
  .li-widgets--heroWidget--cta {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    gap: 20px;
    position: absolute;
    left: 50%;
    bottom: 45px;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1000px;
    padding-left: 90px; }
    @media (max-width: 767px) {
      .li-widgets--heroWidget--cta {
        padding-left: 0;
        justify-content: center; } }
    .li-widgets--heroWidget--cta .cta--button {
      position: relative;
      color: var(--text-color);
      font-size: 24px;
      font-weight: 700;
      letter-spacing: 0.6px;
      line-height: 1.1;
      text-transform: initial;
      padding: 28px 42px;
      text-align: center; }
      @media (min-width: 1025px) {
        .li-widgets--heroWidget--cta .cta--button {
          min-width: calc((100% - 90px - 20px) / 2); } }
      @media (max-width: 1024px) {
        .li-widgets--heroWidget--cta .cta--button {
          font-size: 20px;
          padding: 16px 24px;
          min-width: calc((100% - 60px - 20px) / 2);
          width: 250px; } }
      @media (max-width: 767px) {
        .li-widgets--heroWidget--cta .cta--button {
          font-size: 18px;
          padding: 10px 25px;
          font-weight: 500;
          line-height: 24px;
          min-width: calc((100% - 60px - 20px) / 2); } }
      .li-widgets--heroWidget--cta .cta--button:before {
        content: '';
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        background-color: var(--base-color);
        border-radius: 100px;
        z-index: -1;
        transition: 0.3s ease;
        mix-blend-mode: multiply;
        opacity: .8;
        transform-origin: 0 0; }
      .li-widgets--heroWidget--cta .cta--button:hover {
        color: var(--text-color); }
        .li-widgets--heroWidget--cta .cta--button:hover:before {
          opacity: 1;
          filter: brightness(0.8); }
  @media (max-width: 1024px) {
    .li-widgets--heroWidget {
      --min-height: 600px;
      --headline-size: 48px;
      --circle-offset: calc((var(--min-height) / 8) + 85px);
      font-size: 14px; }
      .li-widgets--heroWidget .headline {
        left: 45px;
        width: calc(100% - 45px); }
      .li-widgets--heroWidget .text br {
        display: none; } }
  @media (max-width: 767px) {
    .li-widgets--heroWidget {
      --min-height: calc(var(--mobile-aspect-ratio--height) / var(--mobile-aspect-ratio--width) * 100vw) !important;
      --headline-size: 36px;
      /**
       * Define the circle offset so it it always in the vertical center, use the circle size and min-height to calculate the offset
       */
      --circle-offset: calc(50% - var(--circle-size) / 2 + 10px);
      font-size: 12px; }
      .li-widgets--heroWidget.has-mobile-video .desktop-video {
        display: none; }
      .li-widgets--heroWidget.has-mobile-video .mobile-video {
        display: block !important; }
      .li-widgets--heroWidget--cta {
        font-size: 18px; }
      .li-widgets--heroWidget--wrapper {
        padding: var(--padding) 20px; }
      .li-widgets--heroWidget--content {
        padding-top: calc((var(--circle-size) / 2) - 5vh); }
        .li-widgets--heroWidget--content .text {
          font-size: calc(clamp(0.875rem, 0.6956rem + 0.7653vw, 1.0625rem));
          margin-left: calc(var(--circle-size) / 4 + 10px) !important;
          top: calc(100% + 10px);
          width: auto !important; }
        .li-widgets--heroWidget--content .headline {
          font-size: calc(clamp(2.125rem, 1.7663rem + 1.5306vw, 2.5rem)); } }
  @media (max-width: 450px) {
    .li-widgets--heroWidget {
      --circle-size: 250px;
      --headline-size: 40px; }
      .li-widgets--heroWidget--content {
        padding-top: 60px; } }

body.home .li-widgets--heroWidget {
  --circle-offset: calc((var(--min-height) / 8) - 25px); }
  @media (max-width: 1024px) {
    body.home .li-widgets--heroWidget {
      --circle-offset: calc((var(--min-height) / 8) - 15px); } }
  @media (max-width: 767px) {
    body.home .li-widgets--heroWidget {
      --circle-offset: calc(50% - var(--circle-size) / 2); } }
body.home--wrapper {
  justify-content: flex-start;
  padding-top: calc(var(--min-height) / 8); }
  @media (max-width: 767px) {
    body.home--wrapper {
      padding-top: 100px !important; } }

.wissensraum-hero .li-widgets--heroWidget {
  --circle-offset: calc(var(--min-height) / 8); }
  @media (max-width: 767px) {
    .wissensraum-hero .li-widgets--heroWidget {
      --circle-offset: calc(50% - var(--circle-size) / 2 - 20px); } }

/*# sourceMappingURL=style.css.map */
