.rw-words {
	position: relative;
	overflow: hidden;
	font-size: 200%;
	white-space: nowrap;
	text-overflow: ellipsis;
	display: inline-block;
  }
  
  .enable-animate{
	animation: animation1 1s;
	animation-fill-mode: forwards;
  }
  
  .disable-animate{
  }
  
  
  .rw-lastword {
	position: relative;
	overflow: hidden;
	font-size: 200%;
	white-space: nowrap;
	text-overflow: ellipsis;
	display: inline-block;
  }
  
  span:nth-child(2) { 
	  animation-delay: 1s; 
  }
  span:nth-child(3) { 
	  animation-delay: 2s; 
  }
  span:nth-child(4) { 
	  animation-delay: 3s; 
  }
  span:nth-child(5) { 
	  animation-delay: 4s; 
  }
  span:nth-child(6) {  
	  animation-delay: 5s; 
  }
  
  @keyframes animation1 {
	to {width:30px;}
  }
  
  .spanHover:hover {
	animation: hover1;
	animation-fill-mode: forwards;
  }
  @keyframes hover1 {
	to {width:100px}
  }
  
  .disable-animate {
	opacity: 1;
  }