.navigation {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 0 auto;
  width: max-content;
}

.navigation a,
.navigation div {
  width: 50px;
  height: 50px;
  text-align: center;
  line-height: 50px;
  background: #F7F7F7;
  border-radius: 5px;
  color: #404040;
  font-size: 24px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
}

.navigation div.active {
  background: #F2E2D3;
}

.navigation a:first-of-type,
.navigation a:last-of-type {
  border: 1px solid #E2E2E2;
}

.btn-black.load_more {
  margin: 0 auto 60px;
  width: 220px;
}


@media screen and (max-width: 768px) { 
  .btn-black.load_more {
    margin: 0 auto 20px;
    width: 100%;
  }
}