#kopf {
	background-color: #E6E6E6;
	margin-left: auto;
	margin-right: auto;
	text-align: center;

}


.active {
  background-color: red;
}

body {
	max-width: 1080px;
	margin: auto;
	background: white;
	font-family: puritanregular, Helvetica, sans-serif;

}

#slider {
	overflow: hidden;
}
#slider figure {
	position: relative;
	width: 500%;
	margin: 0;
	left: 0;
	animation: 20s slider infinite;
}
#slider figure img {
	width: 10%;
	float: left;
}

@keyframes slider {
	0% {
		left: 0;
	}
	20% {
		left: 0;
	}
	25% {
		left: -100%;
	}
	45% {
		left: -100%;
	}
	50% {
		left: -200%;
	}
	70% {
		left: -200%;
	}
	75% {
		left: -300%;
	}
	95% {
		left: -300%;
	}
	100% {
		left: -400%;
	}
}

.slidershow{
  width: 700px;
  height: 400px;
  overflow: hidden;
}
.middle{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
}
.navigation{
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  z-index:300;
}
.bar{
  width: 50px;
  height: 10px;
  border: 2px solid #fff;
  margin: 6px;
  cursor: pointer;
  transition: 0.4s;
}
.bar:hover{
  background: #fff;
}

input[name="r"]{
    position: absolute;
    visibility: hidden;
}

.slides{
  width: 500%;
  height: 100%;
  display: flex;
}

.slide{
  width: 20%;
  transition: 0.6s;
}
.slide img{
  width: 100%;
  height: 100%;
}

#r1:checked ~ .s1{
  margin-left: 0;
}
#r2:checked ~ .s1{
  margin-left: -20%;
}
#r3:checked ~ .s1{
  margin-left: -40%;
}
#r4:checked ~ .s1{
  margin-left: -60%;
}
#r5:checked ~ .s1{
  margin-left: -80%;
}

.footer-box {
	float: center;
	width: 29%;
	padding: 20px;
	background: #E6E6E6;
	box-sizing: border-box;
}

footer {
	background: #E6E6E6;
	font-size: 80%;
}

footer p {
	display: inline-block;

	padding-right: 12em;
	padding-left: 40px;
}

.inhalt2 p{
	width: 400px;
	padding-left: 1em;
	font-family: "Gill Sans Extrabold", Helvetica, sans-serif;
	font-size: large;
}


.inhalt2 {
	display: inline-block;
	z-index:0;
	padding-right: 70px;
}


figure {
	display: table-cell;
	padding: 0 4px;
	
	text-align: center;
}

p.haft {
	display: inline-block;
	width: 250px;
	padding-right: 40px;
	padding-left: 40px;
}

p.imp {
	display: inline-block;
	width: 400px;
	padding-right: 60px;
	padding-left: 40px;
}

h1 {
	color: red;
}

.submit {
	width: 100px;
	height: 50px;
	margin: auto;
	padding: 10px;
}

fieldset {
		width: 1080px;
		margin: auto;
		padding: 10px;
		display: block;
		font-size: large;
		background-color: #E6E6E6;
		font-weight: bold;
}

label {
	padding-right:5%;
}

#eingabe {
	width: 50%;
	height: 100px;
	resize: both; 
}

#email {
	height: 25px;
}

#name {
	height: 25px;
}

#navi ul{
	list-style-type: none;
	margin: 0;
	padding: 0;
	overflow: hidden;
	background-color: #333;
}

#navi ul li {
	float: left;
}

#navi ul li a {
	display: block;
	color: white;
	text-align: center;
	padding: 14px 20px;
	text-decoration: none;
	font-family:arial;
}

#navi ul li a:hover {
	background-color: #111;
}

.sticky {
	position: fixed;
	top: 0;
	width: 1080px;
}


a { text-decoration: none; color: black; }
.w3-animate-fading{animation:fading 5s infinite}@keyframes fading{0%{opacity:0}50%{opacity:1}100%{opacity:0}}

-------------------------------------------
#myImg {
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s;
}

#myImg:hover {
  opacity: 0.7;
}



#caption {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 700px;
  text-align: center;
  color: #ccc;
  padding: 10px 0;
  height: 150px;
}

.modal-content,
#caption {
  animation-name: zoom;
  animation-duration: 0.6s;
}

@keyframes zoom {
  from {
    transform: scale(0)
  }
  to {
    transform: scale(1)
  }
}

.close {
  position: absolute;
  top: 15px;
  right: 35px;
  color: #f1f1f1;
  font-size: 40px;
  font-weight: bold;
  transition: 0.3s;
	z-index: 5;
}

.close:hover,
.close:focus {
  color: #bbb;
  text-decoration: none;
  cursor: pointer;
}

@media only screen and (max-width: 700px) {
  .modal-content {
    width: 100%;
  }
}


#dashboardContainer {
	display: flex;
	margin-top: 50px;
}

#dashboardContainerText {
	width: 35%;
	padding: 0 50px 0 50px;
	display: flex;
	flex-wrap: wrap;
	font-size: medium;
}

#dashboardContainerImageCarousel {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 65%;
}

#footerContainer {
	background: #E6E6E6;
	display: flex;
	max-width: 100%;
	padding: 20px;
	margin-top: 50px;
	margin-bottom: 100px;
}

.footerColumn {
	flex: 1;
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	gap: 5px;

}

.footerText {
	width: 100%;
	display: flex;
	justify-content: start;
	font-size: smaller;
	margin: 0;
	height: 1.5em;
	align-items: center;
	gap: 5px;

}

.clickableFooterContent:hover {
	font-weight: 600;

}

.navbar {
	z-index: 1000;
}

#imageViewOverlay {
	position: fixed;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 2;
}

.modal-content {
	margin: 0;
	display: block;
	width: 80%;
	max-width: 700px;
	z-index: 5;
	position: relative;
}


.modal {
	display: none;
	position: fixed;
	z-index: 1;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	overflow: auto;
	background-color: rgb(0, 0, 0);
	background-color: rgba(0, 0, 0, 0.9);
	justify-content: center;
	align-items: center;
}