

/* = = = = = = = = = = = = = = = = = datei menue.css = = = = = = = = = = = = = = = = = = = = = = = = = */


/* ############################################################ */
/* diese datei enthält das hauptmenü */
/* alle anderen menüs sowie auch allgemeine links im text bzw. eventuelle "weiter-Links"
sind in der datei "format.css" direkt beim jeweiligen abschnitt  definiert */
/* ############################################################ */


/* = = = = = = = = = = = = = = = = = MENÜ 1 = = = = = = = = = = = = = = = = = = = = = = = = = */


/* - - - - - MENU FORMATIERUNG - - - - - */

#menu1 {height:100%;
z-index:1;
width :36rem;width:100%;
position:absolute;
top:0rem;left:50%;
margin-left:-50%;
background:#34495e;
padding: 11rem 0 1rem 0;
margin-top:-120vh;
transition:all 2s;
}

#menu1 ul {display:block;
text-align:center;
margin:0 auto;
padding:0rem;
}

#menu1 li {list-style-type : none;
margin:0;
padding:0;
}

#menu1 li a {
text-align:center;
text-decoration : none;
font-size:1.6rem;
line-height:2.8rem;
letter-spacing:.4rem;
padding:.4rem 1rem ;
margin: 0;
color:gold ;
text-transform:uppercase;
}

#menu1 a:hover  {
color:#fff;
}

#menu1  #aktuell  a  {
color:#efefef;
}


/* - - - - - TOGGLE-FUNKTION (MENÜ AN UND AUS) MIT CHECKBOX-HACK - - - - - */

/* menü-schalter wird angezeigt-  formatierung */
label {display:inline-block;
z-index:2;
position:absolute;
top:0rem;left:50%;
margin-left:-2rem;
margin-top:.5rem;
cursor:pointer;
height:4rem;
line-height:4rem;
width:4rem;
}

.logo1 label .fa {font-size:4rem;display:inline-block;
color:#fff;line-height:4rem;height:4rem;vertical-align:middle;
}


/* checkbox versteckt */
input[type=checkbox]{
display: none;
}

/* schaltet menu ein */
input[type=checkbox]:checked ~ #menu1  {
margin-top:-6rem;
height:120vh;
}













/* = = = = = = = = = = = = = = = = = = = = = Code Ende = = = = = = = = = = = = = = = = = = = = = */