.hero_image_slider {
  padding: 5rem 0;
  margin: 0;
  height: 600px;
}

.hero_image_slider .carousel_wrapper {
  height: 100%;
  overflow-x: hidden;
  overflow-y: hidden;
  border-radius: 0.5rem;

}

.hero_image_slider .carousel_wrapper img {
  width: 100%;
  /* height: 100%; */
  object-fit: cover !important;
  border-radius: 0.5rem;
  display: none;
}

.hero_image_slider .dummy-slider {
  width: 100%;
  height: 400px;
  width: 100%;
  animation: pulse 1s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}



@keyframes pulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: .5;
  }
}

@media only screen and (max-width: 850px) {

  .hero_image_slider,
  .hero_image_slider .carousel_wrapper {
    height: 150px;
  }

  .hero_image_slider {
    height: 100%;
    border-radius: 0.7rem;
    margin-bottom: 0.5rem;
  }



  .hero_image_slider .dummy-slider {
    width: 100%;
    height: 200px;
    width: 100%;
  }

  .hero_image_slider {
    margin: 0 !important;
    margin-top: 1rem !important;
    padding: 0rem !important;
    padding-bottom: 2rem !important;
  }
}