body{
	/*overflow-x: hidden;*/
	overflow-y: scroll;
}
*{
	margin: 0;
	padding: 0;
	list-style: none;
	text-decoration: none;
	/*background: black;*/
}
nav {
	overflow: hidden;/*bbkjbjknjk*/
	height: 80px;
	background: #660033;
}
#nav{
	position: sticky;
	top: 0;
	z-index: 9999;
}
nav img{
	width: 60px;
	position: absolute;  
	top: 15px;
	left: 12%;
	border-radius: 10%;
	height: 60px;
}
 nav h3{
	/*top: 25px;*/
	font-size:25px;
	color: white;
	font-weight: bold;
	margin-top:2%;
	margin-left:17%;
}
nav ul{
	float: right;
	margin-top: -10px;
	margin-right: 25px;
}
nav ul li{
	display: inline-block;
	line-height: 80px;
	margin: -60px 15px;
}
nav ul li a{
  position: relative;
  color: white;
  font-size: 18px;
  padding: 5px 0;
  text-transform: uppercase;
}
nav ul li a:before{
	position: absolute;
	content: '';
	left: 0;
	bottom: 0;
	height: 3px;
	width: 100%;
	background: white;
	transform: scaleX(0);
	transform-origin:right;
	transition: transform .4s linear;
}
nav ul li a:hover:before{
	transform: scaleX(1);
	transform-origin:left;
}
label #btn,
label #cancel{
	color: white;
	font-size: 30px;
	float: right; ;
	line-height: 80px;
    margin-right: 40px;
    cursor: pointer;
    display: none;
}
#check{
	display: none;
}
@media (max-width: 1132px){
	nav img{
		left: 8%;
	}
	nav h3{
	/*top: 25px;*/
	font-size:25px;
	color: white;
	font-weight: bold;
	margin-top: 3%;
	margin-left:17%;
}
}
@media (max-width: 955px){
	nav img{
		left: 6%;
	    top: 15px;
	    width: 50px;
	}
	nav h3{
	/*top: 25px;*/
	font-size:25px;
	color: white;
	font-weight: bold;
	margin-top: 3%;
	margin-left:17%;
}
	nav ul li a{
		font-size: 17px;
	}
}
@media (max-width: 835px){
	nav h3{
	/*top: 25px;*/
	font-size:25px;
	color: white;
	font-weight: bold;
	margin-top: 4%;
	margin-left:20%;
}
	label #btn{
		display: block;
	}
	ul{
		position: fixed;
		width: 100%;
	    height: 60%;
	    background: grey;
	    top: 80px;
	    left: -100%;
	    text-align: center;
	    transition: all .5s;
	}
	nav ul li{
		display: block;
		margin: 50px 0;
		line-height: 30px;
	}
	nav ul li a{
		font-size: 20px;
	}
	#check:checked ~ul{
		left: 0;
		z-index: 1;  To make the hamburger content overlap
	}
    #check:checked ~ label #btn{
		display: none;
	}
	#check:checked ~ label #cancel{
		display: block;
	}
}
