.page_navigation .nav_items {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
.page_navigation a {
  display: block;
  position: relative;
  font-size: 24px;
  line-height: 1.1em;
}
.page_navigation a.prev {
  margin-left: 44px;
}
.page_navigation a.prev::before {
  content: "";
  background: url(../img/arrow.svg) center center no-repeat;
  width: 26px;
  height: 24px;
  position: absolute;
  left: -44px;
  top: 50%;
  margin-top: -12px;
  transform: rotate(180deg);
}
.page_navigation a.next {
  margin-right: 44px;
}
.page_navigation a.next::after {
  content: "";
  background: url(../img/arrow.svg) center center no-repeat;
  width: 26px;
  height: 24px;
  position: absolute;
  right: -44px;
  top: 50%;
  margin-top: -12px;
}

@media only screen and (max-width: 768px) {
  .page_navigation a {
    font-size: 18px;
  }
}
@media only screen and (max-width: 550px) {
  .page_navigation a {
    font-size: 14px;
  }
  .page_navigation a.prev {
    margin-left: 30px;
  }
  .page_navigation a.prev::before {
    width: 17px;
    height: 16px;
    left: -30px;
    margin-top: -9px;
    background-size: 100%;
  }
  .page_navigation a.next {
    margin-right: 30px;
  }
  .page_navigation a.next::after {
    width: 17px;
    height: 16px;
    right: -30px;
    margin-top: -9px;
    background-size: 100%;
  }
}
