/*	Allgemein	*/

	/*  left-nav bei mobile ausblenden  */
	@media screen and (max-width:767px){
    	#leftnavigation { display:none; }
	}

	/*  Breite bei ausgeblendetem left-nav dem mobile Gerät anpassen  */
	@media screen and (max-width:767px){
    	#abbauen-width, #schrift-width, #regeln-width, #service-width { width: auto; }
	}

	body{
		background-color: #fefefe; 
		font: inherit;
	}
	
	img {
	    width: 100%;
	    height: auto;
	}
	
	h1 {
		font-size: 2.5rem;
	}
	
	h2 {
    	font-size: 2.1rem;
	}

	p {
		font-size: 1.3rem;
	}

	.headline{
		font-weight: bold;
		font-size: 25px;
	}
	
	
	/*	Slider	*/
		.mySlides1 {display: none}
		img {vertical-align: middle;}
		
		/* Slideshow container */
		.slideshow-container {
		  position: relative;
		  margin: auto;
		}
		
		/* Next & previous buttons */
		
		
		/* Position the "next button" to the right */
		.next {
		  right: 0;
		  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/3 etc) */
		.numbertext1 {
		  color: #f2f2f2;
		  font-size: 12px;
		  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;
		}
		
		.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}
		}
		
		/* On smaller screens, decrease text size */
		@media only screen and (max-width: 300px) {
		  .prev, .next,.text {font-size: 11px}
		}
		
		
		* {
		  box-sizing: border-box;
		}
		
		.row > .column {
		  padding: 0 8px;
		}
		
		.row:after {
		  content: "";
		  display: table;
		  clear: both;
		}
		
		.column {
		  float: left;
		  width: 25%;
		}
		
		/* The Modal (background) */
		.modal {
		  display: none;
		  position: fixed;
		  z-index: 1;
		  padding-top: 100px;
		  left: 0;
		  top: 0;
		  width: 100%;
		  height: 100%;
		  overflow: auto;
		  background-color: black;
		}
		
		/* Modal Content */
		.modal-content {
		  margin: auto;
		  padding: 0;
		  width: 90%;
		  max-width: 1200px;
		}
		
		/* The Close Button */
		.close {
		  color: #fefefe;
		  position: absolute;
		  top: 10px;
		  right: 25px;
		  font-size: 35px;
		  font-weight: bold;
		}
		
		.close:hover,
		.close:focus {
		  color: #999;
		  text-decoration: none;
		  cursor: pointer;
		}
		
		.mySlides1 {
		  display: none;
		}
		
		.cursor {
		  cursor: pointer;
		}
		
		/* Next & previous buttons */
		
		
		.prev1,
		.next1 {
		  cursor: pointer;
		  position: absolute;
		  top: 50%;
		  width: auto;
		  padding: 16px;
		  margin-top: -50px;
		  color: #fefefe;
		  font-weight: bold;
		  font-size: 20px;
		  transition: 0.6s ease;
		  border-radius: 0 3px 3px 0;
		  user-select: none;
		  -webkit-user-select: none;
		}
		
		/* Position the "next button" to the right */
		.next1 {
		  right: 0;
		  border-radius: 3px 0 0 3px;
		}
		
		/* On hover, add a black background color with a little bit see-through */
		.prev1:hover,
		.next1:hover {
		  background-color: rgba(0, 0, 0, 0.8);
		}
		
		/* Position the "next button" to the right */
		.next {
		  right: 0;
		  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);
		}
		
		/* Number text (1/3 etc) */
		.numbertext1 {
		  color: #f2f2f2;
		  font-size: 12px;
		  padding: 8px 12px;
		  position: absolute;
		  top: 0;
		}
		
		img {
		  margin-bottom: -4px;
		}
		
		.caption-container {
		  text-align: center;
		  background-color: black;
		  padding: 2px 16px;
		  color: #fefefe;
		}
		
		.demo {
		  opacity: 0.6;
		}
		
		.active,
		.demo:hover {
		  opacity: 1;
		}
		
		img.hover-shadow {
		  transition: 0.3s;
		}
		
		.hover-shadow:hover {
		  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
		}
	/*	/Slider	*/
	
	
/*	/Allgemein	*/


/*	Head	*/
	
	#Headtopcontenttext{
		color:white;
		font-size: 16px;
	}
	
	#Head{
		background-color: #F0F1F3; /* F0F1F3EF */
		color: black;
		left: 0;
		top: 0;
		width: 100%;
		position: fixed;
		z-index: 999;
		opacity: 0.99;
	}
	
	.linkhead{
		color: #424242;
		font-size:20px;
		font-weight: bold;
	}

	.linkhead:hover{
		color: black;
		font-size:20px;
		font-weight: bold;
	}

/*	/Head	*/


/*	Content		*/

	#Homeing{
		padding: 5px;
		border: 0;
		margin-top: 11px;
		margin-bottom: 8px;
	}
	
	.Contenttext{
		line-height: 1.5em;
		font-size: 1.1rem;
	}


/*	/Content	*/

/* linke navigation */
.linksubnav:hover { 
	color: black;
	text-decoration: underline;
}


/*	Footer	*/
	
	#Footer{
		background-color: #CFD3D8;
		color: black;
		margin-bottom:0;
	}
	
	.Footercontent{
		font-size:16px;
		color: #3C403E
	}
	
	.linkfooter{
		color: #434D48;
		font-size:16px; 
		line-height: 1.75em;
	}
	
	.linkfooter:hover { 
	    color: black;
	    text-decoration: underline;
	    font-size:16px;
	    line-height: 1.75em;
	}
	
	#Footerbottomcontenttext{
		font-size: 12px
	}

/*	/Footer	*/

 /* new header - 06.2021 - ab */

.head-wrapper{
	display:flex;
	flex-direction: row;
	align-items: flex-end;
}

.hr-menu{
	display:flex;
	flex-direction: row;
	max-height: 70px;
}
.hr-menu-element{
	display: flex;
	align-items: flex-end;
	border-right: 1px solid rgba(10,10,10,0.25);
}
.hr-menu-element:last-child{
	border-right: none;
}

.menu-link, .toggle-menu-link{
	padding: 0.7rem 1.5rem;
}

.toggle-menu-link-last{
	padding-bottom: 0.7rem;
}

.head-company-contact{
	padding: 0.7rem 1.5rem;
}

.mobile-nav{
	display:flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
}


.toggle-menu{
	display: flex;
	flex-direction: column;
	align-items: center;
}
.toggle-menu-element{
	text-align: center;
}




ul.accordion-menu{
	list-style: none;
	margin: 0;
	width: 90vw;
}

.toggle-menu-link{
	margin: 0;
	width: 90vw;
}

.toggle-menu-link-last{
	margin: 0;
	width: 90vw;
}

ul.accordion-menu > li{
  position: relative;
	padding-bottom: 10px;
}
ul.accordion-menu li a{
	margin: 0;
}

.accordion-menu .menu li{
	font-size: 17px;
	font-weight: normal;
	
}

.accordion-menu .menu li a{
	margin: 0;
	
}

.accordion-menu.closed ul{
	display: none !important;
}
.accordion-menu ul{
	background-color: unset;
}

.linkhead {
	margin: 0;
	line-height: 25px;
}

/* / new header - 06.2021 - ab */


