.scrolling-banner-container {
    width: 100%;
    overflow: hidden; /* Hides content outside the container */
    white-space: nowrap; /* Prevents content from wrapping */

    background-color: #123b57;
    color: #fff;
    padding-top: 15px;
    padding-bottom: 15px;
}

.scrolling-banner-container a {
    color: #fff;
}

.scrolling-banner-content {
    display: inline-block;
    animation: scroll-left 120s linear infinite; /* Adjust duration and timing */
}

.scrolling-banner-content .dot {
    padding-left: 10px;
    padding-right: 15px;
    color: #3b6e8f;
}

@keyframes scroll-left {
    0% { transform: translateX(10%); } /* Starts off-screen to the right */
    100% { transform: translateX(-100%); } /* Ends off-screen to the left */
}