@font-face {
  font-family: 'Suisse Intl Mono';
  src: url('../fonts/SuisseIntlMono.woff2') format('woff2'),
      url('../fonts/SuisseIntlMono.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'NT Bau';
  src: url('../fonts/NTBau-Regular.woff2') format('woff2'),
      url('../fonts/NTBau-Regular.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'NT Bau Bold';
  src: url('../fonts/NTBau-Bold.woff2') format('woff2'),
      url('../fonts/NTBau-Bold.woff') format('woff');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

::selection {
  background-color: black;
  color: white;
}

* {
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
  box-sizing: border-box
}

:root {
  --padding: 0;
  --background: #F2F2F2;
  --color-black: #000;
  --color-white: #fff;
  --color-grey: #A6A6A6;
  --color-light: #efefef;
  --color-text: var(--color-black);
  --color-text-grey: var(--color-grey);
  --color-background: var(--background);
  --color-code-light-grey:  #cacbd1;
  --color-code-comment:     #a9aaad;
  --color-code-white:       #c5c9c6;
  --color-code-red:         #d16464;
  --color-code-orange:      #de935f;
  --color-code-yellow:      #f0c674;
  --color-code-green:       #a7bd68;
  --color-code-aqua:        #8abeb7;
  --color-code-blue:        #7e9abf;
  --color-code-purple:      #b294bb;
  --font-family-sans: 'NT Bau', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  --font-family-mono: "Suisse Intl Mono", Consolas, "Liberation Mono", Menlo, Courier, monospace;
  --title: 10vmin;
  --paragraph: 1.25rem;
}

html {
  font-family: var(--font-family-sans);
  color: var(--color-text);
  background: var(--color-background);
}
img {
  width: 100%;
}
body {
  padding: var(--padding);
  /* max-width: 70rem; */
  margin: 0 auto;
}
li {
  list-style: none;
}
a, .footer p, .h1 p, .label, .service p, .slick-dots li, .text figcaption{
  font-family: 'Suisse Intl Mono';
  font-size: 0.78rem;
  color: currentColor;
  text-decoration: none;
  text-transform: uppercase;
  line-height: 1.25;
}
a:hover {
  text-decoration: underline;
}
button {
  font: inherit;
  background: none;
  border: 0;
  color: currentColor;
  cursor: pointer;
}
strong, b {
  font-family: 'NT Bau Bold', 'Helvetica', sans-serif;
  font-weight: bold;
}
small {
  font-size: inherit;
  color: var(--color-text-grey);
}

.bg-light {
  background-color: var(--color-light);
}
.color-grey {
  color: var(--color-text-grey);
}

.header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
}
.header.header-secondary {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  mix-blend-mode: exclusion;
  align-items: center;
}

.logo {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  width: 80%;
  padding: 1rem;
  display: flex;
  align-items: center;
  font-weight: 600;
  cursor: pointer;
}
.header-secondary .logo {
  position: relative;
  width: auto;
  top: auto;
  left: auto;
}
.logo-icon {
  width: 1.25rem;
}
.logo-text {
  width: 11.25rem;
  margin-left: 10vw;
}

.mobile-logo, .hamburger-lines, .menu .checkbox {
  display: none;
}

.menu {
  position: fixed;
  z-index: 10;
  top: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  margin-top: 1.5rem;
  color: white;
  mix-blend-mode: exclusion;
}
.header-secondary .menu {
  position: relative;
  top: 0;
  left: auto;
  margin-top: 0;
  padding: 1rem;
}
.menu-links {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.header-secondary .menu-links {
  flex-direction: row;
}
.menu a {
  padding: 0 1.5rem;
  display: block;
}
.header-secondary .menu a {
  padding: 0 1rem;
  line-height: 100%;
  /* -webkit-transform: translateY(0.375rem);
  -moz-transform: translateY(0.375rem);
  -o-transform: translateY(0.375rem);
  transform: translateY(0.375rem); */
}
.menu a[aria-current] {
  text-decoration: underline;
}

.social {
  display: flex;
  padding: 0 .5rem;
}
.social a {
  padding: 1rem .5rem;
}

.section {
  padding: 3rem 0;
}

.grid {
  --columns: 12;
  --gutter: 0;
  display: grid;
  grid-gap: var(--gutter);
  grid-template-columns: 1fr;
}
.grid > .column {
  margin-bottom: var(--gutter);
}

.autogrid {
  --gutter: 3rem;
  --min: 10rem;
  /* display: grid;
  grid-gap: var(--gutter);
  grid-template-columns: repeat(auto-fit, minmax(var(--min), 1fr));
  grid-auto-flow: dense; */
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
}

h1, h2, h3, h4, h5, h6 {
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
}

.text {
  line-height: 1.5em;
}
.text a {
  text-decoration: underline;
}
.text :first-child {
  margin-top: 0;
}
.text :last-child {
  margin-bottom: 0;
}
.text p,
.text ul,
.text ol {
  margin-bottom: 1.5rem;
}
.text ul,
.text ol {
  margin-left: 1rem;
}
.text ul p,
.text ol p {
  margin-bottom: 0;
}
.text ul > li {
  list-style: disc;
}
.text ol > li {
  list-style: decimal;
}
.text ul ol,
.text ul ul,
.text ol ul,
.text ol ol {
  margin-bottom: 0;
}
.text h1,
.h1,
.intro {
  font-size: 2rem;
  margin-bottom: 3rem;
  line-height: 1.25em;
}
.text h2,
.h2 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
}
.text h3,
.h3 {
  font-weight: 600;
}
.text .codeblock {
  display: grid;
}
.text code {
  font-family: var(--font-family-mono);
  font-size: 1em;
  background: var(--color-light);
  padding: 0 .5rem;
  display: inline-block;
  color: var(--color-black);
}
.text pre {
  margin: 3rem 0;
  background: var(--color-black);
  color: var(--color-white);
  padding: 1.5rem;
  overflow-x: scroll;
  overflow-y: hidden;
  line-height: 1.5rem;
}
.text pre code {
  padding: 0;
  background: none;
  color: inherit;
}
.text hr {
  margin: 6rem 0;
}
.text dt {
  font-weight: 600;
}
.text blockquote {
  font-size: 1.25rem;
  line-height: 1.325em;
  border-left: 2px solid var(--color-black);
  padding-left: 1rem;
  margin: 3rem 0;
  max-width: 25rem;
}
.text blockquote footer {
  font-size: .875rem;
  font-style: italic;
}
.text figure {
  margin: 3rem 0;
}
.text figcaption {
  padding: 0.5rem;
  color: var(--color-text-black);
}

hr {
  border: 0;
  background: currentColor;
  height: 2px;
  width: 1.5rem;
  margin: 3rem auto;
}

.align-center {
  text-align: center;
}

.intro {
  max-width: 40rem;
}
.intro *:not(:last-child) {
  margin-bottom: 1em;
}

.cta {
  background: var(--color-black);
  color: var(--color-white);
  display: inline-flex;
  justify-content: center;
  padding: .75rem 1.5rem;
  border: 4px solid var(--color-white);
  outline: 2px solid var(--color-black);
}

.box {
  background: var(--color-light);
  padding: 1.5rem;
  border: 4px solid var(--color-white);
  outline: 2px solid var(--color-light);
}

.video,
.img {
  position: relative;
  display: block;
  /* --w: 1;
  --h: 1;
  padding-bottom: calc(100% / var(--w) * var(--h)); */
  background: var(--color-black);
}
.video {
  padding-bottom: calc(100% / var(--w) * var(--h));
}
.img img,
.video iframe {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 0;
}
.img[data-contain] img {
  object-fit: contain;
}
.img-caption,
.video-caption {
  padding-top: .75rem;
  line-height: 1.5em;
}

.footer {
  padding: 1.5rem;
  line-height: 1.1;
}
.footer .grid {
  display: flex;
  width: 100%;
  align-items: flex-start;
  justify-content: space-between;
}

.footer h2 {
  font-weight: 600;
  margin-bottom: .75rem;
}
.footer ul,
.footer p {
  font-family: var(--font-family-mono);
  color: var(--color-text-black);
}

.footer a:hover {
  color: var(--color-text);
}
.footer-description {
  width: 40%;
}
.footer .grid > .column {
  margin-bottom: 0;
}


.map {
  --w: 2;
  --h: 1;
  padding-bottom: calc(100% / var(--w) * var(--h));
  position: relative;
  overflow: hidden;
  background: var(--color-black);
}
.map iframe {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.margin-s {
  margin-bottom: .75rem;
}
.margin-m {
  margin-bottom: 1.5rem;
}
.margin-l {
  margin-bottom: 3rem;
}
.margin-xl {
  margin-bottom: 4.5rem;
}
.margin-xxl {
  margin-bottom: 6rem;
}


@media screen and (min-width: 60rem) {
  .grid {
    grid-template-columns: repeat(12, 1fr);
  }
  .grid > .column {
    grid-column: span var(--columns);
  }
}

.pagination {
  display: flex;
  padding-top: 6rem;
}
.pagination > span {
  color: var(--color-text-grey);
}
.pagination > * {
  padding: .5rem;
  width: 3rem;
  text-align: center;
  border: 2px solid currentColor;
  margin-right: 1.5rem;
}
.pagination > a:hover {
  background: var(--color-black);
  color: var(--color-white);
  border-color: var(--color-black);
}

.entry {
  position: relative;
}
.note-excerpt {
  line-height: 1.5em;
  position: relative;
  height: 100%;
}
.note-excerpt a {
  background: rgba(0,0,0,.25);
  height: 100%;
  display: block;
}
.note-excerpt header {
  margin-bottom: 0;
}
.note-excerpt-title {
  font-weight: 600;
}
.note-excerpt-date {
  color: var(--color-text-grey);
}
.entry-info {
  width: 100%;
  height: auto;
  padding: 16px;
  color: var(--color-white);
}
.entry-index {
  position: absolute;
  font-family: 'Suisse Intl Mono','Courier', monospace;
  font-size: 0.78rem;
  top: 0;
  left: 0;
  z-index: 2;
  padding: 1rem;
  color: white;
  mix-blend-mode: exclusion;
}
.note-excerpt a:hover .entry-info, .note-excerpt a:hover .author,
.note-excerpt a:hover {
  color: var(--color-black);
  background-color: transparent;
  text-decoration: none;
}
.note-excerpt .img {
  position: absolute;
  display: block;
  padding-bottom: 0;
  background: var(--color-white);
  width: 100%;
  height: 100%;
  object-fit: cover;
  top: 0;
  left: 0;
  z-index: -1;
}
.note-excerpt:hover .img {
  opacity: 0;
}
.note-excerpt:hover a {
  background: transparent;
}
.journal {
  margin-top: 3rem;
}
.note-excerpt-title {
  font-family: 'NT Bau Bold', 'Helvetica', sans-serif;
  font-size: 4vmin;
  text-indent: 1rem;
  font-style: normal;
  font-weight: 700;
  line-height: 95%; /* 38px */
  letter-spacing: -0.8px;
  text-transform: uppercase;
  margin-top: 2rem;
  margin-bottom: 1.5rem;
}
.entry-info .author {
  text-align: right;
  padding: 0;
}
.project-content, .about-top {
  margin-top: 3.5rem;
}
.project-content .project-title {
  padding: 3.125rem 1.5rem 0 1.5rem;
}
.project-description {
  padding: 3.125rem 0.75rem;
}
.project-description .label {
  padding: 0.75rem;
}
.credits {
  padding: 3.125rem 1.5rem;
}
.project-content .project-title h1, .about-top h1 {
  font-size: var(--title);
  text-transform: uppercase;
  font-family: 'NT Bau Bold','Helvetica',sans-serif;
  text-indent: 3rem;
  max-width: 50%;
  line-height: .9;
  margin-left: 50%;
  letter-spacing: -.25rem;
}
.project-description .description p {
  font-size: var(--paragraph);
  width: 50%;
  padding: 0 0.75rem;
}
.project-description .description, .other-videos {
  display: -webkit-flex;
  display: flex;
}
.stills, .bts, .other-videos {
  padding: 3.125rem 0;
}
.stills .label, .bts .label, .other-videos .label {
  padding: 0 1.5rem 1rem 1.5rem;
}
.stills ul, .stills li, .bts li, .bts ul, .entry figure ul {
  list-style: none;
  margin: 0;
}
.stills ul, .bts ul, .entry figure ul {
  white-space: nowrap;
  margin-bottom: -6px !important;
}

.stills li, .bts li, .entry figure ul li {
  display: inline-block;
  height: 60vmin;
  margin: -2px;
}
.stills figure, .bts figure, .entry .text figure {
  width: 100vw;
  cursor: grab;
  overflow: auto;
  /* overflow-x: scroll; */
  overflow-y: hidden;
}
/* horizontal scrollbar */
.stills figure::-webkit-scrollbar,
.bts figure::-webkit-scrollbar,
.entry figure::-webkit-scrollbar {
  height: 5px;
}

.stills figure::-webkit-scrollbar-track,
.bts figure::-webkit-scrollbar-track,
.entry figure::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 0px rgba(0, 0, 0, 0);
}

.stills figure::-webkit-scrollbar-thumb,
.bts figure::-webkit-scrollbar-thumb,
.entry figure::-webkit-scrollbar-thumb {
  height: 5px;
  background-color: #000;
}

.stills figure::-webkit-scrollbar:vertical,
.bts figure::-webkit-scrollbar:vertical,
.entry figure::-webkit-scrollbar:vertical {
  display: none;
}
.stills li img, .bts li img, .entry figure ul li img {
  height: 100%;
  width: auto;
  -webkit-user-drag: none;
  -khtml-user-drag: none;
  -moz-user-drag: none;
  -o-user-drag: none;
  user-drag: none;
}
.credits {
  display: -webkit-flex;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
.credit {
  width: 25%;
  margin: 0.75rem 0;
}
.credit > div {
  font-family: var(--font-family-mono);
  font-size: 0.875rem;
  text-transform: uppercase;
}
.credit > div:first-child {
  color: var(--color-text-grey);
}
.other-videos figure {
  width: 50%;
}
.other-videos {
  flex-wrap: wrap;
}
.other-videos .label {
  width: 100%;
}

/* The Team Styles */
.team {
  padding-top: 6.125rem;
  margin-bottom: 3rem;
}

.team-header {
  margin-bottom: 6.125rem;
}

.team-title {
  font-size: var(--title);
  text-transform: uppercase;
  font-family: 'NT Bau Bold','Helvetica',sans-serif;
  text-indent: 3rem;
  max-width: 62%;
  line-height: .9;
  padding: 0 1.5rem;
}

.members {
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
}

.team-member {
  width: 50%;
  margin-bottom: 2.5rem;
}

.member-info {
  padding: 1.5rem;
}

.member-info p.label {
  margin-bottom: 0.5rem;
}

.member-name {
  font-size: 1.5rem;
  font-family: 'NT Bau Bold', 'Helvetica',sans-serif;
  text-transform: uppercase;
  line-height: .95;
}

.member-bio {
  font-size: var(--paragraph);
  margin-top: 2rem;
}

/* Default styling */
.default {
  max-width: 50rem;
  display: block;
  margin: 6.125rem auto;
  padding: 1.5rem;
}

.default h1 {
  font-size: 2.5rem;
  text-transform: uppercase;
  font-family: 'NT Bau Bold', 'Helvetica', sans-serif;
  font-weight: bold;
  line-height: .9;
  letter-spacing: -.1rem;
}
.default p, .default .text a {
  font-size: 1.25rem;
  line-height: 1.5;
}

.default .text a {
  font-family: 'NT Bau', 'Helvetica', sans-serif;
  text-decoration: underline;
  text-transform: none;
}

@media screen and (max-width: 1280px) {
  .team-title {
    max-width: 80%;
  }
}

@media screen and (max-width: 1170px){
  .note-excerpt-title {
    font-size: 3.5vmin;
  }
  .grid.journal > .column {
    grid-column: span 4;
    min-height: 20rem;
  }
  .project-title h1 {
    font-size: 4.5rem;
    letter-spacing: -.15rem;
  }
  .team-title {
    max-width: 85%;
  }
  .member-bio {
    font-size: 1.1rem;
    line-height: 1.25;
  }
  .member-name {
    font-size: 1.35rem;
  }
}


@media screen and (max-width: 850px) {
  .logo, .menu {
    position: relative;
  }
  .header {
    position: fixed;
    z-index: 9;
    top: 0;
    left: 0;
  }
  .header.header-secondary {
    mix-blend-mode: normal;
    background: var(--background);
  }
  .logo img {
    display: none;
  }
  .header.header-secondary .logo img {
    display: block;
    filter: invert(1);
  }
  .logo-text {
    width: 11.25rem;
    margin-left: 5rem;
  }

  .logo img.mobile-logo, .hamburger-lines {
    display: block;
    z-index: 999;
  }

  .menu .checkbox {
    position: fixed;
    display: block;
    height: 4rem;
    width: 4rem;
    top: 0;
    right: 0;
    z-index: 5;
    opacity: 0;
    cursor: pointer;
  }

  .hamburger-lines {
    display: block;
    height: 0.75rem;
    width: 1.5rem;
    position: fixed;
    top: 1.25rem;
    right: 1rem;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .hamburger-lines .line {
    display: block;
    height: 1px;
    width: 100%;
    border-radius: 5px;
    background: black;
  }

  .hamburger-lines .line1 {
    transform-origin: 0% 0%;
    transition: transform 0.4s ease-in-out;
  }
  
  .hamburger-lines .line2 {
    transition: transform 0.2s ease-in-out;
  }
  
  .hamburger-lines .line3 {
    transform-origin: 0% 100%;
    transition: transform 0.4s ease-in-out;
  }

  .menu input[type="checkbox"]:checked ~ .hamburger-lines .line1 {
    transform: rotate(45deg);
  }
  
  .menu input[type="checkbox"]:checked ~ .hamburger-lines .line2 {
    transform: scaleY(0);
  }
  
  .menu input[type="checkbox"]:checked ~ .hamburger-lines .line3 {
    transform: translate(0,0.3rem) rotate(-45deg)
  }

  .logo {
    width: 65%;
    z-index: 10;
  }
  .menu {
    margin-top: 0;
    width: 100%;
    align-items: center;
    justify-content: center;
    color: var(--black);
    z-index: 9;
  }
  .header-secondary .menu {
    margin-top: 0;
    mix-blend-mode: normal;
  }
  .menu-links {
    display: none;
    background-color: var(--background);
    margin-top: 0;
    -webkit-transform: translateY(-8rem);
    -moz-transform: translateY(-8rem);
    -o-transform: translateY(-8rem);
    transform: translateY(-8rem);
    padding-top: 8rem;
  }
  .header-secondary .menu-links {
    -webkit-transform: none;
    -moz-transform: none;
    -o-transform: none;
    transform: none;
    padding-top: 0;
  }
  .menu a {
    width: 100%;
    text-align: center;
    padding: 0.625rem;
    border-bottom: solid 1px #A6A6A6;
  }
  .header-secondary .menu a {
    padding: 0.625rem;
  }
  .menu a:hover {
    text-decoration: none;
  }
  .menu a[aria-current] {
    text-decoration: none;
    background-color: #E6E6E6;
  }
  .menu input[type="checkbox"]:checked ~ .menu-links {
    display: block;
  }
  .footer {
    padding: 2rem 1rem;
  }
  .footer-description {
    display: none;
  }

  .note-excerpt-title, .default h1 {
    font-size: 2rem;
  }
  .grid.journal > .column {
    min-height: 20rem;
  }
  .note-excerpt header, .entry-info {
    height: 100%;
  }
  .entry-info {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .project-content .project-title h1, .team-title {
    text-indent: 3rem;
    max-width: 100%;
    margin-left: 0;
    font-size: 3rem;
    letter-spacing: -.2rem;
    overflow-wrap: break-word;
    word-break: break-word;
    -webkit-hyphens: auto;
    -ms-hyphens: auto;
    hyphens: auto;
  }
  .project-description .description {
    flex-direction: column;
  }
  .project-description .description p {
    font-size: 1rem;
    width: 100%;
    padding: 0 .5rem;
  }
  .project-content .project-title {
    padding: 2.5rem 1rem 1.25rem 1rem;
  }
  .project-description {
    padding: 1.25rem 0.5rem;
  }
  .stills, .bts {
    padding: 1.25rem 0;
  }
  .label, .stills .label, .bts .label {
    padding: 0.5rem;
  }
  .credits {
    padding: 1.25rem 1rem;
  }
  .credit, .other-videos figure, .team-member {
    width: 100%;
  }
  .stills li, .bts li, .entry .text figure ul li {
    height: 85vmin;
  }
  .team-title {
    letter-spacing: -.1rem;
  }
  .team {
    padding-top: 5rem;
  }
  .member-bio, .default p, .default .text a {
    font-size: 1.125rem;
  }
  .member-info p.label {
    margin-bottom: 0;
    padding-left: 0;
  }
  .team-header {
    margin-bottom: 5rem;
  }
}
