.project .banner {
  width: 100%;
  height: 488px;
  position: relative;
  overflow: hidden;
  margin-bottom: 100px;
}
.project .banner .mask {
  top: 82px;
  bottom: 0;
  width: 1040px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
.project .banner .mask .small_title {
  color: #fff;
  font-family: Montserrat-Bold;
  font-size: 12px;
  font-weight: 700;
  line-height: 130%;
  text-transform: uppercase;
}
.project .banner .mask .b_title {
  color: #fff;
  font-family: Montserrat-Bold;
  font-size: 40px;
  font-weight: 700;
  line-height: 130%;
  text-transform: capitalize;
  margin: 10px 0 20px;
}
.project .banner .mask .mask_content {
  width: 692px;
  color: #b4bbc8;
  font-family: Montserrat;
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
}
.project .project_box {
  width: 1040px;
  margin: 0 auto;
}
.project .project_box .project_title {
  width: 100%;
  color: #000;
  font-family: Montserrat-Bold;
  font-size: 38px;
  font-weight: 700;
  line-height: 150%;
  text-transform: capitalize;
}
.project .project_box .project_list {
  display: flex;
  flex-wrap: wrap;
  margin-top: 60px;
  margin-bottom: 180px;
}
.project .project_box .project_list .project_item {
  width: 500px;
  height: 340px;
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  cursor: pointer;
  margin-bottom: 40px;
  margin-left: 40px;
}
.project .project_box .project_list .project_item:nth-child(2n+1){
  margin-left: 0;
}
.project .project_box .project_list .project_item .imgs {
  width: 100%;
  height: 100%;
  border-radius: 24px;
  transition: transform 1s ease;
}
.project .project_box .project_list .project_item .mask {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 24px;
  background: rgba(0, 0, 0, 0.1);
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}
.project .project_box .project_list .project_item .mask .s-titlte {
  color: rgba(255, 255, 255, 0.6);
  font-family: Montserrat-Bold;
  font-size: 14px;
  font-weight: 700;
  line-height: 150%;
  text-transform: uppercase;
}
.project .project_box .project_list .project_item .mask .s_content {
  margin-top: 10px;
  color: #fff;
  font-family: Montserrat-Bold;
  font-size: 20px;
  font-weight: 700;
  line-height: 150%;
}
.project .project_box .project_list .project_item .mask .icons {
  width: 100px;
  height: auto;
  opacity: 0;
}
.project .project_box .project_list .project_item .mask .height_56 {
  height: 56px;
  width: 216px;
}
.project .project_box .project_list .project_item .mask .height_82 {
  height: 82px;
  width: 82px;
}
.project .project_box .project_list .project_item:hover .imgs {
  transition: transform 1s ease-in-out;
  transform: scale(1.2);
}
.project .project_box .project_list .project_item:hover .mask {
  background: rgba(0, 0, 0, 0.4);
}
.project .project_box .project_list .project_item:hover .mask .icons {
  animation: move-up 1s ease-out;
  opacity: 1;
}
@keyframes move-up {
  0% {
    opacity: 0;
    transform: translateY(100%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
