/* Color Variables */
/* type variables */
/* animation variables */
/* breakpoints */
/* reusable animations */
@keyframes slideInFromBottom {
  0% {
    transform: translateY(30%);
    opacity: 0; }
  100% {
    transform: translateX(0);
    opacity: 1; } }
@keyframes slideOutLeft {
  0% {
    transform: translateX(0);
    opacity: 1; }
  100% {
    transform: translateX(-100%);
    opacity: 0; } }
@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: scale(1.2); }
  100% {
    opacity: 1;
    transform: scale(1); } }
@keyframes scrollBG-large {
  0% {
    background-position: 10px 18px; }
  100% {
    background-position: 30px 18px; } }
@keyframes scrollBG-med {
  0% {
    background-position: 10px 12px; }
  100% {
    background-position: -8px 12px; } }
@keyframes scrollBG-small {
  0% {
    background-position: 10px 11px; }
  100% {
    background-position: -12px 11px; } }
* {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline; }

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block; }

body {
  line-height: 1; }

ol, ul {
  list-style: none; }

blockquote, q {
  quotes: none; }
  blockquote:before, blockquote:after, q:before, q:after {
    content: "";
    content: none; }

table {
  border-collapse: collapse;
  border-spacing: 0; }

@font-face {
  font-family: "GT America Compressed Medium";
  src: url("../fonts/GT-America-Compressed-Medium.otf") format("otf"); }
.sticky-header {
  display: flex;
  justify-content: flex-end; }
  @media screen and (max-width: 690px) {
    .sticky-header {
      width: 100%;
      height: 56px;
      z-index: 400;
      position: fixed; } }

.sticky-header__logo {
  font-family: "GT America Compressed Medium";
  text-transform: uppercase;
  font-size: 30px;
  position: absolute;
  top: 64px;
  left: 40px;
  display: flex;
  z-index: 2000; }
  @media screen and (max-width: 690px) {
    .sticky-header__logo {
      top: 16px;
      left: 20px; } }

.sticky-header.background--dark .sticky-header__logo {
  color: #f1f1f1; }

.bio-toggle {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 154px;
  height: 154px;
  background: #28282f;
  transition: all 0.35s cubic-bezier(0, 0.35, 0.45, 1); }
  @media screen and (max-width: 690px) {
    .bio-toggle {
      height: 56px;
      width: 125px; } }
  .bio-toggle:hover {
    background: #34343d; }
  .bio-toggle a {
    align-items: center;
    display: flex;
    width: 100%;
    height: 100%;
    font-family: "IBM Plex Mono", monospace;
    color: #f1f1f1;
    text-align: center;
    text-decoration: none;
    pointer-events: all;
    cursor: sw-resize;
    padding: 3rem; }

#footer {
  position: absolute;
  bottom: 0px;
  width: 100vw;
  background: #ffffff;
  box-sizing: border-box;
  padding: 2rem 2rem 2.3rem 2rem;
  animation: 650ms ease-in-out 0s 1 slideInFromBottom; }
  @media screen and (max-width: 690px) {
    #footer {
      z-index: 100;
      padding: 1.25rem 2rem 1.25rem 2rem; } }

nav.work p {
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 18px;
  margin-bottom: 16px; }
nav.work ul {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap; }
  nav.work ul li {
    display: flex;
    white-space: nowrap; }
@media screen and (max-width: 690px) {
  nav.work li {
    width: 100%; } }
@media screen and (max-width: 1024px) and (min-width: 690px) {
  nav.work {
    margin-left: 60vw;
    width: 34vw;
    clear: both; }
    nav.work li {
      width: 100%; } }
@media screen and (max-width: 1280px) and (min-width: 1024px) {
  nav.work {
    margin-left: 52vw;
    width: 40vw; }
    nav.work li {
      width: 20vw; } }
@media screen and (min-width: 1280px) {
  nav.work {
    margin-left: 790px; }
    nav.work li {
      width: 20vw; } }

.work a {
  font-family: "IBM Plex Mono", monospace;
  text-decoration: none;
  font-size: 1rem;
  line-height: 2rem;
  color: #28282f;
  display: block; }

a.cs:after {
  content: "";
  display: block;
  max-width: 0;
  height: 2px;
  background-color: #28282f;
  transform: translateY(-16px) translateX(-50px);
  opacity: 0;
  transition: all 0.35s cubic-bezier(0, 0.35, 0.45, 1);
  z-index: 20;
  position: relative; }
