.media {
  overflow: hidden;
}
.post-11 tbody{
  display: flex;
  justify-content: space-between;
  animation:rolling 18s linear infinite;
}
 @keyframes rolling {
            from {
                transform: translateX(0);
            }

            to {
                transform: translateX(-50%);
            }
 }