@keyframes shine {
  from {
    opacity: 0;
    left: 0%;
  }
  50% {
    opacity: 1;
  }
  to {
    opacity: 0;
    left: 100%;
  }
}
.banner.project-listing-banner {
  background: var(--black);
  padding: calc(var(--headerheight) + 20px) 0 62px;
}
@media only screen and (max-width: 991px) {
  .banner.project-listing-banner {
    padding: calc(var(--headerheight) + 65px) 0 65px;
  }
}
.banner.project-listing-banner .flex {
  align-items: flex-end;
  position: relative;
  justify-content: center;
}
.banner.project-listing-banner .flex .colA, .banner.project-listing-banner .flex .colC {
  flex: 0 1 auto;
  margin-bottom: 9%;
}
@media only screen and (max-width: 991px) {
  .banner.project-listing-banner .flex .colA, .banner.project-listing-banner .flex .colC {
    flex: 0 1 100%;
    margin-bottom: 0;
  }
}
.banner.project-listing-banner .flex .colA {
  margin-right: -3rem;
}
@media only screen and (max-width: 991px) {
  .banner.project-listing-banner .flex .colA {
    margin-right: 0;
    text-align: center;
    order: 2;
  }
}
.banner.project-listing-banner .flex .colA .title-sec {
  margin-bottom: 1rem;
}
@media only screen and (max-width: 991px) {
  .banner.project-listing-banner .flex .colA .title-sec {
    margin-bottom: 0;
  }
}
.banner.project-listing-banner .flex .colB {
  max-width: 34%;
}
@media only screen and (max-width: 1366px) {
  .banner.project-listing-banner .flex .colB {
    max-width: 27%;
  }
}
@media only screen and (max-width: 991px) {
  .banner.project-listing-banner .flex .colB {
    order: 1;
    max-width: 120px;
    margin-bottom: 2rem;
  }
}
.banner.project-listing-banner .flex .colC {
  text-align: right;
}
@media only screen and (max-width: 991px) {
  .banner.project-listing-banner .flex .colC {
    text-align: center;
    order: 3;
  }
}
.banner.project-listing-banner .flex .title-sec {
  color: var(--white);
}
.banner.project-listing-banner .flex .title-sec p {
  font-size: 16px;
}
@media only screen and (max-width: 1152px) {
  .banner.project-listing-banner .flex .title-sec p {
    font-size: 14px;
  }
}
.banner.project-listing-banner .flex .title-sec h1 {
  font-family: "Sometimes Times";
  font-size: inherit;
  font-size: 80px;
}
@media only screen and (max-width: 1152px) {
  .banner.project-listing-banner .flex .title-sec h1 {
    font-size: 70px;
  }
}
@media only screen and (max-width: 767px) {
  .banner.project-listing-banner .flex .title-sec h1 {
    font-size: 60px;
  }
}
@media only screen and (max-width: 675px) {
  .banner.project-listing-banner .flex .title-sec h1 {
    font-size: 50px;
  }
}
.banner.project-listing-banner .flex .btn-div {
  margin-top: 30px;
}

.banner.project-detail-banner {
  --paddingtop: 150px;
  --paddingbottom: 85px;
  padding: calc(var(--headerheight) + var(--paddingtop)) 0 var(--paddingbottom);
  background: var(--gray);
}
@media only screen and (max-width: 1366px) {
  .banner.project-detail-banner {
    --paddingtop: 120px;
  }
}
@media only screen and (max-width: 675px) {
  .banner.project-detail-banner {
    --paddingtop: 60px;
    padding-bottom: 2.5rem;
  }
}
@media only screen and (max-width: 991px) {
  .banner.project-detail-banner .content h1 {
    font-size: 50px;
  }
}
@media only screen and (max-width: 520px) {
  .banner.project-detail-banner .content h1 {
    font-size: 38px;
  }
}
.banner.project-detail-banner .content p {
  max-width: 528px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.28;
  margin-top: 10px;
}

