.prestige-card div:nth-child(2) h5{ height: 3.2rem;
 overflow: hidden;}
 .prestige-card img{
  aspect-ratio: 14/16 !important;
 }/* Add custom CSS styles below */
 
 #main-links-1> div > div {
 display: flex;
 overflow: hidden;
 white-space: nowrap;
 position: relative;
}
#main-links-1> div > div > div {
 min-width: 6rem; 
 animation: moveRight 8s linear infinite;
}
@keyframes moveRight {
 0% {
 transform: translateX(-100%);
 }
 100% {
 transform: translateX(100%);
 }
}