/*------------------------------------*\
    #GRID SETTINGS
\*------------------------------------*/
html {
  box-sizing: border-box;
}

*, *::after, *::before {
  box-sizing: inherit;
}

@-webkit-keyframes bouncedelay {
  0%,
	80%,
	100% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  40% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes bouncedelay {
  0%,
	80%,
	100% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  40% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
            transform: translate3d(0, 100%, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
            transform: translate3d(0, 100%, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}
/* ==========================================================================
   Normalize.scss settings
   ========================================================================== */
/**
 * Includes legacy browser support IE6/7
 *
 * Set to false if you want to drop support for IE6 and IE7
 */
/* Base
   ========================================================================== */
/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS and IE text size adjust after device orientation change,
 *    without disabling user zoom.
 * 3. Corrects text resizing oddly in IE 6/7 when body `font-size` is set using
 *  `em` units.
 */
html {
  font-family: sans-serif;
  /* 1 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
}

/**
 * Remove default margin.
 */
body {
  margin: 0;
}

/* HTML5 display definitions
   ========================================================================== */
/**
 * Correct `block` display not defined for any HTML5 element in IE 8/9.
 * Correct `block` display not defined for `details` or `summary` in IE 10/11
 * and Firefox.
 * Correct `block` display not defined for `main` in IE 11.
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block;
}

/**
 * 1. Correct `inline-block` display not defined in IE 6/7/8/9 and Firefox 3.
 * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
 */
audio,
canvas,
progress,
video {
  display: inline-block;
  /* 1 */
  vertical-align: baseline;
  /* 2 */
}

/**
 * Prevents modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */
audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 * Address `[hidden]` styling not present in IE 8/9/10.
 * Hide the `template` element in IE 8/9/10/11, Safari, and Firefox < 22.
 */
[hidden],
template {
  display: none;
}

/* Links
   ========================================================================== */
/**
 * Remove the gray background color from active links in IE 10.
 */
a {
  background-color: transparent;
}

/**
 * Improve readability of focused elements when they are also in an
 * active/hover state.
 */
a:active, a:hover {
  outline: 0;
}

/* Text-level semantics
   ========================================================================== */
/**
 * Address styling not present in IE 8/9/10/11, Safari, and Chrome.
 */
abbr[title] {
  border-bottom: 1px dotted;
}

/**
 * Address style set to `bolder` in Firefox 4+, Safari, and Chrome.
 */
b,
strong {
  font-weight: bold;
}

/**
 * Address styling not present in Safari and Chrome.
 */
dfn {
  font-style: italic;
}

/**
 * Address variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari, and Chrome.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/**
 * Addresses styling not present in IE 8/9.
 */
mark {
  background: #ff0;
  color: #000;
}

/**
 * Address inconsistent and variable font size in all browsers.
 */
small {
  font-size: 80%;
}

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

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

/* Embedded content
   ========================================================================== */
/**
 * 1. Remove border when inside `a` element in IE 8/9/10.
 * 2. Improves image quality when scaled in IE 7.
 */
img {
  border: 0;
}

/**
 * Correct overflow not hidden in IE 9/10/11.
 */
svg:not(:root) {
  overflow: hidden;
}

/* Grouping content
   ========================================================================== */
/**
 * Address margin not present in IE 8/9 and Safari.
 */
figure {
  margin: 1em 40px;
}

/**
 * Address differences between Firefox and other browsers.
 */
hr {
  box-sizing: content-box;
  height: 0;
}

/**
 * Contain overflow in all browsers.
 */
pre {
  overflow: auto;
}

/**
 * Address odd `em`-unit font size rendering in all browsers.
 * Correct font family set oddly in IE 6, Safari 4/5, and Chrome.
 */
code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

/* Forms
   ========================================================================== */
/**
 * Known limitation: by default, Chrome and Safari on OS X allow very limited
 * styling of `select`, unless a `border` property is set.
 */
/**
 * 1. Correct color not being inherited.
 *  Known issue: affects color of disabled elements.
 * 2. Correct font properties not being inherited.
 * 3. Address margins set differently in Firefox 4+, Safari, and Chrome.
 * 4. Improves appearance and consistency in all browsers.
 */
button,
input,
optgroup,
select,
textarea {
  color: inherit;
  /* 1 */
  font: inherit;
  /* 2 */
  margin: 0;
  /* 3 */
}

/**
 * Address `overflow` set to `hidden` in IE 8/9/10/11.
 */
button {
  overflow: visible;
}

/**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.
 * Correct `select` style inheritance in Firefox.
 */
button,
select {
  text-transform: none;
}

/**
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *  and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *  `input` and others.
 * 4. Removes inner spacing in IE 7 without affecting normal text inputs.
 *  Known issue: inner spacing remains in IE 6.
 */
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  /* 2 */
  cursor: pointer;
  /* 3 */
}

/**
 * Re-set default cursor for disabled elements.
 */
button[disabled],
html input[disabled] {
  cursor: default;
}

/**
 * Remove inner padding and border in Firefox 4+.
 */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

/**
 * Address Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */
input {
  line-height: normal;
}

/**
 * 1. Address box sizing set to `content-box` in IE 8/9/10.
 * 2. Remove excess padding in IE 8/9/10.
 *  Known issue: excess padding remains in IE 6.
 */
input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
 * Fix the cursor style for Chrome's increment/decrement buttons. For certain
 * `font-size` values of the `input`, it causes the cursor style of the
 * decrement button to change from `default` to `text`.
 */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Address `appearance` set to `searchfield` in Safari and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari and Chrome.
 */
input[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  box-sizing: content-box;
  /* 2 */
}

/**
 * Remove inner padding and search cancel button in Safari and Chrome on OS X.
 * Safari (but not Chrome) clips the cancel button when the search input has
 * padding (and `textfield` appearance).
 */
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * Define consistent border, margin, and padding.
 */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

/**
 * 1. Correct `color` not being inherited in IE 8/9/10/11.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 * 3. Corrects text not wrapping in Firefox 3.
 * 4. Corrects alignment displayed oddly in IE 6/7.
 */
legend {
  border: 0;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
 * Remove default vertical scrollbar in IE 8/9/10/11.
 */
textarea {
  overflow: auto;
}

/**
 * Don't inherit the `font-weight` (applied by a rule above).
 * NOTE: the default cannot safely be changed in Chrome and Safari on OS X.
 */
optgroup {
  font-weight: bold;
}

/* Tables
   ========================================================================== */
/**
 * Remove most spacing between table cells.
 */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

td,
th {
  padding: 0;
}

.archive-pagination:before,
.clearfix:before,
.entry:before,
.entry-pagination:before,
.footer-widgets:before,
.nav-primary:before,
.nav-secondary:before,
.site-container:before,
.site-footer:before,
.site-header:before,
.site-inner:before,
.wrap:before {
  display: table;
  content: ' ';
}

.archive-pagination:after,
.clearfix:after,
.entry:after,
.entry-pagination:after,
.footer-widgets:after,
.nav-primary:after,
.nav-secondary:after,
.site-container:after,
.site-footer:after,
.site-header:after,
.site-inner:after,
.wrap:after {
  display: table;
  clear: both;
  content: ' ';
}

.header-image .site-title, .header-image
.site-description {
  overflow: hidden;
  text-indent: 200%;
  white-space: nowrap;
}

.clear, .site-inner, .genesis-nav-menu, .comment-header, .comment-respond .form-submit, .footer-widgets {
  zoom: 1;
}
.clear:before, .site-inner:before, .genesis-nav-menu:before, .comment-header:before, .comment-respond .form-submit:before, .footer-widgets:before, .clear:after, .site-inner:after, .genesis-nav-menu:after, .comment-header:after, .comment-respond .form-submit:after, .footer-widgets:after {
  display: table;
  content: '';
}
.clear:after, .site-inner:after, .genesis-nav-menu:after, .comment-header:after, .comment-respond .form-submit:after, .footer-widgets:after {
  clear: both;
}

.screen-reader-text {
  position: absolute;
  overflow: hidden;
  clip: rect(0 0 0 0);
  margin: -1px;
  padding: 0;
  width: 1px;
  height: 1px;
  border: 0;
}

.no-js .hide-no-js {
  display: none !important;
}

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

.entry-content p, .comment-content p, .entry-content ol, .comment-content ol,
.entry-content ul,
.comment-content ul, .comment-notes,
.logged-in-as,
.form-allowed-tags {
  margin-bottom: 1.5em;
  text-overflow: ellipsis;
  word-wrap: break-word;
  -webkit-hyphens: auto;
     -moz-hyphens: auto;
      -ms-hyphens: auto;
          hyphens: auto;
  letter-spacing: .01rem;
  line-height: 1.5;
}
.entry-content p:last-child, .comment-content p:last-child, .entry-content ol:last-child, .comment-content ol:last-child,
.entry-content ul:last-child,
.comment-content ul:last-child, .comment-notes:last-child,
.logged-in-as:last-child,
.form-allowed-tags:last-child {
  margin-bottom: 0;
}

.gform_wrapper .spinner {
  display: block;
  padding: .25em;
  width: 100%;
  text-align: center;
}
.gform_wrapper .spinner > div {
  display: inline-block;
  width: 1em;
  height: 1em;
  border-radius: 100%;
  background-color: #666;
  vertical-align: middle;
  -webkit-animation: bouncedelay 1.4s infinite ease-in-out;
          animation: bouncedelay 1.4s infinite ease-in-out;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}
.gform_wrapper .spinner .bounce1 {
  -webkit-animation-delay: -.32s;
          animation-delay: -.32s;
}
.gform_wrapper .spinner .bounce2 {
  -webkit-animation-delay: -.16s;
          animation-delay: -.16s;
}

.work-item__details {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

html {
  box-sizing: border-box;
}

*,
*:before,
*:after {
  box-sizing: inherit;
}

/*------------------------------------*\
    #TYPOGRAPHY
\*------------------------------------*/
body {
  background-color: #f6f6f6;
  color: #444;
  font-family: "europa", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 18px;
  font-size: 1.125rem;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-variant-ligatures: common-ligatures;
     -moz-font-variant-ligatures: common-ligatures;
          font-variant-ligatures: common-ligatures;
}

a,
button,
input:focus,
input[type='button'],
input[type='reset'],
input[type='submit'],
textarea:focus,
.button {
  -webkit-transition: all .1s ease-in-out;
          transition: all .1s ease-in-out;
}

a {
  color: #04BCBC;
  text-decoration: none;
}
a:hover, a:focus, a:active {
  color: #555555;
  text-decoration: underline;
}

p {
  margin: 0;
  padding: 0;
}

strong {
  font-weight: 700;
}

abbr {
  letter-spacing: .1em;
}

pre {
  overflow: scroll;
  white-space: pre;
}

code {
  overflow: hidden;
  word-wrap: break-word;
}

iframe {
  border: none;
}

/*------------------------------------*\
    #HEADINGS
\*------------------------------------*/
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  margin-bottom: 12px;
  margin-bottom: 0.75rem;
  padding: 0;
  font-weight: 400;
  line-height: 1.2;
}

h1,
.alpha {
  font-size: 28px;
  font-size: 1.75rem;
}
@media (min-width: 48em) {
  h1,
  .alpha {
    font-size: 30px;
    font-size: 1.875rem;
  }
}
h1 small,
.alpha small {
  display: block;
  padding-top: 0.375em;
  padding-top: 0.375em;
  font-size: 20px;
  font-size: 1.25rem;
}

h2,
.beta {
  font-size: 24px;
  font-size: 1.5rem;
}
@media (min-width: 48em) {
  h2,
  .beta {
    font-size: 24px;
    font-size: 1.5rem;
  }
}

h3,
.gamma {
  font-size: 20px;
  font-size: 1.25rem;
}
@media (min-width: 48em) {
  h3,
  .gamma {
    font-size: 20px;
    font-size: 1.25rem;
  }
}

h4,
.delta {
  font-size: 16px;
  font-size: 1rem;
}
@media (min-width: 48em) {
  h4,
  .delta {
    font-size: 16px;
    font-size: 1rem;
  }
}

h5,
.epsilon {
  font-size: 16px;
  font-size: 1rem;
}

h6,
.zeta {
  font-weight: bold;
  font-size: 16px;
  font-size: 1rem;
}

/*------------------------------------*\
    #FORMS
\*------------------------------------*/
input[type='text'],
input[type='password'],
input[type='search'],
input[type='email'],
input[type='url'],
input[type='tel'],
input[type='number'],
input[type='date'],
input[type='month'],
input[type='week'],
input[type='time'],
textarea {
  max-width: 100%;
  width: 100%;
  border-radius: 0;
  color: #000;
  -webkit-appearance: none;
  -moz-appearance: none;
}

textarea {
  resize: vertical;
}

select {
  width: 100%;
}

.placeholder {
  text-overflow: ellipsis;
}

::-webkit-input-placeholder {
  text-overflow: ellipsis;
}

::-moz-placeholder {
  text-overflow: ellipsis;
}

:-ms-input-placeholder {
  text-overflow: ellipsis;
}

::placeholder {
  text-overflow: ellipsis;
}

input[type='search'] {
  box-sizing: border-box;
}

.gform_wrapper .gform_ajax_spinner {
  display: none !important;
}
.gform_wrapper .spinner {
  display: inline-block;
  margin-left: .5em;
  width: auto;
  vertical-align: middle;
}

.search-form,
.post-password-form {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.search-form input[type='submit'],
.post-password-form input[type='submit'] {
  margin-left: .25em;
}

.search-form input[type='search'] {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.post-password-form input[type='password'] {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

/*------------------------------------*\
    #OBJECTS AND IMAGES
\*------------------------------------*/
embed,
iframe,
img,
object,
video,
.wp-caption {
  max-width: 100%;
}

audio,
canvas,
img,
video {
  vertical-align: middle;
}

figure {
  margin: 0;
}

img {
  width: auto;
  height: auto;
}

img.aligncenter,
.aligncenter {
  display: block;
  margin: 0 auto 1.5em auto;
}

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

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

img.alignleft,
.wp-caption.alignleft {
  margin-right: 1.5em;
  margin-bottom: 1.5em;
}

img.alignright,
.wp-caption.alignright {
  margin-bottom: 1.5em;
  margin-left: 1.5em;
}

.wp-caption {
  width: auto !important;
}
.wp-caption p {
  margin-bottom: 0;
}

.wp-caption-text {
  margin: 0;
  text-align: center;
}

/*------------------------------------*\
    #GRID
\*------------------------------------*/
/**
 * Use Bourbon Neat grid
 */
.row {
  max-width: 87rem;
  margin-left: auto;
  margin-right: auto;
}
.row::after {
  clear: both;
  content: "";
  display: table;
}

.five-sixths,
.four-sixths,
.one-fourth,
.one-half,
.one-sixth,
.one-third,
.one-fifth,
.two-fifths,
.three-fifths,
.four-fifths,
.three-fourths,
.three-sixths,
.two-fourths,
.two-sixths,
.two-thirds {
  float: left;
  display: block;
  margin-right: 0.84%;
  width: 100%;
}
.five-sixths:last-child,
.four-sixths:last-child,
.one-fourth:last-child,
.one-half:last-child,
.one-sixth:last-child,
.one-third:last-child,
.one-fifth:last-child,
.two-fifths:last-child,
.three-fifths:last-child,
.four-fifths:last-child,
.three-fourths:last-child,
.three-sixths:last-child,
.two-fourths:last-child,
.two-sixths:last-child,
.two-thirds:last-child {
  margin-right: 0;
}

@media (min-width: 48em) {
  .one-half,
  .three-sixths,
  .two-fourths {
    float: left;
    display: block;
    margin-right: 0.84%;
    width: 49.58%;
  }
  .one-half:last-child,
  .three-sixths:last-child,
  .two-fourths:last-child {
    margin-right: 0;
  }
}

@media (min-width: 48em) {
  .one-third,
  .two-sixths {
    float: left;
    display: block;
    margin-right: 0.84%;
    width: 32.773%;
  }
  .one-third:last-child,
  .two-sixths:last-child {
    margin-right: 0;
  }
}

@media (min-width: 48em) {
  .four-sixths,
  .two-thirds {
    float: left;
    display: block;
    margin-right: 0.84%;
    width: 66.387%;
  }
  .four-sixths:last-child,
  .two-thirds:last-child {
    margin-right: 0;
  }
}

@media (min-width: 48em) {
  .one-fourth {
    float: left;
    display: block;
    margin-right: 0.84%;
    width: 24.37%;
  }
  .one-fourth:last-child {
    margin-right: 0;
  }
}

@media (min-width: 48em) {
  .three-fourths {
    float: left;
    display: block;
    margin-right: 0.84%;
    width: 74.79%;
  }
  .three-fourths:last-child {
    margin-right: 0;
  }
}

@media (min-width: 48em) {
  .one-sixth {
    float: left;
    display: block;
    margin-right: 0.84%;
    width: 15.966%;
  }
  .one-sixth:last-child {
    margin-right: 0;
  }
}

@media (min-width: 48em) {
  .five-sixths {
    float: left;
    display: block;
    margin-right: 0.84%;
    width: 83.193%;
  }
  .five-sixths:last-child {
    margin-right: 0;
  }
}

.last {
  margin-right: 0;
}

/*------------------------------------*\
    $BANDS
\*------------------------------------*/
/*
 * Bands are single horizontal rows of content. These are used throughout the
 * site.
 */
/*
 * Default Band
 */
.band, .nav--work {
  max-width: 87rem;
  margin-left: auto;
  margin-right: auto;
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 12px;
  padding-top: 0.75rem;
  padding-bottom: 12px;
  padding-bottom: 0.75rem;
}
.band::after, .nav--work::after {
  clear: both;
  content: "";
  display: table;
}

/*
 * Band Hero on home page
 */
.band--hero {
  padding-bottom: 48px;
  padding-bottom: 3rem;
}
@media (min-width: 48em) {
  .band--hero {
    padding-bottom: 60px;
    padding-bottom: 3.75rem;
  }
}

/*
 * Introductory text and details on single work pages
 */
.band--intro {
  padding-bottom: 24px;
  padding-bottom: 1.5rem;
}
@media (min-width: 48em) {
  .band--intro {
    padding-bottom: 48px;
    padding-bottom: 3rem;
  }
}

.band--work {
  padding: 0;
}
@media (min-width: 48em) {
  .band--work {
    padding-bottom: 12px;
    padding-bottom: 0.75rem;
  }
}

/*------------------------------------*\
    #LAYOUT
\*------------------------------------*/
.wrap {
  max-width: 87rem;
  margin-left: auto;
  margin-right: auto;
  padding-right: 13.5px;
  padding-right: 0.844rem;
  padding-left: 13.5px;
  padding-left: 0.844rem;
  max-width: 87rem;
}
.wrap::after {
  clear: both;
  content: "";
  display: table;
}
.wrap::after {
  clear: both;
  content: "";
  display: table;
}
@media (min-width: 48em) {
  .wrap {
    padding-right: 24px;
    padding-right: 1.5rem;
    padding-left: 24px;
    padding-left: 1.5rem;
  }
}

.content-sidebar-wrap {
  max-width: 87rem;
  margin-left: auto;
  margin-right: auto;
  max-width: 87rem;
}
.content-sidebar-wrap::after {
  clear: both;
  content: "";
  display: table;
}
.content-sidebar-wrap::after {
  clear: both;
  content: "";
  display: table;
}

.site-inner {
  margin-bottom: 36px;
  margin-bottom: 2.25rem;
  position: relative;
}
@media (min-width: 48em) {
  .site-inner {
    margin-bottom: 48px;
    margin-bottom: 3rem;
  }
}
@media (min-width: 48em) {
  .about .site-inner {
    padding-bottom: 60px;
    padding-bottom: 3.75rem;
  }
}

@media (min-width: 48em) {
  .content {
    float: left;
    display: block;
    margin-right: 0.84%;
    width: 74.79%;
  }
  .content:last-child {
    margin-right: 0;
  }
}

.full-width-content .content {
  float: left;
  display: block;
  margin-right: 0.84%;
  width: 100%;
}
.full-width-content .content:last-child {
  margin-right: 0;
}

/*------------------------------------*\
    #BUTTONS
\*------------------------------------*/
.btn, button,
input[type='button'],
input[type='reset'],
input[type='submit'], .nav--work__prev a, .nav--work__next a {
  display: inline-block;
  width: auto;
  padding-top: 12px;
  padding-top: 0.75rem;
  padding-right: 16px;
  padding-right: 1rem;
  padding-bottom: 12px;
  padding-bottom: 0.75rem;
  padding-left: 16px;
  padding-left: 1rem;
  border: 3px solid #555555;
  border-radius: 0;
  background-color: transparent;
  color: #555555;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  line-height: 1;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
}
.btn:hover, button:hover,
input[type='button']:hover,
input[type='reset']:hover,
input[type='submit']:hover, .nav--work__prev a:hover, .nav--work__next a:hover, .btn:focus, button:focus,
input[type='button']:focus,
input[type='reset']:focus,
input[type='submit']:focus, .nav--work__prev a:focus, .nav--work__next a:focus, .btn:active, button:active,
input[type='button']:active,
input[type='reset']:active,
input[type='submit']:active, .nav--work__prev a:active, .nav--work__next a:active {
  background-color: #555555;
  color: #fff;
  text-decoration: none;
}
.btn.block, button.block,
input.block[type='button'],
input.block[type='reset'],
input.block[type='submit'], .nav--work__prev a.block, .nav--work__next a.block {
  display: block;
  margin-right: auto;
  margin-left: auto;
}

/*------------------------------------*\
    #HEADER
\*------------------------------------*/
.site-header {
  padding-bottom: 48px;
  padding-bottom: 3rem;
}
.site-header > .wrap {
  padding-top: 24px;
  padding-top: 1.5rem;
}

.site-header--about {
  padding-bottom: 60px;
  padding-bottom: 3.75rem;
}
@media (min-width: 48em) {
  .site-header--about {
    padding-bottom: 72px;
    padding-bottom: 4.5rem;
  }
}

.title-area {
  width: 100%;
  padding-bottom: 6px;
  padding-bottom: 0.375rem;
}
@media (min-width: 48em) {
  .title-area {
    padding-bottom: 0;
    width: auto;
    float: left;
  }
}

.site-title,
.site-description {
  margin: 0;
  line-height: 1;
}
.header-image .site-title, .header-image
.site-description {
  display: block;
}

.site-title {
  line-height: 1;
}

.header-widget-area {
  width: 100%;
}
@media (min-width: 48em) {
  .header-widget-area {
    width: auto;
    float: right;
  }
}

/**
 * Logo
 */
.logo-link {
  display: block;
  overflow: hidden;
  margin: 0 auto;
  width: 160px;
  height: 58.077px;
}
@media (min-width: 48em) {
  .logo-link {
    width: 160px;
    height: 58.077px;
  }
}

.logo {
  display: block;
  width: 100%;
}

/*------------------------------------*\
    #NAVIGATION
\*------------------------------------*/
.genesis-nav-menu {
  margin: 0;
  padding: 0;
  float: none;
  text-align: center;
}
@media (min-width: 48em) {
  .genesis-nav-menu {
    float: right;
  }
}
.genesis-nav-menu .menu-item {
  position: relative;
  display: inline-block;
  margin: 0;
  padding: 0;
  text-align: left;
}
.genesis-nav-menu .menu-item a {
  position: relative;
  display: block;
  color: #555555;
}
.genesis-nav-menu .menu-item a:hover, .genesis-nav-menu .menu-item a:focus, .genesis-nav-menu .menu-item a:active {
  color: #000;
  text-decoration: none;
}

.menu-primary a {
  padding: 18px;
  padding: 1.125rem;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
}
@media (min-width: 48em) {
  .menu-primary a {
    padding: 12px;
    padding: 0.75rem;
  }
}
@media (min-width: 80em) {
  .menu-primary a {
    padding: 12px 24px;
    padding: 0.75rem 1.5rem;
    font-size: 20px;
    font-size: 1.25rem;
  }
}

/*------------------------------------*\
    #CONTENT
\*------------------------------------*/
.entry-title {
  overflow: hidden;
  word-wrap: break-word;
}
.entry-title a {
  color: inherit;
}

.entry-content ol, .comment-content ol,
.entry-content ul,
.comment-content ul {
  overflow: hidden;
  padding-left: 2.5em;
}
.entry-content ol ol, .comment-content ol ol,
.entry-content ol ul,
.comment-content ol ul,
.entry-content ul ol,
.comment-content ul ol,
.entry-content ul ul,
.comment-content ul ul {
  margin-bottom: .5em;
  padding-left: 1.5em;
}
.entry-content ol li, .comment-content ol li {
  list-style-type: decimal;
}
.entry-content ul li, .comment-content ul li {
  list-style-type: disc;
}
.entry-content blockquote, .comment-content blockquote {
  margin: 0;
}
.entry-content table, .comment-content table {
  margin-bottom: 1.5em;
}

.entry-meta {
  clear: both;
}

.archive-pagination {
  clear: both;
}
.archive-pagination li {
  display: inline;
}

/*------------------------------------*\
    #COMMENTS
\*------------------------------------*/
/*------------------------------------*\
    #SIDEBAR
\*------------------------------------*/
/*------------------------------------*\
    #FOOTER
\*------------------------------------*/
.site-footer {
  border-top: 1px solid #d4d4d4;
  background-color: #e1e1e1;
  color: #555555;
  text-align: center;
}
@media (min-width: 40em) {
  .site-footer {
    text-align: left;
  }
}
.site-footer > .wrap {
  padding-top: 24px;
  padding-top: 1.5rem;
  padding-bottom: 24px;
  padding-bottom: 1.5rem;
}

.copyright {
  float: left;
  display: block;
  margin-right: 0.84%;
  width: 100%;
  padding-bottom: 24px;
  padding-bottom: 1.5rem;
  font-size: 16px;
  font-size: 1rem;
}
.copyright:last-child {
  margin-right: 0;
}
@media (min-width: 40em) {
  .copyright {
    float: left;
    display: block;
    margin-right: 0.84%;
    width: 49.58%;
    padding-bottom: 0;
  }
  .copyright:last-child {
    margin-right: 0;
  }
}
.copyright a {
  color: #555555;
}

.menu--ftr {
  float: left;
  display: block;
  margin-right: 0.84%;
  width: 100%;
}
.menu--ftr:last-child {
  margin-right: 0;
}
@media (min-width: 40em) {
  .menu--ftr {
    float: left;
    display: block;
    margin-right: 0.84%;
    width: 49.58%;
    margin-right: 0;
    text-align: right;
  }
  .menu--ftr:last-child {
    margin-right: 0;
  }
}
.menu--ftr li {
  position: relative;
  display: inline-block;
  margin: 0;
  padding: 0;
  text-align: left;
}
.menu--ftr li a {
  position: relative;
  display: block;
  color: #555555;
  padding-right: 8px;
  padding-right: 0.5rem;
  padding-left: 8px;
  padding-left: 0.5rem;
  font-size: 12px;
  font-size: 0.75rem;
}
.menu--ftr li a:hover, .menu--ftr li a:focus, .menu--ftr li a:active {
  color: #000;
  text-decoration: none;
}

/*------------------------------------*\
    #ANIMATION
\*------------------------------------*/
/*
 * CSS Page Transitions
 * Don't forget to add vendor prefixes!
 */
/** Basic styles for an animated element */
.fade {
  -webkit-animation: 1.2s ease-in-out both;
  animation: 1.2s ease-in-out both;
}

/** An element that fades in */
.fade--fadein {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

/** An element that fades in and slides up */
.fade--fadeinup {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

/*------------------------------------*\
    #WORK
\*------------------------------------*/
/*
 * Work Archive
 */
/*
 * Thumbnail boxes used for view more case studies.
 *
 * html:
 * <ul class="thumbs">
 *   <li class="thumb">
 *   <a class="thumb__content" href="example.html">
 *     <img class="thumb__img" src="example.jpg" alt="">
 *     <div class="mask">
 *       <div class="thumb__info">
          <div class="thumb__icon">
            <img class="feature__img" src="assets/icons/audio.svg" alt="">
          </div>
          <span class="thumb__tag">Audio Case Study</span>
          <h4 class="thumb__title">Harman/Kardon GLA-55</h4>
        </div>
        <span class="thumb__view">View Case Study</span>
 *     </div>
 *   </a>
 *   </li>
 *  </ul>
 */
.work-item {
  float: left;
  display: block;
  margin-right: 0.84%;
  width: 100%;
  padding-bottom: 12px;
  padding-bottom: 0.75rem;
}
.work-item:last-child {
  margin-right: 0;
}
.work-item:nth-child(1n) {
  margin-right: 0;
}
.work-item:nth-child(1n+1) {
  clear: left;
}
@media (min-width: 48em) {
  .work-item {
    float: left;
    display: block;
    margin-right: 0.84%;
    width: 49.58%;
  }
  .work-item:nth-child(1n) {
    margin-right: 0.84%;
  }
  .work-item:nth-child(1n+1) {
    clear: none;
  }
  .work-item:last-child {
    margin-right: 0;
  }
  .work-item:nth-child(2n) {
    margin-right: 0;
  }
  .work-item:nth-child(2n+1) {
    clear: left;
  }
}
@media (min-width: 80em) {
  .work-item {
    float: left;
    display: block;
    margin-right: 0.84%;
    width: 32.773%;
  }
  .work-item:nth-child(2n) {
    margin-right: 0.84%;
  }
  .work-item:nth-child(2n+1) {
    clear: none;
  }
  .work-item:last-child {
    margin-right: 0;
  }
  .work-item:nth-child(3n) {
    margin-right: 0;
  }
  .work-item:nth-child(3n+1) {
    clear: left;
  }
}

.work-item__img {
  width: 100%;
  height: auto;
}

.work-item__inner {
  position: relative;
  overflow: hidden;
  display: block;
  width: 100%;
  height: 100%;
  color: #fff;
  text-align: center;
}
.work-item__inner:hover, .work-item__inner:focus, .work-item__inner:active {
  text-decoration: none;
}
.work-item__inner:hover {
  opacity: 1;
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
  cursor: pointer;
}

.overlay {
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #1a1a1a;
  background-color: rgba(26, 26, 26, 0.9);
  opacity: 0;
  -webkit-transition: all 0.6s ease-in-out;
  transition: all 0.6s ease-in-out;
}
.overlay:hover {
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
  cursor: pointer;
  opacity: 1;
}

.work-item__details {
  display: block;
  width: 88%;
  text-align: center;
}

.work-item__name {
  font-size: 28px;
  font-size: 1.75rem;
  color: #fff;
  font-weight: 700;
}

.work-item__tags {
  padding-bottom: 24px;
  padding-bottom: 1.5rem;
  font-size: 18px;
  font-size: 1.125rem;
  color: #555555;
}
@media (min-width: 51em) {
  .work-item__tags {
    padding-bottom: 0;
  }
}

.work-item__tags--home {
  padding-bottom: 0;
  font-size: 20px;
  font-size: 1.25rem;
  color: #fff;
}

/*
 * Work Single
 */
.band--hero__title {
  float: left;
  display: block;
  margin-right: 0.84%;
  width: 100%;
}
.band--hero__title:last-child {
  margin-right: 0;
}
@media (min-width: 51em) {
  .band--hero__title {
    float: left;
    display: block;
    margin-right: 0.84%;
    width: 49.58%;
  }
  .band--hero__title:last-child {
    margin-right: 0;
  }
}

.band--hero__intro {
  float: left;
  display: block;
  margin-right: 0.84%;
  width: 100%;
}
.band--hero__intro:last-child {
  margin-right: 0;
}
@media (min-width: 51em) {
  .band--hero__intro {
    float: left;
    display: block;
    margin-right: 0.84%;
    width: 49.58%;
    margin-right: 0;
  }
  .band--hero__intro:last-child {
    margin-right: 0;
  }
}

.sh-work-item {
  float: left;
  display: block;
  margin-right: 0.84%;
  width: 100%;
  padding-bottom: 12px;
  padding-bottom: 0.75rem;
}
.sh-work-item:last-child {
  margin-right: 0;
}
.sh-work-item:nth-child(1n) {
  margin-right: 0;
}
.sh-work-item:nth-child(1n+1) {
  clear: left;
}
@media (min-width: 48em) {
  .sh-work-item {
    float: left;
    display: block;
    margin-right: 0.84%;
    width: 49.58%;
    padding-bottom: 0;
  }
  .sh-work-item:nth-child(1n) {
    margin-right: 0.84%;
  }
  .sh-work-item:nth-child(1n+1) {
    clear: none;
  }
  .sh-work-item:last-child {
    margin-right: 0;
  }
  .sh-work-item:nth-child(2n) {
    margin-right: 0;
  }
  .sh-work-item:nth-child(2n+1) {
    clear: left;
  }
}

.sf-work-item {
  float: left;
  display: block;
  margin-right: 0.84%;
  width: 100%;
  padding-bottom: 12px;
  padding-bottom: 0.75rem;
}
.sf-work-item:last-child {
  margin-right: 0;
}
.sf-work-item:nth-child(1n) {
  margin-right: 0;
}
.sf-work-item:nth-child(1n+1) {
  clear: left;
}
@media (min-width: 48em) {
  .sf-work-item {
    padding-bottom: 0;
  }
}

.entry-title--work {
  margin-bottom: 6px;
  margin-bottom: 0.375rem;
}

/* Work Navigation */
.nav--work {
  padding-bottom: 48px;
  padding-bottom: 3rem;
}
@media (min-width: 48em) {
  .nav--work {
    padding-bottom: 60px;
    padding-bottom: 3.75rem;
  }
}

.nav--work__prev {
  float: left;
  display: block;
  margin-right: 0.84%;
  width: 100%;
  text-align: center;
}
.nav--work__prev:last-child {
  margin-right: 0;
}
@media (min-width: 40em) {
  .nav--work__prev {
    float: left;
    display: block;
    margin-right: 0.84%;
    width: 32.773%;
    text-align: left;
  }
  .nav--work__prev:last-child {
    margin-right: 0;
  }
}
.nav--work__prev a {
  margin-bottom: 12px;
  margin-bottom: 0.75rem;
  border: none;
  font-size: 14px;
  font-size: 0.875rem;
}
@media (min-width: 40em) {
  .nav--work__prev a {
    margin-bottom: 0;
  }
}

.nav--work__all {
  float: left;
  display: block;
  margin-right: 0.84%;
  width: 100%;
  text-align: center;
}
.nav--work__all:last-child {
  margin-right: 0;
}
@media (min-width: 40em) {
  .nav--work__all {
    float: left;
    display: block;
    margin-right: 0.84%;
    width: 32.773%;
    text-align: center;
  }
  .nav--work__all:last-child {
    margin-right: 0;
  }
}
.nav--work__all .btn, .nav--work__all button,
.nav--work__all input[type='button'],
.nav--work__all input[type='reset'],
.nav--work__all input[type='submit'], .nav--work__all .nav--work__prev a, .nav--work__prev .nav--work__all a, .nav--work__all .nav--work__next a, .nav--work__next .nav--work__all a {
  margin-bottom: 12px;
  margin-bottom: 0.75rem;
}
@media (min-width: 40em) {
  .nav--work__all .btn, .nav--work__all button,
  .nav--work__all input[type='button'],
  .nav--work__all input[type='reset'],
  .nav--work__all input[type='submit'], .nav--work__all .nav--work__prev a, .nav--work__prev .nav--work__all a, .nav--work__all .nav--work__next a, .nav--work__next .nav--work__all a {
    margin-bottom: 0;
  }
}

.nav--work__next {
  float: left;
  display: block;
  margin-right: 0.84%;
  width: 100%;
  text-align: center;
}
.nav--work__next:last-child {
  margin-right: 0;
}
@media (min-width: 40em) {
  .nav--work__next {
    float: left;
    display: block;
    margin-right: 0.84%;
    width: 32.773%;
    margin-right: 0;
    text-align: right;
  }
  .nav--work__next:last-child {
    margin-right: 0;
  }
}
.nav--work__next a {
  border: none;
  font-size: 14px;
  font-size: 0.875rem;
}

/*------------------------------------*\
    #ABOUT
\*------------------------------------*/
/*
 * About Page
 */
.about-title {
  float: left;
  display: block;
  margin-right: 0.84%;
  width: 100%;
}
.about-title:last-child {
  margin-right: 0;
}
@media (min-width: 48em) {
  .about-title {
    float: left;
    display: block;
    margin-right: 0.84%;
    width: 32.773%;
  }
  .about-title:last-child {
    margin-right: 0;
  }
}
@media (min-width: 80em) {
  .about-title {
    float: left;
    display: block;
    margin-right: 0.84%;
    width: 41.176%;
  }
  .about-title:last-child {
    margin-right: 0;
  }
}

.about-copy {
  float: left;
  display: block;
  margin-right: 0.84%;
  width: 100%;
  margin-right: 0;
}
.about-copy:last-child {
  margin-right: 0;
}
@media (min-width: 48em) {
  .about-copy {
    float: left;
    display: block;
    margin-right: 0.84%;
    width: 66.387%;
  }
  .about-copy:last-child {
    margin-right: 0;
  }
}
@media (min-width: 80em) {
  .about-copy {
    float: left;
    display: block;
    margin-right: 0.84%;
    width: 57.983%;
  }
  .about-copy:last-child {
    margin-right: 0;
  }
}

/*------------------------------------*\
    #PRINT
\*------------------------------------*/
@media print {
  *,
  *:before,
  *:after {
    background: transparent !important;
    -webkit-filter: none !important;
            filter: none !important;
    box-shadow: none !important;
    color: black !important;
    /* Black prints faster: http://www.sanbeiji.com/archives/953 */
    text-shadow: none !important;
  }

  a,
  a:visited {
    color: black !important;
    text-decoration: underline;
  }

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

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

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

  img {
    max-width: 100% !important;
  }

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

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

  .menu,
  .widget-area,
  .sidebar,
  .footer-widgets,
  .site-footer {
    display: none !important;
  }

  .hide-print {
    display: none !important;
  }

  .title-area {
    float: none;
  }

  .site-header .site-title img {
    display: block;
    margin: 0 auto 1em;
  }

  .content {
    width: 100% !important;
  }

  .entry-title,
  .entry-content,
  .comment-content {
    	/*
         * Don't show links that are fragment identifiers,
         * or use the `javascript:` pseudo protocol
         */
  }
  .entry-title a[href]:after,
  .entry-content a[href]:after,
  .comment-content a[href]:after {
    content: " (" attr(href) ")";
  }
  .entry-title abbr[title]:after,
  .entry-content abbr[title]:after,
  .comment-content abbr[title]:after {
    content: " (" attr(title) ")";
  }
  .entry-title a[href^='#']:after,
  .entry-title a[href^='javascript:']:after,
  .entry-content a[href^='#']:after,
  .comment-content a[href^='#']:after,
  .entry-content a[href^='javascript:']:after,
  .comment-content a[href^='javascript:']:after {
    content: '';
  }
}
/*------------------------------------*\
    #IE
\*------------------------------------*/
html.lt-ie9 {
  min-width: 87rem;
}

.lt-ie9 body {
  min-width: 87rem;
}
.lt-ie9 .site-container {
  margin: 0 auto;
  width: 87rem;
}
.lt-ie9 input[type='password'] {
  font-family: monospace;
}
