@charset "UTF-8";
/*! Made with Bones: http://themble.com/bones :) */
/******************************************************************
Site Name:
Author:

Stylesheet: Main Stylesheet

Here's where the magic happens. Here, you'll see we are calling in
the separate media queries. The base mobile goes outside any query
and is called at the beginning, after that we call the rest
of the styles inside media queries.

Helpful articles on Sass file organization:
http://thesassway.com/advanced/modular-css-naming-conventions

******************************************************************/
/*********************
IMPORTING PARTIALS
These files are needed at the beginning so that we establish all
our mixins, functions, and variables that we'll be using across
the whole project.
*********************/
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
/* Document
   ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
  line-height: 1.15;
  /* 1 */
  -webkit-text-size-adjust: 100%;
  /* 2 */ }

/* Sections
   ========================================================================== */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0; }

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block; }

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0; }

/* Grouping content
   ========================================================================== */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box;
  /* 1 */
  height: 0;
  /* 1 */
  overflow: visible;
  /* 2 */ }

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */ }

/* Text-level semantics
   ========================================================================== */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent; }

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none;
  /* 1 */
  text-decoration: underline;
  /* 2 */
  text-decoration: underline dotted;
  /* 2 */ }

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder; }

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */ }

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%; }

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline; }

sub {
  bottom: -0.25em; }

sup {
  top: -0.5em; }

/* Embedded content
   ========================================================================== */
/**
 * Remove the border on images inside links in IE 10.
 */
img {
  border-style: none; }

/* Forms
   ========================================================================== */
/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  /* 1 */
  font-size: 100%;
  /* 1 */
  line-height: 1.15;
  /* 1 */
  margin: 0;
  /* 2 */ }

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input {
  /* 1 */
  overflow: visible; }

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select {
  /* 1 */
  text-transform: none; }

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button; }

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0; }

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText; }

/**
 * Correct the padding in Firefox.
 */
fieldset {
  padding: 0.35em 0.75em 0.625em; }

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  box-sizing: border-box;
  /* 1 */
  color: inherit;
  /* 2 */
  display: table;
  /* 1 */
  max-width: 100%;
  /* 1 */
  padding: 0;
  /* 3 */
  white-space: normal;
  /* 1 */ }

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline; }

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto; }

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */
[type="checkbox"],
[type="radio"] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */ }

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto; }

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  outline-offset: -2px;
  /* 2 */ }

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none; }

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */ }

/* Interactive
   ========================================================================== */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block; }

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item; }

/* Misc
   ========================================================================== */
/**
 * Add the correct display in IE 10+.
 */
template {
  display: none; }

/**
 * Add the correct display in IE 10.
 */
[hidden] {
  display: none; }

a[href^="tel"] {
  color: inherit;
  text-decoration: none; }

