.nectar-split-heading {
  overflow: hidden;
}

.nectar-split-heading .word {
  display: inline-block;
  overflow: hidden;
}

.nectar-split-heading .char {
  display: inline-block;
  transform: translateY(110%);
  opacity: 0;
  transition:
    transform 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.9s ease;
}

.nectar-split-heading.animated .char {
  transform: translateY(0);
  opacity: 1;
}



[data-animation="slight-fade-in-from-bottom"] {
  opacity: 0;
  transform: translateY(35px);
  transition:
    opacity 0.8s ease,
    transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

[data-animation="slight-fade-in-from-bottom"].animated-in {
  opacity: 1;
  transform: translateY(0);
}