@charset "UTF-8";
/*------------------------------------*\
    $CSSWIZARDRY-GRIDS
\*------------------------------------*/
/**
 * CONTENTS
 * INTRODUCTION.........How the grid system works.
 * VARIABLES............Your settings.
 * MIXINS...............Library mixins.
 * GRID SETUP...........Build the grid structure.
 * WIDTHS...............Build our responsive widths around our breakpoints.
 * PUSH.................Push classes.
 * PULL.................Pull classes.
 */
/*
http://csswizardry.com/csswizardry-grids/
*/
/*------------------------------------*\
    $INTRODUCTION
\*------------------------------------*/
/**
 * csswizardry grids provides you with widths to suit a number of breakpoints
 * designed around devices of a size you specify. Out of the box, csswizardry
 * grids caters to the following types of device:
 *
 * palm     --  palm-based devices, like phones and small tablets
 * lap      --  lap-based devices, like iPads or laptops
 * portable --  all of the above
 * desk     --  stationary devices, like desktop computers
 * regular  --  any/all types of device
 *
 * These namespaces are then used in the library to give you the ability to
 * manipulate your layouts based around them, for example:
 *
   <div class="grid__item  one-whole  lap--one-half  desk--one-third">
 *
 * This would give you a grid item which is 100% width unless it is on a lap
 * device, at which point it become 50% wide, or it is on a desktop device, at
 * which point it becomes 33.333% width.
 *
 * csswizardry grids also has push and pull classes which allow you to nudge
 * grid items left and right by a defined amount. These follow the same naming
 * convention as above, but are prepended by either `push--` or `pull--`, for
 * example:
 *
   `class="grid__item  one-half  push--one-half"`
 *
 * This would give you a grid item which is 50% width and pushed over to the
 * right by 50%.
 *
 * All classes in csswizardry grids follow this patten, so you should fairly
 * quickly be able to piece together any combinations you can imagine, for
 * example:
 *
   `class="grid__item  one-whole  lap--one-half  desk--one-third  push--desk--one-third"`
 *
   `class="grid__item  one-quarter  palm--one-half  push--palm--one-half"`
 *
   `class="grid__item  palm--one-third  desk--five-twelfths"`
 */
/*------------------------------------*\
    $VARIABLES
\*------------------------------------*/
/**
 * If you are building a non-responsive site but would still like to use
 * csswizardry-grids, set this to ΓÇÿfalseΓÇÖ:
 */
/**
 * Is this build mobile first? Setting to ΓÇÿtrueΓÇÖ means that all grids will be
 * 100% width if you do not apply a more specific class to them.
 */
/**
 * Set the spacing between your grid items.
 */
/**
 * Would you like SassΓÇÖ silent classes, or regular CSS classes?
 */
/**
 * Would you like push and pull classes enabled?
 */
/**
 * Using `inline-block` means that the grid items need their whitespace removing
 * in order for them to work correctly. Set the following to true if you are
 * going to achieve this by manually removing/commenting out any whitespace in
 * your HTML yourself.
 *
 * Setting this to false invokes a hack which cannot always be guaranteed,
 * please see the following for more detail:
 *
 * github.com/csswizardry/csswizardry-grids/commit/744d4b23c9d2b77d605b5991e54a397df72e0688
 * github.com/csswizardry/inuit.css/issues/170#issuecomment-14859371
 */
/**
 * Define your breakpoints. The first value is the prefix that shall be used for
 * your classes (e.g. `.palm--one-half`), the second value is the media query
 * that the breakpoint fires at.
 */
/**
 * Define which namespaced breakpoints you would like to generate for each of
 * widths, push and pull. This is handy if you only need pull on, say, desk, or
 * you only need a new width breakpoint at mobile sizes. It allows you to only
 * compile as much CSS as you need. All are turned on by default, but you can
 * add and remove breakpoints at will.
 *
 * Push and pull shall only be used if `$push` and/or `$pull` and `$responsive`
 * have been set to ΓÇÿtrueΓÇÖ.
 */
/**
 * You do not need to edit anything from this line onward; csswizardry-grids is
 * good to go. Happy griddinΓÇÖ!
 */
/*------------------------------------*\
    $MIXINS
\*------------------------------------*/
/**
 * These mixins are for the library to use only, you should not need to modify
 * them at all.
 *
 * Enclose a block of code with a media query as named in `$breakpoints`.
 */
/**
 * Drop relative positioning into silent classes which canΓÇÖt take advantage of
 * the `[class*="push--"]` and `[class*="pull--"]` selectors.
 */
/*------------------------------------*\
    $GRID SETUP
\*------------------------------------*/
/**
 * 1. Allow the grid system to be used on lists.
 * 2. Remove any margins and paddings that might affect the grid system.
 * 3. Apply a negative `margin-left` to negate the columnsΓÇÖ gutters.
 */
.grid {
  list-style: none;
  /* [1] */
  margin: 0;
  /* [2] */
  padding: 0;
  /* [2] */
  margin-left: -24px;
  /* [3] */
  letter-spacing: -0.31em;
}

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

/**
 * 1. Cause columns to stack side-by-side.
 * 2. Space columns apart.
 * 3. Align columns to the tops of each other.
 * 4. Full-width unless told to behave otherwise.
 * 5. Required to combine fluid widths and fixed gutters.
 */
.grid__item {
  display: inline-block;
  /* [1] */
  padding-left: 24px;
  /* [2] */
  vertical-align: top;
  /* [3] */
  width: 100%;
  /* [4] */
  -webkit-box-sizing: border-box;
  /* [5] */
  -moz-box-sizing: border-box;
  /* [5] */
  box-sizing: border-box;
  /* [5] */
  letter-spacing: normal;
  word-spacing: normal;
}

/**
 * Reversed grids allow you to structure your source in the opposite order to
 * how your rendered layout will appear. Extends `.grid`.
 */
.grid--rev {
  direction: rtl;
  text-align: left;
}
.grid--rev > .grid__item {
  direction: ltr;
  text-align: left;
}
@media only screen and (min-width: 1024px) {
  .portable--grid-rev {
    direction: rtl;
    text-align: left;
  }
  .portable--grid-rev > .grid__item {
    direction: ltr;
    text-align: left;
  }
}
/**
 * Gutterless grids have all the properties of regular grids, minus any spacing.
 * Extends `.grid`.
 */
.grid--full {
  margin-left: 0;
}
.grid--full > .grid__item {
  padding-left: 0;
  float: left;
}

/**
 * Align the entire grid to the right. Extends `.grid`.
 */
.grid--right {
  text-align: right;
}
.grid--right > .grid__item {
  text-align: left;
}

/**
 * Centered grids align grid items centrally without needing to use push or pull
 * classes. Extends `.grid`.
 */
.grid--center {
  text-align: center;
}
.grid--center > .grid__item {
  text-align: left;
}

/**
 * Align grid cells vertically (`.grid--middle` or `.grid--bottom`). Extends
 * `.grid`.
 */
.grid--middle > .grid__item {
  vertical-align: middle;
}

.grid--bottom > .grid__item {
  vertical-align: bottom;
}

/**
 * Create grids with narrower gutters. Extends `.grid`.
 */
.grid--narrow {
  margin-left: -12px;
}
.grid--narrow > .grid__item {
  padding-left: 12px;
}

/**
 * Create grids with wider gutters. Extends `.grid`.
 */
.grid--wide {
  margin-left: -48px;
}
.grid--wide > .grid__item {
  padding-left: 48px;
}

/*------------------------------------*\
    $WIDTHS
\*------------------------------------*/
/**
 * Create our width classes, prefixed by the specified namespace.
 */
/**
 * Our regular, non-responsive width classes.
 */
/**
 * Whole
 */
.one-whole {
  width: 100%;
}

/**
 * Halves
 */
.one-half, .two-quarters, .three-sixths, .four-eighths, .five-tenths, .six-twelfths {
  width: 50%;
}

/**
 * Thirds
 */
.one-third, .two-sixths, .four-twelfths {
  width: 33.333%;
}

.two-thirds, .four-sixths, .eight-twelfths {
  width: 66.666%;
}

/**
 * Quarters
 */
.one-quarter, .two-eighths, .three-twelfths {
  width: 25%;
}

.three-quarters, .six-eighths, .nine-twelfths {
  width: 75%;
}

/**
 * Fifths
 */
.one-fifth, .two-tenths {
  width: 20%;
}

.two-fifths, .four-tenths {
  width: 40%;
}

.three-fifths, .six-tenths {
  width: 60%;
}

.four-fifths, .eight-tenths {
  width: 80%;
}

/**
 * Sixths
 */
.one-sixth, .two-twelfths {
  width: 16.666%;
}

.five-sixths, .ten-twelfths {
  width: 83.333%;
}

/**
 * Eighths
 */
.one-eighth {
  width: 12.5%;
}

.three-eighths {
  width: 37.5%;
}

.five-eighths {
  width: 62.5%;
}

.seven-eighths {
  width: 87.5%;
}

/**
 * Tenths
 */
.one-tenth {
  width: 10%;
}

.three-tenths {
  width: 30%;
}

.seven-tenths {
  width: 70%;
}

.nine-tenths {
  width: 90%;
}

/**
 * Twelfths
 */
.one-twelfth {
  width: 8.333%;
}

.five-twelfths {
  width: 41.666%;
}

.seven-twelfths {
  width: 58.333%;
}

.eleven-twelfths {
  width: 91.666%;
}

/**
 * Our responsive classes, if we have enabled them.
 */
