/* Custom CSS For MENU
Added from an existing fork from codepen.io
here is the link: https://codepen.io/whitinggg/pen/rJJGKE */
.content {
margin: 0 auto;
position: absolute;
top: 50%;
left: 25%;
transform: translate(-25%,-50%);
z-index: 2;
}

body:before {
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
}

/* OPEN / CLOSE BTNS */
.menu-btn {
  z-index: 999;
  display: inline;
  font-size: 32px;
}
.menu-btn a {
  display: inline-block;
  text-decoration: none;
  /* safari hack */
}
.btn-open:after {
  color: #000000;
  content: "\f394";
  font-family: "Ionicons";
  -webkit-transition: all .2s linear 0s;
  -moz-transition: all .2s linear 0s;
  -o-transition: all .2s linear 0s;
  transition-property: all .2s linear 0s;
}
.btn-open:hover:after {
  color: #000000;
}
.btn-close:after {
  color: #9E9E9E;
  content: "\f2d7";
  font-family: "Ionicons";
  -webkit-transition: all .2s linear 0s;
  -moz-transition: all .2s linear 0s;
  -o-transition: all .2s linear 0s;
  transition-property: all .2s linear 0s;
}
.btn-close:hover:after {
  color: #ffffff;
}
/* OVERLAY */
.overlay {
  position: fixed;
  display: none;
  top: 0;
  z-index: 99;
  overflow: auto;
  width: 100%;
  height: 100%;
  background: #000000;
  transition: height 1s ease;
}
.overlay .container {
    margin-left: 3em;
    margin-top: 1.5em;
}
.overlay .menu {
  margin: 0 auto;
  width: 100%;
}
.overlay .menu ul {
  margin: 0;
  padding: 0;
  width: 100%;
}
.overlay .menu ul li {
  float: left;
  padding: 10px 0 15px 0;
  list-style: none;
  text-align: left;
  margin: 40px 0 40px 0;
  display: inline-block;
  overflow: visible;
  width: 100%;
}
.overlay .menu ul li .sub {
position: absolute;
left: 100%;
top: 0;
margin-top: 0;
}
.overlay .menu ul li ul li ul.sub.move {
  transform: translateX(0%)!important;
}
li.return-lvl {
  padding-top: 50px!important;
  opacity: 0.5;
}
.overlay .menu ul {
overflow: hidden;
}
.overlay .menu ul li ul {
overflow: visible;
}

.overlay .menu ul li ul {
transform: translateX(0);
transition: all 0.3s ease;
}
.overlay .menu ul li ul.move {
transform: translateX(-100%);
}
.overlay .menu ul li#social {
  width: 100%;
  margin-top: 50px;
}
.overlay .menu ul li a {
  color: #ffffff;
  font-weight: 300;
  font-size: 20px;
  font-family: 'Exo', sans-serif;
}
.overlay .menu ul li#social a {
}
.overlay .menu ul ul {
  margin-top: 10px;
  position: relative;
}
.overlay .menu ul ul li {
  float: none;
  margin: 0;
  width: 100%;
  border: 0;
}
.overlay .menu ul ul li a {
  color: #fff;
  text-transform: capitalize;
  font-weight: 300;
  font-size: 2rem;
  font-family: 'Exo', sans-serif;
}
.overlay .menu ul ul li a:hover {
  color: #fff;
  font-weight:600;
}

.overlay * {
color: #fff!important;
}
/* RESPONSIVE */
@media screen and (max-width: 768px) {
  .overlay .menu ul li {
      float: none;
      margin-bottom: 25px;
      width: 100%;
  }
  .overlay .menu ul li:last-child {
      border: 0;
  }
  .overlay .menu ul ul {
      margin-top: 20px;
  }
  .menu-btn {
      right: 25px;
  }
}

.menu-btn a span {
  font-size: 18px;
  color: #ffffff;
  line-height: 18px;
  font-weight: 600;
  position: relative;
  top: -5px;
  right: 5px;
}

.navbar-brand {
color: #fff;
font-weight: bold;
font-size:2rem;
text-decoration: underline;
}

/*Customising Header - Bootstrap Code*/
.fixed-top {
  position: absolute !important;
}

/*Removing Hover Blue color from Menu Hemburger Icon */
a.btn-close:hover {
  color: #f0f8ff00;
}
a.btn-open:hover {
  color: #f0f8ff00;
}
