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

/**
 * 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: 680px) {
  /**
   * 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: 681px) 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%;
  }
}
@media only screen and (min-width: 1300px) {
  /**
   * Whole
   */
  .xldesk--one-whole {
    width: 100%;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .xldesk--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: 1780px;
  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: 680px) {
  #media-banner {
    background: yellow;
  }
}
@media only screen and (min-width: 681px) and (max-width: 1023px) {
  #media-banner {
    background: purple;
  }
}
@media only screen and (min-width: 1024px) {
  #media-banner {
    background: blue;
  }
}
@media only screen and (min-width: 1300px) {
  #media-banner {
    background: pink;
  }
}

@media only screen and (max-width: 1023px) {
  .hide-portable {
    display: none;
  }
}

.show-portable {
  display: none;
}
@media only screen and (max-width: 1023px) {
  .show-portable {
    display: block;
  }
}

/*--------------------------------------------------------------
# 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;
  background: #f2f2f3;
}

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
--------------------------------------------------------------*/
body,
button,
input,
select,
textarea {
  color: #404040;
  font-family: sans-serif;
  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;
}

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

a:visited {
  color: purple;
}

a:hover,
a:focus,
a:active {
  color: #dead70;
}

a:focus {
  outline: thin dotted;
}

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

/*--------------------------------------------------------------
## Menus
--------------------------------------------------------------*/

.hover_effect{
  visibility: visible !important;
  opacity: 1 !important;
}

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

.flexparent {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media only screen and (max-width: 680px) {
  .flexparent {
    display: block;
  }
}

.no-border {
  margin-bottom: 0 !important;
}

a {
  -webkit-transition: color 0.3s ease;
  -moz-transition: color 0.3s ease;
  -ms-transition: color 0.3s ease;
  -o-transition: color 0.3s ease;
  transition: color 0.3s ease;
}

body {
  color: #4d4d4f;
  /*background:url(../img/bedge-grunge.png) 0 0 repeat;*/
  font-family: 'Merriweather', serif;
  font-style: normal;
  font-weight: 300;
}

body p{
  line-height: 1.7em;
}

@media only screen and (min-width: 1300px) {
  body {
    /*font-size: 34px !important;*/
  }
}
@media only screen and (min-width: 1024px) {
  body {
    font-size: 18px;
  }
}
@media only screen and (min-width: 681px) and (max-width: 1023px) {
  body {
    font-size: 16px;
  }
}
@media only screen and (max-width: 680px) {
  body {
    font-size: 14px;
  }
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Arimo', sans-serif;
  font-style: Normal;
  font-weight: 700;
}

/******************************
Header
*******************************/
#page-header {
  margin-top: 20px;
}

.site-branding h1.site-title {
  margin-top: 0;
  position: relative;
  top: -10px;
}
.site-branding h1.site-title img {
  max-width: 36%;
  position: relative;
  top: -28px;
}
.site-branding p.site-title {
  margin-top: 0;
}
.site-branding p.site-title img {
  max-width: 76%;
}
@media only screen and (min-width: 1300px) {
  .site-branding p.site-title img {
    max-width: 70%;
  }
}

#dektop-nav {
  text-align: center;
  padding-top: 60px;
}

#dektop-nav .fiber-nav{
  position: relative;
  top: 22px;
}

#dektop-nav .fiber-nav ul.menu {
  margin: 0 auto;
  padding: 0;
  list-style: none;
}
#dektop-nav .fiber-nav ul.menu li {
  display: inline-block;
  margin: 0 9%;
}
#dektop-nav .fiber-nav ul.menu li a {
  color: #4d4d4f;
  text-decoration: none;
  -webkit-transition: color 0.3s ease;
  -moz-transition: color 0.3s ease;
  -ms-transition: color 0.3s ease;
  -o-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
#dektop-nav .fiber-nav ul.menu li a:hover {
  color: #dead70;
}
@media only screen and (min-width: 1300px) {
  #dektop-nav .fiber-nav ul.menu li a {
    /*font-size:26px !important;*/
  }
}
@media only screen and (min-width: 1024px) {
  #dektop-nav .fiber-nav ul.menu li a {
    font-size: 20px;
  }
}
#dektop-nav .fiber-nav ul.menu li.current-menu-item > a {
  color: #dead70;
}
#dektop-nav .fiber-nav ul.menu li.current-page-ancestor > a {
  color: #dead70;
}
#dektop-nav .fiber-nav ul > li {
  position: relative;
}
#dektop-nav .fiber-nav ul > li:hover ul {
  visibility: visible;
  opacity: 1;
}
#dektop-nav .fiber-nav ul ul.sub-menu {
  /*display: none;*/
  visibility: hidden;
  opacity: 0;
  position: absolute;
  top: 34px;
  display: block;
  margin: 0;
  padding: 0;
  width: 220px;
  margin-left: -110px;
  left: 50%;
  background: #f2f2f3;
  padding: 10px;
  border-radius: 5px;
  z-index: 100;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media only screen and (min-width: 1300px) {
  #dektop-nav .fiber-nav ul ul.sub-menu {
    top: 45px;
  }
}
#dektop-nav .fiber-nav ul ul.sub-menu li {
  margin: 0 0 14px 0;
  line-height: .8em;
  display: block;
  line-height: 1.2em;
}
@media only screen and (min-width: 1300px) {
  #dektop-nav .fiber-nav ul ul.sub-menu li a {
    /*font-size: 21px !important;*/
  }
}
@media only screen and (min-width: 1024px) {
  #dektop-nav .fiber-nav ul ul.sub-menu li a {
    font-size: 16px;
  }
}
#dektop-nav .fiber-nav ul ul.sub-menu li.current-page-ancestor a {
  color: #4d4d4f !important;
}

