/* Add a black background color to the top navigation */
.topnav {
    background-color: #063b59;
    overflow: hidden;
    position: fixed; /* Set the topnav to fixed position */
    top: 0; /* Position the topnav at the top of the page */
    width: 100%; /* Full width */
    border-bottom: 2px solid #ced4da;
    z-index: 20;
}
  
/* Style the links inside the navigation bar */
.topnav a {
    float: left;
    color: #f2f2f2;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    /* font-size: 14px; */
    padding: 14px 11px;
}
  
/* Change the color of links on hover */
.topnav a:hover {
    background-color: #ddd;
    color: black;
}
  
/* Add a color to the active/current link */
.topnav a.active {
    background-color: #032133;
    color: white;
}

.topnav .fa-lg:hover {
    color: black !important;
}


  
  /* The dropdown container */
  .dropdown {
    float: left;
    overflow: hidden;
  }
  
  /* Dropdown button */
  .dropdown .dropbtn {
    font-size: 16px;
    border: none;
    outline: none;
    color: white;
    padding: 14px 16px;
    background-color: inherit;
    font-family: inherit; /* Important for vertical align on mobile phones */
    margin: 0; /* Important for vertical align on mobile phones */
  }
  
  /* Add a red background color to topnav links on hover */
  .topnav a:hover, .dropdown:hover .dropbtn {
    background-color: #dbe0f3;
  }
  
  /* Dropdown content (hidden by default) */
  .dropdown-content {
    display: none; 
    min-width: 160px;
    position: fixed;
    background-color: #f7f7fc;
    z-index: 1;
  }
  
  /* Links inside the dropdown */
  .dropdown-content a {
    float: none;
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
  }
  
  /* Add a grey background color to dropdown links on hover */
  .dropdown-content a:hover {
    background-color: #dbe0f3;
  }
  
  /* Show the dropdown menu on hover */
  .dropdown:hover .dropdown-content {
    display: block;
  }
