#main_nav {
    /* background-color: #3b6474; */
    padding: 0;
    z-index: 2;
    /* border-top: 4px solid #202327; */
}

#mobile-menu {
	display: none;
}

/* wp patch */
ul.sub-menu.sm-nowrap li.current-menu-item.current_page_item a::after {
	display: none !important;
}

ul.sub-menu li a::after {
	display: none !important; /*  !!! */
}

.sm-clean .sm-nowrap > li > a, .sm-clean .sm-nowrap > li > :not(ul) a {
	white-space: break-spaces;
}

.sm{
	z-index:2;
}

/*  Menu   */

.main-menu-wrapper {
    background-color: transparent;
    padding-top: 1px;
    padding-left: 0px;
    padding-bottom: 0;
}
/* https://www.smartmenus.org/ */
.sm-clean {
	border: none;
	background: transparent;
	box-shadow: none;
	padding: 0;
	font-family: 'Comfortaa' !important;
	display: flex;
	justify-content: space-between;
	width: 100%;
	padding-left: 0px;
	padding-right: 0px;
	font-weight: 400;
}
.sm-clean a, .sm-clean a.has-submenu {
    padding-left: 1px;
    padding-right: 1px;
    padding-top: 11px;
    color: #fff;
    font-size: 19px;
    font-family: 'Comfortaa' !important;
    font-weight: 400 !important;
    line-height: 20px;
    text-decoration: none;
    border-bottom: none !important;
}
.sm-clean a:hover, .sm-clean a:focus, .sm-clean a:active {
    padding-left: 1px;
    padding-right: 1px;
    padding-top: 11px;
    color: #001543;
    font-size: 19px;
    font-family: 'Comfortaa' !important;
    font-weight: 400 !important;
    line-height: 20px;
    text-decoration: none;
    border-bottom: none !important;
}

.sm-clean > li > ul::after {
	display: none;
}
.sm-clean > li > ul::before, .sm-clean > li > ul::after {
	display: none;
}
.sm-clean ul {
	box-shadow: none;
}
.sm-clean > li > ul {
	padding: 0;
	margin: 0;
	border: none;
	background-color: transparent;
}

.sm-clean > li > ul > li > a {
	padding: 0;
	margin: 0;
	color: #d3e6f7;
	background-image: url("../img/sub-menu-backgr.png");
	background-position: center top;
	background-repeat: no-repeat;
	background-color: transparent;
	height: 49px;
	width: 277px;
	text-align: left;
	padding-left: 23px;
	padding-top: 13px;
	font-size: 18px;
	margin-bottom: 0px;
	font-weight: 300 !important;
}
.sm-clean > li > ul > li > a:hover, .sm-clean > li > ul > li > a:focus {
    padding: 0;
    margin: 0;
    color: #fff;
    background-image: url("../img/sub-menu-backgr-on.png");
    background-repeat: no-repeat;
	height: 49px;
	width: 277px;
	text-align: left;
	padding-left: 23px;
	padding-top: 13px;
	font-size: 18px;
	margin-bottom: 0px;
	font-weight: 500 !important;
	background-color: transparent;
}
/* first level only */
.sm-clean > li > a {
    margin-right: 15px;
    margin-left: 0px;
    color: #fff;
}
.sm-clean > li:last-child > a { /* last Item in first level menu */
	margin-right: -15px;
	padding-right: 0;
	padding-left: 0px;
}
/* Correct !!  */
.sm-clean > li > a:hover, .sm-clean > li > a:focus, .sm-clean > li > a.highlighted, li.current-menu-item > a, .sm-clean > li.current-menu-parent > a.has-submenu {
    color: #001543;
    font-weight: 600;
}

.sm-clean > li > a::after {
	height: 6px;
	display: inline-block;
	width: 0px;
	background: transparent;
	content: '';
	border-radius: 0px;
	transition: width 1s;
	transition-timing-function: ease;
	margin-top: 0px;
	position: absolute;
	top: 0px;
	left: 0px;
}

/* Correct !!  */
.sm-clean > li > a:hover::after, .sm-clean > li > a:focus::after, .sm-clean > li > a:active::after, 
.sm-clean > li > a.highlighted::after, .sm-clean li.current-menu-parent > a.has-submenu::after, 
.sm-clean li.current-menu-item > a::after {
    height: 6px;
    display: block;
    width: 100%;
    background: #fff;
    border-radius: 0px;
    content: '';
    transition: width 1s;
    transition-timing-function: ease;
    margin-top: 0px;
    position: absolute;
    top: 38px;
    left: 0px;
}



/* triangle */
.sm-clean a .sub-arrow {
    top: 50%;
    margin-top: -3px;
    right: -16px;
    width: 0;
    height: 0;
    border-width: 5px;
    border-style: solid dashed dashed dashed;
    border-color: #fff transparent transparent transparent;
    background: transparent;
    border-radius: 0;
}
.sub-arrow, .sm-clean a.highlighted .sub-arrow { 
	border-color: #001543 transparent transparent transparent;
}


