/* - https://codepen.io/DuskoStamenic/pen/LYeWMMz */



.logo-image {
  width: 250px;
  height: auto;
  animation: scroll 60s linear infinite;
}

.logo-slide-track {
  width: 100%;
  display: flex;
  gap: 3em;
  overflow: hidden;
}

.logo-carousel {
    /* margin-top: 70px; */
    background-color: #fff;
    padding: 30px 0;
}


@keyframes scroll {
  0% {transform: translateX(0);}
  100% {transform: translatex(-1000%)}
}


/* ---------------------------------------------------------- 992px-------------------- */
@media screen and (max-width:992px) and (min-width:0) {
  .logo-image {
    width: 160px;
    height: auto;
  }
}
/* ---------------------------------------------------------- 992px-------------------- */


