/* fonts */
.dropdowns {font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; }

:root{
	--navfont: 'Roboto', sans-serif;
	--mainfont: 'Montserrat', sans-serif;
	--mainfontsize: 16px;
}
/* colors */
/* ------ */
/* togle menu button for narrow screens */
.toggleMenu {
    background: #fff;
    color: #000;
}

/* general navigation background colors */
.navnew {
     background: #4299aa;
     display: inline-block;
	 /*border: 1px solid #f0f0f0;*/
}

/* general navigation link font color */
.navnew a {
    color:#666;
}

/* first level items borders */

/* navigation hover colors */
.navnew a:hover {
	background-color: #388999;
	color: #fff;
}

/* second level navigation colors */
.navnew li li a {
    background: #eeeeee;
    border-bottom: 1px solid #c0c0c0;
}
.navnew > li > a::before{
    position: absolute;
    content: '';
    width: 40px;
    height: 5px;
    background-color: #b7d4d9;
    bottom: 8px;
    left: 0;
    right: 0;
    margin: auto;
	transition: all 0.5s ease;
}
.navnew > li > a::after{
    position: absolute;
    content: '';
    width: 40px;
    height: 5px;
    background-color: #f5d76f;
    bottom: -30px;
    left: 0;
    right: 0;
    margin: auto;
	transition: all 0.5s ease;
}
.navnew > li > a:hover:before{
    bottom: -30px;
}
.navnew > li > a.active:before{
    bottom: -30px;
}
.navnew > li > a:hover:after{
    bottom: 10px;
}
.navnew > li > a.active:after{
    bottom: 10px;
}

/* third level navigation colors */
.navnew li li li a {
    background:#cccccc;
    border-bottom: 1px solid #c0c0c0;;
}

/* ---------------- */
/*      layout      */
/* -----------------*/

/* main div */
.dropdowns {
	width:auto;
    text-align: center;
}

/* small screens menu button */
a.toggleMenu {
	padding: 10px 0;
	width:100%;
	text-align: center;
	font-size: 16px;
	font-weight: bold;
}

/* second and third level menus */
.navnew ul {
	width:16em;
}

/* general paddings and other stuff */
.navnew a {
    padding: 15px 6px;
}
.navnew li.test ul li a{
    padding: 8px 5px;
}

/* parents that have submenus */
.navnew > li > .parent{
	color: #ffffff;
	font-family: var(--navfont);
	font-size: var(--mainfontsize);
	text-transform: uppercase;
}
.navnew > li > .parent:hover{
	color: #fff;
}

@media only screen and (min-width: 769px) and (max-width: 1024px){
    .navnew > li > a, .navnew > li > .parent{        
        font-size: 13px;
    }
    .navnew a{
        padding: 10px 6px;
    }
}
/* small screen adjustments*/
@media screen and (max-width: 768px) {
	.navnew ul {
		width: 100%;
	}
	.navnew > li > .parent{
		color: #fff;
		background-color: #075a9c;
	}
}
