@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+Gurmukhi:wght@200&family=Sono:wght@200..800&family=Chakra+Petch:wght@300;400;600&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Material+Symbols+Sharp:opsz,wght,FILL,GRAD@20..48,200,0..1,-50..200&icon_names=info");
html, body {
  margin: 0;
  padding: 0;
  font-size: 16px;
  height: 100vh; /* standard definition (as fallback) */
  height: 100dvh; /* dynamic vh will make the trick on iOS */
  font-family: "Sono", monospace;
  font-weight: 300;
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
}

.material-symbols-sharp {
  font-weight: 400;
}

a {
  color: #333;
}

a:visited {
  color: #555;
}

img {
  -o-object-fit: contain;
  object-fit: contain;
}

::-webkit-scrollbar {
  height: 8px;
  width: 8px;
  background: white;
}

::-webkit-scrollbar-thumb {
  -webkit-border-radius: 1ex;
  background: #e6e6e6;
}

h1, h2, h3 {
  font-weight: 300;
  font-style: normal;
}

#overlay {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgb(255, 255, 255);
  opacity: 0;
  pointer-events: none;
  transition: 0.2s opacity ease;
  mix-blend-mode: difference;
}

/* ### HEADER ######### */
.header-spacer {
  height: 3.125em;
  flex: none;
}

header[role=banner] {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1010;
  height: 3.125em;
  /* ### HEADER NAV ######### */
  /* ### HEADER NAV BURGER ######### */
}
header[role=banner] h1 {
  font-family: "Chakra Petch", sans-serif;
  font-size: 16px;
  font-weight: 100;
  padding: 1em 0.75em;
  margin: 0;
  line-height: 1;
}
header[role=banner] h1 a {
  text-decoration: none;
}
header[role=banner] nav {
  /*display: none;*/
  text-align: center;
  padding: 1rem;
  position: fixed;
  z-index: 1010;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  transition: 0.4s opacity ease;
  transition-delay: 0.1s;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
  background: black;
  color: #eee;
}
header[role=banner] nav ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
header[role=banner] nav ul li {
  display: block;
  padding: 0.25rem 0.5rem;
  font-size: 1.3rem;
}
header[role=banner] nav ul li a {
  text-decoration: none;
  color: #eee;
}
header[role=banner] .burger {
  position: fixed;
  top: 1rem;
  right: 1rem;
  z-index: 1020;
  cursor: pointer;
  transition: 0.5s right ease;
}
header[role=banner] .burger span {
  display: block;
  width: 30px;
  height: 1px;
  margin-bottom: 7px;
  position: relative;
  background: #333;
  border-radius: 3px;
  transform-origin: 4px 0px;
  transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1), background 0.5s cubic-bezier(0.77, 0.2, 0.05, 1), opacity 0.55s ease;
}
header[role=banner] .burger span:first-child {
  transform-origin: 0% 0%;
}
header[role=banner] .burger span:last-child {
  transform-origin: 0% 100%;
}

main {
  height: 100vh;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

@supports (-webkit-touch-callout: none) {
  /* some weird shit to do with the address bar */
}
body.with-menu header[role=banner] .burger {
  right: 0.6rem;
}
body.with-menu header[role=banner] .burger span {
  opacity: 1;
  transform: rotate(45deg) translate(3px, 0) scale(0.6, 0.8);
  background: white;
}
body.with-menu header[role=banner] .burger span:nth-last-child(2) {
  opacity: 0;
  transform: rotate(0deg) scale(0.2, 0.2);
}
body.with-menu header[role=banner] .burger span:last-child {
  transform: rotate(-45deg) translate(3px, 0) scale(0.6, 0.8);
}
body.with-menu header[role=banner] nav {
  opacity: 1;
  pointer-events: all;
}
body.with-menu header[role=banner] h1 a {
  color: white;
}
body.with-menu #overlay {
  opacity: 1;
  pointer-events: all;
}

.swiper-container,
.swiper-wrapper {
  padding: 0;
  margin: 0;
  width: 100%;
  height: 100%;
  position: relative;
}

/* basic */
.swiper-container {
  position: relative;
  overflow: hidden;
}

