@charset "UTF-8";

/* LEGAL DISCLAIMER
 *
 * These Fonts are licensed only for use on these domains and their subdomains:
 * left.studio
 *
 * It is illegal to download or use them on other websites.
 *
 * While the @font-face statements below may be modified by the client, this
 * disclaimer may not be removed.
 *
 * Optimo webfonts are protected by copyright law and provided under license. To modify, alter, translate, convert, decode or reverse engineer in any manner whatsoever, including converting the Font Software into a different format is strictly prohibited. The webfont files are not to be used for anything other than web font use.
 *
 * optimo.ch
 */

@font-face {
  font-family: 'Basel Grotesk';
  src: url('../fonts/Basel-Grotesk-Regular/Basel-Grotesk-Regular.woff2') format('woff2'),
       url('../fonts/Basel-Grotesk-Regular/Basel-Grotesk-Regular.woff') format('woff');
  font-weight: 430;
  font-style: normal;
}

@font-face {
  font-family: 'Basel Grotesk Mono';
  src: url('../fonts/Basel-Grotesk-Mono-Book/Basel-Grotesk-Mono-Book.woff2') format('woff2'),
       url('../fonts/Basel-Grotesk-Mono-Book/Basel-Grotesk-Mono-Book.woff') format('woff');
  font-weight: 500;
  font-style: normal;
}

