.testi-intro {
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.testi-intro .testi-quotes {
/*   display: flex;
  justify-content: center; */
/*   flex-wrap: wrap; */
/*   padding: 0; 
  gap: 58px; */
}
.testi-intro .text-quote {
  color: #3B3B3B;
  font-size: 20px;
  font-weight: 500;
  line-height: 26px;
  letter-spacing: -0.08px;
}


.testi-intro .testi-quotes .quote-logo {
  align-items: flex-start;
  display: flex;
  justify-content: left;
  margin-bottom: 0;
  width: 100%;
  min-height: 65px;
}
.testi-intro .testi-quotes .quote-logo img {
  max-height: 40px;
  object-fit: cover;
}

.testi-intro .testi-quotes .quote-text {
  font-family: Graphik;
  font-size: 20px;
  line-height: 32px;
  letter-spacing: -0.04px;
}


@media (max-width:960px) {
  .testi-intro .testi-quotes .testi-quotes {
    padding: 0px 16px 24px 16px; 
  }

  .testi-intro .testi-quotes .quote {
    flex-basis: 100%;  /* Sets each quote to take the full width of the container */
    max-width: 100%;  /* Ensures no quote exceeds the width of the container */
  }
}

{#
.testi-quotes {
  display: flex;
  animation: scrollLogo 30s linear infinite; 
  margin-bottom: 0px;
  align-items: center;
}

@keyframes scrollLogo {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%); /* Assuming logos are duplicated */
  }
}
#}
