*{
margin:0;
padding:0;
outline:none;
border:none;
}
.banner-wraper{
	width:100%;
	height:100vh;
	position:relative;
}
.wraper-box{
	position:absolute;
	width:100%;
	height:100%;
	top:0;
	right:0;
	bottom:0;
	overflow:hidden;
}
.wraper-box li{
	position:absolute;
	display:block;
	list-style:none;
	width:25px;
	height:25px;
	background:rgba(255,255,255,0.5);
	animation:animate 20s linear infinite;
	bottom:-150px;
	color:rgba(0,0,0,0.4);
	text-align:center;
	text-transform:uppercase;
}
.wraper-box li:nth-child(1){
	left:86%;
	width:80px;
	height:80px;
	animation-delay:0s;
	font-size:12.7px;
	padding-top:20px;
	text-transform:capitalize;
}
.wraper-box li:nth-child(2){
	left:12%;
	width:30px;
	height:30px;
	animation-delay:1.5s;
	animation-duration:10s;
}
.wraper-box li:nth-child(3){
	left:60%;
	width:100px;
	height:100px;
	animation-delay:5.5s;
}
.wraper-box li:nth-child(4){
	left:70%;
	width:150px;
	height:150px;
	animation-delay:0s;
	animation-duration:15s;
	text-transform:uppercase;
	line-height:150px;
	font-size:15px;
}
.wraper-box li:nth-child(5){
	left:65%;
	width:40px;
	height:40px;
	animation-delay:0s;
}
.wraper-box li:nth-child(6){
	left:15%;
	width:110px;
	height:110px;
	animation-delay:3.5s;
	text-transform:uppercase;
	padding-top:30px;
	font-size:15px;
}
.wraper-box li:nth-child(7){
	left:35%;
	width:80px;
	height:80px;
	animation-delay:7s;
}
.wraper-box li:nth-child(8){
	left:50%;
	width:130px;
	height:130px;
	animation-delay:17s;
	padding-top:35px;
}
.wraper-box li:nth-child(9){
	left:10%;
	width:150px;
	height:150px;
	animation-delay:14s;
	animation-duration:15s;
	font-size:15px;
	line-height:150px;
}
.wraper-box li:nth-child(10){
	left:10%;
	width:15px;
	height:15px;
	animation-delay:9.5s;
	animation-duration:20s;
}

@keyframes animate{
	0%{
		transform:translateY(0) rotate(0deg);
		opacity:1;
	}
	100%{
		transform:translateY(-800px) rotate(0deg);
		opacity:0;
	}
}
.welcome-wraper{
	position:absolute;
	width:100%;
	height:100%;
	top:0;
	left:0;
	bottom:0;
	overflow:hidden;
	display:flex;
	justify-content:center;
	align-items:center;
}
.welcome-box{
	width:100%;
	display:table;
	text-align:left;
	padding-left:40px;
	/*background:red;*/
}
.welcome-heading h1{
	font-weight:500;
	color:#fff;
	font-size:56px!important;
	letter-spacing:3px;
	margin:0;
    text-align:center;
}
.welcome-heading-sub{
	margin:100px 0 0px;
}
.welcome-heading-sub h4{
	font-weight:600;
	color:#fff;
	font-size:30px!important;
	letter-spacing:2px;
	margin:0;
	text-transform:uppercase;
}
.welcome-button a{
	display:inline-block;
	text-transform:uppercase;
	font-size:25;
	padding:15px 30px;
	color:#fff;
	font-family:'Quicksand', sans-serif;
	font-weight:500;
	background-image:linear-gradient(120deg, transparent 0%, transparent 50%, #fff 50%);
	background-size:220%;
	transition:all .5s;
	text-decoration:none;
	border:2px solid #fff;
}
.welcome-button a:hover{
	background-position:100%;
	color:#007bff;
	transform:translateX(10px);
	box-shadow:0px 10px 30px rgba(0,0,0,0.2);
}