.cr-wrap {
  position: relative;
  width: 100%;
  height: 200vh;
}

.cr-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
}

.cr-circle {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 140vmax;
  height: 140vmax;
  border-radius: 50%;
  background: #0f1317 !important;
  transform: translate(-50%, -50%) scale(var(--cr-scale, 0));
  will-change: transform;
}

.cr-text {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 8%;
  box-sizing: border-box;
  color: #373848;
  opacity: var(--cr-text, 0);
  will-change: opacity;
  pointer-events: none;
}

.cr-text h2 {
  margin: 0;
  font-family: inherit;
  font-size: clamp(44px, 6vw, 96px);
  line-height: 1.32;
  font-weight: 400;
  color: #f4f7f8;
}

/* Tablet */
@media (max-width: 1024px) {
  .cr-text h2 {
    font-size: clamp(32px, 5vw, 64px);
  }
}

/* Handy */
@media (max-width: 768px) {
  .cr-text {
    padding: 0 5%;
  }

  .cr-text h2 {
    font-size: clamp(24px, 7vw, 44px);
    line-height: 1.2;
  }
}