/* =========================================================== */
/* 00. Droplet Image Carousel
/* =========================================================== */
.droplet-image-carousel {
  position: relative;
}

.droplet-image-carousel .droplet-carousel-item {
  position: relative;
  overflow: hidden
}

.droplet-image-carousel .droplet-carousel-item .droplet-carousel-thumbnail {
  position: relative;
  overflow: hidden
}

.droplet-image-carousel .droplet-carousel-item .droplet-carousel-thumbnail img {
  width: 100%;
  max-width: 100%;
  object-fit: cover;
  vertical-align: middle;
  transition: transform 2.5s cubic-bezier(.17, .05, .13, .85);
}

/*Overlay*/
.droplet-image-carousel .droplet-overlay {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-align: stretch;
  align-items: stretch;
  padding: 30px 30px;
  background: rgba(0, 0, 0, 0.6);
  text-align: center;
}

.droplet-image-carousel .droplet-overlay > :last-child {
  margin-bottom: 0;
}

.droplet-image-carousel .droplet-carousel-item .droplet-image-carousel-content-inner {
  transform: translateZ(20px)
}

.droplet-image-carousel .droplet-carousel-overlay-icon {
  position: relative;
  display: block;
  width: 100%;
  overflow: hidden;
  color: #fff;
  font-size: 50px;
}

.droplet-image-carousel .droplet-carousel-overlay-icon svg {
  width: 65px;
  height: auto;
  fill: #fff;
}

.droplet-image-carousel .droplet-image-carousel-inner {
  position: relative;
  overflow: hidden
}

.droplet-image-carousel .droplet-carousel-item .droplet-carousel-overlay-caption {
  color: #fff;
  font-size: 18px;
  margin-top: 20px;
}

@media (max-width:767px) {
  .elementor-widget-droplet_image_carousel .elementor-widget-container {
    overflow: hidden;
  }
}