/**
 * 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
 *    $. Icons
 *    $. Z axis
 */
/* $. Breakpoints
\*----------------------------------------------------------------*/
/* $. Colours
\*----------------------------------------------------------------*/
/**
 * Base colours
 */
/* Crane colours */
/* defaults */
/* shades */
/* primary */
/* secondary */
/**
 * UI colours
 */
/* shades */
/* states */
/* $. Typography
\*----------------------------------------------------------------*/
/* $. Layout
\*----------------------------------------------------------------*/
/* $. Icons
\*----------------------------------------------------------------*/
/* $. 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
\*----------------------------------------------------------------*/
/* $. Media Queries - https://github.com/jakearchibald/sass-ie
\*----------------------------------------------------------------*/
/* $. Your new mixins
\*----------------------------------------------------------------*/
/**
 * Title:
 *    Vendors
 * Description:
 *    Importing and using the bower components within your Sass
 * Sections:
 *    $. Variables
 *    $. Imports
 *    $. Configuration
 */
/* $. Variables
\*----------------------------------------------------------------*/
/**
 * GROOT
 */
/**
 * Custom fancy float
 */
.grid__item--omega {
  float: right;
}

/* $. 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.
 */
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;
}

/*! Groot v0.0.7 | MIT License | http://github.com/lukewhitehouse/groot */
/**
 ***************************************************************************
 * Groot > groot.scss
 ***************************************************************************
 *
 * Acting as a hub to build upon the components which make up the
 * Groot system.
 *
 * $. Variables
 * $. Base
 * $. Modifiers
 * $. Builder
 *
 */
/* $. Variables
\*----------------------------------------------------------------*/
/**
 ***************************************************************************
 * Groot > src/_variables.scss
 ***************************************************************************
 *
 * All available variables have present !default values which can be
 * overridden by the user. In addition, to prevent conflicts with 3rd
 * party packages, each variable is namespaced with `$gr`, short for
 * groot.
 *
 * $. Core
 * $. Modifiers
 * $. Sizing
 * $. Grid Alignment
 * $. Item Alignment
 *
 */
/* $. Core
\*----------------------------------------------------------------*/
/* $. Modifiers
\*----------------------------------------------------------------*/
/* $. Sizing
\*----------------------------------------------------------------*/
/* $. Grid Alignment
\*----------------------------------------------------------------*/
/* $. Item Alignment
\*----------------------------------------------------------------*/
/* $. Base
\*----------------------------------------------------------------*/
/**
 ***************************************************************************
 * Groot > src/_base.scss
 ***************************************************************************
 *
 * Create the main classes for the grid's container and its children.
 *
 * $. Container
 * $. Item
 *
 */
/* $. Container
\*----------------------------------------------------------------*/
.grid {
  box-sizing: border-box;
  display: block;
  padding: 0;
  margin: 0 0 0 -1em;
  direction: inherit;
  text-align: inherit;
}

/* $. Item
\*----------------------------------------------------------------*/
.grid__item {
  box-sizing: border-box;
  display: inline-block;
  width: 100%;
  margin: 0 -0.25em 0 0;
  padding: 0 0 0 1em;
  direction: inherit;
  text-align: inherit;
  vertical-align: top;
}

/* $. Modifiers
\*----------------------------------------------------------------*/
/**
 ***************************************************************************
 * Groot > src/_modifiers.scss
 ***************************************************************************
 *
 * Styling to produce the various modifiers that come prebuilt into the
 * grid system.
 *
 * $. Spacing
 * $. Directional
 * $. Alignment
 *
 */
/* $. Spacing
\*----------------------------------------------------------------*/
.grid--spaced {
  margin: 0 0 0 -2em;
}
.grid--spaced > .grid__item {
  padding: 0 0 0 2em;
}

.grid--compact {
  margin: 0;
}
.grid--compact > .grid__item {
  padding: 0;
}

/* $. Directional
\*----------------------------------------------------------------*/
.grid--reversed {
  direction: rtl;
}
.grid--reversed:after {
  content: "";
  clear: both;
  display: table;
}
.grid--reversed .grid__item {
  margin: 0 0 0 -0.25em;
}

/* $. Alignment
\*----------------------------------------------------------------*/
.grid--centered {
  text-align: center;
}

.grid__item--centered {
  display: block;
  margin: 0 auto;
}

/* $. Build
\*----------------------------------------------------------------*/
/**
 ***************************************************************************
 * Groot > src/_builder.scss
 ***************************************************************************
 *
 * This Mixin is used to build out the Grid system. This takes two
 * parameters, one for the number of columns to create and the second
 * for at what breakpoint this should be created for.
 *
 * @param | int    | $cols   | Number of Columns to build
 * @param | string | $suffix | Suffix for the Class declaration
 *
 * @return class declartion
 *
 */
/* $. Configuration
\*----------------------------------------------------------------*/
/**
 * Loop through $cols
 */
/**
 * Create a loop ending with 1 less than the $col parameter
 */
/**
 * Get the length of the $suffix parameter
 */
/**
 * If a breakpoint has been declared, declare the class
 * for that breakpoint.
 */
/**
 * Declare a class based on $col number
 */
.grid__item--1-12 {
  width: 8.3333333333%;
}

/**
 * Get the length of the $suffix parameter
 */
/**
 * If a breakpoint has been declared, declare the class
 * for that breakpoint.
 */
/**
 * Declare a class based on $col number
 */
.grid__item--2-12 {
  width: 16.6666666667%;
}

/**
 * Get the length of the $suffix parameter
 */
/**
 * If a breakpoint has been declared, declare the class
 * for that breakpoint.
 */
/**
 * Declare a class based on $col number
 */
.grid__item--3-12 {
  width: 25%;
}

/**
 * Get the length of the $suffix parameter
 */
/**
 * If a breakpoint has been declared, declare the class
 * for that breakpoint.
 */
/**
 * Declare a class based on $col number
 */
.grid__item--4-12 {
  width: 33.3333333333%;
}

/**
 * Get the length of the $suffix parameter
 */
/**
 * If a breakpoint has been declared, declare the class
 * for that breakpoint.
 */
/**
 * Declare a class based on $col number
 */
.grid__item--5-12 {
  width: 41.6666666667%;
}

/**
 * Get the length of the $suffix parameter
 */
/**
 * If a breakpoint has been declared, declare the class
 * for that breakpoint.
 */
/**
 * Declare a class based on $col number
 */
.grid__item--6-12 {
  width: 50%;
}

/**
 * Get the length of the $suffix parameter
 */
/**
 * If a breakpoint has been declared, declare the class
 * for that breakpoint.
 */
/**
 * Declare a class based on $col number
 */
.grid__item--7-12 {
  width: 58.3333333333%;
}

/**
 * Get the length of the $suffix parameter
 */
/**
 * If a breakpoint has been declared, declare the class
 * for that breakpoint.
 */
/**
 * Declare a class based on $col number
 */
.grid__item--8-12 {
  width: 66.6666666667%;
}

/**
 * Get the length of the $suffix parameter
 */
/**
 * If a breakpoint has been declared, declare the class
 * for that breakpoint.
 */
/**
 * Declare a class based on $col number
 */
.grid__item--9-12 {
  width: 75%;
}

/**
 * Get the length of the $suffix parameter
 */
/**
 * If a breakpoint has been declared, declare the class
 * for that breakpoint.
 */
/**
 * Declare a class based on $col number
 */
.grid__item--10-12 {
  width: 83.3333333333%;
}

/**
 * Get the length of the $suffix parameter
 */
/**
 * If a breakpoint has been declared, declare the class
 * for that breakpoint.
 */
/**
 * Declare a class based on $col number
 */
.grid__item--11-12 {
  width: 91.6666666667%;
}

/**
 * Get the length of the $suffix parameter
 */
/**
 * If a breakpoint has been declared, declare the class
 * for that breakpoint.
 */
/**
 * Declare a class based on $col number
 */
.grid__item--12-12 {
  width: 100%;
}

