/*!
Theme Name: SLAPS
Theme URI: https://brandingthatslaps.com/
Author: Yannick Gregoire
Author URI: https://yannickgregoire.nl
Description: SLAPS theme
Version: 1.0.0
Requires PHP: 8.2
Text Domain: SLAPS
Tags: 
*/
/*--------------------------------------------------------------
# Defenitions
--------------------------------------------------------------*/
:root {
  --xl: 1920px;
  --lg: 1512px;
  --md: 1024px;
  --sm: 767px;
  --xs: 480px;
  --font-sans: "TradeGothicLTStd-Bold", sans-serif;
  --font-sans-italic: "TradeGothicLTStd-BoldObl", sans-serif;
  --font-condensed: "TradeGothicLTStd-BdCn20", sans-serif;
  --font-condensed-italic: "TradeGothicLTStd-BdCn20Obl", sans-serif;
  --font-code: "InputMono", monospace;
  --color-black: #000000;
  --color-white: #ffffff;
  --color-accent: #ff0000;
  --color-background: var(--color-white);
  --margin: 1.16rem;
  --gap: 0.8rem;
  --logo-height: 1.6rem;
  --nav-height: calc(var(--margin) + var(--logo-height) + var(--gap));
  --fs-p: 15px;
  --fs-p-sm: 0.8rem;
  --fs-p-md: 1.16rem;
  --fs-p-lg: 1.333333rem;
  --fs-h1: 9rem;
  --fs-h2: 2.35rem;
  --fs-h3: 1.5rem;
  --ls-heading: -0.085em;
  --transition-curve: cubic-bezier(0.005, 0.985, 0.22, 1);
  --transition-curve-inout: cubic-bezier(1, 0, 0, 1);
}
@media only screen and (max-width: 1920px) {
  :root {
    --fs-p: 15px;
  }
}
@media only screen and (max-width: 1512px) {
  :root {
    --fs-p: 10.125px;
  }
}
@media only screen and (max-width: 480px) {
  :root {
    --fs-p: 12px;
  }
}

@font-face {
  font-family: "TradeGothicLTStd-Bold";
  font-weight: normal;
  font-style: normal;
  src: url("fonts/TradeGothicLTStd-Bold.otf") format("opentype");
}
@font-face {
  font-family: "TradeGothicLTStd-BoldObl";
  font-weight: normal;
  font-style: normal;
  src: url("fonts/TradeGothicLTStd-BoldObl.otf") format("opentype");
}
@font-face {
  font-family: "TradeGothicLTStd-BdCn20";
  font-weight: normal;
  font-style: normal;
  src: url("fonts/TradeGothicLTStd-BdCn20.otf") format("opentype");
}
@font-face {
  font-family: "TradeGothicLTStd-BdCn20Obl";
  font-weight: normal;
  font-style: normal;
  src: url("fonts/TradeGothicLTStd-BdCn20Obl.otf") format("opentype");
}
@font-face {
  src: url("fonts/InputMono-Regular.woff2") format("woff2"), url("fonts/InputMono-Regular.woff") format("woff");
  font-family: "InputMono";
  font-style: normal;
  font-weight: normal;
}
@keyframes ticker {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-100%, 0, 0);
  }
}
@keyframes noise {
  0% {
    transform: translate3d(0, 9rem, 0);
  }
  10% {
    transform: translate3d(-1rem, -4rem, 0);
  }
  20% {
    transform: translate3d(-8rem, 2rem, 0);
  }
  30% {
    transform: translate3d(9rem, -9rem, 0);
  }
  40% {
    transform: translate3d(-2rem, 7rem, 0);
  }
  50% {
    transform: translate3d(-9rem, -4rem, 0);
  }
  60% {
    transform: translate3d(2rem, 6rem, 0);
  }
  70% {
    transform: translate3d(7rem, -8rem, 0);
  }
  80% {
    transform: translate3d(-9rem, 1rem, 0);
  }
  90% {
    transform: translate3d(6rem, -5rem, 0);
  }
  to {
    transform: translate3d(-7rem, 0, 0);
  }
}
@keyframes thumbnail-in {
  0% {
    transform: translate3d(-100%, 0, 0);
  }
  100% {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes thumbnail-out {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(100%, 0, 0);
  }
}
@keyframes delay-visible {
  0% {
    visibility: hidden;
  }
  100% {
    visibility: visible;
  }
}
/*--------------------------------------------------------------
# Generic
--------------------------------------------------------------*/
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
/* Document
	 ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
}

/* Sections
	 ========================================================================== */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block;
}

/* Grouping content
	 ========================================================================== */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace;
  font-size: 1em;
}

/* Text-level semantics
	 ========================================================================== */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
	 ========================================================================== */
/**
 * Remove the border on images inside links in IE 10.
 */
img {
  border-style: none;
}

/* Forms
	 ========================================================================== */
