/* Auto-generated by admin script - Tue 20 May 01:06:11 EEST 2025 */
.section-image {
  max-width: 100%;
  opacity: 0;
  transition: var(--animation-duration, 3s) ease-in-out;
}

/* Fade animation */
.animate-fade {
  opacity: 1;
}

/* Slide animation */
.section-image[data-animation='slide'] {
  transform: translateX(-50px);
}
.animate-slide {
  opacity: 1;
  transform: translateX(0) !important;
}

/* Zoom animation */
.section-image[data-animation='zoom'] {
  transform: scale(0.5);
}
.animate-zoom {
  opacity: 1;
  transform: scale(1) !important;
}

/* Bounce animation */
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
  40% {transform: translateY(-30px);}
  60% {transform: translateY(-15px);}
}
.animate-bounce {
  opacity: 1;
  animation: bounce var(--animation-duration, 3s) ease-in-out;
}
