@font-face {
  font-family: "Acid Grotesk";
  src: url("../../fonts/acid/AcidGrotesk-Light.eot");
  src: url("../../fonts/acid/AcidGrotesk-Light.eot?#iefix") format("embedded-opentype"), url("../../fonts/acid/AcidGrotesk-Light.woff2") format("woff2"), url("../../fonts/acid/AcidGrotesk-Light.woff") format("woff"), url("../../fonts/acid/AcidGrotesk-Light.ttf") format("truetype"), url("../../fonts/acid/AcidGrotesk-Light.svg#AcidGrotesk-Light") format("svg");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Acid Grotesk";
  src: url("../../fonts/acid/AcidGrotesk-Medium.eot");
  src: url("../../fonts/acid/AcidGrotesk-Medium.eot?#iefix") format("embedded-opentype"), url("../../fonts/acid/AcidGrotesk-Medium.woff2") format("woff2"), url("../../fonts/acid/AcidGrotesk-Medium.woff") format("woff"), url("../../fonts/acid/AcidGrotesk-Medium.ttf") format("truetype"), url("../../fonts/acid/AcidGvrotesk-Medium.svg#AcidGrotesk-Medium") format("svg");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
:root {
  --font-acid-grotesk-family: "Acid Grotesk";
  --font-fallback-family: Arial, Helvetica, Open Sans, sans-serif;
  --font-size-general: 12px;
}

html, body {
  font-family: var(--font-acid-grotesk-family), var(--font-fallback-family);
  font-weight: 500;
  font-size: var(--font-size-general, 12px);
  margin: 0;
  background-color: black;
  color: white;
  padding: 0;
  overflow: unset;
}

.scr-item {
  padding: 0;
  display: grid;
  align-items: start;
  grid-gap: 0;
}

.special-slider {
  padding: 70px 0 0 0;
}

.sl-item {
  background-color: black;
  color: white;
  opacity: 0.5;
  position: relative; /* Ensure the pseudo-elements are positioned relative to each item */
  z-index: 1;
  transition: opacity 0.3s ease; /* Smooth fade transitions */
}
.sl-item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.9)); /* Fades from 80% to 90% */
  z-index: 2;
  pointer-events: none;
  opacity: 0; /* Default: fully transparent */
  transition: opacity 0.3s ease; /* Smooth transition */
}
.sl-item:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.9)); /* Fades from 80% to 90% */
  z-index: 2;
  pointer-events: none;
  opacity: 0; /* Default: fully transparent */
  transition: opacity 0.3s ease; /* Smooth transition */
}
.sl-item.current {
  opacity: 1;
}
.sl-item.current:before, .sl-item.current:after {
  opacity: 0;
}
.sl-item.current.above:before, .sl-item.current.above:after, .sl-item.current.below:before, .sl-item.current.below:after {
  opacity: 0;
}
.sl-item.above:before {
  opacity: 1;
}
.sl-item.below:after {
  opacity: 1;
}

.hover-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: none; /* Initially hidden */
  pointer-events: none; /* Prevent interaction */
  z-index: 1; /* Ensure it's above the image */
}

.showcase-item__visual:hover .hover-video {
  display: block; /* Show the video on hover */
}

._infoBox {
  padding: 10px 0;
}
._infoBox h4 {
  font-size: calc(var(--font-size-general, 12px) + 1.3vw);
}
._infoBox ._pr-desc {
  font-weight: 300;
}
._infoBox div, ._infoBox p {
  font-size: calc(var(--font-size-general, 12px) + 0.74vw);
  line-height: calc(var(--font-size-general, 14px) + 1.3vw);
}
._infoBox h4 .word, ._infoBox div .word, ._infoBox p .word {
  display: inline-block;
  opacity: 0;
  transform: translateY(50px);
}

.list-container {
  padding: 0;
  margin: 0 auto;
  max-height: 400px;
  max-width: 600px;
  width: 28%;
  overflow-y: hidden;
  position: fixed;
  transition: top 0.5s ease;
  top: 50%;
  left: 4%;
  transform: translateY(-50%);
  z-index: 0;
}

