@charset "UTF-8";
/**
 * Title:
 *    Main Stylesheet
 * Description:
 *    This is the main Scss file which will import all partials and
 *    compile into: assets/css/styles.css
 * Sections:
 *    $. Config
 *    $. Base
 *    $. Layout
 *    $. Modules
 *    $. Interface
 *    $. Helpers
 */
/* $. Config - Variables, global mixins & Bower components
\*----------------------------------------------------------------*/
/**
 * Title:
 *    Variables
 * Description:
 *    Project variables go here
 * Sections:
 *    $. Breakpoints
 *    $. Colours
 *    $. Typography
 *    $. Layout
 *    $. Z axis
 */
/* $. Breakpoints
\*----------------------------------------------------------------*/
/* $. Colours
\*----------------------------------------------------------------*/
/* $. Layout
\*----------------------------------------------------------------*/
/* $. Z axis
\*----------------------------------------------------------------*/
/**
 * Title:
 *    Global Mixins
 * Description:
 *    This is an archive for all global mixins located within the
 *    'mixins' folder
 * Sections:
 *    $. Media Queries
 *    $. Your new mixins
 */
/* $. Media Queries - https://github.com/jakearchibald/sass-ie
\*----------------------------------------------------------------*/
/* $. Font Mixin
 * Used because IE has issues using regular
 * weight/style declarations
\*----------------------------------------------------------------*/
/* $. px to rem
 * makes it easier to use fonts
\*----------------------------------------------------------------*/
/* $. Media Queries - https://github.com/jakearchibald/sass-ie
\*----------------------------------------------------------------*/
/* $. Your new mixins
\*----------------------------------------------------------------*/
/**
 * Title:
 *    Bower Components
 * Description:
 *    Importing and using the bower components within your Sass
 * Sections:
 *    $. Imports
 *    $. Griddle Build
 *    $. Hotfixes
 */
/* $. Imports
\*----------------------------------------------------------------*/
/* ==========================================================================
   Normalize.scss settings
   ========================================================================== */
/**
 * Includes legacy browser support IE6/7
 *
 * Set to false if you want to drop support for IE6 and IE7
 */
/* Base
   ========================================================================== */
/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS and IE text size adjust after device orientation change,
 *    without disabling user zoom.
 * 3. Corrects text resizing oddly in IE 6/7 when body `font-size` is set using
 *  `em` units.
 */
@import '../grunticon/icons.fallback.css';
@import '../grunticon/icons.data.png.css';
@import '../grunticon/icons.data.svg.css';
html {
  font-family: sans-serif; /* 1 */
  -ms-text-size-adjust: 100%; /* 2 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

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

/* HTML5 display definitions
   ========================================================================== */
/**
 * Correct `block` display not defined for any HTML5 element in IE 8/9.
 * Correct `block` display not defined for `details` or `summary` in IE 10/11
 * and Firefox.
 * Correct `block` display not defined for `main` in IE 11.
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block;
}

/**
 * 1. Correct `inline-block` display not defined in IE 6/7/8/9 and Firefox 3.
 * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
 */
audio,
canvas,
progress,
video {
  display: inline-block; /* 1 */
  vertical-align: baseline; /* 2 */
}

/**
 * Prevents 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/10.
 * Hide the `template` element in IE 8/9/10/11, Safari, and Firefox < 22.
 */
[hidden],
template {
  display: none;
}

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

/**
 * Improve readability of focused elements when they are also in an
 * active/hover state.
 */
a:active, a:hover {
  outline: 0;
}

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

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

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

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

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

/**
 * 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
   ========================================================================== */
/**
 * 1. Remove border when inside `a` element in IE 8/9/10.
 * 2. Improves image quality when scaled in IE 7.
 */
img {
  border: 0;
}

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

/* Grouping content
   ========================================================================== */
/**
 * Address margin not present in IE 8/9 and Safari.
 */
figure {
  margin: 1em 40px;
}

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

/**
 * Contain overflow in all browsers.
 */
pre {
  overflow: auto;
}

/**
 * Address odd `em`-unit font size rendering in all browsers.
 * Correct font family set oddly in IE 6, Safari 4/5, and Chrome.
 */
code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

/* Forms
   ========================================================================== */
/**
 * Known limitation: by default, Chrome and Safari on OS X allow very limited
 * styling of `select`, unless a `border` property is set.
 */
/**
 * 1. Correct color not being inherited.
 *  Known issue: affects color of disabled elements.
 * 2. Correct font properties not being inherited.
 * 3. Address margins set differently in Firefox 4+, Safari, and Chrome.
 * 4. Improves appearance and consistency in all browsers.
 */
button,
input,
optgroup,
select,
textarea {
  color: inherit; /* 1 */
  font: inherit; /* 2 */
  margin: 0; /* 3 */
}

/**
 * Address `overflow` set to `hidden` in IE 8/9/10/11.
 */
button {
  overflow: visible;
}

/**
 * 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 Firefox, IE 8/9/10/11, and Opera.
 * Correct `select` style inheritance in Firefox.
 */
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.
 * 4. Removes inner spacing in IE 7 without affecting normal text inputs.
 *  Known issue: inner spacing remains in IE 6.
 */
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;
}

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

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

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

/**
 * Fix the cursor style for Chrome's increment/decrement buttons. For certain
 * `font-size` values of the `input`, it causes the cursor style of the
 * decrement button to change from `default` to `text`.
 */
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  height: auto;
}

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

/**
 * Remove inner padding and search cancel button in Safari and Chrome on OS X.
 * Safari (but not Chrome) clips the cancel button when the search input has
 * padding (and `textfield` appearance).
 */
input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 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/10/11.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 * 3. Corrects text not wrapping in Firefox 3.
 * 4. Corrects alignment displayed oddly in IE 6/7.
 */
legend {
  border: 0; /* 1 */
  padding: 0; /* 2 */
}

/**
 * Remove default vertical scrollbar in IE 8/9/10/11.
 */
textarea {
  overflow: auto;
}

/**
 * Don't inherit the `font-weight` (applied by a rule above).
 * NOTE: the default cannot safely be changed in Chrome and Safari on OS X.
 */
optgroup {
  font-weight: bold;
}

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

td,
th {
  padding: 0;
}

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

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

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

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

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

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

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

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

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

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

/* $. Griddle Build
\*----------------------------------------------------------------*/
/* Proportional units
   ========================================================================== */
/*
 * Specify the proportional width of an object.
 * Primarily for, but not limited to, use with `.grid__cell` components.
 * Intentional redundancy build into each set of unit classes.
 */
.unit-1-12 {
  width: 8.3333333333%;
}

.unit-2-12 {
  width: 16.6666666667%;
}

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

.unit-4-12 {
  width: 33.3333333333%;
}

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

.unit-6-12 {
  width: 50%;
}

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

.unit-8-12 {
  width: 66.6666666667%;
}

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

.unit-10-12 {
  width: 83.3333333333%;
}

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

.grid--triple-pad {
  margin: 0 -30px;
}
.grid--triple-pad > .grid__cell {
  padding: 0 30px;
}

.grid--double-pad {
  margin: 0 -20px;
}
.grid--double-pad > .grid__cell {
  padding: 0 20px;
}

.grid--half-pad {
  margin: 0 -5px;
}
.grid--half-pad > .grid__cell {
  padding: 0 5px;
}

.grid--quarter-pad {
  margin: 0 -2px;
}
.grid--quarter-pad > .grid__cell {
  padding: 0 2px;
}

.grid--eighth-pad {
  margin: 0 -1px;
}
.grid--eighth-pad > .grid__cell {
  padding: 0 1px;
}

.grid--flush {
  margin: 0px;
}
.grid--flush > .grid__cell {
  padding: 0 0px;
}

.unit-hidden {
  display: none;
}

.unit-full {
  width: 100%;
}

.unit-right {
  float: right;
}

.unit-left {
  float: left;
}

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

.unit-al-centre {
  text-align: center;
}

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

