/*! HTML5 Boilerplate v8.0.0 | MIT License | https://html5boilerplate.com/ */
/* main.css 2.1.0 | MIT License | https://github.com/h5bp/main.css#readme */
/*
 * What follows is the result of much research on cross-browser styling.
 * Credit left inline and big thanks to Nicolas Gallagher, Jonathan Neal,
 * Kroc Camen, and the H5BP dev community and team.
 */
/* ==========================================================================
   Base styles: opinionated defaults
   ========================================================================== */
html {
  color: #222;
  font-size: 1em;
  line-height: 1.4;
  scroll-behavior: smooth;
}

/*
 * Remove text-shadow in selection highlight:
 * https://twitter.com/miketaylr/status/12228805301
 *
 * Vendor-prefixed and regular ::selection selectors cannot be combined:
 * https://stackoverflow.com/a/16982510/7133471
 *
 * Customize the background color to match your design.
 */
::-moz-selection {
  background: #b3d4fc;
  text-shadow: none;
}

::selection {
  background: #b3d4fc;
  text-shadow: none;
}

/*
 * A better looking default horizontal rule
 */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}

/*
 * Remove the gap between audio, canvas, iframes,
 * images, videos and the bottom of their containers:
 * https://github.com/h5bp/html5-boilerplate/issues/440
 */
audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

/*
 * Remove default fieldset styles.
 */
fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

/*
 * Allow only vertical resizing of textareas.
 */
textarea {
  resize: vertical;
}

/* ==========================================================================
   Author's custom styles
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: degular-display, sans-serif;
  font-weight: normal;
  margin: 0;
  padding: 0;
}

a, p, li, ul, ol, strong, em {
  font-family: degular-text, sans-serif;
}

ul, ol {
  margin: 0;
  padding: 0;
}
ul li, ol li {
  list-style: none;
  color: black;
}

li.credits{
margin-bottom: 7px;
}

/* The progress header */
.progress-header {
  position: fixed;
  top: 54px;
  z-index: 1;
  width: 100%;
  background-color: #E9EBEF;
  z-index: 90;
}

/* The progress container (grey background) */
.progress-container {
  width: 100%;
  height: 8px;
  background: #E9EBEF;
}

/* The progress bar (scroll indicator) */
.progress-bar {
  height: 8px;
  background: #86bc24;
  background: linear-gradient(163deg, rgba(0, 0, 0, 0.7) 0%, black 100%);
  width: 0%;
}

.general {
  /*background: white;*/
  color: black;
}
.general .article {
  box-sizing: border-box;
}
.general .article .content {
  box-sizing: border-box;
}

.general .content {
  border: 0px;
  display: table;
  height: 100vh;
  width: 100vw;
}
.general .content .col {
  background: #E9EBEF;
  float: left;
  display: table-cell;
  height: 50vh;
  width: 100vw;
}
.general .content .col.dark {
  background: #151515;
  color: #8B8B8B;
  position: relative;
}
.general .content .col.dark hgroup {
  bottom: 2.5em;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
}
.general .content .col.dark hgroup h1 {
  font-size: 18px;
  margin-bottom: 0.5em;
  text-transform: uppercase;
}
.general .content .col.dark hgroup h2 {
  font-size: 14px;
}
.general .nav {
  position: absolute;
  bottom: 4em;
  width: 100%;
}
.general .nav ol {
  margin: 0 auto;
  padding: 0;
  width: 80%;
}
.general .nav ol li {
  list-style: none;
  margin-bottom: 0.75em;
  text-align: center;
}
.general .nav ol li:nth-child(1) {
  border-bottom: 1px solid #979797;
  padding-bottom: 0.5em;
}
.general .nav .link {
  background: url("../img/arrow.svg") no-repeat calc(100% + 0px) calc(0% + 22px);
  background-size: 11px 11px;
  color: black;
  display: inline-block;
  font-weight: bold;
  font-size: 70px;
  letter-spacing: -2px;
  margin: auto;
  padding-right: 15px;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
}
.general .barcode {
  display: none;
}
.general .social {
  bottom: 2em;
  display: block;
  left: 50%;
  position: fixed;
  text-align: center;
  transform: translateX(-50%);
  width: auto;
}
.general .social a {
  color: #8B8B8B;
  font-size: 12px;
  margin: 0 1em;
  text-transform: uppercase;
  text-decoration: none;
}