@media screen and (min-width: 30em) {
  /**
   * Loop through $cols
   */
  /**
   * Create a loop ending with 1 less than the $col parameter
   */
  /**
   * Get the length of the $suffix parameter
   */
  /**
   * If a breakpoint has been declared, declare the class
   * for that breakpoint.
   */
  /**
   * Declare a class based on $col number AND breakpoint
   */
  .grid__item--1-12-bp1 {
    width: 8.3333333333%;
  }
  /**
   * Get the length of the $suffix parameter
   */
  /**
   * If a breakpoint has been declared, declare the class
   * for that breakpoint.
   */
  /**
   * Declare a class based on $col number AND breakpoint
   */
  .grid__item--2-12-bp1 {
    width: 16.6666666667%;
  }
  /**
   * Get the length of the $suffix parameter
   */
  /**
   * If a breakpoint has been declared, declare the class
   * for that breakpoint.
   */
  /**
   * Declare a class based on $col number AND breakpoint
   */
  .grid__item--3-12-bp1 {
    width: 25%;
  }
  /**
   * Get the length of the $suffix parameter
   */
  /**
   * If a breakpoint has been declared, declare the class
   * for that breakpoint.
   */
  /**
   * Declare a class based on $col number AND breakpoint
   */
  .grid__item--4-12-bp1 {
    width: 33.3333333333%;
  }
  /**
   * Get the length of the $suffix parameter
   */
  /**
   * If a breakpoint has been declared, declare the class
   * for that breakpoint.
   */
  /**
   * Declare a class based on $col number AND breakpoint
   */
  .grid__item--5-12-bp1 {
    width: 41.6666666667%;
  }
  /**
   * Get the length of the $suffix parameter
   */
  /**
   * If a breakpoint has been declared, declare the class
   * for that breakpoint.
   */
  /**
   * Declare a class based on $col number AND breakpoint
   */
  .grid__item--6-12-bp1 {
    width: 50%;
  }
  /**
   * Get the length of the $suffix parameter
   */
  /**
   * If a breakpoint has been declared, declare the class
   * for that breakpoint.
   */
  /**
   * Declare a class based on $col number AND breakpoint
   */
  .grid__item--7-12-bp1 {
    width: 58.3333333333%;
  }
  /**
   * Get the length of the $suffix parameter
   */
  /**
   * If a breakpoint has been declared, declare the class
   * for that breakpoint.
   */
  /**
   * Declare a class based on $col number AND breakpoint
   */
  .grid__item--8-12-bp1 {
    width: 66.6666666667%;
  }
  /**
   * Get the length of the $suffix parameter
   */
  /**
   * If a breakpoint has been declared, declare the class
   * for that breakpoint.
   */
  /**
   * Declare a class based on $col number AND breakpoint
   */
  .grid__item--9-12-bp1 {
    width: 75%;
  }
  /**
   * Get the length of the $suffix parameter
   */
  /**
   * If a breakpoint has been declared, declare the class
   * for that breakpoint.
   */
  /**
   * Declare a class based on $col number AND breakpoint
   */
  .grid__item--10-12-bp1 {
    width: 83.3333333333%;
  }
  /**
   * Get the length of the $suffix parameter
   */
  /**
   * If a breakpoint has been declared, declare the class
   * for that breakpoint.
   */
  /**
   * Declare a class based on $col number AND breakpoint
   */
  .grid__item--11-12-bp1 {
    width: 91.6666666667%;
  }
  /**
   * Get the length of the $suffix parameter
   */
  /**
   * If a breakpoint has been declared, declare the class
   * for that breakpoint.
   */
  /**
   * Declare a class based on $col number AND breakpoint
   */
  .grid__item--12-12-bp1 {
    width: 100%;
  }
}
@media screen and (min-width: 48em) {
  /**
   * Loop through $cols
   */
  /**
   * Create a loop ending with 1 less than the $col parameter
   */
  /**
   * Get the length of the $suffix parameter
   */
  /**
   * If a breakpoint has been declared, declare the class
   * for that breakpoint.
   */
  /**
   * Declare a class based on $col number AND breakpoint
   */
  .grid__item--1-12-bp2 {
    width: 8.3333333333%;
  }
  /**
   * Get the length of the $suffix parameter
   */
  /**
   * If a breakpoint has been declared, declare the class
   * for that breakpoint.
   */
  /**
   * Declare a class based on $col number AND breakpoint
   */
  .grid__item--2-12-bp2 {
    width: 16.6666666667%;
  }
  /**
   * Get the length of the $suffix parameter
   */
  /**
   * If a breakpoint has been declared, declare the class
   * for that breakpoint.
   */
  /**
   * Declare a class based on $col number AND breakpoint
   */
  .grid__item--3-12-bp2 {
    width: 25%;
  }
  /**
   * Get the length of the $suffix parameter
   */
  /**
   * If a breakpoint has been declared, declare the class
   * for that breakpoint.
   */
  /**
   * Declare a class based on $col number AND breakpoint
   */
  .grid__item--4-12-bp2 {
    width: 33.3333333333%;
  }
  /**
   * Get the length of the $suffix parameter
   */
  /**
   * If a breakpoint has been declared, declare the class
   * for that breakpoint.
   */
  /**
   * Declare a class based on $col number AND breakpoint
   */
  .grid__item--5-12-bp2 {
    width: 41.6666666667%;
  }
  /**
   * Get the length of the $suffix parameter
   */
  /**
   * If a breakpoint has been declared, declare the class
   * for that breakpoint.
   */
  /**
   * Declare a class based on $col number AND breakpoint
   */
  .grid__item--6-12-bp2 {
    width: 50%;
  }
  /**
   * Get the length of the $suffix parameter
   */
  /**
   * If a breakpoint has been declared, declare the class
   * for that breakpoint.
   */
  /**
   * Declare a class based on $col number AND breakpoint
   */
  .grid__item--7-12-bp2 {
    width: 58.3333333333%;
  }
  /**
   * Get the length of the $suffix parameter
   */
  /**
   * If a breakpoint has been declared, declare the class
   * for that breakpoint.
   */
  /**
   * Declare a class based on $col number AND breakpoint
   */
  .grid__item--8-12-bp2 {
    width: 66.6666666667%;
  }
  /**
   * Get the length of the $suffix parameter
   */
  /**
   * If a breakpoint has been declared, declare the class
   * for that breakpoint.
   */
  /**
   * Declare a class based on $col number AND breakpoint
   */
  .grid__item--9-12-bp2 {
    width: 75%;
  }
  /**
   * Get the length of the $suffix parameter
   */
  /**
   * If a breakpoint has been declared, declare the class
   * for that breakpoint.
   */
  /**
   * Declare a class based on $col number AND breakpoint
   */
  .grid__item--10-12-bp2 {
    width: 83.3333333333%;
  }
  /**
   * Get the length of the $suffix parameter
   */
  /**
   * If a breakpoint has been declared, declare the class
   * for that breakpoint.
   */
  /**
   * Declare a class based on $col number AND breakpoint
   */
  .grid__item--11-12-bp2 {
    width: 91.6666666667%;
  }
  /**
   * Get the length of the $suffix parameter
   */
  /**
   * If a breakpoint has been declared, declare the class
   * for that breakpoint.
   */
  /**
   * Declare a class based on $col number AND breakpoint
   */
  .grid__item--12-12-bp2 {
    width: 100%;
  }
}
@media screen and (min-width: 62em) {
  /**
   * Loop through $cols
   */
  /**
   * Create a loop ending with 1 less than the $col parameter
   */
  /**
   * Get the length of the $suffix parameter
   */
  /**
   * If a breakpoint has been declared, declare the class
   * for that breakpoint.
   */
  /**
   * Declare a class based on $col number AND breakpoint
   */
  .grid__item--1-12-bp3 {
    width: 8.3333333333%;
  }
  /**
   * Get the length of the $suffix parameter
   */
  /**
   * If a breakpoint has been declared, declare the class
   * for that breakpoint.
   */
  /**
   * Declare a class based on $col number AND breakpoint
   */
  .grid__item--2-12-bp3 {
    width: 16.6666666667%;
  }
  /**
   * Get the length of the $suffix parameter
   */
  /**
   * If a breakpoint has been declared, declare the class
   * for that breakpoint.
   */
  /**
   * Declare a class based on $col number AND breakpoint
   */
  .grid__item--3-12-bp3 {
    width: 25%;
  }
  /**
   * Get the length of the $suffix parameter
   */
  /**
   * If a breakpoint has been declared, declare the class
   * for that breakpoint.
   */
  /**
   * Declare a class based on $col number AND breakpoint
   */
  .grid__item--4-12-bp3 {
    width: 33.3333333333%;
  }
  /**
   * Get the length of the $suffix parameter
   */
  /**
   * If a breakpoint has been declared, declare the class
   * for that breakpoint.
   */
  /**
   * Declare a class based on $col number AND breakpoint
   */
  .grid__item--5-12-bp3 {
    width: 41.6666666667%;
  }
  /**
   * Get the length of the $suffix parameter
   */
  /**
   * If a breakpoint has been declared, declare the class
   * for that breakpoint.
   */
  /**
   * Declare a class based on $col number AND breakpoint
   */
  .grid__item--6-12-bp3 {
    width: 50%;
  }
  /**
   * Get the length of the $suffix parameter
   */
  /**
   * If a breakpoint has been declared, declare the class
   * for that breakpoint.
   */
  /**
   * Declare a class based on $col number AND breakpoint
   */
  .grid__item--7-12-bp3 {
    width: 58.3333333333%;
  }
  /**
   * Get the length of the $suffix parameter
   */
  /**
   * If a breakpoint has been declared, declare the class
   * for that breakpoint.
   */
  /**
   * Declare a class based on $col number AND breakpoint
   */
  .grid__item--8-12-bp3 {
    width: 66.6666666667%;
  }
  /**
   * Get the length of the $suffix parameter
   */
  /**
   * If a breakpoint has been declared, declare the class
   * for that breakpoint.
   */
  /**
   * Declare a class based on $col number AND breakpoint
   */
  .grid__item--9-12-bp3 {
    width: 75%;
  }
  /**
   * Get the length of the $suffix parameter
   */
  /**
   * If a breakpoint has been declared, declare the class
   * for that breakpoint.
   */
  /**
   * Declare a class based on $col number AND breakpoint
   */
  .grid__item--10-12-bp3 {
    width: 83.3333333333%;
  }
  /**
   * Get the length of the $suffix parameter
   */
  /**
   * If a breakpoint has been declared, declare the class
   * for that breakpoint.
   */
  /**
   * Declare a class based on $col number AND breakpoint
   */
  .grid__item--11-12-bp3 {
    width: 91.6666666667%;
  }
  /**
   * Get the length of the $suffix parameter
   */
  /**
   * If a breakpoint has been declared, declare the class
   * for that breakpoint.
   */
  /**
   * Declare a class based on $col number AND breakpoint
   */
  .grid__item--12-12-bp3 {
    width: 100%;
  }
  /**
   * Create a loop ending with 1 less than the $col parameter
   */
  /**
   * Get the length of the $suffix parameter
   */
  /**
   * If a breakpoint has been declared, declare the class
   * for that breakpoint.
   */
  /**
   * Declare a class based on $col number AND breakpoint
   */
  .grid__item--1-5-bp3 {
    width: 20%;
  }
  /**
   * Get the length of the $suffix parameter
   */
  /**
   * If a breakpoint has been declared, declare the class
   * for that breakpoint.
   */
  /**
   * Declare a class based on $col number AND breakpoint
   */
  .grid__item--2-5-bp3 {
    width: 40%;
  }
  /**
   * Get the length of the $suffix parameter
   */
  /**
   * If a breakpoint has been declared, declare the class
   * for that breakpoint.
   */
  /**
   * Declare a class based on $col number AND breakpoint
   */
  .grid__item--3-5-bp3 {
    width: 60%;
  }
  /**
   * Get the length of the $suffix parameter
   */
  /**
   * If a breakpoint has been declared, declare the class
   * for that breakpoint.
   */
  /**
   * Declare a class based on $col number AND breakpoint
   */
  .grid__item--4-5-bp3 {
    width: 80%;
  }
  /**
   * Get the length of the $suffix parameter
   */
  /**
   * If a breakpoint has been declared, declare the class
   * for that breakpoint.
   */
  /**
   * Declare a class based on $col number AND breakpoint
   */
  .grid__item--5-5-bp3 {
    width: 100%;
  }
}
@media screen and (min-width: 78em) {
  /**
   * Loop through $cols
   */
  /**
   * Create a loop ending with 1 less than the $col parameter
   */
  /**
   * Get the length of the $suffix parameter
   */
  /**
   * If a breakpoint has been declared, declare the class
   * for that breakpoint.
   */
  /**
   * Declare a class based on $col number AND breakpoint
   */
  .grid__item--1-12-bp4 {
    width: 8.3333333333%;
  }
  /**
   * Get the length of the $suffix parameter
   */
  /**
   * If a breakpoint has been declared, declare the class
   * for that breakpoint.
   */
  /**
   * Declare a class based on $col number AND breakpoint
   */
  .grid__item--2-12-bp4 {
    width: 16.6666666667%;
  }
  /**
   * Get the length of the $suffix parameter
   */
  /**
   * If a breakpoint has been declared, declare the class
   * for that breakpoint.
   */
  /**
   * Declare a class based on $col number AND breakpoint
   */
  .grid__item--3-12-bp4 {
    width: 25%;
  }
  /**
   * Get the length of the $suffix parameter
   */
  /**
   * If a breakpoint has been declared, declare the class
   * for that breakpoint.
   */
  /**
   * Declare a class based on $col number AND breakpoint
   */
  .grid__item--4-12-bp4 {
    width: 33.3333333333%;
  }
  /**
   * Get the length of the $suffix parameter
   */
  /**
   * If a breakpoint has been declared, declare the class
   * for that breakpoint.
   */
  /**
   * Declare a class based on $col number AND breakpoint
   */
  .grid__item--5-12-bp4 {
    width: 41.6666666667%;
  }
  /**
   * Get the length of the $suffix parameter
   */
  /**
   * If a breakpoint has been declared, declare the class
   * for that breakpoint.
   */
  /**
   * Declare a class based on $col number AND breakpoint
   */
  .grid__item--6-12-bp4 {
    width: 50%;
  }
  /**
   * Get the length of the $suffix parameter
   */
  /**
   * If a breakpoint has been declared, declare the class
   * for that breakpoint.
   */
  /**
   * Declare a class based on $col number AND breakpoint
   */
  .grid__item--7-12-bp4 {
    width: 58.3333333333%;
  }
  /**
   * Get the length of the $suffix parameter
   */
  /**
   * If a breakpoint has been declared, declare the class
   * for that breakpoint.
   */
  /**
   * Declare a class based on $col number AND breakpoint
   */
  .grid__item--8-12-bp4 {
    width: 66.6666666667%;
  }
  /**
   * Get the length of the $suffix parameter
   */
  /**
   * If a breakpoint has been declared, declare the class
   * for that breakpoint.
   */
  /**
   * Declare a class based on $col number AND breakpoint
   */
  .grid__item--9-12-bp4 {
    width: 75%;
  }
  /**
   * Get the length of the $suffix parameter
   */
  /**
   * If a breakpoint has been declared, declare the class
   * for that breakpoint.
   */
  /**
   * Declare a class based on $col number AND breakpoint
   */
  .grid__item--10-12-bp4 {
    width: 83.3333333333%;
  }
  /**
   * Get the length of the $suffix parameter
   */
  /**
   * If a breakpoint has been declared, declare the class
   * for that breakpoint.
   */
  /**
   * Declare a class based on $col number AND breakpoint
   */
  .grid__item--11-12-bp4 {
    width: 91.6666666667%;
  }
  /**
   * Get the length of the $suffix parameter
   */
  /**
   * If a breakpoint has been declared, declare the class
   * for that breakpoint.
   */
  /**
   * Declare a class based on $col number AND breakpoint
   */
  .grid__item--12-12-bp4 {
    width: 100%;
  }
  /**
   * Create a loop ending with 1 less than the $col parameter
   */
  /**
   * Get the length of the $suffix parameter
   */
  /**
   * If a breakpoint has been declared, declare the class
   * for that breakpoint.
   */
  /**
   * Declare a class based on $col number AND breakpoint
   */
  .grid__item--1-5-bp4 {
    width: 20%;
  }
  /**
   * Get the length of the $suffix parameter
   */
  /**
   * If a breakpoint has been declared, declare the class
   * for that breakpoint.
   */
  /**
   * Declare a class based on $col number AND breakpoint
   */
  .grid__item--2-5-bp4 {
    width: 40%;
  }
  /**
   * Get the length of the $suffix parameter
   */
  /**
   * If a breakpoint has been declared, declare the class
   * for that breakpoint.
   */
  /**
   * Declare a class based on $col number AND breakpoint
   */
  .grid__item--3-5-bp4 {
    width: 60%;
  }
  /**
   * Get the length of the $suffix parameter
   */
  /**
   * If a breakpoint has been declared, declare the class
   * for that breakpoint.
   */
  /**
   * Declare a class based on $col number AND breakpoint
   */
  .grid__item--4-5-bp4 {
    width: 80%;
  }
  /**
   * Get the length of the $suffix parameter
   */
  /**
   * If a breakpoint has been declared, declare the class
   * for that breakpoint.
   */
  /**
   * Declare a class based on $col number AND breakpoint
   */
  .grid__item--5-5-bp4 {
    width: 100%;
  }
}
@media screen and (min-width: 87em) {
  /**
   * Loop through $cols
   */
  /**
   * Create a loop ending with 1 less than the $col parameter
   */
  /**
   * Get the length of the $suffix parameter
   */
  /**
   * If a breakpoint has been declared, declare the class
   * for that breakpoint.
   */
  /**
   * Declare a class based on $col number AND breakpoint
   */
  .grid__item--1-12-bp5 {
    width: 8.3333333333%;
  }
  /**
   * Get the length of the $suffix parameter
   */
  /**
   * If a breakpoint has been declared, declare the class
   * for that breakpoint.
   */
  /**
   * Declare a class based on $col number AND breakpoint
   */
  .grid__item--2-12-bp5 {
    width: 16.6666666667%;
  }
  /**
   * Get the length of the $suffix parameter
   */
  /**
   * If a breakpoint has been declared, declare the class
   * for that breakpoint.
   */
  /**
   * Declare a class based on $col number AND breakpoint
   */
  .grid__item--3-12-bp5 {
    width: 25%;
  }
  /**
   * Get the length of the $suffix parameter
   */
  /**
   * If a breakpoint has been declared, declare the class
   * for that breakpoint.
   */
  /**
   * Declare a class based on $col number AND breakpoint
   */
  .grid__item--4-12-bp5 {
    width: 33.3333333333%;
  }
  /**
   * Get the length of the $suffix parameter
   */
  /**
   * If a breakpoint has been declared, declare the class
   * for that breakpoint.
   */
  /**
   * Declare a class based on $col number AND breakpoint
   */
  .grid__item--5-12-bp5 {
    width: 41.6666666667%;
  }
  /**
   * Get the length of the $suffix parameter
   */
  /**
   * If a breakpoint has been declared, declare the class
   * for that breakpoint.
   */
  /**
   * Declare a class based on $col number AND breakpoint
   */
  .grid__item--6-12-bp5 {
    width: 50%;
  }
  /**
   * Get the length of the $suffix parameter
   */
  /**
   * If a breakpoint has been declared, declare the class
   * for that breakpoint.
   */
  /**
   * Declare a class based on $col number AND breakpoint
   */
  .grid__item--7-12-bp5 {
    width: 58.3333333333%;
  }
  /**
   * Get the length of the $suffix parameter
   */
  /**
   * If a breakpoint has been declared, declare the class
   * for that breakpoint.
   */
  /**
   * Declare a class based on $col number AND breakpoint
   */
  .grid__item--8-12-bp5 {
    width: 66.6666666667%;
  }
  /**
   * Get the length of the $suffix parameter
   */
  /**
   * If a breakpoint has been declared, declare the class
   * for that breakpoint.
   */
  /**
   * Declare a class based on $col number AND breakpoint
   */
  .grid__item--9-12-bp5 {
    width: 75%;
  }
  /**
   * Get the length of the $suffix parameter
   */
  /**
   * If a breakpoint has been declared, declare the class
   * for that breakpoint.
   */
  /**
   * Declare a class based on $col number AND breakpoint
   */
  .grid__item--10-12-bp5 {
    width: 83.3333333333%;
  }
  /**
   * Get the length of the $suffix parameter
   */
  /**
   * If a breakpoint has been declared, declare the class
   * for that breakpoint.
   */
  /**
   * Declare a class based on $col number AND breakpoint
   */
  .grid__item--11-12-bp5 {
    width: 91.6666666667%;
  }
  /**
   * Get the length of the $suffix parameter
   */
  /**
   * If a breakpoint has been declared, declare the class
   * for that breakpoint.
   */
  /**
   * Declare a class based on $col number AND breakpoint
   */
  .grid__item--12-12-bp5 {
    width: 100%;
  }
  /**
   * Create a loop ending with 1 less than the $col parameter
   */
  /**
   * Get the length of the $suffix parameter
   */
  /**
   * If a breakpoint has been declared, declare the class
   * for that breakpoint.
   */
  /**
   * Declare a class based on $col number AND breakpoint
   */
  .grid__item--1-5-bp5 {
    width: 20%;
  }
  /**
   * Get the length of the $suffix parameter
   */
  /**
   * If a breakpoint has been declared, declare the class
   * for that breakpoint.
   */
  /**
   * Declare a class based on $col number AND breakpoint
   */
  .grid__item--2-5-bp5 {
    width: 40%;
  }
  /**
   * Get the length of the $suffix parameter
   */
  /**
   * If a breakpoint has been declared, declare the class
   * for that breakpoint.
   */
  /**
   * Declare a class based on $col number AND breakpoint
   */
  .grid__item--3-5-bp5 {
    width: 60%;
  }
  /**
   * Get the length of the $suffix parameter
   */
  /**
   * If a breakpoint has been declared, declare the class
   * for that breakpoint.
   */
  /**
   * Declare a class based on $col number AND breakpoint
   */
  .grid__item--4-5-bp5 {
    width: 80%;
  }
  /**
   * Get the length of the $suffix parameter
   */
  /**
   * If a breakpoint has been declared, declare the class
   * for that breakpoint.
   */
  /**
   * Declare a class based on $col number AND breakpoint
   */
  .grid__item--5-5-bp5 {
    width: 100%;
  }
}
/* $. Base - Project defaults & Element styling
\*----------------------------------------------------------------*/
/**
 * Title:
 *    Defaults
 * Description:
 *    These are the base styles for the project
 * Sections:
 *    $. Defaults
 *    $. Selections
 */
