

/*.overlay-menu {
  position: absolute;
  width: 100%;
  heigh: 100%;
  text-align: center;
  top: 40%;
  left: 0;
  margin: 0 auto;
  font-family: inherit;

}*/

/*.overlay-menu a {
  display: inline-block;
  position: relative;
  text-align: center;
  color: #1abc9c;
  text-decoration: none;
  font-size: 20px;
  overflow: hidden;
  top: 5px;
}
.overlay-menu a:after {
  content: '';
  position: absolute;
  background: #1abc9c;
  height: 2px;
  width: 0%;
  transform: translateX(-50%);
  left: 50%;
  bottom: 0;
  transition: .35s ease;
}*/
/*.container a:hover:after, .container a:focus:after, .container a:active:after {
  width: 100%;
}
*/

.overlay-menu {
    width:1170px;
    max-width: 1170px;
    margin:0 auto;
}
.button_container {
  /* position: fixed;
  top: 5%;
  right: 2%; */
  top:0;
  position:fixed;
  background: #131313;
  padding:18px;
  height: 60px;
  width: 60px;
  cursor: pointer;
  z-index: 100;
  transition: opacity .25s ease;
}

.barreContainer {
    position:relative;
    width:100%;
    height:100%;
}
.button_container:hover {
  opacity: 1;
}
.button_container.active .top {

  transform: translateY(10px) translateX(0) rotate(45deg);
  background: #FFF;
}
.button_container.active .middle {
  opacity: 0;
  background: #FFF;
}
.button_container.active .bottom {
    width:100%;
  transform: translateY(-10px) translateX(0) rotate(-45deg);
  background: #FFF;
}
.button_container span {
  background: #ffffff;
  border: none;
  height: 4px;
  /* border-radius: 4px; */
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  transition: all .35s ease;
  cursor: pointer;
}
.button_container span:nth-of-type(2) {
  top: 10px;
}
.button_container span:nth-of-type(3) {
  top: 20px;
  width:80%;
}

.overlay {
  position: fixed;
  background: #131313;
  top: 0;
  left: 0;
  width: 100%;
  height: 0%;
  opacity: 0;
  visibility: hidden;
  transition: opacity .35s, visibility .35s, height .35s;
  overflow: hidden;
   z-index:80;
}
.overlay.open {
  opacity: 1;
  visibility: visible;
  height: 100%;
}
.overlay.open li {
  animation: fadeInRight .5s ease forwards;
  animation-delay: .35s;
}
.overlay.open li:nth-of-type(2) {
  animation-delay: .4s;
}
.overlay.open li:nth-of-type(3) {
  animation-delay: .45s;
}
.overlay.open li:nth-of-type(4) {
  animation-delay: .50s;
}
.overlay nav {
  position: relative;
  /* height: 70%;
  top: 50%; */
  /* transform: translateY(-50%); */
  font-size: 40px;
  font-family:  "Cent" ;


  font-weight:bold;


}
.overlay ul {
  list-style: none;
  padding: 0;
  /* margin: 0 auto; */
  padding-top:50px;
  display: inline-block;
  position: relative;
  height: 100%;
  text-align:left;
}
.overlay ul li {
  display: block;
  height: 50px;
  position: relative;
  opacity: 0;
  padding-left: 100px;
}
.overlay ul li a {
  display: block;
  position: relative;
  color: #FFF;
  opacity: 0.09;
  text-decoration: none;
  overflow: hidden;
  z-index:1;
  padding-left:100px;
  transition: .35s;
}
.overlay ul li a:hover, .overlay ul li a:focus, .overlay ul li a:active {
opacity: 1;
}
.overlay ul li a:hover:after, .overlay ul li a:focus:after, .overlay ul li a:active:after {
  background-color:#00ffff;
  width:40px;
  left: 45px;
}
.overlay ul li a:after {

  content: '';
  position: absolute;
  bottom: 50%;
  left:0;
  width: 0px;
  /* transform: translateX(-50%); */
  transform: translateY(6px);
  height: 6px;
  background: #00ffff;
    z-index:-1;
  transition: .35s;

}

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