#mobile-nav {
  padding-top: 30px;
}
#mobile-nav .site-branding .site-title {
  text-align: center;
}
#mobile-nav .site-branding .site-title img {
  max-width: 50%;
}
@media only screen and (max-width: 680px) {
  #mobile-nav .site-branding .site-title img {
    max-width: 62%;
  }
}

#mobile-nav .fiber-nav.active, .search-box.active {
  opacity: 0;
  height: 0;
  overflow: hidden;
  z-index: 999;
  display: none;
}

.search-icon {
  max-width: 35px;
  position: absolute;
  right: 40px;
  top: 80px;
  cursor: pointer;
}

@media only screen and (max-width: 1300px) {
  .search-icon {
    top: 60px;
    right: 20px;
  }
}
.search-box form {
  float: right;
  padding-right: 40px;
}

@media only screen and (max-width: 1023px) {
  .search-box form {
    max-width: 278px;
    margin: 0 auto;
    float: none;
    padding-right: 0;
  }

  .search-icon {
    top: 30px;
  }
}
@media only screen and (max-width: 680px) {
  .search-icon {
    top: 30px;
    max-width: 20px;
  }
}
header#masthead {
  position: relative;
}

.search-box {
  transition: opacity 1s ease-out;
  opacity: 1;
  height: auto;
  /*  position: relative;
    top: -125px;*/
  position: absolute;
  top: 125px;
  right: 0;
}

@media only screen and (max-width: 1023px) {
  .search-box {
    position: relative;
    top: 0;
    margin-bottom: 20px;
  }
}
.search-box input {
  border-radius: 0;
  font-family: "Harriet Text", serif;
  height: 40px;
  float: left;
  border: none;
}

.search-box input[type="text"] {
  padding-left: 10px;
  border: none;
  border-top-left-radius: 5px;
  -webkit-border-top-left-radius: 5px;
  -moz-border-radius-topleft: 5px;
  border-bottom-left-radius: 5px;
  -webkit-border-bottom-left-radius: 5px;
  -moz-border-radius-bottomleft: 5px;
}

.search-box input[type='submit'] {
  box-shadow: none;
  font-family: 'Arimo', sans-serif;
  font-style: Normal;
  font-weight: 400;
  border-top-right-radius: 5px;
  -webkit-border-top-right-radius: 5px;
  -moz-border-radius-topright: 5px;
  border-bottom-right-radius: 5px;
  -webkit-border-bottom-right-radius: 5px;
  -moz-border-radius-bottomright: 5px;
  box-shadow: none;
  text-shadow: none;
}

.search-box input[type='submit']:hover {
  color: #dead70;
}

#mobile-nav .fiber-nav {
  position: absolute;
  top: 90px;
  background-color: #F2F2F3;
  -webkit-box-shadow: 0 4px 6px -6px black;
  -moz-box-shadow: 0 4px 6px -6px black;
  box-shadow: 0 4px 6px -6px black;
  width: 100%;
  padding: 20px;
  text-align: center;
  transition: opacity .5s ease-out;
  opacity: 1;
  height: auto;
  z-index: 999;
}

#mobile-nav .fiber-nav ul {
  margin: 0;
  -webkit-padding-start: 0;
}

#mobile-nav .fiber-nav ul li {
  list-style-type: none;
  width: 100%;
  margin: 0 auto;
  padding-top: 5px;
  padding-bottom: 10px;
}

#mobile-nav .fiber-nav ul li a {
  color: #4d4d4f;
  text-decoration: none;
}

#mobile-nav .fiber-nav ul li a:hover, #mobile-nav .fiber-nav ul li.current-menu-item a {
  color: #dead70;
}

#mobile-nav .fiber-nav ul li.current-menu-item li a {
  color: #4d4d4f;
/*  font-size: 14px;*/
}

#mobile-nav .fiber-nav ul li a {
  color: #4d4d4f;
  text-decoration: none;
}

#mobile-nav .mobile-menu {
  color: #000;
  text-decoration: none;
  display: block;
  padding-left: 24px;
  z-index: 1000;
  width: 50px;
  height: 30px;
}

#mobile-nav .site-branding .site-title {
  text-align: center;
}

#mobile-nav .site-branding .site-title img {
    max-width: 30%;
    position: relative;
    top: -14px;
}

@media only screen and (max-width: 680px) {
  #mobile-nav .site-branding .site-title img {
    max-width: 47%;
    position: relative;
    top: -14px;
  }

  #mobile-nav .fiber-nav {
    position: absolute;
    top: 70px;
  }
}

@media only screen and (min-width: 681px) and (max-width: 1023px){

  #mobile-nav .fiber-nav ul > li.menu-item-has-children > a{
    font-size: 20px;
    margin-bottom: 20px;
    display: block;
    font-weight: bold;
  }

  #mobile-nav .fiber-nav ul ul.sub-menu{
    border-bottom: 1px solid #ccc;
    padding-bottom: 20px;
    margin-bottom: 14px;
  }

}

