@font-face {
  font-family: "Inter-SemiBold";
  src: url("/fonts/Inter-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter-ThinItalic";
  src: url("../fonts/Inter-ThinItalic.woff2") format("woff2");
  font-weight: 100;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Inter-Bold";
  src: url("../fonts/Inter-Bold.woff2") format("woff2");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter-Light";
  src: url("../fonts/Inter-Light.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter-Regular";
  src: url("../fonts/Inter-Regular.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter-Thin";
  src: url("../fonts/Inter-Thin.woff2") format("woff2");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter-Medium";
  src: url("../fonts/Inter-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Anton";
  src: url("../fonts/Anton-Regular.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
.portfolio {
  background: url("../../images/portfolio-banner-mobile.webp");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
@media screen and (min-width: 768px) {
  .portfolio {
    background: url("../../images/portfolio-banner.webp");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
  }
}

.work-tab {
  /* CONTENT */
}
.work-tab .tabs-wrapper {
  text-align: center;
  /* MAIN TABS */
}
.work-tab .tabs-wrapper .main-tabs {
  list-style: none;
  padding: 0;
  margin-bottom: 40px;
  gap: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.work-tab .tabs-wrapper .main-tabs li {
  padding: 12px 26px;
  border-radius: 10px;
  border: 1px solid #909090;
  cursor: pointer;
  font-size: 22px;
  width: 100%;
  font-family: "Anton", sans-serif;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
@media screen and (min-width: 576px) {
  .work-tab .tabs-wrapper .main-tabs li {
    width: calc(50% - 6px);
  }
}
@media screen and (min-width: 992px) {
  .work-tab .tabs-wrapper .main-tabs li {
    width: calc(33.33% - 8px);
  }
}
.work-tab .tabs-wrapper .main-tabs li:hover {
  background: #292929;
}
.work-tab .tabs-wrapper .main-tabs li.active {
  background: #e50914;
  border-color: #e50914;
}
.work-tab .tab-contents .content {
  display: none;
}
.work-tab .tab-contents .content.active {
  display: block;
}

/* SUBCATEGORY BLOCK */
.subcategory-block {
  margin-bottom: 60px;
  text-align: left;
}
.subcategory-block .sub-title {
  text-align: center;
  margin-bottom: 16px;
  font-family: "Inter-Medium", sans-serif;
}
.subcategory-block .portfolio-slider .img-box {
  border-radius: 10px;
  overflow: hidden;
}
.subcategory-block .portfolio-slider .img-box img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.portfolio-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
}
.portfolio-lightbox.active {
  opacity: 1;
  visibility: visible;
}
.portfolio-lightbox .lightbox-img {
  max-width: 95vw;
  max-height: 95vh;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 15px;
}
.portfolio-lightbox .lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 40px;
  color: #fff;
  cursor: pointer;
  line-height: 1;
}

/* Optional UX polish */
.img-box img {
  cursor: pointer;
}/*# sourceMappingURL=portfolio.css.map */