


/* .menu-btn{
    display: none;
  }
   */

   .db{
    display: block !important;
   }

   .dn{
    display: none !important;
   }

  .menu-btn{
    background-color: #001E36;
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    transform: translateY(-100%);
    transition: 0.3s ease;
    z-index: 9999999999999999;
    opacity: 0;
  }

  .mobile-menu{
    width: 100%;
  }
  
   .open-menu{
    opacity: 1;
    transform: translateY(0);
    z-index: 99999999999999999999;
  }
  
  .menu-btn ul{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
  }

  .menu-btn ul li{
    background-color: #001E36;
    width: 70%;
    padding: 15px 0;
    text-align: center;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    border-radius: 6px;
  }
  
  .menu-btn ul li a{
    font-size: 19px;
    font-family: inherit;
    color: #fff;
    font-weight: 300;
    line-height: 1.3;
    text-transform: uppercase;
  }


  .menu-btn .mobile-menu .download-btn{
    font-family: inherit;
    font-size: 18px;
    color: #fff;
    line-height: 1.3;
    font-weight: 400;
    border-radius: 50px;
    margin-top: 30px;
} 

.menu-btn ul li:nth-child(6){
  background-color: #50C4ED !important;
  /* box-shadow: inherit; */
}

.download-btn{
  /* background-color: #50C4ED !important; */
}