a.cs:hover {
  color: #000bff; }
  a.cs:hover:after {
    background-color: #000bff;
    transform: translateY(-16px) translateX(0px);
    opacity: 1;
    max-width: 100%; }
@media screen and (max-width: #breakpoint-mobile) {
  a.cs:hover:before {
    display: block;
    content: "Coming Soon!";
    width: auto;
    height: 20px;
    position: absolute;
    color: #000bff;
    top: 10px;
    left: 0px;
    font-size: .7rem;
    opacity: 0;
    transition: all ease-in-out 350ms; } }

a.disabled {
  position: relative;
  color: rgba(40, 40, 47, 0.4); }
  a.disabled:before {
    display: block;
    content: "Coming Soon!";
    width: auto;
    height: 20px;
    position: absolute;
    color: #000bff;
    top: 10px;
    left: 0px;
    font-size: .7rem;
    opacity: 0;
    transition: all ease-in-out 350ms; }
  a.disabled:hover {
    cursor: not-allowed; }
    a.disabled:hover:before {
      transform: translateY(-25px);
      opacity: 1; }

.shield {
  font-family: "IBM Plex Sans", sans-serif; }
  @media screen and (max-width: 1024px) and (min-width: 690px) {
    .shield {
      margin-left: 60vw;
      width: 34vw;
      clear: both; } }
  @media screen and (max-width: 1280px) and (min-width: 1024px) {
    .shield {
      margin-left: 55vw;
      width: 24vw; } }
  @media screen and (min-width: 1280px) {
    .shield {
      margin-left: 790px; } }
  .shield a {
    font-family: "IBM Plex Mono", monospace;
    text-decoration: none;
    font-size: 1rem;
    line-height: 2rem;
    color: #28282f;
    display: block; }

#case-study {
  /* Breakpoint styling for POSITION ONLY */
  /* mobile bio styles */
  /* smallest weird viewport size */
  /* laptop bio styles */
  /* desktop bio styles */ }
  @media screen and (max-width: 690px) {
    #case-study {
      display: block;
      position: relative;
      top: 50vh;
      background: rgba(241, 241, 241, 0.9);
      padding: 1rem;
      animation: 750ms ease-in-out 0s 1 slideInFromBottom forwards;
      padding-bottom: 15rem; } }
  @media screen and (max-width: 1024px) and (min-width: 690px) {
    #case-study {
      margin: 0 auto;
      position: relative;
      width: 70vw;
      margin-top: 60vh;
      animation: 650ms ease-in-out 0s 1 slideInFromBottom forwards;
      padding-bottom: 4rem; } }
  @media screen and (max-width: 1280px) and (min-width: 1024px) {
    #case-study {
      margin: 0 auto;
      position: relative;
      width: 55vw;
      margin-top: 60vh;
      animation: 650ms ease-in-out 0s 1 slideInFromBottom forwards;
      padding-bottom: 4rem; } }
  @media screen and (min-width: 1280px) {
    #case-study {
      margin: 0 auto;
      position: relative;
      width: 50vw;
      margin-top: 60vh;
      animation: 650ms ease-in-out 0s 1 slideInFromBottom forwards;
      padding-bottom: 4rem; } }
  #case-study article .case-study__header h2 {
    font-size: 4rem;
    font-family: "GT America Compressed Medium";
    margin-bottom: 24px; }
  #case-study article .case-study__header p {
    font-size: 28px;
    line-height: 36px;
    margin-bottom: 40px;
    font-family: "IBM Plex Sans", sans-serif;
    font-weight: 400;
    display: block;
    position: relative; }
    #case-study article .case-study__header p:before {
      content: "";
      display: block;
      background-image: url(../img/underline-vert.svg);
      background-repeat: repeat-y;
      width: 8px;
      height: 100%;
      position: absolute;
      left: -24px; }
  #case-study article p {
    font-size: 20px;
    line-height: 32px;
    font-family: "IBM Plex Mono", monospace;
    margin-bottom: 32px; }

