.hero {
  height: 100vh;
}
.hero__inner {
  height: 100%;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
}
.hero__image-cont {
  position: relative;
  overflow: hidden;
}
.hero__image-cont:not(:last-child):after {
  content: "";
  position: absolute;
  right: 0px;
  height: 100%;
  top: 0;
  width: 2.5px;
  z-index: 999;
}
.hero__image-cont img,
.hero__image-cont .anim-swipe {
  position: absolute;
  width: 700%;
  height: 100%;
  top: 0;
  left: 0;
  object-fit: cover;
}
.hero .anim-swipe {
  width: 100%;
}
.hero__image-cont:nth-child(1) img {
  left: -100%;
}
.hero__image-cont:nth-child(2) img {
  left: -200%;
}
.hero__image-cont:nth-child(3) img {
  left: -300%;
}
.hero__image-cont:nth-child(4) img {
  left: -400%;
}
.hero__image-cont:nth-child(5) img {
  left: -500%;
}
.hero__image-cont:nth-child(6) img {
  left: -600%;
}

.spacer {
  height: 300vh;
}

.scroll {
  position: fixed;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 999;
}