.tec_fontright{
  animation-duration: 1s;
  animation-fill-mode: both;
  animation-delay: 2.2s;

}

.tec_fontright_animeon{
  animation-name: tec_fontright_show1;
}

@keyframes tec_fontright_show1 {
0% {
  transform: translateX(-100px);
  opacity:0;
    }
100% {
  transform: translateX(0%);
  opacity:1;
  }
}