@import url("https://fonts.googleapis.com/css?family=IBM+Plex+Mono:300,400|IBM+Plex+Sans:300,600,700");
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, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline; }

/* HTML5 display-role reset for older browsers */
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; }

#loading-screen {
  z-index: 80;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #0E0C19;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-animation: load-hide 0ms linear 5500ms 1 normal both running;
  animation: load-hide 0ms linear 5500ms 1 normal both running; }
  #loading-screen #loading-text-1,
  #loading-screen #loading-text-2 {
    font-family: "IBM Plex Mono", monospace;
    font-weight: 300;
    font-size: 20px;
    color: #ECEAEF;
    text-transform: uppercase;
    letter-spacing: 8px;
    text-align: center;
    position: absolute;
    top: calc(50vh - 16px);
    left: calc(50vw - 140px);
    width: 280px;
    height: 32px;
    -webkit-transform-origin: center;
    -ms-transform-origin: center;
    transform-origin: center; }
  #loading-screen #loading-text-1 {
    -webkit-animation: load-text-1 2000ms ease 200ms 1 normal both running;
    animation: load-text-1 2000ms ease 200ms 1 normal both running; }
  #loading-screen #loading-text-2 {
    -webkit-animation: load-text-2 4000ms ease 2200ms 1 normal both running;
    animation: load-text-2 4000ms ease 2200ms 1 normal both running; }
  #loading-screen #load-split-1 {
    z-index: 81;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #FFFC31;
    -webkit-animation: load-split 1000ms cubic-bezier(0.85, 0, 0.15, 1.01) 4000ms 1 normal both running;
    animation: load-split 1000ms cubic-bezier(0.85, 0, 0.15, 1.01) 4000ms 1 normal both running; }
  #loading-screen #load-split-2 {
    z-index: 81;
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #FF1053;
    -webkit-animation: load-split 1500ms cubic-bezier(0.85, 0, 0.15, 1.01) 4000ms 1 normal both running;
    animation: load-split 1500ms cubic-bezier(0.85, 0, 0.15, 1.01) 4000ms 1 normal both running; }

@-webkit-keyframes load-text-1 {
  0% {
    display: none;
    opacity: 0;
    -webkit-transform: scale3d(1.3, 1.3, 1.3);
    transform: scale3d(1.3, 1.3, 1.3); }
  50% {
    display: block;
    opacity: 1; }
  100% {
    display: none;
    opacity: 0;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); } }

@keyframes load-text-1 {
  0% {
    display: none;
    opacity: 0;
    -webkit-transform: scale3d(1.3, 1.3, 1.3);
    transform: scale3d(1.3, 1.3, 1.3); }
  50% {
    display: block;
    opacity: 1; }
  100% {
    display: none;
    opacity: 0;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); } }

@-webkit-keyframes load-text-2 {
  0% {
    display: none;
    opacity: 0;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); }
  100% {
    display: block;
    opacity: 1;
    -webkit-transform: scale3d(1.3, 1.3, 1.3);
    transform: scale3d(1.3, 1.3, 1.3); } }

@keyframes load-text-2 {
  0% {
    display: none;
    opacity: 0;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); }
  100% {
    display: block;
    opacity: 1;
    -webkit-transform: scale3d(1.3, 1.3, 1.3);
    transform: scale3d(1.3, 1.3, 1.3); } }

@-webkit-keyframes load-split {
  0% {
    height: 0;
    width: 2px;
    left: calc(50vw - 1px); }
  50% {
    height: 100vh;
    width: 2px;
    left: calc(50vw - 1px); }
  100% {
    height: 100vh;
    width: 100vw;
    left: 0; } }

@keyframes load-split {
  0% {
    height: 0;
    width: 2px;
    left: calc(50vw - 1px); }
  50% {
    height: 100vh;
    width: 2px;
    left: calc(50vw - 1px); }
  100% {
    height: 100vh;
    width: 100vw;
    left: 0; } }

@-webkit-keyframes load-hide {
  0% {
    display: block; }
  100% {
    display: none; } }

@keyframes load-hide {
  0% {
    display: block; }
  100% {
    display: none; } }

#nav-logo {
  z-index: 20;
  position: fixed;
  top: 40px;
  left: 20px;
  width: 80px;
  height: 80px;
  -webkit-transition: -webkit-transform 550ms cubic-bezier(0.83, 0.01, 0.42, 1);
  transition: -webkit-transform 550ms cubic-bezier(0.83, 0.01, 0.42, 1);
  -o-transition: transform 550ms cubic-bezier(0.83, 0.01, 0.42, 1);
  transition: transform 550ms cubic-bezier(0.83, 0.01, 0.42, 1);
  transition: transform 550ms cubic-bezier(0.83, 0.01, 0.42, 1), -webkit-transform 550ms cubic-bezier(0.83, 0.01, 0.42, 1); }
  @media only screen and (max-width: 768px) {
    #nav-logo {
      top: 0;
      left: 0; } }
  #nav-logo .logo-path {
    fill: none;
    stroke-width: 2;
    stroke-linecap: square;
    stroke-miterlimit: 10; }
  #nav-logo #logo-path-1 {
    stroke: #74727F;
    stroke-dasharray: 120;
    stroke-dashoffset: 0;
    -webkit-transition: stroke-dashoffset 0ms linear 750ms;
    -o-transition: stroke-dashoffset 0ms linear 750ms;
    transition: stroke-dashoffset 0ms linear 750ms; }
  #nav-logo #logo-path-2 {
    stroke: #FF1053;
    stroke-dasharray: 120;
    stroke-dashoffset: -120;
    -webkit-transition: stroke-dashoffset 0ms linear 750ms;
    -o-transition: stroke-dashoffset 0ms linear 750ms;
    transition: stroke-dashoffset 0ms linear 750ms; }
  #nav-logo #logo-path-3 {
    stroke: #74727F;
    stroke-dasharray: 120;
    stroke-dashoffset: 0;
    -webkit-transition: stroke-dashoffset 750ms ease;
    -o-transition: stroke-dashoffset 750ms ease;
    transition: stroke-dashoffset 750ms ease; }
  @media (hover: hover) {
    #nav-logo:hover {
      -webkit-transform: scale3d(1.5, 1.5, 1.5);
      transform: scale3d(1.5, 1.5, 1.5);
      -webkit-transition: -webkit-transform 750ms cubic-bezier(0, 0.58, 0.41, 1);
      transition: -webkit-transform 750ms cubic-bezier(0, 0.58, 0.41, 1);
      -o-transition: transform 750ms cubic-bezier(0, 0.58, 0.41, 1);
      transition: transform 750ms cubic-bezier(0, 0.58, 0.41, 1);
      transition: transform 750ms cubic-bezier(0, 0.58, 0.41, 1), -webkit-transform 750ms cubic-bezier(0, 0.58, 0.41, 1); }
      #nav-logo:hover #logo-path-1 {
        stroke-dashoffset: 120;
        -webkit-transition: stroke-dashoffset 750ms ease;
        -o-transition: stroke-dashoffset 750ms ease;
        transition: stroke-dashoffset 750ms ease; }
      #nav-logo:hover #logo-path-2 {
        stroke-dashoffset: 0;
        -webkit-transition: stroke-dashoffset 1000ms ease;
        -o-transition: stroke-dashoffset 1000ms ease;
        transition: stroke-dashoffset 1000ms ease; }
      #nav-logo:hover #logo-path-3 {
        stroke-dashoffset: -120;
        -webkit-transition: stroke-dashoffset 0ms linear;
        -o-transition: stroke-dashoffset 0ms linear;
        transition: stroke-dashoffset 0ms linear; } }