@media only screen and (max-width: 680px){

  #mobile-nav .fiber-nav ul > li.menu-item-has-children > a{
    font-size: 18px;
    margin-bottom: 20px;
    display: block;
    font-weight: bold;
  }

  #mobile-nav .fiber-nav ul ul.sub-menu{
    border-bottom: 1px solid #ccc;
    padding-bottom: 20px;
    margin-bottom: 14px;
  }

}


/******************************
Footer
*******************************/
footer.site-footer {
  text-align: center;
}
footer.site-footer .grid__item {
  padding-top: 20px;
  padding-bottom: 20px;
}
footer.site-footer .grid__item.text a {
  font-family: 'Arimo', sans-serif;
  font-style: Normal;
  font-weight: 700;
  /*font-size: 1.176em;*/
  font-size: 30px;
  color: #4d4d4f;
  text-decoration: none;
}
footer.site-footer .grid__item.text a:hover {
  color: #dead70;
}
@media only screen and (min-width: 681px) and (max-width: 1023px) {
  footer.site-footer .grid__item.text a {
    font-size: 30px;
  }
}
@media only screen and (max-width: 680px) {
  footer.site-footer .grid__item.text a {
    font-size: 20px;
  }
}
footer.site-footer .social-link {
  width: 100%;
  margin: 0;
  padding: 10px 0 0 0;
}
footer.site-footer .social-link li {
  display: inline;
  margin: 0 10px;
}
footer.site-footer li a.facebook {
  background: url(../img/facebook.png) center center no-repeat;
  background-size: 100%;
  width: 30px;
  height: 30px;
  display: inline-block;
}
footer.site-footer li a.facebook:hover {
  background: url(../img/facebook-hvr.png) center center no-repeat;
  background-size: 100%;
}
footer.site-footer li a.twitter {
  background: url(../img/twitter.png) center center no-repeat;
  background-size: 100%;
  width: 30px;
  height: 30px;
  display: inline-block;
}
footer.site-footer li a.twitter:hover {
  background: url(../img/twitter-hvr.png) center center no-repeat;
  background-size: 100%;
}
footer.site-footer li a.instagram {
  background: url(../img/instagram.png) center center no-repeat;
  background-size: 100%;
  width: 30px;
  height: 30px;
  display: inline-block;
}
footer.site-footer li a.instagram:hover {
  background: url(../img/instagram-hvr.png) center center no-repeat;
  background-size: 100%;
}

/******************************
Pagination
*******************************/
.blog-pagination {
  padding-top: 50px;
  padding-bottom: 60px;
  width: 100%;
  display: block;
  font-family: 'Arimo', sans-serif;
  font-style: Normal;
  font-weight: 700;
  text-align: center;
  font-size: 1.3em;
}
.blog-pagination a {
  color: #aaa;
  text-decoration: none;
}
.blog-pagination a:hover {
  color: #dead70;
}
.blog-pagination .page-numbers.current {
  color: #dead70;
}
.blog-pagination .page-numbers {
  margin: 0 8px;
}

.site-main section:last-child {
  margin-bottom: 0;
}

.wrapper-alt {
  padding: 0 10%;
}
@media only screen and (max-width: 680px) {
  .wrapper-alt {
    padding: 0 6%;
  }
}

/*******************************
Page Headers
*******************************/
#page-header .page-header-content {
  text-align: center;
  width: 100%;
}
#page-header .page-header-content .icon {
  max-width: 110px;
  margin: 0 auto;
}
@media only screen and (min-width: 681px) and (max-width: 1023px) {
  #page-header .page-header-content .icon {
    max-width: 80px;
  }
}
@media only screen and (max-width: 680px) {
  #page-header .page-header-content .icon {
    max-width: 80px;
  }
}
#page-header .page-header-content h1.entry-title {
  /*font-size: 1.765em;*/
  font-size: 2em;
  font-family: 'Merriweather', serif;
  font-style: normal;
  font-weight: 700;
  margin-top: 8px;
}
#page-header .page-header-content .page-intro {
  font-size: 1.353em;
  padding: 0 3em;
}
@media only screen and (min-width: 681px) and (max-width: 1023px) {
  #page-header .page-header-content .page-intro {
    padding: 0 2em;
  }
}
@media only screen and (max-width: 680px) {
  #page-header .page-header-content .page-intro {
    padding: 0 1em;
  }
}

/*******************************
Program Overview
*******************************/
#program-overview a {
  width: 100%;
  float: left;
  color: #fff;
  text-decoration: none;
}
#program-overview .program-wrap {
  width: 100%;
  height: 540px;
  float: left;
  overflow: hidden;
/*  display: flex;
  align-items: center;
  justify-content: center;*/
  position: relative;
}
@media only screen and (max-width: 680px) {
  #program-overview .program-wrap {
    height: 340px;
  }
}
#program-overview .program-wrap .inner {
  position: absolute;
  top: 0;
  left: 0;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 540px;
}
@media only screen and (max-width: 680px) {
  #program-overview .program-wrap .inner {
    height: 340px;
  }
}
#program-overview .program-wrap span {
  position: absolute;
  width: 100%;
  height: 100%;
  background: RGBA(228, 210, 157, 0);
