html {
	margin: 0;
	width: 100%;
	height: 100%;
}

body {
	position: absolute;
	margin: 0;
	width: 100%;
	height: 100%;
	color: #000;
}

/*

@font-face {
    font-family: CG;
    src: url(./fonts/CormorantGaramond-Light.ttf);
}

@font-face {
    font-family: CGI;
    src: url(./fonts/CormorantGaramond-LightItalic.ttf);
}

@font-face {
    font-family: Char;
    src: url(./fonts/Charmonman-Regular.ttf);
}

*/

@font-face {
	font-family: GenBas;
	src: url("../fonts/GenBasR.ttf");
}


/*
#####################################################
################	PDFs    	#####################
#####################################################
*/

.pdf_viewer {
	width: 100%;
	height: 1160px;
	max-height: 95h;

	margin-bottom: 100px;
}


/* ######################################
   ######################################
				 WEBSITE
   ######################################
   ###################################### */

@keyframes fadein {
	from {
		opacity: 0.5;
	}

	to {
		opacity: 1;
	}
}

#website {

	animation-name: fadein;
	animation-duration: 0.5s;
	animation-timing-function: ease-in-out;

	/*	cubic-bezier(0.1, 0.7, 1.0, 0.1);	*/
}

#background_image {
	background-image: url("../images/fell.jpg");
	background-size: cover;
	filter: brightness(1.5);
	position: fixed;
	top: 0;
	left: 0;
	background-color: #2E2E2E;
	display: table;
	height: 100%;
	width: 100%;
	z-index: -1;
}

/* ######################################
				 START
   ###################################### */

#start {
	height: 200px;
	width: 100%;
	background: -moz-linear-gradient(top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.8) 60%, rgba(0, 0, 0, 0) 100%);
	/* FF3.6-15 */
	background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.8) 60%, rgba(0, 0, 0, 0) 100%);
	/* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.8) 60%, rgba(0, 0, 0, 0) 100%);
	/* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#cc000000', endColorstr='#00000000', GradientType=0);
	/* IE6-9 */
}

#start:hover {
	text-shadow: 0px 0px 3px rgba(255, 255, 255, 0.5);
	color: rgba(255, 255, 255, 1);
}


#start a {
	margin: auto;
	position: relative;
	top: 50px;
	width: 200px;
	height: 60px;

	text-decoration: none;
	text-align: center;
	display: block;
	font-family: CG;
	font-size: 50px;
	text-shadow: 0px 0px 3px rgba(255, 255, 255, 0.5);
	color: rgba(255, 255, 255, 0.5);

	transition:
		color 0.5s,
		text-shadow 0.5s;
}

#start a:hover {
	text-shadow: 0px 0px 3px rgba(255, 255, 255, 0.5);
	color: rgba(255, 255, 255, 1);
}


#view {
	margin-top: -50px;
	margin-bottom: 10px;
	text-align: center;
}


#view div {
	width: 50px;
	height: 50px;

	margin-right: 5px;
	margin-left: 5px;

	display: inline-block;

	font-family: CG;
	text-align: center;
	line-height: 50px;

	background: rgba(255, 255, 255, 0.6);
	box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.9);

	transition:
		box-shadow 0.5s,
		background 0.5s;
}

#view div:hover {
	cursor: pointer;
	background: rgba(255, 255, 255, 0.85);
	box-shadow: 0px 0px 2px rgba(255, 255, 255, 0.9);
}





/* ######################################
				 CONTENT
   ###################################### */

#content {
	width: 1000px;
	margin: auto;
	margin-top: 0px;
}

.element {
	display: none;
	height: 470px;
	margin: 10px;
	float: left;
	width: 310px;
	background-color: rgba(255, 255, 255, 0.6);
	box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.9);
	transition: box-shadow 0.5s;
}

.element:hover {
	box-shadow: 0px 0px 2px rgba(255, 255, 255, 0.9);
}


@keyframes colorfade {
	from {
		filter: grayscale(00%);
	}

	to {
		filter: grayscale(80%);
	}
}