/* $. Defaults
\*----------------------------------------------------------------*/
*,
*:before,
*:after {
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html {
  font-family: "PT Sans", sans-serif;
  line-height: 1.5;
  font-size: 100%;
  overflow-y: scroll;
  box-sizing: border-box;
}
@media screen and (min-width: 62em) {
  html {
    font-size: 112.5%;
  }
}

body {
  color: #3f5263;
}

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

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

:focus {
  outline: 0;
}

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

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: #5e76ac;
}
a:hover {
  color: #495e8e;
}

a[href^=tel] {
  color: inherit;
  text-decoration: none;
}

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

/* $. 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%;
}

iframe {
  display: block;
}

figure {
  max-width: 100%;
  margin: 0;
}

.embed {
  position: relative;
  max-width: 400px;
  max-height: 400px;
}
.embed:after {
  padding-top: 100%;
  display: block;
  content: "";
}
.embed--flex {
  max-width: 100%;
  max-height: 100%;
  margin-bottom: 1em;
}
.embed--flex:after {
  padding-top: 56.25%;
  display: block;
  content: "";
}
.embed iframe {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 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;
  font-weight: 400;
  line-height: 1.2;
}

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: 2.25rem;
}

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

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

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

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

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

.intro {
  line-height: 1.2;
  font-size: 1.25rem;
}
@media screen and (min-width: 78em) {
  .intro {
    font-size: 1.33rem;
  }
}
@media screen and (min-width: 87em) {
  .intro {
    font-size: 1.44rem;
  }
}

.headline {
  font-weight: 400;
  font-size: 2.66rem;
}

/**
 * Code
 */
pre code {
  display: block;
  color: black;
  font-family: monospace;
  padding: 1rem;
  line-height: 1.4;
  font-size: 1.11rem;
  background-color: white;
  white-space: pre-wrap;
  border-left: 2px solid black;
}

/**
 * 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;
  font-weight: 400;
  font-size: 1.11rem;
}

input[type=checkbox],
input[type=radio] {
  vertical-align: middle;
  background: none;
  border: none;
  height: 20px;
  width: 20px;
  border-radius: 0;
  outline: 0;
}

input,
select,
textarea {
  width: 100%;
  padding: 0.5em;
  border: 1px solid;
  border-radius: 0;
  color: #666;
  background-color: #fff;
  border-color: #ccc;
}

input[type=text],
input[type=email],
textarea {
  padding: 1em;
  font-size: 1.11rem;
}

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
\*----------------------------------------------------------------*/
::placeholder {
  color: #e3e6e8;
}

/* $. Custom Form classes
\*----------------------------------------------------------------*/
.form {
  margin-bottom: 1em;
}
@media screen and (min-width: 62em) {
  .form {
    margin-bottom: 0;
  }
}

.form__heading {
  font-size: 1.33rem;
  font-weight: 700;
  margin-bottom: 0.5em;
}

.form__block {
  margin-bottom: 1em;
}
@media screen and (min-width: 62em) {
  .form__block {
    margin-bottom: 1.5em;
  }
}

.gfield_checkbox input,
.gfield_checkbox label,
.gfield_radio input,
.gfield_radio label {
  display: inline;
}
.gfield_checkbox label,
.gfield_radio label {
  font-size: 1em;
  margin-left: 0.5em;
}

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

td,
th,
caption {
  padding: 0.5em;
  border: 1px solid #cccccc;
  vertical-align: top;
}

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

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

caption {
  background: #687782;
}

/* pt-sans-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "PT Sans";
  font-style: normal;
  font-weight: 400;
  src: url("../../fonts/pt-sans/pt-sans-v17-latin-regular.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* pt-sans-700italic - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "PT Sans";
  font-style: italic;
  font-weight: 700;
  src: url("../../fonts/pt-sans/pt-sans-v17-latin-700italic.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* $. Modules - Global objects i.e. .btn, .island, etc
\*----------------------------------------------------------------*/
/**
 * Title:
 *    Icon Module
 * Description:
 *    Responsible for all sizes and styling of Grunticon based icons
 * Sections:
 *    $. Setup
 *    $. Base
 *    $. Variations
 *
 * TODO:
 *    - Change .svg sizes based on this file for better IE8 support
 */
/* $. Setup
\*----------------------------------------------------------------*/
/* $. Base
\*----------------------------------------------------------------*/
.icon {
  width: 20px;
  height: 20px;
  display: inline-block;
  background-size: contain;
}

/* $. Variations
\*----------------------------------------------------------------*/
/* Generic sizing */
.icon--small {
  width: 16px;
  height: 16px;
}

.icon--medium {
  width: 30px;
  height: 30px;
}

.icon--large {
  width: 45px;
  height: 45px;
}

.icon--xlarge {
  width: 65px;
  height: 65px;
}

/* Logos */
.icon--logo {
  display: block;
  width: 220px;
  height: 54px;
}

.icon--crane-logo {
  display: block;
  width: 338px;
  height: 36px;
}

.icon--rcs {
  display: block;
  width: 250px;
  height: 110px;
}

.icon--hqip-logo {
  display: block;
  width: 160px;
  height: 70px;
}

.icon--abs {
  width: 72px;
  height: 70px;
}

.icon--twitter {
  margin-top: 3px;
}

.icon--abs {
  background-image: url("../../app/icons/abs.svg");
  background-repeat: no-repeat;
}

.icon--crane-footer-logo {
  background-image: url("../../app/icons/crane-footer-logo.svg");
  background-repeat: no-repeat;
}

.icon--crane-logo {
  background-image: url("../../app/icons/crane-logo.svg");
  background-repeat: no-repeat;
}

.icon--crest-chart {
  background-image: url("../../app/icons/crest-chart.svg");
  background-repeat: no-repeat;
}

