.scroll-science {
  display: block;
  position: relative;

  .capsule-img {
    bottom: -15%;
    max-width: 33.3rem;
    position: absolute;
    right: 0;

    img {
      height: auto;
    }
  }

  .scroll-science__header {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 5rem;
    text-align: center;

    .scroll-science__heading {
      font-size: var(--heding-size);
      font-weight: 300;
    }

    .scroll-science__subheading {
      font-size: var(--subheding-size);
      font-weight: 300;
    }
  }

  .scroll-science__body {
    display: flex;
    gap: 4rem;
    justify-content: space-between;
    margin-bottom: 30rem;

    .scroll-science__body-left {
      display: flex;
      flex-direction: column;
      gap: 8rem;

      .scroll-science__box {
        display: flex;
        flex-direction: column;
        gap: 2rem;
        justify-content: center;
        max-width: 39rem;
        min-height: 55.3rem;

        .scroll-science__box-heading {
          font-size: var(--block-heding-size);
          font-weight: 300;
          line-height: 1.25;
        }

        .scroll-science__box-content {
          font-size: var(--block-content-size);
          line-height: 1.5;
        }
      }
    }

    .scroll-science__body-right {
      align-self: start;
      max-width: 55rem;
      position: sticky;
      top: 15rem;
      width: 100%;

      video {
        border-radius: 1rem;
        width: 100%;
        z-index: 1;
      }
    }
  }

  .scroll-science__footer-inner {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 65rem;

    .scroll-science__footer-heding {
      font-size: var(--footer-heding-size);
      font-weight: 300;
      line-height: 1.15;
    }

    .scroll-science__footer-subheading {
      font-size: var(--footer-subheding-size);
      font-weight: 300;
      line-height: 1.4;
    }
  }

  @media screen and (width < 1440px) {
    .capsule-img {
      bottom: -11%;
    }
  }

  @media screen and (width < 1280px) {
    .capsule-img {
      bottom: -10%;
      max-width: 40rem;
    }
  }

  @media screen and (width < 992px) {
    .capsule-img {
      bottom: -8%;
      max-width: 18rem;
    }

    .scroll-science__body {
      align-items: center;
      flex-direction: column-reverse;
      margin-bottom: 8rem;
      text-align: center;

      .scroll-science__body-left .scroll-science__box {
        min-height: 0;
      }

      .scroll-science__body-right {
        margin: 0 auto;
        max-width: 25rem;
        position: static;
      }
    }

    .scroll-science__footer-inner {
      max-width: 40rem;
    }
  }

  @media screen and (width < 768px) {
    .scroll-science__footer-inner {
      max-width: 55%;
    }
  }
}