@charset "UTF-8";
/**
 * Title:
 *    Main Stylesheet
 * Description:
 *    This is the main Scss file which will import all partials and
 *    compile into: assets/css/styles.css
 * Sections:
 *    $. Config
 *    $. Base
 *    $. Layout
 *    $. Modules
 *    $. Interface
 *    $. Helpers
 */
/* $. Config - Variables, global mixins & Bower components
\*----------------------------------------------------------------*/
/**
 * Title:
 *    Vendors
 * Description:
 *    Importing and using the bower components within your Sass
 * Sections:
 *    $. Variables
 *    $. Imports
 *    $. Configuration
 */
/**
 * Title:
 *    Variables
 * Description:
 *    Project variables go here
 * Sections:
 *    $. Breakpoints
 *    $. Colours
 *    $. Typography
 *    $. Layout
 *    $. Icons
 *    $. Z axis
 */
/* $. Breakpoints
\*----------------------------------------------------------------*/
/* $. Colours
\*----------------------------------------------------------------*/
/**
 * Base colours
 */
/* defaults */
/* shades */
/* PRIMARY */
/* SECONDARY */
/**
 * UI colours
 */
/* shades */
/* palette */
/* states */
/* $. Typography
\*----------------------------------------------------------------*/
/* $. Layout
\*----------------------------------------------------------------*/
/* $. Icons
\*----------------------------------------------------------------*/
/* $. Z axis
\*----------------------------------------------------------------*/
/* $. Media Queries - https://github.com/jakearchibald/sass-ie
\*----------------------------------------------------------------*/
/* $. Variables
\*----------------------------------------------------------------*/
/* $. 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%;
}

.grid__item--hide {
  display: none;
}

.grid__item--show {
  display: inline-block;
}

@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%;
  }
  .grid__item--hide-bp1 {
    display: none;
  }
  .grid__item--show-bp1 {
    display: inline-block;
  }
}
@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%;
  }
  .grid__item--hide-bp2 {
    display: none;
  }
  .grid__item--show-bp2 {
    display: inline-block;
  }
}
@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%;
  }
  .grid__item--hide-bp3 {
    display: none;
  }
  .grid__item--show-bp3 {
    display: inline-block;
  }
}
@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%;
  }
  .grid__item--hide-bp4 {
    display: none;
  }
  .grid__item--show-bp4 {
    display: inline-block;
  }
}
@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%;
  }
  .grid__item--hide-bp5 {
    display: none;
  }
  .grid__item--show-bp5 {
    display: inline-block;
  }
}
/* $. Flex extension, for equal height on modern browsers.
\*----------------------------------------------------------------*/
.test--flexbox .grid--flex {
  display: flex;
  flex-wrap: wrap;
}
.test--flexbox .grid--flex .grid__item {
  display: flex;
}
.test--flexbox .grid--flex .grid__item > * {
  display: flex;
  padding-bottom: 1.5em;
  width: 100%;
}

/* $. Base - Project defaults & Element styling
\*----------------------------------------------------------------*/
/**
 * Title:
 *    Defaults
 * Description:
 *    These are the base styles for the project
 * Sections:
 *    $. Defaults
 *    $. Selections
 */
/**
 * Mixin for setting font specific to weight (IE8)
 */
/* $. Defaults
\*----------------------------------------------------------------*/
*,
*:before,
*:after {
  box-sizing: inherit;
  -webkit-font-smoothing: antialiased;
}

html {
  font-weight: 300;
  font-family: "Arial", sans-serif;
  line-height: 1.5;
  font-size: 100%;
  overflow-y: scroll;
  box-sizing: border-box;
  -moz-osx-font-smoothing: grayscale;
}
@media screen and (min-width: 62em) {
  html {
    font-size: 112.5%;
  }
}

body {
  color: #4C4C4C;
  background-color: #FFFFFF;
}

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

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

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

:focus {
  outline: 0;
  box-shadow: 0 0 1px #e6e6e6;
}

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

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,
a[href^=tel] {
  text-decoration: none;
  color: #3D6E84;
}
a:hover,
a[href^=tel]:hover {
  color: #2d5161;
}

/* $. Blockquotes
\*----------------------------------------------------------------*/
blockquote {
  clear: both;
  margin: 0 0 2em 0;
  padding: 1em 1.25em;
  border-left: 3px solid #3D6E84;
}
blockquote p {
  font-size: 1.75rem;
  line-height: 1.2;
  color: #3D6E84;
  font-style: italic;
  margin-bottom: 0.3333333333em !important;
}
blockquote p:before, blockquote p:after {
  display: inline;
}
blockquote p:before {
  content: "“";
}
blockquote p:after {
  content: "”";
}
blockquote cite {
  display: block;
  margin-top: 0.5em;
  font-size: 1rem;
}
@media screen and (min-width: 48em) {
  blockquote cite {
    font-size: 1.063rem;
  }
}
@media screen and (min-width: 78em) {
  blockquote cite {
    font-size: 1.125rem;
  }
}
blockquote strong,
blockquote em {
  line-height: 1.3;
  display: block;
  font-style: normal;
}
blockquote em {
  color: #4C4C4C;
}

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

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

iframe {
  display: block;
  min-width: 100%;
}

figure figcaption {
  text-align: left;
  font-size: 0.875em;
  padding: 0.75em 0;
  color: #888888;
  line-height: 1.2;
}

/**
 * Title:
 *    Elements
 * Description:
 *    The styling of basic element tags
 * Sections:
 *    $. Basics
 *    $. Links
 *    $. Blockquotes
 *    $. Embedded
 */
/**
 * 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: 0.5em;
  line-height: 1.2;
  font-weight: 300;
}

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.25em;
  font-weight: 500;
}

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

h3,
.gamma,
.mwm-aal-title {
  font-size: 1.666667em;
}

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

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

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

.intro {
  font-size: 1.333333em;
  line-height: 1.3;
}

.headline {
  border-bottom: 4px solid #F1F1F1;
  padding-bottom: 0.25em;
}

div.code {
  font-family: Corbel, "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", "DejaVu Sans", "Bitstream Vera Sans", "Liberation Sans", Verdana, "Verdana Ref", sans-serif;
  position: relative;
  padding: 1rem;
  font-size: 1rem;
  background: #4C4C4C;
  color: #BE531C;
  resize: vertical;
  border: 0;
  height: auto;
  outline: none;
  letter-spacing: 1px;
  line-height: 1.2;
  border-top: 2rem solid #5e5e5e;
  box-shadow: inset 0 0 2px 0 #333333;
}
div.code:after {
  font-size: 16px;
  content: "Example";
  position: absolute;
  top: -2rem;
  left: 0;
  padding: 0 1em;
  height: 2rem;
  line-height: 2rem;
  background: #BE531C;
  color: white;
  letter-spacing: 0;
}
div.code span {
  color: white;
}

/**
 * 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 {
  display: inline-block;
  font-weight: 500;
}

dd {
  display: inline-block;
  margin-left: 0;
  margin-bottom: 0;
}

/* $. Your Styles
\*----------------------------------------------------------------*/
/**
 * Title:
 *    Defaults
 * Description:
 *    These are the base styles for the project
 * Sections:
 *    $. Defaults
 *    $. Selections
 */
/**
 * Title:
 *    Forms
 * Description:
 *    Styling of forms and form variations
 * Sections:
 *    $. Basics
 *    $. Placeholders
 */
/**
 * Title:
 *    Extras
 * Description:
 *    Any other helpers which will be used throughout the project
 * Sections:
 *    $. Clearfix
 *    $. Flexible
 *    $. States
 *    $. Breakpoint Visibility
 */
/* $. Clearfix - http://goo.gl/5Fvrh
\*----------------------------------------------------------------*/
.footer:after, .header:after, .article:after, .nav:after, .section:after, .strip:after, .panel:after, .mwm-aal-container:after, form:after,
.cf:after,
.list--split:after,
.media:after,
.ginput_complex:after,
.gfield_radio:after,
.gfield_checkbox:after {
  content: "";
  display: table;
  clear: both;
}

/* $. Flexible
\*----------------------------------------------------------------*/
.flexible {
  position: relative;
  overflow: hidden;
  padding-top: 56.25%;
  display: block;
  content: "";
}
.flexible > iframe,
.flexible > object,
.flexible > embed,
.flexible > div,
.flexible .flexible__inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.flexible--video {
  margin: 1em 0;
}

.flexible--letterbox {
  padding-top: 56.25%;
  display: block;
  content: "";
}

.flexible--square {
  padding-top: 100%;
  display: block;
  content: "";
}

.flexible--map {
  padding-top: 75%;
  display: block;
  content: "";
}
@media screen and (min-width: 62em) {
  .flexible--map {
    padding-top: 125%;
    display: block;
    content: "";
  }
}
@media screen and (min-width: 78em) {
  .flexible--map {
    padding-top: 80%;
    display: block;
    content: "";
  }
}

/* $. 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: #4C4C4C;
}

.is-current ul a {
  color: #3D6E84;
}
.is-current ul a:hover {
  color: #2d5161;
}

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

/* $. 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: 300;
  font-family: "Arial", sans-serif;
}

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

input,
select,
.select,
textarea {
  width: 100%;
  padding: 0.8em 1em;
  border: 1px solid;
  border-radius: 0;
  color: #666;
  background-color: #fff;
  border-color: #d8d8d8;
  transition: border-color 0.4s;
}
.gfield_error input,
.gfield_error select,
.gfield_error .select,
.gfield_error textarea {
  border-color: #3D6E84;
}
input:active, input:focus,
select:active,
.select:active,
select:focus,
.select:focus,
textarea:active,
textarea:focus {
  border-color: #bebebe;
}

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

/**
 * Custom Select
 */
.select {
  position: relative;
  background-position: 94% 50%;
  background-size: 16px;
  border: 0;
  box-shadow: inset 0px 0px 0px 1px #d8d8d8;
}
@media screen and (min-width: 62em) {
  .select {
    background-position: 98% 50%;
  }
}

.test--no-opacity .select {
  box-shadow: none;
  border: 1px solid #d8d8d8;
}

/* $. Form - Filter
\*----------------------------------------------------------------*/
.form--filter select, .form--filter .select {
  float: left;
  width: 58%;
}
@media screen and (min-width: 48em) {
  .form--filter select, .form--filter .select {
    width: 78%;
  }
}
.form--filter .form--filter__btn {
  float: right;
  padding: 0.73em 1em 0.73em;
  width: 40%;
}
@media screen and (min-width: 48em) {
  .form--filter .form--filter__btn {
    width: 20%;
  }
}

/* $. Form - Compact
\*----------------------------------------------------------------*/
.form--compact {
  position: relative;
  margin-bottom: 0;
}
.form--compact .form__fields {
  position: relative;
  border: 0;
  padding: 0;
}
.form--compact .form__input {
  box-sizing: border-box;
  font-size: 1.125rem;
  width: 100%;
  padding-right: 3em;
}
@media screen and (min-width: 62em) {
  .form--compact .form__input {
    font-size: 1rem;
  }
}
.form--compact .form__submit {
  position: absolute;
  top: 0.35em;
  right: 0.5em;
  width: 42px;
  height: 42px;
  padding: 0.5em;
  background-color: transparent;
}
.form--compact .form__submit .icon {
  width: 26px;
  height: 26px;
}
.form--compact .form__icon {
  position: relative;
  top: 3px;
}

.form--area .form__label {
  font-size: 1.125rem;
  margin-top: 0.4em;
  padding: 0;
}
@media screen and (min-width: 62em) {
  .form--area .form__label {
    margin-top: 0.25em;
    font-size: 1.3em;
  }
}
@media screen and (min-width: 87em) {
  .form--area .form__label {
    font-size: 1.5em;
  }
}
.form--area .form__fields {
  max-width: 600px;
  margin-top: 1em;
}
@media screen and (min-width: 48em) {
  .form--area .form__fields {
    margin-left: auto;
    margin-top: 0;
  }
}
.form--area .form__input {
  border: 0;
}

/* $. Gravity Forms
\*----------------------------------------------------------------*/
.ginput_container {
  position: relative;
}

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

.gform_fields {
  margin-bottom: 0;
}

.gfield {
  margin-bottom: 1em;
  padding-left: 0;
}
.gfield:last-child {
  margin-bottom: 0;
}

.gfield_required {
  display: inline-block;
  margin-left: 0.25em;
  color: #888888;
  font-size: 0.875rem;
  font-weight: 300;
  font-family: "Arial", sans-serif;
}

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

.gfield_label {
  font-size: 1.25rem;
  font-weight: 400;
  font-family: "Arial", sans-serif;
}