.icon--crest-folder {
  background-image: url("../../app/icons/crest-folder.svg");
  background-repeat: no-repeat;
}

.icon--crest-new {
  background-image: url("../../app/icons/crest-new.svg");
  background-repeat: no-repeat;
}

.icon--crest-people {
  background-image: url("../../app/icons/crest-people.svg");
  background-repeat: no-repeat;
}

.icon--crest-public {
  background-image: url("../../app/icons/crest-public.svg");
  background-repeat: no-repeat;
}

.icon--download {
  background-image: url("../../app/icons/download.svg");
  background-repeat: no-repeat;
}

.icon--external {
  background-image: url("../../app/icons/external.svg");
  background-repeat: no-repeat;
}

.icon--green-couple-icon {
  background-image: url("../../app/icons/green-couple-icon.svg");
  background-repeat: no-repeat;
}

.icon--green-people {
  background-image: url("../../app/icons/green-people.svg");
  background-repeat: no-repeat;
}

.icon--hqip-logo {
  background-image: url("../../app/icons/hqip-logo.svg");
  background-repeat: no-repeat;
}

.icon--logo-mixd {
  background-image: url("../../app/icons/logo-mixd.svg");
  background-repeat: no-repeat;
}

.icon--logo {
  background-image: url("../../app/icons/logo.svg");
  background-repeat: no-repeat;
}

.icon--menu-close {
  background-image: url("../../app/icons/menu-close.svg");
  background-repeat: no-repeat;
}

.icon--menu-open {
  background-image: url("../../app/icons/menu-open.svg");
  background-repeat: no-repeat;
}

.icon--purple-people {
  background-image: url("../../app/icons/purple-people.svg");
  background-repeat: no-repeat;
}

.icon--rcs-england-logo {
  background-image: url("../../app/icons/rcs-england-logo.svg");
  background-repeat: no-repeat;
}

.icon--rcs {
  background-image: url("../../app/icons/rcs.svg");
  background-repeat: no-repeat;
}

.icon--search-icon {
  background-image: url("../../app/icons/search-icon.svg");
  background-repeat: no-repeat;
}

.icon--select {
  background-image: url("../../app/icons/select.svg");
  background-repeat: no-repeat;
}

.icon--twitter {
  background-image: url("../../app/icons/social-x.svg");
  background-repeat: no-repeat;
  margin-top: -6px;
}

.icon--twitter--grey {
  background-image: url("../../app/icons/social-x.svg");
  background-repeat: no-repeat;
}

/**
 * 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: 48em) {
  .media__body {
    overflow: hidden;
  }
}

.media__img {
  margin-bottom: 1em;
}

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

/**
 * Title:
 *    List variations
 * Description:
 *    Styling for different types of lists throughout the site.
 * Sections:
 *    $. Resets
 *    $. Components
 */
/* $. Reset
\*----------------------------------------------------------------*/
.nav,
.list--unset,
.pagination .pages,
.pagination .next,
.pagination .prev,
.wp-pagenavi .pages,
.wp-pagenavi .next,
.wp-pagenavi .prev {
  list-style: none;
  margin: 0;
}
.nav ul,
.nav ol,
.list--unset ul,
.pagination .pages ul,
.pagination .next ul,
.pagination .prev ul,
.wp-pagenavi .pages ul,
.wp-pagenavi .next ul,
.wp-pagenavi .prev ul,
.list--unset ol,
.pagination .pages ol,
.pagination .next ol,
.pagination .prev ol,
.wp-pagenavi .pages ol,
.wp-pagenavi .next ol,
.wp-pagenavi .prev ol {
  list-style: none;
  margin: 0;
}

.list--inline li,
.pagination .pages li,
.pagination .next li,
.pagination .prev li,
.wp-pagenavi .pages li,
.wp-pagenavi .next li,
.wp-pagenavi .prev li,
.list--inline dt,
.pagination .pages dt,
.pagination .next dt,
.pagination .prev dt,
.wp-pagenavi .pages dt,
.wp-pagenavi .next dt,
.wp-pagenavi .prev dt,
.list--inline dd,
.pagination .pages dd,
.pagination .next dd,
.pagination .prev dd,
.wp-pagenavi .pages dd,
.wp-pagenavi .next dd,
.wp-pagenavi .prev dd {
  display: inline-block;
  margin: 0 0.25em;
}
.list--inline li:first-child,
.pagination .pages li:first-child,
.pagination .next li:first-child,
.pagination .prev li:first-child,
.wp-pagenavi .pages li:first-child,
.wp-pagenavi .next li:first-child,
.wp-pagenavi .prev li:first-child,
.list--inline dt:first-child,
.pagination .pages dt:first-child,
.pagination .next dt:first-child,
.pagination .prev dt:first-child,
.wp-pagenavi .pages dt:first-child,
.wp-pagenavi .next dt:first-child,
.wp-pagenavi .prev dt:first-child,
.list--inline dd:first-child,
.pagination .pages dd:first-child,
.pagination .next dd:first-child,
.pagination .prev dd:first-child,
.wp-pagenavi .pages dd:first-child,
.wp-pagenavi .next dd:first-child,
.wp-pagenavi .prev dd:first-child {
  margin-left: 0;
}
.list--inline li:last-child,
.pagination .pages li:last-child,
.pagination .next li:last-child,
.pagination .prev li:last-child,
.wp-pagenavi .pages li:last-child,
.wp-pagenavi .next li:last-child,
.wp-pagenavi .prev li:last-child,
.list--inline dt:last-child,
.pagination .pages dt:last-child,
.pagination .next dt:last-child,
.pagination .prev dt:last-child,
.wp-pagenavi .pages dt:last-child,
.wp-pagenavi .next dt:last-child,
.wp-pagenavi .prev dt:last-child,
.list--inline dd:last-child,
.pagination .pages dd:last-child,
.pagination .next dd:last-child,
.pagination .prev dd:last-child,
.wp-pagenavi .pages dd:last-child,
.wp-pagenavi .next dd:last-child,
.wp-pagenavi .prev dd:last-child {
  margin-right: 0;
}
.list--inline dt,
.pagination .pages dt,
.pagination .next dt,
.pagination .prev dt,
.wp-pagenavi .pages dt,
.wp-pagenavi .next dt,
.wp-pagenavi .prev dt,
.list--inline dd,
.pagination .pages dd,
.pagination .next dd,
.pagination .prev dd,
.wp-pagenavi .pages dd,
.wp-pagenavi .next dd,
.wp-pagenavi .prev dd {
  font-style: normal;
}

/* $. Components
\*----------------------------------------------------------------*/
/**
 * Title:
 *    Button Module
 * Description:
 *    The .btn module and its extensions
 * Sections:
 *    $. Setup
 *    $. Component
 *    $. Modifications
 */
/* $. Setup
\*----------------------------------------------------------------*/
button,
input[type=button],
input[type=submit],
.btn,
a.btn {
  display: inline-block;
  padding: 0.4em 0.8em;
  font-weight: 400;
  text-align: center;
  font-size: 1.125rem;
  line-height: 1.2;
  border-top: 0;
  border-left: 0;
  border-right: 0;
}
@media screen and (min-width: 48em) {
  button,
  input[type=button],
  input[type=submit],
  .btn,
  a.btn {
    padding: 0.3333333333em 0.6666666667em;
  }
}

/* $. Component
\*----------------------------------------------------------------*/
/* $. Modifications
\*----------------------------------------------------------------*/
/**
 * Themes
 */
.btn--primary,
a.btn--primary.btn--primary {
  color: white;
  background: #5e76ac;
  border-bottom: 5px solid #c7cdd1;
  box-shadow: 0 0 5px #e3e6e8;
}
.btn--primary:hover, .btn--primary:focus,
a.btn--primary.btn--primary:hover,
a.btn--primary.btn--primary:focus {
  color: #b3b3b3;
  border-bottom: 5px solid #8f9ba3;
  box-shadow: 0 0 5px #c7cdd1;
}
.btn--primary:hover, .btn--primary:focus,
a.btn--primary.btn--primary:hover,
a.btn--primary.btn--primary:focus {
  color: white;
  border-bottom-color: #c7cdd1;
  background-color: #38486c;
}

.btn--primary,
a.btn--primary.btn--primary.btn--large {
  font-size: 1.4em;
}

.btn--secondary,
a.btn--secondary.btn--secondary {
  color: #5e76ac;
  background: none;
  border: 1px solid #fff;
  border-bottom-width: 5px;
}
.btn--secondary:hover,
a.btn--secondary.btn--secondary:hover {
  color: #5e76ac;
  background-color: #cccccc;
  border-bottom-color: white;
}

.btn--burgundy,
a.btn--burgundy.btn--burgundy {
  color: #a06d84;
  background: white;
  border-bottom: 5px solid #84566b;
  box-shadow: 0 0 5px #a06d84;
}
.btn--burgundy:hover, .btn--burgundy:focus,
a.btn--burgundy.btn--burgundy:hover,
a.btn--burgundy.btn--burgundy:focus {
  color: #462e39;
  border-bottom: 5px solid #462e39;
  box-shadow: 0 0 5px #84566b;
}

.btn--parmaviolet,
a.btn--parmaviolet.btn--parmaviolet {
  color: #7e91bd;
  background: white;
  border-bottom: 5px solid #5c74ac;
  box-shadow: 0 0 5px #7e91bd;
}
.btn--parmaviolet:hover, .btn--parmaviolet:focus,
a.btn--parmaviolet.btn--parmaviolet:hover,
a.btn--parmaviolet.btn--parmaviolet:focus {
  color: #37476b;
  border-bottom: 5px solid #37476b;
  box-shadow: 0 0 5px #5c74ac;
}

.btn--grey,
a.btn--grey.btn--grey {
  color: #687782;
  background: white;
  border-bottom: 5px solid #515d66;
  box-shadow: 0 0 5px #687782;
}
.btn--grey:hover, .btn--grey:focus,
a.btn--grey.btn--grey:hover,
a.btn--grey.btn--grey:focus {
  color: #24292d;
  border-bottom: 5px solid #24292d;
  box-shadow: 0 0 5px #515d66;
}

.btn--gform {
  float: right;
}
@media screen and (min-width: 48em) {
  .btn--gform {
    max-width: 50%;
  }
}
@media screen and (min-width: 78em) {
  .btn--gform {
    max-width: 40%;
  }
}

.btn--card {
  margin-top: 2em;
  display: block;
}
@media screen and (min-width: 30em) {
  .btn--card {
    max-width: 80%;
  }
}
@media screen and (min-width: 48em) {
  .btn--card {
    max-width: 60%;
  }
}
@media screen and (min-width: 78em) {
  .btn--card {
    max-width: 85%;
  }
}

.btn--crane,
a.btn--crane.btn--crane {
  color: #4b5981;
  background: white;
  border-bottom: 5px solid #384361;
  box-shadow: 0 0 5px #4b5981;
}
.btn--crane:hover, .btn--crane:focus,
a.btn--crane.btn--crane:hover,
a.btn--crane.btn--crane:focus {
  color: #131620;
  border-bottom: 5px solid #131620;
  box-shadow: 0 0 5px #384361;
}

/**
 * Position and size
 */
.btn--block {
  display: block;
  width: 100%;
}

.btn--inline-block {
  display: inline-block;
}

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

.btn--small {
  font-size: 0.8rem;
}

/**
 * Icons
 */
.btn--icon {
  position: relative;
  padding-right: 2.5em;
}
/**
 * Title:
 *    Panels
 * Description:
 *    Used to provide emphasis for a section of content
 * Sections:
 *    $. Setup
 *    $. Component
 *    $. Themes
 *    $. Sizing
 *    $. Grid
 */
/* $. Setup
\*----------------------------------------------------------------*/
/**
 * Mixin to give colors and backgrounds for your panel.
 *
 * @param  $text   Colour of the Text
 * @param  $bg     Colour of the Background
 */
