/* Начальное состояние блока */
.uc-fade-up {
  opacity: 0;
  transform: translateY(30px); /* смещение вниз на 30px */
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

/* Состояние, когда блок в зоне видимости */
.uc-fade-up.show {
  opacity: 1;
  transform: translateY(0);
}