/* Reset
----------------------------------------------- */
@import url(animate.css);
@import url(fontawesome.css);
@import url(threesixty.css);
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, font, 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 {
  background: transparent;
  border: 0;
  font-size: 100%;
  margin: 0;
  outline: 0;
  padding: 0;
  vertical-align: baseline; }

html {
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%; }

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

audio,
canvas,
progress,
video {
  display: inline-block;
  vertical-align: baseline; }

audio:not([controls]) {
  display: none;
  height: 0; }

[hidden],
template {
  display: none; }

a {
  background: transparent; }

a:active,
a:hover {
  outline: 0; }

b,
strong {
  font-weight: 500; }

dfn {
  font-style: italic; }

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline; }

sup {
  top: -0.5em; }

sub {
  bottom: -0.25em; }

img {
  border: 0; }

svg:not(:root) {
  overflow: hidden; }

:focus {
  outline: 0; }

figure {
  margin: 1em 40px; }

hr {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 0; }

pre {
  overflow: auto; }

code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em; }

button,
input,
optgroup,
select,
textarea {
  color: inherit;
  font: inherit;
  margin: 0; }

button {
  overflow: visible; }

button,
select {
  text-transform: none; }

button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  cursor: pointer; }

button[disabled],
html input[disabled] {
  cursor: default; }

button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0; }

input {
  line-height: normal; }

input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  padding: 0; }

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto; }

input[type="search"] {
  -webkit-appearance: textfield;
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  box-sizing: content-box; }

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none; }

legend {
  border: 0;
  padding: 0; }

textarea {
  overflow: auto; }

optgroup {
  font-weight: 500; }

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

td,
th {
  padding: 0; }

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

input,
button,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit; }

a {
  outline: none;
  text-decoration: none; }

a:hover,
a:focus {
  text-decoration: none; }

figure {
  margin: 0; }

img {
  vertical-align: middle; }

.clear, header > div, header > div ul.nav > li > div > div, section.hero h1, section article, section article div.manipulate, footer > div {
  zoom: 1; }
  .clear:before, header > div:before, header > div ul.nav > li > div > div:before, section.hero h1:before, section article:before, section article div.manipulate:before, footer > div:before, .clear:after, header > div:after, header > div ul.nav > li > div > div:after, section.hero h1:after, section article:after, section article div.manipulate:after, footer > div:after {
    content: "\0020";
    display: block;
    height: 0;
    overflow: hidden; }
  .clear:after, header > div:after, header > div ul.nav > li > div > div:after, section.hero h1:after, section article:after, section article div.manipulate:after, footer > div:after {
    clear: both; }

/* ==========================================================================
   Grid
   ========================================================================== */
/*
 * Example uses:
 *
 * <div class="grid">
 *     <div class="grid-cell unit-1-2"></div>
 *     <div class="grid-cell unit-1-2"></div>
 *     <div class="grid-cell unit-1-3"></div>
 *     <div class="grid-cell unit-1-3"></div>
 * </div>
 *
 * <div class="grid grid-center">
 *     <div class="grid-cell unit-1-3"></div>
 *     <div class="grid-cell unit-1-3"></div>
 * </div>
 */
/* Grid core
   ========================================================================== */
/**
 * Grid container
 * Must only contain `.grid` or `.grid-cell` components as children.
 *
 * 1. Adjustment for child element margins.
 * 2. Ensure consistent default alignment/
 * 3. Remove inter-unit whitespace that appears between `inline-block` child
 *    elements. Work for all non-monospace font-families.  If you're using a
 *    monospace base font, you will need to set the `grid` font-family to
 *   `sans-serif` and then redeclare the monospace font on the `grid-cell`
 *    objects.
 * 4. Protect against WebKit bug with optimizelegibility.
 */
.grid {
  display: block;
  padding: 0;
  margin: 0 -15px;
  /* 1 */
  text-align: left;
  /* 2 */
  letter-spacing: -0.31em;
  /* 3 */
  text-rendering: optimizespeed;
  /* 4 */ }

/**
 * Opera hack
 */
.opera:-o-prefocus,
.grid {
  word-spacing: -0.43em;
  /* 3 */ }

/**
 * Child `grid` object adjustments
 * Used for more complex fixed-fluid hybrid grids.
 */
.grid > .grid {
  overflow: hidden;
  margin-right: 0;
  margin-left: 0; }

/**
 * Grid units
 * No explicit width by default. Apply `.unit-x-y` classes.
 *
 * 1. Fundamentals of the non-float grid layout mechanism.
 * 2. Apply grid gutter.
 * 3. Controls vertical positioning of units.
 * 4. Keeps content correctly aligned with the grid direction.
 * 5. Reset text defaults.
 */
.grid-cell, [class*="unit-"] {
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  display: inline-block;
  /* 1 */
  margin: 0;
  padding: 0 15px;
  /* 2 */
  vertical-align: top;
  /* 3 */
  text-align: left;
  /* 4 */
  letter-spacing: normal;
  /* 5 */
  word-spacing: normal;
  /* 5 */
  text-rendering: auto;
  /* 5 */ }

/* Grid modifiers
   ========================================================================== */
/**
 * Modifier: horizontally center all grid units
 * Allows for automatic unit centering irrespective of the number of
 * units in the grid.
 */
.grid-center {
  text-align: center; }

/**
 * Modifier: align horizontally all grid units to the left
 */
.grid-left {
  text-align: left; }

/**
 * Modifier: align horizontally all grid units to the right
 */
.grid-right {
  text-align: right; }

/* Grid cell modifiers
   ========================================================================== */
/**
 * Modifier: horizontally center one unit
 * Set a specific unit to be horizontally centered. Doesn't affect
 * any other units. Can still contain a child `grid` object.
 */
.grid-cell-center {
  display: block;
  margin: 0 auto; }

/**
 * Modifier: align horizontally one unit to the left
 * Set a specific unit to be horizontally on the left. Doesn't affect
 * any other units. Can still contain a child `grid` object.
 */
.grid-cell-left {
  display: block;
  margin-right: auto; }

/**
 * Modifier: align horizontally one unit to the right
 * Set a specific unit to be horizontally on the right. Doesn't affect
 * any other units. Can still contain a child `grid` object.
 */
