@-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 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;
}
.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;
}
.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%);
}


.life_img_wrap, .team_img_wrap, .life_grid_img_wrap {
    overflow:hidden;
    position:relative;
    /* display:inline-block; */
}

.life_img_wrap:after, .team_img_wrap:after, .life_grid_img_wrap:after {
    content:" ";
    position:absolute;
    display:block;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:#ebe9e1;
    z-index:2;
    transition: all 2s ease;
}

.life_img_wrap.started:after, .team_img_wrap.started:after, .life_grid_img_wrap.started:after {
    top:100%
}



