@keyframes hscroll-horizontal {
    0% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(-100%);
    }
}
.hscroll-container {
    overflow-x: auto;
    white-space: nowrap;
    position: relative;
}
.hscroll-content {
    display: inline-block;
    /* animation: hscroll-horizontal 20s linear infinite; */
}