.work {
  background: #f9fafb;
}
.work .header {
  box-sizing: border-box;
  background: #151515;
  color: #8B8B8B;
  height: 50px;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 99;
}
.work .header.on h1 {
  color: #484848;
}
.work .header hgroup {
  background: #151515;
  position: absolute;
  width: 100%;
  z-index: 99;
}
.work .header hgroup h1 {
  font-size: 14px;
  padding: 1.25em;
  text-transform: uppercase;
}
.work .header hgroup h1 span {
  text-transform: none;
}
.work .header hgroup .toggle {
  background: url("../img/toggle.svg") no-repeat center center;
  background-size: 20px 14.29px;
  height: 30px;
  position: absolute;
  right: 1em;
  top: 0.85em;
  text-indent: -9999px;
  width: 30px;
  transition: background 0.2s ease;
}
.work .header hgroup .toggle.on {
  background: url("../img/toggle-close.svg") no-repeat center center;
  background-size: 20px 13px;
  transition: background 0.2s ease;
}
.work .header .nav {
  bottom: auto;
  background: #151515;
  color: #8B8B8B;
  position: fixed;
  padding: 2em 0em;
  top: -266px;
  width: 100%;
  transition: top 0.5s ease;
  z-index: 98;
}
.work .header .nav.on {
  top: 49px;
  transition: top 0.5s ease;
}
.work .header .nav .social {
  bottom: auto;
  left: auto;
  margin-top: 1em;
  position: relative;
  transform: translateX(0);
}
.work .header .nav .link {
  background: url("../img/arrow-wh.svg") no-repeat calc(100% + 0px) calc(0% + 22px);
  background-size: 11px 11px;
  color: #8B8B8B;
}
.work .content {
  margin-top: calc(50px + 20px);
}
.work .content .back {
  display: none;
}
.work .content h2 {
  border-bottom: 1px solid #8B8B8B;
  font-size: 68px;
  font-weight: bold;
  letter-spacing: -3px;
  margin: auto auto 0.5em auto;
  text-align: center;
  text-transform: uppercase;
  width: 80%;
}
.work .content .cards .card {
  color: #151515;
  display: block;
  margin-bottom: 2em;
  text-decoration: none;
}
.work .content .cards .card img {
  display: block;
  height: auto;
  width: 100%;
  transition:filter .2s linear;
}

.work .content .cards .card img:hover {
  filter:blur(3px) grayscale(100%);
  transition:filter .2s linear;
}

.work .content .cards .card .data {
  padding: 1em 2em;
}
.work .content .cards .card .data em {
  display: block;
  font-style: normal;
}
.work .content .cards .card .data strong {
  background: url("../img/arrow.svg") no-repeat calc(100% + 0px) calc(0% + 8px);
  background-size: 11px 11px;
  font-size: 18px;
  display: inline-block;
  margin-top: -5px;
  padding-right: 15px;
}
.work .content .cards .card .data p {
  color: #8B8B8B;
  font-size: 12px;
}

.project .content {
  z-index: 1;
}


.project .content h2 {
  border-bottom: 0px;
  font-size: 60px;
  line-height: 1em;
  margin-bottom: 0.25em;
  text-align: left;
  width: 90%;
}

.project .content h2.small { font-size:46px; }

.project .content h2 em {
  color: #8B8B8B;
  display: block;
  font-size: 16px;
  font-style: normal;
  font-weight: normal;
  letter-spacing: 0px;
  margin-bottom: -1em;
}

.project .content h3 {
  border-bottom: 1px solid #151515;
  color: #8B8B8B;
  font-size: 16px;
  margin: auto;
  padding-bottom: 2em;
  width: 90%;
}


p.one-liner
{ font-size:2em; }


a.underline{
  color: #000;
  /* -webkit-transition: all 0.2s linear; */
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  transition: all 0.2s linear;
  outline: none;
  position: relative;
  text-decoration: none;
}

a.underline:hover {
  color: #bdc4c7;
  text-decoration: none;
}

