div.jumbo-menu{
	position: relative;
	/* float: left; */
	z-index: 11;
	width:100%;
	top: 0;
	height: max-content;
	padding: 0 !important;
}

.header_menu {
	--headerTop: 50px;
	--headerHeight: 160px;
	height: var(--headerHeight);
	width: 100%;
	z-index: 11;
	position: relative;
	padding: 0;
	display: flex;
	flex-direction: column;
	align-items: stretch;
	background-color:#fff;
}
.header_menu .header_menuTop{
	height: 50px !important;
	background-color:var(--themeGreen);
}
.header_menu .header_menuTop > .container{
	height:100%;
	display: flex;
	flex-direction: row;
	align-content: center;
	justify-content: flex-start;
}
.header_menu .header_menuTop .row{width: 100%;}
.header_menu .header_menuTop .row > .col p{
	display:inline-flex;
	gap: 16px;
	font-size: 14px;
	width: 100%;
}
.header_menu .header_menuTop p{
	margin:0;
	color: #fff;
}
.header_menu .header_menuTop a{
	color:white;
}
.header_menu .header_menuTop .frstcol a img,
.header_menu .header_menuTop .frstcol a svg{
	height: 14px;
	margin-right: 4px;
}

.header_menuContent{
    height: calc(var(--headerHeight) - var(--headerTop));
}
.header_menuContent > .container{
	height:100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}
.menuSideCol{
	width: 18%;
	min-width: 200px;
	height: 70px;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-around;
}

div.header_menu .logoHolder{
	padding: 0;
	align-items: flex-start !important;
}
div.header_menu img.logo {
    height: 100%;
    position: relative;
    box-sizing: border-box;
}

div.header_menu .menuItems{
	position:relative;
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: flex-end;
	align-items: center;
	gap: 0;
	padding-right: 20px;
}

div.header_menu li{
	list-style:none;
	padding: 0 20px;
}
div.header_menu li a{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    height: 100%;
    text-decoration: none;
    text-align: center;
    float: right;
    box-sizing: border-box;
    transition: color .2s ease-in-out;
    display: inline-flex;
    align-items: center;
    min-width: 95px;
    text-transform: uppercase;
    font-weight: 500;
    color:var(--themeMenuText);
}

div.header_menu li:not(:hover) ul{
	display:none;
}

@media screen and (min-width: 1024px){
	div.header_menu .listBlock{
		--hoverMargin: 50px;
		position: absolute;
		top: 100%;
		width: calc(100vw - 4px);
		box-sizing: border-box;
		background: linear-gradient(180deg, transparent 0%, transparent var(--hoverMargin), var(--themeGreenDark) var(--hoverMargin), var(--themeGreenDark) 100%);
		padding: var(--hoverMargin) 0 0 0;
		margin-top: calc(-1 * var(--hoverMargin));
		z-index: 11;
		display: none;
	}
}

li.container-ophalen * {
    color: var(--themeRed) !important;
}

.menuOverlay{
	display:block;
	opacity:0;
	position:fixed;
	left:0;
	top:0;
	right:0;
	height:0;
	background-color:rgba(0,0,0,0.4);
	z-index:11;
	transition:opacity .3s ease-in-out;
}
.menuOverlay.hover{
	opacity:1.0;
	height:100%;
}

div.header_menu li:hover > .listBlock{
    display: flex;
    align-items: flex-start;
}
div.header_menu .listBlock ul.sub {
    min-width: 240px;
    position: relative;
    float: left;
	padding-left:0;
}

div.header_menu ul.sub li:hover a{font-weight: 800;}
div.header_menu ul.sub li {
    width: 100%;
    float: left;
    text-align: left;
    font-weight: 600;
    height: auto;
    color: #fff;
    padding: 10px 5px;
}
div.header_menu ul.sub a{
	width: 100%;
	line-height: 1em;
	font-weight: 100;
	font-size: 16px;
	padding: 3px 0 0;
	color: #fff;
	text-align: left;
	text-transform:inherit;
	display: inline-block;
}

div.header_menu li.hasSub{
	/* position:relative; */
}
div.header_menu li.hasButton{
	padding: 0 13px;
}

