@charset "CP850";
/*------------------------------------*\
    $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.
 */
/*------------------------------------*\
    $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:
 *
 * phone    --  palm-based devices, like phones and small tablets
 * tablet   --  lap-based devices, like iPads or laptops
 * mobile   --  all of the above
 * desktop  --  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: -25px;
  /* [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: 25px;
  /* [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; }

/**
 * 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: -12.5px; }
  .grid--narrow > .grid__item {
    padding-left: 12.5px; }

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

/*------------------------------------*\
    $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: 640px) {
  /**
   * Whole
   */
  .phone--one-whole {
    width: 100%; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .desktop--eleven-twelfths {
    width: 91.666%; } }
/*------------------------------------*\
    $PUSH
\*------------------------------------*/
/**
 * Push classes, to move grid items over to the right by certain amounts.
 */
/**
 * Not a particularly great selector, but the DRYest way to do things.
 */
[class*="push--"] {
  position: relative; }

/**
 * Whole
 */
.push--one-whole {
  left: 100%; }

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

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

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

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

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

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

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

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

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

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

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

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

.push--three-eighths {
  left: 37.5%; }

.push--five-eighths {
  left: 62.5%; }

.push--seven-eighths {
  left: 87.5%; }

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

.push--three-tenths {
  left: 30%; }

.push--seven-tenths {
  left: 70%; }

.push--nine-tenths {
  left: 90%; }

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

.push--five-twelfths {
  left: 41.666%; }

.push--seven-twelfths {
  left: 58.333%; }

.push--eleven-twelfths {
  left: 91.666%; }

@media only screen and (max-width: 640px) {
  /**
   * Whole
   */
  .push--phone--one-whole {
    left: 100%; }

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

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

  .push--phone--two-thirds, .push--phone--four-sixths, .push--phone--eight-twelfths {
    left: 66.666%; }

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

  .push--phone--three-quarters, .push--phone--six-eighths, .push--phone--nine-twelfths {
    left: 75%; }

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

  .push--phone--two-fifths, .push--phone--four-tenths {
    left: 40%; }

  .push--phone--three-fifths, .push--phone--six-tenths {
    left: 60%; }

  .push--phone--four-fifths, .push--phone--eight-tenths {
    left: 80%; }

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

  .push--phone--five-sixths, .push--phone--ten-twelfths {
    left: 83.333%; }

  /**
   * Eighths
   */
  .push--phone--one-eighth {
    left: 12.5%; }

  .push--phone--three-eighths {
    left: 37.5%; }

  .push--phone--five-eighths {
    left: 62.5%; }

  .push--phone--seven-eighths {
    left: 87.5%; }

  /**
   * Tenths
   */
  .push--phone--one-tenth {
    left: 10%; }

  .push--phone--three-tenths {
    left: 30%; }

  .push--phone--seven-tenths {
    left: 70%; }

  .push--phone--nine-tenths {
    left: 90%; }

  /**
   * Twelfths
   */
  .push--phone--one-twelfth {
    left: 8.333%; }

  .push--phone--five-twelfths {
    left: 41.666%; }

  .push--phone--seven-twelfths {
    left: 58.333%; }

  .push--phone--eleven-twelfths {
    left: 91.666%; } }
