.testimonials {
  position: relative;
  max-width: 100%;
  margin: 0 auto;
}

.testimonials .swiper {
  /*   padding-top: 24px; */
  padding: 20px 20px 45px 20px
    overflow: visible;
}

.testimonials .swiper-wrapper {
  align-items: center;
}

.testimonial {
  padding: 32px;
  border-radius: var(--border-radius-md);
  box-shadow: var(--box-shadow-lg);
  background: linear-gradient(90deg, #50DCE5 0%, #80B747 100%);;
  width: 100% !important;
  min-height: 350px;
  font-family: 'Inter';
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial__logo {
  max-height: 60px;
  float: right;
  background-color: white;
  border-radius: 8px;
  object-fit: contain;
  padding: 4px;
  width: auto;
}


.testimonial__title {
  margin-bottom: 12px;
  font-weight: 600;
  font-size: 24px;
  font-family: 'Inter';
}

.testimonial__quote {
  line-height: 1.5;
  margin-bottom: 32px;
}
.author__wrapper{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}


.testmonial__author {
  display: flex;
  align-items: center;
}

.testimonial__avatar {
  height: 64px;
  width: 64px;
  border-radius: 50%;
  margin-right: 20px;
}

.testimonial__info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.testimonial__info p {
  line-height: 1.3;
  margin-top: 0px!important;
  margin-bottom: 0px!important;
}

.testimonial__author-title{
  font-weight: 400;
  font-size: 18px;
}

.testimonial__name {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 4px;
}

.testimonials .swiper-pagination-bullet {
  height: 12px;
  width: 12px;
  margin: 0 6px !important;
  background-color: var(--neutral-gray-xlight);
  opacity: 1;
}

.testimonials .swiper-pagination-bullet-active {
  background-color: #80B747;
  width: 20px;
  height: 10px;
  border-radius: 5px;
}

@media (min-width: 640px) {
  .testimonial {
    width: 800px !important;
  }
}

@media (min-width: 768px) {
  .testimonials .swiper {
    padding: 20px 20px 45px 20px
      /*     padding: 40px 0 80px; */
  }

}

@media (min-width: 1024px) {
  .testimonials .swiper {
    padding: 20px 20px 45px 20px
      /*     padding: 40px 0 80px; */
  }
}

@media (max-width: 768px) {  
  .testimonial__logo__wrapper{
    display: flex;
    justify-content: flex-end;
    width: 100%;
  }
}