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

.vc-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: 5rem;
  padding-right: 5%;
  overflow: hidden;
}

.vc-container {
  position: relative;
  width: 100%;
  height: 870px;
  overflow: hidden;
}

.vc-curtain {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #f4f7f8;
  transform: translateY(calc(-1 * var(--vc-reveal, 0%)));
  will-change: transform;
  z-index: 2;
}

.vc-video,
.vc-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

/* Tablet */
@media (max-width: 1024px) {
  .vc-wrap {
    height: auto;
  }

  .vc-sticky {
    position: relative;
    height: auto;
    padding-left: 1%;
    padding-right: 1%;
  }

  .vc-container {
    height: 600px;
  }

  .vc-curtain {
    display: none;
  }
}

/* Handy */
@media (max-width: 768px) {
  .vc-container {
    width: 100%;
    height: 400px;
  }
}