/* JBANNER CSS RESET */
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,
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;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
  text-rendering: optimizelegibility; }

ol, ul {
  list-style: none; }

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

div {
  -webkit-box-sizing: border-box;
  box-sizing: border-box; }

/*==============
      MIXINS
  ==============*/
/*==============
     VARIABLES
  ==============*/
/*==============
    Animations
  ==============*/
@keyframes fadeIn {
  from {
    opacity: 0; } }
/*==============
    TYPOGRAPHY
  ==============*/
@font-face {
  font-family: 'Neue Haas Grotesk Display Pro';
  src: url("font/NHD-Medium.woff") format("woff");
  src: url("font/NHD-Medium.woff2") format("woff2");
  font-weight: normal;
  font-style: normal; }
@font-face {
  font-family: 'Neue Haas Grotesk Display Pro';
  src: url("font/NHD-BlackItalic.woff") format("woff");
  src: url("font/NHD-BlackItalic.woff2") format("woff2");
  font-weight: 900;
  font-style: italic; }
h1 {
  color: #FFF;
  font-family: 'Neue Haas Grotesk Display Pro', sans-serif;
  font-weight: 900; }

h2, h3, h4, p, button, a, span {
  color: #FFF;
  font-family: 'Neue Haas Grotesk Display Pro', sans-serif; }

h1 {
  font-size: 2.1vw !important;
  font-weight: 900;
  line-height: 1.3; }
  @media (max-width: 1142.8571428571px) {
    h1 {
      font-size: 24px !important; } }
  @media (min-width: 2380.9523809524px) {
    h1 {
      font-size: 50px !important; } }

