.pager {
  display: flex;
  align-items: center;
  justify-content: center;
}

.pager li a {
  display: inline-block;
  height: 50px;
  width: 50px;
  margin: 0 7px;
  border-radius: 3px;
  line-height: 50px;
  font-size: 16px;
  letter-spacing: 0.04em;
  text-align: center;
  text-decoration: none;
  background: #f0f4f7;
  color: #002077;
  transition: all 0.3s;
}

.pager li .current {
  display: inline-block;
  height: 50px;
  width: 50px;
  margin: 0 7px;
  border-radius: 3px;
  line-height: 50px;
  font-size: 16px;
  letter-spacing: 0.04em;
  text-align: center;
  text-decoration: none;
  color: #fff;
  background: #002077;
  transition: all 0.3s;
}

.pager li a {
  text-decoration: none;
  color: #002077;
}

.pager li .dots {
  margin: 0 10px;
}

.pager .prev a {
  width: 25px;
  font-size: 16px;
  color: #002077;
  background: unset;
}

.pager .next a {
  width: 25px;
  font-size: 16px;
  color: #002077;
  background: unset;
}

@media only screen and (max-width: 768px) {
  .pager li a {
    width: 44px;
    height: 44px;
    line-height: 44px;
    margin: 0 5px;
    font-size: 14px;
  }

  .pager li .current {
    width: 44px;
    height: 44px;
    line-height: 44px;
    margin: 0 5px;
    font-size: 14px;
  }

  .pager li .dots {
    margin: 0 8px;
  }

  .pager .prev a {
    width: 20px;
    font-size: 14px;
  }

  .pager .next a {
    width: 20px;
    font-size: 14px;
  }
}