/*  opacity: 0;*/
  z-index: 1;
  -webkit-transition: background 0.3s ease;
  -moz-transition: background 0.3s ease;
  -ms-transition: background 0.3s ease;
  -o-transition: background 0.3s ease;
  transition: background 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;  
}
#program-overview .program-wrap span:hover {
  background: RGBA(228, 210, 157, 0.8);
}
#program-overview .program-wrap h3 {
  font-size: 1.765em;
  color: #fff;
  position: relative;
/*  z-index: 2;*/
  text-align: center;
  margin-bottom: 10px;
}

#program-overview .program-wrap p{
  font-size: 1em;
  font-family: 'Arimo', sans-serif;
  font-style: Normal;
  font-weight: 700;
  position: relative;
  /*z-index: 2;*/
  text-align: center;
  color: #fff;
  letter-spacing: 1px; 
  margin-top:0; 
}

@media only screen and (max-width: 680px){
  #program-overview .program-wrap p{
    padding: 0 2% 0 2%;
  }
}

/*******************************
Flexible Content
*******************************/
.img-and-text {
  margin-bottom: 80px;
}
.img-and-text .text-side .inner {
  padding: 14px 10% 40px 10%;
}
@media only screen and (max-width: 680px) {
  .img-and-text .text-side .inner {
    padding: 14px 20px 0px 20px;
  }
}
.img-and-text .img-side {
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}
@media only screen and (max-width: 680px) {
  .img-and-text .img-side {
    height: 500px;
  }
}

.img-and-text .inner ol,
.full-width-text .inner ol {
  margin: 0;
  padding: 0 14%;
}
.img-and-text .inner ol li,
.full-width-text .inner ol li {
  margin-bottom: 20px;
}
.img-and-text .inner ul,
.full-width-text .inner ul {
  margin: 0;
  padding: 0 14%;
}
.img-and-text .inner ul li,
.full-width-text .inner ul li {
  margin-bottom: 20px;
}

.full-width-text {
  margin-bottom: 80px;
}
.full-width-text .inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}
.full-width-text .inner header {
  text-align: center;
}
.full-width-text .inner h3 {
  display: inline-block;
  font-family: 'Merriweather', serif;
  font-style: normal;
  font-weight: 700;
  line-height: 1.2em;
  font-size: 1.412em;
  margin-bottom: 30px;
  position: relative;
}
.full-width-text .inner h3:after {
  content: "";
  width: 118%;
  height: 2px;
  background: #4d4d4f;
  display: inline-block;
  position: absolute;
  left: -9%;
  bottom: -18px;
}
.full-width-text .inner p {
  padding: 0 10%;
}
@media only screen and (max-width: 680px) {
  .full-width-text .inner p {
    padding: 0;
  }
}

.full-width-text .inner .frm_forms {
  padding: 0 10%;
}
@media only screen and (max-width: 680px) {
  .full-width-text .inner .frm_forms {
    padding: 0;
  }
}

.full-width-img {
  width: 100%;
  margin-bottom: 80px;
  line-height: 0;
}
.full-width-img img {
  width: 100%;
}

.dual-img {
  width: 100%;
  margin-bottom: 80px;
}
.dual-img .lrg-img img {
  float: left;
}
.dual-img .sml-img {
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

/*******************************
Affiliate Overview
*******************************/
#affil-map {
  width: 100%;
  float: left;
  height: 600px;
  background: #eee;
  margin-bottom: 100px;
}

.affil-list {
  width: 100%;
  float: left;
  margin-bottom: 40px;
}
.affil-list h3 {
  padding-left: 30px;
}

.affil-list .quarter-block .inner{
  background: none;
}

.affil-list .quarter-block .inner:hover{
  background: rgba(256, 256, 256, 0.2);
}

.quarter-block {
  text-align: center;
  background: #eee;
  position: relative;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}
.quarter-block a {
  text-decoration: none;
  color: #fff;
}
.quarter-block .inner {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.4);
  padding: 10%;
  -webkit-transition: background 0.3s ease;
  -moz-transition: background 0.3s ease;
  -ms-transition: background 0.3s ease;
  -o-transition: background 0.3s ease;
  transition: background 0.3s ease;
}
@media only screen and (min-width: 681px) and (max-width: 1023px) {
  .quarter-block .inner {
    padding: 5%;
  }
}
@media only screen and (max-width: 680px) {
  .quarter-block .inner {
    padding: 5%;
  }
}
.quarter-block .inner:hover {
  background: RGBA(228, 210, 157, 0.8);
}
.quarter-block img {
  width: 100% !important;
}

@media only screen and (max-width: 680px){
 .quarter-block img {
    width: 100% !important;
    max-height: 260px !important;
 } 
}


.quarter-block h4 {
  font-size: 1.059em;
  margin: 0 auto 10px auto;
  line-height: 1.1em;
  text-transform: uppercase;
}
.quarter-block p {
  font-size: .7em;
  margin-bottom: 0;
}
.quarter-block p.hoverText {
  text-align: left;
}

@media only screen and (min-width: 681px) and (max-width: 1023px){
   .quarter-block h4 {
    font-size: 1.159em;
    margin: 0 auto 10px auto;
    line-height: 1.1em;
    text-transform: uppercase;
  }
  .quarter-block p {
    font-size: .8em;
    margin-bottom: 0;
  } 
}