#viewer {
  box-sizing: border-box;
  position: absolute;
  top: 48px;
  z-index: 100;
  display: block;
  background: #FFB39B;
  overflow: hidden;
  padding: 3rem;
  transition: background 300ms ease-in-out;
  height: calc(100vh - 96px);
  width: 70vw;
  max-width: 772px; }
  @media screen and (max-width: 690px) {
    #viewer {
      top: 56px;
      width: 100%;
      height: 420px; } }
  @media screen and (max-width: 1024px) and (min-width: 690px) {
    #viewer {
      width: 60vw;
      max-width: 600px; } }
  @media screen and (max-width: 1280px) and (min-width: 1024px) {
    #viewer {
      width: 50vw;
      max-width: 680px; } }

.project {
  width: 100%;
  height: 100%;
  display: flex; }
  .project img {
    display: flex;
    object-fit: contain;
    width: 100%;
    height: auto;
    animation: 550ms ease-in-out 0s 1 fadeIn forwards; }

/*  Carousel Options 
    These styles override the pre-defined styles of Flickity ~~~~~~~~~ */
.main-carousel:hover .flickity-button {
  opacity: 1; }

.flickity-button {
  mix-blend-mode: difference !important;
  opacity: 0;
  transition: opacity 300ms ease-in-out; }

.flickity-button-icon {
  fill: white !important; }

/* hide disabled button */
.flickity-button:disabled {
  display: none; }

.carousel-cell-image {
  transition: opacity 0.4s;
  opacity: 0; }

.carousel-cell-image.flickity-lazyloaded,
.carousel-cell-image.flickity-lazyerror {
  opacity: 1; }

body {
  background: #f1f1f1;
  overflow: hidden; }

@media screen and (max-width: 690px) {
  body.home #viewer {
    height: 16rem;
    padding: 1.25rem; } }
body.home .project img {
  object-fit: contain;
  mix-blend-mode: difference;
  opacity: 0; }
@media screen and (max-width: 690px) {
  body.home .project img {
    object-position: center 30%; } }

body.about {
  background: #28282f;
  overflow: visible; }
  body.about .sticky-header__logo {
    filter: invert(1);
    mix-blend-mode: screen;
    position: fixed;
    color: #ffffff; }
  body.about .bio-toggle {
    background: #f1f1f1;
    position: fixed;
    top: 0px;
    right: 0px;
    z-index: 500;
    mix-blend-mode: difference; }
    body.about .bio-toggle a {
      color: #28282f; }
  body.about #viewer {
    background: #f1f1f1;
    padding: 0rem;
    position: fixed; }
    @media screen and (max-width: 690px) {
      body.about #viewer {
        z-index: -1000; } }
  body.about .project img {
    object-fit: cover;
    mix-blend-mode: multiply;
    opacity: 0; }
  @media screen and (max-width: 690px) {
    body.about .project img {
      object-position: center 30%; } }

#bio {
  /* Global definition for bio fonts */
  color: #f1f1f1;
  /* mobile bio styles */
  /* smallest weird viewport size */
  /* laptop bio styles */
  /* desktop bio styles */ }
  #bio h2 {
    font-family: "IBM Plex Sans", sans-serif; }
  #bio p {
    font-family: "IBM Plex Mono", monospace;
    margin-bottom: 32px; }
    #bio p strike {
      opacity: 0.5;
      cursor: not-allowed; }
  @media screen and (max-width: 690px) {
    #bio {
      display: block;
      position: relative;
      top: 460px;
      z-index: 200;
      background: rgba(40, 40, 47, 0.4);
      padding: 1rem;
      animation: 750ms ease-in-out 0s 1 slideInFromBottom;
      padding-bottom: 8rem; }
      #bio h2 {
        font-size: 4rem;
        z-index: 300; }
      #bio p {
        font-size: 1.25rem;
        line-height: 2.25rem;
        z-index: 300; } }
  @media screen and (max-width: 1024px) and (min-width: 690px) {
    #bio {
      float: right;
      position: relative;
      top: 50vw;
      width: 35vw;
      margin-right: 1rem;
      animation: 650ms ease-in-out 0s 1 slideInFromBottom;
      mix-blend-mode: difference; }
      #bio h2 {
        font-size: 4rem; }
      #bio p {
        font-size: 20px;
        line-height: 28px; } }
  @media screen and (max-width: 1280px) and (min-width: 1024px) {
    #bio {
      margin-left: 55vw;
      width: 40vw;
      margin-top: 40vh;
      animation: 650ms ease-in-out 0s 1 slideInFromBottom;
      mix-blend-mode: difference; }
      #bio h2 {
        font-size: 4rem; }
      #bio p {
        font-size: 22px;
        line-height: 36px; } }
  @media screen and (min-width: 1280px) {
    #bio {
      margin-left: 790px;
      margin-top: 60vh;
      animation: 750ms ease 0s 1 slideInFromBottom;
      max-width: 800px;
      mix-blend-mode: difference;
      padding: 0px 32px 20vh 32px; }
      #bio h2 {
        font-size: 7vw;
        animation: 650ms ease-in-out 0s 1 slideInFromBottom; }
      #bio p {
        font-size: 32px;
        line-height: 48px;
        animation: 750ms ease-in-out 0s 1 slideInFromBottom; } }

