:root{--ticker-item-height:130px}@media (min-width:640px){:root{--ticker-item-height:110px}}@media (min-width:1024px){:root{--ticker-item-height:130px}}.scrolling-container{height:var(--ticker-item-height);width:100%;overflow:hidden;position:relative;display:flex;align-items:center;justify-content:center}.scrolling-container:hover .scrolling-content{animation-play-state:paused}.scrolling-content{display:flex;flex-direction:column;animation-name:scroll-vertical;animation-timing-function:linear;animation-iteration-count:infinite}.scrolling-item{display:flex;align-items:center;justify-content:center;width:100%;height:var(--ticker-item-height);text-align:center;flex-shrink:0;color:hsl(var(--primary));text-decoration:none;padding:0 1rem}@media (min-width:1024px){.scrolling-item{justify-content:flex-start;text-align:left;padding-left:.5rem}}@keyframes scroll-vertical{0%{transform:translateY(0)}to{transform:translateY(calc(-1 * var(--ticker-item-height) * var(--item-count, 2)))}}