.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: black;
    opacity: 0.5; /* Control the darkness of the overlay here */
    z-index: 2;
    transition: 0.6s ease-in-out;
  }

.overlay:hover {
    opacity: 0;
}

.sliderTextWrapper {
    position: absolute;
    bottom: 10px;
    padding: 24px;
    color: #fff;
    letter-spacing: 5px;
    font-family: "Rubik", sans-serif;
    z-index: 3;
    opacity: 1;
  	transform: translateY(20px);
}

.item.imgWrapper {
	padding: 0;
}

.sliderTextWrapper h4 {
    font-weight: 300;
  	color: #fff!important;
    
}

.imgWrapper {
    position: relative;
}

.pastWorkImg {
    min-height: 700px;
  	max-height: 700px;
    object-fit: cover;    
}

.owl-carousel .owl-nav {
    display: none;
  }



.owl-carousel .owl-dots {
    position: absolute;
    bottom: 20px; /* Adjust as needed */
    width: 100%;
    text-align: center;
  }
  
  .owl-carousel .owl-dot {
    display: inline-block;
    margin: 0 5px; /* Space out the dots */
  }
  

  .owl-carousel .owl-dot span {
    background: white; /* Or any color you prefer */
    opacity: 0.75; /* Make dots slightly transparent */
    border-radius: 50%;
    width: 10px; /* Size of the dots */
    height: 10px;
    display: block;
  }
  
  .owl-carousel .owl-dot.active span,
  .owl-carousel .owl-dot:hover span {
    opacity: 1; /* Fully opaque when active or hovered */
  }
  


 