:root {
  --black: rgba(8, 8, 8, 1);
  --white: rgba(242, 241, 242, 1);
  --blue: rgba(0, 0, 240, 1);

  --smallEdge: 8px;
  --mainEdge: 18px;
  --bigEdge: 60px;
  --biggerEdge: 80px;
  --hugeEdge: 160px;
  --enormousEdge: 240px;

  --fontSize1: 12px;
  --fontSize2: 18px;
  --fontSize3: 24px;
  --fontSize4: 60px;
  --fontSize5: 80px;

  --letter-spacing: -0.005em;
  --line: 2px;

  --regular: "Basel Grotesk", Helvetica, sans-serif;
  --mono: "Basel Grotesk Mono", Helvetica, sans-serif;
}
::selection {
  background: var(--blue);
  color: var(--white);
}
* {
	margin:0;
	padding:0;
	list-style: none;
  box-sizing: border-box;
  cursor: none !important;
}
body{
  font-family: var(--regular);
  font-size: var(--fontSize4);
  line-height: 1;
  letter-spacing: var(--letter-spacing);
  background-color: var(--white);
  color: var(--black);
  -webkit-font-smoothing: antialiased;
  overflow: hidden;
  margin: 0;
}
body::-webkit-scrollbar {
  display: none;
}
*::-webkit-scrollbar {
  display: none;
}
h1, h2, h3, h4, h5, h6{
  font-weight: unset;
  font-size: unset;
  line-height: 1;
}
img{
  user-drag: none;
  -webkit-user-drag: none;
  user-select: none;
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
}
#projects h1{
  display: inline;
}
footer a, footer a:visited, footer a:focus, #section-404 a, #section-404 a:visited, #section-404 a:focus{
  text-decoration: none;
  color: var(--white);
}
a, a:visited, a:focus{
  text-decoration: none;
  color: var(--black);
}
.jobs-content a, .jobs-content a:visited, .jobs-content a:focus {
  text-decoration: none;
  color: var(--blue);
}
/* #pointercanvas{
  display: block;
  width: 200px;
  height: 200px;
  position: absolute;
  pointer-events: none;
  z-index: 999;
} */
.transition{
  position: fixed;
  width: 100vw;
  height: 100vh;
  background: var(--white);
  z-index: 999;
  top: 0;
}
.black{
  background: var(--black);
}
.button, a.button{
  font-family: var(--regular);
  /* border: var(--line) solid var(--white); */
  width: fit-content;
  color: var(--white);
  background: var(--black);
  padding: 0.2em 0.35em 0.25em 0.35em;
  margin: var(--line) 0 var(--line) var(--line);
  display: inline-block;
}
/* .hover{
  position: relative;
  z-index: 1;
}
.hover:after {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  color: var(--white);
  padding: 0.2em 0.35em 0.25em 0.35em;
  content: attr(data-content);
  transform: translateX(0);
  transition: transform 200ms ease-in-out;
}
.hover:hover::before, .hover:focus::before{
  transform: translateX(10px);
} */
/*.hover::before{
  content: 'Hover';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--blue);
  z-index: -1;
  transition: transform 200ms ease-in-out;
  transform: scaleX(0);
  transform-origin: left;
}
.hover:hover::before, .hover:focus::before{
  transform: scaleX(1);
} */
#about-nav .button, #about-nav a .button{
  margin: 0 0 var(--line) var(--line);
}
.nav-bar .button, .nav-bar a.button{
  border: var(--line) solid var(--white);
  margin: 0 calc(var(--line)*-1) calc(var(--line)*-1) 0;
  background: unset;
}
footer .button, footer a.button, #section-404 .button, #section-404 a.button{
  border: var(--line) solid var(--white);
  margin: 0 calc(var(--line)*-1) calc(var(--line)*-1) 0;
}
#contact .button, #contact a.button, #jobs .button, #jobs a.button{
  border: var(--line) solid var(--white);
  margin: 0 calc(var(--line)*-1) calc(var(--line)*-1) 0;
}
#jobs .contact-nav .button, #jobs .contact-nav.button{
  background: var(--blue);
}
.flex{
  display: flex;
}
.scroll-snap{
  height: 100vh;
  overflow: scroll;
  overflow-x: hidden;
  -webkit-scroll-snap-type: y mandatory;
  scroll-snap-type: y mandatory;
}
.scroll-snap::-webkit-scrollbar{
  display: none;
}
.scroll-snap.no-scroll-snap {
  -webkit-scroll-snap-type: initial !important;
  scroll-snap-type: initial !important;
}
header{
  height: 100vh;
  height: var(--doc-height);
  -webkit-scroll-snap-align: start;
  scroll-snap-align: start;
}
main{
  position: relative;
  background: var(--white);
  height: 100vh;
  height: var(--doc-height);
  overflow: hidden;
  z-index: 1;
}
main::-webkit-scrollbar {
  display: none;
}
#contact{
  background: var(--black);
  color: var(--white);
}
/* .jobs-page{
  background: var(--blue);
  color: var(--white);
} */
/* #jobs{
  background: var(--blue);
} */
#contact a{
  color: var(--white);
}
#contact section{
  background: var(--black);
}
section{
  position: relative;
  min-height: 100vh;
  min-height: var(--doc-height);
  background: var(--white);
  z-index: 1;
}
section{
  -webkit-scroll-snap-align: start;
  scroll-snap-align: start;
}
#section-404{
  background: var(--black);
}
footer{
  display: flex;
  position: relative;
  width: 100%;
  background: var(--black);
  color: var(--white);
  min-height: 100vh;
  min-height: var(--doc-height);
  z-index: 100;
}
.talk{
  display: block;
  margin-top: var(--bigEdge);
}
.sticky{
  /* position: sticky;
  top: 0; */
}
.loading, .vimeo-loading{
  font-family: var(--mono);
  font-size: var(--fontSize2);
  padding: var(--mainEdge);
}
.vimeo-loading{
  position: absolute;
  top: 0;
  z-index: -1;
}
.black .loading{
  color: var(--white);
}
.loading:after, .vimeo-loading:after{
  content: "...";
  overflow: hidden;
  display: inline-block;
  vertical-align: bottom;
  animation: ellipsis-dot 1s infinite .3s;
  animation-fill-mode: forwards;
}

