@import url("https://use.typekit.net/lhz5mmf.css");

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

:root {
  font-size: 18px;
}

body {
  --color-text: #fff;
  --color-bg: #000;
  --color-link: white;
  --color-link-hover: #000;
  --color-bg-alt: #c3bcbc;
  --color-text-alt: #111;
  color: var(--color-text);
  background-color: var(--color-bg);
  text-transform: uppercase;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin: 0;
  font-family: tussilago, sans-serif;
  overflow-x: hidden;
}

#circle, .hamburger {
  position: fixed !important;
}

.demo-2 {
  --color-text: #b41717;
  --color-text-alt: #b41717;
  --color-bg: #000;
  --color-bg-alt: #9c9191;
  --color-link-hover: #fff;
}

.demo-3 {
  --color-text: #000;
  --color-text-alt: #000;
  --color-bg: #846c64;
  --color-bg-alt: #d1d1d1;
  --color-link-hover: #000;
  --color-link: #fff;
}

.demo-4 {
  --color-text: #fff;
  --color-text-alt: #78757e;
  --color-bg: #ccc3cf;
  --color-bg-alt: #000;
  --color-link-hover: #fff;
  --color-link: #d6238c;
}

.demo-5 {
  --color-text: #000;
  --color-text-alt: #000;
  --color-bg: #6c7059;
  --color-bg-alt: #fff;
  --color-link-hover: #fff;
}

.demo-6 {
  --color-text: #fff;
  --color-text-alt: #000;
  --color-bg: #000;
  --color-bg-alt: #000;
  --color-link-hover: #fff;
  --color-link: #fff;
}

.demo-7 {
  --color-text: #b4176e;
  --color-text-alt: #000;
  --color-bg: #101010;
  --color-bg-alt: #988797;
  --color-link-hover: #b4176e;
  --color-link: #4c34eb;
}

.demo-8 {
  --color-text: #000;
  --color-bg: #606c62;
  --color-link: #a0ba81;
  --color-link-hover: #000;
  --color-bg-alt: #dadada;
  --color-text-alt: #111;
}

.js .loading:before, .js .loading:after {
  content: "";
  z-index: 1000;
  position: fixed;
}

.js .loading:before {
  width: 100%;
  height: 100%;
  background: var(--color-bg);
  top: 0;
  left: 0;
}

.js .loading:after {
  width: 60px;
  height: 60px;
  opacity: .4;
  background: var(--color-link);
  border-radius: 50%;
  margin: -30px 0 0 -30px;
  animation: loaderAnim .7s linear infinite alternate forwards;
  top: 50%;
  left: 50%;
}

@keyframes loaderAnim {
  to {
    opacity: 1;
    transform: scale3d(.5, .5, 1);
  }
}

a {
  color: var(--color-link);
  outline: none;
  text-decoration: none;
}

a:hover {
  color: var(--color-link-hover);
  outline: none;
}

a:focus {
  background: #d3d3d3;
  outline: none;
}

a:focus:not(:focus-visible) {
  background: none;
}

a:focus-visible {
  background: none;
  outline: 2px solid red;
}

.unbutton {
  font: inherit;
  background: none;
  border: 0;
  margin: 0;
  padding: 0;
}

.unbutton:focus {
  outline: none;
}

.frame {
  padding: 1.5rem;
  position: relative;
  z-index: 5000;
  text-transform: uppercase;
  display: grid;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr auto;
  grid-template-areas: 'title menu'
						'links links';
}

.frame__title {
  font-size: 1rem;
  margin: 0 0 0.5rem;
  font-weight: normal;
  grid-area: title;
}

.frame__links {
  grid-area: links;
}

.frame__links a {
  border-bottom: 1px solid var(--color-link);
  margin: 0 0.5rem 0 0;
}

@media screen and (min-width: 53em) {
  .frame {
    position: fixed;
    text-align: left;
    top: 0;
    left: 0;
    display: grid;
    align-content: space-between;
    width: 100%;
    max-width: none;
    height: 100%;
    padding: 1.5rem 0 1.5rem 1rem;
    pointer-events: none;
    grid-template-columns: 50% 50%;
    grid-template-rows: auto auto;
    grid-template-areas:
			'title menu'
			'links ...';
  }

  .frame__title {
    margin: 0;
    -webkit-writing-mode: vertical-rl;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    white-space: nowrap;
  }

  .frame__links {
    text-align: center;
    -webkit-writing-mode: vertical-rl;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    margin: 0;
    white-space: nowrap;
  }

  .frame__links a {
    border-bottom: 0;
    border-left: 1px solid var(--color-link);
    margin: 0.5rem 0;
  }

  .frame a,
  .frame button {
    pointer-events: auto;
  }
}

.grid {
  width: 100%;
  display: grid;
  position: relative;
}

.grid__item {
  will-change: transform;
  position: relative;
  grid-row: var(--r);
}

@media (min-width: 992px) {
  .grid {
    grid-template-columns: repeat(5, 1fr);
    padding: 0 30px;
  }
  .grid__item {
    grid-column: var(--cd);
  }
}

@media (max-width: 992px) {
  .grid {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 200px;
    padding: 0 25px;
  }
  .grid__item {
    grid-column: var(--cm);
  }
}

.grid__item-img {
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  will-change: transform, opacity;
  background-position: 50%;
  background-size: cover;
  position: relative;
}

.demo-1 .grid__item-img {
  filter: contrast(70%);
}

.cover {
  width: 100%;
  height: 100vh !important;
  pointer-events: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
  position: fixed !important;
  top: 0;
  left: 0;
}

.cover__title {
  margin: 0;
  font-family: tussilago, sans-serif;
  font-size: 8vw;
  font-weight: 600;
  text-align: center !important;
}

.cover__title sup {
  vertical-align: 75%;
  font-size: 4vw;
  font-weight: bold;
}

.cover__subtitle {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 400;
}

.footer {
  color: var(--color-text-alt);
  background: var(--color-bg-alt);
  height: 100vh;
  z-index: 200;
  text-transform: none;
  justify-content: center;
  align-items: center;
  font-size: 5vh;
  line-height: 1.2;
  display: flex;
  position: relative;
}

.footer p {
  max-width: 40ch;
}


/*# sourceMappingURL=index.d046a61c.css.map */