a.underline:after {
  content: '';
  color: black;
  height: 2px;
  width: 100%;
  position: absolute;
  left: 50%;
  bottom: -2px;
  transform: translateX(-50%);
  background: #000;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

a.underline:hover, a.underline:visited {
  color: black;
}

a.underline:hover:after, .underline a:visited:after {
  width: 0;
}


.project .content .grid {
  box-sizing: border-box;
  margin: 2em auto;
  width: 90%;
}
.project .content .grid .row {
  box-sizing: border-box;
  margin-bottom: 2em;
}
.project .content .grid .row.metadata {
  margin: auto;
}
.project .content .grid .row.metadata ul {
  color: #8B8B8B;
}
.project .content .grid .row.full .video {
  height: auto;
  display: block;
  width: 100%;
}
.project .content .grid .row.multi:nth-child(1) {
  margin-bottom: 0.5em;
}
.project .content .grid .row .col {
  background: transparent;
  height: auto;
  display: block;
  font-size: 15px;
  margin-bottom: 2em;
  position: relative;
  float: none;
  width: auto;
}
.project .content .grid .row .col img {
  display: block;
  height: auto;
  width: 100%;
}
.project footer {
  background: black;
}
.project footer a {
  color: white;
  display: block;
  padding: 1em;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 0.2s linear, color 0.3s linear;
}
.project footer a:hover {
  background: #999;
  color: black;
}


.bio {
  background: #151515;
}

ul.grey li{
  color:#8B8B8B;
}

.bio .article .content h2 {
  color: #8B8B8B;
  text-align: left;
}
.bio .article .content .grid {
  margin: auto;
  width: 80%;
}
.bio .article .content .grid .col {
  background: transparent;
  color: #8B8B8B;
  display: block;
  height: auto;
  float: none;
  margin-bottom: 3em;
  width: auto;
}
.bio .article .content .grid .col h3, .bio .article .content .grid .col h4, .bio .article .content .grid .col h5 {
  font-weight: bold;
  text-transform: uppercase;
}
.bio .article .content .grid .col ul {
  margin-top: 1em;
}
.bio .article .content .grid .col p, .bio .article .content .grid .col li {
  font-size: 13px;
}
.bio .article .content .grid .col .social {
  display: none;
}

@media only screen and (min-width: 800px) {
  .progress-header {
    position: fixed;
    top: 0px;
  }

  .general .content .col {
    float: left;
    height: 100vh;
    width: 50vw;
    position: relative;
  }
  .general .content .col.dark .row {
    bottom: 6em;
    position: absolute;
    left: 6em;
  }
  .general .content .col.dark hgroup {
    bottom: auto;
    left: auto;
    margin-bottom: 2em;
    position: relative;
    transform: translateX(0);
    transition: color 0.2s ease;
    width: 60%;
  }
  .general .content .col.dark hgroup:hover {
    color: #999;
    transition: color 0.2s ease;
  }
  .general .content .col .nav {
    right: 3em;
    text-align: right;
    width: auto;
  }
  .general .content .col .nav ol {
    width: auto;
  }
  .general .content .col .nav ol li {
    text-align: right;
  }
  .general .content .col .nav ol li .link {
    background: url("../img/arrow.svg") no-repeat calc(100% + 0px) calc(0% + 32px);
    background-size: 11px 11px;
    font-size: 100px;
    padding-right: 25px;
    text-align: right;
    transition: all 0.2s ease;
  }
  .general .content .col .nav ol li .link:hover {
    color: #8B8B8B;
    transform: rotate3d(1, -1, 0, 20deg);
    transition: all 0.2s ease;
  }
  .general .barcode {
    color: #E9EBEF;
    display: block;
    font-size: 8px;
    position: absolute;
    right: 6em;
    top: 3em;
    text-align: left;
    text-decoration: none;
    text-indent: -9999px;
  }
  .general .barcode span {
    display: none;
  }
  .general .barcode i {
    background: url("../img/letter_d.svg") no-repeat center left;
    background-size: contain;
    display: block;
    padding-bottom: 0.5em;
    height: 94px;
    width: 64px;
  }
  .general .barcode i:hover {
    background: url("../img/letter_d.svg") no-repeat center left;
    background-size: contain;
    height: 94px;
    width: 64px;
  }
  .general .social {
    bottom: auto;
    left: auto;
    position: relative;
    transform: translateX(0);
    text-align: left;
  }
  .general .social a {
    position: relative;
  }
  .general .social a:first-child {
    margin-left: 0;
  }
  .general .social a:after {
    backface-visibility: hidden;
    border: 1px solid rgba(255, 255, 255, 0);
    bottom: -6px;
    content: " ";
    display: inline-block;
    left: 0;
    margin: 0 auto;
    position: absolute;
    transition: all 280ms ease-in-out;
    width: 0;
  }
  .general .social a:hover:after {
    backface-visibility: hidden;
    border-color: #fff;
    transition: width 350ms ease-in-out;
    width: 100%;
  }

  .work {
    background: #F9FAFB;
  }
  .work .header {
    background: transparent;
    height: auto;
    margin: 6em auto auto auto;
    position: relative;
    width: 80%;
  }
  .work .header hgroup {
    background: transparent;
    position: relative;
  }
  .work .header hgroup h1 {
    color: black;
    padding: 0;
  }
  .work .header hgroup .toggle {
    display: none;
  }
  .work .header .nav {
    background: transparent;
    padding: 0em;
    position: absolute;
    top: auto;
  }
  .work .header .nav .social {
    margin-top: 0;
  }
  .work .header .nav ol {
    right: 10em;
    position: absolute;
    width: auto;
    z-index: 100;
  }
  .work .header .nav ol li {
    display: inline-block;
    margin-left: 1em;
  }
  .work .header .nav ol li:first-child {
    border-bottom: 0px;
  }
  .work .header .nav ol li .link {
    background: transparent;
    font-size: 15px;
    letter-spacing: 0px;
    padding-bottom: 0;
    transition: all 0.2s ease;
  }
  .work .header .nav ol li .link:hover {
    color: #151515;
    transform: rotate3d(1, -1, 0, 20deg);
    transition: all 0.2s ease;
  }
  .work .header .nav .social {
    width: 50%;
  }
  .work .header .nav .social a:after {
    backface-visibility: hidden;
    border: 1px solid rgba(0, 0, 0, 0);
    bottom: -6px;
    content: " ";
    display: inline-block;
    left: 0;
    margin: 0 auto;
    position: absolute;
    transition: all 280ms ease-in-out;
    width: 0;
  }
  .work .header .nav .social a:hover:after {
    backface-visibility: hidden;
    border-color: #000;
    transition: width 350ms ease-in-out;
    width: 100%;
  }
  .work .barcode {
    right: 0em;
    top: -6em;
    text-align: left;
    text-indent: -9999px;
  }
  .work .content {
    display: block;
    height: auto;
    margin-top: 6em;
    position: relative;
    width: auto;
  }
  .work .content h2 {
    text-align: left;
  }
  .work .content .back {
    background: url("../img/arrow-back.svg") no-repeat calc(0% + 4px) calc(0% + 5px);
    background-size: 11px 11px;
    color: #8B8B8B;
    display: block;
    margin: auto;
    padding-left: 20px;
    text-decoration: none;
    width: 80%;
  }
  .work .content .wrapper {
    position: relative;
    box-sizing: border-box;
    margin: 0 auto;
    width: 80%;
  }
  .work .content .cards {
    box-sizing: border-box;
    overflow: auto;
    width: 100%;
  }
  .work .content .cards .card {
    box-sizing: border-box;
    display: block;
    float: left;
    margin-right: 0.5%;
    box-sizing: border-box;
    width: 33%;
  }
  .work .content .cards .card:last-child {
    margin-right: 0;
  }
  .work .content .cards .card img {
    min-height: auto;
    min-width: auto;
  }
  .work .content .cards .card .data {
    padding-left: 0;
    padding-right: 0.5em;
  }

  .project .content {
    margin-top: 12em;
  }
  .project .content h2, .project .content h3 {
    width: 80%;
  }

.project .content h2.small { font-size:60px; }

  .project .content .grid {
    display: table;
    box-sizing: border-box;
    width: 80%;
  }
  .project .content .grid .row {
    display: flex;
    clear: both;
  }
  .project .content .grid .row .col {
    flex: 1;
    position: relative;
    margin-right: 2%;
    float: left;
    width: 48%;
  }
  .project .content .grid .row .col:nth-child(even) {
    margin-right: 0%;
  }
  .project .content .grid .row .col.for-logos {
    height: 500px;
    position: relative;
  }
  .project .content .grid .row .col.for-logos img {
    height: auto;
    left: 50%;
    position: absolute;
    transform: translate(-50%, -50%);
    top: 50%;
    max-width: 80%;
  }
  .project .content .grid .row .col .pinned {
    bottom: 0;
    position: absolute;
    right: 0;
    top: auto;
  }
  .project .content .grid .row.text .col p {
    margin-top: 3em;
    padding: 3em;
  }
  .project .content .grid .row.full .col {
    padding: 0;
    width: 100%;
  }
  .project .content .grid .row.offset-rt .col {
    padding-left: 50%;
    float: right;
    flex: none;
    width: 50%;
  }
  .project .content .grid .row.offset-lt .col {
    flex: none;
    width: 50%;
  }

  .bio {
    background: #151515;
  }
  .bio .header hgroup h1 {
    color: #151515;
  }
  .bio .header .nav .social {
    display: none;
  }
  .bio .header .nav .barcode {
    text-align: left;
    text-indent: -9999px;
    color: #151515;
  }
  .bio .header .nav .barcode i {
    background: url("../img/letter_d_bio.svg") no-repeat center left;
    background-size: contain;
  }
  .bio .header .nav .barcode i:hover {
    background: url("../img/letter_d_bio.svg") no-repeat center left;
    background-size: contain;
    height: 94px;
    width: 64px;
  }
  .bio .header .nav ol li .link:hover {
    color: white;
  }
  .bio .article .content .back {
    background: url("../img/arrow-back-gr.svg") no-repeat calc(0% + 4px) calc(0% + 5px);
    background-size: 11px 11px;
  }
  .bio .article .content .grid .col {
    box-sizing: border-box;
    float: left;
    margin-right: 1%;
  }
  .bio .article .content .grid .col:nth-child(1) {
    padding-right: 10em;
    width: 45%;
  }
  .bio .article .content .grid .col:nth-child(2) {
    width: 30%;
  }
  .bio .article .content .grid .col:nth-child(3) {
    float: right;
    width: 20%;
  }
  .bio .article .content .grid .col .social {
    margin-top: 2em;
    display: block;
  }
}
/* ==========================================================================
   Helper classes
   ========================================================================== */
/*
 * Hide visually and from screen readers
 */
.hidden,
[hidden] {
  display: none !important;
}

/*
 * Hide only visually, but have it available for screen readers:
 * https://snook.ca/archives/html_and_css/hiding-content-for-accessibility
 *
 * 1. For long content, line feeds are not interpreted as spaces and small width
 *    causes content to wrap 1 word per line:
 *    https://medium.com/@jessebeach/beware-smushed-off-screen-accessible-text-5952a4c2cbfe
 */
.sr-only {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
  /* 1 */
}

/*
 * Extends the .sr-only class to allow the element
 * to be focusable when navigated to via the keyboard:
 * https://www.drupal.org/node/897638
 */
.sr-only.focusable:active,
.sr-only.focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  white-space: inherit;
  width: auto;
}

