@keyframes scroll-up {
    0% { transform: translateY(0); }
    100% { transform: translateY(-50%); }
}

.container-benefit-slider {

    .header {
        margin-bottom: 3rem;
    }

    .slider-container {
        height: 260px; /* Fits exactly 3 phrases */
        overflow: hidden;
        position: relative;

        /*--mask: linear-gradient(*/
        /*        to bottom,*/
        /*        rgba(0, 0, 0, 0) 0%,     !* Transparent at very top *!*/
        /*        rgba(0, 0, 0, 1) 10%,    !* Fully visible shortly after top *!*/
        /*        rgba(0, 0, 0, 1) 90%,    !* Fully visible until near bottom *!*/
        /*        rgba(0, 0, 0, 0) 100%    !* Transparent at very bottom *!*/
        /*);*/
        /*-webkit-mask: var(--mask);*/
        /*mask: var(--mask);*/
    }

    .slider-content {
        display: flex;
        flex-direction: column;
        animation: scroll-up linear infinite;
    }

    .phrase {
        font-size: 1.4rem;
        color: #4a6541;
        margin: 15px 0;
        line-height: 1.4;
    }

}