@keyframes ellipsis-dot {
  25% {
    content: "";
  }
  50% {
    content: ".";
  }
  75% {
    content: "..";
  }
  100% {
    content: "...";
  }
}
.logo-clip{
  position: absolute;
  top:0;
  width: 100vw;
  height: 100vh;
  clip-path: inset(0 0 0 0);
  pointer-events: none;
  z-index: 100;
}
.image-overlay{
  display: none;
  position: fixed;
  width: 100%;
  height: 100vh;
  height: var(--doc-height);
  background: var(--black);
  z-index: 100;
}
.image-overlay-content{
  position: relative;
  width: 100%;
  height: 100%;
  align-self: stretch;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: var(--mainEdge);
}
.image-overlay-close{
  position: absolute;
  top: var(--mainEdge);
  right: var(--mainEdge);
  color: var(--white);
  z-index: 101;
  pointer-events: all;
  border: var(--line) solid var(--white);
}
.fullscreen-video{
  display: none;
}
.overlay-image{
  width: 100%;
  height: 100%;
  object-fit: contain;
}
nav{
  position: relative;
  z-index: 100;
  padding: var(--mainEdge);
}
.nav{
  position: sticky;
  top: 0;
  /* background: var(--white); */
}
.contact-nav{
  position: sticky;
  top: 0;
  /* background: var(--black); */
}
.project-nav{
  position: fixed;
  top: 0;
  width: 100%;
  /* background: var(--white); */
}
.nav-bar{
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.nav-bar-grid{
  position: relative;
  /* align-items: center; */
  display: flex;
  justify-content: space-between;
}
.project-section .nav-bar-grid{
  justify-content: end;
}
.nav-bar-grid .flex{
  gap: var(--line);
}
#projects .nav-bar-grid{
  justify-content: space-between;
}
.overlay{
  display: none;
  position: absolute;
  right: 0;
}
#filter-overlay, #menu-overlay{
  position: fixed;
  right: var(--mainEdge);
  top: var(--mainEdge);
  z-index: 101;
}
#about-nav #menu-overlay{
  position: absolute;
}
.nav-controls{
  text-align: end;
}
.video-controls{
  display: none;
  position: relative;
  font-size: var(--fontSize4);
  height: fit-content;
  color: var(--white);
  border: var(--line) solid var(--white);
  padding: 0.2em 0.35em 0.25em 0.35em;
  margin: 0 calc(var(--line)*-1) calc(var(--line)*-1) 0;
}
.timecode{
  display: flex;
  text-align: center;
  justify-content: space-between;
  gap: var(--smallEdge);
}
.pause, .play{
}
.timestamp{
  font-family: var(--mono);
  font-size: var(--fontSize2);
}
.nav-list{
  display: flex;
  flex-direction: column;
  align-items: end;
}
.nav-list a{
  color: var(--white);
}
.selected-filter{
  display: none;
}
.selected-filter .comma:not(.selected-filter.hyphen .comma){
  display: none;
}
.reset-filter{
  display: none;
  font-family: var(--mono);
  font-size: var(--fontSize2);
  text-transform: uppercase;
  width: fit-content;
  border: var(--line) solid var(--black);
  padding: 0.2em 0.35em 0.25em 0.35em;
  margin-top: calc(var(--line) * -1);
}
.logo{
  width: 20%;
  min-width: 75px;
  max-width: 160px;
}
.menu{
  position: relative;
}
.x{
  display: none;
  /* position: absolute;
  left: 50%;
  transform: translateX(-50%); */
}
.filter-button{
  display: flex;
  text-align: center;
  justify-content: space-between;
  /* gap: var(--smallEdge); */
}
.selected-filters{
  display: flex;
  text-transform: uppercase;
  font-family: var(--mono);
  font-size: var(--fontSize2);
}
.filter-x{
  display: none;
}
.invert{
  background: unset;
}
.white{
  color: var(--white);
}
.header-content{
  position: absolute;
  width: 100%;
  height: 100vh;
}
.background-header{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1;
  pointer-events: none;
}
.mobile-vimeo-player{
  display: none;
}
.background-header video, .background-header iframe{
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 100vh;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}

