
.marquee {
  width: 100vw;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  overflow: hidden;
    margin: 15px auto;
  max-width: 100%;
}
.Marquee-content-left {
  display: flex;
  animation: marqueeLeft 50s linear infinite running;
}
.home_customers_content:hover .Marquee-content-left{
  animation-play-state: paused;
}
.home_customers_card {
  width: 275px;
  margin: 0 0.5em;
  transition: all 0.2s ease;
}
@keyframes marqueeLeft {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translate(-50%);
  }
}
.home_customers_card .stars9 {
    background-image: url(https://f.hubspotusercontent40.net/hubfs/4159648/zonka%20new/4%20and%20half%20star.svg);
    width: 100%;
    height: 15px;
    background-repeat: no-repeat;   
}
.home_customers_card .stars10 {
    background-image: url(https://f.hubspotusercontent40.net/hubfs/4159648/zonka%20new/5%20star.svg);
    width: 100%;
    height: 15px;
    background-repeat: no-repeat;
}
