/*************************
		HEADER
*************************/
.header {
	position: relative;
}

/* header image */
.header .header_image {
	background: #fff;
}
.header .header_image img {
	display: block;	
	width: 100%;
	max-height: 415px;
	margin: 0 auto;
	max-width: initial;
}

.header .header_top {
	padding: 0 0 10px;	
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	width: 100%;
	background: var(--header);
	opacity: 80%;
}

/* logo */
.header .logo {
	width: 500px;
    height: 90px;
    position: relative;
	overflow: hidden;
	margin: 10px auto;
}

#logo_mascotte {
	position: absolute;
	top: 0;
	z-index: 1;
	width: 48px;
}

#logo_text {
	position: absolute;
    left: 15px;
    bottom: 0px;
    top: 40px;
	z-index: 10;
	width: 200px;
}

.header .logo img {
	max-width: 500px;
	margin: auto;
}

/* searchbar */
.header .searchbar {
	position: absolute;
	top: 7px;
	left: 8px;
	z-index: 999;
	display: none;
}

.header .searchbar svg {
	font-size: 25px;
	color: var(--primary);
	cursor: pointer;
	-webkit-user-select: none; 
	-moz-user-select: none; 
	-ms-user-select: none;
	-o-user-select: none;
	user-select: none;
}

.header #searchbar,
.header #searchinput {
	display: none;	
}

.header #searchbar:checked~#searchinput {
	display: block;	
}

.header #searchinput {
	float: right;	
	margin-left: 6px;
	height: 25px;
	border: none;
	border-left: 3px solid var(--primary);
	opacity: 0.8;
	padding: 0 8px;
}

.header #searchinput::-webkit-input-placeholder { 
	font-family: 'Raleway', sans-serif;
	font-size: 14px;
}

.header #searchinput::-moz-placeholder { 
	font-family: 'Raleway', sans-serif;
	font-size: 14px;
}

.header #searchinput:-ms-input-placeholder {
	font-family: 'Raleway', sans-serif;
	font-size: 14px;
}

.header #searchinput:-moz-placeholder { 
	font-family: 'Raleway', sans-serif;
	font-size: 14px;
}

/* hamburger */
/* .hamburger {
	display: none;
	position: absolute;
	top: 0px;
	left: 0;
	font-size: 35px;
	z-index: 999;
	padding: 0 10px;
	color: var(--primary);
} */

/* socialmedia */
.socialmedia {
	position: absolute;
	top: 0px;
	right: 8px;
	z-index: 999;
}

.socialmedia .socialmedia_item {
	display: inline-block;
	color: var(--primary);
	font-size: 35px;
	padding: 0 2px;
}

.socialmedia .socialmedia_item a {
	color: var(--primary);
}

.socialmedia .socialmedia_item a:hover {
	color: var(--primary);
}



.header_overlay {
	max-width: 1100px;
	width: 100%;
	margin: auto;
	padding: 0 10px;
}