@charset "utf-8";
/* CSS Document */

/* ----------------------------------------------------------------------------- *
 *                     Style ABN by A-KRUEGER Webdesign                          *
 * ----------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------- * 
 * Verwendete Farben
 * #1a1a1a - anthrazite
 * #29293d - Darkblue Corporate Identity
 * #006eb6 - Hellblau Corporate Identity
 * silver  - hellgrau
-------------------------------------------------------------------------------- */

*, *:before, *:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
	margin: 0;
  	padding: 0;
}

/* -------------------------------------Fonts-------------------------------------*/
@font-face {
 font-family: OpenSansLightCond;
 src: url("../fonts/Open_Sans/OpenSans-CondLight.eot") /* EOT file for IE */
}
 @font-face {
 font-family: OpenSansLightCond;
 src: url("../fonts/Open_Sans/OpenSans-CondLight.ttf") /* TTF file for CSS3 browsers */
}
@font-face {
 font-family: OpenSansLight;
 src: url("../fonts/Open_Sans/OpenSans-Light.eot") /* EOT file for IE */
}
 @font-face {
 font-family: OpenSansLight;
 src: url("../fonts/Open_Sans/OpenSans-Light.ttf") /* TTF file for CSS3 browsers */
}


/* ---------------------------------------------------------------------------*/
/*                                  Header                                    */
/* ---------------------------------------------------------------------------*/
header {
	margin: 0 auto;
	width: 100%;
	height: auto;
	position: fixed;
	z-index: 9999;
	top: 0;
	
	}

#header-limiter {
	margin: 0 auto;
	margin-top: 0;
	margin-bottom: 0px;
	max-width: 1200px;
	height: 100px;
	position: relative;
	}

#header-bg {
	background: #000000;
	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.5), 0 6px 10px 0 rgba(0, 0, 0, 0.5);
	height: 100px;
	top: 0;
	position: relative;
	display: none;
	
}

.header-flex-container-row {
	margin: 0 auto;
	width: 100%;
	height: 100px;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	margin-top: -15px;
	}





/* -----------------------------Logo----------------------------*/

.logo {
	padding-top: 12px;
	left: 0;
	top: 0;
	position: relative;
	}

.logo img {
	width: auto;
	max-height: 60px;
	margin: 0;
	position: absolute;
	}

/* ----------------------------------------------------------------------------- *
 *                                Navigation                                     *
 * ----------------------------------------------------------------------------- */

.header-flex-item-menu {
	flex:1;
}

.hamburger {
	background-color: transparent;
	border: transparent;
	color: white;
	padding: 15px 15px;
	font-size: 30px;
	cursor: pointer;
  	right: 0;
	margin-right: 0;
  	position: absolute;
  	top: 15px;
	z-index: 2;
}

.hamburger:hover, .hamburger:focus {
	color: silver;
}

.nav-content {
	display: none;
	position: relative;
	overflow: hidden;
	z-index: 1;
	margin: 0;
	right: 0;
	top: 100px;
}

.links a {
	background-color: #1a1a1a;
	color: white;
  	font-family: system-ui, sans-serif;
	font-size: 1.0em;
	text-transform: uppercase;
  	padding: 15px 15px;
  	text-decoration: none;
  	display: block;
}

.header-flex-item-menu a:hover, .links a:hover  {color: silver;}
