/* Moving Icon Animation */
@keyframes moveIcon {
0% {
transform: translateY(0);
}
50% {
transform: translateY(-5px);
}
100% {
transform: translateY(0);
}
}
.moving-icon {
animation: moveIcon 2s ease-in-out infinite;
}
/* Responsive Adjustment */
@media (max-width: 1024px) {
div[style*=”calc(12.5%”] {
width: calc(25% – 15px); /* Show 4 cards per row */
}
}
@media (max-width: 768px) {
div[style*=”calc(12.5%”] {
width: calc(50% – 15px); /* Show 2 cards per row */
}
}
@media (max-width: 480px) {
div[style*=”calc(12.5%”] {
width: calc(100% – 15px); /* Show 1 card per row */
}
}