/* $. Component
\*----------------------------------------------------------------*/
.panel, .sidebar__section, .wp-caption-text {
  color: #252525;
  background-color: #ffffff;
  transition: background-color 0.15s ease-out;
  position: relative;
  display: block;
  padding: 1rem;
  margin-bottom: 1rem;
}
.panel[href]:hover, [href].sidebar__section:hover, [href].wp-caption-text:hover, .panel[href]:focus, [href].sidebar__section:focus, [href].wp-caption-text:focus {
  color: #252525;
  background-color: #f2f2f2;
}
@media screen and (min-width: 48em) {
  .panel, .sidebar__section, .wp-caption-text {
    padding: 1.5rem 2rem 2rem 1.5rem;
  }
}

/* $. Sizing
\*----------------------------------------------------------------*/
.panel--large {
  padding: 2rem;
}
@media screen and (min-width: 48em) {
  .panel--large {
    padding: 4rem;
  }
}

.panel--small {
  padding: 0.5rem;
}
@media screen and (min-width: 48em) {
  .panel--small {
    padding: 1rem;
  }
}

.panel--slim, .sidebar__section, .wp-caption-text {
  padding: 0.75rem;
}
@media screen and (min-width: 48em) {
  .panel--slim, .sidebar__section, .wp-caption-text {
    padding: 1.5rem;
  }
}

/* $. Themes
\*----------------------------------------------------------------*/
.panel--white, .sidebar__section {
  color: #3f5263;
  background-color: #ffffff;
  transition: background-color 0.15s ease-out;
}
.panel--white[href]:hover, [href].sidebar__section:hover, .panel--white[href]:focus, [href].sidebar__section:focus {
  color: #3f5263;
  background-color: #f2f2f2;
}

.panel--grey {
  color: #3f5263;
  background-color: #e3e6e8;
  transition: background-color 0.15s ease-out;
}
.panel--grey[href]:hover, .panel--grey[href]:focus {
  color: #3f5263;
  background-color: #d5dadd;
}

.panel--border {
  border-bottom: 5px solid #cccccc;
}

.panel--success {
  border-color: #2ecc71;
}

.panel--error {
  border-color: #e74c3c;
}

.banner {
  position: relative;
  margin: 0 auto;
  padding: 0;
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  z-index: 1;
  height: 300px;
}
@media screen and (min-width: 30em) {
  .banner {
    height: 350px;
  }
}
@media screen and (min-width: 48em) {
  .banner {
    height: 400px;
  }
}
@media screen and (min-width: 62em) {
  .banner {
    height: 500px;
  }
}
@media screen and (min-width: 87em) {
  .banner {
    height: 600px;
  }
}

.banner__shim {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
}

.test--opacity .banner__shim {
  background-image: linear-gradient(to top, black, rgba(0, 0, 0, 0));
}

.test--no-opacity .banner__shim {
  background-image: url("../img/rgba.png");
  background-repeat: repeat-x;
  background-size: 5px 600px;
}

.banner__caption {
  position: relative;
  z-index: 10000;
  color: white;
  padding: 1em;
  margin: 0 auto;
  min-width: 15em;
  max-width: 68.5em;
  width: 85%;
  height: 300px;
}
@media screen and (min-width: 30em) {
  .banner__caption {
    height: 350px;
  }
}
@media screen and (min-width: 48em) {
  .banner__caption {
    height: 400px;
  }
}
@media screen and (min-width: 62em) {
  .banner__caption {
    height: 500px;
  }
}
@media screen and (min-width: 87em) {
  .banner__caption {
    height: 600px;
  }
}

.banner__caption-inner {
  position: absolute;
  left: 0;
  bottom: 1rem;
}
@media screen and (min-width: 48em) {
  .banner__caption-inner {
    right: 33%;
    bottom: 4.375rem;
  }
}
@media screen and (min-width: 62em) {
  .banner__caption-inner {
    right: 33%;
    bottom: 5.55rem;
  }
}
@media screen and (min-width: 78em) {
  .banner__caption-inner a {
    font-size: 1.4rem;
  }
}
.banner__caption-inner p {
  font-size: 1.5rem;
  line-height: 1.2;
  margin-bottom: 0.75rem;
}
@media screen and (min-width: 48em) {
  .banner__caption-inner p {
    font-size: 1.875rem;
  }
}
@media screen and (min-width: 62em) {
  .banner__caption-inner p {
    font-size: 1.88rem;
    margin-bottom: 1.25rem;
  }
}

.homepage-cards {
  padding: 2em 0;
  background-color: white;
}

.card {
  display: block;
  position: relative;
  margin: 1em 0;
}

.card--grey {
  background-color: #cccccc;
}

a.card--grey:hover {
  background-color: #b3b3b3;
}

.card--green {
  will-change: background;
  transition: background-color 200ms;
  background-color: #688b66;
}
.card--green .card__title a {
  border-bottom-color: #b4c5b3;
}
.card--green .card__title a:hover {
  border-bottom-color: white;
}

a.card--green:hover {
  background-color: #526e50;
}

.card--blue {
  will-change: background;
  transition: background-color 200ms;
  background-color: #6475a2;
}
.card--blue .card__title a {
  border-bottom-color: #b2bad1;
}
.card--blue .card__title a:hover {
  border-bottom-color: white;
}

a.card--blue:hover {
  background-color: #4f5e84;
}

.card--grey-blue {
  will-change: background;
  transition: background-color 200ms;
  background-color: #6475a2;
}
.card--grey-blue .card__title a {
  border-bottom-color: #b2bad1;
}
.card--grey-blue .card__title a:hover {
  border-bottom-color: white;
}

