body{
	margin:0; 	
 	font-weight: 400;}

 *{
 	box-sizing: border-box; }

 .containertext{
 	max-width: 1170px;
 	width: 100%;
 	margin:auto; }

 .hometext{
 	/*height: 100vh;*/
 	/*background-image: url("images/bg.jpg");*/
 	background-size: cover;
 	background-position: center;
 	display: flex;
 	flex-wrap: wrap;
 	padding:50px 15px;
 	position: relative;}

 .hometext::before{
 	content: '';
 	position: absolute;
 	left:0;
 	top:0;
 	width: 100%;
 	height: 100%;
 	background-color: transparent;
 	z-index: 1;}

 .hometext .home-text{
 	text-align: center;
 	position: relative;
 	z-index: 2;}

.hometext .home-text h1{
	color:#CBFE00;
	font-size: 20px;
	color:#ffffff;
	/*line-height: 56px;*/
	font-weight: 700;
	margin:0 0 20px;}

.hometext .home-text h2{	
	font-size: 15px;
	color:#ffffff;
	/*line-height: 56px;*/
	font-weight: 700;
	margin:0 0 20px;}

.hometext .home-text p{
	margin:0;
	overflow: hidden;}

.hometext .home-text p span{
    font-size: 23px;
    color: #CBFE00;
    font-weight: 700;
    display: inline-block;
    line-height: 46px;
    display: none;}

.hometext .home-text p span.text-in{
	display: block;
	animation: textIn .5s ease;}

.hometext .home-text p span.text-out{
	animation: textOut .5s ease;}

@keyframes textIn{
	0%{transform: translateY(100%);}
	100%{transform: translateY(0%);}
}

@keyframes textOut{
	0%{transform: translateY(0%);}
	100%{transform: translateY(-100%);}
}