@charset "UTF-8";

.DIV-CLASS-HeaderWrapper{
	position: fixed;
	display: block;
	overflow: visible;
	width: 100%;
	height: auto;
	box-sizing: border-box;
	z-index: 10;
	
	
	
}

.DIV-CLASS-Header{
	display: flex;
	width: 100%;
	height: auto;
	overflow: visible;
	background-color: #E00019;
	border-radius: 25px;
	padding: 10px;
	box-sizing: border-box;
	align-items: center;
	margin-top: 25px;
}

.DIV-CLASS-HeaderLogoWrapper{
	display: inline-flex;
	width: auto;
	height: auto;
	overflow: visible;
	background-color: #ffffff;
	border-radius: 15px;
	padding: 15px;
	box-sizing: border-box;

}

.DIV-CLASS-HeaderLogoWrapper2{
	display: inline-flex;
	width: auto;
	height: auto;
	overflow: visible;
	border-radius: 15px;
	padding: 15px;
	box-sizing: border-box;
	flex: 1;
}

#IMG-ID-Logo{
	display: block;
	width: 190px;
	height: auto;
}

#IMG-ID-Logo2{
	display: block;
	width: 190px;
	height: auto;
}


/***Menü***/




.DIV-CLASS-HeaderMenueWrapper{
	position: absolute;
	display: block;
	top: -100vh;
	
	-webkit-transition: top 200ms ease-in;
	-moz-transition: top 200ms ease-in;
	-o-transition: top 200ms ease-in;
	transition: top 200ms ease-in;
	-webkit-transition-delay: 300ms;
	-moz-transition-delay: 300ms;
	-o-transition-delay: 300ms;
	transition-delay:300ms;
	
	background: rgba(0, 0, 0, 0.6);

	
	left: 0px;
	height: 100vh;
	width: 100%;
	
	box-sizing: border-box;
	padding: 25px;
	z-index: 99;
	
}

.DIV-CLASS-HeaderMenueInnerWrapper{
	
	background-color: #ffffff;
	width: 100%;
	height: auto;
	padding: 10px;
	border-radius: 25px;
	box-sizing: border-box;
	padding-bottom: 50px;
	display: flex;
	flex-wrap: wrap;
		
}

#DIV-ID-HeaderMenueWrapper:target {
	top: 0px;
	
}


/*Menü öffnen*/
.LINK-CLASS-HeaderMenueButton {
    display: inline-flex;
    width: 50px;
    height: 8px;
    background: #ffff;
    position: relative;
	border-radius: 8px;
	margin-left: auto;
	margin-right: 25px;
}

.LINK-CLASS-HeaderMenueButton::before,
.LINK-CLASS-HeaderMenueButton::after {
    content: "";
    position: absolute;
    left: 0;
    width: 50px;
    height: 8px;
    background: #ffff;
	border-radius: 8px;
}

.LINK-CLASS-HeaderMenueButton::before {
    top: -16px;
}

.LINK-CLASS-HeaderMenueButton::after {
    top: 16px;
}

.LINK-CLASS-HeaderMenueButton:hover,
.LINK-CLASS-HeaderMenueButton:hover::before,
.LINK-CLASS-HeaderMenueButton:hover::after {
    
}

/*Menü schließen*/

.LINK-CLASS-HeaderMenueClose{
	position: relative;
	display: inline-flex;
	width: 30px;    /* Größe des X */
	height: 30px;
	cursor: pointer;
	float: right;
	
	margin-top: 25px;
	margin-right: 25px;
	
}
.LINK-CLASS-HeaderMenueClose::before,
.LINK-CLASS-HeaderMenueClose::after {
  content: "";           /* leer, damit nur CSS gezeichnet wird */
  position: absolute;
  left: 50%;
  top: 50%;
  width: 8px;            /* Dicke der Linie */
  height: 100%;          /* Länge der Linie */
  background-color: black;
  transform-origin: center;
 border-radius: 5px;
}

.LINK-CLASS-HeaderMenueClose::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.LINK-CLASS-HeaderMenueClose::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}


/*
#INPUT-ID-HeaderMenueToggle:checked + .LABEL-CLASS-HeaderMenueToggle + .DIV-CLASS-HeaderMenueWrapper {
 	top: 0px;
}*/

a:link.LINK-CLASS-HeaderMenue{
	
	font-family: effra, sans-serif;
	font-weight: normal;
	font-size: 20pt;
	color: #E2001a;
	text-decoration: none;
  	white-space: nowrap; 
	transition: transform  0.2s ease;
	
	
	padding-left: 25px;
	padding-right: 25px;
	margin-left: 15px;
	margin-right: 15px;
	padding-top: 10px;
	padding-bottom: 10px;
	
	border-bottom: 1px solid #000000;
	box-sizing: border-box;
	
	flex: 0 0 calc((100% - 25px - 15px));
	align-self: stretch;
	
}
a:visited.LINK-CLASS-HeaderMenue{
	
	color: #E2001a;
	border-bottom: 1px solid #000000;
	box-sizing: border-box;

	
}
a:hover.LINK-CLASS-HeaderMenue{
	 font-weight: bold;
}




@media (max-width: 320px) {

}

@media (min-width: 321px) and (max-width: 768px) {

}

@media (min-width: 769px) {
	
	

}

@media (min-width: 1221px) {
	
	.DIV-CLASS-HeaderMenueWrapper{
		flex: 1;
		padding-left: 25px;
		padding-right: 25px;

		display: flex;
		justify-content: space-evenly; /* gleichmäßige Verteilung */
		align-items: center;
		flex-wrap: nowrap;
		
		top: auto;
		background-color: transparent;
		padding-top: 0;
		padding-bottom: 0;
		
		left: auto;
		height: auto;
		width: auto;
		
		position: relative;
	}
	
	.DIV-CLASS-HeaderMenueInnerWrapper{
	
		background-color: transparent;
		width: auto;
		height: auto;
		padding: 0;
		border-radius: 0;
		box-sizing: border-box;
		padding-bottom: 0;
		display: flex;
		flex-wrap: nowrap;
		flex: 1;
		justify-content: space-evenly;
		align-items: center;
		max-width: initial;

	}
	
	.DIV-CLASS-HeaderLogoWrapper2{
		display: none;
		width: 0;
		height: 0;
	}

	a:link.LINK-CLASS-HeaderMenue{

		font-family: effra, sans-serif;
		font-weight: bold;
		font-size: 20pt;
		color: #ffffff;
		text-decoration: none;
		white-space: nowrap; 
		transition: transform  0.2s ease;
		border-bottom: none;
		
		margin: 0;
		
		flex: 1;

	}
	a:visited.LINK-CLASS-HeaderMenue{
		color: #ffffff;

	}
	a:hover.LINK-CLASS-HeaderMenue{
		 transform: scale(1.1);
	}

	
	/*Menü öffnen*/
	.LINK-CLASS-HeaderMenueButton {
		display: none;
		width: 0px;
		height: 0px;
	}

	.LINK-CLASS-HeaderMenueButton::before,
	.LINK-CLASS-HeaderMenueButton::after {
		display: none;
		width: 0px;
		height: 0px;
	}
	
	/*Menü schließen*/
	.LINK-CLASS-HeaderMenueClose{
		display: none;
		width: 0px;    /* Größe des X */
		height: 0px;

	}
	.LINK-CLASS-HeaderMenueClose::before,
	.LINK-CLASS-HeaderMenueClose::after {
	display: none;
	  width: 0px;            /* Dicke der Linie */
	  height: 0;          /* Länge der Linie */

	}
	
	
	
}
