* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --padding: 1.5rem;
  --color-black: #212327;
  --color-white: #d6d6d6;
  --color-grey: #BCBCBC;
  --color-light: #efefef;
  --color-primary: #786cbf;
  --color-text: var(--color-white);
  --color-text-grey: var(--color-white);
  --color-background: #212327;
  --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: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  --font-family-mono: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, Courier, monospace;
  --font-family-serif: "Funnel Display", serif;
  --zoom: 4;
  --extrazoom: 0;
  interpolate-size: allow-keywords;
}

html {
  font-family: var(--font-family-serif);
  color: var(--color-text);
  background: var(--color-background);
  font-size: 24px;
  font-weight: 100;
}

img {
  width: 100%;
}

body {
  margin: 0 auto;
  padding: 14px 1rem 0;
  max-width: 2400px;
  box-sizing: content-box;
  overflow: hidden;
}

html, body {
  overflow-x: hidden;
}

li {
  list-style: none;
}

a {
  color: currentColor;
  text-decoration: none;
}

button {
  font: inherit;
  background: none;
  border: 0;
  color: currentColor;
  cursor: pointer;
}

strong, b {
  font-weight: 600;
}

small {
  font-size: inherit;
  color: var(--color-text-grey);
}

.hidden {
  display: none;
  pointer-events: none;
  z-index: -999;
}
.hidden #full-reel {
  display: none !important;
}

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

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

body:before {
  content: "";
  position: fixed;
  top: 14px;
  left: 1rem;
  right: 1rem;
  margin: 0 auto;
  max-width: 2400px;
  height: 52px;
  border-radius: 100px;
  z-index: 10;
  transition: z-index 0.001s linear 0.3s;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0 0;
  position: fixed;
  top: 0;
  left: 1rem;
  right: 1rem;
  z-index: 100;
  max-width: 2400px;
  margin: 0 auto;
}
.header nav {
  position: relative;
  overflow: hidden;
  flex: 1 1 100%;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  border-radius: 100vh;
  color: var(--color-black);
  background-color: transparent;
  transition: background 0.5s cubic-bezier(0.5, 0, 0, 1);
  z-index: 1;
  height: 52px;
}
.header nav .spacer {
  transition: transform, background;
  transition-duration: 0.5s;
  transition-timing-function: cubic-bezier(0.5, 0, 0, 1);
  position: relative;
}
.header nav .spacer + a {
  border-left: none;
}
.header nav .menu-button-holder {
  display: flex;
  height: 100%;
  min-width: 40%;
  overflow: hidden;
  flex: 0 0 auto;
}
.header nav a, .header nav button {
  padding: 16px 1rem;
  height: 64px;
  display: flex;
  align-items: flex-end;
  position: relative;
  border-left: solid 2px transparent;
  transition: transform, background, border-color;
  transition-duration: 0.5s;
  transition-timing-function: cubic-bezier(0.5, 0, 0, 1);
}
.header nav a:last-child, .header nav button:last-child {
  border-right: solid 2px transparent;
}
.header nav a:after, .header nav button:after {
  content: "";
  height: 6px;
  width: 6px;
  border-radius: 100px;
  position: absolute;
  background-color: var(--color-black);
  left: 8px;
  bottom: 24px;
  opacity: 0;
  transition: opacity 0.5s cubic-bezier(0.5, 0, 0, 1);
}
.header nav a:hover, .header nav button:hover {
  transform: translateY(-2px);
  transition-duration: 0.05s;
}
.header nav a:active, .header nav button:active {
  transform: translateY(0);
  transition-duration: 0.05s;
}
.header nav a.active, .header nav button.active {
  transform: translateY(-10px);
  transition-duration: 0.5s;
  cursor: pointer;
}
.header nav a.active:after, .header nav button.active:after {
  opacity: 1;
}
.header nav a.logo, .header nav button.logo {
  padding: 0 0.75rem 2px;
  display: flex;
  align-items: center;
  font-weight: 600;
  cursor: pointer;
  height: 54px;
  border: none;
  overflow: hidden;
  transform: none !important;
}
.header nav a.logo > img, .header nav a.logo > span, .header nav button.logo > img, .header nav button.logo > span {
  transition: transform, opacity;
  transition-duration: 0.5s;
  transition-timing-function: cubic-bezier(0.5, 0, 0, 1);
  transform: translateX(-150%);
}
.header nav a.logo img, .header nav button.logo img {
  height: 40px;
}
.header nav a.logo:after, .header nav button.logo:after {
  display: none;
}
.header:after {
  content: "";
  position: absolute;
  inset: -25px -40px 0;
  border: solid 40px var(--color-background);
  border-radius: 64px 64px 0 0;
  border-bottom: none;
}

