  .page-wrap{
  	padding:2rem 0;
  }
  .navbar {
    background-color: #004d40;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    position: relative;
  }
  .navbar img{
  	border-radius:50%;
  }
  .navbar-brand {
    color: white;
    font-size: 1.5em;
    font-weight: bold;
    text-decoration: none;
  }
  
  /* The visual hamburger button (hidden on desktop) */
  .menu-icon {
    display: none;
    color: white;
    font-size: 28px;
    cursor: pointer;
    width:50%;
  }
  
  /* The hidden checkbox that controls the toggle */
  #menu-toggle {
    display: none;
  }

  .top-bar .menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 20px;
  }
  .top-bar .menu li a {
    color: white;
    text-decoration: none;
    padding: 10px;
    display: block;
    font-size:1.25em;
  }
  .top-bar .menu li{
  	position:relative;
  }
  .top-bar .menu .sub-menu{
  	display:none;
  	position:absolute;
  	background-color: #111;
  	list-style: none;
    margin: 0;
    padding: 5px;
    z-index:9999;
    gap: 20px;
    width:200px;
    border-radius:8px;
  }
  .sub-menu li{
  	border-bottom: 1px solid #fff;
  }
  .sub-menu li:last-child{
  	border-bottom:none;
  }
  .top-bar .menu li:hover .sub-menu{
  	display:block;
  }

  /* Mobile Layout */
  @media (max-width: 600px) {
    .container{
      width:100%;
    }
    .menu-icon {
      display: block; /* Show the hamburger */
      text-align:right;
    }
    .top-bar .menu {
      display: none; /* Hide the links by default */
      flex-direction: column;
      position: absolute;
      top: 100%;
      left: 0;
      width: 100%;
      background-color: #111;
      gap: 0;
    }
    .sub-menu{
    	width:50%;
    	background-color:grey;
    	z-index:9999;
    }
    .sub-menu li{
    	padding: 5px 2px;
      border-bottom: 1px solid #fff;
    }
    .top-bar .menu li{
    	padding: 5px 2px;
    	border-bottom: 1px solid #fff;
    }
    .top-bar .menu li a {
      padding: 15px 20px;
    }
    
    /* When the hidden checkbox is checked, show the .nav-links! */
    #menu-toggle:checked ~ .top-bar .menu {
      display: flex;
    }

  }

  /* Footer Menu */

  footer{
    background:#111;
    color:#fff;
  }
  footer .bottom-bar .menu li a {
    color: white;
    text-decoration: none;
    padding: 10px;
    display: block;
    font-size:1.25em;
  }

  footer .row{
    display:flex;
    align-items:center;
    justify-content:center;
  }