@media only screen and (max-width: 680px){
 .quarter-block h4 {
    font-size: 1.159em;
    margin: 0 auto 10px auto;
    line-height: 1.1em;
    text-transform: uppercase;
  }
  .quarter-block p {
    font-size: .8em;
    margin-bottom: 0;
  }  
}

/*******************************
Producer Overview
*******************************/
#producer-map {
  width: 100%;
  float: left;
  height: 700px;
  background: #eee;
  margin-bottom: 100px;
}

@media only screen and (max-width: 680px){
    #producer-map{
      display: none;
    } 
}

#all-producers h3 {
  padding-left: 30px;
}
#all-producers h4 {
  /*width: 90%;*/
  border-bottom: 1px solid #fff;
  margin: 0 auto 10px auto;
  padding-bottom: 10px;
  text-transform: uppercase;
}
#all-producers p {
  -webkit-margin-before: 0;
}
#all-producers p.hoverText {
  display: none;
  max-width: 80%;
}
#all-producers .quarter-block .inner:hover h4, #all-producers .quarter-block .inner:hover p {
  display: none;
}
#all-producers .quarter-block .inner:hover p.hoverText {
  display: block;
}
#all-producers .quarter-block .inner.artisan:hover {
  /*background-color: #c48b90;*/
  /*background: RGBA(196, 139, 144, 0.8);*/
  background: RGBA(81, 127, 152, 0.9);
}

/*******************************
Program Teaser
*******************************/
.program-teaser {
  width: 100%;
  float: left;
}
.program-teaser .program-teaser-bgimg {
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}
@media only screen and (max-width: 680px) {
  .program-teaser .program-teaser-bgimg {
    width: 100%;
    height: 500px;
    display: none;
  }
}
.program-teaser .program-teaser-text {
  padding: 14px 10% 40px 10%;
}
.program-teaser .program-teaser-text h3 {
  font-family: 'Merriweather', serif;
  font-style: normal;
  font-weight: 700;
  font-size: 1.412em;
  position: relative;
  display: inline-block;
}
.program-teaser .program-teaser-text h3:after {
  content: "";
  width: 110%;
  height: 2px;
  background: #4d4d4f;
  display: inline-block;
  position: absolute;
  bottom: -18px;
  left: 0;
}
.program-teaser .pagelink a {
  font-size: .9em;
  color: inherit;
}
.program-teaser .pagelink a:hover {
  color: #dead70;
}
.program-teaser .program-teaser-img {
  float: left;
  line-height: 0;
}

/*******************************
Single producers
*******************************/
.producer-feature-img img {
  width: 100% !important;
}

.producer-content {
  padding: 0 4%;
}
.producer-content h1 {
  font-size: 1.765em;
  margin-bottom: 12px;
}
.producer-content .main-content {
  padding: 40px 10% 0 10%;
  display: block;
}
@media only screen and (min-width: 681px) and (max-width: 1023px) {
  .producer-content .main-content {
    padding: 40px 5% 0 5%;
  }
}
@media only screen and (max-width: 680px) {
  .producer-content .main-content {
    padding: 40px 0 0 0;
  }
}

.producer-content .prod-contact {
  padding: 40px 10% 0 10%;
  display: block;
}
@media only screen and (min-width: 681px) and (max-width: 1023px) {
  .producer-content .prod-contact {
    padding: 40px 5% 0 5%;
  }
}
@media only screen and (max-width: 680px) {
  .producer-content .prod-contact {
    padding: 40px 0 0 0;
  }
}

.producer-content .prod-contact p {
  margin-top: 0;
  margin-bottom: 10px;
}
.producer-content .prod-contact p a {
  color: inherit;
  text-decoration: none;
}
.producer-content .prod-contact p a:hover {
  color: #dead70;
}