@media only screen and (max-width: 480px) {
  /**
   * Whole
   */
  .palm--one-whole {
    width: 100%;
  }

  /**
   * Halves
   */
  .palm--one-half, .palm--two-quarters, .palm--three-sixths, .palm--four-eighths, .palm--five-tenths, .palm--six-twelfths {
    width: 50%;
  }

  /**
   * Thirds
   */
  .palm--one-third, .palm--two-sixths, .palm--four-twelfths {
    width: 33.333%;
  }

  .palm--two-thirds, .palm--four-sixths, .palm--eight-twelfths {
    width: 66.666%;
  }

  /**
   * Quarters
   */
  .palm--one-quarter, .palm--two-eighths, .palm--three-twelfths {
    width: 25%;
  }

  .palm--three-quarters, .palm--six-eighths, .palm--nine-twelfths {
    width: 75%;
  }

  /**
   * Fifths
   */
  .palm--one-fifth, .palm--two-tenths {
    width: 20%;
  }

  .palm--two-fifths, .palm--four-tenths {
    width: 40%;
  }

  .palm--three-fifths, .palm--six-tenths {
    width: 60%;
  }

  .palm--four-fifths, .palm--eight-tenths {
    width: 80%;
  }

  /**
   * Sixths
   */
  .palm--one-sixth, .palm--two-twelfths {
    width: 16.666%;
  }

  .palm--five-sixths, .palm--ten-twelfths {
    width: 83.333%;
  }

  /**
   * Eighths
   */
  .palm--one-eighth {
    width: 12.5%;
  }

  .palm--three-eighths {
    width: 37.5%;
  }

  .palm--five-eighths {
    width: 62.5%;
  }

  .palm--seven-eighths {
    width: 87.5%;
  }

  /**
   * Tenths
   */
  .palm--one-tenth {
    width: 10%;
  }

  .palm--three-tenths {
    width: 30%;
  }

  .palm--seven-tenths {
    width: 70%;
  }

  .palm--nine-tenths {
    width: 90%;
  }

  /**
   * Twelfths
   */
  .palm--one-twelfth {
    width: 8.333%;
  }

  .palm--five-twelfths {
    width: 41.666%;
  }

  .palm--seven-twelfths {
    width: 58.333%;
  }

  .palm--eleven-twelfths {
    width: 91.666%;
  }
}
@media only screen and (min-width: 481px) and (max-width: 1023px) {
  /**
   * Whole
   */
  .lap--one-whole {
    width: 100%;
  }

  /**
   * Halves
   */
  .lap--one-half, .lap--two-quarters, .lap--three-sixths, .lap--four-eighths, .lap--five-tenths, .lap--six-twelfths {
    width: 50%;
  }

  /**
   * Thirds
   */
  .lap--one-third, .lap--two-sixths, .lap--four-twelfths {
    width: 33.333%;
  }

  .lap--two-thirds, .lap--four-sixths, .lap--eight-twelfths {
    width: 66.666%;
  }

  /**
   * Quarters
   */
  .lap--one-quarter, .lap--two-eighths, .lap--three-twelfths {
    width: 25%;
  }

  .lap--three-quarters, .lap--six-eighths, .lap--nine-twelfths {
    width: 75%;
  }

  /**
   * Fifths
   */
  .lap--one-fifth, .lap--two-tenths {
    width: 20%;
  }

  .lap--two-fifths, .lap--four-tenths {
    width: 40%;
  }

  .lap--three-fifths, .lap--six-tenths {
    width: 60%;
  }

  .lap--four-fifths, .lap--eight-tenths {
    width: 80%;
  }

  /**
   * Sixths
   */
  .lap--one-sixth, .lap--two-twelfths {
    width: 16.666%;
  }

  .lap--five-sixths, .lap--ten-twelfths {
    width: 83.333%;
  }

  /**
   * Eighths
   */
  .lap--one-eighth {
    width: 12.5%;
  }

  .lap--three-eighths {
    width: 37.5%;
  }

  .lap--five-eighths {
    width: 62.5%;
  }

  .lap--seven-eighths {
    width: 87.5%;
  }

  /**
   * Tenths
   */
  .lap--one-tenth {
    width: 10%;
  }

  .lap--three-tenths {
    width: 30%;
  }

  .lap--seven-tenths {
    width: 70%;
  }

  .lap--nine-tenths {
    width: 90%;
  }

  /**
   * Twelfths
   */
  .lap--one-twelfth {
    width: 8.333%;
  }

  .lap--five-twelfths {
    width: 41.666%;
  }

  .lap--seven-twelfths {
    width: 58.333%;
  }

  .lap--eleven-twelfths {
    width: 91.666%;
  }
}
@media only screen and (max-width: 1023px) {
  /**
   * Whole
   */
  .portable--one-whole {
    width: 100%;
  }

  /**
   * Halves
   */
  .portable--one-half, .portable--two-quarters, .portable--three-sixths, .portable--four-eighths, .portable--five-tenths, .portable--six-twelfths {
    width: 50%;
  }

  /**
   * Thirds
   */
  .portable--one-third, .portable--two-sixths, .portable--four-twelfths {
    width: 33.333%;
  }

  .portable--two-thirds, .portable--four-sixths, .portable--eight-twelfths {
    width: 66.666%;
  }

  /**
   * Quarters
   */
  .portable--one-quarter, .portable--two-eighths, .portable--three-twelfths {
    width: 25%;
  }

  .portable--three-quarters, .portable--six-eighths, .portable--nine-twelfths {
    width: 75%;
  }

  /**
   * Fifths
   */
  .portable--one-fifth, .portable--two-tenths {
    width: 20%;
  }

  .portable--two-fifths, .portable--four-tenths {
    width: 40%;
  }

  .portable--three-fifths, .portable--six-tenths {
    width: 60%;
  }

  .portable--four-fifths, .portable--eight-tenths {
    width: 80%;
  }

  /**
   * Sixths
   */
  .portable--one-sixth, .portable--two-twelfths {
    width: 16.666%;
  }

  .portable--five-sixths, .portable--ten-twelfths {
    width: 83.333%;
  }

  /**
   * Eighths
   */
  .portable--one-eighth {
    width: 12.5%;
  }

  .portable--three-eighths {
    width: 37.5%;
  }

  .portable--five-eighths {
    width: 62.5%;
  }

  .portable--seven-eighths {
    width: 87.5%;
  }

  /**
   * Tenths
   */
  .portable--one-tenth {
    width: 10%;
  }

  .portable--three-tenths {
    width: 30%;
  }

  .portable--seven-tenths {
    width: 70%;
  }

  .portable--nine-tenths {
    width: 90%;
  }

  /**
   * Twelfths
   */
  .portable--one-twelfth {
    width: 8.333%;
  }

  .portable--five-twelfths {
    width: 41.666%;
  }

  .portable--seven-twelfths {
    width: 58.333%;
  }

  .portable--eleven-twelfths {
    width: 91.666%;
  }
}
@media only screen and (min-width: 1024px) {
  /**
   * Whole
   */
  .desk--one-whole {
    width: 100%;
  }

  /**
   * Halves
   */
  .desk--one-half, .desk--two-quarters, .desk--three-sixths, .desk--four-eighths, .desk--five-tenths, .desk--six-twelfths {
    width: 50%;
  }

  /**
   * Thirds
   */
  .desk--one-third, .desk--two-sixths, .desk--four-twelfths {
    width: 33.333%;
  }

  .desk--two-thirds, .desk--four-sixths, .desk--eight-twelfths {
    width: 66.666%;
  }

  /**
   * Quarters
   */
  .desk--one-quarter, .desk--two-eighths, .desk--three-twelfths {
    width: 25%;
  }

  .desk--three-quarters, .desk--six-eighths, .desk--nine-twelfths {
    width: 75%;
  }

  /**
   * Fifths
   */
  .desk--one-fifth, .desk--two-tenths {
    width: 20%;
  }

  .desk--two-fifths, .desk--four-tenths {
    width: 40%;
  }

  .desk--three-fifths, .desk--six-tenths {
    width: 60%;
  }

  .desk--four-fifths, .desk--eight-tenths {
    width: 80%;
  }

  /**
   * Sixths
   */
  .desk--one-sixth, .desk--two-twelfths {
    width: 16.666%;
  }

  .desk--five-sixths, .desk--ten-twelfths {
    width: 83.333%;
  }

  /**
   * Eighths
   */
  .desk--one-eighth {
    width: 12.5%;
  }

  .desk--three-eighths {
    width: 37.5%;
  }

  .desk--five-eighths {
    width: 62.5%;
  }

  .desk--seven-eighths {
    width: 87.5%;
  }

  /**
   * Tenths
   */
  .desk--one-tenth {
    width: 10%;
  }

  .desk--three-tenths {
    width: 30%;
  }

  .desk--seven-tenths {
    width: 70%;
  }

  .desk--nine-tenths {
    width: 90%;
  }

  /**
   * Twelfths
   */
  .desk--one-twelfth {
    width: 8.333%;
  }

  .desk--five-twelfths {
    width: 41.666%;
  }

  .desk--seven-twelfths {
    width: 58.333%;
  }

  .desk--eleven-twelfths {
    width: 91.666%;
  }
}
/*------------------------------------*\
    $PUSH
\*------------------------------------*/
/**
 * Push classes, to move grid items over to the right by certain amounts.
 */
/*------------------------------------*\
    $PULL
\*------------------------------------*/
/**
 * Pull classes, to move grid items back to the left by certain amounts.
 */
.wrapper {
  max-width: 940px;
  margin: 0 auto;
  padding: 0 20px;
}

p.demo-block {
  background-color: #f43059;
  color: #fff;
  padding: 18px;
}

#media-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  height: 20px;
  width: 100%;
}
@media only screen and (max-width: 480px) {
  #media-banner {
    background: yellow;
  }
}
@media only screen and (min-width: 481px) and (max-width: 1023px) {
  #media-banner {
    background: purple;
  }
}
@media only screen and (min-width: 1024px) {
  #media-banner {
    background: blue;
  }
}

/*--------------------------------------------------------------
# Variables
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Common Mixins
--------------------------------------------------------------*/
/* Transitions */
/*USAGE
a {
  color: gray;
  @include transition(color .3s ease);
  &:hover {
    color: black;
  }
}*/
/* Prefixer */
/*USAGE
.element {
  @include prefix((transform: translate(-50%, -50%)), webkit ms);
}

.other-element {
  @include prefix((
    column-count: 3,
    column-gap: 1em,
    column-rule: 1px solid silver,
    column-width: 20em
  )), webkit moz);
}*/
/*--------------------------------------------------------------
# Project Mixins
--------------------------------------------------------------*/
/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Normalize
# Typography
# Elements
# Forms
# Navigation
  ## Links
  ## Menus
# Accessibility
# Alignments
# Clearings
# Widgets
# Content
    ## Posts and pages
  ## Asides
  ## Comments
# Infinite scroll
# Media
  ## Captions
  ## Galleries
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Normalize
--------------------------------------------------------------*/
html {
  font-family: sans-serif;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

body {
  margin: 0;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
menu,
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-color: transparent;
}

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

abbr[title] {
  border-bottom: 1px dotted;
}

b,
strong {
  font-weight: bold;
}

dfn {
  font-style: italic;
}

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

mark {
  background: #ff0;
  color: #000;
}

small {
  font-size: 80%;
}

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;
}

figure {
  margin: 1em 40px;
}

hr {
  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;
  box-sizing: content-box;
}

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

fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

legend {
  border: 0;
  padding: 0;
}

textarea {
  overflow: auto;
}

optgroup {
  font-weight: bold;
}

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

td,
th {
  padding: 0;
}

/*--------------------------------------------------------------
# Typography
--------------------------------------------------------------*/
@font-face {
    font-family: 'proxima-nova';
    src: url('/wp-content/themes/nextview2/fonts/proximanova-bold-webfont.woff2') format('woff2'),
         url('/wp-content/themes/nextview2/fonts/proximanova-bold-webfont.woff') format('woff');
    font-weight: bold;
    font-style: normal;
}
@font-face {
    font-family: 'proxima-nova';
    src: url('/wp-content/themes/nextview2/fonts/proximanova-regular-webfont.woff2') format('woff2'),
         url('/wp-content/themes/nextview2/fonts/proximanova-regular-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'proxima-nova';
    src: url('/wp-content/themes/nextview2/fonts/proximanova-semibold-webfont.woff2') format('woff2'),
         url('/wp-content/themes/nextview2/fonts/proximanova-semibold-webfont.woff') format('woff');
    font-weight: 600;
    font-style: normal;
}
body,
button,
input,
select,
textarea {
  color: #404040;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  clear: both;
}

p {
  margin-bottom: 1.5em;
}

dfn,
cite,
em,
i {
  font-style: italic;
}

blockquote {
  margin: 0 1.5em;
}

address {
  margin: 0 0 1.5em;
}

pre {
  background: #eee;
  font-family: "Courier 10 Pitch", Courier, monospace;
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 1.6;
  margin-bottom: 1.6em;
  max-width: 100%;
  overflow: auto;
  padding: 1.6em;
}

code,
kbd,
tt,
var {
  font-family: Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
  font-size: 15px;
  font-size: 0.9375rem;
}

abbr,
acronym {
  border-bottom: 1px dotted #666;
  cursor: help;
}

mark,
ins {
  background: #fff9c0;
  text-decoration: none;
}

big {
  font-size: 125%;
}

/*--------------------------------------------------------------
# Elements
--------------------------------------------------------------*/
html {
  box-sizing: border-box;
}

*,
*:before,
*:after {
  /* Inherit box-sizing to make it easier to change the property for components that leverage other behavior; see http://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
  box-sizing: inherit;
}

body {
  background: #fff;
  /* Fallback for when there is no custom background color defined. */
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
}

blockquote,
q {
  quotes: "" "";
}

hr {
  background-color: #ccc;
  border: 0;
  height: 1px;
  margin-bottom: 1.5em;
}

ul,
ol {
  margin: 0 0 1.5em 3em;
}

ul {
  list-style: disc;
}

ol {
  list-style: decimal;
}

li > ul,
li > ol {
  margin-bottom: 0;
  margin-left: 1.5em;
}

dt {
  font-weight: bold;
}

dd {
  margin: 0 1.5em 1.5em;
}

img {
  height: auto;
  /* Make sure images are scaled correctly. */
  max-width: 100%;
  /* Adhere to container width. */
}

table {
  margin: 0 0 1.5em;
  width: 100%;
}

/*--------------------------------------------------------------
# Forms
--------------------------------------------------------------*/
button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
  border: 1px solid;
  border-color: #ccc #ccc #bbb;
  border-radius: 3px;
  background: #e6e6e6;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5), inset 0 15px 17px rgba(255, 255, 255, 0.5), inset 0 -5px 12px rgba(0, 0, 0, 0.05);
  color: rgba(0, 0, 0, 0.8);
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 1;
  padding: .6em 1em .4em;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.8);
}

button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover {
  border-color: #ccc #bbb #aaa;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8), inset 0 15px 17px rgba(255, 255, 255, 0.8), inset 0 -5px 12px rgba(0, 0, 0, 0.02);
}

