#v_navbar {
    padding: 80px 0 120px 0;
    background: #003399;
}

#v_navbar .container {
    padding: 0;
}

#v_navbar .container .row {
  padding: 36px 10px 53px 10px;
    margin: 0;
    border: thin solid #ccc;
    box-shadow: 2px 5px 2px #dbdbdb;
    border-radius: 6px;
    background-color: #eceeed;
    
    
    
}

#v_navbar .container .row .col-md-3 {
    padding: 0;
}

/* Style the tab */
.tab {
    float: left;
    width: 100%;
  }
  
  /* Style the buttons inside the tab */
  .tab button {
    display: block;
    color: #575757;
    padding: 22px 16px 22px 36px;
    width: 100%;
    border: none;
    outline: none;
    text-align: left;
    cursor: pointer;
    transition: 0.3s;
    font-size: 14px;
    background: none;
    text-transform: inherit;
    height: 80px;
    margin-top: 10px;
    margin-left: 10px;
    margin-bottom: 10px;
  }

  .tab button::before {
    position: absolute;
    content: "";
    background: #ffb06c;
    height: 14px;
    width: 14px;
    border-radius: 100%;
    margin: 3px 0 0 -20px;
  }


  .tab button.active::before {
    background: #EC7000;
    
  }

  .tab2 {
    margin-top: 10px;
  }

  /* Change background color of buttons on hover */
  .tab button:hover {
    background-color: #e1e1e1;
    border-radius: 10px;
    width: 100%;
    height: 80px;
  }
  
  /* Create an active/current "tab button" class */
  .tab button.active {
    background-color: #dbdbdb;
    border-radius: 10px;
    width: 100%;
    height: 80px;
  }
  
  /* Style the tab content */
  .tabcontent {
    float: left;
    padding: 16px 24px;
    border-left: none;
    height: auto;
    
  }