#menu-icon {
  cursor: pointer;
  z-index: 20;
  position: fixed;
  top: 40px;
  right: 20px;
  width: 80px;
  height: 80px;
  -webkit-transition: -webkit-transform 550ms cubic-bezier(0.83, 0.01, 0.42, 1);
  transition: -webkit-transform 550ms cubic-bezier(0.83, 0.01, 0.42, 1);
  -o-transition: transform 550ms cubic-bezier(0.83, 0.01, 0.42, 1);
  transition: transform 550ms cubic-bezier(0.83, 0.01, 0.42, 1);
  transition: transform 550ms cubic-bezier(0.83, 0.01, 0.42, 1), -webkit-transform 550ms cubic-bezier(0.83, 0.01, 0.42, 1); }
  @media only screen and (max-width: 768px) {
    #menu-icon {
      top: 0;
      right: 0; } }
  #menu-icon .menu-bar {
    width: 26px;
    height: 2px;
    position: absolute;
    overflow: hidden;
    background-color: #74727F; }
    #menu-icon .menu-bar:nth-child(1) {
      top: 34px;
      left: 27px;
      -webkit-transition: top 250ms cubic-bezier(0.65, 0, 0.35, 1) 650ms, -webkit-transform 650ms cubic-bezier(0.65, 0, 0.1, 1);
      transition: top 250ms cubic-bezier(0.65, 0, 0.35, 1) 650ms, -webkit-transform 650ms cubic-bezier(0.65, 0, 0.1, 1);
      -o-transition: transform 650ms cubic-bezier(0.65, 0, 0.1, 1), top 250ms cubic-bezier(0.65, 0, 0.35, 1) 650ms;
      transition: transform 650ms cubic-bezier(0.65, 0, 0.1, 1), top 250ms cubic-bezier(0.65, 0, 0.35, 1) 650ms;
      transition: transform 650ms cubic-bezier(0.65, 0, 0.1, 1), top 250ms cubic-bezier(0.65, 0, 0.35, 1) 650ms, -webkit-transform 650ms cubic-bezier(0.65, 0, 0.1, 1); }
      #menu-icon .menu-bar:nth-child(1):before {
        content: '';
        position: absolute;
        top: 0;
        left: 100%;
        width: 0;
        height: 100%;
        background-color: #FF1053;
        -webkit-transition: width 450ms cubic-bezier(0.96, 0, 0.46, 1), left 0ms linear 450ms;
        -o-transition: width 450ms cubic-bezier(0.96, 0, 0.46, 1), left 0ms linear 450ms;
        transition: width 450ms cubic-bezier(0.96, 0, 0.46, 1), left 0ms linear 450ms; }
    #menu-icon .menu-bar:nth-child(2) {
      bottom: 34px;
      left: 27px;
      -webkit-transition: bottom 250ms cubic-bezier(0.65, 0, 0.35, 1) 650ms, -webkit-transform 650ms cubic-bezier(0.65, 0, 0.1, 1);
      transition: bottom 250ms cubic-bezier(0.65, 0, 0.35, 1) 650ms, -webkit-transform 650ms cubic-bezier(0.65, 0, 0.1, 1);
      -o-transition: transform 650ms cubic-bezier(0.65, 0, 0.1, 1), bottom 250ms cubic-bezier(0.65, 0, 0.35, 1) 650ms;
      transition: transform 650ms cubic-bezier(0.65, 0, 0.1, 1), bottom 250ms cubic-bezier(0.65, 0, 0.35, 1) 650ms;
      transition: transform 650ms cubic-bezier(0.65, 0, 0.1, 1), bottom 250ms cubic-bezier(0.65, 0, 0.35, 1) 650ms, -webkit-transform 650ms cubic-bezier(0.65, 0, 0.1, 1); }
      #menu-icon .menu-bar:nth-child(2):before {
        content: '';
        position: absolute;
        top: 0;
        left: 100%;
        width: 0;
        height: 100%;
        background-color: #FF1053;
        -webkit-transition: left 450ms cubic-bezier(0.96, 0, 0.46, 1), width 0ms linear 450ms;
        -o-transition: left 450ms cubic-bezier(0.96, 0, 0.46, 1), width 0ms linear 450ms;
        transition: left 450ms cubic-bezier(0.96, 0, 0.46, 1), width 0ms linear 450ms; }
  @media (hover: hover) {
    #menu-icon:hover {
      -webkit-transform: scale3d(1.5, 1.5, 1.5);
      transform: scale3d(1.5, 1.5, 1.5);
      -webkit-transition: -webkit-transform 750ms cubic-bezier(0, 0.58, 0.41, 1);
      transition: -webkit-transform 750ms cubic-bezier(0, 0.58, 0.41, 1);
      -o-transition: transform 750ms cubic-bezier(0, 0.58, 0.41, 1);
      transition: transform 750ms cubic-bezier(0, 0.58, 0.41, 1);
      transition: transform 750ms cubic-bezier(0, 0.58, 0.41, 1), -webkit-transform 750ms cubic-bezier(0, 0.58, 0.41, 1); }
      #menu-icon:hover .menu-bar:nth-child(1):before {
        left: 0;
        width: 100%;
        -webkit-transition: width 0ms linear, left 550ms cubic-bezier(0.71, 0.01, 0.02, 1);
        -o-transition: width 0ms linear, left 550ms cubic-bezier(0.71, 0.01, 0.02, 1);
        transition: width 0ms linear, left 550ms cubic-bezier(0.71, 0.01, 0.02, 1); }
      #menu-icon:hover .menu-bar:nth-child(2):before {
        left: 0;
        width: 100%;
        -webkit-transition: left 0ms linear, width 550ms cubic-bezier(0.71, 0.01, 0.02, 1);
        -o-transition: left 0ms linear, width 550ms cubic-bezier(0.71, 0.01, 0.02, 1);
        transition: left 0ms linear, width 550ms cubic-bezier(0.71, 0.01, 0.02, 1); } }
  #menu-icon.active .menu-bar:nth-child(1) {
    top: 39px;
    -webkit-transform: rotateZ(-225deg);
    -ms-transform: rotate(-225deg);
    transform: rotateZ(-225deg);
    -webkit-transition: top 350ms cubic-bezier(0.65, 0, 0.35, 1), -webkit-transform 750ms cubic-bezier(0.65, 0, 0.1, 1) 350ms;
    transition: top 350ms cubic-bezier(0.65, 0, 0.35, 1), -webkit-transform 750ms cubic-bezier(0.65, 0, 0.1, 1) 350ms;
    -o-transition: top 350ms cubic-bezier(0.65, 0, 0.35, 1), transform 750ms cubic-bezier(0.65, 0, 0.1, 1) 350ms;
    transition: top 350ms cubic-bezier(0.65, 0, 0.35, 1), transform 750ms cubic-bezier(0.65, 0, 0.1, 1) 350ms;
    transition: top 350ms cubic-bezier(0.65, 0, 0.35, 1), transform 750ms cubic-bezier(0.65, 0, 0.1, 1) 350ms, -webkit-transform 750ms cubic-bezier(0.65, 0, 0.1, 1) 350ms; }
  #menu-icon.active .menu-bar:nth-child(2) {
    bottom: 39px;
    -webkit-transform: rotateZ(-315deg);
    -ms-transform: rotate(-315deg);
    transform: rotateZ(-315deg);
    -webkit-transition: bottom 350ms cubic-bezier(0.65, 0, 0.35, 1), -webkit-transform 750ms cubic-bezier(0.65, 0, 0.1, 1) 350ms;
    transition: bottom 350ms cubic-bezier(0.65, 0, 0.35, 1), -webkit-transform 750ms cubic-bezier(0.65, 0, 0.1, 1) 350ms;
    -o-transition: bottom 350ms cubic-bezier(0.65, 0, 0.35, 1), transform 750ms cubic-bezier(0.65, 0, 0.1, 1) 350ms;
    transition: bottom 350ms cubic-bezier(0.65, 0, 0.35, 1), transform 750ms cubic-bezier(0.65, 0, 0.1, 1) 350ms;
    transition: bottom 350ms cubic-bezier(0.65, 0, 0.35, 1), transform 750ms cubic-bezier(0.65, 0, 0.1, 1) 350ms, -webkit-transform 750ms cubic-bezier(0.65, 0, 0.1, 1) 350ms; }

