@media screen  and (min-width:320px){


.menu-head{
    position: fixed;
    z-index: 1;
    top: 15px;
    right: 15px;
}


.sidepanel{
    width: 0;
    height: 100vh;
    position: fixed;
    z-index: 2;
    top: 0;
    right: 0;
    background-color: #002c58;
    overflow-x: hidden;
    transition: 0.5s;
    padding-top: 60px;
  }
  
  .sidepanel a {
    padding: 8px 8px 8px 32px;
    text-decoration: none;
    font-size: 25px;
    color: #fff;
    display: block;
    transition: 0.3s;
    text-align: center;
    padding: 15px;
  }
  
  .sidepanel a:hover {
    color: #000;
  }
  
  .sidepanel .closebtn {
    position: absolute;
    top: 0;
    right: 25px;
    font-size: 36px;
  }
  
  .openbtn {
    font-size: 20px;
    cursor: pointer;
    padding: 10px 15px;
    border: none;
    text-align: center;
    color: #fff;
    background: rgba(52, 58, 64, 0.5);;
    border-radius: 0.25rem;
  }
  
  .openbtn:hover {
    background-color:#444;
  }
}

@media screen and (min-width:760px) {

.menu-head{
  position: absolute;
  top: 15px;
}
}

