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

.wp-admin .hero .arrow {
  display: none !important;
}
