body, html {
/* Body Formatfüllend */
	height: 100%;
/* Schriftgröße, Zeilenabstand, Schriftfamilie(n) */
	font: 1.063em/1.375em Times,'Times New Roman',serif;
/* Wort-Trennung */
	hyphens: auto;
/* Weiches nach unten oder oben scrollen */	
	scroll-behavior: smooth;
}

/* Abstände oben, unten und an den Seiten auf null, Vorgabe Textfarbe */
*{
	margin: 0;
	padding: 0;
	color: var(--text-color);
}

/* Allgemeine Angaben für die entsprechenden Abschnitte */
:root {
	--navbar-height: 100px; /* Höhe der Menüzeile */
	--background-color: #bababa; /* Hintergrundfarbe für Menü und Headlines */
	--background-color-red: #800000; /* Schriftfarbe dunkelrot für Headlines */
	--darker-background-color: #243848;
	--accent-color: #fff593; /* Hintergrundfarbe für hover Menü und hover Untermenü */
	--text-color: #000000; /* Farbe für die Links im Menü */
	--to-top-color: #ff8c00; /*  */
	--link-color: #0000FF;
	--link-hover: #800000;
}

.green {
	color: #00ad00;
}

/* Hamburger Menü im Header*/
.header {
	height: var(--navbar-height);
	background: var(--background-color);
	position: fixed;
	width: 100%;
	z-index: 3;
}
.header ul {
	margin: 0;
	padding: 0;
	list-style: none;
	overflow: hidden;
	background: var(--background-color);
}
.header li a {
  display: block;
  padding: 20px 20px;
  border-right: 1px solid;
  background: var(--background-color);
  text-decoration: none;
  margin: 17px 0;
}
.header li a:hover,
.header .menu-btn:hover {
  background: var(--accent-color);
}
.header .logo {
  display: block;
  float: left;
  font-size: 2em;
  padding: 40px 20px;
  text-decoration: none;
}

/* menu */
.header .menu {
  clear: both;
  max-height: 0;
  transition: max-height .2s ease-out;
}
/* menu icon */
.header img {
	height: 90px;
	padding: 5px 0 0 25px;
}
.header .menu-icon {
  cursor: pointer;
  display: inline-block;
  float: right;
  padding: 28px 20px;
  position: relative;
  user-select: none;
}
.header .menu-icon .navicon {
  background: #333;
  display: block;
  height: 2px;
  position: relative;
  transition: background .2s ease-out;
  width: 18px;
}
.header .menu-icon .navicon:before,
.header .menu-icon .navicon:after {
  background: #333;
  content: '';
  display: block;
  height: 100%;
  position: absolute;
  transition: all .2s ease-out;
  width: 100%;
}
.header .menu-icon .navicon:before {
  top: 5px;
}
.header .menu-icon .navicon:after {
  top: -5px;
}

/* menu btn */
.header .menu-btn {
  display: none;
}
.header .menu-btn:checked ~ .menu {
  max-height: 240px;
}
.header .menu-btn:checked ~ .menu-icon .navicon {
  background: transparent;
}
.header .menu-btn:checked ~ .menu-icon .navicon:before {
  transform: rotate(-45deg);
}
.header .menu-btn:checked ~ .menu-icon .navicon:after {
  transform: rotate(45deg);
}
.header .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:before,
.header .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:after {
  top: 0;
}

.fuss {
	background: var(--background-color);
	width: auto;
	padding-left: 25px;
}

/* Bilder im Hintergrund */
.bgimg-1, .bgimg-2, .bgimg-3 {
	position: relative;
	background-attachment: fixed;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	background-size: 100%;
	min-height: 100%;
}
.bgimg-1 {
	background-image: url("../");
}

/* Zwischenzeile */
.caption {
	border-style: solid;
	border-radius: 15px;
	border-color: #bababa;
	background:  var(--background-color);
	position: absolute;
	left: 4%;
	top: 62%;
	text-align: center;
	text-transform: uppercase;
	width: 90%;
	min-height: 50px;
	padding-top: 2.2%;
}
.caption span.border {
	color: var(--background-color-red);
	font-size: 25px;
	font-weight: 900;
	letter-spacing: 10px;
}

/* ------------------------------------------------------ */

/* Bildschirmgröße maximal 768px */
@media (min-width: 48em) {
.header li {
    float: left;
  }
.header li a {
    padding: 20px 30px;
  }
.header .menu {
    clear: none;
    float: right;
    max-height: none;
  }
.header .menu-icon {
    display: none;
  }
}