.current-menu-parent.menu-item-has-children a.has-submenu span.sub-arrow {
	border-color: #001543 transparent transparent transparent;
}


/*==========  Desktop First Method  ==========*/



@media only screen and (min-width : 1200px) {

	.hamburger {display: none;} 

}



/* Large Devices, Wide Screens */
@media only screen and (max-width : 1200px) {

	.sm-clean {
		display: flex;
		justify-content: space-between;
	}

	.sm-clean a, .sm-clean a:hover, .sm-clean a:focus, .sm-clean a:active, .sm-clean a.has-submenu {
		padding-left: 0px;
		padding-right: 0px;
		font-size:19px;
		font-weight: 400;
	}
	.sm-clean a .sub-arrow {
		right: -18px;
	}
	.sm-clean > li > a {
		margin-right: 70px;
	}
	.sm-clean > li > ul > li > a {
		padding-left: 20px;
		padding-top: 11px;
		font-size: 18px;
		font-weight: 400;
	}
.sm-clean > li > ul > li > a:hover, .sm-clean > li > ul > li > a:focus {
		padding-left: 20px;
		padding-top: 11px;
		font-size: 19px;
		font-weight: 400;
		background-color: transparent;
	}



	/* toggle modile menu- */
	#mobile-menu    {
		margin-top: 9px;
	    z-index: 50000;
	}
	.mobile-menu-toggle {
	    cursor: pointer;
	    padding: 0;
	    position: relative;
	    z-index: 20000;
	    height: auto;
	    width: auto;
	    margin-top: 0px;
	    margin-left: 0;
	    float: left;
	}
	.hamburger {display: block;}
	.hamburger {
		font: inherit;
		display: inline-block;
		overflow: visible;
		margin: 0;
		padding: 0px;
		cursor: pointer;
		transition-timing-function: linear;
		transition-duration: .15s;
		transition-property: opacity,filter;
		text-transform: none;
		color: inherit;
		border: 0;
		background-color: transparent;
		outline: none;
		cursor: pointer;
		z-index: 50050;
		width: 42px;
		height: 44px;
	}
	.hamburger:hover {
		opacity: 1;
	}
	.hamburger-box {
	    position: relative;
	    display: inline-block;
	    width: 40px;
	    height: 40px;
	    margin-top: 0px;
	    vertical-align: top;
	    padding-top: 0px;
	    cursor: pointer;
	    margin-left: 10px;
	}
.hamburger-inner, .hamburger-inner:after, .hamburger-inner:before {
    position: absolute;
    width: 40px;
    height: 4px;
    transition-timing-function: ease;
    transition-duration: .15s;
    transition-property: transform;
    border-radius: 4px;
    background-color: #fff;
}
	/* toggle modile menu- */

	.main-menu-wrapper {
		display: none;
	}

}










/* Medium Devices, Desktops */
@media only screen and (max-width : 1200px) {

	.sm-clean  {display: none;}

	/* .mm-menu a:link TITLE */
	.mm-navbar {
		background: rgba(0,21,70,0.95);
		/* border-color: rgba(0,0,0,.1); */
		color: #fff; /* title */
		font-size: 20px;
	}

	.mm-navbar a {
		font-weight: 500 !important;
	}

	/* http://mmenu.frebsite.nl */
	.mm-menu_theme-dark {
		--mm-color-background: rgba(54,87,150,0.7); /* common bg */
		--mm-color-border: #4e6faf; /* borderS */
		--mm-color-text: #d3e6f7; /*rgba( 255,255,255, 0.65 );*/
		--mm-color-button: #d3e6f7; /* Next in Header & Triangle more */

		/*--mm-color-text-dimmed: red; */  /* title */
		--mm-color-background-highlight: rgba(226,82,1,1);
		--mm-color-background-emphasis:  rgba(226,82,1,1); /* rgba(240,158,0,1); mouse over this arrow item */
		--mm-shadow: 0 0 20px rgba( 0,0,0, 0.5 );
	}

	/* hover color OF Menu Item without arrow */
	.mm-listitem a:focus {
		color: #fff;
		background:  rgba(226,82,1,1);
	}

	.mm-menu a, .mm-menu a:active, .mm-menu a:hover, .mm-menu a:link, .mm-menu a:visited {
		border-bottom: none;
		font-size: 18px;
	}

	
	/* Color Return in Navbar top*/
	.mm-navbar .mm-btn::after, .mm-navbar .mm-btn::before {
		border-color: #fff;
	}	

	/* !!! Triangle more */
	.mm-btn::after, .mm-btn::before {
		/*border-color: var(--mm-color-button);*/
		border-color: #fff;
	}

	/* borders padding */
	/*
	.mm-listitem::after { 
	    content: '';
	    border-color: inherit;
	    border-bottom-width: 1px;
	    border-bottom-style: solid;
	    display: block;
	    position: absolute;
	    left: 0px;
	    right: 0;
	    bottom: 0;
	}
	*/

}



