
@media screen and (max-width: 768px) {

         .future_slider_box .scroll_slider {
            animation: scroll 12s linear infinite;
            display: flex;
            width: calc(220px * 7);
            justify-content: space-evenly;
            /* border: 1px solid black; */

        }

        @keyframes scroll {
            from {
                transform: translatex(0);
            }

            to {
                 transform: translateX(calc(-222px * 4.5));

            }

        }

    }
