

.Featured_Logo_Gallery_sec_innr_item_col {
  max-height: 121px !important;
}
.marquee {
  display: flex;
  overflow: hidden;
  width: 98vw;
}
.marquee__group {
  min-width: 100%;
  align-items: center;
  display: flex;
  position: relative;
  animation: marquee 20s linear infinite;
  justify-content: space-around;
  width: 100%;
}


#erty .marquee__group{
  animation: marquee 30s linear infinite;
}
.Featured_Logo_Gallery_sec_innr_item {
  flex: 0 0 18%;
  margin: 0 1vw;
}
@keyframes marquee {
  0%   { transform: translateX(0%); }
  100% { transform: translateX(-100%); }
}
@media (prefers-reduced-motion: reduce) {
  .marquee__group {
    animation-play-state: paused;
  }
}
.marquee--vertical {
  --mask-direction: to bottom;
}
.marquee--vertical,
.marquee--vertical .marquee__group {
  flex-direction: column;
}
.marquee--vertical .marquee__group {
  animation-name: scroll-y;
}
.Featured_Logo_Gallery_sec_innr_item_col {
  border-radius: 5px;
}
.marquee--reverse .marquee__group {
  animation-direction: reverse;
  animation-delay: -3s;
  transition: transform 300ms cubic-bezier(0.25, 1, 0.5, 1);
}
.Featured_Logo_Gallery_sec_innr_item {
  padding: 10px;
  text-align: center;
}
.Featured_Logo_Gallery_sec_innr_item_col {
  background: rgb(216 216 216 / 20%);
  padding: 20px;
  display: flex;
  align-content: center;
  justify-content: center;
  align-items: center;
  min-height: 121px;
}
.Featured_Logo_Gallery_sec_innr_item_col img {
  mix-blend-mode: multiply;
  object-fit: contain;
}
@media(min-width: 768px){
  .Featured_Logo_Gallery_sec_innr_item {
    max-width: unset;
  }
}
@media(max-width: 767px){
  .Featured_Logo_Gallery_sec_innr_item_col {
    padding: 5px;
  }
  div#cursor_follower {
    display: none !important;
  }
  .Featured_Logo_Gallery_sec_innr_item {
    flex: 0 0 18% !important;
    margin: 0 1vw;
  }
}
@media(max-width: 479px){

  .Featured_Logo_Gallery_sec_innr_item {
    padding: 0 1px;
    text-align: center;
  }
  .Featured_Logo_Gallery_sec_innr_item {
    padding: 1px;
    text-align: center;
    margin: 10px 0 !important;
  }
}

@keyframes scroll-x {
  from {
    transform: translateX(var(--scroll-start));
  }
  to {
    transform: translateX(var(--scroll-end));
  }
}
@keyframes scroll-y {
  from {
    transform: translateY(var(--scroll-start));
  }
  to {
    transform: translateY(var(--scroll-end));
  }
}
@keyframes fade {
  to {
    opacity: 0;
    visibility: hidden;
  }
}