.sch_img .box_st2 .img { display: flex; height: 15rem; overflow: hidden; }
.sch_img .box_st2 .img img { max-width: 100%; height: 100%; animation: flowRol 15s linear infinite; }
.sch_img .tbl_st a:hover,
.sch_img .tbl_st a:focus { text-decoration: underline; }


@keyframes flowRol { 
    0% { transform: translateX(0); } 
    100% { transform: translateX(-100%); } 
}