.grid-cell-right {
  display: block;
  margin-left: auto; }

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent; }

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0; }
  .slick-list:focus {
    outline: none; }
  .slick-loading .slick-list {
    background: #fff url("/workspace/media/images/ajax-loader.gif") center center no-repeat; }
  .slick-list.dragging {
    cursor: pointer;
    cursor: hand; }

.slick-slider .slick-list,
.slick-track,
.slick-slide,
.slick-slide img {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0); }

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  zoom: 1; }
  .slick-track:before, .slick-track:after {
    content: "";
    display: table; }
  .slick-track:after {
    clear: both; }
  .slick-loading .slick-track {
    visibility: hidden; }

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none; }
  [dir="rtl"] .slick-slide {
    float: right; }
  .slick-slide img {
    display: block; }
  .slick-slide.slick-loading img {
    display: none; }
  .slick-slide.dragging img {
    pointer-events: none; }
  .slick-initialized .slick-slide {
    display: block; }
  .slick-loading .slick-slide {
    visibility: hidden; }
  .slick-vertical .slick-slide {
    display: block;
    height: auto;
    border: 1px solid transparent; }

/* Icons */
@font-face {
  font-family: "slick";
  src: url("/workspace/media/fonts/slick.eot");
  src: url("/workspace/media/fonts/slick.eot?#iefix") format("embedded-opentype"), url("/workspace/media/fonts/slick.woff") format("woff"), url("/workspace/media/fonts/slick.ttf") format("truetype"), url("/workspace/media/fonts/slick.svg#slick") format("svg");
  font-weight: normal;
  font-style: normal; }