.project-detail-secA {
  padding: 50px 0 100px;
}
@media only screen and (max-width: 675px) {
  .project-detail-secA {
    padding: 4rem 0;
  }
}
@media only screen and (max-width: 520px) {
  .project-detail-secA {
    padding: 2rem 0;
  }
}
.project-detail-secA .project-nav {
  margin-bottom: 58px;
}
@media only screen and (max-width: 991px) {
  .project-detail-secA .project-nav {
    margin-bottom: 3rem;
    width: 100%;
    white-space: nowrap;
    overflow-x: auto;
  }
}
@media only screen and (max-width: 520px) {
  .project-detail-secA .project-nav {
    margin-bottom: 2rem;
  }
}
.project-detail-secA .project-nav li {
  display: inline-block;
  vertical-align: middle;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 10px;
  letter-spacing: 0.05em;
  color: var(--text);
}
.project-detail-secA .project-nav li::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  background: var(--black);
}
.project-detail-secA .project-nav li::before {
  top: auto;
  height: 1px;
  transition: 0.5s ease;
  width: 0;
}
.project-detail-secA .project-nav li:not(:last-child) {
  margin-right: 50px;
}
@media only screen and (max-width: 991px) {
  .project-detail-secA .project-nav li:not(:last-child) {
    margin-right: 2rem;
  }
}
.project-detail-secA .project-nav li.active {
  color: var(--black);
}
.project-detail-secA .project-nav li.active::before {
  width: 100%;
}
.project-detail-secA .project-nav-content .project-img-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 25px 22px;
}
@media only screen and (max-width: 675px) {
  .project-detail-secA .project-nav-content .project-img-grid {
    grid-gap: 5px;
  }
}
.project-detail-secA .project-nav-content .project-img-grid .item {
  display: block;
  position: relative;
  line-height: 0;
}
.project-detail-secA .project-nav-content .project-img-grid .item::before {
  content: "";
  display: block;
  width: 0px;
  height: 86%;
  position: absolute;
  top: 7%;
  left: 0%;
  opacity: 0;
  background: white;
  box-shadow: 0 0 55px 12px white;
  transform: skewX(-20deg);
  z-index: 1;
}
.project-detail-secA .project-nav-content .project-img-grid .item:hover::before {
  animation: shine 0.4s linear;
  animation-fill-mode: none;
}
.project-detail-secA .project-nav-content .project-img-grid .item:hover figure img {
  animation: none;
}
.project-detail-secA .project-nav-content .project-img-grid .item:nth-child(n+7) {
  display: none;
}
.project-detail-secA .project-nav-content .project-img-grid .item.has-count-div {
  position: relative;
}
.project-detail-secA .project-nav-content .project-img-grid .item.has-count-div::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  background: rgba(0, 0, 0, 0.5);
}
.project-detail-secA .project-nav-content .project-img-grid .item.has-count-div::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  background: none;
}
.project-detail-secA .project-nav-content .project-img-grid .item.has-count-div::before {
  content: "Images";
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--white);
  font-weight: 500;
}
@media only screen and (max-width: 991px) {
  .project-detail-secA .project-nav-content .project-img-grid .item.has-count-div::before {
    padding-top: 4.5rem;
    font-size: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .project-detail-secA .project-nav-content .project-img-grid .item.has-count-div::before {
    font-size: 16px;
    padding-top: 4rem;
  }
}
.project-detail-secA .project-nav-content .project-img-grid .item.has-count-div::after {
  content: var(--total);
  display: flex;
  align-items: center;
  justify-content: center;
  align-items: center;
  font-size: 60px;
  color: var(--white);
  margin-bottom: 6rem;
}
@media only screen and (max-width: 991px) {
  .project-detail-secA .project-nav-content .project-img-grid .item.has-count-div::after {
    margin-bottom: 0;
    font-size: 48px;
  }
}
@media only screen and (max-width: 767px) {
  .project-detail-secA .project-nav-content .project-img-grid .item.has-count-div::after {
    font-size: 32px;
  }
}
.project-detail-secA .project-nav-content .project-img-grid .item img {
  width: 100%;
  pointer-events: none;
}
@media only screen and (max-width: 675px) {
  .project-detail-secA .project-nav-content .project-img-grid .item img {
    aspect-ratio: 1.2;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

.project-detail-secC {
  padding: 65px 0 90px;
}
@media only screen and (max-width: 520px) {
  .project-detail-secC {
    padding: 2rem 0;
  }
}/*# sourceMappingURL=project.css.map */