.section-intro {
  position: relative;

  .container {
    position: relative;
    z-index: var(--layout-default);
  }

  .heading-block {
    margin-bottom: clamp(110px, calc(110px + (123 - 110) * ((100vw - 390px) / (1440 - 390))), 123px);
  }

  .background-image svg path {
    text-wrap: balance;
    hyphens: auto;
    opacity: 0;
    overflow-wrap: break-word;
  }

  .background-image {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;

    @media (max-width: 768px) {
      top: 60px;
    }

    .wp-block-group__inner-container {
      display: flex;
      justify-content: flex-end;
      width: inherit;
      height: inherit;
    }

    svg {
      width: clamp(400px, calc(100vw * 600 / 1440), 600px);
      height: clamp(250px, calc(100vw * 430 / 1440), 430px);
      transform: translate(15%, 12%);

      @media (max-width: 520px) {
        transform: translate(20%, 40%);
      }
    }

  }

}