/* Arrows */
/*.slick-prev,
.slick-next {
    position: absolute;
    display: block;
    height: 30px;
    width: 30px;
    line-height: 0;
    font-size: 0;
    cursor: pointer;
    background-color: #444444;
    background-repeat: no-repeat;
    color: #fff;
    top: 95px;
    padding: 0;
    border: none;
    outline: none;
    &:hover, &:focus {
      background-color: #6fb6d9;
    }
    &.slick-disabled:before {
      opacity: $opacity-not-active;
    }
}
.slick-prev {
  @include background-image-retina('../images/prev', 'png', 9px, 16px);
  background-position: 10px center;
  left: -30px;
  border-radius: 50%;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  @media all and (max-width: 767px) {
    left: -20px;
  }
}
.slick-next {
  @include background-image-retina('../images/next', 'png', 9px, 16px);
  background-position: 12px center;
  right: -30px;
  border-radius: 50%;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  @media all and (max-width: 767px) {
    right: -20px;
  }
}*/
/* Dots */
.slick-dots {
  position: absolute;
  bottom: -60px;
  list-style: none;
  display: block;
  text-align: center;
  padding: 0;
  width: 100%; }
  @media all and (max-width: 767px) {
    .slick-dots {
      display: none !important; } }
  .slick-dots li {
    position: relative;
    display: inline-block;
    height: 8px;
    width: 8px;
    margin: 0 5px;
    padding: 0;
    cursor: pointer; }
    .slick-dots li button {
      border: 0;
      background: #cadcdb;
      border-radius: 100%;
      -moz-border-radius: 100%;
      -webkit-border-radius: 100%;
      color: #353535;
      display: block;
      height: 8px;
      width: 8px;
      outline: none;
      line-height: 0;
      font-size: 0;
      color: transparent;
      padding: 0;
      cursor: pointer; }
      .slick-dots li button:hover, .slick-dots li button:focus {
        background: #ff4b00; }
    .slick-dots li.slick-active button {
      background: #ff4b00; }

/*
-----------------------------------------------
Over There  Screen Styles
Author: Chad Spencer 
----------------------------------------------- */
/* Grid and Special Classes
----------------------------------------------- */
/* Proportional units
   ========================================================================== */
/*
 * Specify the proportional width of an object.
 * Primarily for, but not limited to, use with `.grid__cell` components.
 * Intentional redundancy build into each set of unit classes.
 */
.unit-1-2, .unit-2-4, .unit-3-6, .unit-6-12 {
  width: 50%; }

.unit-1-3, .unit-2-6, .unit-4-12 {
  width: 33.33333%; }

.unit-2-3, .unit-4-6, .unit-8-12 {
  width: 66.66667%; }

.unit-1-4, .unit-3-12 {
  width: 25%; }

.unit-3-4, .unit-9-12 {
  width: 75%; }

.unit-1-5 {
  width: 20%; }

.unit-2-5 {
  width: 40%; }

.unit-3-5 {
  width: 60%; }

.unit-4-5 {
  width: 80%; }

.unit-1-6, .unit-2-12 {
  width: 16.66667%; }

.unit-5-6, .unit-10-12 {
  width: 83.33333%; }

.unit-1-12 {
  width: 8.33333%; }

.unit-5-12 {
  width: 41.66667%; }

.unit-7-12 {
  width: 58.33333%; }

.unit-11-12 {
  width: 91.66667%; }

@media all and (max-width: 1199px) {
  /* Proportional units
     ========================================================================== */
  /*
   * Specify the proportional width of an object.
   * Primarily for, but not limited to, use with `.grid__cell` components.
   * Intentional redundancy build into each set of unit classes.
   */
  .unit-1-1-lg {
    width: 100%; }

  .unit-0-1-lg {
    width: 0%; }

  .unit-1-2-lg, .unit-2-4-lg, .unit-3-6-lg, .unit-6-12-lg {
    width: 50%; }

  .unit-1-3-lg, .unit-2-6-lg, .unit-4-12-lg {
    width: 33.33333%; }

  .unit-2-3-lg, .unit-4-6-lg, .unit-8-12-lg {
    width: 66.66667%; }

  .unit-1-4-lg, .unit-3-12-lg {
    width: 25%; }

  .unit-3-4-lg, .unit-9-12-lg {
    width: 75%; }

  .unit-1-5-lg {
    width: 20%; }

  .unit-2-5-lg {
    width: 40%; }

  .unit-3-5-lg {
    width: 60%; }

  .unit-4-5-lg {
    width: 80%; }

  .unit-1-6-lg, .unit-2-12-lg {
    width: 16.66667%; }

  .unit-5-6-lg, .unit-10-12-lg {
    width: 83.33333%; }

  .unit-1-12-lg {
    width: 8.33333%; }

  .unit-5-12-lg {
    width: 41.66667%; }

  .unit-7-12-lg {
    width: 58.33333%; }

  .unit-11-12-lg {
    width: 91.66667%; } }
@media all and (max-width: 1023px) {
  /* Proportional units
     ========================================================================== */
  /*
   * Specify the proportional width of an object.
   * Primarily for, but not limited to, use with `.grid__cell` components.
   * Intentional redundancy build into each set of unit classes.
   */
  .unit-1-1-md {
    width: 100%; }

  .unit-0-1-md {
    width: 0%; }

  .unit-1-2-md, .unit-2-4-md, .unit-3-6-md, .unit-6-12-md {
    width: 50%; }

  .unit-1-3-md, .unit-2-6-md, .unit-4-12-md {
    width: 33.33333%; }

  .unit-2-3-md, .unit-4-6-md, .unit-8-12-md {
    width: 66.66667%; }

  .unit-1-4-md, .unit-3-12-md {
    width: 25%; }

  .unit-3-4-md, .unit-9-12-md {
    width: 75%; }

  .unit-1-5-md {
    width: 20%; }

  .unit-2-5-md {
    width: 40%; }

  .unit-3-5-md {
    width: 60%; }

  .unit-4-5-md {
    width: 80%; }

  .unit-1-6-md, .unit-2-12-md {
    width: 16.66667%; }

  .unit-5-6-md, .unit-10-12-md {
    width: 83.33333%; }

  .unit-1-12-md {
    width: 8.33333%; }

  .unit-5-12-md {
    width: 41.66667%; }

  .unit-7-12-md {
    width: 58.33333%; }

  .unit-11-12-md {
    width: 91.66667%; } }
@media all and (max-width: 767px) {
  /* Proportional units
     ========================================================================== */
  /*
   * Specify the proportional width of an object.
   * Primarily for, but not limited to, use with `.grid__cell` components.
   * Intentional redundancy build into each set of unit classes.
   */
  .unit-1-1-sm {
    width: 100%; }

  .unit-0-1-sm {
    width: 0%; }

  .unit-1-2-sm, .unit-2-4-sm, .unit-3-6-sm, .unit-6-12-sm {
    width: 50%; }

  .unit-1-3-sm, .unit-2-6-sm, .unit-4-12-sm {
    width: 33.33333%; }

  .unit-2-3-sm, .unit-4-6-sm, .unit-8-12-sm {
    width: 66.66667%; }

  .unit-1-4-sm, .unit-3-12-sm {
    width: 25%; }

  .unit-3-4-sm, .unit-9-12-sm {
    width: 75%; }

  .unit-1-5-sm {
    width: 20%; }

  .unit-2-5-sm {
    width: 40%; }

  .unit-3-5-sm {
    width: 60%; }

  .unit-4-5-sm {
    width: 80%; }

  .unit-1-6-sm, .unit-2-12-sm {
    width: 16.66667%; }

  .unit-5-6-sm, .unit-10-12-sm {
    width: 83.33333%; }

  .unit-1-12-sm {
    width: 8.33333%; }

  .unit-5-12-sm {
    width: 41.66667%; }

  .unit-7-12-sm {
    width: 58.33333%; }

  .unit-11-12-sm {
    width: 91.66667%; } }
.hidden {
  display: none; }

@media all and (max-width: 1199px) {
  .hidden-lg {
    display: none; } }

@media all and (max-width: 1023px) {
  .hidden-md {
    display: none; } }

@media all and (max-width: 767px) {
  .hidden-sm {
    display: none; } }

@media all and (max-width: 1199px) {
  .visible-lg {
    display: block; } }

@media all and (max-width: 1023px) {
  .visible-md {
    display: block; } }

@media all and (max-width: 767px) {
  .visible-sm {
    display: block; } }

.left {
  float: left; }

@media all and (min-width: 1024px) {
  .left-md {
    float: left; } }

.right {
  float: right; }

@media all and (min-width: 1024px) {
  .right-md {
    float: right; } }

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

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

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

.margin {
  margin-bottom: 75px; }
  @media all and (max-width: 767px) {
    .margin {
      margin-bottom: 25px; } }

.margin-double {
  margin-bottom: 125px; }
  @media all and (max-width: 767px) {
    .margin-double {
      margin-bottom: 50px; } }

.margin-half {
  margin-bottom: 40px; }
  @media all and (max-width: 767px) {
    .margin-half {
      margin-bottom: 20px; } }

.invisible {
  visibility: hidden; }

.animated {
  visibility: visible; }

.scrollin {
  bottom: -120px;
  position: relative; }
  @media all and (max-width: 767px) {
    .scrollin {
      bottom: 0; } }

.opaque {
  opacity: 0.5; }

.unit-center {
  vertical-align: middle; }

.reverse {
  direction: rtl; }
  .reverse div {
    direction: ltr; }

img.full {
  width: 100%; }

/* Global
----------------------------------------------- */
body {
  background: #000;
  color: #000;
  font-family: "proxima-nova", Helvetica, Arial, Verdana, sans-serif; }
  @media all and (max-width: 1024px) {
    body {
      -webkit-text-size-adjust: none; } }
  @media all and (max-width: 767px) {
    body {
      padding: 60px 0 0 0; } }

a {
  color: #017099; }
  a:hover {
    text-decoration: underline; }

img {
  max-width: 100%; }
  img.full {
    width: 100%; }
  img.zoom {
    cursor: zoom-in;
    cursor: -moz-zoom-in;
    cursor: -webkit-zoom-in; }
    @media all and (max-width: 1199px) {
      img.zoom {
        cursor: default; } }

figure {
  cursor: zoom-out;
  cursor: -moz-zoom-out;
  cursor: -webkit-zoom-out; }
  figure img {
    max-width: 9999px; }

/* Header
----------------------------------------------- */
header {
  background: #000; }
  @media all and (max-width: 1023px) {
    header {
      height: 60px;
      left: 0;
      position: fixed;
      top: 0;
      width: 100%;
      z-index: 9999; } }
  header.open span {
    background-color: transparent; }
    header.open span:before {
      top: 0;
      transform: rotate(-45deg);
      -moz-transform: rotate(-45deg);
      -webkit-transform: rotate(-45deg); }
    header.open span:after {
      bottom: 0;
      transform: rotate(45deg);
      -moz-transform: rotate(45deg);
      -webkit-transform: rotate(45deg); }
  header.open > div ul.nav {
    display: block;
    visibility: visible; }
  header span {
    display: none; }
    @media all and (max-width: 1023px) {
      header span {
        cursor: pointer;
        display: block;
        height: 30px;
        position: absolute;
        right: 5%;
        top: 15px;
        width: 24px;
        -webkit-tap-highlight-color: transparent; }
        header span span {
          background: #fff;
          display: block;
          height: 3px;
          left: 0;
          position: absolute;
          top: 13px;
          transition: all 0.2s linear;
          -moz-transition: all 0.2s linear;
          -webkit-transition: all 0.2s linear;
          width: 24px; }
          header span span:before {
            background: #fff;
            content: '';
            display: block;
            height: 3px;
            position: absolute;
            top: -7px;
            transition: all 0.2s linear;
            -moz-transition: all 0.2s linear;
            -webkit-transition: all 0.2s linear;
            width: 24px; }
          header span span:after {
            background: #fff;
            bottom: -7px;
            content: '';
            display: block;
            height: 3px;
            position: absolute;
            transition: all 0.2s linear;
            -moz-transition: all 0.2s linear;
            -webkit-transition: all 0.2s linear;
            width: 24px; } }
  header > div {
    margin: 0 auto;
    width: 1180px; }
    @media all and (max-width: 1199px) {
      header > div {
        width: 90%; } }
    @media all and (max-width: 1023px) {
      header > div {
        width: 100%; } }
    header > div > h2 > a {
      background-image: url("../images/logo.png");
      display: block;
      float: left;
      font-size: 0;
      height: 66px;
      margin: 20px 0;
      width: 178px; }
      @media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
        header > div > h2 > a {
          background-image: url("../images/logo@2x.png");
          background-size: 178px 66px; } }
      @media all and (max-width: 1023px) {
        header > div > h2 > a {
          background-size: 81px 30px;
          float: left;
          height: 30px;
          left: 5%;
          margin: 15px 0;
          position: relative;
          width: 81px; } }
    header > div ul.nav {
      float: right;
      margin: 70px -30px 0 0; }
      @media all and (max-width: 1023px) {
        header > div ul.nav {
          background: #000;
          box-sizing: border-box;
          display: none;
          float: none;
          left: 0;
          margin: 0;
          overflow: hidden;
          position: absolute;
          text-align: left;
          transition: all 0.2s linear;
          -moz-transition: all 0.2s linear;
          -webkit-transition: all 0.2s linear;
          top: 60px;
          visibility: hidden;
          width: 100%; } }
      header > div ul.nav > li {
        display: inline-block; }
        @media all and (max-width: 1023px) {
          header > div ul.nav > li {
            display: block;
            margin: 0;
            padding: 0; } }
        header > div ul.nav > li:hover > a {
          color: #858585; }
        header > div ul.nav > li:hover > div {
          max-height: 600px;
          transition-delay: 0.3s;
          -moz-transition-delay: 0.3s;
          -webkit-transition-delay: 0.3s; }
        header > div ul.nav > li > a {
          color: #fff;
          display: inline-block;
          font-size: 16px;
          line-height: 20px;
          margin: 0 0 -10px 0;
          padding: 0 30px 30px 30px;
          text-transform: uppercase; }
          @media all and (max-width: 1023px) {
            header > div ul.nav > li > a {
              padding: 0 20px 30px 20px; } }
          @media all and (max-width: 1023px) {
            header > div ul.nav > li > a {
              border-top: 1px solid #858585;
              color: #fff;
              display: block;
              margin: 0;
              padding: 15px 5%; } }
          header > div ul.nav > li > a:hover {
            color: #858585;
            text-decoration: none; }
          header > div ul.nav > li > a.current {
            color: #ae8f32; }
        header > div ul.nav > li > div {
          background: #fff;
          box-sizing: border-box;
          left: 0;
          max-height: 0;
          overflow: hidden;
          padding: 0;
          position: absolute;
          top: 110px;
          transition: all 0.15s linear;
          -moz-transition: all 0.15s linear;
          -webkit-transition: all 0.15s linear;
          width: 100%;
          z-index: 10; }
          @media all and (max-width: 1023px) {
            header > div ul.nav > li > div {
              background: transparent;
              border: none;
              max-height: 9999px;
              position: static; } }
          header > div ul.nav > li > div > div {
            margin: 0 auto;
            width: 1180px; }
            @media all and (max-width: 1199px) {
              header > div ul.nav > li > div > div {
                width: 92%; } }
            @media all and (max-width: 1023px) {
              header > div ul.nav > li > div > div {
                padding: 0 0 20px 0;
                width: 100%; } }
            @media all and (max-width: 1023px) {
              header > div ul.nav > li > div > div div {
                display: block !important;
                margin: 0 !important;
                padding: 0 !important;
                width: 100% !important; } }
            header > div ul.nav > li > div > div img {
              max-width: 100% !important; }
              @media all and (max-width: 1023px) {
                header > div ul.nav > li > div > div img {
                  display: none; } }
            header > div ul.nav > li > div > div a {
              display: block;
              margin: 0 -15px;
              padding: 25px 20px 20px 20px;
              position: relative; }
              @media all and (max-width: 1023px) {
                header > div ul.nav > li > div > div a {
                  color: #fff;
                  margin: 0;
                  padding: 5px 5%; } }
              header > div ul.nav > li > div > div a:hover {
                background-image: -moz-linear-gradient(top, rgba(0, 0, 0, 0.05) 0%, transparent 100%);
                background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.05)), to(transparent)); }
                @media all and (max-width: 1023px) {
                  header > div ul.nav > li > div > div a:hover {
                    background: none;
                    color: #858585;
                    text-decoration: none; } }
              header > div ul.nav > li > div > div a h2 {
                font-size: 20px;
                line-height: 24px;
                margin: 0 0 5px 0; }
                @media all and (max-width: 1023px) {
                  header > div ul.nav > li > div > div a h2 {
                    font-size: 14px;
                    font-weight: normal;
                    line-height: 18px;
                    text-transform: uppercase; } }
              header > div ul.nav > li > div > div a p {
                color: #000;
                font-size: 14px;
                line-height: 18px;
                margin: 0 0 5px 0; }
                @media all and (max-width: 1023px) {
                  header > div ul.nav > li > div > div a p {
                    display: none; } }
      header > div ul.nav form {
        position: absolute;
        margin: 0 -590px 0 0;
        right: 50%;
        top: 15px; }
        @media all and (max-width: 1199px) {
          header > div ul.nav form {
            margin: 0;
            right: 5%; } }
        @media all and (max-width: 1023px) {
          header > div ul.nav form {
            border-top: 1px solid #858585;
            padding: 15px 5%;
            margin: 0;
            position: static;
            right: auto;
            top: auto; } }
        header > div ul.nav form input {
          background-color: #fff;
          background-image: url("../images/arrow.png");
          background-position: 98% center;
          background-repeat: no-repeat;
          border: none;
          box-sizing: border-box;
          color: #303030;
          display: block;
          font: italic 12px/15px "proxima-nova", Helvetica, Arial, Verdana, sans-serif;
          padding: 5px 30px 5px 10px;
          width: 240px; }
          @media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
            header > div ul.nav form input {
              background-image: url("../images/arrow@2x.png");
              background-size: 8px 14px; } }
          @media all and (max-width: 1023px) {
            header > div ul.nav form input {
              width: 100%; } }

/* Content
----------------------------------------------- */
section {
  background: #fff;
  position: relative; }
  section.clean-bottom article {
    padding-bottom: 5px; }
  section.clean-top article {
    padding-top: 5px; }
  section.hero {
    background-color: #000;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 225px 0 150px 0; }
    @media all and (max-width: 767px) {
      section.hero {
        padding-top: 60px; } }
    section.hero h1 {
      box-sizing: border-box;
      color: #fff;
      font-size: 68px;
      font-weight: bold;
      line-height: 70px;
      margin: 0 auto;
      padding: 0 50px;
      text-transform: uppercase;
      width: 1180px; }
      @media all and (max-width: 1199px) {
        section.hero h1 {
          width: 90%; } }
      @media all and (max-width: 1023px) {
        section.hero h1 {
          padding: 0 20px; } }
      @media all and (max-width: 767px) {
        section.hero h1 {
          font-size: 40px;
          line-height: 45px; } }
  section.alt {
    background: #f0f0f0; }
    section.alt article figcaption {
      background: #fff; }
  section.collage {
    position: relative; }
    section.collage:after {
      background-image: -moz-linear-gradient(top, transparent 0%, rgba(0, 0, 0, 0.25) 100%);
      background-image: -webkit-gradient(linear, left top, left bottom, from(transparent), to(rgba(0, 0, 0, 0.25)));
      bottom: 0;
      content: '';
      display: block;
      height: 35px;
      left: 0;
      position: absolute;
      width: 100%; }
    section.collage img {
      display: block;
      margin: 0 auto;
      width: 90%; }
  section.split {
    overflow: hidden; }
    section.split article {
      position: relative;
      z-index: 10; }
      section.split article aside {
        color: #fff;
        padding-left: 50px;
        position: relative; }
        @media all and (max-width: 767px) {
          section.split article aside {
            background: #303030;
            margin-bottom: -40px;
            margin-left: -1px;
            padding: 25px;
            width: 101%; } }
        section.split article aside:before {
          background: #303030;
          content: '';
          display: block;
          height: 1000%;
          left: 20px;
          margin: -60px 0;
          position: absolute;
          top: 0;
          width: 1000%;
          z-index: -1; }
          @media all and (max-width: 767px) {
            section.split article aside:before {
              display: none; } }
        section.split article aside a {
          color: #ae8f32; }
          section.split article aside a.cta {
            background: #000;
            color: #fff;
            display: block;
            font-size: 14px;
            line-height: 20px;
            margin: 0 0 -60px -30px; }
            @media all and (max-width: 1199px) {
              section.split article aside a.cta {
                margin-right: -100px; } }
            @media all and (max-width: 767px) {
              section.split article aside a.cta {
                margin: 0; } }
            section.split article aside a.cta:before {
              background-color: #ae8f32;
              background-image: url("../images/arrow.png");
              background-position: center center;
              background-repeat: no-repeat;
              content: '';
              display: inline-block;
              height: 70px;
              margin: 0 20px 0 0;
              vertical-align: middle;
              width: 70px; }
              @media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
                section.split article aside a.cta:before {
                  background-image: url("../images/arrow@2x.png");
                  background-size: 8px 14px; } }
              @media all and (max-width: 767px) {
                section.split article aside a.cta:before {
                  height: 50px;
                  width: 50px; } }
  section.full {
    background-color: #000;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    box-sizing: border-box;
    display: table;
    min-height: calc(100vh - 150px);
    padding: 80px 0;
    text-align: center;
    width: 100%; }
    @media all and (max-width: 1199px) {
      section.full {
        min-height: 0;
        padding: 40px 5%; } }
    section.full.home {
      background-image: url(../images/hero.jpg);
      background-position: center bottom; }
    section.full article {
      display: table-cell;
      vertical-align: middle; }
      @media all and (max-width: 767px) {
        section.full article {
          padding: 0 5%; } }
      section.full article h1 {
        border-bottom: 4px solid #ae8f32;
        color: #fff;
        display: inline-block;
        font-size: 68px;
        font-weight: bold;
        line-height: 70px;
        margin: 0 auto 25px auto;
        padding: 0 0 25px 0;
        text-transform: uppercase; }
        @media all and (max-width: 767px) {
          section.full article h1 {
            font-size: 40px;
            line-height: 45px; } }
      section.full article p {
        color: #fff;
        font-size: 22px;
        line-height: 28px;
        margin: 0; }
        @media all and (max-width: 1199px) {
          section.full article p {
            font-size: 20px; } }
  section.feature {
    background-color: #000;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover; }
    section.feature.alt {
      padding: 60px 0; }
      section.feature.alt article h1 {
        border-bottom: 3px solid #ae8f32;
        padding: 0 0 20px 0; }
    section.feature.explore {
      background-image: url(../images/explore-background.jpg); }
    section.feature.articles {
      background-image: url(../images/articles-background.jpg); }
    section.feature.collections {
      background-image: url(../images/collections-background.jpg); }
    section.feature.artifacts {
      background-image: url(../images/artifacts-background.jpg); }
    section.feature.service {
      background-image: url(../images/service-background.jpg); }
    section.feature.about {
      background-image: url(../images/hero.jpg); }
    section.feature article {
      color: #fff; }
      section.feature article h1 {
        font-size: 68px;
        font-weight: 900;
        line-height: 70px;
        text-transform: uppercase; }
        @media all and (max-width: 767px) {
          section.feature article h1 {
            font-size: 40px;
            line-height: 45px; } }
  section article {
    margin: 0 auto;
    padding: 60px 0;
    width: 1180px; }
    @media all and (max-width: 1199px) {
      section article {
        width: 90%; } }
    @media all and (max-width: 767px) {
      section article {
        padding: 40px 0; } }
    section article.inset {
      background: #fff;
      box-sizing: border-box;
      padding: 50px 50px 0 50px;
      position: relative;
      top: -140px; }
      @media all and (max-width: 1023px) {
        section article.inset {
          padding: 20px 20px 0 20px; } }
    section article nav {
      font-size: 13px;
      line-height: 18px;
      margin: -40px 0 60px 0; }
      @media all and (max-width: 767px) {
        section article nav {
          margin-bottom: 30px;
          margin-top: -10px; } }
    section article h1,
    section article h2 {
      font-size: 26px;
      font-weight: bold;
      line-height: 30px;
      margin: 0 0 25px 0; }
      section article h1.clean,
      section article h2.clean {
        margin-bottom: 5px; }
      section article h1.large,
      section article h2.large {
        font-size: 56px;
        font-weight: bold;
        line-height: 60px;
        margin: 0 auto 25px auto;
        text-transform: uppercase; }
        @media all and (max-width: 767px) {
          section article h1.large,
          section article h2.large {
            font-size: 40px;
            line-height: 45px; } }
    section article h3 {
      border-bottom: 1px solid #ae8f32;
      font-size: 16px;
      font-weight: bold;
      line-height: 25px;
      margin: 0 0 15px 0;
      padding: 0 0 5px 0;
      text-transform: uppercase; }
      section article h3.clean {
        border: none;
        margin-bottom: 25px;
        padding: 0; }
      section article h3.margin {
        margin-bottom: 30px; }
      section article h3 a {
        display: inline-block;
        font-weight: normal;
        position: relative;
        text-transform: none; }
        section article h3 a:before {
          background: #ae8f32;
          content: '';
          display: inline-block;
          height: 30px;
          margin: 0 15px 0 12px;
          vertical-align: middle;
          width: 1px; }
      section article h3 form {
        float: right;
        position: relative;
        top: -3px; }
        @media all and (max-width: 767px) {
          section article h3 form {
            float: none;
            top: 0; } }
        section article h3 form input {
          background-color: #fff;
          background-image: url("../images/arrow.png");
          background-position: 222px center;
          background-repeat: no-repeat;
          border: 1px solid #f0f0f0;
          box-sizing: border-box;
          color: #303030;
          display: block;
          font: italic 12px/15px "proxima-nova", Helvetica, Arial, Verdana, sans-serif;
          padding: 5px 30px 5px 10px;
          width: 240px; }
          @media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
            section article h3 form input {
              background-image: url("../images/arrow@2x.png");
              background-size: 8px 14px; } }
    section article h4 {
      font-size: 16px;
      font-weight: bold;
      line-height: 20px;
      margin-bottom: 5px; }
      section article h4.clean {
        margin: 0; }
      section article h4.margin {
        margin-bottom: 25px; }
    section article hr {
      background: #ae8f32;
      border: none;
      display: block;
      height: 1px;
      margin: 40px 0 60px 0;
      width: 100%; }
      section article hr.small {
        margin: 0 0 30px 0; }
    section article figcaption {
      background: #f0f0f0;
      display: block;
      margin: -15px 0 25px 0;
      padding: 20px; }
      section article figcaption p {
        font-size: 14px;
        font-style: italic;
        line-height: 18px;
        margin-bottom: 10px; }
        section article figcaption p:last-of-type {
          margin: 0; }
    section article p {
      font-size: 16px;
      line-height: 25px;
      margin: 0 0 25px 0; }
      section article p.callout {
        font-size: 22px;
        line-height: 30px;
        margin-bottom: 30px; }
        @media all and (max-width: 767px) {
          section article p.callout {
            font-size: 20px;
            line-height: 28px;
            margin-bottom: 30px; } }
      section article p small {
        display: inline-block;
        font-size: 14px;
        line-height: 20px; }
      section article p a.button {
        background: #ae8f32;
        color: #fff;
        display: inline-block;
        font-weight: 600;
        margin: 0 5px;
        padding: 30px 50px; }
        @media all and (max-width: 767px) {
          section article p a.button {
            display: block;
            margin: 5px 0;
            padding: 20px 0;
            text-align: center; } }
        section article p a.button.small {
          margin: 0;
          padding: 15px 20px; }
        section article p a.button:hover {
          background: #000;
          text-decoration: none; }
    section article table {
      margin: 0 0 25px 0;
      width: 100%; }
      section article table.fluid tr td:first-of-type {
        white-space: normal; }
      section article table.centered tr td {
        vertical-align: middle; }
      section article table tr {
        border-bottom: 1px solid #f0f0f0; }
        section article table tr.border {
          border-color: #ae8f32; }
        section article table tr:last-of-type {
          border: none; }
        section article table tr th {
          font-size: 14px;
          font-weight: normal;
          line-height: 20px;
          padding: 15px 10px;
          text-align: left; }
        section article table tr td {
          font-size: 14px;
          line-height: 20px;
          padding: 15px 10px; }
          section article table tr td:first-of-type {
            white-space: nowrap; }
            @media all and (max-width: 767px) {
              section article table tr td:first-of-type {
                white-space: normal; } }
          section article table tr td.no-wrap {
            white-space: nowrap; }
          section article table tr td h4 {
            font-size: 14px;
            line-height: 20px;
            margin: 0; }
          section article table tr td p,
          section article table tr td ul {
            font-size: 14px;
            line-height: 20px;
            margin: 20px 0 0 0; }
            section article table tr td p:first-of-type,
            section article table tr td ul:first-of-type {
              margin: 0; }
          section article table tr td img {
            margin: 0; }
    section article ul {
      margin: 0 0 25px 0; }
      section article ul.table li {
        border-bottom: 1px solid #f0f0f0;
        display: block;
        margin: 0;
        padding: 0; }
        section article ul.table li a {
          display: block;
          padding: 10px; }
          section article ul.table li a.active {
            background: #f0f0f0;
            color: #303030;
            cursor: default; }
            section article ul.table li a.active:hover {
              text-decoration: none; }
      section article ul.bullets li {
        display: block;
        margin: 0;
        padding: 0 0 0 20px;
        position: relative; }
        section article ul.bullets li:before {
          background-color: #aac4d3;
          background-image: url("../images/bullet.png");
          background-position: center center;
          background-repeat: no-repeat;
          content: '';
          display: block;
          height: 12px;
          left: 0;
          position: absolute;
          top: 5px;
          width: 12px; }
          @media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
            section article ul.bullets li:before {
              background-image: url("../images/bullet@2x.png");
              background-size: 5px 8px; } }
      section article ul.clean li {
        line-height: 20px;
        list-style-type: none;
        margin: 0 0 5px 0; }
      section article ul.social {
        margin-top: -4px; }
        section article ul.social li {
          display: inline-block;
          margin: 0 0 0 5px; }
          section article ul.social li a {
            color: #fff;
            display: block;
            font-size: 18px;
            height: 30px;
            line-height: 31px;
            text-align: center;
            width: 30px; }
            section article ul.social li a.facebook {
              background: #395a9f; }
            section article ul.social li a.twitter {
              background: #45b0e4; }
      section article ul li {
        font-size: 16px;
        line-height: 25px;
        list-style-type: square;
        margin: 0 0 0 17px; }
    section article img {
      margin: 0 0 25px 0; }
      section article img.clean {
        margin-bottom: 10px; }
    section article div.tile {
      background: #000;
      margin-bottom: 10px;
      position: relative; }
      section article div.tile:after {
        content: "";
        display: block;
        padding-bottom: 100%; }
      section article div.tile div {
        display: block;
        height: 94%;
        left: 0;
        margin: 3%;
        position: absolute;
        top: 0;
        width: 94%; }
        section article div.tile div img {
          display: block;
          margin: 0 auto;
          max-height: 100%;
          max-width: 100%;
          position: relative;
          top: 50%;
          transform: translateY(-50%);
          -moz-transform: translateY(-50%);
          -webkit-transform: translateY(-50%); }
    section article form.condensed {
      position: relative; }
      @media all and (max-width: 767px) {
        section article form.condensed {
          float: none;
          top: 0; } }
      section article form.condensed input {
        background-color: #fff;
        background-image: url("../images/arrow.png");
        background-position: 222px center;
        background-repeat: no-repeat;
        border: 1px solid #f0f0f0;
        box-sizing: border-box;
        color: #303030;
        display: block;
        font: italic 12px/15px "proxima-nova", Helvetica, Arial, Verdana, sans-serif;
        padding: 5px 30px 5px 10px;
        width: 240px; }
        @media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
          section article form.condensed input {
            background-image: url("../images/arrow@2x.png");
            background-size: 8px 14px; } }
    section article form.inline {
      font-size: 0; }
      section article form.inline.alt input {
        background: #f0f0f0; }
      section article form.inline.small input {
        padding: 20px 15px;
        width: 70%; }
      section article form.inline.small button {
        padding: 20px 0;
        text-align: center;
        width: 30%; }
      section article form.inline input {
        background: #fff;
        border: none;
        box-sizing: border-box;
        color: #000;
        display: inline-block;
        font: 400 16px/20px "proxima-nova", Helvetica, Arial, Verdana, sans-serif;
        padding: 20px 30px;
        width: 500px; }
        section article form.inline input.small {
          padding: 20px 15px;
          width: 70%; }
        @media all and (max-width: 1023px) {
          section article form.inline input {
            padding: 20px 15px;
            width: 70%; } }
      section article form.inline button {
        background: #ae8f32;
        box-sizing: border-box;
        color: #fff;
        display: inline-block;
        font: 600 16px/20px "proxima-nova", Helvetica, Arial, Verdana, sans-serif;
        padding: 20px 30px; }
        @media all and (max-width: 1023px) {
          section article form.inline button {
            padding: 20px 0;
            text-align: center;
            width: 30%; } }
        section article form.inline button:hover {
          background: #000;
          text-decoration: none; }
    section article form p.error {
      color: red; }
    section article form label {
      display: block;
      font-weight: bold;
      margin: 0 0 20px 0; }
      section article form label i {
        font-size: 12px;
        font-style: normal;
        font-weight: normal; }
      section article form label input,
      section article form label textarea {
        border: 1px solid #f0f0f0;
        box-sizing: border-box;
        color: #000;
        display: block;
        font-weight: normal;
        margin: 5px 0 0 0;
        padding: 10px;
        width: 100%; }
    section article form input[type=checkbox] {
      border: 0;
      clip: rect(0 0 0 0);
      height: 1px;
      overflow: hidden;
      margin: -1px;
      padding: 0;
      position: absolute;
      width: 1px; }
    section article form input[type=checkbox] + label {
      background-image: url("../images/checkboxes.png");
      background-position: 0 0;
      background-repeat: no-repeat;
      cursor: pointer;
      display: block;
      font: normal 14px/16px "proxima-nova", Helvetica, Arial, Verdana, sans-serif;
      height: 16px;
      margin: 10px 40px 0 0;
      overflow: hidden;
      padding: 0 0 0 26px;
      text-overflow: ellipsis;
      vertical-align: middle;
      white-space: nowrap; }
      @media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
        section article form input[type=checkbox] + label {
          background-image: url("../images/checkboxes@2x.png");
          background-size: 16px 32px; } }
    section article form input[type=checkbox]:checked + label {
      background-position: 0 -16px; }
    section article form button {
      background: none;
      border: none;
      color: #017099;
      cursor: pointer;
      display: block;
      font: normal 16px/25px "proxima-nova", Helvetica, Arial, Verdana, sans-serif;
      margin: 10px 0 0 0;
      padding: 0; }
      section article form button.alt {
        background: #ae8f32;
        color: #fff;
        display: inline-block;
        font-weight: 600;
        margin: 10px 0 0 0;
        padding: 15px 20px; }
        section article form button.alt:hover {
          background: #000;
          text-decoration: none; }
      section article form button:hover {
        text-decoration: underline; }
    section article aside.border-left {
      border-left: 1px solid #f0f0f0;
      padding: 50px 25px; }
      @media all and (max-width: 1023px) {
        section article aside.border-left {
          border: none;
          padding: 0; } }
    section article div.image-fold {
      margin: 0 0 25px 0;
      position: relative; }
      section article div.image-fold:before {
        background-image: url("../images/fold-right.png");
        content: '';
        display: block;
        height: 90px;
        position: absolute;
        right: -15px;
        top: -15px;
        width: 90px; }
        @media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
          section article div.image-fold:before {
            background-image: url("../images/fold-right@2x.png");
            background-size: 90px 90px; } }
        @media all and (max-width: 767px) {
          section article div.image-fold:before {
            background-size: 45px 45px;
            height: 45px;
            width: 45px; } }
      section article div.image-fold:after {
        background-image: url("../images/fold-left.png");
        bottom: -15px;
        content: '';
        display: block;
        height: 90px;
        left: -15px;
        position: absolute;
        width: 90px; }
        @media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
          section article div.image-fold:after {
            background-image: url("../images/fold-left@2x.png");
            background-size: 90px 90px; } }
        @media all and (max-width: 767px) {
          section article div.image-fold:after {
            background-size: 45px 45px;
            height: 45px;
            width: 45px; } }
      section article div.image-fold img {
        margin: 0; }
    section article div.carousel img {
      margin: 0; }
    section article div.manipulate {
      background: #f0f0f0;
      margin: 40px 0;
      padding: 15px; }
      section article div.manipulate.clean {
        margin-top: 5px; }
      section article div.manipulate.alt {
        margin: 0 0 5px 0; }
      section article div.manipulate p {
        float: left;
        font-size: 14px;
        line-height: 20px;
        margin: 0; }
        section article div.manipulate p i.visible {
          font-style: normal; }
        section article div.manipulate p a.option {
          border-radius: 5px;
          -moz-border-radius: 5px;
          -webkit-border-radius: 5px;
          display: inline-block;
          margin: -5px 0;
          padding: 3px 8px;
          text-align: center;
          vertical-align: middle; }
          section article div.manipulate p a.option.selected {
            background: #fff;
            color: #303030;
            cursor: default; }
            section article div.manipulate p a.option.selected:hover {
              text-decoration: none; }
        section article div.manipulate p span {
          display: inline-block;
          margin: 0 15px; }
      section article div.manipulate ul {
        float: right;
        font-size: 14px;
        margin: 0; }
        section article div.manipulate ul.display {
          height: 50px;
          line-height: 50px;
          margin: -15px 0; }
          section article div.manipulate ul.display li {
            vertical-align: top; }
            section article div.manipulate ul.display li a {
              background-position: center center;
              background-repeat: no-repeat;
              cursor: pointer;
              display: block;
              height: 50px;
              margin: 0;
              padding: 0;
              text-indent: -9999px;
              width: 50px; }
              section article div.manipulate ul.display li a.selected {
                background-color: #fff; }
            section article div.manipulate ul.display li:first-of-type a {
              background-image: url(../images/grid-small.png);
              margin: 0 0 0 5px; }
            section article div.manipulate ul.display li:last-of-type a {
              background-image: url(../images/grid-large.png); }
            section article div.manipulate ul.display li.list-view a {
              background-image: url(../images/list-view.png);
              margin: 0 0 0 5px; }
            section article div.manipulate ul.display li.map-view a {
              background-image: url(../images/map-view.png); }
        section article div.manipulate ul li {
          display: inline-block;
          font-size: 14px;
          line-height: 20px;
          margin: 0;
          padding: 0; }
          section article div.manipulate ul li a.slick-prev {
            margin: 0 15px 0 0;
            padding: 0;
            width: auto; }
            section article div.manipulate ul li a.slick-prev:before {
              background-image: url("../images/page-left.png");
              content: '';
              display: inline-block;
              height: 10px;
              margin: 0 8px 0 0;
              position: relative;
              top: -1px;
              vertical-align: middle;
              width: 5px; }
              @media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
                section article div.manipulate ul li a.slick-prev:before {
                  background-image: url("../images/page-left@2x.png");
                  background-size: 5px 10px; } }
          section article div.manipulate ul li a.slick-next {
            margin: 0;
            padding: 0;
            width: auto; }
            section article div.manipulate ul li a.slick-next:after {
              background-image: url("../images/page-right.png");
              content: '';
              display: inline-block;
              height: 10px;
              margin: 0 0 0 8px;
              position: relative;
              top: -1px;
              vertical-align: middle;
              width: 5px; }
              @media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
                section article div.manipulate ul li a.slick-next:after {
                  background-image: url("../images/page-right@2x.png");
                  background-size: 5px 10px; } }
          section article div.manipulate ul li a.slick-disabled {
            cursor: default;
            opacity: 0.5; }
            section article div.manipulate ul li a.slick-disabled:hover {
              text-decoration: none; }
    section article div.sticky {
      margin: 0 20px 0 0;
      width: 20%; }
    section article nav.pagination {
      border-bottom: 1px solid #ae8f32;
      margin: 0 0 40px 0;
      padding: 0 0 30px 0;
      text-align: center; }
      section article nav.pagination.alt {
        border: none;
        margin: 0 0 40px 0;
        padding: 0; }
      section article nav.pagination > a {
        color: #303030;
        display: inline-block;
        font-size: 14px;
        line-height: 20px; }
        section article nav.pagination > a:first-of-type:before {
          background-image: url("../images/page-left.png");
          content: '';
          display: inline-block;
          height: 10px;
          margin: 0 8px 0 0;
          position: relative;
          top: -1px;
          vertical-align: middle;
          width: 5px; }
          @media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
            section article nav.pagination > a:first-of-type:before {
              background-image: url("../images/page-left@2x.png");
              background-size: 5px 10px; } }
        section article nav.pagination > a:last-of-type:after {
          background-image: url("../images/page-right.png");
          content: '';
          display: inline-block;
          height: 10px;
          margin: 0 0 0 8px;
          position: relative;
          top: -1px;
          vertical-align: middle;
          width: 5px; }
          @media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
            section article nav.pagination > a:last-of-type:after {
              background-image: url("../images/page-right@2x.png");
              background-size: 5px 10px; } }
      section article nav.pagination ul {
        display: inline-block;
        margin: 0 15px; }
        section article nav.pagination ul li {
          display: inline-block;
          margin: 0;
          padding: 0; }
          section article nav.pagination ul li.selected a {
            color: #858585;
            cursor: default; }
          section article nav.pagination ul li a {
            display: inline-block;
            font-size: 14px;
            line-height: 20px;
            margin: 0 5px; }

div#map {
  height: 750px;
  height: 100vh;
  width: 100%; }
  @media all and (max-width: 1023px) {
    div#map {
      height: 500px; } }
  @media all and (max-width: 767px) {
    div#map {
      height: 300px; } }
  div#map div.map-hover-image {
    display: inline-block;
    margin-right: 10px;
    vertical-align: middle;
    width: 100px; }
    div#map div.map-hover-image img {
      height: 100px;
      width: 100px; }
  div#map div.map-hover-text {
    display: inline-block;
    max-width: 300px;
    vertical-align: middle; }
    div#map div.map-hover-text p {
      font-family: "proxima-nova", Helvetica, Arial, Verdana, sans-serif !important;
      font-size: 16px !important; }

