.nav-scrolled{
	background: rgba(226,226,226, 0.9);
	height: 85px;
}
.nav-scrolled img.logo{
	padding-top: 10px;
	width: 150px;
}
.nav-scrolled ul{
	padding-top: 0px;
}
nav{
	background: #bfa5e5;
	height: 100px;
	width: 100%;
	z-index: 10;
	position: fixed;
	max-width: 1920px;
	transition: .5s;
}
img.logo{
	width: 180px;
	color: white;
	font-weight: bold;
	margin-left: 50px;
	padding-top: 13px;
	transition: .5s;
}
.navul{
	top: 100px;
	float: right;
	margin-right: 20px;
	z-index: 9;
	padding-top: 8px;
	transition: .5s;
}
nav ul{
	float: right;
	margin-right: 20px;
	z-index: 9;
	padding-top: 8px;
	transition: .5s;
}
nav ul li{
	display: inline-block;
	line-height: 84px;
	margin: 0 5px;
}
nav ul li a{
	color: white;
	font-size: 17px;
	text-transform: uppercase;
	border-radius: 3px;
	padding: 7px 13px;
}
.a-scrolled{
	text-shadow: 1px 1px 1px black;
	transition: .5s;
}
.a-active{
	text-shadow: 1px 1px 1px black;
	transition: .5s;
	color: #FF5722;
}
a.a-active:hover, a.a-scrolled:hover{
	color: #FF5722;
	background: transparent;
}
a.active{
	background: #6f056f;
	transition: .5s;
}


a.a1:hover, a.a2:hover, a.a3:hover, a.a4:hover, a.a5:hover{
	border: 1px solid #6f056f;
	color: #6f056f;
	transition: .5s;
}
.checkbtn{
	font-size: 30px;
	color: white;
	float: right;
	line-height: 100px;
	margin-right: 40px;
	cursor: pointer;
	display: none;
	transition: .5s;
}
.checkbtn1{
	font-size: 30px;
	color: white;
	float: right;
	line-height: 80px;
	margin-right: 40px;
	cursor: pointer;
	transition: .5s;
}
#check{
	display: none;
}
@media (max-width: 1080px){
	.checkbtn{
		display: block;
	}
	ul{
		position: fixed;
		width: 100%;
		height: 100vh;
		background: #2c3e50;
		top: 84px;
		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;
	}
	a:hover,a.active{
		background: none;
		color: #FF5722;
		text-shadow: 1px 1px 1px black;
	}
	#check:checked ~ ul{
		left: 0;
	}
	section{
		height: calc(100vh - 80px);
		position: absolute;
	}
}