@keyframes slide {
    from {
      transform: translateX(0);
    }
    to {
      transform: translateX(-270%);
    }
  }
  
  
  .testimonios {
    overflow-x: hidden;
    overflow-y: visible !important;
    height: 600px;
  }
  
  .testimonios:hover .testimonios-slide {
    animation-play-state: paused ;

  }
  
  .testimonios-slide {

    display: inline-block;
    animation: 63s slide infinite linear;
    gap: 150px;
  }

  .cards {
    white-space: wrap;
   
   
     
  }

  .feature-item {
    height: 550px;
    width:  476px;
}


/* Media Query para pantallas de 993px a 1999px */
@media (max-width: 1999px) and (min-width: 993px) {
  .cards {
    flex: 0 0 calc(33.33% - 10px); 
    margin-right: 30px;
  }
}

/* Media Query para pantallas de 768px a 500px */
@media (max-width: 767px) and (min-width: 500px) {
  .testimonios-slide {
    gap: 30px; /* Espacio entre las tarjetas en pantallas medianas */
  }

  .cards {
    flex: 0 0 calc(50% - 10px); /* Ancho de cada tarjeta */
    margin-right: 10px; /* Margen derecho entre las tarjetas */
  }
}

/* Media Query para pantallas menores a 500px */
@media (max-width: 499px) {
  .cards {
    flex: 0 0 100%; /* Las tarjetas ocupan todo el ancho disponible */
    margin-right: 0; /* Sin margen derecho */
  }
}