/* Footer
----------------------------------------------- */
footer {
  color: #fff;
  padding: 40px 0 20px 0; }
  footer > div {
    margin: 0 auto;
    width: 1180px; }
    @media all and (max-width: 1199px) {
      footer > div {
        width: 90%; } }
    @media all and (max-width: 767px) {
      footer > div div.text-right {
        text-align: left; } }
    footer > div h5 {
      font-size: 15px;
      font-weight: bold;
      line-height: 25px;
      margin: 0 0 10px 0;
      text-transform: uppercase; }
    footer > div p {
      font-size: 15px;
      line-height: 30px;
      margin: 0 0 30px 0;
      text-transform: uppercase; }
    footer > div > p {
      color: #858585;
      font-size: 12px;
      line-height: 15px;
      margin: 0;
      text-transform: none; }
    footer > div a {
      color: #fff; }
      footer > div a.social {
        color: #fff;
        display: inline-block;
        font-size: 18px;
        height: 30px;
        line-height: 31px;
        margin: 0 0 0 10px;
        text-align: center;
        width: 30px; }
        footer > div a.social.facebook {
          background: #395a9f; }
        footer > div a.social.twitter {
          background: #45b0e4; }
        footer > div a.social.instagram {
          background: #433f36; }
        footer > div a.social.youtube {
          background: #ff3233; }
    footer > div nav {
      margin: 0 0 30px 0; }
      footer > div nav a {
        color: #fff;
        display: inline-block;
        font-size: 16px;
        line-height: 30px;
        margin: 0 20px 0 0;
        text-transform: uppercase; }
        @media all and (max-width: 767px) {
          footer > div nav a {
            margin-right: 10px; } }
        footer > div nav a:last-of-type {
          margin: 0; }

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