/* CSS Document */

@import url(https://fonts.googleapis.com/css?family=Open+Sans);
@import url(https://fonts.googleapis.com/css?family=Bree+Serif);

/* header */

    .header_nav {
      background-color: rgba(92, 69, 63, 0.5);
      position: fixed;
      width: 100%;
      z-index: 1;
    }

    .header_nav ul {
      margin: 0;
      padding: 0;
      list-style: none;
      overflow: auto;
      /* background-color: rgba(92, 69, 63, 0.5); */
	  overflow: visible;
	  font-weight: bold;
    }

    .header_nav li a {
      padding: 20px 20px;
      border-right: 1px solid rgba(92, 69, 63, 0.5);
      border-left: 1px solid rgba(92, 69, 63, 0.5);
	  background-color: rgba(92, 69, 63, 0);
      text-decoration: none;
    }

	.header_nav li ul a {
		padding: 20px 20px;
		border-right: 1px solid rgba(92, 69, 63, 0.5);
		border-left: 1px solid rgba(92, 69, 63, 0.5);
		background-color: rgba(92, 69, 63, 0.5);
		text-decoration: none;
	  }

    .header_nav li a:hover,
    .header_nav .menu-btn:hover {
      background-color: rgba(92, 69, 63, 0.5);
	  font-weight: bold;
    }

    .header_nav .logo {
      display: block;
      float: left;
      /* height: 2px; */
      height: auto;
      font-size: 2em;
      padding: 10px 20px;
      text-decoration: none;
      font-family: 'Great Vibes', cursive;
    }

    body {
      margin: 0;
	font-size:22px;
	line-height: 32px;
	/*color: #ffffff;*/
	margin: 0;
	padding: 0;
	word-wrap:break-word !important;
	font-family: 'Open Sans', sans-serif;
    background-color: rgba(92, 69, 63, 0);
    }

    a {
      color: rgba(255, 255, 255, 0);
    }

h1 {
	font-size: 60px;
	text-align: center;
	color: #FFF;
}	

h3 {
	font-size: 30px;
	line-height: 34px;
	text-align: center;
	color: #FFF;
}

h3 a {
	color: #FFF;
}


h1 {
	margin-top: 100px;
	text-align:center;
	font-size:60px;
	line-height: 70px;
	font-family: 'Bree Serif', 'serif';
	}

#container_nav {
	margin: 0 auto;
	max-width: 890px;
	
}

p {
	text-align: center;
}

.toggle_nav,
[id^=drop] {
	display: none;
	font-weight: bold;
}

/* Giving a background-color to the nav container. */
nav { 
	margin:0;
	padding: 0;
	/* background-color: rgba(92, 69, 63, 0.5); */
}

#logo_nav {
	display: block;
	padding: 0 30px;
	float: left;
	font-size:20px;
	line-height: 60px;
}

/* Since we'll have the "ul li" "float:left"
 * we need to add a clear after the container. */

nav:after {
	content:"";
	display:table;
	clear:both;
}

/* Removing padding, margin and "list-style" from the "ul",
 * and adding "position:reltive" */
nav ul {
	float: right;
	padding:0;
	margin:0;
	list-style: none;
	position: relative;
	background-color: rgba(92, 69, 63, 0);
	}
	
/* Positioning the navigation items inline */
nav ul li {
	margin: 0px;
	display:inline-block;
	float: left;
	background-color: rgba(92, 69, 63, 0);
	}

/* Styling the links */
nav a {
	display:block;
	padding:14px 20px;	
	color:#FFF;
	font-size:15px;
	/*text-decoration:none;*/
}




nav ul li ul li:hover {}

/* Background color change on Hover */
nav a:hover { 
	/*background-color: #000000; */
}

/* Hide Dropdowns by Default
 * and giving it a position of absolute */
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 */
nav ul li:hover > ul {
	display:inherit;
}
	
/* Fisrt Tier Dropdown */
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.
*/
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 */
li > a:after { content:  ''; }
li > a:only-child:after { content: ''; }


/* Media Queries
--------------------------------------------- */

@media all and (max-width : 768px) {

	#logo_nav {
		display: block;
		padding: 0;
		width: 100%;
		/*text-align: right;*/
		float: none;
		display: none;
	}

	nav {
		margin: 0;
		width: 100%;
		text-align: right;
		background-color: rgba(92, 69, 63, 0.25);
	}

	/* Hide the navigation menu by default */
	/* Also hide the  */
	.toggle_nav + a,
	.menu_nav {
		display: none;
		width: 100%;
	}

	/* Stylinf the toggle lable */
	.toggle_nav {
		display: block;
		/* background-color: #254441;*/ 
		/* background-color: rgba(92, 69, 63, 1); */
		padding:14px 20px;	
		width: 100%;
		/* color:#FFF; */
		font-size:15px;
		font-weight: bold;
		text-decoration:none;
		border:none;
	}

	.toggle_nav:hover {
		/* background-color: #000000; */
	}

	/* Display Dropdown when clicked on Parent Lable */
	[id^=drop]:checked + ul {
		display: block;
	}

	/* Change menu item's width to 100% */
	nav ul li {
		display: block;
		width: 100%;
		text-align: center;
		text-indent: 30px;
		/*background-color: rgba(92, 69, 63, 0.8);*/
		}

	nav ul ul .toggle_nav,
	nav ul ul a {
		padding: 0 40px;
	}

	nav ul ul ul a {
		/*padding: 0 80px;*/
		font-weight: normal;
	}

	nav a:hover,
 	nav ul ul ul a {
		/* background-color: #000000; */
	}
  
	nav ul li ul li .toggle_nav,
	nav ul ul a,
  nav ul ul ul a{
		/*padding:14px 20px;	*/
		/*text-indent: 50px;*/
	}
  
  
	nav ul li ul li .toggle_nav,
	nav ul ul a {
		/* background-color: #212121; */
		text-indent: 50px;
	}

	/* Hide Dropdowns by Default */
	nav ul ul {
		float: none;
		position:static;
		color: #ffffff;
		width: 100%;
		/* has to be the same number as the "line-height" of "nav a" */
	}
		
	/* Hide menus on hover */
	nav ul ul li:hover > ul,
	nav ul li:hover > ul {
		display: none;
	}
		
	/* Fisrt Tier Dropdown */
	nav ul ul li {
		display: block;
		width: 100%;
	}

	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) {

	nav ul li {
		display:block;
		width: 94%;
	}

}