.m-element{
    height: 80px;
    width: 200px;
    display: grid;
    place-items: center;
    padding: 12px;
    margin: 4px;
    background-color: aliceblue;
    border: 1px solid #dde6ed;
    box-sizing: border-box;
    border-radius: 8px;
}
.m-element img{
/*
    height: 100%;
    widows: 100%;
*/
    
}
.marq{
    display: grid;
    place-items: center;
    position: relative;
    overflow: hidden;
    height: 110px;
    width: 100%
    
}
.marq-track{
    display: flex;
    width: calc(200px*17);
    animation: play 15s linear ;
    animation-iteration-count:infinite
}
@keyframes play{
    0%{
        transform: translateX(0)
    }
    100%{
        transform: translateX(calc(-180px*7.1))
    }
}
