  /* Navigation Bar */

  .navbar {
    font-size: 30px !important;
  }

  .container-fluid {
    font-size: large;
    font-weight: bold;
  }
  
  /*
.navbar-toggler {
  padding: 10%;
  display: none;
}
*/

  .dropdown-toggle{
    color: #fff !important;
  }

  .navbar-brand {
    font-size: xx-large;
    font-weight: bold;
    color: #fff !important;
    width: fit-content;
    display: inline-block;
  }

  .collapse {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  
  .nav-item {
    padding: 0 18px;
    color: #fff !important;
  }

  .navbar-nav {
    display: flex;
    align-items: center;
    justify-content: right !important;
  }
  
  .nav-link {
    font-size: 2rem !important;
    font-family: "";
    color: #fff !important;
  }

  #navbar-placeholder {
    display: block;
    width: 100%;
  }

  .bottom-nav {
    align-items: center;
    justify-content: space-between;
    text-decoration: none !important;
  }

  @media only screen and (max-width: 1500px){
    
    .collapse {
      justify-content: left;
      flex-wrap: wrap;
    }

  }