.scrolling_logos .zonka_center_head h4{
font-size: 16px !important;
font-weight: 500;
line-height: 22px; 
text-transform: uppercase;
}
.scrolling_logos .logo_marquee {
  width: 100vw;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin: 0 auto;
  max-width: 100%;
}
.scrolling_logos .logo_scroll_right {
  display: flex;
  animation: marqueeRight 70s linear infinite running;
  margin-top: 1.25rem;
}
.scrolling_logos .logo_marquee:hover .logo_scroll_right{
  animation-play-state: paused;
}
.scrolling_logos .logo_marquee img {
  max-height: 42px;
  margin: 0 2rem;
  transition: all 5s ease;
}
@keyframes marqueeLeft {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translate(-50%);
  }
}
@keyframes marqueeRight {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translate(0);
  }
}

@media (max-width: 767px){

 .scrolling_logos .logo_scroll_right img{
  max-height: 40px;
  }
}
