.testimonials-section {
    text-align: center;
    padding: 50px 20px;
  }
  .testimonial-title {
    text-align: center;
    padding-bottom: 10px;
}
.testimonial-row .testimonial-subtitle {
  text-align: center;
  padding-bottom: 40px;
}
.testimonial-row .testimonial-subtitle p{
  color: #1A94CF;
}
  .testimonials-row {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
  }
  
  .testimonial-box {
    width: 48.4%;
    background: #fff;
    border-radius: 12px;
    padding: 20px 20px 60px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #F0F0F0;
    box-shadow: 0px 0px 16px 0px #0000000F;
    position: relative;
}

.testimonial-box .read-more {
  opacity: 1 !important;
  visibility: visible !important;
  color: #001C29 !important;
}

.testimonial-box .read-more:hover{
  color: #8CC63F !important;
}
  
  .testimonial-text {
    text-align: center;
}
  
.testimonial-box p {
  display: contents;
}
  
  .more-text {
    display: none;
    transition: opacity 0.2s ease-in-out;
  }
  
  .read-more {
    color: #001C29;
    font-weight: 700;
    transition: .5s;
}
  
  .read-more:hover {
    color: #8CC63F;
  }
  
  .testimonial-author {
    font-weight: 700;
    color: #1A94CF;
    margin-top: 0;
    line-height: 100%;
    text-transform: uppercase;
    text-align: center;
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
}

.more-text {
  display: none;
}

.dots {
  display: inline;
}

/* When expanded — hide dots */
.testimonial-box.active .dots {
  display: none;
}
.single-dots{
  display: none;
}
.testimonial-box.active .single-dots {
  display: inline-block;
}

@media only screen and (max-width: 1399px){
    .testimonial-box {
        width: 48.1%;
    }
}

@media only screen and (max-width: 1199px){
    .testimonial-box {
        width: 47.8%;
        padding: 20px 20px 70px;
    }
}

@media only screen and (max-width: 991px){
    .testimonial-box {
        width: 48.5%;
    }
    .testimonials-row {
        gap: 20px;
    }
}
  

@media only screen and (max-width: 767px){
    .testimonials-row {
        flex-direction: column;
    }
    .testimonial-box {
        width: 100%;
    }
    .testimonials-row {
        gap: 30px;
    }
   
}