Hi there, any idea which module I can use to make a "partners logo carousel" like that one? I try to implement that script, but all crashed.
<style>* { margin: 0; padding: 0;}body { background: #e6ebf1; /* height: 40vh; */}.slider-area h3 { text-align: center; /* font-family: impact; */ /* font-size: 60px; */ /* font-weight: 500; */ /* text-transform: uppercase; */ /* letter-spacing: 2px; */ margin: 50px 0 50px 0; /* color: #fff; */}.wrapper { display: flex; width: 100%; margin: 0 auto; overflow: hidden; border-radius: 110px; padding: 1.5rem; background: #e6ebf1; box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px; }.item { animation: animate 25s alternate linear infinite;max-width: 100%; height: auto;}.container:hover .item { animation-play-state: paused;}@keyframes animate { 0% { transform: translate3d(0, 0, 0); } 100% { transform: translate3d(-400px, 0, 0); }}@media (max-width:767px) { .slider-area h2 { font-size: 30px; } .wrapper { width: 95%; border-radius: 0; padding: 0; }}</style> <div class="slider-area"> <h3>Our partners</h3> <div class="wrapper"> <div class="item"><img alt="" src="https://skylog.bg/media/logotest1.png"></div> <div class="item"><img alt="" src="https://skylog.bg/media/logotest2.png"></div> <div class="item"><img alt="" src="https://skylog.bg/media/logotest3.png"></div> <div class="item"><img alt="" src="https://skylog.bg/media/logotest4.png"></div> <div class="item"><img alt="" src="https://skylog.bg/media/logotest1.png"></div> </div> </div><br>