/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input {
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select {
  text-transform: none;
  all: unset;
  cursor: pointer;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */
fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *		`fieldset` elements in all browsers.
 */
legend {
  box-sizing: border-box;
  color: inherit;
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal;
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */
[type=checkbox],
[type=radio] {
  box-sizing: border-box;
  padding: 0;
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type=search] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

/* Interactive
	 ========================================================================== */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/* Misc
	 ========================================================================== */
/**
 * Add the correct display in IE 10+.
 */
template {
  display: none;
}

/**
 * Add the correct display in IE 10.
 */
[hidden] {
  display: none;
}

/* Inherit box-sizing to more easily change it's value on a component level.
@link http://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
*,
*::before,
*::after {
  box-sizing: inherit;
}

html {
  box-sizing: border-box;
}

html {
  font-size: 18px;
  line-height: 1.2em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: initial;
  min-height: 100%;
  height: auto;
}

body {
  height: auto;
  min-height: 100%;
  box-sizing: border-box;
  overflow-x: hidden;
  color: var(--color-black);
  text-transform: uppercase;
}
body.page-template-about, body.page-template-projects {
  color: var(--color-white);
  --color-background: var(--color-black);
}

a {
  color: var(--color-black);
  text-decoration: none;
}
a:hover {
  color: var(--color-black);
  text-decoration: underline;
}

.background {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: var(--color-background);
  z-index: -1;
}

.noise {
  top: -10rem;
  left: -10rem;
  width: calc(100% + 20rem);
  height: calc(100% + 20rem);
  z-index: 10;
  position: fixed;
  pointer-events: none;
  background-position: 50%;
  transform: translateZ(0);
  animation: noise 5s steps(5) infinite;
}

html,
body {
  font-size: var(--fs-p);
}

body {
  font-family: var(--font-code);
  line-height: 1.3em;
  font-weight: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
  margin: 0;
  font-family: var(--font-condensed);
  line-height: 0.8em;
  font-weight: normal;
}

h1,
.h1 {
  font-size: var(--fs-h1);
  letter-spacing: var(--ls-heading);
}

h2,
.h2 {
  font-size: var(--fs-h2);
  letter-spacing: var(--ls-heading);
}

h3,
.h3 {
  font-size: var(--fs-h3);
  letter-spacing: var(--ls-heading);
}

h4,
.h4 {
  font-size: var(--fs-h3);
  letter-spacing: var(--ls-heading);
}

h5,
.h5 {
  font-size: var(--fs-h3);
  letter-spacing: var(--ls-heading);
}

h6,
.h6 {
  font-size: var(--fs-h3);
  letter-spacing: var(--ls-heading);
}

p {
  font-size: var(--fs-p);
  margin-top: 0;
  letter-spacing: var(--ls-heading);
}
p:last-of-type {
  margin-bottom: 0;
}

.small {
  font-size: var(--fs-p-sm);
}

button,
input,
select,
optgroup,
ul,
textarea {
  color: var(--black);
  font-family: var(--font-mono);
  font-size: 1rem;
  line-height: 1.6em;
}

dfn,
cite,
em,
i {
  font-style: italic;
}

blockquote {
  margin: 0 1.5em;
}

address {
  margin: 0 0 1.5em;
}

pre {
  font-family: var(--font-pre);
  margin-bottom: 1.6em;
  line-height: 1.6em;
  max-width: 100%;
  overflow: auto;
  padding: 1.6em;
  margin-top: 0;
}

code,
kbd,
tt,
var {
  font-family: var(--font-code);
}

abbr,
acronym {
  cursor: help;
}

mark,
ins {
  text-decoration: none;
}

big {
  font-size: 125%;
}

/*--------------------------------------------------------------
# Components
--------------------------------------------------------------*/
.header {
  position: fixed;
  display: flex;
  justify-content: space-between;
  align-items: center;
  top: 0;
  left: 0;
  width: 100%;
  padding: var(--margin) var(--margin) var(--gap);
  height: var(--nav-height);
  text-transform: uppercase;
  color: var(--color-white);
  text-transform: uppercase;
  mix-blend-mode: difference;
  z-index: 500;
}
@media only screen and (max-width: 480px) {
  .header {
    padding: var(--margin) var(--gap) var(--gap);
  }
}
.header > * {
  flex: 1;
}
.header .logo {
  line-height: 0;
}
.header .logo a {
  display: inline-block;
  height: var(--logo-height);
  line-height: 0;
}
.header .logo a svg {
  height: 100%;
  width: auto;
}
.header .navigation {
  text-align: center;
  font-size: var(--fs-p-lg);
  line-height: 1;
  cursor: pointer;
}
.header .navigation .open {
  display: inline-block;
}
.header .navigation .close {
  display: none;
}
@media only screen and (max-width: 480px) {
  .header .navigation {
    text-align: right;
  }
}
.navigation-open .header .navigation .open {
  display: none;
}
.navigation-open .header .navigation .close {
  display: inline-block;
}
.header .scroll {
  text-align: right;
}
@media only screen and (max-width: 480px) {
  .header .scroll {
    display: none;
  }
}
.admin-bar .header {
  margin-top: 32px;
}
@media screen and (max-width: 782px) {
  .admin-bar .header {
    margin-top: 46px;
  }
}

.header-overlay {
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  width: calc(100% - var(--margin) * 2);
  height: 1px;
  opacity: 0;
  top: 0;
  left: 0;
  margin: var(--margin);
  background-color: rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  z-index: 400;
  transition: height 0.3s var(--transition-curve);
  pointer-events: none;
}
@media only screen and (max-width: 480px) {
  .header-overlay {
    align-items: flex-end;
    width: calc(100% - var(--gap) * 2);
    margin: var(--margin) var(--gap);
  }
}
.header-overlay nav {
  width: 80%;
}
@media only screen and (max-width: 480px) {
  .header-overlay nav {
    width: 100%;
    margin-bottom: calc(var(--margin) * 2);
  }
}
.header-overlay nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
@media only screen and (max-width: 480px) {
  .header-overlay nav ul {
    padding-bottom: var(--margin);
  }
}
.header-overlay nav ul li {
  display: flex;
  overflow: hidden;
}
.header-overlay nav ul li a {
  font-family: var(--font-sans);
  font-size: 11.5rem;
  letter-spacing: var(--ls-heading);
  line-height: 1em;
  text-decoration: none;
  margin-top: 0.1em;
  margin-bottom: -0.1em;
  transform: translate3d(0, 100%, 0);
  transition: transform 1s var(--transition-curve);
  transition-duration: 0s;
  transition-delay: 0s;
}
@media only screen and (max-width: 480px) {
  .header-overlay nav ul li a {
    font-size: 7.1rem;
  }
}
.navigation-open .header-overlay {
  display: flex;
  height: calc(100vh - var(--margin) * 2);
  opacity: 1;
  pointer-events: all;
}
.navigation-open .header-overlay nav ul li a {
  transform: translate3d(0, 0, 0);
}
.navigation-open .header-overlay nav ul li:nth-child(0) a {
  transition-duration: 0.2s;
  transition-delay: 0s;
}
.navigation-open .header-overlay nav ul li:nth-child(1) a {
  transition-duration: 0.7s;
  transition-delay: 0.05s;
}
.navigation-open .header-overlay nav ul li:nth-child(2) a {
  transition-duration: 1.2s;
  transition-delay: 0.1s;
}
.navigation-open .header-overlay nav ul li:nth-child(3) a {
  transition-duration: 1.7s;
  transition-delay: 0.15s;
}
.navigation-open .header-overlay nav ul li:nth-child(4) a {
  transition-duration: 2.2s;
  transition-delay: 0.2s;
}
.navigation-open .header-overlay nav ul li:nth-child(5) a {
  transition-duration: 2.7s;
  transition-delay: 0.25s;
}
.navigation-open .header-overlay nav ul li:nth-child(6) a {
  transition-duration: 3.2s;
  transition-delay: 0.3s;
}
.navigation-open .header-overlay nav ul li:nth-child(7) a {
  transition-duration: 3.7s;
  transition-delay: 0.35s;
}
.navigation-open .header-overlay nav ul li:nth-child(8) a {
  transition-duration: 4.2s;
  transition-delay: 0.4s;
}
.navigation-open .header-overlay nav ul li:nth-child(9) a {
  transition-duration: 4.7s;
  transition-delay: 0.45s;
}
.navigation-open .header-overlay nav ul li:nth-child(10) a {
  transition-duration: 5.2s;
  transition-delay: 0.5s;
}

.navigation ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
}
.navigation ul li {
  margin-right: calc(var(--gap) * 2);
}
.navigation ul li a {
  color: var(--color-white);
  text-decoration: none;
  text-transform: uppercase;
}
.navigation ul li:last-child {
  margin-right: 0;
}

.transition {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 100;
}
.transition .curtain {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100vw;
  height: 100vh;
  background: var(--color-black);
  transform: translate3D(0, 100%, 0);
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  perspective: 1000;
}
.transition .curtain .animation {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50vw;
}
.transition .curtain .animation .slides {
  position: absolute;
  width: 100%;
  height: 0;
  padding-top: 56.25%;
  background: green;
  transform-origin: center center;
}
.transition .curtain .animation .slides .slide {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  visibility: hidden;
}
.transition .curtain .animation .slides .slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.transition .curtain .animation .logo {
  position: relative;
  width: 100%;
  margin: auto;
}
.transition .curtain .animation .logo img {
  width: 100%;
  height: auto;
}

.footer {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  width: 100%;
  padding: 10rem var(--margin) calc(var(--margin) * 1);
  color: var(--color-white);
  background: var(--color-background);
  text-transform: uppercase;
  position: relative;
}
@media only screen and (max-width: 480px) {
  .footer {
    padding: calc(var(--margin) * 2) var(--gap) calc(var(--margin) * 1);
    flex-wrap: wrap;
  }
}
.footer > * {
  mix-blend-mode: difference;
}
.footer a {
  color: var(--white);
}
.footer .logo {
  flex-basis: 25%;
  padding-bottom: calc(var(--margin) + var(--fs-p));
}
@media only screen and (max-width: 480px) {
  .footer .logo {
    order: 1;
    flex-basis: 60%;
  }
}
.footer .logo a {
  display: inline-block;
  width: auto;
  color: var(--color-white);
}
.footer .logo a img {
  height: 2rem;
  width: auto;
  margin-bottom: var(--gap);
}
.footer .logo p {
  margin: calc(var(--margin) * 1.5) 0;
  font-family: var(--font-condensed);
}
.footer .payoff {
  flex: 1;
  text-align: center;
}
@media only screen and (max-width: 480px) {
  .footer .payoff {
    order: 3;
    flex-basis: 10%;
  }
  .footer .payoff svg {
    display: none;
  }
}
.footer .payoff svg {
  width: auto;
  height: 5.6rem;
  padding-bottom: calc(var(--margin));
}
.footer .payoff svg path {
  fill: var(--color-white);
}
.footer .payoff p {
  font-size: var(--fs-p-sm);
}
.footer .social {
  flex-basis: 25%;
  padding-bottom: calc(var(--margin) + var(--fs-p));
  text-align: right;
}
@media only screen and (max-width: 480px) {
  .footer .social {
    order: 2;
    flex-basis: 40%;
  }
}
.footer ul {
  padding: 0;
  margin: 0;
}
.footer ul li {
  list-style: none;
}
.page-template-default .footer {
  color: var(--color-white);
  --color-background: var(--color-black);
}
.error404 .footer {
  position: fixed;
  width: 100%;
  bottom: 0;
  --color-background: transparent;
}

.fixed {
  position: fixed;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: var(--margin);
  font-size: var(--font-size-s);
  color: var(--color-white);
  text-transform: uppercase;
  mix-blend-mode: difference;
  z-index: 500;
  line-height: 1em;
}
@media only screen and (max-width: 480px) {
  .fixed {
    padding: var(--margin) var(--gap);
  }
}
.fixed a {
  color: var(--color-white);
  text-decoration: none;
}
.fixed .times {
  flex: 1;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
}
.fixed .times .time {
  margin-right: var(--gap);
}
@media only screen and (max-width: 480px) {
  .fixed .times .time {
    display: none;
  }
}

/*--------------------------------------------------------------
# Pages
--------------------------------------------------------------*/
.article--about section {
  padding: var(--margin) var(--margin) calc(var(--margin) * 8.75);
}
@media only screen and (max-width: 480px) {
  .article--about section {
    padding: var(--margin) var(--gap) calc(var(--margin) * 8.75);
  }
}
.article--about section h2 {
  font-size: var(--fs-p-lg);
  font-family: var(--font-mono);
  font-weight: normal;
  border-bottom: 1px solid var(--color-white);
  padding-bottom: var(--gap);
  margin-bottom: var(--margin);
}
.article--about section p {
  font-size: var(--fs-p-md);
}
.article--about section a {
  color: var(--color-white);
}
.article--about .intro {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  padding: calc(var(--nav-height) * 3) var(--margin) calc(var(--nav-height) * 2);
  margin-bottom: calc(var(--margin) * 8.75);
  text-align: center;
}
@media only screen and (max-width: 480px) {
  .article--about .intro br {
    display: none;
  }
}
.article--about .intro .title {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.article--about .intro .title h1 {
  font-family: var(--font-sans);
  font-size: 4.3rem;
  line-height: 1em;
  text-decoration-thickness: 0.05em;
  text-underline-offset: 0.1em;
  width: 60%;
  margin: 0 auto;
}
@media only screen and (max-width: 1024px) {
  .article--about .intro .title h1 {
    font-size: 3.3rem;
  }
}
@media only screen and (max-width: 480px) {
  .article--about .intro .title h1 {
    font-size: 2.3rem;
    width: 90%;
  }
}
.article--about .intro .surtitle {
  margin-bottom: calc(var(--gap));
  font-family: var(--font-sans);
  font-size: 7.3rem;
  line-height: 1em;
}
@media only screen and (max-width: 1024px) {
  .article--about .intro .surtitle {
    font-size: 5.3rem;
  }
}
@media only screen and (max-width: 480px) {
  .article--about .intro .surtitle {
    font-size: 2.3rem;
  }
}
.article--about .intro .subtitle {
  justify-self: flex-end;
  width: 40%;
  font-size: var(--fs-p-lg);
}
@media only screen and (max-width: 767px) {
  .article--about .intro .subtitle {
    width: 80%;
  }
}
@media only screen and (max-width: 480px) {
  .article--about .intro .subtitle {
    width: 100%;
    font-size: var(--fs-p-sm);
  }
}
.article--about .intro .mission {
  width: 100%;
}
.article--about .intro .mission h1 {
  margin-bottom: var(--gap);
  font-family: var(--font-sans);
  font-size: 10vw;
}
@media only screen and (max-width: 480px) {
  .article--about .intro .mission h1 {
    line-height: 1em;
  }
}
.article--about .intro .mission h1 u {
  text-decoration-thickness: 0.05em;
  text-underline-offset: 0.1em;
}
.article--about .intro .arrow {
  position: absolute;
  display: flex;
  justify-content: flex-end;
  width: 85%;
  margin: 0 auto;
  bottom: calc(var(--margin) * 3);
}
.article--about .intro .arrow svg {
  width: 6.25rem;
  height: auto;
  align-self: flex-end;
  margin-top: var(--margin);
}
@media only screen and (max-width: 480px) {
  .article--about .intro .arrow svg {
    display: none;
  }
}
.article--about .clients ul {
  position: relative;
  list-style: none;
  padding: 0;
  -moz-columns: 2;
       columns: 2;
  width: 50%;
}
.article--about .clients ul li .logo {
  position: absolute;
  width: 30vw;
  max-width: 300px;
  height: auto;
  top: 0;
  right: 0;
  transform: translateX(100%);
  overflow: hidden;
  visibility: hidden;
  animation: delay-visible 1s;
  animation-fill-mode: forwards;
  animation-delay: 1s;
}
@media only screen and (max-width: 480px) {
  .article--about .clients ul li .logo {
    display: none;
  }
}
.article--about .clients ul li .logo img {
  width: 100%;
  height: auto;
  transform: translate3d(100%, 0, 0);
  animation: thumbnail-out 1s var(--transition-curve);
  animation-fill-mode: forwards;
}
.article--about .clients ul li:hover .logo img {
  animation: thumbnail-in 1s var(--transition-curve);
  animation-fill-mode: forwards;
}
@media only screen and (max-width: 480px) {
  .article--about .clients ul {
    width: 100%;
  }
}
.article--about .roles p {
  width: 50%;
}
@media only screen and (max-width: 480px) {
  .article--about .roles p {
    width: 100%;
    font-size: var(--fs-p-sm);
  }
}
.article--about .thanks {
  margin-bottom: var(--margin);
}
.article--about .thanks .ticker-bar {
  display: flex;
  white-space: nowrap;
  overflow: hidden;
}
.article--about .thanks .ticker-bar .ticker-item {
  display: flex;
  animation: ticker 10s linear 0s infinite;
}
.article--about .image {
  width: 100%;
  height: 100vh;
  padding: var(--margin);
}
@media only screen and (max-width: 767px) {
  .article--about .image {
    height: 50vh;
  }
}
@media only screen and (max-width: 480px) {
  .article--about .image {
    padding: var(--gap);
  }
}
.article--about .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center 20%;
     object-position: center 20%;
}

.article--archive {
  position: fixed;
  display: flex;
  flex-direction: column;
  top: 0;
  width: 100%;
  height: 100vh;
}
.article--archive .video {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.article--archive .video video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.article--archive .projects {
  position: absolute;
  height: 50vh;
  top: 50%;
  margin-bottom: var(--margin);
  transform: translateY(-50%);
}
.article--archive .projects .project {
  --cms-width: 20vw;
  --cms-offset-x: 0;
  --width: var(--cms-width);
  --offset-x: calc(var(--width) / 100 * var(--cms-offset-x));
  height: 100%;
  width: var(--width);
  margin-left: var(--offset-x);
  cursor: pointer;
}
@media only screen and (max-width: 767px) {
  .article--archive .projects .project {
    --width: calc(var(--cms-width) * 1.5);
  }
}
@media only screen and (max-width: 480px) {
  .article--archive .projects .project {
    --width: calc(var(--cms-width) * 2);
  }
}
.article--archive .projects .project .attachment {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
.article--archive .projects .project .attachment img,
.article--archive .projects .project .attachment video {
  --cms-offset-y: 0;
  --offset-y: var(--cms-offset-y);
  width: 100%;
  height: auto;
  transform: translateY(var(--offset-y));
}
.article--archive .projects .ticker-bar {
  --cms-speed: 100s;
  --speed: var(--cms-speed);
  transform: translateX(-50%);
  display: flex;
  height: 100%;
}
.article--archive .projects .ticker-bar .ticker-item {
  display: flex;
  will-change: transform;
}
.article--archive .project-details {
  display: none;
  position: relative;
  left: 0;
  bottom: 0;
  color: var(--color-white);
  align-self: center;
  justify-self: flex-end;
  margin-top: auto;
  width: 20%;
  margin-bottom: var(--margin);
  padding: 0 var(--gap);
}
@media only screen and (max-width: 767px) {
  .article--archive .project-details {
    width: 50%;
  }
}
@media only screen and (max-width: 480px) {
  .article--archive .project-details {
    width: 100%;
  }
}
.article--archive .project-details p {
  margin-bottom: 0;
}

.page-template-archive footer {
  display: none;
}
.page-template-archive header .scroll {
  visibility: hidden;
}
.page-template-archive header,
.page-template-archive .fixed {
  mix-blend-mode: normal;
  color: var(--color-white);
}

.article--contact {
  position: fixed;
  top: 0;
  width: 100%;
  height: 100vh;
}
.article--contact a {
  color: var(--color-white);
}
.article--contact .video {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
@media only screen and (max-width: 480px) {
  .article--contact .video {
    display: none;
  }
}
.article--contact .video video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.article--contact .intro {
  position: fixed;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  width: 100%;
  bottom: 0;
  left: 0;
  padding: var(--margin);
  color: var(--color-white);
}
@media only screen and (max-width: 480px) {
  .article--contact .intro {
    display: none;
  }
}
.article--contact .intro .cta {
  margin-bottom: 1rem;
  color: var(--color-white);
  text-decoration: none;
}
@media only screen and (max-width: 480px) {
  .article--contact .intro .cta {
    flex-basis: 100%;
  }
}
.article--contact .intro .cta svg {
  width: 6.25rem;
  height: auto;
  margin-bottom: var(--margin);
}
.article--contact .intro .cta h1 {
  font-size: 5.5rem;
  line-height: 1em;
  text-decoration: underline;
  text-decoration-thickness: 0.05em;
  text-underline-offset: 0.1em;
}
.article--contact .intro .social h2 {
  font-size: 3rem;
  margin-bottom: var(--gap);
}
.article--contact .intro .social section {
  display: flex;
  gap: var(--gap);
  text-align: left;
}
.article--contact .intro .social section p {
  flex-basis: 50%;
}
.article--contact .intro-mobile {
  display: none;
  text-align: center;
}
@media only screen and (max-width: 480px) {
  .article--contact .intro-mobile {
    display: block;
  }
}
.article--contact .intro-mobile a {
  color: var(--color-black);
}
.article--contact .intro-mobile h1 {
  margin-top: calc(var(--margin) * 4);
  font-size: 3rem;
  font-family: var(--font-sans);
}
.article--contact .intro-mobile h3 {
  font-family: var(--font-sans);
}
.article--contact .form {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100vh;
  transform: translate3d(0, 100%, 0);
  transition: transform 1s var(--transition-curve);
  background-color: rgba(255, 255, 255, 0.35);
  -webkit-backdrop-filter: blur(30px);
          backdrop-filter: blur(30px);
  z-index: 400;
}
@media only screen and (max-width: 480px) {
  .article--contact .form {
    justify-content: space-between;
    padding: 15vh var(--margin);
    transform: translate3d(0, 0, 0);
  }
}
.form-open .article--contact .form {
  transform: translate3d(0, 0, 0);
}
.article--contact .form .wpform {
  width: 50%;
  margin: 0;
}
@media only screen and (max-width: 480px) {
  .article--contact .form .wpform {
    width: 100%;
  }
}
.article--contact .form .wpform * {
  text-transform: uppercase;
  font-size: var(--fs-p);
}
.article--contact .form .wpform .wpforms-required-label {
  display: none;
}
.article--contact .form .wpform label.wpforms-error {
  margin-left: var(--gap);
  font-size: var(--fs-p);
  color: var(--color-black);
}
.article--contact .form .wpform input.wpforms-error {
  border: none !important;
}
@media only screen and (max-width: 480px) {
  .article--contact .form .wpform .wpforms-field {
    padding: calc(var(--gap) * 0.5) 0;
  }
}
.article--contact .form .wpform .wpforms-field-label {
  margin-right: var(--gap);
  font-size: var(--fs-p);
  font-weight: normal;
  margin: 0 var(--gap) 0 0;
}
.article--contact .form .wpform input[type=text],
.article--contact .form .wpform input[type=email],
.article--contact .form .wpform button[type=submit],
.article--contact .form .wpform textarea {
  height: auto;
  padding: 0;
  background: transparent;
  border: none;
}
.article--contact .form .wpform textarea {
  margin-top: var(--gap);
}
@media only screen and (max-width: 480px) {
  .article--contact .form .wpform textarea {
    height: 1rem !important;
  }
}
.article--contact .form .wpform button[type=submit]:hover {
  padding: 0;
  background: transparent;
  border: none;
}
.article--contact .form .wpform .wpforms-submit-container {
  text-align: center;
}
@media only screen and (max-width: 480px) {
  .article--contact .form .wpform .wpforms-submit-container {
    text-align: right;
  }
}
.article--contact .form .wpform .wpforms-field.wpforms-field-email,
.article--contact .form .wpform .wpforms-field.wpforms-field-name {
  display: flex;
}
.article--contact .form .wpform .wpforms-field.wpforms-field-email input,
.article--contact .form .wpform .wpforms-field.wpforms-field-name input {
  flex: 1;
  max-width: none;
  font-size: var(--fs-p);
}
.article--contact .form .wpforms-confirmation-container-full {
  height: auto;
  padding: 0;
  background: transparent;
  border: none;
}
.article--contact .fixed {
  justify-content: flex-end;
  text-align: right;
}

.page-template-contact footer {
  display: none;
}
.page-template-contact header .scroll {
  visibility: hidden;
}
.page-template-contact .fixed {
  pointer-events: none;
}
.page-template-contact .fixed .tunes {
  display: none;
}

.form-open .header,
.form-open .fixed,
.form-open a {
  mix-blend-mode: normal;
  color: var(--color-black);
}
.form-open .article--contact .intro,
.form-open .article--contact .intro .cta {
  color: var(--color-black);
}
.form-open svg path {
  fill: var(--color-black);
}

.article--home {
  color: var(--color-white);
}
.article--home .video {
  position: relative;
  margin-bottom: calc(var(--gap) * 5);
  background: var(--color-black);
  line-height: 0;
}
@media only screen and (max-width: 480px) {
  .article--home .video {
    display: none;
  }
}
.article--home .video video {
  width: 100%;
  height: 100vh;
  -o-object-fit: cover;
     object-fit: cover;
}
@media only screen and (max-width: 480px) {
  .article--home .video video {
    height: 56.25vw;
    height: 70vh;
  }
}
.article--home .video .arrow {
  position: absolute;
  width: 90px;
  left: 50%;
  bottom: var(--margin);
  transform: translateX(-50%);
  mix-blend-mode: difference;
}
@media only screen and (max-width: 1920px) {
  .article--home .video .arrow {
    width: 60px;
  }
}
.article--home .video .arrow svg {
  width: 100%;
  height: auto;
}
.article--home .intro {
  position: absolute;
  width: 100%;
  height: 100vh;
  pointer-events: none;
  z-index: 1;
}
@media only screen and (max-width: 480px) {
  .article--home .intro {
    display: none;
  }
}
.article--home .intro canvas {
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  transform: translate3d(0, 0, 0);
}
.article--home .payoff {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: calc(var(--margin) * 4) calc(var(--margin)) var(--margin);
  color: var(--color-black);
  background: var(--color-white);
  height: 100vh;
}
@media only screen and (max-width: 480px) {
  .article--home .payoff {
    padding: calc(var(--margin) * 2) calc(var(--gap)) var(--margin);
  }
}
.article--home .payoff .surtitle {
  margin: calc(var(--margin) * 2) 0;
  text-align: center;
}
@media only screen and (max-width: 480px) {
  .article--home .payoff .surtitle {
    display: none;
  }
}
.article--home .payoff .title {
  width: 100%;
  margin: auto 0;
  text-align: right;
}
@media only screen and (max-width: 480px) {
  .article--home .payoff .title {
    align-self: flex-end;
    margin: 80% 0 0;
  }
}
.article--home .payoff .title svg {
  width: 100%;
  height: auto;
}
@media only screen and (max-width: 480px) {
  .article--home .payoff .title svg {
    position: absolute;
    width: 80vh;
    left: var(--gap);
    bottom: var(--margin);
    transform-origin: top left;
    transform: rotate(-90deg) translateX(-20%);
    text-align: left;
  }
}
.article--home .payoff .title a {
  display: inline-block;
  margin-top: calc(var(--margin) * 2);
  margin-right: 10%;
  font-size: var(--fs-p-lg);
}
@media only screen and (max-width: 480px) {
  .article--home .payoff .title a {
    font-size: var(--fs-p);
  }
}
.article--home .payoff .text {
  display: flex;
  flex-direction: column;
  text-align: right;
}
.article--home .featured {
  color: var(--color-white);
}
.article--home .featured > ul {
  width: 100%;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}
.article--home .featured > ul > li {
  display: block;
  width: 100%;
}
.article--home .featured > ul > li a {
  --blur: 30px;
  display: block;
  position: relative;
  width: 100%;
  height: 100vh;
  color: var(--color-white);
  text-decoration: none;
  overflow: hidden;
}
@media only screen and (max-width: 480px) {
  .article--home .featured > ul > li a {
    height: auto;
    color: var(--color-black);
  }
}
.article--home .featured > ul > li a .attachment {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
@media only screen and (max-width: 480px) {
  .article--home .featured > ul > li a .attachment {
    position: relative;
  }
}
.article--home .featured > ul > li a .attachment img,
.article--home .featured > ul > li a .attachment video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transform: translate3d(0, 0, 0) scale3d(1.1, 1.1, 1);
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  filter: blur(var(--blur));
  transition: filter 2s var(--transition-curve), transform 2s var(--transition-curve);
}
@media only screen and (max-width: 480px) {
  .article--home .featured > ul > li a .attachment img,
  .article--home .featured > ul > li a .attachment video {
    height: auto;
    filter: none;
    transform: none;
  }
}
.article--home .featured > ul > li a .text {
  position: absolute;
  top: 0;
  left: 0;
  padding: calc(var(--margin) * 2) var(--margin);
}
@media only screen and (max-width: 480px) {
  .article--home .featured > ul > li a .text {
    position: relative;
    display: flex;
    padding: calc(var(--margin) * 1) var(--gap);
  }
}
@media only screen and (max-width: 480px) {
  .article--home .featured > ul > li a .text h1 {
    font-size: 4rem;
    flex-basis: 50%;
  }
}
.article--home .featured > ul > li a .text h2 {
  font-family: var(--font-condensed-italic);
}
@media only screen and (max-width: 480px) {
  .article--home .featured > ul > li a .text h2 {
    text-align: right;
  }
}
.article--home .featured > ul > li a .text .arrow svg {
  width: calc(var(--logo-height) * 2);
  height: auto;
  margin: var(--gap) 0;
}
@media only screen and (max-width: 480px) {
  .article--home .featured > ul > li a .text .arrow svg {
    width: calc(var(--logo-height) * 1.2);
    margin: var(--gap) 0 0 0;
  }
  .article--home .featured > ul > li a .text .arrow svg path {
    fill: var(--color-black);
  }
}
.article--home .featured > ul > li a .text .arrow span {
  display: none;
  font-weight: bold;
}
@media only screen and (max-width: 480px) {
  .article--home .featured > ul > li a .text .arrow span {
    display: inline-block;
  }
}
.article--home .featured > ul > li a .text ul {
  font-size: var(--fs-p-sm);
}
@media only screen and (max-width: 480px) {
  .article--home .featured > ul > li a .text ul {
    display: none;
  }
}
.article--home .featured > ul > li a .text .details {
  display: flex;
  flex-direction: column;
}
@media only screen and (max-width: 480px) {
  .article--home .featured > ul > li a .text .details {
    flex-basis: 50%;
    align-items: flex-end;
  }
}
.article--home .featured > ul > li a ul {
  margin: var(--gap) 0;
  padding: 0;
  list-style: none;
}
.article--home .featured > ul > li a p {
  font-family: var(--font-sans);
}
@media only screen and (max-width: 480px) {
  .article--home .featured > ul > li a p {
    display: none;
  }
}
.article--home .featured > ul > li a.in-view img,
.article--home .featured > ul > li a.in-view video {
  filter: blur(0);
  transform: translate3d(0, 0, 0) scale3d(1, 1, 1);
}
.article--home .tagcloud {
  position: relative;
  width: 100%;
  color: var(--color-black);
  overflow: hidden;
}
@media only screen and (max-width: 480px) {
  .article--home .tagcloud {
    margin: calc(var(--margin) * 2) 0;
  }
}
.article--home .tagcloud .heading {
  position: absolute;
  width: 100%;
  top: calc(var(--margin) * 4);
  color: var(--color-black);
  text-align: center;
}
@media only screen and (max-width: 480px) {
  .article--home .tagcloud .heading {
    top: var(--margin);
  }
}
.article--home .tagcloud .footing {
  position: absolute;
  width: 100%;
  bottom: calc(var(--margin) * 4);
  color: var(--color-black);
  text-align: center;
}
@media only screen and (max-width: 480px) {
  .article--home .tagcloud .footing {
    bottom: var(--margin);
  }
}
.article--home .tagcloud .cloud {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.article--home .tagcloud .cloud .ticker-bar {
  --cms-speed: 100s;
  --speed: var(--cms-speed);
  display: flex;
  white-space: nowrap;
  transform: translateX(-50%) translateY(-50%);
}
.article--home .tagcloud .cloud .ticker-bar .ticker-item {
  display: flex;
}
.article--home .tagcloud .cloud .title {
  position: absolute;
  top: 50%;
  font-family: var(--font-sans);
  font-size: 17rem;
  letter-spacing: var(--ls-heading);
  z-index: 75;
}
@media only screen and (max-width: 480px) {
  .article--home .tagcloud .cloud .title {
    font-size: 4rem;
  }
}
.article--home .tagcloud .cloud .title span {
  line-height: 1em;
  display: inline-block;
  flex-wrap: nowrap;
  padding-right: calc(var(--margin) * 3);
}
.article--home .tagcloud .cloud .images {
  display: none;
}
.article--home .tagcloud .cloud .tags {
  margin: 0 auto;
}
.article--home .tagcloud .cloud .tags .tagcloud--item {
  width: 12.5vw;
}
@media only screen and (max-width: 480px) {
  .article--home .tagcloud .cloud .tags .tagcloud--item {
    width: 22.5vw;
  }
}
.article--home .tagcloud .cloud .tags .tagcloud--item img {
  width: 100%;
  height: auto;
  transform: translateY(-25%);
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
@media only screen and (max-width: 480px) {
  .article--home .tagcloud .cloud .tags .tagcloud--item img {
    transform: translateY(25%);
  }
}
.article--home .tagcloud a {
  font-size: var(--fs-p-lg);
}
@media only screen and (max-width: 480px) {
  .article--home .tagcloud a {
    font-size: var(--fs-p);
  }
}

.article--project .text {
  position: fixed;
  display: flex;
  width: calc(37.5vw - (var(--margin)));
  height: 100vh;
  margin: 0 var(--gap) 0 var(--margin);
  padding: var(--nav-height) 0 var(--margin);
  top: 0;
  left: 0;
  text-transform: uppercase;
}
@media only screen and (max-width: 1024px) {
  .article--project .text {
    position: relative;
    flex-direction: column;
    width: 100%;
    height: auto;
    padding: 0;
    margin: 0;
  }
}
.article--project .text .jumbo {
  display: none;
}
@media only screen and (max-width: 1024px) {
  .article--project .text .jumbo {
    display: inline-block;
  }
}
.article--project .text .jumbo .video {
  width: 100%;
  margin-bottom: calc(var(--gap) * 4);
}
.article--project .text .jumbo .video video {
  width: 100%;
  height: auto;
  margin: 0;
}
.article--project .text .jumbo .image {
  line-height: 0;
  margin-bottom: calc(var(--gap) * 2);
}
.article--project .text .jumbo .image img {
  width: 100%;
  height: auto;
}
.article--project .text .body {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  padding-right: 20%;
}
@media only screen and (max-width: 1024px) {
  .article--project .text .body {
    display: inline-block;
    margin: var(--margin) var(--margin) calc(var(--margin) * 4);
  }
}
@media only screen and (max-width: 480px) {
  .article--project .text .body {
    margin: var(--margin) var(--gap) calc(var(--gap) * 4);
    padding-right: 0;
  }
}
.article--project .text .body .title {
  margin-bottom: var(--margin);
}
.article--project .text .body .title h1 {
  line-height: 0.8em;
  margin-bottom: 0%;
}
.article--project .text .body .title h2 {
  font-family: var(--font-condensed-italic);
  line-height: 0.7em;
}
.article--project .text .body .description {
  margin-bottom: var(--margin);
}
.article--project .text .body .categories p {
  margin-bottom: 1em;
}
.article--project .text .body .categories ul {
  text-transform: uppercase;
  margin: 0;
  padding: 0;
  line-height: 1.3em;
}
.article--project .text .body .categories ul li {
  margin: 0;
  padding: 0;
  list-style: none;
}
.article--project .attachments {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  height: auto;
  padding: var(--nav-height) 0 0;
  z-index: 1;
}
@media only screen and (max-width: 1024px) {
  .article--project .attachments {
    padding: 0;
  }
}
.article--project .attachments .video {
  line-height: 0;
  margin-bottom: calc(var(--gap) * 5);
}
@media only screen and (max-width: 1024px) {
  .article--project .attachments .video:first-child {
    display: none;
  }
}
.article--project .attachments .video video {
  width: 100%;
  height: auto;
}
.article--project .attachments .video.video--small {
  align-self: flex-end;
  width: calc(62.5vw - var(--margin) - var(--gap));
  margin-right: var(--margin);
}
@media only screen and (max-width: 1024px) {
  .article--project .attachments .video.video--small {
    margin-left: var(--margin);
    width: calc(100vw - var(--margin) * 2);
  }
}
@media only screen and (max-width: 480px) {
  .article--project .attachments .video.video--small {
    margin-left: var(--gap);
    margin-right: var(--gap);
    width: calc(100vw - var(--gap) * 2);
  }
}
.article--project .attachments .video.video--large {
  margin-left: var(--margin);
  margin-right: var(--margin);
}
@media only screen and (max-width: 480px) {
  .article--project .attachments .video.video--large {
    margin-left: var(--gap);
    margin-right: var(--gap);
  }
}
.article--project .attachments .video.video--large:first-child {
  height: calc(100vh - var(--nav-height) - var(--margin));
}
.article--project .attachments .video.video--large:first-child video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.article--project .attachments .image {
  line-height: 0;
  margin-bottom: calc(var(--gap) * 4);
}
@media only screen and (max-width: 1024px) {
  .article--project .attachments .image {
    margin-bottom: calc(var(--gap) * 2);
  }
  .article--project .attachments .image:first-child {
    display: none;
  }
}
.article--project .attachments .image img {
  width: 100%;
  height: auto;
}
.article--project .attachments .image.image--small {
  align-self: flex-end;
  width: calc(62.5vw - var(--margin) - var(--gap));
  margin-right: var(--margin);
}
@media only screen and (max-width: 1024px) {
  .article--project .attachments .image.image--small {
    margin-left: var(--margin);
    width: calc(100vw - var(--margin) * 2);
  }
}
@media only screen and (max-width: 480px) {
  .article--project .attachments .image.image--small {
    margin-left: var(--gap);
    margin-right: var(--gap);
    width: calc(100vw - var(--gap) * 2);
  }
}
.article--project .attachments .image.image--large {
  margin-left: var(--margin);
  margin-right: var(--margin);
}
@media only screen and (max-width: 480px) {
  .article--project .attachments .image.image--large {
    margin-left: var(--gap);
    margin-right: var(--gap);
  }
}
.article--project .attachments .image.image--large:first-child {
  height: calc(100vh - var(--nav-height) - var(--margin));
}
.article--project .attachments .image.image--large:first-child img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.article--project .attachments .image.image--horizontal-panning {
  height: 300vh;
  margin-top: calc(var(--nav-height) * -1);
  margin-bottom: calc(var(--gap) * 4);
}
@media only screen and (max-width: 1024px) {
  .article--project .attachments .image.image--horizontal-panning {
    margin-bottom: calc(var(--gap) * 2);
  }
}
.article--project .attachments .image.image--horizontal-panning .container {
  position: sticky;
  top: 0;
  height: calc(100vh - var(--margin));
  padding: var(--nav-height) 0 0;
  overflow: hidden;
}
.article--project .attachments .image.image--horizontal-panning .container img {
  width: auto;
  height: 100%;
}
.article--project .attachments .image:last-of-type {
  margin-bottom: 0;
}
.article--project .back {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.article--project .back a {
  font-size: var(--fs-p-lg);
  margin: calc(var(--margin) * 5) 0 calc(var(--margin) * 3);
}

.article--projects {
  position: relative;
  padding-top: calc(var(--nav-height) * 2 + var(--gap));
  color: var(--color-white);
}
.article--projects ul {
  margin: 0;
  padding: 0 var(--margin);
  list-style: none;
}
@media only screen and (max-width: 480px) {
  .article--projects ul {
    padding: 0 var(--gap);
  }
}
.article--projects ul li {
  position: relative;
  display: block;
  padding: var(--margin) 0;
  border-bottom: 1px solid var(--color-white);
  z-index: 0;
}
@media only screen and (max-width: 480px) {
  .article--projects ul li {
    padding: var(--gap) 0;
  }
}
.article--projects ul li:first-child {
  border-top: 1px solid var(--color-white);
}
.article--projects ul li a {
  display: flex;
}
.article--projects ul li a .index {
  position: relative;
  flex: 0.666;
  font-family: var(--font-sans);
  font-size: 6.66rem;
  line-height: 1em;
  overflow: hidden;
}
.article--projects ul li a .index span {
  position: absolute;
  display: inline-block;
  margin-top: 0.175em;
}
@media only screen and (max-width: 767px) {
  .article--projects ul li a .index {
    display: none;
  }
}
@media only screen and (max-width: 480px) {
  .article--projects ul li a .index {
    display: none;
  }
}
.article--projects ul li a .title {
  flex: 1.5;
  display: flex;
  justify-content: space-between;
  margin-left: var(--margin);
}
.article--projects ul li a .title .client {
  line-height: 0.8em;
  transform: translateY(0.11em);
}
@media only screen and (max-width: 480px) {
  .article--projects ul li a .title .client {
    font-size: 2.5rem;
  }
}
.article--projects ul li a .title .project {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: right;
  height: 100%;
}
.article--projects ul li a .title .project h2 {
  font-family: var(--font-condensed-italic);
  line-height: 1em;
  margin-right: 1px;
  margin-bottom: var(--gap);
  padding-right: 0.15em;
}
@media only screen and (max-width: 480px) {
  .article--projects ul li a .title .project h2 {
    font-size: var(--fs-h3);
  }
}
.article--projects ul li a .title .project p {
  transition: font-size 0.5s var(--transition-curve);
  line-height: 1;
}
.article--projects ul li a .title .project p svg {
  display: inline-block;
  width: 0;
  height: auto;
  margin-right: var(--gap);
  transition: width 0.5s var(--transition-curve);
}
@media only screen and (max-width: 767px) {
  .article--projects ul li a .title .project p svg {
    opacity: 1;
    width: var(--fs-h3);
    height: var(--fs-h3);
  }
}
.article--projects ul li a .thumbnail {
  flex: 0.3;
  position: relative;
  overflow: hidden;
}
@media only screen and (max-width: 480px) {
  .article--projects ul li a .thumbnail {
    flex: 0.4;
  }
}
.article--projects ul li a .thumbnail img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 92%;
  -o-object-fit: cover;
     object-fit: cover;
  transform: translate3d(0, 0, 0);
  transition: transform 1s var(--transition-curve);
}
@media only screen and (max-width: 480px) {
  .article--projects ul li a .thumbnail img {
    height: 100%;
  }
}
.article--projects ul li .attachment {
  position: absolute;
  width: 30vw;
  height: auto;
  top: 0;
  left: 0;
  opacity: 0;
  pointer-events: none;
  overflow: hidden;
}
.article--projects ul li .attachment img,
.article--projects ul li .attachment video {
  transform: translateX(-50%);
  width: 100%;
  height: auto;
  transform: translate3d(-100%, 0, 0);
  transition: transform 1s var(--transition-curve);
}
@media only screen and (min-width: 767px) {
  .article--projects ul li:hover {
    z-index: 1;
  }
  .article--projects ul li:hover .title .project p {
    font-size: var(--fs-p);
  }
  .article--projects ul li:hover .title .project p svg {
    width: var(--fs-h2);
  }
  .article--projects ul li:hover .attachment {
    opacity: 1;
  }
  .article--projects ul li:hover .attachment img,
  .article--projects ul li:hover .attachment video {
    transform: translate3d(0, 0, 0);
  }
  .article--projects ul li:hover .thumbnail img {
    transform: translate3d(100%, 0, 0);
  }
}
.article--projects a {
  color: var(--color-white);
  text-decoration: none;
}

.article--404 {
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100vh;
  top: 0;
  text-align: center;
  color: var(--color-white);
  background: url("static/img/404.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
.article--404 h2 {
  width: 80%;
  margin: 0 auto;
  font-size: 7rem;
  font-family: var(--font-sans);
}
@media only screen and (max-width: 480px) {
  .article--404 h2 {
    font-size: 3.2rem;
  }
}
.article--404 h1 {
  width: 80%;
  margin: calc(var(--margin) * 2) auto calc(var(--margin) * 2);
  font-size: 14rem;
  font-family: var(--font-sans);
}
@media only screen and (max-width: 480px) {
  .article--404 h1 {
    font-size: 6.2rem;
  }
}
.article--404 p {
  font-size: var(--fs-p-md);
  line-height: 1.4em;
}
.article--404 a {
  color: var(--color-white);
  font-size: var(--fs-p-lg);
}
.article--404 section {
  padding: var(--margin) var(--margin) calc(var(--margin) * 8.75);
}

.error404 .header,
.error404 .footer,
.error404 .fixed {
  mix-blend-mode: normal;
  color: var(--color-white);
}
.error404 .scroll {
  visibility: hidden;
}

/*--------------------------------------------------------------
# Plugins
--------------------------------------------------------------*/

/*# sourceMappingURL=style.css.map */