.lower-producer {
  margin-top: 40px;
}
.lower-producer .img-right {
  line-height: 0;
}
.lower-producer .img-left {
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

/*******************************
Blog
*******************************/
.blog-inner a,
.blog a,
.archive a {
  color: inherit;
  -webkit-transition: color 0.3s ease;
  -moz-transition: color 0.3s ease;
  -ms-transition: color 0.3s ease;
  -o-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.blog-inner a:hover,
.blog a:hover,
.archive a:hover {
  color: #dead70;
}
.blog-inner h1,
.blog h1,
.archive h1 {
  margin-bottom: 0;
  font-family: 'Merriweather', serif;
  font-style: normal;
  font-weight: 700;
  font-size: 2em;
}

@media only screen and (max-width: 680px){
 .blog-inner h1,
  .blog h1,
  .archive h1{
    line-height: 1.3em;
  }
}

.blog-inner .entry-meta,
.blog .entry-meta,
.archive .entry-meta {
  font-size: .8em;
  margin-bottom: 10px;
}
.blog-inner .entry-meta a,
.blog .entry-meta a,
.archive .entry-meta a {
  text-decoration: none;
  /*      color: $gold;
        &:hover {
          text-decoration: underline;
        }
        &:visited {
          color: $gold;
        }*/
}
.blog-inner .entry-content,
.blog .entry-content,
.archive .entry-content {
  margin: 0;
}
.blog-inner .prevnext,
.blog .prevnext,
.archive .prevnext {
  font-size: .8em;
  padding: 20px 0;
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
}
.blog-inner .prevnext a,
.blog .prevnext a,
.archive .prevnext a {
  text-decoration: none;
}
.blog-inner .prevnext .post-navigation,
.blog .prevnext .post-navigation,
.archive .prevnext .post-navigation {
  margin: 0;
}
.blog-inner .prevnext .post-navigation .nav-previous:before,
.blog .prevnext .post-navigation .nav-previous:before,
.archive .prevnext .post-navigation .nav-previous:before {
  content: '< ';
}
.blog-inner .prevnext .post-navigation .nav-next:after,
.blog .prevnext .post-navigation .nav-next:after,
.archive .prevnext .post-navigation .nav-next:after {
  content: ' >';
}
.blog-inner .entry-footer span a,
.blog .entry-footer span a,
.archive .entry-footer span a {
  display: inline-block;
  margin-right: 20px;
}
.blog-inner .cat-links a,
.blog .cat-links a,
.archive .cat-links a {
  margin-right: 0 !important;
}
.blog-inner #comments p.form-submit input[type="submit"],
.blog #comments p.form-submit input[type="submit"],
.archive #comments p.form-submit input[type="submit"] {
  border: none;
  border-radius: 3px;
  background: #4d4d4f;
  color: #fff;
  padding: 12px 26px 12px 26px;
  box-shadow: none;
  text-shadow: none;
  font-family: 'Arimo', sans-serif;
  font-style: Normal;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 1px;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.blog-inner #comments p.form-submit input[type="submit"]:hover,
.blog #comments p.form-submit input[type="submit"]:hover,
.archive #comments p.form-submit input[type="submit"]:hover {
  background: #dead70;
}

ol.comment-list {
  margin: 0;
  padding: 0;
}
ol.comment-list li.pingback {
  display: block;
  /*border-bottom: 1px solid #c6c8ca;*/
  padding-bottom: 20px;
  margin-bottom: 40px;
  width: 100%;
  float: left;
}
ol.comment-list li.comment {
  display: block;
  /*border-bottom: 1px solid #c6c8ca;*/
  padding-bottom: 20px;
  margin-bottom: 40px;
  width: 100%;
  float: left;
}
ol.comment-list li.comment .comment-author {
  float: left;
  font-family: 'Arimo', sans-serif;
  font-style: normal;
  font-weight: normal !important;
  letter-spacing: 1px;
}
ol.comment-list li.comment .comment-author img {
  margin-right: 14px;
}
ol.comment-list li.comment .comment-author .fn {
  position: relative;
  top: -7px;
}
ol.comment-list li.comment .comment-metadata {
  float: left;
  clear: both;
  font-size: 14px;
}
ol.comment-list li.comment .comment-metadata a {
  text-decoration: none;
  color: #c6c8ca;
}
ol.comment-list li.comment .comment-content {
  float: left;
  width: 100%;
}
ol.comment-list li.comment .says {
  display: none;
}
ol.comment-list li.comment .reply {
  float: left;
  width: 100%;
  margin-bottom: 40px;
}
ol.comment-list li.comment .reply a {
  background: #c6c8ca;
  color: #fff;
  font-size: 16px;
  text-decoration: none;
  padding: 6px 6px 6px 6px;
  border-radius: 3px;
  font-family: 'Arimo', sans-serif;
  font-style: normal;
  font-weight: normal !important;
  -webkit-transition: background 0.3s ease;
  -moz-transition: background 0.3s ease;
  -ms-transition: background 0.3s ease;
  -o-transition: background 0.3s ease;
  transition: background 0.3s ease;
}
ol.comment-list li.comment .reply a:hover {
  color: #fff;
  background: #dead70;
}
ol.comment-list li.comment .edit-link {
  display: none;
  float: left;
  width: 100%;
}

/*
Sidebar
*/
#secondary {
  padding-left: 34%;
  font-size: .8em;
}

@media only screen and (max-width: 680px){
  #secondary {
    padding-left:0;
    font-size: .8em;
  } 
}

#secondary h2.widget-title {
  font-size: 1em;
}
#secondary .widget ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
#secondary .widget ul li {
  display: block;
}
#secondary .widget ul li a {
  text-decoration: none;
}

/*******************************
Search Results
*******************************/