.element_cover {
	/* Coverbild Breite: 250px */
	margin-left: 30px;
	margin-top: 10px;
	width: 250px;
	height: 300px;
	border: 1px solid #d6d6d6;
	font-family: CG;
	font-size: 22px;
	text-align: center;
	vertical-align: center;
	display: block;
	cursor: pointer;

	animation-name: colorfade;
	animation-duration: 4s;
	animation-timing-function: ease-in-out;
	animation-fill-mode: forwards;


	transition:
		box-shadow 0.2s,
		filter 1s,
		animation 0.5s;
}

.element_cover:hover {
	box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.7);
	filter: grayscale(0%);
	animation: none;
}

.element_cover:onclick {
	border: 1px solid #000000;
}

.element_titel {
	margin-top: 10px;
	font-family: CG;
	font-weight: bold;
	font-size: 20px;
	color: #3a3a3a;

	text-shadow: 0px 0px 2px rgba(255, 255, 255, 0.4);

	margin-left: 35px;
	margin-right: 35px;
	margin-top: 5px;
	margin-bottom: 10px;
}

.element_info {
	font-family: CG;
	font-size: 12px;

	margin-left: 35px;
	margin-right: 35px;
	margin-bottom: 10px;
}

.element_info_point {
	margin-top: 5px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.element_info_point a {
	animation-name: colorfade;
	animation-duration: 4s;
	animation-timing-function: ease-in-out;
	animation-fill-mode: forwards;
}

.element_info_point a:hover {
	animation: none;
}











.DES_2_element {


	position: relative;
	margin-bottom: 10px;
	width: 100%;
	background: rgba(255, 255, 255, 0.6);
	box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.9);
	transition:
		box-shadow 0.5s,
		background 1s;
}

.DES_2_element:hover {
	box-shadow: 0px 0px 2px rgba(255, 255, 255, 0.9);
	background: rgba(255, 255, 255, 0.85);
}




.DES_2_element_link {
	display: block;
	width: 250px;
	height: 300px;
	padding: 20px;
}

@keyframes colorfade {
	from {
		filter: grayscale(00%);
	}

	to {
		filter: grayscale(80%);
	}
}

.DES_2_element_cover {
	width: 100%;
	height: 100%;

	border: 1px solid #d6d6d6;

	cursor: pointer;

	animation-name: colorfade;
	animation-duration: 4s;
	animation-timing-function: ease-in-out;
	animation-fill-mode: forwards;


	transition:
		box-shadow 0.2s,
		filter 1s,
		animation 0.5s;
}

.DES_2_element_cover:hover {
	box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.7);
	filter: grayscale(0%);
	animation: none;
}

.DES_2_element_content {
	height: 300px;
	text-overflow: ellipsis;

	position: absolute;
	top: 0px;
	left: 290px;

	padding: 20px;
	padding-right: 40px;
}


.DES_2_element_titel {
	font-family: GenBas;
	font-weight: bold;
	font-size: 26px;
	color: #262626;

	text-shadow: 0px 0px 2px rgba(255, 255, 255, 0.4);
}

.DES_2_element_description {
	padding-top: 15px;

	overflow: hidden;

	line-height: 140%;
	font-family: GenBas;
	font-size: 16px;
	text-shadow: 0px 0px 3px rgba(255, 255, 255, 0.3);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}


@media (max-aspect-ratio: 20/19) {
	.DES_2_element_descriptioniv {
		font-size: 22px;
	}
}

.DES_2_element_more {
	position: absolute;
	right: 40px;
	bottom: 20px;

	opacity: 0.35;
	transition:
		opacity 0.5s,
		right 0.5s;
}

.DES_2_element_more:hover {
	right: 35px;
	cursor: pointer;
	opacity: 1;
	-webkit-filter: drop-shadow(0px 0px 3px rgba(0, 0, 0, 0.5));
	filter: drop-shadow(0px 0px 3px rgba(0, 0, 0, 0.5));
}