.menuresponsive {font-family: "roboto_condensedregular";}

.menuresponsive img {width: 100%!important; height: auto!important;}
.menuresponsive h3 {
	font-size: 30px;
	line-height: 34px;
	text-align: center;
	color: #FFF;
}

.menuresponsive h3 a {
	color: #FFF;
}

.menuresponsive a {
	color: #FFF;
}

.menuresponsive h1 {
	margin-top: 100px;
	text-align:center;
	font-size:60px;
	line-height: 70px;
	font-family: 'roboto_condensedregular', 'serif';
	}

.menuresponsive #container {
	margin: 0 auto;
	max-width: 890px;
}

.menuresponsive p {
	text-align: center;
}

.menuresponsive .toggle,
[id^=drop] {
	display: none;
}

/* Giving a background-color to the nav container. */
.menuresponsive nav { 
    font-family: 'roboto_condensedregular';
	margin:0;
	padding: 0;
	background-color: white;
	border-bottom: 1px dotted firebrick;
}



/* Since we'll have the "ul li" "float:left"
 * we need to add a clear after the container. */

.menuresponsive nav:after {
	content:"";
	display:table;
	clear:both;
}

/* Removing padding, margin and "list-style" from the "ul",
 * and adding "position:reltive" */
.menuresponsive nav ul {
	/*float: right;*/
	padding:0;
	margin:0;
	list-style: none;
	position: relative;
	display:flex;
	justify-content: left;
		}
		
	
/* Positioning the navigation items inline */
.menuresponsive nav ul li {
	margin: 0px;
	float: none;
	background-color: white;
	height: 48px;
	}

/* Styling the links */
.menuresponsive nav a {
	display:block;
	padding:14px 9px;	
	color: firebrick;
	font-size:15px;
	text-decoration:none;
}


.menuresponsive nav ul li ul li:hover { background: #000000; }

/* Background color change on Hover */
.menuresponsive nav a:hover { 
	background-color: firebrick;
	color: white; 
}

/* Hide Dropdowns by Default
 * and giving it a position of absolute */
.menuresponsive nav ul ul {
	display: none;
	position: absolute; 
	/* has to be the same number as the "line-height" of "nav a" */
	top: 60px; 
}
	
/* Display Dropdowns on Hover */
.menuresponsive nav ul li:hover > ul {
	display:inherit;
}
	
/* Fisrt Tier Dropdown */
.menuresponsive nav ul ul li {
	width:170px;
	float:none;
	display:list-item;
	position: relative;
}

/* Second, Third and more Tiers	
 * We move the 2nd and 3rd etc tier dropdowns to the left
 * by the amount of the width of the first tier.
*/
.menuresponsive nav ul ul ul li {
	position: relative;
	top:-60px;
	/* has to be the same number as the "width" of "nav ul ul li" */ 
	left:170px; 
}

	
/* Change ' +' in order to change the Dropdown symbol */
/*.menuresponsive li > a:before { content:  '+ '; }
.menuresponsive li > a:only-child:before { content: ''; }


/* Media Queries
--------------------------------------------- */

@media all and (max-width : 768px) {

	.menuresponsive #logo {
		display: block;
		padding: 0;
		width: 100%;
		text-align: center;
		float: none;
	}

	.menuresponsive nav {
		margin: 0;
	}

	/* Hide the navigation menu by default */
	/* Also hide the  */
	.menuresponsive .toggle + a,
	 .menuresponsive .menumanager {
		display: none;
	}

	/* Stylinf the toggle lable */
	.menuresponsive .toggle {
		display: block;
		background-color: firebrick;
		padding:14px 20px;	
		color:#FFF;
		font-size:17px;
		text-decoration:none;
		border:none;
		font-weight: bold;
	}

	.menuresponsive .toggle:hover {
		background-color: firebrick;
		cursor: pointer;
	}

	/* Display Dropdown when clicked on Parent Lable */
	.menuresponsive [id^=drop]:checked + ul {
		display: block;
	}

	/* Change menu item's width to 100% */
	.menuresponsive nav ul li {
		display: block;
		width: 100%;
		}

	.menuresponsive nav ul ul .toggle,
	.menuresponsive nav ul ul a {
		padding: 0 40px;
	}

	.menuresponsive nav ul ul ul a {
		padding: 0 80px;
	}

	.menuresponsive nav a:hover,
 	.menuresponsive nav ul ul ul a {
		background-color: #goldenrod;
	}
  
	.menuresponsive nav ul li ul li .toggle,
	.menuresponsive nav ul ul a,
	.menuresponsivenav ul ul ul a{
		padding:14px 20px;	
		color:#FFF;
		font-size:15px; 
	}
  
  
	.menuresponsive nav ul li ul li .toggle,
	.menuresponsive nav ul ul a {
		background-color: #212121; 
	}

	/* Hide Dropdowns by Default */
	.menuresponsive nav ul ul {
		float: none;
		position:static;
		color: #ffffff;
		/* has to be the same number as the "line-height" of "nav a" */
	}
		
	/* Hide menus on hover */
	.menuresponsive nav ul ul li:hover > ul,
	.menuresponsive nav ul li:hover > ul {
		display: none;
	}
		
	/* Fisrt Tier Dropdown */
	.menuresponsive nav ul ul li {
		display: block;
		width: 100%;
	}

	.menuresponsive nav ul ul ul li {
		position: static;
		/* has to be the same number as the "width" of "nav ul ul li" */ 

	}

}

@media all and (max-width : 330px) {

	.menuresponsive nav ul li {
		display:block;
		width: 100%;
	}

}