/******* Do not edit this file *******
Woody Code Snippets CSS and JS
Saved: Feb 03 2026 | 12:51:22 */
.fx-text {
  opacity: 0 !important;
  transform: translateY(60px) !important;
  transition: all 1.1s ease !important;
}

.fx-text.in-view {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

.fx-img img{
  opacity: 0 !important;
  transform: translateY(60px) rotate(10deg) !important;
  transition: all 1.1s ease !important;
}

.fx-img.in-view img{
  opacity: 1 !important;
  transform: translateY(0) rotate(0) !important;
}
