/* Menü Kopfzeile - Start  */
*{
 margin: 0;
 padding: 0;
 font-family: Arial;
}

body{
  width: 100vw;
  overflow-x: hidden;
}
.desktop .content {
  position: absolute;
}
.header{
  width: 100%;
  height: 80px;
  background: #2fcb72;
  position: fixed;
  padding: 0 30px;
  top: 0;
  z-index: 900;
 


  box-shadow: 0 0 16px rgba(0,0,0,0.12), 
              0 0 2px rgba(0,0,0,0.12), 
              0 0 4px rgba(0,0,0,0.12);
}

.header img {
  height: 70px;
  width: auto;
}

.menu{
  float: right;
  line-height: 80px;
  margin-right: 3%;
}
.menu a{
  color: #fff;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0 20px;
  transition: 0.4s;
  display: inline-block;
}
.menu h3 {
  font-size: 23px;
  position: relative;
  opacity: 1;
}

.show-menu-btn,.hide-menu-btn{
 transition: 1s;
 cursor: pointer;
 display: none;
}
.show-menu-btn{
 float: right;
 position: fixed;
 top: 0px;
 right: 50px;
 width: auto;
 height: 40px;
}
.menu a:hover,
.show-menu-btn:hover,
.hide-menu-btn:hover{
 color: #3498db;
}

#menub{
 position: absolute;
 visibility: hidden;
 z-index: -1111;
}

.innermenu .icon {
  width: 23px;
  height: 23px;
  filter: invert(100%);
  margin-bottom: -3px;
}

/* Menü Kopfzeile - Ende */


   /* Großes Menü / Smartphone Menü - Start */
   @media screen and (max-width:1000px) {
     .show-menu-btn,.hide-menu-btn{
       display: block;
     }
     .menu{
       position: fixed;
       width: 100%;
       height: 100vh;
       background: #333;
       right: -100%;
       top: 0;
       text-align: center;
       padding: 200px 0;
       line-height: normal;
       transition: 0.7s;
       z-index: 100;
       margin-right: 0%;
     }
     .menu a{
       display: block;
       padding: 4vh;
       margin-top: 2vh;
       color: #fff;
       font-size: 70px;
       border-bottom: 3px #fff;
       text-shadow:
       0 0 42px #fff;
     }
     .hide-menu-btn{
       position: absolute;
       top: 50px;
       right: 100px;
       width: auto;
       height: 30px;
     }
     #menub:checked ~ .menu{
       right: 0;
     }

     .menutext {
       font-size: 70px;
       position: relative;
       opacity: 1;
     }
     .header {
       height: 7vh;
       min-height: 70px;
     }
     .header img {
       height: 7vh;
       min-height: 70px;
     }
     .hide-menu-btn img {
      filter: invert(100%);
     }
     .menu h3 {
      font-size: 40px;
     }
     .menu .icon{
      width: 50px;
      height: 50px;
      filter: invert(100%);
      margin-bottom: -20px;
     }

   }
/* Großes Menü / Smartphone Menü - Ende */




section {
 position: relative;
 width: 100%;
 min-height: 100vh;
 box-sizing: border-box;
 height: auto;
 overflow: hidden;
}

/*noscriptbanner*/
.errorblock {
  background-color: white;
  border-radius: 10px;
  width: 90%;
  height: 250px;
  position: fixed;
  display: block;
  top: calc(100vh - 240px);
  left: 50%;
  transform: translate(-50%,0);
  text-align: center;
  z-index: 9000;
 
}

@media screen and (max-width:1000px) {
 .errorblock {
   transform: translate(-50%,-50%);
   margin-left: 50%;
   margin-top: 50%;
   height: 400px;
 }
}




/*Footer:*/
footer{
  width: 100%;
  height: auto;
  min-height: 350px;
  position: absolute;
  background-color: #1f1f1f;
  color: #fff;
}
footer p {
  margin-left: 5vw;
  margin-top: 50px;
  color: #fff;
}
footer h3 {
  position: absolute;
  float: right;
  bottom: 50px;
  right: 100px;
}


.placeholder {
  width: 100%;
  height: 9vh;
  min-height: 80px;
}

 
/* Toggle Switch: */

.cl-checkbox {
  position: relative;
  display: inline-block;
  margin: 10px;
 }
 
 /* Input */
 .cl-checkbox > input {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  z-index: -1;
  position: absolute;
  left: -10px;
  top: -8px;
  display: block;
  margin: 0;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  background-color: rgba(0, 0, 0, 0.6);
  box-shadow: none;
  outline: none;
  opacity: 0;
  transform: scale(1);
  pointer-events: none;
  transition: opacity 0.3s, transform 0.2s;
 }
 
 /* Span */
 .cl-checkbox > span {
  display: inline-block;
  width: 100%;
  cursor: pointer;
 }
 
 /* Box */
 .cl-checkbox > span::before {
  content: "";
  display: inline-block;
  box-sizing: border-box;
  margin: 3px 11px 3px 1px;
  border: solid 2px;
  /* Safari */
  border-color: rgba(0, 0, 0, 0.6);
  border-radius: 2px;
  width: 18px;
  height: 18px;
  vertical-align: top;
  transition: border-color 0.2s, background-color 0.2s;
 }
 
 /* Checkmark */
 .cl-checkbox > span::after {
  content: "";
  display: block;
  position: absolute;
  top: 3px;
  left: 1px;
  width: 10px;
  height: 5px;
  border: solid 2px transparent;
  border-right: none;
  border-top: none;
  transform: translate(3px, 4px) rotate(-45deg);
 }
 
 /* Checked, Indeterminate */
 .cl-checkbox > input:checked,
 .cl-checkbox > input:indeterminate {
  background-color: #018786;
 }
 
 .cl-checkbox > input:checked + span::before,
 .cl-checkbox > input:indeterminate + span::before {
  border-color: #018786;
  background-color: #018786;
 }
 
 .cl-checkbox > input:checked + span::after,
 .cl-checkbox > input:indeterminate + span::after {
  border-color: #fff;
 }
 
 .cl-checkbox > input:indeterminate + span::after {
  border-left: none;
  transform: translate(4px, 3px);
 }
 
 /* Hover, Focus */
 .cl-checkbox:hover > input {
  opacity: 0.04;
 }
 
 .cl-checkbox > input:focus {
  opacity: 0.12;
 }
 
 .cl-checkbox:hover > input:focus {
  opacity: 0.16;
 }
 
 /* Active */
 .cl-checkbox > input:active {
  opacity: 1;
  transform: scale(0);
  transition: transform 0s, opacity 0s;
 }
 
 .cl-checkbox > input:active + span::before {
  border-color: #85b8b7;
 }
 
 .cl-checkbox > input:checked:active + span::before {
  border-color: transparent;
  background-color: rgba(0, 0, 0, 0.6);
 }
 
 /* Disabled */
 .cl-checkbox > input:disabled {
  opacity: 0;
 }
 
 .cl-checkbox > input:disabled + span {
  color: rgba(0, 0, 0, 0.38);
  cursor: initial;
 }
 
 .cl-checkbox > input:disabled + span::before {
  border-color: currentColor;
 }
 
 .cl-checkbox > input:checked:disabled + span::before,
 .cl-checkbox > input:indeterminate:disabled + span::before {
  border-color: transparent;
  background-color: currentColor;
 }
 
.p {
  text-decoration: none;
  color: #000000;
}