.city_contact_castum {
    display: block;
    width: 100%;
    overflow-wrap: break-word;
    word-wrap: break-word;
    word-break: break-word;
    line-height: 1.625;
}

@keyframes news-marquee {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

.news-marquee {
    animation: news-marquee 20s linear infinite;
    white-space: nowrap;
}

.news-marquee:hover {
    animation-play-state: paused;
}