.move {
    display: block;
    will-change: transform, opacity;
    opacity: 0;
    transition: transform 1s ease, opacity 1s ease;
}
.move.right {
    position: relative;
    right: 60px;
}
.move.right.visible {
    transform: translateX(60px);
    opacity: 1;
}
.move.down.visible {
    transform: translateY(20px);
    opacity: 1;
}