.ginput_complex .ginput_left,
.ginput_complex .ginput_right {
  margin-bottom: 0.5em;
  display: block;
}
.ginput_complex label {
  padding: 0.125em;
}

.gform_footer .btn,
.gform_footer .btn:hover {
  border: 0;
}

.gfield_description {
  margin-bottom: 0.25em;
  font-size: 0.875rem;
  color: #4C4C4C;
}
.field_description_below .gfield_description {
  margin: 0.25em 0 0;
}

.validation_message {
  display: inline-block;
  margin: 0;
  padding: 0.5em;
  font-size: 0.85rem;
}
.ginput_container_textarea + .validation_message {
  margin-top: -1em;
}

.gfield_radio,
.gfield_checkbox {
  margin: 0;
  display: block;
}
.gfield_radio li,
.gfield_checkbox li {
  margin: 0 0 0.25em;
}
.gfield_radio input,
.gfield_radio label,
.gfield_checkbox input,
.gfield_checkbox label {
  display: inline-block;
}
.gfield_radio input,
.gfield_checkbox input {
  height: auto;
}
.gfield_radio label,
.gfield_checkbox label {
  padding: 0 0 0 0.25em;
  font-weight: 300;
  font-family: "Arial", sans-serif;
}

.gfield_radio label {
  padding: 0 0 0 0.5em;
}

.gfield_date_day,
.gfield_date_month,
.gfield_date_year {
  display: inline-block;
  margin-right: 1rem;
}

/* $. Placeholders
\*----------------------------------------------------------------*/
/* $. Newsletter
\*----------------------------------------------------------------*/
.footer__form {
  font-size: 1rem;
}

.newsletter__container {
  position: relative;
}

.newsletter__input {
  height: 3em;
  margin-bottom: 0;
  border: 1px solid #CCCCCC;
  border-radius: 0 3em 3em 0;
}

.newsletter__btn {
  position: absolute;
  top: 0;
  right: 0;
  height: 3em;
  padding: 0 2em;
  line-height: 1;
  background: #2C5162;
  color: #fff;
  text-transform: uppercase;
}
.newsletter__btn:hover {
  background: #1c343f;
}

/**
 * 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 #e6e6e6;
  vertical-align: top;
}

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

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

caption {
  background: #dfdfdf;
}

/* $. Your Styles
\*----------------------------------------------------------------*/
.table--hovered tr:hover td {
  background: #ececec;
}

/* $. Modules - Global objects i.e. .btn, .island, etc
\*----------------------------------------------------------------*/
/**
 * Title:
 *    Icon Module
 * Description:
 *    Responsible for all sizes and styling of 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: 34px;
  height: 34px;
}

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

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

/* Styling */
.icon--transparent {
  opacity: 0.3;
  filter: alpha(opacity=30);
}

/* Logos */
.icon--align-vert-middle {
  vertical-align: middle;
}

/**
 * Title:
 *    Forms
 * Description:
 *    Styling of forms and form variations
 * Sections:
 *    $. Basics
 *    $. Placeholders
 */
/**
 * 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;
}
@media screen and (min-width: 48em) {
  .media__img {
    float: left;
    margin-bottom: 0;
    margin-right: 2em;
  }
}

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

/**
 * Title:
 *    Defaults
 * Description:
 *    These are the base styles for the project
 * Sections:
 *    $. Defaults
 *    $. Selections
 */
/**
 * Title:
 *    List variations
 * Description:
 *    Styling for different types of lists throughout the site.
 * Sections:
 *    $. Resets
 *    $. Components
 */
/**
 * Title:
 *    Link
 * Description:
 *    Creating a links border and hover
 * Sections:
 *    $. Mixin
 *    $. Base
 *    $. Styles
 */
