.seo-info-text-wrapper {
    background-color: black;
    color: #fff;
    text-align: center;
    padding: 12px 0;
    font-size: 15px;
    font-weight: 500;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    width: auto;
}

.seo-info-slider {
    display: inline-block;
    white-space: nowrap;
    animation: seoScroll 15s linear infinite;
}

.seo-info-slider span {
    padding-left: 100%;
    display: inline-block;
}

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

.seo-info-static {
    font-size: 16px;
    font-weight: 500;
}

@media (max-width: 768px) {
    .seo-info-slider {
        display: flex;
        width: max-content;
        animation: seoScrollMobile 13s linear infinite;
    }

    .seo-info-slider span {
        padding-left: 0;
        margin-right: 50px;
    }

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