
.custom-fade-in {
  opacity: 0;
  transition: opacity 3.0s ease-out, transform 3.0s ease-out;
  will-change: opacity;
}

.custom-fade-in.visible {
  opacity: 1;
  transform: none;
}

.custom-fade-in-no-scroll {
  opacity: 0;
  transition: opacity 3.0s ease-out, transform 3.0s ease-out;
  will-change: opacity;
}

.custom-fade-in-no-scroll.visible {
  opacity: 1;
  transform: none;
}
