.hwi-pagination {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.hwi-pagination-left {
  color: #8a97a8;
  font-size: 12.5px !important;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.25px !important;
}

.hwi-pagination-right ul {
  display: flex;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
  align-items: center;
}

.hwi-pagination-right a,
.hwi-pagination-right span {
display: flex;
width: 40px;
height: 40px;
justify-content: center;
align-items: center;
  border-radius: 7px;
border: 1px solid rgba(13, 38, 69, 0.12);
  text-decoration: none;
  font-weight: 500;
  color: #4A5568;
}

.page-numbers {
    font-size: 14px !important;
    font-weight: 500;
    text-align: center;
    line-height: normal;
}

.hwi-pagination-right .current {
  background: #0D2645;
  color: #fff;
  border-color: #0D2645;
}

.hwi-pagination-right .dots {
  border: none;
  width: auto;
}

/* ==========================================
   Pagination SVG Arrows
========================================== */

.hwi-pagination-arrow {
  width: 18px;
  height: 18px;
  display: block;
  margin: auto;
  transition: transform 0.25s ease;
}

.hwi-pagination-right .prev img,
.hwi-pagination-right .next img {
  width: 18px;
  height: 18px;
  display: block;
}

.hwi-pagination-right .prev:hover img {
  transform: translateX(-3px);
}

.hwi-pagination-right .next:hover img {
  transform: translateX(3px);
}