button:focus,
input[type="button"]:focus,
input[type="reset"]:focus,
input[type="submit"]:focus,
button:active,
input[type="button"]:active,
input[type="reset"]:active,
input[type="submit"]:active {
  border-color: #aaa #bbb #bbb;
  box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.5), inset 0 2px 5px rgba(0, 0, 0, 0.15);
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
textarea {
  color: #666;
  border: 1px solid #ccc;
  border-radius: 3px;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
textarea:focus {
  color: #111;
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"] {
  padding: 3px;
}

textarea {
  padding-left: 3px;
  width: 100%;
}

/*--------------------------------------------------------------
# Navigation
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## Links
--------------------------------------------------------------*/
a {
  color: royalblue;
}

a:hover,
a:focus,
a:active {
  color: midnightblue;
}

a:focus {
  outline: thin dotted;
}

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

/*--------------------------------------------------------------
## Menus
--------------------------------------------------------------*/
.main-navigation {
  clear: both;
  display: block;
  float: left;
  width: 100%;
}

.main-navigation ul {
  display: none;
  list-style: none;
  margin: 0;
  padding-left: 0;
}

.main-navigation li {
  float: left;
  position: relative;
}

.main-navigation a {
  display: block;
  text-decoration: none;
}

.main-navigation ul ul {
  box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
  float: left;
  position: absolute;
  top: 1.5em;
  left: -999em;
  z-index: 99999;
}

.main-navigation ul ul ul {
  left: -999em;
  top: 0;
}

.main-navigation ul ul a {
  width: 200px;
}

.main-navigation ul li:hover > ul,
.main-navigation ul li.focus > ul {
  left: auto;
}

.main-navigation ul ul li:hover > ul,
.main-navigation ul ul li.focus > ul {
  left: 100%;
}

/* Small menu. */
.menu-toggle,
.main-navigation.toggled ul {
  display: block;
}

@media screen and (min-width: 37.5em) {
  .menu-toggle {
    display: none;
  }

  .main-navigation ul {
    display: block;
  }
}
.site-main .comment-navigation,
.site-main .posts-navigation,
.site-main .post-navigation {
  margin: 0 0 1.5em;
  overflow: hidden;
}

.comment-navigation .nav-previous,
.posts-navigation .nav-previous,
.post-navigation .nav-previous {
  float: left;
  width: 50%;
}

.comment-navigation .nav-next,
.posts-navigation .nav-next,
.post-navigation .nav-next {
  float: right;
  text-align: right;
  width: 50%;
}

/*--------------------------------------------------------------
# Accessibility
--------------------------------------------------------------*/
/* Text meant only for screen readers. */
.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
}

.screen-reader-text:focus {
  background-color: #f1f1f1;
  border-radius: 3px;
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  clip: auto !important;
  color: #21759b;
  display: block;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: bold;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
  /* Above WP toolbar. */
}

/*--------------------------------------------------------------
# Alignments
--------------------------------------------------------------*/
.alignleft {
  display: inline;
  float: left;
  margin-right: 1.5em;
}

.alignright {
  display: inline;
  float: right;
  margin-left: 1.5em;
}

.aligncenter {
  clear: both;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/*--------------------------------------------------------------
# Clearings
--------------------------------------------------------------*/
.clear:before,
.clear:after,
.entry-content:before,
.entry-content:after,
.comment-content:before,
.comment-content:after,
.site-header:before,
.site-header:after,
.site-content:before,
.site-content:after,
.site-footer:before,
.site-footer:after {
  content: "";
  display: table;
}

.clear:after,
.entry-content:after,
.comment-content:after,
.site-header:after,
.site-content:after,
.site-footer:after {
  clear: both;
}

/*--------------------------------------------------------------
# Widgets
--------------------------------------------------------------*/
.widget {
  margin: 0 0 1.5em;
}

/* Make sure select elements fit in widgets. */
.widget select {
  max-width: 100%;
}

/* Search widget. */
.widget_search .search-submit {
  display: none;
}

/*--------------------------------------------------------------
# Content
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## Posts and pages
--------------------------------------------------------------*/
.sticky {
  display: block;
}

.hentry {
  margin: 0 0 1.5em;
}

.byline,
.updated:not(.published) {
  display: none;
}

.single .byline,
.group-blog .byline {
  display: inline;
}

.page-content,
.entry-content,
.entry-summary {
  margin: 1.5em 0 0;
}

.page-links {
  clear: both;
  margin: 0 0 1.5em;
}

/*--------------------------------------------------------------
## Asides
--------------------------------------------------------------*/
.blog .format-aside .entry-title,
.archive .format-aside .entry-title {
  display: none;
}

/*--------------------------------------------------------------
## Comments
--------------------------------------------------------------*/
.comment-content a {
  word-wrap: break-word;
}

.bypostauthor {
  display: block;
}

/*--------------------------------------------------------------
# Infinite scroll
--------------------------------------------------------------*/
/* Globally hidden elements when Infinite Scroll is supported and in use. */
.infinite-scroll .posts-navigation,
.infinite-scroll.neverending .site-footer {
  /* Theme Footer (when set to scrolling) */
  display: none;
}

/* When Infinite Scroll has reached its end we need to re-display elements that were hidden (via .neverending) before. */
.infinity-end.neverending .site-footer {
  display: block;
}

/*--------------------------------------------------------------
# Media
--------------------------------------------------------------*/
.page-content .wp-smiley,
.entry-content .wp-smiley,
.comment-content .wp-smiley {
  border: none;
  margin-bottom: 0;
  margin-top: 0;
  padding: 0;
}

/* Make sure embeds and iframes fit their containers. */
embed,
iframe,
object {
  max-width: 100%;
}

/*--------------------------------------------------------------
## Captions
--------------------------------------------------------------*/
.wp-caption {
  margin-bottom: 1.5em;
  max-width: 100%;
}

.wp-caption img[class*="wp-image-"] {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.wp-caption .wp-caption-text {
  margin: 0.8075em 0;
}

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

/*--------------------------------------------------------------
## Galleries
--------------------------------------------------------------*/
.gallery {
  margin-bottom: 1.5em;
}

.gallery-item {
  display: inline-block;
  text-align: center;
  vertical-align: top;
  width: 100%;
}

.gallery-columns-2 .gallery-item {
  max-width: 50%;
}

.gallery-columns-3 .gallery-item {
  max-width: 33.33%;
}

.gallery-columns-4 .gallery-item {
  max-width: 25%;
}

.gallery-columns-5 .gallery-item {
  max-width: 20%;
}

.gallery-columns-6 .gallery-item {
  max-width: 16.66%;
}

.gallery-columns-7 .gallery-item {
  max-width: 14.28%;
}

.gallery-columns-8 .gallery-item {
  max-width: 12.5%;
}

.gallery-columns-9 .gallery-item {
  max-width: 11.11%;
}

.gallery-caption {
  display: block;
}

/*! fancyBox v2.1.5 fancyapps.com | fancyapps.com/fancybox/#license */
.fancybox-wrap,
.fancybox-skin,
.fancybox-outer,
.fancybox-inner,
.fancybox-image,
.fancybox-wrap iframe,
.fancybox-wrap object,
.fancybox-nav,
.fancybox-nav span,
.fancybox-tmp {
  padding: 0;
  margin: 0;
  border: 0;
  outline: none;
  vertical-align: top;
}

.fancybox-wrap {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 8020;
}

.fancybox-skin {
  position: relative;
  background: #f9f9f9;
  color: #444;
  text-shadow: none;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}

.fancybox-opened {
  z-index: 8030;
}

.fancybox-opened .fancybox-skin {
  -webkit-box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
  -moz-box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.fancybox-outer, .fancybox-inner {
  position: relative;
}

.fancybox-inner {
  overflow: hidden;
}

.fancybox-type-iframe .fancybox-inner {
  -webkit-overflow-scrolling: touch;
}

.fancybox-error {
  color: #444;
  font: 14px/20px "Helvetica Neue",Helvetica,Arial,sans-serif;
  margin: 0;
  padding: 15px;
  white-space: nowrap;
}

.fancybox-image, .fancybox-iframe {
  display: block;
  width: 100%;
  height: 100%;
}

.fancybox-image {
  max-width: 100%;
  max-height: 100%;
}

#fancybox-loading, .fancybox-close, .fancybox-prev span, .fancybox-next span {
  background-image: url("fancybox_sprite.png");
}

#fancybox-loading {
  position: fixed;
  top: 50%;
  left: 50%;
  margin-top: -22px;
  margin-left: -22px;
  background-position: 0 -108px;
  opacity: 0.8;
  cursor: pointer;
  z-index: 8060;
}

#fancybox-loading div {
  width: 44px;
  height: 44px;
  background: url("fancybox_loading.gif") center center no-repeat;
}

.fancybox-close {
  position: absolute;
  top: -18px;
  right: -18px;
  width: 36px;
  height: 36px;
  cursor: pointer;
  z-index: 8040;
}

.fancybox-nav {
  position: absolute;
  top: 0;
  width: 40%;
  height: 100%;
  cursor: pointer;
  text-decoration: none;
  background: transparent url("blank.gif");
  /* helps IE */
  -webkit-tap-highlight-color: transparent;
  z-index: 8040;
}

.fancybox-prev {
  left: 0;
}

.fancybox-next {
  right: 0;
}

.fancybox-nav span {
  position: absolute;
  top: 50%;
  width: 36px;
  height: 34px;
  margin-top: -18px;
  cursor: pointer;
  z-index: 8040;
  visibility: hidden;
}

.fancybox-prev span {
  left: 10px;
  background-position: 0 -36px;
}

.fancybox-next span {
  right: 10px;
  background-position: 0 -72px;
}

.fancybox-nav:hover span {
  visibility: visible;
}

.fancybox-tmp {
  position: absolute;
  top: -99999px;
  left: -99999px;
  visibility: hidden;
  max-width: 99999px;
  max-height: 99999px;
  overflow: visible !important;
}

/* Overlay helper */
.fancybox-lock {
  overflow: hidden !important;
  width: auto;
}

.fancybox-lock body {
  overflow: hidden !important;
}

.fancybox-lock-test {
  overflow-y: hidden !important;
}

.fancybox-overlay {
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  display: none;
  z-index: 8010;
  background: url("fancybox_overlay.png");
}

.fancybox-overlay-fixed {
  position: fixed;
  bottom: 0;
  right: 0;
}

.fancybox-lock .fancybox-overlay {
  overflow: auto;
  overflow-y: scroll;
}

/* Title helper */
.fancybox-title {
  visibility: hidden;
  font: normal 13px/20px "Helvetica Neue",Helvetica,Arial,sans-serif;
  position: relative;
  text-shadow: none;
  z-index: 8050;
}

.fancybox-opened .fancybox-title {
  visibility: visible;
}

.fancybox-title-float-wrap {
  position: absolute;
  bottom: 0;
  right: 50%;
  margin-bottom: -35px;
  z-index: 8050;
  text-align: center;
}

.fancybox-title-float-wrap .child {
  display: inline-block;
  margin-right: -100%;
  padding: 2px 20px;
  background: transparent;
  /* Fallback for web browsers that doesn't support RGBa */
  background: rgba(0, 0, 0, 0.8);
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  border-radius: 15px;
  text-shadow: 0 1px 2px #222;
  color: #FFF;
  font-weight: bold;
  line-height: 24px;
  white-space: nowrap;
}

.fancybox-title-outside-wrap {
  position: relative;
  margin-top: 10px;
  color: #fff;
}

.fancybox-title-inside-wrap {
  padding-top: 10px;
}

.fancybox-title-over-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  color: #fff;
  padding: 10px;
  background: #000;
  background: rgba(0, 0, 0, 0.8);
}

/*Retina graphics!*/
@media only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min--moz-device-pixel-ratio: 1.5), only screen and (min-device-pixel-ratio: 1.5) {
  #fancybox-loading, .fancybox-close, .fancybox-prev span, .fancybox-next span {
    background-image: url("fancybox_sprite@2x.png");
    background-size: 44px 152px;
    /*The size of the normal image, half the size of the hi-res image*/
  }

  #fancybox-loading div {
    background-image: url("fancybox_loading@2x.gif");
    background-size: 24px 24px;
    /*The size of the normal image, half the size of the hi-res image*/
  }
}
/**
 * Swiper 3.1.2
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * 
 * http://www.idangero.us/swiper/
 * 
 * Copyright 2015, Vladimir Kharlampidi
 * The iDangero.us
 * http://www.idangero.us/
 * 
 * Licensed under MIT
 * 
 * Released on: August 22, 2015
 */
