.pagination {
    margin-top: 1.0416666667rem;
    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: 1rem;
      margin-bottom: 1rem;
  }
  
  .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: flex;
    justify-content: center;
    align-items: center;
    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:hover {
    background-color: #007bff;
    color: white;
  }
  
  .pagination__item.active {
    background-color: #ffd700;
    color: black;
    border: 0.0520833333rem solid #ffd700;
    cursor: default;
  }
  
  .pagination__item.disabled{
    color: #ccc;
    border-color: #ddd;
    
  }
  
  
  
  @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;
      margin-bottom: 20px;
    }
    
    .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 a:hover {
      background-color: #007bff;
      color: white;
    }
    .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;
    }
  }/*# sourceMappingURL=PAgination.css.map */