


/* = = = = = = = = = = = = = = = = = 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:100%;
position:absolute;
bottom:0%;left:50%;
margin-left:-50%;
background:#2f2f2f;
padding: 1rem 0 4rem 0;
margin-bottom:-100vh;
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:#AFAFAF;
text-transform:uppercase;
}

#menu1 a:hover  {
color:#fff;
}

#menu1  #aktuell  a  {
color:#fff;
}


/* - - - - - TOGGLE-FUNKTION (MENÜ AN UND AUS) MIT CHECKBOX-HACK - - - - - */

/* menü-schalter  formatierung */
.logo2 label {display:inline-block;text-align:center;
z-index:2;
position:absolute;
bottom:0%;left:50%;
margin-left:-5rem;
margin-bottom:0rem;
background:silver;/*IE9*/
background:linear-gradient(to right,silver,#EFEFEF, silver);
cursor:pointer;
height:4rem;
line-height:4rem;
width:10rem;
box-shadow:0 0 3px black;
border-top-right-radius:8px;
border-top-left-radius:8px;
}

/* menü-schalter icon */
.logo2 label .fa {font-size:2rem;display:inline-block;
color:#000;
text-shadow:1px 0px  1px #888888;
line-height:4rem;height:4rem;vertical-align:middle;
}


/* checkbox versteckt */
input[type=checkbox]{
display: none;
}

/* schaltet menu ein */
input[type=checkbox]:checked ~ #menu1  {
margin-bottom:0rem;
height:100%;
}


/* ############################################################ */
/* M E D I A   Q U E R I E S - RESPONSIVE-BILDSCHIRMABFRAGEN*/
/* ############################################################ */

/* ===================================== ab 1100 pixel ================================= */

@media (min-width: 1100px) {

/* menü verschmälern */

#menu1 {
width :36rem;
margin-left:-18rem;
}


}





/* = = = = = = = = = = = = = = = = = = = = = Code Ende = = = = = = = = = = = = = = = = = = = = = */