
body {
	font-family: Corbel;
	font-size: 13pt;
	/* dunkel */
	color: white;


	background-image: url('../img/bg_blau.png');
	background-size: cover;
	background-position: center top;

	/*background-position: center top;	
	background-size: cover;*/
	background-repeat: no-repeat;
	background-color: rgb(0,0,51);
	/*height: 100%;*/

	/* flex
		source: https://stackoverflow.com/questions/90178/make-a-div-fill-the-height-of-the-remaining-screen-space
	*/
	display: flex;
	flex-direction: column;
	min-height: 100vh;       /* body takes whole viewport's height */
}

header {
	/* background-color: rgba(0, 0, 0, 0.7)*/
	font-size: smaller;
	color: gainsboro;
}

header a {
	color: gainsboro
}

main {
	flex: 1;                 /* this will make the container take the free space */
	margin-bottom: 35px;
	height: 100%;
}

footer {
	position: fixed;
	left: 0;
	bottom: 0;
	width: 100%;
	padding: 7px;
	font-size: smaller;
	background-color: #00000088;
	color: gainsboro;
  }

.pageContent  {
	background-color: #FFFFFF; /*CC;*/
	color: black;
	padding: 20px;
	margin-top: 30px
}

h1 {
    position: relative;
    z-index: 1;
    overflow: hidden;
    text-align: center;
	margin-bottom: 10px;
}
h1:before {
    margin-left: -50%;
    text-align: right;
    position: absolute;
    top: 51%;
    overflow: hidden;
    width: 48%;
    height: 3px;
    content: '\a0';
    background-color: blue;
}
h1:after {
	margin-left: 20px;
    position: absolute;
    top: 51%;
    overflow: hidden;
    width: 48%;
    height: 3px;
    content: '\a0';
    background-color: blue;
}


.pageContent h2 {
	width: 100%;
	border-bottom: solid 0.5px #444444;
	margin-top: 15px;
}

.pageContent h3 {
	margin-top: 35px;
	margin-bottom: 5px;
}

.pageContent .highlight {
	color: blue
}

/*
	HINTERGRUND
*/
#hintergrundDiv {
}


/*
-------------------------------------------------------------------------------------------------
    HEADER
-------------------------------------------------------------------------------------------------
*/
#divHeaderLogo { /*
    padding-top: 8px;
    padding-bottom: 8px; */
}

#imgHeaderLogo {
    width: 275px;
	/*background-color: wheat;*/
}


#mainContent {
	/*background-color: white;*/
	/*color: black*/
}
/*
#mainContent a {
	color: white;
}*/
#mainContent a:hover {
	color: white;
}


/*
-------------------------------------------------------------------------------------------------
    CLAIM
-------------------------------------------------------------------------------------------------
*/
#claimRow {
	margin-top: 150px;
	text-transform: capitalize;
	font-variant: small-caps;	
}

#claimDiv {
	/* dunkel */
	/*background-color: #00000088;*/
}

#claimTitle {
	font-size: 40pt;
}

#claimText {
	font-size: 17pt;
}

/*
-------------------------------------------------------------------------------------------------
    KOMPETENZEN
-------------------------------------------------------------------------------------------------
*/
#kompetenzenRow {
	margin-top: 60px;
	font-size: 24pt;
	text-align: center;
	text-transform: capitalize;
	font-variant: small-caps;
}

/* NAVIGATION */


.kompetenzNavigation {
	padding-bottom: 25px;
}

a.navigation {
	color: #3a3a3a;
	font-size: smaller;
	text-decoration: none;
	padding: 0px 5px 5px 5px;
  }
a.navigation:hover {
	color: blue;
  }

  .dropdown {
	position: relative;
	display: inline-block;
  }
  
  .dropdown-content {
	display: none;
	position: absolute;
	background-color: #f9f9f9;
	min-width: 160px;
	box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
	padding: 12px 16px;
	z-index: 1;
  }
  
  .dropdown:hover .dropdown-content {
	display: block;
  }
  .dropdown-content:hover {
	  display: block;
  }

/* NAV MENU */