.toggle-menu {
  z-index: 19;
  position: fixed;
  top: 0;
  right: -360px;
  overflow: hidden;
  width: 360px;
  height: 100vh;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 200px 60px 60px 60px;
  background-color: #fff;
  -webkit-box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.1);
  -webkit-transition: right 1000ms cubic-bezier(0.7, 0, 0.3, 1), -webkit-box-shadow 650ms ease 1000ms;
  transition: right 1000ms cubic-bezier(0.7, 0, 0.3, 1), -webkit-box-shadow 650ms ease 1000ms;
  -o-transition: right 1000ms cubic-bezier(0.7, 0, 0.3, 1), box-shadow 650ms ease 1000ms;
  transition: right 1000ms cubic-bezier(0.7, 0, 0.3, 1), box-shadow 650ms ease 1000ms;
  transition: right 1000ms cubic-bezier(0.7, 0, 0.3, 1), box-shadow 650ms ease 1000ms, -webkit-box-shadow 650ms ease 1000ms; }
  @media only screen and (max-width: 480px) {
    .toggle-menu {
      width: 100%;
      right: -100%; } }
  @media only screen and (max-height: 813px) {
    .toggle-menu {
      padding: 160px 30px 60px 30px; } }
  @media only screen and (max-height: 668px) {
    .toggle-menu {
      padding: 120px 30px 60px 30px; } }
  @media only screen and (max-height: 569px) {
    .toggle-menu {
      padding: 100px 30px 60px 30px; } }
  .toggle-menu:before {
    content: '';
    z-index: -2;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #FFFC31;
    -webkit-transition: left 650ms cubic-bezier(0.7, 0, 0.3, 1) 350ms, width 650ms cubic-bezier(0.7, 0, 0.3, 1) 350ms;
    -o-transition: left 650ms cubic-bezier(0.7, 0, 0.3, 1) 350ms, width 650ms cubic-bezier(0.7, 0, 0.3, 1) 350ms;
    transition: left 650ms cubic-bezier(0.7, 0, 0.3, 1) 350ms, width 650ms cubic-bezier(0.7, 0, 0.3, 1) 350ms; }
  .toggle-menu:after {
    content: '';
    z-index: -1;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #FF1053;
    -webkit-transition: left 650ms cubic-bezier(0.7, 0, 0.3, 1) 550ms, width 650ms cubic-bezier(0.7, 0, 0.3, 1) 550ms;
    -o-transition: left 650ms cubic-bezier(0.7, 0, 0.3, 1) 550ms, width 650ms cubic-bezier(0.7, 0, 0.3, 1) 550ms;
    transition: left 650ms cubic-bezier(0.7, 0, 0.3, 1) 550ms, width 650ms cubic-bezier(0.7, 0, 0.3, 1) 550ms; }
  .toggle-menu nav {
    opacity: 0;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-transition: opacity 0ms linear 1000ms;
    -o-transition: opacity 0ms linear 1000ms;
    transition: opacity 0ms linear 1000ms; }
  .toggle-menu .nav-item {
    z-index: 2;
    position: relative;
    overflow: hidden;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    margin: 16px 0;
    font-family: "IBM Plex Sans", sans-serif;
    font-weight: 700;
    font-size: 60px;
    color: #fff;
    letter-spacing: 0;
    line-height: 60px; }
    .toggle-menu .nav-item:before {
      content: '';
      z-index: -1;
      position: absolute;
      height: 100%;
      width: 0;
      background-color: #FFFC31;
      -webkit-transition: width 350ms cubic-bezier(0.6, 0, 0.4, 1);
      -o-transition: width 350ms cubic-bezier(0.6, 0, 0.4, 1);
      transition: width 350ms cubic-bezier(0.6, 0, 0.4, 1); }
    .toggle-menu .nav-item:after {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      height: 100%;
      width: 100%;
      background-color: #0E0C19; }
    .toggle-menu .nav-item:nth-child(1) {
      -webkit-transition: color 0ms linear 1000ms;
      -o-transition: color 0ms linear 1000ms;
      transition: color 0ms linear 1000ms; }
    .toggle-menu .nav-item:nth-child(2) {
      -webkit-transition: color 0ms linear 1000ms;
      -o-transition: color 0ms linear 1000ms;
      transition: color 0ms linear 1000ms; }
    .toggle-menu .nav-item:nth-child(3) {
      -webkit-transition: color 0ms linear 1000ms;
      -o-transition: color 0ms linear 1000ms;
      transition: color 0ms linear 1000ms; }
    @media (hover: hover) {
      .toggle-menu .nav-item:hover:before {
        width: 100%;
        -webkit-transition: width 550ms cubic-bezier(0.6, 0, 0.4, 1);
        -o-transition: width 550ms cubic-bezier(0.6, 0, 0.4, 1);
        transition: width 550ms cubic-bezier(0.6, 0, 0.4, 1); } }
  .toggle-menu .nav-divider {
    width: 0;
    height: 1px;
    background-color: #FF1053;
    margin-bottom: 40px;
    -webkit-transition: width 0ms linear 1000ms;
    -o-transition: width 0ms linear 1000ms;
    transition: width 0ms linear 1000ms; }
  .toggle-menu .nav-info {
    position: absolute;
    bottom: 20px;
    left: 60px; }
    @media only screen and (max-height: 813px) {
      .toggle-menu .nav-info {
        left: 30px; } }
  .toggle-menu #nav-info-1 {
    opacity: 0;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
    -webkit-transition: opacity 450ms ease 1000ms, -webkit-transform 450ms ease 1000ms;
    transition: opacity 450ms ease 1000ms, -webkit-transform 450ms ease 1000ms;
    -o-transition: opacity 450ms ease 1000ms, transform 450ms ease 1000ms;
    transition: opacity 450ms ease 1000ms, transform 450ms ease 1000ms;
    transition: opacity 450ms ease 1000ms, transform 450ms ease 1000ms, -webkit-transform 450ms ease 1000ms; }
  .toggle-menu #nav-info-2 {
    opacity: 0;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
    -webkit-transition: opacity 450ms ease 1000ms, -webkit-transform 450ms ease 1000ms;
    transition: opacity 450ms ease 1000ms, -webkit-transform 450ms ease 1000ms;
    -o-transition: opacity 450ms ease 1000ms, transform 450ms ease 1000ms;
    transition: opacity 450ms ease 1000ms, transform 450ms ease 1000ms;
    transition: opacity 450ms ease 1000ms, transform 450ms ease 1000ms, -webkit-transform 450ms ease 1000ms; }
  .toggle-menu .nav-social {
    opacity: 0;
    width: 100%;
    margin-top: 12px;
    margin-left: -12px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-transition: opacity 450ms ease 1000ms;
    -o-transition: opacity 450ms ease 1000ms;
    transition: opacity 450ms ease 1000ms; }
    .toggle-menu .nav-social a {
      display: block;
      font-size: 14px;
      color: #322F3F;
      padding: 12px; }
      @media (hover: hover) {
        .toggle-menu .nav-social a:hover {
          color: #FF1053; } }
  .toggle-menu.active {
    right: 0;
    -webkit-box-shadow: -20px 0 80px 0 rgba(0, 0, 0, 0.1);
    box-shadow: -20px 0 80px 0 rgba(0, 0, 0, 0.1);
    -webkit-transition: right 1000ms cubic-bezier(0.7, 0, 0.3, 1), -webkit-box-shadow 650ms ease 1000ms;
    transition: right 1000ms cubic-bezier(0.7, 0, 0.3, 1), -webkit-box-shadow 650ms ease 1000ms;
    -o-transition: right 1000ms cubic-bezier(0.7, 0, 0.3, 1), box-shadow 650ms ease 1000ms;
    transition: right 1000ms cubic-bezier(0.7, 0, 0.3, 1), box-shadow 650ms ease 1000ms;
    transition: right 1000ms cubic-bezier(0.7, 0, 0.3, 1), box-shadow 650ms ease 1000ms, -webkit-box-shadow 650ms ease 1000ms; }
    .toggle-menu.active:before {
      left: 0;
      width: 0;
      -webkit-transition: left 650ms cubic-bezier(0.7, 0, 0.3, 1) 550ms, width 650ms cubic-bezier(0.7, 0, 0.3, 1) 550ms;
      -o-transition: left 650ms cubic-bezier(0.7, 0, 0.3, 1) 550ms, width 650ms cubic-bezier(0.7, 0, 0.3, 1) 550ms;
      transition: left 650ms cubic-bezier(0.7, 0, 0.3, 1) 550ms, width 650ms cubic-bezier(0.7, 0, 0.3, 1) 550ms; }
    .toggle-menu.active:after {
      left: 0;
      width: 0;
      -webkit-transition: left 650ms cubic-bezier(0.7, 0, 0.3, 1) 350ms, width 650ms cubic-bezier(0.7, 0, 0.3, 1) 350ms;
      -o-transition: left 650ms cubic-bezier(0.7, 0, 0.3, 1) 350ms, width 650ms cubic-bezier(0.7, 0, 0.3, 1) 350ms;
      transition: left 650ms cubic-bezier(0.7, 0, 0.3, 1) 350ms, width 650ms cubic-bezier(0.7, 0, 0.3, 1) 350ms; }
    .toggle-menu.active nav {
      opacity: 1;
      -webkit-transition: opacity 0ms linear 1000ms;
      -o-transition: opacity 0ms linear 1000ms;
      transition: opacity 0ms linear 1000ms; }
    .toggle-menu.active .nav-item:nth-child(1) {
      color: #322F3F;
      -webkit-transition: color 50ms linear 1400ms;
      -o-transition: color 50ms linear 1400ms;
      transition: color 50ms linear 1400ms; }
      .toggle-menu.active .nav-item:nth-child(1):after {
        left: 100%;
        -webkit-transition: left 750ms cubic-bezier(0.6, 0, 0.4, 1) 1000ms;
        -o-transition: left 750ms cubic-bezier(0.6, 0, 0.4, 1) 1000ms;
        transition: left 750ms cubic-bezier(0.6, 0, 0.4, 1) 1000ms; }
    .toggle-menu.active .nav-item:nth-child(2) {
      color: #322F3F;
      -webkit-transition: color 50ms linear 1600ms;
      -o-transition: color 50ms linear 1600ms;
      transition: color 50ms linear 1600ms; }
      .toggle-menu.active .nav-item:nth-child(2):after {
        left: 100%;
        -webkit-transition: left 750ms cubic-bezier(0.6, 0, 0.4, 1) 1200ms;
        -o-transition: left 750ms cubic-bezier(0.6, 0, 0.4, 1) 1200ms;
        transition: left 750ms cubic-bezier(0.6, 0, 0.4, 1) 1200ms; }
    .toggle-menu.active .nav-item:nth-child(3) {
      color: #322F3F;
      -webkit-transition: color 50ms linear 1800ms;
      -o-transition: color 50ms linear 1800ms;
      transition: color 50ms linear 1800ms; }
      .toggle-menu.active .nav-item:nth-child(3):after {
        left: 100%;
        -webkit-transition: left 750ms cubic-bezier(0.6, 0, 0.4, 1) 1400ms;
        -o-transition: left 750ms cubic-bezier(0.6, 0, 0.4, 1) 1400ms;
        transition: left 750ms cubic-bezier(0.6, 0, 0.4, 1) 1400ms; }
    .toggle-menu.active .nav-divider {
      width: 100%;
      -webkit-transition: width 650ms cubic-bezier(0.6, 0, 0.4, 1) 1600ms;
      -o-transition: width 650ms cubic-bezier(0.6, 0, 0.4, 1) 1600ms;
      transition: width 650ms cubic-bezier(0.6, 0, 0.4, 1) 1600ms; }
    .toggle-menu.active #nav-info-1 {
      opacity: 1;
      -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
      transform: translateY(0);
      -webkit-transition: opacity 450ms ease 1800ms, -webkit-transform 450ms ease 1800ms;
      transition: opacity 450ms ease 1800ms, -webkit-transform 450ms ease 1800ms;
      -o-transition: opacity 450ms ease 1800ms, transform 450ms ease 1800ms;
      transition: opacity 450ms ease 1800ms, transform 450ms ease 1800ms;
      transition: opacity 450ms ease 1800ms, transform 450ms ease 1800ms, -webkit-transform 450ms ease 1800ms; }
    .toggle-menu.active #nav-info-2 {
      opacity: 1;
      -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
      transform: translateY(0);
      -webkit-transition: opacity 450ms ease 2000ms, -webkit-transform 450ms ease 2000ms;
      transition: opacity 450ms ease 2000ms, -webkit-transform 450ms ease 2000ms;
      -o-transition: opacity 450ms ease 2000ms, transform 450ms ease 2000ms;
      transition: opacity 450ms ease 2000ms, transform 450ms ease 2000ms;
      transition: opacity 450ms ease 2000ms, transform 450ms ease 2000ms, -webkit-transform 450ms ease 2000ms; }
    .toggle-menu.active .nav-social {
      opacity: 1;
      -webkit-transition: opacity 450ms ease 2200ms;
      -o-transition: opacity 450ms ease 2200ms;
      transition: opacity 450ms ease 2200ms; }

