.fpb-carousel {
  position: relative;
}

.fpb-carousel > .elementor-widget-wrap {
  position: relative;
  min-height: 500px;
}

/* All banners stacked on top of each other and hidden by default */
.fpb-carousel .form-banner {
  position: absolute;
  z-index: 9;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .4s ease-in-out;
}

/* Only the active one */
.fpb-carousel .form-banner.visible {
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
}