@charset "UTF-8";
/* Base Styles: typography, links, body
–––––––––––––––––––––––––––––––––––––––––––––––––– */
/* NOTE
html is set to 62.5% so that all the REM measurements throughout Skeleton
are based on 10px sizing. So basically 1.5rem = 15px  */
* {
  box-sizing: border-box; }

html {
  font-size: 62.5%; }

body {
  margin: 0;
  padding: 0;
  font-size: 1.8rem;
  /* currently ems cause chrome bug misinterpreting rems on body element */
  line-height: 1.8;
  font-weight: 400;
  font-family: 'Roboto', sans-serif;
  color: #fff;
  -webkit-font-smoothing: subpixel-antialiased; }

 /* Typography
–––––––––––––––––––––––––––––––––––––––––––––––––– */
h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
  font-weight: 300; }

h1 {
  margin-bottom: 30px;
  font-size: 3.5rem;
  font-weight: 200;
  line-height: 1.2;
  letter-spacing: .07em; }
  @media (min-width: 600px) {
    h1 {
      font-size: 4.7rem; } }

h2 {
  letter-spacing: .06em;
  margin-bottom: 0;
  font-weight: 500;
  font-size: 2.5rem;
  line-height: 3.5rem; }
  @media (min-width: 600px) {
    h2 {
      font-size: 3rem;
      line-height: 3.8rem; } }

h3 {
  display: inline-block;
  font-size: 2.2rem;
  line-height: 3.2rem;
  letter-spacing: .05em;
  font-weight: 500; }
  @media (min-width: 600px) {
    h3 {
      margin-bottom: 0;
      font-size: 2.6rem; } }

