
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
/*  font-family: 'Poppins', sans-serif;*/
}
nav{
  position: fixed;
  z-index: 99;
  width: 100%;
  
/*  background: #242526;*/
}
nav .wrapper{
  position: relative;
  max-width: 100%;
  padding: 0px 30px;
  height: 70px; 
  line-height: 100px; /* Übergang zu Contextmenu 70px auch Zeile 67   cs*/
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
	margin-top: 26px;/* Ausrichtung im Header cs*/
}
.wrapper .logo a{
  color: #f2f2f2;
  font-size: 30px;
  font-weight: 600;
  text-decoration: none;
}

.logo{
	margin-bottom: 15px;
}
.wrapper .nav-links{
  display: inline-flex;
}
.nav-links li{
  list-style: none;
}
.nav-links li a{
  /*color: #ffffff; Color Schrift Links Head cs*/
  text-decoration: none;
  font-size: .9em;
  font-weight: 500;
  padding: 9px 15px;
  border-radius: 5px;
  transition: all 0.5s ease;
}



/*Schriftfarbe Menü scroll cs*/
a.menuLink6:link{ color: #fff; background-color: rgba(0, 0, 0, .8); margin-left: 10px;}
a.menuLink6:active{ color: #fff; background-color: rgba(0, 0, 0, .8); margin-left: 10px;}
a.menuLink6:visited{ color: #fff; background-color: rgba(0, 0, 0, .8); margin-left: 10px;}
a.menuLink6:hover{ color: #009fe3; background-color: rgba(0, 0, 0, .8); margin-left: 10px;}


a.menuLink6-a:link{ color: #fff; background-color: rgba(40, 40, 50, .8); margin-left: 10px;}
a.menuLink6-a:active{ color: #fff; background-color: rgba(40, 40, 50, .8); margin-left: 10px;}
a.menuLink6-a:visited{ color: #fff; background-color: rgba(40, 40, 50, .8); margin-left: 10px;}
a.menuLink6-a:hover{ color: #009fe3; background-color: rgba(40, 40, 50, .8); margin-left: 10px;}


.nav-links li a:hover{
 /*background: #3A3B3C; */
	color: #009fe3; /* Color Link hover ausser Megamenu cs*/
	background: rgba(0,0,0, .9); /* Color Link Background cs*/
}
/*.color3 { color: #282832; }  Color Schrift menu Zeile 40 ausschalten cs*/

.nav-links .mobile-item{
  display: none;
}
.nav-links .drop-menu{
  position: absolute;
  background: rgba(40,40,50, .9);
  width: 280px;
  line-height: 55px; /* Zeilenhöhe Contextmenu cs*/
  top: 85px;
  opacity: 0;
  visibility: hidden;
  box-shadow: 0 6px 10px rgba(0,0,0,0.15);
}
.nav-links li:hover .drop-menu
/*, .nav-links li:hover .mega-box*/{
  transition: all 0.3s ease;
  top: 84px; /* Position Contextmenu 84px auch Zeile 20 linine-height cs*/
  opacity: 1;
  visibility: visible;
	z-index: -100; /* Nur wenn Zeile 91 Megamenü am oberen Rand Positionier  cs*/
}


/*.nav-links li:hover .drop-menu,*/
.nav-links li:hover .mega-box{
  transition: all 0.3s ease;
  top: -11px; /* Position Contextmenu 84px auch Zeile 20 linine-height, @media screen and  (min-width: 1200px) beachten!!! cs*/
  opacity: 1;
  visibility: visible;
	z-index: -100; /* Nur wenn Zeile 91 Megamenü am oberen Rand Positionier  cs*/
}





.drop-menu li a{
  width: 100%;
  display: block;
  padding: 0 0 0 15px;
  font-weight: 400;
  border-radius: 0px;
	font-size: 1.0em; /* Schrift Contextmenu cs*/
	line-height: 3.5em; /* Zeilenhöhe Contextmenu cs*/ 
	color: #f2f2f2;  /*Color Schrift Contextmenu cs*/
	border-top: 1px solid rgba(255,255,255,0.5); /* Trennlinie Contextmenu cs*/
}


.mega-box{
  position: absolute;
  left: 0;
  width: 100%; /* Breite Magamenu cs - bleibt bei 100%*/
  padding: 0 0px; /* Breite Magamenu cs - für volle Breite auf 0px*/
  top: 85px;
  opacity: 0;
  visibility: hidden;
}




.mega-box .content-mega-menu{
  background: rgba(40,40,50, .98);
  padding: 25px 20px;
  display: flex;
  width: 100%;
  justify-content: space-between;
  box-shadow: 0 6px 10px rgba(0,0,0,0.15);
}
.mega-box .content-mega-menu .row{
  width: calc(25% - 30px);
  line-height: 45px;
}
/* .content-mega-menu .row img{
  width: 80%;
 height: 100%;
  object-fit: cover;
}*/
.content-mega-menu .row header-cs{
  color: #009fe3; /* Color Headline Megamenu cs*/
  font-size: 1.2em;
  font-weight: 500;

}
.content-mega-menu .row .mega-links{
  margin-left: -40px;
  border-left: 1px solid rgba(255,255,255,0.9); /* Trennlinie Megamenu cs*/
}
.row .mega-links li{
  padding: 0 20px;
}
.row .mega-links li a{
  padding: 0px;
  padding: 0 20px;
  color: #d9d9d9;
  font-size: 1.0em; /* Schrift Megamenu cs*/
  display: block;
	line-height: 2.5em; /* Zeilenhöhe Megamenu cs*/ 
}
.row .mega-links li a:hover{
  color: #f2f2f2; /* Color Link hover Megamenu cs*/
}
.wrapper .btncs{
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  display: none;
	background-image: url("../media/Hamburger.png");
	background-size: contain;
	width: 40px;
	height: 40px;
	margin-bottom: 30px;
}
.wrapper .btncs.close-btncs{
  position: absolute;
  right: 30px;
  top: 30px;
	background-image: url("../media/X.png");
	background-size: contain;
	width: 30px;
	height: 30px;
}


@media screen and  (min-width: 1200px) {
.mega-box .content-mega-menu{
	padding-top: 80px; /* Innerer Abstand Megamenü nach oben cs*/
}
}

@media screen and (min-width: 970px) and (max-width: 1200px){
	
.mega-box .content-mega-menu{
	padding-top: 0px; /* Innerer Abstand Megamenü nach oben cs*/
}
	
	nav .wrapper{
  position: relative;
  max-width: 100%;
  padding: 0px 30px;
  height: 70px; 
  line-height: 100px; /* Übergang zu Contextmenu 70px auch Zeile 67   cs*/
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
	margin-top: 14px;/* Ausrichtung im Header cs*/
}
	
.nav-links li:hover .drop-menu,
.nav-links li:hover .mega-box{
  transition: all 0.3s ease;
  top: 72px; /* Position Contextmenu 70px auch Zeile 20 linine-height cs*/
  opacity: 1;
  visibility: visible;
}
	
.nav-links li a{
  /*color: #282832; Color Schrift Links Head cs*/
  text-decoration: none;
  font-size: .9em;
  font-weight: 500;
  padding: 9px 15px;
  border-radius: 5px;
  transition: all 0.5s ease;
}
	
.drop-menu li a{
  width: 100%;
  display: block;
  padding: 0 0 0 15px;
  font-weight: 400;
  border-radius: 0px;
	font-size: .9em; /* Schrift Contextmenu cs*/
	line-height: 3em; /* Zeilenhöhe Contextmenu cs*/ 
	color: #f2f2f2;  /*Color Schrift Contextmenu cs*/
	border-top: 1px solid rgba(255,255,255,0.5); /* Trennlinie Contextmenu cs*/
}
	
	
	
.content-mega-menu .row header-cs{
  color: #009fe3; /* Color Headline Megamenu cs*/
  font-size: .9em; /* Headline Megamenu cs*/
  font-weight: 500;
}
	
.row .mega-links li a{
  padding: 0px;
  padding: 0 10px;
  color: #d9d9d9;
  font-size: .8em; /* Schrift Megamenu cs*/
  display: block;
	line-height: 2.5em; /* Zeilenhöhe Megamenu cs*/ 
}
	
	
/*Schriftfarbe Menü scroll cs*/
a.menuLink6:link{ color: #dddddd; }
a.menuLink6:active{ color: #dddddd; }
a.menuLink6:visited{ color: #dddddd; }
a.menuLink6:hover{ color: #FF530D; }
/*a.menuLink3:hover{ background-color: rgba(40, 40, 50, .0); }*/

a.menuLink6-a:link{ color: #dddddd; }
a.menuLink6-a:active{ color: #dddddd; }
a.menuLink6-a:visited{ color: #dddddd; }
a.menuLink6-a:hover{ color: #FF530D;}
/*a.menuLink3:hover{ background-color: rgba(40, 40, 50, .9); }*/
	
	
}	
	
	







	
@media screen and (max-width: 970px) {
  .wrapper .btncs{
    display: block;
  }

	.color-nav-mobil{
		color: #ffffff;
	}
  .wrapper .nav-links{
    position: fixed;
    height: 100vh;
    width: 100%;
    max-width: 550px;
    top: 0;
    left: -105%;
    background: #242526;
    display: block;
    padding: 50px 10px;
    line-height: 50px;
    overflow-y: auto;
    box-shadow: 0px 15px 15px rgba(0,0,0,0.18);
    transition: all 0.3s ease;
	  margin-left: 0px;
  }
  /* custom scroll bar */
  ::-webkit-scrollbar {
    width: 10px;
  }
  ::-webkit-scrollbar-track {
    background: #242526;
  }
  ::-webkit-scrollbar-thumb {
    background: #3A3B3C;
  }
	

  #menu-btncs:checked ~ .nav-links{
    left: 0%;
  }
  #menu-btncs:checked ~ .btncs.menu-btncs{
    display: none;
  }
  #close-btncs:checked ~ .btncs.menu-btncs{
    display: block;
  }

	
  .nav-links li{
    margin: 15px 10px;
  }
  .nav-links li a{
    padding: 0 20px;
    display: block;
    font-size: 20px;
  }
  .nav-links .drop-menu{
    position: static;
    opacity: 1;
    top: 65px;
    visibility: visible;
    padding-left: 20px;
    width: 100%;
    max-height: 0px;
    overflow: hidden;
    box-shadow: none;
    transition: all 0.3s ease;
  }
	
	/* Megamenu id cs*/
  	#showDrop:checked ~ .drop-menu,
  	#showMega:checked ~ .mega-box{
    max-height: 100%;
  }
/*	weiteres Megamenu id cs*/
	#showDrop1:checked ~ .drop-menu,
  	#showMega1:checked ~ .mega-box{
    max-height: 100%;
  }
/*	weiteres Megamenu id cs*/
	#showDrop2:checked ~ .drop-menu,
  	#showMega2:checked ~ .mega-box{
    max-height: 100%;
  }
/*	weiteres Megamenu id cs*/
	#showDrop3:checked ~ .drop-menu,
  	#showMega3:checked ~ .mega-box{
    max-height: 100%;
  }
/*	weiteres Megamenu id cs*/
	#showDrop4:checked ~ .drop-menu,
  	#showMega4:checked ~ .mega-box{
    max-height: 100%;
  }

  .nav-links .desktop-item{
    display: none;
  }

  .nav-links .mobile-item{
    display: block;
    color: #f2f2f2;
    font-size: 20px;
    font-weight: 500;
    padding-left: 20px;
    cursor: pointer;
    border-radius: 5px;
    transition: all 0.3s ease;
  }
  .nav-links .mobile-item:hover{
    background: #3A3B3C;
  }
  .drop-menu li{
    margin: 0;
  }
  .drop-menu li a{
    border-radius: 5px;
    font-size: 18px;
  }
  .mega-box{
    position: static;
    top: 65px;
    opacity: 1;
    visibility: visible;
    padding: 0 20px;
    max-height: 0px;
    overflow: hidden;
    transition: all 0.3s ease;
  }
  .mega-box .content-mega-menu{
    box-shadow: none;
    flex-direction: column;
    padding: 20px 20px 0 20px;
  }
  .mega-box .content-mega-menu .row{
    width: 100%;
    margin-bottom: 15px;
    border-top: 1px solid rgba(255,255,255,0.08);
  }
  .mega-box .content-mega-menu .row:nth-child(1),
  .mega-box .content-mega-menu .row:nth-child(2){
    border-top: 0px;
  }
  .content-mega-menu .row .mega-links{
    border-left: 0px;
    padding-left: 15px;
  }
  .row .mega-links li{
    margin: 0;
  }
  .content-mega-menu .row header-cs{
    font-size: 19px;
  }
}
nav input{
  display: none;
}

.body-text{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
  padding: 0 30px;
}
.body-text div{
  font-size: 45px;
  font-weight: 600;
}

	
	





