@import 'https://fonts.googleapis.com/css?family=Open+Sans';
@import 'https://fonts.googleapis.com/css?family=Raleway';
@import 'https://fonts.googleapis.com/css?family=Roboto:300,400';
@import 'https://fonts.googleapis.com/css?family=Open+Sans:700';

@charset "utf-8";
/* CSS Document */

* { box-sizing: border-box; }

body { overflow-x: hidden; }

#site-wrapper {
  position: relative;
  width: 100%;
  /*height: 100%;*/
}

main {
 *zoom: 1;
  width: auto;
  max-width: 1200px;
  float: none;
  display: block;
  margin-right: auto;
  margin-left: auto;
  padding-left: 10px;
  padding-right: 10px;
  margin-top: 20px;
  font-family: 'Raleway', sans-serif;
  
}

main:before, main:after {
  content: '';
  display: table;
}

main:after { clear: both; }

/* Navbar Menu Component */

.menu {
  width: 230px;
  min-height:583px;
  /*height: auto; */
  background: #007351;
  background-repeat:no-repeat;
  position: fixed;
  top: 0;
  right: -400px;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  overflow: hidden;
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
  -webkit-transform: translateX(0) translateZ(0);
  transform: translateX(0) translateZ(0);
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  -webkit-transition: all 0.3s cubic-bezier(0.32, 1.25, 0.375, 1.15);
  transition: all 0.3s cubic-bezier(0.32, 1.25, 0.375, 1.15);
  z-index: 99999;
  /* background-color: rgb(0, 0, 0);*/
    /* RGBa with 0.6 opacity */
  /*background-color: rgba(0, 0, 0, 0.6);*/
    /* For IE 5.5 - 7*/
  filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#99000000,  endColorstr=#99000000);
    /* For IE 8*/
  -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#99000000, endColorstr=#99000000)";
  font-family: 'Raleway', sans-serif ;

  
 

}

.menu.show-nav {
  -webkit-transform: translateX(-400px);
  -ms-transform: translateX(-400px);
  transform: translateX(-400px);
  -webkit-transform: translateX(-400px) tranlateZ(0);
  -ms-transform: translateX(-400px) tranlateZ(0);
  transform: translateX(-400px) tranlateZ(0);
  -webkit-transform: translate3d(-400px, 0, 0);
  transform: translate3d(-400px, 0, 0);
}

.menu ul {
  margin-top:-14px;
  padding: 0;
}

.menu ul li {
  position: relative;
  list-style: none;
  margin: 0 auto;
  padding: 18px 10px 10px 40px;
  text-align: center;
  /*border-top: 1px solid #333;*/
  /*box-shadow: 0 -1px 1px -1px #746559;*/
}

.menu ul li:first-child {
  margin-top: 20px;
  border: 0;
  box-shadow: none;
}

.menu ul li a {
  position: relative;
  font-weight: 600;
  padding: 8px 10px;
  color: rgba(255, 255, 255, 0.7);
  color: white;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  font-family: 'Open Sans', sans-serif;
  font-size:15.06px;
}
.menu ul li a:hover
{
  color:#007351 !important;
  background-color:#ffffff !important; 
}
.menu ul li a:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  min-height: 4px;
  background-color: #FFF;
  visibility: hidden;
  -webkit-transform: scaleX(0);
  -ms-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transition: all 0.3s cubic-bezier(0.32, 1.25, 0.375, 1.15);
  transition: all 0.3s cubic-bezier(0.32, 1.25, 0.375, 1.15);
  color:#007351;
}

.no-touch .menu ul li a:hover:after {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  visibility: visible;
}

.menu p {
  color: rgba(255, 255, 255, 0.7);
  position: absolute;
  top: 86%;
  left: 20px;
  font-size: 0.875em;
  text-align: center;
}

.menu p a {
  color: rgba(243, 139, 0, 0.6);
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.menu p a:hover {
  color: #f38b00;
  text-decoration: underline;
}

.nav-toggle {
  position: fixed;
  top: 30px;
  right: 30px;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
  -webkit-transform: translateX(0) translateZ(0);
  transform: translateX(0) translateZ(0);
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  -webkit-transition: all 0.4s cubic-bezier(0.32, 1.25, 0.375, 1.15);
  transition: all 0.4s cubic-bezier(0.32, 1.25, 0.375, 1.15);
  z-index: 11;
}

.nav-toggle span {
  color: #4c4c4c;
  color: rgba(0, 0, 0, 0.7);
  padding: 5px;
  font-size: 1.875em;
}

.no-touch .nav-toggle span:hover { color: black; }

.nav-toggle span.fa-times { color: #fff;font-size:20px;display:none; }

.nav-toggle span.fa-times:hover { color: #fff; }

.nav-toggle.show-nav {
  top: 12px;
  right: 12px;
}
.menu-icon
{
	text-align:center;
	margin-top:29px;
	margin-bottom:39px;
	padding-left:6%;
}
.menu-cap
{
	color:#ffffff;
	font-size:18px;
	font-family: 'Raleway', sans-serif ;
	text-align:center;
	padding:0px 25px;
	margin-left:6%;
}