*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: sans-serif;

}

body{
	overflow-x: hidden;
	overflow-y: hidden;
}

.header{
	clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
    height: 100vh;
    width: 100%;
	background-size: cover;
    background-position: center;
	background: #00c6ff;  
    background: -webkit-linear-gradient(to right, #0072ff, #00c6ff);  
	background: linear-gradient(to right, #0072ff, #00c6ff); 

}

ul{
 	float: right;
 	margin-right: 10px;
 	list-style: none;
 	padding-top: 40px;
 }
 
ul li{

 	display: inline-block;
 		
}

 ul li a{
 	color: #fff;
 	text-transform: uppercase;
 	border-radius: 5px;
 	text-decoration: none;
 	padding: 5px 40px;
 	transition: 0.6s ease;
 	
 }

 ul li a:hover, a.active{
 	background-color: #fff;
 	color: #000;
 }

nav #icon{
	color: white;
	font-size: 30px;
	display: none;
	line-height: 80px;
	float: right;
	cursor: pointer;
	margin-right: 40px;
}
 
.logo{
	color: #fff;
	padding-top: 20px;
	width: 220px;
	height: auto;
	padding-left: 20px;
	position: absolute;
}

.btn{
 	position: absolute;
 	padding: 10px 30px;
 	border-radius: 25px;
 	display: inline-block;
 	left: 2%;
 	top: 80%;
 	color: #000;
 	font-size: 15px;
 	text-decoration: none;
 	text-transform: uppercase;
 	transition: 0.5 ease;
 	letter-spacing: 4px;
 	background-color: #03e9f4;
}

.btn:hover{
	background: #03e9f4;
	color: #050801;
	box-shadow: 0 0 5px #03e9f4,
				0 0 25px #03e9f4,
				0 0 50px #03e9f4,
				0 0 200px #03e9f4;
}

.leftside{
	top: 25%;
	position: absolute;
	width: 1300px;
	left: 20%;
}

.rightside{
	position: absolute;
	top: 20%;
	padding-left: 40px;
	padding-right: 10px;
	color: #fff;
	font-size: 50px; 
}

.checkbtn{
	font-size: 30px;
	color: white;
	float: right;
	line-height: 60px;
	margin-right: 30px;
	cursor: pointer;
	display: none;
}

#check{
	display: none;
}

@media (max-width: 960px){

	.logo{
		position: absolute;
		float: none:;
		padding-top: 5px;
		padding-left: 1px;
		width: 100%;
		width: 150px;
		max-width: 150px;
	}
	
	.leftside{
		position: absolute;
		width: 100%;
		top: 53%;
		left: 2%;
		min-width: 400px;
	}

	.rightside h1{
		position: absolute;
		font-size: 50px;
		padding-top: 40px;
		width: 100%;
		left: 75%;
		min-width: 300px;
	}
	.rightside p{
		position: absolute;
		font-size: 20px;
		min-width: 250px;
		padding-top: 100px;
		float: none;
		padding-left: 0px;
		width: 100%;
	}

	.btn{
		position: absolute;
		top: 87%;
		left: 20%;		
	}

	.checkbtn{
		display: block;
	}

	ul{
		position: fixed;
		width: 100%;
		height: 100vh;
		background-size: cover;
	    background-position: center;
		background: #00c6ff;  
	    background: -webkit-linear-gradient(to right, #0072ff, #00c6ff);  
		background: linear-gradient(to right, #0072ff, #00c6ff); 
		top: 50px;
		left: -100%;
		text-align: center;
		transition: all 0.5s;
	}

	nav ul li{
		display: block;
		margin: 60px 0;
		line-height: 50px;
	}

	nav ul li a{
		font-size: 24px;
	}

	a:hover,a.active{
		background: none;
		color: #fff;
	}

	#check:checked ~ ul{
		left: 0;
		z-index: 1;

	}


}	
