/* style.css for Custom Service Slider Elementor Widget */

.cse-slider {
  position: relative;
  width: 100%;
}
.cse-slide {
  position: relative;
  background-size: cover;
  background-position: center;
  height: 400px;
  display: flex;
  align-items: flex-end;
}
.cse-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}
.cse-content {
  position: relative;
  padding: 20px;
  color: #fff;
  z-index: 2;
  background: rgba(0, 0, 0, 0.3);
  width: 100%;
  box-sizing: border-box;
}
.cse-title {
  margin: 0 0 10px 0;
  font-size: 24px;
}
.cse-description {
  margin: 0;
  font-size: 16px;
}
.swiper-button-next,
.swiper-button-prev {
  color: #fff;
}
.swiper-pagination-bullet {
  background: #fff;
  opacity: 0.8;
}
@media (max-width: 768px) {
  .cse-slide {
    height: 400px;
  }
  .cse-title {
    font-size: 18px;
  }
  .cse-description {
    font-size: 14px;
  }
}