/******************************************************************
Site Name:
Author:

Stylesheet: Variables

Here is where we declare all our variables like colors, fonts,
base values, and defaults. We want to make sure this file ONLY
contains variables that way our files don't get all messy.
No one likes a mess.

******************************************************************/
/*********************
COLORS
Need help w/ choosing your colors? Try this site out:
http://0to255.com/
*********************/
/* -- COLORS -- */
/*
Here's a great tutorial on how to
use color variables properly:
http://sachagreif.com/sass-color-variables/
*/
/******************************************************************
Site Name:
Author:

Stylesheet: Typography

Need to import a font or set of icons for your site? Drop them in
here or just use this to establish your typographical grid. Or not.
Do whatever you want to...GOSH!

Helpful Articles:
http://trentwalton.com/2012/06/19/fluid-type/
http://ia.net/blog/responsive-typography-the-basics/
http://alistapart.com/column/responsive-typography-is-a-physical-discipline

******************************************************************/
/*********************
FONT FACE (IN YOUR FACE)
*********************/
/*  To embed your own fonts, use this syntax
  and place your fonts inside the
  library/fonts folder. For more information
  on embedding fonts, go to:
  http://www.fontsquirrel.com/
  Be sure to remove the comment brackets.
*/
/*  @font-face {
      font-family: 'Font Name';
      src: url('library/fonts/font-name.eot');
      src: url('library/fonts/font-name.eot?#iefix') format('embedded-opentype'),
             url('library/fonts/font-name.woff') format('woff'),
             url('library/fonts/font-name.ttf') format('truetype'),
             url('library/fonts/font-name.svg#font-name') format('svg');
      font-weight: normal;
      font-style: normal;
  }
*/
/* -- Fonts -- */
@font-face {
  font-family: 'Butler';
  src: url("../fonts/Butler-Bold.woff2") format("woff2"), url("../fonts/Butler-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal; }

/*
some nice typographical defaults
more here: http://www.newnet-soft.com/blog/csstypography
*/
p {
  -ms-word-wrap: break-word;
  word-break: break-word;
  word-wrap: break-word;
  -webkit-hyphens: auto;
  -moz-hyphens: auto;
  hyphens: auto;
  -webkit-hyphenate-before: 2;
  -webkit-hyphenate-after: 3;
  hyphenate-lines: 3;
  -webkit-font-feature-settings: "liga", "dlig";
  -moz-font-feature-settings: "liga=1, dlig=1";
  -ms-font-feature-settings: "liga", "dlig";
  -o-font-feature-settings: "liga", "dlig";
  font-feature-settings: "liga", "dlig"; }

/******************************************************************
Site Name:
Author:

Stylesheet: Mixins Stylesheet

This is where you can take advantage of Sass' great features: Mixins.
I won't go in-depth on how they work exactly,
there are a few articles below that will help do that. What I will
tell you is that this will help speed up simple changes like
changing a color or adding CSS3 techniques gradients.

A WORD OF WARNING: It's very easy to overdo it here. Be careful and
remember less is more.

Helpful:
http://sachagreif.com/useful-sass-mixins/
http://thesassway.com/intermediate/leveraging-sass-mixins-for-cleaner-code
http://web-design-weekly.com/blog/2013/05/12/handy-sass-mixins/

******************************************************************/
/*********************
TRANSITION
*********************/
/*
I totally rewrote this to be cleaner and easier to use.
You'll need to be using Sass 3.2+ for these to work.
Thanks to @anthonyshort for the inspiration on these.
USAGE: @include transition(all 0.2s ease-in-out);
*/
/*********************
CSS3 GRADIENTS
Be careful with these since they can
really slow down your CSS. Don't overdo it.
*********************/
/* @include css-gradient(#dfdfdf,#f8f8f8); */
/*********************
BOX SIZING
*********************/
/* @include box-sizing(border-box); */
/* NOTE: value of "padding-box" is only supported in Gecko. So
probably best not to use it. I mean, were you going to anyway? */
/* -- MIXINS -- */
/*********************
	Clearfix
*********************/
@keyframes button-bounce {
  0% {
    transform: translateY(0px); }
  50% {
    transform: translateY(-10px); }
  100% {
    transform: translateY(0px); } }

@keyframes logo-bounce {
  0% {
    transform: scale(1); }
  50% {
    transform: scale(1.1); }
  100% {
    transform: scale(1); } }

@keyframes fade-in {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }

@keyframes fade-out {
  from {
    opacity: auto; }
  to {
    opacity: 0; } }

@keyframes shrink {
  from {
    max-height: 8500px;
    width: auto; }
  to {
    max-height: 0px;
    width: 0; } }

@keyframes grow {
  from {
    max-height: 0px; }
  to {
    max-height: 8500px; } }

@keyframes supershrink {
  0% {
    height: 0px; }
  100% {
    height: 0px; } }

@keyframes arrow-bump {
  0% {
    transform: rotate(-45deg) translateX(0px) translateY(0px); }
  50% {
    transform: rotate(-45deg) translateX(-2px) translateY(-2px); }
  100% {
    transform: rotate(-45deg) translateX(0px) translateY(0px); } }

@keyframes zap-in {
  0% {
    transform: translateY(20px);
    opacity: 0; }
  100% {
    transform: translateY(0px);
    opacity: 1; } }

/*********************
IMPORTING MODULES
Modules are reusable blocks or elements we use throughout the project.
We can break them up as much as we want or just keep them all in one.
I mean, you can do whatever you want. The world is your oyster. Unless
you hate oysters, then the world is your peanut butter & jelly sandwich.
*********************/
/******************************************************************
Site Name:
Author:

Stylesheet: Button Styles

Buttons are a pretty important part of your site's style, so it's
important to have a consistent baseline for them. Use this stylesheet
to create all kinds of buttons.

Helpful Links:
http://galp.in/blog/2011/08/02/the-ui-guide-part-1-buttons/

******************************************************************/
/*********************
BUTTON DEFAULTS
We're gonna use a placeholder selector here
so we can use common styles. We then use this
to load up the defaults in all our buttons.

Here's a quick video to show how it works:
http://www.youtube.com/watch?v=hwdVpKiJzac

*********************/
/*********************
BASE (MOBILE) SIZE
This are the mobile styles. It's what people see on their phones. If
you set a great foundation, you won't need to add too many styles in
the other stylesheets. Remember, keep it light: Speed is Important.
*********************/
body {
  position: relative;
  opacity: 0;
  animation: fade-in 1s forwards .2s; }

.curtain {
  background-color: #1740b1;
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.05, 0.68, 0.77, 1);
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 0; }

.grid-show {
  position: absolute;
  z-index: 1000;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: row; }
  .grid-show li {
    width: calc(100%/9);
    border-left: 1px solid red;
    list-style: none; }
    .grid-show li:nth-child(1n+10) {
      display: none; }

* {
  box-sizing: border-box;
  -webkit-font-variant-ligatures: no-common-ligatures; }

html {
  font-size: 62.5%; }

.main {
  padding: 0;
  margin: 0;
  background-size: 80%;
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  color: #252830;
  position: relative; }
  .main * {
    z-index: 100;
    position: relative; }
  .main:before {
    content: "";
    background-image: url(../img/brushed-metal.jpg);
    background-size: 80%;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 1;
    transition: all 0.4s cubic-bezier(0.05, 0.68, 0.77, 1); }

.tagline-wrapper {
  display: none; }

.tagline {
  color: #fff;
  text-transform: uppercase;
  font-weight: 700;
  text-align: center; }
  .tagline h2 {
    padding: 30px 0;
    margin: 0;
    font-size: 12px;
    font-size: 1.2rem;
    line-height: 15px;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700; }

.header {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0;
  width: 100%;
  z-index: 150;
  position: relative; }
  .header * {
    z-index: 100; }
  .header:before {
    content: "";
    position: absolute;
    background: linear-gradient(-150deg, #313540 0%, #252830 20%, #000 80%);
    background-size: 100%;
    background-repeat: no-repeat;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 1;
    transition: opacity 0.4s cubic-bezier(0.05, 0.68, 0.77, 1); }

.contact-btn {
  align-self: flex-start;
  margin: 17px 0 0 0;
  margin-left: calc(11.11% - 22.5px);
  justify-self: center;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  width: 45px;
  height: 45px;
  border: 2px #4c4f59 solid;
  border-radius: 50%;
  box-shadow: 0px 8px 18px #0d0d0d;
  text-decoration: none;
  padding: 14px 8px; }
  .contact-btn__bar {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 2px;
    border: none;
    background-color: #4c4f59;
    color: blue;
    transition: all 0.4s cubic-bezier(0.05, 0.68, 0.77, 1);
    z-index: 150; }
  .contact-btn__bar:nth-child(3) {
    position: relative;
    top: 1px; }

.contact-btn.action {
  animation: button-bounce 0.3s cubic-bezier(0.05, 0.68, 0.77, 1.75); }

@keyframes show-replay {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }

.selfie {
  width: 80%;
  max-width: 300px;
  margin-bottom: 40px;
  transition-property: height opacity;
  transition: 0.4s cubic-bezier(0.05, 0.68, 0.77, 1);
  border-radius: 50%; }
  .selfie img, .selfie video {
    width: 100%;
    clip-path: circle(49.5% at center);
    position: relative; }
  .selfie #replay {
    display: block;
    width: 100%;
    height: 20px;
    position: absolute;
    bottom: 10px;
    opacity: 0;
    transition: opacity ease-out .5s;
    background-image: url(/img/replay.svg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    cursor: pointer;
    animation: show-replay 1s 5s forwards; }

.header .svg-wrapper {
  width: 50%;
  max-width: 250px;
  transition: background-color 0.4s cubic-bezier(0.05, 0.68, 0.77, 1); }

/*-Logo Colors -*/
.cls-1 {
  fill: #1740b1;
  transition: all 0.4s cubic-bezier(0.05, 0.68, 0.77, 1); }

.cls-2 {
  fill: #4c4f59;
  transition: all 0.4s cubic-bezier(0.05, 0.68, 0.77, 1); }

/* ––––– BASIC TYPOGRAPHY ––––––––*/
h1 {
  font-family: 'Butler', serif; }

h2 {
  color: #1740b1;
  font-family: 'Butler', serif;
  font-size: 65px;
  font-size: 6.5rem;
  line-height: 55px;
  margin: 14rem 0 2rem; }

p {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 24px;
  hyphens: none; }

.intro h1 {
  font-size: 5.5vw;
  line-height: 7vw;
  color: #1740b1;
  margin: 60px 0 0 0;
  letter-spacing: -1px; }

.intro p {
  margin: 20px 0 0 0;
  font-size: 20px;
  font-size: 2rem;
  line-height: 28px; }

section {
  background: transparent;
  padding: 0 11.11%; }

.work {
  position: relative;
  z-index: 150;
  padding-top: 60px;
  padding-bottom: 60px;
  margin: 0 auto; }
  .work:before {
    content: "";
    width: 100%;
    margin: 0 auto;
    height: 1px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, #a5a8b2 50%, rgba(255, 255, 255, 0) 100%);
    margin-bottom: 60px;
    display: block; }

.tile-box {
  display: flex;
  flex-direction: column;
  grid-column: 2/9; }

.tile {
  width: 100%;
  display: block;
  position: relative;
  margin-bottom: 20px;
  overflow: hidden;
  position: relative;
  transition: all .4s ease; }
  .tile p {
    position: absolute;
    bottom: 0;
    margin: 0;
    padding: 0;
    text-indent: -9999%; }
  .tile img {
    width: 100%;
    transform: scale(1.01); }
  .tile.on {
    position: relative;
    border: solid 10px #fff;
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.4); }

.artboard {
  display: flex;
  flex-direction: column;
  margin: 60px 0; }
  .artboard .svg {
    padding: 20% 10%; }
  .artboard .video {
    height: 0;
    padding-top: 56.25%;
    position: relative;
    width: 100%;
    margin-bottom: 25px;
    box-shadow: 0 4px 5px rgba(0, 0, 0, 0.3); }
    .artboard .video iframe {
      position: absolute;
      top: 0;
      bottom: 0;
      height: 100%; }
  .artboard .photo, .artboard img {
    width: 100%; }
  .artboard .svg {
    background-color: #fff; }
  .artboard .image {
    z-index: 20;
    position: relative;
    width: 100%;
    margin-bottom: 25px;
    box-shadow: 0 4px 5px rgba(0, 0, 0, 0.3); }
  .artboard .caption {
    position: absolute;
    top: 10px;
    left: 24px;
    color: #fff;
    z-index: 150;
    font-size: 7px;
    font-size: 0.7rem;
    line-height: 7px; }
  .artboard .section-divider {
    height: 40px;
    position: relative;
    display: flex;
    padding: 10px;
    align-items: center;
    width: 100%; }
    .artboard .section-divider .caption {
      position: relative;
      top: auto;
      left: auto;
      margin: 0; }

.foot {
  width: 100%;
  background-color: #252830;
  margin: 0;
  padding: 40px 40px 40px 40px;
  z-index: 150;
  position: relative; }
  .foot p {
    margin: 0;
    padding: 0;
    color: #4c4f59;
    font-family: "Montserrat", "Helvetica Neue", Helvetica, Arial, sans-serif;
    text-align: center;
    font-size: 12px;
    font-size: 1.2rem;
    width: 100%;
    position: relative;
    z-index: 150; }

.single .header .svg-wrapper:after {
  position: absolute;
  right: -50px;
  top: 0;
  width: 25px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  content: "";
  box-sizing: border-box;
  background-size: 40%;
  border-left: #313540 0.5px solid;
  transition: all 0.4s cubic-bezier(0.05, 0.68, 0.77, 1);
  z-index: 140; }

.single .header .svg-wrapper:before {
  position: absolute;
  right: -47px;
  content: "";
  height: 10px;
  width: 10px;
  top: calc(50% - 6px);
  transform: rotate(-45deg);
  border-top: 2px #4c4f59 solid;
  border-left: 2px #4c4f59 solid;
  border-right: 2px transparent solid;
  border-right: transparent;
  background-color: #252830;
  z-index: 150;
  box-shadow: -7px 0px 4px #1a1a1a;
  overflow: hidden;
  transition: all .2s linear; }

.single .header .single-header {
  width: 100%;
  position: relative; }
  .single .header .single-header:after {
    content: "";
    box-shadow: 0px 4px 16px rgba(76, 79, 89, 0.5);
    position: absolute;
    height: 16px;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 1; }
  .single .header .single-header img {
    position: relative;
    width: 100%;
    z-index: 50; }

.single .single-details {
  animation: single-details-grow .4s forwards;
  z-index: 100; }
  .single .single-details h1 {
    font-size: 66px;
    font-size: 6.6rem;
    line-height: 66px;
    margin: 40px 0 0 0; }
  .single .single-details .description {
    font-size: 14px;
    font-size: 1.4rem; }
    .single .single-details .description:last-child {
      margin-bottom: 30px; }
  .single .single-details .roles {
    border-top: 1px solid #b3b6be;
    padding: 15px 0 0 0;
    margin-top: 30px; }
    .single .single-details .roles h3 {
      font-family: "Butler", Cambria, Times New Roman, Times, serif;
      font-size: 14px;
      font-size: 1.4rem;
      margin: 15px 0 0 0;
      color: #7c808f; }
    .single .single-details .roles p {
      margin: 0 0 3px 0;
      font-size: 14px;
      font-size: 1.4rem; }

/* -- CBSX Specific CSS-- */
.cbsx .artboard .image-4 {
  background-color: #9d0911; }

.cbsx .artboard .image-6 {
  padding: calc(20% + 20px) 10% 20% 10%; }
  .cbsx .artboard .image-6 .caption {
    color: #252830; }

/* -- Sunday Morning Specific CSS-- */
.AM .artboard .section-divider {
  background: linear-gradient(-150deg, #ba1256, #5f1a5f); }

.AM .artboard .image-6 .caption, .AM .artboard .image-7 .caption {
  color: #252830; }

/* -- WNTT Specific CSS-- */
.wntt .artboard .section-divider {
  background-color: #003864; }

.wb.single .single-details h1 {
  font-size: 50px;
  font-size: 5rem;
  line-height: 50px; }

/* -- Altitude Specific CSS-- */
.ag .description a {
  background-color: #FF380F;
  padding: 5px 12px;
  border-radius: 5px;
  margin-top: 10px;
  display: inline-block;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-size: 1.4rem; }

.ag .section-divider {
  background-color: #FF380F;
  margin-bottom: 15px; }

.ag .image-5 {
  background-color: #fff; }

/* -- Contact Specific CSS-- */
.contact__details {
  opacity: 0;
  max-height: 0px;
  z-index: 0;
  display: flex;
  flex-direction: column;
  width: 100%;
  justify-content: center;
  align-items: center;
  color: #fff; }
  .contact__details h3 {
    font-family: "butler serif";
    text-align: center;
    font-size: 20vw;
    line-height: 14vw;
    width: 100%;
    margin: 4vw 0;
    white-space: nowrap; }
  .contact__details .numbers {
    text-align: center;
    width: 90%;
    margin: 0;
    padding: 4vw 0;
    border-top: solid 1px #fff; }
    .contact__details .numbers p {
      margin: 0 0 12px 0;
      padding: 0;
      width: auto;
      font-size: 22px;
      font-size: 2.2rem; }

.contact {
  /*end .contact-btn */ }
  .contact .curtain {
    opacity: 1;
    z-index: 110; }
  .contact .main:before, .contact .header:before {
    opacity: 0; }
  .contact .intro {
    opacity: 0;
    height: 0px; }
  .contact .contact-btn {
    border-color: #fff;
    box-shadow: 0px 8px 18px #0e286d; }
    .contact .contact-btn__bar {
      border: none;
      height: 2px;
      background-color: #fff; }
      .contact .contact-btn__bar:nth-child(1) {
        width: 13px;
        transform: rotate(-45deg);
        align-self: flex-start;
        position: relative;
        top: 1px;
        left: -1px; }
      .contact .contact-btn__bar:nth-child(2) {
        transform: rotate(180deg);
        justify-self: center; }
      .contact .contact-btn__bar:nth-child(3) {
        width: 13px;
        transform: rotate(45deg);
        align-self: flex-start;
        position: relative;
        top: 0px;
        left: -1px;
        opacity: 1; }
  .contact p {
    color: #fff; }
  .contact .cls-1, .contact .cls-2 {
    fill: #fff; }
  .contact .contact__details {
    max-height: 400px;
    margin: 40px 0;
    animation: fade-in 2s .8s forwards;
    z-index: 150; }
  .contact .header .svg-wrapper:before, .contact .header .svg-wrapper:after {
    opacity: 0;
    transition: 0s linear; }
  .contact .header .single-header {
    animation: fade-out .4s forwards, supershrink 0s .4s forwards; }
  .contact .selfie {
    opacity: 0;
    width: 0;
    min-height: 0; }
  .contact .single-details {
    animation: fade-out .2s forwards, shrink 2s .4s forwards; }
  .contact .work {
    padding-top: 0; }
    .contact .work:before {
      background: none;
      margin-bottom: 0; }
  .contact .foot {
    height: 100%; }

.tile.click {
  z-index: 200;
  position: relative;
  animation: 0.4s fade-out cubic-bezier(0.97, 0.01, 0.98, 0.29) forwards 0.4s;
  box-shadow: 0px 6px 6px rgba(0, 0, 0, 0.8); }

body.link-prep .curtain {
  animation-delay: .4s;
  animation: fade-in .4s forwards;
  background-color: #252830; }

body.link-prep .tagline-wrapper {
  opacity: 0; }

body.link-prep .main:before, body.link-prep .header:before, body.link-prep .header, body.link-prep .intro {
  opacity: 0; }

body.link-prep .artboard {
  opacity: 0; }

body.link-prep .work:before {
  opacity: 0; }

body.link-prep .tile {
  opacity: .1;
  animation: 0.4s fade-out cubic-bezier(0.97, 0.01, 0.98, 0.29) forwards 0.4s; }

body.link-prep .tile.click {
  opacity: 1; }

header, .intro {
  animation: zap-in .6s ease-out; }

/*********************
LARGER MOBILE DEVICES
This is for devices like the Galaxy Note or something that's
larger than an iPhone but smaller than a tablet. Let's call them
tweeners.
*********************/
@media only screen and (min-width: 481px) {
  .tagline h2 {
    font-size: 16px;
    font-size: 1.6rem; }
  .tile-box {
    justify-self: stretch;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap; }
  .tile {
    width: 49%;
    margin-bottom: 2%; }
  body.single .single-details h1 {
    margin-top: 60px; }
  body.single .single-details .description {
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 28px; } }

/*********************
TABLET & SMALLER LAPTOPS
This is the average viewing window. So Desktops, Laptops, and
in general anyone not viewing on a mobile device. Here's where
you can add resource intensive styles.
*********************/
@media only screen and (min-width: 768px) {
  .grid-show li {
    width: calc(100%/15); }
    .grid-show li:nth-child(1n+9) {
      display: inherit; }
    .grid-show li:nth-child(1n+16) {
      display: none; }
  .contact-btn {
    margin-left: calc(6.66% - 22.5px); }
  .showcase {
    display: block;
    width: 79.92%;
    position: relative; }
  section {
    padding: 0 6.66%; }
  .intro h1 {
    font-size: 6vw; }
  .intro p {
    font-size: 22px;
    font-size: 2.2rem;
    line-height: 30px; }
  .work {
    padding-top: 76px;
    padding-bottom: 76px;
    margin: 0 auto; }
    .work:before {
      margin-bottom: 76px; }
  .artboard .caption {
    font-size: 16px;
    font-size: 1.6rem; }
  body.single .single-details h1 {
    margin-top: 80px; }
  body.single .single-details .description {
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 28px; }
  .tile img {
    transition: transform cubic-bezier(0.05, 0.68, 0.77, 1.25) 0.4s; }
  .tile:hover img {
    transform: scale(1.05); }
  /* -- Art Specific CSS-- */
  .cbsx .artboard {
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: flex-start; }
    .cbsx .artboard .image-3 {
      width: 68.67%; }
    .cbsx .artboard .image-4 {
      width: 31.3%; }
    .cbsx .artboard .image-6 {
      padding: 10% 5%;
      flex-shrink: 1; }
  .wb.single .single-details h1 {
    font-size: 66px;
    font-size: 6.6rem;
    line-height: 66px; }
  .contact .contact__details h3 {
    font-size: 140px;
    font-size: 14rem; }
  .ag .artboard {
    flex-direction: row;
    flex-wrap: wrap; }
  .ag .image-5, .ag .image-6, .ag .image-7 {
    width: calc(33.34% - 17px); }
  .ag .image-6 {
    margin-left: 25px;
    margin-right: 25px; } }

/*********************
DESKTOP
This is the average viewing window. So Desktops, Laptops, and
in general anyone not viewing on a mobile device. Here's where
you can add resource intensive styles.
*********************/
@media only screen and (min-width: 900px) {
  .grid-show li {
    width: calc(100%/24);
    display: block; }
    .grid-show li:nth-child(1n) {
      display: inherit; }
  html {
    background-color: #131926; }
  body {
    background-color: #252830;
    padding-left: 8.332%;
    max-width: 1280px;
    margin: 0 auto; }
    body .tagline-wrapper {
      z-index: 150;
      display: block;
      position: absolute;
      width: 4.166%;
      height: 500px;
      background-image: url(/img/tagline.svg);
      background-repeat: no-repeat;
      background-position: center top;
      background-size: 21px 482px;
      top: 100px;
      left: 2.083%; }
  .main {
    position: relative;
    margin: 0 auto;
    width: 100%; }
  .selfie {
    display: flex;
    width: calc(36.3572893485% + 10px);
    max-width: none;
    margin: -5% auto 0;
    padding: 5px;
    background-color: #252830;
    justify-content: center;
    align-items: center;
    position: relative; }
    .selfie:hover #replay {
      opacity: 1; }
    .selfie img, .selfie video {
      width: 100%; }
    .selfie #replay {
      width: 100%;
      height: 30px;
      position: absolute;
      bottom: 20px; }
  section {
    padding: 0 4.5446611686%; }
  .tagline {
    display: none;
    position: relative;
    line-height: 15px; }
    .tagline h2 {
      font-size: 20px;
      font-size: 2rem;
      padding: 0;
      margin-top: 5.75%; }
  .contact-btn {
    margin-left: calc(-4.545% + -22.5px); }
  .header {
    align-items: flex-start; }
    .home .header:before {
      background-image: url(../img/home-Header_d-2x.jpg); }
    .header .svg-wrapper {
      width: 18.1786446743%;
      max-width: none;
      min-width: 108px;
      margin-left: auto;
      margin-right: auto;
      transition: transform 1s cubic-bezier(0.16, 0.7, 0.19, 1.02) 0.2s; }
  .home .svg-wrapper {
    width: 22.7233058428%;
    margin-top: 4%; }
  .home .home-header {
    position: relative;
    top: 0;
    width: 100%;
    z-index: 50; }
    .home .home-header img {
      width: 100%; }
  .intro:nth-of-type(1) {
    padding-top: 1vw; }
  .intro h1 {
    font-size: 4.5vw;
    line-height: 4.5vw;
    width: 81.8039010342%;
    margin-left: auto;
    margin-right: auto; }
  .intro p {
    font-size: 22px;
    font-size: 2.2rem;
    line-height: 36px;
    width: 81.8039010342%;
    word-spacing: -2px;
    text-align-last: left;
    word-wrap: break-word;
    margin-left: auto;
    margin-right: auto; }
  p {
    width: 63.6252563599%;
    margin-left: 18.1786446743%;
    font-size: 27px;
    font-size: 2.7rem;
    line-height: 36px; }
  .tile {
    width: 32%;
    margin-bottom: 2%; }
  .foot {
    padding-bottom: 100px;
    width: 109.0893223371%;
    position: relative;
    left: -9.0893223371%; }
    .foot:before {
      content: "";
      width: 100%;
      height: 100%;
      position: absolute;
      top: 0;
      left: 0;
      background: linear-gradient(#131926 40%, rgba(19, 25, 38, 0)); }
  body.home {
    /*-Logo Colors -*/ }
    body.home .cls-1 {
      fill: #1740b1; }
    body.home .cls-2 {
      fill: #252830; }
  body.contact {
    /*-Logo Colors -*/ }
    body.contact .cls-1 {
      fill: #fff; }
    body.contact .cls-2 {
      fill: #fff; }
    body.contact .svg-wrapper {
      width: 18.1786446743%; }
  /* body.single{
	
	$artsubcol: 4.544%;
	
	.header{
		width: 100%;
		position: relative;
		display: grid;
		grid-template-columns: repeat(22,1fr);
		grid-template-rows:70px 108px auto;
		
		.contact-btn{
			margin-left:calc(-250% + -22.5px) ;
			grid-column: 1/2;
			grid-row: 1/2;
		}
		
		.svg-wrapper{
			background-color: $nm-dark-gray;
			padding: 20px;
			width:auto;
			text-align: center;
			margin:0;
			z-index: 100;
			grid-column:1/6; 
			grid-row: 2/3;
		}
		
		svg{
			width: 80%;
			margin:0 auto;
			z-index: 100;
		}
		
		.single-header{
			z-index: 80;
			grid-column: 1/23;
			grid-row:1/-1;
		}
	}
	
	section{
		width: $subcol*16;
		margin:0 auto;
		padding: 0; 
	}
	
	.work{
		padding-bottom: 76px;
	}
	
	.single-details{
		
		.description{
			@include font-size(22);
			width: 95%;
			line-height: 36px;
		}
		
		p{
		width:100%;
		margin-left:0;
		margin-right:0;
		}
		
	}
	
} -- end body.single -- */
  /*————————————————————————————————————————— Safari Fix --------*/
  body.single .header {
    width: 100%;
    position: relative; }
    body.single .header .contact-btn {
      z-index: 150;
      position: absolute;
      top: 0; }
    body.single .header .svg-wrapper {
      background-color: #252830;
      padding: 20px;
      top: 70px;
      width: 22.7233058428%;
      text-align: center;
      margin: 0;
      z-index: 100;
      position: absolute; }
      body.single .header .svg-wrapper:after {
        right: -25px;
        background-color: #252830; }
      body.single .header .svg-wrapper:before {
        right: -22px; }
      body.single .header .svg-wrapper:hover:after {
        background-color: #1740b1; }
      body.single .header .svg-wrapper:hover:before {
        box-shadow: -7px 0px 4px #113084;
        border-color: #fff;
        background-color: #1740b1;
        animation: arrow-bump .4s ease forwards; }
    body.single .header svg {
      width: 80%;
      margin: 0 auto;
      z-index: 100; }
    body.single .header .single-header {
      z-index: 80;
      grid-column: 1/23;
      grid-row: 1/-1; }
  body.single section {
    width: 72.714578697%;
    margin: 0 auto;
    padding: 0; }
  body.single .work {
    padding-bottom: 76px; }
  body.single .single-details h1 {
    margin-bottom: 20px; }
  body.single .single-details .description {
    font-size: 16px;
    font-size: 1.6rem;
    width: 68.75%;
    line-height: 28px;
    margin: 0; }
  body.single .single-details p {
    width: 100%;
    margin-left: 0;
    margin-right: 0; }
  body.single .single-details .project-details {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    align-content: stretch;
    justify-content: flex-start; }
  body.single .single-details .roles {
    width: 25%;
    margin: 0 0 0 6.5%;
    border-top: none;
    border-left: 1px solid #b3b6be;
    padding: 0 0 0 25px; }
    body.single .single-details .roles h3 {
      margin: 20px 0 0 0; }
    body.single .single-details .roles h3:nth-of-type(1) {
      margin-top: 0; }
    body.single .single-details .roles p {
      line-height: 1.25; }
  /* -- end body.single -- */
  /* -- Art Specific CSS-- */
  .cbsx .artboard .image-3 {
    width: 68.85%; }
  .cbsx .artboard .image-4 {
    width: 31.15%; }
  .wb .break {
    display: block; }
  /* -- CONTACT Overlay --*/
  .contact__details {
    width: 0px; }
  .contact .selfie {
    opacity: 0;
    width: 0;
    min-height: 0; }
  .contact .header .svg-wrapper {
    transform: translateX(169%); }
  .contact.home .header .svg-wrapper {
    transform: translateX(0%); }
  .contact.single .header .svg-wrapper {
    background-color: transparent; }
  .contact.single .header .contact__details {
    margin: 200px auto 0; }
  .contact .main:after {
    content: "";
    position: absolute;
    width: 30px;
    top: 0;
    bottom: 0;
    height: 100%;
    background-image: none;
    background-color: transparent;
    background-size: 100%;
    background-image: linear-gradient(90deg, rgba(0, 0, 0, 0.08), rgba(255, 255, 255, 0) 50%);
    opacity: 1;
    z-index: 150; }
  .contact .contact__details {
    display: flex;
    flex-direction: row;
    width: auto;
    justify-content: center;
    align-items: stretch;
    color: #fff;
    margin: 0 0 0 0;
    height: auto;
    grid-column: 3/21;
    padding: 9vw 0 4vw 0; }
    .contact .contact__details h3 {
      font-size: 10vw;
      line-height: 6vw;
      min-width: 50%;
      padding-right: 4vw;
      align-self: center;
      text-align: right;
      margin: 3vw 0; }
    .contact .contact__details .numbers {
      width: 50%;
      padding: 0 0 0  3vw;
      border-top: none;
      border-left: 1px solid #3859c5;
      text-align: left;
      display: flex;
      flex-direction: column;
      align-content: center;
      justify-content: center; }
      .contact .contact__details .numbers p {
        font-size: 1.5vw;
        line-height: 22px; }
  .contact .work {
    margin-top: 30px; }
  .home.contact .contact__details {
    margin-left: auto;
    margin-right: auto;
    width: 90%; } }

/*********************
LARGE VIEWING SIZE
This is for the larger monitors and possibly full screen viewers.
*********************/
@media only screen and (min-width: 1280px) {
  /******************************************************************
Site Name: 
Author: 

Stylesheet: Super Large Monitor Stylesheet

You can add some advanced styles here if you like. This kicks in
on larger screens.

******************************************************************/
  html {
    overflow-x: hidden; }
  body {
    padding-left: 106.641px; }
  .main {
    width: 1173.359px; }
  .intro h1 {
    font-size: 53px;
    font-size: 5.3rem; }
  .intro p {
    font-size: 34px;
    font-size: 3.4rem;
    line-height: 48px; }
  .showcase {
    right: 9.0893223371%; }
  p {
    width: 45.4466116856%; }
  body.single .single-details h1 {
    width: 62.5%; }
  .contact .contact__details h3 {
    font-size: 110px;
    font-size: 11rem; }
  .contact .contact__details .numbers p {
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 22px; } }

/*********************
RETINA (2x RESOLUTION DEVICES)
This applies to the retina iPhone (4s) and iPad (2,3) along with
other displays with a 2x resolution. You can also create a media
query for retina AND a certain size if you want. Go Nuts.
*********************/
@media only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min--moz-device-pixel-ratio: 1.5), only screen and (min-device-pixel-ratio: 1.5) {
  /******************************************************************
Site Name: 
Author: 

Stylesheet: Retina Screens & Devices Stylesheet

When handling retina screens you need to make adjustments, especially
if you're not using font icons. Here you can add them in one neat
place.

******************************************************************/
  /* 

EXAMPLE 
Let's say you have an image and you need to make sure it looks ok
on retina screens. Let's say we have an icon which dimension are
24px x 24px. In your regular stylesheets, it would look something
like this:

.icon {
	width: 24px;
	height: 24px;
	background: url(img/test.png) no-repeat;
}

For retina screens, we have to make some adjustments, so that image
doesn't look blurry. So, taking into account the image above and the
dimensions, this is what we would put in our retina stylesheet:

.icon {
	background: url(img/test@2x.png) no-repeat;
	background-size: 24px 24px;
}

So, you would create the same icon, but at double the resolution, meaning 
it would be 48px x 48px. You'd name it the same, but with a @2x at the end
(this is pretty standard practice). Set the background image so it matches
the original dimensions and you are good to go. 

*/ }

/*********************
PRINT STYLESHEET
Feel free to customize this. Remember to add things that won't make
sense to print at the bottom. Things like nav, ads, and forms should
be set to display none.
*********************/
