@keyframes slides {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

.logos {
  overflow: hidden; 
  padding: 30px 0px;
  white-space: nowrap;
  position: relative;
}

.logos:before, .logos:after {
  position: absolute;
  top: 0;
  content: '';
  width: 250px;
  height: 100%;
  z-index: 2;
}

.logos:before {
  left: 0;
  background: linear-gradient(to left, rgba(255,255,255,0), rgb(255, 255, 255));
}

.logos:after {
  right: 0;
  background: linear-gradient(to right, rgba(255,255,255,0), rgb(255, 255, 255));
}

.logo_items {
  display: inline-block;
  animation: 50s slides infinite linear;
}

.logos:hover .logo_items {
  animation-play-state: paused;
}

.logo_items img{
  height: 100px;
  width: 200px;
}

/* Mobil cihazlar için medya sorgusu */
@media (max-width: 768px) {
  .logos:before, .logos:after {
    display: none; /* Mobilde beyazlıkları tamamen kaldırıyoruz */
  }

  .logo_items {
    animation: 30s slides infinite linear; /* Mobilde kaydırma hızını artırabilirsiniz */
  }

  .section-tittle {
    margin-bottom: 50px;
  }