.expertiseMenu{
	display: flex;
	flex-direction: column;
	align-items: stretch;
}
.expertiseMenu .col{
	width: 25%;
	display: flex;
	align-items: flex-start;
	justify-content: flex-start;
}
.expertiseMenu .menuTitle{
	font-size: 15px;
	color:#fff;
	text-transform: uppercase;
	padding: 16px 0;
	display: inline-flex;
	gap: 7px;
	align-items: center;
}
.expertiseMenu a:hover .menuTitle{
	font-weight:900;
}
.expertiseMenu .titleRow {
    display: flex;
    justify-content: center;
    flex-direction: row;
    width: 100%;
    padding: 0;
    border-bottom: 1px solid rgba(255,255,255,0.35);
    margin-bottom: 15px;
}
.expertiseMenu .titleRow + .row{
	padding-bottom:11px;
}
div.header_menu .expertiseMenu li{
	padding: 5px 0px !important;
}
div.header_menu .expertiseMenu .titleRow a span{
	height:auto !important;
}
div.header_menu .expertiseMenu .titleRow a span,
div.header_menu .expertiseMenu li a{
	float:left;
	width:max-content;
	min-width: 70%;
	padding:15px;
	border-radius: 11px;
	transition:all .15s ease-in-out;
}
div.header_menu .expertiseMenu .titleRow a:hover span,
div.header_menu .expertiseMenu li:hover a{
	background-color:rgba(255,255,255,0.2);
	font-weight:normal !important;
}
div.header_menu .expertiseMenu .titleRow a{
	padding: 5px 0;
}
div.header_menu .expertiseMenu .titleRow a span{
	padding: 10px 15px;
}


body div.header_menu li .fas{
	transform:translateX(4px) translateY(-1px);
}

body div.header_menu .shoppingcart{
	display:inline-flex;
	gap:10px;
	align-items: center;
	padding: 15px 10px;
}
body div.header_menu .shoppingcart svg{
	height:20px;
}

@media screen and (min-width: 1024px){
	body .header_menu {
	}

	body div.header_menu li,
	body div.header_menu li a:not(.button){
	height: 100%;
	}
}

