.nav-scrolled{
	background: #2b2525;
	width: 100%;
	user-select: none;
	z-index: 10;
	position: fixed;
	max-width: 1920px;
	transition: .5s;
	padding: 50px 0;
}
.nav2-scrolled{
	background: #d1d1d1;
	width: 100%;
	user-select: none;
	z-index: 10;
	position: fixed;
	max-width: 1920px;
	transition: .5s;
	padding: 50px 0;
}
.img-scrolled{
	font-weight: bold;
	margin-left: 50px;
	width: 280px;
	top: 15px;
	transition: .5s;
	position: absolute;
	filter: brightness(0) invert(1);
}
.img2-scrolled{
	font-weight: bold;
	margin-left: 50px;
	width: 280px;
	top: 15px;
	transition: .5s;
	position: absolute;
}
.ul-scrolled{
	display: inline-block;
	line-height: 100px;
	margin: 0 5px;
}
nav.navi{
	background: #2b2525;
	width: 100%;
	user-select: none;
	z-index: 10;
	position: fixed;
	max-width: 1920px;
	transition: .5s;
	height: 100px;
	/*border-bottom: 10px solid #2b2525;*/
}
img.logo{
	font-weight: bold;
	margin-left: 50px;
	width: 280px;
	top: 5px;
	transition: .5s;
	position: absolute;
	filter: brightness(0) invert(1);
}
nav ul{
	float: right;
	margin-right: 20px;
	z-index: 9;
	line-height: 100px;
}
nav ul li{
	display: inline-block;
	margin: 0 5px;
}
nav ul li a{
	color: white;
	font-size: 15px;
	text-transform: uppercase;
	border-radius: 3px;
	padding: 7px 13px;
	font-weight: bold;
	transition: .3s;
}
nav ul li a:hover{
	color: #818589;
	transition: .3s;
}
.a-scrolled{
	color: white;
	transition: .5s;
}
.a-active{
	text-shadow: 1px 1px 1px black;
	transition: .5s;
	color: #FF5722;
}
#a1{
	border: 1px solid white;
}
a.a-active:hover, a.a-scrolled:hover{
	color: #818589;
}

.checkbtn{
	font-size: 30px;
	color: white;
	float: right;
	margin-right: 40px;
	cursor: pointer;
	display: none;
	margin-top: -10px;
}
#check{
	display: none;
}

.dropdown {

}

.dropdown .dropbtn { 
	border: none;
	outline: none;
	color: white;
	background-color: inherit;
	font-family: inherit;
	margin: 0;
	font-size: inherit;
}

.dropdown-content {
	display: none;
	position: absolute;
	background-color: #282828;
	z-index: 9;
	width: 200px;
	margin-left: -30px;
}

.dropdown-content a {
	float: none;
	display: block;
	text-align: center;
	line-height: 50px;
}

.topnav a:hover, .dropdown:hover .dropbtn, .dropdown-content a:hover {
	font-weight: bold;
}

.dropdown:hover .dropdown-content {
	display: block;
}
.myClass {
	background-color: red;
}

i#cross{
    display: none;   
}
/* when the checkbox is checked, hide the bars icon */
#check:checked + label i#bars{
    display: none;
}
/* and show the cross icon */
#check:checked + label i#cross{
    display: block;
}
/* and, of course, give the menu a height */
#check:checked ~ #mobilemenu{
    left: 0;
}


@media (max-width: 1280px){
	nav.navi{
		padding: 40px 0;
	}
	.checkbtn{
		display: block;
	}
	ul{
		position: fixed;
		width: 100%;
		height: 100%;
		background: #3d3d3d;
		left: -100%;
		text-align: center;	
		transition: all .5s;
		overflow-y: scroll;
		padding-top: 20px;
		top: 115px;
	}	
	/* Hide scrollbar for Chrome, Safari and Opera */
	ul::-webkit-scrollbar {
		display: none;
	}

	/* Hide scrollbar for IE, Edge and Firefox */
	ul {
	  -ms-overflow-style: none;  /* IE and Edge */
	  scrollbar-width: none;  /* Firefox */
	}
	nav ul li{
		display: block;
		margin: 30px 0;
		line-height: 16px;
	}
	nav ul li a{
		font-size: 16px;
	}
	/*
	#check:checked ~ ul{
		left: 0;
	}*/
	section{
		height: calc(100vh - 80px);
		position: absolute;
	}
	.dropdown{
		float: none;
		font-size: 20px;
	}
	.dropdown-content{
		position: relative;
		width: 100%;
		margin: 0px auto;
		background: #3d3d3d;
	}
	.dropdown-content a {
		line-height: 0;
		padding-top: 30px;
	}
	.dropdown .dropbtn{
		display: block;
		width: 100%;
		padding: 0;
	}
}