.logo-repeater {
  width: 100%;
  position: relative;
}

.marquee-wrapper {
  overflow: hidden;
  white-space: nowrap;
  width: 100%;
  position: relative;
}

.marquee-content {
  display: flex;
  width: 250%;
  animation: marquee 25s linear infinite;
}

.carrusel-img-cont {
  width: 250px;
  height: 250px;
  border: 1px solid var(--light-grey);
  border-left: none;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 5px;
}

.carrusel-img-cont img {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

@keyframes marquee {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0%);
  }
}

@media (max-width: 767px) {
  .marquee-content {
    width: 700%;
  }

  .carrusel-img-cont {
    width: 100%;
    height: 600px;
    width: 600px;
    padding: 10px;
  }

  .carrusel-img-cont img {
    width: 100%;
    max-height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }

  .logo-repeater {
    display: grid;
  }
}

@media (min-width: 1024px) {
  .carrusel-img-cont {
    height: 230px;
    width: 230px;
  }
}

@media (min-width: 1280px) {
  .carrusel-img-cont {
    height: 250px;
    width: 250px;
  }
}

@media (min-width: 1900px) {
  .carrusel-img-cont {
    height: 350px;
    width: 350px;
  }
}

