/* Damit Mouseflow mit dem MegaMenu funktioniert*/ 
.de-mega-menu{
	z-index:999!important;
}

/*Im Mega Menu Links angepasst*/
.menu_link a{
	color:rgba(0,0,0,0.6)!important;
	font-weight:600;
	font-family: 'Raleway';
	font-size:14px;
}

/*Im Mega Menu Links Hover fett und ohne Unterstrich*/
.menu_link a:hover{
	color:#1150b4!important;
	font-weight:bold;
	text-decoration:none!important;
}

/*this hides the mobile menu on desktop */
.mobile-only {display:none !important;} 
 
/*mobil*/ 
@media all and (max-width: 980px) {
	/*shows mobile menu*/
	.mobile-only {display:block !important;} 
	/*hide the Mega Menu*/
	.desktop-only {display:none !important;}
}