.slide-navs {
  position: relative;
  list-style: none;
  padding: 0;
  margin: 0 auto;
  transition: transform 0.5s ease;
  z-index: 0;
}
.slide-navs li {
  padding: 10px 10px 10px 35px;
  margin-bottom: 10px;
  list-style: none;
  position: relative;
  opacity: 0.2;
  transition: opacity 0.3s ease;
}
.slide-navs li h4 {
  font-size: calc(var(--font-size-general, 12px) + 1.25vw);
  /*font-size: 35px;*/
  line-height: calc(var(--font-size-general, 12px) + 1.33vw);
}
.slide-navs li:before {
  content: "->";
  font-size: 35px;
  line-height: 0;
  width: 40px;
  height: 20px;
  position: absolute;
  left: 0;
  top: 20px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.slide-navs li.current {
  opacity: 1;
}
.slide-navs li.current:before {
  opacity: 1;
}

.pr-item-art {
  padding-top: 5%;
  padding-bottom: 5%;
}

._pageOpenSpecial {
  width: 100%;
  height: 0;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9000;
}
._pageOpenSpecial.active {
  height: 100%;
  min-height: 100vh;
}

.curtain {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  background-color: rgb(1, 1, 1);
  z-index: 10000;
  transition: all 1s ease-in-out;
}
.curtain.active {
  height: 100%;
  min-height: 100vh;
}

#scene {
  transition: opacity 400ms ease-in-out;
}

.sidenavs ._title {
  display: block;
  position: fixed;
  top: 18%;
  left: 6%;
  font-size: 2.4vw;
}

.bg-dots {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  display: grid;
  grid-template-columns: repeat(9, 1fr);
  grid-template-rows: repeat(9, 1fr);
  z-index: 20;
}
.bg-dots ._d-plus {
  position: relative;
  width: 200px;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(0); /* Start as a dot */
  transition: width 0.2s ease-in-out, height 0.2s ease-in-out;
}
.bg-dots ._d-plus:before, .bg-dots ._d-plus:after {
  content: "";
  position: absolute;
  background-color: white;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.bg-dots ._d-plus:before {
  width: var(--before-width, 0%);
  height: var(--before-height, 0%);
}
.bg-dots ._d-plus:after {
  width: var(--after-width, 0%);
  height: var(--after-height, 0%);
}
.bg-dots.expanded ._d-plus {
  transform: scale(10);
}

/* Laptops: 1366px and below */
@media screen and (max-width: 1366px) {
  .slide-navs {
    max-height: 300px;
  }
  .slide-navs li h4 {
    font-size: calc(var(--font-size-general, 12px) + 1vw);
    line-height: calc(var(--font-size-general, 12px) + 1vw);
  }
}
/* Tablets (landscape): 1024px and below */
@media screen and (max-width: 1024px) {
  /* Styles for tablets in landscape mode */
}
/* Tablets (portrait): 768px and below */
@media screen and (max-width: 970px) {
  /* Styles for tablets in portrait mode */
  .slide-navs {
    opacity: 0;
  }
  .sl-item [data-scroll][data-scroll-call]:not([data-scroll-call=pauseVideo]):not(.is-inview) {
    opacity: 0.2;
  }
  .sl-item.current [data-scroll][data-scroll-call]:not([data-scroll-call=pauseVideo]):not(.is-inview) {
    opacity: 1;
  }
  .section-container {
    padding-top: 12%;
  }
  .sidenavs ._title {
    font-size: 40px;
    top: 12%;
  }
}
/* Tablets (portrait): 768px and below */
@media screen and (max-width: 768px) {
  /* Styles for tablets in portrait mode */
}
/* Small tablets and large phones: 576px and below */
@media screen and (max-width: 576px) {
  /* Styles for small tablets and large phones */
  .sidenavs ._title {
    font-size: 30px;
    top: 14%;
    left: 12%;
  }
}
/* Small mobile devices: 480px and below */
@media screen and (max-width: 480px) {
  /* Styles for small mobile devices */
}
/* Extra-small mobile devices: 320px and below */
@media screen and (max-width: 320px) {
  /* Styles for extra-small mobile devices */
}

/*# sourceMappingURL=works.css.map */
