

/* = = = = = = = = = = = = = = = = = 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:28rem;display:table;
z-index:1;
width :30rem;
position:absolute;
bottom:50%;left:50%;
margin-left:-15rem;
background:gold;
padding: 1rem 0 1rem 0;
margin-bottom:-14rem;
opacity:0;
transition:all 2s;
}

#menu1 ul {display:table-cell;vertical-align:middle;
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:.1px;
padding:.4rem 1rem ;
margin: 0;
color:#000 ;
text-transform:uppercase;
}

#menu1 a:hover  {
background:#002293;
color:#fff;
}




/* - - - - - TOGGLE-FUNKTION (MENÜ AN UND AUS) MIT CHECKBOX-HACK - - - - - */

/* menü-öffnen-schalter  formatierung */
label.button-open {display:table;
z-index:2;
position:absolute;
top:1rem;right:1rem;
margin-right:0rem;
margin-top:0rem;
background:#0035EC;
cursor:pointer;
height:4.4rem;
line-height:4.4rem;
width:4.4rem;
box-shadow: 0 0 3px 0 rgba(0,0,0,0.3);
border-radius: 3px;
}

label.button-open .fa {font-size:2rem;
display:table-cell;
vertical-align:middle;
text-align:center;
color:yellow;line-height:4rem;height:4rem;
}


/* menü-schliessen-schalter  formatierung */
label.button-close {display:table;
z-index:2;
background:#0035EC;
box-shadow: 0 0 3px 0 rgba(0,0,0,0.3);
position:absolute;
top:1rem;right:1rem;
margin-right:0rem;
margin-top:0rem;
cursor:pointer;
height:4.4rem;
line-height:4.4rem;
width:4.4rem;
border-radius: 3px;
}

label.button-close .fa {font-size:2rem;
display:table-cell;
vertical-align:middle;
text-align:center;
color:yellow;line-height:4rem;height:4rem;
}


/* checkbox versteckt */
input[type=checkbox]{
display: none;
}

/* schaltet menu ein/aus */
input#open:checked ~ #menu1  {
opacity:1;
}

/* schaltet zwischen 'menu-öffen-button' und 'menu-schliessen-button' */
input#open:checked ~ .button-open  {
visibility:hidden
}





/* ############################################################ */
/* M E D I A   Q U E R I E S - RESPONSIVE-BILDSCHIRMABFRAGEN*/
/* ############################################################ */



/* ==================================== ab 1024 pixel ================================== */
@media (min-width: 1024px) {

/* menu-schalter versteckt */
label.button-open ,label.button-close {display:none;
}


/* menu sichtbar */
#menu1 {position:absolute;
background:#1d52ff;
background:rgba(0,0,0,.5);
height:0%;width:100%;
bottom:0rem;left:0%;
margin-bottom:0rem;
margin-left:0;
padding:.5rem;
box-shadow:0 0 3px black;
opacity:1;
border-top:solid .1rem black;
border-bottom:solid .9rem gold;
}

#menu1 ul  {
margin:0;
padding:0;
}

#menu1 li  {display:inline-block;
margin:0;
padding:0;
}

#menu1 li a {
background:transparent;
color:gold;
line-height:3.6rem;
width:100%;
padding:.5rem 1rem .5rem 1rem;
border-radius:.4rem;
letter-spacing:1px;
}

#menu1 li a:hover {
color:#000;
background:gold;
}



}

/* = = = = = = = = = = = = = = = = = = = = = Code Ende = = = = = = = = = = = = = = = = = = = = = */