.swiper-container,
.swiper-wrapper {
  padding: 0;
  margin: 0;
  width: 100%;
  height: 100%;
}

.swiper-slide {
  position: relative;
  display: flex;
  flex-shrink: 0;
  justify-content: center;
  width: 100%;
  height: 100%;
  align-items: center;
  cursor: grab;
}

.swiper-slide img {
  display: block;
  width: auto;
  height: auto;
  -o-object-position: top;
  object-position: top;
}

/* plugin pagination */
.swiper-plugin-pagination {
  display: block;
  position: absolute;
  top: 50%;
  right: 2.2rem;
  width: 0.5rem;
  transform: translateY(-50%);
}
.swiper-plugin-pagination__item {
  display: block;
  margin: 100% 0;
  width: 100%;
  padding-top: 100%;
  height: 0;
  border-radius: 50% !important;
  border: none;
  background: #fff;
  transition: background ease 0.2s;
  cursor: pointer;
}
.swiper-plugin-pagination__item.is-active {
  background: #333;
}

/* image lazyload */
.swiper-lazy {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  opacity: 0;
  transition: all ease 300ms;
}

.swiper-lazy-preloader {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.swiper-lazy-loaded {
  opacity: 1;
}

.swiper-lazy-preloader::after {
  display: block;
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  margin: -15px 0 0 -15px;
  width: 30px;
  height: 30px;
  border: 2px solid rgba(0, 0, 0, 0.88);
  border-radius: 50%;
  border-bottom-color: transparent;
  transform-origin: 50%;
  animation: rotate 1s infinite linear;
}

@keyframes rotate {
  0% {
    transform: rotate3d(0, 0, 0, 0);
  }
  100% {
    transform: rotate3d(0, 0, 1, 360deg);
  }
}
article.flexplate {
  display: flex;
  flex-direction: column;
  position: relative;
  padding: 0;
  height: 100%;
  justify-content: center;
  align-items: center;
  min-width: 0;
}
article.flexplate .header-spacer {
  width: 100%;
  height: auto;
  min-height: 3em;
  flex-grow: 1;
}
article.flexplate figure.plate {
  margin: 0;
  flex-grow: 0;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  /*&, &.portrait-120 {
  	max-width:calc(80.00vh - 10em);
  }*/
}
article.flexplate figure.plate img {
  -o-object-fit: contain;
  object-fit: contain;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
}

.info-on-space {
  height: auto;
  min-height: 3.125em;
  flex-grow: 1;
  cursor: pointer;
  margin: 0 0.5em;
  width: 100%;
  box-sizing: border-box;
  display: flex;
}
.info-on-space .inner {
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.info-on-space h1 {
  margin: 0;
  font-size: 0.8em;
}
.info-on-space h1 .info {
  position: absolute;
  color: red;
  margin: -0.5em 0 0 0.2em;
  font-size: 20px;
}
.info-on-space:hover h1 {
  text-decoration: underline;
}
.info-on-slit {
  display: none;
}

article.flexplate.info-side .header-spacer {
  display: none;
}
article.flexplate.info-side .info-on-space {
  display: block;
  position: absolute;
  z-index: 10000;
  width: 2em;
  height: 100vh;
  right: -3.5em;
}
article.flexplate.info-side .info-on-space .inner {
  transform-origin: 0 50%;
  transform: rotate(-90deg) translate(-100%, 50%);
  width: 100vh;
  display: block;
}
article.flexplate.info-side .info-on-space .inner h1 {
  padding: 0 2em;
  text-align: left;
}

article.flexpage {
  max-height: 100vh;
}
article.flexpage .inner {
  height: 100%;
}
article.flexpage, article.flexpage .inner {
  display: flex;
  flex-direction: column;
  position: relative;
  padding: 0;
  justify-content: center;
  align-items: center;
  min-width: 0;
  width: 100%;
}

@keyframes splash-negative {
  from {
    opacity: 0;
    top: -15%;
  }
  30% {
    opacity: 0.9;
  }
  to {
    opacity: 0;
    top: -5%;
  }
}
@keyframes splash-positive {
  from {
    opacity: 0;
    top: -15%;
    filter: saturate(0.9);
  }
  50% {
    opacity: 0;
  }
  to {
    opacity: 1;
    top: -5%;
  }
}
@keyframes splash-negative-gray {
  from {
    opacity: 0;
    top: -40%;
  }
  30% {
    opacity: 0.9;
  }
  to {
    opacity: 0;
    top: -50%;
  }
}
@keyframes splash-positive-gray {
  from {
    opacity: 0;
    top: -40%;
    filter: saturate(0.9);
  }
  50% {
    opacity: 0;
  }
  to {
    opacity: 1;
    top: -50%;
    filter: saturate(0.33);
  }
}
@keyframes fadeout {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.swiper-slide[data-route=_home_] {
  overflow: hidden;
}
.swiper-slide[data-route=_home_]:before, .swiper-slide[data-route=_home_]:after {
  content: "";
  position: absolute;
  opacity: 0;
  background: white 40% 50% no-repeat;
  width: 120%;
  height: 120%;
  top: -10%;
  left: -10%;
}
.swiper-slide[data-route=_home_]:before {
  z-index: -2;
}
.swiper-slide[data-route=_home_]:after {
  z-index: -1;
  mix-blend-mode: exclusion;
}
.swiper-slide[data-route=_home_].swiper-slide-prev:after, .swiper-slide[data-route=_home_].swiper-slide-prev:before {
  animation: fadeout 0.5s normal forwards ease;
}
.swiper-slide[data-route=_home_][data-negset]:before, .swiper-slide[data-route=_home_][data-negset]:after {
  background-size: cover;
}
.swiper-slide[data-route=_home_][data-negset].loaded-1:after {
  opacity: 1;
  top: -5%;
}
.swiper-slide[data-route=_home_][data-negset].swiper-slide-active.loaded-0:before {
  animation: splash-negative 3s normal forwards ease-in-out;
}
.swiper-slide[data-route=_home_][data-negset].swiper-slide-active.loaded-0:after {
  animation: splash-positive 3s normal forwards ease-in-out;
}
.swiper-slide[data-route=_home_][data-negset=siempre].loaded-1:after {
  background-image: url(/asset/siempre-positive.jpg);
}
.swiper-slide[data-route=_home_][data-negset=siempre].swiper-slide-active.loaded-0:before {
  background-image: url(/asset/siempre-negative.jpg);
}
.swiper-slide[data-route=_home_][data-negset=freya29].loaded-1:after {
  background-image: url(/asset/freya29-positive.jpg);
}
.swiper-slide[data-route=_home_][data-negset=freya29].swiper-slide-active.loaded-0:before {
  background-image: url(/asset/freya29-negative.jpg);
}
.swiper-slide[data-route=_home_][data-negset=raven].loaded-1:after {
  background-image: url(/asset/raven-positive.jpg);
}
.swiper-slide[data-route=_home_][data-negset=raven].swiper-slide-active.loaded-0:before {
  background-image: url(/asset/raven-negative.jpg);
}
.swiper-slide[data-route=_home_][data-negset=hera].loaded-1:after {
  background-image: url(/asset/hera-positive.jpg);
}
.swiper-slide[data-route=_home_][data-negset=hera].swiper-slide-active.loaded-0:before {
  background-image: url(/asset/hera-negative.jpg);
}
.swiper-slide[data-route=_home_][data-negset=solar].loaded-1:after {
  background-image: url(/asset/solar-positive.jpg);
}
.swiper-slide[data-route=_home_][data-negset=solar].swiper-slide-active.loaded-0:before {
  background-image: url(/asset/solar-negative.jpg);
}
.swiper-slide[data-route=_home_][data-negset=strip]:before, .swiper-slide[data-route=_home_][data-negset=strip]:after {
  width: 200%;
  height: 200%;
  top: -40%;
  left: -50%;
  transform: rotate(-4deg);
  background-size: 25%;
}
.swiper-slide[data-route=_home_][data-negset=strip].loaded-1:after {
  background-color: rgb(16, 14, 14);
}
.swiper-slide[data-route=_home_][data-negset=strip].swiper-slide-active.loaded-0:before {
  background-color: rgb(240, 240, 240);
  background-image: url(/asset/strip-negative.jpg);
  animation: splash-negative-gray 3s normal forwards ease-in-out;
}
.swiper-slide[data-route=_home_][data-negset=strip].swiper-slide-active.loaded-0:after {
  animation: splash-positive-gray 3s normal forwards ease-in-out;
}
.swiper-slide[data-route=_home_][data-negset=strip].swiper-slide-active.loaded-1:after {
  background-image: url(/asset/strip-positive.jpg);
}
.swiper-slide[data-route=_home_] article .inner {
  max-width: 1000px;
  margin: auto;
  display: block;
  padding-top: 22vh;
  position: relative;
  z-index: 2;
  text-align: right;
  padding-right: 1em;
  mix-blend-mode: exclusion;
  color: #ccc;
}
.swiper-slide[data-route=_home_] article .inner h1, .swiper-slide[data-route=_home_] article .inner h2 {
  padding-right: 1em;
  margin: 0;
  font-family: "Chakra Petch", sans-serif;
}
.swiper-slide[data-route=_home_] article .inner h2 {
  margin: 0;
  transition: 0.5s all ease;
  opacity: 0;
  position: relative;
  right: -1em;
  font-weight: 200;
}
.swiper-slide[data-route=_home_] .slug-swipe-to-nav {
  position: fixed;
  bottom: 1.5em;
  right: 2em;
  text-align: right;
  line-height: 0.8;
  font-size: 0.8em;
  mix-blend-mode: exclusion;
  color: #eee;
  opacity: 0;
  transition: 0.5s opacity ease;
  transition-delay: 0s;
}
.swiper-slide[data-route=_home_].swiper-slide-active article .inner h2 {
  transition-delay: 3s;
  opacity: 1;
  right: 0;
}
.swiper-slide[data-route=_home_].swiper-slide-active article .inner .slug-swipe-to-nav {
  transition-delay: 10s;
  opacity: 1;
}

@media screen and (min-width: 800px) {
  .swiper-slide[data-route=_home_][data-negset=strip].swiper-slide-active:before, .swiper-slide[data-route=_home_][data-negset=strip].swiper-slide-active:after {
    background-size: 20%;
  }
}
@media screen and (min-width: 1000px) {
  .swiper-slide[data-route=_home_][data-negset=strip].swiper-slide-active:before, .swiper-slide[data-route=_home_][data-negset=strip].swiper-slide-active:after {
    background-size: 15%;
  }
}
@media screen and (min-width: 1600px) {
  .swiper-slide[data-route=_home_][data-negset=strip].swiper-slide-active:before, .swiper-slide[data-route=_home_][data-negset=strip].swiper-slide-active:after {
    background-size: 10%;
  }
}
header[role=banner] {
  transition: 0.5s opacity ease;
}

body[data-route="/"] header[role=banner], body[data-route=_home_] header[role=banner] {
  opacity: 0;
  pointer-events: none;
  transition: 0s;
}

.container-reference-list.slug-flexlist {
  text-align: center;
}
.container-reference-list.slug-flexlist ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 2em 0.5em;
  flex-wrap: wrap;
  padding: 0.5em 0.5em 2em 0.5em;
  max-height: calc(100vh - 10em);
  overflow-y: scroll;
}
.container-reference-list.slug-flexlist ul li {
  background-size: cover;
  background-position: center center;
  width: 12em;
  height: 12em;
  position: relative;
  z-index: 100;
}
.container-reference-list.slug-flexlist ul li a {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
.container-reference-list.slug-flexlist ul li a span {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
}
.container-reference-list.slug-flexlist ul li a span.label {
  top: auto;
  bottom: -1.5em;
  text-align: center;
  padding-bottom: 2px;
  box-sizing: border-box;
  border-bottom: 0.6px solid transparent;
}
.container-reference-list.slug-flexlist ul li a:hover span.label {
  border-bottom: 0.6px solid #666;
}
/*# sourceMappingURL=app-dev.css.map */
