﻿
 nav > ul > li:not(:last-child) {
 border-right: 1px solid #ccc; /* Menu Seperator */ 
 margin-left:-5px; 
}
nav li:first-child{
 border-left: 1px solid #ccc; 
 }
nav li:last-child{
 border-right: 1px solid #ccc;
 margin-left:-5px;
 }
nav{
 width: 100%;
 background: #e0aa82; 			/* bg-color whole Navbar #f1ccb0 */
 box-shadow: 0 4px 8px 0 rgba(0,0,0,.2); 	/* Shadow below middle Navbar */
 font-size:0.9em;
}
nav > ul{
 width: 80%;
 margin: 0 auto; text-align:center;
 padding: 0;
}
nav > ul > li{
 list-style: none;
 display: inline-block; 
 transition: all 0.3s ease; /* Transition */
 padding: 12px; 		/* Height of Navbar */
}
nav > ul > li:hover{
 background: #b74933; 	/* #cf3535 #cb5439 */
 border-radius:5px;
}
nav > ul > li > a{
 color: #fff;
 padding:0 5px;
 text-decoration: none;
 text-transform: uppercase; /*for capitalisation of letters */ 
 }
.toggle {
 width: 100%;
 padding: 10px 20px;
 text-align: right;
 box-sizing: border-box;
 color: #fff;
 font-size: 30px;
 display: none;
}
@media(max-width:768px){
 .toggle{
 display: block;
 }
 nav > ul{
 width: 100%;
 display: none;
 }
 nav > ul > li{
 display: block;
 text-align: center;
 }
 .active{
 display: block;
 }
 }

/* ------------------------------------------------------- */


 #nav-bar {
 overflow: hidden;
 background-color:#f1ccb0;
 font-size:0.8em;
 border-bottom: 2px solid orange;
 box-shadow: 0 10px 15px -3px rgba(0,0,0,0.2), 0 4px 6px -4px rgba(0,0,0,0.2); /* Shadow below Top Navbar */
 z-index:10; position:relative; 		/* needed */
 }

/* ------------------------------------------------------- */


#top-menu {
 width: 100%;
 display: inline-block;
 }
.right-nav {
 float: right;
 padding-right:35px;
 }
#top-menu > ul {
 margin: 0;
 height: auto;
 }
#top-menu ul > li {
 list-style-type: none;
 float: left;
 height: auto;
 }
#top-menu a {
 display: inline-block;
 text-decoration: none;
 --font-size: 0.8em;
 line-height:0.8em;
 color: #333;
 text-align: center;
 padding:5px 10px;
 border-radius:6px;
 }
#top-menu a:hover {
 color:brown;
 background-color:#f8e6d8;
 padding:5px 10px;
 }
.home-icon {
 margin-right:12px; 
 vertical-align:middle;
 padding-bottom:3px;
 }
