nav .nav-wrapper {
    max-width: 1400px;
	margin: 0 auto;
}
.page #content-wrap, .single #content-wrap, .archive #content-wrap {
    padding-top: 115px;
}
#header-bar {
	position: fixed;
	top: 0; 
	left: 0; right: 0;
	width: 100%;
	z-index: 12;
	background-color: rgba(255, 255, 255, 0.5);
	padding: 20px 0;
	height: auto;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

#header-bar.shrink {
	background: #fff !important;
	padding: 10px 0 !important;

    -webkit-box-shadow: 0 2px 5px 0 rgba(0,0,0,0.16),0 2px 10px 0 rgba(0,0,0,0.12);
    box-shadow: 0 2px 5px 0 rgba(0,0,0,0.16),0 2px 10px 0 rgba(0,0,0,0.12);
}

/* Mobile Menu */
#menu {
  position: fixed;
  background-color: #222;
  height: 100%;
  z-index: 13;
  width: 280px;
  color: #bbb;
  top: 0;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
  opacity: 1;
  display: none;
}

#menu ul {
  list-style: none;
  margin-top: 0;
  padding: 0
}

#menu ul li { border-bottom: 1px solid #2a2a2a; }

#menu>ul>li>a { border-left: 4px solid #222; }

#menu ul li a {
  color: inherit;
  font-size: 16px;
  display: block;
  padding: 8px 0 8px 7px;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
  font-weight: 600;
}

#menu ul a i {
  margin-right: 10px;
  font-size: 18px;
  margin-top: 3px;
  width: 20px;
}

#menu ul a i[class*='fa-caret'] { float: right; }

#menu ul a:hover,
#menu ul a.active {
  background-color: rgba(150, 190, 43, 0.1);
  border-left-color: #add546;
  color: #96BE2B;
}

#menu ul a:hover i:first-child { color: #FFCC33; }

#menu ul li a.active+ul { display: block }

#menu ul li ul {
  margin-top: 0;
  display: none;
}

#menu ul li ul li { border-bottom: none; }

#menu ul li ul li a { padding-left: 30px; }

#menu ul li ul li a:hover { background-color: #1A1A1A; }

.left { left: -280px; }

.display { left: 0; }

#showmenu {
  margin-left: 100%;
  position: absolute;
  top: 5px; left: 5px;
  padding: 6px 10px 7px 10px;
  font-size: 1.3em;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .5s ease-in-out;
  -moz-transition: .5s ease-in-out;
  -o-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
  cursor: pointer;
}
#showmenu span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background: #96BE2B;
  border-radius: 9px;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .25s ease-in-out;
  -moz-transition: .25s ease-in-out;
  -o-transition: .25s ease-in-out;
  transition: .25s ease-in-out;
}

#showmenu span:nth-child(1) {
  top: 0px;
}

#showmenu span:nth-child(2),#showmenu span:nth-child(3) {
  top: 6px;
}

#showmenu span:nth-child(4) {
  top: 12px;
}

#showmenu.open span:nth-child(1) {
  top: 18px;
  width: 0%;
  left: 50%;
}

#showmenu.open span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}

#showmenu.open span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

#showmenu.open span:nth-child(4) {
  top: 18px;
  width: 0%;
  left: 50%;
}