.wrap--none {
  margin: 0 auto;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

.wrap {
  margin: 0 auto;
  width: 92.5%;
  max-width: 1280px;
}

@media screen and (min-width: 30em) {
  /* Proportional units
     ========================================================================== */
  /*
   * Specify the proportional width of an object.
   * Primarily for, but not limited to, use with `.grid__cell` components.
   * Intentional redundancy build into each set of unit classes.
   */
  .unit-1-12--bp1 {
    width: 8.3333333333%;
  }
  .unit-2-12--bp1 {
    width: 16.6666666667%;
  }
  .unit-3-12--bp1 {
    width: 25%;
  }
  .unit-4-12--bp1 {
    width: 33.3333333333%;
  }
  .unit-5-12--bp1 {
    width: 41.6666666667%;
  }
  .unit-6-12--bp1 {
    width: 50%;
  }
  .unit-7-12--bp1 {
    width: 58.3333333333%;
  }
  .unit-8-12--bp1 {
    width: 66.6666666667%;
  }
  .unit-9-12--bp1 {
    width: 75%;
  }
  .unit-10-12--bp1 {
    width: 83.3333333333%;
  }
  .unit-11-12--bp1 {
    width: 91.6666666667%;
  }
  .unit-al-left--bp1 {
    text-align: left;
  }
  .unit-al-centre--bp1 {
    text-align: center;
  }
  .unit-al-right--bp1 {
    text-align: right;
  }
  .unit-full--bp1 {
    width: 100%;
  }
  .unit-right--bp1 {
    float: right;
  }
}
@media screen and (min-width: 37.5em) {
  /* Proportional units
     ========================================================================== */
  /*
   * Specify the proportional width of an object.
   * Primarily for, but not limited to, use with `.grid__cell` components.
   * Intentional redundancy build into each set of unit classes.
   */
  .unit-1-12--bp2 {
    width: 8.3333333333%;
  }
  .unit-2-12--bp2 {
    width: 16.6666666667%;
  }
  .unit-3-12--bp2 {
    width: 25%;
  }
  .unit-4-12--bp2 {
    width: 33.3333333333%;
  }
  .unit-5-12--bp2 {
    width: 41.6666666667%;
  }
  .unit-6-12--bp2 {
    width: 50%;
  }
  .unit-7-12--bp2 {
    width: 58.3333333333%;
  }
  .unit-8-12--bp2 {
    width: 66.6666666667%;
  }
  .unit-9-12--bp2 {
    width: 75%;
  }
  .unit-10-12--bp2 {
    width: 83.3333333333%;
  }
  .unit-11-12--bp2 {
    width: 91.6666666667%;
  }
  .unit-al-left--bp2 {
    text-align: left;
  }
  .unit-al-centre--bp2 {
    text-align: center;
  }
  .unit-al-right--bp2 {
    text-align: right;
  }
  .unit-full--bp2 {
    width: 100%;
  }
  .unit-right--bp2 {
    float: right;
  }
}
@media screen and (min-width: 48em) {
  /* Proportional units
     ========================================================================== */
  /*
   * Specify the proportional width of an object.
   * Primarily for, but not limited to, use with `.grid__cell` components.
   * Intentional redundancy build into each set of unit classes.
   */
  .unit-1-12--bp3 {
    width: 8.3333333333%;
  }
  .unit-2-12--bp3 {
    width: 16.6666666667%;
  }
  .unit-3-12--bp3 {
    width: 25%;
  }
  .unit-4-12--bp3 {
    width: 33.3333333333%;
  }
  .unit-5-12--bp3 {
    width: 41.6666666667%;
  }
  .unit-6-12--bp3 {
    width: 50%;
  }
  .unit-7-12--bp3 {
    width: 58.3333333333%;
  }
  .unit-8-12--bp3 {
    width: 66.6666666667%;
  }
  .unit-9-12--bp3 {
    width: 75%;
  }
  .unit-10-12--bp3 {
    width: 83.3333333333%;
  }
  .unit-11-12--bp3 {
    width: 91.6666666667%;
  }
  .unit-1-5--bp3 {
    width: 20%;
  }
  .unit-2-5--bp3 {
    width: 40%;
  }
  .unit-3-5--bp3 {
    width: 60%;
  }
  .unit-4-5--bp3 {
    width: 80%;
  }
  .unit-al-left--bp3 {
    text-align: left;
  }
  .unit-al-centre--bp3 {
    text-align: center;
  }
  .unit-al-right--bp3 {
    text-align: right;
  }
  .unit-full--bp3 {
    width: 100%;
  }
  .unit-right--bp3 {
    float: right;
  }
}
@media screen and (min-width: 55em) {
  /* Proportional units
     ========================================================================== */
  /*
   * Specify the proportional width of an object.
   * Primarily for, but not limited to, use with `.grid__cell` components.
   * Intentional redundancy build into each set of unit classes.
   */
  .unit-1-12--bp4 {
    width: 8.3333333333%;
  }
  .unit-2-12--bp4 {
    width: 16.6666666667%;
  }
  .unit-3-12--bp4 {
    width: 25%;
  }
  .unit-4-12--bp4 {
    width: 33.3333333333%;
  }
  .unit-5-12--bp4 {
    width: 41.6666666667%;
  }
  .unit-6-12--bp4 {
    width: 50%;
  }
  .unit-7-12--bp4 {
    width: 58.3333333333%;
  }
  .unit-8-12--bp4 {
    width: 66.6666666667%;
  }
  .unit-9-12--bp4 {
    width: 75%;
  }
  .unit-10-12--bp4 {
    width: 83.3333333333%;
  }
  .unit-11-12--bp4 {
    width: 91.6666666667%;
  }
  .unit-1-5--bp4 {
    width: 20%;
  }
  .unit-2-5--bp4 {
    width: 40%;
  }
  .unit-3-5--bp4 {
    width: 60%;
  }
  .unit-4-5--bp4 {
    width: 80%;
  }
  .unit-al-left--bp4 {
    text-align: left;
  }
  .unit-al-centre--bp4 {
    text-align: center;
  }
  .unit-al-right--bp4 {
    text-align: right;
  }
  .unit-full--bp4 {
    width: 100%;
  }
  .unit-right--bp4 {
    float: right;
  }
}
@media screen and (min-width: 62em) {
  /* Proportional units
     ========================================================================== */
  /*
   * Specify the proportional width of an object.
   * Primarily for, but not limited to, use with `.grid__cell` components.
   * Intentional redundancy build into each set of unit classes.
   */
  .unit-1-12--bp5 {
    width: 8.3333333333%;
  }
  .unit-2-12--bp5 {
    width: 16.6666666667%;
  }
  .unit-3-12--bp5 {
    width: 25%;
  }
  .unit-4-12--bp5 {
    width: 33.3333333333%;
  }
  .unit-5-12--bp5 {
    width: 41.6666666667%;
  }
  .unit-6-12--bp5 {
    width: 50%;
  }
  .unit-7-12--bp5 {
    width: 58.3333333333%;
  }
  .unit-8-12--bp5 {
    width: 66.6666666667%;
  }
  .unit-9-12--bp5 {
    width: 75%;
  }
  .unit-10-12--bp5 {
    width: 83.3333333333%;
  }
  .unit-11-12--bp5 {
    width: 91.6666666667%;
  }
  .unit-1-5--bp5 {
    width: 20%;
  }
  .unit-2-5--bp5 {
    width: 40%;
  }
  .unit-3-5--bp5 {
    width: 60%;
  }
  .unit-4-5--bp5 {
    width: 80%;
  }
  .unit-al-left--bp5 {
    text-align: left;
  }
  .unit-al-centre--bp5 {
    text-align: center;
  }
  .unit-al-right--bp5 {
    text-align: right;
  }
  .unit-full--bp5 {
    width: 100%;
  }
  .unit-right--bp5 {
    float: right;
  }
}
@media screen and (min-width: 70em) {
  /* Proportional units
     ========================================================================== */
  /*
   * Specify the proportional width of an object.
   * Primarily for, but not limited to, use with `.grid__cell` components.
   * Intentional redundancy build into each set of unit classes.
   */
  .unit-1-12--bp6 {
    width: 8.3333333333%;
  }
  .unit-2-12--bp6 {
    width: 16.6666666667%;
  }
  .unit-3-12--bp6 {
    width: 25%;
  }
  .unit-4-12--bp6 {
    width: 33.3333333333%;
  }
  .unit-5-12--bp6 {
    width: 41.6666666667%;
  }
  .unit-6-12--bp6 {
    width: 50%;
  }
  .unit-7-12--bp6 {
    width: 58.3333333333%;
  }
  .unit-8-12--bp6 {
    width: 66.6666666667%;
  }
  .unit-9-12--bp6 {
    width: 75%;
  }
  .unit-10-12--bp6 {
    width: 83.3333333333%;
  }
  .unit-11-12--bp6 {
    width: 91.6666666667%;
  }
  .unit-1-5--bp6 {
    width: 20%;
  }
  .unit-2-5--bp6 {
    width: 40%;
  }
  .unit-3-5--bp6 {
    width: 60%;
  }
  .unit-4-5--bp6 {
    width: 80%;
  }
  .unit-al-left--bp6 {
    text-align: left;
  }
  .unit-al-centre--bp6 {
    text-align: center;
  }
  .unit-al-right--bp6 {
    text-align: right;
  }
  .unit-full--bp6 {
    width: 100%;
  }
  .unit-right--bp6 {
    float: right;
  }
}
@media screen and (min-width: 80em) {
  /* Proportional units
     ========================================================================== */
  /*
   * Specify the proportional width of an object.
   * Primarily for, but not limited to, use with `.grid__cell` components.
   * Intentional redundancy build into each set of unit classes.
   */
  .unit-1-12--bp7 {
    width: 8.3333333333%;
  }
  .unit-2-12--bp7 {
    width: 16.6666666667%;
  }
  .unit-3-12--bp7 {
    width: 25%;
  }
  .unit-4-12--bp7 {
    width: 33.3333333333%;
  }
  .unit-5-12--bp7 {
    width: 41.6666666667%;
  }
  .unit-6-12--bp7 {
    width: 50%;
  }
  .unit-7-12--bp7 {
    width: 58.3333333333%;
  }
  .unit-8-12--bp7 {
    width: 66.6666666667%;
  }
  .unit-9-12--bp7 {
    width: 75%;
  }
  .unit-10-12--bp7 {
    width: 83.3333333333%;
  }
  .unit-11-12--bp7 {
    width: 91.6666666667%;
  }
  .unit-1-5--bp7 {
    width: 20%;
  }
  .unit-2-5--bp7 {
    width: 40%;
  }
  .unit-3-5--bp7 {
    width: 60%;
  }
  .unit-4-5--bp7 {
    width: 80%;
  }
  .unit-al-left--bp7 {
    text-align: left;
  }
  .unit-al-centre--bp7 {
    text-align: center;
  }
  .unit-al-right--bp7 {
    text-align: right;
  }
  .unit-full--bp7 {
    width: 100%;
  }
  .unit-right--bp7 {
    float: right;
  }
}
@media screen and (min-width: 90em) {
  /* Proportional units
     ========================================================================== */
  /*
   * Specify the proportional width of an object.
   * Primarily for, but not limited to, use with `.grid__cell` components.
   * Intentional redundancy build into each set of unit classes.
   */
  .unit-1-12--bp8 {
    width: 8.3333333333%;
  }
  .unit-2-12--bp8 {
    width: 16.6666666667%;
  }
  .unit-3-12--bp8 {
    width: 25%;
  }
  .unit-4-12--bp8 {
    width: 33.3333333333%;
  }
  .unit-5-12--bp8 {
    width: 41.6666666667%;
  }
  .unit-6-12--bp8 {
    width: 50%;
  }
  .unit-7-12--bp8 {
    width: 58.3333333333%;
  }
  .unit-8-12--bp8 {
    width: 66.6666666667%;
  }
  .unit-9-12--bp8 {
    width: 75%;
  }
  .unit-10-12--bp8 {
    width: 83.3333333333%;
  }
  .unit-11-12--bp8 {
    width: 91.6666666667%;
  }
  .unit-1-5--bp8 {
    width: 20%;
  }
  .unit-2-5--bp8 {
    width: 40%;
  }
  .unit-3-5--bp8 {
    width: 60%;
  }
  .unit-4-5--bp8 {
    width: 80%;
  }
  .unit-al-left--bp8 {
    text-align: left;
  }
  .unit-al-centre--bp8 {
    text-align: center;
  }
  .unit-al-right--bp8 {
    text-align: right;
  }
  .unit-full--bp8 {
    width: 100%;
  }
  .unit-right--bp8 {
    float: right;
  }
}
@media screen and (min-width: 100em) {
  /* Proportional units
     ========================================================================== */
  /*
   * Specify the proportional width of an object.
   * Primarily for, but not limited to, use with `.grid__cell` components.
   * Intentional redundancy build into each set of unit classes.
   */
  .unit-1-12--bp9 {
    width: 8.3333333333%;
  }
  .unit-2-12--bp9 {
    width: 16.6666666667%;
  }
  .unit-3-12--bp9 {
    width: 25%;
  }
  .unit-4-12--bp9 {
    width: 33.3333333333%;
  }
  .unit-5-12--bp9 {
    width: 41.6666666667%;
  }
  .unit-6-12--bp9 {
    width: 50%;
  }
  .unit-7-12--bp9 {
    width: 58.3333333333%;
  }
  .unit-8-12--bp9 {
    width: 66.6666666667%;
  }
  .unit-9-12--bp9 {
    width: 75%;
  }
  .unit-10-12--bp9 {
    width: 83.3333333333%;
  }
  .unit-11-12--bp9 {
    width: 91.6666666667%;
  }
  .unit-1-5--bp9 {
    width: 20%;
  }
  .unit-2-5--bp9 {
    width: 40%;
  }
  .unit-3-5--bp9 {
    width: 60%;
  }
  .unit-4-5--bp9 {
    width: 80%;
  }
  .unit-al-left--bp9 {
    text-align: left;
  }
  .unit-al-centre--bp9 {
    text-align: center;
  }
  .unit-al-right--bp9 {
    text-align: right;
  }
  .unit-full--bp9 {
    width: 100%;
  }
  .unit-right--bp9 {
    float: right;
  }
}
@media screen and (min-width: 110em) {
  /* Proportional units
     ========================================================================== */
  /*
   * Specify the proportional width of an object.
   * Primarily for, but not limited to, use with `.grid__cell` components.
   * Intentional redundancy build into each set of unit classes.
   */
  .unit-1-12--bp10 {
    width: 8.3333333333%;
  }
  .unit-2-12--bp10 {
    width: 16.6666666667%;
  }
  .unit-3-12--bp10 {
    width: 25%;
  }
  .unit-4-12--bp10 {
    width: 33.3333333333%;
  }
  .unit-5-12--bp10 {
    width: 41.6666666667%;
  }
  .unit-6-12--bp10 {
    width: 50%;
  }
  .unit-7-12--bp10 {
    width: 58.3333333333%;
  }
  .unit-8-12--bp10 {
    width: 66.6666666667%;
  }
  .unit-9-12--bp10 {
    width: 75%;
  }
  .unit-10-12--bp10 {
    width: 83.3333333333%;
  }
  .unit-11-12--bp10 {
    width: 91.6666666667%;
  }
  .unit-1-5--bp10 {
    width: 20%;
  }
  .unit-2-5--bp10 {
    width: 40%;
  }
  .unit-3-5--bp10 {
    width: 60%;
  }
  .unit-4-5--bp10 {
    width: 80%;
  }
  .unit-al-left--bp10 {
    text-align: left;
  }
  .unit-al-centre--bp10 {
    text-align: center;
  }
  .unit-al-right--bp10 {
    text-align: right;
  }
  .unit-full--bp10 {
    width: 100%;
  }
  .unit-right--bp10 {
    float: right;
  }
}
/* $. Hotfixes
\*----------------------------------------------------------------*/
.grid {
  letter-spacing: -0.32em;
}

/* $. Grunt Icons
\*----------------------------------------------------------------*/
/* $. Base - Project defaults & Element styling
\*----------------------------------------------------------------*/
/**
 * Title:
 *    Defaults
 * Description:
 *    These are the base styles for the project
 * Sections:
 *    $. Defaults
 *    $. Selections
 */
/* $. Defaults
\*----------------------------------------------------------------*/
*,
*:before,
*:after {
  box-sizing: inherit;
  -webkit-font-smoothing: antialiased;
}

html {
  font-family: "effra-n3", "effra", sans-serif;
  font-weight: 300;
  font-style: normal;
  line-height: 1.3;
  font-size: 100%;
  overflow-y: scroll;
  box-sizing: border-box;
}

body {
  color: #444444;
  background-color: #FFFFFF;
}

/* $. Selections
\*----------------------------------------------------------------*/
::-moz-selection {
  background: rgba(102, 102, 102, 0.5);
  color: #FFF;
  text-shadow: none;
}

::selection {
  background: rgba(102, 102, 102, 0.5);
  color: #FFF;
  text-shadow: none;
}

a:link {
  -webkit-tap-highlight-color: rgba(102, 102, 102, 0.5);
}

:focus {
  outline: 0;
  box-shadow: 0 0 1px rgb(229.5, 229.5, 229.5);
}

/**
 * Title:
 *    Elements
 * Description:
 *    The styling of basic element tags
 * Sections:
 *    $. Basics
 *    $. Links
 *    $. Blockquotes
 *    $. Embedded
 */
/* $. Basics
\*----------------------------------------------------------------*/
hr {
  border: 0;
  border-top: 1px solid rgb(229.5, 229.5, 229.5);
}

ins {
  text-decoration: none;
  color: #000;
  background: #ff9;
}

mark {
  font-style: italic;
  font-weight: bold;
}

pre {
  overflow-x: auto;
}

address {
  white-space: pre-line;
}

/* $. Links
\*----------------------------------------------------------------*/
a {
  text-decoration: none;
  color: #409F98;
}
a:hover {
  color: rgb(49.3632286996, 122.6367713004, 117.2376681614);
}

/* $. Blockquotes
\*----------------------------------------------------------------*/
blockquote {
  clear: both;
  margin-left: 0;
  margin-right: 0;
  font-style: italic;
}
@media screen and (min-width: 37.5em) {
  blockquote {
    padding-left: 2em;
    padding-right: 2em;
  }
}
blockquote p {
  font-size: 1.35em;
}

/* $. Embedded
\*----------------------------------------------------------------*/
img {
  display: inline-block;
  margin: 0 auto;
  font-style: italic;
  color: #666;
  vertical-align: middle;
}
img[width] {
  width: auto !important;
}
img[height] {
  height: auto !important;
}

img,
audio,
canvas,
embed,
object,
video {
  max-width: 100%;
}

.flexible {
  position: relative;
  overflow: hidden;
  margin: 0 0 1em;
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  padding-top: 25px;
  height: 0;
}
.flexible iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/**
 * Title: Typography
 * Description: Base typography styles dealing with Vertical Rhythm and Hierarchy
 * Sections:
 *    $. Vertical Rhythm
 *    $. Headings and Common Styles
 */
/* $. Vertical Rhythm
\*----------------------------------------------------------------*/
h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
  margin-bottom: 1em;
  line-height: 1.2;
  font-family: "chaparral-pro-n3", "chaparral-pro", Georgia, serif;
  font-weight: 300;
  font-style: normal;
}

