﻿/* CSS Document für HK-Sites*/
/*DosisFonts einbinden
/* dosis-200 - latin */
@font-face {
  font-family: 'Dosis';
  font-style: normal;
  font-weight: 200;
  src: local('Dosis ExtraLight'), local('Dosis-ExtraLight'),
       url('./000fonts/dosis-v8-latin-200.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
       url('./000fonts/dosis-v8-latin-200.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}

/* dosis-regular - latin */
@font-face {
  font-family: 'Dosis';
  font-style: normal;
  font-weight: 400;
  src: local('Dosis Regular'), local('Dosis-Regular'),
       url('./000fonts/dosis-v8-latin-regular.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
       url('./000fonts/dosis-v8-latin-regular.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}

/* dosis-700 - latin */
@font-face {
  font-family: 'Dosis';
  font-style: normal;
  font-weight: 700;
  src: local('Dosis Bold'), local('Dosis-Bold'),
       url('./000fonts/dosis-v8-latin-700.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
       url('./000fonts/dosis-v8-latin-700.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
*{
	font-family: Dosis, Arial, sans ;
 	padding:0rem; margin: 0rem;
  	box-sizing: border-box;
}
#infospaltelinks
{
	position:relative;
	width:49%;
	float:left;
	z-index:10;
	text-align:center;
	display:block;
}
#infospalterechts
{
	position:relative;
	width:49%;
	text-align:center;
	float:right;	
	z-index:10;
	display:block;
	
}

.titel, h1, h2, h3
{
	/*color: #b38600;	*/
}
hr
{
/*	background-color: #b38600;	*/
}
li{
	font-size:0.8rem;
}
/*----- BUTTONS -----------*/

.meinbutton {
  background-color: #4CAF50; /* Green */
  width: 90%;
  border: none;
  /*color: white;*/
  padding: 16px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 1.3rem;
  margin: 4px 2px;
  -webkit-transition-duration: 0.4s; /* Safari */
  transition-duration: 0.4s;
  cursor: pointer;
}

.meinbutton :hover {
  background-color: #4CAF50; /* Green */
  color: white;
}

.meinbutton4 {
  background-color: white; 
  color: black; 
  border: 3px solid  teal;
  width: 99%;  
  font-size:1.1rem;
  -webkit-transition-duration: 0.4s; /* Safari */
  transition-duration: 0.4s;



}
.meinbutton4 a {
  background-color: white; 
  
}

.meinbutton4:hover{
  background-color: #254441;
  color: white;
}

/*------Ende Buttons------------*/


/*---------------------
mobile-first-Ansatz
für die kleinsten Geräte (IPhone...)
---------------------*/


/* 01 - Navigationsmenü
Hintergrundfarbe für den gesamten Container
(unterhalb der Menüpunkte sichtbar) 
sollte gleich sein wie 10 */
nav { 
	background-color: #254441;
	}


/* 02 - Navigationsmenü - Links */
nav a {
	display:block;
	padding:14px 20px;	
	color:#FFF;
	font-size:1.1rem;
	text-decoration:none;
	line-height:1.2rem;
	}

/* 03 Hintergrundfarbe Quermenü beim hovern auf oberste Ebene   */
nav a:hover { 
	background-color: #666600; 
}

/* 06 Dropdowns verstecken+absolute Position*/
nav ul ul {
	/* Abstand zum übergeordneten Quermenü*/
	top: 2.2rem; 
}

/* 07 Kleine Auflösung: Hover-Hauptmenü ohne Untermenüs Große Auflösung: Hauptmenü*/
nav ul li {
	background-color:  #254441;
	}	

/* 08 Erste Unterebene von Hauptmenüs (dropdown) 
   wirkt sich nur ab 2. Auflösungsstufe aus */
nav ul ul li {
	width:350px;
}

/*09 wird im Moment nicht benutzt*/
nav ul li ul li:hover { 
	background-color: #254441; 
	}
	
/* 10 zweite, dritte usw. Ebene*/
nav ul ul ul li {
	position: relative;
	top:-60px;
	/* sollte gleich breit sein wie "width" bei "nav ul ul li" */ 
	left:350px; 
}



/*---------------------------------------------
 Media Queries
--------------------------------------------- */
@media all and (max-width : 4800px) {
}


@media all and (max-width : 1400px) {
}

@media all and (max-width : 1000px) {
}


/* ==============================
Abweichungen bei kleinen Auflösungen bis 768 px
=================================*/
@media all and (max-width : 768px) {

/* 01 Navmenü mit Toggle-Checkbox*/
	/* Style bei der Menütabelle  für kleinste Auflösung */
	.toggle {
		display: block;
		background-color: #254441;
		padding:14px 20px;	
		color:#FFF;
		font-size:1.1rem;
		text-decoration:none;
		border:none;
	}
	.toggle:hover {
		background-color: #666600;
	}

/* 06 Dropdowns grundsätzlich verstecken */
	nav ul ul {
		color: #ffffff;
	}
	nav a:hover,
 	nav ul ul ul a { 
	/* Link für Hauptmenü ohne Untermenü 
	sollte gleich sein wie  */
		background-color:  #666600;
	}
  
/*09-02*/  
	nav ul li ul li .toggle,
	nav ul ul a {
		/* kleine Auflösung:
		ausgeklapptes Untermenü*/
		background-color: #686859; 
	}

		
}