::-moz-selection {
  background: #FFFC31; }

::selection {
  background: #FFFC31; }

::-moz-selection {
  background: #FFFC31; }

h1 {
  font-family: "IBM Plex Sans", sans-serif;
  font-weight: 400;
  font-size: 8vw;
  line-height: 8vw;
  margin-top: 0;
  padding-bottom: 1vw; }
  @media only screen and (max-width: 640px) {
    h1 {
      font-size: 14vw;
      line-height: 14vw; } }
  h1.animate {
    opacity: 0;
    -webkit-transition: opacity 750ms ease;
    -o-transition: opacity 750ms ease;
    transition: opacity 750ms ease; }

h2 {
  font-family: "IBM Plex Sans", sans-serif;
  font-weight: 600;
  font-size: 4.3vw;
  line-height: 4.3vw;
  letter-spacing: 0; }
  @media only screen and (max-width: 1200px) {
    h2 {
      font-size: 48px;
      line-height: 48px; } }

h3 {
  font-family: "IBM Plex Sans", sans-serif;
  font-weight: 700;
  font-size: 6vw;
  line-height: 6vw;
  text-align: center;
  width: 100%;
  margin-top: 0;
  margin-bottom: 1vw; }
  @media only screen and (max-width: 960px) {
    h3 {
      font-size: 9vw;
      line-height: 9vw; } }
  @media only screen and (max-width: 640px) {
    h3 {
      font-size: 11vw;
      line-height: 11vw; } }

h5 {
  font-family: "IBM Plex Mono", monospace;
  font-size: .8vw;
  letter-spacing: 2px;
  line-height: 2vw;
  text-transform: uppercase; }
  @media only screen and (max-width: 1200px) {
    h5 {
      font-size: 10px;
      line-height: 24px; } }

p {
  font-family: "IBM Plex Sans", sans-serif;
  font-weight: 300;
  font-size: 1.1vw;
  letter-spacing: 0;
  line-height: 2.4vw; }
  @media only screen and (max-width: 1200px) {
    p {
      font-size: 16px;
      line-height: 32px; } }

.color1 {
  color: #0E0C19; }

.color2 {
  color: #ECEAEF; }

.color3 {
  color: #74727F; }

.color4 {
  color: #322F3F; }

.accent {
  color: #FFFC31; }

.project-contributor {
  position: relative;
  z-index: 2;
  font-family: "IBM Plex Mono", monospace;
  font-size: 10px;
  color: #74727F;
  line-height: 20px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin: 8px 0; }

.project-type {
  font-family: "IBM Plex Mono", monospace;
  font-size: 10px;
  color: #74727F;
  letter-spacing: 2px;
  line-height: 20px;
  text-transform: uppercase; }

.inline-link {
  position: relative;
  display: inline-block;
  padding: 0 2px;
  color: #74727F;
  text-decoration: none; }
  .inline-link:before {
    content: '';
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: #FFFC31;
    -webkit-transition: width 450ms cubic-bezier(0.75, 0, 0.1, 1);
    -o-transition: width 450ms cubic-bezier(0.75, 0, 0.1, 1);
    transition: width 450ms cubic-bezier(0.75, 0, 0.1, 1); }
  @media (hover: hover) {
    .inline-link:hover:before {
      width: 100%;
      -webkit-transition: width 550ms cubic-bezier(0.75, 0, 0.1, 1);
      -o-transition: width 550ms cubic-bezier(0.75, 0, 0.1, 1);
      transition: width 550ms cubic-bezier(0.75, 0, 0.1, 1); } }

.standard-section-number {
  width: 100%; }
  .standard-section-number .section-number {
    position: relative;
    display: inline-block;
    padding-right: 4px;
    font-family: "IBM Plex Mono", monospace;
    color: #74727F;
    font-size: 1vw;
    line-height: 2vw;
    text-transform: uppercase;
    letter-spacing: 2px; }
    @media only screen and (max-width: 1200px) {
      .standard-section-number .section-number {
        font-size: 12px;
        line-height: 24px; } }
  .standard-section-number .section-number-line {
    display: inline-block;
    width: 30%;
    height: 1px;
    margin-bottom: 4px;
    background-color: #74727F; }

/*, div {border: 1px solid blue;}*/
.wrapper {
  max-width: 100vw;
  overflow: hidden; }

.standard-section {
  position: relative;
  overflow: hidden;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0 120px;
  width: 100%;
  min-height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between; }
  .standard-section .standard-section-text {
    position: relative;
    width: 30%;
    height: auto; }
    .standard-section .standard-section-text h2 {
      margin: 1.5vw 0; }
    .standard-section .standard-section-text .main-copy {
      margin-bottom: 40px; }
    .standard-section .standard-section-text .btn-med {
      margin: 1.5vw 0  0 0; }
    .standard-section .standard-section-text .main-copy br {
      line-height: 48px; }
  .standard-section .standard-section-img {
    position: relative;
    width: 60%;
    height: 100vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center; }
    .standard-section .standard-section-img img {
      z-index: 3;
      max-width: 100%;
      max-height: calc(100% - 240px); }
    .standard-section .standard-section-img .standard-section-img-bg {
      z-index: 1;
      position: absolute;
      top: 0;
      right: -120px;
      width: calc(100% + 120px);
      height: 100vh;
      background-size: cover;
      background-position: right center; }
  @media only screen and (max-width: 1110px) {
    .standard-section {
      -webkit-box-orient: vertical;
      -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
      flex-direction: column-reverse;
      -webkit-box-pack: end;
      -ms-flex-pack: end;
      justify-content: flex-end;
      min-height: auto; }
      .standard-section .standard-section-text {
        width: 100%;
        margin: 40px 0 80px 0;
        text-align: center; }
        .standard-section .standard-section-text .btn-med {
          margin-left: auto;
          margin-right: auto; }
      .standard-section .standard-section-img {
        width: calc(100% + 240px);
        height: 480px;
        background-color: rgba(255, 255, 255, 0.05);
        overflow: hidden; }
        .standard-section .standard-section-img img {
          max-height: calc(100% - 40px); }
        .standard-section .standard-section-img .standard-section-img-bg {
          height: 120%;
          width: 100%; } }
  @media only screen and (max-width: 768px) {
    .standard-section {
      padding: 0 30px; }
      .standard-section .standard-section-text {
        text-align: left; }
        .standard-section .standard-section-text h2 {
          margin: 24px 0; }
        .standard-section .standard-section-text .main-copy {
          margin-bottom: 24px; }
        .standard-section .standard-section-text .btn-med {
          margin: 32px 0 0 0; }
      .standard-section .standard-section-img {
        width: calc(100% + 60px);
        height: 320px; } }

.hero-section {
  position: relative;
  overflow: hidden;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0 120px;
  width: 100%;
  min-height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center; }
  .hero-section h1 {
    text-align: center;
    width: 100%; }
  @media only screen and (max-width: 1100px) {
    .hero-section {
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      justify-content: center;
      padding: 0 30px; }
      .hero-section h1 {
        text-align: center; } }

.cta {
  position: relative;
  width: 100%;
  height: 100vh;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0 30px;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: #fff; }
  .cta p {
    margin-top: 24px; }
  .cta #cta-buttons {
    width: 100%;
    margin-top: 22px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row; }
    .cta #cta-buttons .btn-med {
      margin: 10px 20px; }
    @media only screen and (max-width: 768px) {
      .cta #cta-buttons {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column; } }

footer {
  position: relative;
  overflow: hidden;
  z-index: 10;
  margin-top: -64px;
  width: 100vw;
  max-height: 65px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0px 120px; }
  footer .footer-container {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 20px 0px;
    border-top: 1px solid #0E0C19;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center; }
    footer .footer-container a, footer .footer-container i {
      color: #0E0C19; }
    footer .footer-container p, footer .footer-container .inline-link {
      width: 186px;
      font-family: "IBM Plex Mono", monospace;
      font-size: 12px;
      letter-spacing: 1.71px;
      line-height: 24px;
      text-transform: uppercase; }
      footer .footer-container p:before, footer .footer-container .inline-link:before {
        background-color: #FF1053; }
    footer .footer-container p {
      text-align: right; }
    footer .footer-container .footer-social-icons a i {
      font-size: 16px;
      padding: 0 8px; }
    footer .footer-container .footer-social-icons a:hover i {
      color: #FF1053;
      opacity: 1; }
  @media only screen and (max-width: 768px) {
    footer {
      padding: 0px 0; }
      footer .footer-container {
        padding: 20px 20px; } }
  @media only screen and (max-width: 640px) {
    footer .inline-link {
      display: none; } }

#down-arrow {
  fill: none;
  stroke: #74727F;
  stroke-width: 2;
  position: absolute;
  bottom: 30px;
  width: 30px;
  -webkit-animation: down-arrow 500ms ease-in-out alternate infinite;
  animation: down-arrow 500ms ease-in-out alternate infinite; }

@-webkit-keyframes down-arrow {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0); }
  100% {
    -webkit-transform: translateY(10px);
    transform: translateY(10px); } }

@keyframes down-arrow {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0); }
  100% {
    -webkit-transform: translateY(10px);
    transform: translateY(10px); } }

a {
  text-decoration: none; }

.btn-med {
  position: relative;
  overflow: hidden;
  z-index: 2;
  width: 13.75vw;
  height: 2.75vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border: 1px solid #FF1053;
  font-family: "IBM Plex Mono", monospace;
  font-size: 1vw;
  font-weight: 300;
  color: #FF1053;
  letter-spacing: .25vw;
  text-align: center;
  line-height: 1.5vw;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 450ms cubic-bezier(0.7, 0, 0.3, 1);
  -o-transition: color 450ms cubic-bezier(0.7, 0, 0.3, 1);
  transition: color 450ms cubic-bezier(0.7, 0, 0.3, 1); }
  @media only screen and (max-width: 1200px) {
    .btn-med {
      width: 220px;
      height: 40px;
      font-size: 14px;
      letter-spacing: 4px;
      line-height: 24px; } }
  .btn-med:before {
    content: '';
    z-index: -2;
    position: absolute;
    bottom: 100%;
    left: 0;
    width: 100%;
    height: 0;
    background-color: #FFFC31;
    -webkit-transition: bottom 550ms cubic-bezier(0.75, 0.1, 0.25, 0.95), height 0ms linear 550ms;
    -o-transition: bottom 550ms cubic-bezier(0.75, 0.1, 0.25, 0.95), height 0ms linear 550ms;
    transition: bottom 550ms cubic-bezier(0.75, 0.1, 0.25, 0.95), height 0ms linear 550ms; }
  .btn-med:after {
    content: '';
    z-index: -1;
    position: absolute;
    bottom: 100%;
    left: 0;
    width: 100%;
    height: 0;
    background-color: #FF1053;
    -webkit-transition: bottom 350ms cubic-bezier(0.75, 0.1, 0.25, 0.95), height 0ms linear 350ms;
    -o-transition: bottom 350ms cubic-bezier(0.75, 0.1, 0.25, 0.95), height 0ms linear 350ms;
    transition: bottom 350ms cubic-bezier(0.75, 0.1, 0.25, 0.95), height 0ms linear 350ms; }
  @media (hover: hover) {
    .btn-med:hover {
      color: #fff;
      -webkit-transition: color 550ms cubic-bezier(0.75, 0.1, 0.25, 0.95);
      -o-transition: color 550ms cubic-bezier(0.75, 0.1, 0.25, 0.95);
      transition: color 550ms cubic-bezier(0.75, 0.1, 0.25, 0.95); }
      .btn-med:hover:before {
        bottom: 0;
        height: 100%;
        -webkit-transition: bottom 0ms linear, height 450ms cubic-bezier(0.75, 0.1, 0.25, 0.95);
        -o-transition: bottom 0ms linear, height 450ms cubic-bezier(0.75, 0.1, 0.25, 0.95);
        transition: bottom 0ms linear, height 450ms cubic-bezier(0.75, 0.1, 0.25, 0.95); }
      .btn-med:hover:after {
        bottom: 0;
        height: 100%;
        -webkit-transition: bottom 0ms linear, height 650ms cubic-bezier(0.75, 0.1, 0.25, 0.95);
        -o-transition: bottom 0ms linear, height 650ms cubic-bezier(0.75, 0.1, 0.25, 0.95);
        transition: bottom 0ms linear, height 650ms cubic-bezier(0.75, 0.1, 0.25, 0.95); } }

#featured-video-container {
  position: relative;
  width: 100vw;
  height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  overflow: hidden;
  background-color: #0E0C19; }
  #featured-video-container video {
    min-width: 100%;
    min-height: 100%;
    -ms-flex-negative: 0;
    flex-shrink: 0; }

#play-btn {
  cursor: pointer;
  position: absolute;
  z-index: 100;
  top: calc(50% - 80px);
  left: calc(50% - 80px);
  width: 160px;
  background: none;
  border: none;
  padding: none;
  margin: none;
  -webkit-transition: opacity 500ms ease;
  -o-transition: opacity 500ms ease;
  transition: opacity 500ms ease; }
  #play-btn:focus {
    outline: 0; }
  #play-btn #play-icon {
    fill: rgba(255, 255, 255, 0.25);
    -webkit-transform-origin: center;
    -ms-transform-origin: center;
    transform-origin: center;
    -webkit-transition: fill 350ms ease, -webkit-transform 350ms ease;
    transition: fill 350ms ease, -webkit-transform 350ms ease;
    -o-transition: transform 350ms ease, fill 350ms ease;
    transition: transform 350ms ease, fill 350ms ease;
    transition: transform 350ms ease, fill 350ms ease, -webkit-transform 350ms ease; }
  #play-btn #play-circle-1 {
    fill: none;
    stroke: rgba(255, 255, 255, 0);
    stroke-width: 1;
    stroke-dasharray: 238.5;
    stroke-dashoffset: 238.25;
    -webkit-transform-origin: center;
    -ms-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotateZ(90deg);
    -ms-transform: rotate(90deg);
    transform: rotateZ(90deg);
    -webkit-transition: stroke 0ms linear 1300ms, stroke-dashoffset 1300ms cubic-bezier(0.75, 0, 0.15, 1), -webkit-transform 1300ms cubic-bezier(0.75, 0, 0.15, 1);
    transition: stroke 0ms linear 1300ms, stroke-dashoffset 1300ms cubic-bezier(0.75, 0, 0.15, 1), -webkit-transform 1300ms cubic-bezier(0.75, 0, 0.15, 1);
    -o-transition: stroke 0ms linear 1300ms, transform 1300ms cubic-bezier(0.75, 0, 0.15, 1), stroke-dashoffset 1300ms cubic-bezier(0.75, 0, 0.15, 1);
    transition: stroke 0ms linear 1300ms, transform 1300ms cubic-bezier(0.75, 0, 0.15, 1), stroke-dashoffset 1300ms cubic-bezier(0.75, 0, 0.15, 1);
    transition: stroke 0ms linear 1300ms, transform 1300ms cubic-bezier(0.75, 0, 0.15, 1), stroke-dashoffset 1300ms cubic-bezier(0.75, 0, 0.15, 1), -webkit-transform 1300ms cubic-bezier(0.75, 0, 0.15, 1); }
  #play-btn #play-circle-2 {
    fill: none;
    stroke-width: 1;
    stroke: rgba(255, 255, 255, 0.25); }
  @media (hover: hover) {
    #play-btn:hover #play-icon {
      -webkit-transform: scale3d(1.3, 1.3, 1.3);
      transform: scale3d(1.3, 1.3, 1.3);
      fill: white;
      -webkit-transition: fill 350ms ease, -webkit-transform 350ms ease;
      transition: fill 350ms ease, -webkit-transform 350ms ease;
      -o-transition: transform 350ms ease, fill 350ms ease;
      transition: transform 350ms ease, fill 350ms ease;
      transition: transform 350ms ease, fill 350ms ease, -webkit-transform 350ms ease; }
    #play-btn:hover #play-circle-1 {
      stroke-dashoffset: 0;
      stroke: white;
      -webkit-transform: rotateZ(450deg);
      -ms-transform: rotate(450deg);
      transform: rotateZ(450deg);
      -webkit-transition: stroke 0ms linear, stroke-dashoffset 1500ms cubic-bezier(0.75, 0, 0.15, 1), -webkit-transform 1500ms cubic-bezier(0.75, 0, 0.15, 1);
      transition: stroke 0ms linear, stroke-dashoffset 1500ms cubic-bezier(0.75, 0, 0.15, 1), -webkit-transform 1500ms cubic-bezier(0.75, 0, 0.15, 1);
      -o-transition: stroke 0ms linear, transform 1500ms cubic-bezier(0.75, 0, 0.15, 1), stroke-dashoffset 1500ms cubic-bezier(0.75, 0, 0.15, 1);
      transition: stroke 0ms linear, transform 1500ms cubic-bezier(0.75, 0, 0.15, 1), stroke-dashoffset 1500ms cubic-bezier(0.75, 0, 0.15, 1);
      transition: stroke 0ms linear, transform 1500ms cubic-bezier(0.75, 0, 0.15, 1), stroke-dashoffset 1500ms cubic-bezier(0.75, 0, 0.15, 1), -webkit-transform 1500ms cubic-bezier(0.75, 0, 0.15, 1); } }
  #play-btn.playing {
    opacity: 0;
    -webkit-transition: opacity 1000ms ease;
    -o-transition: opacity 1000ms ease;
    transition: opacity 1000ms ease; }