blockquote, pre, p, ul, ol, dl, hr {
  margin-top: 0;
}

p, ul, ol, dl, hr, form, table, blockquote, pre {
  margin-bottom: 1em;
}

ul > :last-child,
ol > :last-child,
dl > :last-child,
blockquote > :last-child {
  margin-bottom: 0;
}

/* $. Headings and Common Styles
\*----------------------------------------------------------------*/
h1, .alpha {
  font-size: 3rem;
}

h2, .beta {
  font-size: 2.5rem;
}

h3, .gamma {
  font-size: 2rem;
}

h4, .delta {
  font-size: 1.25rem;
}

h5, .epsilon {
  font-size: 1rem;
}

h6, .zeta {
  font-size: 0.875rem;
}

.intro {
  font-size: 1.25em;
}

.headline {
  border-bottom: 1px solid rgb(229.5, 229.5, 229.5);
  padding-bottom: 0.45em;
}

.heading--rule {
  border-bottom: 1px solid #eee;
  text-transform: uppercase;
  font-size: 1.5rem;
  font-family: "effra-n4", "effra", sans-serif;
  font-weight: 400;
  font-style: normal;
  padding: 0 0 10px;
}

.type--pull-quote {
  color: #444444;
  border-left: 1px solid #444444;
  padding: 0 0 0 1em;
  font-family: "chaparral-pro-n4", "chaparral-pro", Georgia, serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1.125rem;
}
@media screen and (min-width: 30em) {
  .type--pull-quote {
    font-size: 1.375rem;
  }
}
@media screen and (min-width: 37.5em) {
  .type--pull-quote {
    font-size: 1.625rem;
  }
}
@media screen and (min-width: 48em) {
  .type--pull-quote {
    font-size: 1.875rem;
  }
}
@media screen and (min-width: 55em) {
  .type--pull-quote {
    font-size: 1.0625rem;
  }
}
@media screen and (min-width: 62em) {
  .type--pull-quote {
    font-size: 1.3125rem;
  }
}
@media screen and (min-width: 70em) {
  .type--pull-quote {
    font-size: 1.4375rem;
  }
}
@media screen and (min-width: 80em) {
  .type--pull-quote {
    font-size: 1.75rem;
  }
}

.type--large-first-child p:first-child {
  font-size: 1.75rem;
}

/**
 * Title:
 *    Lists
 * Description:
 *    Styling of <ul>, <ol>, <dl> and its children
 * Sections:
 *    $. Basics
 *    $. Your Styles
 */
/* $. Lists
\*----------------------------------------------------------------*/
ul, ol {
  margin-left: 2em;
  padding-left: 0;
}
ul ul, ul ol, ol ul, ol ol {
  margin-top: 0.5em;
  margin-bottom: 0;
}

li {
  margin-bottom: 0.5em;
}

dt {
  font-weight: bold;
}

dd {
  margin-left: 0;
  margin-bottom: 0.5em;
  font-style: italic;
}

/* $. Your Styles
\*----------------------------------------------------------------*/
/**
 * Title:
 *    Forms
 * Description:
 *    Styling of forms and form variations
 * Sections:
 *    $. Basics
 *    $. Placeholders
 */
/* $. Basics
\*----------------------------------------------------------------*/
form {
  margin: 0 0 1.5em 0;
}

fieldset {
  margin-bottom: 1.5em;
  padding: 0 1em;
}
fieldset:last-child {
  margin-top: 0;
}

legend {
  font-size: 1.25em;
  margin-bottom: 1em;
  padding: 0 1em;
}

label {
  display: block;
  padding-bottom: 0.25em;
}

input[type=checkbox],
input[type=radio] {
  vertical-align: baseline;
  background: none;
  border: none;
  height: 0.8em;
  width: 0.8em;
}

input,
select,
textarea,
.select {
  width: 100%;
  padding: 0.5em;
  border: 1px solid;
  border-radius: 0;
  color: #666;
  background-color: #FFF;
  border-color: #CCC;
  box-shadow: none !important;
}

textarea {
  resize: vertical;
}

form ul,
form ol {
  list-style: none;
  margin-left: 0;
  margin-bottom: 1em;
}

form li {
  margin-bottom: 0.5em;
}

form li:last-child,
fieldset:last-child {
  margin-bottom: 0;
}

/* $. Placeholders
\*----------------------------------------------------------------*/
::-webkit-input-placeholder {
  font-style: italic;
}

:-moz-placeholder {
  font-style: italic;
}

::-moz-placeholder {
  font-style: italic;
}

:-ms-input-placeholder {
  font-style: italic;
}

/* $. Custom Select
\*----------------------------------------------------------------*/
.select {
  position: relative;
  display: block;
  line-height: normal;
}
.select[class*=icon--] {
  background-position: 98% center;
}

/**
 * Title:
 *    Tables
 * Description:
 *    Styling of tables and their variations
 * Sections:
 *    $. Basics
 *    $. Your Styles
 */
/* $. Basics
\*----------------------------------------------------------------*/
table {
  width: 100%;
  border: 1px solid #f6f7f6;
}

td, th, caption {
  padding: 0.5em;
  border: none;
  vertical-align: top;
}

tr:nth-child(odd) td {
  background: #f6f7f6;
}

th, caption {
  font-weight: bold;
  background: #dbdfdb;
}

caption {
  background: rgb(212.25, 217, 212.25);
}

/* $. Your Styles
\*----------------------------------------------------------------*/
.table--hovered tr:hover td {
  background: rgb(225.75, 229, 225.75);
}

/* $. Modules - Global objects i.e. .btn, .island, etc
\*----------------------------------------------------------------*/
/**
 * Title:
 *    Button Module
 * Description:
 *    The .btn module and its extensions
 * Sections:
 *    $. Setup
 *    $. Component
 *    $. Modifications
 */
/* $. Setup
\*----------------------------------------------------------------*/
button,
input[type=button],
input[type=submit],
.btn,
.faq__title a {
  display: inline-block;
  padding: 0.5em 1em;
  border: 0;
  transition: background 0.15s ease-out;
  font-family: "effra-n3", "effra", sans-serif;
  font-weight: 300;
  font-style: normal;
}

/* $. Component
\*----------------------------------------------------------------*/
/* $. Colour
\*----------------------------------------------------------------*/
.btn--green {
  color: #FFFFFF;
  background: #0BB4B1;
}
.btn--green:focus, .btn--green:active, .btn--green:hover {
  color: #FFFFFF;
  background: rgb(8.0628272251, 131.9371727749, 129.7382198953);
}

.btn--dark-green {
  color: #FFFFFF;
  background: #409F98;
}
.btn--dark-green:focus, .btn--dark-green:active, .btn--dark-green:hover {
  color: #FFFFFF;
  background: rgb(49.3632286996, 122.6367713004, 117.2376681614);
}

.btn--orange {
  color: #FFFFFF;
  background: rgb(237.6381578947, 164.1842105263, 18.6118421053);
}
.btn--orange:focus, .btn--orange:active, .btn--orange:hover {
  color: #FFFFFF;
  background: rgb(191.2065789474, 131.7921052632, 14.0434210526);
}

.btn--grey {
  color: #FFFFFF;
  background: #444444;
}
.btn--grey:focus, .btn--grey:active, .btn--grey:hover {
  color: #FFFFFF;
  background: rgb(42.5, 42.5, 42.5);
}

.btn--white, .faq__title a {
  background-color: #FFFFFF;
  color: #409F98;
}
.btn--white:focus, .faq__title a:focus, .btn--white:active, .faq__title a:active, .btn--white:hover, .faq__title a:hover {
  background-color: #409F98;
  color: #FFFFFF;
}

.btn--border, .faq__title a {
  border-style: solid;
  border-width: 1px;
}
.btn--border.btn--white, .faq__title a {
  border-color: #409F98;
}

