header{
	position: sticky;
	top: 0px;
	box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.3);
	background-color: white;
}
header, header nav{
	height: 82px;
}
header nav{
	z-index: 1;
}

header nav{
	display: flex;
	width: 100%;
	justify-content: space-between;
	align-items: center;
}

header nav img.logo{
	height: 40px;
	width: auto;
}

nav button.btn_gray{
	width: 78px;
	min-width: 78px;
}

nav button.btn_green{
	width: 193px;
}

.menu-header{
	display: flex;
	justify-content: flex-end;
	align-items: center;
}

.menu-header ul.nav_bar > li{
	position: relative;
	padding: 20px 0px;
}

nav ul.nav_bar{
	display: flex;
	list-style-type: none;
	margin: 0px;
	padding: 0px;
}

nav ul.nav_bar li{
	margin-right: 8px;
	margin-left: 8px;
	text-decoration: none;
}
nav ul.nav_bar li:first-child{
	margin-left: 0px;
}
nav ul.nav_bar li:last-child{
	margin-right: 0px;
}
nav ul.nav_bar li a{
	font-size: 16px;
	text-decoration: none !important;
	color: #303030;	
	font-weight: bold;
}

nav ul.nav_bar > li:hover > a, nav ul.nav_bar > li.current-menu-item > a, nav ul.nav_bar > li.current-page-ancestor > a{
	background-image: linear-gradient( 0deg, transparent, transparent 16%, var(--accent-color) 5%, var(--accent-color) 52%, transparent 32% );
	color: #006869;
}

nav ul.nav_bar > li.current-menu-item > a, nav ul.nav_bar > li.current-page-ancestor > a{
	font-weight: bold;
}



.menu-header ul.nav_bar li ul.sub-menu{
	display: none;
	position: absolute;
	top: 60px;
	left: -50px;
	box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.3);
	padding: 15px 16px;
	background: white;
	width: 320px;
}

.menu-header ul.nav_bar li:hover ul.sub-menu{
	display: block;
}

.menu-header ul.nav_bar li ul.sub-menu li a{
	font-size: 16px;
	font-weight: 600;
	display: block;
	border-radius: 5px;
	padding: 15px 20px;
	width: 100%;
	height: 100%;
}

.menu-header ul.nav_bar li ul.sub-menu li{
	display: block;
	width: 100%;
	padding: 0px;
	margin: 0px;
}


.menu-header ul.nav_bar li ul.sub-menu li:hover a, .menu-header ul.nav_bar li ul.sub-menu li.current-menu-item a{
	background-image: none;
}

.menu-header ul.nav_bar li ul.sub-menu a:hover, .menu-header ul.nav_bar li ul.sub-menu li.current-menu-item a{
	background: #F5F5F5;
	text-decoration: none;
	color: var(--green-color);
}

.menu-header ul.nav_bar li ul.sub-menu li.coming-soon{
	position: relative;	
}

.menu-header ul.nav_bar li ul.sub-menu li.coming-soon:before{
	content: 'Coming Soon';
	position: absolute;
	right: 10px;
	top: 20px;
	width: 100px;
	height: 30px;
	border-radius: 5px;
	background: var(--light-green);
	font-size: 12px;
	color: white;
	font-weight: bold;
	font-family: var(--secondary-font);
	display: flex;
	align-items: center;
	justify-content: center;
}

@media all and (max-width: 1023px){
	.menu-burger{
		width: 31px;
    height: 31px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 0;
    background-color: transparent;
    cursor: pointer;
	}

	.menu-burger span{
		position: relative;
    width: 31px;
    height: 4px;
    margin-bottom: 5px;
    border-radius: 2px;
    transition: all .2s ease-out;
    transition: all .2s ease-in;
    background-color: #000;
    display: block;
	}

	.menu-header{
		position: fixed;
	    width: 80vw;
	    height: 100vh!important;
	    display: flex;
	    flex-direction: column;
	    align-items: center;
	    justify-content: flex-start;
	    background: white;
	    color: #000 !important;
	    margin: 0 0 0 20vw!important;
	    padding: 30px;
	    top: 0;
	    right: -80vw;
	    transition: .5s;
	    z-index: 9999!important;
	    overflow-y: auto;
	}

	.menu-header ul{
		display: flex;
		flex-direction: column;
		justify-content: center;
		padding: 0px;
	}

	.menu-header ul li{
		margin-top: 10px;
		margin-bottom: 10px;
		max-width: 320px;
	}

	nav ul li:first-child{
		margin-left: 15px;
	}

	nav ul li:first-child{
		margin-right: 15px;
	}

	.menu-header ul li ul.sub-menu{
		display: block;
		position: relative;
		top: 0px;
		left: 0px;
		box-shadow: none;
		padding: 0px;
		width: auto;
		margin-left: 15px;
	}

	nav ul li:hover a{
		background: none;
	}

	nav ul li > a, .menu-header ul li a, .menu-header ul li ul.sub-menu li a{
		font-size: 14px !important;
		font-weight: 500;		
		display: block;
		border-radius: 5px;
		padding: 5px 5px;
		width: 100%;
		height: 100%;
	}

	nav ul > li > a:hover, nav ul > li.current-menu-item > a, nav ul > li.current-page-ancestor > a{
		background: #F5F5F5;
		text-decoration: none;
	}

	.menu-header .btn{
		margin-top: 15px;
	}

	body.open .menu-header {
    	right: 0!important;
    	box-shadow: 0px 0px 10px rgba(33,33,33,.3);
	}

	.menu-header .close{
		position: absolute;
		top: 20px;
		right: 20px;
	}
	.menu-header ul.nav_bar{
		margin-top: 30px !important;
	}
	.menu-header ul.nav_bar > li{
		margin: 0px !important;
		margin-right: 0px !important;
		margin-left: 0px !important;
		padding : 0px;
	}
	.menu-header ul.nav_bar  ul.sub-menu{
		display: block !important;
		margin: 0px;
		padding: 0px;
		position: relative !important;
		top: inherit !important;
		left: inherit !important;
		width: auto !important;
		box-shadow: none !important;
		padding: 0px !important;
	}
	.menu-header{
		display: block !!important;
		z-index : 999999 !important;
	}

	body.open .overlay-menu{
		z-index: 9999;
		display: block;
		position: fixed;
		left: 0px;
		right: 0px;
		bottom: 0px;
		top: 0px;
		background-color: rgba(0, 0, 0, .3);
	}
}


@media all and (max-width:  375px){
	header nav img.logo{
		height: 33px;
	}

	button.btn, a.btn{
		min-width: 80px !important;
	}
}

@media screen and (min-width: 320px){
	header nav img.logo{
		height: 24px;
	}
}

@media all and (max-width: 768px) {
	header nav img.logo{
		height: 30px;
	}	
	.menu-header ul.nav_bar li ul.sub-menu li a{
		padding: 7px 30px !important;
	}
	nav ul > li > a:hover, nav ul > li.current-menu-item > a, nav ul > li.current-page-ancestor > a{
		margin-top: 5px;
	}
}