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

.project_img_wrap img{ opacity: 1;  -webkit-transition: all .5s ease-out;
  -moz-transition: all .5s ease-out;
  -o-transition: all .5s ease-out;
  transition: all .5s ease-out;
background: transparent;}

.project_link:hover .project_img_wrap img{opacity: 0.75;
 -webkit-transition: all .5s ease-out;
  -moz-transition: all .5s ease-out;
  -o-transition: all .5s ease-out;
  transition: all .5s ease-out;}
