.nav-conatiner{
    height: 68px;
    display: flex;
    flex-direction: row;
    overflow: hidden;
    background-color: #000a61;
    justify-content: space-between;
    padding-left: 150px;
    padding-right: 230px;
    align-items: center;
    font-family: Helvetica, arial;

  }
  .website-logo{
    width: 200px;
    margin: 0;
  }

  .website-logo-img{
    padding-top: 15px;
    width: 100%;
  }
  .topnav {
    height:100%;
    display: inline-block;
  }
  
  .topnav a {
    height: 100%;
    float: left;
    color: #f2f2f2;
    text-align: center;
    padding-left: 16px;
    padding-right: 16px;
    text-decoration: none;
    font-size: 17px;
    padding-top: 26px;
  }
  .topnav a:hover {
    background-color: #ddd;
    color: black;
    text-decoration: underline;
  }
  
  .topnav a.active {
    background-color: #011dbd;
    color: white;
    
  }
  .nav-button{
    cursor: pointer;
    margin-top: 18px;
    margin-right: 16px;
    padding-left: 16px;
    padding-right: 16px;
    height: 35px;
    font-size: 16px;
    font-family: Helvetica, Arial, sans-serif;
    font-weight: 600;
    background-color: #ffffff;
    color: #000a61;
    border: none;
  }
  .nav-button-div{
    margin-left: 10px;
    display: inline-block;
    vertical-align: top;


  }
  .topnav-buttons{
    height: 100%;
  }
  @media (max-width: 700px){
    .nav-conatiner{
      padding-left: 0%;
      padding-right: 0%;
    }
    .website-logo{
      width: auto;
      margin-right: 5%;
    }
  }