.show-scroll-up body:before, .menu-open body:before {
  background-color: var(--color-white);
}
.show-scroll-up .header nav a, .show-scroll-up .header nav button, .show-scroll-up .header nav .spacer, .menu-open .header nav a, .menu-open .header nav button, .menu-open .header nav .spacer {
  border-color: var(--color-background);
}
.show-scroll-up .header nav a.logo > img, .show-scroll-up .header nav a.logo > span, .show-scroll-up .header nav button.logo > img, .show-scroll-up .header nav button.logo > span, .show-scroll-up .header nav .spacer.logo > img, .show-scroll-up .header nav .spacer.logo > span, .menu-open .header nav a.logo > img, .menu-open .header nav a.logo > span, .menu-open .header nav button.logo > img, .menu-open .header nav button.logo > span, .menu-open .header nav .spacer.logo > img, .menu-open .header nav .spacer.logo > span {
  opacity: 1;
  transform: none;
  transition: transform;
  transition-duration: 0.5s;
  transition-timing-function: cubic-bezier(0.5, 0, 0, 1);
}

.is-animating #hero, .show-scroll-up #hero {
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAQAAAC1HAwCAAAAC0lEQVR42mNkAAIAAAoAAv/lPAAAAABJRU5ErkJggg==");
}
.is-animating #hero:before, .is-animating #hero:after, .is-animating #hero .content, .show-scroll-up #hero:before, .show-scroll-up #hero:after, .show-scroll-up #hero .content {
  opacity: 0;
}

.menu {
  display: flex;
}

.social {
  display: flex;
  padding: 0 0.5rem;
}

.social a {
  padding: 1rem 0.5rem;
}

.section {
  padding: 3rem 0;
  margin-bottom: 3rem;
}

.grid {
  --columns: 12;
  --gutter: 3rem;
  display: grid;
  grid-gap: var(--gutter);
  grid-template-columns: 1fr;
  position: relative;
}

.grid > .column {
  margin-bottom: var(--gutter);
  max-width: 100%;
}

.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;
}

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: 4rem;
  margin-bottom: 3rem;
  line-height: 1.25em;
}

.text h2,
.h2 {
  font-size: 2rem;
  line-height: 2rem;
  min-height: 2rem;
  font-weight: normal;
  color: var(--color-text-grey);
  position: relative;
  padding-bottom: 0.5rem;
  margin: 0 0 1rem;
}

.column:first-child .text .h4, .column:first-child h4, .column:first-child .h4 {
  text-align: right;
  font-size: 1.2rem;
  letter-spacing: 2px;
}
.column:first-child .text h2, .column:first-child .h2 {
  text-align: right;
}
.column:first-child .text h2:after, .column:first-child .h2:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: -100vw;
  right: 0;
  height: 1px;
  background: var(--color-text);
}
.column:first-child .spacer-block.show-line {
  margin-left: -100vw;
}

.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 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: 0.875rem;
  font-style: italic;
}

.text figure {
  margin: 0;
}

.text figcaption {
  padding-top: 0.75rem;
  color: var(--color-text-grey);
}

.text figure ul {
  line-height: 0;
  display: grid;
  gap: 1.5rem;
  margin: 0;
  grid-template-columns: repeat(auto-fit, minmax(10rem, 1fr));
}

.text figure ul li {
  list-style: none;
}

hr {
  border: 0;
  background: currentColor;
  height: 2px;
  width: 100%;
  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: 0.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);
}

.button {
  text-decoration: none !important;
  padding: 1rem;
  display: inline-block;
  background-color: var(--color-white);
  color: var(--color-background);
  font-weight: bold;
  border-radius: 100vw;
  transition: transform;
  transition-duration: 0.5s;
  transition-timing-function: cubic-bezier(0.5, 0, 0, 1);
}
.button:hover {
  color: var(--color-black);
  transform: translateY(-2px);
  transition-duration: 0.05s;
}

.button-block .button {
  color: var(--color-primary);
}

.video,
.img {
  position: relative;
  display: block;
  --w: 1;
  --h: 1;
  padding-bottom: calc(100% / var(--w) * var(--h));
  background: var(--color-black);
}

.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: 0.75rem;
  line-height: 1.5em;
}

.text .block-image {
  position: relative;
  margin-bottom: 0.5rem;
}
.text .block-image a {
  display: flex;
  overflow: hidden;
  border: solid 1px var(--color-white);
}
.text .block-image a img {
  max-width: 100%;
}
.text .block-image canvas {
  position: absolute;
  inset: 0;
  height: 100%;
  width: 100%;
  pointer-events: none;
  z-index: 1;
}

