

header {
	background-color: #fabb00;
	background: linear-gradient(6deg,rgba(250, 187, 0, 1) 0%, rgba(247, 198, 49, 1) 55%);
	position:fixed;
	z-index:9999;
	width:100%;
}
	header .logo {
		margin:5px ;
	}

#frame-main-menu a {
	color:#333;
	text-decoration: none;
	padding:1rem 0;
	display:block;
	border-bottom:1px solid #DDD;
	background:#FAFAFA;
}
	#frame-main-menu li.active a {
		background:#F3F3F3;
	}

/*			NAV 		*/
.burgernav-wrap {
    padding: 10px;
}
.burgernav-wrap ul {
	list-style:none;
	margin:0;
}
.burgernav-content {
    list-style: none;
    display: none; /* Standardmäßig versteckt */
    top:52px;
    left:0;
    right:0;
    flex-direction: column;
    position: absolute;
    text-align:center;
}
.burgernav-toggle {
	display: none;
}

.burgernav-label {
	cursor: pointer;
	position: relative;
	width: 31px;
	height: 25px;
	margin:3px 0;
	box-shadow: inset 0 -3px 0 0 #333, inset 0 3px 0 0 #333;
	float:right;
}

.burgernav-label::after {
	content: '';
	position: absolute;
	width: 100%;
	height: 3px;
	background-color: #333;
	bottom: 11px;
}

.burgernav-toggle:checked + .burgernav-label {
	box-shadow: none;
	height:31px;
	margin:0;
}

.burgernav-toggle:checked + .burgernav-label::after {
    transform: rotate(-45deg);
    top: 50%;
}

.burgernav-toggle:checked + .burgernav-label::before {
	content: '';
	position: absolute;
	width: 100%;
	height: 3px;
	background-color: #333;
	bottom: 12px;
	transform: rotate(45deg);
}
.burgernav-toggle:checked ~ .burgernav-content {
    display: flex;
}
@media(min-width:768px){
	.burgernav-label {
		display:none;
	}
	.burgernav-content {
		display:block;
		position:relative;
		top:0;
    text-align:right;
	}
	.burgernav-content li {
		display:inline-block;
	}
	.burgernav-content li a {
		padding:0 10px;
	}
}


#content {
	padding-top:52px;
}


/**		SLIDER **/
#slides li.slide {
	display:none;
	position:relative;
}
#slides li.slide .overlay, #slides li.slide .slide_content {
	position:absolute;
	color:#FFF;
	text-shadow: 0 0 5px rgba(0,0,0,.5);
}
#slides li.slide .slide_content {
	top:auto;
	bottom:0;
}
#slides li.slide .slide_img {
	overflow:hidden;
}
#slides li.slide h4 {
	font-weight:bold;
}
#slideThumbs {
	display:none;
}
