﻿@keyframes slide {
  0% {
    transform: translateX(0%);
  }

  100% {
    transform: translateX(-100%);
  }
}

.logos {
  padding: 60px 0;
  background: white;
  white-space: nowrap;
  overflow: hidden;
  /* Ẩn phần nội dung vượt ra ngoài khung */
  position: relative;
}

.logos:hover .logos-slide {
  animation-play-state: paused;
}

.logos-slide {
      display: inline-block;
    animation: slide 30s linear(0 0%, 0.12 94.49%) infinite;
    width: auto;
}

.logos-slide img {
      height: 100px;
    margin: 0 50px;
}


@media only screen and (max-width: 950px)
{

.logos-slide img {
  height: 50px;
  margin: 0 20px;
}
}

.logos-slide a
{
    
        padding: 0px 20px 0px 0px;
    font-size: 16px;
    color: #1665b1 !important;
    font-weight: 700;}