
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-weight: inherit;
	font-style: inherit;
	font-size: 100%;
	font-family: inherit;
	vertical-align: baseline;
}
/* remember to define focus styles! */
:focus {
	outline: 0;
}
body {
	line-height: 1;
	color: black;
	background: white;
}
ol, ul {
	list-style: none;
}
/* tables still need 'cellspacing="0"' in the markup */
table {
	border-collapse: separate;
	border-spacing: 0;
}
caption, th, td {
	text-align: left;
	font-weight: normal;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: "";
}
blockquote, q {
	quotes: "" "";
}

::-moz-selection { /* Code for Firefox */
    background: #FEFF00;
}

::selection {
    background: #FEFF00;
}


body {
	margin: 0;
	font-family: 'Graphik';
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
    letter-spacing: -0.034em;
}


@font-face {
    font-family: 'Graphik';
    src: url('../fonts/Graphik-Regular.eot');
    src: url('../fonts/Graphik-Regular.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Graphik-Regular.woff2') format('woff2'),
        url('../fonts/Graphik-Regular.woff') format('woff'),
        url('../fonts/Graphik-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Graphik';
    src: url('../fonts/Graphik-Medium.eot');
    src: url('../fonts/Graphik-Medium.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Graphik-Medium.woff2') format('woff2'),
        url('../fonts/Graphik-Medium.woff') format('woff'),
        url('../fonts/Graphik-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Graphik';
    src: url('../fonts/Graphik-RegularItalic.eot');
    src: url('../fonts/Graphik-RegularItalic.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Graphik-RegularItalic.woff2') format('woff2'),
        url('../fonts/Graphik-RegularItalic.woff') format('woff'),
        url('../fonts/Graphik-RegularItalic.ttf') format('truetype');
    font-weight: normal;
    font-style: italic;
}

@font-face {
    font-family: 'Graphik';
    src: url('../fonts/Graphik-MediumItalic.eot');
    src: url('../fonts/Graphik-MediumItalic.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Graphik-MediumItalic.woff2') format('woff2'),
        url('../fonts/Graphik-MediumItalic.woff') format('woff'),
        url('../fonts/Graphik-MediumItalic.ttf') format('truetype');
    font-weight: 500;
    font-style: italic;
}

img {
    width: 100%;
    -webkit-transform:translate3d(0,0,0);

}




/*
Makes images container to occupy some space 
when the images aren't loaded yet.
This value depends on your layout.
*/
.imageList li {
    min-height: 300px;
    background-color: #A0FAFF;
}

/*
Avoid empty images to appear as broken
*/
img:not([src]):not([srcset]) {
    visibility: hidden;
}

/* 
Fixes the Firefox anomaly while images are loading
*/
@-moz-document url-prefix() {
    img:-moz-loading {
        visibility: hidden;
    }
}





/* -------------------------------- 

NAVIGATION

-------------------------------- */

header {
  width: 100%;
  background-color: red;
  z-index: 11;
  position:fixed;
}


.cd-auto-hide-header {
  position: fixed;
  z-index: 3;
  top: 0;
  left: 0;
  width: 100%;
  height: 64px;
  background-color: #ffffff;
  /* Force Hardware Acceleration */
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
  will-change: transform;
  -webkit-transition: -webkit-transform .5s;
  transition: -webkit-transform .5s;
  transition: transform .5s;
  transition: transform .5s, -webkit-transform .5s;
}
.cd-auto-hide-header::after {
  clear: both;
  content: "";
  display: block;
}
.cd-auto-hide-header.is-hidden {
  -webkit-transform: translateY(-100%);
      -ms-transform: translateY(-100%);
          transform: translateY(-100%);
}


@media only screen and (max-width: 1024px) {
  .cd-auto-hide-header {
    height: 50px;
  }
}






:root {
  --mainColor: #ff9800;
}


/*
.nav-links a {
  background:
     linear-gradient(
       to bottom, var(--mainColor) 0%,
       var(--mainColor) 100%
     );
    background-position: 0 100%;
    background-repeat: repeat-x;
    background-size: 0px 0px;
  color: #000;
  text-decoration: none;
  transition: background-size .3s ease-in-out;
}

.nav-links a:hover {
  background-size: 20px 50px;
  transition: background-size .5s ease-in-out;
}
*/

.nav-container {
    display: flex;
    align-items: center;
    height: 64px;
}

nav {
    width: 96.778%;
    margin: 0 auto;
    font-weight: normal;
    font-size: 1.250em;
}

@media only screen and (max-width: 1024px){
  .nav-container {
    height: 50px;
  }

  nav {
    width: 90.4%;
  }
}


nav ul {
    list-style: none;
    display: flex;
    justify-content: space-between;
    text-align: center;
}

nav ul li {
    display: inline-block;

}

nav a {
    color: #000;
    position: relative;
    text-decoration: none;
    padding-bottom: 4px;
}

nav b, nav a b {
    font-weight: 500;
}
nav a:before, nav a:after {
    content: '';
    position: absolute;
    bottom: 1px;
    left: 0;
    right: 0;
    height: 1px;
    background-color: #000;
}
nav a:before {
  opacity: 0;
  -webkit-transform: translateY(-8px);
          transform: translateY(-8px);
  -webkit-transition: opacity 0s, -webkit-transform 0s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transition: opacity 0s, -webkit-transform 0s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transition: transform 0s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0s;
  transition: transform 0s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0s, -webkit-transform 0s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
nav a:after {
  opacity: 0;
  -webkit-transform: translateY(4px);
          transform: translateY(4px);
  -webkit-transition: opacity 0.2s, -webkit-transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transition: opacity 0.2s, -webkit-transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.2s;
  transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.2s, -webkit-transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
nav a:hover:before, nav a:hover:after, nav a:focus:before, nav a:focus:after {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
nav a:hover:before, nav a:focus:before {
  -webkit-transition: opacity 0.2s, -webkit-transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transition: opacity 0.2s, -webkit-transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.2s;
  transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.2s, -webkit-transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
nav a:hover:after, nav a:focus:after {
  -webkit-transition: opacity 0s 0.2s, -webkit-transform 0s 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transition: opacity 0s 0.2s, -webkit-transform 0s 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transition: transform 0s 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0s 0.2s;
  transition: transform 0s 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0s 0.2s, -webkit-transform 0s 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}












/*
.tile {
  position: relative;
  width: 33.33333%;
  color: white;
}

.tile:after {
  content: "";
  display: block;
  padding-bottom: 124.18%;
}

.tile-wide {
  position: relative;
  width: 66.66666%;
  color: white;
}

.content {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size:cover;
  transform: scale(1);
  -webkit-transition: all 0.05s ease-in-out;
  transition: all 0.05s ease-in-out;
}

.content:hover {
  z-index: 2;
}

video {
  display:block;
  width: 100%;

}



.tile {
  position: relative;
  width: 33.3333%;
  height: auto;
  color: white;
}

.tile-wide {
  position: relative;
  width: 66.66666%;
  height: auto;
  color: white;
}

*/



.margin-container {
    width: 96.778%;
}


.grid-container {
    display: grid;
    grid-template-columns: 4.538%;
}







.body-text {
    margin: 0 auto;
    width: 47.584%;
    font-size: 1.563em;
    line-height: 1.280em;
    margin-top: 3.520em;
    margin-bottom: 3.520em;
    background: #fff;
    z-index: 1;
}

@media only screen and (max-width: 1024px){
  .body-text {
    width: 90.4%;
    font-size: 1.250em;
  }
}

.body-text h2 {
    font-weight: 500;
    padding-bottom: 1.040em;
}

.body-text p {
    margin-bottom: 0.640em;
    text-indent: 3.360em;
}

.img-backdrop {
    width: 100%;
    background-color: #F9F9F9;
    overflow: hidden;
}

.padding {
    padding-top: 6.442%;
    padding-bottom: 6.442%;
}

.padding-top {
    padding-top: 6.442%;
}


.padding-bottom {
    padding-bottom: 6.442%;
}


/* Desktop and Mobile Image Container */

.img-desktop-mobile-container {
    width:  72.181%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
}

.img-dskmbl-desktop {
    width: 65.922%;
}

.img-dskmbl-mobile {
    width: 23.326%;
}

@media only screen and (max-width: 1024px){
  .img-desktop-mobile-container {
    width: 82%;
  }
}

/* Desktop Image Container */

.img-desktop-container {
    width: 59.882%;
    margin: 0 auto;
}

.img-dsk-desktop {
    width: 100%;
}

@media only screen and (max-width: 1024px){
  .img-desktop-container {
    width: 82%;
  }
}


/* x2 Desktop Image Container */

.img-x2-desktop-container {
    width: 84.407%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
}

.img-x2-desktop-inner-container-left {
    width: 45.62%;
}

.img-x2-desktop-inner-container-right {
    width: 45.62%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.img-x2dsk-desktop {
    width: 100%;
}

@media only screen and (max-width: 1024px){
  .img-x2-desktop-container {
    flex-direction: column;

    width: 82%;
    margin: 0 auto;
  }
  .img-x2-desktop-inner-container-left {
    margin-bottom: 6.442%;
  }

  .img-x2-desktop-inner-container-left, .img-x2-desktop-inner-container-right{
    width: 100%;

  }

  .img-x2dsk-desktop {
    width: 100%;
    margin-bottom: 6.442%;
  }
}


/* Desktop Offset and Mobile */

.img-desktop-offset-mobile-container {
    width: 86.09%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.img-dskoffmbl-desktop {
    width: 71.428%;
}

.img-dskoffmbl-mobile {
    width: 19.387%;
}

.right {
    display: flex;
    justify-content: flex-end;
}


/* Mobile Tile x3 */

.img-x3-mobile-tile-container {
    width: 72.108%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
}

.img-mobile-tile {
    width: 23.147%;
}


/* Full Width */

.img-full-width {
    width: 100%;
}


/* Inset Image */

.img-inset {
    width: 84.407%;
    margin: 0 auto;
}


/* Image with Text */

.img-text-right {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  align-content: flex-end;
}

.img-text-container {
  width: 92.24%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.imgtxt-image {
  width: 54.206%;
}

.imgtxt-text {
  width: 38.253%;
    font-size: 1.563em;
    line-height: 1.280em;
    margin: 0;
}

@media screen and (max-width: 1024px) {
  .img-text-right {
      
    align-items: flex-start;
      align-content: flex-start;

  }
  .img-text-container {
    width: 100%;
    flex-direction: column;
  }
  .imgtxt-image {
    width: 90.4%;
    align-self: flex-end;
  }
  .imgtxt-text {
    width: 90.4%;
      margin-top: 3.520em;
  font-size: 1.250em;
  }
}



/* Small Inset Image */

.img-inset-medium {
  width: 62.884%;
  margin: 0 auto;
}

/* Half Image */

.img-half {
  width: 100%;
  display: flex;
}

.imghalf-image {
  width: 50%;
}



/* very small inset image */

.img-inset-small {
  width: 55.9297%;
  margin: 0 auto;
}


/* Shadows */

.shadow {
    box-shadow:
        0 2.8px 8px rgba(0, 0, 0, 0.034),
        0 0px 24px rgba(0, 0, 0, 0.048),
        0 4px 55px rgba(0, 0, 0, 0.06),
        0 8px 17.9px rgba(0, 0, 0, 0.072),
        0 12px 33.4px rgba(0, 0, 0, 0.086),
        0 100px 80px rgba(0, 0, 0, 0.12)
    ;
}


.filter-shadow {
  transform: translateZ(0);
  -webkit-filter: drop-shadow(0px 16px 40px rgba(0,0,0,0.3));
  filter: drop-shadow(0px 16px 40px rgba(0,0,0,0.3));

}


.filter-shadow::before {
    transform: translateZ(0);
    -webkit-filter: drop-shadow(0px 16px 40px rgba(0,0,0,0.01));
  filter: drop-shadow(0px 16px 40px rgba(0,0,0,0.01));
}

@media screen and (max-width: 1024px) {
  .filter-shadow {
    -webkit-filter: drop-shadow(0px rgba(0,0,0,0));
    filter: drop-shadow(0px rgba(0,0,0,0));
    
}

}


.intro-section {
  position: relative;
}


.intro-holder {
  margin-top: 10.614%;
  width: 100%;
  display: flex;
  align-items: flex-end;
}

.intro-container {
  width: 84.48%;
  margin: 0 auto;
  margin-bottom: 8%;
  display: flex;
  justify-content: space-between;
  align-self: center;

}

@media only screen and (max-width: 1024px){
  .intro-container {
    width: 90.4%;
    display: flex;
    flex-direction: column;
  }
}

.detail-container {
    width: 34.488%;
    font-size: 1.250em;
    margin-top: .7em;
    z-index: 1;
}

.role-container {
    display: flex;
}

.project-container {
    display: flex;
    margin-top: 2.05em;
}

.detail-title {
    width: 42.211%;
    font-weight: 500;
}

.detail-info {
    width: 57.788%;
}

@media only screen and (max-width: 1024px){
  .detail-container {
    width: 100%;
    order: 2;
    margin-top: 2em;
  }

  .role-container, .project-container {
    display: inline-block;
    width: 100%;
  }

}

.descrip-container {
    width: 56.325%;
    font-size: 1.875em;
    line-height: 1.333em;
    z-index: 2;
}

.descrip-container h1 {
    font-weight: 500;
    padding-bottom: 0.767em;
}

.descrip-container p {
  text-indent: 3.360em;
}

@media only screen and (max-width: 1024px){
  .descrip-container {
    width: 100%;
    font-size: 1.250em;
    margin-top: 2em;
    order:1;
  }

}


.title-background {
  display: inline-block;
  position: absolute;
  font-size: 12.500em;
  color: #F8F8F8;
  line-height: .85em;
  left: -.1em;
  bottom:-.1em;
  z-index: 0;
  font-weight: 500;
}


@media only screen and (max-width: 1024px){
  .title-background {
    font-size: 10em;
  }

}
@media only screen and (max-width: 768px){
  .title-background {
    font-size: 7em;
  }

}

.intro-image-container {
  position: relative;
  transform: translateZ(0);
}

.intro-image {
  width: 100%;


}

.overlay {
  display: block;
  position: absolute;
  left: 0;
  top:0;
  background-color: white;
  width: 100%;
  height: 100%;
}


/* Fade page 

.fader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999999;
    pointer-events: none;
    background: white;
    animation-duration: 300ms;
    animation-timing-function: ease-in-out;
    opacity: 1;
}

*/

/* home page effects */



.container {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 33.3333%);
  grid-template-rows: repeat(3, 40vmax);
  transform: translateZ(0);
}

@media screen and (max-width: 1024px) {

.container {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 50%);
  grid-template-rows: repeat(5, 64vmax);
}

}

@media screen and (max-width: 800px) {

.container {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 50%);
  grid-template-rows: repeat(5, 56vmax);
}

}

@media screen and (max-width: 600px) {

.container {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(1, 100%);
  grid-template-rows: repeat(9, 68vmax);
}

}

.tile {
  position: relative;
  overflow: hidden;
}
/*
.intro-home-container {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
}


@media screen and (max-width: 900px) {

  .tile {

    width: 50%;
    height: 62.43vmax;
  }

}

@media screen and (max-width: 500px) {
  .container {
        flex-direction: column;
  }

  .tile {

    width: 100%;
    height: 93.64vmax;
  }
}
*/

.tile img {
  width: 100%;
  display: block;
}

.tile canvas {
  height: 100%;
}
/*

.tile:hover .hidden{
  opacity: 0;
}
.hidden {
  position: absolute;
  top: 0;
  left: 0;
}

.hidden img {
  max-width:100%;
  max-height:100%;
}

*/

.tile-filler {

  position: relative;
  font-size: 1.250em;
  line-height: 1.2em;
  margin-left: 6.25%; 
  margin-top: 1.875em;
}

.tile-filler-box {

}


.tile-link {
  position: absolute;
  width: 100%;
  height: 100%;
}

.tile:hover .link-text-container {
  opacity: 0;
  transition: opacity .5s;
  transition: opacity .5s, opacity .5s;
}

.link-container {
  position: absolute;
  color: white;
  overflow: hidden;
}

.link-text-container {
  margin-left: 1.813em; 
  margin-top: 1.875em;
}

@media screen and (max-width: 500px) {
  .link-text-container {
    margin-left: 1.125em;
    margin-top: 1.3em;
  }
}

.link-title {
  font-size: 2.5em;
}

.link-detail {
  font-size: 1.25em;
  margin-top: .375em;
}

.project-link {
  height: 100%;
  width: 100%;
}



.barba-container {
  background: white;
}




.fader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -10;
    pointer-events: none;
    background: white;
    animation-duration: 300ms;
    animation-timing-function: ease-in-out;

    display: flex; 
    align-items: center;
    justify-content: center;
}

.loading {
    width:115px;

}

.loading img {
    width: 100%;
}



.next-project-container {
  width: 100%;
}

.next-project-title {

font-weight: 500;
  margin-left: .9em; 


font-size: 1.563em;
}

.next-project {

 
  margin-left: .9em; 
  margin-top: 1em;
  margin-bottom: 1em;

font-size: 1.563em;

}

.next-project a {
  display: inline-block;
 
  font-size: 1.563em;
    text-decoration: none;
        color: #000;
        padding-bottom: .6em;
        padding-right: 1em;
width: auto;

}

.next-project a:hover {
  opacity: .5;
  -webkit-transition: opacity 0.2s,  cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transition: opacity 0.2s, cubic-bezier(0.175, 0.885, 0.32, 1.275);
}


.link-text-container {

}

@media screen and (max-width: 500px) {
.next-project {
    margin-left: 1.125em;

  }
}


