.is-headerimage-with-zoom {
  padding: 0 !important;
}
.is-headerimage-with-zoom .wp-block-cover__inner-container {
  justify-content: flex-end;
  align-items: flex-end;
  -webkit-text-stroke: 1px #fff;
  color: transparent;
  font-size: clamp(60px, 8vw, 120px);
  font-family: var(--rh--h1--font-family);
}
.is-headerimage-with-zoom.wp-block-cover > .has-background-dim::before {
  opacity: 0.5;
  background: #000000;
}
.is-headerimage-with-zoom .wp-block-cover__image-background {
  animation: zoom-in 10s ease-in-out infinite alternate;
}
@media (prefers-reduced-motion: reduce) {
  .is-headerimage-with-zoom .wp-block-cover__image-background {
    animation: none;
  }
}
.is-headerimage-with-zoom.alignfull .wp-block-cover__inner-container {
  max-width: 100%;
}
@media (min-width: 1024px) {
  .is-headerimage-with-zoom {
    min-height: 70vh !important;
  }
}

@keyframes zoom-in {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.2);
  }
}