/* Styles for span hover effects */
.hov {
  width: calc(100%);
  background-image: url(../img/small-underline.svg);
  background-repeat: repeat;
  pointer-events: all;
  cursor: grabbing;
  /* warning: magic numbers */ }
  @media screen and (max-width: 690px) {
    .hov {
      background-size: 15px 100%;
      background-position: 10px 11px; } }
  @media screen and (max-width: 1024px) {
    .hov {
      background-size: 15px 100%;
      background-position: 10px 11px; }
      .hov:hover {
        animation: scrollBG-small 1s infinite linear;
        color: #ffcaec; } }
  @media screen and (max-width: 1280px) and (min-width: 1024px) {
    .hov {
      background-size: 18px 100%;
      background-position: 14px 12px; }
      .hov:hover {
        animation: scrollBG-med 1s infinite linear;
        color: #ffcaec; } }
  @media screen and (min-width: 1280px) {
    .hov {
      background-size: 20px 100%;
      background-position: 10px 18px; }
      .hov:hover {
        animation: scrollBG-large 1s infinite linear;
        color: #ffcaec; } }
  .hov a {
    color: inherit;
    text-decoration: none; }

.hiddendiv {
  position: absolute;
  top: 0;
  left: 0;
  width: 10em;
  height: 10em;
  will-change: transform;
  z-index: -400;
  transform: translate(calc((var(--mouse-x, 0) * 1px) - 90px), calc((var(--mouse-y, 0) * 1px) - 80px)); }
  .hiddendiv img {
    width: 250px;
    height: 180px;
    object-fit: contain; }
  @media screen and (max-width: 690px) {
    .hiddendiv {
      z-index: 199; } }

body.work-page {
  overflow: visible;
  /* Styles to append the footer to the end of the scroll  */ }
  body.work-page .sticky-header__logo {
    filter: invert(1);
    mix-blend-mode: screen;
    position: fixed;
    color: #ffffff; }
    @media screen and (max-width: 690px) {
      body.work-page .sticky-header__logo {
        filter: invert(0);
        mix-blend-mode: normal; } }
  body.work-page .bio-toggle {
    position: fixed;
    top: 0px;
    right: 0px;
    z-index: 500;
    mix-blend-mode: difference; }
    body.work-page .bio-toggle a {
      color: #f1f1f1; }
  body.work-page #viewer {
    animation: 500ms ease-in-out 0s 1 slideOutLeft forwards; }
    @media screen and (max-width: 690px) {
      body.work-page #viewer {
        height: 16rem;
        padding: 1.25rem; } }
  body.work-page .project img {
    object-fit: contain;
    mix-blend-mode: multiply;
    opacity: 0;
    animation: none; }
  body.work-page #footer {
    position: relative;
    bottom: 0px;
    width: 100vw;
    background: #ffffff;
    box-sizing: border-box;
    padding: 2rem 2rem 2.3rem 2rem; }
  @media screen and (max-width: 1024px) and (min-width: 690px) {
    body.work-page nav.work {
      margin: 0 auto;
      width: 70vw;
      clear: both; } }
  @media screen and (max-width: 1280px) and (min-width: 1024px) {
    body.work-page nav.work {
      margin: 0 auto;
      width: 55vw; } }
  @media screen and (min-width: 1280px) {
    body.work-page nav.work {
      margin: 0 auto;
      width: 50vw; }
      body.work-page nav.work ul {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap; }
        body.work-page nav.work ul li {
          display: flex;
          width: 10vw; } }
