/*menuTop--------------------------------------------*/
.menuTop{
  
    width: 100%;
    height: 50px;
    background: white;
    box-shadow: 1px 1px 1px black;
   text-align: center;
    z-index: 30000;
    transition: all 0.5s linear;
}
.menu_itemTop{
    float:right;
    margin-right: 4%;
    margin-top: 1%;
}
.MenuP_0{
position: fixed;
top: 0;
left: 0;
}
.MenuP_-50{
position: absolute;
top: -55px;
left: 0;

}



/*menu--------------------------------------------*/
.menu{
    height: auto;
    width: 25%;
    position: absolute;
    top: 15%;
    right: 1%;
    background: #1f305b;
   border: 1px solid #ffff00;
   z-index: 20000;
   padding: 2%;
   border-radius: 10%;
}
.menu_item{
width: 98%;
height: 30px;
border: 1px solid rgb(165, 165, 165);
margin: 0.5%;
margin-bottom: 5%;
color: #6b6e77;
font-size: 100%;
text-align: center;
display: block;
float: left;
padding: 1%;
background-color: white;
border: #ffff00;
border-radius: 10%;

}
.menu_item:hover{
    background-color: #6b6e77;
    color: #ffff00;
}
/*mobile Mneu--------------------------------------------*/
.mobilemenuBar{
    display: none;
    width: 95%;
    height: 40px;
    background: #1f305bc0;
    box-shadow: 1px 1px 1px white;
    position: fixed;
    top: 0;
    left: 1.8%;
    right: 0;
    z-index: 300000;
    color: white;
    
}
.brand_moblie{
    font-size: 100%;
    float: left;
    color:white;
    height: 30px;
    width: auto;
    margin: 1%;
}
.mobileMenu{
    height: 0;
    width: 95%;
    background:#1f305b;
    position: fixed;
    top:40px;
    left: 2%;
    right: 0;
    transition: 1s;
    display: block;
  z-index: 100000000;
  overflow: hidden;
  
    
}
.mobileMenu_inner{
    height: 500px;
    width: 95%;
    z-index: 50000000;  
    text-align: center;  
  

}
.menu_item_mobile{
    width: 100%;
height: 30px;

border: 1px solid white;
margin: 1%;
color: black;
font-size: 100%;
text-align: center;
display: block;
float: left;
background-color: #1f305b;

}
.btnMenuOpen{
    float: right;
    margin: 1%;
    display: block;
}
.btnMenuClose{
    float: right;
    margin: 1%;
 display: none;

}


@media only screen and (max-width:760px) {
    .menu{
        display: none;
    } 
    .mobilemenuBar{
        display: block;
    }
    .menuTop{
  
      display: none;
    }
}