.search-result-wrap {
  border-bottom: 2px solid #ddd;
  padding-bottom: 34px;
}
.search-result-wrap h2.entry-title {
  margin-bottom: 12px;
  line-height: 1.2em;
  font-family: 'Merriweather', serif;
  font-style: normal;
  font-weight: 700;
}
.search-result-wrap h2.entry-title a {
  text-decoration: none;
  color: inherit;
  -webkit-transition: color 0.3s ease;
  -moz-transition: color 0.3s ease;
  -ms-transition: color 0.3s ease;
  -o-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.search-result-wrap h2.entry-title a:hover {
  color: #dead70;
}
.search-result-wrap .entry-summary {
  margin-top: 0;
}
.search-result-wrap .entry-summary p {
  margin-top: 0;
}
.search-result-wrap .entry-summary a.readmore {
  text-decoration: underline;
  color: inherit;
}
.search-result-wrap .entry-summary a.readmore:hover {
  color: #dead70;
}

/*******************************
Google Maps
*******************************/
.wpgmp_map_container {
  border: none !important;
  border-radius: 0 !important;
  box-sizing: border-box !important;
  -moz-box-sizing: border-box !important;
  outline: none !important;
  box-shadow: none !important;
}

.post_body .featureimg {
  float: left;
}
.post_body .mapcontent {
  float: left;
  width: 70%;
}
.post_body .mapcontent a.moreinfo {
  display: block;
  margin-top: 10px;
  color: inherit;
}
.post_body .mapcontent .geotags_link a {
  color: inherit;
  font-size: 1.8em;
  font-weight: bold;
  text-decoration: none;
  margin-bottom: 8px;
  display: block;
}

.wpgmp_tabs_container {
  width: 24% !important;
}
@media only screen and (min-width: 1300px) {
  .wpgmp_tabs_container {
    width: 20%;
  }
}
@media only screen and (min-width: 681px) and (max-width: 1023px) {
  .wpgmp_tabs_container {
    width: 24% !important;
  }
}

/*******************************
Events
*******************************/
.main-feature-event {
  width: 100%;
  min-height: 650px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
/*  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;*/
  text-align: center;
  margin-bottom: 60px;
  margin-top: 60px;
}
/*.main-feature-event a {
  color: #fff;
  text-decoration: none;
  transition: all 1s ease;
  -moz-transition: all 1s ease;
  -ms-transition: all 1s ease;
  -webkit-transition: all 1s ease;
  -o-transition: all 1s ease;
}*/
.main-feature-event a {
  width: 100%;
/*  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  -ms-flex-pack: center;    
  justify-content: center;*/  
  text-decoration: none;
  height:100%;
  position: absolute;
  top:0;
  left:0;
}
.main-feature-event a span {
  padding-top:10%;
  display: block;
/*  min-height: 650px;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-pack: center;*/
}


@media only screen and (max-width: 680px){
  .main-feature-event a span{
      padding-top:25%;
  }
}


.main-feature-event a:hover {
  color: #fff;
  text-decoration: none;
}
.main-feature-event .feature-header-img img {
  max-width: 60%;
}
.main-feature-event h2 {
  font-size: 3.529em;
  margin-top: 0;
  margin-bottom: 0;
  text-transform: uppercase;
}
.main-feature-event h3 {
  font-size: 2.206em;
  margin-top: 20px;
  margin-bottom: 0;
  text-transform: uppercase;
}

.single-event-img img {
  width: 100% !important;
}

@media only screen and (max-width: 680px){
  .main-feature-event{
    min-height:350px;
  }
  .main-feature-event h2{
    font-size:2em;
  }
  .main-feature-event h3{
    font-size:1.6em;
  }
}

/*
Single Events
*/
#tribe-events-footer .tribe-events-sub-nav {
  font-size: .8em;
  padding: 20px 0;
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
}
#tribe-events-footer .tribe-events-sub-nav a {
  color: inherit;
}
#tribe-events-footer .tribe-events-sub-nav a:hover {
  color: #dead70;
}

.tribe-events-sub-nav li a{
  background: none !important;
}

.single-tribe_events .tribe-events-event-meta {
  background: none;
  border: none !important;
  font-size: .7em;
}
@media only screen and (max-width: 1023px) {
  .single-tribe_events .tribe-events-event-meta {
    font-size: 1em;
  }
}

.tribe-events-event-meta .tribe-events-meta-group {
  margin: 2% 2% 0 0 !important;
  padding: 0 !important;
}

.tribe-events-single h1.tribe-events-single-event-title {
  font-family: 'Merriweather', serif;
  font-style: normal;
  font-weight: 700;
  font-size: 2em;
}
.tribe-events-single .tribe-events-cost {
  float: left;
  display: block;
  width: 100%;
}
.tribe-events-single .tribe-events-single-section.tribe-events-event-meta a {
  color: inherit;
  text-decoration: underline !important;
}
.tribe-events-single .tribe-events-single-section.tribe-events-event-meta a:hover {
  color: #dead70;
}
.tribe-events-single .recurringinfo {
  font-size: .8em !important;
}
.tribe-events-single .recurringinfo a {
  color: inherit;
}
.tribe-events-single .recurringinfo a:hover {
  color: #dead70;
}
.tribe-events-single .tribe-events-schedule h2 {
  margin-top: 0;
}
.tribe-events-single .tribe-events-back a {
  color: inherit;
  font-size: .8em !important;
}
.tribe-events-single .tribe-events-back a:hover {
  color: #dead70;
}
.tribe-events-single .tribe-events-single-event-description a {
  color: inherit;
  text-decoration: underline !important;
}
.tribe-events-single .tribe-events-single-event-description a:hover {
  color: #dead70;
}

.tribe-events-schedule h2 {
  font-size: 1.8em;
  font-family: "Harriet Text", serif;
  font-style: normal;
  font-weight: normal;
}

@media only screen and (min-width: 681px) and (max-width: 1023px){
  .tribe-events-schedule h2 {
    font-size: 1.3em;
    font-family: "Harriet Text", serif;
    font-style: normal;
    font-weight: normal;
  } 
}

@media only screen and (max-width: 680px){
  .tribe-events-schedule h2 {
    font-size: 1em;
    font-family: "Harriet Text", serif;
    font-style: normal;
    font-weight: normal;
  } 
}

