/*paging*/
.pagination {
  display: flex;
  width: 100%;
  justify-content: center;
}
.pagination ul {
  display: flex;
  padding: 0;
  margin: 2rem 0;
}
.pagination ul .pagination-active {
  background-color: #c79c5d;
}
.pagination ul li {
  cursor: pointer;
  padding: 0px 7px;
  list-style: none;
  margin-right: 10px;
  display: flex;
  align-items: center;
  color: #FFF;
}
.pagination ul li:hover {
  background-color: #c79c5d;
}
.pagination ul li i {
  font-size: 30px;
}
.category-content {
  color: #FFF;
}
.category-content {
  overflow: hidden;
  position: relative;
  transition: height 0.4s ease;
}

.category-content::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 50px;
  width: 100%;
  background: linear-gradient(transparent, #1b242d);
  pointer-events: none;
}

.category-content.expanded::after {
  display: none;
}

.show-more {
  color: #FFF;
  cursor: pointer;
  margin-top: 8px;
  font-weight: bold;
  user-select: none;
  text-align: center;
  font-size: 1.2rem;
}
.show-more:hover {
  text-decoration: underline;
}
/* RP */
/* tablet */
@media screen and (min-width: 768px) and (max-width: 992px) {
  .project_box .title {
    padding: 5rem 0;
  }
  .project_box .box .project_lists .item .box_img {
    height: 300px;
  }
}
/* mobile */
@media screen and (max-width: 668px) {
  .project_box .title {
    background-size: cover;
    background-position: center;
    padding: 5rem 0 4rem;
  }
  .project_box .title h2 {
    font-size: 18px;
    font-weight: 500;
    padding: 15px 25px;
  }
  .project_box .box .cate_childs ul {
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
    margin-left: 10px;
    justify-content: unset;
  }
  .project_box .box .project_lists .item .box_img {
    height: 160px;
  }
  .project_box .box .project_lists .item .info {
    padding: 6px;
  }
  .project_box .box .project_lists .item .info ul{
    font-size: 12px;
  }
  /* .project_box .box .project_lists .item .info ul li {
    flex-direction: column;
  } */
  .project_box .box .project_lists .item .info ul li .label {
    width: 100%;
    padding-left: 12px;
    background-size: 12px;
    font-weight: 400;
    background-position: 0px 3px;
  }
  .project_box .box .project_lists .item .info ul li .value {
    width: 99%;
    margin-left: 12px;
  }
  .project_box .box .project_lists .left_mobile {
    padding-right: 7.5px;
  }
  .project_box .box .project_lists .right_mobile {
    padding-left: 7.5px;
  }
}