@media only screen and (min-width: 641px) and (max-width: 1023px) {
  /**
   * Whole
   */
  .push--tablet--one-whole {
    left: 100%; }

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

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

  .push--tablet--two-thirds, .push--tablet--four-sixths, .push--tablet--eight-twelfths {
    left: 66.666%; }

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

  .push--tablet--three-quarters, .push--tablet--six-eighths, .push--tablet--nine-twelfths {
    left: 75%; }

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

  .push--tablet--two-fifths, .push--tablet--four-tenths {
    left: 40%; }

  .push--tablet--three-fifths, .push--tablet--six-tenths {
    left: 60%; }

  .push--tablet--four-fifths, .push--tablet--eight-tenths {
    left: 80%; }

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

  .push--tablet--five-sixths, .push--tablet--ten-twelfths {
    left: 83.333%; }

  /**
   * Eighths
   */
  .push--tablet--one-eighth {
    left: 12.5%; }

  .push--tablet--three-eighths {
    left: 37.5%; }

  .push--tablet--five-eighths {
    left: 62.5%; }

  .push--tablet--seven-eighths {
    left: 87.5%; }

  /**
   * Tenths
   */
  .push--tablet--one-tenth {
    left: 10%; }

  .push--tablet--three-tenths {
    left: 30%; }

  .push--tablet--seven-tenths {
    left: 70%; }

  .push--tablet--nine-tenths {
    left: 90%; }

  /**
   * Twelfths
   */
  .push--tablet--one-twelfth {
    left: 8.333%; }

  .push--tablet--five-twelfths {
    left: 41.666%; }

  .push--tablet--seven-twelfths {
    left: 58.333%; }

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

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

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

  .push--mobile--two-thirds, .push--mobile--four-sixths, .push--mobile--eight-twelfths {
    left: 66.666%; }

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

  .push--mobile--three-quarters, .push--mobile--six-eighths, .push--mobile--nine-twelfths {
    left: 75%; }

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

  .push--mobile--two-fifths, .push--mobile--four-tenths {
    left: 40%; }

  .push--mobile--three-fifths, .push--mobile--six-tenths {
    left: 60%; }

  .push--mobile--four-fifths, .push--mobile--eight-tenths {
    left: 80%; }

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

  .push--mobile--five-sixths, .push--mobile--ten-twelfths {
    left: 83.333%; }

  /**
   * Eighths
   */
  .push--mobile--one-eighth {
    left: 12.5%; }

  .push--mobile--three-eighths {
    left: 37.5%; }

  .push--mobile--five-eighths {
    left: 62.5%; }

  .push--mobile--seven-eighths {
    left: 87.5%; }

  /**
   * Tenths
   */
  .push--mobile--one-tenth {
    left: 10%; }

  .push--mobile--three-tenths {
    left: 30%; }

  .push--mobile--seven-tenths {
    left: 70%; }

  .push--mobile--nine-tenths {
    left: 90%; }

  /**
   * Twelfths
   */
  .push--mobile--one-twelfth {
    left: 8.333%; }

  .push--mobile--five-twelfths {
    left: 41.666%; }

  .push--mobile--seven-twelfths {
    left: 58.333%; }

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

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

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

  .push--desktop--two-thirds, .push--desktop--four-sixths, .push--desktop--eight-twelfths {
    left: 66.666%; }

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

  .push--desktop--three-quarters, .push--desktop--six-eighths, .push--desktop--nine-twelfths {
    left: 75%; }

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

  .push--desktop--two-fifths, .push--desktop--four-tenths {
    left: 40%; }

  .push--desktop--three-fifths, .push--desktop--six-tenths {
    left: 60%; }

  .push--desktop--four-fifths, .push--desktop--eight-tenths {
    left: 80%; }

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

  .push--desktop--five-sixths, .push--desktop--ten-twelfths {
    left: 83.333%; }

  /**
   * Eighths
   */
  .push--desktop--one-eighth {
    left: 12.5%; }

  .push--desktop--three-eighths {
    left: 37.5%; }

  .push--desktop--five-eighths {
    left: 62.5%; }

  .push--desktop--seven-eighths {
    left: 87.5%; }

  /**
   * Tenths
   */
  .push--desktop--one-tenth {
    left: 10%; }

  .push--desktop--three-tenths {
    left: 30%; }

  .push--desktop--seven-tenths {
    left: 70%; }

  .push--desktop--nine-tenths {
    left: 90%; }

  /**
   * Twelfths
   */
  .push--desktop--one-twelfth {
    left: 8.333%; }

  .push--desktop--five-twelfths {
    left: 41.666%; }

  .push--desktop--seven-twelfths {
    left: 58.333%; }

  .push--desktop--eleven-twelfths {
    left: 91.666%; } }
