.icon-wrapper img {
	width: 75px!important;
  	height: 75px!important;
}

.ourServices {
    letter-spacing: 2px;
    text-transform: uppercase;
  }

  .singleCard {
    /* max-width: 300px; */
  }
  
  .sec-icon {
    position: relative;
    display: inline-block;
    padding: 0;
    margin: 0 auto;
  }
  
  .sec-icon::before {
    content: "";
    position: absolute;
    height: 1px;
    left: -70px;
    margin-top: -5.5px;
    top: 60%;
    background: #333333;
    width: 50px;
  }
  
  .sec-icon::after {
    content: "";
    position: absolute;
    height: 1px;
    right: -70px;
    margin-top: -5.5px;
    top: 60%;
    background: #333;
    width: 50px;
  }
  
  .advertisers-service-sec {
    /* background-color: #f5f5f5; */
  }
  
  .advertisers-service-sec span {
    color: rgb(255, 23, 131);
  }
  
  .advertisers-service-sec .col {
    padding: 0 1em 1em 1em;
    text-align: center;
  }
  
  .advertisers-service-sec .service-card {
    width: 100%;
    height: 100%;
    padding: 2em 1.5em;
    border-radius: 0;
    /* box-shadow: 0 0 35px rgba(0, 0, 0, 0.12); */
    cursor: pointer;
    transition: 0.5s;
    position: relative;
    z-index: 2;
    overflow: hidden;
    background: #fff;
  }
  
  .advertisers-service-sec .service-card::after {
    content: "";
    width: 100%;
    height: 100%;
    background: linear-gradient(rgb(217 221 220/0.1),rgb(217 221 220/0.3));
    position: absolute;
    left: 0%;
    top: -98%;
    z-index: -2;
    transition: all 0.4s cubic-bezier(0.77, -0.04, 0, 0.99);
  }
  
  .advertisers-service-sec h3 {
    font-size: 20px!important;
    letter-spacing: 2px;
    text-transform: uppercase!important;
    font-weight: 300!important;
    color: #1f194c;
    margin: 1em 0;
    z-index: 3;
  }
  
  .advertisers-service-sec p {
    color: #575a7b;
    font-size: 15px;
    line-height: 1.6;
    letter-spacing: 0.03em;
    z-index: 3;
  }
  
  .advertisers-service-sec .icon-wrapper {
    
    position: relative;
    margin: auto;
    font-size: 30px;
    height: 2.5em;
    width: 2.5em;
    color: #ffffff;
    border-radius: 0;
    display: grid;
    place-items: center;
    transition: 0.5s;
    z-index: 3;
  }
  
  .advertisers-service-sec .service-card:hover:after {
    top: 0%;
  }
  
  .service-card .icon-wrapper {
    
    color: #343a4a;
  }
  
  .advertisers-service-sec .service-card:hover .icon-wrapper {
    color: #F59B20;
  }
  
  .advertisers-service-sec .service-card:hover h3 {
    color: #1f194c;
  }
  
  .advertisers-service-sec .service-card:hover p {
    color: #575a7b;
  }
  /* ADVERTISERS SERVICE CARD ENDED */
  

  .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: 0;
}

.sliderTextWrapper h4 {
    font-weight: 300;
    
}

.imgWrapper {
    position: relative;
}

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

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



.owl-carousel .owl-dots {
    position: absolute;
    /* bottom: 10px;  */
    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: black; /* 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 */
  }
  


  .fade-in {
    animation: fadeInAnimation 0.5s forwards; /* Adjust duration as needed */
  }
  
  @keyframes fadeInAnimation {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
  }