.text .gallery {
  margin-bottom: 0.5rem;
  position: relative;
}
.text .gallery ul, .text .gallery li {
  display: flex;
  gap: 0.5rem;
  max-width: 100%;
  flex: 1 1 auto;
  overflow: hidden;
}
.text .gallery ul a, .text .gallery li a {
  display: flex;
  position: relative;
  max-width: 100%;
  overflow: hidden;
  border: solid 1px var(--color-white);
}
.text .gallery ul a img, .text .gallery li a img {
  min-height: 100%;
  min-width: 100%;
}

.footer {
  display: flex;
  flex-flow: column;
  justify-content: flex-end;
  gap: 1rem;
  height: 80vh;
  line-height: 1.5em;
  background-color: var(--color-background);
  position: relative;
  z-index: 2;
  padding: 1rem;
  margin: 0 -1rem;
  background-image: url(../img/AsteroidsLandscape03.png);
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
}
.footer:after {
  z-index: -1;
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, var(--color-background) 0%, rgba(33, 35, 39, 0) 15%, rgba(33, 35, 39, 0) 75%, var(--color-background) 100%);
}
.footer .get-in-touch:after {
  content: "";
  display: inline-block;
  height: 0.8em;
  width: 0.8em;
  margin-bottom: -0.1em;
  background-image: url(../img/Footer_Arrow.svg);
  background-size: contain;
  background-repeat: no-repeat;
  margin-left: 0.5rem;
}
.footer .general-intrest-button {
  align-self: flex-start;
}
.footer .footer-row {
  margin-top: 0.5rem;
  display: flex;
  border-top: solid 1px var(--color-white);
}
.footer .footer-column {
  display: flex;
  flex-flow: column;
  justify-content: space-between;
  padding: 0 1rem;
  font-size: 0.8rem;
  line-height: 1.2;
}
.footer .footer-logo-text {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 4rem;
  line-height: 3rem;
  padding: 1rem;
  border-right: solid 1px var(--color-white);
}
.footer .footer-socials {
  display: flex;
  margin: -1px 0 0 calc(-1rem - 1px);
}
.footer .footer-social {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 2rem;
  width: 2rem;
  border: solid 1px var(--color-white);
}
.footer .footer-social img {
  height: 1rem;
  width: 1rem;
}
.footer .footer-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  border-bottom-right-radius: 100vw;
  border-bottom-left-radius: 100vw;
  background-color: var(--color-white);
  color: var(--color-black);
  padding: 0 2rem;
  height: 100%;
}
.footer .footer-logo img {
  width: 6rem;
  margin-bottom: 1rem;
}
@media screen and (max-width: 1000px) {
  .footer .footer-column, .footer .footer-logo {
    display: none;
  }
  .footer .footer-column.spacer {
    display: flex;
    margin-top: 0.5rem;
  }
  .footer .footer-logo-text, .footer .footer-row {
    border: none;
  }
  .footer .footer-logo-text {
    width: 14rem;
    margin-top: 5rem;
  }
  .footer .footer-row {
    flex-flow: column;
    gap: 1rem;
  }
  .footer .footer-socials {
    margin: -16rem 0 0 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: 0.75rem;
}

.margin-m {
  margin-bottom: 1.5rem;
}

.margin-l {
  margin-bottom: 3rem;
}

.margin-xl {
  margin-bottom: 3rem;
}

.margin-xxl {
  margin-bottom: 6rem;
}

@media screen and (min-width: 60rem) {
  body {
    --padding: 3rem;
  }
  .grid {
    grid-template-columns: repeat(12, 1fr);
  }
  .grid > .column {
    grid-column: span var(--columns);
    padding: 0 1rem;
  }
}
.pagination {
  display: flex;
  padding-top: 6rem;
}

.pagination > span {
  color: var(--color-text-grey);
}

.pagination > * {
  padding: 0.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);
}

.project-excerpt {
  line-height: 1.5em;
}

.project-excerpt header {
  margin-bottom: 1.5rem;
}

.project-excerpt figure {
  margin-bottom: 0;
}

.project-excerpt-title {
  font-weight: 600;
}

.project-excerpt-date {
  color: var(--color-text-grey);
}

.cover-content {
  min-height: 50vh;
  background-color: var(--color-background);
  padding: 10rem calc(var(--padding) - 1rem);
  margin: 0 calc(-1 * var(--padding));
  position: relative;
  z-index: 1;
}
.cover-content #scroll-down-button {
  position: absolute;
  z-index: 3;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  display: block;
  height: 3rem;
  width: 2rem;
  background-image: url("../icons/arrow_down_green.svg");
  background-repeat: no-repeat;
  background-position: center;
  cursor: pointer;
}
.cover-content .work-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 1rem;
  gap: 0.25rem 1rem;
}
.cover-content .work-header h2, .cover-content .work-header .column-header {
  font-size: 1rem;
  color: var(--color-text-grey);
  margin: 0;
}
.cover-content .column-header {
  display: none;
}