@media (min-aspect-ratio: 16/9) {
  .background-header video, .background-header iframe {
    height: 56.25vw;
  }
}
@media (max-aspect-ratio: 16/9) {
  .background-header video, .background-header iframe {
    width: 177.78vh;
  }
}

.header-image{
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.content{
  position: relative;
  width: 100%;
  padding: var(--mainEdge);
}
.contact-content, .about-content, .jobs-content{
  position: relative;
  width: 100%;
  padding: 0 var(--mainEdge);
  padding-bottom: calc(var(--enormousEdge)*2);
}
.container-content{
  position: relative;
  width: 100%;
  padding: var(--mainEdge);
  padding-top: unset;
}
.intro-text p:not(:first-of-type){
  margin-top: var(--mainEdge);
}
.intro-text{
  line-height: 1;
  letter-spacing: var(--letter-spacing);
}
.intro-text strong{
  font-weight: unset;
  color: var(--blue);
}
.intro-text-2{
  margin-top: var(--mainEdge);
  line-height: 1;
  letter-spacing: var(--letter-spacing);
}
.filter-container{
  position: absolute;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1px 2px;
  top: 50%;
  left: 50%;
  width: 100%;
  transform: translate(-50%, -50%);
}
.all-filter{
  display: flex;
  color: var(--white);
  background: var(--black);
  padding: 0.2em 0.35em 0.25em 0.35em;
  width: fit-content;
}
.filter{
  display: flex;
  color: var(--white);
  background: var(--black);
  padding: 0.2em 0.35em 0.25em 0.35em;
  width: fit-content;
  gap: var(--smallEdge);
}
.menu-filter{
  display: flex;
  gap: 2px;
}
.active{
  color: var(--white);
  background: var(--blue);
}
.abb{
  font-family: var(--mono);
  font-size: var(--fontSize2);
  align-self: start;
}
.break {
  flex-basis: 100%;
  height: 0;
}
.mobile-break{
  display: none;
  height: 0;
}
.go{
  display: none;
  position: absolute;
  bottom: var(--mainEdge);
  right: var(--mainEdge);
  text-align: center;
  justify-content: space-between;
  gap: var(--smallEdge);
}
.project-section{
  background: var(--white);
}
.project-container, .footer-container{
  display: grid;
  width: 100%;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: var(--mainEdge);
}
.footer-content{
  position: relative;
  flex-direction: column;
  display: flex;
}
.project{
  position: relative;
  flex-direction: column;
  display: flex;
  opacity: 0;
  top: var(--enormousEdge);
}
.project-content-container{
  display: flex;
  flex-direction: column;
}
.project-shadow{
  width: calc(100% - (var(--mainEdge)*2));
  position: absolute;
  align-self: center;
  display: block;
  background: var(--black);
  opacity: 0.05;
}
.project-image{
  display: block;
  width: 100%;
  object-fit: cover;
  object-position: center;
  flex: 0 1 auto;
  min-height: 0;
  box-shadow: 0px 0  0px 0 rgba(0,0,0,0.1);
  transition: transform 0.25s cubic-bezier(0,0.5,0.5,1), box-shadow 0.25s cubic-bezier(0,0.5,0.5,1);
}
.drop-shadow{
  transition: transform 0.25s ease-out, box-shadow 0.25s ease-out;
  box-shadow: 0px calc(var(--mainEdge)* 1.5 - var(--smallEdge))  5px calc(var(--smallEdge) * -0.5) rgba(0,0,0,0.1);
  -webkit-box-shadow: 0px calc(var(--mainEdge)* 1.5 - var(--smallEdge))  5px calc(var(--smallEdge) * -0.5) rgba(0,0,0,0.1);
  -moz-box-shadow: 0px calc(var(--mainEdge)* 1.5 - var(--smallEdge))  5px calc(var(--smallEdge) * -0.5) rgba(0,0,0,0.1);
}
.project-content{
  margin-top: calc(var(--smallEdge) * 1.6);
  flex: 0 0 auto;
  transition: transform 0.25s cubic-bezier(0,0.5,0.5,1);
}
.project-info{
  display: flex;
  font-family: var(--mono);
  font-size: var(--fontSize2);
  text-transform: uppercase;
}
.project .project-number, .project .project-categories, .footer-content .project-number, .footer-content .project-categories{
  width: 50%;
}
.project-categories{
  display: flex;
  gap: var(--smallEdge);
}
.project-desc{
  font-family: var(--regular);
  font-size: var(--fontSize3);
  margin-top: var(--smallEdge);
}
.background-holder{
  position: absolute;
  align-self: stretch;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 100vh;
  min-height: calc(var(--vh, 1vh) * 100);
}
.logo-footer{
  display: flex;
  align-items: center;
  position: absolute;
  width: calc(100vw - var(--bigEdge));
  height: calc(100vh - (var(--bigEdge)*2));
  fill: var(--white)
}
.logo-svg{
  width: 100%;
  height: 100%;
}
.back-to-top{
  position: absolute;
  bottom: var(--mainEdge);
  right: var(--mainEdge);
}


/* .projects-container{
  margin-bottom: calc(var(--enormousEdge)*2);
} */
.project-case{
  display: block;
  position: relative;
  width: 100%;
}
.project-case:not(:first-of-type){
  margin-top: calc(var(--nav-height) + var(--biggerEdge));
}
.project-information{
  position: sticky;
  top: var(--nav-height);
  transition: opacity 750ms ease;
}
.project-case-info{
  display: flex;
  /* width: 16.6%; */
  gap: var(--bigEdge);
  min-width: fit-content;
  font-family: var(--mono);
  font-size: var(--fontSize2);
  text-transform: uppercase;
  margin-bottom: calc(var(--mainEdge) * 0.5);
}
.project-title p{
  display: inline;
}
.project-case-info, .project-title, .credit-row{
  /* transition: opacity 0.2s ease; */
}
.project-credits{
  margin-top: var(--bigEdge);
}
.credit{
  font-family: var(--mono);
  font-size: var(--fontSize2);
  text-transform: uppercase;
  vertical-align: top;
  width: calc(100vh/12);
}
.credit-names{
  margin-left: var(--bigEdge);
}
.credit-row{
  display: flex;
  position: relative;
  border: var(--line) solid var(--black);
  padding: 0.2em 0.35em 0.25em 0.35em;
  margin: 0 calc(var(--line)*-1) calc(var(--line)*-1) 0;
  width: fit-content;
}
.share{
  border: var(--line) solid var(--black);
  margin: 0 calc(var(--line)*-1) calc(var(--line)*-1) 0;
}
.project-image-container{
  margin-top: var(--biggerEdge);
  margin-bottom: var(--biggerEdge);
}
.project-image-content{
  position: relative;
  width: 100%;
  pointer-events: none;
}
.project-image-content:not(:first-of-type){
  margin-top: var(--mainEdge);
}
.project-text-content{
  width: 66.6%;
  margin: var(--bigEdge) auto;
}
.project-text-content strong{
  font-family: var(--mono);
  font-size: var(--fontSize2);
  font-weight: 500;
}
.vimeo-content{
  position: relative;
  margin: auto;
  z-index: 100;
  pointer-events: all;
}
.vimeo-controls{
  position: absolute;
  display: block;
  bottom: 0;
  right: 0;
  font-family: var(--mono);
  font-size: var(--fontSize3);
  text-transform: uppercase;
  padding: 0.2em 0.35em 0.25em 0.35em;
  z-index: 1;
  pointer-events: all;
}
.vimeo-container{
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 100%;
}
.project-vimeo-container{
  position: relative;
  pointer-events: all;
  background: rgb(0, 0, 0, 0.1);
}
.vimeo-container iframe, .project-vimeo-container iframe{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
/* #projects iframe{
  pointer-events: none;
} */
.project-image-grid{
  display: grid;
  gap: var(--mainEdge);
  grid-template-columns: auto auto;
}
.project-case-image{
  position: relative;
  display: block;
  margin: auto;
  filter: blur(5px);
  transform: translate3d(0,0,0);
  z-index: 100;
  pointer-events: all;
}
.project-case-half{
  width: 100%;
}
.small{
  width: 33.33%;
}
.medium{
  width: 50%;
}
.middle{
  width: 66.66%;
}
.large{
  width: 83.33%;
}
.fullwidth{
  width: 100%;
}
.fullscreen{
  width: calc(100% + var(--mainEdge) *2);
  left: calc(var(--mainEdge) * -1);
}
.rounded-corners{
  border-radius: 50%;
}
.contact-container, .button-container{
  margin-top: var(--bigEdge);
}
.contact-container p:not(:first-of-type){
  margin-top: var(--bigEdge);
}
.privacy-container{
  margin-top: var(--enormousEdge);
}
.q-a-container{
  position: relative;
  width: 100%;
  margin-top: var(--enormousEdge);
}
.q-a-intro, .question, .answer{
  width: 66.6%;
  margin: auto;
}
.q-a{
  margin-top: var(--biggerEdge);
}
.question{
  font-family: var(--regular);
  font-size: var(--fontSize3);
}
.answer{
  margin-top: var(--smallEdge);
}
.answer p:not(:first-of-type){
  margin-top: var(--mainEdge);
}
.q-a-image-container{
  margin-top: var(--bigEdge);
}
.q-a-image-description{
  margin-top: var(--smallEdge);
  font-family: var(--mono);
  font-size: var(--fontSize2);
}
.about-image-container{
  position: relative;
  width: 100%;
  /* height: calc(100vh - var(--mainEdge) * 2); */
  /* margin-top: var(--enormousEdge); */
  z-index: 100;
}
.about-image-grid{
  display: grid;
  gap: var(--mainEdge);
  grid-template-columns: auto auto;
}
.about-grid-image{
  display: block;
  width: 100%;
}
.about-image{
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.team-container{
  display: grid;
  width: 100%;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: var(--mainEdge);
}
.team-member{
  position: relative;
  flex-direction: column;
  display: flex;
}
.team-animation-container{
  flex: 0 1 auto;
  min-height: 0;
}
.gallery-image{
  position: relative;
  display: block;
  width: 100%;
  z-index: 1;
  flex: 0 1 auto;
  min-height: 0;
}
.gallery-image-description{
  margin-top: var(--smallEdge);
  font-family: var(--mono);
  font-size: var(--fontSize2);
  flex: 0 0 auto;
}
.team-image{
  position: relative;
  display: block;
  width: 100%;
  z-index: 1;
}
.team-image-overlay{
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 0;
}
.team-content{
  margin-top: calc(var(--smallEdge) * 1.6);
  font-family: var(--mono);
  font-size: var(--fontSize2);
  text-transform: uppercase;
  line-height: calc(var(--fontSize2) * 1.4);
  flex: 0 0 auto;
}
.team-categories{
  display: flex;
  gap: var(--smallEdge);
}
.formie-container{
  margin-top: var(--enormousEdge);
}



/* FORM STYLES */
*:focus {
  outline: none !important;
  border-color: inherit !important;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}
textarea:focus, input:focus{
  outline: none !important;
  outline-width: 0 !important;
}
.fui-i{
  --fui-font: var(--regular);
  --fui-font-size: var(--fontSize4);

  --fui-color: var(--black);
  --fui-primary-color: var(--black);
  --fui-primary-color-hover: var(--black);

  --fui-border-color: none;
  --fui-border-radius: 0;

  --fui-focus-border-color: none;
  --fui-focus-shadow: none;
  letter-spacing: var(--letter-spacing);
}
.fui-row{
  margin-left: 0 !important;
  margin-right: 0 !important;
  border: var(--line) solid var(--black) !important;
  margin: 0 calc(var(--line)*-1) calc(var(--line)*-1) 0 !important;
  padding: 0.2em 0.35em 0.25em 0.35em;
}
.fui-group{
  --fui-group-padding: none;
  padding-bottom: unset !important;
}
.fui-field{
  --fui-row-gutter: 0;
  --fui-field-gutter: 0;
}
.fui-field-container{
  display: flex;
  width: 100%;
}
.fui-label{
  width: 8.3%;
  font-family: var(--mono);
  text-transform: uppercase;
  color: var(--black) !important;
  --fui-label-font-size: var(--fontSize2);
  --fui-label-font-weight: 500;
  --fui-label-line-height: 1;
  --fui-label-margin: 0;
}
.fui-required{
  display: none;
}
.fui-input-container{
  flex: 1;
}
.fui-input, .fui-select{
  --fui-input-background-color: var(--white);
  --fui-input-font-size: var(--fontSize4);
  --fui-input-padding: 0;
  --fui-input-line-height: 1;
  font-weight: 430;
  color: var(--black);
}
.fui-input::placeholder{
  font-size: var(--fontSize4) !important;
  color: var(--black) !important;
  opacity: 0.7 !important;
}
.fui-select{
  font-size: var(--fontSize4) !important;
  --fui-select-bg-size: var(--fontSize4);
  --fui-select-bg-image: url('../../assets/images/arrow.svg');
}
textarea{
  resize: none;
  font-size: var(--fontSize4) !important;
  height: calc(var(--fontSize4) * 4);
}
textarea::placeholder{
  font-size: var(--fontSize4) !important;
  color: var(--black) !important;
  opacity: 0.7 !important;
}
.fui-submit{
  --fui-submit-btn-color: var(--white);
  --fui-submit-btn-bg-color: var(--black);
}
.fui-btn-container .fui-btn:hover{
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}
.fui-btn-wrapper{
  margin: 0 !important;
  --fui-btn-margin: 0;
  --fui-btn-container-padding: 0;
  --fui-btn-container-margin: 0 calc(var(--line)*-1) calc(var(--line)*-1) 0;
}
.fui-btn{
  --fui-btn-font-weight: 430;
  --fui-btn-line-height: 1;
  --fui-btn-padding: 0.2em 0.35em 0.25em 0.35em;
  --fui-btn-text-decoration: none;
  --fui-border-radius: 0;
  --fui-btn-font-size: var(--fontSize4);
  --fui-btn-border : var(--line) solid var(--black);

  text-transform: none;
  font-family: var(--fontSize4);
  font-weight: 430 !important;
}
.fui-error-message{
  display: none !important;
}
.fui-alert{
  --fui-alert-padding: 0;
  --fui-alert-font-size: var(--fontSize4);
  --fui-alert-line-height: 1;
  --fui-alert-font-weight: 430;
  --fui-alert-margin-bottom: var(--mainEdge);
}
.fui-alert-success{
  --fui-alert-success-bg-color: var(--white);
  --fui-alert-success-color: var(--black);
  --fui-alert-line-height: 1;
  --fui-alert-margin-bottom: var(--mainEdge);
  --fui-alert-font-size: var(--fontSize4);
  --fui-alert-font-weight: 430;
}
.fui-alert-error{
  font-size: var(--fontSize4) !important;
  --fui-alert-error-bg-color: var(--white);
  --fui-alert-error-color: var(--black);
}
.fui-input.fui-error, .fui-select.fui-error{
  --fui-input-error-color: var(--black);
  --fui-input-error-border-color: var(--white);
}

.player{
  display: none !important;
}

@media only screen and (max-width: 1400px) {
  :root {  
    --smallEdge: 8px;
    --mainEdge: 16px;
    --bigEdge: 48px;
    --biggerEdge: 64px;
    --hugeEdge: 126px;
    --enormousEdge: 190px;
  
    --fontSize1: 12px;
    --fontSize2: 16px;
    --fontSize3: 24px;
    --fontSize4: 48px;
    --fontSize5: 64px;

    --line: 1.5px;
  }
}

@media only screen and (max-width: 1200px) {
  :root {  
    --smallEdge: 7px;
    --mainEdge: 14px;
    --bigEdge: 36px;
    --biggerEdge: 48px;
    --hugeEdge: 100px;
    --enormousEdge: 150px;
  
    --fontSize1: 12px;
    --fontSize2: 14px;
    --fontSize3: 22px;
    --fontSize4: 36px;
    --fontSize5: 48px;
  }
}

@media only screen and (max-width: 1000px) {
  :root {  
    --smallEdge: 6px;
    --mainEdge: 12px;
    --bigEdge: 32px;
    --biggerEdge: 42px;
    --hugeEdge: 88px;
    --enormousEdge: 132px;
  
    --fontSize1: 12px;
    --fontSize2: 12px;
    --fontSize3: 20px;
    --fontSize4: 32px;
    --fontSize5: 42px;
  }
  .project-container, .team-container, .footer-container{
    grid-template-columns: 1fr 1fr;
  }
  .footer-content:nth-child(3), .footer-content:nth-child(4){
    display: none;
  }
  .q-a-intro, .question, .answer, .project-text-content{
    width: 100%;
  }
}

@media only screen and (max-width: 800px) {
  /* :root {  
    --smallEdge: 5px;
    --mainEdge: 12px;
    --bigEdge: 24px;
    --biggerEdge: 32px;
    --hugeEdge: 68px;
    --enormousEdge: 105px;
  
    --fontSize1: 10px;
    --fontSize2: 10px;
    --fontSize3: 18px;
    --fontSize4: 24px;
    --fontSize5: 32px;
  } */
  .mobile-break{
    display: block;
    flex-basis: 100%;
  }
}

@media only screen and (max-width: 600px) {
  /* :root {  
    --smallEdge: 5px;
    --mainEdge: 12px;
    --bigEdge: 22px;
    --biggerEdge: 28px;
    --hugeEdge: 60px;
    --enormousEdge: 92px;
  
    --fontSize1: 10px;
    --fontSize2: 10px;
    --fontSize3: 16px;
    --fontSize4: 22px;
    --fontSize5: 28px;
  } */
  .intro-text{
    font-size: var(--fontSize4) !important;
  }
  .project-container, .team-container, .footer-container{
    grid-template-columns: 1fr;
  }
  .footer-content:nth-child(3), .footer-content:nth-child(4){
    display: flex;
  }
  .project-image-grid, .about-image-grid{
    display: flex;
    flex-direction: column;
    gap: var(--mainEdge);
  }
  .credit, .credit-names{
    display: block;
  }
  tr{
    display: block;
    padding: 0.2em 0.35em 0.25em 0.35em;
    margin: 0 0 calc(var(--line)*-1) 0;
  }
  td{
    padding: unset;
  }
  .credit-names{
    margin-left: unset;
  }
  .small{
    width: 100%;
  }
  .medium{
    width: 100%;
  }
  .middle{
    width: 100%;
  }
  .large{
    width: 100%;
  }
  .fullwidth{
    width: 100%;
  }
  .fullscreen{
    width: 100%;
    left: unset;
  }
}

@media only screen and (max-width: 400px) {
  :root {  
    --smallEdge: 5px;
    --mainEdge: 12px;
    --bigEdge: 20px;
    --biggerEdge: 24px;
    --hugeEdge: 54px;
    --enormousEdge: 82px;
  
    --fontSize1: 10px;
    --fontSize2: 10px;
    --fontSize3: 14x;
    --fontSize4: 20px;
    --fontSize5: 24px;
  }
}

@media (max-aspect-ratio: 1/1) {
  .vimeo-player{
    display: none;
  }
  .mobile-vimeo-player{
    display: block;
  }
  .about-image-container{
    height: unset;
  }
}