.marquee {
    overflow: hidden;
    background: #000000;
    width: 100%;
    display: flex;
    justify-content: center;
}

.marquee_header {
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
}
.marquee_header .section_title {
    margin: 20px;
    display: block;
    font-size: 22px;
}
.marquee__inner {
    display: flex;
    width: max-content;
    animation: marquee 15s linear infinite;
}

.marquee__group {
    display: flex;
}

.marquee__group span {
    margin: 0 1.5rem;
    white-space: nowrap;
    background: #000000;
    color: white;
    padding: 4px 16px 4px 12px;
    border-radius: 6px;
    font-size: 1.2rem;
}

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

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

.marquee .marquee__inner img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    display: block;
}