/*------------------------------------*\
    $PULL
\*------------------------------------*/
/**
 * Pull classes, to move grid items back to the left by certain amounts.
 */
/**
 * Not a particularly great selector, but the DRYest way to do things.
 */
[class*="pull--"] {
  position: relative; }

/**
 * Whole
 */
.pull--one-whole {
  right: 100%; }

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

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

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

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

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

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

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

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

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

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

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

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

.pull--three-eighths {
  right: 37.5%; }

.pull--five-eighths {
  right: 62.5%; }

.pull--seven-eighths {
  right: 87.5%; }

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

.pull--three-tenths {
  right: 30%; }

.pull--seven-tenths {
  right: 70%; }

.pull--nine-tenths {
  right: 90%; }

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

.pull--five-twelfths {
  right: 41.666%; }

.pull--seven-twelfths {
  right: 58.333%; }

.pull--eleven-twelfths {
  right: 91.666%; }

@media only screen and (max-width: 640px) {
  /**
   * Whole
   */
  .pull--phone--one-whole {
    right: 100%; }

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

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

  .pull--phone--two-thirds, .pull--phone--four-sixths, .pull--phone--eight-twelfths {
    right: 66.666%; }

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

  .pull--phone--three-quarters, .pull--phone--six-eighths, .pull--phone--nine-twelfths {
    right: 75%; }

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

  .pull--phone--two-fifths, .pull--phone--four-tenths {
    right: 40%; }

  .pull--phone--three-fifths, .pull--phone--six-tenths {
    right: 60%; }

  .pull--phone--four-fifths, .pull--phone--eight-tenths {
    right: 80%; }

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

  .pull--phone--five-sixths, .pull--phone--ten-twelfths {
    right: 83.333%; }

  /**
   * Eighths
   */
  .pull--phone--one-eighth {
    right: 12.5%; }

  .pull--phone--three-eighths {
    right: 37.5%; }

  .pull--phone--five-eighths {
    right: 62.5%; }

  .pull--phone--seven-eighths {
    right: 87.5%; }

  /**
   * Tenths
   */
  .pull--phone--one-tenth {
    right: 10%; }

  .pull--phone--three-tenths {
    right: 30%; }

  .pull--phone--seven-tenths {
    right: 70%; }

  .pull--phone--nine-tenths {
    right: 90%; }

  /**
   * Twelfths
   */
  .pull--phone--one-twelfth {
    right: 8.333%; }

  .pull--phone--five-twelfths {
    right: 41.666%; }

  .pull--phone--seven-twelfths {
    right: 58.333%; }

  .pull--phone--eleven-twelfths {
    right: 91.666%; } }
