/* testimonials css */
.testimonial-section-wrapper {
  position: relative;
  background-color: var(--grey);
  border-radius: 30px;
  padding: 80px;
}
@media only screen and (max-width: 1199px) {
  .testimonial-section-wrapper { padding: 60px 40px; }
}
@media only screen and (max-width: 767px) {
  .testimonial-section-wrapper { padding: 40px 20px; }
}

.testimonial-item {
  position: relative;
}
.testimonial-content {
  font-family: var(--font_generalsansmedium);
  font-size: 24px;
  line-height: 1.5;
  color: var(--primary);
  margin-bottom: 35px;
  font-weight: 500;
}
@media only screen and (max-width: 991px) {
  .testimonial-content { font-size: 20px; }
}
@media only screen and (max-width: 767px) {
  .testimonial-content { font-size: 18px; margin-bottom: 25px; }
}

.testimonial-author-info {
  display: flex;
  align-items: center;
  gap: 20px;
}
.testimonial-author-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
}
.testimonial-author-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.testimonial-author-name {
  font-size: 18px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 2px;
}
.testimonial-author-designation {
  font-size: 14px;
  color: var(--secondary);
}