.marquee {
    margin: 0 auto;
    /* width: 600px; */
    height: 30px;
    white-space: nowrap;
    overflow: hidden;
    box-sizing: border-box;
    position: relative;
}
.marquee:before, .marquee:after {
    position: absolute;
    top: 0;
    width: 50px;
    height: 30px;
    content: "";
    z-index: 1;
}
.marquee:before {
    left: 0;
    background: linear-gradient(to right, rgb(66, 189, 72) 10%, transparent 80%);
}
.marquee:after {
    right: 0;
    background: linear-gradient(to left, rgb(66, 189, 73) 10%, transparent 80%);
}
/* .marquee__content {
    width: 300%;
    display: flex;
    line-height: 30px;
    animation: marquee 50s linear infinite forwards;
} */
/* .marquee__content:hover {
    animation-play-state: paused;
}
.list-inline {
    display: flex;
    justify-content: space-around;
    width: 33.33%;
    /* reset list */
    /* list-style: none;
    padding: 0;
    margin: 0; */
/* }  */

/* @keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-66.6%);
    }
} */
