@keyframes ani-right{
	0% {
	  opacity:0;
	  transform: translateX(0px);
	}
	100% {
	  opacity:1;
	  transform: translateX(-200px);
	  
	}
  }
