
  .m-navbar {
    overflow: hidden;
    /*background-color: #333; */
    background-color:rgb(0, 148, 94);
    color:white;
  }
  
  .m-navbar a {
    float: left;
    font-size: 16px;
    color: white;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
  }
  
  .subnav {
    float: left;
    overflow: hidden;
  }
  
  .subnav .subnavbtn {
    font-size: 16px;  
    border: none;
    outline: none;
    color: white;
    padding: 14px 16px;
    background-color: inherit;
    font-family: inherit;
    margin: 0;
  }
  
  .m-navbar a:hover, .subnav:hover .subnavbtn {
    background-color: #c2fab9;
  }
  
  .subnav-content {
    display: none;
    position: absolute;
    left: 0;
    background-color: grey;
    width: 100%;
    z-index: 1;
  }
  
  .subnav-content a {
    float: left;
    color: white;
    text-decoration: none;
  }
  
  .subnav-content a:hover {
    background-color: #c2fab9;
    color: black;
  }
  
  .subnav:hover .subnav-content {
    display: block;
  }

  .navbg{
    background-color:rgb(0, 148, 94);
    color:white;
  }