.news-container {
    box-shadow: 0 4px 8px -4px rgba(0, 0, 0, 0.3);
    background-color: #394273;
    /* margin-left: 79px; */
    /* margin-right: 79px; */
    /* position: relative; */
    /* margin-top: -24px; */
    overflow: hidden;
}

.news-container .title {
    position: absolute;
    background: #394273;
    height: 44px;
    display: flex;
    align-items: center;
    padding: 0 24px;
    color: white;
    font-weight: 700;
    z-index: 200;
    font-size: 18px;
}

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

.news-container ul li {
    white-space: nowrap;
    padding: 10px 24px;
    position: relative;
    color: white;
}

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

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

@keyframes scroll {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(-100%, 0);
    }
}