@charset "utf-8";
/* CSS Document */
.menu-logo {
	width: 150px;
	position: absolute;
	top: 5%;
	left: 50%;
	transform: translate(-50%,0%);
}
.lower{
    width: 40px;
    /*margin:10% auto;*/
    padding: 15px 15px 12px 15px;
    background: rgba(242,135,5,1.00);
    opacity: 1;
    color: black;
    /* [disabled]box-shadow: inset 0 0 0 1px white; */
    position: fixed;
    top: 0px;
    right: 20px;
    z-index: 11;
	border-radius: 10px;
    margin-top: 15px;
	box-sizing: content-box;
    /* [disabled]-webkit-box-shadow: inset 0 0 0 1px white; */
}

.lower:hover{
    color: white;
    /* [disabled]box-shadow: inset 0 0 0 1px black; */
    /* [disabled]-webkit-box-shadow: inset 0 0 0 1px black; */
}

input{
  display:none;
}

.lower label{
	font-family:"Lato", sans-serif;
  	text-transform:uppercase;
  	font-size:0.7em;
	font-weight: 400;
  	text-align:center;

}

.lower label:hover{
  cursor:pointer;
}

.overlay{
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background: rgba(242,135,5,0.95);  /* rgba(61,61,61,0.9);  */ 
	z-index: 12;
}

.overlay label{
	width: 40px;
	height: 40px;
	position: absolute;
	right: 20px;
	top: 15px;
	background: url("../graphics/menu_cross.svg");
	z-index: 100;
	margin: 15px;
	cursor: pointer;
}

.overlay nav {
	text-align: center;
	position: relative;
	top: 60%;
	height: 60%;
	font-size: 54px;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}

.overlay ul {
	list-style: none;
	padding: 0;
	margin: 0 auto;
	display: inline-block;
	height: 100%;
	position: relative;
}

.overlay ul li {
	display: block;
	height: 20%;
	height: calc(100% / 5);
	min-height: 54px;
}
.overlay ul li a.menuactiv {
    font-weight: 400;
    /* [disabled]text-decoration: underline; */
}
.overlay ul li a {
    font-weight: 300;
    display: block;
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    -webkit-transition: color 0.2s;
    transition: color 0.2s;
    font-family: "Lato", sans-serif;
    /* [disabled]text-transform:uppercase; */
	background-color: transparent;
}

.overlay ul li a:hover,
.overlay ul li a:focus {
    color: rgba(255,255,255,1);
}

.lower~.overlay-hugeinc{
	opacity: 0;
	visibility: hidden;
	-webkit-transition: opacity 0.5s, visibility 0s 0.5s;
	transition: opacity 0.5s, visibility 0s 0.5s;
}

#op:checked~.overlay-hugeinc{
	opacity: 1;
	visibility: visible;
	-webkit-transition: opacity 0.5s;
	transition: opacity 0.5s;
}

.overlay-hugeinc nav {
	-moz-perspective: 300px;
}

.overlay-hugeinc nav ul {
	opacity: 0.4;
	-webkit-transform: translateY(-25%) rotateX(35deg);
	transform: translateY(-25%) rotateX(35deg);
	-webkit-transition: -webkit-transform 0.5s, opacity 0.5s;
	transition: transform 0.5s, opacity 0.5s;
}

#op:checked~.overlay-hugeinc nav ul {
	opacity: 1;
	-webkit-transform: rotateX(0deg);
	transform: rotateX(0deg);
}

#op:not(:checked)~.overlay-hugeinc nav ul {
	-webkit-transform: translateY(25%) rotateX(-35deg);
	transform: translateY(25%) rotateX(-35deg);
}


@media screen and (max-width: 768px) and (orientation:portrait) {
		.overlay nav {
			font-size: 44px;
		}
	
}
@media screen and (max-width: 768px) and (orientation:landscape) {
	.overlay nav {
		font-size: 23px;
		top: 78%;
		height: 77%;
		
	}
	.overlay ul li {
		height: 13%;
		min-height: 21px;
	}
	.menu-logo {
		width: 130px;
	}
}
@media screen and (max-width: 480px) {
		.overlay nav {
			font-size: 30px;
		}
		.lower {
		width: 30px;
	    right: 15px;			
		}	
		.overlay label{
			width: 30px;
			height: 30px;
			right: 16px;
			margin: 15px;
			top: 15px;
		}		
}
@media screen and (max-width: 480px) and (orientation:landscape) {
	.overlay nav {
		font-size: 23px;
		top: 78%;
		height: 77%;
		
	}

}
@media screen and (max-width: 360px) {

.lower {
    width: 25px;
    padding: 10px 10px 7px 10px;
    right: 10px;
	margin-top: 17px;
}
.overlay label{
		width: 25px;
		height: 25px;
		right: 15px;
		margin: 5px;
		top: 21px;
		}	
}