.green-line {
  background-color: green;
  height: 3px;
  width: 98px;
}


@keyframes slide {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-100%);
  }
}

.logos {
  overflow: hidden;
  padding: 60px 0;
  background: transparent;
  white-space: nowrap;
  position: relative;
  width: 100vw;
  max-width: 1400px !important;
}

.logos:before,
.logos:after {
  position: absolute;
  top: 0;
  width: 250px;
  height: 100%;
  content: "";
  z-index: -1;
}

.logos:before {
  left: 0;
  background: linear-gradient(to left, rgba(255, 255, 255, 0), white);
}

.logos:after {
  right: 0;
  background: linear-gradient(to right, rgba(255, 255, 255, 0), white);
}

.logos:hover .logos-slide {
  animation-play-state: paused;
}

.logos-slide {
  display: inline-block;
  animation: 35s slide infinite linear;
}

.logos-slide img {
  height: 30vh;
  margin: 0 1rem;
 min-width: 14vw;
}


@media screen and (max-width:600px) {


  .logos {
    width: 100vw;
  }

}
@media screen and (max-width:1000px) {


  .logos-slide img {
    height: 17vh;
    margin: 0 0.5rem;
    min-width: 9vw;
}

}