@media only screen and (min-width: 641px) and (max-width: 1023px) {
  /**
   * Whole
   */
  .pull--tablet--one-whole {
    right: 100%; }

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

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

  .pull--tablet--two-thirds, .pull--tablet--four-sixths, .pull--tablet--eight-twelfths {
    right: 66.666%; }

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

  .pull--tablet--three-quarters, .pull--tablet--six-eighths, .pull--tablet--nine-twelfths {
    right: 75%; }

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

  .pull--tablet--two-fifths, .pull--tablet--four-tenths {
    right: 40%; }

  .pull--tablet--three-fifths, .pull--tablet--six-tenths {
    right: 60%; }

  .pull--tablet--four-fifths, .pull--tablet--eight-tenths {
    right: 80%; }

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

  .pull--tablet--five-sixths, .pull--tablet--ten-twelfths {
    right: 83.333%; }

  /**
   * Eighths
   */
  .pull--tablet--one-eighth {
    right: 12.5%; }

  .pull--tablet--three-eighths {
    right: 37.5%; }

  .pull--tablet--five-eighths {
    right: 62.5%; }

  .pull--tablet--seven-eighths {
    right: 87.5%; }

  /**
   * Tenths
   */
  .pull--tablet--one-tenth {
    right: 10%; }

  .pull--tablet--three-tenths {
    right: 30%; }

  .pull--tablet--seven-tenths {
    right: 70%; }

  .pull--tablet--nine-tenths {
    right: 90%; }

  /**
   * Twelfths
   */
  .pull--tablet--one-twelfth {
    right: 8.333%; }

  .pull--tablet--five-twelfths {
    right: 41.666%; }

  .pull--tablet--seven-twelfths {
    right: 58.333%; }

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

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

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

  .pull--mobile--two-thirds, .pull--mobile--four-sixths, .pull--mobile--eight-twelfths {
    right: 66.666%; }

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

  .pull--mobile--three-quarters, .pull--mobile--six-eighths, .pull--mobile--nine-twelfths {
    right: 75%; }

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

  .pull--mobile--two-fifths, .pull--mobile--four-tenths {
    right: 40%; }

  .pull--mobile--three-fifths, .pull--mobile--six-tenths {
    right: 60%; }

  .pull--mobile--four-fifths, .pull--mobile--eight-tenths {
    right: 80%; }

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

  .pull--mobile--five-sixths, .pull--mobile--ten-twelfths {
    right: 83.333%; }

  /**
   * Eighths
   */
  .pull--mobile--one-eighth {
    right: 12.5%; }

  .pull--mobile--three-eighths {
    right: 37.5%; }

  .pull--mobile--five-eighths {
    right: 62.5%; }

  .pull--mobile--seven-eighths {
    right: 87.5%; }

  /**
   * Tenths
   */
  .pull--mobile--one-tenth {
    right: 10%; }

  .pull--mobile--three-tenths {
    right: 30%; }

  .pull--mobile--seven-tenths {
    right: 70%; }

  .pull--mobile--nine-tenths {
    right: 90%; }

  /**
   * Twelfths
   */
  .pull--mobile--one-twelfth {
    right: 8.333%; }

  .pull--mobile--five-twelfths {
    right: 41.666%; }

  .pull--mobile--seven-twelfths {
    right: 58.333%; }

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

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

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

  .pull--desktop--two-thirds, .pull--desktop--four-sixths, .pull--desktop--eight-twelfths {
    right: 66.666%; }

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

  .pull--desktop--three-quarters, .pull--desktop--six-eighths, .pull--desktop--nine-twelfths {
    right: 75%; }

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

  .pull--desktop--two-fifths, .pull--desktop--four-tenths {
    right: 40%; }

  .pull--desktop--three-fifths, .pull--desktop--six-tenths {
    right: 60%; }

  .pull--desktop--four-fifths, .pull--desktop--eight-tenths {
    right: 80%; }

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

  .pull--desktop--five-sixths, .pull--desktop--ten-twelfths {
    right: 83.333%; }

  /**
   * Eighths
   */
  .pull--desktop--one-eighth {
    right: 12.5%; }

  .pull--desktop--three-eighths {
    right: 37.5%; }

  .pull--desktop--five-eighths {
    right: 62.5%; }

  .pull--desktop--seven-eighths {
    right: 87.5%; }

  /**
   * Tenths
   */
  .pull--desktop--one-tenth {
    right: 10%; }

  .pull--desktop--three-tenths {
    right: 30%; }

  .pull--desktop--seven-tenths {
    right: 70%; }

  .pull--desktop--nine-tenths {
    right: 90%; }

  /**
   * Twelfths
   */
  .pull--desktop--one-twelfth {
    right: 8.333%; }

  .pull--desktop--five-twelfths {
    right: 41.666%; }

  .pull--desktop--seven-twelfths {
    right: 58.333%; }

  .pull--desktop--eleven-twelfths {
    right: 91.666%; } }
* {
  margin: 0;
  padding: 0;
  -webkit-transition: .3s ease-in-out all;
  -moz-transition: .3s ease-in-out all;
  -o-transition: .3s ease-in-out all;
  transition: .3s ease-in-out all; }

