nav {
    top: 0;
    left: 0;
    background: white!important;
    height: 95px;
    width: 100%;
    display: flex;
    /* flex-direction: row;
    justify-content: space-between; */
  }
  .navbar-brand{
    font-size: 20px;
    font-weight: 600;
    margin-left: 100px;
}
.navbar_brand h3 a{
    text-decoration: none;
    text-align: center;
    color: black!important;
}
  nav ul {
      margin-top: 5px;
    margin: 0;
    padding: 0;
    padding-left: 400px;
    list-style: none;
    position: relative;
    display: flex;
    flex-direction: row;
    margin-left: auto;

    margin: 0 auto;
    justify-content: center;
  }
  nav ul li {
    list-style: none;
    padding: 20px;
  }
  nav ul li a {
    padding: 10px 15px;
    display: block;
    color: black!important;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
  }
  nav ul li a:hover{
      color:#FF6B00!important;
  }
  .navbar-nav{
      padding-left: 500px;
  }
  @media  screen and (max-width:1500px) {
      .navbar-nav{
          padding-left:0px;
      }
  }
  nav ul li a:hover {
    color: #FF6B00;
  }
  nav ul .active a {
    color: #FF6B00!important;
    border-bottom: 3px solid #0d6efd;
  }
  section {
      position: relative;
  }
  @media  screen and (max-width:800px) {
      .navbar-nav {
          padding: 20px;
      }
      nav ul li{
          padding: 10px;
      }
      
  }