/*----------------------------------------*/
/*  - Testimonial
/*----------------------------------------*/
.testimonial-area {
	position: relative;
}
.testimonial-item {
  background-color: var(--light-color);
  display: flex;
  padding-top: 30px;
  padding-bottom: 30px;
  padding-left: 25px;
  padding-right: 25px;
  gap: 0 30px;
  border-radius: 10px;
  
}
.testimonial-content {
  position: relative;
}

.testimonial-content::before {
  background-image: url("../../../assets/images/testimonial/quote.png");
  background-repeat: no-repeat;
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: -7px;
  top: -10px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (max-width: 991px) {
  .testimonial-content::before {
    left: 10px;
  }
}
.testimonial-content p {
  position: relative;
  line-height: 1.4;
    font-weight: 400;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .testimonial-content p {
    font-size: 16px !important;
  }
  .testimonial-content p br {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  .testimonial-content p br {
    display: none;
  }
  .testimonial-img {
    flex: 0 0 70px;
  }
  .testimonial-content p {
    font-size: 16px !important;  
  }
  .testimonial-item {
    gap: 0 15px;
  }
}
.testimonial-content h3 {
  line-height: 1.35;
  margin-bottom: 0;
}
.testimonial-content span {
  line-height: 1.55;
}
.testimonial-pagination {
  position: relative;
  bottom: 0 !important;
  padding-top: 50px;
}