html body {
  background: #232323;
  font-family: "Gruppo", cursive; }
  html body.home header {
    background-size: 770px;
    top: 310px; 
  }
  html body.home .content {
    top: 0; }
  html body.video-1 header {
    background-size: 600px;
    top: 40px; }
  html body.video-1 .content {
    top: -890px; }
  html body.video-2 header {
    background-size: 600px;
    top: 40px; }
  html body.video-2 .content {
    top: -1960px; }

  html body.video-3 header {
    background-size: 600px;
    top: 40px; }
  html body.video-3 .content {
    top: -3030px; }
  
  html body.contact header {
    background-size: 600px;
    top: 30px; }
  html body.contact .content {
    top: -4100px; }
html a {
  color: #e6173c;
  text-decoration: none; }
  html a:hover {
    text-decoration: underline; }
html header {
  background: url(../img/visuals/logo_baseline_coming-home.svg) no-repeat top center;
  background-size: 770px;
  border-bottom: dotted 1px #5a5a5a;
  left: 50%;
  margin-left: -425px;
  padding: 115px 0 15px 0;
  position: fixed;
  top: 310px;
  width: 600px;
  z-index: 9999; 
}
  html header h1 {
    display: none; }
  html header li {
    border-right: solid 1px #fff;
    color: #e6173c;
    cursor: pointer;
    display: inline;
    font-size: 20px;
    padding: 0 20px; }
    html header li.selected {
      color: #858585;
      cursor: default; }
      html header li.selected:hover {
        color: #858585; }
    html header li:last-child {
      border: none; }
    html header li:hover {
      color: #fff; }
  html header ul.navigation {
    border-top: dotted 1px #5a5a5a;
    margin-top: 20px;
    padding: 15px 0 0 0;
    text-align: center; }

.content {
  -webkit-box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.3);
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.3);
  background: url(../img/visuals/photo_CH.jpg) no-repeat center 20px black;
  background-size: 600px 650px;
  color: #fff;
  height: 800;
  left: 50%;
  margin-left: -425px;
  padding: 470px 0 40px 0;
  position: fixed;
  top: 0;
  width: 600px; }
  .content section {
    border-bottom: dotted 1px #5a5a5a;
    margin: 600px 0;
    padding: 20px 10px 20px 140px; }
    .content section h1 {
      font-size: 24px;
      margin-bottom: 20px; }
    .content section p {
      font-size: 20px; }
    .content section.video-1 {
      height: 360px;
      padding: 70px 55px 40px 55px; }
      .content section.video-1 iframe {
        border: none;
        padding: 5px; 
        width: 480px;
        height: 360px;}
    .content section.video-2 {
      height: 360px;
      padding: 70px 55px 40px 55px; }
      .content section.video-2 iframe {
        border: none;
        padding: 5px;
        width: 480px;
        height: 360px;}
    .content section.video-3 {
      height: 360px;
      padding: 70px 55px 40px 55px; }
      .content section.video-3 iframe {
        border: none;
        padding: 5px;
        width: 480px;
        height: 360px;}
    .content section.contact {
      padding: 70px 10px 40px 10px;
      text-align: center; }

.sidebar {
  color: #858585;
  font-weight: 400;
  left: 50%;
  margin-left: 185px;
  position: absolute;
  top: 10px;
  width: 250px; }
  .sidebar section {
    margin-bottom: 30px; }
    .sidebar section h1 {
      color: #fff;
      font-size: 24px; }
    .sidebar section p {
      font-size: 20px; }
    .sidebar section.calendar {
      margin: 60px 0 0 0; }
      .sidebar section.calendar .calendarItem {
        border-bottom: dotted 1px #5a5a5a;
        margin-bottom: 15px;
        padding-bottom: 15px; }
        .sidebar section.calendar .calendarItem:last-child {
          border: none; }
        .sidebar section.calendar .calendarItem p.date {
          font-size: 36px; }
        .sidebar section.calendar .calendarItem p.occasion {
          font-size: 20px; }
        .sidebar section.calendar .calendarItem p.location {
          font-size: 30px; }
    .sidebar section.connect {
      position: fixed; left:50%; margin-left: -463px;}
		.sidebar section.connect a {display:block; margin-bottom: 8px;}
