/* CSS Document */
header {
	width:100%;
	position: fixed;
	top:0;
	left: 0;
	z-index: 10;
}


header article section#Menu nav {
	box-sizing: border-box;
	margin: 0px 0 0 0%;
	overflow: hidden;
}

input#Navinput ,
label#Navopen ,
label#Navclose {
	display: none;
}

header article section#Menu nav > ul#Navcontent  {
	display: flex;
	flex-wrap: nowrap;
	font-family: 'Russo One','M PLUS 1p', sans-serif;
	transform: translateX(5%);
}

header article section#Menu nav > ul#Navcontent > li {
	width: 20%;
	height: 90px;
	font-size: 1.6rem;
	position: relative;
	z-index: 10;
	display: block;
	box-sizing: border-box;
	background: #000;
	transform: skewX(-30deg);
}

header article section#Menu nav > ul#Navcontent > li:last-child {
	width: 25%;
	background: rgba(217,89,0,1.00);
}


header article section#Menu nav > ul#Navcontent > li a {
	color: #fff;
	box-sizing: border-box;
	text-decoration: none;
	padding: 25px 0px 0px 0px;
	font-weight: 700;
	display: block;
	height: 100%;
	font-size: 2rem;
}

header article section#Menu nav > ul#Navcontent > li a span {
	transform: skewX(30deg);
	display: inline-block;
}

header article section#Menu nav > ul#Navcontent > li:last-child a span {
	margin-right: 2em;
}

header article section#Menu nav ul li ul {
	position: absolute;
	top: 0px;
	width: 100%;
	background: rgba(225,225,225,0.8);
	-webkit-transition: all .2s ease;
	transition: all .2s ease;
	z-index: 1;
	visibility: hidden;
	display: block;
	text-align: center;
	white-space: inherit;
	padding-left: 0;
}

header article section#Menu nav > ul li > ul li {
	z-index: 2;
	white-space: nowrap;
	color: #000;
	margin:0;
	width:100%;
	display: inline-block;
}

header article section#Menu nav ul li ul li a {
	color: #000;
	width:80%;
	padding: 10px;
	display: block;
}

header article section#Menu nav > ul > li:hover a {
	transition: 0.3s;
}

header article section#Menu nav > ul > li:hover > a:hover ,
header article section#Menu nav > ul > li > ul > li > a:hover  {
	background: rgba(180,180,255,0.6);
	transition: 0.3s;
	color: #000;
	z-index: 100
}

header article section#Menu nav ul li:hover ul {
    top: 100%;
    visibility: visible;
    opacity: 1;
}