a.card--grey-blue {
  background-color: darkden(#6475a2, 5%);
}

.card--burgundy {
  will-change: background;
  transition: background-color 200ms;
  background-color: #a06d84;
}
.card--burgundy .card__title a {
  border-bottom-color: #d0b6c2;
}
.card--burgundy .card__title a:hover {
  border-bottom-color: white;
}

a.card--burgundy:hover {
  background-color: #84566b;
}

.card--parmaviolet {
  will-change: background;
  transition: background-color 200ms;
  background-color: #7e91bd;
}
.card--parmaviolet .card__title a {
  border-bottom-color: #bfc8de;
}
.card--parmaviolet .card__title a:hover {
  border-bottom-color: white;
}

a.card--parmaviolet:hover {
  background-color: #5c74ac;
}

.card--white {
  background-color: white;
}

a.card--white:hover {
  background-color: #cccccc;
}

.card--grey .card__title,
.card--white .card__title {
  color: #5e76ac;
}
.card--grey .card__title a,
.card--white .card__title a {
  border-bottom-color: #5e76ac;
}
.card--grey .card__content,
.card--white .card__content {
  color: #3f5263;
}

.card__icon {
  float: none;
  width: 100%;
  height: 120px;
  background-repeat: no-repeat;
  background-size: 90px;
  background-position: center bottom;
}
@media screen and (min-width: 62em) {
  .card__icon {
    float: left;
    width: 150px;
  }
}

.card__icon + .card__content {
  padding: 1em 2em 2em 2em;
}
@media screen and (min-width: 62em) {
  .card__icon + .card__content {
    padding: 2.5em 2em 2em 0;
    float: left;
    width: calc(100% - 150px);
  }
}
@media screen and (min-width: 78em) {
  .card__icon + .card__content {
    padding: 2.5em 4em 2em 0;
  }
}

.card__content {
  color: white;
  padding: 2em 3em 2em 2em;
}
.card__content p {
  line-height: 1.2;
  font-size: 1.125rem;
}
@media screen and (min-width: 62em) {
  .card__content p {
    font-size: 1.11rem;
  }
}
@media screen and (min-width: 62em) {
  .card__content {
    padding: 1.5em 3em 1.5em 1.5em;
  }
}

.card__title {
  font-weight: 400;
  font-size: 2rem;
  color: inherit;
  margin-bottom: 0.5em;
}
.card__title a:hover {
  border-bottom-color: #5e76ac;
}
.card__title a {
  border-bottom: 1px solid #c3cce0;
  color: inherit;
  font-size: 1.875rem;
}
@media screen and (min-width: 62em) {
  .card__title a {
    font-size: 2rem;
  }
}
@media screen and (min-width: 78em) {
  .card__title {
    font-size: 2.25rem;
  }
}

.card__excerpt a {
  color: inherit;
}

.card__icon .card__title a {
  font-size: 1.875rem;
}
@media screen and (min-width: 62em) {
  .card__icon .card__title a {
    font-size: 2.33rem;
  }
}

.faqs {
  margin: 1em 0;
}

.faq {
  position: relative;
  margin-bottom: 1em;
}

.faq__question,
.faq__answer {
  padding: 0.5rem 0.75rem;
  font-size: 1.11rem;
}
@media screen and (min-width: 48em) {
  .faq__question,
  .faq__answer {
    padding: 0.75rem 1.5rem;
  }
}

.faq__question {
  display: block;
  position: relative;
  background-color: #7e91bd;
  color: white;
  margin-bottom: 0;
  padding-right: 2em;
  font-weight: 700;
}

.faq__anchor {
  position: absolute;
  right: 1em;
}

.faq__answer {
  position: relative;
  background-color: white;
  min-height: 100px;
}
.faq__answer p:last-child {
  margin-bottom: 0;
}

.faq__answer.u-cutout-corner:before {
  z-index: 2;
  border-color: #e3e6e8 transparent;
}

/**
 * Title:
 *    Download Button Module
 * Description:
 *    The .download module and its extensions
 * Sections:
 *    $. Setup
 *    $. Component
 *    $. Modifications
 */
/* $. Setup
\*----------------------------------------------------------------*/
.download {
  font-weight: 700;
  text-decoration: underline;
}
.download:before {
  content: "";
  background-image: url(../../app/icons/download.svg);
  background-repeat: no-repeat;
  width: 1em;
  height: 1.5em;
  display: inline-block;
  vertical-align: text-bottom;
  margin-right: 0.5em;
}
.download span {
  font-weight: 400;
}

/**
 * Title:
 *    Inset
 * Description:
 *    Used to provide emphasis for a section of text
 * Sections:
 *    $. Component
 */
/* $. Component
\*----------------------------------------------------------------*/
.inset {
  border-left: 10px solid white;
  border-bottom: 1px solid white;
  display: block;
  padding-left: 0.5rem;
  padding-bottom: 0.5rem;
  margin-bottom: 1rem;
}

/**
 * Component: Team Members
 */
.team-member {
  margin-bottom: 1rem;
}
.team-member img {
  width: 100%;
}
@media screen and (min-width: 62em) {
  .team-member {
    margin-bottom: 2rem;
  }
}

.team-member__caption {
  margin-top: 1rem;
}

.team-member__name {
  margin-bottom: 0;
  font-size: 1rem;
  font-weight: 700;
  color: #3f5263;
}

.team-member__title {
  font-size: 1rem;
  color: #3f5263;
  display: block;
  margin: 0.5rem 0;
}

.search-summary {
  margin-bottom: 1rem;
}

.search-result {
  border-bottom: 1px solid white;
  margin-bottom: 1rem;
}

.search-result__title {
  margin-bottom: 1rem;
  font-weight: bold;
}

/**
 * Slider
 */
.slider {
  position: relative;
  max-height: 300px;
}
@media screen and (min-width: 30em) {
  .slider {
    max-height: 350px;
  }
}
@media screen and (min-width: 48em) {
  .slider {
    max-height: 400px;
  }
}
@media screen and (min-width: 62em) {
  .slider {
    max-height: 500px;
  }
}
@media screen and (min-width: 78em) {
  .slider {
    max-height: 500px;
  }
}
@media screen and (min-width: 87em) {
  .slider {
    max-height: 600px;
  }
}

.slider__control {
  top: 90%;
  left: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
}
@media screen and (min-width: 48em) {
  .slider__control {
    top: 93%;
  }
}

.slider__dot-container {
  display: inline-block;
}

.slider__dots {
  list-style: none;
  margin-left: 0;
  margin-bottom: 0;
}
.slider__dots li {
  display: inline-block;
  margin-bottom: 0;
}
.slider__dots button {
  width: 1.7rem;
  height: 1.7rem;
  margin: 0rem 0.2rem;
  border: 0;
  border: 2px solid white;
  border-radius: 100%;
  text-indent: -99999px;
  background-color: transparent;
  padding: 0;
}
.slider__dots li.slick-active button {
  background-color: white;
}

.slider__shim:not(:first-child) {
  position: absolute;
  top: 0;
  left: 0;
}

.slider__slide {
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: cover;
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 300px;
}
@media screen and (min-width: 30em) {
  .slider__slide {
    height: 350px;
  }
}
@media screen and (min-width: 48em) {
  .slider__slide {
    height: 400px;
  }
}
@media screen and (min-width: 62em) {
  .slider__slide {
    height: 500px;
  }
}
@media screen and (min-width: 87em) {
  .slider__slide {
    height: 600px;
  }
}
.slider__slide:after {
  content: "";
  display: block;
  width: 100%;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.slider__image {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.slider__group {
  position: relative;
  z-index: 10;
  margin: 0 auto;
  min-width: 15em;
  max-width: 68.5em;
  width: 92.5%;
  height: 100%;
}
@media screen and (min-width: 30em) {
  .slider__group {
    width: 85%;
  }
}

.slider__text {
  position: absolute;
  left: 0;
  bottom: 3.5rem;
}
@media screen and (min-width: 48em) {
  .slider__text {
    right: 33%;
    bottom: 4.375rem;
  }
}
@media screen and (min-width: 62em) {
  .slider__text {
    right: 33%;
    bottom: 5.55rem;
  }
}

.slider__caption {
  color: white;
  font-size: 1.5rem;
  line-height: 1.2;
}
@media screen and (min-width: 48em) {
  .slider__caption {
    font-size: 1.875rem;
  }
}
@media screen and (min-width: 62em) {
  .slider__caption {
    font-size: 1.88rem;
  }
}

.slider__title {
  margin-bottom: 0;
  font-size: 30rem;
}
@media screen and (min-width: 87em) {
  .slider__title {
    font-size: 38rem;
  }
}

.slider__arrows {
  text-align: center;
  list-style-type: none;
  display: inline-block;
}
.slider__arrows button {
  text-indent: -99999px;
  background-color: transparent;
  width: 1.7rem;
  height: 1.7rem;
  border-radius: 100%;
  border: 2px solid #688b66;
  background-color: #688b66;
  padding: 0;
}
.slider__arrows button:hover {
  cursor: pointer;
}

.slider__prev {
  background-image: url(../../app/icons/previous.svg);
  background-repeat: no-repeat;
}

.slider__next {
  background-image: url(../../app/icons/next.svg);
  background-repeat: no-repeat;
}

.slider__toggle--pause {
  background-image: url(../../app/icons/pause.svg);
  background-repeat: no-repeat;
  background-size: 140%;
  background-position: center;
}

.slider__toggle--play {
  background-image: url(../../app/icons/play.svg);
  background-repeat: no-repeat;
  background-size: 140%;
  background-position: center;
}

/* $. Interface - Project specific objects i.e. .work, .product, etc
\*----------------------------------------------------------------*/
/**
 * Title:
 *    Section object
 * Description:
 *    Used to visually define a different section. This is to be used as a main object that
 *    everything sits within.
 * Sections:
 *    $. Setup
 *    $. Base
 *    $. Elements
 *    $. Themes
 *    $. Sizing
 */
/* $. Setup
\*----------------------------------------------------------------*/
/**
 * Mixin to give colors and backgrounds for your section.
 *
 * @param  $text   Colour of the Text
 * @param  $bg     Colour of the Background
 */
/* $. Base
\*----------------------------------------------------------------*/
.section {
  position: relative;
  padding: 1em 0;
}
@media screen and (min-width: 48em) {
  .section {
    padding: 2em 0;
  }
}

/* $. Elements
\*----------------------------------------------------------------*/
/* $. Themes
\*----------------------------------------------------------------*/
/* $. Sizing
\*----------------------------------------------------------------*/
.section--small {
  padding: 1em 0;
}

.section--large {
  padding: 2em 0 2em 0;
}
@media screen and (min-width: 48em) {
  .section--large {
    padding: 4em 0 4em 0;
  }
}

/**
 * Title:
 *    Navigation
 * Description:
 *    The .nav module and its extensions
 * Sections:
 *    $. Variables
 *    $. Container
 *    $. Component
 *    $. Primary
 *    $. Secondary
 *    $. Tertiary
 */
/* $. Variables
\*----------------------------------------------------------------*/
/* $. Container
\*----------------------------------------------------------------*/
.nav-container {
  padding-top: 4em;
}
@media screen and (min-width: 30em) {
  .nav-container {
    padding-top: 120px;
  }
}
@media screen and (min-width: 62em) {
  .nav-container {
    padding-top: 0;
  }
}

/* $. Component
\*----------------------------------------------------------------*/
.nav__item {
  position: relative;
}

/* $. Primary
\*----------------------------------------------------------------*/
.nav--primary {
  bottom: 0;
}
@media screen and (min-width: 62em) {
  .nav--primary .nav__item {
    margin-left: 2em;
  }
}
@media screen and (min-width: 87em) {
  .nav--primary {
    bottom: 0.5em;
  }
}

@media screen and (min-width: 62em) {
  .nav--primary .nav__item .nav__link {
    text-transform: uppercase;
    position: relative;
    font-size: 1.2em;
    padding: 0.5em 0;
  }
  .nav--primary .nav__item .nav__link:hover {
    text-decoration: none;
  }
  .nav--primary .nav__item .nav__link:hover:after {
    display: block;
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 0.25em;
    background-color: white;
    transform: skew(-33deg);
  }
}
@media screen and (min-width: 78em) {
  .nav--primary .nav__item .nav__link {
    font-size: 1.33rem;
  }
}

.nav--primary .nav__item.is-current .nav__link:hover {
  text-decoration: none;
}
@media screen and (min-width: 62em) {
  .nav--primary .nav__item.is-current .nav__link:after {
    display: block;
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 0.25em;
    background-color: white;
    transform: skew(-33deg);
  }
}

.nav--primary .sub-menu {
  padding-left: 20px;
}
@media screen and (min-width: 62em) {
  .nav--primary .sub-menu {
    position: absolute;
    top: 58.5px;
    left: -9999px;
    z-index: 20000;
    background: white;
    padding: 1em;
    margin-left: 0;
  }
  .nav--primary .sub-menu .nav__item {
    float: none;
    margin: 0;
  }
  .nav--primary .sub-menu .nav__item .nav__link {
    font-size: 1.222rem;
    text-align: center;
    line-height: 1.3;
    color: #7e91bd;
    margin: 0;
    text-transform: none;
    padding: 5px;
    white-space: nowrap;
  }
  .nav--primary .sub-menu .nav__item .nav__link:hover {
    color: #4d6395;
  }
  .nav--primary .sub-menu .nav__item .nav__link:after {
    content: none;
  }
  .nav--primary .sub-menu:before {
    content: "";
    position: absolute;
    top: -10px;
    width: 0;
    height: 0;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
    z-index: 30000;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid white;
  }
}

@media screen and (min-width: 62em) {
  .nav__item:hover > .sub-menu {
    left: 50%;
    transform: translate(-50%, 0);
  }
}

/* $. Secondary
\*----------------------------------------------------------------*/
@media screen and (min-width: 62em) {
  .nav--secondary .nav__item .nav__link {
    padding: 0 0 0 1em;
    font-size: 0.9em;
  }
  .nav--secondary .nav__item .nav__link:hover {
    text-decoration: underline;
  }
}
@media screen and (min-width: 87em) {
  .nav--secondary .nav__item .nav__link {
    font-size: 1em;
  }
}

@media screen and (min-width: 62em) {
  .nav--secondary .nav__item.is-current .nav__link {
    text-decoration: underline;
  }
}

/* $. Tertiary
\*----------------------------------------------------------------*/
.nav--tertiary {
  padding-bottom: 2em;
}

.nav--tertiary .nav__item {
  display: block;
  margin-bottom: 0;
}
@media screen and (min-width: 62em) {
  .nav--tertiary .nav__item {
    float: left;
  }
  .nav--tertiary .nav__item:last-child .nav__link {
    margin: 0.5rem 0 0.5rem 0;
  }
  .nav--tertiary .nav__item.is-current .nav__link {
    color: #687782;
    text-decoration: none;
    border-bottom: 1px solid #687782;
  }
}

.nav--tertiary .nav__link {
  display: block;
  font-size: 1rem;
  color: #484a4b;
}
@media screen and (min-width: 62em) {
  .nav--tertiary .nav__link {
    margin: 0.5rem 1rem 0.5rem 0;
    border-bottom: 1px solid #484a4b;
  }
  .nav--tertiary .nav__link:hover {
    color: #3f5263;
    border-bottom-color: #3f5263;
  }
}

/* $. Shared styles
\*----------------------------------------------------------------*/
.nav--primary .nav__item,
.nav--secondary .nav__item {
  display: block;
  margin-bottom: 0;
}
.nav--primary .nav__item.is-current .nav__link,
.nav--secondary .nav__item.is-current .nav__link {
  background-color: #748490;
}
@media screen and (min-width: 62em) {
  .nav--primary .nav__item,
  .nav--secondary .nav__item {
    float: left;
  }
  .nav--primary .nav__item.is-current .nav__link,
  .nav--secondary .nav__item.is-current .nav__link {
    background-color: inherit;
  }
}

.nav--primary .nav__link,
.nav--secondary .nav__link {
  display: block;
  color: white;
  padding: 0.5em 1em;
}
@media screen and (min-width: 62em) {
  .nav--primary .nav__link,
  .nav--secondary .nav__link {
    padding: inherit;
  }
}

/**
 * Title:
 *    Breadcrumbs
 * Description:
 *    Styling the breadcrumbs component.
 * Sections:
 *    $. Variables
 *    $. Base
 */
/* $. Variables
\*----------------------------------------------------------------*/
/* $. Base
\*----------------------------------------------------------------*/
.breadcrumbs {
  position: relative;
  margin: 0 0 2em 0;
  font-size: 1rem;
}
@media screen and (min-width: 62em) {
  .breadcrumbs {
    margin: 0 0 3em 0;
    padding: 1em 0 3em 0;
    border-bottom: 1px solid white;
  }
}
.breadcrumbs a {
  font-weight: 400;
  color: #5e76ac;
  border-bottom: 1px solid #5e76ac;
  border-bottom-color: rgba(94, 118, 172, 0.15);
}
.breadcrumbs a:hover, .breadcrumbs a:focus {
  border-bottom-color: rgba(94, 118, 172, 0.5);
}

.pagination,
.wp-pagenavi {
  margin: 2em auto 0 auto;
  text-align: center;
  font-size: 1.11rem;
}
.pagination a,
.wp-pagenavi a {
  display: inline-block;
  margin: 0 0.25em;
  line-height: 1;
  border-bottom: 1px solid #5e76ac;
}
.pagination .pages,
.pagination .next,
.pagination .prev,
.wp-pagenavi .pages,
.wp-pagenavi .next,
.wp-pagenavi .prev {
  display: inline-block;
  text-align: center;
}
.pagination .pages li,
.wp-pagenavi .pages li {
  display: inline-block;
  padding-right: 0.25em;
  margin: 0;
  border-right: 1px solid #5e76ac;
  text-align: center;
}
.pagination .pages li:last-child,
.wp-pagenavi .pages li:last-child {
  padding-right: 0;
  border-right: 0;
}
.pagination .pages .disabled,
.wp-pagenavi .pages .disabled {
  cursor: not-allowed;
  color: #3f5263;
  border-bottom: 0;
}

.wp-pagenavi .pages {
  display: none;
}

/**
 * Mobile nav toggle
 */
.toggle {
  position: absolute;
  top: 1em;
  right: 1em;
  width: 25px;
  height: 25px;
  text-align: center;
  line-height: 25px;
  z-index: 20;
}
@media screen and (min-width: 62em) {
  .toggle {
    display: none;
  }
}

.notice {
  padding: 0.5em 1em;
  color: #687782;
  box-shadow: 0 0 2px black;
  background-color: white;
  margin-bottom: 2em;
}
.notice p {
  color: inherit;
  margin-bottom: 0;
}
.notice a:hover {
  text-decoration: underline;
}

.notice--error {
  color: white;
  background-color: #d62323;
}

/**
 * Title:
 *    Cookie consent
 * Description:
 *    Styling the cookie consent bar.
 * Sections:
 *    $. Base
 */
/* $. Base
\*----------------------------------------------------------------*/
#cookie-law-info-bar .cli_messagebar_head {
  font-weight: bold;
  font-size: 1.3rem;
  margin: 1rem 0 1.25rem 0;
}
#cookie-law-info-bar .cli_mixd_message {
  font-size: 1.1rem;
  font-weight: normal;
  margin-bottom: 1.6rem;
}
#cookie-law-info-bar .cli_mixd_message a {
  text-decoration: underline;
  color: #1d70b8;
}
#cookie-law-info-bar .cli_mixd_message a:hover {
  color: #003078;
}
#cookie-law-info-bar .cli_mixd_buttons a {
  font-size: 1.1rem;
  padding: 0.8rem 2rem;
  background-color: #00703c;
  color: white;
  font-weight: normal;
  margin: 0 0.5rem 1rem 0.5rem;
  line-height: 1.25;
  min-width: 12rem;
  display: inline-block;
}
#cookie-law-info-bar .cli_mixd_buttons a:hover {
  background-color: #00572e !important;
}