#scroll-up-button {
  position: sticky;
  z-index: 3;
  top: 90%;
  left: 50%;
  transform: translateX(-50%);
  display: block;
  height: 3rem;
  width: 2rem;
  background-image: url("../icons/arrow_green.svg");
  background-repeat: no-repeat;
  background-position: center;
  cursor: pointer;
}

.buttons {
  display: flex;
  justify-content: flex-end;
}
.buttons button {
  height: 2rem;
  width: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100rem;
  font-size: 1.5rem;
  background-repeat: no-repeat;
  background-position: center;
}

.zoom-buttons {
  display: flex;
  justify-content: flex-end;
}
.zoom-buttons .zoom-in-button {
  background-image: url("../icons/plus_black.svg");
}
.zoom-buttons .zoom-out-button {
  background-image: url("../icons/minus_black.svg");
}

.display-mode-button span {
  height: 100%;
  width: 100%;
  background-repeat: no-repeat;
  background-position: center;
}
.display-mode-button :first-child {
  display: inline-block;
  background-image: url("../icons/list_black.svg");
}
.display-mode-button :last-child {
  display: none;
  background-image: url("../icons/grid_black.svg");
}

[data-display-mode=list] .display-mode-button :first-child {
  display: none;
}
[data-display-mode=list] .display-mode-button :last-child {
  display: inline-block;
}
[data-display-mode=list] .zoom-buttons {
  display: none;
}
[data-display-mode=list] .cover-content .column-header {
  display: block;
}
[data-display-mode=list] .cover-content .work-header {
  justify-content: flex-start;
}
[data-display-mode=list] .cover-content .work-header h2, [data-display-mode=list] .cover-content .work-header .column-header {
  width: calc(33.33% - 0.75rem);
  flex: 0 0 auto;
}
[data-display-mode=list] .cover-content #masonry .grid-item {
  width: 100%;
  padding: 0;
}
[data-display-mode=list] .cover-content #masonry .grid-item a {
  padding: 0 1rem;
}
[data-display-mode=list] .cover-content #masonry .grid-item a:hover {
  background-color: var(--color-primary);
}
[data-display-mode=list] .cover-content #masonry .grid-item a:hover, [data-display-mode=list] .cover-content #masonry .grid-item a:hover figcaption h3 {
  color: var(--color-white);
}
[data-display-mode=list] .cover-content #masonry .grid-item a:hover figcaption > * {
  border-color: transparent;
}
[data-display-mode=list] .cover-content #masonry .grid-item a:hover figcaption h3 {
  padding-left: 1rem;
}
[data-display-mode=list] .cover-content #masonry .grid-item figure {
  display: none;
}
[data-display-mode=list] .cover-content #masonry .grid-item figcaption {
  font-size: 1rem;
  margin: 0;
}
[data-display-mode=list] .cover-content #masonry .grid-item figcaption span {
  display: none;
}
[data-display-mode=list] .cover-content #masonry .grid-item figcaption h3, [data-display-mode=list] .cover-content #masonry .grid-item figcaption p {
  width: calc(33.33% - 0.75rem);
  box-sizing: border-box;
  padding: 1rem 0;
  border-bottom: solid 1px var(--color-grey);
  font-size: 1rem;
  font-weight: normal;
}
[data-display-mode=list] .cover-content #masonry .grid-item figcaption .client {
  display: block;
}

