.testimonial-slider {
  .testimonial-slide {
    border: 1px solid #e9e9e9;
    padding: 32px;
    border-radius: 26px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    height: auto;

    h3.tes-title {
      font-family: Manrope;
      font-weight: 500;
      font-size: 20px;
      line-height: 30px;
      letter-spacing: 0%;
      color: #056a38;
      margin: 0;
      max-width: 340px;
    }

    p.tes {
      font-family: Manrope;
      font-weight: 400;
      font-size: 16px;
      line-height: 24px;
      letter-spacing: 0%;
      color: #8c8c8c;
      margin: 0;
    }

    h4.customer-name {
      font-family: Manrope;
      font-weight: 500;
      font-size: 18px;
      line-height: 27px;
      letter-spacing: 0%;
      color: #000000;
      margin: 0;
      margin-top: auto;
    }
  }

  .testimonial-navigations {
    display: flex;
    justify-content: end;
    gap: 20px;
    margin-top: 42px;
    
    div.testimonial-nav{
      padding: 12px;
      border: 1px solid #D4D4D4;
      display: inline-flex;
      border-radius: 100%;
      cursor: pointer;
      &.prev {}
      &.next {}
      svg {}
    }
  }
}


@media (max-width: 1024px) {
    .testimonial-slide {
        padding: 20px !important;
        border-radius: 13px !important;
        gap: 14px !important;
    
        h3.tes-title {
          font-size: 18px !important;
          line-height: 26px !important;
          max-width: 100% !important;
        }
    
        p.tes {
          font-size: 14px !important;
          line-height: 22px !important;
        }
    
        h4.customer-name {
          font-size: 16px !important;
          line-height: 22px !important;
        }
      }
}