*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Poppins", sans-serif;
  background-color: #242424;
  color: #fff;
  min-width: 1440px;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  border-bottom: 1px solid #ccc;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 41px;
  background: #242424;
  z-index: 100;
}
header .logo {
  font-size: 32px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0;
  text-decoration: none;
}
header nav {
  display: flex;
  gap: 8px;
  align-items: center;
}

.btn {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #000;
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.7px;
  border-radius: 100px;
  padding: 8px 12px 8px 20px;
  cursor: pointer;
  text-decoration: none;
  border: none;
}

.arrow-circle {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.arrow-circle svg { display: block; }
.arrow-circle.teal { background: #5ab3a4; }
.arrow-circle.black { background: #000; }
.arrow-circle.teal-lg { background: #5ab3a4; width: 30px; height: 30px; }
.arrow-circle.black-lg { background: #000; width: 30px; height: 30px; }

.h2-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 60px 0;
  margin-top: 80px;
}
.h2-title h2 {
  font-size: 80px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #fff;
  line-height: 1;
}
.dot-teal {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: #5ab3a4;
  flex-shrink: 0;
}

.page-wrapper {
  width: 1440px;
  margin: 0 auto;
  padding-top: 80px;
}

.filter-bar {
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: center;
  padding-top: 60px;
  padding-bottom: 51px;
}

.filter-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 84px;
  padding: 8px 20px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  color: #fff;
  background: #000;
  transition: background 0.2s;
}
.filter-btn.active {
  background: #5ab3a4;
}
.filter-btn:hover:not(.active) {
  background: #262626;
}

.work-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 84px;
  padding: 0 79px 100px;
}

.work-card {
  width: 371px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.work-card__img {
  width: 100%;
  height: 240px;
  border-radius: 15px;
  overflow: hidden;
  background: #d9d9d9;
  position: relative;
  flex-shrink: 0;
}
.work-card__img img {
  position: absolute;
  width: 116.87%;
  height: 120.31%;
  left: 0.01%;
  top: -6.15%;
  max-width: none;
  -o-object-fit: cover;
     object-fit: cover;
}
.work-card__body {
  padding-top: 24px;
}
.work-card__title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}
.work-card__title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: #fff;
}
.work-card__arrow {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.work-card__arrow svg {
  display: block;
}
.work-card__divider {
  width: 100%;
  height: 1px;
  background: #ccc;
  margin-bottom: 16px;
}
.work-card__tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.work-card__tag {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px 16px;
  border-radius: 22px;
  border: 1px solid #5ab3a4;
  background: #fff;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #5ab3a4;
  white-space: nowrap;
}

footer {
  width: 1280px;
  height: 262px;
  background: #000;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  margin: 0 auto 60px;
}

.footer-logo {
  position: absolute;
  left: 108px;
  top: calc(50% - 83px);
  font-size: 40px;
  font-weight: 700;
  color: #fff;
}

.footer-divider {
  position: absolute;
  left: 279.5px;
  top: 47.5px;
  width: 1px;
  height: 214.5px;
  background: #fff;
}

.footer-nav {
  position: absolute;
  left: 325px;
  top: 48px;
  width: 189px;
  display: flex;
  flex-direction: column;
}

.footer-nav-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  border-bottom: 1px solid #fff;
  text-decoration: none;
}
.footer-nav-item span {
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: #fff;
}
.footer-nav-item .arrow-teal {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: #5ab3a4;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-nav-item .arrow-teal svg {
  display: block;
}

.footer-copyright {
  position: absolute;
  right: 0;
  top: 0;
  width: 91px;
  height: 262px;
  border-left: 1px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-copyright p {
  font-size: 12px;
  color: #fff;
  text-transform: uppercase;
  white-space: nowrap;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

@media (max-width: 440px) {
  body {
    min-width: unset;
    max-width: 440px;
  }
  header {
    justify-content: space-between;
    padding: 0 23px;
    flex-wrap: nowrap;
  }
  header .logo {
    font-size: 25.6px;
    flex-shrink: 0;
  }
  header nav {
    gap: 1.25vw;
    flex-wrap: nowrap;
    flex-shrink: 0;
  }
  .btn {
    font-size: 2.33vw;
    gap: 2.67vw;
    padding: 1.33vw 2vw 1.33vw 3.33vw;
    border-radius: 80px;
    white-space: nowrap;
    flex-shrink: 0;
  }
  header .arrow-circle {
    width: 2.5vw;
    height: 2.5vw;
  }
  .page-wrapper {
    width: 100%;
  }
  .filter-bar {
    gap: 8px;
    padding: 30px 16px 24px;
    flex-wrap: wrap;
    justify-content: center;
  }
  .filter-btn {
    width: auto;
    min-width: 72px;
    font-size: 11.2px;
    padding: 6px 14px;
  }
  .work-grid {
    gap: 40px;
    padding: 0 20px 60px;
  }
  .work-card {
    width: 100%;
  }
  .work-card__img {
    height: 200px;
  }
  .work-card__title {
    font-size: 14px;
  }
  footer {
    width: calc(100% - 40px);
    max-width: 402px;
    height: 326px;
    margin: 0 auto 60px;
  }
  .footer-logo {
    left: 40px;
    top: calc(50% - 123px);
  }
  .footer-divider {
    display: none;
  }
  .footer-nav {
    left: 40px;
    top: 96px;
  }
  .footer-copyright {
    width: 50px;
    height: 326px;
  }
}/*# sourceMappingURL=work.css.map */