.menu{
    display: none;
    position: relative;
}
.menu-hamburguer{
    display: none;
}
@media screen and (max-width:820px) {
    .menu{
        display: block;
        bottom: 5px;
        
    }
    .menu-hamburguer{
        display: block;
    }

   
    
    
}
.hamburguer{
    position: relative;
    top: 6px;
    display: block;
    background-color: black;
    width: 40px;
    height: 3.2px;
    transition: .5s ease-in-out;
}
.hamburguer:before,
.hamburguer:after{
    background-color: black;
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    transition: .5s ease-in-out;
}
.hamburguer:after{
    bottom: -10px;
}
.hamburguer:before{
    top: -10px;
    
}

.input-menu-hamburguer{
    display: none;
}
.input-menu-hamburguer:checked ~ label .hamburguer{
    transform: rotate(45deg);
}

.input-menu-hamburguer:checked ~ label .hamburguer:before{
    transform: rotate(90deg);
    top: 0;
}

.input-menu-hamburguer:checked ~ label .hamburguer:after{
    transform: rotate(90deg);
    bottom: 0;
}
.navMobile{
    margin-top: 0vh;
    padding-top: 15vh;
    visibility: hidden;
    position: absolute;
    z-index: 3;
    background-color: rgb(255, 255, 255);
    height: 100vh;
    width: 0;
    overflow-x: hidden;
    transition: .5s ease-out;
   
 
    box-shadow: 1px 2px 1px rgba(0, 0, 0, 0.157);
}
.navMobile h2{
    text-align: center;
    font-size: 2rem;
    font-weight: 500;
}
.navMobile.active{
    position: fixed;
    width:100%;
    visibility: visible;
}
.navMobile ul{
    list-style: none;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    
}
.navMobile ul li{
   padding: 15px 50px;
  
   color: white;
   
}

.navMobile ul li a{
    padding: 10px 0px;
    display: flex;
    align-items: center;
    text-decoration: none;
    color: black;
   font-size: 1.2rem;
   font-weight: 600;
   border-bottom: 1px solid rgb(41, 133, 77);
}

