
.ind_content{		
	margin-top: -30px;
}
	
.check li{
  opacity:0;
  white-space:nowrap;
	
 font-size: 19px;	

}
	
.check li:first-child{ animation:bringback 0.7s 2s forwards;}
.check li:nth-child(2){animation:bringback 0.7s 3s forwards;}
.check li:nth-child(3){animation:bringback 0.7s 4s forwards;}
.check li:nth-child(4){ animation:bringback 0.7s 5s forwards;}
.check li:nth-child(5){animation:bringback 0.7s 6s forwards;}
.check li:nth-child(6){animation:bringback 0.7s 7s forwards;}
.check li:nth-child(7){animation:bringback 0.7s 8s forwards;}
.check li:nth-child(8){animation:bringback 0.7s 9s forwards;}
.check li:nth-child(9){animation:bringback 0.7s 10s forwards;}
.check li:nth-child(10){animation:bringback 0.7s 11s forwards;}
.check li:nth-child(11){animation:bringback 0.7s 12s forwards;}



@keyframes bringback{
  to{opacity:1; }
}

li {
  margin: 0.25rem 0;
}


a.underline-hover-effect {
  text-decoration: none;
  color: inherit;
}

.underline-hover-effect {
  display: inline-block;
  padding-bottom: 0.25rem; /* defines the space between text and underline */
  position: relative;
}

.underline-hover-effect::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background-color: rgb(0, 255, 0);
  transition: width 0.25s ease-out;
}
.underline-hover-effect:hover::before {
  width: 100%;
  left: 0;
  right: auto;
}	