* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  background: #111;
  color: #fff;
}

.logo-section {
  padding: 10px 10px;
  text-align: center;
  overflow: hidden;
}

.logo-section h2 {
  margin-bottom: 50px;
  font-size: 32px;
  font-weight: 600;
}

.logo-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.logo-track,.logo-track2{
  display: flex;
  width: calc(250px * 12);
}

.logo-track {
  animation: scroll 100s linear infinite;
}

.logo-track2 {
  animation: scroll2 100s linear infinite;
}


.logo {
  width: 250px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2px;
}

.logo img {
  max-width: 140px;
  transition: 0.3s ease;
}


@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@keyframes scroll2 {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}


/* Responsive */
@media(max-width: 768px) {
  .logo {
    width: 180px;
  }

  .logo-track {
    width: calc(180px * 12);
  }
}