@CHARSET "ISO-8859-1";

img.logo {
	display: block;
	margin-left: auto;
	margin-right: auto;
	width: 60%;
	max-width: 400px;
	padding: 2em 0;
}

body {
	font-family: Calibri, Candara, Segoe, Segoe UI, Optima, Arial, sans-serif;
	text-align: center
}

section {
	position: relative;
	width: 100%;
	height: 100%;
	padding: 1em 0;
}

section.impressum {
	float: left;
	width: 25%;
}

section.datenschutzerklaerung {	
	text-align: left;
    	padding-top: 10px;
    	padding-right: 40px;
    	padding-bottom: 50px;
    	padding-left: 40px;
}

@media ( max-width : 810px) {
	section.impressum {
		width: 100%;
		display: block;
	}
}
section.farbzeile {
	width: 100%;
	height: 10px;
	/*background-color: #0D1A50;*/
	display: block;
}

section.kopfzeile {
	width: 100%;
	height: 40px;
	background-color: #0D1A50;
	display: block;
}

section.fusszeile {
	width: 100%;
	height: 50px;
	padding: 0 0;
	background-color: #0D1A50;
	float: left;
}

/* ------------------------ Fertigungsverfahren -------  */


.fertigung {
	display: inline-block;
	width: 45%;
	height: 100%;
	vertical-align: middle;
	padding: 0 8px;	
	text-align: left;
}

.fertigungslisten {
	display: inline-block;
	width: 45%;
	height: 100%;
	vertical-align: middle;
	padding: 0 8px;	
	list-style-type: circle;
}


/* ------------------------ Maschinen ------------------ */

/* Maschinen untereinander aufgelistet - jede auf einer Karte */

.card {
	display: inline-block;
	width: 95%;
	margin-bottom: 16px;
	margin-left: 16px;
	margin-right: 16px;
	height: 400px;
/* Add some shadows to create a card effect */
	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
}
.img-container {
	display: inline-block;
	width: 31%;
	vertical-align: middle;
	padding: 0 8px;
	//background-color:coral;
}
.container {
	display: inline-block;
	width: 31%;
	height: 100%;
	vertical-align: middle;
	padding: 0 8px;
}

/* Display the columns below each other instead of side by side on small screens */
@media ( max-width : 1000px) {
	.card {
		width: 95%;
		height: auto;
		display: block;
		margin-left: 16px;
		margin-right: 16px;
	}
	.img-container {
		display: inline-block;
		width: 60%;
		vertical-align: middle;
		padding: 0 8px;
		//background-color:coral;
	}
	.container {
		display: inline-block;
		width: 100%;
		height: 100%;
		vertical-align: middle;
		padding: 0 8px;
	}
	.fertigung {
		display: inline-block;
		width: 95%;
		height: 100%;
		vertical-align: middle;
		padding: 0 8px;	
		text-align: left;
	}
}

/* Clear floats */
.container::after, .card::after {
	content: "";
	clear: both;
	display: table;
}

.type {
	color: grey;
}

.comment {
	visibility: hidden;
	//color: #b71e35;
	font-style:italic;
}

h2, a {
	color: #b71e35;
}

* {
	box-sizing: border-box
}

/* ------------------------ Slide-Show ------------------ */
/* Slideshow container */
.slideshow-container {
	width: 95%;
	position: relative;
	margin: auto;
}

.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;
}

/* Position the "next button" to the right */
.next {
	right: 30px;
	border-radius: 0 3px 3px 0;
	background-color: rgba(0, 0, 0, 0.2);
}

/* Position the "previous button" to the left */
.prev {
	left: 30px;
	border-radius: 3px 0 0 3px;
	background-color: rgba(0, 0, 0, 0.2);
}

/* 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);
}

/* Caption text */
.text {
	color: #f2f2f2;
	font-size: 15px;
	padding: 8px 12px;
	position: absolute;
	bottom: 8px;
	width: 100%;
	text-align: center;
}

/* Number text (1/3 etc) */
.numbertext {
	color: #f2f2f2;
	font-size: 12px;
	padding: 8px 12px;
	position: absolute;
	top: 0;
}

/* The dots/bullets/indicators */
.dot {
	cursor: pointer;
	height: 13px;
	width: 13px;
	margin: 0 2px;
	background-color: #bbb;
	border-radius: 50%;
	display: inline-block;
	transition: background-color 0.6s ease;
}

.active, .dot:hover {
	background-color: #717171;
}

img.slide {
	width: 23.9%;
}

/* Fading animation */
.fade {
	-webkit-animation-name: fade;
	-webkit-animation-duration: 1.5s;
	animation-name: fade;
	animation-duration: 1.5s;
}

@
-webkit-keyframes fade {
	from {opacity: .4
}

to {
	opacity: 1
}

}
@
keyframes fade {
	from {opacity: .4
}

to {
	opacity: 1
}
}