




						/* BODY -----------------------------*/
						/*************************************************/
						/*************************************************/
						/*************************************************/
						/*************************************************/



body{

}

ul {
	list-style: none;
}

							/* CONTENT --------------------------*/
							/*************************************************/
							/*************************************************/
							/*************************************************/
							/*************************************************/
							/*************************************************/

.employee{
	padding:0;
	display: flex;
	justify-content: center;
	flex-direction: column;
		box-shadow: 0px -10px 20px rgba(0,0,0,0.2);
}

.employee div {
	text-align: center;
	width:95%;
	margin:auto;
	font-size: 0.9em;

}

.employee div img{
	width:50%;
	float:left;
	padding:10px;
	margin:10px;
	box-shadow: 0 10px  20px gray;
}

.info{
	padding:0;
}

.info ul li{
	font-size: 0.7em;
}

.info p{
	text-align: center;
	font-size: 0.6em;
	
}

ul {
	margin:0;
	padding:0;
}

				

								/* FORMULÄR ---------------------------------*/
								/*************************************************/
								/*************************************************/
								/*************************************************/
								/*************************************************/

form div{
	margin-top: 0px;
	padding:10px;
	display: flex;
	flex-direction: column;

}

textarea{
	margin-top: 20px;
	border:1px solid lightgray;
	height: 100%;
	outline: none;
}

button{
	margin-top: 10px;
	padding:12px 20px;
	line-height: 0.7em;
	align-self: flex-end;
	border-radius: 10px 0;
	background:  #C4D0BF;
	color:white;

}

input {
	border-radius:20px 0;
	text-align: center;
	outline:0;
	border:0;
	border-top: 1px solid gray;
	margin-top: 20px;
	height: 30px;
}

input, textarea{
	transition-property: background;
	transition-duration: 0.6s;
}

input[type=text]:focus {
	background: #CFD8CA;
	box-shadow: none;
	outline: none;
	color:white;
}	

textarea:focus{
	background: #CFD8CA;
	color:white;
	border-radius: 0px 20px;
}
									/*************************************************/
									/*************************************************/
									/* KOBILD ----------------------------------------*/
									/*************************************************/
									/*************************************************/
									/*************************************************/
.kobild{
	width:250px;
	height:188px;
	align-self: center;
	margin:auto;
	box-shadow: 0 2px 20px rgba(0,0,0,0.6);
	background: url("../../img/kobild.jpg");
	background-size: cover;
	position: relative;
    transition-property: transform;
	transition-duration: 1s;
	display: flex;
	justify-content: center;
}

.kobild div {	
	width:250px;
	height:188px;
	position: absolute;
	color:white;
	background: rgba(0,0,0,0.5);
	display: flex;
	opacity: 0;
	justify-content: center;
	align-items: center;
	transition-property: opacity;
	transition-duration: 1s;
	padding: 20px;
}

#click {
	text-align: center;
}

.kobild:hover > div {
	opacity: 1;
}

.kobild: > div {
	opacity: 0.5
}

								/* MEDIA QUIERIES -------------------------------> */
								/*************************************************/
								/*************************************************/
								/*************************************************/
								/*************************************************/

@media (min-width: 801px ){
				
	#click{
		display: none;
	}
	textarea{
		width: 500px;
					
	}

	.under{
		display: flex;
		flex-wrap: wrap;
		flex-direction: row;
	}

	form {
		margin-top: 0px;
		flex-direction: row;
		width:50%;
	}
	
	form {
		margin-top: 0px;
		padding:10px;
		display: flex;
		width:50%;
	}

	.kobild{
			height:263px;
			width:350px;
		}

	.kobild div {
		height:263px;
		width:350px;}

	#employee {
		margin:20px;
		text-align: left;
	}
	.employee{
		flex-direction: row;
		margin:0;
	}
	.employee div{
		margin:0;
	}
	
	.employee div img{
		float: none;	
		margin-top: 50px;
	
	}

}


@media (min-width: 500px ){

	.info ul li{
	font-size: 1em;

	}
	.info{
		padding:20px;
	}

		
			
	.info p{
		text-align: center;
		font-size: 1em;
	}
}