.swiper-container {
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  /* Fix of Webkit flickering */
  z-index: 1;
}

.swiper-container-no-flexbox .swiper-slide {
  float: left;
}

.swiper-container-vertical > .swiper-wrapper {
  -webkit-box-orient: vertical;
  -moz-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-transition-property: -webkit-transform;
  -moz-transition-property: -moz-transform;
  -o-transition-property: -o-transform;
  -ms-transition-property: -ms-transform;
  transition-property: transform;
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}

.swiper-container-android .swiper-slide,
.swiper-wrapper {
  -webkit-transform: translate3d(0px, 0, 0);
  -moz-transform: translate3d(0px, 0, 0);
  -o-transform: translate(0px, 0px);
  -ms-transform: translate3d(0px, 0, 0);
  transform: translate3d(0px, 0, 0);
}

.swiper-container-multirow > .swiper-wrapper {
  -webkit-box-lines: multiple;
  -moz-box-lines: multiple;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}

.swiper-container-free-mode > .swiper-wrapper {
  -webkit-transition-timing-function: ease-out;
  -moz-transition-timing-function: ease-out;
  -ms-transition-timing-function: ease-out;
  -o-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
  margin: 0 auto;
}

.swiper-slide {
  -webkit-flex-shrink: 0;
  -ms-flex: 0 0 auto;
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
}

/* a11y */
.swiper-container .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}

/* IE10 Windows Phone 8 Fixes */
.swiper-wp8-horizontal {
  -ms-touch-action: pan-y;
  touch-action: pan-y;
}

.swiper-wp8-vertical {
  -ms-touch-action: pan-x;
  touch-action: pan-x;
}

/* Arrows */
.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  top: 50%;
  width: 27px;
  height: 44px;
  margin-top: -22px;
  z-index: 10;
  cursor: pointer;
  -moz-background-size: 27px 44px;
  -webkit-background-size: 27px 44px;
  background-size: 27px 44px;
  background-position: center;
  background-repeat: no-repeat;
}

.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}

.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
  left: 10px;
  right: auto;
}

.swiper-button-prev.swiper-button-black,
.swiper-container-rtl .swiper-button-next.swiper-button-black {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E");
}

.swiper-button-prev.swiper-button-white,
.swiper-container-rtl .swiper-button-next.swiper-button-white {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E");
}

.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
  right: 10px;
  left: auto;
}

.swiper-button-next.swiper-button-black,
.swiper-container-rtl .swiper-button-prev.swiper-button-black {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E");
}

.swiper-button-next.swiper-button-white,
.swiper-container-rtl .swiper-button-prev.swiper-button-white {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E");
}

/* Pagination Styles */
.swiper-pagination {
  position: absolute;
  text-align: center;
  -webkit-transition: 300ms;
  -moz-transition: 300ms;
  -o-transition: 300ms;
  transition: 300ms;
  -webkit-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  z-index: 10;
}

.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}

.swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  display: inline-block;
  border-radius: 100%;
  background: #000;
  opacity: 0.2;
}

button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  box-shadow: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -webkit-appearance: none;
  appearance: none;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}

.swiper-pagination-white .swiper-pagination-bullet {
  background: #fff;
}

.swiper-pagination-bullet-active {
  opacity: 1;
  background: #007aff;
}

.swiper-pagination-white .swiper-pagination-bullet-active {
  background: #fff;
}

.swiper-pagination-black .swiper-pagination-bullet-active {
  background: #000;
}

.swiper-container-vertical > .swiper-pagination {
  right: 10px;
  top: 50%;
  -webkit-transform: translate3d(0px, -50%, 0);
  -moz-transform: translate3d(0px, -50%, 0);
  -o-transform: translate(0px, -50%);
  -ms-transform: translate3d(0px, -50%, 0);
  transform: translate3d(0px, -50%, 0);
}

.swiper-container-vertical > .swiper-pagination .swiper-pagination-bullet {
  margin: 5px 0;
  display: block;
}

.swiper-container-horizontal > .swiper-pagination {
  bottom: 10px;
  left: 0;
  width: 100%;
}

.swiper-container-horizontal > .swiper-pagination .swiper-pagination-bullet {
  margin: 0 5px;
}

/* 3D Container */
.swiper-container-3d {
  -webkit-perspective: 1200px;
  -moz-perspective: 1200px;
  -o-perspective: 1200px;
  perspective: 1200px;
}

.swiper-container-3d .swiper-wrapper,
.swiper-container-3d .swiper-slide,
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom,
.swiper-container-3d .swiper-cube-shadow {
  -webkit-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  -ms-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}

.swiper-container-3d .swiper-slide-shadow-left {
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(transparent));
  /* Safari 4+, Chrome */
  background-image: -webkit-linear-gradient(right, rgba(0, 0, 0, 0.5), transparent);
  /* Chrome 10+, Safari 5.1+, iOS 5+ */
  background-image: -moz-linear-gradient(right, rgba(0, 0, 0, 0.5), transparent);
  /* Firefox 3.6-15 */
  background-image: -o-linear-gradient(right, rgba(0, 0, 0, 0.5), transparent);
  /* Opera 11.10-12.00 */
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), transparent);
  /* Firefox 16+, IE10, Opera 12.50+ */
}

.swiper-container-3d .swiper-slide-shadow-right {
  background-image: -webkit-gradient(linear, right top, left top, from(rgba(0, 0, 0, 0.5)), to(transparent));
  /* Safari 4+, Chrome */
  background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.5), transparent);
  /* Chrome 10+, Safari 5.1+, iOS 5+ */
  background-image: -moz-linear-gradient(left, rgba(0, 0, 0, 0.5), transparent);
  /* Firefox 3.6-15 */
  background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.5), transparent);
  /* Opera 11.10-12.00 */
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), transparent);
  /* Firefox 16+, IE10, Opera 12.50+ */
}

.swiper-container-3d .swiper-slide-shadow-top {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.5)), to(transparent));
  /* Safari 4+, Chrome */
  background-image: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0.5), transparent);
  /* Chrome 10+, Safari 5.1+, iOS 5+ */
  background-image: -moz-linear-gradient(bottom, rgba(0, 0, 0, 0.5), transparent);
  /* Firefox 3.6-15 */
  background-image: -o-linear-gradient(bottom, rgba(0, 0, 0, 0.5), transparent);
  /* Opera 11.10-12.00 */
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent);
  /* Firefox 16+, IE10, Opera 12.50+ */
}

.swiper-container-3d .swiper-slide-shadow-bottom {
  background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.5)), to(transparent));
  /* Safari 4+, Chrome */
  background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.5), transparent);
  /* Chrome 10+, Safari 5.1+, iOS 5+ */
  background-image: -moz-linear-gradient(top, rgba(0, 0, 0, 0.5), transparent);
  /* Firefox 3.6-15 */
  background-image: -o-linear-gradient(top, rgba(0, 0, 0, 0.5), transparent);
  /* Opera 11.10-12.00 */
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), transparent);
  /* Firefox 16+, IE10, Opera 12.50+ */
}

/* Coverflow */
.swiper-container-coverflow .swiper-wrapper {
  /* Windows 8 IE 10 fix */
  -ms-perspective: 1200px;
}

/* Fade */
.swiper-container-fade.swiper-container-free-mode .swiper-slide {
  -webkit-transition-timing-function: ease-out;
  -moz-transition-timing-function: ease-out;
  -ms-transition-timing-function: ease-out;
  -o-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}

.swiper-container-fade .swiper-slide {
  pointer-events: none;
}

.swiper-container-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-container-fade .swiper-slide-active,
.swiper-container-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

/* Cube */
.swiper-container-cube {
  overflow: visible;
}

.swiper-container-cube .swiper-slide {
  pointer-events: none;
  visibility: hidden;
  -webkit-transform-origin: 0 0;
  -moz-transform-origin: 0 0;
  -ms-transform-origin: 0 0;
  transform-origin: 0 0;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  backface-visibility: hidden;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.swiper-container-cube.swiper-container-rtl .swiper-slide {
  -webkit-transform-origin: 100% 0;
  -moz-transform-origin: 100% 0;
  -ms-transform-origin: 100% 0;
  transform-origin: 100% 0;
}

.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-next,
.swiper-container-cube .swiper-slide-prev,
.swiper-container-cube .swiper-slide-next + .swiper-slide {
  pointer-events: auto;
  visibility: visible;
}

.swiper-container-cube .swiper-slide-shadow-top,
.swiper-container-cube .swiper-slide-shadow-bottom,
.swiper-container-cube .swiper-slide-shadow-left,
.swiper-container-cube .swiper-slide-shadow-right {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-container-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.6;
  -webkit-filter: blur(50px);
  filter: blur(50px);
  z-index: 0;
}

/* Scrollbar */
.swiper-scrollbar {
  border-radius: 10px;
  position: relative;
  -ms-touch-action: none;
  background: rgba(0, 0, 0, 0.1);
}

.swiper-container-horizontal > .swiper-scrollbar {
  position: absolute;
  left: 1%;
  bottom: 3px;
  z-index: 50;
  height: 5px;
  width: 98%;
}

.swiper-container-vertical > .swiper-scrollbar {
  position: absolute;
  right: 3px;
  top: 1%;
  z-index: 50;
  width: 5px;
  height: 98%;
}

.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  left: 0;
  top: 0;
}

.swiper-scrollbar-cursor-drag {
  cursor: move;
}

/* Preloader */
.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  -webkit-transform-origin: 50%;
  -moz-transform-origin: 50%;
  transform-origin: 50%;
  -webkit-animation: swiper-preloader-spin 1s steps(12, end) infinite;
  -moz-animation: swiper-preloader-spin 1s steps(12, end) infinite;
  animation: swiper-preloader-spin 1s steps(12, end) infinite;
}

.swiper-lazy-preloader:after {
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%236c6c6c'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
  background-position: 50%;
  -webkit-background-size: 100%;
  background-size: 100%;
  background-repeat: no-repeat;
}

.swiper-lazy-preloader-white:after {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%23fff'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
}

@-webkit-keyframes swiper-preloader-spin {
  100% {
    -webkit-transform: rotate(360deg);
  }
}
@keyframes swiper-preloader-spin {
  100% {
    transform: rotate(360deg);
  }
}

* {
  font-family: "proxima-nova";
  min-height: 0;
  min-width: 0;
}

/* Global Elements */
a {
  color: #0062ff;
}

.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

#page-banner {
  position: relative;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  height: 100vh;
  max-height: 800px;
  background-size: cover;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
#page-banner h1 {
  color: #fff;
  line-height: 1;
  margin: 0.5em 0;
}
@media only screen and (min-width: 1024px) {
  #page-banner h1 span {
    display: block;
  }
}
#page-banner p {
  display: block;
  color: #fff;
  font-size: 20px;
  margin: 0;
}
@media only screen and (min-width: 1024px) {
  #page-banner p {
    font-size: 30px;
  }
}
#page-banner .mobile-carat {
  position: absolute;
  bottom: 20px;
  width: 100%;
  text-align: center;
  left: 0;
}
@media only screen and (min-width: 1024px) {
  #page-banner .mobile-carat {
    display: none;
  }
}
h1 {
  font-size: 50px;
}
h4 {
  font-size: 20px;
}
@media only screen and (min-width: 1024px) {
  h1 {
    font-size: 85px;
  }
}

.readmore {
  font-weight: 600;
  font-size: 20px;
  text-decoration: none;
  position: relative;
  margin-right: 10px;
  display: inline-block;
}
@media only screen and (min-width: 1024px) {
  .readmore {
    font-size: 30px;
  }
}
.readmore:after {
  content: '';
  width: 26px;
  height: 18px;
  position: absolute;
  bottom: 5px;
  background-repeat: no-repeat;
  background-size: contain;
  margin-left: 10px;
}
@media only screen and (min-width: 1024px) {
  .readmore:after {
    bottom: 10px;
  }
}
.readmore.yellow {
  color: #fcee21;
  border-bottom: 2px solid #fcee21;
}
.readmore.yellow:after {
  background-image: url(/wp-content/themes/nextview2/img/link-arrow.png);
}
.readmore.blue {
  color: #0062ff;
  border-bottom: 2px solid #0062ff;
}
a.readmore.blue:after {
  background-image: url(/wp-content/themes/nextview2/img/blue-arrow.png);
}

