.project-list-box {
  display: grid;
  gap: 2.3%;
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 50px;
}
.project-list-box .item-box {
  width: 100%;
  height: auto;
}
.project-list-box .item-box .img-box {
  width: 100%;
  border-radius: 8px;
  transition: all 0.3s ease;
  line-height: 0;
  overflow: hidden;
  position: relative;
}
.project-list-box .item-box .img-box::before {
  display: block;
  content: '';
  background: #17469d29;
  height: 100%;
  left: -100%;
  position: absolute;
  top: -100%;
  width: 100%;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  z-index: 1;
  pointer-events: none;
}
.project-list-box .item-box .img-box::after {
  display: block;
  content: '';
  background: #17469d29;
  height: 100%;
  left: 100%;
  position: absolute;
  top: 100%;
  width: 100%;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  z-index: 1;
  pointer-events: none;
}
.project-list-box .item-box .img-box a {
  display: block;
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
}
.project-list-box .item-box .img-box img {
  width: 100%;
  max-width: 100%;
}
.project-list-box .item-box .img-box .ovrly {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 3;
}
.project-list-box .item-box .img-box .ovrly::before {
  content: '';
  display: block;
  width: 0;
  height: 0;
  border-top: 1px solid #fff;
  position: absolute;
  top: 20px;
  left: 50%;
  z-index: 1;
  transform: translateX(-50%);
  transition: all 0.6s;
  pointer-events: none;
}
.project-list-box .item-box .img-box .ovrly::after {
  content: '';
  display: block;
  width: 0;
  height: 0;
  border-bottom: 1px solid #fff;
  position: absolute;
  bottom: 20px;
  left: 50%;
  z-index: 1;
  transform: translateX(-50%);
  transition: all 0.6s;
  pointer-events: none;
}
.project-list-box .item-box .img-box .ovrly-2 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 3;
}
.project-list-box .item-box .img-box .ovrly-2::before {
  content: '';
  display: block;
  width: 0;
  height: 0;
  border-left: 1px solid #fff;
  position: absolute;
  top: 50%;
  left: 20px;
  z-index: 2;
  transform: translateY(-50%);
  transition: all 0.6s;
  pointer-events: none;
}
.project-list-box .item-box .img-box .ovrly-2::after {
  content: '';
  display: block;
  width: 0;
  height: 0;
  border-right: 1px solid #fff;
  position: absolute;
  top: 50%;
  right: 20px;
  z-index: 2;
  transform: translateY(-50%);
  transition: all 0.6s;
  pointer-events: none;
}
.project-list-box .item-box .img-box:hover {
  box-shadow: 0 0 10px 0 #17469d83;
}
.project-list-box .item-box .img-box:hover::before,
.project-list-box .item-box .img-box:hover::after {
  left: 0;
  top: 0;
}
.project-list-box .item-box .img-box:hover .ovrly::before {
  width: calc(100% - 40px);
  height: calc(100% - 40px);
}
.project-list-box .item-box .img-box:hover .ovrly::after {
  width: calc(100% - 40px);
  height: calc(100% - 40px);
}
.project-list-box .item-box .img-box:hover .ovrly-2::before {
  width: calc(100% - 40px);
  height: calc(100% - 40px);
}
.project-list-box .item-box .img-box:hover .ovrly-2::after {
  width: calc(100% - 40px);
  height: calc(100% - 40px);
}
.project-list-box .item-box .img-box img {
  width: 100%;
  max-width: 100%;
  border-radius: 8px;
}
.project-list-box .item-box .project-name {
  width: 100%;
  font-size: 24px;
  line-height: 1.5;
  padding: 10px 0 0;
}
.project-list-box .item-box .project-address {
  width: 100%;
  font-size: 16px;
  line-height: 1.5;
  padding: 5px 0 0;
  color: #787878;
}
@media (max-width: 1000px) {
  .project-list-box .item-box .project-name {
    font-size: 22px;
  }
  .project-list-box .item-box .project-address {
    font-size: 15px;
  }
}
@media (max-width: 768px) {
  .project-list-box {
    grid-template-columns: repeat(2, 1fr);
  }
  .project-list-box .item-box .project-name {
    font-size: 20px;
  }
  .project-list-box .item-box .project-address {
    font-size: 15px;
  }
}
@media (max-width: 500px) {
  .project-list-box {
    display: grid;
    gap: 40px 0;
    grid-template-columns: repeat(1, 1fr);
  }
  .project-list-box .item-box .project-name {
    font-size: 18px;
  }
  .project-list-box .item-box .project-address {
    font-size: 14px;
  }
}
