.sticky-parent {
  position: relative;
  height: 80vh;
  overflow: hidden;
}

.sticky-section {
  position: sticky;
  top: 0;
  height: 100vh;
}

.sticky-content {
  will-change: transform;
  transform: scale(0.85);
  transition: transform 0.6s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.anim-zoom.active .sticky-content {
  transform: scale(1);
}

.sticky-parent {
  position: relative;
  height: 60vh;
  overflow: hidden;
  margin: 20px 0;
}

.sticky-section {
  position: sticky;
  top: 0;
  height: 100%;
  min-height: 60vh;
}

.sticky-content {
  width: 100%;
  padding: 0px 0;
  transition: transform 0.3s ease-out;
}

.sticky-section {
  /* border: 1px dashed red; */
}

@media (max-width: 768px) {
  .sticky-parent {
    height: auto !important;
  }

  .sticky-section {
    position: relative;
    height: 40vh !important;
    min-height: 40vh !important;
  }
}