@-webkit-keyframes dropin {
  0% {
    transform: translateY(100%);
    opacity: 1;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes dropin {
  0% {
    transform: translateY(100%);
    opacity: 1;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}


.textblind {
  position: relative;
  line-height: 1;
}
.textblind .blind {
  display: block;
  overflow: hidden;
} 
.textblind.started .blind:nth-child(1) span {
  -webkit-animation: dropin 2.0s .25s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
          animation: dropin 2.0s .25s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
}
.textblind.started .blind:nth-child(2) span {
  -webkit-animation: dropin 2.0s 0.5s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
          animation: dropin 2.0s 0.5s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
}
.textblind.started .blind:nth-child(3) span {
  -webkit-animation: dropin 2.0s 0.75s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
          animation: dropin 2.0s 0.75s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
}

#team .textblind.started .blind:nth-child(1) span, #enquire .textblind.started .blind:nth-child(1) span {
  -webkit-animation: dropin 1.0s .25s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
          animation: dropin 1.0s .25s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
}
#team .textblind.started .blind:nth-child(2) span, #enquire .textblind.started .blind:nth-child(2) span{
  -webkit-animation: dropin 1.0s 0.5s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
          animation: dropin 1.0s 0.5s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
}
#team .textblind.started .blind:nth-child(3) span, #enquire .textblind.started .blind:nth-child(3) span {
  -webkit-animation: dropin 1.0s 0.75s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
          animation: dropin 1.0s 0.75s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
}


.textblind .blind span {
  display: block;
  opacity: 0;
  transform: translateY(100%);
}
