   .testimonials-block {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 10px;
    }
    
    .testimonial--circle-images .testimonial-section--image img {
      border-radius: 50%;
    }
    
    .testimonial--single-item {
      font-family: Souvenir-Demi;
      display: flex;
      font-size: 20px;
      line-height: 22px;
      width: 48%;
      text-align: center;
      border: solid 1px black;
      border-radius: 200px;
      padding: 50px 30px 40px 30px;
       transition: transform 0.3s ease-in-out;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      background: black;
      color: white;
        opacity: 0;
  transform: translateY(30px);
    }
    
    @media screen and (max-width: 768px) {
      .testimonial--single-item {
        width:96%;
      }
      .testimonials--star-wrapper,
    .testimonials--text-wrapper {
      width: 100%!important;
    }
      h1{
        font-size:6.6vw!important;
      }
    }
    
    .testimonials--star-wrapper,
    .testimonials--text-wrapper {
      margin: 20px auto;
      width: 30vw;
    }
    
    .testimonial-section--image {
      text-align: center;
      display: inline-block;
    }
    
    .testimonial-section--image > div {
      display: inline-block;
    }
    
    .testimonial-section--image img {
      max-width: 200px;
      min-width: 200px;
      min-height: 200px;
      max-height: 200px;
      display: inline-block;
      object-fit: cover;
      object-position: center;
      font-family: "object-fit: cover, object-position: center";
    }
    
.testimonial--single-item.animate {
  /* Apply fade-in animation */
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
}

    
@keyframes fade-in-up {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}