.hero-section-custom {
  position: relative;
  overflow: hidden;
}

.hero-single-custom {
  position: relative;
  overflow: hidden;
}

.background-image {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center;
  animation: zoomBackground 5s infinite alternate;
}


@keyframes zoomBackground {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.1);
  }
}