/* Header */
#masthead {
  position: fixed;
  top: 0;
  background: transparent;
  width: 100%;
  z-index: 999;
  padding: 20px 0;
  -webkit-transition: 0.25s;
  transition: 0.25s;
  max-width: 100%;
}
#masthead.slideup {
  margin-top: -500px !important;
}
#masthead.blue-back {
  background-color: #0062ff;
}
@media only screen and (max-width: 1023px) {
  #masthead.expand {
    height: 100%;
    background-color: rgba(0, 98, 255, 0.9);
  }
  #masthead.expand .header-grid #site-navigation {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 40px;
    padding: 0;
    margin: 0;
    display: block;
  }
  #masthead.expand .header-grid #site-navigation .menu-primary-menu-container {
    position: absolute;
    left: 0;
    top: 40px;
    height: 100%;
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
            align-items: flex-start;
  }
  #masthead.expand .header-grid #site-navigation .menu-primary-menu-container #primary-menu {
    text-align: left;
  }
  #masthead.expand .header-grid #site-navigation .menu-primary-menu-container #primary-menu li.menu-item {
    margin-left: 0;
    margin-bottom: 1em;
    display: block;
  }
  #masthead.expand .header-grid #site-navigation .menu-primary-menu-container #primary-menu li.menu-item:last-child {
    margin-bottom: 0;
  }
  #masthead.expand .header-grid #site-navigation .menu-primary-menu-container #primary-menu li.menu-item a {
    font-size: 50px;
  }
}
@media only screen and (max-width: 1023px) {
  #masthead .header-grid {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
#masthead .header-grid .site-branding {
  z-index: 999;
}
#masthead .header-grid .site-branding a {
  line-height: 0;
  display: block;
}
#masthead .header-grid .site-branding a img.attachment-home-logo {
  max-width: 150px;
}
@media only screen and (max-width: 1023px) {
  #masthead .header-grid #site-navigation {
    display: none;
  }
}
#masthead .header-grid #site-navigation ul.nav-menu {
  text-align: right;
  margin: 0;
  padding: 0;
}
#masthead .header-grid #site-navigation ul.nav-menu li.menu-item {
  list-style-type: none;
  display: inline-block;
  margin-left: 40px;
  position: relative;
}
#masthead .header-grid #site-navigation ul.nav-menu li.menu-item:first-child {
  margin-left: 0;
}
#masthead .header-grid #site-navigation ul.nav-menu li.menu-item a {
  color: #fff;
  font-size: 18px;
  text-decoration: none;
}
#masthead .header-grid #site-navigation ul.nav-menu li.menu-item.current-menu-item a {
  color: #FCEE21;
  font-weight: 600;
}
.mobile-button-wrap {
  text-align: right;
}
@media only screen and (max-width: 1023px) {
  #masthead .header-grid #site-navigation ul.nav-menu li.menu-item.current-menu-item a {
    text-decoration: underline;
  }
}
@media only screen and (min-width: 1023px) {
  .mobile-button-wrap {
    display: none;
  }
  #masthead .header-grid #site-navigation ul.nav-menu li.menu-item.current-menu-item:after {
    border-bottom: 2px solid #FCEE21;
    width: 100%;
    content: " ";
    display: block;
    position: absolute;
    right: 0;
    -webkit-transition: width 0.3s cubic-bezier(0.645, 0.045, 0.355, 1), left 0ms 0ms;
    transition: width 0.3s cubic-bezier(0.645, 0.045, 0.355, 1), left 0ms 0ms;
  }
  #masthead .header-grid #site-navigation ul.nav-menu li.menu-item:hover a {
    color: #FCEE21;
    -webkit-transition: width 0.3s cubic-bezier(0.645, 0.045, 0.355, 1), left 0ms 0ms;
    transition: width 0.3s cubic-bezier(0.645, 0.045, 0.355, 1), left 0ms 0ms;
  }
  #masthead .header-grid #site-navigation ul.nav-menu li.menu-item:hover:after {
    width: 100%;
    left: 0;
    -webkit-transition: width 0.3s cubic-bezier(0.645, 0.045, 0.355, 1), left 0ms 0.2s;
    transition: width 0.3s cubic-bezier(0.645, 0.045, 0.355, 1), left 0ms 0.2s;
  }
  #masthead .header-grid #site-navigation ul.nav-menu li.menu-item:after {
    border-bottom: 2px solid #FCEE21;
    width: 0;
    content: " ";
    display: block;
    position: absolute;
    right: 0;
    -webkit-transition: width 0.3s cubic-bezier(0.645, 0.045, 0.355, 1), left 0ms 0ms;
    transition: width 0.3s cubic-bezier(0.645, 0.045, 0.355, 1), left 0ms 0ms;
  }
}
.logged-in #masthead {
  margin-top: 32px;
}

/* Mobile Menu */
#nav-button {
  background: transparent;
  padding: 0;
  box-shadow: none;
  border: none;
  z-index: 9999;
}
@media only screen and (min-width: 1024px) {
  #nav-button {
    display: none;
  }
}
#nav-button span.icon-bar {
  width: 26px !important;
  height: 3px !important;
  transition: all 0.2s;
  -webkit-transition: all 0.2s;
  display: block;
  background-color: white;
  border-radius: 2px;
}
#nav-button span.icon-bar.middle-bar {
  margin-top: 5px;
  -webkit-transform: rorate(0deg);
  -ms-transform: rorate(0deg);
  transform: rorate(0deg);
}
#nav-button span.icon-bar.bottom-bar {
  margin-top: 5px;
}
#nav-button.cross span.icon-bar.top-bar {
  -webkit-transform-origin: 10% 10%;
  -ms-transform-origin: 10% 10%;
  transform-origin: 5% 10%;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
#nav-button.cross span.icon-bar.bottom-bar {
  -webkit-transform-origin: 10% 90%;
  -ms-transform-origin: 10% 90%;
  transform-origin: 5% 90%;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
#nav-button.cross span.icon-bar.middle-bar {
  opacity: 0;
}

/* Footer */
footer {
  background-color: #0062ff;
  padding: 20px 0;
}
@media only screen and (min-width: 1024px) {
  footer {
    padding: 60px 0 15px;
  }
}
footer ul {
  margin: 0;
  padding: 0;
}
footer ul li {
  list-style-type: none;
  margin-top: 0.75em;
}
footer ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 1px;
}
footer ul li.social-icon {
  display: inline-block;
  margin: 1.5em 1em 2em 1em;
}
footer ul li.social-icon img {
  max-width: 46px;
}
@media only screen and (min-width: 1024px) {
  footer ul li.social-icon {
    margin: 0.75em 1em 0 0;
  }
  footer ul li.social-icon img {
    max-width: 20px;
  }
}
footer .desk--footer {
  display: none;
}
@media only screen and (min-width: 1024px) {
  footer .desk--footer {
    display: block;
  }
}
footer .desk--footer .grid__item span {
  text-transform: uppercase;
  color: #fff;
  font-weight: bold;
  font-size: 16px;
  letter-spacing: 1px;
  cursor: default;
}
footer .desk--footer p {
  font-size: 14px;
  color: #fff;
  letter-spacing: 1px;
}
footer .desk--footer .subscribe-copy li {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 1px;
}
footer .desk--footer .subscribe-copy li.footer-copy {
  margin-top: 2em;
}
footer .desk--footer .subscribe-copy li a {
  color: #fff;
  text-decoration: none;
}
footer .desk--footer .subscribe-copy li a:hover {
  color: #191970;
}
footer .desk--footer #mc4wp-form-1 {
  margin-top: 1em;
}
footer .mob--footer li.menu-item.menu-item-2317 a {
    display: inline-block;
    margin: 1em 0;
    color: #fff;
    text-decoration: none;
    font-weight: normal;
    text-transform: none;
    font-size: 16px;
}
footer .desk--footer #mc4wp-form-1 .mc4wp-form-fields {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  border: 1px solid white;
  border-radius: 15px;
  padding: 0 10px 0px 0;
	margin-bottom: 5px;
}
footer .desk--footer #mc4wp-form-1 input[type=email] {
  display: inline;
  width: calc(100% - 17px);
  background: transparent;
  color: #fff;
  border: none;
  font-size: 12px;
	padding: 0 0 0 10px;
}
footer .desk--footer #mc4wp-form-1 input[type=email]:focus {
  outline: none;
}
footer .desk--footer #mc4wp-form-1 input[type=text] {
  display: inline;
  width: calc(100% - 17px);
  background: transparent;
  color: #fff;
  border: none;
  font-size: 12px;
}
footer .desk--footer #mc4wp-form-1 input[type=text]:focus {
  outline: none;
}
footer .desk--footer #mc4wp-form-1 ::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #fff;
  font-size: 12px;
}
footer .desk--footer #mc4wp-form-1 ::-moz-placeholder {
  /* Firefox 19+ */
  color: #fff;
  font-size: 12px;
}
footer .desk--footer #mc4wp-form-1 :-ms-input-placeholder {
  /* IE 10+ */
  color: #fff;
  font-size: 12px;
}
footer .desk--footer #mc4wp-form-1 :-moz-placeholder {
  /* Firefox 18- */
  color: #fff;
  font-size: 12px;
}
footer .desk--footer #mc4wp-form-1 input[type=submit] {
  display: inline;
  float: right;
  width: 17px;
  margin: 0;
  color: transparent;
  background: none;
  text-shadow: none;
  border: none;
  box-shadow: none;
  background-image: url(/wp-content/themes/nextview2/img/subscribe-arrow.png);
  background-repeat: no-repeat;
  background-position: center center;
}
footer .mob--footer {
  text-align: center;
}
@media only screen and (min-width: 1024px) {
  footer .mob--footer {
    display: none;
  }
}
footer .mob--footer li.menu-item {
  text-transform: uppercase;
}
footer .mob--footer li.menu-item a {
  font-weight: bold;
  font-size: 26px;
}
footer .mob--footer span {
  display: block;
  margin: 1em 0;
  color: #fff;
}

