.pagination {
  margin-top: 2.02020202020202rem;
  display: flex;
  list-style: none;
  padding: 0;
  justify-content: center;
  align-content: center;
  align-items: center;
  flex-direction: row;
  gap: 0.2604166667rem;
}

.project-pagination {
  display: flex;
  list-style-type: none;
  gap: .2604166666666667rem;
}

.pagination__item {
  width: 2.0833333333rem;
  height: 2.0833333333rem;
  text-decoration: none;
  color: #333;
  font-weight: 500;
  font-size: 0.78125rem;
  line-height: 2.0833333333rem;
  text-align: center;
  border: 0.0520833333rem solid #ddd;
  border-radius: 50%;
  display: inline-block;
  transition: all 0.3s;
}

.pagination__item a {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

/* .pagination .pagination-points {
  width: 2.0833333333rem;
  height: 2.0833333333rem;
  line-height: 2.0833333333rem;
  text-align: center;
  font-size: 0.78125rem;
} */

.pagination__item:not(.disabled):hover {
  background-color: #f1f1f1;
}

.pagination__item.active {
  background-color: #ffd700;
  color: black;
  border: 0.0520833333rem solid #ffd700;
  cursor: default;
}

.pagination__item.disabled:not(.dots) {
  cursor: not-allowed;
  color: #ccc;
  border-color: #ddd;
}

.pagination__item.dots {
  border: none;
  width: auto;
}

.pagination__item.arrow a,
.pagination__item.to-start a,
.pagination__item.to-end a {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* @media screen and (max-width: 1920px) {
  .pagination {
    margin-top: 20px;
    display: flex;
    list-style: none;
    padding: 0;
    justify-content: center;
    align-content: center;
    align-items: center;
    flex-direction: row;
    gap: 5px;
  }

  .project-pagination {
    display: flex;
    list-style-type: none;
    gap: 5px;
  }

  .pagination__item {
    width: 40px;
    height: 40px;
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 15px;
    line-height: 40px;
    text-align: center;
    border: 1px solid #ddd;
    border-radius: 50%;
    display: inline-block;
    transition: all 0.3s;
  }

  .pagination .pagination-points {
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    font-size: 5px;
  }

  .pagination .active a {
    background-color: #ffd700;
    color: black;
    border: 1px solid #ffd700;
    cursor: default;
  }

  .pagination .disabled a {
    color: #ccc;
    border-color: #ddd;
    pointer-events: none;
  }
} */

@media screen and (max-width: 1200px) {
  .project-pagination {
    column-gap: 5px;
  }

  .pagination {
    margin-top: 40px;
  }

  .pagination__item {
    width: 40px;
    height: 40px;
    font-size: 15px;
    line-height: 38px;
    border-width: 1px;
  }

  .pagination__item.active {
    border-width: 1px;
  }
}

@media screen and (max-width: 767px) {
  .pagination__item.to-start,
  .pagination__item.to-end {
    display: none;
  }

  .pagination__item {
    width: 36px;
    height: 36px;
    font-size: 14px;
    line-height: 34px;
  }
}

/*# sourceMappingURL=PAgination.css.map */