@keyframes bounce {
  from {
    transform: translateY(0px);
  }
  to {
    transform: translateY(-15px);
  }
}
@-webkit-keyframes bounce {
  from {
    transform: translateY(0px);
  }
  to {
    transform: translateY(-15px);
  }
}



@keyframes showTopText {
  0% { transform: translate3d(0, 100%, 0); }
  40%, 60% { transform: translate3d(0, 50%, 0); }
  100% { transform: translate3d(0, 0, 0); }
}
@keyframes showBottomText {
  0% { transform: translate3d(0, -100%, 0); }
  100% { transform: translate3d(0, 0, 0); }
}

.texteffects	{    margin: 0px auto;    text-align: center;    position: relative;	height:100px;}

.wrap {  width:600px;margin:auto;height:250px;position:relative; }

.texteffect-item {
  color: #222;
  height: 200px;
  left: 15%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 200px;
  z-index:99;
}

.texteffect-item-2  {left:38%;}
.texteffect-item-3  {left:62%;}
.texteffect-item-4  {left:85%;}

.texteffect-item > div {
  height: 50%;
  overflow: hidden;
  position: absolute;
  width: 100%;
  text-align:center;
}
.texteffect-item > div div {
 /* font-size: 12vmin;*/
  padding: 2vmin 0;
  position: absolute;
  text-align: center;
width: 100%;
}
.texteffect-item > div div span {
  display: block;
}
.texteffect-item > div.text-top {
  border-bottom: 1px solid #06c;
  top: 0;
}
.texteffect-item > div.text-top div {
  animation: showTopText 1s;
  animation-delay: 0.5s;
  animation-fill-mode: forwards;
  bottom: 0;
  transform: translate(0, 100%);
}
.texteffect-item > div.text-top div span:first-child {
 color:#06c;
 font-size:1.4rem !important;font-weight:bold;
}
.texteffect-item > div.text-bottom {
  bottom: 0;
  font-size:1.5rem !important;font-weight:normal;
}
.texteffect-item > div.text-bottom div {
  animation: showBottomText 0.5s;
  animation-delay: 1.75s;
  animation-fill-mode: forwards;
  top: 0;
  transform: translate(0, -100%);
}
