@charset "UTF-8";
/*! Made with Bones: http://themble.com/bones :) */
/******************************************************************
Site Name:
Author:

Stylesheet: Main Stylesheet

Here's where the magic happens. Here, you'll see we are calling in
the separate media queries. The base mobile goes outside any query
and is called at the beginning, after that we call the rest
of the styles inside media queries.

Helpful articles on Sass file organization:
http://thesassway.com/advanced/modular-css-naming-conventions

******************************************************************/
/******************************************************************
Site Name:
Author:

Stylesheet: Variables

Here is where we declare all our variables like colors, fonts,
base values, and defaults. We want to make sure this file ONLY
contains variables that way our files don't get all messy.
No one likes a mess.

******************************************************************/
/*********************
COLORS
Need help w/ choosing your colors? Try this site out:
http://0to255.com/
*********************/
/*
BEGIN INUIT
*/
/*------------------------------------*\
    $DEFAULTS
\*------------------------------------*/
/**
 * inuit.css’ default variables. Redefine these in your `_vars.scss` file (found
 * in the inuit.css-web-template) to override them.
 */
/*------------------------------------*\
    $DEBUG
\*------------------------------------*/
/**
 * Debug mode will visually highlight any potential markup/accessibility quirks
 * in the browser. Set to `true` or `false`.
 */
/*------------------------------------*\
    $BORDER-BOX
\*------------------------------------*/
/**
 * Do you want all elements to adopt `box-sizing:border-box;` as per
 * paulirish.com/2012/box-sizing-border-box-ftw ?
 */
/*------------------------------------*\
    $BASE
\*------------------------------------*/
/**
 * Base stuff
 */
/**
 * Base font-family.
 */
/**
 * Default colour for objects’ borders etc.
 */
/*------------------------------------*\
    $RESPONSIVE
\*------------------------------------*/
/**
 * Responsiveness?
 */
/**
 * Responsiveness for widescreen/high resolution desktop monitors and beyond?
 * Note: `$responsive` variable above must be set to true before enabling this.
 */
/**
 * Responsive push and pull produce a LOT of code, only turn them on if you
 * definitely need them.
 */
/**
 * Note: `$push` variable above must be set to true before enabling these.
 */
/**
 * Note: `$pull` variable above must be set to true before enabling these.
 */
/**
 * Tell inuit.css when breakpoints start.
 */
/*------------------------------------*\
    $FONT-SIZES
\*------------------------------------*/
/**
 * Font-sizes (in pixels). Refer to relevant sections for their implementations.
 */
/*------------------------------------*\
    $QUOTES
\*------------------------------------*/
/**
 * English quote marks?
 */
/**
 * If you want English quotes then please do not edit these; they’re only here
 * because Sass needs them.
 */
/**
 * If you need non-English quotes, please alter the following values accordingly:
 */
/*------------------------------------*\
    $BRAND
\*------------------------------------*/
/**
 * Brand stuff
 */
/**
 * How big would you like round corners to be by default?
 */
/*------------------------------------*\
    $OBJECTS AND ABSTRACTIONS
\*------------------------------------*/
/**
 * Which objects and abstractions would you like to use?
 */
/*------------------------------------*\
    $FRAMEWORK
\*------------------------------------*/
/**
 * inuit.css will work these next ones out for use within the framework.
 *
 * Assign our `$base-line-height` to a new spacing var for more transparency.
 */
.grid {
  letter-spacing: -0.31em; }

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

.grid__item {
  letter-spacing: normal;
  word-spacing: normal; }

/*------------------------------------*\
    $INUIT IMPORTS
\*------------------------------------*/
/**
 * Generic utility styles etc.
 */
/*------------------------------------*\
    $MIXINS
\*------------------------------------*/
/**
 * Create a fully formed type style (sizing and vertical rhythm) by passing in a
 * single value, e.g.:
 *
   `@include font-size(10px);`
 *
 * Thanks to @redclov3r for the `line-height` Sass:
 * twitter.com/redclov3r/status/250301539321798657
 */
/**
 * Style any number of headings in one fell swoop, e.g.:
 *
   .foo{
       @include headings(1, 3){
           color:#BADA55;
       }
    }
 *
 * With thanks to @lar_zzz, @paranoida, @rowanmanning and ultimately
 * @thierrylemoulec for refining and improving my initial mixin.
 */
/**
 * Create vendor-prefixed CSS in one go, e.g.
 *
   `@include vendor(border-radius, 4px);`
 *
 */
/**
 * Create CSS keyframe animations for all vendors in one go, e.g.:
 *
   .foo{
       @include vendor(animation, shrink 3s);
   }

   @include keyframe(shrink){
       from{
           font-size:5em;
       }
   }
 *
 * Courtesy of @integralist: twitter.com/integralist/status/260484115315437569
 */
/**
 * Force overly long spans of text to truncate, e.g.:
 *
   `@include truncate(100%);`
 *
 * Where `$truncation-boundary` is a united measurement.
 */
/**
 * CSS arrows!!! But... before you read on, you might want to grab a coffee...
 *
 * This mixin creates a CSS arrow on a given element. We can have the arrow
 * appear in one of 12 locations, thus:
 *
 *       01    02    03
 *    +------------------+
 * 12 |                  | 04
 *    |                  |
 * 11 |                  | 05
 *    |                  |
 * 10 |                  | 06
 *    +------------------+
 *       09    08    07
 *
 * You pass this position in along with a desired arrow color and optional
 * border color, for example:
 *
 * `@include arrow(top, left, red)`
 *
 * for just a single, red arrow, or:
 *
 * `@include arrow(bottom, center, red, black)`
 *
 * which will create a red triangle with a black border which sits at the bottom
 * center of the element. Call the mixin thus:
 *
   .foo{
       background-color:#BADA55;
       border:1px solid #ACE;
       @include arrow(top, left, #BADA55, #ACE);
   }
 *
 */
/**
 * Media query mixin.
 *
 * It’s not great practice to define solid breakpoints up-front, preferring to
 * modify your design when it needs it, rather than assuming you’ll want a
 * change at ‘mobile’. However, as inuit.css is required to take a hands off
 * approach to design decisions, this is the closest we can get to baked-in
 * responsiveness. It’s flexible enough to allow you to set your own breakpoints
 * but solid enough to be frameworkified.
 *
 * We define some broad breakpoints in our vars file that are picked up here
 * for use in a simple media query mixin. Our options are:
 *
 * palm
 * lap
 * lap-and-up
 * portable
 * desk
 * desk-wide
 *
 * Not using a media query will, naturally, serve styles to all devices.
 *
 * `@include media-query(palm){ [styles here] }`
 *
 * We work out your end points for you:
 */
/*! normalize.css v2.1.0 | MIT License | git.io/normalize */
/* ==========================================================================
   HTML5 display definitions
   ========================================================================== */
/*
 * Correct `block` display not defined in IE 8/9.
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary {
  display: block; }

/*
 * Correct `inline-block` display not defined in IE 8/9.
 */
audio,
canvas,
video {
  display: inline-block; }

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

/*
 * Address styling not present in IE 8/9.
 */
[hidden] {
  display: none; }

/* ==========================================================================
   Base
   ========================================================================== */
/*
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS text size adjust after orientation change, without disabling
 *    user zoom.
 */
html {
  font-family: sans-serif;
  /* 1 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
  -ms-text-size-adjust: 100%;
  /* 2 */ }

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

/* ==========================================================================
   Links
   ========================================================================== */
/*
 * Address `outline` inconsistency between Chrome and other browsers.
 */
a:focus {
  outline: thin dotted; }

/*
 * Improve readability when focused and also mouse hovered in all browsers.
 */
a:active,
a:hover {
  outline: 0; }

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

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

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

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

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

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

/*
 * Correct font family set oddly in Safari 5 and Chrome.
 */
code,
kbd,
pre,
samp {
  font-family: monospace, serif;
  font-size: 1em; }

/*
 * Improve readability of pre-formatted text in all browsers.
 */
pre {
  white-space: pre-wrap; }

/*
 * Set consistent quote types.
 */
q {
  quotes: "\201C" "\201D" "\2018" "\2019"; }

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

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

sup {
  top: -0.5em; }

sub {
  bottom: -0.25em; }

/* ==========================================================================
   Embedded content
   ========================================================================== */
/*
 * Remove border when inside `a` element in IE 8/9.
 */
img {
  border: 0; }

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

/* ==========================================================================
   Figures
   ========================================================================== */
/*
 * Address margin not present in IE 8/9 and Safari 5.
 */
figure {
  margin: 0; }

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

/*
 * 1. Correct `color` not being inherited in IE 8/9.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 */
legend {
  border: 0;
  /* 1 */
  padding: 0;
  /* 2 */ }

/*
 * 1. Correct font family not being inherited in all browsers.
 * 2. Correct font size not being inherited in all browsers.
 * 3. Address margins set differently in Firefox 4+, Safari 5, and Chrome.
 */
button,
input,
select,
textarea {
  font-family: inherit;
  /* 1 */
  font-size: 100%;
  /* 2 */
  margin: 0;
  /* 3 */ }

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

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

/*
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *    `input` and others.
 */
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  /* 2 */
  cursor: pointer;
  /* 3 */ }

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

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

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

/*
 * Remove inner padding and search cancel button in Safari 5 and Chrome
 * on OS X.
 */
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none; }

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

/*
 * 1. Remove default vertical scrollbar in IE 8/9.
 * 2. Improve readability and alignment in all browsers.
 */
textarea {
  overflow: auto;
  /* 1 */
  vertical-align: top;
  /* 2 */ }

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

/*------------------------------------*\
    $RESET
\*------------------------------------*/
/**
 * A more considered reset; more of a restart...
 * As per: csswizardry.com/2011/10/reset-restarted
 */
/**
* Let’s make the box model all nice, shall we...?
*/
*, *:before, *:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box; }

/**
 * The usual...
 */
h1, h2, h3, h4, h5, h6,
p, blockquote, pre,
dl, dd, ol, ul,
form, fieldset, legend,
table, th, td, caption,
hr {
  margin: 0;
  padding: 0; }

/**
 * Give a help cursor to elements that give extra info on `:hover`.
 */
abbr[title], dfn[title] {
  cursor: help; }

/**
 * Remove underlines from potentially troublesome elements.
 */
u, ins {
  text-decoration: none; }

/**
 * Apply faux underline via `border-bottom`.
 */
ins {
  border-bottom: 1px solid; }

/**
 * So that `alt` text is visually offset if images don’t load.
 */
img {
  font-style: italic; }

/**
 * Give form elements some cursor interactions...
 */
label,
input,
textarea,
button,
select,
option {
  cursor: pointer; }

.text-input:active,
.text-input:focus,
textarea:active,
textarea:focus {
  cursor: text;
  outline: none; }

/*------------------------------------*\
    $CLEARFIX
\*------------------------------------*/
/**
 * Micro clearfix, as per: css-101.org/articles/clearfix/latest-new-clearfix-so-far.php
 * Extend the clearfix class with Sass to avoid the `.cf` class appearing over
 * and over in your markup.
 */
.cf:after, .media:after, .island:after,
.islet:after, .comment-respond:after {
  content: "";
  display: table;
  clear: both; }

/*------------------------------------*\
    $SHARED
\*------------------------------------*/
/**
 * Where `margin-bottom` is concerned, this value will be the same as the
 * base line-height. This allows us to keep a consistent vertical rhythm.
 * As per: csswizardry.com/2012/06/single-direction-margin-declarations
 */
/**
 * Base elements
 */
h1, h2, h3, h4, h5, h6, hgroup,
ul, ol, dl,
blockquote, p, address,
table,
fieldset, figure,
pre,
.form-fields > li,
.media,
.island,
.islet {
  margin-bottom: 24px;
  margin-bottom: 1.5rem; }
  .islet h1, .islet h2, .islet h3, .islet h4, .islet h5, .islet h6, .islet hgroup, .islet
  ul, .islet ol, .islet dl, .islet
  blockquote, .islet p, .islet address, .islet
  table, .islet
  fieldset, .islet figure, .islet
  pre, .islet .form-fields > li, .islet
  .media, .islet
  .island, .islet
  .islet {
    margin-bottom: 12px;
    margin-bottom: 0.75rem; }

/**
 * Doubled up `margin-bottom` helper class.
 */
.landmark {
  margin-bottom: 48px;
  margin-bottom: 3rem; }

/**
 * `hr` elements only take up a few pixels, so we need to give them special
 * treatment regarding vertical rhythm.
 */
hr {
  margin-bottom: 22px;
  margin-bottom: 1.375rem; }

/**
 * Where `margin-left` is concerned we want to try and indent certain elements
 * by a consistent amount. Define that amount once, here.
 */
ul, ol, dd {
  margin-left: 48px;
  margin-left: 3rem; }

/**
 * Base styles; unclassed HTML elements etc.
 */
/*------------------------------------*\
    $MAIN
\*------------------------------------*/
html {
  font: 1em/1.5 sans-serif;
  overflow-y: scroll;
  min-height: 100%; }

/*------------------------------------*\
    $HEADINGS
\*------------------------------------*/
/**
 * As per: csswizardry.com/2012/02/pragmatic-practical-font-sizing-in-css
 *
 * When we define a heading we also define a corresponding class to go with it.
 * This allows us to apply, say, `class=alpha` to a `h3`; a double-stranded
 * heading hierarchy.
 */
h1, .alpha {
  font-size: 36px;
  font-size: 2.25rem;
  line-height: 1.3333333333; }

h2, .beta {
  font-size: 30px;
  font-size: 1.875rem;
  line-height: 1.6; }

h3, .gamma {
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 1; }

h4, .delta {
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 1.2; }

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

h6, .zeta {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.7142857143; }

/**
 * Heading groups and generic any-heading class.
 * To target any heading of any level simply apply a class of `.hN`, e.g.:
 *
   <hgroup>
       <h1 class=hN>inuit.css</h1>
       <h2 class=hN>Best. Framework. Ever!</h2>
   </hgroup>
 *
 */
hgroup .hN {
  margin-bottom: 0; }

/**
 * A series of classes for setting massive type; for use in heroes, mastheads,
 * promos, etc.
 */
.giga {
  font-size: 96px;
  font-size: 6rem;
  line-height: 1; }

.mega {
  font-size: 72px;
  font-size: 4.5rem;
  line-height: 1; }

.kilo {
  font-size: 48px;
  font-size: 3rem;
  line-height: 1; }

/*------------------------------------*\
    $PARAGRAPHS
\*------------------------------------*/
/**
 * The `.lede` class is used to make the introductory text (usually a paragraph)
 * of a document slightly larger.
 */
.lede,
.lead {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.3333333333; }

/*------------------------------------*\
    $SMALLPRINT
\*------------------------------------*/
/**
 * A series of classes for setting tiny type; for use in smallprint etc.
 */
.smallprint,
.milli {
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 2; }

.micro {
  font-size: 10px;
  font-size: 0.625rem;
  line-height: 2.4; }

/*------------------------------------*\
    $CODE
\*------------------------------------*/
/**
 * Use an explicit font stack to ensure browsers render correct `line-height`.
 */
pre {
  overflow: auto; }

pre mark {
  background: none;
  border-bottom: 1px solid;
  color: inherit; }

/**
 * Add comments to your code examples, e.g.:
 *
   <code>&lt;/div&gt;<span class=code-comment>&lt;!-- /wrapper --&gt;</span></code>
 *
 */
.code-comment {
  /**
   * Override this setting in your theme stylesheet
   */
  opacity: 0.75;
  filter: alpha(opacity=75); }

/**
 * You can add line numbers to your code examples but be warned, it requires
 * some pretty funky looking markup, e.g.:
 *
   <ol class=line-numbers>
       <li><code>.nav{</code></li>
       <li><code>    list-style:none;</code></li>
       <li><code>    margin-left:0;</code></li>
       <li><code>}</code></li>
       <li><code>    .nav > li,</code></li>
       <li><code>        .nav > li > a{</code></li>
       <li><code>            display:inline-block;</code></li>
       <li><code>           *display:inline-block;</code></li>
       <li><code>            zoom:1;</code></li>
       <li><code>        }</code></li>
   </ol>
 *
 * 1. Make the list look like code.
 * 2. Give the list flush numbers with a leading zero.
 * 3. Make sure lines of code don’t wrap.
 * 4. Give the code form by forcing the `code` to honour white-space.
 */
.line-numbers {
  font-family: monospace, serif;
  /* [1] */
  list-style: decimal-leading-zero inside;
  /* [2] */
  white-space: nowrap;
  /* [3] */
  overflow: auto;
  /* [3] */
  margin-left: 0; }

.line-numbers code {
  white-space: pre;
  /* [4] */ }

/*------------------------------------*\
    $IMAGES
\*------------------------------------*/
/**
 * Demo: jsfiddle.net/inuitcss/yMtur
 */
/**
 * Fluid images.
 */
img {
  max-width: 100%; }

/**
 * Non-fluid images if you specify `width` and/or `height` attributes.
 */
img[width],
img[height] {
  max-width: none; }

/**
 * Rounded images.
 */
.img--round {
  border-radius: 4px; }

/**
 * Image placement variations.
 */
.img--right {
  float: right;
  margin-bottom: 24px;
  margin-left: 24px; }

.img--left {
  float: left;
  margin-right: 24px;
  margin-bottom: 24px; }

.img--center {
  display: block;
  margin-right: auto;
  margin-bottom: 24px;
  margin-left: auto; }

/**
 * Keep your images on your baseline.
 *
 * Please note, these will not work too nicely with fluid images and will
 * distort when resized below a certain width. Use with caution.
 */
.img--short {
  height: 120px; }

.img--medium {
  height: 240px; }

.img--tall {
  height: 360px; }

/**
 * Images in `figure` elements.
 */
figure > img {
  display: block; }

/*------------------------------------*\
    $LISTS
\*------------------------------------*/
/**
 * Remove vertical spacing from nested lists.
 */
li > ul,
li > ol {
  margin-bottom: 0; }

/**
 * Have a numbered `ul` without the semantics implied by using an `ol`.
 */
/*ul*/
.numbered-list {
  list-style-type: decimal; }

/*------------------------------------*\
    $TABLES
\*------------------------------------*/
/**
 * We have a lot at our disposal for making very complex table constructs, e.g.:
 *
   <table class="table--bordered  table--striped  table--data">
       <colgroup>
           <col class=t10>
           <col class=t10>
           <col class=t10>
           <col>
       </colgroup>
       <thead>
           <tr>
               <th colspan=3>Foo</th>
               <th>Bar</th>
           </tr>
           <tr>
               <th>Lorem</th>
               <th>Ipsum</th>
               <th class=numerical>Dolor</th>
               <th>Sit</th>
           </tr>
       </thead>
       <tbody>
           <tr>
               <th rowspan=3>Sit</th>
               <td>Dolor</td>
               <td class=numerical>03.788</td>
               <td>Lorem</td>
           </tr>
           <tr>
               <td>Dolor</td>
               <td class=numerical>32.210</td>
               <td>Lorem</td>
           </tr>
           <tr>
               <td>Dolor</td>
               <td class=numerical>47.797</td>
               <td>Lorem</td>
           </tr>
           <tr>
               <th rowspan=2>Sit</th>
               <td>Dolor</td>
               <td class=numerical>09.640</td>
               <td>Lorem</td>
           </tr>
           <tr>
               <td>Dolor</td>
               <td class=numerical>12.117</td>
               <td>Lorem</td>
           </tr>
       </tbody>
   </table>
 *
 */
table {
  width: 100%; }

th,
td {
  padding: 6px;
  text-align: left; }
  @media screen and (min-width: 480px) {
    th,
    td {
      padding: 12px; } }

/**
 * Cell alignments
 */
[colspan] {
  text-align: center; }

[colspan="1"] {
  text-align: left; }

[rowspan] {
  vertical-align: middle; }

[rowspan="1"] {
  vertical-align: top; }

.numerical {
  text-align: right; }

/**
 * In the HTML above we see several `col` elements with classes whose numbers
 * represent a percentage width for that column. We leave one column free of a
 * class so that column can soak up the effects of any accidental breakage in
 * the table.
 */
.t5 {
  width: 5%; }

.t10 {
  width: 10%; }

.t12 {
  width: 12.5%; }

/* 1/8 */
.t15 {
  width: 15%; }

.t20 {
  width: 20%; }

.t25 {
  width: 25%; }

/* 1/4 */
.t30 {
  width: 30%; }

.t33 {
  width: 33.333%; }

/* 1/3 */
.t35 {
  width: 35%; }

.t37 {
  width: 37.5%; }

/* 3/8 */
.t40 {
  width: 40%; }

.t45 {
  width: 45%; }

.t50 {
  width: 50%; }

/* 1/2 */
.t55 {
  width: 55%; }

