@media (min-width: 1024px) {
.scroll-row {
    display:flex;
    justify-content:center;
    align-items:center;
    gap:30px;
    overflow:hidden;
    margin-bottom:120px;
}

.scroll-card {
    width:45%;
    transition:none !important;
    will-change:transform;
}

/* starting position: both cards close to the center */
.scroll-row .left-card {
    transform:translateX(50%);
}

.scroll-row .right-card {
    transform:translateX(-50%);
    }
}