.text-focus-in1 {
  animation: text-focus-in 0.8s cubic-bezier(0.755, 0.05, 0.855, 0.06) 0s both;
}
.text-focus-in2 {
  animation: text-focus-in 0.8s cubic-bezier(0.755, 0.05, 0.855, 0.06) 0.4s both;
}
.text-focus-in3 {
  animation: text-focus-in 0.8s cubic-bezier(0.755, 0.05, 0.855, 0.06) 0.8s both;
}

/* animation text-focus-in */

@-webkit-keyframes text-focus-in {
  0% {
    filter: blur(12px);
    opacity: 0;
  }
  100% {
    filter: blur(0px);
    opacity: 1;
  }
}
@keyframes text-focus-in {
  0% {
    filter: blur(12px);
    opacity: 0;
  }
  100% {
    filter: blur(0px);
    opacity: 1;
  }
}
