@charset "UTF-8";
/* Body */
@font-face {
    font-family: 'source_sans_proregular';
    src: url('../font/sourcesanspro/sourcesanspro-regular-webfont.woff2') format('woff2'),
url('../font/sourcesanspro/sourcesanspro-regular-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}

@font-face {
    font-family: 'source_sans_probold';
    src: url('../font/sourcesanspro/sourcesanspro-bold-webfont.woff2') format('woff2'),
url('../font/sourcesanspro/sourcesanspro-bold-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}

@font-face {
    font-family: 'source_sans_probold_italic';
    src: url('../../css/sourcesanspro-boldit-webfont.woff2') format('woff2'),
url('../../css/sourcesanspro-boldit-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}

@font-face {
    font-family: 'source_sans_proitalic';
    src: url('../../css/sourcesanspro-it-webfont.woff2') format('woff2'),
url('../../css/sourcesanspro-it-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}

@font-face {
    font-family: 'source_sans_prolight';
    src: url('../../css/sourcesanspro-light-webfont.woff2') format('woff2'),
url('../../css/sourcesanspro-light-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}

@font-face {
    font-family: 'source_sans_prolight_italic';
    src: url('../../css/sourcesanspro-lightit-webfont.woff2') format('woff2'),
url('../../css/sourcesanspro-lightit-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}

@font-face {
    font-family: 'source_sans_prosemibold';
    src: url('../font/sourcesanspro/sourcesanspro-semibold-webfont.woff2') format('woff2'),
url('../font/sourcesanspro/sourcesanspro-semibold-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}

@font-face {
    font-family: 'source_sans_proSBdIt';
    src: url('../../css/sourcesanspro-semiboldit-webfont.woff2') format('woff2'),
url('../../css/sourcesanspro-semiboldit-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}
body {
	background-color: #FFFFFF; 
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	font-family: 'source_sans_proregular', 'source_sans_probold';
	font-style: normal;
	font-weight: normal;
	font-size: 1em;
	line-height: normal;
	scroll-behavior: auto;
}
/* Container */
.container {
	width: 90%;
	margin-left: auto;
	margin-right: auto;
	background-color: #FFFFFF;
}
/* Navigation */
header {
	width: 90%;
	height: 50px;
	background-color: #fff;
	border-bottom: 1px solid #242424;
	position: fixed;
	z-index: 2;

}
.logo {
	color: #000000;
	width: auto;
	float: right;
	font-family: 'source_sans_prosemibold';
	margin-top: 5px;
	margin-right: 40px;
	letter-spacing: 4px;
	cursor: context-menu;
}
nav {
	float: left;
	width: auto;
	margin-left: 0px;
	text-align: center;
}
header nav ul {
	list-style: none;
	float: left;
}
nav ul li {
	float: left;
	color: #000000;
	font-family: 'source_sans_prosemibold';
	font-size: 1em;
	text-align: left;
	margin-right: 25px;
	letter-spacing: 2px;
	transition: all 0.3s linear;
}
ul li a {
	color: #000000;
	text-decoration: none;
}
ul li:hover a {
	border-bottom: 2px solid;
	border-color: #000;
}
#linie {border-bottom: 2px solid #000000;
}
/* Titel*/
	.titeldrop {
  background-color: #ffffff;
  color: #000;
		position: sticky;
  border-bottom: solid 1px #000;
  padding: 12px;
  font-size: 1em;
  cursor: pointer;
}

.dropdown {
	float: right;
	margin-top: 150px;
	margin-right: 40px;
  position: relative;
  display: inline-block;
}

.dropdown-content {

  display: none;
  position: absolute;
  right: 0;
  text-align: right;
  background-color: #f9f9f9;
  border-top: 1px solid #000;
  margin-top: -1px;
  width: max-content;
  z-index: 1;
}

.dropdown-content a {
  color: black;
  padding: 5px 10px;
  text-decoration: none;
  display: block;
}

.dropdown-content a:hover {background-color: #f1f1f1;}

.dropdown:hover .dropdown-content {
  display: block;
}

.dropdown:hover .titeldrop {
  color: #C0C0C0;
}

/* Stats Gallery */
.gallery {
	clear: both;
	display: grid;
  	grid-template-columns: repeat(auto-fill, 220px);
	grid-gap: 25px;
	width: 100%;
	background-color: #FFFFFF;
	justify-content: center;
	/* [disabled]min-width: 400px;
*/
	padding-bottom: 35px;
	padding-top: 100px;
	margin-bottom: 0px;
}
.thumbnail {
	float: none;
	position: relative;
	width: 220px;
	height: 240px;
	overflow: hidden;
	margin-top: 25px;
	background-image: url(../../css/bilder/klein/1_pan.jpg);
}
.thumbnail .overley {
	position:absolute;
	left:0;
	top:0;
	right:0;
	bottom:0;
	background-color: rgba(255,255,255,0.7);
	visibility:hidden;
	opacity:0;
	transition: opacity 0.4s ease-out;
}
.thumbnail .overley p{
	padding-top: 50%;
	left: 50%;
	text-align:center;
    top: 50%;
	color: #000000;
}
.thumbnail:hover .overley {
	visibility:visible;
	opacity:1;
}
/* More info */
footer {
	background-color: #FFFFFF;
	padding-bottom: 35px;
}
.button {
	width: 200px;
	margin-top: 40px;
	margin-right: auto;
	margin-bottom: auto;
	margin-left: auto;
	padding-top: 20px;
	padding-right: 10px;
	padding-bottom: 20px;
	padding-left: 10px;
	text-align: center;
	vertical-align: middle;
	border-radius: 0px;
	letter-spacing: 2px;
	border: 3px solid #FFFFFF;
	color: #686868;
	transition: all 0.3s linear;
}
.button:hover {
	background-color: #FEFEFE;
	color: #C4C4C4;
	cursor: pointer;
}
.copyright {
	text-align: center;
	padding-top: 20px;
	padding-bottom: 20px;
	background-color: #717070;
	color: #FFFFFF;
	letter-spacing: 2px;
	border-top-width: 2px;
}
.footer_banner {
	background-color: #DCDCDC;
	padding-top: 30px;
	padding-bottom: 60PX;
	margin-bottom: 0px;
	background-image: url(../../reste/images/pattern.png);
	background-repeat: repeat;
}
footer {
	display: inline-block;
}
.hidden {
	display: none;
}