.t60 {
  width: 60%; }

.t62 {
  width: 62.5%; }

/* 5/8 */
.t65 {
  width: 65%; }

.t66 {
  width: 66.666%; }

/* 2/3 */
.t70 {
  width: 70%; }

.t75 {
  width: 75%; }

/* 3/4*/
.t80 {
  width: 80%; }

.t85 {
  width: 85%; }

.t87 {
  width: 87.5%; }

/* 7/8 */
.t90 {
  width: 90%; }

.t95 {
  width: 95%; }

/**
 * Bordered tables
 */
.table--bordered th,
.table--bordered td {
  border: 1px solid #ccc; }
  .table--bordered th:empty,
  .table--bordered td:empty {
    border: none; }
.table--bordered thead tr:last-child th {
  border-bottom-width: 2px; }
.table--bordered tbody tr th:last-of-type {
  border-right-width: 2px; }

/**
 * Striped tables
 */
.table--striped tbody tr:nth-of-type(odd) {
  background-color: #ffc;
  /* Override this color in your theme stylesheet */ }

/**
 * Data table
 */
.table--data {
  font: 12px/1.5 sans-serif; }

/*------------------------------------*\
    $FORMS
\*------------------------------------*/
/**
 *
 * Demo: jsfiddle.net/inuitcss/MhHHU
 *
 */
fieldset {
  padding: 24px; }

/**
 * Text inputs
 *
 * Instead of a `[type]` selector for each kind of form input, we just use a
 * class to target any/every one, e.g.:
   <input type=text class=text-input>
   <input type=email class=text-input>
   <input type=password class=text-input>
 *
 */
.text-input,
textarea {
  /**
   * Style these via your theme stylesheet.
   */ }

/**
 * Group sets of form fields in a list, e.g.:
 *
   <ul class=form-fields>
       <li>
           <label />
           <input />
       </li>
       <li>
           <label />
           <select />
       </li>
       <li>
           <label />
           <input />
       </li>
   </ul>
 *
 */
.form-fields {
  list-style: none;
  margin: 0; }

.form-fields > li:last-child {
  margin-bottom: 0; }

/**
 * Labels
 *
 * Define a `.label` class as well as a `label` element. This means we can apply
 * label-like styling to meta-labels for groups of options where a `label`
 * element is not suitable, e.g.:
 *
   <li>
       <span class=label>Select an option below:</span>
       <ul class="multi-list  four-cols">
           <li>
               <input /> <label />
           </li>
           <li>
               <input /> <label />
           </li>
           <li>
               <input /> <label />
           </li>
           <li>
               <input /> <label />
           </li>
       </ul>
   </li>
 *
 */
label,
.label {
  display: block; }

/**
 * Extra help text in `label`s, e.g.:
 *
   <label>Card number <small class=additional>No spaces</small></label>
 *
 */
.additional {
  display: block;
  font-weight: normal; }

/*
 * Groups of checkboxes and radios, e.g.:
 *
   <li>
       <ul class=check-list>
           <li>
               <input /> <label />
           </li>
           <li>
               <input /> <label />
           </li>
       </ul>
   </li>
 *
 */
.check-list {
  list-style: none;
  margin: 0; }

/*
 * Labels in check-lists
 */
.check-label,
.check-list label,
.check-list .label {
  display: inline-block; }

/**
 * Spoken forms are for forms that read like spoken word, e.g.:
 *
   <li class=spoken-form>
       Hello, my <label for=spoken-name>name</label> is
       <input type=text class=text-input id=spoken-name>. My home
       <label for=country>country</label> is
       <select id=country>
           <option>UK</option>
           <option>US</option>
           <option>Other</option>
       </select>
   </li>
 *
 */
.spoken-form label {
  display: inline-block;
  font: inherit; }

/**
 * Extra help text displayed after a field when that field is in focus, e.g.:
 *
   <label for=email>Email:</label>
   <input type=email class=text-input id=email>
   <small class=extra-help>.edu emails only</small>
 *
 * We leave the help text in the document flow and merely set it to
 * `visibility:hidden;`. This means that it won’t interfere with anything once
 * it reappears.
 *
 */
/*small*/
.extra-help {
  display: inline-block;
  visibility: hidden; }

.text-input:active + .extra-help,
.text-input:focus + .extra-help {
  visibility: visible; }

/**
 * Objects and abstractions
 */
/*------------------------------------*\
$GRIDS
\*------------------------------------*/
/**
* Fluid and nestable grid system. It is necessary to comment out, or otherwise
* remove, the whitespace from between grid items, e.g.:
*
<div class="grid">
<div class="grid__item one-third">
<p>One third grid</p>
</div><!--
--><div class="grid__item two-thirds">
<p>Two thirds grid</p>
</div><!--
--><div class="grid__item one-half">
<p>One half grid</p>
</div><!--
--><div class="grid__item one-quarter">
<p>One quarter grid</p>
</div><!--
--><div class="grid__item one-quarter">
<p>One quarter grid</p>
</div>
</div>
*
* Demo: jsfiddle.net/inuitcss/CLYUC
*
*/
/**
* Grid wrapper
*/
.grid {
  margin-left: -24px;
  list-style: none;
  margin-bottom: 0; }

/**
* Very infrequently occuring grid wrappers as children of grid wrappers.
*/
.grid > .grid {
  margin-left: 0; }

/**
* Grid
*/
.grid__item {
  display: inline-block;
  width: 100%;
  padding-left: 24px;
  vertical-align: top; }

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

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

/*------------------------------------*\
    $MEDIA
\*------------------------------------*/
/**
 * Place any image- and text-like content side-by-side, as per:
 * stubbornella.org/content/2010/06/25/the-media-object-saves-hundreds-of-lines-of-code
 * E.g.:
 *
   <div class=media>
       <img src=http://placekitten.com/200/300 alt="" class=media__img>
       <p class=media__body>Lorem ipsum dolor sit amet, consectetur adipisicing elit,
       sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.</p>
   </div>
 *
 * Demo: jsfiddle.net/inuitcss/cf4Qs
 *
 */
.media {
  display: block; }

.media__img {
  float: left;
  margin-right: 24px; }

/**
 * Reversed image location (right instead of left).
 */
.media__img--rev {
  float: right;
  margin-left: 24px; }

.media__img img,
.media__img--rev img {
  display: block; }

.media__body {
  overflow: hidden; }

.media__body,
.media__body > :last-child {
  margin-bottom: 0; }

/**
 * `.img`s in `.islet`s need an appropriately sized margin.
 */
.islet .media__img {
  margin-right: 12px; }

.islet .media__img--rev {
  margin-left: 12px; }

/*------------------------------------*\
    $ISLAND
\*------------------------------------*/
/**
 * Simple, boxed off content, as per: csswizardry.com/2011/10/the-island-object
 * E.g.:
 *
   <div class=island>
       I am boxed off.
   </div>
 *
 * Demo: jsfiddle.net/inuitcss/u8pV3
 *
 */
.island,
.islet {
  display: block; }

.island {
  padding: 24px; }

.island > :last-child,
.islet > :last-child {
  margin-bottom: 0; }

/**
 * Just like `.island`, only smaller.
 */
.islet {
  padding: 12px; }

/*------------------------------------*\
    $BLOCK-LIST
\*------------------------------------*/
/**
 * Create big blocky lists of content, e.g.:
 *
   <ul class=block-list>
      <li>Foo</li>
      <li>Bar</li>
      <li>Baz</li>
      <li><a href=# class=block-list__link>Foo Bar Baz</a></li>
   </ul>
 *
 * Extend this object in your theme stylesheet.
 *
 * Demo: jsfiddle.net/inuitcss/hR57q
 *
 */
.block-list,
.block-list > li {
  border: 0 solid #ccc; }

.block-list {
  list-style: none;
  margin-left: 0;
  border-top-width: 1px; }
  .block-list > li {
    border-bottom-width: 1px;
    padding: 12px; }

.block-list__link {
  display: block;
  padding: 12px;
  margin: -12px; }

/**
 * Style trumps; helper and brand classes
 */
/*------------------------------------*\
    $WIDTHS
\*------------------------------------*/
/**
 * Sizes in human readable format. These are used in conjunction with other
 * objects and abstractions found in inuit.css, most commonly the grid system
 * and faux flexbox.
 *
 * We have a mixin to generate our widths and their breakpoint-specific
 * variations.
 */
/**
* 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%; }

/**
 * If you have set `$responsive` to ‘true’ in `_vars.scss` then you now have
 * access to these classes. You can define at which breakpoint you’d like an
 * element to be a certain size, e.g.:
 *
 * `<div class="g  one-quarter  lap-one-half  palm-one-whole"> ... </div>`
 *
 * This would create a `div` that, at ‘desktop’ sizes, takes up a quarter of the
 * horizontal space, a half of that space at ‘tablet’ sizes, and goes full width
 * at ‘mobile’ sizes.
 *
 * Demo: jsfiddle.net/inuitcss/WS4Ge
 *
 */
@media only screen and (max-width: 480px) {
  /**
  * Whole
  */
  .palm-one-whole {
    width: 100%; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .lap-and-up-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%; } }
/**
 * If you have set the additional `$responsive-extra` variable to ‘true’ in
 * `_vars.scss` then you now have access to the following class available to
 * accomodate much larger screen resolutions.
 */
/* endif */
/*------------------------------------*\
    $PUSH
\*------------------------------------*/
/**
 * Push classes, to move grid items over to the right by certain amounts.
 */
/*------------------------------------*\
    $PULL
\*------------------------------------*/
/**
 * Pull classes, to move grid items over to the right by certain amounts.
 */
/*------------------------------------*\
    $BRAND
\*------------------------------------*/
/**
 * `.brand` is a quick and simple way to apply your brand face and/or color to
 * any element using a handy helper class.
 */
.brand {
  font-family: Helvetica Neue, sans-serif!important;
  color: #4a8ec2!important; }

.brand-face {
  font-family: Helvetica Neue, sans-serif!important; }

.brand-color,
.brand-colour {
  color: #4a8ec2!important; }

/*------------------------------------*\
    $HELPER
\*------------------------------------*/
/**
 * A series of helper classes to use arbitrarily. Only use a helper class if an
 * element/component doesn’t already have a class to which you could apply this
 * styling, e.g. if you need to float `.main-nav` left then add `float:left;` to
 * that ruleset as opposed to adding the `.float--left` class to the markup.
 *
 * A lot of these classes carry `!important` as you will always want them to win
 * out over other selectors.
 */
/**
 * Add/remove floats
 */
.float--right {
  float: right !important; }

.float--left {
  float: left !important; }

.float--none {
  float: none !important; }

/**
 * Text alignment
 */
.text--left {
  text-align: left  !important; }

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

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

/**
 * Font weights
 */
.weight--light {
  font-weight: 300 !important; }

.weight--normal {
  font-weight: 400 !important; }

.weight--semibold {
  font-weight: 600 !important; }

/**
 * Add/remove margins
 */
.push {
  margin: 24px !important; }

.push--top {
  margin-top: 24px !important; }

.push--right {
  margin-right: 24px !important; }

.push--bottom {
  margin-bottom: 24px !important; }

.push--left {
  margin-left: 24px !important; }

.push--ends {
  margin-top: 24px !important;
  margin-bottom: 24px !important; }

.push--sides {
  margin-right: 24px !important;
  margin-left: 24px !important; }

.push-half {
  margin: 12px !important; }

.push-half--top {
  margin-top: 12px !important; }

.push-half--right {
  margin-right: 12px !important; }

.push-half--bottom {
  margin-bottom: 12px !important; }

.push-half--left {
  margin-left: 12px !important; }

.push-half--ends {
  margin-top: 12px !important;
  margin-bottom: 12px !important; }

.push-half--sides {
  margin-right: 12px !important;
  margin-left: 12px !important; }

.flush {
  margin: 0 !important; }

.flush--top {
  margin-top: 0 !important; }

.flush--right {
  margin-right: 0 !important; }

.flush--bottom {
  margin-bottom: 0 !important; }

.flush--left {
  margin-left: 0 !important; }

.flush--ends {
  margin-top: 0 !important;
  margin-bottom: 0 !important; }

.flush--sides {
  margin-right: 0 !important;
  margin-left: 0 !important; }

/**
 * Add/remove paddings
 */
.soft {
  padding: 24px !important; }

.soft--top {
  padding-top: 24px !important; }

.soft--right {
  padding-right: 24px !important; }

.soft--bottom {
  padding-bottom: 24px !important; }

.soft--left {
  padding-left: 24px !important; }

.soft--ends {
  padding-top: 24px !important;
  padding-bottom: 24px !important; }

.soft--sides {
  padding-right: 24px !important;
  padding-left: 24px !important; }

.soft-half {
  padding: 12px !important; }

.soft-half--top {
  padding-top: 12px !important; }

.soft-half--right {
  padding-right: 12px !important; }

.soft-half--bottom {
  padding-bottom: 12px !important; }

.soft-half--left {
  padding-left: 12px !important; }

.soft-half--ends {
  padding-top: 12px !important;
  padding-bottom: 12px !important; }

.soft-half--sides {
  padding-right: 12px !important;
  padding-left: 12px !important; }

.hard {
  padding: 0 !important; }

.hard--top {
  padding-top: 0 !important; }

.hard--right {
  padding-right: 0 !important; }

.hard--bottom {
  padding-bottom: 0 !important; }

.hard--left {
  padding-left: 0 !important; }

.hard--ends {
  padding-top: 0 !important;
  padding-bottom: 0 !important; }

.hard--sides {
  padding-right: 0 !important;
  padding-left: 0 !important; }

/**
 * Pull items full width of `.island` parents.
 */
.full-bleed {
  margin-right: -24px !important;
  margin-left: -24px !important; }
  .islet .full-bleed {
    margin-right: -12px !important;
    margin-left: -12px !important; }

/**
 * Add a help cursor to any element that gives the user extra information on
 * `:hover`.
 */
.informative {
  cursor: help !important; }

/**
 * Mute an object by reducing its opacity.
 */
.muted {
  opacity: 0.5 !important;
  filter: alpha(opacity=50) !important; }

/**
 * Align items to the right where they imply progression/movement forward, e.g.:
 *
   <p class=proceed><a href=#>Read more...</a></p>
 *
 */
.proceed {
  text-align: right !important; }

/**
 * Add a right-angled quote to links that imply movement, e.g.:
 *
   <a href=# class=go>Read more</a>
 *
 */
.go:after {
  content: " " "»" !important; }

/**
 * Apply capital case to an element (usually a `strong`).
 */
.caps {
  text-transform: uppercase !important; }

/**
 * Hide content off-screen without resorting to `display:none;`, also provide
 * breakpoint specific hidden elements.
 */
.accessibility,
.visuallyhidden {
  border: 0 !important;
  clip: rect(0 0 0 0) !important;
  height: 1px !important;
  margin: -1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  width: 1px !important; }

@media only screen and (max-width: 480px) {
  .accessibility--palm,
  .visuallyhidden--palm {
    border: 0 !important;
    clip: rect(0 0 0 0) !important;
    height: 1px !important;
    margin: -1px !important;
    overflow: hidden !important;
    padding: 0 !important;
    position: absolute !important;
    width: 1px !important; } }
@media only screen and (min-width: 481px) and (max-width: 1023px) {
  .accessibility--lap,
  .visuallyhidden--lap {
    border: 0 !important;
    clip: rect(0 0 0 0) !important;
    height: 1px !important;
    margin: -1px !important;
    overflow: hidden !important;
    padding: 0 !important;
    position: absolute !important;
    width: 1px !important; } }
@media only screen and (min-width: 481px) {
  .accessibility--lap-and-up,
  .visuallyhidden--lap-and-up {
    border: 0 !important;
    clip: rect(0 0 0 0) !important;
    height: 1px !important;
    margin: -1px !important;
    overflow: hidden !important;
    padding: 0 !important;
    position: absolute !important;
    width: 1px !important; } }
@media only screen and (max-width: 1023px) {
  .accessibility--portable,
  .visuallyhidden--portable {
    border: 0 !important;
    clip: rect(0 0 0 0) !important;
    height: 1px !important;
    margin: -1px !important;
    overflow: hidden !important;
    padding: 0 !important;
    position: absolute !important;
    width: 1px !important; } }
@media only screen and (min-width: 1024px) {
  .accessibility--desk,
  .visuallyhidden--desk {
    border: 0 !important;
    clip: rect(0 0 0 0) !important;
    height: 1px !important;
    margin: -1px !important;
    overflow: hidden !important;
    padding: 0 !important;
    position: absolute !important;
    width: 1px !important; } }
@media only screen and (min-width: 1200px) {
  .accessibility--desk-wide,
  .visuallyhidden--desk-wide {
    border: 0 !important;
    clip: rect(0 0 0 0) !important;
    height: 1px !important;
    margin: -1px !important;
    overflow: hidden !important;
    padding: 0 !important;
    position: absolute !important;
    width: 1px !important; } }
/* endif */
/*********************
IMPORTING PARTIALS
These files are needed at the beginning so that we establish all
our mixins, functions, and variables that we'll be using across
the whole project.
*********************/
/* normalize.css 2012-07-07T09:50 UTC - http://github.com/necolas/normalize.css */
/* ==========================================================================
   HTML5 display definitions
   ========================================================================== */
/**
 * Correct `block` display not defined in IE 8/9.
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary {
  display: block; }

/**
 * Correct `inline-block` display not defined in IE 8/9.
 */
audio,
canvas,
video {
  display: inline-block; }

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

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

/* ==========================================================================
   Base
   ========================================================================== */
/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS text size adjust after orientation change, without disabling
 *    user zoom.
 */
html {
  font-family: sans-serif;
  /* 1 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */ }

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

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

/**
 * Address `outline` inconsistency between Chrome and other browsers.
 */
a:focus {
  outline: thin dotted; }

/**
 * Improve readability when focused and also mouse hovered in all browsers.
 */
a:active,
a:hover {
  outline: 0; }

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

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

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

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

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

/*
 * proper formatting (http://blog.fontdeck.com/post/9037028497/hyphens)
*/
/*
p {
  -webkit-hyphens: auto;
  -epub-hyphens:   auto;
  -moz-hyphens:    auto;
  hyphens:         auto;

}
*/
/*
 * Addresses margins set differently in IE6/7.
 */
pre {
  margin: 0; }

/**
 * Correct font family set oddly in Safari 5 and Chrome.
 */
code,
kbd,
pre,
samp {
  font-family: monospace, serif;
  font-size: 1em; }

/**
 * Improve readability of pre-formatted text in all browsers.
 */
pre {
  white-space: pre-wrap; }

/**
 * Set consistent quote types.
 */
q {
  quotes: "\201C" "\201D" "\2018" "\2019"; }

/**
 * Address inconsistent and variable font size in all browsers.
 */
q:before,
q:after {
  content: '';
  content: none; }

small, .small {
  font-size: 75%; }

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

sup {
  top: -0.5em; }

sub {
  bottom: -0.25em; }

/* ==========================================================================
  Lists
========================================================================== */
/*
 * Addresses margins set differently in IE6/7.
 */
dl,
menu,
ol,
ul {
  margin: 1em 0; }

dd {
  margin: 0; }

/*
 * Addresses paddings set differently in IE6/7.
 */
menu {
  padding: 0 0 0 40px; }

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

/*
 * Corrects list images handled incorrectly in IE7.
 */
nav ul,
nav ol {
  list-style: none;
  list-style-image: none; }

/* ==========================================================================
  Embedded content
========================================================================== */
/**
 * Remove border when inside `a` element in IE 8/9.
 */
img {
  border: 0; }

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

/* ==========================================================================
   Figures
   ========================================================================== */
/**
 * Address margin not present in IE 8/9 and Safari 5.
 */
figure {
  margin: 0; }

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

/**
 * 1. Correct `color` not being inherited in IE 8/9.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 */
legend {
  border: 0;
  /* 1 */
  padding: 0;
  /* 2 */ }

/**
 * 1. Correct font family not being inherited in all browsers.
 * 2. Correct font size not being inherited in all browsers.
 * 3. Address margins set differently in Firefox 4+, Safari 5, and Chrome.
 */
button,
input,
select,
textarea {
  font-family: inherit;
  /* 1 */
  font-size: 100%;
  /* 2 */
  margin: 0;
  /* 3 */ }

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

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

/**
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *    `input` and others.
 */
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  /* 2 */
  cursor: pointer;
  /* 3 */ }

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

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

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

/**
 * Remove inner padding and search cancel button in Safari 5 and Chrome
 * on OS X.
 */
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none; }

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

/**
 * 1. Remove default vertical scrollbar in IE 8/9.
 * 2. Improve readability and alignment in all browsers.
 */
textarea {
  overflow: auto;
  /* 1 */
  vertical-align: top;
  /* 2 */ }

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

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

.image-replacement,
.ir {
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden; }

.clearfix, .cf, .media, .island,
.islet, .comment-respond {
  zoom: 1; }
  .clearfix:before, .clearfix:after, .cf:before, .media:before, .island:before,
  .islet:before, .comment-respond:before, .cf:after, .media:after, .island:after,
  .islet:after, .comment-respond:after {
    content: "";
    display: table; }
  .clearfix:after, .cf:after, .media:after, .island:after,
  .islet:after, .comment-respond:after {
    clear: both; }

/*
use the best ampersand
http://simplebits.com/notebook/2008/08/14/ampersands-2/
*/
span.amp {
  font-family: Baskerville,'Goudy Old Style',Palatino,'Book Antiqua',serif !important;
  font-style: italic; }

/******************************************************************
Site Name:
Author:

Stylesheet: Variables

Here is where we declare all our variables like colors, fonts,
base values, and defaults. We want to make sure this file ONLY
contains variables that way our files don't get all messy.
No one likes a mess.

******************************************************************/
/*********************
COLORS
Need help w/ choosing your colors? Try this site out:
http://0to255.com/
*********************/
/*
BEGIN INUIT
*/
/*------------------------------------*\
    $DEFAULTS
\*------------------------------------*/
/**
 * inuit.css’ default variables. Redefine these in your `_vars.scss` file (found
 * in the inuit.css-web-template) to override them.
 */
/*------------------------------------*\
    $DEBUG
\*------------------------------------*/
/**
 * Debug mode will visually highlight any potential markup/accessibility quirks
 * in the browser. Set to `true` or `false`.
 */
/*------------------------------------*\
    $BORDER-BOX
\*------------------------------------*/
/**
 * Do you want all elements to adopt `box-sizing:border-box;` as per
 * paulirish.com/2012/box-sizing-border-box-ftw ?
 */
/*------------------------------------*\
    $BASE
\*------------------------------------*/
/**
 * Base stuff
 */
/**
 * Base font-family.
 */
/**
 * Default colour for objects’ borders etc.
 */
/*------------------------------------*\
    $RESPONSIVE
\*------------------------------------*/
/**
 * Responsiveness?
 */
/**
 * Responsiveness for widescreen/high resolution desktop monitors and beyond?
 * Note: `$responsive` variable above must be set to true before enabling this.
 */
/**
 * Responsive push and pull produce a LOT of code, only turn them on if you
 * definitely need them.
 */
/**
 * Note: `$push` variable above must be set to true before enabling these.
 */
/**
 * Note: `$pull` variable above must be set to true before enabling these.
 */
/**
 * Tell inuit.css when breakpoints start.
 */
/*------------------------------------*\
    $FONT-SIZES
\*------------------------------------*/
/**
 * Font-sizes (in pixels). Refer to relevant sections for their implementations.
 */
/*------------------------------------*\
    $QUOTES
\*------------------------------------*/
/**
 * English quote marks?
 */
/**
 * If you want English quotes then please do not edit these; they’re only here
 * because Sass needs them.
 */
/**
 * If you need non-English quotes, please alter the following values accordingly:
 */
/*------------------------------------*\
    $BRAND
\*------------------------------------*/
/**
 * Brand stuff
 */
/**
 * How big would you like round corners to be by default?
 */
/*------------------------------------*\
    $OBJECTS AND ABSTRACTIONS
\*------------------------------------*/
/**
 * Which objects and abstractions would you like to use?
 */
/*------------------------------------*\
    $FRAMEWORK
\*------------------------------------*/
/**
 * inuit.css will work these next ones out for use within the framework.
 *
 * Assign our `$base-line-height` to a new spacing var for more transparency.
 */
.grid {
  letter-spacing: -0.31em; }

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

.grid__item {
  letter-spacing: normal;
  word-spacing: normal; }

/******************************************************************
Site Name:
Author:

Stylesheet: Typography

Need to import a font or set of icons for your site? Drop them in
here or just use this to establish your typographical grid. Or not.
Do whatever you want to...GOSH!

Helpful Articles:
http://trentwalton.com/2012/06/19/fluid-type/
http://ia.net/blog/responsive-typography-the-basics/
http://alistapart.com/column/responsive-typography-is-a-physical-discipline

******************************************************************/
/*********************
FONT FACE (IN YOUR FACE)
*********************/
/*  To embed your own fonts, use this syntax
  and place your fonts inside the
  library/fonts folder. For more information
  on embedding fonts, go to:
  http://www.fontsquirrel.com/
  Be sure to remove the comment brackets.
*/
/*  @font-face {
      font-family: 'Font Name';
      src: url('library/fonts/font-name.eot');
      src: url('library/fonts/font-name.eot?#iefix') format('embedded-opentype'),
             url('library/fonts/font-name.woff') format('woff'),
             url('library/fonts/font-name.ttf') format('truetype'),
             url('library/fonts/font-name.svg#font-name') format('svg');
      font-weight: normal;
      font-style: normal;
  }
*/
/*
The following is based of Typebase:
https://github.com/devinhunt/typebase.css
I've edited it a bit, but it's a nice starting point.
*/
/*
 i imported this one in the functions file so bones would look sweet.
 don't forget to remove it for your site.
*/
/*
some nice typographical defaults
more here: http://www.newnet-soft.com/blog/csstypography
*/
/*
p {
  -ms-word-break: break-all;
  -ms-word-wrap: break-all;
      word-break: break-word;
     word-break: break-word;
  // cleaning up the ragged lines and breaks
  -webkit-hyphens: auto;
     -moz-hyphens: auto;
          hyphens: auto;
  // sets a minimum number of characters before and after the break
  -webkit-hyphenate-before: 2;
   -webkit-hyphenate-after: 3;
           hyphenate-lines: 3;
  // enabling fancy ligatures when available
  -webkit-font-feature-settings: "liga", "dlig";
   -moz-font-feature-settings: "liga=1, dlig=1";
      -ms-font-feature-settings: "liga", "dlig";
       -o-font-feature-settings: "liga", "dlig";
          font-feature-settings: "liga", "dlig";
}
*/
/******************************************************************
Site Name:
Author:

Stylesheet: Sass Functions

You can do a lot of really cool things in Sass. Functions help you
make repeated actions a lot easier. They are really similar to mixins,
but can be used for so much more.

Anyway, keep them all in here so it's easier to find when you're
looking for one.

For more info on functions, go here:
http://sass-lang.com/documentation/Sass/Script/Functions.html

******************************************************************/
/*********************
COLOR FUNCTIONS
These are helpful when you're working
with shadows and such things. It's essentially
a quicker way to write RGBA.

Example:
box-shadow: 0 0 4px black(0.3);
compiles to:
box-shadow: 0 0 4px rgba(0,0,0,0.3);
*********************/
/*********************
RESPONSIVE HELPER FUNCTION
If you're creating a responsive site, then
you've probably already read
Responsive Web Design: http://www.abookapart.com/products/responsive-web-design

Here's a nice little helper function for calculating
target / context
as mentioned in that book.

Example:
width: cp(650px, 1000px);
or
width: calc-percent(650px, 1000px);
both compile to:
width: 65%;
*********************/
/******************************************************************
Site Name:
Author:

Stylesheet: Mixins Stylesheet

This is where you can take advantage of Sass' great features: Mixins.
I won't go in-depth on how they work exactly,
there are a few articles below that will help do that. What I will
tell you is that this will help speed up simple changes like
changing a color or adding CSS3 techniques gradients.

A WORD OF WARNING: It's very easy to overdo it here. Be careful and
remember less is more.

Helpful:
http://sachagreif.com/useful-sass-mixins/
http://thesassway.com/intermediate/leveraging-sass-mixins-for-cleaner-code
http://web-design-weekly.com/blog/2013/05/12/handy-sass-mixins/

******************************************************************/
/*********************
TRANSITION
*********************/
/*
I totally rewrote this to be cleaner and easier to use.
You'll need to be using Sass 3.2+ for these to work.
Thanks to @anthonyshort for the inspiration on these.
USAGE: @include transition(all 0.2s ease-in-out);
*/
/*********************
CSS3 GRADIENTS
Be careful with these since they can
really slow down your CSS. Don't overdo it.
*********************/
/* @include css-gradient(#dfdfdf,#f8f8f8); */
/*********************
BOX SIZING
*********************/
/* @include box-sizing(border-box); */
/* NOTE: value of "padding-box" is only supported in Gecko. So
probably best not to use it. I mean, were you going to anyway? */
/******************************************************************
Site Name:
Author:

Stylesheet: Grid Stylesheet

I've seperated the grid so you can swap it out easily. It's
called at the top the style.scss stylesheet.

There are a ton of grid solutions out there. You should definitely
experiment with your own. Here are some recommendations:

http://gridsetapp.com - Love this site. Responsive Grids made easy.
http://susy.oddbird.net/ - Grids using Compass. Very elegant.
http://gridpak.com/ - Create your own responsive grid.
https://github.com/dope/lemonade - Neat lightweight grid.


The grid below is a custom built thingy I modeled a bit after
Gridset. It's VERY basic and probably shouldn't be used on
your client projects. The idea is you learn how to roll your
own grids. It's better in the long run and allows you full control
over your project's layout.

******************************************************************/
.last-col {
  float: right;
  padding-right: 0 !important; }

/*
Mobile Grid Styles
These are the widths for the mobile grid.
There are four types, but you can add or customize
them however you see fit.
*/
@media (max-width: 767px) {
  .m-all {
    float: left;
    padding-right: 0.75em;
    width: 100%;
    padding-right: 0; }

  .m-1of2 {
    float: left;
    padding-right: 0.75em;
    width: 50%; }

  .m-1of3 {
    float: left;
    padding-right: 0.75em;
    width: 33.33%; }

  .m-2of3 {
    float: left;
    padding-right: 0.75em;
    width: 66.66%; }

  .m-1of4 {
    float: left;
    padding-right: 0.75em;
    width: 25%; }

  .m-3of4 {
    float: left;
    padding-right: 0.75em;
    width: 75%; } }
/* Portrait tablet to landscape */
@media (min-width: 768px) and (max-width: 1029px) {
  .t-all {
    float: left;
    padding-right: 0.75em;
    width: 100%;
    padding-right: 0; }

  .t-1of2 {
    float: left;
    padding-right: 0.75em;
    width: 50%; }

  .t-1of3 {
    float: left;
    padding-right: 0.75em;
    width: 33.33%; }

  .t-2of3 {
    float: left;
    padding-right: 0.75em;
    width: 66.66%; }

  .t-1of4 {
    float: left;
    padding-right: 0.75em;
    width: 25%; }

  .t-3of4 {
    float: left;
    padding-right: 0.75em;
    width: 75%; }

  .t-1of5 {
    float: left;
    padding-right: 0.75em;
    width: 20%; }

  .t-2of5 {
    float: left;
    padding-right: 0.75em;
    width: 40%; }

  .t-3of5 {
    float: left;
    padding-right: 0.75em;
    width: 60%; }

  .t-4of5 {
    float: left;
    padding-right: 0.75em;
    width: 80%; } }
/* Landscape to small desktop */
@media (min-width: 1030px) {
  .d-all {
    float: left;
    padding-right: 0.75em;
    width: 100%;
    padding-right: 0; }

  .d-1of2 {
    float: left;
    padding-right: 0.75em;
    width: 50%; }

  .d-1of3 {
    float: left;
    padding-right: 0.75em;
    width: 33.33%; }

  .d-2of3 {
    float: left;
    padding-right: 0.75em;
    width: 66.66%; }

  .d-1of4 {
    float: left;
    padding-right: 0.75em;
    width: 25%; }

  .d-3of4 {
    float: left;
    padding-right: 0.75em;
    width: 75%; }

  .d-1of5 {
    float: left;
    padding-right: 0.75em;
    width: 20%; }

  .d-2of5 {
    float: left;
    padding-right: 0.75em;
    width: 40%; }

  .d-3of5 {
    float: left;
    padding-right: 0.75em;
    width: 60%; }

  .d-4of5 {
    float: left;
    padding-right: 0.75em;
    width: 80%; }

  .d-1of6 {
    float: left;
    padding-right: 0.75em;
    width: 16.6666666667%; }

  .d-1of7 {
    float: left;
    padding-right: 0.75em;
    width: 14.2857142857%; }

  .d-2of7 {
    float: left;
    padding-right: 0.75em;
    width: 28.5714286%; }

  .d-3of7 {
    float: left;
    padding-right: 0.75em;
    width: 42.8571429%; }

  .d-4of7 {
    float: left;
    padding-right: 0.75em;
    width: 57.1428572%; }

  .d-5of7 {
    float: left;
    padding-right: 0.75em;
    width: 71.4285715%; }

  .d-6of7 {
    float: left;
    padding-right: 0.75em;
    width: 85.7142857%; }

  .d-1of8 {
    float: left;
    padding-right: 0.75em;
    width: 12.5%; }

  .d-1of9 {
    float: left;
    padding-right: 0.75em;
    width: 11.1111111111%; }

  .d-1of10 {
    float: left;
    padding-right: 0.75em;
    width: 10%; }

  .d-1of11 {
    float: left;
    padding-right: 0.75em;
    width: 9.09090909091%; }

  .d-1of12 {
    float: left;
    padding-right: 0.75em;
    width: 8.33%; } }
/*********************
IMPORTING MODULES
Modules are reusable blocks or elements we use throughout the project.
We can break them up as much as we want or just keep them all in one.
I mean, you can do whatever you want. The world is your oyster. Unless
you hate oysters, then the world is your peanut butter & jelly sandwich.
*********************/
/******************************************************************
Site Name:
Author:

Stylesheet: Alert Styles

If you want to use these alerts in your design, you can. If not,
you can just remove this stylesheet.

******************************************************************/
.alert-help, .alert-info, .alert-error, .alert-success {
  margin: 10px;
  padding: 5px 18px;
  border: 1px solid; }

.alert-help {
  border-color: #e8dc59;
  background: #ebe16f; }

.alert-info {
  border-color: #bfe4f4;
  background: #d5edf8; }

.alert-error {
  border-color: #f8cdce;
  background: #fbe3e4; }

.alert-success {
  border-color: #deeaae;
  background: #e6efc2; }

/******************************************************************
Site Name:
Author:

Stylesheet: Button Styles

Buttons are a pretty important part of your site's style, so it's
important to have a consistent baseline for them. Use this stylesheet
to create all kinds of buttons.

Helpful Links:
http://galp.in/blog/2011/08/02/the-ui-guide-part-1-buttons/

******************************************************************/
/*********************
BUTTON DEFAULTS
We're gonna use a placeholder selector here
so we can use common styles. We then use this
to load up the defaults in all our buttons.

Here's a quick video to show how it works:
http://www.youtube.com/watch?v=hwdVpKiJzac

*********************/
.blue-btn, .comment-reply-link, #submit {
  display: inline-block;
  position: relative;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  text-decoration: none;
  color: #fff;
  font-size: 0.9em;
  font-size: 34px;
  line-height: 34px;
  font-weight: normal;
  padding: 0 24px;
  border-radius: 4px;
  border: 0;
  cursor: pointer;
  -webkit-transition: background-color 0.14s ease-in-out;
  transition: background-color 0.14s ease-in-out; }
  .blue-btn:hover, .comment-reply-link:hover, #submit:hover, .blue-btn:focus, .comment-reply-link:focus, #submit:focus {
    color: #fff;
    text-decoration: none; }
  .blue-btn:active, .comment-reply-link:active, #submit:active {
    top: 1px; }

/*
An example button.
You can use this example if you want. Just replace all the variables
and it will create a button dependant on those variables.
*/
.blue-btn, .comment-reply-link, #submit {
  background-color: #2980b9; }
  .blue-btn:hover, .comment-reply-link:hover, #submit:hover, .blue-btn:focus, .comment-reply-link:focus, #submit:focus {
    background-color: #2574a8; }
  .blue-btn:active, .comment-reply-link:active, #submit:active {
    background-color: #2472a4; }

/******************************************************************
Site Name:
Author:

Stylesheet: Form Styles

We put all the form and button styles in here to setup a consistent
look. If we need to customize them, we can do this in the main
stylesheets and just override them. Easy Peasy.

You're gonna see a few data-uri thingies down there. If you're not
sure what they are, check this link out:
http://css-tricks.com/data-uris/
If you want to create your own, use this helpful link:
http://websemantics.co.uk/online_tools/image_to_data_uri_convertor/

******************************************************************/
/*********************
INPUTS
*********************/
input[type="text"],
input[type="password"],
input[type="datetime"],
input[type="datetime-local"],
input[type="date"],
input[type="month"],
input[type="time"],
input[type="week"],
input[type="number"],
input[type="email"],
input[type="url"],
input[type="search"],
input[type="tel"],
input[type="color"],
select,
textarea,
.field {
  display: block;
  height: 40px;
  line-height: 40px;
  padding: 0 12px;
  margin-bottom: 14px;
  font-size: 1em;
  color: #868785;
  border-radius: 3px;
  vertical-align: middle;
  box-shadow: none;
  border: 0;
  width: 100%;
  max-width: 400px;
  font-family: "Montserrat", "Helvetica Neue", Helvetica, Arial, sans-serif;
  background-color: #eaedf2;
  -webkit-transition: background-color 0.24s ease-in-out;
  transition: background-color 0.24s ease-in-out; }
  input[type="text"]:focus, input[type="text"]:active,
  input[type="password"]:focus,
  input[type="password"]:active,
  input[type="datetime"]:focus,
  input[type="datetime"]:active,
  input[type="datetime-local"]:focus,
  input[type="datetime-local"]:active,
  input[type="date"]:focus,
  input[type="date"]:active,
  input[type="month"]:focus,
  input[type="month"]:active,
  input[type="time"]:focus,
  input[type="time"]:active,
  input[type="week"]:focus,
  input[type="week"]:active,
  input[type="number"]:focus,
  input[type="number"]:active,
  input[type="email"]:focus,
  input[type="email"]:active,
  input[type="url"]:focus,
  input[type="url"]:active,
  input[type="search"]:focus,
  input[type="search"]:active,
  input[type="tel"]:focus,
  input[type="tel"]:active,
  input[type="color"]:focus,
  input[type="color"]:active,
  select:focus,
  select:active,
  textarea:focus,
  textarea:active,
  .field:focus,
  .field:active {
    background-color: #f7f8fa; }
  input[type="text"].error, input[type="text"].is-invalid,
  input[type="password"].error,
  input[type="password"].is-invalid,
  input[type="datetime"].error,
  input[type="datetime"].is-invalid,
  input[type="datetime-local"].error,
  input[type="datetime-local"].is-invalid,
  input[type="date"].error,
  input[type="date"].is-invalid,
  input[type="month"].error,
  input[type="month"].is-invalid,
  input[type="time"].error,
  input[type="time"].is-invalid,
  input[type="week"].error,
  input[type="week"].is-invalid,
  input[type="number"].error,
  input[type="number"].is-invalid,
  input[type="email"].error,
  input[type="email"].is-invalid,
  input[type="url"].error,
  input[type="url"].is-invalid,
  input[type="search"].error,
  input[type="search"].is-invalid,
  input[type="tel"].error,
  input[type="tel"].is-invalid,
  input[type="color"].error,
  input[type="color"].is-invalid,
  select.error,
  select.is-invalid,
  textarea.error,
  textarea.is-invalid,
  .field.error,
  .field.is-invalid {
    color: #fbe3e4;
    border-color: #fbe3e4;
    background-color: #fff;
    background-position: 99% center;
    background-repeat: no-repeat;
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABYAAAAWCAYAAADEtGw7AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyRpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNiAoTWFjaW50b3NoKSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDo2NDM0NDREQkYwNEIxMUUyOTI4REZGQTEzMzA2MDcyNiIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDo2NDM0NDREQ0YwNEIxMUUyOTI4REZGQTEzMzA2MDcyNiI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOjQ3ODRGRkE2RjA0QTExRTI5MjhERkZBMTMzMDYwNzI2IiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOjY0MzQ0NERBRjA0QjExRTI5MjhERkZBMTMzMDYwNzI2Ii8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+U8iT5wAAAedJREFUeNqk1U9I02Ecx/HtV3aIFAc1hcRDUoGXRAq0oNLA2CrsEFmHbikZu0iQYIFGYAiegkCpLipBxPpDEBMUzB0EhSG2LhG7hMR2GviPgUTvB57Bw8P3+U23B16HPX8+e/b8nt93wezZSMCnhXETF3AcB5BDCnH8Dq98ExcGHcFn8Ah3cdDni+fxnPDv9oAnTB7CKu6VCFXtChZy56LxUjt+jfuB8toSOth9wd7xWAWhqrUjYR/FRTwWJm+iIPT/w7bQf5ljiZnBg45dtKFX6H+LU8gIY8OEV6vgTkStwXWE8BPTGDHGPqNPz2mCfSOOYkA99TvCt1bhGPL68zMcwmncMuape10jrI+q4BbHi/FLn31S9z2x5tRhTc+1W506ipM+T3oRD4X+8+qtc4SqFvL0z/Fr14S+Szjis8bz9Lvvaq8cwS/wwGfdlqfPSWqTiFlX77o13u9Ym1PBs8JAytpRoy44X9Ft9E/gvbA+rYKn8NcaaMVc8UHgBw4b9/iqUQZ6hOAJFbyDcUflmsEX4a6+wTtHGfhAIUqa1U29Zc2BytouThD8x6xuN5CtMPi2CrXLZkZf/HyZoRFCP7n+QVR4PV7uI/AjGghN7OU/r1ilnqILtfpNC+o6vIFljBKYlhb/F2AAgaBsWR5wRiIAAAAASUVORK5CYII=);
    outline-color: #fbe3e4; }
  input[type="text"].success, input[type="text"].is-valid,
  input[type="password"].success,
  input[type="password"].is-valid,
  input[type="datetime"].success,
  input[type="datetime"].is-valid,
  input[type="datetime-local"].success,
  input[type="datetime-local"].is-valid,
  input[type="date"].success,
  input[type="date"].is-valid,
  input[type="month"].success,
  input[type="month"].is-valid,
  input[type="time"].success,
  input[type="time"].is-valid,
  input[type="week"].success,
  input[type="week"].is-valid,
  input[type="number"].success,
  input[type="number"].is-valid,
  input[type="email"].success,
  input[type="email"].is-valid,
  input[type="url"].success,
  input[type="url"].is-valid,
  input[type="search"].success,
  input[type="search"].is-valid,
  input[type="tel"].success,
  input[type="tel"].is-valid,
  input[type="color"].success,
  input[type="color"].is-valid,
  select.success,
  select.is-valid,
  textarea.success,
  textarea.is-valid,
  .field.success,
  .field.is-valid {
    color: #e6efc2;
    border-color: #e6efc2;
    background-color: #fff;
    background-position: 99% center;
    background-repeat: no-repeat;
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABYAAAAWCAYAAADEtGw7AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyRpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNiAoTWFjaW50b3NoKSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDo2NDM0NDRERkYwNEIxMUUyOTI4REZGQTEzMzA2MDcyNiIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDo2NDM0NDRFMEYwNEIxMUUyOTI4REZGQTEzMzA2MDcyNiI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOjY0MzQ0NERERjA0QjExRTI5MjhERkZBMTMzMDYwNzI2IiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOjY0MzQ0NERFRjA0QjExRTI5MjhERkZBMTMzMDYwNzI2Ii8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+7olkTQAAAfhJREFUeNqklU9oE0EUhzdroWjw0tBeWlDxkEaIp55TsCU9VKIgCrHBelA8CQ1Kr1WPbZrQ3gqtQqvGqxpQc2jBk6BIIaAGD4qNCKURpDSKiPi98gLDsJt//uBjsztvfnk7895sIPAw6/joGMThFJyAXn2+A+9gA57/TaY/eU0OeBgfhGm4DiGnsb7DAszxBz/NAdcKjMJLuNWCqagHbsscN5+L+hmH4QkMOe1L5jzFfNA2PgT34ajTuY7AGuZB0/hmh5m+gS0r8xv1zRvg+gGCHZiOwnF4DP3iB3sQkYxPd2C6CWfhB9Xwlus5+K1j4jXuaq3a+gM1H9OPcAa+7q9lPidZJqHbiIm7Wg22rsEI7FrPSzAMX/T+ADyAKSsu7Fr1KplehLvwCs5DvfBf65p+MypqRbO1FXK9utH4/QKuaqYTsG3E3INJv00Q46px3+XxanJ/Ute2/vqP4FKDza2KcdljIKdnhS0xXYULTaqmLMZFn8FFSFtvt6x70ExFCS5oUXspq2ssa7oEl1swFa+CGFdgtkHgPDyDKy02zyxNU6lXRUZb1EuHYayNNs+Yh5B0WQo+/8fpJnNTZFuzz2OpjoQ2QruSOQlMy35fEGmEGMxY9e1brxobw7TkWA1h6xfckUPb+JhGoE/Hpfvew7qUld/H9J8AAwDpw3WYrxcZ3QAAAABJRU5ErkJggg==);
    outline-color: #e6efc2; }
  input[type="text"][disabled], input[type="text"].is-disabled,
  input[type="password"][disabled],
  input[type="password"].is-disabled,
  input[type="datetime"][disabled],
  input[type="datetime"].is-disabled,
  input[type="datetime-local"][disabled],
  input[type="datetime-local"].is-disabled,
  input[type="date"][disabled],
  input[type="date"].is-disabled,
  input[type="month"][disabled],
  input[type="month"].is-disabled,
  input[type="time"][disabled],
  input[type="time"].is-disabled,
  input[type="week"][disabled],
  input[type="week"].is-disabled,
  input[type="number"][disabled],
  input[type="number"].is-disabled,
  input[type="email"][disabled],
  input[type="email"].is-disabled,
  input[type="url"][disabled],
  input[type="url"].is-disabled,
  input[type="search"][disabled],
  input[type="search"].is-disabled,
  input[type="tel"][disabled],
  input[type="tel"].is-disabled,
  input[type="color"][disabled],
  input[type="color"].is-disabled,
  select[disabled],
  select.is-disabled,
  textarea[disabled],
  textarea.is-disabled,
  .field[disabled],
  .field.is-disabled {
    cursor: not-allowed;
    border-color: #cfcfcf;
    opacity: 0.6; }
    input[type="text"][disabled]:focus, input[type="text"][disabled]:active, input[type="text"].is-disabled:focus, input[type="text"].is-disabled:active,
    input[type="password"][disabled]:focus,
    input[type="password"][disabled]:active,
    input[type="password"].is-disabled:focus,
    input[type="password"].is-disabled:active,
    input[type="datetime"][disabled]:focus,
    input[type="datetime"][disabled]:active,
    input[type="datetime"].is-disabled:focus,
    input[type="datetime"].is-disabled:active,
    input[type="datetime-local"][disabled]:focus,
    input[type="datetime-local"][disabled]:active,
    input[type="datetime-local"].is-disabled:focus,
    input[type="datetime-local"].is-disabled:active,
    input[type="date"][disabled]:focus,
    input[type="date"][disabled]:active,
    input[type="date"].is-disabled:focus,
    input[type="date"].is-disabled:active,
    input[type="month"][disabled]:focus,
    input[type="month"][disabled]:active,
    input[type="month"].is-disabled:focus,
    input[type="month"].is-disabled:active,
    input[type="time"][disabled]:focus,
    input[type="time"][disabled]:active,
    input[type="time"].is-disabled:focus,
    input[type="time"].is-disabled:active,
    input[type="week"][disabled]:focus,
    input[type="week"][disabled]:active,
    input[type="week"].is-disabled:focus,
    input[type="week"].is-disabled:active,
    input[type="number"][disabled]:focus,
    input[type="number"][disabled]:active,
    input[type="number"].is-disabled:focus,
    input[type="number"].is-disabled:active,
    input[type="email"][disabled]:focus,
    input[type="email"][disabled]:active,
    input[type="email"].is-disabled:focus,
    input[type="email"].is-disabled:active,
    input[type="url"][disabled]:focus,
    input[type="url"][disabled]:active,
    input[type="url"].is-disabled:focus,
    input[type="url"].is-disabled:active,
    input[type="search"][disabled]:focus,
    input[type="search"][disabled]:active,
    input[type="search"].is-disabled:focus,
    input[type="search"].is-disabled:active,
    input[type="tel"][disabled]:focus,
    input[type="tel"][disabled]:active,
    input[type="tel"].is-disabled:focus,
    input[type="tel"].is-disabled:active,
    input[type="color"][disabled]:focus,
    input[type="color"][disabled]:active,
    input[type="color"].is-disabled:focus,
    input[type="color"].is-disabled:active,
    select[disabled]:focus,
    select[disabled]:active,
    select.is-disabled:focus,
    select.is-disabled:active,
    textarea[disabled]:focus,
    textarea[disabled]:active,
    textarea.is-disabled:focus,
    textarea.is-disabled:active,
    .field[disabled]:focus,
    .field[disabled]:active,
    .field.is-disabled:focus,
    .field.is-disabled:active {
      background-color: #d5edf8; }

input[type="password"] {
  letter-spacing: 0.3em; }

textarea {
  max-width: 100%;
  min-height: 120px;
  line-height: 1.5em; }

select {
  -webkit-appearance: none;
  /* 1 */
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA8AAAAHCAYAAADXhRcnAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyRpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNiAoTWFjaW50b3NoKSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDpEOEZCMjYxMEYwNUUxMUUyOTI4REZGQTEzMzA2MDcyNiIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDpEOEZCMjYxMUYwNUUxMUUyOTI4REZGQTEzMzA2MDcyNiI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOkQ4RkIyNjBFRjA1RTExRTI5MjhERkZBMTMzMDYwNzI2IiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOkQ4RkIyNjBGRjA1RTExRTI5MjhERkZBMTMzMDYwNzI2Ii8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+Vxkp9gAAAI9JREFUeNpidHFxucHAwKAOxE+AmJmBMPgLxDJAfJMFSKwD4kqoAClgA+P///8ZXF1dPaCGcBKh6QcQB+3evXs7WDMIAA2QB1I7gFgDj0aQFz2BGh+AOEwwUaDAQyBlCMR7cGjcC5KHaQQBuM3IAOiKTiBVhiTUDdRUhq4Oq2aoAelAahIQ5wM1zsCmBiDAADhYMJXVZ9u9AAAAAElFTkSuQmCC);
  background-repeat: no-repeat;
  background-position: 97.5% center; }

/*********************
BASE (MOBILE) SIZE
This are the mobile styles. It's what people see on their phones. If
you set a great foundation, you won't need to add too many styles in
the other stylesheets. Remember, keep it light: Speed is Important.
*********************/
/******************************************************************
Site Name:
Author:

Stylesheet: Base Mobile Stylesheet

Be light and don't over style since everything here will be
loaded by mobile devices. You want to keep it as minimal as
possible. This is called at the top of the main stylsheet
and will be used across all viewports.

******************************************************************/
/*********************
GENERAL STYLES
*********************/
body {
  font-family: "Montserrat", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 100%;
  line-height: 1.5;
  color: #868785;
  background-color: #598704;
  -webkit-font-smoothing: antialiased; }

::selection {
  background: #77ad1a;
  color: #ffffff; }

/********************
WORDPRESS BODY CLASSES
style a page via class
********************/
/* for sites that are read right to left (i.e. hebrew) */
/* home page */
/* blog template page */
/* archive page */
/* date archive page */
/* replace the number to the corresponding page number */
/* search page */
/* search result page */
/* no results search page */
/* individual paged search (i.e. body.search-paged-3) */
/* 404 page */
/* single post page */
/* individual post page by id (i.e. body.postid-73) */
/* individual paged single (i.e. body.single-paged-3) */
/* attatchment page */
/* individual attatchment page (i.e. body.attachmentid-763) */
/* style mime type pages */
/* author page */
/* user nicename (i.e. body.author-samueladams) */
/* paged author archives (i.e. body.author-paged-4) for page 4 */
/* category page */
/* individual category page (i.e. body.category-6) */
/* replace the number to the corresponding page number */
/* tag page */
/* individual tag page (i.e. body.tag-news) */
/* replace the number to the corresponding page number */
/* custom page template page */
/* individual page template (i.e. body.page-template-contact-php */
/* replace the number to the corresponding page number */
/* parent page template */
/* child page template */
/* replace the number to the corresponding page number */
/* if user is logged in */
/* paged items like search results or archives */
/* individual paged (i.e. body.paged-3) */
/*********************
LAYOUT & GRID STYLES
*********************/
.wrap {
  width: 100%;
  margin: 0 auto;
  padding: 0px 20px; }

/*********************
LINK STYLES
*********************/
a, a:visited {
  color: #f01d4f;
  transition: all .15s ease-in-out;
  -moz-transition: all .15s ease-in-out;
  -o-transition: all .15s ease-in-out;
  -ms-transition: all .15s ease-in-out;
  -webkit-transition: all .15s ease-in-out;
  /* on hover */
  /* on click */
  /* mobile tap color */ }
  a:hover, a:focus, a:visited:hover, a:visited:focus {
    color: #d10e3c;
    transition: all .15s ease-in-out;
    -moz-transition: all .15s ease-in-out;
    -o-transition: all .15s ease-in-out;
    -ms-transition: all .15s ease-in-out;
    -webkit-transition: all .15s ease-in-out; }
  a:link, a:visited:link {
    /*
    this highlights links on iPhones/iPads.
    so it basically works like the :hover selector
    for mobile devices.
    */
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0.3); }

/******************************************************************
H1, H2, H3, H4, H5 STYLES
******************************************************************/
h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5 {
  text-rendering: optimizelegibility;
  font-weight: 500;
  /*
  if you're going to use webfonts, be sure to check your weights
  http://css-tricks.com/watch-your-font-weight/
  */
  /* removing text decoration from all headline links */ }
  h1 a, .h1 a, h2 a, .h2 a, h3 a, .h3 a, h4 a, .h4 a, h5 a, .h5 a {
    text-decoration: none; }

h1, .h1 {
  font-size: 2.5em;
  line-height: 1.333em;
  color: #4a8ec2;
  /*---var----*/
  margin: 45px 0; }

h2, .h2 {
  font-size: 1.75em;
  line-height: 1.4em;
  margin-bottom: 0.375em; }

h3, .h3 {
  font-size: 1.125em; }

h4, .h4 {
  font-size: 1.1em;
  font-weight: 700; }

h5, .h5 {
  font-size: 0.846em;
  line-height: 2.09em;
  text-transform: uppercase;
  letter-spacing: 2px; }

/*********************
HEADER STYLES
*********************/
.mobile-nav {
  display: block;
  width: 100%;
  padding: 10px 24px;
  min-height: 48px;
  background: #7cb11b; }
  .mobile-nav .menu-btn {
    float: right;
    cursor: pointer; }
  .mobile-nav .menu-btn div {
    position: absolute;
    left: 100%;
    top: 64%;
    padding-right: 8px;
    margin-top: -0.50em;
    line-height: 1.2;
    font-size: 18px;
    font-weight: 200;
    vertical-align: middle;
    z-index: 99; }
  .mobile-nav .menu-btn span {
    display: block;
    width: 25px;
    height: 4px;
    margin: 4px 0;
    background: #ffffff;
    z-index: 99; }
  .mobile-nav .responsive-menu {
    display: none; }
  .mobile-nav .expand {
    display: block !important; }
  .mobile-nav ul {
    width: 100%;
    margin: 0;
    margin-top: 28px; }
    .mobile-nav ul li {
      padding: 5px 0; }
      .mobile-nav ul li:last-child {
        padding-bottom: 28px; }
      .mobile-nav ul li a {
        color: #ffffff;
        text-transform: uppercase;
        text-decoration: none;
        letter-spacing: .5px;
        font-size: 15px;
        font-weight: bold; }
        .mobile-nav ul li a:hover, .mobile-nav ul li a:visited, .mobile-nav ul li a:focus, .mobile-nav ul li a:active {
          color: #ffffff;
          outline: none; }

.header {
  background-color: #fff;
  position: relative;
  padding: 20px 0; }
  .header .logo-link {
    margin: 0 auto;
    width: 183px;
    display: block; }
  .header .hide-mob {
    display: none; }
  .header #inner-header {
    position: relative; }
  .header .default-menu p {
    font-size: 15px;
    float: left;
    text-align: left;
    color: #3b771b;
    font-weight: bold;
    line-height: 24px;
    letter-spacing: .5px;
    margin-bottom: 0;
    margin-top: 10px; }
    .header .default-menu p span.red {
      color: #d91231;
      font-size: 18px; }
    .header .default-menu p span.green {
      color: #77ad1a; }
    .header .default-menu p a.shop {
      border-right: 2px dotted #e9e9e9;
      border-left: 2px dotted #e9e9e9;
      font-size: 15px;
      letter-spacing: 2px;
      margin: 0;
      padding: 10px 30px 10px;
      text-transform: uppercase;
      display: block;
      text-decoration: none;
      color: #868785; }
      .header .default-menu p a.shop:hover {
        color: #3c771b; }
  .header nav {
    display: none; }

#logo {
  margin: 0.75em 0; }
  #logo a {
    color: #fff; }

.canopy {
  background-color: #7cb11b;
  color: #ffffff;
  padding: 41px 0px;
  /*
  	background-image: url(../images/canopy-header.png);
  	background-repeat: no-repeat;
  	background-position: bottom right;
  */ }
  .canopy .wrap {
    position: relative; }
    .canopy .wrap .canopy-img {
      position: absolute;
      bottom: -41px;
      right: 0;
      padding-right: 20px; }
  .canopy .section-title {
    font-size: 29px;
    position: relative;
    z-index: 100;
    text-transform: uppercase;
    color: #fff;
    font-weight: bold;
    margin: 0;
    float: left;
    width: 100%; }

/*********************
NAVIGATION STYLES
*********************/
/*
all navs have a .nav class applied via
the wp_menu function; this is so we can
easily write one group of styles for
the navs on the site so our css is cleaner
and more scalable.
*/
.nav {
  border-bottom: 0;
  margin: 0;
  /* end .menu li */
  /* highlight current page */
  /* end current highlighters */ }
  .nav li {
    /*
    so you really have to rethink your dropdowns for mobile.
    you don't want to have it expand too much because the
    screen is so small. How you manage your menu should
    depend on the project. Here's some great info on it:
    http://www.alistapart.com/articles/organizing-mobile/
    */ }
    .nav li a {
      display: block;
      color: #868785;
      text-decoration: none;
      padding: 0.75em;
      /*
      remember this is for mobile ONLY, so there's no need
      to even declare hover styles here, you can do it in
      the style.scss file where it's relevant. We want to
      keep this file as small as possible!
      */ }
    .nav li ul.sub-menu li a,
    .nav li ul.children li a {
      padding-left: 30px; }

/* end .nav */
/*********************
POSTS & CONTENT STYLES
*********************/
#content {
  background: #ffffff;
  float: left;
  width: 100%; }

.hentry {
  background-color: #fff;
  margin-bottom: 1.5em; }
  .hentry footer p {
    margin: 0; }

/* end .hentry */
.single-title,
.page-title,
.entry-title {
  margin: 0; }

/* want to style individual post classes? Booya! */
/* post by id (i.e. post-3) */
/* general post style */
/* general article on a page style */
/* general style on an attatchment */
/* sticky post style */
/* hentry class */
/* style by category (i.e. category-videos) */
/* style by tag (i.e. tag-news) */
/* post meta */
.byline {
  color: #9fa6b4;
  font-style: italic;
  margin: 0; }

/* entry content */
.entry-content {
  padding: 4em 0em 0;
  background-image: url("../images/shared/diamond.png");
  background-position: center top;
  background-repeat: no-repeat;
  /*
  image alignment on a screen this size may be
  a bit difficult. It's set to start aligning
  and floating images at the next breakpoint,
  but it's up to you. Feel free to change it up.
  */ }
  .entry-content p {
    margin: 0 0 1.5em;
    font-size: 12px;
    line-height: 1.75em; }
  .entry-content ul, .entry-content ol {
    padding: 10px 40px; }
    .entry-content ul li, .entry-content ol li {
      list-style: disc; }
    .entry-content ul.block-list, .entry-content ol.block-list {
      padding: 0; }
      .entry-content ul.block-list li, .entry-content ol.block-list li {
        list-style: none; }
  .entry-content table {
    width: 100%;
    border: 1px solid #eaedf2;
    margin-bottom: 1.5em; }
    .entry-content table caption {
      margin: 0 0 7px;
      font-size: 0.75em;
      color: #9fa6b4;
      text-transform: uppercase;
      letter-spacing: 1px; }
  .entry-content tr {
    border-bottom: 1px solid #eaedf2; }
    .entry-content tr:nth-child(even) {
      background-color: #f8f9fa; }
  .entry-content td {
    padding: 7px;
    border-right: 1px solid #eaedf2; }
    .entry-content td:last-child {
      border-right: 0; }
  .entry-content th {
    background-color: #f8f9fa;
    border-bottom: 1px solid #eaedf2;
    border-right: 1px solid #eaedf2; }
    .entry-content th:last-child {
      border-right: 0; }
  .entry-content blockquote {
    margin: 0 0 1.5em 0.75em;
    padding: 0 0 0 0.75em;
    border-left: 3px solid #2980b9;
    font-style: italic;
    color: #9fa6b4; }
  .entry-content dd {
    margin-left: 0;
    font-size: 0.9em;
    color: #787878;
    margin-bottom: 1.5em; }
  .entry-content img {
    margin: 0 0 1.5em 0;
    max-width: 100%;
    height: auto; }
  .entry-content .size-auto,
  .entry-content .size-full,
  .entry-content .size-large,
  .entry-content .size-medium,
  .entry-content .size-thumbnail {
    max-width: 100%;
    height: auto; }
  .entry-content pre {
    background: #323944;
    color: #f8f9fa;
    font-size: 0.9em;
    padding: 1.5em;
    margin: 0 0 1.5em;
    border-radius: 3px; }

/* end .entry-content */
.wp-caption {
  max-width: 100%;
  background: #eee;
  padding: 5px;
  /* images inside wp-caption */ }
  .wp-caption img {
    max-width: 100%;
    margin-bottom: 0;
    width: 100%; }
  .wp-caption p.wp-caption-text {
    font-size: 0.85em;
    margin: 4px 0 7px;
    text-align: center; }

/* end .wp-caption */
/* image gallery styles */
/* end .gallery */
/* gallery caption styles */
.tags {
  margin: 0; }

/******************************************************************
PAGE NAVI STYLES
******************************************************************/
.pagination,
.wp-prev-next {
  margin: 1.5em 0; }

.pagination {
  text-align: center; }
  .pagination ul {
    display: inline-block;
    background-color: #fff;
    white-space: nowrap;
    padding: 0;
    clear: both;
    border-radius: 3px; }
  .pagination li {
    padding: 0;
    margin: 0;
    float: left;
    display: inline;
    overflow: hidden;
    border-right: 1px solid #eaedf2; }
  .pagination a, .pagination span {
    margin: 0;
    text-decoration: none;
    padding: 0;
    line-height: 1em;
    font-size: 1em;
    font-weight: normal;
    padding: 0.75em;
    min-width: 1em;
    display: block;
    color: #2980b9; }
    .pagination a:hover, .pagination a:focus, .pagination span:hover, .pagination span:focus {
      background-color: #2980b9;
      color: #fff; }
  .pagination .current {
    cursor: default;
    color: #868785; }
    .pagination .current:hover, .pagination .current:focus {
      background-color: #fff;
      color: #868785; }

/* end .bones_page_navi */
/* fallback previous & next links */
.wp-prev-next .prev-link {
  float: left; }
.wp-prev-next .next-link {
  float: right; }

/* end .wp-prev-next */
/******************************************************************
COMMENT STYLES
******************************************************************/
/* h3 comment title */
#comments-title {
  padding: 0.75em;
  margin: 0;
  border-top: 1px solid #f8f9fa;
  /* number of comments span */ }

.commentlist {
  margin: 0;
  list-style-type: none; }

.comment {
  position: relative;
  clear: both;
  overflow: hidden;
  padding: 1.5em;
  border-bottom: 1px solid #f8f9fa;
  /* vcard */
  /* end .commentlist .vcard */
  /* end children */
  /* general comment classes */ }
  .comment .comment-author {
    padding: 7px;
    border: 0; }
  .comment .vcard {
    margin-left: 50px; }
    .comment .vcard cite.fn {
      font-weight: 700;
      font-style: normal; }
    .comment .vcard time {
      display: block;
      font-size: 0.9em;
      font-style: italic; }
      .comment .vcard time a {
        color: #9fa6b4;
        text-decoration: none; }
        .comment .vcard time a:hover {
          text-decoration: underline; }
    .comment .vcard .avatar {
      position: absolute;
      left: 16px;
      border-radius: 50%; }
  .comment:last-child {
    margin-bottom: 0; }
  .comment .children {
    margin: 0;
    /* variations */
    /* change number for different depth */ }
  .comment[class*=depth-] {
    margin-top: 1.1em; }
  .comment.depth-1 {
    margin-left: 0;
    margin-top: 0; }
  .comment:not(.depth-1) {
    margin-top: 0;
    margin-left: 7px;
    padding: 7px; }
  .comment.odd {
    background-color: #fff; }
  .comment.even {
    background: #f8f9fa; }

/* comment meta */
/* comment content */
.comment_content p {
  margin: 0.7335em 0 1.5em;
  font-size: 1em;
  line-height: 1.5em; }

/* end .commentlist .comment_content */
/* comment reply link */
.comment-reply-link {
  font-size: 0.9em;
  float: right; }

/* end .commentlist .comment-reply-link */
/* edit comment link */
.comment-edit-link {
  font-style: italic;
  margin: 0 7px;
  text-decoration: none;
  font-size: 0.9em; }

/******************************************************************
COMMENT FORM STYLES
******************************************************************/
.comment-respond {
  padding: 1.5em;
  border-top: 1px solid #f8f9fa; }

#reply-title {
  margin: 0; }

.logged-in-as {
  color: #9fa6b4;
  font-style: italic;
  margin: 0; }
  .logged-in-as a {
    color: #868785; }

.comment-form-comment {
  margin: 1.5em 0 0.75em; }

.form-allowed-tags {
  padding: 1.5em;
  background-color: #f8f9fa;
  font-size: 0.9em; }

/* comment submit button */
#submit {
  float: right;
  font-size: 1em; }

/* comment form title */
#comment-form-title {
  margin: 0 0 1.1em; }

/* cancel comment reply link */
/* logged in comments */
/* allowed tags */
#allowed_tags {
  margin: 1.5em 10px 0.7335em 0; }

/* no comments */
.nocomments {
  margin: 0 20px 1.1em; }

/*********************
SIDEBARS & ASIDES
*********************/
.widget ul li {
  /* deep nesting */ }

.no-widgets {
  background-color: #fff;
  padding: 1.5em;
  text-align: center;
  border: 1px solid #ccc;
  border-radius: 2px;
  margin-bottom: 1.5em; }

/*********************
HERO STYLES
*********************/
.hero-container {
  width: 100%;
  height: 460px;
  background-image: url("../images/home/dummy-hero.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative; }
  .hero-container .overlay {
    position: absolute;
    left: 50%;
    top: 15px;
    transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -o-transform: translateX(-50%); }
  .hero-container .sr-overlay {
    top: -22px; }
  .hero-container .after-overlay {
    position: absolute;
    top: 125px;
    right: 260px;
    display: none; }
  .hero-container .title {
    position: absolute;
    left: 50%;
    width: 100%;
    top: 125px;
    transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    text-align: center;
    font-weight: bold;
    font-size: 16px;
    line-height: 22px;
    color: #ffffff;
    text-transform: uppercase;
    text-shadow: 1px 1px 1px #969696;
    /*
    		span {
    
    			&.red {
    				color: #d91231;
    				font-size: 29px;
    			}
    
    			&.small {
    				font-size: 18px;
    				color: #568c4e;
    			}
    
    		}
    */ }
    .hero-container .title span.red {
      font-size: 18px;
      color: #d91231;
      text-shadow: none; }
    .hero-container .title span.small {
      font-size: 14px;
      color: #568c4e;
      text-shadow: none; }
    .hero-container .title span.white {
      font-size: 18px;
      color: #fff; }
    .hero-container .title span.smallwhite {
      font-size: 14px;
      color: #fff; }
    .hero-container .title p {
      margin-bottom: 20px; }
    .hero-container .title .btn {
      color: #ffffff;
      font-size: 12px;
      font-weight: bold;
      text-decoration: none;
      letter-spacing: .5px;
      background: #d91231;
      padding: 10px 30px;
      text-transform: uppercase;
      line-height: 12px; }
      .hero-container .title .btn .fa {
        margin-left: 5px; }
      .hero-container .title .btn:hover {
        background: #ffffff;
        color: #d91231; }
  .hero-container .sr-title {
    top: 295px; }

/*********************
ABOUT US
*********************/
.page-template-page-about-php h2 {
  font-size: 18px;
  text-transform: uppercase;
  color: #598704;
  padding-top: 30px;
  padding-bottom: 10px;
  font-weight: bold; }

/*********************
GALLERIES
*********************/
.popup-gallery img {
  cursor: zoom-in;
  float: left;
  margin-bottom: 7px;
  padding-right: 7px; }

/*********************
ACCORDIONS
*********************/
.ui-widget {
  font-family: "Montserrat","Helvetica Neue",Helvetica,Arial,sans-serif !important; }

.ui-accordion {
  margin-bottom: 65px !important; }
  .ui-accordion .ui-accordion-icons {
    padding-left: 0 !important; }
  .ui-accordion .ui-accordion-header {
    padding: 15px 15px 15px 0px !important;
    margin-bottom: 10px !important; }
  .ui-accordion .ui-state-default, .ui-accordion .ui-widget-content .ui-state-default, .ui-accordion .ui-widget-header .ui-state-default {
    background: #ffffff !important;
    background-image: none !important;
    border-top: 1px solid #d3d3d3;
    border-bottom: 1px solid #d3d3d3;
    border-left: 0px;
    border-right: 0px;
    text-transform: uppercase !important;
    font-weight: bold !important;
    font-size: 15px !important; }
    .ui-accordion .ui-state-default a, .ui-accordion .ui-widget-content .ui-state-default a, .ui-accordion .ui-widget-header .ui-state-default a {
      color: #d91231 !important; }
    .ui-accordion .ui-state-default:after, .ui-accordion .ui-widget-content .ui-state-default:after, .ui-accordion .ui-widget-header .ui-state-default:after {
      content: '\f0a9';
      font-family: FontAwesome;
      font-weight: normal;
      font-style: normal;
      margin: 0px 0px 0px 10px;
      text-decoration: none; }
  .ui-accordion .ui-state-active a {
    color: #d91231 !important; }
  .ui-accordion .ui-state-active:after {
    content: '\f0ab';
    color: #cccccc;
    font-family: FontAwesome;
    font-weight: normal;
    font-style: normal;
    margin: 0px 0px 0px 10px;
    text-decoration: none; }
  .ui-accordion .ui-accordion-content {
    border: 0px !important;
    padding: 0px 0px !important; }
    .ui-accordion .ui-accordion-content p {
      font-size: 12px;
      line-height: 1.75em;
      margin: 0 0 1.5em; }
  .ui-accordion .ui-corner-all, .ui-accordion .ui-corner-bottom, .ui-accordion .ui-corner-right, .ui-accordion .ui-corner-br {
    border-radius: 0px !important; }

/*********************
WALK STYLES
*********************/
.facet-container {
  background: #f2f7e8 !important;
  height: 100%;
  margin-bottom: 40px;
  padding: 30px;
  font-size: 12px;
  margin-bottom: 0px;
  margin-top: 30px;
  position: relative; }
  .facet-container .facetwp-pager-label {
    float: left;
    width: 100%;
    margin-bottom: 15px;
    color: #7cb11b;
    font-weight: bold;
    font-size: 12px;
    margin-bottom: 15px;
    line-height: 12px;
    text-transform: uppercase;
    margin-right: 0; }
  .facet-container .facetwp-pager {
    margin-top: 25px; }
  .facet-container .facetwp-page {
    color: #868785;
    margin-right: 0; }
    .facet-container .facetwp-page:last-child {
      display: none; }
    .facet-container .facetwp-page.no-hover:hover {
      color: #868785;
      cursor: default; }
  .facet-container .facetwp-page.active, .facet-container .facetwp-page:hover {
    color: #7cb11b; }
  .facet-container .tooltip {
    position: absolute;
    background: #9dbf6d;
    color: #ffffff;
    padding: 10px 15px;
    pointer-events: none;
    margin-right: 10px;
    display: none; }
  .facet-container .fa {
    color: #aad064;
    margin-left: 5px; }
  .facet-container .facetwp-facet {
    margin-bottom: 25px; }
    .facet-container .facetwp-facet.facetwp-facet-cat_distance {
      margin-bottom: 0; }
  .facet-container h4 {
    text-transform: uppercase;
    color: #7cb11b;
    font-size: 15px;
    font-weight: bold;
    letter-spacing: 1px;
    margin-bottom: 25px;
    line-height: 15px; }
  .facet-container h5 {
    color: #7cb11b;
    font-weight: bold;
    font-size: 12px;
    margin-bottom: 15px;
    line-height: 12px; }
  .facet-container .facetwp-checkbox {
    background-image: url(../images/shared/checkbox.png); }
    .facet-container .facetwp-checkbox.checked {
      background-image: url(../images/shared/checkbox-on.png); }
  .facet-container input[type="text"] {
    height: auto;
    font-size: 12px;
    line-height: 12px;
    background-color: #fff;
    border: 1px solid #b3cb8c;
    border-radius: 0;
    margin: 0;
    margin-bottom: 15px;
    padding: 5px 10px; }
  .facet-container .facetwp-selections li::after {
    background-image: url(../images/shared/icon-close.png); }

.facetwp-type-checkboxes {
  max-height: 100% !important;
  overflow: auto; }

.facetwp-template {
  padding-top: 30px; }
  .facetwp-template h2 {
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase; }
    .facetwp-template h2 a {
      color: #7cb11b !important; }

/*********************
FOOTER STYLES
*********************/
.footer {
  clear: both;
  background-color: #598704;
  color: #f8f9fa; }
  .footer .footer-inner {
    float: left;
    height: 55px; }
    .footer .footer-inner ul li {
      font-size: 9px;
      padding-right: 10px; }
      .footer .footer-inner ul li .fa {
        font-size: 18px;
        margin-left: 5px;
        vertical-align: middle; }
      .footer .footer-inner ul li:last-child {
        padding-right: 0; }
      .footer .footer-inner ul li a {
        color: #eff96b;
        text-decoration: none; }
      .footer .footer-inner ul li .fa-wl {
        background-image: url(../images/walk-footer.png);
        height: 15px;
        width: 28px;
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center bottom; }
  .footer .newsletter {
    padding: 20px 0;
    background-color: #7cb11b;
    position: relative;
    min-height: 80px;
    float: left;
    width: 100%;
    /*
    		.mc4wp-form-error, .mc4wp-form-success {
    			margin-top: 47px !important;
    		}
    */ }
    .footer .newsletter #mc4wp-form-1 {
      margin: 0;
      /*
      			position: absolute;
      			left: 50%;
      			top: 50%;
      			transform: translate(-50%,-50%);
      			-ms-transform: translate(-50%,-50%);
      			-moz-transform: translate(-50%,-50%);
      			-webkit-transform: translate(-50%,-50%);
      			-o-transform: translate(-50%,-50%);
      */ }
      .footer .newsletter #mc4wp-form-1 p {
        margin: 0;
        float: left;
        width: 100%; }
        .footer .newsletter #mc4wp-form-1 p label {
          margin: 0;
          font-size: 13px;
          padding: 6px 0;
          float: left;
          width: 100%;
          padding: 0;
          margin-bottom: 20px; }
      .footer .newsletter #mc4wp-form-1 input[type="text"], .footer .newsletter #mc4wp-form-1 input[type="email"], .footer .newsletter #mc4wp-form-1 select, .footer .newsletter #mc4wp-form-1 textarea, .footer .newsletter #mc4wp-form-1 .field {
        background-color: #eaedf2;
        border: 0 none;
        box-shadow: none;
        color: #868785;
        display: block;
        float: left;
        max-width: initial;
        padding: 0 12px;
        transition: background-color 0.24s ease-in-out 0s;
        vertical-align: middle;
        width: 309px; }
      .footer .newsletter #mc4wp-form-1 input {
        margin-bottom: 0;
        line-height: normal;
        font-size: 13px;
        height: 30px;
        outline: 0; }
        .footer .newsletter #mc4wp-form-1 input[type="email"] {
          margin-left: 25px;
          border-radius: 0;
          background: #fff;
          padding: 0 15px;
          color: #a5a5a5;
          margin-left: 0;
          width: 100%;
          margin-bottom: 20px; }
        .footer .newsletter #mc4wp-form-1 input[type="submit"] {
          background-color: #598704;
          color: #fff;
          border: none;
          font-size: 12px;
          padding: 0 10px;
          -webkit-appearance: none;
          -webkit-border-radius: 0; }
    .footer .newsletter .mc4wp-notice {
      font-size: 13px;
      padding: 0px;
      background-color: transparent !important;
      border-color: transparent !important;
      color: #ffffff !important;
      margin-bottom: 0;
      float: left;
      margin-top: 5px; }
    .footer .newsletter .mc4wp-error {
      background-color: transparent !important;
      border-color: #ffffff !important;
      color: #ffffff !important;
      padding: 5px;
      font-size: 13px;
      margin-bottom: 0;
      float: left;
      margin-top: 5px; }
    .footer .newsletter .mc4wp-success {
      background-color: transparent !important;
      border-color: #ffffff !important;
      color: #ffffff !important;
      padding: 5px;
      font-size: 13px;
      margin-bottom: 0;
      float: left;
      margin-top: 5px; }
    .footer .newsletter .mc4wp-form {
      margin: 1em 0; }

/*
if you checked out the link above:
http://www.alistapart.com/articles/organizing-mobile/
you'll want to style the footer nav
a bit more in-depth. Remember to keep
it simple because you'll have to
override these styles for the desktop
view.
*/
/* end .footer-links */
/*********************
Home STYLES
*********************/
.home #content {
  background-color: #7cb11b; }
  .home #content .thirds {
    color: #ffffff;
    padding: 40px 0; }
    .home #content .thirds h1 {
      font-size: 15px;
      font-weight: bold;
      margin-bottom: 15px;
      color: #ffffff;
      text-transform: uppercase;
      letter-spacing: 1px;
      margin-top: 0; }
    .home #content .thirds p {
      font-size: 12px;
      margin: 0;
      margin-bottom: 20px; }
      .home #content .thirds p a {
        color: #f3fb6d;
        text-decoration: none; }
    .home #content .thirds .grid__item:last-child p {
      margin-bottom: 0; }
  .home #content .call-to-action {
    background-color: #fff;
    background-image: url(../images/shared/diamond.png);
    background-position: top center;
    background-repeat: no-repeat;
    float: left;
    width: 100%;
    padding: 40px 0; }
    .home #content .call-to-action img {
      float: left;
      width: 100%;
      height: auto;
      margin-bottom: 20px; }
    .home #content .call-to-action p {
      color: #5b5a5a;
      font-size: 12px;
      margin-bottom: 0;
      float: left;
      margin-bottom: 20px; }
    .home #content .call-to-action .grid__item:last-child p {
      margin-bottom: 0; }

.post-type-archive-walks .pagination-dupe, .single-walks .pagination-dupe, .page-template-page-tfl-sport-relief .pagination-dupe, .page-template-page-tfl-sport-relief-form .pagination-dupe {
  float: left;
  width: 100%;
  margin-bottom: 35px; }
  .post-type-archive-walks .pagination-dupe .facetwp-pager, .single-walks .pagination-dupe .facetwp-pager, .page-template-page-tfl-sport-relief .pagination-dupe .facetwp-pager, .page-template-page-tfl-sport-relief-form .pagination-dupe .facetwp-pager {
    text-align: center; }
    .post-type-archive-walks .pagination-dupe .facetwp-pager .facetwp-pager-label, .single-walks .pagination-dupe .facetwp-pager .facetwp-pager-label, .page-template-page-tfl-sport-relief .pagination-dupe .facetwp-pager .facetwp-pager-label, .page-template-page-tfl-sport-relief-form .pagination-dupe .facetwp-pager .facetwp-pager-label {
      display: none; }
    .post-type-archive-walks .pagination-dupe .facetwp-pager .facetwp-page, .single-walks .pagination-dupe .facetwp-pager .facetwp-page, .page-template-page-tfl-sport-relief .pagination-dupe .facetwp-pager .facetwp-page, .page-template-page-tfl-sport-relief-form .pagination-dupe .facetwp-pager .facetwp-page {
      font-size: 12px;
      color: #5b5a5a; }
      .post-type-archive-walks .pagination-dupe .facetwp-pager .facetwp-page.active, .single-walks .pagination-dupe .facetwp-pager .facetwp-page.active, .page-template-page-tfl-sport-relief .pagination-dupe .facetwp-pager .facetwp-page.active, .page-template-page-tfl-sport-relief-form .pagination-dupe .facetwp-pager .facetwp-page.active, .post-type-archive-walks .pagination-dupe .facetwp-pager .facetwp-page:hover, .single-walks .pagination-dupe .facetwp-pager .facetwp-page:hover, .page-template-page-tfl-sport-relief .pagination-dupe .facetwp-pager .facetwp-page:hover, .page-template-page-tfl-sport-relief-form .pagination-dupe .facetwp-pager .facetwp-page:hover {
        color: #7cb11b; }
      .post-type-archive-walks .pagination-dupe .facetwp-pager .facetwp-page.no-hover, .single-walks .pagination-dupe .facetwp-pager .facetwp-page.no-hover, .page-template-page-tfl-sport-relief .pagination-dupe .facetwp-pager .facetwp-page.no-hover, .page-template-page-tfl-sport-relief-form .pagination-dupe .facetwp-pager .facetwp-page.no-hover {
        cursor: default;
        color: #5b5a5a !important; }
      .post-type-archive-walks .pagination-dupe .facetwp-pager .facetwp-page:last-child, .single-walks .pagination-dupe .facetwp-pager .facetwp-page:last-child, .page-template-page-tfl-sport-relief .pagination-dupe .facetwp-pager .facetwp-page:last-child, .page-template-page-tfl-sport-relief-form .pagination-dupe .facetwp-pager .facetwp-page:last-child {
        display: none; }
.post-type-archive-walks h2, .single-walks h2, .page-template-page-tfl-sport-relief h2, .page-template-page-tfl-sport-relief-form h2 {
  font-size: 25px;
  margin: 0;
  padding: 0 !important;
  margin: 40px 0;
  text-transform: uppercase;
  color: #e2001a;
  padding-top: 30px;
  padding-bottom: 10px;
  font-weight: bold;
  margin-top: 0; }
.post-type-archive-walks .walk-wrap, .single-walks .walk-wrap, .page-template-page-tfl-sport-relief .walk-wrap, .page-template-page-tfl-sport-relief-form .walk-wrap {
  padding: 35px 0;
  border-top: 2px dotted #e9e9e9;
  float: left;
  width: 100%; }
  .post-type-archive-walks .walk-wrap:last-child, .single-walks .walk-wrap:last-child, .page-template-page-tfl-sport-relief .walk-wrap:last-child, .page-template-page-tfl-sport-relief-form .walk-wrap:last-child {
    border-bottom: 2px dotted #e9e9e9;
    margin-bottom: 40px; }
  .post-type-archive-walks .walk-wrap h3, .single-walks .walk-wrap h3, .page-template-page-tfl-sport-relief .walk-wrap h3, .page-template-page-tfl-sport-relief-form .walk-wrap h3 {
    color: #598704;
    font-size: 17px;
    margin: 0;
    text-transform: uppercase;
    padding: 0;
    font-weight: bold;
    margin-bottom: 20px;
    line-height: 22px; }
    .post-type-archive-walks .walk-wrap h3 a, .single-walks .walk-wrap h3 a, .page-template-page-tfl-sport-relief .walk-wrap h3 a, .page-template-page-tfl-sport-relief-form .walk-wrap h3 a {
      color: #598704; }
  .post-type-archive-walks .walk-wrap p, .single-walks .walk-wrap p, .page-template-page-tfl-sport-relief .walk-wrap p, .page-template-page-tfl-sport-relief-form .walk-wrap p {
    margin: 0;
    font-size: 12px;
    color: #d91231;
    font-weight: bold;
    margin-bottom: 20px; }
    .post-type-archive-walks .walk-wrap p span, .single-walks .walk-wrap p span, .page-template-page-tfl-sport-relief .walk-wrap p span, .page-template-page-tfl-sport-relief-form .walk-wrap p span {
      color: #5b5a5a;
      font-weight: normal;
      text-transform: uppercase; }
    .post-type-archive-walks .walk-wrap p .fa, .single-walks .walk-wrap p .fa, .page-template-page-tfl-sport-relief .walk-wrap p .fa, .page-template-page-tfl-sport-relief-form .walk-wrap p .fa {
      color: #c6c4c4;
      margin-right: 5px;
      width: 12px;
      text-align: center; }
  .post-type-archive-walks .walk-wrap a.walk-button, .single-walks .walk-wrap a.walk-button, .page-template-page-tfl-sport-relief .walk-wrap a.walk-button, .page-template-page-tfl-sport-relief-form .walk-wrap a.walk-button {
    background-color: #7cb11b;
    float: left;
    color: #fff;
    text-decoration: none;
    padding: 15px 25px;
    font-size: 12px;
    font-weight: bold;
    line-height: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 15px; }
  .post-type-archive-walks .walk-wrap ul, .single-walks .walk-wrap ul, .page-template-page-tfl-sport-relief .walk-wrap ul, .page-template-page-tfl-sport-relief-form .walk-wrap ul {
    float: left;
    margin: 0;
    margin-bottom: 20px; }
    .post-type-archive-walks .walk-wrap ul li, .single-walks .walk-wrap ul li, .page-template-page-tfl-sport-relief .walk-wrap ul li, .page-template-page-tfl-sport-relief-form .walk-wrap ul li {
      float: left;
      color: #5b5a5a;
      font-size: 12px;
      margin-right: 20px;
      width: 100%;
      margin-bottom: 20px; }
      .post-type-archive-walks .walk-wrap ul li:last-child, .single-walks .walk-wrap ul li:last-child, .page-template-page-tfl-sport-relief .walk-wrap ul li:last-child, .page-template-page-tfl-sport-relief-form .walk-wrap ul li:last-child {
        margin-bottom: 0; }
      .post-type-archive-walks .walk-wrap ul li .fa, .single-walks .walk-wrap ul li .fa, .page-template-page-tfl-sport-relief .walk-wrap ul li .fa, .page-template-page-tfl-sport-relief-form .walk-wrap ul li .fa {
        color: #c6c4c4;
        margin-right: 5px; }
      .post-type-archive-walks .walk-wrap ul li:last-child, .single-walks .walk-wrap ul li:last-child, .page-template-page-tfl-sport-relief .walk-wrap ul li:last-child, .page-template-page-tfl-sport-relief-form .walk-wrap ul li:last-child {
        margin-right: 0; }

.single-walks .facet-container, .page-template-page-tfl-sport-relief .facet-container, .page-template-page-tfl-sport-relief-form .facet-container {
  margin-bottom: 30px;
  margin-top: 0px; }
  .single-walks .facet-container .facetwp-checkbox, .page-template-page-tfl-sport-relief .facet-container .facetwp-checkbox, .page-template-page-tfl-sport-relief-form .facet-container .facetwp-checkbox {
    background-image: none;
    margin-bottom: 4px; }
    .single-walks .facet-container .facetwp-checkbox .styledCheckbox, .page-template-page-tfl-sport-relief .facet-container .facetwp-checkbox .styledCheckbox, .page-template-page-tfl-sport-relief-form .facet-container .facetwp-checkbox .styledCheckbox {
      background-size: cover;
      float: left;
      margin-right: 6px;
      margin-top: 2px; }
  .single-walks .facet-container input[type="submit"], .page-template-page-tfl-sport-relief .facet-container input[type="submit"], .page-template-page-tfl-sport-relief-form .facet-container input[type="submit"] {
    color: #ffffff;
    font-size: 12px;
    font-weight: bold;
    text-decoration: none;
    letter-spacing: .5px;
    background: #d91231;
    padding: 10px 30px;
    text-transform: uppercase;
    line-height: 12px;
    border: none;
    width: 100%;
    margin-top: 25px;
    -webkit-appearance: none;
    -webkit-border-radius: 0; }
.single-walks .walk-template, .page-template-page-tfl-sport-relief .walk-template, .page-template-page-tfl-sport-relief-form .walk-template {
  padding-top: 30px; }
  .single-walks .walk-template h2, .page-template-page-tfl-sport-relief .walk-template h2, .page-template-page-tfl-sport-relief-form .walk-template h2 {
    color: #7cb11b; }
.single-walks .walk-wrap, .page-template-page-tfl-sport-relief .walk-wrap, .page-template-page-tfl-sport-relief-form .walk-wrap {
  border: none !Important;
  padding: 0; }
  .single-walks .walk-wrap p span.green, .page-template-page-tfl-sport-relief .walk-wrap p span.green, .page-template-page-tfl-sport-relief-form .walk-wrap p span.green {
    color: #7cb11b; }
    .single-walks .walk-wrap p span.green .fa, .page-template-page-tfl-sport-relief .walk-wrap p span.green .fa, .page-template-page-tfl-sport-relief-form .walk-wrap p span.green .fa {
      color: #7cb11b; }
  .single-walks .walk-wrap ul.cats, .page-template-page-tfl-sport-relief .walk-wrap ul.cats, .page-template-page-tfl-sport-relief-form .walk-wrap ul.cats {
    margin: 0;
    padding: 25px 0;
    border-top: 2px dotted #e9e9e9;
    width: 100%;
    float: left; }
  .single-walks .walk-wrap .description ul, .page-template-page-tfl-sport-relief .walk-wrap .description ul, .page-template-page-tfl-sport-relief-form .walk-wrap .description ul {
    list-style: outside none disc;
    margin-left: 13px; }
    .single-walks .walk-wrap .description ul li, .page-template-page-tfl-sport-relief .walk-wrap .description ul li, .page-template-page-tfl-sport-relief-form .walk-wrap .description ul li {
      padding-bottom: 10px;
      padding-left: 0px; }
  .single-walks .walk-wrap .acf-map, .page-template-page-tfl-sport-relief .walk-wrap .acf-map, .page-template-page-tfl-sport-relief-form .walk-wrap .acf-map {
    width: 100%;
    height: 400px;
    border: #e1e1e1 solid 1px;
    margin-top: 25px;
    margin-bottom: 0;
    float: left; }
  .single-walks .walk-wrap .border-section, .page-template-page-tfl-sport-relief .walk-wrap .border-section, .page-template-page-tfl-sport-relief-form .walk-wrap .border-section {
    margin: 0;
    padding: 25px 0;
    border-top: 2px dotted #e9e9e9;
    width: 100%;
    float: left; }
    .single-walks .walk-wrap .border-section.description p, .page-template-page-tfl-sport-relief .walk-wrap .border-section.description p, .page-template-page-tfl-sport-relief-form .walk-wrap .border-section.description p {
      color: #5b5a5a;
      font-weight: normal; }
    .single-walks .walk-wrap .border-section p:last-child, .page-template-page-tfl-sport-relief .walk-wrap .border-section p:last-child, .page-template-page-tfl-sport-relief-form .walk-wrap .border-section p:last-child {
      margin-bottom: 0; }
    .single-walks .walk-wrap .border-section p a, .page-template-page-tfl-sport-relief .walk-wrap .border-section p a, .page-template-page-tfl-sport-relief-form .walk-wrap .border-section p a {
      text-decoration: none;
      color: #d91231; }
      .single-walks .walk-wrap .border-section p a:hover, .page-template-page-tfl-sport-relief .walk-wrap .border-section p a:hover, .page-template-page-tfl-sport-relief-form .walk-wrap .border-section p a:hover {
        color: #7cb11b; }
    .single-walks .walk-wrap .border-section .one-half:first-child p:last-child, .page-template-page-tfl-sport-relief .walk-wrap .border-section .one-half:first-child p:last-child, .page-template-page-tfl-sport-relief-form .walk-wrap .border-section .one-half:first-child p:last-child, .single-walks .walk-wrap .border-section .two-quarters:first-child p:last-child, .page-template-page-tfl-sport-relief .walk-wrap .border-section .two-quarters:first-child p:last-child, .page-template-page-tfl-sport-relief-form .walk-wrap .border-section .two-quarters:first-child p:last-child, .single-walks .walk-wrap .border-section .three-sixths:first-child p:last-child, .page-template-page-tfl-sport-relief .walk-wrap .border-section .three-sixths:first-child p:last-child, .page-template-page-tfl-sport-relief-form .walk-wrap .border-section .three-sixths:first-child p:last-child, .single-walks .walk-wrap .border-section .four-eighths:first-child p:last-child, .page-template-page-tfl-sport-relief .walk-wrap .border-section .four-eighths:first-child p:last-child, .page-template-page-tfl-sport-relief-form .walk-wrap .border-section .four-eighths:first-child p:last-child, .single-walks .walk-wrap .border-section .five-tenths:first-child p:last-child, .page-template-page-tfl-sport-relief .walk-wrap .border-section .five-tenths:first-child p:last-child, .page-template-page-tfl-sport-relief-form .walk-wrap .border-section .five-tenths:first-child p:last-child, .single-walks .walk-wrap .border-section .six-twelfths:first-child p:last-child, .page-template-page-tfl-sport-relief .walk-wrap .border-section .six-twelfths:first-child p:last-child, .page-template-page-tfl-sport-relief-form .walk-wrap .border-section .six-twelfths:first-child p:last-child {
      margin-bottom: 20px; }
    .single-walks .walk-wrap .border-section:last-child, .page-template-page-tfl-sport-relief .walk-wrap .border-section:last-child, .page-template-page-tfl-sport-relief-form .walk-wrap .border-section:last-child {
      border-bottom: 2px dotted #e9e9e9; }
.single-walks #ouibounce-modal, .page-template-page-tfl-sport-relief #ouibounce-modal, .page-template-page-tfl-sport-relief-form #ouibounce-modal {
  z-index: 5000; }
  .single-walks #ouibounce-modal .modal, .page-template-page-tfl-sport-relief #ouibounce-modal .modal, .page-template-page-tfl-sport-relief-form #ouibounce-modal .modal {
    height: 160px;
    left: 0;
    margin: auto;
    position: absolute;
    right: 0;
    top: 0;
    width: 240px;
    text-align: center; }
    .single-walks #ouibounce-modal .modal .modal-title, .page-template-page-tfl-sport-relief #ouibounce-modal .modal .modal-title, .page-template-page-tfl-sport-relief-form #ouibounce-modal .modal .modal-title {
      background-color: #d91231;
      border-radius: 4px 4px 0 0;
      color: #fff;
      font-size: 18px;
      margin: 0;
      padding: 10px; }

.bg-images {
  display: none; }

.page-template-page-survey-php .smcx-embed {
  margin: 0 auto;
  width: 100% !important;
  height: 890px !important; }
  .page-template-page-survey-php .smcx-embed .smcx-iframe-container {
    width: 100% !important;
    height: 855px !important; }
    .page-template-page-survey-php .smcx-embed .smcx-iframe-container iframe .survey-body {
      background-color: #ffffff !important; }
    .page-template-page-survey-php .smcx-embed .smcx-iframe-container iframe #patas .survey-body {
      background-color: #ffffff !important; }
    .page-template-page-survey-php .smcx-embed .smcx-iframe-container .survey-body {
      background-color: #ffffff !important; }
  .page-template-page-survey-php .smcx-embed .survey-body {
    background-color: #ffffff !important; }
.page-template-page-survey-php .survey-body {
  background-color: #ffffff !important; }

.page-template-page-tfl-sport-relief a.btn, .page-template-page-tfl-sport-relief-form a.btn {
  background-color: #e2001a;
  color: #fff;
  display: block;
  font-weight: bold;
  padding: 10px 20px;
  text-decoration: none;
  width: 100%;
  text-align: center; }
  .page-template-page-tfl-sport-relief a.btn:after, .page-template-page-tfl-sport-relief-form a.btn:after {
    content: '\f145';
    font-family: FontAwesome;
    font-weight: normal;
    font-size: 16px;
    font-style: normal;
    margin: 0px 0px 0px 10px;
    text-decoration: none; }
  .page-template-page-tfl-sport-relief a.btn:hover, .page-template-page-tfl-sport-relief-form a.btn:hover {
    background-color: #fff;
    color: #e2001a; }

.page-template-page-tfl-sport-relief-form p {
  font-size: 12px;
  line-height: 1.75em;
  margin: 0 0 1.5em; }
.page-template-page-tfl-sport-relief-form a.btn:after {
  content: '\f105';
  font-size: 14px; }
.page-template-page-tfl-sport-relief-form .facet-container p {
  font-size: 12px;
  line-height: 1.75em;
  margin: 0 0 1.5em; }
.page-template-page-tfl-sport-relief-form .facet-container a.btn:after {
  content: '\f105';
  font-size: 14px; }
.page-template-page-tfl-sport-relief-form .facet-container img {
  display: block; }

.ie9 select {
  background-image: url(); }

/*********************
FORM STYLES
*********************/
.single-walks .gform_wrapper, .page-template-page-tfl-sport-relief .gform_wrapper, .page-template-page-tfl-sport-relief-form .gform_wrapper, .page-template-page-tfl-sport-relief-form .gform_wrapper {
  /* This is to remove the arrow of select element in IE */ }
  .single-walks .gform_wrapper p, .page-template-page-tfl-sport-relief .gform_wrapper p, .page-template-page-tfl-sport-relief-form .gform_wrapper p, .page-template-page-tfl-sport-relief-form .gform_wrapper p {
    color: #5b5a5a;
    font-weight: normal;
    padding-bottom: 15px; }
  .single-walks .gform_wrapper input[type="submit"], .page-template-page-tfl-sport-relief .gform_wrapper input[type="submit"], .page-template-page-tfl-sport-relief-form .gform_wrapper input[type="submit"], .page-template-page-tfl-sport-relief-form .gform_wrapper input[type="submit"] {
    position: relative;
    left: 0;
    margin-left: 0px;
    color: #ffffff;
    font-size: 12px;
    font-weight: bold;
    text-decoration: none;
    letter-spacing: .5px;
    background: #d91231;
    padding: 10px 30px;
    text-transform: uppercase;
    line-height: 12px;
    border: none;
    width: auto;
    margin-top: 25px;
    -webkit-appearance: none;
    -webkit-border-radius: 0; }
  .single-walks .gform_wrapper select, .page-template-page-tfl-sport-relief .gform_wrapper select, .page-template-page-tfl-sport-relief-form .gform_wrapper select, .page-template-page-tfl-sport-relief-form .gform_wrapper select {
    background-image: url("../images/events/arrow.png");
    padding: 0 12px !important; }
  .single-walks .gform_wrapper input[type="text"], .page-template-page-tfl-sport-relief .gform_wrapper input[type="text"], .page-template-page-tfl-sport-relief-form .gform_wrapper input[type="text"], .single-walks .gform_wrapper input[type="password"], .page-template-page-tfl-sport-relief .gform_wrapper input[type="password"], .page-template-page-tfl-sport-relief-form .gform_wrapper input[type="password"], .single-walks .gform_wrapper input[type="datetime"], .page-template-page-tfl-sport-relief .gform_wrapper input[type="datetime"], .page-template-page-tfl-sport-relief-form .gform_wrapper input[type="datetime"], .single-walks .gform_wrapper input[type="datetime-local"], .page-template-page-tfl-sport-relief .gform_wrapper input[type="datetime-local"], .page-template-page-tfl-sport-relief-form .gform_wrapper input[type="datetime-local"], .single-walks .gform_wrapper input[type="date"], .page-template-page-tfl-sport-relief .gform_wrapper input[type="date"], .page-template-page-tfl-sport-relief-form .gform_wrapper input[type="date"], .single-walks .gform_wrapper input[type="month"], .page-template-page-tfl-sport-relief .gform_wrapper input[type="month"], .page-template-page-tfl-sport-relief-form .gform_wrapper input[type="month"], .single-walks .gform_wrapper input[type="time"], .page-template-page-tfl-sport-relief .gform_wrapper input[type="time"], .page-template-page-tfl-sport-relief-form .gform_wrapper input[type="time"], .single-walks .gform_wrapper input[type="week"], .page-template-page-tfl-sport-relief .gform_wrapper input[type="week"], .page-template-page-tfl-sport-relief-form .gform_wrapper input[type="week"], .single-walks .gform_wrapper input[type="number"], .page-template-page-tfl-sport-relief .gform_wrapper input[type="number"], .page-template-page-tfl-sport-relief-form .gform_wrapper input[type="number"], .single-walks .gform_wrapper input[type="email"], .page-template-page-tfl-sport-relief .gform_wrapper input[type="email"], .page-template-page-tfl-sport-relief-form .gform_wrapper input[type="email"], .single-walks .gform_wrapper input[type="url"], .page-template-page-tfl-sport-relief .gform_wrapper input[type="url"], .page-template-page-tfl-sport-relief-form .gform_wrapper input[type="url"], .single-walks .gform_wrapper input[type="search"], .page-template-page-tfl-sport-relief .gform_wrapper input[type="search"], .page-template-page-tfl-sport-relief-form .gform_wrapper input[type="search"], .single-walks .gform_wrapper input[type="tel"], .page-template-page-tfl-sport-relief .gform_wrapper input[type="tel"], .page-template-page-tfl-sport-relief-form .gform_wrapper input[type="tel"], .single-walks .gform_wrapper input[type="color"], .page-template-page-tfl-sport-relief .gform_wrapper input[type="color"], .page-template-page-tfl-sport-relief-form .gform_wrapper input[type="color"], .single-walks .gform_wrapper select, .page-template-page-tfl-sport-relief .gform_wrapper select, .page-template-page-tfl-sport-relief-form .gform_wrapper select, .single-walks .gform_wrapper textarea, .page-template-page-tfl-sport-relief .gform_wrapper textarea, .page-template-page-tfl-sport-relief-form .gform_wrapper textarea, .single-walks .gform_wrapper .field, .page-template-page-tfl-sport-relief .gform_wrapper .field, .page-template-page-tfl-sport-relief-form .gform_wrapper .field, .page-template-page-tfl-sport-relief-form .gform_wrapper input[type="text"], .page-template-page-tfl-sport-relief-form .gform_wrapper input[type="password"], .page-template-page-tfl-sport-relief-form .gform_wrapper input[type="datetime"], .page-template-page-tfl-sport-relief-form .gform_wrapper input[type="datetime-local"], .page-template-page-tfl-sport-relief-form .gform_wrapper input[type="date"], .page-template-page-tfl-sport-relief-form .gform_wrapper input[type="month"], .page-template-page-tfl-sport-relief-form .gform_wrapper input[type="time"], .page-template-page-tfl-sport-relief-form .gform_wrapper input[type="week"], .page-template-page-tfl-sport-relief-form .gform_wrapper input[type="number"], .page-template-page-tfl-sport-relief-form .gform_wrapper input[type="email"], .page-template-page-tfl-sport-relief-form .gform_wrapper input[type="url"], .page-template-page-tfl-sport-relief-form .gform_wrapper input[type="search"], .page-template-page-tfl-sport-relief-form .gform_wrapper input[type="tel"], .page-template-page-tfl-sport-relief-form .gform_wrapper input[type="color"], .page-template-page-tfl-sport-relief-form .gform_wrapper select, .page-template-page-tfl-sport-relief-form .gform_wrapper textarea, .page-template-page-tfl-sport-relief-form .gform_wrapper .field {
    background-color: #f1f0f0;
    border: 0 none;
    border-radius: 0px;
    box-shadow: none;
    color: #868785;
    display: block;
    font-family: "Montserrat","Helvetica Neue",Helvetica,Arial,sans-serif;
    font-size: 12px;
    height: 40px;
    line-height: 40px;
    margin-bottom: 14px;
    max-width: 450px;
    padding: 0 12px;
    transition: background-color 0.24s ease-in-out 0s;
    vertical-align: middle;
    width: 100%; }
  .single-walks .gform_wrapper input[type="text"], .page-template-page-tfl-sport-relief .gform_wrapper input[type="text"], .page-template-page-tfl-sport-relief-form .gform_wrapper input[type="text"], .single-walks .gform_wrapper select, .page-template-page-tfl-sport-relief .gform_wrapper select, .page-template-page-tfl-sport-relief-form .gform_wrapper select, .page-template-page-tfl-sport-relief-form .gform_wrapper input[type="text"], .page-template-page-tfl-sport-relief-form .gform_wrapper select {
    padding: 0 0px 0px 12px !important; }
  .single-walks .gform_wrapper .tickbox, .page-template-page-tfl-sport-relief .gform_wrapper .tickbox, .page-template-page-tfl-sport-relief-form .gform_wrapper .tickbox, .page-template-page-tfl-sport-relief-form .gform_wrapper .tickbox {
    font-size: 11px;
    font-style: italic; }
    .single-walks .gform_wrapper .tickbox input[type="checkbox"], .page-template-page-tfl-sport-relief .gform_wrapper .tickbox input[type="checkbox"], .page-template-page-tfl-sport-relief-form .gform_wrapper .tickbox input[type="checkbox"], .page-template-page-tfl-sport-relief-form .gform_wrapper .tickbox input[type="checkbox"] {
      margin-top: 2px !important; }
  .single-walks .gform_wrapper .startingpoint, .page-template-page-tfl-sport-relief .gform_wrapper .startingpoint, .page-template-page-tfl-sport-relief-form .gform_wrapper .startingpoint, .page-template-page-tfl-sport-relief-form .gform_wrapper .startingpoint {
    width: 100%; }
    .single-walks .gform_wrapper .startingpoint #input_1_5, .page-template-page-tfl-sport-relief .gform_wrapper .startingpoint #input_1_5, .page-template-page-tfl-sport-relief-form .gform_wrapper .startingpoint #input_1_5, .page-template-page-tfl-sport-relief-form .gform_wrapper .startingpoint #input_1_5 {
      width: 100%; }
  .single-walks .gform_wrapper .statement, .page-template-page-tfl-sport-relief .gform_wrapper .statement, .page-template-page-tfl-sport-relief-form .gform_wrapper .statement, .page-template-page-tfl-sport-relief-form .gform_wrapper .statement {
    padding-top: 20px; }
    .single-walks .gform_wrapper .statement p, .page-template-page-tfl-sport-relief .gform_wrapper .statement p, .page-template-page-tfl-sport-relief-form .gform_wrapper .statement p, .page-template-page-tfl-sport-relief-form .gform_wrapper .statement p {
      font-size: 11px;
      font-style: italic;
      margin-bottom: 0px; }
  .single-walks .gform_wrapper .button, .page-template-page-tfl-sport-relief .gform_wrapper .button, .page-template-page-tfl-sport-relief-form .gform_wrapper .button, .page-template-page-tfl-sport-relief-form .gform_wrapper .button {
    background-color: #598704;
    color: #fff;
    background-image: url();
    background-position: center center;
    background-repeat: no-repeat;
    bottom: 0;
    border: 0;
    display: block !important;
    height: auto;
    left: 0;
    margin-left: 0px;
    position: relative;
    transition-duration: 0.7s;
    padding: 7px 18px;
    width: auto; }
    .single-walks .gform_wrapper .button:hover, .page-template-page-tfl-sport-relief .gform_wrapper .button:hover, .page-template-page-tfl-sport-relief-form .gform_wrapper .button:hover, .page-template-page-tfl-sport-relief-form .gform_wrapper .button:hover {
      background-color: #e2001a; }
  .single-walks .gform_wrapper li.gfield.gfield_error.gfield_contains_required div.gfield_description, .page-template-page-tfl-sport-relief .gform_wrapper li.gfield.gfield_error.gfield_contains_required div.gfield_description, .page-template-page-tfl-sport-relief-form .gform_wrapper li.gfield.gfield_error.gfield_contains_required div.gfield_description, .page-template-page-tfl-sport-relief-form .gform_wrapper li.gfield.gfield_error.gfield_contains_required div.gfield_description {
    max-width: 100% !important;
    padding-right: 0 !important; }
  .single-walks .gform_wrapper .description, .page-template-page-tfl-sport-relief .gform_wrapper .description, .page-template-page-tfl-sport-relief-form .gform_wrapper .description, .single-walks .gform_wrapper .gfield_description, .page-template-page-tfl-sport-relief .gform_wrapper .gfield_description, .page-template-page-tfl-sport-relief-form .gform_wrapper .gfield_description, .single-walks .gform_wrapper .gsection_description, .page-template-page-tfl-sport-relief .gform_wrapper .gsection_description, .page-template-page-tfl-sport-relief-form .gform_wrapper .gsection_description, .single-walks .gform_wrapper .instruction, .page-template-page-tfl-sport-relief .gform_wrapper .instruction, .page-template-page-tfl-sport-relief-form .gform_wrapper .instruction, .page-template-page-tfl-sport-relief-form .gform_wrapper .description, .page-template-page-tfl-sport-relief-form .gform_wrapper .gfield_description, .page-template-page-tfl-sport-relief-form .gform_wrapper .gsection_description, .page-template-page-tfl-sport-relief-form .gform_wrapper .instruction {
    font-size: 12px !important; }
  .single-walks .gform_wrapper .top_label li.gfield.gf_left_half, .page-template-page-tfl-sport-relief .gform_wrapper .top_label li.gfield.gf_left_half, .page-template-page-tfl-sport-relief-form .gform_wrapper .top_label li.gfield.gf_left_half, .page-template-page-tfl-sport-relief-form .gform_wrapper .top_label li.gfield.gf_left_half {
    margin: 0 0 0 !important;
    width: 99% !important; }
  .single-walks .gform_wrapper .top_label li.gfield.gf_right_half, .page-template-page-tfl-sport-relief .gform_wrapper .top_label li.gfield.gf_right_half, .page-template-page-tfl-sport-relief-form .gform_wrapper .top_label li.gfield.gf_right_half, .single-walks .gform_wrapper .top_label li.gfield.gfield_error.gf_left_half, .page-template-page-tfl-sport-relief .gform_wrapper .top_label li.gfield.gfield_error.gf_left_half, .page-template-page-tfl-sport-relief-form .gform_wrapper .top_label li.gfield.gfield_error.gf_left_half, .single-walks .gform_wrapper .top_label li.gfield.gfield_error.gf_right_half, .page-template-page-tfl-sport-relief .gform_wrapper .top_label li.gfield.gfield_error.gf_right_half, .page-template-page-tfl-sport-relief-form .gform_wrapper .top_label li.gfield.gfield_error.gf_right_half, .page-template-page-tfl-sport-relief-form .gform_wrapper .top_label li.gfield.gf_right_half, .page-template-page-tfl-sport-relief-form .gform_wrapper .top_label li.gfield.gfield_error.gf_left_half, .page-template-page-tfl-sport-relief-form .gform_wrapper .top_label li.gfield.gfield_error.gf_right_half {
    width: 99% !important; }
  .single-walks .gform_wrapper li.gfield.gfield_error.gfield_contains_required div.ginput_container, .page-template-page-tfl-sport-relief .gform_wrapper li.gfield.gfield_error.gfield_contains_required div.ginput_container, .page-template-page-tfl-sport-relief-form .gform_wrapper li.gfield.gfield_error.gfield_contains_required div.ginput_container, .single-walks .gform_wrapper li.gfield.gfield_error.gfield_contains_required label.gfield_label, .page-template-page-tfl-sport-relief .gform_wrapper li.gfield.gfield_error.gfield_contains_required label.gfield_label, .page-template-page-tfl-sport-relief-form .gform_wrapper li.gfield.gfield_error.gfield_contains_required label.gfield_label, .page-template-page-tfl-sport-relief-form .gform_wrapper li.gfield.gfield_error.gfield_contains_required div.ginput_container, .page-template-page-tfl-sport-relief-form .gform_wrapper li.gfield.gfield_error.gfield_contains_required label.gfield_label {
    margin-top: 0.375em !important; }
  .single-walks .gform_wrapper li.gfield.gfield_error, .page-template-page-tfl-sport-relief .gform_wrapper li.gfield.gfield_error, .page-template-page-tfl-sport-relief-form .gform_wrapper li.gfield.gfield_error, .single-walks .gform_wrapper li.gfield.gfield_error.gfield_contains_required.gfield_creditcard_warning, .page-template-page-tfl-sport-relief .gform_wrapper li.gfield.gfield_error.gfield_contains_required.gfield_creditcard_warning, .page-template-page-tfl-sport-relief-form .gform_wrapper li.gfield.gfield_error.gfield_contains_required.gfield_creditcard_warning, .page-template-page-tfl-sport-relief-form .gform_wrapper li.gfield.gfield_error, .page-template-page-tfl-sport-relief-form .gform_wrapper li.gfield.gfield_error.gfield_contains_required.gfield_creditcard_warning {
    background-color: #ffffff;
    border-bottom: 0px solid #e2001a;
    border-top: 0px solid #e2001a;
    margin-bottom: 0.375em !important;
    padding: 0; }
  .single-walks .gform_wrapper input[type="text"], .page-template-page-tfl-sport-relief .gform_wrapper input[type="text"], .page-template-page-tfl-sport-relief-form .gform_wrapper input[type="text"], .single-walks .gform_wrapper input[type="number"], .page-template-page-tfl-sport-relief .gform_wrapper input[type="number"], .page-template-page-tfl-sport-relief-form .gform_wrapper input[type="number"], .single-walks .gform_wrapper input[type="email"], .page-template-page-tfl-sport-relief .gform_wrapper input[type="email"], .page-template-page-tfl-sport-relief-form .gform_wrapper input[type="email"], .single-walks .gform_wrapper .field, .page-template-page-tfl-sport-relief .gform_wrapper .field, .page-template-page-tfl-sport-relief-form .gform_wrapper .field, .page-template-page-tfl-sport-relief-form .gform_wrapper input[type="text"], .page-template-page-tfl-sport-relief-form .gform_wrapper input[type="number"], .page-template-page-tfl-sport-relief-form .gform_wrapper input[type="email"], .page-template-page-tfl-sport-relief-form .gform_wrapper .field {
    background-color: #f1f0f0;
    border: 0 none;
    border-radius: 0;
    box-shadow: none;
    color: #e2001a;
    display: block;
    font-family: "Montserrat","Helvetica Neue",Helvetica,Arial,sans-serif;
    font-size: 12px;
    height: 40px;
    line-height: 40px;
    margin-bottom: 0px !important;
    max-width: 400px;
    padding: 0 !important;
    transition: background-color 0.24s ease-in-out 0s;
    vertical-align: middle;
    width: 100%; }
  .single-walks .gform_wrapper div.validation_error, .page-template-page-tfl-sport-relief .gform_wrapper div.validation_error, .page-template-page-tfl-sport-relief-form .gform_wrapper div.validation_error, .page-template-page-tfl-sport-relief-form .gform_wrapper div.validation_error {
    border-bottom: 1px solid #e2001a;
    border-top: 1px solid #e2001a;
    clear: both;
    color: #e2001a;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 1.6em;
    padding: 1em 0;
    width: 97.5%; }
  .single-walks .gform_wrapper .validation_message, .page-template-page-tfl-sport-relief .gform_wrapper .validation_message, .page-template-page-tfl-sport-relief-form .gform_wrapper .validation_message, .page-template-page-tfl-sport-relief-form .gform_wrapper .validation_message {
    color: #e2001a;
    font-style: italic;
    font-weight: 300; }
  .single-walks .gform_wrapper li.gfield.gfield_error.gfield_contains_required div.gfield_description, .page-template-page-tfl-sport-relief .gform_wrapper li.gfield.gfield_error.gfield_contains_required div.gfield_description, .page-template-page-tfl-sport-relief-form .gform_wrapper li.gfield.gfield_error.gfield_contains_required div.gfield_description, .single-walks .gform_wrapper li.gfield.gfield_error.gfield_contains_required div.ginput_container, .page-template-page-tfl-sport-relief .gform_wrapper li.gfield.gfield_error.gfield_contains_required div.ginput_container, .page-template-page-tfl-sport-relief-form .gform_wrapper li.gfield.gfield_error.gfield_contains_required div.ginput_container, .single-walks .gform_wrapper li.gfield.gfield_error.gfield_contains_required fieldset legend.gfield_label, .page-template-page-tfl-sport-relief .gform_wrapper li.gfield.gfield_error.gfield_contains_required fieldset legend.gfield_label, .page-template-page-tfl-sport-relief-form .gform_wrapper li.gfield.gfield_error.gfield_contains_required fieldset legend.gfield_label, .single-walks .gform_wrapper li.gfield.gfield_error.gfield_contains_required label.gfield_label, .page-template-page-tfl-sport-relief .gform_wrapper li.gfield.gfield_error.gfield_contains_required label.gfield_label, .page-template-page-tfl-sport-relief-form .gform_wrapper li.gfield.gfield_error.gfield_contains_required label.gfield_label, .page-template-page-tfl-sport-relief-form .gform_wrapper li.gfield.gfield_error.gfield_contains_required div.gfield_description, .page-template-page-tfl-sport-relief-form .gform_wrapper li.gfield.gfield_error.gfield_contains_required div.ginput_container, .page-template-page-tfl-sport-relief-form .gform_wrapper li.gfield.gfield_error.gfield_contains_required fieldset legend.gfield_label, .page-template-page-tfl-sport-relief-form .gform_wrapper li.gfield.gfield_error.gfield_contains_required label.gfield_label {
    margin-left: 0px; }
  .single-walks .gform_wrapper .top_label input.medium, .page-template-page-tfl-sport-relief .gform_wrapper .top_label input.medium, .page-template-page-tfl-sport-relief-form .gform_wrapper .top_label input.medium, .single-walks .gform_wrapper .top_label select.medium, .page-template-page-tfl-sport-relief .gform_wrapper .top_label select.medium, .page-template-page-tfl-sport-relief-form .gform_wrapper .top_label select.medium, .page-template-page-tfl-sport-relief-form .gform_wrapper .top_label input.medium, .page-template-page-tfl-sport-relief-form .gform_wrapper .top_label select.medium {
    margin-bottom: 0 !important;
    width: 47.5%; }
  .single-walks .gform_wrapper #gform_confirmation_message_1, .page-template-page-tfl-sport-relief .gform_wrapper #gform_confirmation_message_1, .page-template-page-tfl-sport-relief-form .gform_wrapper #gform_confirmation_message_1, .page-template-page-tfl-sport-relief-form .gform_wrapper #gform_confirmation_message_1 {
    font-size: 12px;
    padding: 20px;
    border: solid 1px #7dd667; }
  .single-walks .gform_wrapper .ui-select, .page-template-page-tfl-sport-relief .gform_wrapper .ui-select, .page-template-page-tfl-sport-relief-form .gform_wrapper .ui-select, .page-template-page-tfl-sport-relief-form .gform_wrapper .ui-select {
    width: 100%; }
  .single-walks .gform_wrapper select::-ms-expand, .page-template-page-tfl-sport-relief .gform_wrapper select::-ms-expand, .page-template-page-tfl-sport-relief-form .gform_wrapper select::-ms-expand, .page-template-page-tfl-sport-relief-form .gform_wrapper select::-ms-expand {
    display: none; }
  .single-walks .gform_wrapper select, .page-template-page-tfl-sport-relief .gform_wrapper select, .page-template-page-tfl-sport-relief-form .gform_wrapper select, .page-template-page-tfl-sport-relief-form .gform_wrapper select {
    -webkit-appearance: none;
    appearance: none;
    -moz-appearance: none; }
@-moz-document url-prefix() {
  .single-walks .gform_wrapper .ui-select, .page-template-page-tfl-sport-relief .gform_wrapper .ui-select, .page-template-page-tfl-sport-relief-form .gform_wrapper .ui-select, .page-template-page-tfl-sport-relief-form .gform_wrapper .ui-select {
    border: 1px solid #CCC;
    border-radius: 4px;
    box-sizing: border-box;
    position: relative;
    overflow: hidden; }
  .single-walks .gform_wrapper .ui-select select, .page-template-page-tfl-sport-relief .gform_wrapper .ui-select select, .page-template-page-tfl-sport-relief-form .gform_wrapper .ui-select select, .page-template-page-tfl-sport-relief-form .gform_wrapper .ui-select select {
    width: 110%;
    background-position: right 30px center !important;
    border: none !important; } }
.gform_confirmation_message {
  font-size: 12px;
  padding: 20px;
  border: solid 1px #7dd667; }

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .grid--rev {
    direction: ltr;
    text-align: left; }
    .grid--rev > .grid__item {
      direction: ltr;
      text-align: left; } }
/*********************
LARGER MOBILE DEVICES
This is for devices like the Galaxy Note or something that's
larger than an iPhone but smaller than a tablet. Let's call them
tweeners.
*********************/
@media only screen and (min-width: 481px) {
  /******************************************************************
  Site Name:
  Author:
  
  Stylesheet: 481px and Up Stylesheet
  
  This stylesheet is loaded for larger devices. It's set to
  481px because at 480px it would load on a landscaped iPhone.
  This isn't ideal because then you would be loading all those
  extra styles on that same mobile connection.
  
  A word of warning. This size COULD be a larger mobile device,
  so you still want to keep it pretty light and simply expand
  upon your base.scss styles.
  
  ******************************************************************/
  /*
  IMPORTANT NOTE ABOUT SASS 3.3 & UP
  You can't use @extend within media queries
  anymore, so just be aware that if you drop
  them in here, they won't work.
  */
  .header .logo-link {
    width: auto;
    margin: 0; }
  .header .default-menu {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    width: 60%; }
    .header .default-menu p {
      font-size: 14px;
      float: right;
      text-align: right;
      color: #3b771b;
      font-weight: bold;
      line-height: 22px;
      letter-spacing: .5px;
      padding-left: 10px;
      margin-top: 0; }
      .header .default-menu p span.red {
        color: #d91231;
        font-size: 20px; }
      .header .default-menu p span.green {
        color: #77ad1a; }
      .header .default-menu p span.white {
        color: #fff;
        font-size: 20px; }

  /*********************
  NAVIGATION STYLES
  *********************/
  /* .menu is clearfixed inside mixins.scss */
  .menu {
    /* end .menu ul */ }
    .menu ul {
      /* end .menu ul li */
      /* highlight current page */
      /* end current highlighters */ }
      .menu ul li {
        /*
        plan your menus and drop-downs wisely.
        */ }
        .menu ul li a {
          /*
          you can use hover styles here even though this size
          has the possibility of being a mobile device.
          */ }

  /* end .menu */
  /*********************
  POSTS & CONTENT STYLES
  *********************/
  /* entry content */
  .entry-content {
    /* at this larger size, we can start to align images */ }
    .entry-content .alignleft, .entry-content img.alignleft {
      margin-right: 1.5em;
      display: inline;
      float: left; }
    .entry-content .alignright, .entry-content img.alignright {
      margin-left: 1.5em;
      display: inline;
      float: right; }
    .entry-content .aligncenter, .entry-content img.aligncenter {
      margin-right: auto;
      margin-left: auto;
      display: block;
      clear: both; }

  /* end .entry-content */
  /*********************
  FOOTER STYLES
  *********************/
  .footer .newsletter #mc4wp-form-1 input {
    /*
    				&[type="email"] {
    					width: auto;
    				}
    */ }

  /*********************
  HERO STYLES
  *********************/
  .hero-container {
    height: 500px; }
    .hero-container .title {
      font-weight: bold;
      font-size: 18px;
      line-height: 22px;
      color: #ffffff;
      text-transform: uppercase; }
      .hero-container .title span.red {
        font-size: 20px; }
      .hero-container .title span.small {
        font-size: 16px; }

  .home #content .thirds p {
    margin-bottom: 0; }
  .home #content .call-to-action p {
    margin-bottom: 0; }

  .post-type-archive-walks .walk-wrap ul li, .single-walks .walk-wrap ul li, .page-template-page-tfl-sport-relief .walk-wrap ul li, .page-template-page-tfl-sport-relief-form .walk-wrap ul li {
    margin-bottom: 0;
    width: auto; }

  .single-walks .walk-wrap .border-section p:last-child, .page-template-page-tfl-sport-relief .walk-wrap .border-section p:last-child, .page-template-page-tfl-sport-relief-form .walk-wrap .border-section p:last-child {
    margin-bottom: 0; } }
/*********************
TABLET & SMALLER LAPTOPS
This is the average viewing window. So Desktops, Laptops, and
in general anyone not viewing on a mobile device. Here's where
you can add resource intensive styles.
*********************/
@media only screen and (min-width: 768px) {
  /******************************************************************
  Site Name:
  Author:
  
  Stylesheet: Tablet & Small Desktop Stylesheet
  
  Here's where you can start getting into the good stuff.
  This size will work on iPads, other tablets, and desktops.
  So you can start working with more styles, background images,
  and other resources. You'll also notice the grid starts to
  come into play. Have fun!
  
  ******************************************************************/
  /*********************
  GENERAL STYLES
  *********************/
  /*********************
  LAYOUT & GRID STYLES
  *********************/
  .wrap {
    width: 760px; }

  /*********************
  HEADER STYLES
  *********************/
  .mobile-nav {
    display: block; }

  .header {
    padding: 25px 0;
    position: relative; }
    .header .hide-mob {
      display: inline-block; }
    .header .default-menu p {
      font-size: 16px;
      float: right;
      text-align: right;
      color: #3b771b;
      font-weight: bold;
      line-height: 28px;
      letter-spacing: .5px;
      padding-left: 0; }
      .header .default-menu p span.red {
        color: #d91231;
        font-size: 24px; }
      .header .default-menu p span.green {
        color: #77ad1a; }
      .header .default-menu p a.shop {
        padding: 60px 30px 10px;
        margin-left: 30px; }
    .header nav {
      position: absolute;
      bottom: 0; }
      .header nav li a {
        text-transform: uppercase;
        font-size: 15px;
        letter-spacing: 2px;
        margin: 0;
        padding: 0;
        padding: 10px 23px;
        padding-top: 60px;
        border-right: 2px dotted #e9e9e9; }
      .header nav li:hover a, .header nav li.current-menu-item a {
        color: #3c771b;
        text-decoration: none; }

  .footer .footer-inner {
    float: right; }
    .footer .footer-inner ul li {
      font-size: 9px;
      float: left;
      padding-right: 10px; }
      .footer .footer-inner ul li .fa {
        font-size: 18px;
        margin-left: 5px; }
      .footer .footer-inner ul li:last-child {
        padding-right: 0; }
      .footer .footer-inner ul li a {
        color: #eff96b;
        text-decoration: none; }
  .footer .newsletter #mc4wp-form-1 p {
    float: left;
    width: auto; }
    .footer .newsletter #mc4wp-form-1 p label {
      float: left;
      width: auto;
      padding: 6px 0;
      margin-bottom: 0; }
  .footer .newsletter #mc4wp-form-1 input[type="email"] {
    width: auto;
    margin-left: 25px;
    min-width: 370px;
    margin-bottom: 0; }

  /*********************
  NAVIGATION STYLES
  *********************/
  .nav {
    border: 0;
    /* end .menu ul li */
    /* highlight current page */
    /* end current highlighters */ }
    .nav ul {
      background: #323944;
      margin-top: 0; }
    .nav li {
      float: left;
      position: relative;
      /*
      plan your menus and drop-downs wisely.
      */
      /* showing sub-menus */ }
      .nav li a {
        border-bottom: 0;
        /*
        you can use hover styles here even though this size
        has the possibility of being a mobile device.
        */ }
        .nav li a:hover, .nav li a:focus {
          color: #fff;
          text-decoration: underline; }
      .nav li ul.sub-menu,
      .nav li ul.children {
        margin-top: 0;
        border: 1px solid #ccc;
        border-top: 0;
        position: absolute;
        visibility: hidden;
        z-index: 8999;
        /* highlight sub-menu current page */ }
        .nav li ul.sub-menu li,
        .nav li ul.children li {
          /*
          if you need to go deeper, go nuts
          just remember deeper menus suck
          for usability. k, bai.
          */ }
          .nav li ul.sub-menu li a,
          .nav li ul.children li a {
            padding-left: 10px;
            border-right: 0;
            display: block;
            width: 180px;
            border-bottom: 1px solid #ccc; }
          .nav li ul.sub-menu li:last-child a,
          .nav li ul.children li:last-child a {
            border-bottom: 0; }
          .nav li ul.sub-menu li ul,
          .nav li ul.children li ul {
            top: 0;
            left: 100%; }
      .nav li:hover > ul {
        top: auto;
        visibility: visible; }

  /* end .nav */
  /*********************
  SIDEBARS & ASIDES
  *********************/
  .sidebar {
    margin-top: 2.2em; }

  .widgettitle {
    border-bottom: 2px solid #444;
    margin-bottom: 0.75em; }

  .widget {
    padding: 0 10px;
    margin: 2.2em 0; }
    .widget ul li {
      margin-bottom: 0.75em;
      /* deep nesting */ }
      .widget ul li ul {
        margin-top: 0.75em;
        padding-left: 1em; }

  /* links widget */
  /* meta widget */
  /* pages widget */
  /* recent-posts widget */
  /* archives widget */
  /* tag-cloud widget */
  /* calendar widget */
  /* category widget */
  /* recent-comments widget */
  /* search widget */
  /* text widget */
  /*********************
  FOOTER STYLES
  *********************/
  /*
  you'll probably need to do quite a bit
  of overriding here if you styled them for
  mobile. Make sure to double check these!
  */
  .footer-links ul li {
    /*
    be careful with the depth of your menus.
    it's very rare to have multi-depth menus in
    the footer.
    */ }

  /* end .footer-links */
  /*********************
  HERO STYLES
  *********************/
  .hero-container {
    height: 622px; }
    .hero-container .after-overlay {
      right: 40px;
      width: 160px;
      height: auto;
      display: block; }
    .hero-container .title {
      font-weight: bold;
      font-size: 20px;
      line-height: 26px;
      color: #ffffff;
      text-transform: uppercase; }
      .hero-container .title span.red {
        font-size: 24px; }
      .hero-container .title span.small {
        font-size: 16px; }
      .hero-container .title span.white {
        font-size: 24px; }
      .hero-container .title span.smallwhite {
        font-size: 16px; }
    .hero-container .sr-title {
      top: 400px; }

  .single-walks #ouibounce-modal .modal, .page-template-page-tfl-sport-relief #ouibounce-modal .modal, .page-template-page-tfl-sport-relief-form #ouibounce-modal .modal {
    height: 120px;
    width: 500px; } }
/*********************
DESKTOP
This is the average viewing window. So Desktops, Laptops, and
in general anyone not viewing on a mobile device. Here's where
you can add resource intensive styles.
*********************/
@media only screen and (min-width: 1024px) {
  /******************************************************************
  Site Name:
  Author:
  
  Stylesheet: Desktop Stylsheet
  
  This is the desktop size. It's larger than an iPad so it will only
  be seen on the Desktop.
  
  ******************************************************************/
  html, body {
    height: auto;
    width: 100%; }

  .mobile-nav {
    display: none; }

  .header {
    padding: 25px 0;
    position: relative; }
    .header .default-menu p {
      font-size: 18px;
      float: right;
      text-align: right;
      color: #3b771b;
      font-weight: bold;
      line-height: 30px;
      letter-spacing: .5px; }
      .header .default-menu p span.red {
        color: #d91231;
        font-size: 29px; }
      .header .default-menu p span.green {
        color: #77ad1a; }
    .header nav {
      position: absolute;
      bottom: 0;
      display: block; }
      .header nav li a {
        text-transform: uppercase;
        font-size: 15px;
        letter-spacing: 2px;
        margin: 0;
        padding: 0;
        padding: 10px 23px;
        padding-top: 60px;
        border-right: 2px dotted #e9e9e9; }
      .header nav li:hover a, .header nav li.current-menu-item a {
        color: #3c771b;
        text-decoration: none; }

  .canopy .wrap .canopy-img {
    padding-right: 75px; }

  .footer .footer-inner {
    float: right; }
    .footer .footer-inner ul li {
      font-size: 9px;
      float: left;
      padding-right: 10px; }
      .footer .footer-inner ul li .fa {
        font-size: 18px;
        margin-left: 5px; }
      .footer .footer-inner ul li:last-child {
        padding-right: 0; }
      .footer .footer-inner ul li a {
        color: #eff96b;
        text-decoration: none; }
  .footer .newsletter #mc4wp-form-1 {
    float: left;
    margin-left: 108px; }
    .footer .newsletter #mc4wp-form-1 form {
      width: 725px;
      margin: 0 auto; }
    .footer .newsletter #mc4wp-form-1 input[type="email"] {
      margin-bottom: 0;
      margin-left: 12px;
      min-width: 325px;
      width: auto; }

  .wrap {
    width: 985px; }

  * {
    margin: 0px;
    padding: 0; }

  #container {
    height: 100%;
    width: 100%;
    max-width: 1395px;
    margin: 0 auto; }

  .demoContainer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; }

  #demo {
    height: 1200px; }

  #navigation {
    width: 100%;
    height: 100%;
    float: left; }

  #navBar {
    width: 50px;
    height: 165px;
    position: fixed;
    top: 50%;
    right: 0;
    margin-top: -82.5px;
    z-index: 1;
    list-style: none; }

  #navBar li {
    width: 15px;
    height: 15px;
    background-color: ghostwhite;
    border: 5px solid ghostwhite;
    margin: 12.5px;
    cursor: pointer;
    border-radius: 20px;
    transition-duration: 0.7s;
    -webkit-transition-duration: 0.7s; }

  #navBar li:hover, #navBar .current {
    transition-duration: 0.7s;
    -webkit-transition-duration: 0.7s;
    background-color: transparent; }

  /* FOR ALL SLIDES */
  .slide {
    background-attachment: fixed;
    width: 100%;
    height: 1200px;
    position: relative; }

  .button {
    display: block;
    width: 50px;
    height: 50px;
    position: absolute;
    bottom: 0px;
    left: 50%;
    margin-left: -25px;
    background-color: transparent;
    background-image: url(img/arrow.png);
    background-repeat: no-repeat;
    background-position: center center;
    transition-duration: 0.7s;
    -webkit-transition-duration: 0.7s;
    /* Safari */ }

  .button:hover {
    background-color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition-duration: 0.7s;
    -webkit-transition-duration: 0.7s;
    /* Safari */ }

  .button.last {
    transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    /* IE 9 */
    -webkit-transform: rotate(180deg);
    /* Safari and Chrome */ }

  /* SLIDES */
  #slide1 {
    background-color: #2474a9;
    background: url("../images/zelda.jpg") 0px 0px transparent fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover; }

  #slide2 {
    background-color: #b33921; }

  #slide3 {
    background-color: #1aaf5d; }

  #slide4 {
    background-color: #775c93; }

  h1.p-heading {
    font-family: Verdana, Geneva, sans-serif;
    color: rgba(0, 0, 0, 0.3);
    font-size: 3em;
    position: fixed;
    top: 50%;
    left: 50%;
    margin-left: -235px;
    margin-top: -59px;
    z-index: 1; }

  #ball1 {
    width: 200px;
    height: 200px;
    border-radius: 200px;
    position: absolute;
    top: 300px;
    left: 50px;
    background-color: rgba(0, 0, 0, 0.1); }

  #ball2 {
    width: 40px;
    height: 40px;
    border-radius: 200px;
    position: absolute;
    top: 80px;
    right: 50px;
    background-color: rgba(0, 0, 0, 0.1); }

  #ball3 {
    width: 150px;
    height: 150px;
    border-radius: 200px;
    position: absolute;
    top: 30px;
    right: 200px;
    background-color: rgba(0, 0, 0, 0.1); }

  #ball4 {
    width: 40px;
    height: 40px;
    border-radius: 200px;
    position: absolute;
    top: 100px;
    right: 500px;
    background-color: rgba(0, 0, 0, 0.1); }

  #slide4 #ball1 {
    width: 200px;
    height: 200px;
    border-radius: 200px;
    position: absolute;
    top: 490px;
    left: 900px;
    background-color: rgba(0, 0, 0, 0.1); }

  #slide4 #ball3 {
    width: 200px;
    height: 200px;
    border-radius: 200px;
    position: absolute;
    top: 600px;
    left: 500px;
    background-color: rgba(0, 0, 0, 0.1); }

  /*********************
  HERO STYLES
  *********************/
  .hero-container .after-overlay {
    top: 125px;
    right: 100px;
    width: auto; }
  .hero-container .title {
    font-weight: bold;
    font-size: 27px;
    line-height: initial;
    color: #ffffff;
    text-transform: uppercase; }
    .hero-container .title span.red {
      color: #d91231;
      font-size: 29px; }
    .hero-container .title span.small {
      font-size: 18px;
      line-height: auto;
      color: #568c4e; }
    .hero-container .title span.white {
      color: #fff;
      font-size: 29px; }
    .hero-container .title span.smallwhite {
      font-size: 18px;
      line-height: auto;
      color: #fff; }

  /*********************
  WALK STYLES
  *********************/
  .facet-container {
    padding-top: 65px;
    margin-bottom: 0;
    margin-top: 0; }

  .facetwp-template {
    padding-top: 65px; }

  .single-walks .walk-template, .page-template-page-tfl-sport-relief .walk-template, .page-template-page-tfl-sport-relief-form .walk-template {
    padding-top: 65px; }
  .single-walks .walk-wrap .acf-map, .page-template-page-tfl-sport-relief .walk-wrap .acf-map, .page-template-page-tfl-sport-relief-form .walk-wrap .acf-map {
    margin-bottom: 40px; }

  .page-template-page-survey-php .smcx-embed {
    margin: 0 auto;
    width: 77% !important;
    height: 890px !important; }
    .page-template-page-survey-php .smcx-embed .smcx-iframe-container {
      width: 100% !important;
      height: 855px !important; }
      .page-template-page-survey-php .smcx-embed .smcx-iframe-container iframe .survey-body {
        background-color: #ffffff !important; }
      .page-template-page-survey-php .smcx-embed .smcx-iframe-container iframe #patas .survey-body {
        background-color: #ffffff !important; }
      .page-template-page-survey-php .smcx-embed .smcx-iframe-container .survey-body {
        background-color: #ffffff !important; }
    .page-template-page-survey-php .smcx-embed .survey-body {
      background-color: #ffffff !important; }
  .page-template-page-survey-php .survey-body {
    background-color: #ffffff !important; }

  .single-walks .gform_wrapper .top_label li.gfield.gf_left_half, .page-template-page-tfl-sport-relief .gform_wrapper .top_label li.gfield.gf_left_half, .page-template-page-tfl-sport-relief-form .gform_wrapper .top_label li.gfield.gf_left_half, .page-template-page-tfl-sport-relief-form .gform_wrapper .top_label li.gfield.gf_left_half {
    margin: 0 0 0 !important;
    width: 49% !important; }
  .single-walks .gform_wrapper .top_label li.gfield.gf_right_half, .page-template-page-tfl-sport-relief .gform_wrapper .top_label li.gfield.gf_right_half, .page-template-page-tfl-sport-relief-form .gform_wrapper .top_label li.gfield.gf_right_half, .single-walks .gform_wrapper .top_label li.gfield.gfield_error.gf_left_half, .page-template-page-tfl-sport-relief .gform_wrapper .top_label li.gfield.gfield_error.gf_left_half, .page-template-page-tfl-sport-relief-form .gform_wrapper .top_label li.gfield.gfield_error.gf_left_half, .single-walks .gform_wrapper .top_label li.gfield.gfield_error.gf_right_half, .page-template-page-tfl-sport-relief .gform_wrapper .top_label li.gfield.gfield_error.gf_right_half, .page-template-page-tfl-sport-relief-form .gform_wrapper .top_label li.gfield.gfield_error.gf_right_half, .page-template-page-tfl-sport-relief-form .gform_wrapper .top_label li.gfield.gf_right_half, .page-template-page-tfl-sport-relief-form .gform_wrapper .top_label li.gfield.gfield_error.gf_left_half, .page-template-page-tfl-sport-relief-form .gform_wrapper .top_label li.gfield.gfield_error.gf_right_half {
    width: 49% !important; } }
/*********************
LARGE VIEWING SIZE
This is for the larger monitors and possibly full screen viewers.
*********************/
@media only screen and (min-width: 1240px) {
  /******************************************************************
  Site Name:
  Author:
  
  Stylesheet: Super Large Monitor Stylesheet
  
  You can add some advanced styles here if you like. This kicks in
  on larger screens.
  
  ******************************************************************/
  /*********************
  HERO STYLES
  *********************/
  .hero-container .after-overlay {
    right: 200px; } }
/*********************
RETINA (2x RESOLUTION DEVICES)
This applies to the retina iPhone (4s) and iPad (2,3) along with
other displays with a 2x resolution. You can also create a media
query for retina AND a certain size if you want. Go Nuts.
*********************/
@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) {
  /******************************************************************
  Site Name: 
  Author: 
  
  Stylesheet: Retina Screens & Devices Stylesheet
  
  When handling retina screens you need to make adjustments, especially
  if you're not using font icons. Here you can add them in one neat
  place.
  
  ******************************************************************/
  /* 
  
  EXAMPLE 
  Let's say you have an image and you need to make sure it looks ok
  on retina screens. Let's say we have an icon which dimension are
  24px x 24px. In your regular stylesheets, it would look something
  like this:
  
  .icon {
  	width: 24px;
  	height: 24px;
  	background: url(img/test.png) no-repeat;
  }
  
  For retina screens, we have to make some adjustments, so that image
  doesn't look blurry. So, taking into account the image above and the
  dimensions, this is what we would put in our retina stylesheet:
  
  .icon {
  	background: url(img/test@2x.png) no-repeat;
  	background-size: 24px 24px;
  }
  
  So, you would create the same icon, but at double the resolution, meaning 
  it would be 48px x 48px. You'd name it the same, but with a @2x at the end
  (this is pretty standard practice). Set the background image so it matches
  the original dimensions and you are good to go. 
  
  */ }
/*********************
PRINT STYLESHEET
Feel free to customize this. Remember to add things that won't make
sense to print at the bottom. Things like nav, ads, and forms should
be set to display none.
*********************/
@media print {
  /******************************************************************
  Site Name:
  Author:
  
  Stylesheet: Print Stylesheet
  
  This is the print stylesheet. There's probably not a lot
  of reasons to edit this stylesheet. If you want to
  though, go for it.
  
  ******************************************************************/
  * {
    background: transparent !important;
    color: black !important;
    text-shadow: none !important;
    filter: none !important;
    -ms-filter: none !important; }

  a, a:visited {
    color: #444 !important;
    text-decoration: underline; }
    a:after, a:visited:after {
      content: " (" attr(href) ")"; }
    a abbr[title]:after, a:visited abbr[title]:after {
      content: " (" attr(title) ")"; }

  .ir a:after,
  a[href^="javascript:"]:after,
  a[href^="#"]:after {
    content: ""; }

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

  thead {
    display: table-header-group; }

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

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

  @page {
    margin: 0.5cm; }
  p, h2, h3 {
    orphans: 3;
    widows: 3; }

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

  .sidebar,
  .page-navigation,
  .wp-prev-next,
  .respond-form,
  nav {
    display: none; } }