#hero {
  height: calc(100vh - 1rem);
  max-width: none;
  background: var(--color-white);
  margin: 0 calc(-1 * var(--padding));
  position: relative;
  background-color: var(--color-white);
  background-image: url("../img/Gradient.png");
  background-size: 100% 100%;
  background-position: top left;
  transition: background 0.5s cubic-bezier(0.5, 0, 0, 1);
  margin-bottom: 3rem;
  z-index: 20;
  border-radius: 26px;
  overflow: hidden;
  color: var(--color-black);
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  align-content: center;
  gap: 1rem;
  padding: 1rem;
  min-height: 700px;
}
#hero .logo-lockup {
  position: relative;
  display: flex;
  justify-content: center;
  flex: 1 1 auto;
}
#hero .logo-lockup img {
  width: 20rem;
  max-width: 100%;
}
#hero .content {
  width: 40%;
  flex: 0 0 auto;
  display: flex;
  flex-flow: column;
  justify-content: center;
  gap: 10%;
  height: 100%;
  transition: opacity 0.5s cubic-bezier(0.5, 0, 0, 1);
}
#hero .content p {
  font-weight: 100;
  margin: 0;
}
#hero .content hr {
  overflow: visible;
  position: relative;
  margin: 0;
}
#hero .content hr:after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 2.25rem;
  height: 2rem;
  background-image: url(../img/Landing_BottomLIne_Flourish.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: bottom right;
}
#hero .content hr:before {
  content: "";
  position: absolute;
  height: 100%;
  left: 0;
  right: -100vw;
  background: inherit;
}
#hero .content hr:first-child {
  background-color: transparent;
}
#hero .content hr:first-child:after {
  content: "";
  position: absolute;
  left: 0;
  right: auto;
  width: 5rem;
  pointer-events: none;
  height: 90px;
  background-image: url(../img/Landing_TopLine_Flourish.svg);
  background-position: bottom left;
  background-size: auto 1rem;
  background-repeat: no-repeat;
}
#hero .content hr:first-child:before {
  content: "";
  position: absolute;
  bottom: 0px;
  left: 3rem;
  right: -100vw;
  pointer-events: none;
  border-bottom: solid 2px var(--color-black);
}
@media screen and (max-width: 1500px) {
  #hero .content br {
    display: none;
  }
}
#hero:before {
  content: "";
  position: absolute;
  z-index: -1;
  pointer-events: none;
  inset: -1rem 40% -1rem -1rem;
  padding-bottom: 56.4%;
  background-image: url(../img/Fungus_02.webp);
  background-position: right center;
  background-size: cover;
  background-repeat: no-repeat;
  transition: opacity 0.5s cubic-bezier(0.5, 0, 0, 1);
}
#hero:after {
  content: "";
  position: absolute;
  z-index: -1;
  pointer-events: none;
  inset: 0 10% -0.5rem 40%;
  background-image: url(../img/Landing_Bottom_Flourishes.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: bottom right;
  transition: opacity 0.5s cubic-bezier(0.5, 0, 0, 1);
}
#hero .border {
  position: absolute;
  inset: -40px -40px 0px;
  border: solid 40px var(--color-background);
  border-bottom: none;
  border-radius: 70px 70px 0 0;
  pointer-events: none;
}
@media screen and (max-width: 1000px) {
  #hero {
    height: auto;
    min-height: calc(100vh - 1rem);
    padding: 5rem 1rem 2rem;
    flex-flow: column;
  }
  #hero .content {
    width: auto;
    gap: 2rem;
    margin-top: 2rem;
  }
  #hero:before {
    display: none;
  }
}

.hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  max-height: 100vh;
  width: 100vw;
  margin: -10rem auto 0;
  margin-left: calc((100vw - 100%) * -0.5);
  overflow: hidden;
  transition: none !important;
}
.hero .cover-play-button {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  color: var(--color-white);
  mix-blend-mode: difference;
  cursor: pointer;
}
.hero .hero-video-player {
  position: relative;
  background-color: var(--color-black);
  width: 100%;
}
.hero .hero-video-player iframe {
  opacity: 0;
  transition: opacity 2s ease 1s;
  max-height: calc(100vh - var(--header-height) - 2rem);
}
.hero .hero-video-player.ready iframe {
  opacity: 1;
}
.hero .hero-video-player > img {
  position: absolute;
  inset: 0;
  object-fit: contain;
}
.hero .hero-video-player > img.video-cover {
  cursor: pointer;
}
.hero #vimeo_player_cover {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
}
.hero .scroll-down {
  position: absolute;
  z-index: 2;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  padding-bottom: 2rem;
  display: flex;
  flex-flow: column;
  justify-content: flex-end;
  align-items: center;
  text-transform: uppercase;
  font-family: var(--font-family-display);
  font-weight: 800;
  line-height: 1.1;
  color: var(--color-white);
}
.hero .scroll-down:hover, .hero .scroll-down:focus {
  text-decoration: none;
}
.hero .scroll-down img {
  width: 6.5rem;
  margin-top: 0.3rem;
}

#masonry {
  width: 100%;
}
#masonry .grid-sizer {
  --w: 1;
  width: min(100%, var(--w) * 100% / (var(--extrazoom) + var(--zoom)));
}
#masonry .grid-item {
  position: relative;
  --w: 1;
  width: min(100%, var(--w) * 100% / (var(--extrazoom) + var(--zoom)));
  padding: 1rem;
  box-sizing: border-box;
}
#masonry .grid-item > a {
  display: block;
}
#masonry .grid-item figure {
  display: block;
  position: relative;
}
#masonry .grid-item img, #masonry .grid-item canvas {
  position: absolute;
  inset: 0;
  object-fit: cover;
  height: 100%;
  width: 100%;
}
#masonry .grid-item figcaption {
  margin-top: 0.5rem;
  font-size: 0.75rem;
  display: flex;
  gap: 0.25rem 1rem;
  flex-flow: row wrap;
}
#masonry .grid-item figcaption h3 {
  color: var(--color-text);
  font-weight: bold;
}
#masonry .grid-item figcaption .client {
  display: none;
}
#masonry canvas {
  position: absolute;
  top: 0;
  left: 0;
  -ms-interpolation-mode: nearest-neighbor;
  image-rendering: -moz-crisp-edges;
  image-rendering: pixelated;
}