/*
 * Hide visually and from screen readers, but maintain layout
 */
.invisible {
  visibility: hidden;
}

/*
 * Clearfix: contain floats
 *
 * For modern browsers
 * 1. The space content is one way to avoid an Opera bug when the
 *    `contenteditable` attribute is included anywhere else in the document.
 *    Otherwise it causes space to appear at the top and bottom of elements
 *    that receive the `clearfix` class.
 * 2. The use of `table` rather than `block` is only necessary if using
 *    `:before` to contain the top-margins of child elements.
 */
.clearfix::before,
.clearfix::after {
  content: " ";
  display: table;
}

.clearfix::after {
  clear: both;
}

/* ==========================================================================
   EXAMPLE Media Queries for Responsive Design.
   These examples override the primary ('mobile first') styles.
   Modify as content requires.
   ========================================================================== */
@media only screen and (min-width: 35em) {
  /* Style adjustments for viewports that meet the condition */
}
@media print, (-webkit-min-device-pixel-ratio: 1.25), (min-resolution: 1.25dppx), (min-resolution: 120dpi) {
  /* Style adjustments for high resolution devices */
}
/* ==========================================================================
   Print styles.
   Inlined to avoid the additional HTTP request:
   https://www.phpied.com/delay-loading-your-print-css/
   ========================================================================== */
@media print {
  *,
*::before,
*::after {
    background: #fff !important;
    color: #000 !important;
    /* Black prints faster */
    box-shadow: none !important;
    text-shadow: none !important;
  }

  a,
a:visited {
    text-decoration: underline;
  }

  a[href]::after {
    content: " (" attr(href) ")";
  }

  abbr[title]::after {
    content: " (" attr(title) ")";
  }

  /*
   * Don't show links that are fragment identifiers,
   * or use the `javascript:` pseudo protocol
   */
  a[href^="#"]::after,
a[href^="javascript:"]::after {
    content: "";
  }

  pre {
    white-space: pre-wrap !important;
  }

  pre,
blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }

  /*
   * Printing Tables:
   * https://web.archive.org/web/20180815150934/http://css-discuss.incutio.com/wiki/Printing_Tables
   */
  thead {
    display: table-header-group;
  }

  tr,
img {
    page-break-inside: avoid;
  }

  p,
h2,
h3 {
    orphans: 3;
    widows: 3;
  }

  h2,
h3 {
    page-break-after: avoid;
  }
}

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