#pages .pagination{
  display: flex !important;
  justify-content: center;
  margin: 80px auto 100px;
}

.pagination span {
  display: inline-block;
  line-height: 36px;
  cursor:default;
  color: #a9a9a9;
  width: 36px;
  height: 36px;
  text-align: center;
  margin: 0 !important;
}

.pagination a {
  display: inline-block;
  line-height: 36px;
  cursor: pointer;
  color: white;
  width: 36px;
  height: 36px;
  text-align: center;
  margin: 0 5px !important;
  background-color: #17c2c4;
  border-radius: 2px;
}

@media (max-width: 720px) {
    #pages .pagination{
        display: flex !important;
        justify-content: center;
        margin: 40px auto 60px;
      }
      
      .pagination span {
        display: inline-block;
        line-height: 25px;
        cursor:default;
        color: #a9a9a9;
        width: 25px;
        height: 25px;
        text-align: center;
        margin: 0 !important;
      }
      
      .pagination a {
        display: inline-block;
        line-height: 25px;
        cursor: pointer;
        color: white;
        width: 25px;
        height: 25px;
        text-align: center;
        margin: 0 2px !important;
        background-color: #17c2c4;
        border-radius: 2px;
      }
}