.page-link {
  padding: 0.6rem 1rem;
  background: white;
  border: 0.5px solid white;
  color: #014a73;
  display: flex;
  align-items: center;
  justify-content: center;
  transition-duration: 300ms;
    height: 100%;
    padding: 0.5rem 1rem;
    width: 50px;
    height: 50px;
}

.pagination .page-item.active .page-link {
  color: white !important;
  background: #014a73;
  height: 100%;
  padding: 0.5rem 1rem;
}

.page-link:hover {
  background: #014a73;
  color: white !important;
  transition-duration: 300ms;
}

.pagination li {
  margin-left: 0px !important;
}

/* .page-item.disabled {
  display: none;
} */

.pagination {
  margin-top: 2rem;
}

@media screen and ((max-width: 576px)) {
    .page-link {
        padding: 0.5rem 0;
        width: 1.85rem;
    }
  }