h4 {
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 2em;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: #ccc; }
  @media (min-width: 600px) {
    h4 {
      font-weight: 600; } }

h5 {
  margin: 20px 0 0 0;
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 3rem;
  letter-spacing: .1rem;
  color: #0769cb; }
  @media (min-width: 600px) {
    h5 {
      font-size: 2rem; } }

h6 {
  font-size: 1.5rem;
  line-height: 1.6;
  letter-spacing: 0; }

p {
  margin-top: 10px;
  letter-spacing: .05em;
  line-height: 2.7rem;
  font-weight: 300;
  font-size: 1.6rem; }
  @media (min-width: 600px) {
    p {
      font-weight: 300;
      letter-spacing: .08em; } }

ul, ol {
  font-weight: 300;
  letter-spacing: .05em;
  font-size: 1.6rem; }
  @media (min-width: 600) {
    ul, ol {
      font-size: 1.8rem; } }

.blue-text {
  color: #0769cb; }

 /* Links
–––––––––––––––––––––––––––––––––––––––––––––––––– */
a {
  color: #fff;
  text-decoration: none;
  letter-spacing: .05em; }

.uppercase {
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: .9em; }

/* Layout Styles
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.inner-wrapper {
  width: 85%;
  margin: 0 auto; }
  @media (min-width: 600px) {
    .inner-wrapper {
      width: 80%; } }
  @media (min-width: 1300px) {
    .inner-wrapper {
      width: 70%; } }

.mobile-hide {
  display: none; }
  @media (min-width: 600px) {
    .mobile-hide {
      display: inline-block; } }

.background-grey {
  background-color: #f5f5f5; }

/* Header Styles
–––––––––––––––––––––––––––––––––––––––––––––––––– */
header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2;
  padding: 25px 0;
  width: 100%;
  height: 90px;
  background-color: #231f20; }
  @media (min-width: 1100px) {
    header {
      background-color: #231f20; } }
  header h1 {
    float: left; }

.tagline {
  display: none; }
  @media (min-width: 750px) {
    .tagline {
      display: inline-block;
      margin: 0px 0 0 50px; } }
  @media (min-width: 1200px) {
    .tagline {
      margin-left: 200px; } }

nav {
  float: right; }
  nav ul {
    list-style: none;
    margin: 0; }
  nav li {
    display: inline-block;
    margin-left: 30px; }

/* Main
–––––––––––––––––––––––––––––––––––––––––––––––––– */
@media (min-width: 600px) {
  main {
    padding: 0; } }

.homepage-main {
  position: relative;
  padding-top: 100px;
  width: 100vw;
  height: 100vh;
  color: white;
  background-image: url(../assets/projects/graebel/graebel-homepage-hero.jpg);
  background-size: cover;
  background-position: center center; }
  @media (min-width: 600px) {
    .homepage-main {
      padding-top: 120px; } }
  @media (min-width: 1300px) {
    .homepage-main {
      background-position: bottom center; } }

.homepage-description {
  width: 100%;
  padding: 30px;
  background-color: rgba(35, 31, 32, 0.7);
  position: fixed;
  top: 90px; }
  @media (min-width: 600px) {
    .homepage-description {
      padding: 30px 10%; }
      .homepage-description h1 {
        font-weight: 100; } }
  @media (min-width: 900px) {
    .homepage-description {
      background-color: rgba(35, 31, 32, 0.7);
      top: auto;
      bottom: 0; } }
  @media (min-width: 1300px) {
    .homepage-description {
      margin: 0 auto;
      width: 100%;
      position: absolute;
      bottom: 0;
      left: 0;
      padding: 50px 15%; } }

.landAppearHome {
  animation-name: landAppear;
  animation-duration: .5s;
  animation-delay: 2.5s;
  animation-timing-function: linear;
  animation-fill-mode: forwards;
  visibility: visible !important; }

@keyframes landAppear {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }
.landAppearHomeSub {
  animation-name: landAppear;
  animation-duration: .5s;
  animation-delay: .5s;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards;
  visibility: visible !important; }

/* States
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.isHidden {
  display: none; }

.infront {
  z-index: 1; }

.behind {
  z-index: -1; }

.mobileHidden {
  display: none; }
  @media (min-width: 600px) {
    .mobileHidden {
      display: block; } }

.block {
  display: block; }

/* Buttons
–––––––––––––––––––––––––––––––––––––––––––––––––– */
/* Reset `button` and button-style `input` default styles */
input[type="submit"],
input[type="reset"],
input[type="button"],
button {
  background: none;
  border: 0;
  color: inherit;
  /* cursor: default; */
  font: inherit;
  line-height: normal;
  overflow: visible;
  padding: 0;
  -webkit-appearance: button;
  /* for input */
  -webkit-user-select: none;
  /* for button */
  -moz-user-select: none;
  -ms-user-select: none; }

input::-moz-focus-inner,
button::-moz-focus-inner {
  border: 0;
  padding: 0; }

.button {
  padding: 5px 20px;
  font-size: 1.8rem;
  font-weight: 300;
  letter-spacing: .08em;
  text-decoration: none !important;
  margin-bottom: auto;
  line-height: 1.8em;
  border: 1px solid #ccc;
  display: inline-block;
  margin-top: 7px; }

@media (min-width: 1100px) {
  .buttonPulse {
    animation-name: buttonPulse;
    animation-duration: 3s;
    animation-delay: 12s;
    animation-timing-function: ease-in-out;
    animation-fill-mode: forwards;
    animation-iteration-count: 2;
    visibility: visible !important; }

  @keyframes buttonPulse {
    0% {
      transform: translateY(0); }
    80% {
      transform: translateY(0); }
    85% {
      transform: translateY(-10px); }
    90% {
      transform: translateY(0); }
    95% {
      transform: translateY(-10px); }
    100% {
      transform: translateY(0); } } }
.hero-button {
  margin-top: 8px; }

.toc-button {
  margin-right: 15px;
  color: #000; }

.project-button {
  margin-bottom: 5px;
  display: inline-block;
  color: #000;
  opacity: 0; }
  @media (min-width: 1100px) {
    .project-button {
      color: #fff; } }

.close-button {
  float: right;
  margin-bottom: 20px; }

.skip-ahead {
  color: #000; }
  @media (min-width: 1100px) {
    .skip-ahead {
      display: none; } }

/* Work Menu
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.work-menu {
  top: 0;
  position: fixed;
  padding: 90px 0 30px 0;
  width: 100%;
  height: 100%;
  overflow: scroll;
  background-color: #231f20; }
  @media (min-width: 600px) {
    .work-menu {
      right: 0;
      padding: 90px 50px 45px 50px;
      width: 100%; } }
  @media (min-width: 1400px) {
    .work-menu {
      width: 50%;
      padding: 100px 50px 30px 50px; } }
  .work-menu h2 {
    margin-bottom: 5px;
    line-height: 1.5em; }
  .work-menu h3 {
    line-height: 1.3em; }

.project-item {
  margin: 0 auto;
  width: 100%;
  overflow: auto; }
  .project-item h2 {
    margin: 20px 0 25px 0;
    color: #ccc; }
  .project-item p {
    margin-top: 20px;
    color: #ccc;
    line-height: 1.7em; }
    @media (min-width: 600px) {
      .project-item p {
        margin-top: 10px; } }

.project-divider {
  border: 1px solid #333;
  margin: 45px 0; }

.project-thumbnail {
  float: left;
  margin-bottom: 0;
  margin-right: 30px;
  width: 55px;
  height: 100%; }
  @media (min-width: 600px) {
    .project-thumbnail {
      float: none;
      margin-bottom: 10px; } }
  @media (min-width: 800px) {
    .project-thumbnail {
      float: left;
      margin-bottom: 0; } }

.work-inner-wrapper {
  padding: 30px 10%; }
  @media (min-width: 600px) {
    .work-inner-wrapper {
      padding: 30px 15%; } }
  @media (min-width: 1100px) {
    .work-inner-wrapper {
      padding: 30px 30px; } }

.work-project-description {
  max-width: 600px;
  padding-bottom: 10px; }
  @media (min-width: 600px) {
    .work-project-description {
      margin: 0 auto; } }
  .work-project-description h1 {
    font-size: 2.5rem;
    padding-left: 85px; }
    @media (min-width: 600px) {
      .work-project-description h1 {
        font-size: 3.5rem;
        margin-bottom: 20px;
        padding-left: 0; } }

.project-description-company {
  font-weight: 500; }

.tags {
  color: rgba(255, 255, 255, 0.5); }

.work-menu-tag {
  font-size: 1.2rem;
  font-style: italic;
  margin-bottom: 10px; }

/* Awards Menu
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.awards-menu {
  top: 0;
  position: fixed;
  padding: 90px 0 30px 0;
  width: 100%;
  height: 100%;
  overflow: scroll;
  background-color: #231f20; }
  @media (min-width: 600px) {
    .awards-menu {
      right: 0;
      padding: 90px 0px 45px 0px;
      width: 50%; } }
  @media (min-width: 1400px) {
    .awards-menu {
      width: 35%;
      padding: 100px 50px 30px 50px; } }
  .awards-menu h2 {
    margin-bottom: 5px;
    line-height: 1.5em; }
  .awards-menu h3 {
    line-height: 1.3em; }

.project-description-company {
  font-weight: 500; }

.tags {
  color: rgba(255, 255, 255, 0.5); }

.work-menu-tag {
  font-size: 1.2rem;
  font-style: italic;
  margin-bottom: 10px; }

.project-main h1 {
  letter-spacing: .02em; }
.project-main a {
  text-decoration: underline; }
@media (min-width: 1100px) {
  .project-main {
    margin-top: 90px; } }

.project-hero {
  margin-top: 90px;
  width: 100%;
  height: 50vh;
  background-size: cover;
  background-position: center center; }
  @media (min-width: 1100px) {
    .project-hero {
      margin-top: 90px;
      width: 100%;
      height: 70vh;
      background-position: center center; } }

.project-body {
  margin: auto;
  margin-top: 30px;
  padding: 0 30px 30px 30px;
  width: 100%;
  max-width: 1200px;
  color: #231f20; }
  @media (min-width: 600px) {
    .project-body {
      padding: 0;
      margin-top: 0; } }
  .project-body h3 {
    width: 100%;
    margin: 30px 0 0 0; }
    @media (min-width: 600px) {
      .project-body h3 {
        margin: 30px 0 0 0;
        width: 65%; } }
  .project-body h4 {
    margin-top: 8px;
    color: #0769cb; }
  .project-body a {
    color: #0769cb; }
  .project-body a:hover {
    font-weight: 500; }
  .project-body h2 {
    margin: 20px 0;
    width: 100%; }
    @media (min-width: 600px) {
      .project-body h2 {
        width: 600px; } }

.mobile-hero {
  margin-top: 90px; }
  @media (min-width: 1100px) {
    .mobile-hero {
      margin-top: 0; } }

/* Project Meta */
.project-meta {
  padding: 30px;
  margin: 0 auto;
  overflow: auto;
  width: 100%;
  color: rgba(255, 255, 255, 0.9);
  background-color: #231f20; }
  @media (min-width: 600px) {
    .project-meta {
      padding: 40px 10%;
      margin-bottom: 60px; } }
  @media (min-width: 1300px) {
    .project-meta {
      padding: 60px 0; } }
  .project-meta h2 {
    margin-bottom: 5px;
    font-weight: 300; }

.section-icon {
  float: left;
  margin-right: 10px;
  width: 50px; }

.meta-challenge {
  width: 100%; }
  @media (min-width: 1100px) {
    .meta-challenge {
      float: left;
      width: 70%; } }

.meta-role {
  width: 100%; }
  .meta-role h3 {
    margin-bottom: 20px;
    margin-top: 0px; }
  @media (min-width: 1100px) {
    .meta-role {
      float: left;
      margin-top: 10px;
      padding-left: 80px;
      width: 30%; } }

.project-inner-wrapper {
  max-width: 1200px;
  margin: auto; }

.project-description {
  margin: auto;
  padding: 30px 30px;
  max-width: 800px;
  opacity: 1; }
  @media (min-width: 600px) {
    .project-description {
      padding: 40px 10%; } }
  @media (min-width: 1100px) {
    .project-description {
      padding: 50px 0; } }

/* Body */
.section-body {
  overflow: auto;
  width: 100%;
  height: auto; }
  @media (min-width: 600px) {
    .section-body {
      padding: 30px 10%; } }
  .section-body h3 {
    width: 100%;
    margin: 30px 0 0 0; }
    @media (min-width: 600px) {
      .section-body h3 {
        margin: 30px 0 0 0;
        width: 65%; } }

.section-intro {
  margin-top: 60px;
  overflow: auto; }

.section-half {
  width: 100%; }
  @media (min-width: 800px) {
    .section-half {
      width: 80%; } }
  @media (min-width: 1100px) {
    .section-half {
      margin-right: 5%;
      width: 55%;
      float: left; } }

.section-two-thirds {
  width: 100%; }
  @media (min-width: 800px) {
    .section-two-thirds {
      width: 80%; } }
  @media (min-width: 1100px) {
    .section-two-thirds {
      width: 70%; } }

/* Images */
.image-fourty {
  width: 100%;
  margin-bottom: 30px; }
  @media (min-width: 1100px) {
    .image-fourty {
      width: 40%;
      float: left;
      vertical-align: top; } }

.image-fifty {
  width: 100%;
  margin-bottom: 30px; }
  @media (min-width: 1100px) {
    .image-fifty {
      width: 49%;
      vertical-align: top; } }

.margin-right {
  margin-right: 1%; }

/* Animations

.landAppearTitle{
	animation-name: landAppear;
	animation-duration: 1s;	
	animation-delay: .5s;	
	animation-timing-function: linear;			
	animation-fill-mode: forwards;
	visibility: visible !important;	
}

.landAppearCompany{
	animation-name: landAppear;
	animation-duration: 1s;	
	animation-delay: .5s;	
	animation-timing-function: linear;			
	animation-fill-mode: forwards;
	visibility: visible !important;	
}

.landAppearSummary{
	animation-name: landAppear;
	animation-duration: 1s;	
	animation-delay: 1.5s;	
	animation-timing-function: linear;			
	animation-fill-mode: forwards;
	visibility: visible !important;	
}

.landAppearDetails{
	animation-name: landAppear;
	animation-duration: 1s;	
	animation-delay: 1.5s;	
	animation-timing-function: linear;			
	animation-fill-mode: forwards;
	visibility: visible !important;	
}

*/
.project-details {
  margin: 0px;
  margin-top: 10px; }

.category {
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .15em; }
  @media (min-width: 1100px) {
    .category {
      font-weight: 400; } }

.project-gallery {
  width: 100%;
  max-width: 1200px;
  overflow: auto;
  margin: auto;
  padding: 30px; }
  @media (min-width: 1100px) {
    .project-gallery {
      width: 60%; } }
  @media (min-width: 1400px) {
    .project-gallery {
      width: 85%; } }

.gallery-image {
  width: 100%;
  margin: 10px 0; }
  @media (min-width: 1100px) {
    .gallery-image {
      width: 100%;
      margin: 30px 0; } }
  @media (min-width: 1400px) {
    .gallery-image {
      width: 100%; } }

.single-image-sixty {
  width: 100%; }
  @media (min-width: 600px) {
    .single-image-sixty {
      float: none;
      width: 65%;
      margin: 0 auto;
      display: block; } }

.gallery-text {
  width: 100%;
  padding: 20px; }
  .gallery-text p {
    color: #58595b;
    margin: 0;
    font-weight: 500; }
  @media (min-width: 600px) {
    .gallery-text {
      width: 85%;
      margin: 0 auto; } }
  @media (min-width: 1100px) {
    .gallery-text {
      width: 100%;
      height: auto;
      padding: 50px 100px; } }
  @media (min-width: 1400px) {
    .gallery-text {
      padding: 50px 200px; } }

.gallery-video {
  height: 300px;
  width: 100%; }
  @media (min-width: 1100px) {
    .gallery-video {
      height: 60vh;
      width: 100%; } }

.project-nav {
  width: 65%;
  height: 200px; }

.prev-project {
  width: 49%;
  float: left;
  background-color: #58595b; }

.next-project {
  width: 49%;
  float: right;
  background-color: #58595b; }

.parkers-project-hero {
  background-image: url(../assets/projects/parkers/parkers-homepage-hero.jpg);
  background-position: center bottom; }

.catapult-project-hero {
  background-image: url(../assets/projects/catapult/catapult-hero.jpg); }

.graebel-project-hero {
  background-image: url(../assets/projects/graebel/graebel-hero.jpg); }

.tbl-project-hero {
  background-image: url(../assets/projects/tbl/tbl-hero.jpg); }

.chevron-project-hero {
  background-image: url(../assets/projects/chevron/chevron_nav-hero.jpg); }

.eqo-project-hero {
  background-image: url(../assets/projects/eqo/eqo-hero.jpg); }

.ips-project-hero {
  background-image: url(../assets/projects/ips/ips-hero.jpg); }

.acklands_grainger-project-hero {
  background-image: url(../assets/projects/acklands_grainger/acklands_grainger-hero.jpg); }

.poster_show-project-hero {
  background-image: url(../assets/projects/poster_show/poster_show-hero.jpg); }

.bamboo-project-hero {
  background-image: url(../assets/projects/bamboo/bamboo-hero.jpg); }

.innovation_space-project-hero {
  background-image: url(../assets/projects/innovation_space/satlas-hero.jpg);
  background-position: center center;
  background-size: 180%; }
  @media (min-width: 600px) {
    .innovation_space-project-hero {
      background-size: 130%; } }
  @media (min-width: 1100px) {
    .innovation_space-project-hero {
      background-size: cover; } }

.cluster-project-hero {
  background-image: url(../assets/projects/cluster/cluster-hero.jpg); }

.biomimicry-project-hero {
  background-image: url(../assets/projects/biomimicry/biomimicry-01.jpg); }

.innovation_space-amedy-project-hero {
  background-image: url(../assets/projects/innovation_space/amedy-logo.jpg); }

.innovation_space-satlas-project-hero {
  background-image: url(../assets/projects/innovation_space/satlas-logo.jpg); }

.innovation_space-phero-project-hero {
  background-image: url(../assets/projects/innovation_space/phero-logo.jpg); }

.freezepoint-calc-project-hero {
  background-image: url(../assets/projects/freezepoint-calc/freezepoint-calc-hero.jpg); }

.we-form-project-hero {
  background-image: url(../assets/projects/windstream-enterprise/contact-form/form-hero-shot.jpg); }

.asu_now-project-hero {
  background-image: url(../assets/projects/asu_now/asu_now-website-01.jpg); }

.utopian-hero {
  background-image: url(../assets/projects/utopian/utopian-hero.jpg);
  background-position: center center; }

.complex_object-hero {
  background-image: url(../assets/projects/complex_object/complex-object-hero-01.jpg);
  background-position: center center; }

.mars_series-hero {
  background-image: url(../assets/projects/mars_series/mars-hero2.jpg);
  background-position: center center; }

.matters-hero {
  background-image: url(../assets/projects/matters/matters-hero.png);
  background-position: center center; }

/* Work Menu
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.about {
  top: 0;
  position: fixed;
  padding: 90px 40px 40px 40px;
  width: 100%;
  height: 100%;
  overflow: scroll;
  background-color: #9e0b0f; }
  @media (min-width: 600px) {
    .about {
      right: 0;
      padding: 90px 40px 0 40px;
      width: 50%; } }
  @media (min-width: 1100px) {
    .about {
      width: 40%; } }
  @media (min-width: 1400px) {
    .about {
      width: 35%;
      padding: 100px 80px 30px 80px; } }
  .about h2 {
    margin-bottom: 5px;
    line-height: 1.5em; }
  .about h3 {
    line-height: 1.3em; }
  .about p {
    color: #ccc; }

.about-item {
  width: 100%;
  max-width: 430px;
  margin: 0 auto;
  margin-top: 40px;
  overflow: auto; }

.about-project-description {
  width: 100%;
  float: right;
  padding-bottom: 10px; }
  .about-project-description h1 {
    font-size: 1.8em; }
  @media (min-width: 600px) {
    .about-project-description {
      float: right; } }

/* Landing Styles
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.landing {
  position: fixed;
  padding: 25px 0;
  height: 100vh;
  width: 100vw;
  background-color: #9e0b0f;
  z-index: 3; }
  .landing h1 {
    margin-top: 300px;
    float: left;
    opacity: 0;
    transform: scale(1.2); }
  .landing .tagline {
    margin-top: 310px;
    color: white;
    opacity: 0;
    transform: scale(1.2); }

/* BACKGROUND */
.slideBackground {
  animation-name: slideBackground;
  animation-duration: .5s;
  animation-delay: 2.25s;
  animation-timing-function: linear;
  animation-fill-mode: forwards;
  visibility: visible !important; }

@keyframes slideBackground {
  0% {
    opacity: 1;
    z-index: 3; }
  80% {
    z-index: 3; }
  100% {
    opacity: 0;
    z-index: 0; } }
.contentSlide {
  animation-name: contentSlide;
  animation-duration: 2s;
  animation-delay: .25s;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards;
  visibility: visible !important; }

@keyframes contentSlide {
  0% {
    opacity: 0;
    transform: scale(1.2); }
  20% {
    opacity: 1;
    transform: scale(1.2); }
  60% {
    transform: translateY(0px) scale(1.2);
    opacity: 1; }
  100% {
    transform: translateY(-300px) scale(1);
    opacity: 1; } }