#video-sound {
  cursor: pointer;
  position: absolute;
  bottom: 40px;
  left: 120px;
  width: 48px;
  height: 48px;
  background: none;
  border: none;
  border-radius: 0;
  padding: 0;
  margin: 0;
  opacity: 0;
  -webkit-transition: opacity 1000ms ease;
  -o-transition: opacity 1000ms ease;
  transition: opacity 1000ms ease; }
  #video-sound:focus {
    outline: 0; }
  #video-sound #sound-circle,
  #video-sound #sound-bell,
  #video-sound #sound-bar-1,
  #video-sound #sound-bar-2,
  #video-sound #sound-bar-3 {
    fill: none;
    stroke: #322F3F;
    stroke-width: 1;
    -webkit-transform-origin: center;
    -ms-transform-origin: center;
    transform-origin: center; }
  #video-sound #sound-bell {
    -webkit-transition: -webkit-transform 350ms ease;
    transition: -webkit-transform 350ms ease;
    -o-transition: transform 350ms ease;
    transition: transform 350ms ease;
    transition: transform 350ms ease, -webkit-transform 350ms ease; }
  #video-sound #sound-circle {
    -webkit-transition: -webkit-transform 350ms ease;
    transition: -webkit-transform 350ms ease;
    -o-transition: transform 350ms ease;
    transition: transform 350ms ease;
    transition: transform 350ms ease, -webkit-transform 350ms ease; }
  #video-sound.playing {
    opacity: 1;
    -webkit-transition: opacity 500ms ease;
    -o-transition: opacity 500ms ease;
    transition: opacity 500ms ease; }
  #video-sound.muted #sound-bell {
    -webkit-transform: translateX(3px);
    -ms-transform: translateX(3px);
    transform: translateX(3px);
    -webkit-transition: -webkit-transform 350ms ease;
    transition: -webkit-transform 350ms ease;
    -o-transition: transform 350ms ease;
    transition: transform 350ms ease;
    transition: transform 350ms ease, -webkit-transform 350ms ease; }
  #video-sound.muted #sound-bar-1,
  #video-sound.muted #sound-bar-2,
  #video-sound.muted #sound-bar-3 {
    opacity: 0;
    -webkit-transition: opacity 350ms ease;
    -o-transition: opacity 350ms ease;
    transition: opacity 350ms ease; }
  @media (hover: hover) {
    #video-sound:hover #sound-circle {
      -webkit-transform: scale3d(1.3, 1.3, 1.3);
      transform: scale3d(1.3, 1.3, 1.3);
      -webkit-transition: -webkit-transform 350ms ease;
      transition: -webkit-transform 350ms ease;
      -o-transition: transform 350ms ease;
      transition: transform 350ms ease;
      transition: transform 350ms ease, -webkit-transform 350ms ease; } }
  @media only screen and (max-width: 768px) {
    #video-sound {
      display: none; } }

