.scroll-container {
    /* width: 200px; */
    overflow: hidden;
    white-space: nowrap;
}

.scroll-text {
    display: inline-block;
    padding-left: 100%;
    animation: marquee 25s linear infinite;
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-100%);
    }
}
.sh-txtalign {
    text-align: justify;
    padding-top: 20px;
    line-height: 2;
}