main {
  margin-top: 0;
  padding: 0 var(--padding);
  overflow: hidden;
}
main > section {
  margin: 0 auto;
}

.basicLightbox figure {
  width: 90vw;
  max-width: 100%;
  max-height: 90vh;
  overflow: hidden;
}
.basicLightbox figure iframe {
  max-height: 90vh;
}

.spacer-block {
  --s: 1;
  height: calc(var(--s) * 10px);
  position: relative;
  display: flex;
  flex-flow: column;
  justify-content: center;
}
.spacer-block span {
  display: none;
}
.spacer-block.show-line:after {
  content: "";
  display: block;
  border-bottom: solid 1px var(--color-white);
}
.spacer-block.show-line.purple-line:after {
  border-color: var(--color-primary);
}
.spacer-block.show-line.line_end:after {
  margin-right: 1rem;
}
.spacer-block.show-line.line_end:before {
  content: "";
  display: block;
  height: 2rem;
  width: 2.5rem;
  align-self: flex-end;
  margin-top: -2rem;
  margin-bottom: -1px;
  background-image: url(../img/Game_BottomLine_Flourish.svg);
  background-position: bottom right;
  background-size: contain;
  background-repeat: no-repeat;
}
.spacer-block.show-line.line_length:after {
  margin-right: 1rem;
}
.spacer-block.show-line.line_length:before {
  content: "";
  display: block;
  height: 2rem;
  width: 40rem;
  align-self: flex-end;
  margin-top: -1rem;
  margin-bottom: -1px;
  background-image: url(../img/Hiring_LongLine_Flourish_Top.svg);
  background-position: bottom right;
  background-size: contain;
  background-repeat: no-repeat;
}
.spacer-block.show-line.line_length span {
  display: block;
  height: 2rem;
  width: 40rem;
  align-self: flex-end;
  margin-top: 0;
  margin-bottom: -1rem;
  background-image: url(../img/Hiring_LongLine_Flourish_Bottom.svg);
  background-position: top right;
  background-size: contain;
  background-repeat: no-repeat;
  order: 1;
}

.button-block {
  display: flex;
  justify-content: flex-end;
}
.button-block a.button {
  white-space: nowrap;
}

#hiring {
  background-color: var(--color-primary);
  color: var(--color-background);
  border-radius: 2rem;
}
#hiring .grid {
  margin-bottom: 0;
}
#hiring .grid:before {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  right: 3rem;
  height: 2rem;
  width: 5rem;
  background-image: url(../img/Hiring_LilacRectangle_Flourish.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: bottom right;
}
#hiring .grid:after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0px;
  left: 2rem;
  right: 0;
  border-bottom: solid 1px var(--color-background);
}
#hiring .grid:last-child:after, #hiring .grid:last-child:before {
  display: none;
}
#hiring .column {
  padding: 0 !important;
  margin: 0 !important;
  position: relative;
}
#hiring .column:last-child {
  padding: 1.5rem 1.5rem 1.5rem 0 !important;
}
#hiring h4 {
  font-size: 1rem;
}
#hiring h2, #hiring h4 {
  color: var(--color-text) !important;
  text-align: center !important;
  border: solid 1px var(--color-background);
  border-radius: 2rem;
  padding: 1rem;
  margin: -1px;
  position: static;
}
#hiring h2:before, #hiring h4:before {
  display: none !important;
}
#hiring h2:after, #hiring h4:after {
  content: "";
  position: absolute;
  left: auto;
  right: -1px;
  bottom: 0;
  top: 2rem;
  height: auto;
  width: 1px;
  background-color: var(--color-background);
}

@media screen and (max-width: 60rem) {
  #hiring .column:last-child {
    padding: 1.5rem !important;
  }
  #hiring h2:after, #hiring h4:after {
    display: none;
  }
  #hiring .grid:after {
    display: none;
  }
}
#team {
  max-width: none;
}
#team .text {
  display: flex;
  flex-flow: row wrap;
  align-items: stretch;
}
#team .text .user-block {
  margin: 0 -1px 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  border: solid 1px var(--color-primary);
  border-radius: 100vw;
  padding: 1rem 0 1rem 1rem;
  overflow: hidden;
  flex: 1 1 50%;
  background-color: var(--color-background);
}
#team .text .user-block:nth-child(odd) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
#team .text .user-block:nth-child(even) {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
#team .text .user-block > div {
  display: flex;
  flex-flow: column;
  gap: 1rem;
}
#team .text .user-block img {
  height: 10rem;
  width: 10rem;
  border-radius: 100vw;
  z-index: 1;
}
#team .text .user-block h2 {
  margin: 0;
  text-align: left !important;
}
#team .text .user-block h2:after {
  background-color: var(--color-primary) !important;
  left: -2rem !important;
}
#team .text .user-block h2 + div {
  padding-right: 2rem;
}

