@import url(/assets/css/common.css);
@import url(/assets/css/reset.css);
@import url(/assets/css/header.css);
@import url(/assets/css/footer.css);
.top-banner {
  position: relative;
  width: 100%;
  height: 323.5px;
  background-image: url(/assets/images/works/works-top-banner.png);
  background-position: 50% 0%;
  background-size: cover;
  background-attachment: fixed;
}
.top-banner::after {
  top: 0;
  left: 0;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  background-color: rgba(0, 0, 0, 0.7);
}
.top-banner .top-banner-inner {
  position: relative;
  width: 100%;
  height: 100%;
  max-width: 1140px;
  margin: auto;
}
.top-banner .top-banner-inner h1 {
  position: absolute;
  z-index: 1;
  min-height: 83.5px;
  padding-top: 9px;
  bottom: 80px;
  right: 20px;
  font-size: 45px;
  color: #fff;
  font-weight: bold;
  line-height: 50px;
}

.works-page {
  background-color: #f5f5f5;
}

.works-section {
  padding: 60px 0 80px;
}

.works-inner {
  width: 100%;
  margin: 0 auto;
  padding: 0 80px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.works-filter-wrap {
  margin-bottom: 50px;
}
.works-filter-wrap .works-filter-list {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0;
  padding: 0;
  list-style: none;
}
.works-filter-wrap .works-filter-list li {
  margin: 0;
}
.works-filter-wrap .works-filter-list li.is-active .works-filter-btn {
  background-color: #00c3ff;
  color: #fff;
}
.works-filter-wrap .works-filter-list .works-filter-btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 10px 15px;
  border: 0;
  background: transparent;
  color: #767676;
  font-size: 15.2px;
  font-weight: bold;
  line-height: 1;
  cursor: pointer;
  -webkit-transition: color 0.3s ease-in-out, background-color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out, background-color 0.3s ease-in-out;
  line-height: 1.6;
}
.works-filter-wrap .works-filter-list .works-filter-btn:hover {
  background-color: #00c3ff;
  color: #fff;
}

.works-list {
  position: relative;
  width: 100%;
  min-height: 320px;
}

.work-item {
  position: absolute;
  left: 0;
  top: 0;
  overflow: hidden;
  background-color: #000;
  will-change: transform;
  -webkit-transition: -webkit-transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
  transition: -webkit-transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1), -webkit-transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}
.work-item .work-overlay-link {
  display: block;
  color: inherit;
  text-decoration: none;
  position: absolute;
  inset: 0;
  z-index: 3;
}
.work-item .work-thumb {
  position: relative;
  overflow: hidden;
  aspect-ratio: 480/320;
  background-color: #ddd;
}
.work-item .work-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.45s ease;
  transition: -webkit-transform 0.45s ease;
  transition: transform 0.45s ease;
  transition: transform 0.45s ease, -webkit-transform 0.45s ease;
}
.work-item .work-thumb .work-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-color: rgba(0, 0, 0, 0);
  -webkit-transition: background-color 0.35s ease;
  transition: background-color 0.35s ease;
}
.work-item .work-thumb .work-title-wrap {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 20px;
  text-align: center;
  pointer-events: none;
}

.work-title {
  opacity: 0;
  -webkit-transform: translateY(10px);
          transform: translateY(10px);
  -webkit-transition: opacity 0.35s ease, -webkit-transform 0.35s ease;
  transition: opacity 0.35s ease, -webkit-transform 0.35s ease;
  transition: opacity 0.35s ease, transform 0.35s ease;
  transition: opacity 0.35s ease, transform 0.35s ease, -webkit-transform 0.35s ease;
  -webkit-transform: scale(0.8);
          transform: scale(0.8);
}
.work-title span {
  display: block;
  color: #fff;
  font-size: 16px;
  line-height: 26px;
  font-weight: 100;
  word-break: keep-all;
  text-shadow: 1px 1px 4px #e1e1e1;
}

.work-item:hover .work-overlay {
  background-color: rgba(0, 195, 255, 0.4);
}

.work-item:hover .work-title {
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1);
}

@media (max-width: 1199px) {
  .top-banner-inner {
    max-width: 940px !important;
  }
}
@media (max-width: 1024px) {
  .top-banner {
    background-attachment: unset;
    background-position: center;
    background-size: cover;
  }
}
@media (max-width: 991px) {
  .top-banner-inner {
    max-width: 720px !important;
  }
}
@media (max-width: 780px) {
  .top-banner {
    height: 338.5px;
  }
  .top-banner .top-banner-inner {
    max-width: 690px !important;
  }
}
@media (max-width: 767px) {
  .top-banner-inner {
    max-width: 100% !important;
  }
  .top-banner-inner h1 {
    right: 50px !important;
  }
}
@media (max-width: 780px) {
  .works-inner {
    padding: 0 15px;
  }
  .works-section {
    padding: 60px 0 65px;
  }
}