/* Start custom CSS */.scroll-lateral{
  position: relative;
  min-height: 160vh; /* da espacio para el efecto */
}

.scroll-lateral .slide-item{
  position: sticky;
  top: 20vh;
  opacity: 0;
  transform: translateX(100%);
  transition: transform .5s ease, opacity .5s ease;
}

/* Activo */
.scroll-lateral .slide-item.is-active{
  opacity: 1;
  transform: translateX(0);
}

/* El que sale */
.scroll-lateral .slide-item.is-leaving{
  opacity: 0;
  transform: translateX(-100%);
}

/* Móvil */
@media(max-width: 767px){
  .scroll-lateral .slide-item{
    top: 10vh;
  }
}/* End custom CSS */