*{
	margin: 0;
	padding: 0;
}
body{
	font-family: courier;
}
.banner-text{
	width: 100%;
	position: absolute;
}
.banner-text ul{
	height: 50px;
	float: right;
}
.banner-text ul li{	
	display: inline-block;
	padding: 40px 15px;
	text-transform: uppercase;
	color: #fff;
	font-size: 20px;
}
.banner-text h2{
	text-align: center;
	color: #fff;
	font-size: 50px;
	margin-top: 20%;
	text-shadow: 3px 2px black;
}
.animation-area{
	background: linear-gradient(to left, #f9d07d, #b8800a);
	width: 100%;
	height: 100%; 
} 

.box-area{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
}
.box-area li{
	position: absolute;
	display: block;
	list-style: none;
	/* width: 25px;
	height: 25px; */	
	background: rgba(255,255,255,0);
	animation: animate 20s linear infinite;
	bottom: -50px;
	top: 1200px;
	
} 
.box-area li:nth-child(1){
	left: 86%;
	/* width: 30px;
	height: 30px; */
	animation-delay: 4s;
}
.box-area li:nth-child(2){
	left: 12%;
	/* width: 30px;
	height: 30px; */
	animation-delay: 1.5s;
	animation-duration: 10s;
}
.box-area li:nth-child(3){
	left: 70%;
	/* width: 30px;
	height: 30px; */
	animation-delay: 5.5s;
	
}
.box-area li:nth-child(4){
	left: 42%;
	/* width: 30px;
	height: 30px; */
	animation-delay: .5s;
	animation-duration: 10s;
	color: red;
}
.box-area li:nth-child(5){
	left: 65%;
	/* width: 30px;
	height: 30px; */
	animation-delay: 2s;
}
.box-area li:nth-child(6){
	left: 20%;
	/* width: 30px;
	height: 30px; */
	animation-delay: 3.5s;
}

@keyframes animate{
	0%{
		transform: translateY(0) rotate(0deg);
		opacity: 0;
	}
	49%{
		transform: translateY(-600px) rotate(45deg);
		opacity: 1;
	}
	50%{
		transform: translateY(-600) rotate(0deg);
		opacity: 1;
	}
	100%{
		transform: translateY(-1200px) rotate(-45deg);
		opacity: 0;
	}












	