/* $. Layout - Page based layouts i.e. .header, .page-86, etc
\*----------------------------------------------------------------*/
/**
 * Title:
 *    Containers
 * Description:
 *    Container based layout modules
 * Sections:
 *    $. Base
 *    $. Modifications
 */
/* $. Base
\*----------------------------------------------------------------*/
.container {
  margin: 0 auto;
  width: 92.5%;
  min-width: 15em;
  max-width: 68.5em;
}
@media screen and (min-width: 30em) {
  .container {
    width: 85%;
  }
}

/* $. Modifications
\*----------------------------------------------------------------*/
.container--small {
  max-width: 850px;
}

.container--flush {
  position: relative;
  width: 100%;
}
@media screen and (min-width: 62em) {
  .container--flush {
    width: 85%;
  }
}

.container--tabs {
  padding-bottom: 3rem;
}

/**
 * Custom templates
 */
.content-page {
  background-color: #e3e6e8;
  padding-top: 3em;
  padding-bottom: 3em;
  border-top: 2px solid white;
}
.content-page .card:before {
  border-color: #e3e6e8 transparent;
}

.section-style {
  padding-bottom: 0;
}

@media screen and (min-width: 62em) {
  .page-template-tpl-section-a .excerpt,
  .page-template-tpl-section-b .excerpt {
    border-bottom: 1px solid white;
    margin-bottom: 2em;
  }
}

/**
 * Title:
 *    Content
 * Description:
 *    Content coming from the CMS
 * Sections:
 *    $. Content
 */
/* $. Content
\*----------------------------------------------------------------*/
.the-content {
  margin-bottom: 1em;
}
.the-content a {
  color: #5e76ac;
  border-bottom: 1px solid #a1afcf;
}
.the-content a:hover,
.the-content a:focus {
  color: #495e8e;
  border-bottom-color: #5e76ac;
}
.the-content img {
  border: 10px solid white;
}
.the-content img.alignleft,
.the-content .alignleft {
  display: block;
  float: none;
  margin: 1em auto;
}
@media screen and (min-width: 48em) {
  .the-content img.alignleft,
  .the-content .alignleft {
    float: left;
    margin: 1em 1em 1em 0;
  }
}
.the-content img.alignright,
.the-content .alignright {
  display: block;
  float: none;
  margin: 1em auto;
}
@media screen and (min-width: 48em) {
  .the-content img.alignright,
  .the-content .alignright {
    float: right;
    margin: 1em 0 1em 1em;
  }
}
.the-content table td {
  background: white;
}
.the-content .media__img img {
  border: none;
}
.the-content .download {
  border-bottom: none;
}

/*
 * Excerpt
 */
.excerpt {
  padding-bottom: 1em;
  margin-bottom: 1em;
  border-bottom: 1px solid white;
}

/*
 * Page title
 */
.page-title {
  margin-bottom: 1rem;
  font-size: 2.5rem;
  font-weight: 400;
}
@media screen and (min-width: 62em) {
  .page-title {
    font-size: 2.66rem;
  }
}

@media screen and (min-width: 62em) {
  .page .headline {
    padding-right: 1rem;
  }
}
@media screen and (min-width: 78em) {
  .page .headline {
    padding-right: 2rem;
  }
}

/*
 * Post index
 */
.panel.post, .post.sidebar__section, .post.wp-caption-text {
  background-color: white;
  margin-bottom: 1em;
  /*&:last-child {
      margin-bottom: 0;
  }*/
}
.panel.post .media__img img, .post.sidebar__section .media__img img, .post.wp-caption-text .media__img img {
  max-width: 100%;
  display: block;
  margin: 1em auto;
}
@media screen and (min-width: 62em) {
  .panel.post .media__img img, .post.sidebar__section .media__img img, .post.wp-caption-text .media__img img {
    margin: 0.5em 0;
  }
}

.panel.post.u-cutout-corner:before, .post.u-cutout-corner.sidebar__section:before, .post.u-cutout-corner.wp-caption-text:before {
  border-color: #e3e6e8 transparent;
}

.panel.post .meta, .post.sidebar__section .meta, .post.wp-caption-text .meta {
  margin-bottom: 0.5em;
  font-size: 1rem;
  font-weight: 400;
}
.panel.post .meta a, .post.sidebar__section .meta a, .post.wp-caption-text .meta a {
  font-weight: 700;
  border-bottom: 1px solid #c3cce0;
}
.panel.post .meta a:hover, .post.sidebar__section .meta a:hover, .post.wp-caption-text .meta a:hover {
  border-bottom-color: #5e76ac;
}

.panel.post .post__title, .post.sidebar__section .post__title, .post.wp-caption-text .post__title {
  margin-bottom: 0.3333333333em;
  font-weight: 400;
  line-height: 1.2;
  font-size: 1.875rem;
}
.panel.post .post__title a, .post.sidebar__section .post__title a, .post.wp-caption-text .post__title a {
  text-decoration: none;
  border-bottom: 1px solid #c3cce0;
}
.panel.post .post__title a:hover, .post.sidebar__section .post__title a:hover, .post.wp-caption-text .post__title a:hover {
  border-bottom-color: #5e76ac;
}
@media screen and (min-width: 30em) {
  .panel.post .post__title, .post.sidebar__section .post__title, .post.wp-caption-text .post__title {
    font-size: 2rem;
  }
}
@media screen and (min-width: 62em) {
  .panel.post .post__title, .post.sidebar__section .post__title, .post.wp-caption-text .post__title {
    font-size: 1.88rem;
  }
}
@media screen and (min-width: 78em) {
  .panel.post .post__title, .post.sidebar__section .post__title, .post.wp-caption-text .post__title {
    font-size: 1.875rem;
  }
}

.panel.resource, .resource.sidebar__section, .resource.wp-caption-text {
  background-color: #5e76ac;
}

.panel.resource .meta, .resource.sidebar__section .meta, .resource.wp-caption-text .meta {
  color: white;
}
.panel.resource .meta a, .resource.sidebar__section .meta a, .resource.wp-caption-text .meta a {
  color: white;
  border-bottom-color: #afbbd6;
}
.panel.resource .meta a:hover, .resource.sidebar__section .meta a:hover, .resource.wp-caption-text .meta a:hover {
  border-bottom-color: white;
}

.panel.resource .post__title a, .resource.sidebar__section .post__title a, .resource.wp-caption-text .post__title a {
  color: white;
}
.panel.resource .post__title a:hover, .resource.sidebar__section .post__title a:hover, .resource.wp-caption-text .post__title a:hover {
  border-bottom-color: white;
}

.panel.resource .post__excerpt, .resource.sidebar__section .post__excerpt, .resource.wp-caption-text .post__excerpt {
  color: white;
}

.contact-details dt,
.social-details dt {
  float: left;
  width: 15%;
}
.contact-details dt + dd,
.social-details dt + dd {
  width: 85%;
  float: left;
  font-style: normal;
  margin-bottom: 0;
}
@media screen and (min-width: 30em) {
  .contact-details dt,
  .social-details dt {
    width: 25%;
  }
  .contact-details dt + dd,
  .social-details dt + dd {
    width: 75%;
  }
}
@media screen and (min-width: 48em) {
  .contact-details dt,
  .social-details dt {
    width: 15%;
  }
  .contact-details dt + dd,
  .social-details dt + dd {
    width: 85%;
  }
}
@media screen and (min-width: 62em) {
  .contact-details dt,
  .social-details dt {
    width: 20%;
  }
  .contact-details dt + dd,
  .social-details dt + dd {
    width: 80%;
  }
}

.backlink a {
  border-bottom: 1px solid #c3cce0;
}
.backlink a:hover {
  border-bottom-color: #5e76ac;
}

/**
 * Title:
 *    CMS
 * Description:
 *    Fields and selectors that come through WordPress or a plugin
 * Sections:
 *    $. Gravity Forms
 *    $. WYSIWIG
 */
/* $. Gravity Forms
\*----------------------------------------------------------------*/
.gform_fields {
  margin-bottom: 0;
}

.gfield {
  margin-bottom: 2em;
}

.gfield_required {
  display: inline-block;
  margin-left: 0.25em;
}

.validation_message {
  color: #d62323;
  margin-top: 0.5em;
  margin-bottom: 1em;
  font-size: 0.85rem;
}
.ginput_container_textarea + .validation_message {
  margin-top: 0;
}

.gform_validation_container {
  display: none;
  user-select: none;
}

/* $. WYSIWIG
\*----------------------------------------------------------------*/
.alignleft {
  float: left;
  margin: 1em 1em 0 0;
}

.alignright {
  float: right;
  margin: 1em 0 0 1em;
  text-align: right;
}

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

.wp-caption {
  margin: 2em 0 3em 0;
}

.wp-caption-text {
  background-color: white;
  font-size: 1.11rem;
  line-height: 1.2;
}

/* $. Other
\*----------------------------------------------------------------*/
/**
 * Title:
 *    Header
 * Description:
 *    Header layout module, used to define the header at the top of each page.
 *    This could be used in combination with other components to create a
 *    fully-fledged design.
 * Sections:
 *    $. Base
 *    $. Logo
 *    $. Nav
 *    $. Toggle
 *    $. Search
 */
/* $. Base
\*----------------------------------------------------------------*/
.header {
  position: relative;
  background-color: #484a4b;
  padding: 1em;
}
@media screen and (min-width: 62em) {
  .header {
    padding: 1rem 0;
  }
}

/* $. Wrapper
\*----------------------------------------------------------------*/
.header__wrap {
  display: flex;
  align-items: flex-end;
  width: 100%;
  margin: 0 auto;
}
@media screen and (min-width: 62em) {
  .header__wrap {
    width: 85%;
    min-width: 15em;
    max-width: 68.5em;
  }
}

/* $. Shim
\*----------------------------------------------------------------*/
.header__shim {
  display: none;
}
@media screen and (min-width: 62em) {
  .header__shim {
    display: block;
    background-color: #6475a2;
    border-top: 3px solid white;
    border-right: 3px solid white;
    height: 140px;
    position: absolute;
    bottom: -1em;
    left: -100px;
    width: 46%;
    z-index: 10;
  }
  .test--csstransforms3d .header__shim {
    transform: skew(-33deg);
  }
}
/* $. Logo
\*----------------------------------------------------------------*/
.header__home-link {
  display: block;
  width: 40%;
  z-index: 11;
}
.is-active-nav .header__home-link {
  display: none;
}
@media screen and (min-width: 48em) {
  .header__home-link {
    width: 30%;
    max-width: 18rem;
  }
}

.header__logo {
  width: 100%;
}
@media screen and (min-width: 62em) {
  .header__logo {
    margin-bottom: 0.75rem;
  }
}

/* $. Nav Primary
\*----------------------------------------------------------------*/
.header__nav {
  display: none;
  flex: 1 0;
  z-index: 10;
  flex-direction: column;
  align-items: flex-end;
}
.is-active-nav .header__nav {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  padding-top: 3rem;
  align-items: flex-start;
  flex: auto;
  width: 100%;
  background-color: #484a4b;
}
@media screen and (min-width: 30em) {
  .header__nav {
    width: auto;
  }
}
@media screen and (min-width: 62em) {
  .header__nav {
    display: flex;
  }
}