/* Homepage */
#home-slide .swiper-container {
  width: 100%;
  height: 100vh;
}
#home-slide .swiper-container .swiper-slide {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
#home-slide .swiper-container .swiper-slide h1 {
  color: #fff;
  line-height: 1;
  margin-top: -0.5em;
}
@media only screen and (min-width: 1024px) {
  #home-slide .swiper-container .swiper-slide h1 {
      margin: 0.5em 0!important;
  }
  #home-slide .swiper-container .swiper-slide h1 span {
    display: block;
  }
}
#home-slide .swiper-container .swiper-slide p {
  display: block;
  color: #fff;
  font-size: 30px;
  margin: 0;
}
#home-slide .swiper-container .swiper-slide.desk-slide {
  display: none;
}
@media only screen and (min-width: 1024px) {
  #home-slide .swiper-container .swiper-slide.desk-slide {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media only screen and (min-width: 1024px) {
  #home-slide .swiper-container .swiper-slide.mob-slide {
    display: none;
  }
}
.home footer {
  position: fixed;
  bottom: 0;
  z-index: 999;
  background: transparent;
  width: 100%;
  padding: 5px 0;
}
.home footer .grid.flex {
  -webkit-box-pack: center;  -ms-flex-pack: center;  justify-content: center;
}
.home footer .grid.flex .grid__item {
  text-align: center;
}
.home footer .grid.flex .grid__item li {
  color: #fff;
  display: inline-block;
}
.home footer .grid.flex .grid__item li:first-child {
  margin-right: 2em;
}
.home footer .grid.flex .grid__item li a {
  color: #fff;
  text-decoration: none;
}
.home footer .grid.flex .grid__item li a:hover {
  text-decoration: underline;
}
/* Team Page */
.page-template-page-team {
  /* Modal */
}
.page-template-page-team .team-grid {
  padding-top: 50px;
}
@media only screen and (min-width: 1024px) {
  .page-template-page-team section.team-grid {
    padding-top: 130px;
  }
}
.page-template-page-team .team-grid .partner-grid {
  display: none;
}
@media only screen and (min-width: 1024px) {
  .page-template-page-team .team-grid .partner-grid {
    display: inline-block;
  }
}
.page-template-page-team .team-grid .partner-grid #partner-sidebar {
  -webkit-transition: 0.25s;
  transition: 0.25s;
}
.page-template-page-team .team-grid .partner-grid #partner-sidebar.sticky {
  position: fixed;
  top: 71px;
  background: transparent;
  z-index: 998;
  padding-top: 55px;
}
.page-template-page-team .team-grid .partner-grid #partner-sidebar.zoomaway {
  top: -1000px;
}
.page-template-page-team .team-grid .partner-images #team-desc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.page-template-page-team .team-grid .partner-images #team-desc .desc-outer {
  position: relative;
  width: 100%;
}
.page-template-page-team .team-grid .partner-images #team-desc .desc-outer .desc-wrap {
  width: 100%;
  background: #0062ff;
  padding: 24px;
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media only screen and (min-width: 1024px) {
  .page-template-page-team .team-grid .partner-images #team-desc .desc-outer .desc-wrap {
    padding: 40px;
  }
}
.page-template-page-team .team-grid .partner-images #team-desc .desc-outer .desc-wrap span {
  font-weight: 600;
  color: #fff;
  font-size: 22px;
}
@media only screen and (min-width: 1024px) {
  .page-template-page-team .team-grid .partner-images #team-desc .desc-outer .desc-wrap span {
    display: block;
  }
}
.page-template-page-team .team-grid .partner-images #team-desc .desc-outer .desc-wrap img {
  filter: none;
}
@media only screen and (min-width: 1024px) {
  .page-template-page-team .team-grid .partner-images #team-desc .desc-outer .desc-wrap img {
    display: none;
  }
}
.page-template-page-team .team-grid .partner-images #team-desc .desc-outer .desc-wrap .img-wrap {
  margin-bottom: 50px;
}
@media only screen and (min-width: 1024px) {
  .page-template-page-team .team-grid .partner-images #team-desc .desc-outer .desc-wrap .img-wrap {
    display: none;
  }
  .page-template-page-team .team-grid .partner-images .grid.flex .partner-img:nth-last-child(-n+2) {
    margin-bottom: 0;
  }
}
.page-template-page-team .team-grid .partner-images #team-desc .desc-outer .desc-wrap .img-wrap img {
  width: auto;
}
@media only screen and (min-width: 1024px) {
  .page-template-page-team .team-grid .partner-images #team-desc .desc-outer .blue-square {
    display: none;
  }
}
.page-template-page-team .team-grid .partner-images .partner-img {
  margin-bottom: 24px;
}
.page-template-page-team .team-grid .partner-images .partner-img img {
  -webkit-filter: grayscale(100%);
  -webkit-filter: grayscale(1);
  filter: grayscale(100%);
  filter: url('../img/gray.svg#grayscale');
  filter: gray;
  -webkit-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
  width: 100%
}
.page-template-page-team .team-grid .partner-images .partner-img:hover img {
  filter: none;
}
.page-template-page-team .team-grid .partner-images .partner-img.hovered img {
  filter: none;
}
.page-template-page-team .team-grid .partner-name {
  -webkit-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
  margin-bottom: 1em;
}
.page-template-page-team .team-grid .partner-name.transparent {
  opacity: 0.5;
}
.page-template-page-team .team-grid .partner-name:nth-child(2) {
  margin-top: 1em;
}
.page-template-page-team .who-know.flex {
  -webkit-box-pack: end;-ms-flex-pack: end;justify-content: flex-end;
}
.page-template-page-team .who-know h2 {
  margin: 50px 0;
  text-align: center;
  font-size: 20px;
  margin-right: 13px;
}
@media only screen and (min-width: 1024px) {
  .page-template-page-team .who-know h2 {
    margin: 180px 0;
    font-size: 30px;
    margin-right: 18px;
  }
}
.page-template-page-team .team-grid .modal-link {
  text-decoration: none;
}
.page-template-page-team .team-grid .modal-link.img-modal {
  display: block;
}
@media only screen and (min-width: 1024px) {
  .page-template-page-team .team-grid .modal-link.img-modal {
    line-height: 0;
  }
}
@media only screen and (min-width: 1024px) {
  .page-template-page-team .team-grid .modal-link.img-modal .mobile-byline {
    display: none;
  }
}
.page-template-page-team .name-line {
  color: #4d4d4d;
  font-weight: bold;
  font-size: 22px;
  line-height: 1;
  display: block;
}
.page-template-page-team .title-line {
  color: #0062ff;
}
.page-template-page-team #advisors .header-grid {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
.page-template-page-team #advisors h2.advisors-header {
  display: inline-block;
  position: relative;
  padding-right: 1em;
  cursor: pointer;
  color: #0062ff;
}
.page-template-page-team #advisors h2.advisors-header:after {
  content: "";
  width: 10px;
  height: 18px;
  background-image: url(/wp-content/themes/nextview2/img/advisors-carat.png);
  position: absolute;
  right: 0;
  top: 9px;
  background-repeat: no-repeat;
  transition: 0.5s;
}
.page-template-page-team #advisors.selected h2.advisors-header:after {
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}
/*
.page-template-page-team #advisors #advisors-grid {
  display: none;
}
*/
.page-template-page-team #advisors #advisors-grid #advisors-sidebar li {
  margin-bottom: 0.5em;
}
.page-template-page-team #advisors #advisors-grid #advisors-images h3 {
  margin-top: 0;
  font-weight: normal;
  font-size: 17px;
  color: #4D4D4D;
}
@media only screen and (min-width: 1024px) {
  .page-template-page-team #advisors #advisors-grid #advisors-images h3 {
    display: block;
  }
}
.page-template-page-team #advisors #advisors-grid #advisors-images .grid__item {
  margin-bottom: 24px;
}
.page-template-page-team #advisors #advisors-grid #advisors-images .grid__item img {
  width: 100%;
}
.page-template-page-team .fancybox-overlay {
  background: #fff;
  background-image: none;
}
.page-template-page-team .fancybox-skin {
  box-shadow: none;
  background: #fff;
}
.page-template-page-team .fancybox-skin .fancybox-inner {
  height: auto !important;
}
.page-template-page-team .fancybox-close {
  display: none;
}
.page-template-page-team .bio-modal-content h2 {
  font-size: 35px;
  color: #4d4d4d;
  margin-bottom: 0;
}
.page-template-page-team .bio-modal-content span {
  color: #0062ff;
  font-weight: 200;
  line-height: 1em;
}
.page-template-page-team .bio-modal-content .top-wrapper {
  margin-bottom: 0.5em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.page-template-page-team .bio-modal-content .top-wrapper div {
  line-height: 0;
}
.page-template-page-team .bio-modal-content ul.bio-social-links {
  margin: 0;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media only screen and (min-width: 1024px) {
  .page-template-page-team .bio-modal-content ul.bio-social-links {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
}
.page-template-page-team .bio-modal-content ul.bio-social-links li {
  list-style-type: none;
  display: inline-block;
  margin: 0 20px;
}
.page-template-page-team .bio-modal-content ul.bio-social-links li:first-child {
  margin-left: 0;
}

/* Companies Page */
/*Investment Grid */
.investment-grid {
  padding: 50px 0;
}
@media only screen and (min-width: 1024px) {
  .investment-grid {
    padding: 150px 0 180px 0;
  }
}
.investment-grid .wrapper {
  position: relative;
}
.investment-grid #filters {
  margin-bottom: 2em;
  text-align: center;
}
@media only screen and (min-width: 1024px) {
  .investment-grid #filters {
    margin-bottom: 50px;
  }
}
.investment-grid #filters button {
  font-size: 22px;
  background: none;
  box-shadow: none;
  border: none;
  color: #4d4d4d;
  padding-bottom: 4px;
}
.investment-grid #filters button.is-checked {
  color: #0062ff;
}
.investment-grid #filters button.is-checked span {
  border-bottom: 1px solid #0062ff;
}
.investment-grid #filters button:focus {
  outline: none;
}
.investment-grid .grid__item .inv-acquired-ribbon {
  opacity: 0;
  line-height: 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.investment-grid .grid__item .investment-inner {
  position: relative;
  -webkit-box-shadow: -3px 2px 5px #bababa;
  box-shadow: -3px 2px 5px #bababa;
}
.investment-grid .grid__item .investment-inner .grid-caption {
  position: absolute;
  opacity: 0;
  bottom: 0;
  background-color: rgba(0, 98, 255, 0.9);
  color: #fff;
  -webkit-transition: all 0.6s ease;
  transition: all 0.6s ease;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  padding: 10px;
  width: 100%;
}
.investment-grid .grid__item .investment-inner .grid-caption span {
  display: block;
}
.investment-grid .grid__item .investment-inner .grid-caption .inv-name {
  font-size: 28px;
  font-weight: bold;
  line-height: 1.2em;
}
.investment-grid .grid__item .investment-inner .grid-caption .acquired-by {
  text-transform: uppercase;
  font-size: 12px;
  font-weight: bold;
  letter-spacing: 1px;
  margin-bottom: 1em;
}
@media only screen and (min-width: 1024px) {
  .investment-grid .grid__item .investment-inner:hover .grid-caption {
    opacity: 1;
  }
}
.investment-grid .grid__item .investment-inner .taphover.hover .grid-caption {
  opacity: 1;
}
.investment-grid .grid__item.exit .investment-inner .taphover.hover .inv-acquired-ribbon {
  opacity: 0;
  line-height: 0;
}
.investment-grid .grid__item.exit .inv-acquired-ribbon {
  position: absolute;
  line-height: 1;
  opacity: 1;
  bottom: 0;
  width: 100%;
  text-align: center;
  color: #fff;
  background: #0062ff;
  padding: 6px 0;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 1px;
}
.investment-grid .grid__item .investment-inner .inv-modal-link {
    position: absolute;
    z-inidex: 99999;
    z-index: 9999;
    height: 100%;
    width: 100%;
}
@media only screen and (min-width: 1024px) {
  .investment-grid .grid__item .investment-inner .inv-modal-link {
    display: none;
  }
}
.page-template-page-companies .fancybox-skin {
    background: rgba(0,98,255,0.8);
    padding: 20px;
    color: #fff;
}
.page-template-page-companies .fancybox-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
          align-items: center;
  max-width: 100%;
}
.page-template-page-companies .fancybox-skin span {
  display: block;
}
.page-template-page-companies .fancybox-skin .inv-name {
  font-size: 40px;
  font-weight: bold;
}
.page-template-page-companies .fancybox-skin .acquired-by {
  font-size: 22px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 0.5em;
}
.page-template-page-companies .fancybox-skin .inv-desc {
  font-size: 20px;
}
.page-template-page-companies .investment-inner-modal {
  width: 100%;
}
.page-template-page-companies .fancybox-skin .fancybox-close {
  display: none;
}
.page-template-page-companies .investment-inner-modal .modal-close {
  position: absolute;
  right: 0;
  top: 0;
}
.page-template-page-companies .investment-inner-modal .modal-close img {
  max-width: 25px;
}
.investment-grid .grid__item.exit .investment-inner:hover .inv-acquired-ribbon {
  opacity: 0;
  line-height: 0;
}
.investment-grid .slick-slider {
  position: static;
  margin-left: -40px;
}
.investment-grid .grid__item {
  margin-bottom: 40px;
  padding-left: 40px;
}
.investment-grid .slick-prev, .investment-grid .slick-next,
.investment-grid .slick-prev, .investment-grid .slick-prev {
  display: none!important;
}
@media only screen and (min-width: 1024px) {
  .investment-grid .slick-prev, .investment-grid .slick-next,
  .investment-grid .slick-prev, .investment-grid .slick-prev {
   display: inline-block!important;
  }
}
.investment-grid .slick-prev, .investment-grid .slick-next {
  width: 27px;
  height: 51px;
  margin-top: -39px;
  box-shadow: none;
}
.investment-grid .slick-prev:before, .investment-grid .slick-next:before {
  content: '';
  width: 27px;
  display: block;
  height: 51px;
  background-size: contain;
}
.investment-grid .slick-prev:focus, .investment-grid .slick-next:focus {
  outline: none;
  box-shadow: none;
}
.investment-grid .slick-next {
  right: -40px;
}
.investment-grid .slick-next:before {
  background-image: url(/wp-content/themes/nextview2/img/inv-grid-next.png);
}
.investment-grid .slick-prev {
  left: -40px;
}
.investment-grid .slick-prev:before {
  background-image: url(/wp-content/themes/nextview2/img/inv-grid-prev.png);
}
.investment-grid .slick-dots {
  margin: 0;
  margin-left: -20px;
}
.investment-grid .slick-dots li button {
  box-shadow: none;
}
.investment-grid .slick-dots li button:before {
  font-size: 14px;
}
.investment-grid .slick-dots li.slick-active button:before {
  color: #0062ff;
}