.single-tribe_events .tribe-events-schedule{
  background: none !important;
  border:none !important;
  padding:0 !important;
}

.single-tribe_events #tribe-events-content .tribe-events-event-meta dt {
  font-style: italic;
}

.tribe-events-event-meta .column, .tribe-events-event-meta .tribe-events-meta-group {
  width: 31.3333% !important;
}
@media only screen and (max-width: 1023px) {
  .tribe-events-event-meta .column, .tribe-events-event-meta .tribe-events-meta-group {
    width: 100% !important;
  }
}

.single-tribe_events .tribe-events-venue-map {
  width: 100% !important;
  float: left !important;
}

#tribe-events-footer .tribe-events-sub-nav, #tribe-events-header .tribe-events-sub-nav a{
  color:inherit;
}

.tribe-events-sub-nav li a:hover, .tribe-events-sub-nav li a:visited{
  color:inherit;
}

.tribe-events-loop .tribe-events-event-meta{
  background: none !important;
  border: none !important;
}

/*
Hiding for now
*/
#tribe-events-bar {
  display: none;
}

body.home .page-header-content {
  padding-bottom: 100px;
}
@media only screen and (max-width: 680px) {
  body.home .page-header-content {
    padding-bottom: 55px;
  }
}
body.home .page-header-content h1 {
  display: block;
  padding: 0 16%;
  text-decoration: center;
  font-size: 2.5em;
}
@media only screen and (min-width: 681px) and (max-width: 1023px) {
  body.home .page-header-content h1 {
    padding: 0 8%;
    margin-bottom: 0;
  }
}
@media only screen and (max-width: 680px) {
  body.home .page-header-content h1 {
    padding: 0% 10%;
    margin-bottom: 0;
    font-size: 1.5em;
  }
}

.home-block .swiper-pagination{
  bottom: 31px;
  width:100%;
  left:0;
}

.home-block .swiper-pagination .swiper-pagination-bullet{
  margin:0 8px;
  width:14px;
  height:14px;
  opacity: 1 !important;
  background: #c6c8ca;
}

.home-block .swiper-pagination .swiper-pagination-bullet-active{
  background: #edeeef;
}


.home-block {
  overflow: hidden;
}
.home-block .grid__item > img {
  float: left;
}

.featured {
  position: relative;
}
.featured img {
  float: left;
}
.featured .inner {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  /*background:rgba(0,0,0,.6);*/
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.featured .inner-centered {
  text-align: center;
}
.featured .inner-centered img {
  max-width: 80%;
  float: none;
}
.featured a {
  color: #fff;
  text-decoration: none;
}
.featured .inner-centered {
  transition: all 1s ease;
  -moz-transition: all 1s ease;
  -ms-transition: all 1s ease;
  -webkit-transition: all 1s ease;
  -o-transition: all 1s ease;
      width: 100%;
}
.featured .inner-centered h3 {
  font-size: 1.8em;
  margin-bottom: 0;
  margin-top: 0;
}

.bg-third {
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.half-section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.half-section .inner {
  height: 100%;
  position: relative;
  width: 100%;
}
.half-section .inner .bottom img {
  float: left;
}
.half-section .inner .top {
  height: 50%;
/*  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;*/
}
.half-section .inner .top img {
  /*max-width: 58%;*/
  max-width: 98.5%;
  transition: all .3s ease;
  -moz-transition: all .3s ease;
  -ms-transition: all .3s ease;
  -webkit-transition: all .3s ease;
  -o-transition: all .3s ease;
  float: left;
  position: relative;
  z-index: 2;
}

.half-section .inner .top img:hover{
  opacity: 0;
}

.half-section .inner .top img.hvr-img{
  position: absolute;
  top:0;
  left:0;
  z-index: 1;
}

.half-section .inner .bottom{
  height: 50%;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

@media only screen and (max-width: 680px) {
  .home-hide-small {
    display: none;
  }
}

@media only screen and (max-width: 680px) {
  .half-section .top {
    display: block;
    height: auto !important;
  }
}

@media only screen and (max-width: 680px) {
  .half-section .bottom {
    display: block;
    height: auto;
  }
}

/*! 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);
  }
}

section.home-new-callouts{
  margin-bottom: 100px !important;
  margin-top:100px;
}

section.home-new-callouts .grid{
  margin: 0 24px 0 0;
}

.home-third-callout.inner{
  text-align: center;
}

@media only screen and (max-width: 680px){
  .home-third-callout.inner{
    margin-bottom: 60px;
  }
}

.home-third-callout.inner h3{
  margin-bottom: 12px;
  line-height: 1.2em;
  font-family: 'Merriweather', serif;
  font-style: normal;
  font-weight: 700;
}

.home-third-callout.inner p{
  font-size: 16px;
}

a.fiber-btn{
  text-decoration: none;
  border:2px solid #4d4d4f;
  padding:10px 20px;
  -webkit-transition: border 0.3s ease;
  -moz-transition: border 0.3s ease;
  -ms-transition: border 0.3s ease;
  -o-transition: border 0.3s ease;
  transition: border 0.3s ease;  
}

a.fiber-btn:hover{
  border:2px solid #dead70;
}

.swiper-slide .fiber-swiper{
  width:100%;
  height:480px;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

@media only screen and (max-width: 680px){
  .swiper-slide .fiber-swiper{
    height:320px;
  }
}

