@charset "UTF-8";
.nav-top{
	position: fixed;
	top: 0;
    width: 100%;
	height:4.5rem;
	z-index:1015;
}
#menu {
	position:relative;
	display:flex;
	justify-content:end;
	padding: 1rem var(--c-gap) 0 0;
	z-index: 1015;
}
#menu #mobile-nav {
	display: none
}
#menu .ham {
	position:absolute; 
	right:var(--c-gap);
	top:1.5rem;
	width: 45px;
	cursor:pointer;
	z-index:1015;
}
#menu .ham span + span {
	margin-top: 4px;
}
#menu .ham span {
	display:block;
	height:4px;
}
#menu .ham span {
	border-top: 4px solid var(--c-lte);
	border-right: 2px solid transparent;
	transition: width .3s, margin-left .3s;		
}
#menu #mobile-nav:checked+.ham span {
	border-top: 0;
	border-right: 0;
	border-bottom: 4px solid var(--c);
	border-left: 2px solid transparent;
}
#menu .ham span:nth-child(1) {	
		width:45px;	
}
#menu .ham span:nth-child(2) {	
		width:41px;	
}
#menu .ham span:nth-child(3) {	
		width:37px;	
}
#menu #mobile-nav:checked+.ham span:nth-child(1) {
	margin-left:8px;
		width:37px;	
}
#menu #mobile-nav:checked+.ham span:nth-child(2) {
	margin-left:4px;
		width:41px;	
}
#menu #mobile-nav:checked+.ham span:nth-child(3) {	
		width:45px;	
}
nav {
	width: 100%;
	visibility:hidden;
	transform-origin: top;
	opacity: 0;
	transform: scaleY(.3);
	transition: all .6s;
}
#menu #mobile-nav:checked~nav {
	visibility:visible;
	opacity: 1;
	transform: scaleY(1)
}

.navi {
	position:relative;
	display: flex;
	width: 100%;
	height:auto;
	margin: 0;
 	padding: 0 0 1rem 0;

}
.nav-control {
	position: absolute;
	top:3.5rem;
	right: 0;
	flex: 0 1 auto;
	display: flex;
	flex-direction: column;
	margin: 0;
	padding: 1rem 1rem .5rem 1rem;
	height: auto;
	text-align:right;
	overflow: hidden;
	transition: max-height .3s;
	background: rgba(0,0,0,.6);
	border-radius: 5px;
	z-index: 1015;
}
.nav-control li {
	display: block;
	position: relative;
	list-style: none;
	font-size:.95rem;
	font-weight:bold;
	transform: scale(0.9, 1.15);
	transform-origin: left;
	line-height:1.5rem;
	cursor: pointer;
	background:transparent;
	height: auto;
	overflow: hidden;
	transition: max-height .3s;
	text-transform: uppercase;
	letter-spacing: 0;
}
.nav-control li a {
	color: var(--w);
	transition: color .3s;
}
.nav-control li:hover a, .nav-control li.active a {
	color: var(--c);
	text-shadow:-.5px -.5px 1px #000;
}
.subtitle{
	display:none;
}
@media screen and (min-width:768px) {
#menu {
	padding: 0 var(--c-gap) 0 0;
}
#menu>label.ham {
	display: none
}
.nav-top {
	background: rgba(0,0,0,.6);
	height:4.5rem;
}
nav {
	visibility:visible;
	opacity: 1;
	transform: scaleY(1)
}
.nav-control {
	background: none;
	top:0;
}
.navi ul {
	display:flex;
	flex-flow: row nowrap;
	justify-content:end;
}
.navi ul li {
	line-height:1.4rem;
}
.nav-control li + li {
		margin-left: 2rem;
}
.subtitle{
	display:block;
	font-size:.75rem;
	font-weight:normal;
	color: var(--w);
	letter-spacing: 0;
}
.startpage {
	position: relative;
	display: flex;
	justify-content:center;
	margin:2.5rem auto 2rem auto;
}
@media (pointer:fine) {
#menu #mobile-nav:hover+.ham span {
	border-top: 0;
	border-right: 0;
	border-bottom: 4px solid var(--c);
	border-left: 2px solid transparent;
}
#menu #mobile-nav:hover+.ham span:nth-child(1) {
	margin-left:8px;
		width:37px;	
}
#menu #mobile-nav:hover+.ham span:nth-child(2) {
	margin-left:4px;
		width:41px;	
}
#menu #mobile-nav:hover+.ham span:nth-child(3) {	
		width:45px;	
}
}