.marquee-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    height: 120px;
    background: #6f42c1;
    display: flex;
    align-items: center;
}
.marquee-container::before,
.marquee-container::after {
    content: '';
    position: absolute;
    top: 0;
    height: 100%;
    width: 100px;
    z-index: 2;
}
.marquee-container::before {
    left: 0;
    // background: linear-gradient(90deg, #f8f9fa 0%, transparent 100%);
}
.marquee-container::after {
    right: 0;
    // background: linear-gradient(90deg, transparent 0%, #f8f9fa 100%);
}
.marquee-track {
    display: flex;
    position: relative;
}
.marquee-group {
    display: flex;
    flex-shrink: 0;
    align-items: center;
}
.marquee-item {
    display: flex;
    align-items: center;
    padding: 0 30px;
    flex-shrink: 0;
    white-space: nowrap;
}
.marquee-item span {
    font-size: 35px !important;
    font-weight: 900 !important;
    color: #fff !important;
    text-transform: uppercase !important;
}