.testimonial-carousel-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    margin: auto;    
  }

  .testimonial-carousel {
    display: flex;
    transition: transform 0.5s ease;
  }

  .testimonial-slide {
    min-width: 100%;
    box-sizing: border-box;    
    text-align: center;
  }

  .testimonial-slide img {
    width: 140px;
    height: 100px;        
  }

  .testimonial-slide p {
    font-style: italic;
    color: #555;
  }

  .testimonial-slide h3 {
    margin-top: 10px;
    font-weight: bold;
  }

  .testimonial-slide .position {
    font-size: 14px;
    color: #888;
  }

  .testimonial-btn {
    position: absolute;
    top: 50%;
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    z-index: 10;
    border-radius: 5px;
  }

  .testimonial-prev {
    left: 10px;
  }

  .testimonial-next {
    right: 10px;
  }