h2 {
  font-size: 1.9vw !important;
  font-weight: 700;
  line-height: 1.5;
  text-shadow: 1px 1px 30px #0000001f; }
  @media (max-width: 894.7368421053px) {
    h2 {
      font-size: 17px !important; } }
  @media (min-width: 2000px) {
    h2 {
      font-size: 38px !important; } }

h3 {
  font-size: 1.7vw !important;
  font-weight: 500;
  line-height: 1.6; }
  @media (max-width: 941.1764705882px) {
    h3 {
      font-size: 16px !important; } }
  @media (min-width: 2000px) {
    h3 {
      font-size: 34px !important; } }

a {
  font-size: 1.2vw !important;
  font-weight: 400;
  text-decoration: none; }
  @media (max-width: 1166.6666666667px) {
    a {
      font-size: 14px !important; } }
  @media (min-width: 1750px) {
    a {
      font-size: 21px !important; } }

p {
  font-size: 1.4vw !important;
  font-weight: 300;
  color: #d5d5d5;
  line-height: 1.7; }
  @media (max-width: 1214.2857142857px) {
    p {
      font-size: 17px !important; } }
  @media (min-width: 1642.8571428571px) {
    p {
      font-size: 23px !important; } }

p.small {
  font-weight: 500;
  font-size: 1.2vw !important; }
  @media (max-width: 833.3333333333px) {
    p.small {
      font-size: 10px !important; } }
  @media (min-width: 1750px) {
    p.small {
      font-size: 21px !important; } }

/*===============
  LAYOUT ELEMENTS
  ===============*/
html {
  height: 100%; }

body {
  background-color: #000;
  width: 100%;
  padding: 0;
  margin: 120px 0 0 0;
  overflow-x: hidden !important; }

/*===============
     UTILITIES
  ===============*/
.white {
  color: #FFF; }

.light-grey {
  color: #d5d5d5; }

.mid-grey {
  color: #595959; }

.dark-grey {
  color: #111111; }

.black {
  color: black; }

.spot-color {
  color: #4242FF; }

.font-weight-bold {
  font-weight: 700; }

.align-text-left {
  text-align: left; }

.align-text-center {
  text-align: right; }

.align-text-right {
  text-align: right; }

.align-items-start {
  align-items: start; }

.align-items-center {
  align-items: center; }

.align-items-end {
  align-items: end; }

.w-100 {
  width: 100%; }

.w-75 {
  width: 75%; }

.w-50 {
  width: 50%; }

.w-25 {
  width: 25%; }

.flex-wrap {
  flex-wrap: wrap; }

/*===============
       HEADER
  ===============*/
nav {
  display: flex;
  position: fixed;
  z-index: 3;
  top: 0;
  padding: 0 2vw;
  height: 120px;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  background-color: #000;
  -webkit-transition: height 0.2s ease, width linear 0s;
  -o-transition: height 0.2s ease, width linear 0s;
  transition: height 0.2s ease, width linear 0s; }

nav.shrink {
  height: 70px; }

nav ul li div,
nav div a {
  -webkit-transition: all 0.15s ease-in-out;
  -o-transition: all 0.15s ease-in-out;
  transition: all 0.15s ease-in-out; }

#nav-email {
  flex: 0;
  cursor: pointer; }
  #nav-email a {
    position: relative;
    top: -1px;
    letter-spacing: 0.03rem; }
  #nav-email:hover a {
    color: #fff; }
  #nav-email:hover .copy-badge {
    background: #0463d0;
    color: #FFF;
    box-shadow: inset 0 0 0 0 #0463d0; }

.email-indicator {
  margin-right: 10px;
  border-radius: 50%;
  width: 10px;
  height: 10px;
  background: #5aca5f;
  opacity: 0;
  animation: fadeIn 1.3s infinite alternate; }

.copy-badge {
  margin: 0 5px 0 7px;
  font-size: 1vw !important;
  padding: 7px 7px 9px 7px;
  box-shadow: inset 0 0 0 1.5px #d5d5d5;
  border-radius: 50px;
  color: #d5d5d5;
  letter-spacing: 0.7;
  font-family: 'Neue Haas Grotesk Display Pro', sans-serif;
  transition: all 200ms ease; }
  @media (max-width: 1000px) {
    .copy-badge {
      font-size: 10px !important; } }
  @media (min-width: 1200px) {
    .copy-badge {
      font-size: 12px !important; } }

nav.shrink ul li div {
  font-size: 16px;
  -webkit-transition: all 0.15s ease-in-out;
  -o-transition: all 0.15s ease-in-out;
  transition: all 0.15s ease-in-out; }

nav > div {
  display: flex;
  flex: 1;
  /*stretch*/
  align-items: center;
  height: 100%; }

nav > div > a {
  height: 100%;
  display: flex;
  font-size: 1.2vw !important;
  align-items: center;
  font-weight: 500; }
  @media (max-width: 1000px) {
    nav > div > a {
      font-size: 12px !important; } }
  @media (min-width: 1750px) {
    nav > div > a {
      font-size: 21px !important; } }

nav > div > a > img {
  height: 65%;
  transition: all 200ms ease; }
  nav > div > a > img:hover {
    height: 60%;
    margin-left: 5%; }

/* -------- 
     HERO
   -------- */
hero {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  margin: 0 2vw;
  border-top-left-radius: 2.3vw;
  border-top-right-radius: 2.3vw;
  height: calc(92vmin - 140px);
  overflow-y: hidden;
  padding: 12vw 0 14vw 0;
  background: #111111; }
  hero .hero-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 0; }
    hero .hero-text h1 {
      font-size: 3.3vw !important; }
      @media (max-width: 909.0909090909px) {
        hero .hero-text h1 {
          font-size: 30px !important; } }
      @media (min-width: 3030.303030303px) {
        hero .hero-text h1 {
          font-size: 100px !important; } }
      hero .hero-text h1 strong {
        color: #4242FF;
        font-weight: 900;
        font-style: italic;
        text-shadow: 2px 2px 13px #0000009e; }
    hero .hero-text h2 {
      font-size: 1.1vw !important;
      line-height: 1.5;
      font-weight: 700; }
      @media (max-width: 1454.5454545455px) {
        hero .hero-text h2 {
          font-size: 16px !important; } }
      @media (min-width: 4181.8181818182px) {
        hero .hero-text h2 {
          font-size: 46px !important; } }
  hero.home {
    height: 56vw;
    max-height: 80vh; }
    hero.home > img {
      position: absolute;
      width: 100%;
      min-height: 100%;
      object-fit: cover; }
  hero:not(.home) > video, hero:not(.home) > img {
    position: absolute;
    left: 0;
    bottom: 0;
    object-fit: cover;
    object-position: 0% 100%;
    width: 100%;
    height: 100%; }
  hero .hero-img-sm {
    display: none; }
  hero .scroll-icon {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 11%;
    margin: 0 auto;
    width: 30px;
    height: 46px;
    box-shadow: inset 0 0 0 1.5px #FFF;
    /* Provides a cleaner line than border */
    border-radius: 100px; }
    hero .scroll-icon:before {
      position: absolute;
      content: '';
      left: 0;
      right: 0;
      margin: 0 auto;
      width: 5px;
      height: 11px;
      background: #FFF;
      top: 10px;
      border-radius: 50px;
      animation-duration: 1.3s;
      animation-iteration-count: infinite;
      animation-name: scroll; }
  hero p {
    position: absolute;
    left: 0;
    right: 0;
    width: 20vw;
    text-align: center;
    bottom: 7%;
    margin: 0 auto;
    color: #FFF;
    font-size: 0.7vw !important;
    font-weight: 700;
    letter-spacing: .2vw; }
    @media (max-width: 1428.5714285714px) {
      hero p {
        font-size: 10px !important; } }
    @media (min-width: 3714.2857142857px) {
      hero p {
        font-size: 26px !important; } }
  hero.work-header h1 {
    color: #FFF; }
  hero.work-header h2 {
    color: #FFF; }
  hero.work-header .scroll-icon {
    box-shadow: inset 0 0 0 1.5px #FFF;
    /* Provides a cleaner line than border */ }
    hero.work-header .scroll-icon:before {
      background: #FFF; }
  hero.work-header .scroll-icon.dark {
    box-shadow: inset 0 0 0 1.5px #111111;
    /* Provides a cleaner line than border */ }
    hero.work-header .scroll-icon.dark:before {
      background: #111111; }
  hero.work-header p {
    color: #FFF; }

.hero-curve-img {
  position: relative;
  top: -1px;
  margin: -5% 2vw; }
  .hero-curve-img > img {
    position: relative;
    left: -1px;
    width: calc(100% + 2px);
    height: auto; }

@keyframes scroll {
  0% {
    opacity: 0; }
  10% {
    opacity: 1; }
  100% {
    opacity: 0;
    -webkit-transform: translateY(120%);
    transform: translateY(120%); } }
button {
  margin: 1rem;
  border: 2px solid #FFF;
  border-radius: 100px;
  padding: .5rem 1rem;
  font-size: 1.1vw !important;
  font-weight: 700;
  color: #FFF;
  text-transform: uppercase;
  background: transparent;
  -webkit-transition: all 0.15s ease-in-out;
  -o-transition: all 0.15s ease-in-out;
  transition: all 0.15s ease-in-out;
  -webkit-font-smoothing: antialiased;
  cursor: pointer;
  overflow: hidden; }
  @media (max-width: 1272.7272727273px) {
    button {
      font-size: 14px !important; } }
  @media (min-width: 2727.2727272727px) {
    button {
      font-size: 30px !important; } }
  button:hover {
    -webkit-transform: scale(0.95);
    -ms-transform: scale(0.95);
    transform: scale(0.95); }

section {
  flex-wrap: wrap; }

section,
footer {
  display: flex;
  justify-content: center;
  padding: 10vw 2vw; }

section.alt {
  background-color: #111111; }

section.next {
  padding-top: 4vw;
  padding-bottom: 4vw; }

section.next img {
  position: relative; }

.client-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  flex-direction: column; }
  .client-logos img {
    width: 50%; }

.work-panes-header {
  margin-top: 7%;
  width: 100%;
  text-align: center; }

.work-pane.active:hover * {
  cursor: url("../img/custom-cursor.png"), auto; }

.work-pane {
  position: relative;
  display: block;
  width: 100%;
  height: 650px;
  margin-bottom: 35px;
  overflow: hidden;
  transform-style: preserve-3d; }
  .work-pane.inactive {
    opacity: 0.65; }
  .work-pane.active:hover div img.client-logo {
    filter: grayscale(0); }
  .work-pane div {
    display: flex;
    position: absolute;
    top: 60px;
    left: 60px;
    width: 400px;
    max-width: 100%;
    z-index: 99;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: flex-start;
    transform: translateZ(100px); }
    .work-pane div img.client-logo {
      width: 170px;
      z-index: 99;
      margin-bottom: 110px;
      filter: grayscale(1);
      transition: all 0.2s ease-in-out; }
    .work-pane div span:not(.badge) {
      text-transform: uppercase;
      opacity: 0.7;
      font-size: 0.9vw !important;
      text-shadow: 2px 2px 11px rgba(103, 101, 119, 0.38);
      margin-bottom: 15px; }
      @media (max-width: 1666.6666666667px) {
        .work-pane div span:not(.badge) {
          font-size: 15px !important; } }
      @media (min-width: 2666.6666666667px) {
        .work-pane div span:not(.badge) {
          font-size: 24px !important; } }
    .work-pane div h3 {
      font-weight: 700;
      line-height: 1.1;
      font-size: 1.7vw !important;
      text-shadow: 2px 2px 11px rgba(150, 150, 150, 0.32);
      margin-bottom: 40px; }
      @media (max-width: 1764.7058823529px) {
        .work-pane div h3 {
          font-size: 30px !important; } }
      @media (min-width: 2352.9411764706px) {
        .work-pane div h3 {
          font-size: 40px !important; } }
    .work-pane div button {
      text-transform: none;
      font-size: 0.9vw !important;
      margin: 0; }
      @media (max-width: 1666.6666666667px) {
        .work-pane div button {
          font-size: 15px !important; } }
      @media (min-width: 2666.6666666667px) {
        .work-pane div button {
          font-size: 24px !important; } }
    .work-pane div span.badge {
      margin: 0;
      font-size: 0.9vw !important; }
      @media (max-width: 1666.6666666667px) {
        .work-pane div span.badge {
          font-size: 15px !important; } }
      @media (min-width: 2666.6666666667px) {
        .work-pane div span.badge {
          font-size: 24px !important; } }
  .work-pane a {
    display: inline-block;
    width: 100%;
    height: 100%; }
  .work-pane img.bg {
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
    filter: brightness(0.9); }
  .work-pane img.bg-sm {
    display: none;
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
    filter: brightness(0.65); }

span.badge {
  display: inline-block;
  position: relative;
  top: -.2rem;
  padding: .5rem .7rem;
  margin-left: .5rem;
  font-size: .7rem !important;
  font-weight: 700;
  border-radius: .3rem;
  background: #0a00b9;
  background: linear-gradient(90deg, #3141cf 0%, #0092ff 100%);
  color: #fff; }

div.row.limited {
  width: 100%;
  max-width: 80vw;
  padding: 0 4vw; }

div.row.work-pane-row {
  margin-top: 5vw; }

.video-player {
  width: 100%;
  border-radius: 1vw; }

.cta-wrapper {
  display: flex;
  justify-content: center;
  align-items: center; }

.cta {
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
  position: relative;
  margin: 0 2vw;
  padding: 5vw 0 7vw 0;
  border-top-left-radius: 2.3vw;
  border-top-right-radius: 2.3vw;
  height: auto;
  overflow: hidden; }
  .cta img {
    position: absolute;
    left: 0;
    bottom: 0;
    object-fit: cover;
    object-position: 0% 100%;
    width: 100%;
    height: 100%; }

.cta-curve-img {
  margin: -5% 2vw -8% 2vw;
  overflow: hidden;
  position: relative;
  top: -1px; }
  .cta-curve-img img {
    width: 100%; }

footer {
  padding-bottom: 3vw; }

/*Animate.css*/
.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both; }

@-webkit-keyframes fadeIn {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }
@keyframes fadeIn {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }
.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn; }

@-webkit-keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0); }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }
@keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0); }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }
.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown; }

@-webkit-keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0); }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }
@keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0); }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }
.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft; }

@-webkit-keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0); }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }
@keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0); }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }
.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight; }

@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 30px, 0);
    transform: translate3d(0, 30px, 0); }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }
@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 30px, 0);
    transform: translate3d(0, 30px, 0); }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }
.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp; }

@-webkit-keyframes fadeOut {
  from {
    opacity: 1; }
  to {
    opacity: 0; } }

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