/* Approach */
.page-template-page-approach #page-banner h1 span {
  display: inline;
}
.page-template-page-approach #philosophy {
  padding: 50px 0;
}
@media only screen and (min-width: 1024px) {
  .page-template-page-approach #philosophy {
    padding: 120px 0;
  }
}
.page-template-page-approach #philosophy h2 {
  color: #0062ff;
  font-size: 50px;
}
.page-template-page-approach #philosophy p {
  color: #969696;
  font-size: 20px;
}
@media only screen and (min-width: 1024px) {
  .page-template-page-approach #philosophy p {
    font-size: 30px;
  }
}
.page-template-page-approach #philosophy .readmore {
  font-weight: bold;
}
.page-template-page-approach #economy-sectors {
  color: #fff;
  position: relative;
}
.page-template-page-approach #economy-sectors #economy-submenu {
  display: none;
}
@media only screen and (min-width: 1024px) {
  .page-template-page-approach #economy-sectors #economy-submenu {
    position: absolute;
    top: 40px;
    width: 100%;
    z-index: 99;
    top: 80px;
    display: block;
  }
}
.page-template-page-approach #economy-sectors #economy-submenu ul {
  padding: 0;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
  justify-content: space-around;
}
.page-template-page-approach #economy-sectors #economy-submenu ul li {
  color: #fff;
  display: inline-block;
  margin: 0 1em;
  cursor: pointer;
  position: relative;
}
.page-template-page-approach #economy-sectors #economy-submenu ul li.selected:after {
  border-bottom: 2px solid #fff;
  width: 100%;
  content: " ";
  display: block;
  position: absolute;
  left: 0;
  -webkit-transition: width 0.2s cubic-bezier(0.645, 0.045, 0.355, 1), left 0ms 0ms;
  transition: width 0.2s cubic-bezier(0.645, 0.045, 0.355, 1), left 0ms 0ms;
}
.page-template-page-approach #economy-sectors #economy-submenu ul li.selected.left:after {
  right: 0;
  left: auto;
}
.page-template-page-approach #economy-sectors #economy-submenu ul li:hover {
  -webkit-transition: width 0.2s cubic-bezier(0.645, 0.045, 0.355, 1), left 0ms 0ms;
  transition: width 0.2s cubic-bezier(0.645, 0.045, 0.355, 1), left 0ms 0ms;
}
.page-template-page-approach #economy-sectors #economy-submenu ul li:hover:after {
  width: 100%;
  left: 0;
  -webkit-transition: width 0.2s cubic-bezier(0.645, 0.045, 0.355, 1), left 0ms 0.2s;
  transition: width 0.2s cubic-bezier(0.645, 0.045, 0.355, 1), left 0ms 0.2s;
}
.page-template-page-approach #economy-sectors #economy-submenu ul li:after {
  border-bottom: 2px solid #fff;
  width: 0;
  content: " ";
  display: block;
  position: absolute;
  right: 0;
  -webkit-transition: width 0.2s cubic-bezier(0.645, 0.045, 0.355, 1), left 0ms 0ms;
  transition: width 0.2s cubic-bezier(0.645, 0.045, 0.355, 1), left 0ms 0ms;
}
.page-template-page-approach #economy-sectors #eco-sector-slider .eco-slide {
  background-size: cover;
  background-position: center center;
  padding: 40px 0;
  height: auto;
}
.page-template-page-approach #economy-sectors #eco-sector-slider .eco-slide-desk {
  display: none;
}
@media only screen and (min-width: 1024px) {
  .page-template-page-approach #economy-sectors #eco-sector-slider .eco-slide-desk {
    display: block;
  }
  .page-template-page-approach #economy-sectors #eco-sector-slider .eco-slide-mob {
    display: none;
  }
}
.page-template-page-approach #economy-sectors #eco-sector-slider .eco-slide .grid {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
          align-items: flex-start;
}
@media only screen and (min-width: 1024px) {
  .page-template-page-approach #economy-sectors #eco-sector-slider .eco-slide .grid {
    margin-top: 130px;
    margin-bottom: 100px;
  }
}
.page-template-page-approach #economy-sectors #eco-sector-slider .eco-slide .wrapper {
  -webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
  -moz-box-sizing: border-box;    /* Firefox, other Gecko */
  box-sizing: border-box;         /* Opera/IE 8+ */
}
.page-template-page-approach #economy-sectors #eco-sector-slider .eco-slide h3 {
    font-size: 45px;
    text-align: center;
}
@media only screen and (min-width: 1024px) {
  .page-template-page-approach #economy-sectors #eco-sector-slider .eco-slide h3 {
    font-size: 50px;
    font-weight: bold;
    margin-bottom: 0;
    display: block;
    text-align: left;
  }
}
.page-template-page-approach #economy-sectors #eco-sector-slider .eco-slide span {
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  margin: 0 auto 1em auto;
  display: block;
  text-transform: uppercase;
  letter-spacing: 1px;
}
@media only screen and (min-width: 1024px) {
  .page-template-page-approach #economy-sectors #eco-sector-slider .eco-slide span {
    display: inline-block;
    margin: 0 0 1em 0;
    font-size: 16px;
    font-weight: normal;
    letter-spacing: 0;
  }
}
.page-template-page-approach #economy-sectors #eco-sector-slider .eco-slide img {
  display: block;
  margin: 0 auto 2em auto;
}
@media only screen and (min-width: 1024px) {
  .page-template-page-approach #economy-sectors #eco-sector-slider .eco-slide img {
    margin: 0;
  }
}
.page-template-page-approach #economy-sectors #eco-sector-slider .eco-slide h4 {
  text-transform: uppercase;
  font-size: 24px;
  font-weight: bold;
  letter-spacing: 4px;
}
@media only screen and (min-width: 1024px) {
  .page-template-page-approach #economy-sectors #eco-sector-slider .eco-slide h4 {
    letter-spacing: 3px;
    font-size: 28px;
  }
}
.page-template-page-approach #economy-sectors #eco-sector-slider .eco-slide ul {
  margin: 0;
  padding-left: 20px;
}
.page-template-page-approach #economy-sectors #eco-sector-slider .eco-slide ul li {
  list-style-image: url(/wp-content/themes/nextview2/img/eco-slide-bullet.png);
  margin-bottom: 1em;
}
.page-template-page-approach #economy-sectors #eco-sector-slider .eco-slide ul li a {
  font-size: 26px;
  color: #fff;
  text-decoration: none;
  padding-left: 5px;
}
@media only screen and (min-width: 1024px) {
  .page-template-page-approach #economy-sectors #eco-sector-slider .eco-slide ul li a {
    font-size: 30px;
  }
}
.page-template-page-approach #economy-sectors #eco-sector-slider .swiper-button-prev {
  display: none;
}
@media only screen and (min-width: 1024px) {
  .page-template-page-approach #economy-sectors #eco-sector-slider .swiper-button-prev {
    left: 50px;
    background-image: url("/wp-content/themes/nextview2/img/eco-slide-prev.png");
    display: block;
  }
}
.page-template-page-approach #economy-sectors #eco-sector-slider .swiper-button-next {
  display: none;
}
@media only screen and (min-width: 1024px) {
  .page-template-page-approach #economy-sectors #eco-sector-slider .swiper-button-next {
    right: 50px;
    background-image: url("/wp-content/themes/nextview2/img/eco-slide-next.png");
    display: block;
  }
}
@media only screen and (min-width: 1024px) {
  .page-template-page-approach #economy-sectors #eco-sector-slider .swiper-pagination {
    display: none;
  }
}
.page-template-page-approach #economy-sectors #eco-sector-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
}
.page-template-page-approach #economy-sectors #eco-sector-slider .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #fff;
  opacity: 0.8;
}
.page-template-page-approach #pitchdeck {
  padding: 50px 0;
}
@media only screen and (min-width: 1024px) {
  .page-template-page-approach #pitchdeck {
    padding: 150px 0;
  }
}
.page-template-page-approach #pitchdeck .grid.flex {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.page-template-page-approach #pitchdeck .grid.flex h2 {
  color: #0062ff;
}
.page-template-page-approach #pitchdeck .grid.flex .grid__item {
  text-align: center;
}
@media only screen and (min-width: 1024px) {
  .page-template-page-approach #pitchdeck .grid.flex h2 {
    font-size: 50px;
  }
  .page-template-page-approach #pitchdeck .grid.flex h2 span {
    display: block;
  }
}
.page-template-page-approach #pitchdeck .grid.flex iframe {
  margin: 50px 0;
}
@media only screen and (min-width: 1024px) {
  .page-template-page-approach #pitchdeck .grid.flex iframe {
    margin: 75px 0 200px;
  }
}
.page-template-page-approach #what-we-do .grid.flex {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.page-template-page-approach #what-we-do .grid.flex .grid__item {
  text-align: center;
}
@media only screen and (min-width: 1024px) {
  .page-template-page-approach #what-we-do .grid.flex .grid__item {
    margin: 40px 0;
  }
}
@media only screen and (min-width: 1024px) {
  .page-template-page-approach #what-we-do .grid.flex .grid__item h2 {
    font-size: 50px;
  }
}
.page-template-page-approach #what-we-do .grid.flex .grid__item h3 {
  color: #4d4d4d;
  text-transform: uppercase;
  letter-spacing: 1px;
}
@media only screen and (min-width: 1024px) {
  .page-template-page-approach #what-we-do .grid.flex .grid__item h3 {
    font-size: 26px;
  }
}
.page-template-page-approach #what-we-do .grid.flex .grid__item p {
  line-height: 1.25em;
  color: #969696;
}
@media only screen and (min-width: 1024px) {
  .page-template-page-approach #what-we-do .grid.flex .grid__item p {
    font-size: 22px;
  }
}
.page-template-page-approach #what-we-do .grid.flex .grid__item h4 {
  font-weight: bold;
  color: #4d4d4d;
  font-size: 25px;
  margin-right: 10px;
}
@media only screen and (min-width: 1024px) {
  .page-template-page-approach #what-we-do .grid.flex .grid__item h4 {
    font-size: 40px;
    margin-right: 13px;
  }
}
.page-template-page-approach #what-we-do .grid.flex .grid__item h4 a.readmore {
  font-weight: bold;
  font-size: 25px;
}
a.readmore.blue:after {
    bottom: 10px;
    background-image: url('/wp-content/themes/nextview2/img/blue-arrow-next-sm.png');
}
@media only screen and (min-width: 1024px) {
  .page-template-page-approach #what-we-do .grid.flex .grid__item h4 a.readmore {
    font-size: 40px;
  }
  .page-template-page-approach #what-we-do .grid.flex .grid__item h4 a.readmore:after {
    bottom: 15px;
  }
  a.readmore.blue:after {
    background-image: url('/wp-content/themes/nextview2/img/blue-arrow.png');
  }
}
@media only screen and (min-width: 1024px) {
  .page-template-page-approach #what-we-do {
    padding-bottom: 150px;
  }
}

