.slider {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1050;
    width: 100%;
    height: 40px;
    background: #0d1f14;
    overflow: hidden;
    white-space: nowrap;
}

.slide-track {
    display: flex;
    width: max-content;
    animation: scroll 30s linear infinite;
}

.slide {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 20px;
    color: white;
    flex-shrink: 0;
}

.slide img {
    width: 25px;
    height: 25px;
    margin-top: 6px;
}

.slide p {
    margin-top: 5px;
    margin-bottom: 0;
    font-size: 14px;
    white-space: nowrap;
}

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

    to {
        transform: translateX(-50%);
    }
}

@media screen and (max-width: 768px) {
    .slider {
        height: 35px;
    }

    .slide {
        gap: 6px;
        padding: 0 10px;
    }

    .slide img {
        width: 20px;
        height: 20px;
        margin-top: 4px;
    }

    .slide p {
        font-size: 12px;
        margin-top: 4px;
    }
}
@media (max-width: 768px) {
    .slider {
        height: 35px;
    }
}