/* $. Mixin
\*----------------------------------------------------------------*/
/* $. Base
\*----------------------------------------------------------------*/
.link, .content p > a, .list--arrows a,
.list--links a {
  text-decoration: none;
  text-shadow: 0.05em 0 0 #FFFFFF, -0.05em 0 0 #FFFFFF, 0 0.05em 0 #FFFFFF, 0 -0.05em 0 #FFFFFF, 0.1em 0 0 #FFFFFF, -0.1em 0 0 #FFFFFF, 0 0.1em 0 #FFFFFF, 0 -0.1em 0 #FFFFFF;
  background-image: linear-gradient(to right, #CAEBF8 0%, #CAEBF8 100%);
  background-repeat: repeat-x;
  background-position: bottom 0.05em center;
  background-size: 100% 0.1rem;
}
.link:hover, .content p > a:hover, .list--arrows a:hover,
.list--links a:hover {
  background-image: linear-gradient(to right, #8DB9CA 0%, #8DB9CA 100%);
}

/* $. Modifiers
\*----------------------------------------------------------------*/
.link--sky-blue {
  text-decoration: none;
  text-shadow: 0.05em 0 0 #CAEBF8, -0.05em 0 0 #CAEBF8, 0 0.05em 0 #CAEBF8, 0 -0.05em 0 #CAEBF8, 0.1em 0 0 #CAEBF8, -0.1em 0 0 #CAEBF8, 0 0.1em 0 #CAEBF8, 0 -0.1em 0 #CAEBF8;
  background-image: linear-gradient(to right, #8DB9CA 0%, #8DB9CA 100%);
  background-repeat: repeat-x;
  background-position: bottom 0.05em center;
  background-size: 100% 0.1rem;
}
.link--sky-blue:hover {
  text-shadow: 0.05em 0 0 #CAEBF8, -0.05em 0 0 #CAEBF8, 0 0.05em 0 #CAEBF8, 0 -0.05em 0 #CAEBF8, 0.1em 0 0 #CAEBF8, -0.1em 0 0 #CAEBF8, 0 0.1em 0 #CAEBF8, 0 -0.1em 0 #CAEBF8;
  background-image: linear-gradient(to right, #4E90AA 0%, #4E90AA 100%);
}

/**
 * Title:
 *    Forms
 * Description:
 *    Styling of forms and form variations
 * Sections:
 *    $. Basics
 *    $. Placeholders
 */
/* $. Reset
\*----------------------------------------------------------------*/
.nav, .list--arrows,
.list--links, .list.list--check,
.list.list--download,
.list--icons,
.list--unset,
.list--split {
  list-style: none;
  margin: 0;
}
.nav ul, .list--arrows ul,
.list--links ul, .list.list--check ul,
.list.list--download ul,
.list--icons ul,
.nav ol,
.list--arrows ol,
.list--links ol,
.list.list--check ol,
.list.list--download ol,
.list--icons ol,
.list--unset ul,
.list--split ul,
.list--unset ol,
.list--split ol {
  list-style: none;
  margin: 0;
}

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

/* $. Components
\*----------------------------------------------------------------*/
.list--arrows li,
.list--links li, .list.list--check li,
.list.list--download li,
.list--icons li {
  padding-left: 24px;
  background-position: left top;
  background-repeat: no-repeat;
  background-size: 16px;
  min-height: 16px;
}
.list--arrows p,
.list--links p, .list.list--check p,
.list.list--download p,
.list--icons p {
  line-height: 120%;
  font-size: 1.11rem;
}

.list.list--check,
.list.list--download {
  margin-bottom: 1em;
}

.list--arrows li,
.list--links li {
  background-image: url("../../assets/imgs/icons/chevron-right.svg");
  background-size: 8px;
  background-position: left 0.35em;
  padding-left: 20px;
}
.list--arrows a,
.list--links a {
  font-weight: 400;
  font-family: "Arial", sans-serif;
}

.list.list--check li {
  background-image: url("../../assets/imgs/icons/rounded-tick.png");
  background-position: left 0.25em;
}

.list.list--download li {
  background-image: url("../../assets/imgs/icons/download-small.png");
  background-position: left 0.25em;
}

@media screen and (min-width: 48em) {
  .list--split li {
    width: 47%;
    float: left;
  }
  .list--split li:nth-child(odd) {
    margin-right: 3%;
  }
}
@media screen and (min-width: 78em) {
  .list--split li {
    width: 33%;
    float: left;
    margin-right: 0;
  }
  .list--split li:nth-child(odd) {
    margin-right: 0;
  }
}

/**
 * Title:
 *    Defaults
 * Description:
 *    These are the base styles for the project
 * Sections:
 *    $. Defaults
 *    $. Selections
 */
/**
 * Title:
 *    Button Module
 * Description:
 *    The .btn module and its extensions
 * Sections:
 *    $. Setup
 *    $. Component
 *    $. Modifications
 */
/* $. Setup
\*----------------------------------------------------------------*/
.cookie-banner-button--accept,
.cookie-banner-accept--hide,
.govuk-button, .cookie-banner-button--reject, button,
input[type=button],
input[type=submit],
.btn,
.pagination .current,
.pagination .page,
.pagination .nextpostslink,
.pagination .previouspostslink {
  display: inline-block;
  padding: 0.4em 1em 0.6em;
  border: 0;
  transition: all 0.15s ease-out;
  font-weight: 400;
  font-family: "Arial", sans-serif;
}
.cookie-banner-button--accept .btn__inner,
.cookie-banner-accept--hide .btn__inner,
.govuk-button .btn__inner, .cookie-banner-button--reject .btn__inner, button .btn__inner,
input[type=button] .btn__inner,
input[type=submit] .btn__inner,
.btn .btn__inner,
.pagination .current .btn__inner,
.pagination .page .btn__inner,
.pagination .nextpostslink .btn__inner,
.pagination .previouspostslink .btn__inner {
  position: relative;
  background-repeat: repeat-x;
  background-position: bottom 0.05em center;
  background-size: 100% 0.1rem;
  background-image: linear-gradient(to right, #8DB9CA 0%, #8DB9CA 100%);
  /*
  &:after {
      content: '';
      display: block;
      width: 100%;
      position: absolute;
      top: 92.5%;
      left: 0;
      border-bottom-style: solid;
      border-bottom-width: 1px;
  }
  */
}

/* $. Component
\*----------------------------------------------------------------*/
/* $. Modifications
\*----------------------------------------------------------------*/
/**
 * Themes
 */
.btn--primary {
  color: #FFFFFF;
  background: #888888;
  font-weight: 400;
  font-family: "Arial", sans-serif;
}
.btn--primary .btn__inner:after {
  border-bottom-color: rgba(255, 255, 255, 0.5);
}
.btn--primary:hover, .btn--primary:focus {
  color: #FFFFFF;
  background: #6f6f6f;
}
.btn--primary:hover .btn__inner:after, .btn--primary:focus .btn__inner:after {
  border-bottom-color: rgba(255, 255, 255, 0.5);
}

.btn--blue, .pagination .page,
.pagination .nextpostslink,
.pagination .previouspostslink {
  color: #FFFFFF;
  background: #3D6E84;
  font-weight: 400;
  font-family: "Arial", sans-serif;
}
.btn--blue .btn__inner:after, .pagination .page .btn__inner:after,
.pagination .nextpostslink .btn__inner:after,
.pagination .previouspostslink .btn__inner:after {
  border-bottom-color: rgba(255, 255, 255, 0.5);
}
.btn--blue:hover, .pagination .page:hover,
.pagination .nextpostslink:hover,
.pagination .previouspostslink:hover, .btn--blue:focus, .pagination .page:focus,
.pagination .nextpostslink:focus,
.pagination .previouspostslink:focus {
  color: #FFFFFF;
  background: #2d5161;
}
.btn--blue:hover .btn__inner:after, .pagination .page:hover .btn__inner:after,
.pagination .nextpostslink:hover .btn__inner:after,
.pagination .previouspostslink:hover .btn__inner:after, .btn--blue:focus .btn__inner:after, .pagination .page:focus .btn__inner:after,
.pagination .nextpostslink:focus .btn__inner:after,
.pagination .previouspostslink:focus .btn__inner:after {
  border-bottom-color: rgba(255, 255, 255, 0.5);
}

.btn--dark-blue {
  color: #FFFFFF;
  background: #2C5162;
  font-weight: 400;
  font-family: "Arial", sans-serif;
}
.btn--dark-blue .btn__inner:after {
  border-bottom-color: rgba(255, 255, 255, 0.5);
}
.btn--dark-blue:hover, .btn--dark-blue:focus {
  color: #FFFFFF;
  background: #1c343f;
}
.btn--dark-blue:hover .btn__inner:after, .btn--dark-blue:focus .btn__inner:after {
  border-bottom-color: rgba(255, 255, 255, 0.5);
}

.btn--light-blue, .pagination .current {
  color: #FFFFFF;
  background: #8DB9CA;
  font-weight: 400;
  font-family: "Arial", sans-serif;
}
.btn--light-blue .btn__inner:after, .pagination .current .btn__inner:after {
  border-bottom-color: rgba(255, 255, 255, 0.5);
}
.btn--light-blue:hover, .pagination .current:hover, .btn--light-blue:focus, .pagination .current:focus {
  color: #FFFFFF;
  background: #6aa4ba;
}
.btn--light-blue:hover .btn__inner:after, .pagination .current:hover .btn__inner:after, .btn--light-blue:focus .btn__inner:after, .pagination .current:focus .btn__inner:after {
  border-bottom-color: rgba(255, 255, 255, 0.5);
}

.btn--sky-blue {
  color: #3D6E84;
  background: #CAEBF8;
  font-weight: 400;
  font-family: "Arial", sans-serif;
}
.btn--sky-blue .btn__inner:after {
  border-bottom-color: rgba(61, 110, 132, 0.5);
}
.btn--sky-blue:hover, .btn--sky-blue:focus {
  color: #3D6E84;
  background: #9ddaf2;
}
.btn--sky-blue:hover .btn__inner:after, .btn--sky-blue:focus .btn__inner:after {
  border-bottom-color: rgba(61, 110, 132, 0.5);
}

.btn--orange {
  color: #FFFFFF;
  background: #BE531C;
  font-weight: 400;
  font-family: "Arial", sans-serif;
}
.btn--orange .btn__inner:after {
  border-bottom-color: rgba(255, 255, 255, 0.5);
}
.btn--orange:hover, .btn--orange:focus {
  color: #FFFFFF;
  background: #924015;
}
.btn--orange:hover .btn__inner:after, .btn--orange:focus .btn__inner:after {
  border-bottom-color: rgba(255, 255, 255, 0.5);
}

.btn--white {
  color: #2C5162;
  background: #FFFFFF;
  font-weight: 400;
  font-family: "Arial", sans-serif;
}
.btn--white .btn__inner:after {
  border-bottom-color: rgba(44, 81, 98, 0.5);
}
.btn--white:hover, .btn--white:focus {
  color: #2C5162;
  background: #e6e6e6;
}
.btn--white:hover .btn__inner:after, .btn--white:focus .btn__inner:after {
  border-bottom-color: rgba(44, 81, 98, 0.5);
}

/**
 * Position and size
 */
.btn--blocked {
  width: 100%;
  text-align: left;
}

.btn--large {
  font-size: 1.125rem;
  padding: 0.6em 1.25em;
}

.btn--wide {
  font-size: 1.125rem;
  padding: 1em 4em;
}

.btn--padded {
  font-size: 1.125rem;
  padding: 1em 1.25em;
}

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

/**
 * Icons
 */
.btn--icon-left, .pagination .previouspostslink {
  padding-left: 0.75em;
}
.btn--icon-left .btn__icon, .pagination .previouspostslink .btn__icon {
  margin-right: 0.65em;
}

.btn--icon-right, .pagination .nextpostslink {
  padding-right: 0.75em;
}
.btn--icon-right .btn__icon, .pagination .nextpostslink .btn__icon {
  margin-left: 0.65em;
}

.btn__icon--arrow {
  width: 9px;
  height: 14px;
  margin-bottom: -1px;
}

.btn--icon {
  position: relative;
}
/**
 * Title:
 *    Forms
 * Description:
 *    Styling of forms and form variations
 * Sections:
 *    $. Basics
 *    $. Placeholders
 */
/**
 * 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, .mwm-aal-container {
  position: relative;
  display: block;
  padding: 1em;
  margin-bottom: 1em;
}
@media screen and (min-width: 48em) {
  .panel, .mwm-aal-container {
    padding: 2em;
  }
}
.panel > *:last-child, .mwm-aal-container > *:last-child {
  margin-bottom: 0;
}
.panel h2, .mwm-aal-container h2,
.panel h3,
.mwm-aal-container h3,
.panel h4,
.mwm-aal-container h4 {
  padding-top: 0 !important;
}

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

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

.panel--slim, .mwm-aal-container {
  padding: 0.75em;
}
@media screen and (min-width: 48em) {
  .panel--slim, .mwm-aal-container {
    padding: 1.5em;
  }
}

.panel__title {
  margin-bottom: 0.3333333333em;
}

.panel__media {
  display: inline-block;
  width: 20%;
  height: 100%;
}

/* $. Varients
\*----------------------------------------------------------------*/
.panel--icon {
  position: relative;
  padding-left: 3.7em;
  min-height: 78px;
}
.panel--icon .icon {
  position: absolute;
  top: 1em;
  left: 1em;
}

/* $. Themes
\*----------------------------------------------------------------*/
.panel--white {
  color: #4C4C4C;
  background-color: #FFFFFF;
  transition: background-color 0.15s ease-out;
}
.panel--white a {
  color: #4C4C4C;
}
.panel--white a.btn {
  border-bottom: none;
}
.panel--white[href]:hover, .panel--white[href]:focus {
  color: #4C4C4C;
  background-color: #f2f2f2;
}

.panel--grey, .mwm-aal-container {
  color: #4C4C4C;
  background-color: #F1F1F1;
  transition: background-color 0.15s ease-out;
}
.panel--grey a, .mwm-aal-container a {
  color: #4C4C4C;
}
.panel--grey a.btn, .mwm-aal-container a.btn {
  border-bottom: none;
}
.panel--grey[href]:hover, [href].mwm-aal-container:hover, .panel--grey[href]:focus, [href].mwm-aal-container:focus {
  color: #4C4C4C;
  background-color: #e4e4e4;
}

.panel--sky-blue {
  color: #2C5162;
  background-color: #CAEBF8;
  transition: background-color 0.15s ease-out;
}
.panel--sky-blue a {
  color: #2C5162;
}
.panel--sky-blue a.btn {
  border-bottom: none;
}
.panel--sky-blue[href]:hover, .panel--sky-blue[href]:focus {
  color: #2C5162;
  background-color: #b3e3f5;
}

.panel--light-blue {
  color: #2C5162;
  background-color: #8DB9CA;
  transition: background-color 0.15s ease-out;
}
.panel--light-blue a {
  color: #2C5162;
}
.panel--light-blue a.btn {
  border-bottom: none;
}
.panel--light-blue[href]:hover, .panel--light-blue[href]:focus {
  color: #2C5162;
  background-color: #7caec2;
}

.panel--blue {
  color: #FFFFFF;
  background-color: #3D6E84;
  transition: background-color 0.15s ease-out;
}
.panel--blue a {
  color: #FFFFFF;
}
.panel--blue a.btn {
  border-bottom: none;
}
.panel--blue[href]:hover, .panel--blue[href]:focus {
  color: #FFFFFF;
  background-color: #355f73;
}

.panel--dark-blue {
  color: #FFFFFF;
  background-color: #2C5162;
  transition: background-color 0.15s ease-out;
}
.panel--dark-blue a {
  color: #FFFFFF;
}
.panel--dark-blue a.btn {
  border-bottom: none;
}
.panel--dark-blue[href]:hover, .panel--dark-blue[href]:focus {
  color: #FFFFFF;
  background-color: #244250;
}

.panel--orange {
  color: #FFFFFF;
  background-color: #BE531C;
  transition: background-color 0.15s ease-out;
}
.panel--orange a {
  color: #FFFFFF;
}
.panel--orange a.btn {
  border-bottom: none;
}
.panel--orange[href]:hover, .panel--orange[href]:focus {
  color: #FFFFFF;
  background-color: #a84919;
}

.panel--success {
  color: #FFFFFF;
  background-color: #2ECC71;
  transition: background-color 0.15s ease-out;
}
.panel--success a {
  color: #FFFFFF;
}
.panel--success a.btn {
  border-bottom: none;
}
.panel--success[href]:hover, .panel--success[href]:focus {
  color: #FFFFFF;
  background-color: #29b765;
}

.panel--error {
  color: #FFFFFF;
  background-color: #E74C3C;
  transition: background-color 0.15s ease-out;
}
.panel--error a {
  color: #FFFFFF;
}
.panel--error a.btn {
  border-bottom: none;
}
.panel--error[href]:hover, .panel--error[href]:focus {
  color: #FFFFFF;
  background-color: #e43725;
}

/**
 * Title:
 *    Elements
 * Description:
 *    The styling of basic element tags
 * Sections:
 *    $. Basics
 *    $. Links
 *    $. Blockquotes
 *    $. Embedded
 */
/**
 * Title:
 *    Forms
 * Description:
 *    Styling of forms and form variations
 * Sections:
 *    $. Basics
 *    $. Placeholders
 */
/**
 * 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
 */
.strip {
  position: relative;
  display: block;
  padding: 1em 0;
}
@media screen and (min-width: 48em) {
  .strip {
    padding: 2em 0;
  }
}

/* $. Component
\*----------------------------------------------------------------*/
.strip__title {
  font-size: 1.875em;
}
.strip__title .icon,
.strip__title span {
  display: block;
}
@media screen and (min-width: 48em) {
  .strip__title {
    font-size: 2.25em;
  }
}
.strip__title--center {
  text-align: center;
}
.strip__title--center .icon {
  margin: 0 auto 0.25em;
}

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

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

.strip--slim {
  padding: 0.75em 0 1.5em;
}
@media screen and (min-width: 48em) {
  .strip--slim {
    padding: 1.5em 0;
  }
}

/* $. Themes
\*----------------------------------------------------------------*/
.strip--white {
  color: #4C4C4C;
  background-color: #FFFFFF;
  transition: background-color 0.15s ease-out;
}
.strip--white a {
  color: #4C4C4C;
}
.strip--white a.btn {
  border-bottom: none;
}
.strip--white[href]:hover, .strip--white[href]:focus {
  color: #4C4C4C;
  background-color: #f2f2f2;
}

.strip--grey {
  color: #4C4C4C;
  background-color: #F1F1F1;
  transition: background-color 0.15s ease-out;
}
.strip--grey a {
  color: #4C4C4C;
}
.strip--grey a.btn {
  border-bottom: none;
}
.strip--grey[href]:hover, .strip--grey[href]:focus {
  color: #4C4C4C;
  background-color: #e4e4e4;
}

.strip--orange {
  color: #FFFFFF;
  background-color: #BE531C;
  transition: background-color 0.15s ease-out;
}
.strip--orange a {
  color: #FFFFFF;
}
.strip--orange a.btn {
  border-bottom: none;
}
.strip--orange[href]:hover, .strip--orange[href]:focus {
  color: #FFFFFF;
  background-color: #a84919;
}

.strip--blue {
  color: #FFFFFF;
  background-color: #3D6E84;
  transition: background-color 0.15s ease-out;
}
.strip--blue a {
  color: #FFFFFF;
}
.strip--blue a.btn {
  border-bottom: none;
}
.strip--blue[href]:hover, .strip--blue[href]:focus {
  color: #FFFFFF;
  background-color: #355f73;
}

.strip--light-blue {
  color: #3D6E84;
  background-color: #8DB9CA;
  transition: background-color 0.15s ease-out;
}
.strip--light-blue a {
  color: #3D6E84;
}
.strip--light-blue a.btn {
  border-bottom: none;
}
.strip--light-blue[href]:hover, .strip--light-blue[href]:focus {
  color: #3D6E84;
  background-color: #7caec2;
}

.strip--sky-blue {
  color: #4C4C4C;
  background-color: #CAEBF8;
  transition: background-color 0.15s ease-out;
}
.strip--sky-blue a {
  color: #4C4C4C;
}
.strip--sky-blue a.btn {
  border-bottom: none;
}
.strip--sky-blue[href]:hover, .strip--sky-blue[href]:focus {
  color: #4C4C4C;
  background-color: #b3e3f5;
}

.strip--success {
  border-color: #2ECC71;
}

.strip--error {
  border-color: #E74C3C;
}

/**
 * Title:
 *    Box
 * Description:
 *
 * Sections:
 *    $. Setup
 *    $. Component
 *    $. Themes
 *    $. Sizing
 *    $. Grid
 */
/**
 * Title:
 *    Defaults
 * Description:
 *    These are the base styles for the project
 * Sections:
 *    $. Defaults
 *    $. Selections
 */
/* $. Setup
\*----------------------------------------------------------------*/
@media screen and (min-width: 62em) {
  .cta {
    margin: 0 auto;
    min-width: 15em;
    max-width: 68.5em;
    width: 85%;
  }
}

.box {
  display: block;
  margin: 0 0 0.75em;
  color: inherit;
}

.box--home .box__image {
  border-right: solid 0.5em #FFFFFF;
}
@media screen and (min-width: 62em) {
  .box--home .box__image {
    border-right: none;
    border-bottom: solid 0.5em #FFFFFF;
  }
}
.box--home .box__inner {
  display: table;
}
@media screen and (min-width: 48em) {
  .box--home .box__inner {
    text-align: center;
    display: block;
    padding-left: 0;
    padding-right: 0;
  }
}
@media screen and (min-width: 62em) {
  .box--home .box__inner {
    padding: 3em;
  }
}
@media screen and (min-width: 78em) {
  .box--home .box__inner {
    padding: 1.5em;
  }
}
.box--home .box__icon,
.box--home .box__title {
  display: table-cell;
  vertical-align: middle;
}
@media screen and (min-width: 48em) {
  .box--home .box__icon,
  .box--home .box__title {
    display: block;
  }
}
.box--home .box__title {
  padding-left: 0.5em;
  font-weight: 400;
  font-family: "Arial", sans-serif;
}
.box--home .box__title span {
  background-repeat: repeat-x;
  background-position: bottom 0.05em center;
  background-size: 100% 0.1rem;
}
@media screen and (min-width: 48em) {
  .box--home .box__title {
    padding: 0;
  }
}

/* $. Component
\*----------------------------------------------------------------*/
.box__inner {
  padding: 1.5em;
  display: block;
  position: relative;
}

@media screen and (min-width: 48em) {
  .box__icon {
    margin: 0 auto 0.5em;
  }
}

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

.box__title {
  margin: 0;
  font-size: 2.125rem;
}
.box--white .box__title {
  color: #BE531C;
}

.box__text {
  font-size: 1.425em;
}

.gm-style-iw {
  box-shadow: none;
}

/* $. Themes
\*----------------------------------------------------------------*/
.box--white {
  color: #4C4C4C;
  background-color: #FFFFFF;
  transition: background-color 0.15s ease-out;
}
.box--white[href]:hover, .box--white[href]:focus {
  color: #333333;
  background-color: #e6e6e6;
}
.box--white .box__title span:after {
  border-bottom-color: rgba(76, 76, 76, 0.5);
}

.box--blue {
  color: #FFFFFF;
  background-color: #3D6E84;
  transition: background-color 0.15s ease-out;
}
.box--blue[href]:hover, .box--blue[href]:focus {
  color: #e6e6e6;
  background-color: #2d5161;
}
.box--blue .box__title span:after {
  border-bottom-color: rgba(255, 255, 255, 0.5);
}

.box--mid-blue {
  color: #FFFFFF;
  background-color: #4E90AA;
  transition: background-color 0.15s ease-out;
}
.box--mid-blue[href]:hover, .box--mid-blue[href]:focus {
  color: #e6e6e6;
  background-color: #3e7287;
}
.box--mid-blue .box__title span:after {
  border-bottom-color: rgba(255, 255, 255, 0.5);
}

.box--light-blue {
  color: #3D6E84;
  background-color: #8DB9CA;
  transition: background-color 0.15s ease-out;
}
.box--light-blue[href]:hover, .box--light-blue[href]:focus {
  color: #2d5161;
  background-color: #6aa4ba;
}
.box--light-blue .box__title span:after {
  border-bottom-color: rgba(61, 110, 132, 0.5);
}

.box--orange {
  color: #FFFFFF;
  background-color: #BE531C;
  transition: background-color 0.15s ease-out;
}
.box--orange[href]:hover, .box--orange[href]:focus {
  color: #e6e6e6;
  background-color: #924015;
}
.box--orange .box__title span:after {
  border-bottom-color: rgba(255, 255, 255, 0.5);
}

.box--blue .box__title span {
  background-image: linear-gradient(to right, #6ca3bb 0%, #6ca3bb 100%);
}

.box--light-blue .box__title span {
  background-image: linear-gradient(to right, #4c8ca5 0%, #4c8ca5 100%);
}

.box--orange .box__title span {
  background-image: linear-gradient(to right, #e78959 0%, #e78959 100%);
}

/* $. Varients
\*----------------------------------------------------------------*/
/* $. Grid
\*----------------------------------------------------------------*/
/**
 * Title:
 *    Extras
 * Description:
 *    Any other helpers which will be used throughout the project
 * Sections:
 *    $. Clearfix
 *    $. Flexible
 *    $. States
 *    $. Breakpoint Visibility
 */
/**
 * Title:
 *    Hero
 */
.hero {
  position: relative;
  margin-bottom: 1.5em;
}

.hero__container {
  padding: 33% 0 60px 0;
}
@media screen and (min-width: 48em) {
  .hero__container {
    padding: 0 0 80px 0;
  }
}
@media screen and (min-width: 48em) {
  .hero__container {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
  }
}

.hero__container .box {
  width: 100%;
}
@media screen and (min-width: 48em) {
  .hero__container .box {
    width: 66.6666%;
    float: right;
    position: relative;
    top: 50%;
    transform: translateY(-50%);
  }
}
@media screen and (min-width: 62em) {
  .hero__container .box {
    width: 50%;
  }
}
@media screen and (min-width: 78em) {
  .hero__container .box {
    width: 50%;
  }
  .hero__container .box .box__inner {
    position: relative;
  }
  .hero__container .box .btn {
    position: absolute;
    bottom: -15%;
    left: 1em;
  }
}
@media screen and (min-width: 48em) {
  .hero__container .box .box__inner {
    width: 90%;
    max-width: 34em;
  }
}

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

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

.hero__dots {
  list-style: none;
  margin-left: 0;
  margin-bottom: 0;
}
.hero__dots li {
  display: inline-block;
  margin-bottom: 0;
}
.hero__dots button {
  width: 1.7rem;
  height: 1.7rem;
  margin: 0rem 0.2rem;
  border: 0;
  border: 2px solid #3D6E84;
  border-radius: 100%;
  text-indent: -99999px;
  background-color: transparent;
  padding: 0;
}
.hero__dots li.slick-active button {
  background-color: #3D6E84;
}
@media screen and (min-width: 48em) {
  .hero__dots button {
    border-color: white;
  }
  .hero__dots li.slick-active button {
    background-color: white;
  }
}

.hero__slide {
  background-repeat: no-repeat;
  background-position: top center;
  overflow: hidden;
  position: relative;
  background-size: contain;
  width: 100%;
  height: 500px;
}
@media screen and (min-width: 48em) {
  .hero__slide {
    background-position: center;
    background-size: cover;
    height: 600px;
  }
}

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

.hero__prev {
  background-image: url("../../assets/imgs/icons/previous.svg");
  background-repeat: no-repeat;
}

.hero__next {
  background-image: url("../../assets/imgs/icons/next.svg");
  background-repeat: no-repeat;
}

.hero__toggle--pause {
  background-image: url("../../assets/imgs/icons/pause.svg");
  background-repeat: no-repeat;
  background-size: 140%;
  background-position: center;
}

.hero__toggle--play {
  background-image: url("../../assets/imgs/icons/play.svg");
  background-repeat: no-repeat;
  background-size: 140%;
  background-position: center;
}

/**
 * Title:
 *    List variations
 * Description:
 *    Styling for different types of lists throughout the site.
 * Sections:
 *    $. Resets
 *    $. Components
 */
.partners {
  margin: 3rem 0;
}
@media screen and (min-width: 48em) {
  .partners {
    display: flex;
    flex-wrap: wrap;
    margin-left: -2rem;
  }
}

.partners__title {
  font-size: 1.6em;
}

.partners__item {
  margin-bottom: 2rem;
}
@media screen and (min-width: 48em) {
  .partners__item {
    width: 45%;
    margin-left: 2rem;
  }
}
@media screen and (min-width: 78em) {
  .partners__item {
    width: 30.3%;
  }
}

.partners__image {
  border: 1px solid #c9ebf8;
  padding: 1.5rem;
  text-align: center;
  margin-bottom: 1rem;
}
.partners__image img {
  width: 100%;
  max-width: 20em;
}
@media screen and (min-width: 48em) {
  .partners__image {
    min-height: 15rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

/* $. Interface - Project specific objects i.e. .work, .product, etc
\*----------------------------------------------------------------*/
/**
 * Title:
 *    Forms
 * Description:
 *    Styling of forms and form variations
 * Sections:
 *    $. Basics
 *    $. Placeholders
 */
/**
 * 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: 2.5em 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:
 *    Box
 * Description:
 *
 * Sections:
 *    $. Setup
 *    $. Component
 *    $. Themes
 *    $. Sizing
 *    $. Grid
 */
/**
 * Title:
 *    Defaults
 * Description:
 *    These are the base styles for the project
 * Sections:
 *    $. Defaults
 *    $. Selections
 */
/**
 * Title:
 *    Forms
 * Description:
 *    Styling of forms and form variations
 * Sections:
 *    $. Basics
 *    $. Placeholders
 */
/**
 * Title:
 *    Navigation
 * Description:
 *    The .nav module and its extensions
 * Sections:
 *    $. Variables
 *    $. Container
 *    $. Component
 *    $. Primary
 *    $. Secondary
 *    $. Tertiary
 */
/* $. Variables
\*----------------------------------------------------------------*/
/* $. Container
\*----------------------------------------------------------------*/
.nav-container {
  background-color: #3D6E84;
  display: none;
}
.is-active-nav .nav-container {
  display: block;
}
@media screen and (min-width: 48em) {
  .nav-container {
    font-weight: 400;
    font-family: "Arial", sans-serif;
    display: block;
    background-color: transparent;
  }
}

/* $. Component
\*----------------------------------------------------------------*/
.nav__item {
  display: block;
  margin-bottom: 0;
  padding: 0 3.25%;
}
.nav__item.is-current {
  background-color: #2d5161;
}
@media screen and (min-width: 48em) {
  .nav__item {
    padding: 0;
    display: inline-block;
  }
  .nav__item.is-current {
    background-color: transparent;
  }
}

.nav__link {
  display: block;
  color: #FFFFFF;
  padding: 0.25em 0;
}
.nav__link span {
  position: relative;
}
.nav__link span:after {
  content: "";
  display: block;
  width: 100%;
  position: absolute;
  top: 92.5%;
  left: 0;
  border-bottom-style: solid;
  border-bottom-color: #CAEBF8;
  border-bottom-width: 1px;
}
.nav__link:focus, .nav__link:active, .nav__link:hover {
  color: #f2f2f2;
}
.nav__link:focus span:after, .nav__link:active span:after, .nav__link:hover span:after {
  border-bottom-color: #8DB9CA;
}
.is-current .nav__link {
  color: #f2f2f2;
}
.is-current .nav__link span:after {
  border-bottom-color: #8DB9CA;
}
@media screen and (min-width: 48em) {
  .nav__link {
    color: #3D6E84;
    display: block;
  }
  .nav__link span:after {
    border-bottom-color: #8DB9CA;
    top: 95%;
  }
  .nav__link:focus, .nav__link:active, .nav__link:hover {
    color: #355f73;
  }
  .nav__link:focus span:after, .nav__link:active span:after, .nav__link:hover span:after {
    border-bottom-color: #8DB9CA;
  }
  .is-current .nav__link {
    color: #355f73;
  }
  .is-current .nav__link span:after {
    border-bottom-color: #8DB9CA;
  }
}
@media screen and (min-width: 62em) {
  .nav__link span:after {
    top: 97.5%;
  }
}

/* $. Primary
\*----------------------------------------------------------------*/
.nav--primary {
  font-size: 1.375rem;
}
.nav--primary .nav__link {
  padding: 0.3333333333em 0;
}
.nav--primary .nav__link span:after {
  border-bottom-width: 2px;
}
.nav--primary .is-current .nav__link span:after {
  border-bottom-width: 3px;
}
@media screen and (min-width: 48em) {
  .nav--primary {
    margin: 0 auto;
    min-width: 15em;
    max-width: 68.5em;
    width: 85%;
    font-size: 1.75rem;
    line-height: 1;
  }
  .nav--primary .nav__item {
    margin-left: 1.125em;
  }
  .nav--primary .nav__item:first-child {
    margin-left: 0;
  }
}
@media screen and (min-width: 62em) {
  .nav--primary {
    font-size: 1.25rem;
    text-align: right;
    margin-top: -1.25em;
  }
  .nav--primary .nav__item {
    margin-left: 1.25em;
  }
  .nav--primary .nav__item:first-child {
    margin-left: 0;
  }
  .nav--primary .is-current .nav__link span:after {
    border-bottom-width: 4px;
  }
}
@media screen and (min-width: 78em) {
  .nav--primary {
    font-size: 1.875rem;
  }
  .nav--primary .nav__item {
    margin-left: 0.875em;
  }
  .nav--primary .nav__item:first-child {
    margin-left: 0;
  }
  .nav--primary .is-current .nav__link span:after {
    border-bottom-width: 6px;
  }
}
@media screen and (min-width: 87em) {
  .nav--primary {
    max-width: 68.5rem;
  }
}

/* $. Secondary
\*----------------------------------------------------------------*/
.nav--secondary {
  font-size: 1rem;
}
.nav--secondary .nav__link {
  padding: 0.4em 0;
}
.nav--secondary .nav__link span:after {
  border-bottom-width: 1px;
}
@media screen and (min-width: 48em) {
  .nav--secondary {
    font-size: 0.9375rem;
    font-weight: 300;
    font-family: "Arial", sans-serif;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #CAEBF8;
  }
  .nav--secondary .nav__inner {
    display: inline-block;
  }
  .nav--secondary .nav__inner--right {
    float: right;
  }
  .nav--secondary .nav__container {
    margin: 0 auto;
    min-width: 15em;
    max-width: 68.5em;
    width: 85%;
    position: relative;
  }
  .nav--secondary .nav__item {
    margin-left: 1.125em;
  }
  .nav--secondary .nav__item:first-child {
    margin-left: 0;
  }
  .nav--secondary .nav__item,
  .nav--secondary .nav__item--donate .nav__link {
    padding-top: 0.4em;
    padding-bottom: 0.6em;
  }
  .nav--secondary .nav__link {
    color: #2C5162;
    padding: 0;
  }
  .nav--secondary .nav__item--donate {
    padding: 0;
    font-weight: 400;
    font-family: "Arial", sans-serif;
  }
  .nav--secondary .nav__item--donate .nav__link {
    padding-left: 0.6666666667em;
    padding-right: 0.6666666667em;
    color: #000000;
    background-color: #FAB819;
  }
  .nav--secondary .nav__item--donate .nav__link span:after {
    border-bottom-color: #000000;
  }
  .nav--secondary .nav__item--donate .nav__link:focus, .nav--secondary .nav__item--donate .nav__link:active, .nav--secondary .nav__item--donate .nav__link:hover {
    background-color: #e8a505;
  }
}
@media screen and (min-width: 62em) {
  .nav--secondary .nav__item {
    margin-left: 0.625em;
  }
  .nav--secondary .nav__item:first-child {
    margin-left: 0;
  }
  .nav--secondary .nav__item span:after {
    top: 90%;
  }
  .nav--secondary .nav__item,
  .nav--secondary .nav__item--donate .nav__link {
    padding-top: 0.5em;
    padding-bottom: 0.7em;
  }
  .nav--secondary .nav__item--donate {
    padding: 0;
    margin-left: 0.5em;
  }
  .nav--secondary .nav__item--donate .nav__link {
    padding-left: 0.75em;
    padding-right: 0.75em;
  }
}
@media screen and (min-width: 78em) {
  .nav--secondary {
    font-size: 1.125rem;
  }
  .nav--secondary .nav__item,
  .nav--secondary .nav__item--donate .nav__link {
    padding-top: 0.5em;
    padding-bottom: 0.7em;
  }
  .nav--secondary .nav__item--donate {
    padding: 0;
  }
  .nav--secondary .nav__item--donate .nav__link {
    padding-left: 1em;
    padding-right: 1em;
  }
}
@media screen and (min-width: 87em) {
  .nav--secondary .nav__container {
    max-width: 68.5rem;
  }
}

/* $. Social
\*----------------------------------------------------------------*/
.nav--secondary .nav__item--social {
  display: none;
}
@media screen and (min-width: 48em) {
  .nav--secondary .nav__item--social {
    display: inline-block;
    line-height: 1;
    padding: 0;
    margin-left: 0;
    position: absolute;
    top: 115%;
    right: 0;
    width: 157px;
  }
  .nav--secondary .nav__item--social li {
    display: inline-block;
    margin: 0;
  }
}
@media screen and (min-width: 62em) {
  .nav--secondary .nav__item--social {
    margin-top: -18px;
    top: 50%;
    right: 163px;
  }
}
@media screen and (min-width: 78em) {
  .nav--secondary .nav__item--social {
    right: 225px;
  }
}

@media screen and (min-width: 48em) {
  .nav--secondary .nav__link--social {
    padding: 0;
    display: block;
  }
  .nav--secondary .nav__link--social span:after {
    display: none;
  }
}

/* $. Nav Tertiary
\*----------------------------------------------------------------*/
.nav--tertiary .nav__item {
  padding: 0;
  margin-top: 0.5em;
}
.nav--tertiary .nav__item:first-child {
  margin-top: 0;
}
.nav--tertiary .nav__item.is-current {
  background-color: transparent;
}
.nav--tertiary .nav__link {
  color: #3D6E84;
  padding: 0;
}
.nav--tertiary .nav__inner {
  margin-bottom: 1rem;
}
@media screen and (min-width: 48em) {
  .nav--tertiary .nav__item {
    margin-top: 0;
    margin-left: 1em;
    margin-bottom: 0.5rem;
  }
  .nav--tertiary .nav__item:first-child {
    margin-left: 0;
  }
}
@media screen and (min-width: 62em) {
  .nav--tertiary .nav__item {
    font-size: 0.75rem;
    margin-left: 0;
    margin-right: 1em;
  }
  .nav--tertiary .nav__item:last-child {
    margin-right: 0;
  }
}
@media screen and (min-width: 78em) {
  .nav--tertiary {
    text-align: left;
    font-size: 0.8125rem;
  }
  .nav--tertiary .nav__item {
    margin-left: 0;
    margin-right: 1em;
  }
}

/**
 * Title:
 *    Defaults
 * Description:
 *    These are the base styles for the project
 * Sections:
 *    $. Defaults
 *    $. Selections
 */
/**
 * Title:
 *    Toggle
 * Description:
 *    Toggle module used to style the Toggle button for certain interactions
 *    on the site; namely the Toggle Navigation on smaller screen sizes.
 * Sections:
 *    $. Variables
 *    $. Base
 */
/* $. Variables
\*----------------------------------------------------------------*/
/* $. Base
\*----------------------------------------------------------------*/
.toggles {
  position: absolute;
  top: 0;
  right: 0;
}
@media screen and (min-width: 48em) {
  .toggles {
    display: none;
  }
}

.toggle {
  display: block;
  line-height: 1;
  width: 64px;
  height: 64px;
  margin: 0;
  padding: 0.4em;
  background: black;
  color: #FFFFFF;
  border: 0;
  border-radius: 0;
  transition: none;
}
.toggle:focus, .toggle:active {
  box-shadow: none;
}
.toggle:first-of-type {
  border-right: 0;
}

.toggle__icon {
  display: block;
  margin: 0 auto;
  width: 32px;
  height: 32px;
}

.toggle__label {
  font-weight: 500;
  font-family: "Arial", sans-serif;
  font-size: 0.625rem;
}

.header__toggle--nav {
  background-color: #3D6E84;
}
.header__toggle--nav:hover, .header__toggle--nav:focus {
  background-color: #355f73;
}

.header__toggle--search {
  background-color: #BE531C;
}
.header__toggle--search:hover, .header__toggle--search:focus {
  background-color: #a84919;
}

/**
 * Title:
 *    Breadcrumbs
 * Description:
 *    Styling the breadcrumbs component.
 * Sections:
 *    $. Variables
 *    $. Base
 */
/* $. Variables
\*----------------------------------------------------------------*/
/* $. Base
\*----------------------------------------------------------------*/
.breadcrumbs {
  position: relative;
  margin: 0;
  font-size: 0.89rem;
}
@media screen and (min-width: 62em) {
  .breadcrumbs {
    padding-top: 1em;
    border-top: 1px solid #F1F1F1;
  }
}
.breadcrumbs a {
  color: #3D6E84;
  border-bottom: 1px solid #3D6E84;
  border-bottom-color: rgba(61, 110, 132, 0.15);
  transition: all 0.15s ease-out;
}
.breadcrumbs a:hover, .breadcrumbs a:focus {
  border-bottom-color: rgba(61, 110, 132, 0.5);
}

.pagination {
  margin-top: 2em;
  font-size: 1rem;
}
.pagination a,
.pagination span {
  display: inline-block;
}
.pagination .current {
  cursor: default;
}
.pagination .current,
.pagination .page,
.pagination .previouspostslink {
  margin-right: 0.5em;
  margin-bottom: 0.5em;
}
.pagination .current,
.pagination .page {
  width: 50px;
  text-align: center;
}
.pagination .pages {
  display: none;
}

.pagination,
.wp-pagenavi {
  margin-left: 0;
}
.pagination .pagination__item,
.wp-pagenavi .pagination__item {
  display: inline-block;
  background: #3D6E84;
  margin: 0.2rem 0;
}
.pagination .pagination__item.active_page,
.wp-pagenavi .pagination__item.active_page {
  background: #3D6E84;
}
.pagination .pagination__item a,
.pagination a.pagination__item,
.pagination span.pagination__item,
.wp-pagenavi .pagination__item a,
.wp-pagenavi a.pagination__item,
.wp-pagenavi span.pagination__item {
  padding: 0.5em;
  color: white;
  border: 0;
}

.wp-pagenavi .pagination__item {
  line-height: 1;
  min-width: 40px;
  text-align: center;
  margin: 0.2rem;
}

/**
 * Title:
 *    Defaults
 * Description:
 *    These are the base styles for the project
 * Sections:
 *    $. Defaults
 *    $. Selections
 */
/**
 * Title:
 *    Forms
 * Description:
 *    Styling of forms and form variations
 * Sections:
 *    $. Basics
 *    $. Placeholders
 */
/**
 * Title:
 *    Article
 * Description:
 *
 * Sections:
 *    $. Setup
 *    $. Base
 *    $. Elements
 *    $. Modifiers
 */
/* $. Setup
\*----------------------------------------------------------------*/
/* $. Base
\*----------------------------------------------------------------*/
/* $. Elements
\*----------------------------------------------------------------*/
.article__media {
  position: relative;
  float: left;
  display: none;
}
@media screen and (min-width: 48em) {
  .article__media {
    display: block;
    max-width: 190px;
  }
}

.article__icon {
  width: 190px;
  height: 190px;
}

@media screen and (min-width: 48em) {
  .article__media + .article__body {
    margin-left: 190px;
    padding-left: 1em;
  }
}

.article__head {
  margin-bottom: 0.5em;
}

.article__title {
  font-weight: 400;
  font-family: "Arial", sans-serif;
  line-height: 1.1;
  margin-bottom: 0.75em;
}
.article--home .article__title a {
  color: #4C4C4C;
}
.article--home .article__title a:focus, .article--home .article__title a:active, .article--home .article__title a:hover {
  color: #252525;
}

.article__excerpt,
.article__posted {
  margin: 0;
}

.article__posted {
  font-weight: 500;
  font-family: "Arial", sans-serif;
}

.article__image {
  display: none;
}
@media screen and (min-width: 48em) {
  .article__image {
    display: inline-block;
    max-width: 100%;
  }
}

/* $. Modifiers
\*----------------------------------------------------------------*/
.article--home .article__image {
  display: block;
  margin-bottom: 1em;
}
@media screen and (min-width: 48em) {
  .article--home .article__image {
    margin: 0;
  }
}
.article--home.article--first {
  margin-bottom: 1.5em;
  padding-bottom: 1.5em;
  border-bottom: 2px solid #3D6E84;
}
@media screen and (min-width: 78em) {
  .article--home.article--first {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: 0;
  }
}

.article__media--date {
  text-align: center;
  display: block;
  color: #4C4C4C;
  background-color: #CAEBF8;
}
.article__media--date span {
  display: block;
  line-height: 1.25;
}
@media screen and (min-width: 48em) {
  .article__media--date {
    display: block;
    border-top: 0.5em solid #3D6E84;
    width: 100%;
    max-width: 190px;
    padding: 1em;
  }
}

.video-background,
.video {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  height: 100vh;
  width: 100%;
}

.video-background {
  z-index: 5;
  background-color: rgba(0, 0, 0, 0.75); /*dim the background*/
}

.video {
  z-index: 10;
}

.video__wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  bottom: 0;
  right: 0;
  width: 75%;
  max-width: 880px;
  transform: translate(-50%, -50%);
}

.video-close {
  display: inline-block;
  line-height: 1;
  margin: 0;
  padding: 1em;
  background: black;
  color: #FFFFFF;
  border: 0;
  border-radius: 50%;
  transition: none;
  cursor: pointer;
  z-index: 10;
  position: fixed;
  top: 0.5em;
  right: 0.5em;
}
.video-close .icon {
  width: 50px;
  height: 50px;
}

.banner {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 30%;
  text-align: right;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.banner--titled {
  height: auto;
  min-height: 400px;
  padding-bottom: 0;
}

@media screen and (max-width: 48em) {
  .banner--titled--post {
    min-height: 0;
  }
}
.banner__image {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 30%;
  min-height: 200px;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
@media screen and (min-width: 48em) {
  .banner__image {
    position: absolute;
    width: 100%;
    height: 100%;
    padding-bottom: 0;
  }
}

.banner__box {
  background-color: #FFFFFF;
  position: relative;
  display: inline-block;
  text-align: left;
  padding: 1.5em 0;
}
@media screen and (min-width: 48em) {
  .banner__box {
    width: 50%;
    margin-top: 4em;
    margin-bottom: 2em;
    padding: 1.5em;
  }
}
.banner__box h1 {
  color: #BE531C;
}

.banner-alt__container {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 30%;
  text-align: right;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.banner__alternative {
  width: 100%;
  max-height: 340px;
  padding: 10px 10px 60px;
  align-items: center;
  margin: 0;
  text-align: center;
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 400px) {
  .banner__alternative {
    max-height: 350px;
  }
}
@media screen and (min-width: 850px) {
  .banner__alternative {
    flex-direction: row;
    max-height: 300px;
    text-align: left;
  }
}
@media screen and (min-width: 1050px) {
  .banner__alternative {
    max-height: 350px;
  }
}
.banner__alternative h1 {
  color: black;
  font-size: 38px;
  margin-bottom: 0.2em;
}
@media screen and (min-width: 400px) {
  .banner__alternative h1 {
    font-size: 40px;
  }
}
@media screen and (min-width: 850px) {
  .banner__alternative h1 {
    font-size: 48px;
    margin-bottom: 0.25em;
  }
}
@media screen and (min-width: 1050px) {
  .banner__alternative h1 {
    font-size: 52px;
  }
}

body.body__equal .banner__alternative.banner--titled__alternative {
  padding-top: 40px;
  background: url("../../imgs/icons/circle.jpg") no-repeat center top 30px;
  background-size: 48px;
}
@media screen and (min-width: 400px) {
  body.body__equal .banner__alternative.banner--titled__alternative {
    background-size: 48px;
  }
}
@media screen and (min-width: 850px) {
  body.body__equal .banner__alternative.banner--titled__alternative {
    background-size: 58px;
    background-position: left 8px top 25px;
  }
}

.banner__box__alternative {
  width: 80%;
}

.banner__content__alternative {
  margin: 60px 0 0;
  display: flex;
  flex-direction: column;
}
.banner__content__alternative .intro__alternative {
  font-size: 24px;
}
@media screen and (max-width: 500px) {
  .banner__content__alternative .intro__alternative {
    font-size: 18px;
  }
}

body.body__unity .banner__content__alternative.widgit__content {
  padding-left: 0;
}

body.body__unity img.location-image__alternative {
  width: 100%;
  max-width: 138px;
  padding-top: 23px;
  margin: 0;
}
@media screen and (min-width: 400px) {
  body.body__unity img.location-image__alternative {
    padding-top: 15px;
  }
}
@media screen and (min-width: 800px) {
  body.body__unity img.location-image__alternative {
    max-width: 220px;
    padding-top: 19px;
  }
}
@media screen and (min-width: 867px) {
  body.body__unity img.location-image__alternative {
    padding-top: 72px;
  }
}
@media screen and (min-width: 1050px) {
  body.body__unity img.location-image__alternative {
    max-width: 273px;
  }
}

body.body__unity .content__alternative {
  padding-top: 10px;
}
@media screen and (min-width: 800px) {
  body.body__unity .content__alternative {
    display: flex;
    flex-direction: row-reverse;
    padding-top: 36px;
    margin: 0 0.5em 0 -2em;
  }
}
@media screen and (min-width: 1050px) {
  body.body__unity .content__alternative {
    justify-content: space-between;
  }
}
body.body__unity .content__alternative .grid__item {
  width: auto;
}
body.body__unity .location-sidebar__image {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 50%;
  padding-top: 5px;
  margin-bottom: 20px;
}
@media screen and (min-width: 800px) {
  body.body__unity .location-sidebar__image {
    padding-top: 0px;
    width: fit-content;
    max-width: 270px;
    margin: 0 0;
  }
}
@media screen and (min-width: 1050px) {
  body.body__unity .location-sidebar__image {
    max-width: 310px;
  }
}

body.body__equal .banner__content__alternative.widgit__content {
  padding-left: 0;
  margin: 0px;
}
body.body__equal .banner__content__alternative.widgit__content .widget__image--equal {
  margin-inline: auto;
}
@media screen and (min-width: 48em) {
  body.body__equal .banner__content__alternative.widgit__content .widget__image--equal {
    margin: unset;
  }
}

body.body__equal img.location-image__alternative {
  width: 100%;
  max-width: 165px;
  margin: 0;
  padding-top: 24px;
}
@media screen and (min-width: 48em) {
  body.body__equal img.location-image__alternative {
    padding-top: 0;
    max-width: 190px;
  }
}
@media screen and (min-width: 62em) {
  body.body__equal img.location-image__alternative {
    max-width: 215px;
  }
}

body.body__equal .content__alternative {
  padding-top: 10px;
}
@media screen and (min-width: 800px) {
  body.body__equal .content__alternative {
    display: flex;
    flex-direction: row-reverse;
    padding-top: 36px;
    margin: 0 0.5em 0 -2em;
  }
}
@media screen and (min-width: 1050px) {
  body.body__equal .content__alternative {
    justify-content: space-between;
  }
}
body.body__equal .content__alternative .grid__item {
  width: auto;
}
body.body__equal .location-sidebar__image {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 50%;
  padding-top: 5px;
  margin-bottom: 20px;
}
@media screen and (min-width: 800px) {
  body.body__equal .location-sidebar__image {
    padding-top: 0px;
    width: fit-content;
    max-width: 270px;
    margin: 0 0;
  }
}
@media screen and (min-width: 1050px) {
  body.body__equal .location-sidebar__image {
    max-width: 310px;
  }
}

body.body__equal .banner--titled__alternative {
  display: flex;
  flex-direction: row;
  align-items: center;
  max-height: none;
  justify-content: space-between;
  text-align: unset;
}
@media screen and (max-width: 48em) {
  body.body__equal .banner--titled__alternative {
    flex-direction: column;
    text-align: center;
  }
}

body.body__equal .banner__box__alternative {
  max-width: 680px;
  width: 100%;
}

body.body__equal .widget__image--equal {
  max-width: 60px;
}

/**
 * Title:
 *    Extras
 * Description:
 *    Any other helpers which will be used throughout the project
 * Sections:
 *    $. Clearfix
 *    $. Flexible
 *    $. States
 *    $. Breakpoint Visibility
 */
/**
 * Title:
 *    List variations
 * Description:
 *    Styling for different types of lists throughout the site.
 * Sections:
 *    $. Resets
 *    $. Components
 */
.card {
  padding-bottom: 1.5em;
}

.card__content {
  position: relative;
  display: block;
  width: 100%;
  padding: 1em;
  min-height: 130px;
  color: #2C5162;
  padding-left: 130px;
}

.card__icon {
  margin-left: -110px;
}

.card__text {
  display: inline-block;
  vertical-align: middle;
  max-width: 100%;
  padding-left: 1em;
}

.card__link {
  text-decoration: none;
  text-shadow: 0.05em 0 0 #fff, -0.05em 0 0 #fff, 0 0.05em 0 #fff, 0 -0.05em 0 #fff, 0.1em 0 0 #fff, -0.1em 0 0 #fff, 0 0.1em 0 #fff, 0 -0.1em 0 #fff;
  background-image: linear-gradient(to right, currentColor 0%, currentColor 100%);
  background-repeat: repeat-x;
  background-position: bottom 0.05em center;
  background-size: 100% 0.1rem;
}
.card__link:hover {
  text-shadow: 0.05em 0 0 #fff, -0.05em 0 0 #fff, 0 0.05em 0 #fff, 0 -0.05em 0 #fff, 0.1em 0 0 #fff, -0.1em 0 0 #fff, 0 0.1em 0 #fff, 0 -0.1em 0 #fff;
  background-image: linear-gradient(to right, currentColor 0%, currentColor 100%);
}

.card__content--sky-blue {
  background-color: #CAEBF8;
}
.card__content--sky-blue .card__link {
  text-decoration: none;
  text-shadow: 0.05em 0 0 #CAEBF8, -0.05em 0 0 #CAEBF8, 0 0.05em 0 #CAEBF8, 0 -0.05em 0 #CAEBF8, 0.1em 0 0 #CAEBF8, -0.1em 0 0 #CAEBF8, 0 0.1em 0 #CAEBF8, 0 -0.1em 0 #CAEBF8;
  background-image: linear-gradient(to right, #70c9ec 0%, #70c9ec 100%);
  background-repeat: repeat-x;
  background-position: bottom 0.05em center;
  background-size: 100% 0.1rem;
}
.card__content--sky-blue .card__link:hover {
  text-shadow: 0.05em 0 0 #CAEBF8, -0.05em 0 0 #CAEBF8, 0 0.05em 0 #CAEBF8, 0 -0.05em 0 #CAEBF8, 0.1em 0 0 #CAEBF8, -0.1em 0 0 #CAEBF8, 0 0.1em 0 #CAEBF8, 0 -0.1em 0 #CAEBF8;
  background-image: linear-gradient(to right, #43b8e6 0%, #43b8e6 100%);
}

.card__image {
  padding-top: 66.6666666667%;
  display: block;
  content: "";
  overflow: hidden;
  background-size: cover;
  background-position: center center;
  position: relative;
}

.card__image-icon {
  position: absolute;
  left: -1em;
  bottom: -1em;
}

.media-panel {
  width: 100%;
  margin: 2em 0 1em;
}
@media screen and (min-width: 48em) {
  .media-panel {
    display: table;
    display: flex;
    margin: 3em 0 2em;
  }
}

.media-panel__image {
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  height: 0;
  padding-bottom: 40%;
  min-height: 200px;
  overflow: hidden;
}
@media screen and (min-width: 48em) {
  .media-panel__image {
    height: auto;
    padding-bottom: 0;
    display: table-cell;
    display: flex;
    width: 50%;
  }
}
@media screen and (min-width: 62em) {
  .media-panel__image {
    width: 30%;
  }
}

.media-panel__body {
  padding: 2em;
}
@media screen and (min-width: 48em) {
  .media-panel__body {
    display: table-cell;
    display: flex;
    flex-grow: 1;
    flex-direction: column;
    width: 50%;
  }
}
@media screen and (min-width: 62em) {
  .media-panel__body {
    width: 70%;
  }
}

/**
 * Title:
 *    Widgit
 * Sections:
 *    $. Base
 *    $. Positioning
 *    $. Sizing
 */
/* $. Base
\*----------------------------------------------------------------*/
.widgit {
  position: relative;
}

.widgit__image img {
  max-width: 65px;
}

.widgit__content {
  position: relative;
}
@media screen and (min-width: 30em) {
  .widgit__content {
    padding-left: 85px;
  }
}

/* $. Positioning
\*----------------------------------------------------------------*/
.widgit__image--inline {
  display: inline-block;
  padding-right: 0.25em;
}

@media screen and (min-width: 30em) {
  .widgit__image--absolute {
    position: absolute;
  }
}

.widgit__image--card {
  position: absolute;
  left: -1em;
  bottom: -1em;
  background-color: #FFFFFF;
  border-radius: 50%;
  text-align: center;
  vertical-align: middle;
}

.widgit__image--card-alt {
  position: absolute;
  left: 1em;
  bottom: 1em;
  background-color: #FFFFFF;
  border-radius: 50%;
  text-align: center;
  vertical-align: middle;
}

.widgit__image--round-inline {
  display: inline-block;
  background-color: #FFFFFF;
  border-radius: 50%;
  text-align: center;
  vertical-align: middle;
}

/* $. Sizing
\*----------------------------------------------------------------*/
.widgit__image--small {
  width: 70px;
  height: 70px;
  line-height: 65px;
}
.widgit__image--small img {
  max-width: 40px;
}

.widgit__image--regular {
  width: 90px;
  height: 90px;
  line-height: 90px;
}
.widgit__image--regular img {
  max-width: 60px;
}

.widgit__image--medium {
  width: 100px;
  height: 100px;
  line-height: 100px;
}
.widgit__image--medium img {
  max-width: 65px;
}

.widgit__image--large {
  width: 110px;
  height: 110px;
  line-height: 110px;
}
.widgit__image--large img {
  max-width: 65px;
}

/* $. Layout - Page based layouts i.e. .header, .page-86, etc
\*----------------------------------------------------------------*/
/**
 * Title:
 *    Forms
 * Description:
 *    Styling of forms and form variations
 * Sections:
 *    $. Basics
 *    $. Placeholders
 */
/**
 * 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;
  padding: 0.8em 0 0;
  margin-bottom: 0.8em;
}
@media screen and (min-width: 48em) {
  .header {
    padding: 3.5em 0 1.5em;
    margin-bottom: 0;
  }
  .header .container {
    position: relative;
  }
}
@media screen and (min-width: 62em) {
  .header {
    padding: 4.5em 0 1.5em;
  }
}

.header__upper {
  margin-bottom: 0.75em;
}
@media screen and (min-width: 62em) {
  .header__upper {
    margin-bottom: 0;
  }
}

.header__nav {
  width: 100%;
}

.header__nav,
.header__search {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 5;
}
@media screen and (min-width: 48em) {
  .header__nav,
  .header__search {
    position: static;
    top: auto;
  }
}

/* $. Logo
\*----------------------------------------------------------------*/
.header__logo {
  display: block;
  width: 225px;
  height: 103px;
  background-size: contain;
  background-position: center;
}
@media screen and (min-width: 78em) {
  .header__logo {
    width: 259px;
    height: 119px;
  }
}

/* $. Search
\*----------------------------------------------------------------*/
.header__search {
  margin: 0;
  padding: 1em 3.25%;
  background-color: #BE531C;
  display: none;
}
.header__search label {
  display: none;
}
.header__search fieldset {
  padding: 0;
  border: 0;
  margin: 0;
}
.header__search input {
  border: 0;
}
.is-active-search .header__search {
  display: block;
}
@media screen and (min-width: 48em) {
  .header__search {
    display: inline;
    padding: 0;
    background-color: transparent;
    position: absolute;
    left: auto;
    right: 0;
    top: 35px;
  }
  .header__search label,
  .header__search .form__fields {
    display: inline;
  }
  .header__search label {
    padding: 0;
  }
  .header__search label span {
    margin-right: 5px;
  }
  .header__search input {
    border: 1px solid #CCCCCC;
  }
}
@media screen and (min-width: 62em) {
  .header__search {
    top: 0.3333333333em;
  }
}
/**
 * Title:
 *    Box
 * Description:
 *
 * Sections:
 *    $. Setup
 *    $. Component
 *    $. Themes
 *    $. Sizing
 *    $. Grid
 */
/**
 * Title:
 *    Containers
 * Description:
 *    Container based layout modules
 * Sections:
 *    $. Base
 *    $. Modifications
 */
/* $. Base
\*----------------------------------------------------------------*/
.container {
  margin: 0 auto;
  min-width: 15em;
  max-width: 68.5em;
  width: 92.5%;
}
@media screen and (min-width: 30em) {
  .container {
    margin: 0 auto;
    min-width: 15em;
    max-width: 68.5em;
    width: 85%;
  }
}

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

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

/**
 * Title:
 *    List variations
 * Description:
 *    Styling for different types of lists throughout the site.
 * Sections:
 *    $. Resets
 *    $. Components
 */
/**
 * Title:
 *    Content
 * Description:
 *    Content coming from the CMS
 * Sections:
 *    $. Content
 */
/* $. Content
\*----------------------------------------------------------------*/
.content {
  max-width: 850px;
}
.content > *:last-child {
  margin-bottom: 0;
}
.content ul {
  margin-bottom: 2em;
}
.content h2,
.content h3,
.content h4 {
  padding-top: 0.5em;
}
.content .btn {
  margin-top: 1em;
  background-image: none;
  text-shadow: none;
}
.content .panel {
  margin-top: 2em;
}
.content .gform_fields {
  margin-bottom: 0;
}

/**
 * Title:
 *    CMS
 * Description:
 *    Fields and selectors that come through WordPress or a plugin
 * Sections:
 *    $. WYSIWIG
 */
/* $. WYSIWIG
\*----------------------------------------------------------------*/
.alignleft {
  margin-bottom: 1em;
}
@media screen and (min-width: 48em) {
  .alignleft {
    float: left;
    margin-right: 1.5em;
  }
}

.alignright {
  margin-bottom: 1em;
}
@media screen and (min-width: 48em) {
  .alignright {
    float: right;
    margin-left: 1.5em;
  }
}

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

/* $. Other
\*----------------------------------------------------------------*/
/**
 * Title:
 *    Defaults
 * Description:
 *    These are the base styles for the project
 * Sections:
 *    $. Defaults
 *    $. Selections
 */
/**
 * Title:
 *    Forms
 * Description:
 *    Styling of forms and form variations
 * Sections:
 *    $. Basics
 *    $. Placeholders
 */
/**
 * 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 {
  margin-bottom: 1em;
}

.footer__upper {
  font-weight: 300;
  font-family: "Arial", sans-serif;
  font-size: 1.375rem;
  line-height: 1.3;
  padding: 2em 0 0;
}
.footer__upper strong,
.footer__upper dt {
  font-weight: 400;
  font-family: "Arial", sans-serif;
}
@media screen and (min-width: 62em) {
  .footer__upper {
    font-size: 1.25rem;
  }
}

.footer__logo {
  display: block;
  width: 234px;
  height: 108px;
  background-size: contain;
  background-position: center;
}
@media screen and (min-width: 78em) {
  .footer__logo {
    width: 234px;
    height: 108px;
  }
}

.footer__address {
  margin: 1em 0 0;
}
.footer__address strong,
.footer__address span {
  display: block;
}
@media screen and (min-width: 78em) {
  .footer__address {
    margin-top: 0;
  }
}

.footer__contact {
  margin-top: 1em;
  text-align: left;
  display: inline-block;
}
@media screen and (min-width: 30em) {
  .footer__contact dt {
    display: block;
  }
}
@media screen and (min-width: 78em) {
  .footer__contact {
    margin-top: 0;
  }
}
.footer__contact div {
  margin-top: 1em;
}
.footer__contact div:first-child {
  margin-top: 0;
}
@media screen and (min-width: 48em) {
  .footer__contact div {
    margin-top: 1em;
  }
  .footer__contact div:first-child {
    margin-top: 0;
  }
}
.footer__contact dt,
.footer__contact dd {
  margin: 0;
  font-style: normal;
}
.footer__contact a {
  color: #3D6E84;
}
.footer__contact a span {
  position: relative;
}
.footer__contact a span:after {
  content: "";
  display: block;
  width: 100%;
  position: absolute;
  top: 92.5%;
  left: 0;
  border-bottom-style: solid;
  border-bottom-color: #CAEBF8;
  border-bottom-width: 1px;
}
.footer__contact a:focus, .footer__contact a:active, .footer__contact a:hover {
  color: #2d5161;
}
.footer__contact a:focus span:after, .footer__contact a:active span:after, .footer__contact a:hover span:after {
  border-bottom-color: #8DB9CA;
}

.footer__social {
  display: block;
  margin-top: 1em;
}
@media screen and (min-width: 48em) {
  .footer__social {
    text-align: right;
    margin-top: 2em;
  }
}
.footer__social li {
  display: inline-block;
  margin: 0 0 0 0.25em;
}
.footer__social li:first-child {
  margin-left: 0;
}
@media screen and (min-width: 48em) {
  .footer__social li {
    display: inline-block;
    margin: 0 0 0 0.2em;
  }
  .footer__social li:first-child {
    margin-left: 0;
  }
}

@media screen and (min-width: 48em) {
  .footer__newsletter {
    margin-top: 2em;
  }
}

.footer__lower {
  padding-top: 1.25em;
  margin-top: 2em;
  position: relative;
}
.footer__lower:before {
  content: "";
  display: block;
  width: 100%;
  height: 4px;
  background-color: #CAEBF8;
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (min-width: 48em) {
  .footer__lower {
    text-align: center;
    font-size: 1.125rem;
  }
}
@media screen and (min-width: 62em) {
  .footer__lower {
    text-align: left;
    font-size: 0.75rem;
  }
}
@media screen and (min-width: 78em) {
  .footer__lower {
    font-size: 0.8125rem;
  }
}

/* $. Copyright
\*----------------------------------------------------------------*/
.footer__copyright {
  margin: 1em 0 0;
}
.footer__copyright > span {
  display: block;
}
.footer__copyright a span {
  position: relative;
}
.footer__copyright a span:after {
  content: "";
  display: block;
  width: 100%;
  position: absolute;
  top: 92.5%;
  left: 0;
  border-bottom-style: solid;
  border-bottom-color: #CAEBF8;
  border-bottom-width: 1px;
}
.footer__copyright a:focus, .footer__copyright a:active, .footer__copyright a:hover {
  color: #2C5162;
}
.footer__copyright a:focus span:after, .footer__copyright a:active span:after, .footer__copyright a:hover span:after {
  border-bottom-color: #8DB9CA;
}
.is-current .footer__copyright a {
  color: #2C5162;
}
.is-current .footer__copyright a span:after {
  border-bottom-color: #8DB9CA;
}
@media screen and (min-width: 62em) {
  .footer__copyright {
    margin-top: 0;
    text-align: right;
  }
}
@media screen and (min-width: 78em) {
  .footer__copyright {
    text-align: right;
  }
  .footer__copyright > span {
    display: inline-block;
  }
}

@media screen and (min-width: 62em) {
  .copyright__owner {
    margin-right: 0.25em;
    padding-right: 0.5em;
    border-right: 1px solid;
  }
}

/* $. Copyright
\*----------------------------------------------------------------*/
/**
 * Title:
 *    Elements
 * Description:
 *    The styling of basic element tags
 * Sections:
 *    $. Basics
 *    $. Links
 *    $. Blockquotes
 *    $. Embedded
 */
/**
 * Title:
 *    Sidebar
 * Description:
 *    Used to display the Sidebar's styling on pages or posts
 *    which have one.
 * Sections:
 *    $. Base
 */
/* $. Base
\*----------------------------------------------------------------*/
.sidebar {
  padding-top: 1em;
}
@media screen and (min-width: 62em) {
  .sidebar {
    padding-top: 0;
    padding-left: 3em;
  }
}

/* $. Elements
\*----------------------------------------------------------------*/
.sidebar__section {
  padding-left: 2rem;
  position: relative;
}
.sidebar__section:before, .sidebar__section:after {
  display: block;
  content: "";
  width: 10px;
  position: absolute;
  left: 0;
}
.sidebar__section:after {
  background-color: #CAEBF8;
  height: 100%;
  z-index: 5;
  top: 0;
}

.sidebar__list {
  font-size: 1.25em;
}
.sidebar__list ul {
  font-size: 0.875em;
  margin-top: 0.5em;
}
.sidebar__list > .is-current-parent, .sidebar__list > .is-current {
  position: relative;
}
.sidebar__list > .is-current-parent:before, .sidebar__list > .is-current:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: -2rem;
  width: 10px;
  background-color: #8DB9CA;
  z-index: 10;
}

body.body__unity .panel--grey {
  background-color: #f5e504;
  color: #000000;
}
body.body__unity .panel--grey a {
  color: #000000;
  background-image: none;
}
body.body__unity .panel--sky-blue {
  background-color: #fc7181;
  color: #000000;
}
body.body__unity .panel--sky-blue a {
  color: #000000;
  background-image: none;
}
body.body__unity .btn--blue {
  background-color: #f5e504;
}
body.body__unity .btn--blue:hover, body.body__unity .btn--blue:focus {
  color: black;
  background: #fc7181;
}
body.body__unity .btn--blue .btn__inner {
  color: #000000;
  text-decoration: underline black;
  background-image: none;
}
body.body__unity strong {
  text-shadow: none;
  text-decoration: underline black;
}

body.body__unity .alternative_section .grid__item .card__image {
  margin-bottom: 0;
}
body.body__unity .alternative_section .grid__item h2 {
  background-color: #fc7181;
  text-decoration: underline black;
  padding: 20px;
}
body.body__unity .alternative_section .grid__item h2 .link {
  color: #000000;
  text-shadow: none;
  background-image: none;
}

body.body__unity .grid-alternative_container {
  margin: 0 auto;
  min-width: 15em;
  max-width: 68.5em;
  width: 85%;
}

body.body__unity .card__content--sky-blue {
  background-color: #fc7181;
}
body.body__unity .card__content--sky-blue .card__link {
  color: #000000;
  text-shadow: none;
  text-decoration: underline black;
  background-image: none;
}

body.body__unity .banner__alternative.banner--titled__alternative {
  border-top: 20px solid #fc7181;
  border-bottom: 20px solid #fc7181;
}

body.body__unity .sidebar__section::after {
  background-color: #f5e504;
}

body.body__unity .sidebar__section .is-current::before {
  background-color: #fc7181;
}

body.body__unity .sidebar__list .is-current-parent:before {
  background-color: #fc7181;
}

body.body__equal .panel--grey {
  background-color: #f5e504;
  color: #000000;
}
body.body__equal .panel--grey a {
  color: #000000;
  background-image: none;
}
body.body__equal .btn--blue {
  background-color: #54979d;
  color: black;
}
body.body__equal .btn--blue:hover {
  background: #70c7d1;
}
body.body__equal .btn--blue:focus {
  background: #f7cb19;
}
body.body__equal .btn--blue .btn__inner {
  color: #000000;
  text-decoration: underline black;
  background-image: none;
}
body.body__equal strong {
  text-shadow: none;
  text-decoration: underline black;
}

body.body__equal .alternative_section .grid__item .card__image {
  margin-bottom: 0;
}
body.body__equal .alternative_section .grid__item h2 {
  background-color: #54979d;
  text-decoration: underline black;
  padding: 20px;
}
body.body__equal .alternative_section .grid__item h2 .link {
  color: #000000;
  text-shadow: none;
  background-image: none;
}

body.body__equal .grid-alternative_container {
  margin: 0 auto;
  min-width: 15em;
  max-width: 68.5em;
  width: 85%;
}

body.body__equal .card__content--sky-blue {
  background-color: #54979d;
}
body.body__equal .card__content--sky-blue .card__link {
  color: #000000;
  text-shadow: none;
  text-decoration: underline black;
  background-image: none;
}

body.body__equal .banner__alternative.banner--titled__alternative {
  border-top: 20px solid #f7cb19;
  border-bottom: 20px solid #f7cb19;
}

/**
 * Title:
 *    Forms
 * Description:
 *    Styling of forms and form variations
 * Sections:
 *    $. Basics
 *    $. Placeholders
 */
/* $. Helpers - i.e. Clearfixes, accessbility hidden, etc
\*----------------------------------------------------------------*/
/**
 * Title:
 *    Defaults
 * Description:
 *    These are the base styles for the project
 * Sections:
 *    $. Defaults
 *    $. Selections
 */
/**
 * 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-bottom\/4 {
  margin-bottom: 0.25em;
}

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

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

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

.u-push-right\/4 {
  margin-right: 0.25em;
}

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

.u-zero-pad-top {
  padding-top: 0;
}

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

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

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

@media screen and (min-width: 48em) {
  .u-align-right-bp2 {
    text-align: right;
  }
}

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

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

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

/* Size specific */
@media screen and (min-width: 78em) {
  .u-float-right-bp4 {
    float: right;
  }
}

@media screen and (min-width: 30em) {
  .u-block-bp1 {
    display: block;
  }
}

@media screen and (min-width: 62em) {
  .u-block-bp3 {
    display: block;
  }
}

/* $. Type Styling
\*----------------------------------------------------------------*/
/* Sizing */
.u-size-small {
  font-size: 0.8rem;
}

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

/* Weight */
.u-weight-light {
  font-weight: 200;
  font-family: "Arial", sans-serif;
}

.u-weight-book {
  font-weight: 300;
  font-family: "Arial", sans-serif;
}

.u-weight-regular {
  font-weight: 400;
  font-family: "Arial", sans-serif;
}

.u-weight-medium {
  font-weight: 500;
  font-family: "Arial", sans-serif;
}

.u-weight-bold {
  font-weight: 700;
  font-family: "Arial", sans-serif;
}

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

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

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

/* $. Styling
\*----------------------------------------------------------------*/
.u-bg-sky-blue {
  background-color: #CAEBF8;
}

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

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

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

/* Wrapping */
.u-text-wrap {
  max-width: 100%;
  overflow-wrap: break-word;
  word-wrap: break-word;
  word-break: break-all;
  hyphens: auto;
}

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

/* $. Vendors - i.e. Clearfixes, accessbility hidden, etc
\*----------------------------------------------------------------*/
/**
 * Title:
 *    Better Anchor Links
 * Description:
 *    The WordPress plugin to provide an automated table of contents
 *    to a page/post
 * Sections:
 *    $. Title
 */
/* $. Title
\*----------------------------------------------------------------*/
.mwm-aal-container {
  margin-bottom: 2em;
}
@media screen and (min-width: 78em) {
  .mwm-aal-container {
    margin-bottom: 3em;
  }
}

/* $. Title
\*----------------------------------------------------------------*/
.mwm-aal-title {
  margin-bottom: 0.25em;
}

/* $. List
\*----------------------------------------------------------------*/
.mwm-aal-container ol {
  margin: 0 0 0 1em;
}

/* $. Target
\*----------------------------------------------------------------*/
.mwm-aal-item:before {
  content: "";
  display: block;
  height: 70px;
  margin: -70px 0 0;
}

#cookie-law-info-bar .cli_messagebar_head {
  font-weight: 700;
  font-size: 24px;
  margin: 12px 0;
}

#cookie-law-info-bar .cli_mixd_message {
  display: block;
  font-size: 19px;
  font-weight: 500;
  margin-bottom: 8px;
}

#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: 19px;
  padding: 14px;
  text-align: center;
  background-color: #00703c;
  color: white;
  font-weight: normal;
  margin: 0 5px 10px;
  line-height: 1.25;
  min-width: 200px;
  display: inline-block;
}

#cookie-law-info-bar .cli_mixd_buttons a:hover {
  background-color: #00572e !important;
}

.cli-tab-section .cli-switch input:checked + .cli-slider {
  background-color: #00703c;
}

.cli-modal-footer .cli-tab-footer .wt-cli-privacy-accept-btn {
  background-color: #00703c;
}

.cli-modal-footer .cli-tab-footer .wt-cli-privacy-accept-btn:hover {
  background-color: #00572e !important;
  opacity: 1;
}

/**
 * Title:
 *    Search WP
 * Description:
 *    The WordPress search plugin
 *
 */
.searchwp-highlight {
  font-weight: 500;
  color: #4C4C4C;
}

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

/**
 * Styles added manually to the styles.css file to change the look of the table of content pro jumplinks
 **/
.content #toc_container {
  margin: 2em 0;
  padding: 1.5em;
  background: #f1f1f1;
  border: none;
}

.content #toc_container p.toc_title {
  font-size: 1.666667em;
  font-weight: 300;
  text-align: left;
}

.content #toc_container li {
  margin-bottom: 0.5em;
}

/**
 * Title:
 *    Box
 * Description:
 *
 * Sections:
 *    $. Setup
 *    $. Component
 *    $. Themes
 *    $. Sizing
 *    $. Grid
 */
/**
 * Title:
 *    Forms
 * Description:
 *    Styling of forms and form variations
 * Sections:
 *    $. Basics
 *    $. Placeholders
 */
/**
 * Styling for the Civic Cookie Control plugin.
*/
.cookie-banner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

/**
* styling for when users are logged in and admin bar is visible
*/
.admin-bar .cookie-banner {
  top: 1em;
}

.cookie-banner--main,
.cookie-banner--accept,
.cookie-banner--reject {
  margin: 0 auto;
  min-width: 15em;
  max-width: 68.5em;
  width: 85%;
  padding: 0.6666666667em 0;
}

.cookie-banner--accept {
  padding: 0.5em 0;
}

.cookie-banner h2 {
  font-size: 1.5em;
}

.cbg-hidden {
  display: none;
}

.cookie-banner-button--accept,
.cookie-banner-accept--hide,
.govuk-button {
  margin-right: 0.5em;
  margin-bottom: 0.5em;
  display: block;
  width: 100%;
}
@media screen and (min-width: 48em) {
  .cookie-banner-button--accept,
  .cookie-banner-accept--hide,
  .govuk-button {
    display: inline-block;
    width: auto;
  }
}

.cookie-banner-accept--hide {
  margin-bottom: 0;
}

.cookie-banner-button--reject {
  display: block;
  width: 100%;
}
@media screen and (min-width: 48em) {
  .cookie-banner-button--reject {
    display: inline-block;
    width: auto;
  }
}

.govuk-body,
.govuk-fieldset__legend {
  font-size: 1em;
  margin-bottom: 0.5em;
}

.govuk-body:last-child {
  margin-bottom: 1em;
}

.govuk-radios__item {
  display: flex;
  margin-bottom: 1em;
}

.govuk-radios__label {
  padding: 2px 3px;
  line-height: 1;
}

#ccc {
  display: none;
}

.govuk-link {
  font-size: 1em;
  margin-bottom: 0.5em;
}

.govuk-form-group {
  margin-bottom: 1em;
}

/* $. Icons - Theme icons
\*----------------------------------------------------------------*/
.icon--arrow-left-white {
  background-image: url("../imgs/icons/arrow-left-white.svg");
  background-repeat: no-repeat;
}

.icon--arrow-right-white {
  background-image: url("../imgs/icons/arrow-right-white.svg");
  background-repeat: no-repeat;
}

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

.icon--blog-default {
  background-image: url("../imgs/icons/blog-default.svg");
  background-repeat: no-repeat;
}

.icon--chevron-right {
  background-image: url("../imgs/icons/chevron-right.svg");
  background-repeat: no-repeat;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.icon--rounded-tick {
  background-image: url("../imgs/icons/rounded-tick.svg");
  background-repeat: no-repeat;
}

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

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

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

.icon--title-icon {
  background-image: url("../imgs/icons/title-icon.png");
  background-repeat: no-repeat;
}

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

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

/* $. Print
\*----------------------------------------------------------------*/
/**
 * Title:
 *    Print Stylesheet
 * Description:
 *    Use to override print based styles
 */
/* $. Config - Variables, global mixins & Bower components
\*----------------------------------------------------------------*/
/**
 * Title:
 *    Defaults
 * Description:
 *    These are the base styles for the project
 * Sections:
 *    $. Defaults
 *    $. Selections
 */
/**
 * Title:
 *    Elements
 * Description:
 *    The styling of basic element tags
 * Sections:
 *    $. Basics
 *    $. Links
 *    $. Blockquotes
 *    $. Embedded
 */
/**
 * Title:
 *    Box
 * Description:
 *
 * Sections:
 *    $. Setup
 *    $. Component
 *    $. Themes
 *    $. Sizing
 *    $. Grid
 */
/**
 * Title:
 *    Extras
 * Description:
 *    Any other helpers which will be used throughout the project
 * Sections:
 *    $. Clearfix
 *    $. Flexible
 *    $. States
 *    $. Breakpoint Visibility
 */
/**
 * 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
\*----------------------------------------------------------------*/
/* $. Your new mixins
\*----------------------------------------------------------------*/
/**
 * 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:
 *    Forms
 * Description:
 *    Styling of forms and form variations
 * Sections:
 *    $. Basics
 *    $. Placeholders
 */
/* $. Base - Project defaults & Element styling
\*----------------------------------------------------------------*/
/* Print Styles */
@media print and (color) {
  * {
    print-color-adjust: economy;
  }
}
@media print {
  @page {
    size: A4;
  }
  * {
    background: none !important;
    page-break-before: avoid;
    page-break-after: avoid;
  }
  html {
    font-family: sans-serif;
    background: white;
    color: #252525;
    font-size: 12pt;
  }
  html,
  body {
    width: 210mm;
    height: 297mm;
  }
  a[href^=http]:after {
    content: " <" attr(href) "> ";
  }
  a[href^="#"]:after {
    content: "";
  }
  h1,
  h2,
  h3,
  h4,
  p {
    color: #000000;
  }
  blockquote {
    background: none;
    margin: 1em 0;
    padding: 1em;
  }
  a {
    padding: 0;
    margin: 0;
  }
  ul {
    page-break-inside: avoid;
  }
  div[class^=grid],
  .container {
    min-width: unset !important;
    max-width: 100% !important;
    width: 100% !important;
    padding: 0 !important;
    margin: 0;
  }
  header,
  section,
  aside,
  article,
  div,
  article {
    float: none;
    margin: 1em 0 !important;
  }
  *:empty {
    display: none;
  }
  header,
  aside {
    display: none;
  }
}
