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

         .future_slider_box .scroll_slider {
            animation: scroll 10s 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 * 3.5));

            }

        }
    }