@media (max-width: 1024px){
	div.header_menu .logoHolder {
		position: absolute;
		width: auto;
		right: 50%;
		height: 100%;
		float: inherit;
		transform: translateX(50%);
		padding: 0;
		transition: all .2s ease-in-out;
	}
	div.menu_button.close + .logoHolder {
		height:100px;
	}
	
	div.header_menu img.logo {
		width:auto;
		max-width: inherit;
		height: 70px;
		padding: 11px;
	}

	div.py-4.jumbo-menu {
		position: relative;
		width: 100%;
	}
	.jumbo-menu >.{
		width:100%;
		max-width:100%;
		padding:0;
		border-radius:0;
	}	
	
	
	body img.scroll_down{
		position: absolute;
		bottom: 30px;
		left: 30px;
		height: 60px;
		z-index: 99;
		display:block;
	}
	
	div.header_menu{    
		width: 100%;
		height: 100vh;
		min-height:100%;
		margin: 0px 0px;
		overflow-y: hidden;
		transition: min-height .5 ease-in,max-height .5 ease-in, padding .5 ease-in !important;
		border-radius:0;
	}
	.jumbo-menu:not(.shown) div.header_menu {
		max-height: 70px;
		margin: 0;
		box-shadow: none;
		overflow: visible;
		border-radius: 0;
	}
	div.header_menu.shown{
		min-height: 100%;
		max-height: 100000px;
		padding-bottom: 20px;
		overflow:auto;
	}
	
	div.header_menu li{
		width: 100%;
		margin: 0;
		height: auto;
		border:none;
		padding: 2.3vh 0;
	}
	div.header_menu li:hover a::after,
	div.header_menu li.selected a::after{
	    width: 60%;
		left: 20%;
	}
	div.header_menu li img{  
		display:block;
	}
	
	div.py-4.jumbo-menu{
		height: 70px;
		top: 0;
		padding: 0 !important;
		overflow: visible;
	}
	div.py-4.jumbo-menu.shown{
		background-color: #ffffff;
		height: 100% !important;
		max-height: 100%;
		position: fixed;
		z-index: 100;
		width: 100dvw;
	}
	
	div.jumbo-menu div.logo_col,
	div.jumbo-menu div.menu_col{
		margin:0;
		padding:0;
	}
	
	div.jumbo-menu.shown .header_menu .listMenu {
		padding-bottom: 30px;
		position: absolute;
		top: 100px;
		height: calc(100vh - 116px);
		overflow: auto;
		z-index: 2;
		background-color: #fff;
	}
	
	div.menu_top{		
		padding-bottom: 20px;
	}
	div.jumbo-menu:not(.shown) .listMenu{
		display: none;
	}
	div.header_menu li{
		min-width: 100%;
		line-height:45px;
		padding:0;
		border-bottom: 1px solid rgba(238, 238, 238, 0.8);
		-webkit-touch-callout: none; /* iOS Safari */
		-webkit-user-select: none; /* Safari */
		-khtml-user-select: none; /* Konqueror HTML */
		-moz-user-select: none; /* Firefox */
		-ms-user-select: none; /* Internet Explorer/Edge */
		user-select: none; /* Non-prefixed version, currently
						  supported by Chrome and Opera */
	}

	div.header_menu li a{
		color: #000000;
		float: inherit;
		position: relative;
		margin: auto;
		display: block;
		text-align: center;
		width: 100%;
		height: auto;
		line-height: 50px;
		font-size: 30px;
		padding: 2.3vh 0;
	}
	
	div.header_menu li .listBlock ul {
		margin: 0;
		padding: 0;
		width: 100%;
	}
	div.header_menu li .listBlock ul li{
		text-align:Center;		
	}
	div.header_menu li.mobileFirstClick > .listBlock,
	div.header_menu li:hover > .listBlock {
		position: relative;
		display: block;
		padding: 0;
		margin-bottom: 10px;
		box-shadow: none;
		float: left;
		width: 100%;
		background-color: rgba(255,255,255,0.1);
	}
	div.header_menu ul.sub a {    
		padding: 22px 0;
		/* color: white; */
	}
	div.header_menu ul.sub li:last-of-type {
		border-bottom:none;
	}

	div.header_menu a.home_but{
		float: inherit;
		display: none;
	}

	img.menu_show{
		display:none;
		position:absolute;
		top:20px;
		right:20px;
	}

	div.menu_button{
		position: absolute;
		width: 40px;
		height: 40px;
		left: 10px;
		top: 25px;
		display: block;
		cursor: pointer;
		z-index: 2;
	}
	div.menu_button div.lines{
		width: 35px;
		height: 2px;
		background: var(--themeGreenDark);
		-moz-transition: .4s;
		transition: .4s;
		position: relative;
		border-radius: 0;
	}

	div.menu_button div.lines.frst{top: 0px;}
	div.menu_button div.lines.mid {top: 6px;}
	div.menu_button div.lines.last{
		top: 12px;
	}
		
	div.menu_button.close div.lines.mid{opacity:0.0;}
	div.menu_button.close div.lines.frst{
		top: 6px;
		-webkit-transform: rotate3d(0,0,1,-45deg);
		-moz-transform: rotate3d(0,0,1,-45deg);
		transform: rotate3d(0,0,1,-45deg);
	}
	div.menu_button.close div.lines.last{
		-webkit-transform: rotate3d(0,0,1,45deg);
		-moz-transform: rotate3d(0,0,1,45deg);
		transform: rotate3d(0,0,1,45deg);
		top: 2px;
		width:35px;
		left:0px;
	}
	.expertiseMenu .menuTitle{
		color:#000;
		padding: 0;
	}
	.expertiseMenu .menuTitle svg *{
		fill: #00885b;
	}
	.expertiseMenu .titleRow {
		justify-content: center;
		flex-direction: column;
		position: relative;
		margin: auto;
	}
	.expertiseMenu .col{
		width:100%;
	}
	div.header_menu li:not(.mobileFirstClick) #expertiseMenu{
		display:none;
	}
}

@media screen and (min-width: 766px) and (max-width: 790px){		
	
}
@media screen and (min-width: 990px) and (max-width: 1010px){		
	
}

@media screen and (max-width: 765px){	
	
	div.menu_button.close + .logoHolder {
		height:70px;
	}
	
}