#video-progress {
  cursor: pointer;
  position: absolute;
  bottom: 64px;
  left: 25%;
  width: 50%;
  min-height: 2px;
  max-height: 2px;
  background: none;
  border: none;
  border-radius: 10px;
  padding: 0;
  margin: 0;
  opacity: 0;
  -webkit-transition: opacity 1000ms ease;
  -o-transition: opacity 1000ms ease;
  transition: opacity 1000ms ease; }
  #video-progress:focus {
    outline: 0; }
  #video-progress::-webkit-progress-value {
    background: rgba(255, 255, 255, 0.5); }
  #video-progress::-moz-progress-bar {
    background: rgba(255, 255, 255, 0.25); }
  #video-progress::-webkit-progress-value {
    background: rgba(255, 255, 255, 0.5); }
  #video-progress::-webkit-progress-bar {
    background: rgba(255, 255, 255, 0.25); }
  #video-progress.playing {
    opacity: 1;
    -webkit-transition: opacity 500ms ease;
    -o-transition: opacity 500ms ease;
    transition: opacity 500ms ease; }
  @media only screen and (max-width: 768px) {
    #video-progress {
      display: none; } }

#index-section-1 {
  background-color: #120E23;
  min-height: 100vh;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start; }
  #index-section-1 h1 {
    z-index: 3; }

#index-section-2 {
  background-color: #0E0C19; }

#index-section-2 .standard-section-img img {
  max-width: 640px; }