/* $. Varients
\*----------------------------------------------------------------*/
.btn--center,
.btn--centre,
.faq__title a {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.btn--double-pad {
  padding: 1em 2em;
}

.btn--uppercase, .faq__title a {
  text-transform: uppercase;
}

.btn--bold, .faq__title a {
  font-family: "effra-n4", "effra", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.btn--full, .faq__title a {
  display: block;
  width: 100%;
}

.btn--max {
  display: block;
  max-width: 420px;
}

.btn--top {
  margin-top: 0.6666666667em;
}

.btn--bottom {
  margin-bottom: 0.6666666667em;
}

.btn--stick-to-bottom {
  position: absolute;
  bottom: 1px;
  left: 0;
  right: 0;
  margin: 0 auto;
  max-width: 220px;
  width: 220px;
}

/* $. Size
\*----------------------------------------------------------------*/
.btn--small {
  font-size: 0.875rem;
}

.btn--medium {
  font-size: 1.25rem;
}

.btn--large {
  font-size: 1.5rem;
}

.btn--x-large {
  font-size: 1.75rem;
  font-family: "effra-n3", "effra", sans-serif;
  font-weight: 300;
  font-style: normal;
  padding: 1em;
}

/* $. Icon
\*----------------------------------------------------------------*/
.btn--icon {
  padding: 0.3333333333em;
  border: 0;
}
.btn--icon i {
  width: 32px;
  height: 32px;
  display: block;
  background-size: 90% auto;
  background-position: center;
}

.cms-area--max {
  max-width: 900px;
  margin-bottom: 1.5em;
}

.cms-area a.btn, .cms-area .faq__title a, .faq__title .cms-area a {
  margin-bottom: 1em;
}
.cms-area a:not(.btn) {
  color: #0BB4B1;
  text-decoration: none;
  position: relative;
}
.cms-area a:not(.btn):after {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  left: 0;
  border-bottom: 1px solid #0BB4B1;
}
.cms-area a:not(.btn):focus, .cms-area a:not(.btn):active, .cms-area a:not(.btn):hover {
  color: rgb(9.5314136126, 155.9685863874, 153.3691099476);
}
.cms-area a:not(.btn):focus:after, .cms-area a:not(.btn):active:after, .cms-area a:not(.btn):hover:after {
  border-bottom-color: rgb(9.5314136126, 155.9685863874, 153.3691099476);
}
.cms-area h1,
.cms-area h2,
.cms-area h3,
.cms-area h4,
.cms-area h5 {
  font-family: "effra-n3", "effra", sans-serif;
  font-weight: 300;
  font-style: normal;
  margin: 0.25em 0 0.4em;
}
.cms-area h1,
.cms-area h2 {
  font-size: 1.375rem;
  font-family: "chaparral-pro-n4", "chaparral-pro", Georgia, serif;
  font-weight: 400;
  font-style: normal;
}
@media screen and (min-width: 37.5em) {
  .cms-area h1,
  .cms-area h2 {
    font-size: 1.625rem;
  }
}
@media screen and (min-width: 48em) {
  .cms-area h1,
  .cms-area h2 {
    font-size: 1.875rem;
  }
}
@media screen and (min-width: 55em) {
  .cms-area h1,
  .cms-area h2 {
    font-size: 2.125rem;
  }
}
@media screen and (min-width: 62em) {
  .cms-area h1,
  .cms-area h2 {
    font-size: 2.375rem;
  }
}
.cms-area h3 {
  font-family: "chaparral-pro-n4", "chaparral-pro", Georgia, serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1.375rem;
}
@media screen and (min-width: 37.5em) {
  .cms-area h3 {
    font-size: 1.5rem;
  }
}
@media screen and (min-width: 48em) {
  .cms-area h3 {
    font-size: 1.625rem;
  }
}
@media screen and (min-width: 55em) {
  .cms-area h3 {
    font-size: 1.75rem;
  }
}
@media screen and (min-width: 62em) {
  .cms-area h3 {
    font-size: 1.875rem;
  }
}
.cms-area h4 {
  font-family: "effra-n4", "effra", sans-serif;
  font-weight: 400;
  font-style: normal;
  text-transform: uppercase;
  padding-bottom: 0.2em;
  margin-bottom: 0.5em;
  border-bottom: 1px solid rgb(184.875, 184.875, 184.875);
  font-size: 1.125rem;
}
@media screen and (min-width: 37.5em) {
  .cms-area h4 {
    font-size: 1.375rem;
  }
}
@media screen and (min-width: 55em) {
  .cms-area h4 {
    font-size: 1.5rem;
  }
}
.cms-area h5 {
  font-size: 0.875rem;
}
@media screen and (min-width: 37.5em) {
  .cms-area h5 {
    font-size: 1rem;
  }
}
@media screen and (min-width: 55em) {
  .cms-area h5 {
    font-size: 1.25rem;
  }
}
.cms-area .strapline {
  margin-bottom: 0.8888888889em;
  font-size: 1.125rem;
}
@media screen and (min-width: 37.5em) {
  .cms-area .strapline {
    font-size: 1.25rem;
  }
}
@media screen and (min-width: 48em) {
  .cms-area .strapline {
    font-size: 1.5625rem;
  }
}
@media screen and (min-width: 70em) {
  .cms-area .strapline {
    font-size: 1.75rem;
  }
}
.cms-area strong {
  font-family: "effra-n4", "effra", sans-serif;
  font-weight: 400;
  font-style: normal;
}
.cms-area p img {
  margin-bottom: 1.25em;
}
.cms-area p,
.cms-area ul,
.cms-area ol {
  font-family: "effra-n3", "effra", sans-serif;
  font-weight: 300;
  font-style: normal;
  margin-bottom: 1.25em;
  line-height: 1.5;
  font-size: 1.0625rem;
}
@media screen and (min-width: 37.5em) {
  .cms-area p,
  .cms-area ul,
  .cms-area ol {
    font-size: 1.1875rem;
  }
}
@media screen and (min-width: 48em) {
  .cms-area p,
  .cms-area ul,
  .cms-area ol {
    font-size: 1.3125rem;
  }
}
@media screen and (min-width: 55em) {
  .cms-area p,
  .cms-area ul,
  .cms-area ol {
    font-size: 1.4375rem;
  }
}
.cms-area ul li,
.cms-area ol li {
  margin-bottom: 0.25em;
}
.cms-area ul li:last-child,
.cms-area ol li:last-child {
  margin-bottom: 0;
}
.cms-area ul:not(.grid) {
  margin-left: 1em;
}
.cms-area ul:not(.grid) li {
  list-style: outside disc;
  position: relative;
}
.cms-area ol:not(.grid) {
  margin-left: 2em;
}
.cms-area form ul,
.cms-area form ol {
  list-style: none;
  margin: 0;
}
.cms-area form ul li,
.cms-area form ol li {
  padding-left: 0;
}
.cms-area form ul li:before,
.cms-area form ol li:before {
  content: "";
}
.cms-area .tick-list,
.cms-area .cross-list {
  list-style-type: none;
}
.cms-area .tick-list li,
.cms-area .cross-list li {
  list-style: none;
  background-repeat: no-repeat;
  padding-left: 1.5em;
  background-size: 1em;
  background-position: 0 2px;
}
.cms-area .tick-list li:before,
.cms-area .cross-list li:before {
  content: "";
}
.cms-area .tick-list li {
  background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2217%22%20height%3D%2221%22%20viewBox%3D%22289.1%20410.4%2017%2021%22%20enable-background%3D%22new%20289.1%20410.4%2017%2021%22%3E%3Cpath%20fill%3D%22%2385B227%22%20d%3D%22M305.8%20414.6c0%20.9-.3%201.6-1.1%202.3l-.1.1-6.4%206.8c-1.4%201.4-2.6%202.6-3.5%203.3-1%20.7-1.6%201.2-2%201.2s-1-.2-1.6-.6c-.6-.4-1.1-.7-1.2-1.2-.1-.3-.3-1.1-.4-2.2-.1-1.2-.2-2.3-.2-3.6%200-.6.3-1.4.9-1.9.6-.6%201.3-1%202-1%20.6%200%201.1.6%201.3%201.9%200%20.1%200%20.2%200%20.3.1%201%20.2%201.6.4%202%20.1.4.3.5.6.5.1%200%20.3-.1.5-.3.3-.2.6-.5%201.1-1l6.6-6.5c.5-.5%201.1-1%201.5-1.3.4-.3.9-.4%201.1-.4.2%200%20.4.1.5.2.1.2.1.4.1.9v.4h-.1z%22%2F%3E%3C%2Fsvg%3E");
}
.cms-area .cross-list li {
  background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2212%22%20height%3D%2221%22%20viewBox%3D%22291.6%20410.4%2012%2021%22%20enable-background%3D%22new%20291.6%20410.4%2012%2021%22%3E%3Cpath%20fill%3D%22%23E73433%22%20d%3D%22M303.6%20414.1c-.7.9-1.3%201.8-2.1%202.7-.7.9-1.3%201.8-2%202.6.3.7.7%201.5%201%202.3.3.8.7%201.7%201.1%202.5l-.3.2v.2c-.1.1-.1.1-.2.2s-.1.1-.2.1l.1.4c-.1.1-.2.2-.3.3-.1.1-.2.1-.4.2-.1%200-.4-.3-.9-1-.4-.6-1-1.7-1.9-2.9-.7%201-1.5%202-2.1%203.1s-1.3%202.2-2%203.2c-.2.1-.3.1-.5.2%200%200-.2%200-.4%200h-.1c-.2-.2-.3-.4-.5-.6-.1-.2-.2-.4-.2-.5%200-.1%200-.1%200-.2s0-.2.1-.3l-.1-.3c.2-.6.7-1.5%201.6-2.6s1.9-2.5%203.2-4.2c-.3-.8-.5-1.6-.8-2.3s-.6-1.7-.9-2.7c.1-.2.2-.3.3-.4.1-.1.2-.2.3-.2.1%200%20.1%200%20.2%200s.1.1.2.1l.1-.1c.1%200%20.1%200%20.2%200h.1c0-.1.1-.1.1-.2%200%20.1%200%200%20.1%200%20.2%200%20.5.5%201.1%201.8.3.7.6%201.2.8%201.8.4-.4.9-1%201.6-1.8%201.1-1.6%201.9-2.3%202-2.3.1%200%20.2%200%20.3.1.1.1.2.2.4.3l.4-.4c.1.1.2.2.3.4.2.2.3.2.3.3z%22%2F%3E%3C%2Fsvg%3E");
}
.cms-area .wp-caption,
.cms-area .wp-blockquote,
.cms-area img {
  margin-bottom: 1em;
}
.cms-area .wp-caption {
  width: auto !important;
  margin-top: 0;
  padding: 0.5em;
}
.cms-area .wp-caption img {
  margin-bottom: 0.5em;
}
.cms-area .wp-caption-text {
  padding-bottom: 0.3333333333em;
  border-bottom: 4px solid #0BB4B1;
  font-size: 0.875rem;
}
@media screen and (min-width: 37.5em) {
  .cms-area .wp-caption-text {
    font-size: 1rem;
  }
}
@media screen and (min-width: 48em) {
  .cms-area .wp-caption-text {
    font-size: 1.125rem;
  }
}
@media screen and (min-width: 70em) {
  .cms-area .wp-caption-text {
    font-size: 1.25rem;
  }
}
.cms-area .alignleft,
.cms-area .alignright {
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 48em) {
  .cms-area .alignleft,
  .cms-area .alignright {
    max-width: 50%;
  }
  .cms-area .alignleft {
    float: left;
    margin-right: 2em;
  }
  .cms-area .alignright {
    float: right;
    margin-left: 2em;
  }
}
.cms-area code {
  font-size: 16px !important;
  display: block;
  padding: 0.6666666667em;
  background-color: #444444;
  color: #FFFFFF;
  margin-bottom: 1em;
  position: relative;
  margin-top: 3.5em;
}
.cms-area code:before {
  display: block;
  content: "code:";
  color: #444444;
  position: absolute;
  left: 0;
  font-family: "effra-n4", "effra", sans-serif;
  font-weight: 400;
  font-style: normal;
  top: -1.5em;
}
.cms-area .mwm-aal-container {
  display: block;
  margin-right: auto;
}
.cms-area .mwm-aal-container ol {
  list-style: none;
}
.cms-area .mwm-aal-container a:not(.btn) {
  text-decoration: none;
  display: inline-block;
  color: #FFFFFF;
}
.cms-area .mwm-aal-container a:not(.btn):after {
  content: "";
  display: block;
  width: 100%;
  border-bottom-color: #FFFFFF;
}
.cms-area .mwm-aal-container a:not(.btn):focus:after, .cms-area .mwm-aal-container a:not(.btn):active:after, .cms-area .mwm-aal-container a:not(.btn):hover:after {
  border-bottom-color: #FFFFFF;
}
.cms-area .mwm-aal-container ul,
.cms-area .mwm-aal-container ol {
  margin-bottom: 0;
  margin-left: 0;
  line-height: 1.25;
  font-size: 0.875rem;
}
@media screen and (min-width: 37.5em) {
  .cms-area .mwm-aal-container ul,
  .cms-area .mwm-aal-container ol {
    font-size: 1rem;
  }
}
@media screen and (min-width: 48em) {
  .cms-area .mwm-aal-container ul,
  .cms-area .mwm-aal-container ol {
    font-size: 1.125rem;
  }
}
@media screen and (min-width: 70em) {
  .cms-area .mwm-aal-container ul,
  .cms-area .mwm-aal-container ol {
    font-size: 1.25rem;
  }
}
.cms-area .mwm-aal-container ul li,
.cms-area .mwm-aal-container ol li {
  margin-bottom: 0.25em;
}
.cms-area .mwm-aal-container ul li:last-child,
.cms-area .mwm-aal-container ol li:last-child {
  margin-bottom: 0;
}
.cms-area .mwm-aal-title {
  font-size: 1.375rem;
  margin-bottom: 0.2em;
  text-transform: uppercase;
  font-family: "effra-n4", "effra", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.blockquote {
  margin: 2em 0;
  padding: 0;
}
@media screen and (min-width: 48em) {
  .blockquote {
    margin: 4em 0;
  }
}
.blockquote p {
  font-family: "effra-n3", "effra", sans-serif;
  font-weight: 300;
  font-style: normal;
  color: #409F98;
  line-height: 1.3;
  margin: 0 0 0.3333333333em;
  max-width: 880px;
  font-size: 1.25rem;
}
@media screen and (min-width: 37.5em) {
  .blockquote p {
    font-size: 1.375rem;
  }
}
@media screen and (min-width: 55em) {
  .blockquote p {
    font-size: 1.5rem;
  }
}
@media screen and (min-width: 70em) {
  .blockquote p {
    font-size: 1.75rem;
  }
}
@media screen and (min-width: 90em) {
  .blockquote p {
    font-size: 2rem;
  }
}
.blockquote cite {
  font-size: 1rem;
  margin-top: 1em;
}
@media screen and (min-width: 37.5em) {
  .blockquote cite {
    font-size: 1.0625rem;
  }
}
@media screen and (min-width: 55em) {
  .blockquote cite {
    font-size: 1.125rem;
  }
}
@media screen and (min-width: 70em) {
  .blockquote cite {
    font-size: 1.1875rem;
  }
}
@media screen and (min-width: 90em) {
  .blockquote cite {
    font-size: 1.25rem;
  }
}
.blockquote strong {
  font-family: "effra-n4", "effra", sans-serif;
  font-weight: 400;
  font-style: normal;
}
.blockquote strong,
.blockquote em {
  line-height: 1.3;
  font-weight: 400;
  display: block;
  font-style: normal;
}
.blockquote em {
  color: #444444;
}

.blockquote--left {
  border-left: 2px solid #409F98;
  padding-left: 1em;
  text-align: left;
}
@media screen and (min-width: 48em) {
  .blockquote--left {
    margin-left: -2em;
  }
}
@media screen and (min-width: 55em) {
  .blockquote--left {
    margin-left: -4em;
  }
}

.blockquote--right {
  border-right: 2px solid #409F98;
  padding-right: 1em;
  text-align: right;
}
@media screen and (min-width: 48em) {
  .blockquote--right {
    margin-right: -2em;
  }
}
@media screen and (min-width: 55em) {
  .blockquote--right {
    margin-right: -4em;
  }
}

.adr strong,
.adr span {
  display: block;
}

p.strapline {
  font-size: 1.125rem;
  line-height: 1.4;
}
@media screen and (min-width: 37.5em) {
  p.strapline {
    font-size: 1.25rem;
  }
}
@media screen and (min-width: 48em) {
  p.strapline {
    font-size: 1.5rem;
  }
}
@media screen and (min-width: 55em) {
  p.strapline {
    font-size: 1.75rem;
  }
}

/**
 * Title:
 *    Media Module - http://goo.gl/Xf6MJ
 * Description:
 *    The .media module and its extensions
 * Sections:
 *    $. Setup
 *    $. Component
 *    $. Modifications
 */
/* $. Setup
\*----------------------------------------------------------------*/
/* $. Component
\*----------------------------------------------------------------*/
.media {
  margin-bottom: 1em;
}

.media__body:last-child {
  margin-bottom: 0;
}
@media screen and (min-width: 37.5em) {
  .media__body {
    overflow: hidden;
  }
}

.media__img {
  margin-bottom: 1em;
}
@media screen and (min-width: 37.5em) {
  .media__img {
    float: left;
    margin-bottom: 0;
    margin-right: 2em;
  }
}

/* $. Modifications
\*----------------------------------------------------------------*/
@media screen and (min-width: 37.5em) {
  .media--flipped .media__img {
    float: right;
    margin-left: 2em;
    margin-right: 0;
  }
}

/**
 * Title:
 *    Island Module - http://goo.gl/1XYHG
 * Description:
 *    The .island module and its extensions
 * Sections:
 *    $. Setup
 *    $. Component
 *    $. Modifications
 */
/* $. Setup
\*----------------------------------------------------------------*/
.island, .cms-area .mwm-aal-container {
  padding: 1.5em;
  margin-bottom: 1.5em;
}
.island > :last-child, .cms-area .mwm-aal-container > :last-child {
  margin-bottom: 0;
}

/* $. Component
\*----------------------------------------------------------------*/
.cms-area .island ul, .cms-area .mwm-aal-container ul {
  margin-left: 0;
}
.cms-area .island p:last-child, .cms-area .mwm-aal-container p:last-child,
.cms-area .island ul:last-child,
.cms-area .mwm-aal-container ul:last-child,
.cms-area .island ol:last-child,
.cms-area .mwm-aal-container ol:last-child {
  margin-bottom: 0;
}
.cms-area .island h1, .cms-area .mwm-aal-container h1,
.cms-area .island h2,
.cms-area .mwm-aal-container h2,
.cms-area .island h3,
.cms-area .mwm-aal-container h3 {
  text-transform: uppercase;
  font-family: "effra-n4", "effra", sans-serif;
  font-weight: 400;
  font-style: normal;
  margin-bottom: 0.5em;
}
.cms-area .island .flexible, .cms-area .mwm-aal-container .flexible {
  margin-bottom: 0;
}

/* $. Colour
\*----------------------------------------------------------------*/
.island--green {
  background-color: #0BB4B1;
  color: #FFFFFF;
}
.cms-area .island--green a:not(.btn),
.island--green a {
  color: #FFFFFF;
}
.cms-area .island--green a:not(.btn):after,
.island--green a:after {
  border-bottom-color: #FFFFFF;
}
.cms-area .island--green a:not(.btn):focus, .cms-area .island--green a:not(.btn):active, .cms-area .island--green a:not(.btn):hover,
.island--green a:focus,
.island--green a:active,
.island--green a:hover {
  color: rgb(242.25, 242.25, 242.25);
}
.cms-area .island--green a:not(.btn):focus:after, .cms-area .island--green a:not(.btn):active:after, .cms-area .island--green a:not(.btn):hover:after,
.island--green a:focus:after,
.island--green a:active:after,
.island--green a:hover:after {
  border-bottom-color: rgb(242.25, 242.25, 242.25);
}

.island--dark-green, .cms-area .mwm-aal-container {
  background-color: #409F98;
  color: #FFFFFF;
}
.cms-area .island--dark-green a:not(.btn),
.island--dark-green a,
.cms-area .mwm-aal-container a {
  color: #FFFFFF;
}
.cms-area .island--dark-green a:not(.btn):after,
.island--dark-green a:after,
.cms-area .mwm-aal-container a:after {
  border-bottom-color: #FFFFFF;
}
.cms-area .island--dark-green a:not(.btn):focus, .cms-area .island--dark-green a:not(.btn):active, .cms-area .island--dark-green a:not(.btn):hover,
.island--dark-green a:focus,
.cms-area .mwm-aal-container a:focus,
.island--dark-green a:active,
.cms-area .mwm-aal-container a:active,
.island--dark-green a:hover,
.cms-area .mwm-aal-container a:hover {
  color: rgb(242.25, 242.25, 242.25);
}
.cms-area .island--dark-green a:not(.btn):focus:after, .cms-area .island--dark-green a:not(.btn):active:after, .cms-area .island--dark-green a:not(.btn):hover:after,
.island--dark-green a:focus:after,
.cms-area .mwm-aal-container a:focus:after,
.island--dark-green a:active:after,
.cms-area .mwm-aal-container a:active:after,
.island--dark-green a:hover:after,
.cms-area .mwm-aal-container a:hover:after {
  border-bottom-color: rgb(242.25, 242.25, 242.25);
}

.island--grey {
  background-color: #999999;
  color: #FFFFFF;
}
.cms-area .island--grey a:not(.btn),
.island--grey a {
  color: #FFFFFF;
}
.cms-area .island--grey a:not(.btn):after,
.island--grey a:after {
  border-bottom-color: #FFFFFF;
}
.cms-area .island--grey a:not(.btn):focus, .cms-area .island--grey a:not(.btn):active, .cms-area .island--grey a:not(.btn):hover,
.island--grey a:focus,
.island--grey a:active,
.island--grey a:hover {
  color: rgb(242.25, 242.25, 242.25);
}
.cms-area .island--grey a:not(.btn):focus:after, .cms-area .island--grey a:not(.btn):active:after, .cms-area .island--grey a:not(.btn):hover:after,
.island--grey a:focus:after,
.island--grey a:active:after,
.island--grey a:hover:after {
  border-bottom-color: rgb(242.25, 242.25, 242.25);
}

.island--orange {
  background-color: rgb(237.6381578947, 164.1842105263, 18.6118421053);
  color: #FFFFFF;
}
.cms-area .island--orange a:not(.btn),
.island--orange a {
  color: #FFFFFF;
}
.cms-area .island--orange a:not(.btn):after,
.island--orange a:after {
  border-bottom-color: #FFFFFF;
}
.cms-area .island--orange a:not(.btn):focus, .cms-area .island--orange a:not(.btn):active, .cms-area .island--orange a:not(.btn):hover,
.island--orange a:focus,
.island--orange a:active,
.island--orange a:hover {
  color: rgb(242.25, 242.25, 242.25);
}
.cms-area .island--orange a:not(.btn):focus:after, .cms-area .island--orange a:not(.btn):active:after, .cms-area .island--orange a:not(.btn):hover:after,
.island--orange a:focus:after,
.island--orange a:active:after,
.island--orange a:hover:after {
  border-bottom-color: rgb(242.25, 242.25, 242.25);
}

/**
 * Title:
 *    Navigation Module
 * Description:
 *    The .nav module and its extensions
 * Sections:
 *    $. Setup
 *    $. Component
 *    $. Modifications
 */
/* $. Setup
\*----------------------------------------------------------------*/
/* $. Component
\*----------------------------------------------------------------*/
.nav .is-current {
  font-family: "effra-n7", "effra", sans-serif;
  font-weight: 700;
  font-style: normal;
}

/* $. Modifications
\*----------------------------------------------------------------*/
/**
 * Title:
 *    Breadcrumbs
 * Description:
 *    The .breadcrumbs module and its extensions
 */
.breadcrumb {
  color: #999999;
  line-height: 1.5;
  margin: 0;
  font-size: 0.875rem;
  padding: 1.5em 0 0.6666666667em;
}
.breadcrumb li {
  display: inline;
}
.breadcrumb li:after {
  content: "–";
  display: inline;
  padding: 0 5px 0 6px;
}
.breadcrumb li:last-child:after {
  content: "";
}
.breadcrumb a {
  color: #444444;
  display: inline-block;
  position: relative;
  line-height: 1.25;
}
.breadcrumb a:after {
  content: "";
  display: block;
  position: absolute;
  bottom: 1px;
  left: 0;
  width: 100%;
  border-bottom: 1px solid #444444;
}
.breadcrumb a:focus, .breadcrumb a:active, .breadcrumb a:hover {
  color: #111111;
}
.breadcrumb a:focus:after, .breadcrumb a:active:after, .breadcrumb a:hover:after {
  border-bottom-color: #111111;
}
@media screen and (min-width: 48em) {
  .breadcrumb {
    font-size: 1rem;
    padding: 2em 0 1em;
  }
}
@media screen and (min-width: 70em) {
  .breadcrumb {
    font-size: 1.125rem;
  }
}

.side {
  margin-top: 2em;
}
@media screen and (min-width: 70em) {
  .side {
    margin-top: 0;
  }
}

.sidebar {
  padding: 1em;
  margin-bottom: 1em;
}

.sidebar--links {
  margin-top: 2em;
}
@media screen and (min-width: 37.5em) {
  .sidebar--links {
    margin-top: 0;
  }
}

.sidebar--centre,
.sidebar--center {
  text-align: center;
}

.sidebar--flush {
  padding: 0;
}

.sidebar--bordered {
  border-left: 1px solid #444444;
  padding: 0 0 0 2em;
}

.sidebar--green {
  background-color: #0BB4B1;
  color: #FFFFFF;
}
.sidebar--green a {
  color: #FFFFFF;
}

.sidebar__title {
  margin-bottom: 0.25em;
  font-weight: 100;
  font-size: 2rem;
  line-height: 1;
}

.sidebar__title--flush {
  margin-bottom: 0;
}

.sidebar__title--bottom {
  margin-bottom: 0.5em;
}

.sidebar__links {
  margin: 0;
}

.sidebar__links {
  font-size: 1.375rem;
  font-family: "effra-n3", "effra", sans-serif;
  font-weight: 300;
  font-style: normal;
}
.sidebar__links li {
  margin-bottom: 0.25em;
}
.sidebar__links li:last-child {
  margin-bottom: 0;
}
.sidebar__links .is-current a {
  color: #444444;
  box-shadow: none !important;
}
.sidebar__links .is-current a:focus, .sidebar__links .is-current a:active, .sidebar__links .is-current a:hover {
  color: #444444;
}

.sidebar__icon {
  display: block;
  width: 75px;
  height: 75px;
  background-size: 100% auto;
  background-position: center;
  margin: 0.5em auto 0.5em;
}

.sidebar__text {
  font-family: "effra-n3", "effra", sans-serif;
  font-weight: 300;
  font-style: normal;
  line-height: 1.4;
  margin-bottom: 0.5em;
}

.js-map {
  width: 100%;
  height: 0;
  margin: 0;
  padding: 0 0 75%;
  background: #e5e3df;
}
@media screen and (min-width: 48em) {
  .js-map {
    padding: 0 0 37%;
  }
}
.js-map img {
  max-width: inherit !important;
}
.js-map .marker {
  display: none;
}

/* $. Interface - Project specific objects i.e. .work, .product, etc
\*----------------------------------------------------------------*/
/**
 * Title:
 *    Page
 * Description:
 *    Styles for Pages (and page elements)
 */
.page {
  overflow: hidden;
}

.page__head {
  background-color: #F7F8F7;
  padding: 2em 0;
}
@media screen and (min-width: 37.5em) {
  .page__head {
    padding: 2.25em 0;
  }
}
@media screen and (min-width: 48em) {
  .page__head {
    padding: 2.5em 0;
  }
}
@media screen and (min-width: 55em) {
  .page__head {
    padding: 2.75em 0;
  }
}

.page__title {
  margin: 0;
  font-size: 2rem;
}
@media screen and (min-width: 37.5em) {
  .page__title {
    font-size: 2.5rem;
  }
}
@media screen and (min-width: 55em) {
  .page__title {
    font-size: 3rem;
  }
}
@media screen and (min-width: 70em) {
  .page__title {
    font-size: 3.5rem;
  }
}

.page__title--with-excerpt {
  margin-bottom: 0.25em;
}

.page__excerpt {
  font-size: 1rem;
  max-width: 900px;
  line-height: 1.4;
  margin-bottom: 0;
}
@media screen and (min-width: 37.5em) {
  .page__excerpt {
    font-size: 1.25rem;
  }
}
@media screen and (min-width: 55em) {
  .page__excerpt {
    font-size: 1.5rem;
  }
}
@media screen and (min-width: 55em) {
  .page__excerpt {
    font-size: 1.75rem;
  }
}

.page__lower {
  padding-top: 3em;
}

.page__lower-content {
  padding: 2em 0;
  overflow: hidden;
}
@media screen and (min-width: 48em) {
  .page__lower-content {
    padding: 2em;
  }
}
@media screen and (min-width: 55em) {
  .page__lower-content {
    padding: 4em;
  }
}

.contact__title {
  font-family: "effra-n4", "effra", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1.5rem;
  margin: 0;
}

.contact__address {
  font-size: 1.375rem;
  margin-bottom: 0.5em;
}
.contact__address span {
  display: block;
}

.contact__links {
  margin: 0 0 1.5em;
  list-style: none;
  font-size: 1.375rem;
}
.contact__links li {
  margin-bottom: 0.25em;
}
.contact__links a i {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  background-size: 20px auto;
  background-position: center;
}

.subpage--max {
  margin: 0 auto;
  max-width: 950px;
}

/**
 * Title:
 *    Consultants
 * Description:
 *    Styles for Consultants
 */
.consultant--stack {
  margin-bottom: 4em;
}

.consultant__title {
  font-family: "chaparral-pro-n4", "chaparral-pro", Georgia, serif;
  font-weight: 400;
  font-style: normal;
  margin-bottom: 0.3333333333em;
  position: relative;
  display: inline-block;
  font-size: 1.5rem;
}
@media screen and (min-width: 37.5em) {
  .consultant__title {
    font-size: 1.75rem;
  }
}
@media screen and (min-width: 55em) {
  .consultant__title {
    font-size: 2rem;
  }
}
@media screen and (min-width: 70em) {
  .consultant__title {
    font-size: 2.25rem;
  }
}
.consultant__title a:after {
  content: "";
  display: block;
  position: absolute;
  bottom: 3px;
  left: 0;
  width: 100%;
  border-bottom: 1px solid #0BB4B1;
}
.consultant__title a:focus, .consultant__title a:active, .consultant__title a:hover {
  color: rgb(34.7264573991, 86.2735426009, 82.4753363229);
}
.consultant__title a:focus:after, .consultant__title a:active:after, .consultant__title a:hover:after {
  border-bottom-color: rgb(34.7264573991, 86.2735426009, 82.4753363229);
}

.consultant__image {
  margin: 0 auto 1.5em;
}

.consultant__info dt {
  display: none;
}
.consultant__info dd {
  font-style: normal;
  margin-bottom: 0;
}
.consultant__info a {
  font-size: 1.5rem;
}
.consultant__info a:after {
  display: none !important;
}
.consultant__info a i {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  background-size: 20px;
  background-position: center;
}

.consultant__info--inline {
  margin-bottom: 1em;
}
@media screen and (min-width: 37.5em) {
  .consultant__info--inline div {
    display: inline-block;
    margin-left: 1.5em;
  }
  .consultant__info--inline div:first-child {
    margin-left: 0;
  }
}

.consultant__specialities a {
  position: relative;
}

.faq {
  margin-bottom: 1em;
}

.faq__title {
  margin-bottom: 0;
  font-size: 1.5rem;
}
.faq__title a {
  font-family: "effra-n3", "effra", sans-serif;
  font-weight: 300;
  font-style: normal;
}
.faq__title a:active, .faq__title a:focus {
  color: #409F98;
  background: none;
}

.faq__content {
  display: none;
}

.no-js .faq__content {
  display: block;
}

.is-active .faq__title a {
  border-bottom: 0;
  background-color: #409F98;
  color: #FFFFFF;
}
.is-active .faq__content {
  display: block;
  padding: 0 1em 1em;
  border: 1px solid #409F98;
  border-top: 0;
  overflow: hidden;
}
.is-active .faq__content p:first-child {
  padding-top: 1em;
}
.is-active .faq__content p:last-child {
  margin-bottom: 0;
}

.story {
  margin-top: 2em;
  padding-top: 2em;
  border-top: 1px solid #D6D6D6;
}
.story .blockquote {
  margin-left: 0 !important;
  margin-right: 0 !important;
}
.story.story--first {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}
@media screen and (min-width: 70em) {
  .story {
    margin-top: 0;
    padding-top: 0;
    border-top: 0;
    margin-bottom: 2em;
  }
}

/**
 * Title:
 *    Location
 * Description:
 *    Styles for Location
 */
.location__address {
  color: white;
}

.location__telephone {
  color: white;
}

/**
 * Title:
 *    Hero Images
 * Sections:
 *    $. Hero
 *    $. Hero Grid
 */
/* $. Hero
\*----------------------------------------------------------------*/
@media screen and (min-width: 48em) {
  .hero h2,
  .hero p {
    max-width: 60%;
  }
}

.hero__overlay {
  display: block;
  width: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
.hero-grid__aside--0 .hero__overlay {
  background-color: rgba(237.6381578947, 164.1842105263, 18.6118421053, 0.66);
}
.hero-grid__aside--1 .hero__overlay {
  background-color: rgba(64, 159, 152, 0.66);
}

/* $. Hero Grid
\*----------------------------------------------------------------*/
.hero-grid__main {
  position: relative;
  overflow: hidden;
  margin-bottom: 2px;
}
@media screen and (min-width: 55em) {
  .hero-grid__main {
    margin: 0px;
  }
}
.hero-grid__main-text {
  background: #409F98;
  padding: 1em;
  margin: 40% 20px 20px;
  font-family: "chaparral-pro-n3", "chaparral-pro", Georgia, serif;
  font-weight: 300;
  font-style: normal;
}
@media screen and (min-width: 55em) {
  .hero-grid__main-text {
    margin: 0;
    position: absolute;
    bottom: 40px;
    right: 40px;
    left: 5%;
  }
}
.hero-grid__main-text p {
  margin: 0;
  color: #fff;
}
.hero-grid__aside {
  color: #fff;
  position: relative;
  padding: 40px;
  background-color: #fff;
}
.hero-grid__aside-alpha {
  margin: 0 auto;
  font-family: "chaparral-pro-n3", "chaparral-pro", Georgia, serif;
  font-weight: 300;
  font-style: normal;
}
.hero-grid__aside-beta {
  margin: 0 auto 1em;
  max-width: 350px;
}
.hero-grid__aside-button, .hero-grid__aside-alpha, .hero-grid__aside-beta {
  position: relative;
  z-index: 2;
}

.battenberg .battenberg__row {
  clear: both;
}
.battenberg .battenberg__row--alt .battenberg__image {
  float: none;
}
@media screen and (min-width: 48em) {
  .battenberg .battenberg__row--alt .battenberg__image {
    float: right;
  }
}
.battenberg--half .battenberg__image {
  height: 0;
  padding-bottom: 50%;
  display: block;
  width: auto;
  margin: 0 -5%;
}
@media screen and (min-width: 48em) {
  .battenberg--half .battenberg__image {
    position: absolute;
    top: 0;
    width: 50%;
    left: 0;
    padding: 0;
    margin: 0;
  }
}
.battenberg--half .battenberg__content {
  padding: 40px 20px;
}
@media screen and (min-width: 48em) {
  .battenberg--half .battenberg__content {
    padding: 50px;
  }
}
.battenberg--half .battenberg__row--alt .battenberg__image {
  left: auto;
  right: 0;
}
@media screen and (min-width: 48em) {
  .battenberg--half .battenberg__row--alt .battenberg__content {
    margin-left: -50%;
  }
}
.battenberg--overlapping .battenberg__image {
  padding-bottom: 100%;
}
@media screen and (min-width: 30em) {
  .battenberg--overlapping .battenberg__image {
    padding-bottom: 75%;
  }
}
@media screen and (min-width: 37.5em) {
  .battenberg--overlapping .battenberg__image {
    padding-bottom: 50%;
  }
}
@media screen and (min-width: 48em) {
  .battenberg--overlapping .battenberg__image {
    padding: 0;
  }
}

/**
 * Title:
 *    Gravity Forms
 */
.gform_fields {
  margin: 0;
  margin-left: 0 !important;
  padding: 0;
}

.gfield {
  list-style: none none outside !important;
  margin: 0;
  margin-bottom: 1em !important;
}

.gfield_label {
  font-family: "effra-n4", "effra", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.overlay-wrapper {
  position: relative;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.overlay-content {
  position: relative;
  z-index: 10;
}

/* $. Layout - Page based layouts i.e. .header, .page-86, etc
\*----------------------------------------------------------------*/
/**
 * Title:
 *    Header
 * Description:
 *    Styles for the header of the website
 */
.header {
  padding: 1em 0;
}
.header .wrap {
  position: relative;
}
@media screen and (min-width: 62em) {
  .header .wrap {
    padding-top: 4em;
  }
}
@media screen and (min-width: 62em) {
  .header {
    padding: 1em 0 1.5em;
  }
}
@media screen and (min-width: 80em) {
  .header {
    padding: 0.5em 0 2em;
  }
}

.header__logo {
  width: 230px;
  height: 25px;
  display: inline-block;
}
@media screen and (min-width: 30em) {
  .header__logo {
    width: 250px;
    height: 27px;
  }
}
@media screen and (min-width: 48em) {
  .header__logo {
    margin-top: 0.66em;
  }
}
@media screen and (min-width: 62em) {
  .header__logo {
    width: 275px;
    height: 30px;
    float: left;
    margin-top: -5px;
  }
}
@media screen and (min-width: 70em) {
  .header__logo {
    width: 300px;
    height: 32px;
  }
}
@media screen and (min-width: 80em) {
  .header__logo {
    width: 325px;
    height: 35px;
  }
}

@media screen and (min-width: 48em) {
  .header__upper {
    position: absolute;
    top: 0;
    right: 0;
  }
}

.header__telephone {
  color: #F2BB4E;
  font-size: 1.875rem;
  display: inline-block;
  margin-top: 0.25em;
}
.header__telephone i {
  content: "";
  display: inline-block;
  width: 25px;
  height: 25px;
}
.header__telephone:focus, .header__telephone:active, .header__telephone:hover {
  color: rgb(238.5105263158, 168.7473684211, 30.4894736842);
}
@media screen and (min-width: 30em) {
  .header__telephone {
    font-size: 2rem;
  }
}
@media screen and (min-width: 48em) {
  .header__telephone {
    margin-top: 0;
    display: table-cell;
    vertical-align: middle;
  }
}

.canvas--fixed {
  overflow-y: hidden;
}

.nav-container {
  position: fixed;
  top: 0;
  left: -100%;
  z-index: 20;
  width: 100%;
  height: 300%;
  background-color: #409F98;
  transition: left 0.2s ease-in-out;
  padding-top: 5em;
}
@media screen and (min-width: 47.99em) {
  .nav-container {
    background-color: transparent;
    width: 100%;
    top: auto;
    left: auto;
    height: auto;
    position: static;
    padding-top: 0;
  }
}

.nav-container--active {
  left: 0;
}

.menu-toggle {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 25;
  outline: none;
}
@media screen and (min-width: 47.99em) {
  .menu-toggle {
    display: none;
  }
}

.nav {
  margin: 0;
  text-align: left;
  text-transform: uppercase;
}
.nav a {
  display: inline-block;
  color: #FFFFFF;
}
.nav a:focus, .nav a:active, .nav a:hover {
  background-color: rgba(0, 0, 0, 0.125);
}
@media screen and (min-width: 47.99em) {
  .nav a:focus, .nav a:active, .nav a:hover {
    background-color: transparent;
  }
}
.nav .current_page_item a {
  background-color: rgba(0, 0, 0, 0.125);
}
@media screen and (min-width: 47.99em) {
  .nav .current_page_item a {
    background-color: transparent;
  }
}

.nav--primary,
.nav--secondary {
  font-size: 1.25rem;
}
.nav--primary .nav__home i,
.nav--secondary .nav__home i {
  display: none;
}
.nav--primary li,
.nav--secondary li {
  margin-bottom: 0;
}
.nav--primary a,
.nav--secondary a {
  display: block;
  padding: 0.5em 5%;
}

@media screen and (min-width: 47.99em) {
  .header__nav .nav--secondary {
    display: none;
  }
}

.header__upper .nav--secondary {
  display: none;
}
@media screen and (min-width: 47.99em) {
  .header__upper .nav--secondary {
    display: table-cell;
    vertical-align: middle;
    padding-right: 1em;
    text-align: left;
    font-size: 1rem;
  }
  .header__upper .nav--secondary li {
    display: inline;
    margin-left: 1em;
  }
  .header__upper .nav--secondary a {
    display: inline-block;
    color: #409F98;
    padding: 0;
    position: relative;
  }
  .header__upper .nav--secondary a:after {
    content: "";
    display: block;
    position: absolute;
    bottom: 3px;
    left: 0;
    width: 100%;
    border-bottom: 1px solid transparent;
  }
  .header__upper .nav--secondary a:focus, .header__upper .nav--secondary a:active, .header__upper .nav--secondary a:hover {
    color: rgb(56.6816143498, 140.8183856502, 134.6188340807);
  }
  .header__upper .nav--secondary a:focus:after, .header__upper .nav--secondary a:active:after, .header__upper .nav--secondary a:hover:after {
    border-bottom-color: rgb(56.6816143498, 140.8183856502, 134.6188340807);
  }
}
@media screen and (min-width: 62em) {
  .header__upper .nav--secondary {
    font-size: 1.125rem;
    padding-right: 2em;
  }
}
@media screen and (min-width: 70em) {
  .header__upper .nav--secondary {
    font-size: 1.25rem;
    padding-right: 3em;
  }
}

@media screen and (min-width: 47.99em) {
  .nav--primary {
    margin-top: 1.5em;
    font-size: 1.375rem;
    text-align: center;
  }
  .nav--primary li {
    display: inline;
    margin-left: 1.25em;
  }
  .nav--primary li:first-child {
    margin-left: 0;
  }
  .nav--primary a {
    display: inline-block;
    padding: 0;
    color: #409F98;
    position: relative;
  }
  .nav--primary a:after {
    content: "";
    display: block;
    position: absolute;
    bottom: 3px;
    left: 0;
    width: 100%;
    border-bottom: 1px solid #409F98;
  }
  .nav--primary a:focus, .nav--primary a:active, .nav--primary a:hover {
    color: rgb(34.7264573991, 86.2735426009, 82.4753363229);
  }
  .nav--primary a:focus:after, .nav--primary a:active:after, .nav--primary a:hover:after {
    border-bottom-color: rgb(34.7264573991, 86.2735426009, 82.4753363229);
  }
  .nav--primary .current_page_item a,
  .nav--primary .current-page-ancester a,
  .nav--primary .current-page-ancestor a {
    color: #111111;
    border-bottom: 4px solid rgb(5.1256544503, 83.8743455497, 82.4764397906);
  }
}
@media screen and (min-width: 62em) {
  .nav--primary {
    font-size: 1.25rem;
    text-align: right;
    float: right;
    margin-top: 0;
    width: 66%;
  }
}
@media screen and (min-width: 70em) {
  .nav--primary {
    font-size: 1.375rem;
  }
}
@media screen and (min-width: 80em) {
  .nav--primary {
    font-size: 1.5rem;
  }
}

.nav--footer {
  font-size: 1.25rem;
  text-align: center;
}
.nav--footer ul {
  list-style: none;
  margin: 0 0 0.5em;
}
.nav--footer li {
  display: inline;
  padding-left: 8px;
  margin-left: 5px;
  border-left: 1px solid #0BB4B1;
}
.nav--footer li:first-child {
  padding-left: 0;
  margin-left: 0;
  border-left: 0;
}
.nav--footer a {
  color: #0BB4B1;
  display: inline-block;
  position: relative;
}
.nav--footer a:after {
  content: "";
  display: block;
  position: absolute;
  bottom: 3px;
  left: 0;
  width: 100%;
  border-bottom: 1px solid transparent;
}
.nav--footer a:focus, .nav--footer a:active, .nav--footer a:hover {
  color: rgb(56.6816143498, 140.8183856502, 134.6188340807);
}
.nav--footer a:focus:after, .nav--footer a:active:after, .nav--footer a:hover:after {
  border-bottom-color: rgb(56.6816143498, 140.8183856502, 134.6188340807);
}
@media screen and (min-width: 48em) {
  .nav--footer {
    margin-top: 0.4em;
    text-align: left;
    font-size: 1.125rem;
  }
}
@media screen and (min-width: 62em) {
  .nav--footer {
    font-size: 1.25rem;
  }
}

.footer {
  margin-top: 2em;
}

.footer__upper {
  border-color: #F7F8F7;
  border-top-style: solid;
  border-bottom-style: solid;
  margin-bottom: 0.5em;
  border-width: 5px;
  padding: 0.5em 0;
}
@media screen and (min-width: 70em) {
  .footer__upper {
    padding: 1em 1em;
  }
}

.footer__telephone {
  color: #0BB4B1;
  text-align: center;
  display: inline-block;
  margin: 0;
}
.footer__telephone i {
  content: "";
  display: inline-block;
  width: 25px;
  height: 25px;
}

.footer__unit--logo,
.footer__unit--telephone {
  text-align: center;
  margin-top: 0.5em;
}
@media screen and (min-width: 48em) {
  .footer__unit--logo,
  .footer__unit--telephone {
    margin-top: 0;
  }
}

.footer__unit--logo {
  width: 275px;
  height: 30px;
  margin: 0.5em auto 0;
}
@media screen and (min-width: 48em) {
  .footer__unit--logo {
    text-align: center;
    width: 225px;
    height: 25px;
  }
}
@media screen and (min-width: 62em) {
  .footer__unit--logo {
    width: 275px;
    height: 30px;
  }
}

.footer__unit--telephone {
  font-size: 2rem;
}
@media screen and (min-width: 48em) {
  .footer__unit--telephone {
    text-align: right;
    font-size: 1.75rem;
  }
}
@media screen and (min-width: 62em) {
  .footer__unit--telephone {
    font-size: 2rem;
  }
}

.footer__notes {
  font-size: 1rem;
  text-align: center;
  color: #999999;
  margin: 1.5em 0;
}
.footer__notes p {
  margin: 0;
}
.footer__notes a {
  color: #0BB4B1;
  position: relative;
}
.footer__notes a:after {
  content: "";
  display: block;
  position: absolute;
  bottom: 3px;
  left: 0;
  width: 100%;
  border-bottom: 1px solid transparent;
}
.footer__notes a:focus, .footer__notes a:active, .footer__notes a:hover {
  color: rgb(5.1256544503, 83.8743455497, 82.4764397906);
}
.footer__notes a:focus:after, .footer__notes a:active:after, .footer__notes a:hover:after {
  border-bottom-color: rgb(5.1256544503, 83.8743455497, 82.4764397906);
}
@media screen and (min-width: 48em) {
  .footer__notes p {
    display: inline-block;
  }
  .footer__notes .footer__author {
    margin-left: 10px;
    padding-left: 10px;
    border-left: 1px solid rgb(191.25, 191.25, 191.25);
  }
}

/* $. Helpers - i.e. Clearfixes, accessbility hidden, etc
\*----------------------------------------------------------------*/
/**
 * Title:
 *    Extras
 * Description:
 *    Any other helpers which will be used throughout the project
 * Sections:
 *    $. Clearfix
 *    $. Visually Hidden
 *    $. Type
 */
/* $. Clearfix - http://goo.gl/5Fvrh
\*----------------------------------------------------------------*/
form:after, .nav:after,
.cf:after,
.media:after {
  content: "";
  display: table;
  clear: both;
}

/* $. Visually Hidden
\*----------------------------------------------------------------*/
.hidden {
  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;
}

/**
 * Title:
 *    Overrides
 * Description:
 *    Global overrides to be used throughout a project. Using !important as
 *    we always want them to override existing styles.
 * Sections:
 *    $. Box Model
 *    $. Lists
 *    $. Backgrounds
 *    $. Aspect
 *    $. Type
 *    $. Border
 *    $. Align
 *    $. Images
 */
/* $. Box Model
\*----------------------------------------------------------------*/
.pull--top {
  margin-top: -1em !important;
}

.pull--top-percent {
  margin-top: -1% !important;
}

.pull--top-percent-viguple {
  margin-top: -20% !important;
}

.push--top {
  margin-top: 1em !important;
}

.push--top-half {
  margin-top: 0.5em !important;
}

.push--top-double {
  margin-top: 2em !important;
}

.push--top-triple {
  margin-top: 3em !important;
}

.push--top-quadruple {
  margin-top: 4em !important;
}

.push--top-quintuple {
  margin-top: 5em !important;
}

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

.push--bottom {
  margin-bottom: 1em !important;
}

.push--bottom-half {
  margin-bottom: 0.5em !important;
}

.push--bottom-quarter {
  margin-bottom: 0.25em !important;
}

.push--bottom-double {
  margin-bottom: 2em !important;
}

.push--bottom-triple {
  margin-bottom: 3em !important;
}

.push--bottom-quadruple {
  margin-bottom: 4em !important;
}

.push--bottom-quintuple {
  margin-bottom: 5em !important;
}

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

.pad--top {
  padding-top: 1em !important;
}

.pad--top-double {
  padding-top: 2em !important;
}

.pad--top-triple {
  padding-top: 3em !important;
}

.pad--top-quadruple {
  padding-top: 4em !important;
}

.pad--top-quintuple {
  padding-top: 5em !important;
}

.pad--top-sextuple {
  padding-top: 6em !important;
}

.pad--top-duodecuple {
  padding-top: 12em !important;
}
@media screen and (min-width: 48em) {
  .pad--top-duodecuple-bp3 {
    padding-top: 12em !important;
  }
}

.pad--top-zero {
  padding-top: 0 !important;
}

.pad--bottom {
  padding-bottom: 1em !important;
}

.pad--bottom-double {
  padding-bottom: 2em !important;
}

.pad--bottom-triple {
  padding-bottom: 3em !important;
}

.pad--bottom-quadruple {
  padding-bottom: 4em !important;
}

.pad--bottom-quintuple {
  padding-bottom: 5em !important;
}

.pad--bottom-sextuple {
  padding-bottom: 6em !important;
}

.pad--bottom-none {
  padding-bottom: 0 !important;
}

.pad--sides-quadruple {
  padding-left: 4em !important;
  padding-right: 4em !important;
}
@media screen and (min-width: 48em) {
  .pad--sides-quadruple-bp3 {
    padding-left: 4em !important;
    padding-right: 4em !important;
  }
}

.pad--all {
  padding: 1em !important;
}

.pad--all-double {
  padding: 2em !important;
}

.pad--all-triple {
  padding: 3em !important;
}

.pad--all-quadruple {
  padding: 4em !important;
}
@media screen and (min-width: 48em) {
  .pad--all-quadruple-bp3 {
    padding: 4em !important;
  }
}

.pad--none {
  padding: 0 !important;
}

.push--top-zero {
  margin-top: 0 !important;
}

.push--bottom-zero {
  margin-bottom: 0 !important;
}

.push--bottom-zero-last-child :last-child {
  margin-bottom: 0 !important;
}

.pad--top-zero {
  padding-top: 0 !important;
}

.pad--bottom-zero {
  padding-bottom: 0 !important;
}

.position--relative {
  position: relative;
}

.block {
  display: block;
}

.is-hidden {
  display: none;
}

.overflow-hidden {
  overflow: hidden;
}

@media screen and (min-width: 30em) {
  .push--top-zero-bp1 {
    margin-top: 0 !important;
  }
  .push--bottom-zero-bp1 {
    margin-bottom: 0 !important;
  }
}
@media screen and (min-width: 37.5em) {
  .push--top-zero-bp2 {
    margin-top: 0 !important;
  }
  .push--bottom-zero-bp2 {
    margin-bottom: 0 !important;
  }
}
@media screen and (min-width: 48em) {
  .pull--top-percent-viguple-bp3 {
    margin-top: -20% !important;
  }
  .push--top-zero-bp3 {
    margin-top: 0 !important;
  }
  .push--bottom-zero-bp3 {
    margin-bottom: 0 !important;
  }
}
/* $. Lists
\*----------------------------------------------------------------*/
.list--unset, .nav {
  list-style: none !important;
  margin-left: 0 !important;
}

.list--numbers {
  list-style: decimal !important;
}

.list--bullets {
  list-style: disc !important;
}

.list--inline li {
  display: inline-block;
  margin: 0 5px;
}

.list--inline-spaced li {
  display: inline-block;
  margin: 0 30px;
}

/* $. Backgrounds
\*----------------------------------------------------------------*/
.bg--cover {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50%;
}

.bg--white {
  background-color: #fff;
}

.bg--alpha {
  background-color: #f6f7f6;
}

/* $. Aspect Ratio
\*----------------------------------------------------------------*/
.aspect {
  height: 0;
}

.aspect--1-1 {
  padding-bottom: 100%;
}

.aspect--4-3 {
  padding-bottom: 75%;
}

.aspect--8-3 {
  padding-bottom: 37.5%;
}

@media screen and (min-width: 30em) {
  .aspect--8-3-bp1 {
    padding: 0 0 37.5%;
  }
}
/* $. Type
\*----------------------------------------------------------------*/
.type-size--super {
  font-size: 2.5rem;
}
@media screen and (min-width: 30em) {
  .type-size--super {
    font-size: 3.125rem;
  }
}
@media screen and (min-width: 37.5em) {
  .type-size--super {
    font-size: 3.75rem;
  }
}
@media screen and (min-width: 48em) {
  .type-size--super {
    font-size: 4.375rem;
  }
}

.type-size--theta {
  font-size: 2.25rem;
}
@media screen and (min-width: 30em) {
  .type-size--theta {
    font-size: 2.625rem;
  }
}
@media screen and (min-width: 37.5em) {
  .type-size--theta {
    font-size: 3rem;
  }
}
@media screen and (min-width: 48em) {
  .type-size--theta {
    font-size: 3.375rem;
  }
}

.type-size--omega {
  font-size: 2.75rem;
}

.type-size--alpha {
  font-size: 2.5rem;
}

.type-size--beta {
  font-size: 2rem;
}

.type-size--gamma {
  font-size: 1.875rem;
}

.type-size--eta {
  font-size: 1.75rem;
}

.type-size--delta {
  font-size: 1.375rem;
}

.type-size--epsilon {
  font-size: 1rem;
}

.type-size--zeta {
  font-size: 0.875rem;
}

.type-line-height--alpha {
  line-height: 2.25;
}

.type-line-height--beta {
  line-height: 1.875;
}

.type-line-height--gamma {
  line-height: 1.5;
}

.type-line-height--delta {
  line-height: 1.25;
}

.type-line-height--epsilon {
  line-height: 1;
}

.type-line-height--zeta {
  line-height: 0.875;
}

.type-color--default {
  color: #444444;
}

.type-color--alpha {
  color: #409F98;
}

.type-color--beta {
  color: rgb(237.6381578947, 164.1842105263, 18.6118421053);
}

.type-color--white {
  color: #fff !important;
}

.type-transform--uppercase {
  text-transform: uppercase;
}

.type-font--primary {
  font-family: "effra-n4", "effra", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.type-font--secondary {
  font-family: "effra-n4", "effra", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.type-font--secondary-light {
  font-family: "chaparral-pro-n3", "chaparral-pro", Georgia, serif;
  font-weight: 300;
  font-style: normal;
}

.type-underline--anchors a {
  box-shadow: inset 0 0px 0 white, inset 0 -1px 0 rgb(195.8206278027, 231.1793721973, 228.5739910314);
}

/* $. Border
\*----------------------------------------------------------------*/
.border--bottom-small {
  border-bottom: 1px solid #ccc;
}

.border--bottom-light {
  border-color: #eee;
}

/* $. Align
\*----------------------------------------------------------------*/
.text-align--center {
  text-align: center;
}

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

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

/* $. Widths
\*----------------------------------------------------------------*/
.max-width--400 {
  max-width: 400px;
}

/* $. Blocks
\*----------------------------------------------------------------*/
.block--center {
  margin-left: auto;
  margin-right: auto;
}

/* $. Icons
\*----------------------------------------------------------------*/
.icon--and-text {
  background-position: 0 50%;
  padding: 0 0 0 35px;
}

/* $. Visibility
\*----------------------------------------------------------------*/
.hide {
  display: none !important;
}

.show--block {
  display: block !important;
}

.show--inline-block {
  display: inline-block !important;
}

@media screen and (min-width: 62em) {
  .show--inline-block-bp5 {
    display: inline-block !important;
  }
}
/* $. Images
\*----------------------------------------------------------------*/
.img--full-width {
  width: 100%;
  height: auto;
}

.gform_validation_container {
  display: none;
}

/**
 * Title:
 *    Debugging
 * Description:
 *    helper class to show which breakpoint you're currently on
 * Sections:
 *    $. Mixin
 *    $. Class
 */
/* $. Mixin
\*----------------------------------------------------------------*/
/* $. Class
\*----------------------------------------------------------------*/
body.debug:before {
  position: fixed;
  z-index: 50;
  right: 1em;
  bottom: 1em;
  display: inline-block;
  padding: 0.35em;
  font-family: "effra-n4", "effra", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 0.8em;
  text-transform: uppercase;
  color: #FFF;
  background-color: rgba(0, 0, 0, 0.75);
  content: "Breakpoint 0";
}
@media screen and (min-width: 30em) {
  body.debug:before {
    content: "Breakpoint 1";
  }
}
@media screen and (min-width: 37.5em) {
  body.debug:before {
    content: "Breakpoint 2";
  }
}
@media screen and (min-width: 48em) {
  body.debug:before {
    content: "Breakpoint 3";
  }
}
@media screen and (min-width: 55em) {
  body.debug:before {
    content: "Breakpoint 4";
  }
}
@media screen and (min-width: 62em) {
  body.debug:before {
    content: "Breakpoint 5";
  }
}
@media screen and (min-width: 70em) {
  body.debug:before {
    content: "Breakpoint 6";
  }
}
@media screen and (min-width: 80em) {
  body.debug:before {
    content: "Breakpoint 7";
  }
}
@media screen and (min-width: 90em) {
  body.debug:before {
    content: "Breakpoint 8";
  }
}
@media screen and (min-width: 100em) {
  body.debug:before {
    content: "Breakpoint 9";
  }
}
@media screen and (min-width: 110em) {
  body.debug:before {
    content: "Breakpoint 10";
  }
}
@media screen and (min-width: 120em) {
  body.debug:before {
    content: "Breakpoint 11";
  }
}
