.testimonials-module  {
  position: relative;
  overflow: hidden;
}
.testimonials-module .module-header {
  margin-bottom: 26px;
}
.testimonials-module .overlay-bg {
  position: absolute;
  left: 100%;
  transform:  translateX(-300px);
  width: 999px;
  top: 0; 
  bottom: 0;
  z-index: 100;  
  position: absolute;
  background: #fff;
  filter: blur(60px);
}
.testimonials-module .testimonials-wrap {
  position: relative;
}

.testimonials-module .testimonial-slider {
  position: relative;
  display: flex;
  position: static;
  width: 600px;
}
.testimonials-module .testimonial-slider .slick-list {
  margin-right: -999px;
  padding-right: 999px;
  margin-left: -12px;
  margin-top: -12px;
  margin-bottom: -12px;
}
.testimonials-module .item-testimonial {
  flex-shrink: 0;
  width: 100%;
  padding: 12px;
  display: flex;
}
.testimonials-module .item-testimonial .item-holder {
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 31px 32px 31px 24px;
  display: flex;
  align-items: flex-start;
  box-shadow: 0 0 12px 0 #9F9F9F3B;
}

.testimonials-module .item-testimonial .img-holder {
  flex-shrink: 0;
  width: 88px;
  height: 88px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 27px  0 0;
}
.testimonials-module .item-testimonial .img-holder img {
  width:; 100%;
  height: 100%;
  display: block;
}
.testimonials-module .item-testimonial .text-block{
  flex-grow: 1;
  overflow: hidden;
}
.testimonials-module .item-testimonial p { 
  margin: 0 0 24px;
}
.testimonials-module .item-testimonial .cite-area {
  font-size: 14px;
  line-height: 1.43;
}
.testimonials-module .item-testimonial .name {
  display: block;
  font-weight: 700;
}
.testimonials-module .item-testimonial .text {
  display: block;
}
.testimonials-module .testimonial-slider .slick-next {
  background: var(--primary-color) !important;
  color: #fff;
  border-radius: 50% !important;
  width: 52px;
  height: 52px;
  border: 0;
  display: flex;
  align-items: center;
}
.testimonials-module .testimonial-slider .slick-next svg {
  fill: #fff;
  max-width: 25px;
  display: block;
  height: auto;
}
.testimonials-module .testimonial-slider .slick-next svg * {
  fill: #fff;
  stroke: #fff !important;
}
.testimonials-module .testimonial-slider .slick-prev {
  display: none !important;
}

@media (max-width: 991px) {
  .testimonials-module .overlay-bg {
    transform: translateX(-180px);
    
  }
  .testimonials-module .testimonial-slider {
    width: 85%;
  }
  .testimonials-module .item-testimonial .item-holder {
    padding: 20px;
    margin-right: 15px;
  }
  .testimonials-module .item-testimonial .img-holder {
    width: 60px;
    height: 60px;
    margin: 0 20px 0 0;
  }
}
@media (max-width: 599px) {
 
  .testimonials-module .testimonial-slider {
    width: 300px;
  }
  .testimonials-module .item-testimonial .item-holder { 
    display: block;
    border-radius: 15px;
  }
  .testimonials-module .item-testimonial .img-holder {
    margin: 0 auto 20px;
    
  }
  .testimonials-module .overlay-bg {
    transform: translateX(-60px);
    filter: blur(30px);
  }

}