.rh-iba-header {
  --block-gap: 4rem;
  --header-content-width: 30vw;
  margin-block: 0 var(--block-gap) !important;
  position: relative;
}
@media (min-width: 840px) {
  .rh-iba-header {
    --block-gap: 6rem;
  }
}
@media (min-width: 1024px) {
  .rh-iba-header {
    --block-gap: 8rem;
  }
}
.rh-iba-header > .wp-block-group__inner-container {
  max-width: none !important;
  padding-inline: 0 !important;
}
.rh-iba-header .header-content {
  padding: 2rem;
  font-size: 1.5rem;
}
@media (min-width: 700px) {
  .rh-iba-header .header-content {
    animation: 1s slide-in-right 1.5s ease-in-out backwards;
    background-color: rgba(0, 0, 0, 0.5) !important;
    bottom: 0;
    color: #fff !important;
    font-size: 1.5rem;
    left: auto;
    position: absolute;
    right: 0;
    top: 0;
    transform: none;
    width: var(--header-content-width);
    z-index: 10;
  }
  .rh-iba-header .header-content a {
    color: #fff !important;
  }
  .rh-iba-header .header-content p {
    margin-bottom: 1rem;
  }
  .rh-iba-header .header-content > .wp-block-group__inner-container {
    justify-content: center;
  }
  .rh-iba-header .header-content > .wp-block-group__inner-container > .wp-block-columns {
    flex-direction: column;
  }
}
@media (min-width: 700px) and (min-width: 1200px) {
  .rh-iba-header .header-content > .wp-block-group__inner-container > .wp-block-columns {
    font-size: 2.3rem;
  }
  .rh-iba-header .header-content > .wp-block-group__inner-container > .wp-block-columns p {
    margin-bottom: 3rem;
  }
}
@media (min-width: 700px) {
  .rh-iba-header .header-content > .wp-block-group__inner-container > .wp-block-columns > .wp-block-column {
    margin-left: 0;
  }
  .rh-iba-header .header-content.wp-block-group {
    margin-bottom: 0;
  }
}
.rh-iba-header .header-image {
  background-color: #000;
  margin: 0;
  overflow: visible;
  padding: 0 !important;
  width: 100%;
}
.rh-iba-header .header-image .down {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
}
.rh-iba-header .header-image > .has-background-dim::before {
  opacity: 0.3;
}
.rh-iba-header .header-image .wp-block-button__link {
  border-radius: 40px;
  font-size: 1.6rem;
  padding: 1rem 3rem;
}
.rh-iba-header .header-image .wp-block-cover__inner-container {
  max-width: 100%;
}
.rh-iba-header .header-image .wp-block-heading {
  color: #fff;
  font-size: 2rem;
  text-align: center;
}
@media (min-width: 700px) {
  .rh-iba-header .header-image .wp-block-heading {
    margin: 0 auto 2rem;
    max-width: calc(100% - var(--header-content-width) * 2 - 4rem);
  }
}
@media (min-width: 840px) {
  .rh-iba-header .header-image {
    min-height: 70vh !important;
  }
  .rh-iba-header .header-image .wp-block-button__link {
    font-size: 1.8rem;
  }
}
@media (min-width: 1200px) {
  .rh-iba-header .header-image {
    min-height: 100vh !important;
  }
  .rh-iba-header .header-image .wp-block-heading {
    font-size: 5rem;
    margin-block: 0 4rem;
  }
}
@media (min-width: 1350px) {
  .rh-iba-header .header-image .wp-block-heading {
    font-size: 6rem;
  }
}
.rh-iba-header .slide-in-right {
  animation: 1s slide-in-right 1.5s ease-in-out backwards;
}
.rh-iba-header .slide-in-bottom {
  animation: slide-in-bottom 1.5s ease-in-out;
}
.rh-iba-header .slide-in-left {
  animation: slide-in-left 1.5s ease-in-out;
}
.rh-iba-header .slide-in-top {
  animation: slide-in-top 1.5s ease-in-out;
}
.rh-iba-header .pulse {
  animation: pulse 1s ease-in-out alternate infinite;
}

@keyframes pulse {
  0% {
    transform: translate(-50%, 20px);
  }
  100% {
    transform: translate(-50%, 0);
  }
}
@keyframes slide-in-bottom {
  0% {
    transform: translateY(500px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes slide-in-left {
  0% {
    transform: translateX(-500px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes slide-in-right {
  0% {
    transform: translateX(500px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes slide-in-top {
  0% {
    transform: translateY(-500px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}