 

#filter-buttons button {
  font-size: 17px;
  font-weight: 500;
  padding: 8px 30px;
  border-radius: 5px;
  background: #fff;
  border-color: transparent;
  margin-right: 20px !important;
  margin-top: 20px !important;
  transition: 0.5s !important;
  margin-bottom: 30px !important;
}

#filter-buttons button:hover {
  background: #01335f;
  color: #fff;
}

#filter-buttons button.active {
  color: #fff;
  background: #01335f;
}
#filterable-cards .card {
 /* width: 15.9rem; */
  overflow: hidden; 
}
 
 
#filterable-cards .card.hide {
  display: none;
}

@media (max-width: 600px) {
  #filterable-cards {
    justify-content: center;
  }

  #filterable-cards .card {
    width: calc(100% / 2 - 10px);
    margin: 0;
  }
  .card .card-title{
    font-size: 18px;
    padding-top: 10px;
  }
  .card .card-text{
    font-size: 14px;
  }
  #filter-buttons button {
    margin-right: 10px !important;
    margin-top: 10px !important;
  }
}