Back to Top
.scroll-image-row {
display: flex;
justify-content: center;
gap: 30px;
flex-wrap: wrap;
padding: 40px 20px;
}
.scroll-image {
opacity: 0;
transform: translateY(40px);
transition: opacity 0.8s ease-out, transform 0.8s ease-out;
width: 100%;
max-width: 400px;
border-radius: 12px;
}
.scroll-image.visible {
opacity: 1;
transform: translateY(0);
}