@charset "utf-8";

html,
body {
	color: #EAECEE;
	font-family: arial;
	text-align: center;
	background-color: #424242;
	
	padding: 0;
	margin: 0;
}
h1 {
	font-size: 3.0em;
	padding-top: 40px;
	margin-top: 0;
	margin-bottom: 10px;
}

h2 {
	font-size: 2.3em;
	padding-top: 1.5em;
	margin-top: 0em;
	text-align: center;
}

p {
	font-size: 1.1em;
	padding-bottom: 0.1em;
	margin-bottom: 0em;
}

img {
	border: 5px solid #eee;
}

img.responsive {
	width: 95%;
	max-width: 600px;
	height: auto;
}

section {
	padding-top: 3em;
}

#menu { /* Eigenschaften befinden sich bei #menu da sie die ganze section betreffen */
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	border: medium solid white;

    background-color: #C0C0C0;
    position: fixed; /* Bleibt fest und unbeweglich */
	top: 0; /* Macht, dass der Abstand sich bis zum Bildschirm rand oben, links und rechts ausbreitet */
	right: 0; 
	left: 0;
    width: 100%; /* Macht, dass die Leiste von links nach rechts geht und kein simples Rechteck in der Ecke ist */
    overflow: hidden;
	z-index: 1; /* Macht, dass die Menüleiste alles überlappt */
}

#menu ul {
	list-style-type: none;
	margin-top: 0; /* Andererweise entsteht ein Abstand nach oben und unten, der mit der Hintergrundfarbe gefüllt wird */
	margin-bottom: 0;
	padding-inline-start: 0;
}

#menu li {
	display: inline;
	float: center;
}

#menu li a {
	display: inline-block;
	text-align: center;
	/* davor: color: #EAECEE; */
	color: black;
	text-decoration: none; /* Entfernt die Unterstreichung */
}

.menutext a {
	padding: 14px 14px;
	font-size: 1.8em;
}

.menuimg {
	float: right;
	font-size: 0; /* Siehe unteren Kommentar zur gleichen Eigenschaft */
	margin: 0 auto;
}

.menuimg a {
	font-size: 0; /* Aus welchem Grund auch immer hat das einen Einfluss auf einige Zusatzpixel, die vorher entstanden sind weil die Font überlappt hat oder so!!! */
	padding: 5px 5px;
}

.menuimg img {
	border: 0;
}

#menu li a:hover {
	/* davor: color: #111111 */
	background-color: #AFAFAF;
}

#home {
	background-image: url(img/holzwandv2.jpg);
	background-repeat: no-repeat;
	background-attachment: fixed;
	padding-top: 30px;
}

#informations {
	padding-top: 4em;
}

#informations_list, #verleih, #kontaktdaten {
	text-align: justify;
	
	margin-left: 30%;
	margin-right: 30%;
}

.symbolkasten {
	border: medium solid white;
	background-color: #C0C0C0;
	color: black;
	margin-top: 2.5em;
	margin-bottom: 2.5em;
	padding: 0.5em;
}

.symbolkasten h2 {
	padding-top: 1em;
}

.symbolkasten img {
	width: 20%;
	border: none;
	float: left;
}

#grundpreise img {
	width: 15%;
}

#desinfektion img {
	width: 15%;
	margin-left: 1em;
}

#anlieferung img {
	margin-top: 1em;
}

#kontaktdaten {
	margin-bottom:50px;
	text-align: center;
}

#kontaktdaten a, #extrasitesreference a {
	font-size: 1.1em;
	color: #EAECEE;
	font-family: arial;
}

#extrasitesreference {
	margin-bottom: 1em;
}

#extrasitesreference ul {
	list-style-type: none; /* Macht das Stichpunktzeichen unsichtbar */
}

#extrasitesreference li {
	display: inline; /* Macht, dass die Listenpunkte in einer horizontalen statt vertikalen Reihe angezeigt werden */
	float: center;
	margin-left: 0.5em; /* Macht, dass die beiden Verweise etwas Abstand von einander haben */
	margin-right: 0.5em; /* und nicht als ein Satz gelesen werden können */
}

#kontaktdaten a:hover, #extrasitesreference a:hover {
	color: #CACFD3;
}

#impressumsite, #mietbedingungensite {
	text-align: left;
	margin-left: 7.5%;
	margin-right: 7.5%;
}

@media screen and (max-width: 1024px) {
	
	.menutext a {
		font-size: 1.1em;
		padding: 12px 7px;
	}
	
	.menuimg img {
		width: 35px;
		height: 35px;
	}
	
	#informations {
		padding-top: 3em;
	}
	
	#informations_list, #verleih, #kontaktdaten, #extrasitesreference, #impressumsite, #mietbedingungensite {
		margin-left: 5%;
		margin-right: 5%;
	}
	
	#mietbedingungensite h1 {
		font-size: 2.0em;
	}
	
	.symbolkasten img {
		width: 30%;
	}
	
	#grundpreise img {
		width: 25%;
		margin-top: 1em;
	}
	
	#holz img {
		margin-top: 1em;
		margin-left: 1em;
	}
	
	#desinfektion img {
		width: 25%;
		margin-left: 0em;
	}
	
	#anlieferung img {
		margin-top: 2em;
	}
}



/* Slider */

* {box-sizing:border-box}

/* Slideshow container */
.slideshow-container {
	max-width: 1000px;
	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;
}

/* Positioniere den "Prev Button" links */
.prev {
	left: 5px;
}

/* Position the "next button" to the right */
.next {
	right: 5px;
	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);
}

/*
/* Caption text //
.text {
	color: #f2f2f2;
	font-size: 15px;
	padding: 8px 12px;
	position: absolute;
	bottom: 8px;
	width: 100%;
	text-align: center;
}
*/

/* Number text (1/n etc) */
.numbertext {
	background-color: #eee;
	color: #424242;
	font-size: 18px;
	font-weight: bold;
	padding: 8px 12px;
	position: absolute;
	top: 0;
}

/* The dots/bullets/indicators */
.dot {
	cursor: pointer;
	height: 15px;
	width: 15px;
	margin: 0 2px;
	background-color: #bbb;
	border-radius: 50%;
	display: inline-block;
	transition: background-color 0.6s ease;
	
	margin-bottom: 20px;
}

.active, .dot:hover {
	background-color: #717171;
}

/* 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}
}



.touchgallery {
	position: relative;
	overflow: hidden;
	width: 800px; /* default gallery width */
	height: 600px; /* default gallery height */
	background: #eee;
	margin: auto;
}
 
.touchgallery ul{
	list-style: none;
	margin: 0;
	padding: 0;
	left: 0;
	position: absolute;
	-moz-transition: all 100ms ease-in-out; /* image transition. Change 100ms to desired transition duration */
	-webkit-transition: all 100ms ease-in-out;
	transition: all 100ms ease-in-out;
}
 
.touchgallery ul li{
	float: left;
	display: block;
	width: 800px;
	text-align: center;
}
 
.touchgallery ul li img{ /* CSS for images within gallery */
	width: 95%;
	max-width: 1000px; /* make each image responsive, so its native width can occupy up to 100% of gallery's width, but not beyond */
	height: auto;
}