.testimonials-section {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}
.testimonials-section .heading {
  padding: 50px 0;
  font-size: 40px;
  font-family: "second";
}
@media (max-width: 576px) {
  .testimonials-section .heading {
    padding: 16px 0;
    font-size: 20px;
  }
}
.testimonials-section .item {
  padding: 50px;
  background-color: var(--gray-200);
  text-align: center;
  border-radius: 25px;
}
@media (max-width: 576px) {
  .testimonials-section .item {
    padding: 0;
    margin-bottom: 25px;
  }
}
.testimonials-section .item .item-text {
  margin-bottom: 20px;
  padding: 15px;
}
@media (max-width: 576px) {
  .testimonials-section .item .item-text {
    margin-bottom: 0;
  }
  .testimonials-section .item .item-text p {
    font-size: 14px;
  }
}
.testimonials-section .item .item-info .name {
  font-size: 20px;
  margin-bottom: 15px;
}
@media (max-width: 576px) {
  .testimonials-section .item .item-info .name {
    font-size: 16px;
  }
}
.testimonials-section .item .item-info .job {
  font-style: italic;
  color: var(--main-light);
  font-size: 14px;
  position: relative;
}
.testimonials-section .item .item-info .job span:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 46%;
  width: 1%;
  height: 2px;
  background: var(--main-dark);
  z-index: 2;
}
@media (max-width: 767px) {
  .testimonials-section .item .item-info .job span:before {
    width: 6%;
    top: 50%;
    left: 33%;
  }
}
.testimonials-section .item .item-info .job span::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 46%;
  width: 1%;
  height: 2px;
  background: var(--main-dark);
  z-index: 2;
}
@media (max-width: 767px) {
  .testimonials-section .item .item-info .job span::after {
    width: 6%;
    top: 50%;
    right: 33%;
  }
}
