.editor-styles-wrapper .is-root-container .hero-stack-wrapper, body.frontend .hero-stack-wrapper {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}
.editor-styles-wrapper .is-root-container .hero-home, body.frontend .hero-home {
  position: relative;
}
.editor-styles-wrapper .is-root-container .hero-home .hero-slide, body.frontend .hero-home .hero-slide {
  position: relative;
  height: 100vh;
  width: 100%;
  z-index: 1;
  margin: 0;
  padding: 0;
}
.editor-styles-wrapper .is-root-container .hero-home .hero-slide img, body.frontend .hero-home .hero-slide img {
  display: block;
  width: 100%;
  height: 100vh;
  object-fit: cover;
}
.editor-styles-wrapper .is-root-container .hero-stack-wrapper, body.frontend .hero-stack-wrapper {
  position: relative;
}
.editor-styles-wrapper .is-root-container .hero-stack-wrapper .arrow, body.frontend .hero-stack-wrapper .arrow {
  width: fit-content;
  position: sticky;
  width: 45px;
  top: calc(100dvh - 100px);
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  cursor: pointer;
  z-index: 2;
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(8px);
  }
}