#index-circle-pulse {
  width: 720px;
  position: absolute;
  top: calc(50% - 320px);
  left: calc(50% - 360px);
  z-index: 2; }
  @media only screen and (max-width: 768px) {
    #index-circle-pulse {
      width: 480px;
      top: calc(50% - 240px);
      left: calc(50% - 240px); } }
  #index-circle-pulse #circle-1,
  #index-circle-pulse #circle-2,
  #index-circle-pulse #circle-3,
  #index-circle-pulse #circle-4,
  #index-circle-pulse #circle-5 {
    fill: #FF1053;
    -webkit-transform-origin: center;
    -ms-transform-origin: center;
    transform-origin: center; }
  #index-circle-pulse #circle-2 {
    -webkit-animation: 4000ms ease-in-out infinite running circle-pulse-1;
    animation: 4000ms ease-in-out infinite running circle-pulse-1; }
  #index-circle-pulse #circle-3 {
    -webkit-animation: 4000ms ease-in-out 1000ms infinite running circle-pulse-1;
    animation: 4000ms ease-in-out 1000ms infinite running circle-pulse-1; }
  #index-circle-pulse #circle-4 {
    -webkit-animation: 4000ms ease-in-out 2000ms infinite running circle-pulse-1;
    animation: 4000ms ease-in-out 2000ms infinite running circle-pulse-1; }
  #index-circle-pulse #circle-5 {
    -webkit-animation: 4000ms ease-in-out 3000ms infinite running circle-pulse-1;
    animation: 4000ms ease-in-out 3000ms infinite running circle-pulse-1; }

@-webkit-keyframes circle-pulse-1 {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
    opacity: 0; }
  10% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
    opacity: .4; }
  100% {
    -webkit-transform: scale3d(2, 2, 2);
    transform: scale3d(2, 2, 2);
    opacity: 0; } }

@keyframes circle-pulse-1 {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
    opacity: 0; }
  10% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
    opacity: .4; }
  100% {
    -webkit-transform: scale3d(2, 2, 2);
    transform: scale3d(2, 2, 2);
    opacity: 0; } }

#index-section-3 {
  background-color: #120E23; }
  @media only screen and (max-width: 1110px) {
    #index-section-3 {
      background-color: #0E0C19; } }

#index-section-3 .standard-section-img-bg {
  background-image: url("../img/index/capabilities-bg.svg");
  background-size: cover; }

#index-section-4 {
  background-color: #0E0C19; }

#index-section-4 .standard-section-img-bg {
  background-image: url("../img/index/process-bg.svg");
  background-size: cover; }

#index-section-5 {
  background-color: #120E23; }
  #index-section-5 .main-copy {
    margin-bottom: 0;
    padding-bottom: 0; }
  @media only screen and (max-width: 1110px) {
    #index-section-5 {
      background-color: #0E0C19; } }

#just-married {
  margin-top: 0; }

#party-icon {
  display: inline-block;
  font-size: 24px;
  line-height: 0;
  -webkit-transform: translateY(4px);
  -ms-transform: translateY(4px);
  transform: translateY(4px); }

#scroll-down-hero {
  position: absolute;
  bottom: -40px;
  left: calc(50% - 1px);
  width: 2px;
  height: 140px;
  background-color: #FF1053;
  -webkit-animation: hero-scroll 3000ms cubic-bezier(0.85, 0, 0.15, 1.01) 0ms infinite normal both running;
  animation: hero-scroll 3000ms cubic-bezier(0.85, 0, 0.15, 1.01) 0ms infinite normal both running; }

@-webkit-keyframes hero-scroll {
  0% {
    height: 0px;
    bottom: 100px; }
  50% {
    height: 140px;
    bottom: -40px; }
  100% {
    height: 0px; } }

@keyframes hero-scroll {
  0% {
    height: 0px;
    bottom: 100px; }
  50% {
    height: 140px;
    bottom: -40px; }
  100% {
    height: 0px; } }

.work-section {
  position: relative;
  overflow: hidden;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 60px 120px;
  width: 100%;
  min-height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  background: rgba(14, 12, 25, 0.9); }
  .work-section .work-bg {
    z-index: -1;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-size: cover; }
  .work-section .work-text {
    visibility: hidden;
    max-width: 30%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end; }
    .work-section .work-text h2 {
      margin: 20px 0 24px 0; }
    .work-section .work-text .btn-med {
      margin: 24px 0 0 0; }
  @media only screen and (max-width: 1110px) {
    .work-section .work-text {
      max-width: 315px;
      min-width: 315px; } }
  @media only screen and (max-width: 768px) {
    .work-section {
      padding: 60px 30px; } }

#work-section-5-bg {
  background-image: url("../img/work/work-hooga-hero-d.jpg");
  background-position: right center; }
  @media only screen and (max-width: 768px) {
    #work-section-5-bg {
      background-image: url("../img/work/work-hooga-hero-m.jpg");
      background-position: center; } }

#work-section-4-bg {
  background-image: url("../img/work/work-millercoors-hero-d.jpg");
  background-position: right center; }
  @media only screen and (max-width: 768px) {
    #work-section-4-bg {
      background-image: url("../img/work/work-millercoors-hero-m.jpg");
      background-position: top center; } }

#work-section-3-bg {
  background-image: url("../img/work/work-penrod-hero-d.jpg");
  background-position: center; }
  @media only screen and (max-width: 768px) {
    #work-section-3-bg {
      background-image: url("../img/work/work-penrod-hero-m.jpg");
      background-position: right center; } }

#work-section-2-bg {
  background-image: url("../img/work/work-gs-hero-d.jpg");
  background-position: right center; }
  @media only screen and (max-width: 768px) {
    #work-section-2-bg {
      background-image: url("../img/work/work-gs-hero-m.jpg");
      background-position: bottom center; } }

#work-section-1-bg {
  background-image: url("../img/work/work-evoke-hero-d.jpg");
  background-position: right bottom; }
  @media only screen and (max-width: 768px) {
    #work-section-1-bg {
      background-image: url("../img/work/work-evoke-hero-m.jpg");
      background-position: bottom center; } }

