@keyframes scroll{
0%{transform:translateX(0)}
100%{transform:translateX(-50%)}
}
.custom-slider{display:flex;align-items:center;height:13.4rem;overflow:hidden;position:relative;width:100%;background-color:#f7f7f7}
.custom-slider-title{margin:0 auto;margin-bottom:3.6rem;font-family:"IvyPresto Headline","Times New Roman",Times;font-weight:300;font-size:3.6rem;line-height:115%;text-align:center}
.custom-slider .slide-track{animation:scroll 120s linear infinite;display:flex;align-items:center;gap:8.2rem;width:-moz-fit-content;width:fit-content}
.custom-slider .slide{display:flex;align-items:center;gap:.8rem;min-width:15rem;min-height:15rem;max-width:15rem;max-height:15rem}
.custom-slider .slide:first-child{padding-left:5.6rem}
.custom-slider .slide img{width:100%;height:100%;-o-object-fit:contain;object-fit:contain;filter:grayscale(1)}
.custom-slider .slide svg{min-width:2.4rem;min-height:2.4rem}
.custom-slider .slide span{font-size:1.8rem;line-height:125%;text-wrap-mode:nowrap}
@media screen and (max-width:990px){
.custom-slider-title{margin-bottom:3.2rem;font-size:2.4rem;text-align:start;padding-left:2.4rem}
.custom-slider .slide{min-width:10rem;min-height:10rem;max-width:10rem;max-height:10rem}
}