.menu {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 95%;
	margin: 0 auto;
	font-family: "Orbitron", sans-serif;
  }
  
  ol {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	width: 100%;
	margin: 0 auto;
	padding: 0.5em 0;
	list-style: none;
  }
  

  .menu-item {
	/* 
	background: #444;
	padding: 1em 0.5em;
	min-width: 8em;
	 */
	 
	/* dunkel */	
	/*background: rgb(213, 13, 23); */
	border-bottom: 5px solid #999;

	padding: 10px 15px;
	position: relative;
	margin: 3px 0.1em;
	transition: border-bottom 0.23s ease-in-out, background 0.23s linear;
	cursor: pointer;
	text-align: center;
  }

  /* wechselt die Farbe des Links im menu item */
  .menu-item:hover a {
	/*color: black;*/
  }
  .menu-item:hover .sub-menu a {
	/* dunkel */
	/*color: black;*/
  }
  .menu-item:hover .sub-menu .menu-item:hover a {
	/*color: black;*/
  }
  .menu-item[aria-haspopup=true] {
	/*color: black;*/
	border-bottom-color: #fc9b1b;
  }
  .menu-item:hover, .menu-item:focus-within {
	/*border-bottom-color: #91d36b;*/
	/*color: black;*/
	border-bottom-color: blue;
	/*background-color: white;*/
	/* dunkel */
	/*background: #333; */
  }
  .menu-item:hover .sub-menu, .menu-item:hover .sub-menu:hover, .menu-item:focus-within .sub-menu, .menu-item:focus-within .sub-menu:hover {
	visibility: visible;
	opacity: 1;
	display: flex;
  }
  
  .sub-menu {
	flex-direction: column;
	align-items: flex-start;
	position: absolute;
	left: 0;
	/*margin-top: 1em;*/
	visibility: hidden;
	display: none;
	opacity: 0;
  }
  .sub-menu .menu-item {
	/* 
	padding: 1em;
	width: 10em;
	*/
	background-color: #5f5f5f;
	padding: 10px 15px;
	min-width: 10em;
	margin: 0.1em 0;
	text-align: center;
	z-index: 2;
  }
  
  .menu-item a {
	  /* dunkel */
	color: white;

	text-decoration: none;
	text-transform: uppercase;
  }
  .menu-item a:hover {
	outline: none;

	/* dunkel.*/
	color: black;

	text-decoration: none;
  }
  .menu-item a:focus {
	outline: none;
	
	/* dunkel.*/
	color: black;

	text-decoration: none;
  }
  
  @media (max-width: 690px) {
	.menu {
	  width: 95%;
	  font-size: 16px;
	}
  
	.menu-item {
	  margin: 0.1em;
	}
	.menu-item:nth-child(1) {
	  order: 0;
	}
	.menu-item:nth-child(2) {
	  order: 1;
	}
	.menu-item:nth-child(3) {
	  order: 3;
	}
	.menu-item:nth-child(4) {
	  order: 4;
	}
	.menu-item:nth-child(5) {
	  order: 2;
	}
  }
  @media (max-width: 480px) {
	.menu {
	  font-size: 12px;
	}
  }


/*
-------------------------------------------------------------------------------------------------
    PRELOADER
-------------------------------------------------------------------------------------------------
*/
/*
  Timming is set in -> js/script.js
*/
#preloader {
	background-position: center;
	/*background-image: url(../preloader.gif);*/ /* image is set in the start page directly*/
	background-size: cover;
	background-repeat: no-repeat;
	bottom: 0;
	left: 0;
	position: absolute;
	right: 0;
	top: 0;
	z-index: 9999;
}
#pre-status, .preload-placeholder {
	position: absolute;
}
.preload-placeholder {
	left: 0;
	margin: 0;
	text-align: top;
}


/*
-------------------------------------------------------------------------------------------------
    SEITENFORMATIERUNGEN
-------------------------------------------------------------------------------------------------
*/
.einzugLinks1 {
	margin-left: 20px;
	margin-bottom: 20px;
}
.einzugLinks2 {
	margin-left: 40px;
	margin-bottom: 20px;
}

.claimAufzaehlung {
	font-weight: bold;
}

/*
-------------------------------------------------------------------------------------------------
    SLIDESHOW
-------------------------------------------------------------------------------------------------
/* Slideshow container */
.slideshow-container {
	position: relative;
	margin: auto;
  }
  
  /* Hide the images by default */
  .mySlides {
	display: none;
  }
  
  /* Next & previous buttons */
  .prev, .next {
	cursor: pointer;
	position: absolute;
	top: 50%;
	width: auto;
	margin-top: -22px;
	padding: 16px;
	color: white;
	font-weight: bold;
	font-size: 18px;
	transition: 0.6s ease;
	border-radius: 0 3px 3px 0;
	user-select: none;
  }
  
  /* Position the "next button" to the right */
  .next {
	right: 0;
	border-radius: 3px 0 0 3px;
  }
  
  /* On hover, add a black background color with a little bit see-through */
  .prev:hover, .next:hover {
	background-color: rgba(0,0,0,0.8);
  }
  
  /* Fading animation */
  .fadeSlide {
	-webkit-animation-name: fadeSlideAnimation;
	-webkit-animation-duration: 1.5s;
	animation-name: fadeSlideAnimation;
	animation-duration: 1.5s;
  }
  
  @-webkit-keyframes fadeSlideAnimation {
	from {opacity: .4}
	to {opacity: 1}
  }
  
  @keyframes fadeSlideAnimation {
	from {opacity: .4}
	to {opacity: 1}
  }