.marquee-quilt{--gap:100px;position:relative;display:flex;overflow:hidden;user-select:none;gap:var(--gap);justify-content:space-evenly}.marquee-quilt:before,.marquee-quilt:after{content:'';width:50px;height:100%;display:block;position:absolute;top:50%;transform:translateY(-50%);z-index:1}.marquee-quilt:before{background:linear-gradient(to right,#fbfaf9,transparent);left:0}.marquee-quilt:after{background:linear-gradient(to left,#fbfaf9,transparent);right:0}.marquee-wrap{flex-shrink:0;display:flex;justify-content:space-around;min-width:100%;gap:var(--gap);align-items:center;animation:marqueeScroll 40s linear infinite}.marquee-wrap figure{width:150px;flex:0 0 auto;justify-content:center;display:inline-flex}.marquee-wrap figure img{max-height:60px;width:auto;display:block !important}@keyframes marqueeScroll{from{transform:translateX(0)}to{transform:translateX(calc(-100% - var(--gap)))}}