
/* *{
	margin: 0;
	padding: 0;
	color: white;
	box-sizing: border-box;
} */

body{
	min-height: 100vh;
	/*background: #f2f2f2;*/
	/*background-image: conic-gradient(green, lightgreen, green, lightgreen, green);*/
	/*background: linear-gradient(to top, #1d8508, #24ba06)*/
	background: linear-gradient(to top, #282928, #3e403f)
}
nav{
	background: #1b1b1b;
}
nav:after{
	content: '';
	clear: both;
	display: table;
}
nav .logo{
	float: left;
	color: white;
	font-size: 27px;
	font-weight: 600;
	line-height: 30px;
	padding-left: 60px;
	padding-top: 8px;

}
nav ul{
	float: right;
	list-style: none;
	margin-right: 50px;
	position: relative;
}
nav ul li{
	float: left;
	display: inline-block;
	background: #1b1b1b;
	margin: 0 5px;
}
nav ul li a{
	color: white;
	text-decoration: none;
	line-height: 45px;
	font-size: 20px;
	padding: 8px 15px;
}
nav ul li a:hover{
	color: cyan;
	border-radius: 5px;
	box-shadow: 0 0 5px #33ffff,
					0 0 5px #66ffff;
}
nav ul ul li a:hover{
	color: cyan;
	box-shadow: none;
}
nav ul ul{
	position: absolute;
	top: 90px;
	/*border-top: 3px solid cyan;*/
	opacity: 0;
	visibility: hidden;
	transition: top .3s;
}
nav ul ul ul{
	border-top: none;
}
nav ul li:hover > ul{
	top: 45px;
	opacity: 1;
	visibility: visible;
}
nav ul ul li{
	position: relative;
	left: -50px;
	margin: 0px;
	width: 200px;
	float: none;
	display: list-item;
	border-bottom: 1px solid rgba(0,0,0,0.3);
}
nav ul ul li a{
	line-height: 50px;
}
nav ul ul ul li{
	position: relative;
	top: -45px;
	left: 150px;
}
.fa-plus{
	margin-left: 5px;
	font-size: 15px;
}
.show,.icon,input.hackbox{
	display: none;
}
.fa-angle-right{
	margin-left: 8px;
	font-size: 15px;
}

.fa-globe{
	margin-left: 8px;
	font-size: 15px;
}
@media all and (max-width: 968px) {
	nav ul{
		margin-right: 25px;
		float: left;	
	}
	nav .logo{
			padding-left: 30px;
			width: 100%;
	}
	nav ul li, nav ul ul li, nav ul ul ul li{
		display: block;
		width: 100%;	
	}
	nav ul ul{
		top: 70px;
		position: static;	
		border-top: none;
		float: none;
		display: none;
		opacity: 1;
		visibility: visible;
	}

	nav ul li{
	padding-left: 20px;
	}


	/*nav ul ul ul{
		position: static;
		top: 70px;
		left: -120px;
		border-top: none;
		float: none;
		display: none;
		opacity: 1;
		visibility: visible;	
	}	*/
	
	nav ul ul ul li{
		position: static;	
	}
	
	nav ul ul li{
		border-bottom: 0px;	
	}
	
	nav ul ul a{
		padding-left: 40px;	
	}
	nav ul ul ul a{
		padding-left: 60px;	
	}

	
	
	/*nav ul ul ul li{
		border-bottom: 0px;	
	}
	nav ul ul ul li{
		padding-left: -180px;
		padding-top: 50px;	
	}
	nav ul ul ul li a{
		padding-left: -180px;
		padding-top: 50px;	
	}	*/

	
	.show{
		display: block;
		color: white;
		font-size: 20px;	
		padding: 0 20px;
		line-height: 50px;
		cursor: pointer;
	}
	.show:hover{
		color: cyan;	
	}
	.icon{
		display: block;
		color: white;
		position: absolute;
		right: 40px;
		line-height: 70px;
		font-size: 25px;
		cursor: pointer;	
	}
	nav ul li a:hover{
		box-shadow: none;	
	}
	.show + a, ul{
		display: none;	
	}
	.fa-angle-right{
	margin-left: 8px;
	font-size: 15px;
	}
	

	
	[id^=btn]:checked + ul{
		display: block;	
	}
}