
.menu input + label {
  position: fixed;
  top: 80px;
   right: 70px;
   height: 20px;
    width: 26px; 
    z-index:100; 
transition:0.2s;
}
.menu input + label span {
  position: absolute;
  width: 20px;
  height: 2px;
  top: 8px;
  margin-top: -1px;
  right: 0;
  display: block;
  background: #126734;
  transition: .5s;
}
.menu input + label span:first-child {
  top:0px;
  width: 26px;
}
.menu input + label span:last-child {
  top: 16px;
  width: 26px;
}
.menu label:hover {
  cursor: pointer;
}
.menu input:checked + label span {
  opacity: 0;
  top: 50%;
}
.menu input:checked + label span:first-child {
  opacity: 1;
  transform: rotate(405deg);
}
.menu input:checked + label span:last-child {
  opacity: 1;
  transform: rotate(-405deg);
}
nav {
    background: white;
    position: absolute;
    width: calc(100vw - 140px) !important;
  left: -100%;
    transform: translateX(-100%); 
   top:180px;
    height: calc(100vh - 180px );
    z-index: 3;
    transition: .5s;
    transition-delay: .5s;
    overflow: hidden;
    left: 0;
    right: 0;
	margin-left:70px;
	margin-right:70px;
		z-index:0;
background-image:url('/Files/App_002/images/bg_menu.png');
    background-repeat: no-repeat;
    background-position: center;
}
nav > ul {
  text-align: center;
  position: absolute;
  top: 35%;
  left: 20%;
  right: 20%;
  list-style:none;
}
nav > ul > li {
  opacity: 0;
  transition: .5s;
  transition-delay: 0s;
}
nav > ul > li > a {
  text-decoration: none;
  text-transform: uppercase;
  color: #fff;
  font-weight: 700;
  font-family: sans-serif;
  display: block;
  padding: 30px;
}
.menu input:checked ~ nav {
		top:180px;
transform:translateX(0%);
    height:calc(100vh - 180px );
  transition-delay: 0s;
  background:#005e20;
  margin-right:70px;
  margin-left:70px;
z-index:9999;
background-image:url('/Files/App_002/images/bg_menu.png');
    background-repeat: no-repeat;
    background-position: center;
position:fixed;
   /* height: 100% !important; */
    overflow-y: auto;
}
.menu input:checked ~ nav > ul > li {
  opacity: 1;
  transition-delay: .5s;
}
.menu input#burger {
    opacity: 0;
    top: 0;
    position: absolute;
}
@media screen and (max-width:768px) {
.nav-center {
    width: 100%;
}
.menu input:checked ~ nav {
height:100%;
    width: 100% !important;
    margin-left: 0;
  top:100px;
    padding-bottom: 100px;
}
.menu input + label {
right:20px;
top:40px;}
nav {
     transform: translateX(-500%);
    top: 100px;
}
}


body.fixe {
    width: 100%;
    position: fixed;
}





















