.news-container9 {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    font-family: "Roboto", sans-serif;
    box-shadow: 0 4px 8px -4px rgba(0, 0, 0, 0.3);
    /* top: 90px;
    z-index: 3;
    background: white; */
    /* top: 65px; */
    /* top: 106px; */
    top: 72px;
    z-index: 3;
    background: white;
    /* padding: 20px 0px; */
    padding: 26px 0px 5px 0px;
}

.news-container9 .title {
    position: absolute;
    background: #7E1242;
    height: 100%;
    display: flex;
    align-items: center;
    /* padding: 24px 10px 5px 10px; */
    padding: 55px 10px 5px 10px;
    color: white;
    font-weight: bold;
    z-index: 200;
    top: 0px;
}

.news-container9 ul {
    display: flex;
    list-style: none;
    margin: 0;
    animation: scroll 25s infinite linear;
}

.news-container9 ul li {
    white-space: nowrap;
    padding: 10px 24px;
    color: #494949;
    background: #ffff;
    position: relative;
}

.news-container9 ul li::after {
    content:"";
    width: 1px;
    height: 100%;
    background: #b8b8b8;
    position: absolute;
    top: 0;
    right: 0;
}

.news-container9 ul li:last-child::after {
    display: none;
}

@keyframes scroll {
    from {
        transform: translateX(100%);
    }

    to {
        transform: translateX(-1083px);

    }
}