.slider-container {
    padding: 60px 20px;
    text-align: center;
    width:100%;
}


  /* Style 4 */

.testimonial-card {
    display: flex;
    background: transparent;
    color: #111;
    padding: 20px;
    margin:40px;
    align-items: center;
    gap: 20px;
}

.testimonial-card blockquote {
    border-left: none;
}

.testimonial-card blockquote .testimonial-content:before{
    content: '\275D';
}

.testimonial-card blockquote .testimonial-content:after{
    content: '\275E';
}

.testimonial-image {
    display: flex;
    justify-content: center; /* Centers the image horizontally */
    align-items: center;     /* Centers the image vertically */
    height: 100%;            /* Ensure the parent has a height to center vertically */
    padding-bottom:20px;
}

.testimonial-image img.img-round {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 50%;
}


.testimonial-content blockquote {
    margin: 0;
    font-style: italic;
    position: relative;
    line-height:18px;
}

.testimonial-content blockquote span{
    font-size: 14px;
    color:#111;

}


.testimonial-content p {
    font-size: 14px;

}

.author-name {
    margin: 0px;
    font-size: 1.2rem;
    font-weight: bold;
    text-transform: uppercase;
}

.author-title {
    font-style: italic;
    font-size: 0.9rem;
    color: #111;
}

  /* Style 4 */

  /* Arrows */
  .slick-prev,
  .slick-next {
    font-size: 0;
    line-height: 0;
    position: absolute;
    top: 50%;
    width: 20px;
    height: 20px;
    transform: translateY(-50%);
    cursor: pointer;
    background: transparent;
    border: none;
    outline: none;
    color: transparent;
  }
  
  .slick-prev:hover,
  .slick-next:hover,
  .slick-prev:focus,
  .slick-next:focus {
    background: transparent;
    outline: none;
  }
  
  .slick-prev:before,
  .slick-next:before {
    content: "";
    display: block;
    width: 20px;
    height: 20px;
    background-repeat: no-repeat;
    background-position: center;
  }
  
  .slick-prev {
    left: -25px;
  }
  
  .slick-prev:before {
    background-image: url('../images/arrow-left-2.svg');
  }
  
  [dir='rtl'] .slick-prev {
    right: -25px;
    left: auto;
  }
  
  [dir='rtl'] .slick-prev:before {
    background-image: url('../images/arrow-right-2.svg');
  }
  
  .slick-next {
    right: -25px;
  }
  
  .slick-next:before {
    background-image: url('../images/arrow-right-2.svg');
  }
  
  [dir='rtl'] .slick-next {
    left: -25px;
    right: auto;
  }
  
  [dir='rtl'] .slick-next:before {
    background-image: url('../images/arrow-left-2.svg');
  }
  
  .slick-disabled:before {
    opacity: 0.25 !important;
  }
  