/* $. Action Group (CTA and search)
\*----------------------------------------------------------------*/
.is-active-nav .header__action-group {
  width: 100%;
  max-width: 70%;
  padding: 0.5rem;
}
@media screen and (min-width: 62em) {
  .header__action-group {
    display: flex;
    justify-content: flex-end;
    width: 90%;
    margin-bottom: 0.75em;
  }
}

/* $. External Link
\*----------------------------------------------------------------*/
.header__external-link {
  display: flex;
  align-items: center;
  background-color: white;
  color: #4B5981;
  padding: 0.5em 1em;
}
.header__external-link img {
  width: 1rem;
  margin-left: 0.4rem;
}
.is-active-nav .header__external-link {
  margin-bottom: 0.75rem;
}
.header__external-link:hover {
  text-decoration: underline;
}
@media screen and (min-width: 62em) {
  .header__external-link {
    font-size: 0.9em;
    display: inline-block;
  }
}
@media screen and (min-width: 78em) {
  .header__external-link {
    margin-top: 0;
  }
}
@media screen and (min-width: 87em) {
  .header__external-link {
    font-size: 1em;
  }
}

/* $. Search
\*----------------------------------------------------------------*/
.search-form {
  display: flex;
  position: relative;
  width: 100%;
  overflow: hidden;
  margin: 0;
  border: 1px solid white;
}
.search-form:focus-within {
  border-color: orange;
}
@media screen and (min-width: 62em) {
  .search-form {
    border-color: #ccc;
    width: 45%;
    margin-left: 5%;
  }
}
@media screen and (min-width: 78em) {
  .search-form {
    max-width: 280px;
  }
}

.search-form > label {
  display: block;
  margin: 0;
  padding: 0;
  flex: 1 0;
}

.screen-reader-text {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  clip: rect(1px, 1px, 1px, 1px);
  overflow: hidden;
}

.search-field {
  background-color: transparent;
  display: block;
  width: 100%;
  height: 100%;
  border: none;
  margin: 0;
  padding: 0 10px;
  color: white;
}
.search-field:focus {
  box-shadow: none;
}
.search-field::placeholder {
  color: white;
}

.search-submit {
  display: block;
  margin: 0;
  padding: 0;
  text-indent: -9999px;
  width: 40px;
  height: 40px;
  min-width: 0;
  background: url("../../../assets/app/icons/search-icon.svg") no-repeat center;
  background-size: 20px;
  border: none;
}

/**
 * Title:
 *    Sidebar
 * Description:
 *    Used to display the Sidebar's styling on pages or posts
 *    which have one.
 * Sections:
 *    $. Base
 */
/* $. Base
\*----------------------------------------------------------------*/
.sidebar {
  margin-top: 1em;
}
@media screen and (min-width: 62em) {
  .sidebar {
    padding-right: 1em;
    margin-top: 0;
  }
}
@media screen and (min-width: 78em) {
  .sidebar {
    padding-right: 2em;
  }
}
@media screen and (min-width: 87em) {
  .sidebar {
    padding-right: 4em;
  }
}

/* $. Elements
\*----------------------------------------------------------------*/
.sidebar__section {
  margin-bottom: 1em;
}

.sidebar__heading {
  padding: 0.5rem 0.75rem;
  background: #687782;
  color: white;
  font-size: 1.33rem;
}
@media screen and (min-width: 48em) {
  .sidebar__heading {
    padding: 0.75rem 1.5rem;
  }
}

.sidebar__list a {
  color: #5e76ac;
  border-bottom: 1px solid #a1afcf;
}
.sidebar__list a:hover,
.sidebar__list a:focus {
  color: #495e8e;
  border-bottom-color: #5e76ac;
}
.sidebar__list .is-current a {
  border-bottom: 0;
}
.sidebar__list .is-current a:hover {
  color: inherit;
}

.sidebar__block {
  margin-bottom: 1em;
}
.sidebar__block p {
  font-size: 1.11rem;
  margin-bottom: 0;
}
.sidebar__block .embed {
  margin-top: 1em;
}
.sidebar__block a {
  color: #5e76ac;
  border-bottom: 1px solid #a1afcf;
}
.sidebar__block a:hover,
.sidebar__block a:focus {
  color: #495e8e;
  border-bottom-color: #5e76ac;
}

/**
 * Title:
 *    Footer
 * Description:
 *    Used to define the sites main footer at the bottom of the page.
 *    Don't use this as a place to put generic <footer> tags.
 * Sections:
 *    $. Footer
 *    $. Copyright
 */
/* $. Footer
\*----------------------------------------------------------------*/
.footer {
  padding: 2.5em 0;
  background: #484a4b url("../img/arrow-overlay.png") no-repeat left bottom;
}
@media screen and (min-width: 48em) {
  .footer {
    background-position: left center;
    background-size: contain;
  }
}

.footer__logo img {
  max-width: 18rem;
}
@media screen and (min-width: 30em) {
  .footer__logo img {
    display: block;
  }
}
@media screen and (min-width: 48em) {
  .footer__logo img {
    display: inline;
  }
}
@media screen and (min-width: 62em) {
  .footer__logo img {
    margin-bottom: 1.5rem;
  }
}
@media screen and (min-width: 78em) {
  .footer__logo img {
    margin-bottom: 0;
    margin-right: 1.5rem;
  }
}

@media screen and (min-width: 30em) {
  .footer__logo-group {
    text-align: center;
  }
}
@media screen and (min-width: 48em) {
  .footer__logo-group {
    text-align: left;
  }
}

.footer__block {
  margin-bottom: 1.5em;
  color: white;
}
@media screen and (min-width: 62em) {
  .footer__block {
    margin-bottom: 0;
  }
}
@media screen and (min-width: 62em) {
  .footer__block--lined {
    border-left: 1px solid white;
    padding-left: 1em;
  }
}
.footer__block p {
  margin-bottom: 0;
  line-height: 1.2;
  font-size: 0.875rem;
}
@media screen and (min-width: 78em) {
  .footer__block p {
    font-size: 1rem;
  }
}
.footer__block a {
  color: inherit;
}
.footer__block a:hover,
.footer__block a:focus {
  text-decoration: underline;
}

.footer__nav {
  float: none;
  width: 100%;
  padding: 1em 0;
}
@media screen and (min-width: 62em) {
  .footer__nav {
    padding: 0.6rem 0 0 0;
    width: 50%;
    float: left;
  }
}

.footer__img {
  display: inline-block;
}

.footer__rcs {
  display: inline-block;
  margin-right: 1em;
}
.footer__rcs img {
  width: 100%;
  max-width: 14rem;
}
@media screen and (min-width: 87em) {
  .footer__rcs {
    display: block;
    margin: 0;
  }
}

/* $. Copyright
\*----------------------------------------------------------------*/
.copyright {
  float: none;
  width: 100%;
  font-size: 1rem;
}
@media screen and (min-width: 62em) {
  .copyright {
    font-size: 1rem;
    padding-top: 1em;
    float: right;
    width: 50%;
    text-align: right;
  }
}
.copyright a {
  color: inherit;
}

/* $. Helpers - i.e. Clearfixes, accessbility hidden, etc
\*----------------------------------------------------------------*/
/**
 * Title:
 *    Extras
 * Description:
 *    Any other helpers which will be used throughout the project
 * Sections:
 *    $. Clearfix
 *    $. Flexible
 *    $. States
 *    $. Breakpoint Visibility
 */
/* $. Clearfix - http://goo.gl/5Fvrh
\*----------------------------------------------------------------*/
form:after, .panel:after, .inset:after, .section:after, .nav:after, .wp-caption-text:after, .sidebar__section:after, .footer:after,
.cf:after,
.media:after,
.contact-details:after,
.social-details:after,
.grid:after {
  content: "";
  display: table;
  clear: both;
}

/* $. Flexible
\*----------------------------------------------------------------*/
.flexible {
  position: relative;
  height: 250px;
  overflow: hidden;
}
@media screen and (min-width: 48em) {
  .flexible {
    height: 300px;
  }
}
@media screen and (min-width: 62em) {
  .flexible {
    height: 400px;
  }
}
.flexible iframe,
.flexible object,
.flexible embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

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

.is-current,
.is-current a {
  color: #3f5263;
}

/* $. Breakpoint Visibility
\*----------------------------------------------------------------*/
.is-visible--bp2 {
  display: none;
}
@media screen and (min-width: 48em) {
  .is-visible--bp2 {
    display: block;
  }
}

.is-visible--bp4 {
  display: none;
}
@media screen and (min-width: 78em) {
  .is-visible--bp4 {
    display: block;
  }
}

@media screen and (max-width: 48em) {
  .is-hidden--bp2 {
    display: none;
  }
}

@media screen and (max-width: 62em) {
  .is-hidden--bp3 {
    display: none;
  }
}

/**
 * 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
 *    $. Positioning
 *    $. Type Styling
 */
/* $. Box Model
\*----------------------------------------------------------------*/
.u-zero-top {
  margin-top: 0;
}

.u-zero-bottom {
  margin-bottom: 0;
}

.u-push-top {
  margin-top: 1em;
}

.u-push-top\@2 {
  margin-top: 2em;
}

.u-push-top\/2 {
  margin-top: 0.5em;
}

.u-push-bottom {
  margin-bottom: 1em;
}

.u-push-bottom\@2 {
  margin-bottom: 2em;
}

.u-push-bottom\/2 {
  margin-bottom: 0.5em;
}

.u-push-right {
  margin-right: 0.5em;
}

.u-display-block {
  display: block;
}

.u-display-inline {
  display: inline-block;
}

.u-display-none {
  display: none;
}

.u-vertical-top {
  vertical-align: top;
}

.u-vertical-middle {
  vertical-align: middle;
}

/* $. Positioning
\*----------------------------------------------------------------*/
/* Alignment */
.u-align-left {
  text-align: left;
}

.u-align-center {
  text-align: center;
}

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

/* Floats */
.u-float-none {
  float: none;
}

.u-float-left {
  float: left;
}

.u-float-right {
  float: right;
}

/* $. Type Styling
\*----------------------------------------------------------------*/
/* Families */
.u-family {
  font-family: "PT Sans", sans-serif;
}

/* Sizing */
.u-size-small {
  font-size: 0.8rem;
}

.u-size-large {
  font-size: 1.3rem;
}

/* Weight */
.u-weight-normal {
  font-weight: 400;
}

.u-weight-bold {
  font-weight: 700;
}

/* Style */
.u-style-italic {
  font-style: italic;
}

.u-style-uppercase {
  text-transform: uppercase;
}

.u-style-underline {
  text-decoration: underline;
}

/* $. Styling
\*----------------------------------------------------------------*/
/* Borders */
.u-rounded {
  border-radius: 100%;
}

.u-curved {
  border-radius: 1em;
}

.u-bordered {
  border: 0.5em solid #ffffff;
}

.u-cutout-corner:before {
  position: absolute;
  bottom: 0;
  right: 0;
  content: "";
  height: 0;
  border-color: white transparent;
  border-style: solid;
  width: 33px;
  border-width: 0 0 49px 33px;
}
@media screen and (min-width: 78em) {
  .u-cutout-corner:before {
    width: 65px;
    border-width: 0 0 98px 65px;
  }
}

@media screen and (min-width: 78em) {
  .u-cutout-corner--small:before {
    width: 33px;
    border-width: 0 0 49px 33px;
  }
}

/* $. Resetting
\*----------------------------------------------------------------*/
.u-button-reset {
  border: 0;
  background-color: transparent;
  outline: none;
  box-shadow: none;
  padding: 0;
  position: absolute;
}

/**
 * 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-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: 48em) {
  body.debug:before {
    content: "Breakpoint 2";
  }
}
@media screen and (min-width: 62em) {
  body.debug:before {
    content: "Breakpoint 3";
  }
}
@media screen and (min-width: 78em) {
  body.debug:before {
    content: "Breakpoint 4";
  }
}
@media screen and (min-width: 87em) {
  body.debug:before {
    content: "Breakpoint 5";
  }
}

/* $. Slick Slider
\*----------------------------------------------------------------*/
/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}
[dir=rtl] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}
