/* Slider testimonials */
.info-testimonial {
  height: 381px;
  padding: 33px 29px;
  border: 1px solid var(--clr-light-gray);
  border-radius: 9px;
  gap: 22px;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-content: center;
  justify-content: space-between;
  margin: 0 auto;
}
.cetera-testimonial-box {
  display: flex;
  align-items: center;
  position: relative;
  gap: 18px;
}
.testimonial-avatar {
  min-width: 97px;
}
.testimonial-avatar img {
  width: 97px;
  height: 97px;
  border-radius: 50%;
}
.info-testimonial p {
  font-family: var(--ff-primary);
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  margin-bottom: 0px !important;
}
.cetera-testimonial-text p:first-child {
  color: var(--clr-purple);
  margin-bottom: 0px !important;
  padding-bottom: 6px;
}

.cetera-testimonial-text p:last-child, .cetera-testimonial-text p:nth-child(2) {
  padding-bottom: 0px;
  color: var(--clr-dark-gray);
}
.cetera-testimonial-text p {
  font-family: var(--ff-primary);
  font-style: normal;
  font-weight: 600 !important;
  font-size: 16px !important;
  line-height: 22px !important;
  margin: 0px;
}

/* Hide mobile slider on desktop, show desktop slider */
.cetera-testimonial-slider-desktop {
  display: block;
}

.cetera-testimonial-slider-mobile {
  display: none;
}

/* Show mobile slider on small screens, hide desktop slider */
@media (max-width: 991.98px) {
  .cetera-testimonial-slider-desktop {
    display: none;
  }
  .cetera-testimonial-slider-mobile {
    display: block;
  }
}

/* Slick Custom dots */
.slick-dots {
  justify-content: center;
  margin-top: 50px !important;
  bottom: unset !important;
}

.content-main ul>li::before{
  content: "" !important;
}
/* Hide default slick button content */
.slick-dots li button:before {
  display: none !important;
}

/* Custom dot wrapper */
.slick-dots li {
  margin: 0 6px;
}

.slick-dots li button {
  background-color: var(--clr-light-gray) !important;
  color: var(--clr-light-gray) !important;
  border-radius: 50%;
  opacity: 1;
}

.slick-dots li.slick-active .custom-dot {
  background: var(--clr-dark-gray)!important;
}

.slick-dots {
  position: relative !important;
  z-index: 10;
}
/* Responsive styles for testimonial slider */
@media (min-width: 360px) and (max-width: 399.98px) {
  .info-testimonial {
    min-height: 460px;
    margin: 0 15px;
  }
}
@media (min-width: 400px) and (max-width: 575.98px) {
  .info-testimonial {
    min-height: 390px;
    margin: 0 15px;
  }
}
@media (min-width: 576px) and (max-width: 991.98px) {
  .info-testimonial {
    width: 440px;
    height: 410px;
  }
}
