* {
	padding: 0;
	margin: 0;
	text-decoration: none;
	list-style: none;
	box-sizing: border-box;
}



#navbar {
	background:#F5FAFF;
	height: 76px;
	width: 100%;
}

label.logo {
	color: white;
	line-height: 48px;
	padding: 0 48px;
}

#navbar #nav_ul {
	float: right;
}

#navbar #nav_ul #ul_li {
	color: #333;
	display: inline-block;
	padding: 1.5em ;
	position: relative;
	font-size: 18px;
	font-family: arial;
}


#navbar #nav_ul #ul_li #li_a {
	color: black;
	text-decoration: none;
}

/* #li_a.active,
#li_a:hover {
	background-color: #1b9bff;
	transform: .5s;
} */

.checkbtn {
	font-size: 30px;
	color: white;
	float: right;
	line-height: 80px;
	margin-right: 40px;
	cursor: pointer;
	display: none;
}

#check {
	display: none;
}

#nav_ul #ul_li #li_ul {
	display: none;
	/* background-color: sandybrown; */
}


#nav_ul #ul_li:hover #li_ul {
	display: block;
	position: absolute;
	width: 160px;
	padding: 6px;
	margin: 6px;
	border-radius: 10px;
	background: #F5FAFF;
	z-index: 2;
}

#nav_ul #ul_li:hover #li_ul #last_li {
	display: block;
	color: #F5FAFF;
	padding: 6px 0;
	border-radius: 6px;
	
}


#nav_ul #ul_li:hover #li_ul #last_li #last_a {
	color: #333;
	padding: 1em;
}

#nav_ul #ul_li:hover #li_ul #last_li:hover {
	background: #e0e0e0;
	color: inherit;
}

#nav_ul #ul_li:hover {
	cursor: pointer;
	/* background: var(--primary-color); */
	color: #fff;
}


@media (min-width: 600px) {
	label.logo {
		width: auto;
		height: auto;
	
	}

}

@media (max-width: 1300px) {
	.checkbtn {
		display: block;
	}
	
	#nav_ul {
		position: absolute;
		width: 240px;
		height: 100vh;
		background: #F5FAFF;
		left: -100%;
		text-align: center;
		transition: all 0.5s;
		z-index: 2;
		top: 76px;
	}
	
	#navbar #nav_ul #ul_li {
		display: block;
		margin: 0;
		line-height: 30px;
	}
	
	
	#navbar #nav_ul #ul_li #li_a {
		font-size: 20px;
	}
	
	#last_a:hover,
	#last_a.active {
		background: none;
		/* color: #0082e6; */
	
	}
	
	#check:checked~#nav_ul {
		left: 0;
	}
	#navbar #nav_ul #ul_li{
		display: block;
	}
	#navbar #nav_ul #ul_li:hover #li_ul{
		width: auto;
		height: auto;
		position: relative;
		background: #f1f1f1;
		
	}
}

.link{
	color: #000000;
}
.link:hover{
	color: salmon;
}