.pagination {
  width: 100%;
  padding: 2rem 0 8rem 0;
}
.pagination .cont {
  width: 90%;
  margin: 0 auto;
}
.pagination .cont nav {
  width: 100%;
}
.pagination .cont nav .pag {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.pagination .cont nav .pag .page-item {
  list-style: none;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  font-family: "Roboto", sans-serif;
}
.pagination .cont nav .pag .page-item.active {
  width: 40px;
  height: 40px;
  background-color: #E2E2E2;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
}
.pagination .cont nav .pag .page-item.active .page-link {
  color: #000;
  font-weight: 800;
}
.pagination .cont nav .pag .page-item .page-link {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  text-decoration: none;
  color: #979797;
  font-size: 1.6rem;
}
@media only screen and (max-width: 600px) {
  .pagination .cont nav .pag .page-item .page-link {
    font-size: 18px;
  }
}
.pagination .cont nav .pag .page-item .page-link-a {
  font-family: "Raleway", sans-serif;
  font-weight: 500;
  text-decoration: none;
  color: #979797;
  font-size: 1rem;
}
.pagination .cont nav .pag .page-item.hoverActive {
  background-color: #FFF;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 40px;
}
.pagination .cont nav .pag .page-item.hoverActive:hover {
  background-color: #E2E2E2;
}
