
.igs-scroller {
    width: 100%;
    height: 150px;
    overflow: hidden;
    white-space: nowrap;
    display: flex;
    animation: scroll 10s linear infinite;
}
.igs-image {
    height: 100%;
    margin-right: 10px;
}
@keyframes scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-100%); }
}
