.testimonial-section {
  margin: 80px 0;
  position: relative;
}
.testimonial-section .background {
	position: absolute;
	top: -80%;
	left: -10%;
	z-index: -1;
	pointer-events: none;
	opacity: 0.25;
}
.testimonial-section .sec-content {
  font-size: 22px;
  margin-bottom: 30px;
  max-width: 600px;
  margin: 0 auto 60px auto;
}
.testimonial-section .items {
  flex-wrap: wrap;
  gap: 30px 40px;
}
.testimonial-section .item {
  flex: 1 1 calc(33.33% - 27px);
  border-radius: 20px;
  box-shadow: 0px 0px 10px #d1d1d1;
  background-color: #fff;
  padding: 30px 25px;
  font-size: 18px;
  position: relative;
  container-type: inline-size;
  overflow: hidden;
}
.testimonial-section .item .icon{
  font-size: 32px;
  color: var(--color-2);
}
.testimonial-section .item .image {
  margin-bottom: 20px;
}
.testimonial-section .item .image img {
  max-width: 100px;
  border-radius: 10px;
}
.testimonial-section .item h3 {
  color: var(--color-1);
  margin-bottom: 0px;
}
.testimonial-section .item h3 strong {
  font-weight: 900;
  font-size: 16px;
}

@media screen and (max-width: 991px) {
  .testimonial-section .item {
    flex-basis: 100%;
    max-width: 450px;
    margin: 0 auto;
  }
}