.header {
    position: fixed;
    top: 0;
    width: 100%;
    transition: background-color 0.3s ease;
    background-color: transparent;
  }
  
  .header .header-container {
    transition: padding-top 0.3s ease, padding-bottom 0.3s ease;
    padding-top: 32px;
    padding-bottom: 32px;
}

.header.transparent .header-container {
    padding-top: 32px;
    padding-bottom: 32px;
}

.header.solid .header-container {
    padding-top: 15px;
    padding-bottom: 15px;
}

  
  .header.transparent {
    background-color: transparent;
  }
  
  .header.solid {
    background-color: var(--light-gray); /* Replace with the actual light gray value */
  }
   
  .owl-carousel .owl-stage-outer{
    overflow: visible;
  }

  .testimonial-owl-carousel .owl-dots{
    text-align: center !important;
    display:flex;
    flex-direction: row;
    margin-top: 68px !important;
    width: calc(100% - 351px) !important;
}

.testimonial-owl-carousel .owl-dot {
    display: inline-block !important;
    width: 100% !important; /* Width of the bar */
    height: 4px !important;  /* Height of the bar */
    background-color: #1c1c1c10 !important;
    margin: 0 !important;
    transition: background-color 0.3s ease !important;
}
.testimonial-owl-carousel .owl-dot.active {
    background: linear-gradient(90deg, #16D0FF 6.52%, #9041FF 96.38%) !important; /* Color of the active bar */
}
.testimonial-owl-carousel .owl-dot:hover{
    background: linear-gradient(90deg, #16D0FF 6.52%, #9041FF 96.38%) !important; /* Color of the bar on hover */
}
.testimonial-owl-carousel .owl-nav {
  position: absolute;
  bottom: -20px;
  right: 0;
}
.is-active-accordion .ftvt-tab-title-mobile{
  color: var(--darkk)!important;
}

.owl-dots {
  border-radius: 4px;
  overflow: hidden;
}

@media (max-width: 991px) {
  .testimonial-owl-carousel .owl-dots {
    width: calc(100% - 250px) !important;
  }
}
@media (max-width: 767px) {
  .testimonial-owl-carousel .owl-dots {
    width: 100% !important;
    margin-top: 33px !important;
  }
  .testimonial-owl-carousel .owl-nav {
    position: absolute;
    bottom: -90px;
    left: 0;
  }
}
@media (max-width: 479px) {
  
}