#ticker-wrap {
    animation-name: tick;
    animation-duration: 30s;
    animation-iteration-count: infinite;
    animation-fill-mode: both;
    animation-timing-function: linear;
}

@keyframes tick{
    from {transform: translateX(-500px);}
    to   {transform: translateX(-2000px);}
}

.card{
    transition: transform .2s;

}

.card:hover {
    transform: scale(1.05);
}

body{
    overflow-x: hidden !important; 
}

html{
    overflow-x: hidden;
}