.project-wrapper {
  max-width: 100vw;
  overflow: hidden;
  background-color: #fff; }

.project-hero {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100vh;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 64px 120px; }
  .project-hero .project-hero-img-container {
    position: relative;
    min-width: 100%;
    max-width: 100%;
    min-height: 100%;
    max-height: 100%;
    overflow: hidden;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center; }
    .project-hero .project-hero-img-container .project-hero-img-bg {
      position: absolute;
      top: 0;
      left: 0;
      z-index: -1;
      min-width: 100%;
      max-width: 100%;
      min-height: 100%;
      max-height: 100%;
      background-size: cover;
      background-position: center; }
    .project-hero .project-hero-img-container .project-hero-img {
      width: 60%; }
  .project-hero .scroll-line {
    position: absolute;
    bottom: 0;
    left: calc(50% - 1px);
    width: 2px;
    height: 140px;
    background-color: #0E0C19; }
  @media only screen and (max-width: 768px) {
    .project-hero {
      padding: 0 0; }
      .project-hero .project-hero-img-container .project-hero-img {
        width: calc(100% - 60px); }
      .project-hero .scroll-line {
        height: 80px;
        bottom: -40px; } }

.project-about {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: auto;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 100px 120px 80px 120px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between; }
  .project-about .project-about-text {
    max-width: 40%; }
    .project-about .project-about-text h2 {
      margin: 20px 0 24px 0; }
    .project-about .project-about-text br {
      line-height: 300%; }
    .project-about .project-about-text .btn-med {
      margin-top: 32px; }
    .project-about .project-about-text .contributor-agency {
      margin-bottom: 20px; }
  .project-about .project-about-img {
    position: relative;
    overflow: hidden;
    width: 50%;
    background-color: red;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center; }
  @media only screen and (max-width: 1200px) {
    .project-about {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -ms-flex-direction: column;
      flex-direction: column;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
      -webkit-box-pack: start;
      -ms-flex-pack: start;
      justify-content: flex-start; }
      .project-about .project-about-text {
        max-width: 100%;
        margin-bottom: 160px; }
      .project-about .project-about-img {
        width: 100%;
        height: 80vh; } }
  @media only screen and (max-width: 768px) {
    .project-about {
      padding: 80px 30px 40px 30px; }
      .project-about .project-about-text {
        margin-bottom: 80px; }
      .project-about .project-about-img {
        height: 60vh; } }

.project-section {
  position: relative;
  overflow: hidden;
  z-index: 1;
  width: 100%;
  height: auto;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 80px 120px; }
  .project-section .desktop-prototype-container {
    position: relative;
    overflow-y: scroll;
    width: 100%;
    height: 50vw;
    border-radius: 8px;
    -webkit-box-shadow: 0 0 40px 0 rgba(14, 12, 25, 0.3);
    box-shadow: 0 0 40px 0 rgba(14, 12, 25, 0.3); }
    .project-section .desktop-prototype-container .desktop-prototype-fixed-header {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%; }
    .project-section .desktop-prototype-container .desktop-prototype-img {
      width: 100%; }
  .project-section .large-video {
    position: relative;
    width: 100%;
    border-radius: 8px;
    overflow: hidden; }
  .project-section .square-video-container {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap; }
    .project-section .square-video-container .square-video {
      position: relative;
      width: calc(50% - 20px);
      border-radius: 8px;
      overflow: hidden;
      -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
      box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
      margin-bottom: 40px; }
    @media only screen and (max-width: 768px) {
      .project-section .square-video-container {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column; }
        .project-section .square-video-container .square-video {
          width: 100%; }
          .project-section .square-video-container .square-video:last-child {
            margin-bottom: 0; } }
  .project-section .two-col-img-horz {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap; }
    .project-section .two-col-img-horz img {
      width: calc(50% - 20px);
      margin: 40px 0; }
    @media only screen and (max-width: 1200px) {
      .project-section .two-col-img-horz {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start; }
        .project-section .two-col-img-horz img {
          width: 100%;
          margin: 0 0 160px 0; }
          .project-section .two-col-img-horz img:last-child {
            margin-bottom: 0; } }
    @media only screen and (max-width: 768px) {
      .project-section .two-col-img-horz img {
        margin-bottom: 80px; }
        .project-section .two-col-img-horz img:last-child {
          margin-bottom: 0; } }
  .project-section .two-col-img-square {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-bottom: -20px; }
    .project-section .two-col-img-square img {
      width: calc(50% - 20px);
      margin-bottom: 40px; }
    @media only screen and (max-width: 768px) {
      .project-section .two-col-img-square {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
        margin-bottom: 0; }
        .project-section .two-col-img-square img {
          width: 100%;
          margin-bottom: 20px; }
          .project-section .two-col-img-square img:last-child {
            margin-bottom: 0; } }
  .project-section .three-col-img-vert {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap; }
    .project-section .three-col-img-vert img {
      width: calc(33% - 20px);
      margin-bottom: 40px; }
    @media only screen and (max-width: 640px) {
      .project-section .three-col-img-vert {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start; }
        .project-section .three-col-img-vert img {
          width: auto;
          max-height: 480px;
          margin-bottom: 80px; }
          .project-section .three-col-img-vert img:last-child {
            margin-bottom: 0; } }
  .project-section .dshot {
    position: relative;
    width: 100%;
    border-radius: 8px;
    overflow: hidden; }
    .project-section .dshot img {
      width: 100%; }
    .project-section .dshot.penrod-dshot {
      -webkit-box-shadow: 0 0 40px 0 rgba(105, 198, 179, 0.3);
      box-shadow: 0 0 40px 0 rgba(105, 198, 179, 0.3);
      border-radius: 8px; }
  @media only screen and (max-width: 768px) {
    .project-section {
      padding: 40px 30px; } }

.project-note-divider {
  position: relative;
  overflow: hidden;
  z-index: 1;
  max-width: 1024px;
  height: auto;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin-left: auto;
  margin-right: auto;
  padding: 0 120px;
  text-align: center; }
  @media only screen and (max-width: 768px) {
    .project-note-divider {
      padding: 0 30px; } }
  @media only screen and (max-width: 480px) {
    .project-note-divider {
      text-align: left; } }

#prev-next-project {
  position: relative;
  z-index: 2;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding-bottom: 160px; }
  #prev-next-project .btn-med:first-child {
    margin-right: 40px; }
  @media only screen and (max-width: 640px) {
    #prev-next-project {
      -webkit-box-orient: vertical;
      -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
      flex-direction: column-reverse; }
      #prev-next-project .btn-med:first-child {
        margin-right: 0;
        margin-top: 40px; } }

#hooga-project-hero-img-bg {
  background-image: url("../img/projects/hooga/hooga-desktop-hero-bg.jpg"); }
  @media only screen and (max-width: 768px) {
    #hooga-project-hero-img-bg {
      background-image: url("../img/projects/hooga/hooga-mobile-hero-bg.jpg"); } }

#hooga-project-about-img {
  background-color: #FFF6F6; }

#millercoors-project-hero-img-bg {
  background-image: url("../img/projects/millercoors/millercoors-desktop-hero-bg.jpg"); }
  @media only screen and (max-width: 768px) {
    #millercoors-project-hero-img-bg {
      background-image: url("../img/projects/millercoors/millercoors-mobile-hero-bg.jpg"); } }

#millercoors-project-about-img {
  background-color: transparent;
  padding: 0; }
  @media only screen and (max-width: 1200px) {
    #millercoors-project-about-img {
      display: none; } }

@media only screen and (max-width: 1200px) {
  #millercoors-project-section-2 .project-about-text {
    margin-bottom: 0; } }

@media only screen and (max-width: 1200px) {
  #penrod-project-section-2 .project-about-text {
    margin-bottom: 0; } }

#penrod-project-hero-img-bg {
  background-image: url("../img/projects/penrod/penrod-desktop-hero-bg.jpg"); }
  @media only screen and (max-width: 768px) {
    #penrod-project-hero-img-bg {
      background-image: url("../img/projects/penrod/penrod-mobile-hero-bg.jpg"); } }

#penrod-project-about-img {
  background-color: transparent;
  padding: 0; }
  @media only screen and (max-width: 1200px) {
    #penrod-project-about-img {
      display: none; } }

#gs-project-hero-img-bg {
  background-image: url("../img/projects/gs/gs-desktop-hero-bg.jpg"); }
  @media only screen and (max-width: 768px) {
    #gs-project-hero-img-bg {
      background-image: url("../img/projects/gs/gs-mobile-hero-bg.jpg"); } }

#gs-project-about-img {
  background-image: url("../img/projects/gs/gs-about-480.jpg");
  background-size: cover;
  background-position: bottom center; }

#evoke-project-hero-img-bg {
  background-image: url("../img/projects/evoke/evoke-desktop-hero-bg.jpg"); }
  @media only screen and (max-width: 768px) {
    #evoke-project-hero-img-bg {
      background-image: url("../img/projects/evoke/evoke-mobile-hero-bg.jpg"); } }

.contact-hero {
  position: relative;
  width: 100vw;
  min-height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center; }
  .contact-hero .contact-block {
    min-height: 100vh;
    width: 70vw;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0 120px; }
    .contact-hero .contact-block .contact-text {
      max-width: 100%; }
      .contact-hero .contact-block .contact-text h2 {
        margin-bottom: 24px; }
      .contact-hero .contact-block .contact-text .contact-copy {
        font-size: 2vw;
        line-height: 3.4vw; }
      .contact-hero .contact-block .contact-text .contact-items {
        margin-top: 3vw;
        width: 100%;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap; }
        .contact-hero .contact-block .contact-text .contact-items a:first-child,
        .contact-hero .contact-block .contact-text .contact-items a:nth-child(2) {
          font-size: 1.5vw;
          font-family: "IBM Plex Sans", sans-serif; }
        .contact-hero .contact-block .contact-text .contact-items a:first-child {
          margin-right: 3vw; }
    @media only screen and (max-width: 1110px) {
      .contact-hero .contact-block .contact-text .contact-copy {
        font-size: 24px;
        line-height: 40px; }
      .contact-hero .contact-block .contact-text .contact-items {
        margin-top: 32px;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between; }
        .contact-hero .contact-block .contact-text .contact-items a:first-child,
        .contact-hero .contact-block .contact-text .contact-items a:nth-child(2) {
          font-size: 24px;
          font-family: "IBM Plex Sans", sans-serif;
          margin-bottom: 24px; }
        .contact-hero .contact-block .contact-text .contact-items a:first-child {
          margin-right: 24px; } }
    @media only screen and (max-width: 960px) {
      .contact-hero .contact-block {
        width: 100%; } }
    @media only screen and (max-width: 768px) {
      .contact-hero .contact-block {
        padding: 80px 30px 120px 30px; }
        .contact-hero .contact-block .contact-text .contact-items {
          -webkit-box-orient: vertical;
          -webkit-box-direction: normal;
          -ms-flex-direction: column;
          flex-direction: column;
          -webkit-box-align: start;
          -ms-flex-align: start;
          align-items: flex-start;
          -ms-flex-wrap: nowrap;
          flex-wrap: nowrap; }
          .contact-hero .contact-block .contact-text .contact-items a:first-child {
            margin-bottom: 24px; }
          .contact-hero .contact-block .contact-text .contact-items a:nth-child(2) {
            margin-bottom: 0; } }

body {
  background-color: #ECEAEF; }