.page-template-page-start #page-banner p {
  margin-bottom: 1.5em;
}
.page-template-page-start #page-banner a {
  color: #fcee21;
  text-decoration: none;
  font-weight: bold;
}
.page-template-page-start #start-grid {
  padding: 50px 0;
}
@media only screen and (max-width: 1023px) {
  .page-template-page-start #start-grid .grid__item {
    margin-bottom: 24px;
  }
}
@media only screen and (min-width: 1024px) {
  .page-template-page-start #start-grid {
    padding: 175px 0 180px 0;
  }
}
.page-template-page-start #start-grid .grid.start-row {
  margin-bottom: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media only screen and (min-width: 1024px) {
  .page-template-page-start #start-grid .grid.start-row {
    margin-bottom: 105px;
  }
}
.page-template-page-start #start-grid .grid.start-row .start-inner {
  position: relative;
}
.page-template-page-start #start-grid .grid.start-row .start-inner img {
  width: 100%;
}
.page-template-page-start #start-grid .grid.start-row .start-inner .start-image-overlay {
  position: absolute;
  padding: 20px;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  top: 0;
  left: 0;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.page-template-page-start #start-grid .grid.start-row .start-inner .start-image-overlay p {
  color: #fff;
  font-size: 20px;
  text-align: center;
}
.page-template-page-start #start-grid .grid.start-row .start-inner .start-image-overlay p a {
  color: #fcee21;
  border-bottom: 2px solid #fcee21;
  font-size: 20px;
  font-weight: bold;
  text-decoration: none;
  position: relative;
}
.page-template-page-start #start-grid .grid.start-row .start-inner .start-image-overlay p a:after {
  content: '';
  width: 20px;
  height: 13px;
  position: absolute;
  bottom: 6px;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url(/wp-content/themes/nextview2/img/link-arrow-sm.png);
  right: -25px;
}
.page-template-page-start #start-grid .grid.start-row .start-inner .start-image-overlay blockquote p {
  font-size: 15px;
}
.page-template-page-start #start-grid .grid.start-row .start-inner-text h3 {
  font-size: 32px;
  color: #0062ff;
  font-weight: bold;
  margin: 0;
}
.page-template-page-start #start-grid .grid.start-row .start-inner-text p {
  color: #969696;
  font-size: 20px;
  line-height: 2em;
  margin-bottom: 0;
}
.page-template-page-start #start-grid .explore-resources h2 {
  text-align: center;
  font-size: 30px;
  margin: 0;
}
.page-template-page-start #start-grid .explore-resources h2 a {
  font-weight: bold;
  font-size: 30px;
}
.page-template-page-start #start-grid .explore-resources h2 a:after {
  bottom: 10px;
}
/* Contact Page */
.page-template-page-contact #offices {
  padding: 50px 0;
}
@media only screen and (min-width: 1024px) {
  .page-template-page-contact #offices {
    padding: 90px 0;
  }
  .page-template-page-start #start-grid .explore-resources h2 {
    margin-top: 75px;
  }
}
.page-template-page-contact #offices h3 {
  font-size: 30px;
  color: #0062ff;
  margin-top: 0;
}
.page-template-page-contact #offices a {
  font-size: 32px;
  font-weight: normal;
  color: #4d4d4d;
  text-decoration: none;
  border-bottom: 1px solid #4d4d4d;
}
.page-template-page-contact #offices a.readmore.blue {
  font-size: 20px;
  font-weight: 600;
  display: inline-block;
  margin-top: 2em;
  text-decoration: none;
  color: #0062ff;
}
.page-template-page-contact #offices p {
  margin: 0;
}
.page-template-page-contact #offices .grid__item:first-child {
  margin-bottom: 100px;
}
@media only screen and (min-width: 1024px) {
  .page-template-page-contact #offices .grid__item:first-child {
    margin-bottom: 0;
  }
}
/* Blog Template */
/* Subscribe Box */
.subscribe {
  padding: 50px 0;
}
.subscribe-grid {
  background-color: #01C1D9;
  -webkit-box-pack: center;  -ms-flex-pack: center;  justify-content: center;
  margin-top: 1em;
}
.subscriber-byline {
  font-family: "proxima-nova";
  color: #fff;
  font-size: 16px;
  line-height: 1.5em;
  text-align: center;
    margin: 0 0 30px 0;
}
.subscribe h3 {
  color: #fff;
  font-size: 36px;
  margin: 0 0 30px 0;
  text-align: center;
}
.partners h1 {
  font-size: 19px;
}
#subscribe-menu-header {
  margin-bottom: 17.5px;
 }
 .subscribe-nav-byline p {
  color: #fff!important;
  font-family: 'Montserrat';
  font-size: 14px;
 }
.subscribe #mc_embed_signup .clear {
  text-align: center;
}
.subscribe #mc_embed_signup .clear #mc-embedded-subscribe {
  background-color: #fff!important;
}
/* Mailchimp Embedded Form Style*/

#mc4wp-form-1,
#mc_embed_signup {
  margin-top: 22px;
}
#mc_embed_signup form {
    padding: 0!important;
}
#mc4wp-form-1 input[type="submit"],
#mc_embed_signup input[type="submit"] {
  color: #0038B0;
  height: 100%!important;
  border-radius: 0px!important;
    font-family: "proxima-nova";
}
#mc4wp-form-1 input,
#mc_embed_signup input {
  font-size: 14px;
}
.mc4wp-form ::-webkit-input-placeholder,
#mc_embed_signup ::-webkit-input-placeholder {
  color: #fff;
    font-family: "proxima-nova"!important;
}
.mc4wp-form :-moz-placeholder,
#mc_embed_signup :-moz-placeholder { /* Mozilla Firefox 4 to 18 */
   color:    #fff;
   opacity:  1;
    font-family: "proxima-nova"!important;
}
.mc4wp-form ::-moz-placeholder,
#mc_embed_signup ::-moz-placeholder { /* Mozilla Firefox 19+ */
   color:    #fff;
   opacity:  1;
    font-family: "proxima-nova"!important;
}
.mc4wp-form :-ms-input-placeholder,
#mc_embed_signup :-ms-input-placeholder { /* Internet Explorer 10-11 */
   color:    #fff;
}
.mc4wp-form input[type="submit"],
#mc_embed_signup input[type="submit"] {
  color: #01C1D9;
  text-transform: uppercase;
    font-family: "proxima-nova"!important;
}
.mc4wp-form select,
#mc_embed_signup select {
  width: 100%;
    font-family: "proxima-nova"!important;
    font-size: 15px;
    padding: 7px 0;
}
#mc_embed_signup {
  background: transparent!important;
}
#mc_embed_signup .mc-field-group,
#mc_embed_signup .mc-field-group select {
  width: 100%!important;
}
#mce-responses {
  width: 100%!important;
  margin: 0px!important;
}
#mce-success-response,
#mce-error-response {
    width: 100%!important;
    line-height: 1.5em!important;
    margin: 0 0 1em 0!important;
    padding: 0!important;
    color: #fff!important;
}
.page-template-page-resources .subscribe {
  margin: 50px 0;
}
#mc4wp-form-1 .mc4wp-alert {
  color: #fcee21;
  margin-top: 1em;
}
/* Subnav */
.archive-page #masthead {
  background-color: #0062ff;
}
.archive-page .subnav {
  margin-top: 71px;
  background: #EDEBEB;
  padding: 8px 0;
  margin-bottom: 30px;
}
.archive .subnav {
  margin-bottom: 0;
}
.archive .page-title {
  text-align: center;
}
.archive .page-header {
    background-color: #0062ff;
    margin-top: 0px!important;
    background-image: url(/wp-content/themes/nextview2/img/crossstitch_1x.png);
    margin-bottom: 30px;
}
.archive .page-header h1 {
  padding: 65px 0;
  font-size: 55px;
  text-align: center;
  color: #fff;
  margin: 0;
}
.archive .archive-grid {
  -webkit-box-pack: center;  -ms-flex-pack: center;  justify-content: center;
}
@media only screen and (max-width: 1024px) {
  .subnav {
    display: none;
  }
}
#subnav-menu {
  margin: 0;
  padding: 0;
}
#subnav-menu li.menu-item {
  display: inline-block;
  margin-right: 1em;
}
#subnav-menu li.menu-item:last-child {
  margin-right: 0;
}
#subnav-menu li.menu-item a {
  color: #4D4D4D;
  text-decoration: none;
}
#subnav-menu li.menu-item:hover {
  text-decoration: underline;
}
.subnav .right-half {
  text-align: right;
}
.subnav .right-half ul {
  margin: 0;
  padding: 0;
}
.subnav .right-half ul li {
  display: inline-block;
  margin-right: 1em;
}
.subnav .right-half ul li:last-child {
  margin-right: 0;
}
.subnav .right-half ul li img {
  vertical-align: middle;
}
/* Blog Widgets */
#text-6 .textwidget .resources-inner {
  background: url(/wp-content/themes/nextview2/img/resources-side-banner.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-content: center;
  -ms-flex-line-pack: center;
  align-content: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  text-align: center;
  padding: 60px 20px;
}
#text-6 .resources-inner h3 {
    font-size: 40px;
    color: #fff;
    font-weight: normal!important;
    margin: 0px;
}
#text-6 .textwidget .subhead {
    color: #fff;
    font-size: 24px;
    line-height: 1.0em;
}
#text-6 .textwidget .resource-btn {
  color: #fff;
  margin: 15px auto;
  border: 1px solid white;
  padding: 5px 10px;
  max-width: 180px;
  text-shadow: 0 0 black;
  text-decoration: none;
  display: block;
}
#categories-4 {
  background-color: #F7F7F7;
  padding: 20px 20px 50px 20px;
}
#categories-4 h3 {
  margin-top: 0;
  margin-bottom: 0.5em;
}
#categories-4 ul {
  padding: 0;
  margin: 0;
}
#categories-4 ul li {
  list-style-type: none;
}
#categories-4 ul li a {
  color: #404040;
  text-decoration: none;
}
#categories-4 ul li a:hover {
  text-decoration: underline;
}
.widget_traction {
  background: url(/wp-content/themes/nextview2/img/rsrc-traction-background.png);
  background-repeat: no-repeat;
  background-size: cover;
  padding: 30px 20px 70px 20px;
}
.widget_traction h3 {
  margin-top: 0px;
  color: #fff;
  font-size: 16px;
  margin-bottom: 20px;
}
.widget_traction ul {
  padding: 0;
  margin: 0;
}
.widget_traction ul li {
  margin-bottom: 1em;
  list-style-type: none;
}
.widget_traction ul li a {
  color: #fff;
  text-decoration: none;
}
.widget_traction ul li a:hover {
  text-decoration: underline;
}
/* Author Info */
.byline-gravatar {
  margin-right: 10px;
}
.post-byline p {
  font-size: 14px;
}
.post-byline p a {
  text-decoration: none;
}
.single .post-byline p {
  margin: 0 0 0.75em;
}
.shareaholic-share-buttons-wrapper.shareaholic-ui {
  margin-left: -10px!important;
}
.byline-gravatar img {
  border-radius: 50%;
  vertical-align: middle;
}
.author-bio {
  background: #EDEBEB;
  padding: 45px 60px;
}
.author-gravatar img {
  border-radius: 50%;
}
.author-bio p {
  font-size: 16px;
  line-height: 1.5em;
}
.author-bio h4 {
  margin-top: 0.5em;
}
.author-gravatar {
  text-align: center;
  margin-bottom: 50px;

}
.author-socials {
  margin-top: 50px;
}
.author-social {
  list-style-type: none;
  display: inline;
  margin: 0 10px;
}
.author-social:first-child {
  margin-left: 0px;
}
.author-social:last-child {
  margin-right: 0px;
}
.author-social img {
  vertical-align: baseline;
}
.author-social a {
  font-weight: bold;
  font-size: 16px;
  color: #333333;
}
.author-social a:hover,
.author-social a:visited,
.author-social a:focus {
  text-decoration: none;
  color: #333;
}
/* Author Pages */
.author-bio-top {
  background-color: #FAFAFA;
  color: #333333;
  font-size: 16px;
  padding-top: 25px;
  padding-bottom: 25px;
}
.author-bio-top .author-name {
  text-align: center;
  margin-top: 25px;
  margin-bottom: 25px;
}
.author-bio-top .author-gravatar {
  text-align: center;
  margin-bottom: 0px;
}
.author-bio-top .author-socials {
  text-align: center;
}
.page-template-default #page-banner,
.error404 #page-banner {
  height: auto;
  padding-top: 71px;
  background-color: #0062ff;
}
.page-template-default #masthead,
.error404 #masthead {
  background-color: #0062ff;
}
.page-template-default.home #masthead {
  background-color: transparent;
}
.page-template-default.home #masthead.expand {
    background-color: rgba(0, 98, 255, 0.9);
}
.page-template-default .entry-content,
.error404 .entry-content {
  min-height: 50vh;
}