@media screen and (max-width: 1600px) {
  #team .text {
    flex-flow: column;
  }
  #team .text .user-block {
    flex: 1 1 100%;
    border-radius: 6rem !important;
  }
}
@media screen and (max-width: 900px) {
  #team .text {
    flex-flow: column;
  }
  #team .text .user-block {
    align-items: flex-start;
    flex: 1 1 100%;
    border-radius: 3rem !important;
  }
  #team .text .user-block h2 {
    font-size: 1.25rem;
  }
  #team .text .user-block h2 + div {
    padding-left: 2rem;
    margin-left: -6rem;
    margin-top: 1rem;
  }
  #team .text .user-block img {
    height: 4rem;
    width: 4rem;
  }
}
h2[data-text="CORE TEAM"]:before,
h2[data-text=PRESS]:before,
h2[data-text="with a NEW IP"]:before {
  content: "";
  display: inline-block;
  height: 0.8em;
  width: 0.8em;
  margin-right: 0.5rem;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

h2[data-text="CORE TEAM"]:before {
  background-image: url(../img/CoreTeam_Atom.svg);
}

h2[data-text=PRESS]:before {
  background-image: url(../img/Press_Book.svg);
}

h2[data-text="with a NEW IP"]:before {
  height: 1.8em;
  margin-top: -0.8em;
  margin-bottom: -0.2em;
  width: 1em;
  background-image: url(../img/Game_Planet.svg);
}

.list-block ol {
  margin-left: 1.5rem;
}
.list-block ol li {
  padding: 0.5rem 1.5rem;
  position: relative;
}
.list-block ol li:before {
  content: "";
  position: absolute;
  left: 1.5rem;
  right: 0;
  bottom: 0;
  height: 0;
  border-bottom: 1px solid var(--color-primary);
}
.list-block ol li a:only-child {
  text-decoration: none;
}
.list-block ol ::marker {
  color: var(--color-primary);
}

.tags-block ul {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.tags-block ul.tags-align-center {
  justify-content: center;
}
.tags-block ul.tags-align-right {
  justify-content: flex-end;
}
.tags-block ul.tags-align-left, .tags-block ul.tags-align- {
  justify-content: flex-start;
}
.tags-block ul.tags-align-between {
  justify-content: space-between;
}
.tags-block ul li {
  border: solid 1px var(--color-primary);
  padding: 0.25rem 1rem;
  border-radius: 100vh;
  font-size: 0.75rem;
  color: var(--color-text-grey);
  list-style: none;
  position: relative;
  background: var(--color-background);
}
.tags-block ul li:before {
  content: "";
  display: none;
  height: 1.5rem;
  width: 1.5rem;
  vertical-align: middle;
  margin: 0 0.5rem 0 -0.5rem;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.tags-block ul li[data-tag=Skyrim]:before {
  display: inline-block;
  margin-right: 0.25rem;
  margin-top: -2px;
  background-image: url(../img/skyrim.png);
}
.tags-block ul li[data-tag=Grindstone]:before {
  display: inline-block;
  margin-right: 0.25rem;
  margin-top: -2px;
  background-image: url(../img/grindstone.png);
}
.tags-block ul li[data-tag="Watch Dogs Legion"]:before {
  display: inline-block;
  background-image: url(../img/watchdogs.png);
}
.tags-block ul li[data-tag="A Mortician's Tale"]:after {
  content: "";
  position: absolute;
  top: -0.35rem;
  right: 0.2rem;
  width: 2rem;
  height: 1rem;
  background-image: url(../img/tag-corner.png);
  background-size: contain;
  background-repeat: no-repeat;
  z-index: -1;
}

.collapsible-block {
  display: block;
  border-bottom: solid 1px var(--color-grey);
}
.collapsible-block .collapsible-title {
  display: flex;
  grid-area: title;
  padding: 0.5rem 1rem 0.5rem 0;
  cursor: pointer;
  font-size: 1.25rem;
}
.collapsible-block .collapsible-title span {
  flex: 1 1 auto;
}
.collapsible-block .collapsible-button {
  grid-area: button;
  font-size: 2rem;
  display: inline-flex;
  align-items: center;
}
.collapsible-block .collapsible-button span {
  height: 30px;
  width: 30px;
  align-items: center;
  justify-content: center;
  background-repeat: no-repeat;
  background-position: center;
}
.collapsible-block .collapsible-button span:first-child {
  display: inline-flex;
}
.collapsible-block .collapsible-button span:last-child {
  display: none;
}
.collapsible-block .collapsible-content {
  grid-area: content;
  height: 0px;
  overflow: hidden;
  transition: height 0.5s cubic-bezier(0.5, 0, 0.5, 1);
}
.collapsible-block .collapsible-content > p:first-child {
  padding-top: 1rem;
}
.collapsible-block .collapsible-content > p:last-child {
  padding-bottom: 1rem;
}
.collapsible-block .collapsible-content .margin-xl {
  margin-bottom: 0rem;
}
.collapsible-block .collapsible-title.open {
  height: auto;
}
.collapsible-block .collapsible-title.open .collapsible-button span:first-child {
  display: none;
}
.collapsible-block .collapsible-title.open .collapsible-button span:last-child {
  display: inline-flex;
}
.collapsible-block .collapsible-title.open + .collapsible-content {
  height: auto;
}

@media screen and (max-width: 1400px) {
  .text h2, .h2 {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 1100px) {
  .text h2, .h2 {
    font-size: 1.25rem;
  }
}
@media screen and (max-width: 700px) {
  :root {
    --extrazoom: -2;
  }
}
@media screen and (max-width: 500px) {
  .zoom-buttons {
    display: none;
  }
  :root {
    --extrazoom: -5;
  }
}
@media screen and (max-width: 60rem) {
  .grid {
    display: flex;
    flex-flow: column;
  }
  .grid > .column {
    margin: 0;
  }
  .text h2, .h2 {
    font-size: 1.75rem;
  }
}
@media screen and (min-width: 900px) {
  :root {
    --extrazoom: 1;
  }
}
@media screen and (min-width: 1400px) {
  :root {
    --extrazoom: 2;
  }
}
@media screen and (min-width: 2000px) {
  :root {
    --extrazoom: 3;
  }
}
@media screen and (min-width: 2600px) {
  :root {
    --extrazoom: 4;
  }
}
@media screen and (min-width: 2000px) {
  html {
    font-size: 32px;
  }
  #hero {
    min-height: 900px;
  }
}
@media screen and (min-height: 2000px) {
  html {
    font-size: 32px;
  }
  #hero {
    min-height: 900px;
  }
}
article.project {
  padding: 2rem calc(var(--padding) - 1rem);
  margin: 0 calc(-1 * var(--padding));
  background-color: var(--color-background);
}

.project-header {
  padding-top: 3rem;
  margin-bottom: 3rem;
}

.project-footer {
  padding: 6rem 0;
}

.project-date {
  color: var(--color-text-grey);
}

.project-tags {
  display: flex;
  margin-bottom: 1.5rem;
}

.project-tags li {
  margin-right: 0.5rem;
}

.project-tags a {
  padding: 0.5rem 1rem;
  display: block;
  background: var(--color-light);
}

.project-tags a:hover {
  background: var(--color-black);
  color: var(--color-white);
}

.f-grow, .spacer {
  flex: 1 1 auto !important;
}

#menu-toggle {
  display: none;
  padding: 0 1rem 0.5rem;
  align-items: center;
  border-right: none;
}
#menu-toggle span {
  height: 1.5rem;
  width: 1.5rem;
  background-image: url("../img/Mobile_Hamburger.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

@media screen and (max-width: 770px) {
  .header nav a.menu-item {
    display: none;
  }
  #menu-toggle {
    display: flex;
  }
}
#menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 30;
  display: flex;
  flex-flow: column;
  padding-top: 120px;
  gap: 1rem;
  color: var(--color-white);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s cubic-bezier(0.5, 0, 0.5, 1);
  background-color: var(--color-background);
}
#menu-overlay a {
  font-size: 1rem;
  padding: 0.5rem 1rem;
  color: var(--color-text) !important;
  border-bottom: solid 1px var(--color-white);
}
#menu-overlay a[aria-current] {
  cursor: auto;
  color: var(--color-primary) !important;
}
#menu-overlay a:last-child {
  border-bottom: none;
}
#menu-overlay nav {
  display: flex;
  flex-flow: column;
  mix-blend-mode: normal;
  transform: translateY(20px);
  transition: transform 0.3s cubic-bezier(1, 0, 1, 1);
}

.menu-open {
  overflow: hidden;
}
.menu-open body:before {
  z-index: 40;
  transition-delay: 0s;
}
.menu-open #menu-toggle span {
  background-image: url("../img/Mobile_Menu_X.svg");
}
.menu-open #menu-overlay {
  opacity: 1;
  pointer-events: auto;
}
.menu-open #menu-overlay nav {
  transform: none;
  transition: transform 0.3s cubic-bezier(0, 0, 0, 1);
}

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