/* 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: transparent;
	 border: 1px solid transparent;
}

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

/* first level items borders */
.navnew > li {
	
}

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

/* second level navigation colors */
.navnew li li a {
    background: #eeeeee;
    border-bottom: 1px solid #c0c0c0;
    text-transform: uppercase;
}

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

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

/* main div */
.dropdowns {
	width:auto;
}

/* 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:225px;
}

/* general paddings and other stuff */
.navnew a {
	padding: 5px 7px;
}

/* parents that have submenus */
.navnew > li > .parent{
	color: #535353;
	font-family: var(--navfont);
	font-size: 14px;
	text-transform: uppercase;
}
ul.navnew li:last-child a{
	border-right: 0px;
}


@media only screen and (min-width: 769px) and (max-width: 1024px){
	.navnew a{
		padding: 5px 0px;
	}
}
/* small screen adjustments*/
@media screen and (max-width: 640px) {
	.navnew ul {
		width: 100%;
	}
	.navnew > li > .parent{
		color: #fff;
		background-color: #e70033;
	}
	.navnew li li a{
		background: #b70028;
		color: #fff;
	}
	.navnew li li li a{
		background: #de264e;
		color: #fff;
	}
}
