.nav_wrapper{
  height: 125px;
  background: rgba(255, 255, 255, 0.4);
  width: 100%;
  position: absolute;
  top: 0;
  z-index: 999;
  max-height: 130px;
}
#nav_toggle {
  position: absolute;
  top: 50%;
  padding: 10px;
  /* background: #fff; */
  /* border: 3px solid white; */
  right: 5%;
  height: 27px;
  width: 35px;
  cursor: pointer;
  z-index: 100;
  -webkit-transition: opacity .25s ease;
  transition: opacity .25s ease;
  animation-name: menu_animation;
  animation-duration: 1s;
  animation-iteration-count: infinite;

}
#nav_toggle:hover {
  opacity: .7;
}
#nav_toggle.active{
  /* background:none; */
  position: fixed;
}
#nav_toggle.active .top {
  -webkit-transform: translateY(11px) translateX(0) rotate(45deg);
  transform: translateY(11px) translateX(0) rotate(45deg);
  background: #FFF;
}
#nav_toggle.active .middle {
  opacity: 0;
  background: #FFF;
}
#nav_toggle.active .bottom {
  -webkit-transform: translateY(-11px) translateX(0) rotate(-45deg);
  transform: translateY(-11px) translateX(0) rotate(-45deg);
  background: #FFF;
}
#nav_toggle span {
  background: #000000;
  border: none;
  height: 3px;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transition: all .35s ease;
  transition: all .35s ease;
  cursor: pointer;
}
#nav_toggle span:nth-of-type(2) {
  top: 11px;
}
#nav_toggle span:nth-of-type(3) {
  top: 22px;
}
.nav_overlay .container    {
  padding-top: 10%;
}

.nav_overlay {
  position: fixed;
  background: #098d59;
  top: 0;
  left: 0;
  width: 100%;
  height: 0%;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity .35s, visibility .35s, height .35s;
  transition: opacity .35s, visibility .35s, height .35s;
  overflow: hidden;
}
.nav_overlay.open {
  opacity: 1;
  visibility: visible;
  height: 100%;
  z-index: 80;
}
.nav_overlay.open li {
  -webkit-animation: fadeInRight .5s ease forwards;
  animation: fadeInRight .5s ease forwards;
  -webkit-animation-delay: .35s;
  animation-delay: .35s;
}
.nav_overlay.open li:nth-of-type(2) {
  -webkit-animation-delay: .4s;
  animation-delay: .4s;
}
.nav_overlay.open li:nth-of-type(3) {
  -webkit-animation-delay: .45s;
  animation-delay: .45s;
}
.nav_overlay.open li:nth-of-type(4) {
  -webkit-animation-delay: .50s;
  animation-delay: .50s;
}
.nav_overlay #overlay_contact .item {
  position: relative;
  left: 20%;
  opacity: 0;
}
.nav_overlay.open #overlay_contact .item {
  -webkit-animation: fadeInRight .5s ease forwards;
  /* animation: fadeInRight .5s ease forwards; */
  -webkit-animation-delay: .35s;
  animation-delay: .35s;
  /* width: 80%; */
  /* display: inline-block; */
}
.nav_overlay.open #overlay_contact .item:nth-of-type(2) {
  -webkit-animation-delay: .4s;
  animation-delay: .4s;
}
.nav_overlay.open #overlay_contact .item:nth-of-type(3) {
  -webkit-animation-delay: .45s;
  animation-delay: .45s;
}
.nav_overlay.open #overlay_contact .item:nth-of-type(4) {
  -webkit-animation-delay: .50s;
  animation-delay: .50s;
}
.nav_overlay nav {
  position: relative;
  /* top: 50%; */
  /* -webkit-transform: translateY(-50%); */
  /* transform: translateY(-50%); */
  font-size: 50px;
  font-weight: 400;
  text-align: left;
}
.nav_overlay ul {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  display: inline-block;
  position: relative;
  height: 100%;
}
.nav_overlay ul li {
  display: block;
  height: 25%;
  height: calc(100% / 4);
  min-height: 50px;
  position: relative;
  opacity: 0;
}
.nav_overlay ul li a {
  display: block;
  position: relative;
  color: #FFF;
  text-decoration: none;
  overflow: hidden;
}
.nav_overlay ul li a:hover:after, .nav_overlay ul li a:focus:after, .nav_overlay ul li a:active:after {
  width: 100%;
}
.nav_overlay ul li a:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  height: 3px;
  background: #FFF;
  -webkit-transition: .35s;
  transition: .35s;
}

@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    left: 20%;
  }
  100% {
    opacity: 1;
    left: 0;
  }
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    left: 20%;
  }
  100% {
    opacity: 1;
    left: 0;
  }
}

#overlay_contact    {
  padding-top: 10%;
  color: #fff;
}
#overlay_contact  h4{
  color: #fff;
  text-align: left;
  font-weight:bold;
  font-size: 22px;
  margin: 14px 0 0;
}
@keyframes menu_animation {
  0% {transform:scale(1)}
  50% {transform: scale(1.15)}
  100% {transform : scale(1)}
}

@media screen and (max-width: 640px) {
  .nav_overlay nav {
    font-size: 30px;
  }
  #overlay_contact .contact_addresses{
    display: none;
  }
}
