.marquee {
    height: 297px;
    overflow: hidden;
    padding-bottom: 105px;
    background: var(--white);
}
.marquee__row {
    height: 96px;
    overflow: hidden;
}
.marquee__track {
    position: relative;
    left: 50%;
    display: flex;
    align-items: center;
    height: 96px;
    width: max-content;
    animation: marquee 140s linear infinite;
}
.marquee__row:nth-child(2) .marquee__track {
    animation-direction: reverse;
}
.marquee__item {
    position: relative;
    display: flex;
    align-items: center;
    white-space: nowrap;
    border-radius: 40px;
    background: var(--paper);
    padding: 16px 32px 16px 44px;
    margin-right: 162px;
    font: 700 32px/1.55 var(--heading-font);
    color: #1a1a1a;
}
.marquee__item::after {
    content: "";
    position: absolute;
    right: -150px;
    width: 108px;
    height: 76px;
    background: url("../img/marquee/star.svg") left center/contain no-repeat;
}
@keyframes marquee {
    from {
        transform: translateX(-33.333333%);
    }
    to {
        transform: translateX(-66.666666%);
    }
}
@media (max-width:899px) {
    .marquee__item {
        font-size: 18px;
    }
}
@media (max-width:639px) {
    .marquee__item {
        font-size: 16px;
        line-height: 1.45;
    }
}
