.uc-voprosy {
  transform: scaleY(0);
  transform-origin: top;
  opacity: 0;
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.uc-voprosy.active {
  transform: scaleY(1);
  opacity: 1;
}