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

:root{
	--navfont: 'Ubuntu', sans-serif;
	--mainfont: 'Ubuntu', 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: transparent;
}
.navnew li ul a{
	transition: all linear 0.5s;
}
.navnew li ul a:hover{
    background-color: #6f0b0d;
    color: #fff;
}

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

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

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

/* main div */
.dropdowns{
	width:auto;
    display: inline-block;
    vertical-align: middle;
}

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

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

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

@media only screen and (min-width: 769px) and (max-width: 1024px){
    .navnew > li > a, .navnew > li > .parent{        
        font-size: 14px;
    }
    .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;
        font-size: 14px;
        text-transform: capitalize;
	}
	.toggleMenu{
		padding: 12px 0px !important;
	}
	.dropdowns{
		width: 100%;
	}
}
