@import url(https://fonts.googleapis.com/css?family=Fira+Sans:300,400,500,600,700);@charset "UTF-8";
/**
 * Convert a rem/em value to a pixel value using the base font size defined
 * in _config.scss
 *
 * @param $value rem/em value
 *
 * @return coverted px value
 */
/**
 * Convert a pixel/rem/em value to a multiple of the base font size defined
 * in _config.scss.
 *
 * @param $value rem/em value
 *
 * @return converted ratio value
 */
/**
 * Convert a pixel/em value to a rem value using the base font-size.
 *
 * @param $value pixel/em value
 *
 * @return converted rem value
 */
/**
 * Remove unit from a CSS value
 *
 * @param $num value
 *
 * @return stripped unit value
 */
/**
 * Generate aspect ratio from width and height values
 *
 * @include aspect-ratio(16, 9); // 56.25%
 *
 * @param $width width value
 * @param $height height value
 */
/**
 * Adds object fit and polyfill value
 *
 * @include object-fit(cover);
 *
 * @param $value object-fit property value
 */
/**
 * Output the content within a media query for the specified width
 *
 * @include breakpoint('xl') {
 *     ...
 * }
 * @include breakpoint(540px, max-width) {
 *     ...
 * }
 * @include breakpoint('l', min-width) {
 *     ...
 * }
 *
 * @param $width column width, either map key or integer value
 * @param $property null, min or max width
 */
/**
 * Add a micro-clearfix to the current element, clearing internal floats.
 *
 * @include clear();
 */
/**
 * Declare a web font using cross-browser compatible syntax.
 *
 * @include font-face('font/montserrat-regular', 'montserratregular', 'montserrat', normal, 400);
 *
 * @todo Establish best practice for SVG on Chrome/Windows.
 *
 * @param $location fonts file path
 * @param $svg-id SVG font ID
 * @param $family font family vlaue i.e. 'Montserrat', sans-serif
 * @param $style font style i.e. italic
 * @param $weight font wight i.e. light, normal, bold
 */
/**
 * Declare a font-size and attempt to create a visually pleasing line-height
 * based on the base line-height declared in _config.scss.
 * The line-height algorithm may not always produce satisfactory results, use
 * good judgement.
 *
 * @include font-size(14px);
 * @include font-size(14px, true) // adding true regenerates the line height based on font size value provided
 *
 * @param $font-size
 * @param $line-height-required
 */
/**
 * Apply a set of heading styles. A corresponding class is defined for each
 * heading level, e.g. .h1 for h1.
 *
 * @include headings() {
 *     ...
 * }
 * @include headings(1) {
 *     ...
 * }
 * 
 * @param $list list of headings 1 - 6
 */
/**
 * Apply properties inside media query for retina-only styles
 *
 * @include retina() {
 *     ...
 * }
 *
 * @param $multiplier
 */
/**
 * Generates background image properites and retina image properties
 *
 * @include retina-iamges('img/icon/test-icon.png', 20px);
 * @include retina-image('img/icon/test-icon.png', 20px, 20px, 1 2 3);
 *
 * @param $filename image file path
 * @param $width width value
 * @param $height height value
 * @param $sizes override default retina sizes generated
 */
/**
 * Applies transitioning height styles. Works with js-toggle to toggle
 * the .is-active class
 *
 * @include transition-height(.2s);
 *
 * @param $duration duration of transition
 * @param $max-height max height value
 */
/*
|--------------------------------------------------------------------------
| Base text settings
|--------------------------------------------------------------------------
*/
/*
|--------------------------------------------------------------------------
| Headings
|--------------------------------------------------------------------------
*/
/*
|--------------------------------------------------------------------------
| Font sizes
|--------------------------------------------------------------------------
*/
/*
|--------------------------------------------------------------------------
| Font weights
|--------------------------------------------------------------------------
*/
/*
|--------------------------------------------------------------------------
| Vertical spacing
|--------------------------------------------------------------------------
*/
/*
|--------------------------------------------------------------------------
| Horizontal spacing
|--------------------------------------------------------------------------
*/
/*
|--------------------------------------------------------------------------
| Mobile first
|--------------------------------------------------------------------------
|
| Override to true if the default breakpoint is the smallest breakpoint.
|
*/
/*
|--------------------------------------------------------------------------
| Container settings
|--------------------------------------------------------------------------
|
| Sets the left and right gutter width at mobile, and the maximum container
| width at desktop.
|
*/
/*
|--------------------------------------------------------------------------
| Container breakpoint
|--------------------------------------------------------------------------
|
| If you need to, you may override the breakpoint at which the container
| toggles from mobile to desktop behaviour.
|
*/
/*
|--------------------------------------------------------------------------
| Default breakpoint prefix
|--------------------------------------------------------------------------
|
| This prefix will be used for classes to apply when no media query is
| active.
|
*/
/*
|--------------------------------------------------------------------------
| Breakpoints
|--------------------------------------------------------------------------
|
| Specify the prefixes and widths to use for each breakpoint.
|
*/
/*
|--------------------------------------------------------------------------
| Body background color
|--------------------------------------------------------------------------
*/
/*
|--------------------------------------------------------------------------
| Body text color
|--------------------------------------------------------------------------
*/
/*
|--------------------------------------------------------------------------
| Heading text color
|--------------------------------------------------------------------------
|
| Override if headings are a different color to the main body text.
|
*/
/*
|--------------------------------------------------------------------------
| Link colors
|--------------------------------------------------------------------------
*/
/*
|--------------------------------------------------------------------------
| Default colors
|--------------------------------------------------------------------------
|
| Other default colors used where morphsass needs to specify a color.
|
*/
/*
|--------------------------------------------------------------------------
| Brand and accent colors
|--------------------------------------------------------------------------
|
| Add any number of variables for your other colors.
|
*/
/*
|--------------------------------------------------------------------------
| Color map
|--------------------------------------------------------------------------
|
| This map is used to generate text color and background color override
| classes. Override and add your brand and accent colors.
|
*/
/*
|--------------------------------------------------------------------------
| Grid columns
|--------------------------------------------------------------------------
|
| A list of column widths.
|
*/
/*
|--------------------------------------------------------------------------
| Retina sizes
|--------------------------------------------------------------------------
|
| This list is used to generate the media queries and asset URLs when using
| the retina image mixin.
|
| For example, if serving @1x, @2x, @3x and @4x assets:
| $retina-sizes: 2 3 4;
|
*/
/*
|--------------------------------------------------------------------------
| z-indices
|--------------------------------------------------------------------------
*/
/*! normalize-scss | MIT/GPLv2 License | bit.ly/normalize-scss */
/* Document
   ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in
 *    IE on Windows Phone and in iOS.
 */
html {
  line-height: 1.15;
  /* 1 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
}

/* Sections
   ========================================================================== */
/**
 * Remove the margin in all browsers (opinionated).
 */
body {
  margin: 0;
}

/**
 * Add the correct display in IE 9-.
 */
article,
aside,
footer,
header,
nav,
section {
  display: block;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 */
figcaption,
figure {
  display: block;
}

/**
 * Add the correct margin in IE 8.
 */
figure {
  margin: 1em 40px;
}

/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box;
  /* 1 */
  height: 0;
  /* 1 */
  overflow: visible;
  /* 2 */
}

/**
 * Add the correct display in IE.
 */
main {
  display: block;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
}

/* Links
   ========================================================================== */
/**
 * 1. Remove the gray background on active links in IE 10.
 * 2. Remove gaps in links underline in iOS 8+ and Safari 8+.
 */
a {
  background-color: transparent;
  /* 1 */
  -webkit-text-decoration-skip: objects;
  /* 2 */
}

/* Text-level semantics
   ========================================================================== */
/**
 * 1. Remove the bottom border in Chrome 57- and Firefox 39-.
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none;
  /* 1 */
  text-decoration: underline;
  /* 2 */
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
  /* 2 */
}

/**
 * Prevent the duplicate application of `bolder` by the next rule in Safari 6.
 */
b,
strong {
  font-weight: inherit;
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
}

/**
 * Add the correct font style in Android 4.3-.
 */
dfn {
  font-style: italic;
}

/**
 * Add the correct background and color in IE 9-.
 */
mark {
  background-color: #ff0;
  color: #000;
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

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

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 */
audio,
video {
  display: inline-block;
}

/**
 * Add the correct display in iOS 4-7.
 */
audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 * Remove the border on images inside links in IE 10-.
 */
img {
  border-style: none;
}

/**
 * Hide the overflow in IE.
 */
svg:not(:root) {
  overflow: hidden;
}

/* Forms
   ========================================================================== */
/**
 * 1. Change the font styles in all browsers (opinionated).
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  font-family: sans-serif;
  /* 1 */
  font-size: 100%;
  /* 1 */
  line-height: 1.15;
  /* 1 */
  margin: 0;
  /* 2 */
}

/**
 * Show the overflow in IE.
 */
button {
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select {
  /* 1 */
  text-transform: none;
}

/**
 * 1. Prevent a WebKit bug where (2) destroys native `audio` and `video`
 *    controls in Android 4.
 * 2. Correct the inability to style clickable types in iOS and Safari.
 */
button,
html [type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
  /* 2 */
}

button,
[type=button],
[type=reset],
[type=submit] {
  /**
   * Remove the inner border and padding in Firefox.
   */
  /**
   * Restore the focus styles unset by the previous rule.
   */
}
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}
button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Show the overflow in Edge.
 */
input {
  overflow: visible;
}

/**
 * 1. Add the correct box sizing in IE 10-.
 * 2. Remove the padding in IE 10-.
 */
[type=checkbox],
[type=radio] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type=search] {
  -webkit-appearance: textfield;
  /* 1 */
  outline-offset: -2px;
  /* 2 */
  /**
   * Remove the inner padding and cancel buttons in Chrome and Safari on macOS.
   */
}
[type=search]::-webkit-search-cancel-button, [type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */
}

/**
 * Correct the padding in Firefox.
 */
fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  box-sizing: border-box;
  /* 1 */
  display: table;
  /* 1 */
  max-width: 100%;
  /* 1 */
  padding: 0;
  /* 3 */
  color: inherit;
  /* 2 */
  white-space: normal;
  /* 1 */
}

/**
 * 1. Add the correct display in IE 9-.
 * 2. Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  display: inline-block;
  /* 1 */
  vertical-align: baseline;
  /* 2 */
}

/**
 * Remove the default vertical scrollbar in IE.
 */
textarea {
  overflow: auto;
}

/* Interactive
   ========================================================================== */
/*
 * Add the correct display in Edge, IE, and Firefox.
 */
details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/*
 * Add the correct display in IE 9-.
 */
menu {
  display: block;
}

/* Scripting
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 */
canvas {
  display: inline-block;
}

/**
 * Add the correct display in IE.
 */
template {
  display: none;
}

/* Hidden
   ========================================================================== */
/**
 * Add the correct display in IE 10-.
 */
[hidden] {
  display: none;
}

/*
|--------------------------------------------------------------------------
| Root settings
|--------------------------------------------------------------------------
|
| Font settings are applied on the html element to ensure text is in style
| in all areas.
|
*/
html {
  box-sizing: border-box;
  color: #404040;
  font-family: "Fira Sans", sans-serif;
  font-size: 16px;
  height: 100%;
  line-height: 26px;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

*, *::before, *::after {
  box-sizing: inherit;
}

body {
  background: #d9d9d9;
  height: 100%;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
}

.cke_editable,
.cke_panel_container body,
[contenteditable=true] body,
body[contenteditable=true],
body.cke_panel_frame {
  background: white;
  padding: 2em;
}

/*
|--------------------------------------------------------------------------
| Block elements
|--------------------------------------------------------------------------
|
| Apply a consistent margin to elements where this is a reasonable default.
| Vertical margins are applied to the bottom only to avoid margin collapse
| and ease overriding.
|
*/
blockquote, dl, hr, ol, p, pre, table, ul {
  margin: 0 0 28px;
}

dd {
  margin: 0 0 0 28px;
}

hr {
  background: #cccccc;
  border: none;
  height: 1px;
}

ol, ul {
  padding-left: 28px;
}

li > ol,
li > ul {
  margin-bottom: 0;
}

/*
|--------------------------------------------------------------------------
| Links and buttons
|--------------------------------------------------------------------------
|
| Basic/default button and link styles.
|
*/
a, button {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: none;
  border: none;
  color: #fcbb68;
  outline: none;
  padding: 0;
  text-decoration: none;
}
a:focus, a:hover, button:focus, button:hover {
  color: #fb991d;
  outline: none;
}

a,
area,
button,
[role=button],
input,
label,
select,
summary,
textarea {
  cursor: pointer;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  touch-action: manipulation;
}

/*
|--------------------------------------------------------------------------
| Forms
|--------------------------------------------------------------------------
|
| Apply reasonable defaults to form elements.
|
*/
form {
  margin: 0;
}

label {
  cursor: pointer;
}
label > input[type=checkbox],
label > input[type=radio] {
  margin-right: 7px;
  vertical-align: middle;
}

input, select {
  display: inline-block;
  vertical-align: middle;
}

select {
  max-width: 100%;
  outline: none;
}

::-moz-placeholder {
  color: silver;
  opacity: 1;
}

:-ms-input-placeholder {
  color: silver;
  opacity: 1;
}

::placeholder {
  color: silver;
  opacity: 1;
}

/*
|--------------------------------------------------------------------------
| Headings
|--------------------------------------------------------------------------
|
| Apply reasonable defaults to headings. A corresponding class is defined
| for each heading level (e.g. .h1 for h1), to permit a heading element to
| use any heading style, or a non-heading element (e.g. span) to look like
| a heading.
|
*/
h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
  display: block;
  font-weight: normal;
  margin: 0 0 28px;
}
h1 a, .h1 a, h2 a, .h2 a, h3 a, .h3 a, h4 a, .h4 a, h5 a, .h5 a, h6 a, .h6 a {
  color: inherit;
}
h1 a:focus, h1 a:hover, .h1 a:focus, .h1 a:hover, h2 a:focus, h2 a:hover, .h2 a:focus, .h2 a:hover, h3 a:focus, h3 a:hover, .h3 a:focus, .h3 a:hover, h4 a:focus, h4 a:hover, .h4 a:focus, .h4 a:hover, h5 a:focus, h5 a:hover, .h5 a:focus, .h5 a:hover, h6 a:focus, h6 a:hover, .h6 a:focus, .h6 a:hover {
  color: #fb991d;
}
h1 small, .h1 small, h2 small, .h2 small, h3 small, .h3 small, h4 small, .h4 small, h5 small, .h5 small, h6 small, .h6 small {
  display: block;
  font-size: 1rem;
}

h1, .h1 {
  font-size: 64px;
  line-height: 78px;
}

h2, .h2 {
  font-size: 36px;
  line-height: 39px;
}

h3, .h3 {
  font-size: 30px;
  line-height: 39px;
}

h4, .h4 {
  font-size: 24px;
  line-height: 26px;
}

h5, .h5 {
  font-size: 22px;
  line-height: 26px;
}

h6, .h6 {
  font-size: 20px;
  line-height: 26px;
}

/*
|--------------------------------------------------------------------------
| Mobile first
|--------------------------------------------------------------------------
|
| Ensure media elements will not exceed the bounds of their containers.
|
*/
embed,
iframe,
img,
object {
  max-width: 100%;
}

/*
|--------------------------------------------------------------------------
| Text selection
|--------------------------------------------------------------------------
|
| Set the text selection background.
|
*/
::-moz-selection {
  background: #fcbb68;
  color: #fff;
}
::selection {
  background: #fcbb68;
  color: #fff;
}

/*
|--------------------------------------------------------------------------
| Mobile first
|--------------------------------------------------------------------------
|
| Apply reasonable defaults to table elements.
|
*/
table {
  border-collapse: collapse;
  width: 100%;
  word-wrap: break-word;
}

tr {
  vertical-align: top;
}

th, td {
  border: 1px solid #cccccc;
  padding: 14px 14px;
  text-align: left;
}

.table-fixed {
  table-layout: fixed;
}

/*
|--------------------------------------------------------------------------
| Button
|--------------------------------------------------------------------------
|
| Provides a base for applying a button style to <a>, <input type="submit">
| and <button> that will be a reasonably consistent size and align well
| with .text-input.
|
*/
.button {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: #fcbb68;
  border-radius: 0;
  border: 1px solid #fcbb68;
  color: #fff;
  display: inline-block;
  font-size: 16px;
  line-height: 26px;
  min-height: 54px;
  outline: none;
  padding: 14px 28px;
  text-align: center;
  vertical-align: middle;
}
.button:hover, .button:focus {
  background-color: #fb991d;
  border-color: #fb991d;
  color: #fff;
}

.button--wide {
  display: block;
  width: 100%;
}

/*
|--------------------------------------------------------------------------
| Container
|--------------------------------------------------------------------------
|
| Sets site width at desktop size and clears internal floats and margins.
|
*/
.container {
  max-width: 1180px;
  position: relative;
  margin: 0 auto;
}
@media only screen and (max-width: 1236px) {
  .container {
    margin: 0 28px;
  }
}
.container::before, .container::after {
  content: "";
  display: table;
}
.container::after {
  clear: both;
}

/*
|--------------------------------------------------------------------------
| Control
|--------------------------------------------------------------------------
|
| A base for applying checkbox and radio input styles that also
| deals with any browser incosistancies.
|
*/
.control {
  color: #404040;
  cursor: pointer;
  display: inline-block;
  padding-left: 24.3333333333px;
  position: relative;
  margin-right: 28px;
}

.control--block {
  display: block;
  margin-right: 0;
  margin-bottom: 14px;
}

.control input {
  opacity: 0;
  position: absolute;
  z-index: -1;
}

.control__indicator {
  background-color: #cccccc;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 50% 50%;
  border-radius: 0;
  color: #cccccc;
  display: block;
  font-size: 65%;
  height: 15px;
  line-height: 1rem;
  position: absolute;
  top: 50%;
  left: 0;
  text-align: center;
  transform: translateY(-50%);
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  width: 15px;
  /* Radio modifier */
}
input:focus ~ .control__indicator {
  box-shadow: 0 0 0 0.075rem #fff, 0 0 0 0.2rem #fcbb68;
}
input:checked ~ .control__indicator {
  background-color: #fcbb68;
  color: #fff;
}
input:active ~ .control__indicator {
  background-color: #fb991d;
  color: #fff;
}
input:checked ~ .control__indicator {
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4NCjwhLS0gR2VuZXJhdG9yOiBBZG9iZSBJbGx1c3RyYXRvciAxNy4xLjAsIFNWRyBFeHBvcnQgUGx1Zy1JbiAuIFNWRyBWZXJzaW9uOiA2LjAwIEJ1aWxkIDApICAtLT4NCjwhRE9DVFlQRSBzdmcgUFVCTElDICItLy9XM0MvL0RURCBTVkcgMS4xLy9FTiIgImh0dHA6Ly93d3cudzMub3JnL0dyYXBoaWNzL1NWRy8xLjEvRFREL3N2ZzExLmR0ZCI+DQo8c3ZnIHZlcnNpb249IjEuMSIgaWQ9IkxheWVyXzEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4Ig0KCSB2aWV3Qm94PSIwIDAgOCA4IiBlbmFibGUtYmFja2dyb3VuZD0ibmV3IDAgMCA4IDgiIHhtbDpzcGFjZT0icHJlc2VydmUiPg0KPHBhdGggZmlsbD0iI0ZGRkZGRiIgZD0iTTYuNCwxTDUuNywxLjdMMi45LDQuNUwyLjEsMy43TDEuNCwzTDAsNC40bDAuNywwLjdsMS41LDEuNWwwLjcsMC43bDAuNy0wLjdsMy41LTMuNWwwLjctMC43TDYuNCwxTDYuNCwxeiINCgkvPg0KPC9zdmc+DQo=);
}
.control--radio .control__indicator {
  border-radius: 50%;
}
.control--radio input:checked ~ .control__indicator {
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4NCjwhLS0gR2VuZXJhdG9yOiBBZG9iZSBJbGx1c3RyYXRvciAxNy4xLjAsIFNWRyBFeHBvcnQgUGx1Zy1JbiAuIFNWRyBWZXJzaW9uOiA2LjAwIEJ1aWxkIDApICAtLT4NCjwhRE9DVFlQRSBzdmcgUFVCTElDICItLy9XM0MvL0RURCBTVkcgMS4xLy9FTiIgImh0dHA6Ly93d3cudzMub3JnL0dyYXBoaWNzL1NWRy8xLjEvRFREL3N2ZzExLmR0ZCI+DQo8c3ZnIHZlcnNpb249IjEuMSIgaWQ9IkxheWVyXzEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4Ig0KCSB2aWV3Qm94PSIwIDAgOCA4IiBlbmFibGUtYmFja2dyb3VuZD0ibmV3IDAgMCA4IDgiIHhtbDpzcGFjZT0icHJlc2VydmUiPg0KPHBhdGggZmlsbD0iI0ZGRkZGRiIgZD0iTTQsMUMyLjMsMSwxLDIuMywxLDRzMS4zLDMsMywzczMtMS4zLDMtM1M1LjcsMSw0LDF6Ii8+DQo8L3N2Zz4NCg==);
}

/*
|--------------------------------------------------------------------------
| Form item
|--------------------------------------------------------------------------
|
| Sets a consistent spacing for form elements.
|
*/
.form-item {
  margin: 0 0 28px;
}
.form-item abbr {
  color: #fcbb68;
  padding-left: 3px;
}

.form-item__help {
  color: gray;
  display: block;
  margin: 7px 0 0;
}

.form-item__label {
  display: inline-block;
  margin: 0 0 7px;
}
.form-item__label > abbr[title] {
  border-bottom: none;
  text-decoration: none;
}

.form-item--error .text-input {
  border-color: #d32f2f;
}

/*
|--------------------------------------------------------------------------
| Default Placeholder - For use with text input
|--------------------------------------------------------------------------
*/
.form-item--placeholder {
  position: relative;
}
.form-item--placeholder > .form-item__label {
  margin-top: -8px;
  margin-bottom: 0;
  padding-left: 14px;
  position: absolute;
  top: 28px;
  left: 0;
  transition: 0.3s ease;
}
.form-item--placeholder.has-input > .form-item__label, .form-item--placeholder.is-active > .form-item__label {
  background: #fcbb68;
  color: #fff;
  margin-top: -3px;
  padding: 7px 14px;
  top: -42px;
}
.form-item--placeholder.has-input > .form-item__label {
  opacity: 0;
  visibility: hidden;
}
.form-item--placeholder.is-active > .form-item__label {
  opacity: 1;
  visibility: visible;
}

/*
|--------------------------------------------------------------------------
| Default Inline Label
|--------------------------------------------------------------------------
*/
.form-item--inline {
  align-items: center;
  display: flex;
}
.form-item--inline > .form-item__body {
  flex: 1;
}
.form-item--inline > .form-item__label {
  margin-right: 28px;
  margin-bottom: 0;
}

/*
|--------------------------------------------------------------------------
| Full width
|--------------------------------------------------------------------------
|
| Allows the element to span the full width of the browser including
| when inside .container element.
|
*/
.full-width {
  margin-left: -50vw;
  margin-right: -50vw;
  position: relative;
  right: 50%;
  left: 50%;
  width: 100vw;
}

/*
|--------------------------------------------------------------------------
| Grid
|--------------------------------------------------------------------------
|
| Grid system using flexbox with modifiers for grid alignment including
| vertical and horizontal alignemnt as well as reverse ordering
|
*/
.grid {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  flex: 0 1 auto;
  margin-left: -28px;
}

.grid__col {
  flex: 0 0 auto;
  max-width: 100%;
  padding-left: 28px;
}

.grid--narrow-gutter {
  margin-left: -14px;
}
.grid--narrow-gutter > .grid__col {
  padding-left: 14px;
}

.grid--no-gutter {
  margin-left: 0;
}
.grid--no-gutter > .grid__col {
  padding-left: 0;
}

.grid--wide-gutter {
  margin-left: -56px;
}
.grid--wide-gutter > .grid__col {
  padding-left: 56px;
}

/* horizontal alignment */
.grid--left {
  justify-content: flex-start;
}

.grid--center {
  justify-content: center;
}

.grid--right {
  justify-content: flex-end;
}

/* vertical alignment */
.grid--top {
  align-items: flex-start;
}

.grid--middle {
  align-items: center;
}

.grid--bottom {
  align-items: flex-end;
}

.grid--equal > .grid__col {
  display: flex;
  flex-direction: column;
}
.grid--equal > .grid__col > :only-child {
  flex-grow: 1;
}

/* reverse */
.grid--reversed {
  flex-direction: row-reverse;
}

/* distribution */
.grid--around {
  justify-content: space-around;
}

.grid--between {
  justify-content: space-between;
}

/*
|--------------------------------------------------------------------------
| Intro
|--------------------------------------------------------------------------
|
| Set text at a larger size, typically for use on an introductory
| paragraph.
|
*/
.intro {
  font-size: 18px;
  line-height: 32px;
}

/*
|--------------------------------------------------------------------------
| Item list
|--------------------------------------------------------------------------
|
| Remove list styling and add a margin between items. Useful as a starting
| point for a list of entities, e.g. a news feed.
|
*/
.item-list {
  list-style: none;
  margin-bottom: 0;
  padding: 0;
}
.item-list > li {
  margin-bottom: 28px;
}

/*
|--------------------------------------------------------------------------
| Media
|--------------------------------------------------------------------------
|
| Simple media block for repetative content that sits alongside media i.e.
| an image.
|
*/
.media {
  display: flex;
  align-items: flex-start;
}
.media--reversed {
  flex-direction: row-reverse;
}

.media__thumb {
  display: flex;
  margin-right: 28px;
}
.media--reversed .media__thumb {
  margin-right: 0;
  margin-left: 28px;
}

.media__content {
  flex: 1 1 0%;
}

@media only screen and (max-width: 480px) {
  .media {
    flex-direction: column;
  }

  .media__thumb {
    margin: 0 0 28px;
  }
}
/*
|--------------------------------------------------------------------------
| Message
|--------------------------------------------------------------------------
|
| Provides a starting point for an alert style.
|
*/
.message {
  background: #fcbb68;
  color: #fff;
  display: block;
  margin: 0 0 28px;
  padding: 14px 28px;
}

.message--error {
  background: #d32f2f;
}

.message--success {
  background: #4caf50;
}

/*
|--------------------------------------------------------------------------
| narrow
|--------------------------------------------------------------------------
|
| Additional container aimed at narrower sections.
|
*/
.narrow {
  max-width: 590px;
}

.narrow--center {
  margin-left: auto;
  margin-right: auto;
}

/*
|--------------------------------------------------------------------------
| Vertical nav
|--------------------------------------------------------------------------
|
| Present a list vertically without list styling.
|
*/
.nav-v {
  list-style: none;
  padding: 0;
}
.nav-v > li > a {
  display: block;
}

/*
|--------------------------------------------------------------------------
| Nav
|--------------------------------------------------------------------------
|
| Present a list horizontally. Useful for navigation lists.
|
*/
.nav {
  display: flex;
  list-style: none;
  margin-left: -28px;
  padding: 0;
}
.nav > li {
  padding-left: 28px;
}
.nav > li > a {
  display: block;
}

.nav--narrow, .nav--piped {
  margin-left: -14px;
}
.nav--narrow > li, .nav--piped > li {
  padding-left: 14px;
}

.nav--piped > li {
  display: flex;
}
.nav--piped > li::before {
  color: #cccccc;
  content: "|";
  margin-right: 14px;
}
.nav--piped > li:first-child::before {
  display: none;
}

/*
|--------------------------------------------------------------------------
| Number input
|--------------------------------------------------------------------------
|
| Apply reasonable defaults to create a number input with increase/decrease
| controls.
|
*/
.number-input {
  display: block;
  float: left;
  overflow: hidden;
}
.number-input input {
  -webkit-appearance: textfield;
     -moz-appearance: textfield;
          appearance: textfield;
  border-top: 1px solid #cccccc;
  border-right: 0px;
  border-bottom: 1px solid #cccccc;
  border-left: 0px;
  box-sizing: border-box;
  display: block;
  margin: 0 auto;
  outline: none;
  padding: 14px;
  text-align: center;
  width: 50px;
}
.number-input input::-webkit-outer-spin-button, .number-input input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.number-input__change {
  -moz-osx-font-smoothing: unset;
  -webkit-font-smoothing: none;
  border: 1px solid #cccccc;
  box-sizing: border-box;
  color: #fcbb68;
  display: block;
  font-size: 20px;
  font-weight: 400;
  height: 40px;
  line-height: 40px;
  position: relative;
  text-align: center;
  vertical-align: middle;
  width: 40px;
}
.number-input__change:hover {
  background-color: #fcbb68;
  border-color: #fcbb68;
  color: #fff;
}

.number-input__change--minus {
  float: left;
}

.number-input__change--plus {
  float: right;
}

.number-input__inner {
  display: inline-block;
}

/*
|--------------------------------------------------------------------------
| Section
|--------------------------------------------------------------------------
|
| Used to define a section of a page with vertical spacing and provide
| a minimum height for "desktop" screens.
|
*/
.section {
  padding: 28px 0 0 0;
}

@media only screen and (min-width: 961px) {
  .section--main {
    min-height: 50vh;
  }
}

/*
|--------------------------------------------------------------------------
| Select
|--------------------------------------------------------------------------
|
| Provides a responsive/browser friendly base for styling select inputs.
|
*/
.select {
  color: #404040;
  display: inline-block;
  position: relative;
}
.select select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: #fff;
  border: 1px solid #cccccc;
  color: #404040;
  cursor: pointer;
  display: inline-block;
  height: 56px;
  margin: 0;
  outline: 0;
  padding: 14px 54px 14px 14px;
  width: 100%;
}
.select::after {
  border-top: 0.35rem solid;
  border-right: 0.35rem solid transparent;
  border-bottom: 0.35rem solid transparent;
  border-left: 0.35rem solid transparent;
  color: #fcbb68;
  content: "";
  display: inline-block;
  height: 0;
  margin-top: -0.15rem;
  pointer-events: none;
  position: absolute;
  top: 50%;
  right: 1.25rem;
  width: 0;
}

.select--wide {
  display: block;
}

.select select:focus:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 black;
}
.select select::-ms-expand {
  display: none;
}

@-moz-document url-prefix() {
  .select select {
    text-indent: 0.01px;
    text-overflow: "";
  }

  .select option {
    background-color: white;
  }
}
/*
|--------------------------------------------------------------------------
| Text input
|--------------------------------------------------------------------------
|
| Provides a responsive friendly base for styling text form controls. By
| default, .text-input should align reasonably well with .button. This
| class should be applied to all text inputs and textareas.
*/
.text-input {
  -webkit-appearance: none;
  -moz-appearance: textfield;
  background: #fff;
  border-radius: 0;
  border: 1px solid #cccccc;
  color: #404040;
  display: inline-block;
  font: inherit;
  outline: none;
  padding: 0.5rem;
  transition: 0.2s ease;
  vertical-align: middle;
  width: 100%;
}
.text-input:focus {
  border-color: #fcbb68;
  box-shadow: 0 0 1px 1px #fcbb68;
}
.text-input::-webkit-inner-spin-button, .text-input::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.text-input--tiny {
  max-width: 4em;
}

.text-input--small {
  max-width: 8em;
}

.text-input--medium {
  max-width: 12em;
}

.text-input--medium-large {
  max-width: 18em;
}

.text-input--large {
  max-width: 24em;
}

textarea.text-input {
  height: 8em;
  line-height: inherit;
  resize: vertical;
}
textarea.text-input[rows] {
  height: auto;
}

textarea.text-input--deep {
  height: 16em;
}

textarea.text-input--shallow {
  height: 4em;
}

/*
|--------------------------------------------------------------------------
| Thumb
|--------------------------------------------------------------------------
|
| Make a child image fill the available space. Extend with fixed width
| and/or height for fixed aspect ratio thumbnails.
|
*/
.thumb {
  display: block;
  overflow: hidden;
  position: relative;
}
.thumb > img {
  display: block;
  pointer-events: none;
  width: 100%;
}

.thumb--1x1 {
  padding-top: 100%;
}
.thumb--1x1 > img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover";
  position: absolute;
  top: 0;
  left: 0;
}

/*
|--------------------------------------------------------------------------
| Video
|--------------------------------------------------------------------------
|
| Similar to .thumb, .video makes a media element fill the available
| space at an aspect ratio (default 16x9).
|
*/
.video {
  height: 0;
  overflow: hidden;
  padding-top: 56.25%;
  position: relative;
}
.video > * {
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

.video--wide {
  padding-top: 46.25%;
}

/*
|--------------------------------------------------------------------------
| Well
|--------------------------------------------------------------------------
|
| Apply padding. Combine with a background color override for a useful
| object for visually separating asides or forms.
|
*/
.well {
  display: block;
  padding: 28px 28px;
  position: relative;
}
.well::after {
  clear: both;
  content: "";
  display: table;
}
.well > :last-child {
  margin-bottom: 0;
}

.well--narrow {
  padding: 14px 14px;
}

.well--wide {
  padding: 56px 56px;
}

.xxl-1 {
  width: 100%;
}

.xxl-1-2 {
  width: 50%;
}

.xxl-1-3 {
  width: 33.3333333333%;
}

.xxl-2-3 {
  width: 66.6666666667%;
}

.xxl-1-4 {
  width: 25%;
}

.xxl-2-4 {
  width: 50%;
}

.xxl-3-4 {
  width: 75%;
}

.xxl-1-6 {
  width: 16.6666666667%;
}

.xxl-2-6 {
  width: 33.3333333333%;
}

.xxl-3-6 {
  width: 50%;
}

.xxl-4-6 {
  width: 66.6666666667%;
}

.xxl-5-6 {
  width: 83.3333333333%;
}

.xxl-1-8 {
  width: 12.5%;
}

.xxl-2-8 {
  width: 25%;
}

.xxl-3-8 {
  width: 37.5%;
}

.xxl-4-8 {
  width: 50%;
}

.xxl-5-8 {
  width: 62.5%;
}

.xxl-6-8 {
  width: 75%;
}

.xxl-7-8 {
  width: 87.5%;
}

.xxl-1-12 {
  width: 8.3333333333%;
}

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

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

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

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

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

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

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

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

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

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

@media only screen and (max-width: 1236px) {
  .xxl-1 {
    width: 100%;
  }

  .xxl-1-2 {
    width: 50%;
  }

  .xxl-1-3 {
    width: 33.3333333333%;
  }

  .xxl-2-3 {
    width: 66.6666666667%;
  }

  .xxl-1-4 {
    width: 25%;
  }

  .xxl-2-4 {
    width: 50%;
  }

  .xxl-3-4 {
    width: 75%;
  }

  .xxl-1-6 {
    width: 16.6666666667%;
  }

  .xxl-2-6 {
    width: 33.3333333333%;
  }

  .xxl-3-6 {
    width: 50%;
  }

  .xxl-4-6 {
    width: 66.6666666667%;
  }

  .xxl-5-6 {
    width: 83.3333333333%;
  }

  .xxl-1-8 {
    width: 12.5%;
  }

  .xxl-2-8 {
    width: 25%;
  }

  .xxl-3-8 {
    width: 37.5%;
  }

  .xxl-4-8 {
    width: 50%;
  }

  .xxl-5-8 {
    width: 62.5%;
  }

  .xxl-6-8 {
    width: 75%;
  }

  .xxl-7-8 {
    width: 87.5%;
  }

  .xxl-1-12 {
    width: 8.3333333333%;
  }

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

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

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

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

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

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

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

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

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

  .xxl-11-12 {
    width: 91.6666666667%;
  }
}
@media only screen and (max-width: 1024px) {
  .xl-1 {
    width: 100%;
  }

  .xl-1-2 {
    width: 50%;
  }

  .xl-1-3 {
    width: 33.3333333333%;
  }

  .xl-2-3 {
    width: 66.6666666667%;
  }

  .xl-1-4 {
    width: 25%;
  }

  .xl-2-4 {
    width: 50%;
  }

  .xl-3-4 {
    width: 75%;
  }

  .xl-1-6 {
    width: 16.6666666667%;
  }

  .xl-2-6 {
    width: 33.3333333333%;
  }

  .xl-3-6 {
    width: 50%;
  }

  .xl-4-6 {
    width: 66.6666666667%;
  }

  .xl-5-6 {
    width: 83.3333333333%;
  }

  .xl-1-8 {
    width: 12.5%;
  }

  .xl-2-8 {
    width: 25%;
  }

  .xl-3-8 {
    width: 37.5%;
  }

  .xl-4-8 {
    width: 50%;
  }

  .xl-5-8 {
    width: 62.5%;
  }

  .xl-6-8 {
    width: 75%;
  }

  .xl-7-8 {
    width: 87.5%;
  }

  .xl-1-12 {
    width: 8.3333333333%;
  }

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

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

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

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

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

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

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

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

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

  .xl-11-12 {
    width: 91.6666666667%;
  }
}
@media only screen and (max-width: 960px) {
  .l-1 {
    width: 100%;
  }

  .l-1-2 {
    width: 50%;
  }

  .l-1-3 {
    width: 33.3333333333%;
  }

  .l-2-3 {
    width: 66.6666666667%;
  }

  .l-1-4 {
    width: 25%;
  }

  .l-2-4 {
    width: 50%;
  }

  .l-3-4 {
    width: 75%;
  }

  .l-1-6 {
    width: 16.6666666667%;
  }

  .l-2-6 {
    width: 33.3333333333%;
  }

  .l-3-6 {
    width: 50%;
  }

  .l-4-6 {
    width: 66.6666666667%;
  }

  .l-5-6 {
    width: 83.3333333333%;
  }

  .l-1-8 {
    width: 12.5%;
  }

  .l-2-8 {
    width: 25%;
  }

  .l-3-8 {
    width: 37.5%;
  }

  .l-4-8 {
    width: 50%;
  }

  .l-5-8 {
    width: 62.5%;
  }

  .l-6-8 {
    width: 75%;
  }

  .l-7-8 {
    width: 87.5%;
  }

  .l-1-12 {
    width: 8.3333333333%;
  }

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

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

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

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

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

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

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

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

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

  .l-11-12 {
    width: 91.6666666667%;
  }
}
@media only screen and (max-width: 768px) {
  .m-1 {
    width: 100%;
  }

  .m-1-2 {
    width: 50%;
  }

  .m-1-3 {
    width: 33.3333333333%;
  }

  .m-2-3 {
    width: 66.6666666667%;
  }

  .m-1-4 {
    width: 25%;
  }

  .m-2-4 {
    width: 50%;
  }

  .m-3-4 {
    width: 75%;
  }

  .m-1-6 {
    width: 16.6666666667%;
  }

  .m-2-6 {
    width: 33.3333333333%;
  }

  .m-3-6 {
    width: 50%;
  }

  .m-4-6 {
    width: 66.6666666667%;
  }

  .m-5-6 {
    width: 83.3333333333%;
  }

  .m-1-8 {
    width: 12.5%;
  }

  .m-2-8 {
    width: 25%;
  }

  .m-3-8 {
    width: 37.5%;
  }

  .m-4-8 {
    width: 50%;
  }

  .m-5-8 {
    width: 62.5%;
  }

  .m-6-8 {
    width: 75%;
  }

  .m-7-8 {
    width: 87.5%;
  }

  .m-1-12 {
    width: 8.3333333333%;
  }

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

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

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

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

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

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

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

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

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

  .m-11-12 {
    width: 91.6666666667%;
  }
}
@media only screen and (max-width: 480px) {
  .s-1 {
    width: 100%;
  }

  .s-1-2 {
    width: 50%;
  }

  .s-1-3 {
    width: 33.3333333333%;
  }

  .s-2-3 {
    width: 66.6666666667%;
  }

  .s-1-4 {
    width: 25%;
  }

  .s-2-4 {
    width: 50%;
  }

  .s-3-4 {
    width: 75%;
  }

  .s-1-6 {
    width: 16.6666666667%;
  }

  .s-2-6 {
    width: 33.3333333333%;
  }

  .s-3-6 {
    width: 50%;
  }

  .s-4-6 {
    width: 66.6666666667%;
  }

  .s-5-6 {
    width: 83.3333333333%;
  }

  .s-1-8 {
    width: 12.5%;
  }

  .s-2-8 {
    width: 25%;
  }

  .s-3-8 {
    width: 37.5%;
  }

  .s-4-8 {
    width: 50%;
  }

  .s-5-8 {
    width: 62.5%;
  }

  .s-6-8 {
    width: 75%;
  }

  .s-7-8 {
    width: 87.5%;
  }

  .s-1-12 {
    width: 8.3333333333%;
  }

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

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

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

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

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

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

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

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

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

  .s-11-12 {
    width: 91.6666666667%;
  }
}
/*!
 * Pikaday
 * Copyright © 2014 David Bushell | BSD & MIT license | https://dbushell.com/
 */
.pika-single {
  z-index: 9999;
  display: block;
  position: relative;
  color: #333;
  background: #fff;
  border: 1px solid #ccc;
  border-bottom-color: #bbb;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}
.pika-single.is-hidden {
  display: none;
}
.pika-single.is-bound {
  position: absolute;
  box-shadow: 0 5px 15px -5px rgba(0, 0, 0, 0.5);
}

.pika-single:before, .pika-single:after {
  content: " ";
  display: table;
}
.pika-single:after {
  clear: both;
}

.pika-lendar {
  float: left;
  width: 240px;
  margin: 8px;
}

.pika-title {
  position: relative;
  text-align: center;
}
.pika-title select {
  cursor: pointer;
  position: absolute;
  z-index: 9998;
  margin: 0;
  left: 0;
  top: 5px;
  opacity: 0;
}

.pika-label {
  display: inline-block;
  position: relative;
  z-index: 9999;
  overflow: hidden;
  margin: 0;
  padding: 5px 3px;
  font-size: 14px;
  line-height: 20px;
  font-weight: bold;
  color: #333;
  background-color: #fff;
}

.pika-prev,
.pika-next {
  display: block;
  cursor: pointer;
  position: relative;
  outline: none;
  border: 0;
  padding: 0;
  width: 20px;
  height: 30px;
  text-indent: 20px;
  white-space: nowrap;
  overflow: hidden;
  background-color: transparent;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 75% 75%;
  opacity: 0.5;
}
.pika-prev:hover,
.pika-next:hover {
  opacity: 1;
}
.pika-prev.is-disabled,
.pika-next.is-disabled {
  cursor: default;
  opacity: 0.2;
}

.pika-prev,
.is-rtl .pika-next {
  float: left;
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAeCAYAAAAsEj5rAAAAUklEQVR42u3VMQoAIBADQf8Pgj+OD9hG2CtONJB2ymQkKe0HbwAP0xucDiQWARITIDEBEnMgMQ8S8+AqBIl6kKgHiXqQqAeJepBo/z38J/U0uAHlaBkBl9I4GwAAAABJRU5ErkJggg==");
}

.pika-next,
.is-rtl .pika-prev {
  float: right;
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAeCAYAAAAsEj5rAAAAU0lEQVR42u3VOwoAMAgE0dwfAnNjU26bYkBCFGwfiL9VVWoO+BJ4Gf3gtsEKKoFBNTCoCAYVwaAiGNQGMUHMkjGbgjk2mIONuXo0nC8XnCf1JXgArVIZAQh5TKYAAAAASUVORK5CYII=");
}

.pika-select {
  display: inline-block;
}

.pika-table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  border: 0;
}
.pika-table th,
.pika-table td {
  width: 14.2857142857%;
  padding: 0;
}
.pika-table th {
  color: #999;
  font-size: 12px;
  line-height: 25px;
  font-weight: bold;
  text-align: center;
}
.pika-table abbr {
  border-bottom: none;
  cursor: help;
}

.pika-button {
  cursor: pointer;
  display: block;
  box-sizing: border-box;
  outline: none;
  border: 0;
  margin: 0;
  width: 100%;
  padding: 5px;
  color: #666;
  font-size: 12px;
  line-height: 15px;
  text-align: right;
  background: #f5f5f5;
  height: initial;
}
.has-event .pika-button {
  color: #fff;
  background: #33aaff;
}
.is-today .pika-button {
  color: #33aaff;
  font-weight: bold;
}
.is-selected .pika-button {
  color: #fff;
  font-weight: bold;
  background: #33aaff;
  box-shadow: inset 0 1px 3px #178fe5;
  border-radius: 3px;
}
.is-disabled .pika-button, .is-outside-current-month .pika-button {
  color: #999;
  opacity: 0.3;
}
.is-disabled .pika-button {
  pointer-events: none;
  cursor: default;
}
.pika-button:hover {
  color: #fff;
  background: #ff8000;
  box-shadow: none;
  border-radius: 3px;
}
.pika-button .is-selection-disabled {
  pointer-events: none;
  cursor: default;
}

.pika-week {
  font-size: 11px;
  color: #999;
}

.is-inrange .pika-button {
  color: #666;
  background: #D5E9F7;
}

.is-startrange .pika-button {
  color: #fff;
  background: #6CB31D;
  box-shadow: none;
  border-radius: 3px;
}

.is-endrange .pika-button {
  color: #fff;
  background: #33aaff;
  box-shadow: none;
  border-radius: 3px;
}

/* Magnific Popup CSS */
.mfp-bg {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1042;
  overflow: hidden;
  position: fixed;
  background: #0b0b0b;
  opacity: 0.8;
}

.mfp-wrap {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1043;
  position: fixed;
  outline: none !important;
  -webkit-backface-visibility: hidden;
}

.mfp-container {
  text-align: center;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  padding: 0 8px;
  box-sizing: border-box;
}

.mfp-container:before {
  content: "";
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}

.mfp-align-top .mfp-container:before {
  display: none;
}

.mfp-content {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin: 0 auto;
  text-align: left;
  z-index: 1045;
}

.mfp-inline-holder .mfp-content,
.mfp-ajax-holder .mfp-content {
  width: 100%;
  cursor: auto;
}

.mfp-ajax-cur {
  cursor: progress;
}

.mfp-zoom-out-cur, .mfp-zoom-out-cur .mfp-image-holder .mfp-close {
  cursor: zoom-out;
}

.mfp-zoom {
  cursor: pointer;
  cursor: zoom-in;
}

.mfp-auto-cursor .mfp-content {
  cursor: auto;
}

.mfp-close,
.mfp-arrow,
.mfp-preloader,
.mfp-counter {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
      user-select: none;
}

.mfp-loading.mfp-figure {
  display: none;
}

.mfp-hide {
  display: none !important;
}

.mfp-preloader {
  color: #CCC;
  position: absolute;
  top: 50%;
  width: auto;
  text-align: center;
  margin-top: -0.8em;
  left: 8px;
  right: 8px;
  z-index: 1044;
}
.mfp-preloader a {
  color: #CCC;
}
.mfp-preloader a:hover {
  color: #FFF;
}

.mfp-s-ready .mfp-preloader {
  display: none;
}

.mfp-s-error .mfp-content {
  display: none;
}

button.mfp-close, button.mfp-arrow {
  overflow: visible;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
  display: block;
  outline: none;
  padding: 0;
  z-index: 1046;
  box-shadow: none;
  touch-action: manipulation;
}
button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

.mfp-close {
  width: 44px;
  height: 44px;
  line-height: 44px;
  position: absolute;
  right: 0;
  top: 0;
  text-decoration: none;
  text-align: center;
  opacity: 0.65;
  padding: 0 0 18px 10px;
  color: #FFF;
  font-style: normal;
  font-size: 28px;
  font-family: Arial, Baskerville, monospace;
}
.mfp-close:hover, .mfp-close:focus {
  opacity: 1;
}
.mfp-close:active {
  top: 1px;
}

.mfp-close-btn-in .mfp-close {
  color: #333;
}

.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close {
  color: #FFF;
  right: -6px;
  text-align: right;
  padding-right: 6px;
  width: 100%;
}

.mfp-counter {
  position: absolute;
  top: 0;
  right: 0;
  color: #CCC;
  font-size: 12px;
  line-height: 18px;
  white-space: nowrap;
}

.mfp-arrow {
  position: absolute;
  opacity: 0.65;
  margin: 0;
  top: 50%;
  margin-top: -55px;
  padding: 0;
  width: 90px;
  height: 110px;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
.mfp-arrow:active {
  margin-top: -54px;
}
.mfp-arrow:hover, .mfp-arrow:focus {
  opacity: 1;
}
.mfp-arrow:before, .mfp-arrow:after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  left: 0;
  top: 0;
  margin-top: 35px;
  margin-left: 35px;
  border: medium inset transparent;
}
.mfp-arrow:after {
  border-top-width: 13px;
  border-bottom-width: 13px;
  top: 8px;
}
.mfp-arrow:before {
  border-top-width: 21px;
  border-bottom-width: 21px;
  opacity: 0.7;
}

.mfp-arrow-left {
  left: 0;
}
.mfp-arrow-left:after {
  border-right: 17px solid #FFF;
  margin-left: 31px;
}
.mfp-arrow-left:before {
  margin-left: 25px;
  border-right: 27px solid #3F3F3F;
}

.mfp-arrow-right {
  right: 0;
}
.mfp-arrow-right:after {
  border-left: 17px solid #FFF;
  margin-left: 39px;
}
.mfp-arrow-right:before {
  border-left: 27px solid #3F3F3F;
}

.mfp-iframe-holder {
  padding-top: 40px;
  padding-bottom: 40px;
}
.mfp-iframe-holder .mfp-content {
  line-height: 0;
  width: 100%;
  max-width: 900px;
}
.mfp-iframe-holder .mfp-close {
  top: -40px;
}

.mfp-iframe-scaler {
  width: 100%;
  height: 0;
  overflow: hidden;
  padding-top: 56.25%;
}
.mfp-iframe-scaler iframe {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #000;
}

/* Main image in popup */
img.mfp-img {
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
  line-height: 0;
  box-sizing: border-box;
  padding: 40px 0 40px;
  margin: 0 auto;
}

/* The shadow behind the image */
.mfp-figure {
  line-height: 0;
}
.mfp-figure:after {
  content: "";
  position: absolute;
  left: 0;
  top: 40px;
  bottom: 40px;
  display: block;
  right: 0;
  width: auto;
  height: auto;
  z-index: -1;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #444;
}
.mfp-figure small {
  color: #BDBDBD;
  display: block;
  font-size: 12px;
  line-height: 14px;
}
.mfp-figure figure {
  margin: 0;
}

.mfp-bottom-bar {
  margin-top: -36px;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  cursor: auto;
}

.mfp-title {
  text-align: left;
  line-height: 18px;
  color: #F3F3F3;
  word-wrap: break-word;
  padding-right: 36px;
}

.mfp-image-holder .mfp-content {
  max-width: 100%;
}

.mfp-gallery .mfp-image-holder .mfp-figure {
  cursor: pointer;
}

@media screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px) {
  /**
   * Remove all paddings around the image on small screen
   */
  .mfp-img-mobile .mfp-image-holder {
    padding-left: 0;
    padding-right: 0;
  }
  .mfp-img-mobile img.mfp-img {
    padding: 0;
  }
  .mfp-img-mobile .mfp-figure:after {
    top: 0;
    bottom: 0;
  }
  .mfp-img-mobile .mfp-figure small {
    display: inline;
    margin-left: 5px;
  }
  .mfp-img-mobile .mfp-bottom-bar {
    background: rgba(0, 0, 0, 0.6);
    bottom: 0;
    margin: 0;
    top: auto;
    padding: 3px 5px;
    position: fixed;
    box-sizing: border-box;
  }
  .mfp-img-mobile .mfp-bottom-bar:empty {
    padding: 0;
  }
  .mfp-img-mobile .mfp-counter {
    right: 5px;
    top: 3px;
  }
  .mfp-img-mobile .mfp-close {
    top: 0;
    right: 0;
    width: 35px;
    height: 35px;
    line-height: 35px;
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    text-align: center;
    padding: 0;
  }
}
@media all and (max-width: 900px) {
  .mfp-arrow {
    transform: scale(0.75);
  }

  .mfp-arrow-left {
    transform-origin: 0;
  }

  .mfp-arrow-right {
    transform-origin: 100%;
  }

  .mfp-container {
    padding-left: 6px;
    padding-right: 6px;
  }
}
.mfp-container {
  padding: 0 28px;
}

.mfp-close {
  display: block;
  height: auto;
  line-height: inherit;
  padding: 28px;
  width: auto;
}

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  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 {
  transform: translate3d(0, 0, 0);
}

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

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

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

.slick-list,
.slick-slide {
  outline: none;
}

h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
  color: #404040;
  font-weight: 600;
}

h1, .h1 {
  line-height: 68px;
}

h4, .h4 {
  line-height: 32px;
}

h5, .h5 {
  line-height: 30px;
}

.font-weight-normal {
  font-weight: normal;
}

.font-weight-light {
  font-weight: 300;
}

.underline {
  text-decoration: underline;
}

/*
|--------------------------------------------------------------------------
| Responsive
|--------------------------------------------------------------------------
*/
@media only screen and (max-width: 768px) {
  h1, .h1 {
    font-size: 36px;
    line-height: 39px;
  }

  h2, .h2 {
    font-size: 30px;
    line-height: 39px;
  }

  h3, .h3 {
    font-size: 28px;
    line-height: 39px;
  }

  h4, .h4 {
    font-size: 24px;
    line-height: 26px;
  }

  h5, .h5 {
    font-size: 20px;
  }

  h6, .h6 {
    font-size: 18px;
  }
}
.after-black {
  overflow: visible !important;
  position: relative;
}
.after-black::after {
  background-color: #000;
  content: "";
  height: 100%;
  position: absolute;
  right: -1000px;
  top: 0;
  width: 1000px;
  z-index: 1;
}

.after-blue-light {
  overflow: visible !important;
  position: relative;
}
.after-blue-light::after {
  background-color: #6fa6d2;
  content: "";
  height: 100%;
  position: absolute;
  right: -1000px;
  top: 0;
  width: 1000px;
  z-index: 1;
}

.after-blue {
  overflow: visible !important;
  position: relative;
}
.after-blue::after {
  background-color: #5e92b3;
  content: "";
  height: 100%;
  position: absolute;
  right: -1000px;
  top: 0;
  width: 1000px;
  z-index: 1;
}

.after-charcoal {
  overflow: visible !important;
  position: relative;
}
.after-charcoal::after {
  background-color: #404040;
  content: "";
  height: 100%;
  position: absolute;
  right: -1000px;
  top: 0;
  width: 1000px;
  z-index: 1;
}

.after-dark-grey {
  overflow: visible !important;
  position: relative;
}
.after-dark-grey::after {
  background-color: #646462;
  content: "";
  height: 100%;
  position: absolute;
  right: -1000px;
  top: 0;
  width: 1000px;
  z-index: 1;
}

.after-ghost {
  overflow: visible !important;
  position: relative;
}
.after-ghost::after {
  background-color: #edeff2;
  content: "";
  height: 100%;
  position: absolute;
  right: -1000px;
  top: 0;
  width: 1000px;
  z-index: 1;
}

.after-green {
  overflow: visible !important;
  position: relative;
}
.after-green::after {
  background-color: #107f80;
  content: "";
  height: 100%;
  position: absolute;
  right: -1000px;
  top: 0;
  width: 1000px;
  z-index: 1;
}

.after-light-grey {
  overflow: visible !important;
  position: relative;
}
.after-light-grey::after {
  background-color: #d9d9d9;
  content: "";
  height: 100%;
  position: absolute;
  right: -1000px;
  top: 0;
  width: 1000px;
  z-index: 1;
}

.after-lighter-grey {
  overflow: visible !important;
  position: relative;
}
.after-lighter-grey::after {
  background-color: #f2f2f2;
  content: "";
  height: 100%;
  position: absolute;
  right: -1000px;
  top: 0;
  width: 1000px;
  z-index: 1;
}

.after-orange {
  overflow: visible !important;
  position: relative;
}
.after-orange::after {
  background-color: #fcbb68;
  content: "";
  height: 100%;
  position: absolute;
  right: -1000px;
  top: 0;
  width: 1000px;
  z-index: 1;
}

.after-red {
  overflow: visible !important;
  position: relative;
}
.after-red::after {
  background-color: #801010;
  content: "";
  height: 100%;
  position: absolute;
  right: -1000px;
  top: 0;
  width: 1000px;
  z-index: 1;
}

.after-teal-light {
  overflow: visible !important;
  position: relative;
}
.after-teal-light::after {
  background-color: #3c798f;
  content: "";
  height: 100%;
  position: absolute;
  right: -1000px;
  top: 0;
  width: 1000px;
  z-index: 1;
}

.after-teal {
  overflow: visible !important;
  position: relative;
}
.after-teal::after {
  background-color: #0b5873;
  content: "";
  height: 100%;
  position: absolute;
  right: -1000px;
  top: 0;
  width: 1000px;
  z-index: 1;
}

.after-white {
  overflow: visible !important;
  position: relative;
}
.after-white::after {
  background-color: #fff;
  content: "";
  height: 100%;
  position: absolute;
  right: -1000px;
  top: 0;
  width: 1000px;
  z-index: 1;
}

/*
|--------------------------------------------------------------------------
| Responsive
|--------------------------------------------------------------------------
*/
@media only screen and (max-width: 1024px) {
  .xl-after-black {
    overflow: visible !important;
    position: relative;
  }
  .xl-after-black::after {
    background-color: #000;
    content: "";
    height: 100%;
    position: absolute;
    right: -1000px;
    top: 0;
    width: 1000px;
  }

  .xl-after-blue-light {
    overflow: visible !important;
    position: relative;
  }
  .xl-after-blue-light::after {
    background-color: #6fa6d2;
    content: "";
    height: 100%;
    position: absolute;
    right: -1000px;
    top: 0;
    width: 1000px;
  }

  .xl-after-blue {
    overflow: visible !important;
    position: relative;
  }
  .xl-after-blue::after {
    background-color: #5e92b3;
    content: "";
    height: 100%;
    position: absolute;
    right: -1000px;
    top: 0;
    width: 1000px;
  }

  .xl-after-charcoal {
    overflow: visible !important;
    position: relative;
  }
  .xl-after-charcoal::after {
    background-color: #404040;
    content: "";
    height: 100%;
    position: absolute;
    right: -1000px;
    top: 0;
    width: 1000px;
  }

  .xl-after-dark-grey {
    overflow: visible !important;
    position: relative;
  }
  .xl-after-dark-grey::after {
    background-color: #646462;
    content: "";
    height: 100%;
    position: absolute;
    right: -1000px;
    top: 0;
    width: 1000px;
  }

  .xl-after-ghost {
    overflow: visible !important;
    position: relative;
  }
  .xl-after-ghost::after {
    background-color: #edeff2;
    content: "";
    height: 100%;
    position: absolute;
    right: -1000px;
    top: 0;
    width: 1000px;
  }

  .xl-after-green {
    overflow: visible !important;
    position: relative;
  }
  .xl-after-green::after {
    background-color: #107f80;
    content: "";
    height: 100%;
    position: absolute;
    right: -1000px;
    top: 0;
    width: 1000px;
  }

  .xl-after-light-grey {
    overflow: visible !important;
    position: relative;
  }
  .xl-after-light-grey::after {
    background-color: #d9d9d9;
    content: "";
    height: 100%;
    position: absolute;
    right: -1000px;
    top: 0;
    width: 1000px;
  }

  .xl-after-lighter-grey {
    overflow: visible !important;
    position: relative;
  }
  .xl-after-lighter-grey::after {
    background-color: #f2f2f2;
    content: "";
    height: 100%;
    position: absolute;
    right: -1000px;
    top: 0;
    width: 1000px;
  }

  .xl-after-orange {
    overflow: visible !important;
    position: relative;
  }
  .xl-after-orange::after {
    background-color: #fcbb68;
    content: "";
    height: 100%;
    position: absolute;
    right: -1000px;
    top: 0;
    width: 1000px;
  }

  .xl-after-red {
    overflow: visible !important;
    position: relative;
  }
  .xl-after-red::after {
    background-color: #801010;
    content: "";
    height: 100%;
    position: absolute;
    right: -1000px;
    top: 0;
    width: 1000px;
  }

  .xl-after-teal-light {
    overflow: visible !important;
    position: relative;
  }
  .xl-after-teal-light::after {
    background-color: #3c798f;
    content: "";
    height: 100%;
    position: absolute;
    right: -1000px;
    top: 0;
    width: 1000px;
  }

  .xl-after-teal {
    overflow: visible !important;
    position: relative;
  }
  .xl-after-teal::after {
    background-color: #0b5873;
    content: "";
    height: 100%;
    position: absolute;
    right: -1000px;
    top: 0;
    width: 1000px;
  }

  .xl-after-white {
    overflow: visible !important;
    position: relative;
  }
  .xl-after-white::after {
    background-color: #fff;
    content: "";
    height: 100%;
    position: absolute;
    right: -1000px;
    top: 0;
    width: 1000px;
  }
}
@media only screen and (max-width: 960px) {
  .l-after-black {
    overflow: visible !important;
    position: relative;
  }
  .l-after-black::after {
    background-color: #000;
    content: "";
    height: 100%;
    position: absolute;
    right: -1000px;
    top: 0;
    width: 1000px;
  }

  .l-after-blue-light {
    overflow: visible !important;
    position: relative;
  }
  .l-after-blue-light::after {
    background-color: #6fa6d2;
    content: "";
    height: 100%;
    position: absolute;
    right: -1000px;
    top: 0;
    width: 1000px;
  }

  .l-after-blue {
    overflow: visible !important;
    position: relative;
  }
  .l-after-blue::after {
    background-color: #5e92b3;
    content: "";
    height: 100%;
    position: absolute;
    right: -1000px;
    top: 0;
    width: 1000px;
  }

  .l-after-charcoal {
    overflow: visible !important;
    position: relative;
  }
  .l-after-charcoal::after {
    background-color: #404040;
    content: "";
    height: 100%;
    position: absolute;
    right: -1000px;
    top: 0;
    width: 1000px;
  }

  .l-after-dark-grey {
    overflow: visible !important;
    position: relative;
  }
  .l-after-dark-grey::after {
    background-color: #646462;
    content: "";
    height: 100%;
    position: absolute;
    right: -1000px;
    top: 0;
    width: 1000px;
  }

  .l-after-ghost {
    overflow: visible !important;
    position: relative;
  }
  .l-after-ghost::after {
    background-color: #edeff2;
    content: "";
    height: 100%;
    position: absolute;
    right: -1000px;
    top: 0;
    width: 1000px;
  }

  .l-after-green {
    overflow: visible !important;
    position: relative;
  }
  .l-after-green::after {
    background-color: #107f80;
    content: "";
    height: 100%;
    position: absolute;
    right: -1000px;
    top: 0;
    width: 1000px;
  }

  .l-after-light-grey {
    overflow: visible !important;
    position: relative;
  }
  .l-after-light-grey::after {
    background-color: #d9d9d9;
    content: "";
    height: 100%;
    position: absolute;
    right: -1000px;
    top: 0;
    width: 1000px;
  }

  .l-after-lighter-grey {
    overflow: visible !important;
    position: relative;
  }
  .l-after-lighter-grey::after {
    background-color: #f2f2f2;
    content: "";
    height: 100%;
    position: absolute;
    right: -1000px;
    top: 0;
    width: 1000px;
  }

  .l-after-orange {
    overflow: visible !important;
    position: relative;
  }
  .l-after-orange::after {
    background-color: #fcbb68;
    content: "";
    height: 100%;
    position: absolute;
    right: -1000px;
    top: 0;
    width: 1000px;
  }

  .l-after-red {
    overflow: visible !important;
    position: relative;
  }
  .l-after-red::after {
    background-color: #801010;
    content: "";
    height: 100%;
    position: absolute;
    right: -1000px;
    top: 0;
    width: 1000px;
  }

  .l-after-teal-light {
    overflow: visible !important;
    position: relative;
  }
  .l-after-teal-light::after {
    background-color: #3c798f;
    content: "";
    height: 100%;
    position: absolute;
    right: -1000px;
    top: 0;
    width: 1000px;
  }

  .l-after-teal {
    overflow: visible !important;
    position: relative;
  }
  .l-after-teal::after {
    background-color: #0b5873;
    content: "";
    height: 100%;
    position: absolute;
    right: -1000px;
    top: 0;
    width: 1000px;
  }

  .l-after-white {
    overflow: visible !important;
    position: relative;
  }
  .l-after-white::after {
    background-color: #fff;
    content: "";
    height: 100%;
    position: absolute;
    right: -1000px;
    top: 0;
    width: 1000px;
  }
}
@media only screen and (max-width: 768px) {
  .m-after-black {
    overflow: visible !important;
    position: relative;
  }
  .m-after-black::after {
    background-color: #000;
    content: "";
    height: 100%;
    position: absolute;
    right: -1000px;
    top: 0;
    width: 1000px;
  }

  .m-after-blue-light {
    overflow: visible !important;
    position: relative;
  }
  .m-after-blue-light::after {
    background-color: #6fa6d2;
    content: "";
    height: 100%;
    position: absolute;
    right: -1000px;
    top: 0;
    width: 1000px;
  }

  .m-after-blue {
    overflow: visible !important;
    position: relative;
  }
  .m-after-blue::after {
    background-color: #5e92b3;
    content: "";
    height: 100%;
    position: absolute;
    right: -1000px;
    top: 0;
    width: 1000px;
  }

  .m-after-charcoal {
    overflow: visible !important;
    position: relative;
  }
  .m-after-charcoal::after {
    background-color: #404040;
    content: "";
    height: 100%;
    position: absolute;
    right: -1000px;
    top: 0;
    width: 1000px;
  }

  .m-after-dark-grey {
    overflow: visible !important;
    position: relative;
  }
  .m-after-dark-grey::after {
    background-color: #646462;
    content: "";
    height: 100%;
    position: absolute;
    right: -1000px;
    top: 0;
    width: 1000px;
  }

  .m-after-ghost {
    overflow: visible !important;
    position: relative;
  }
  .m-after-ghost::after {
    background-color: #edeff2;
    content: "";
    height: 100%;
    position: absolute;
    right: -1000px;
    top: 0;
    width: 1000px;
  }

  .m-after-green {
    overflow: visible !important;
    position: relative;
  }
  .m-after-green::after {
    background-color: #107f80;
    content: "";
    height: 100%;
    position: absolute;
    right: -1000px;
    top: 0;
    width: 1000px;
  }

  .m-after-light-grey {
    overflow: visible !important;
    position: relative;
  }
  .m-after-light-grey::after {
    background-color: #d9d9d9;
    content: "";
    height: 100%;
    position: absolute;
    right: -1000px;
    top: 0;
    width: 1000px;
  }

  .m-after-lighter-grey {
    overflow: visible !important;
    position: relative;
  }
  .m-after-lighter-grey::after {
    background-color: #f2f2f2;
    content: "";
    height: 100%;
    position: absolute;
    right: -1000px;
    top: 0;
    width: 1000px;
  }

  .m-after-orange {
    overflow: visible !important;
    position: relative;
  }
  .m-after-orange::after {
    background-color: #fcbb68;
    content: "";
    height: 100%;
    position: absolute;
    right: -1000px;
    top: 0;
    width: 1000px;
  }

  .m-after-red {
    overflow: visible !important;
    position: relative;
  }
  .m-after-red::after {
    background-color: #801010;
    content: "";
    height: 100%;
    position: absolute;
    right: -1000px;
    top: 0;
    width: 1000px;
  }

  .m-after-teal-light {
    overflow: visible !important;
    position: relative;
  }
  .m-after-teal-light::after {
    background-color: #3c798f;
    content: "";
    height: 100%;
    position: absolute;
    right: -1000px;
    top: 0;
    width: 1000px;
  }

  .m-after-teal {
    overflow: visible !important;
    position: relative;
  }
  .m-after-teal::after {
    background-color: #0b5873;
    content: "";
    height: 100%;
    position: absolute;
    right: -1000px;
    top: 0;
    width: 1000px;
  }

  .m-after-white {
    overflow: visible !important;
    position: relative;
  }
  .m-after-white::after {
    background-color: #fff;
    content: "";
    height: 100%;
    position: absolute;
    right: -1000px;
    top: 0;
    width: 1000px;
  }
}
@media only screen and (max-width: 480px) {
  .s-after-black {
    overflow: visible !important;
    position: relative;
  }
  .s-after-black::after {
    background-color: #000;
    content: "";
    height: 100%;
    position: absolute;
    right: -1000px;
    top: 0;
    width: 1000px;
  }

  .s-after-blue-light {
    overflow: visible !important;
    position: relative;
  }
  .s-after-blue-light::after {
    background-color: #6fa6d2;
    content: "";
    height: 100%;
    position: absolute;
    right: -1000px;
    top: 0;
    width: 1000px;
  }

  .s-after-blue {
    overflow: visible !important;
    position: relative;
  }
  .s-after-blue::after {
    background-color: #5e92b3;
    content: "";
    height: 100%;
    position: absolute;
    right: -1000px;
    top: 0;
    width: 1000px;
  }

  .s-after-charcoal {
    overflow: visible !important;
    position: relative;
  }
  .s-after-charcoal::after {
    background-color: #404040;
    content: "";
    height: 100%;
    position: absolute;
    right: -1000px;
    top: 0;
    width: 1000px;
  }

  .s-after-dark-grey {
    overflow: visible !important;
    position: relative;
  }
  .s-after-dark-grey::after {
    background-color: #646462;
    content: "";
    height: 100%;
    position: absolute;
    right: -1000px;
    top: 0;
    width: 1000px;
  }

  .s-after-ghost {
    overflow: visible !important;
    position: relative;
  }
  .s-after-ghost::after {
    background-color: #edeff2;
    content: "";
    height: 100%;
    position: absolute;
    right: -1000px;
    top: 0;
    width: 1000px;
  }

  .s-after-green {
    overflow: visible !important;
    position: relative;
  }
  .s-after-green::after {
    background-color: #107f80;
    content: "";
    height: 100%;
    position: absolute;
    right: -1000px;
    top: 0;
    width: 1000px;
  }

  .s-after-light-grey {
    overflow: visible !important;
    position: relative;
  }
  .s-after-light-grey::after {
    background-color: #d9d9d9;
    content: "";
    height: 100%;
    position: absolute;
    right: -1000px;
    top: 0;
    width: 1000px;
  }

  .s-after-lighter-grey {
    overflow: visible !important;
    position: relative;
  }
  .s-after-lighter-grey::after {
    background-color: #f2f2f2;
    content: "";
    height: 100%;
    position: absolute;
    right: -1000px;
    top: 0;
    width: 1000px;
  }

  .s-after-orange {
    overflow: visible !important;
    position: relative;
  }
  .s-after-orange::after {
    background-color: #fcbb68;
    content: "";
    height: 100%;
    position: absolute;
    right: -1000px;
    top: 0;
    width: 1000px;
  }

  .s-after-red {
    overflow: visible !important;
    position: relative;
  }
  .s-after-red::after {
    background-color: #801010;
    content: "";
    height: 100%;
    position: absolute;
    right: -1000px;
    top: 0;
    width: 1000px;
  }

  .s-after-teal-light {
    overflow: visible !important;
    position: relative;
  }
  .s-after-teal-light::after {
    background-color: #3c798f;
    content: "";
    height: 100%;
    position: absolute;
    right: -1000px;
    top: 0;
    width: 1000px;
  }

  .s-after-teal {
    overflow: visible !important;
    position: relative;
  }
  .s-after-teal::after {
    background-color: #0b5873;
    content: "";
    height: 100%;
    position: absolute;
    right: -1000px;
    top: 0;
    width: 1000px;
  }

  .s-after-white {
    overflow: visible !important;
    position: relative;
  }
  .s-after-white::after {
    background-color: #fff;
    content: "";
    height: 100%;
    position: absolute;
    right: -1000px;
    top: 0;
    width: 1000px;
  }
}
.banner-scroll {
  background: url("img/vector/banner-scroll.svg") no-repeat center center/82px 30px;
  bottom: -1px;
  display: block;
  height: 30px;
  left: 50%;
  margin-left: -41px;
  position: absolute;
  text-indent: -9999px;
  width: 82px;
  z-index: 1;
}

.before-black {
  overflow: visible !important;
  position: relative;
}
.before-black::before {
  top: 0;
  background-color: #000;
  content: "";
  height: 100%;
  left: -1000px;
  position: absolute;
  width: 1000px;
  z-index: 1;
}

.before-blue-light {
  overflow: visible !important;
  position: relative;
}
.before-blue-light::before {
  top: 0;
  background-color: #6fa6d2;
  content: "";
  height: 100%;
  left: -1000px;
  position: absolute;
  width: 1000px;
  z-index: 1;
}

.before-blue {
  overflow: visible !important;
  position: relative;
}
.before-blue::before {
  top: 0;
  background-color: #5e92b3;
  content: "";
  height: 100%;
  left: -1000px;
  position: absolute;
  width: 1000px;
  z-index: 1;
}

.before-charcoal {
  overflow: visible !important;
  position: relative;
}
.before-charcoal::before {
  top: 0;
  background-color: #404040;
  content: "";
  height: 100%;
  left: -1000px;
  position: absolute;
  width: 1000px;
  z-index: 1;
}

.before-dark-grey {
  overflow: visible !important;
  position: relative;
}
.before-dark-grey::before {
  top: 0;
  background-color: #646462;
  content: "";
  height: 100%;
  left: -1000px;
  position: absolute;
  width: 1000px;
  z-index: 1;
}

.before-ghost {
  overflow: visible !important;
  position: relative;
}
.before-ghost::before {
  top: 0;
  background-color: #edeff2;
  content: "";
  height: 100%;
  left: -1000px;
  position: absolute;
  width: 1000px;
  z-index: 1;
}

.before-green {
  overflow: visible !important;
  position: relative;
}
.before-green::before {
  top: 0;
  background-color: #107f80;
  content: "";
  height: 100%;
  left: -1000px;
  position: absolute;
  width: 1000px;
  z-index: 1;
}

.before-light-grey {
  overflow: visible !important;
  position: relative;
}
.before-light-grey::before {
  top: 0;
  background-color: #d9d9d9;
  content: "";
  height: 100%;
  left: -1000px;
  position: absolute;
  width: 1000px;
  z-index: 1;
}

.before-lighter-grey {
  overflow: visible !important;
  position: relative;
}
.before-lighter-grey::before {
  top: 0;
  background-color: #f2f2f2;
  content: "";
  height: 100%;
  left: -1000px;
  position: absolute;
  width: 1000px;
  z-index: 1;
}

.before-orange {
  overflow: visible !important;
  position: relative;
}
.before-orange::before {
  top: 0;
  background-color: #fcbb68;
  content: "";
  height: 100%;
  left: -1000px;
  position: absolute;
  width: 1000px;
  z-index: 1;
}

.before-red {
  overflow: visible !important;
  position: relative;
}
.before-red::before {
  top: 0;
  background-color: #801010;
  content: "";
  height: 100%;
  left: -1000px;
  position: absolute;
  width: 1000px;
  z-index: 1;
}

.before-teal-light {
  overflow: visible !important;
  position: relative;
}
.before-teal-light::before {
  top: 0;
  background-color: #3c798f;
  content: "";
  height: 100%;
  left: -1000px;
  position: absolute;
  width: 1000px;
  z-index: 1;
}

.before-teal {
  overflow: visible !important;
  position: relative;
}
.before-teal::before {
  top: 0;
  background-color: #0b5873;
  content: "";
  height: 100%;
  left: -1000px;
  position: absolute;
  width: 1000px;
  z-index: 1;
}

.before-white {
  overflow: visible !important;
  position: relative;
}
.before-white::before {
  top: 0;
  background-color: #fff;
  content: "";
  height: 100%;
  left: -1000px;
  position: absolute;
  width: 1000px;
  z-index: 1;
}

/*
|--------------------------------------------------------------------------
| Responsive
|--------------------------------------------------------------------------
*/
@media only screen and (max-width: 1024px) {
  .xl-before-black {
    overflow: visible !important;
    position: relative;
  }
  .xl-before-black::before {
    background-color: #000;
    content: "";
    height: 100%;
    left: -1000px;
    position: absolute;
    top: 0;
    width: 1000px;
  }

  .xl-before-blue-light {
    overflow: visible !important;
    position: relative;
  }
  .xl-before-blue-light::before {
    background-color: #6fa6d2;
    content: "";
    height: 100%;
    left: -1000px;
    position: absolute;
    top: 0;
    width: 1000px;
  }

  .xl-before-blue {
    overflow: visible !important;
    position: relative;
  }
  .xl-before-blue::before {
    background-color: #5e92b3;
    content: "";
    height: 100%;
    left: -1000px;
    position: absolute;
    top: 0;
    width: 1000px;
  }

  .xl-before-charcoal {
    overflow: visible !important;
    position: relative;
  }
  .xl-before-charcoal::before {
    background-color: #404040;
    content: "";
    height: 100%;
    left: -1000px;
    position: absolute;
    top: 0;
    width: 1000px;
  }

  .xl-before-dark-grey {
    overflow: visible !important;
    position: relative;
  }
  .xl-before-dark-grey::before {
    background-color: #646462;
    content: "";
    height: 100%;
    left: -1000px;
    position: absolute;
    top: 0;
    width: 1000px;
  }

  .xl-before-ghost {
    overflow: visible !important;
    position: relative;
  }
  .xl-before-ghost::before {
    background-color: #edeff2;
    content: "";
    height: 100%;
    left: -1000px;
    position: absolute;
    top: 0;
    width: 1000px;
  }

  .xl-before-green {
    overflow: visible !important;
    position: relative;
  }
  .xl-before-green::before {
    background-color: #107f80;
    content: "";
    height: 100%;
    left: -1000px;
    position: absolute;
    top: 0;
    width: 1000px;
  }

  .xl-before-light-grey {
    overflow: visible !important;
    position: relative;
  }
  .xl-before-light-grey::before {
    background-color: #d9d9d9;
    content: "";
    height: 100%;
    left: -1000px;
    position: absolute;
    top: 0;
    width: 1000px;
  }

  .xl-before-lighter-grey {
    overflow: visible !important;
    position: relative;
  }
  .xl-before-lighter-grey::before {
    background-color: #f2f2f2;
    content: "";
    height: 100%;
    left: -1000px;
    position: absolute;
    top: 0;
    width: 1000px;
  }

  .xl-before-orange {
    overflow: visible !important;
    position: relative;
  }
  .xl-before-orange::before {
    background-color: #fcbb68;
    content: "";
    height: 100%;
    left: -1000px;
    position: absolute;
    top: 0;
    width: 1000px;
  }

  .xl-before-red {
    overflow: visible !important;
    position: relative;
  }
  .xl-before-red::before {
    background-color: #801010;
    content: "";
    height: 100%;
    left: -1000px;
    position: absolute;
    top: 0;
    width: 1000px;
  }

  .xl-before-teal-light {
    overflow: visible !important;
    position: relative;
  }
  .xl-before-teal-light::before {
    background-color: #3c798f;
    content: "";
    height: 100%;
    left: -1000px;
    position: absolute;
    top: 0;
    width: 1000px;
  }

  .xl-before-teal {
    overflow: visible !important;
    position: relative;
  }
  .xl-before-teal::before {
    background-color: #0b5873;
    content: "";
    height: 100%;
    left: -1000px;
    position: absolute;
    top: 0;
    width: 1000px;
  }

  .xl-before-white {
    overflow: visible !important;
    position: relative;
  }
  .xl-before-white::before {
    background-color: #fff;
    content: "";
    height: 100%;
    left: -1000px;
    position: absolute;
    top: 0;
    width: 1000px;
  }
}
@media only screen and (max-width: 960px) {
  .l-before-black {
    overflow: visible !important;
    position: relative;
  }
  .l-before-black::before {
    background-color: #000;
    content: "";
    height: 100%;
    left: -1000px;
    position: absolute;
    top: 0;
    width: 1000px;
  }

  .l-before-blue-light {
    overflow: visible !important;
    position: relative;
  }
  .l-before-blue-light::before {
    background-color: #6fa6d2;
    content: "";
    height: 100%;
    left: -1000px;
    position: absolute;
    top: 0;
    width: 1000px;
  }

  .l-before-blue {
    overflow: visible !important;
    position: relative;
  }
  .l-before-blue::before {
    background-color: #5e92b3;
    content: "";
    height: 100%;
    left: -1000px;
    position: absolute;
    top: 0;
    width: 1000px;
  }

  .l-before-charcoal {
    overflow: visible !important;
    position: relative;
  }
  .l-before-charcoal::before {
    background-color: #404040;
    content: "";
    height: 100%;
    left: -1000px;
    position: absolute;
    top: 0;
    width: 1000px;
  }

  .l-before-dark-grey {
    overflow: visible !important;
    position: relative;
  }
  .l-before-dark-grey::before {
    background-color: #646462;
    content: "";
    height: 100%;
    left: -1000px;
    position: absolute;
    top: 0;
    width: 1000px;
  }

  .l-before-ghost {
    overflow: visible !important;
    position: relative;
  }
  .l-before-ghost::before {
    background-color: #edeff2;
    content: "";
    height: 100%;
    left: -1000px;
    position: absolute;
    top: 0;
    width: 1000px;
  }

  .l-before-green {
    overflow: visible !important;
    position: relative;
  }
  .l-before-green::before {
    background-color: #107f80;
    content: "";
    height: 100%;
    left: -1000px;
    position: absolute;
    top: 0;
    width: 1000px;
  }

  .l-before-light-grey {
    overflow: visible !important;
    position: relative;
  }
  .l-before-light-grey::before {
    background-color: #d9d9d9;
    content: "";
    height: 100%;
    left: -1000px;
    position: absolute;
    top: 0;
    width: 1000px;
  }

  .l-before-lighter-grey {
    overflow: visible !important;
    position: relative;
  }
  .l-before-lighter-grey::before {
    background-color: #f2f2f2;
    content: "";
    height: 100%;
    left: -1000px;
    position: absolute;
    top: 0;
    width: 1000px;
  }

  .l-before-orange {
    overflow: visible !important;
    position: relative;
  }
  .l-before-orange::before {
    background-color: #fcbb68;
    content: "";
    height: 100%;
    left: -1000px;
    position: absolute;
    top: 0;
    width: 1000px;
  }

  .l-before-red {
    overflow: visible !important;
    position: relative;
  }
  .l-before-red::before {
    background-color: #801010;
    content: "";
    height: 100%;
    left: -1000px;
    position: absolute;
    top: 0;
    width: 1000px;
  }

  .l-before-teal-light {
    overflow: visible !important;
    position: relative;
  }
  .l-before-teal-light::before {
    background-color: #3c798f;
    content: "";
    height: 100%;
    left: -1000px;
    position: absolute;
    top: 0;
    width: 1000px;
  }

  .l-before-teal {
    overflow: visible !important;
    position: relative;
  }
  .l-before-teal::before {
    background-color: #0b5873;
    content: "";
    height: 100%;
    left: -1000px;
    position: absolute;
    top: 0;
    width: 1000px;
  }

  .l-before-white {
    overflow: visible !important;
    position: relative;
  }
  .l-before-white::before {
    background-color: #fff;
    content: "";
    height: 100%;
    left: -1000px;
    position: absolute;
    top: 0;
    width: 1000px;
  }
}
@media only screen and (max-width: 768px) {
  .m-before-black {
    overflow: visible !important;
    position: relative;
  }
  .m-before-black::before {
    background-color: #000;
    content: "";
    height: 100%;
    left: -1000px;
    position: absolute;
    top: 0;
    width: 1000px;
  }

  .m-before-blue-light {
    overflow: visible !important;
    position: relative;
  }
  .m-before-blue-light::before {
    background-color: #6fa6d2;
    content: "";
    height: 100%;
    left: -1000px;
    position: absolute;
    top: 0;
    width: 1000px;
  }

  .m-before-blue {
    overflow: visible !important;
    position: relative;
  }
  .m-before-blue::before {
    background-color: #5e92b3;
    content: "";
    height: 100%;
    left: -1000px;
    position: absolute;
    top: 0;
    width: 1000px;
  }

  .m-before-charcoal {
    overflow: visible !important;
    position: relative;
  }
  .m-before-charcoal::before {
    background-color: #404040;
    content: "";
    height: 100%;
    left: -1000px;
    position: absolute;
    top: 0;
    width: 1000px;
  }

  .m-before-dark-grey {
    overflow: visible !important;
    position: relative;
  }
  .m-before-dark-grey::before {
    background-color: #646462;
    content: "";
    height: 100%;
    left: -1000px;
    position: absolute;
    top: 0;
    width: 1000px;
  }

  .m-before-ghost {
    overflow: visible !important;
    position: relative;
  }
  .m-before-ghost::before {
    background-color: #edeff2;
    content: "";
    height: 100%;
    left: -1000px;
    position: absolute;
    top: 0;
    width: 1000px;
  }

  .m-before-green {
    overflow: visible !important;
    position: relative;
  }
  .m-before-green::before {
    background-color: #107f80;
    content: "";
    height: 100%;
    left: -1000px;
    position: absolute;
    top: 0;
    width: 1000px;
  }

  .m-before-light-grey {
    overflow: visible !important;
    position: relative;
  }
  .m-before-light-grey::before {
    background-color: #d9d9d9;
    content: "";
    height: 100%;
    left: -1000px;
    position: absolute;
    top: 0;
    width: 1000px;
  }

  .m-before-lighter-grey {
    overflow: visible !important;
    position: relative;
  }
  .m-before-lighter-grey::before {
    background-color: #f2f2f2;
    content: "";
    height: 100%;
    left: -1000px;
    position: absolute;
    top: 0;
    width: 1000px;
  }

  .m-before-orange {
    overflow: visible !important;
    position: relative;
  }
  .m-before-orange::before {
    background-color: #fcbb68;
    content: "";
    height: 100%;
    left: -1000px;
    position: absolute;
    top: 0;
    width: 1000px;
  }

  .m-before-red {
    overflow: visible !important;
    position: relative;
  }
  .m-before-red::before {
    background-color: #801010;
    content: "";
    height: 100%;
    left: -1000px;
    position: absolute;
    top: 0;
    width: 1000px;
  }

  .m-before-teal-light {
    overflow: visible !important;
    position: relative;
  }
  .m-before-teal-light::before {
    background-color: #3c798f;
    content: "";
    height: 100%;
    left: -1000px;
    position: absolute;
    top: 0;
    width: 1000px;
  }

  .m-before-teal {
    overflow: visible !important;
    position: relative;
  }
  .m-before-teal::before {
    background-color: #0b5873;
    content: "";
    height: 100%;
    left: -1000px;
    position: absolute;
    top: 0;
    width: 1000px;
  }

  .m-before-white {
    overflow: visible !important;
    position: relative;
  }
  .m-before-white::before {
    background-color: #fff;
    content: "";
    height: 100%;
    left: -1000px;
    position: absolute;
    top: 0;
    width: 1000px;
  }
}
@media only screen and (max-width: 480px) {
  .s-before-black {
    overflow: visible !important;
    position: relative;
  }
  .s-before-black::before {
    background-color: #000;
    content: "";
    height: 100%;
    left: -1000px;
    position: absolute;
    top: 0;
    width: 1000px;
  }

  .s-before-blue-light {
    overflow: visible !important;
    position: relative;
  }
  .s-before-blue-light::before {
    background-color: #6fa6d2;
    content: "";
    height: 100%;
    left: -1000px;
    position: absolute;
    top: 0;
    width: 1000px;
  }

  .s-before-blue {
    overflow: visible !important;
    position: relative;
  }
  .s-before-blue::before {
    background-color: #5e92b3;
    content: "";
    height: 100%;
    left: -1000px;
    position: absolute;
    top: 0;
    width: 1000px;
  }

  .s-before-charcoal {
    overflow: visible !important;
    position: relative;
  }
  .s-before-charcoal::before {
    background-color: #404040;
    content: "";
    height: 100%;
    left: -1000px;
    position: absolute;
    top: 0;
    width: 1000px;
  }

  .s-before-dark-grey {
    overflow: visible !important;
    position: relative;
  }
  .s-before-dark-grey::before {
    background-color: #646462;
    content: "";
    height: 100%;
    left: -1000px;
    position: absolute;
    top: 0;
    width: 1000px;
  }

  .s-before-ghost {
    overflow: visible !important;
    position: relative;
  }
  .s-before-ghost::before {
    background-color: #edeff2;
    content: "";
    height: 100%;
    left: -1000px;
    position: absolute;
    top: 0;
    width: 1000px;
  }

  .s-before-green {
    overflow: visible !important;
    position: relative;
  }
  .s-before-green::before {
    background-color: #107f80;
    content: "";
    height: 100%;
    left: -1000px;
    position: absolute;
    top: 0;
    width: 1000px;
  }

  .s-before-light-grey {
    overflow: visible !important;
    position: relative;
  }
  .s-before-light-grey::before {
    background-color: #d9d9d9;
    content: "";
    height: 100%;
    left: -1000px;
    position: absolute;
    top: 0;
    width: 1000px;
  }

  .s-before-lighter-grey {
    overflow: visible !important;
    position: relative;
  }
  .s-before-lighter-grey::before {
    background-color: #f2f2f2;
    content: "";
    height: 100%;
    left: -1000px;
    position: absolute;
    top: 0;
    width: 1000px;
  }

  .s-before-orange {
    overflow: visible !important;
    position: relative;
  }
  .s-before-orange::before {
    background-color: #fcbb68;
    content: "";
    height: 100%;
    left: -1000px;
    position: absolute;
    top: 0;
    width: 1000px;
  }

  .s-before-red {
    overflow: visible !important;
    position: relative;
  }
  .s-before-red::before {
    background-color: #801010;
    content: "";
    height: 100%;
    left: -1000px;
    position: absolute;
    top: 0;
    width: 1000px;
  }

  .s-before-teal-light {
    overflow: visible !important;
    position: relative;
  }
  .s-before-teal-light::before {
    background-color: #3c798f;
    content: "";
    height: 100%;
    left: -1000px;
    position: absolute;
    top: 0;
    width: 1000px;
  }

  .s-before-teal {
    overflow: visible !important;
    position: relative;
  }
  .s-before-teal::before {
    background-color: #0b5873;
    content: "";
    height: 100%;
    left: -1000px;
    position: absolute;
    top: 0;
    width: 1000px;
  }

  .s-before-white {
    overflow: visible !important;
    position: relative;
  }
  .s-before-white::before {
    background-color: #fff;
    content: "";
    height: 100%;
    left: -1000px;
    position: absolute;
    top: 0;
    width: 1000px;
  }
}
.blockquote {
  font-size: 20px;
  background-color: #edeff2;
  font-weight: 500;
  padding-top: 36.4px;
  padding: 56px;
}
.blockquote::before {
  color: #fcbb68;
  content: '"';
  display: inline-block;
  font-size: 48px;
  font-weight: 500;
  line-height: 48px;
  position: relative;
}
.blockquote::after {
  color: #fcbb68;
  content: '"';
  display: inline-block;
  font-weight: 500;
  position: relative;
}

.button {
  background-color: #107f80;
  border-radius: 3px;
  border: 2px solid #107f80;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.02em;
  min-height: 0;
  padding: 10px 40px;
  text-decoration: none;
  transition: all 0.15s ease;
}
.button:hover, .button:focus {
  background-color: #fcbb68;
  border-color: #fcbb68;
}

.button--orange {
  background-color: #fcbb68;
  border-color: #fcbb68;
}
.button--orange:hover, .button--orange:focus {
  background-color: #fcb04f;
  border-color: #fcb04f;
}

.button--white {
  background-color: #fff;
  border-color: #fff;
  color: #0b5873;
}

.button--slate {
  background-color: #737373;
  border-color: #737373;
}
.button--slate:hover, .button--slate:focus {
  background-color: #666666;
  border-color: #666666;
}

.button--big {
  padding: 14px 56px;
}

.button--plus {
  background-color: transparent;
  border-radius: 5px;
  border: 1px solid #d9d9d9;
  color: #404040;
  font-weight: normal;
  line-height: 16px;
  padding: 7px 28px 7px 9.3333333333px;
  position: relative;
}
.button--plus::after {
  background-image: url("/style/img/vector/plus-grey.svg");
  background-size: 8px 8px;
  content: "";
  height: 8px;
  position: absolute;
  right: 9.3333333333px;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
}

/*
|--------------------------------------------------------------------------
| Responsive
|--------------------------------------------------------------------------
*/
@media only screen and (max-width: 480px) {
  .button {
    display: block;
    width: 100%;
  }
}
.button-control {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  flex: 0 1 auto;
  list-style: none;
  margin-bottom: 0;
  margin-left: -28px;
  padding-left: 0;
}
.button-control > li {
  display: flex;
  flex-direction: column;
  margin-bottom: 28px;
  max-width: 348px;
  min-width: 268px;
  padding-left: 28px;
}
.button-control input {
  opacity: 0;
  position: absolute;
  visibility: hidden;
}
.button-control label {
  background-color: #5e92b3;
  border-radius: 3px;
  border: 1px solid #5e92b3;
  color: #fff;
  display: flex;
  flex-direction: column;
  font-size: 18px;
  font-weight: 600;
  height: 100%;
  justify-content: center;
  letter-spacing: normal;
  padding: 28px 42px;
  text-align: center;
  transition: 0.15s ease;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  width: 100%;
}
.button-control input:checked + label {
  background-color: #107f80;
  border-color: #107f80;
  color: #fff;
}

.button-control--fixed .button-control__item {
  display: flex;
  height: 94px;
}
.button-control--fixed label {
  font-size: 16px;
  line-height: 24px;
}

.button-control--small label {
  min-width: 180px;
  padding: 21px;
}

.button-control__content {
  padding-top: 28px;
}

@media only screen and (max-width: 768px) {
  .button-control > li {
    max-width: 100%;
    min-width: 0;
    width: 50%;
  }
}
@media only screen and (max-width: 480px) {
  .button-control > li {
    width: 100%;
  }
  .button-control label {
    font-size: 16px;
    height: 62px;
    height: auto;
    margin-left: 0;
    padding: 14px 28px;
  }

  .button-control--fixed .button-control__item {
    display: block;
    height: auto;
  }
}
.category {
  padding-top: 56.25%;
  display: flex;
  flex-direction: column;
  margin-bottom: 28px;
  overflow: hidden;
  position: relative;
  text-decoration: none;
  transition: all 0.15s ease;
}
.category > img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover";
  position: absolute;
  top: 0;
  left: 0;
}
.category::before {
  background: linear-gradient(to bottom, rgba(11, 88, 115, 0.8) 0%, #0b405d 100%);
  background-blend-mode: multiply;
  content: "";
  display: block;
  height: 100%;
  left: 0;
  opacity: 0.5;
  position: absolute;
  top: 0;
  transition: all 0.15s ease;
  width: 100%;
  z-index: 1;
}
.category:hover::before, .category:focus::before {
  background: linear-gradient(to bottom, rgba(60, 121, 143, 0.8) 0%, #0b5873 100%);
  opacity: 0.4;
}
.category:hover .category__base, .category:focus .category__base {
  border-bottom: solid 7px #fcbb68;
}
.category:hover .category__base::after, .category:focus .category__base::after {
  right: 42px;
}

.category__base {
  border-bottom: solid 7px transparent;
  padding: 28px 100px 28px 28px;
  position: relative;
  transition: all 0.15s ease;
  z-index: 1;
}
.category__base::after {
  background: url("img/vector/arrow-right-orange.svg") no-repeat center center;
  background-size: 100% auto;
  content: "";
  height: 13px;
  position: absolute;
  right: 28px;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.15s ease;
  width: 15px;
}

.category__title {
  color: #fff;
  margin: 0;
}

.category__background {
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover";
  height: 100%;
  left: 0;
  min-width: 100%;
  position: absolute;
  top: 0;
  z-index: 0;
}

/*
|--------------------------------------------------------------------------
| Responsive
|--------------------------------------------------------------------------
*/
@media only screen and (max-width: 480px) {
  .category {
    margin-bottom: 0;
    margin-left: -28px;
    margin-right: -28px;
    margin-top: 0;
  }
}
.container--wide {
  max-width: 1440px;
}

@media only screen and (max-width: 1496px) {
  .container--wide {
    margin: 0 28px;
  }
}
.control {
  color: #404040;
  cursor: pointer;
  display: inline-block;
  font-size: 14px;
  line-height: 18px;
  padding-left: 32px;
  position: relative;
  margin-right: 18px;
  text-align: left;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.control a {
  color: #5e92b3;
}
.control a:hover {
  text-decoration: underline;
}

.control--block {
  display: block;
  margin-right: 0;
  margin-bottom: 10px;
}

.control--large {
  display: block;
  font-size: 18px;
  margin: 14px 0 0;
}

.control input {
  opacity: 0;
  position: absolute;
  z-index: -1;
}

.control__indicator {
  background: no-repeat center center #d9d9d9;
  background-size: 50% 50%;
  border-radius: 2px;
  box-shadow: none !important;
  color: #107f80;
  display: block;
  height: 18px;
  margin-top: 0;
  position: absolute;
  top: -1px;
  left: 0;
  text-align: center;
  transform: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  width: 18px;
}
input:checked ~ .control__indicator {
  background-color: #107f80;
}

.datepicker {
  display: inline-block;
  max-width: 100%;
  position: relative;
}
.datepicker input {
  font-size: 22px;
  line-height: 26px;
  background-color: #fff;
  border-radius: 3px;
  border: 3px solid #107f80;
  box-shadow: 0 2px 6px 0 rgba(64, 64, 64, 0.2);
  color: #107f80;
  font-weight: 600;
  max-width: 100%;
  min-height: 62px;
  outline: none;
  padding: 21px 56px 21px 28px;
}
.datepicker input::-moz-placeholder {
  color: #107f80;
}
.datepicker input:-ms-input-placeholder {
  color: #107f80;
}
.datepicker input::placeholder {
  color: #107f80;
}
.datepicker::after {
  border-bottom: 7px solid transparent;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-top: 7px solid #107f80;
  content: "";
  margin-top: -3px;
  position: absolute;
  right: 28px;
  top: 50%;
  pointer-events: none;
}

.datepicker .pika-single {
  left: 50% !important;
  position: absolute !important;
  transform: translateX(-50%) !important;
}
.datepicker tr, .datepicker td, .datepicker th {
  border: none;
}
.datepicker abbr {
  text-decoration: none;
}

.pika-lendar {
  width: 340px;
}

.pika-title {
  border-bottom: 1px solid #cccccc;
  padding: 14px 0;
}

.pika-label {
  color: #107f80;
  font-size: 20px;
  font-weight: 600;
}

.pika-button {
  font-size: 20px;
  line-height: 26px;
  background-color: #fff;
  border-radius: 50%;
  font-weight: 400;
  padding: 14px 9.3333333333px;
  text-align: center;
  vertical-align: middle;
}
.pika-button:hover {
  background-color: #5e92b3;
  border-radius: 50%;
  color: #fff;
}
.is-today .pika-button {
  border: 1px solid #cccccc;
  color: #5e92b3;
}
.is-selected .pika-button {
  background-color: #107f80;
  border-color: #107f80;
  border-radius: 50%;
  box-shadow: none;
  color: #fff;
}
.is-selected .pika-button:hover {
  background-color: #128c8e;
}

.pika-single {
  font-family: "Fira Sans", sans-serif;
}

.pika-table {
  margin-bottom: 0;
}
.pika-table th {
  font-size: 20px;
  font-weight: 400;
  padding: 14px 0;
}

@media only screen and (max-width: 768px) {
  .datepicker {
    margin-bottom: 28px;
  }
  .datepicker input {
    font-size: 18px;
    line-height: 26px;
  }

  .pika-lendar {
    width: 260px;
  }

  .pika-title {
    padding: 11.2px 0;
  }

  .pika-label {
    font-size: 16px;
    line-height: 26px;
  }

  .pika-button {
    font-size: 16px;
    line-height: 26px;
    padding: 11.2px 8px;
  }

  .pika-table th {
    font-size: 16px;
    line-height: 26px;
    padding: 11.2px 0;
  }
}
.feature {
  color: #404040;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  flex: 0 1 auto;
  font-weight: 300;
  margin-bottom: 28px;
  position: relative;
  text-decoration: none;
  justify-content: space-between;
  transition: all 0.15s ease;
}
.feature .link {
  bottom: 0;
  color: #fcbb68;
  font-weight: 400;
  left: 56px;
  opacity: 0;
  position: absolute;
  transition: all 0.15s ease;
}
.feature:hover, .feature:focus {
  color: #404040;
}
.feature:hover .feature__image::before, .feature:focus .feature__image::before {
  background: linear-gradient(to bottom, rgba(60, 121, 143, 0.8) 0%, #0b5873 100%);
  opacity: 0.4;
}
.feature:hover .link, .feature:focus .link {
  opacity: 1;
}

.feature__image,
.feature__content {
  flex: 0 0 auto;
  width: calc(50% - 10px);
}

.feature__image {
  overflow: hidden;
  position: relative;
  transition: all 0.15s ease;
}
.feature__image > img {
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover";
  height: 100%;
  left: 0;
  min-width: 100%;
  position: absolute;
  top: 0;
  z-index: 0;
}
.feature__image::before {
  background-blend-mode: multiply;
  background: linear-gradient(to bottom, rgba(11, 88, 115, 0.8) 0%, #0b405d 100%);
  content: "";
  display: block;
  height: 100%;
  left: 0;
  opacity: 0.4;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 1;
}

.feature__content {
  padding: 56px 0 56px 56px;
  position: relative;
}

.feature--reverse {
  flex-direction: row-reverse;
}
.feature--reverse .feature__content {
  padding-left: 0;
  padding-right: 56px;
}
.feature--reverse .link {
  left: 0;
}

/*
|--------------------------------------------------------------------------
| Responsive
|--------------------------------------------------------------------------
*/
@media only screen and (max-width: 1236px) {
  .feature__image::after {
    border-width: 200px 200px 0 0;
  }
}
@media only screen and (max-width: 768px) {
  .feature {
    flex-direction: column;
  }
  .feature .link {
    left: 0;
  }

  .feature__image,
.feature__content {
    width: 100%;
  }

  .feature__image {
    height: 300px;
  }

  .feature__content {
    padding: 28px 0 22px 0;
  }

  .feature--reversed {
    flex-direction: column;
  }
  .feature--reversed .feature__image {
    flex-basis: 300px;
    height: 300px;
  }
}
figure {
  margin: 0 0 28px 0;
}

.file {
  background-color: #fff;
  border: 1px solid #d9d9d9;
  display: flex;
  min-height: 175px;
  padding: 14px 28px;
}

.file--other {
  background-color: #f2f2f2;
  border-color: #f2f2f2;
}
.file--other .file__title {
  font-size: 16px;
  line-height: 26px;
}
.file--other .upload__button {
  background-color: #404040;
  color: #fff;
}
.file--other .upload__button::after {
  background-image: url("img/vector/upload-white.svg");
}

.file--transparent {
  opacity: 0.5;
}

.file__label {
  border-right: 1px solid #cccccc;
  margin-right: 28px;
  padding-right: 28px;
  position: relative;
  width: 98px;
}
.file__label > span {
  background: #5e92b3;
  border-radius: 50%;
  color: #fff;
  font-size: 25px;
  font-weight: 700;
  height: 78px;
  left: 50%;
  line-height: 78px;
  margin: -39px 0 0 -49px;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 78px;
}
.file__label > span > span {
  bottom: 0;
  height: 0;
  left: 0;
  overflow: hidden;
  position: absolute;
  width: 100%;
}
.file__label > span > span > span {
  background: #107f80;
  border-radius: 50%;
  bottom: 0;
  font-size: 25px;
  font-weight: 700;
  height: 78px;
  left: 0;
  line-height: 78px;
  position: absolute;
  width: 78px;
}

.file__content {
  align-self: center;
  flex-grow: 1;
  padding: 28px;
}

.file__title {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 28px;
  text-align: center;
}

.file__title--fixed {
  font-size: 18px;
  margin-left: auto;
  margin-right: auto;
  max-width: 180px;
  word-wrap: break-word;
}

@media only screen and (max-width: 480px) {
  .file {
    flex-wrap: wrap;
    padding: 18.6666666667px;
  }

  .file__content {
    max-width: 100%;
    padding: 0;
  }

  .file__label {
    border-right: none;
    flex: 1 0 auto;
    margin-bottom: 28px;
    margin-right: 0;
    padding: 0;
    text-align: center;
    width: 100%;
  }
  .file__label span {
    margin: 0 auto;
  }
  .file__label > span {
    display: block;
    position: static;
  }
}
.form-item--error select {
  border-color: #d32f2f;
}

.form-item--placeholder .form-item__label {
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  margin-top: 0;
  padding: 7px 16px;
  pointer-events: none;
  top: 10px;
}
.form-item--placeholder.is-active .form-item__label, .form-item--placeholder.has-input .form-item__label {
  background-color: #107f80;
  margin-top: 0;
  padding: 7px 16px;
  top: 9px;
  transform: translateY(-43px);
}

.form-item--optional::before {
  font-size: 12px;
  color: #b3b3b3;
  content: "optional";
  font-weight: 400;
  pointer-events: none;
  position: absolute;
  right: 14px;
  text-transform: uppercase;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.15s ease;
}
.form-item--optional.is-active::before, .form-item--optional.has-input::before {
  opacity: 0;
}

@media only screen and (max-width: 480px) {
  .form-item--inline {
    align-items: flex-start;
    flex-direction: column;
  }
  .form-item--inline .form-item__label {
    margin-bottom: 4.6666666667px;
  }
}
.grid--huge-gutter {
  margin-left: -112px;
}
.grid--huge-gutter > .grid__col {
  padding-left: 112px;
}

@media only screen and (max-width: 768px) {
  .grid--slide {
    display: flex;
    flex-wrap: nowrap;
    margin-right: -28px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .grid--slide > .grid__col {
    flex: 0 0 auto;
    width: 66.666%;
  }
  .grid--slide::after {
    content: "";
    flex: 0 0 auto;
    width: 28px;
  }
}
@media only screen and (max-width: 480px) {
  .grid--slide > .grid__col {
    width: 80%;
  }
}
.heading {
  color: #404040;
  display: inline-block;
  margin-bottom: 28px;
  position: relative;
}
.heading:focus, .heading:hover {
  color: #404040;
}

.heading--small {
  font-size: 40px;
  line-height: 52px;
}

.heading__snippet {
  margin-bottom: 0;
}

.lander-cta {
  background-color: #fcbb68;
  border-radius: 8px;
  padding: 33.6px;
}
.lander-cta__images {
  margin: 0 auto 28px auto;
  width: 200px;
}
.lander-cta a:hover,
.lander-cta a:focus {
  color: #107f80;
  text-decoration: underline;
}

@media only screen and (max-width: 768px) {
  .lander-cta__images {
    margin: 0 0 28px 0;
  }
}
.link {
  padding-right: 38px;
  position: relative;
}
.link::after {
  background-size: 100% auto;
  background: url("img/vector/arrow-right-orange-long.svg") no-repeat center center/24px 13px;
  content: "";
  height: 13px;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
}

i.link {
  display: block;
  height: 13px;
  padding-right: 0;
  width: 24px;
}

.list {
  padding: 0;
}
.list > li {
  list-style-type: none;
}

.list--check > li, .list--white-check > li, .list--dark-check > li {
  font-size: 24px;
  line-height: 26px;
  line-height: 30px;
  margin-bottom: 21px;
  padding-left: 44px;
  position: relative;
}
.list--check > li::before, .list--white-check > li::before, .list--dark-check > li::before {
  background: url("img/vector/checkmark.svg") no-repeat center center;
  background-size: 100% auto;
  content: "";
  height: 30px;
  left: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
}

.list--dark-check > li {
  font-size: 18px;
  line-height: 32px;
  padding-left: 38px;
}
.list--dark-check > li::before {
  background: url("img/vector/checkmark.svg") no-repeat center center;
  background-size: 100% auto;
  height: 24px;
  width: 24px;
}
.list--dark-check > li a {
  color: #404040;
  text-decoration: underline;
}
.list--dark-check > li a:hover {
  color: #5e92b3;
}

.list--check-small > li {
  margin-bottom: 21px;
  padding-left: 52px;
  position: relative;
}
.list--check-small > li::before {
  background: url("img/vector/checkmark-small.svg") no-repeat center center;
  background-size: 100% auto;
  content: "";
  height: 24px;
  left: 0;
  margin-top: -12px;
  position: absolute;
  top: 13px;
  width: 24px;
}

.list--white-check > li::before {
  background: url("img/vector/checkmark-white.svg") no-repeat center center;
  background-size: 100% auto;
}

.list--large > li {
  font-size: 20px;
  font-weight: 300;
  margin-bottom: 7px;
}

.list--small > li {
  font-size: 16px;
  line-height: 26px;
}

.list--inline > li {
  display: inline-block;
  margin: 0 28px 14px 0;
}

.list--icon li {
  margin-bottom: 14px;
  padding-left: 28px;
  position: relative;
}
.list--icon .icon::after {
  background-repeat: no-repeat;
  content: "";
  left: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  height: 18px;
}
.list--icon .icon--pound::after {
  background-image: url("/style/img/vector/pound.svg");
  background-size: 18px 18px;
  width: 18px;
}
.list--icon .icon--person::after {
  background-image: url("/style/img/vector/person.svg");
  background-size: 18px 18px;
  width: 18px;
}
.list--icon .icon--shield::after {
  background-image: url("/style/img/vector/shield.svg");
  background-size: 18px 18px;
  width: 18px;
}
.list--icon .icon--percentage::after {
  background-image: url("/style/img/vector/percentage.svg");
  background-size: 14px 18px;
  width: 14px;
}

/*
|--------------------------------------------------------------------------
| Responsive
|--------------------------------------------------------------------------
*/
@media only screen and (max-width: 960px) {
  .list--check > li,
.list--dark-check > li,
.list--check-small > li,
.list--white-check > li {
    font-size: 20px;
    line-height: 28px;
    padding-left: 40px;
  }
  .list--check > li::before,
.list--dark-check > li::before,
.list--check-small > li::before,
.list--white-check > li::before {
    height: 26px;
    width: 26px;
  }
}
@media only screen and (max-width: 768px) {
  .list--check > li,
.list--dark-check > li,
.list--check-small > li,
.list--white-check > li {
    font-size: 18px;
    line-height: 32px;
    padding-left: 38px;
  }
  .list--check > li::before,
.list--dark-check > li::before,
.list--check-small > li::before,
.list--white-check > li::before {
    height: 24px;
    width: 24px;
  }
}
@media only screen and (max-width: 480px) {
  .list--check > li,
.list--dark-check > li,
.list--check-small > li,
.list--white-check > li {
    font-size: 16px;
    line-height: 26px;
    padding-left: 36px;
  }
  .list--check > li::before,
.list--dark-check > li::before,
.list--check-small > li::before,
.list--white-check > li::before {
    height: 22px;
    width: 22px;
  }
}
.note {
  font-size: 18px;
  font-weight: 700;
  line-height: 32px;
  padding-left: 52px;
  position: relative;
}
.note::before {
  background: url("img/vector/arrow-right-orange-long.svg") no-repeat center center/24px 13px;
  background-size: 100% auto;
  content: "";
  height: 13px;
  left: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
}

.number-indicator {
  height: 30px;
  position: relative;
  width: 30px;
}
.number-indicator svg {
  left: 0;
  position: absolute;
  top: 0;
}
.number-indicator span {
  font-size: 16px;
  font-weight: 500;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
}

.pricing-card {
  align-items: center;
  background-color: #fff;
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 50.4px 33.6px;
  text-align: center;
}
.pricing-card__price, .pricing-card__title {
  font-size: 32px;
  line-height: 39px;
  color: #107f80;
  font-weight: 600;
  margin-bottom: 14px;
}
.pricing-card__title {
  color: #0b5873;
}
.pricing-card__summary {
  margin-bottom: 28px;
}

.required {
  bottom: 5px;
  position: absolute;
  right: -16px;
}

.sidebar {
  font-size: 22px;
}
.sidebar ul {
  list-style: none;
  padding-left: 0;
}
.sidebar li {
  margin-bottom: 18.6666666667px;
}
.sidebar a {
  color: #404040;
}
.sidebar a:focus, .sidebar a:hover, .sidebar a.is-active {
  color: #5e92b3;
}

.sidebar--fixed {
  position: fixed;
  top: 84px;
}

.split {
  align-items: center;
  display: flex;
  justify-content: space-between;
  padding: 0 56px;
  position: relative;
}
.split::after {
  background-color: rgba(0, 0, 0, 0.1);
  content: "";
  height: 100%;
  left: 50%;
  max-height: 200px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
}

.split__left,
.split__right {
  flex-basis: 40%;
  flex-grow: 0;
  flex-shrink: 0;
  margin-bottom: 28px;
  text-align: center;
}

/*
|--------------------------------------------------------------------------
| Responsive
|--------------------------------------------------------------------------
*/
@media only screen and (max-width: 768px) {
  .split {
    display: block;
    padding: 0 28px;
  }
  .split::after {
    display: none;
  }

  .split__left,
.split__right {
    display: block;
    padding: 28px 0;
    text-align: left;
  }

  .split__left {
    border-bottom: solid 1px rgba(0, 0, 0, 0.1);
  }
}
.sticky {
  transition: all 0.15s ease;
}
.sticky.is_stuck.going_up {
  margin-top: 24px;
}

.team-member {
  margin-bottom: 28px;
  overflow: hidden;
  position: relative;
}
.team-member .js-toggle {
  display: none;
}
.touchevents .team-member .js-toggle {
  display: block;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  text-indent: -9999px;
  width: 100%;
  z-index: 100;
}
.team-member.is-active .js-tobble {
  background-color: #000;
}

.team-member__inner {
  padding-top: 166.6666666667%;
}
.team-member__inner > img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover";
  position: absolute;
  top: 0;
  left: 0;
}
.team-member__inner::before {
  background: linear-gradient(to bottom, rgba(11, 88, 115, 0.8) 0%, #0b405d 100%);
  background-blend-mode: multiply;
  content: "";
  display: block;
  height: 100%;
  left: 0;
  opacity: 0;
  position: absolute;
  top: 0;
  transition: all 0.6s ease;
  width: 100%;
  z-index: 1;
}
.team-member__inner:hover::before, .team-member__inner:active::before, .is-active > .team-member__inner::before {
  opacity: 0.9;
}
.team-member__inner:hover .team-member__overlay, .team-member__inner:active .team-member__overlay, .is-active > .team-member__inner .team-member__overlay {
  bottom: -100%;
  opacity: 0;
}
.team-member__inner:hover .team-member__overlay .team-member__role, .team-member__inner:active .team-member__overlay .team-member__role, .is-active > .team-member__inner .team-member__overlay .team-member__role {
  border-bottom: none;
}
.team-member__inner:hover .team-member__details, .team-member__inner:active .team-member__details, .is-active > .team-member__inner .team-member__details {
  top: 0;
}
.team-member__inner:hover .team-member__role, .team-member__inner:active .team-member__role, .is-active > .team-member__inner .team-member__role {
  border-bottom: solid 2px #fcbb68;
  margin-bottom: 21px;
  padding-bottom: 21px;
}

.team-member__overlay,
.team-member__details {
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.team-member__overlay {
  bottom: 0;
  left: 0;
  opacity: 1;
  padding: 28px 28px 0 28px;
  position: absolute;
  transition: all 0.6s ease;
  z-index: 1;
}

.team-member__details {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: center;
  padding: 28px;
  position: absolute;
  top: 100%;
  transition: all 0.6s ease;
  z-index: 2;
}

.team-member__name {
  color: #fff;
  display: block;
  margin: 0;
}

.team-member__role {
  color: #fff;
  display: block;
  font-weight: 400;
  line-height: 24px;
  margin-bottom: 14px;
  padding-bottom: 14px;
}

.team-member__snippet {
  font-size: 14px;
  color: #fff;
  display: block;
  flex-grow: 4;
  font-weight: 400;
  line-height: 24px;
  margin-bottom: 14px;
}

.team-member__picture {
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover";
  height: 100%;
  left: 0;
  min-width: 100%;
  position: absolute;
  top: 0;
  z-index: 0;
}

@media only screen and (max-width: 480px) {
  .team-member__inner {
    padding-top: 114.2857142857%;
  }
  .team-member__inner > img {
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    font-family: "object-fit: cover";
    position: absolute;
    top: 0;
    left: 0;
  }
  .team-member__inner > img {
    width: 100%;
  }
}
.testimonial-card {
  align-items: center;
  background-color: #fff;
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 50.4px 33.6px;
  text-align: center;
}
.testimonial-card__image {
  height: 70px;
  margin-bottom: 14px;
  position: relative;
  width: 70px;
}
.testimonial-card__image > img {
  -o-object-fit: contain;
     object-fit: contain;
  font-family: "object-fit: contain";
  border-radius: 1000px;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
}
.testimonial-card__title {
  font-size: 20px;
  color: #000;
  font-weight: 700;
  margin-bottom: 14px;
}

.testimonials-more .grid, .testimonials-more .less {
  display: none;
}
.testimonials-more.is-active .grid {
  display: block;
}
.testimonials-more.is-active .less {
  display: inline-block;
}
.testimonials-more.is-active .more {
  display: none;
}

.text-input {
  font-size: 14px;
  line-height: 20px;
  background-color: #fff;
  border: none;
  border-bottom: solid 2px transparent;
  box-shadow: 0 2px 6px 0 rgba(64, 64, 64, 0.2);
  font-weight: 400;
  min-height: 52px;
  padding: 12px 14px;
  transition: 0.15s ease;
}
.text-input:focus {
  border-color: #107f80;
  box-shadow: 0 2px 6px 0 rgba(64, 64, 64, 0.2);
}

.thumb--4x3 {
  padding-top: 75%;
}
.thumb--4x3 > img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover";
  position: absolute;
  top: 0;
  left: 0;
}

.thumb--16x9 {
  padding-top: 56.25%;
}
.thumb--16x9 > img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover";
  position: absolute;
  top: 0;
  left: 0;
}

.thumb--21x9 {
  padding-top: 42.8571428571%;
}
.thumb--21x9 > img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover";
  position: absolute;
  top: 0;
  left: 0;
}

.thumbnail-pair {
  padding-top: 60%;
  position: relative;
  width: 100%;
}
.thumbnail-pair > img {
  border-radius: 1000px;
  height: 100%;
  position: absolute;
  top: 0;
  width: 60%;
}
.thumbnail-pair > img:first-child {
  left: 0;
}
.thumbnail-pair > img:last-child {
  right: 0;
}

.tooltip {
  position: absolute;
  right: 56px;
  top: 56px;
  z-index: 999999;
}

.tooltip__icon {
  background: url("img/vector/tooltip-info.svg") no-repeat center center/18px 18px;
  display: block;
  font-style: normal;
  font-weight: 700;
  height: 24px;
  text-align: center;
  text-indent: -9999px;
  width: 24px;
}

.tooltip__inner {
  background-color: #fcbb68;
  border-radius: 3px;
  box-shadow: 0 2px 6px 0 rgba(64, 64, 64, 0.2);
  color: #fff;
  cursor: default;
  font-size: 14px;
  line-height: 20px;
  opacity: 0;
  padding: 23.3333333333px 56px 23.3333333333px 28px;
  position: absolute;
  right: 34px;
  text-align: left;
  top: 50%;
  transform: translateY(-50%);
  transition: opacity 0.15s ease 0s, visibility 0s linear 0.15s;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  visibility: hidden;
  width: 320px;
  z-index: 10;
}
.is-active > .tooltip__inner {
  opacity: 1;
  transition-delay: 0s;
  visibility: visible;
}
.tooltip__inner::after {
  border-bottom: 10px solid transparent;
  border-left: 10px solid #fcbb68;
  border-top: 10px solid transparent;
  content: "";
  height: 0;
  position: absolute;
  right: -10px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
}

.tooltip__close {
  background: #fff url("img/vector/tooltip-close.svg") no-repeat center center/8px 8px;
  border-radius: 50%;
  box-shadow: 0 2px 6px 0 rgba(64, 64, 64, 0.2);
  color: #107f80;
  height: 24px;
  position: absolute;
  right: -12px;
  text-indent: -9999px;
  top: -12px;
  width: 24px;
}

@media only screen and (max-width: 768px) {
  .tooltip {
    right: 28px;
    top: 28px;
  }

  .tooltip__inner {
    width: 250px;
  }
}
@media only screen and (max-width: 480px) {
  .tooltip__inner {
    font-size: 14px;
    line-height: 26px;
    padding: 18.6666666667px 56px 18.6666666667px 23.3333333333px;
    right: 34px;
    transform: translateY(-50%);
    width: 215px;
  }
}
.vr {
  background: none;
  display: block;
  min-height: 200px;
  position: relative;
}
.vr::after {
  background-color: rgba(0, 0, 0, 0.1);
  content: "";
  height: 100%;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
}

/*
|--------------------------------------------------------------------------
| Responsive
|--------------------------------------------------------------------------
*/
@media only screen and (max-width: 768px) {
  .vr {
    min-height: 0;
  }
  .vr::after {
    display: none;
  }
}
/*
|--------------------------------------------------------------------------
| Responsive
|--------------------------------------------------------------------------
*/
@media only screen and (max-width: 768px) {
  .well--wide {
    padding: 28px;
  }
}
/*
|--------------------------------------------------------------------------
| Tabs
|--------------------------------------------------------------------------
|
| Apply reasonable defaults to create tabbed content. The default styles
| apply the basic functionality required as well as some basic styling. To
| use the accordion you will need to include the accordion JS component.
|
*/
.tabs {
  position: relative;
}

.tabs__content {
  background-color: #fff;
  display: none;
  position: absolute;
  left: -10000px;
  padding: 28px;
  z-index: 10;
}
.is-active > .tabs__content {
  display: block;
  position: relative;
  left: 0;
}

.tabs__tab.is-active {
  position: relative;
}

.tabs__nav {
  align-items: stretch;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0;
  padding-left: 0;
}
.tabs__nav > li {
  flex-grow: 1;
  list-style: none;
  position: relative;
  text-align: center;
}
.tabs__nav > li a {
  box-sizing: border-box;
  display: block;
  font-weight: 500;
  height: 100%;
  margin: 0;
  padding: 14px;
  position: relative;
}
.tabs__nav > li.is-active a {
  background: #fcbb68;
  color: #fff;
}

.tabs__title {
  display: none;
  position: relative;
}
.tabs__title a {
  color: #404040;
  display: block;
  font-weight: 500;
  padding: 14px;
  position: relative;
}
.is-active > .tabs__title a {
  background-color: #fcbb68;
  color: #fff;
}

@media only screen and (max-width: 960px) {
  .tabs__nav {
    display: none;
  }

  .tabs__title {
    display: block;
  }
}
.article {
  margin: 0 auto;
  max-width: 768px;
}
.article > p, .article > h1, .article > h2, .article > h3, .article > h4, .article > h5, .article > h6, .article > figure, .article > blockquote {
  margin-bottom: 56px;
}
.article .article__heading {
  margin: 56px 0;
}

.article__author {
  border-radius: 50%;
  height: 90px;
  margin: 0 auto;
  margin-bottom: 28px;
  overflow: hidden;
  position: relative;
  width: 90px;
}
.article__author > img {
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover";
  pointer-events: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

.article-nav {
  display: flex;
  flex-direction: column;
}

.article-nav__heading {
  background-color: #edeff2;
  color: #404040;
  display: block;
  font-weight: 700;
  padding: 28px 80px 28px 28px;
  position: relative;
}
.article-nav__heading::after {
  background: url("img/vector/arrow-right-orange-long.svg") no-repeat center center;
  background-size: 100% auto;
  content: "";
  height: 13px;
  position: absolute;
  right: 28px;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.15s ease;
  width: 24px;
}
.article-nav__heading:focus, .article-nav__heading:hover {
  color: #404040;
}
.article-nav__heading:focus::after, .article-nav__heading:hover::after {
  right: 42px;
}

.article-nav__row {
  border-bottom: solid 2px #edeff2;
  display: block;
  padding: 28px;
  transition: all 0.15s ease;
}
.article-nav__row > span {
  color: #404040;
  display: block;
  font-style: italic;
  transition: all 0.15s ease;
}
.article-nav__row:focus, .article-nav__row:hover {
  color: #404040;
}
.article-nav__row:focus > span, .article-nav__row:hover > span {
  color: #404040;
}

.article-nav__toggle {
  display: none;
  margin-bottom: 0;
  position: relative;
  text-align: left;
  width: 100%;
  background-color: #edeff2;
  color: #404040;
  font-size: 18px;
  font-weight: 700;
  line-height: 32px;
  padding: 28px 72px 28px 28px;
}
.article-nav__toggle::after {
  background: url("img/vector/plus-orange.svg") no-repeat center center;
  background-size: 100% auto;
  content: "";
  height: 16px;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  right: 28px;
}
.article-nav__toggle:focus, .article-nav__toggle:hover {
  color: #404040;
}
.is-active .article-nav__toggle::after {
  background: #fcbb68;
  height: 2px;
}

/*
|--------------------------------------------------------------------------
| Responsive
|--------------------------------------------------------------------------
*/
@media only screen and (max-width: 1024px) {
  .article-nav__row {
    padding: 28px 0;
  }
}
@media only screen and (max-width: 768px) {
  .article-nav__heading {
    display: none;
  }

  .article-nav__toggle {
    display: block;
  }

  .article-nav__links {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);
  }
  .is-active .article-nav__links {
    max-height: 999px;
    transition: max-height 0.3s cubic-bezier(1, 0, 1, 0);
  }
}
.banner {
  background-color: #f2f2f2;
  margin-bottom: 28px;
  padding: 168px 0;
  position: relative;
}
.banner .container {
  position: relative;
  z-index: 1;
}
.banner .list--check > li, .banner .list--dark-check > li, .banner .list--white-check > li {
  margin-bottom: 24px;
}

.banner__heading {
  font-size: 50px;
  line-height: 52px;
  line-height: 55px;
  margin-bottom: 42px;
}

.banner__background {
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover";
  height: 100%;
  left: 0;
  min-width: 100%;
  pointer-events: none;
  position: absolute;
  top: 0;
  z-index: 0;
}

.banner--narrow {
  padding: 56px 0;
}

.banner--medium {
  padding: 90px 0;
}

.banner--wide {
  padding: 224px 0;
}
.banner--wide > .container {
  max-width: calc(100% - (28px * 8));
}

/*
|--------------------------------------------------------------------------
| Responsive
|--------------------------------------------------------------------------
*/
@media only screen and (max-width: 960px) {
  .banner,
.banner--wide {
    padding: 140px 0;
  }

  .banner--wide > .container {
    max-width: 1180px;
  }
}
@media only screen and (max-width: 768px) {
  .banner,
.banner--wide {
    padding: 112px 0;
  }

  .banner__heading {
    font-size: 36px;
    line-height: 39px;
  }
}
@media only screen and (max-width: 480px) {
  .banner,
.banner--wide {
    padding: 84px 0;
  }
}
.breadcrumbs {
  font-size: 14px;
  line-height: 20px;
  color: #737373;
  font-weight: 400;
  padding-top: 28px;
}
.breadcrumbs ul {
  list-style: none;
  margin-bottom: 0;
  margin-left: -40px;
  padding-left: 0;
}
.breadcrumbs ul::after {
  clear: both;
  content: "";
  display: table;
}
.breadcrumbs ul > li {
  float: left;
  padding-left: 40px;
  position: relative;
}
.breadcrumbs ul > li::before {
  background: url("img/vector/angle-right-orange.svg") no-repeat center center/7px 11px;
  content: "";
  height: 20px;
  left: 0;
  position: absolute;
  top: 0;
  width: 40px;
}
.breadcrumbs ul > li:first-child::before {
  display: none;
}
.breadcrumbs ul > li > a {
  color: #737373;
  font-weight: 400;
  text-decoration: none;
}
.breadcrumbs ul > li > a:hover, .breadcrumbs ul > li > a:focus {
  color: #fb991d;
}

.case-listing {
  color: #404040;
  display: block;
  margin: -28px 0;
  padding: 28px 56px;
  position: relative;
}
.case-listing:focus, .case-listing:hover {
  background-color: rgba(60, 121, 143, 0.01);
  color: #404040;
}
@media only screen and (max-width: 768px) {
  .case-listing {
    margin: 0 42px;
    padding-right: 0;
  }
}

.case-listing__status {
  position: absolute;
  top: 56px;
  right: 56px;
}
@media only screen and (max-width: 768px) {
  .case-listing__status {
    margin-bottom: 14px;
    position: static;
  }
}

.contact {
  margin-bottom: 56px;
}

.contact__phone {
  font-size: 18px;
  color: #404040;
  display: block;
  font-weight: 300;
  text-decoration: none;
  transition: all 0.15s ease;
  margin: 0 0 7px 0;
}
.contact__phone > span {
  font-size: 30px;
  line-height: 39px;
  display: block;
  font-weight: 700;
  margin: 0;
}

.contact__email {
  color: #404040;
  padding-bottom: 3.5px;
  text-decoration: none;
  transition: all 0.15s ease;
  white-space: nowrap;
  font-size: 22px;
  border-bottom: solid 1px transparent;
}
.contact__email:hover, .contact__email:focus {
  border-bottom: solid 1px #fcbb68;
}

/*
|--------------------------------------------------------------------------
| Responsive
|--------------------------------------------------------------------------
*/
@media only screen and (max-width: 768px) {
  .contact__email {
    font-size: 16px;
    line-height: 26px;
  }
}
@media only screen and (max-width: 480px) {
  .contact {
    text-align: center;
  }
}
.contact-form {
  background-color: #fcbb68;
  margin-bottom: 28px;
  padding: 56px;
}
.contact-form .form-item {
  margin-bottom: 21px;
}

.contact-form--light {
  background-color: #fff;
  border: solid 1px #e7eaee;
  box-shadow: 8px 8px 30px 0 rgba(0, 0, 0, 0.05);
}
.contact-form--light .text-input {
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  min-height: 52px;
  padding: 12px 14px;
  transition: border-color 0.15s ease;
  border-radius: 3px;
  border: solid 1px #fcbb68;
}
.contact-form--light .text-input:focus {
  border-color: #107f80;
}

/*
|--------------------------------------------------------------------------
| Responsive
|--------------------------------------------------------------------------
*/
@media only screen and (max-width: 768px) {
  .contact-form {
    padding: 56px 28px;
  }
}
.content-nav {
  background-color: #eaeaea;
  border-radius: 16px;
  display: flex;
  justify-content: space-between;
  list-style: none;
  margin: 0;
  padding: 28px 42px;
  transform: translateY(-50%);
}
.content-nav li {
  font-size: 16px;
  line-height: 16px;
}
.content-nav li:last-child {
  margin-right: 0;
}
.content-nav li a {
  color: #646462;
}
.content-nav li a:hover {
  color: #0b5873;
  font-weight: 700;
  text-decoration: underline;
}

@media only screen and (max-width: 768px) {
  .content-nav {
    padding: 18.6666666667px 28px;
    flex-direction: column;
  }
  .content-nav li {
    margin-right: 0;
    margin-bottom: 14px;
  }
  .content-nav li:last-child {
    margin-bottom: 0;
  }
}
.cta {
  align-items: center;
  background-color: #fcbb68;
  display: flex;
  flex-direction: column;
  padding: 28px;
  text-align: center;
}
.cta > .list {
  padding: 0 28px;
}

.cta__title {
  margin-bottom: 14px;
}

.cta__snippet {
  margin: 0;
}

.cta__contact {
  align-items: center;
  border-top: solid 1px rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: center;
  padding: 28px 0 0 0;
  text-align: center;
}

.cta__phone {
  font-size: 30px;
  line-height: 39px;
  color: #fff;
  display: block;
  font-weight: 700;
  text-align: left;
  text-decoration: none;
  transition: all 0.15s ease;
}
.cta__phone:focus, .cta__phone:hover {
  color: #107f80;
}
.cta__phone > span {
  font-size: 18px;
  font-weight: 400;
  margin-right: 14px;
}

.cta__splitter {
  border-bottom: solid 1px #404040;
  color: #404040;
  font-size: 14px;
  line-height: 20px;
  margin: 0 28px 0 28px;
  position: relative;
  text-transform: uppercase;
}

/*
|--------------------------------------------------------------------------
| Responsive
|--------------------------------------------------------------------------
*/
@media only screen and (max-width: 768px) {
  .cta__contact {
    flex-direction: column;
  }

  .cta__splitter {
    margin-bottom: 14px;
  }
}
.cta-banner {
  position: relative;
}
.cta-banner .js-scroll {
  z-index: 1;
}

.cta-banner__content {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin-left: 168px;
  position: relative;
  z-index: 1;
}

.cta-banner__inner {
  color: #fff;
  flex-basis: calc(50% - 56px);
  margin: 28px 56px 28px 0;
  padding: 28px;
  width: calc(50% - 56px);
}

.cta-banner__heading,
.cta-banner__snippet {
  color: #fff;
}

.cta-banner__snippet {
  font-weight: 400;
}

.cta-banner__background {
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover";
  height: 100%;
  left: 0;
  min-width: 100%;
  position: absolute;
  top: 0;
  z-index: 0;
}

/*
|--------------------------------------------------------------------------
| Responsive
|--------------------------------------------------------------------------
*/
@media screen and (max-width: 1500px) {
  .cta-banner__content {
    margin-left: 56px;
  }
}
@media screen and (max-width: 1280px) {
  .cta-banner__content {
    margin-left: 28px;
  }
}
@media screen and (max-width: 1220px) {
  .cta-banner__inner {
    padding-left: 0;
  }
}
@media only screen and (max-width: 768px) {
  .cta-banner {
    padding: 28px;
  }

  .cta-banner__content {
    display: block;
    margin: 0;
  }

  .cta-banner__inner {
    width: 100%;
  }
}
.cta-form {
  width: 100%;
}
.banner .cta-form {
  background-color: #fff;
  border-radius: 8px;
  padding: 42px;
}

@media only screen and (max-width: 768px) {
  .cta-form {
    margin: 0 auto;
    max-width: 400px;
  }
}
.enquiry-form {
  background-color: #5e92b3;
  flex-basis: 33.333%;
  padding: 56px;
  position: relative;
}
.enquiry-form .form-item {
  margin-bottom: 21px;
}

/*
|--------------------------------------------------------------------------
| Responsive
|--------------------------------------------------------------------------
*/
@media only screen and (max-width: 960px) {
  .enquiry-form {
    flex-basis: 50%;
  }
}
@media only screen and (max-width: 768px) {
  .enquiry-form {
    margin: 56px 0 28px 0;
  }

  .enquiry-form__thumbnail {
    left: auto;
    right: 46px;
    top: -62px;
  }
}
@media only screen and (max-width: 480px) {
  .enquiry-form {
    padding: 56px 28px;
  }

  .enquiry-form__thumbnail {
    left: calc(50% - 62px);
    right: auto;
  }
}
.file-list {
  list-style: none;
  padding-left: 0;
}
.file-list li {
  background: url("img/vector/document-grey-dark.svg") no-repeat center left;
  background-size: 20px auto;
  margin-bottom: 14px;
  padding-left: 56px;
}
.file-list li a {
  color: #404040;
}

.file-list__link {
  border-left: 1px solid #d9d9d9;
  display: inline-block;
  margin-left: 28px;
  padding-left: 28px;
}
@media only screen and (max-width: 768px) {
  .file-list__link {
    border-left: 0;
    display: block;
    margin-left: 0;
    padding-left: 0;
  }
}

.footer {
  background-color: #f7f7f5;
  padding: 70px 0 0 0;
}

.footer__crd {
  color: #0b5873;
  display: block;
  margin-bottom: 56px;
  width: 201px;
}
.footer__crd:hover, .footer__crd:focus {
  color: #0b5873;
}

.footer__crd__logo {
  display: block;
}
.footer__crd__logo > img {
  display: block;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  width: 100%;
}

.footer__crd__text {
  font-size: 16px;
  color: #000;
  display: block;
  font-weight: 600;
  margin-bottom: 14px;
  padding-bottom: 5px;
}

.footer__logo {
  display: block;
  width: 60px;
}
.footer__logo > img {
  display: block;
  pointer-events: none;
  width: 100%;
}

.footer__logo--mobile {
  display: none;
}

.footer__credit {
  padding-bottom: 28px;
  position: relative;
}
.footer__credit > p {
  font-size: 12px;
  color: #404040;
  font-weight: 700;
  margin-bottom: 0;
}
.footer__credit a {
  color: #404040;
  transition: all 0.15s ease;
}
.footer__credit a:focus, .footer__credit a:hover {
  color: #fcbb68;
}

.footer__links {
  max-width: 300px;
}
.footer__links ul {
  list-style: none;
  margin: -28px 0 0 0;
  padding: 0;
}
.footer__links ul li {
  border-bottom: 1px solid #000;
}
.footer__links ul li:last-child {
  border-bottom: none;
}
.footer__links ul li a {
  font-size: 20px;
  color: #000;
  display: block;
  font-weight: bold;
  padding: 28px 0;
  position: relative;
}
.footer__links ul li a::after {
  background-image: url("/style/img/vector/arrow-right-circle.svg");
  background-size: 28px 28px;
  border-radius: 1000px;
  box-shadow: 0px 6px 24px rgba(0, 0, 0, 0.1);
  content: "";
  display: none;
  height: 28px;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
}
.footer__links ul li a:hover::after {
  display: block;
}

/*
|--------------------------------------------------------------------------
| Responsive
|--------------------------------------------------------------------------
*/
@media only screen and (max-width: 960px) {
  .footer__links {
    max-width: none;
  }
  .footer__links ul {
    display: flex;
    width: 100%;
  }
  .footer__links ul li {
    border: none;
    margin-right: 28px;
  }
  .footer__links ul li a {
    font-size: 16px;
    padding-right: 42px;
  }
  .footer__links ul li a::after {
    background-size: 22px 22px;
    height: 22px;
    width: 22px;
  }
}
@media only screen and (max-width: 768px) {
  .footer__links ul {
    flex-direction: column;
  }
  .footer__links ul li a {
    padding: 14px 28px 14px 0;
  }
}
.footer-contact {
  margin-bottom: 56px;
  text-align: right;
}

.footer-contact__phone {
  font-size: 20px;
  color: #0b5873;
  display: block;
  font-weight: 400;
  text-decoration: none;
  transition: all 0.15s ease;
}
.footer-contact__phone > span {
  font-size: 30px;
  line-height: 39px;
  display: block;
  font-weight: 700;
}

.footer-contact__hours {
  border-bottom: solid 1px transparent;
  color: #5e92b3;
  padding-bottom: 3.5px;
  text-decoration: none;
  transition: all 0.15s ease;
  white-space: nowrap;
  font-size: 16px;
  line-height: 26px;
}
.footer-contact__hours:hover, .footer-contact__hours:focus {
  border-bottom: solid 1px #fcbb68;
}

.footer-contact__email {
  color: #404040;
  display: none;
  margin-top: 14px;
}

/*
|--------------------------------------------------------------------------
| Responsive
|--------------------------------------------------------------------------
*/
@media only screen and (max-width: 480px) {
  .footer-contact {
    text-align: center;
  }

  .footer-contact__email {
    display: block;
  }
}
.footer-copyright__nav > ul {
  --gap: 36px;
  list-style: none;
  margin-bottom: 28px;
  margin-left: calc(var(--gap) * -1);
  padding-left: 0;
}
.footer-copyright__nav > ul::after {
  clear: both;
  content: "";
  display: table;
}
.footer-copyright__nav > ul > li {
  float: left;
  padding-left: var(--gap);
  position: relative;
}
.footer-copyright__nav > ul > li:last-child::after {
  display: none;
}
.footer-copyright__nav > ul > li::after {
  border-right: 1px solid #000;
  content: "";
  height: 9px;
  position: absolute;
  right: -18px;
  top: 50%;
  transform: translateY(-50%);
  width: 0px;
}
.footer-copyright__nav > ul > li > a {
  font-size: 14px;
  color: #000;
  white-space: nowrap;
}
.footer-copyright__nav > ul > li > a:hover, .footer-copyright__nav > ul > li > a:focus {
  color: #5e92b3;
  text-decoration: underline;
}

.footer-copyright__snippet {
  font-size: 12px;
  margin-bottom: 14px;
}

/*
|——————————————————————————————————————————————————————————————————————————
| Responsive
|——————————————————————————————————————————————————————————————————————————
*/
@media only screen and (max-width: 960px) {
  .footer-copyright {
    width: 75%;
  }
}
@media only screen and (max-width: 768px) {
  .footer-copyright {
    width: 100%;
  }
}
@media only screen and (max-width: 480px) {
  .footer-copyright {
    margin-bottom: 28px;
    text-align: center;
  }

  .footer-copyright__snippet {
    display: none;
  }
}
.footer-nav {
  margin-bottom: 56px;
}

.footer-nav__title {
  font-size: 16px;
  color: #000;
  font-weight: 700;
  margin-bottom: 28px;
}

.footer-nav__links {
  list-style: none;
  margin-bottom: 0;
  padding-left: 0;
}
.footer-nav__links > li {
  display: block;
}
.footer-nav__links > li > a {
  color: #000;
  display: inline-block;
  font-weight: 400;
  margin-bottom: 14px;
}
.footer-nav__links > li > a:hover, .footer-nav__links > li > a:focus {
  color: #5e92b3;
  text-decoration: underline;
}

.footer-nav__toggle {
  border-bottom: solid 1px #d9d9d9;
  color: #0b5873;
  display: none;
  margin-bottom: 0;
  padding: 14px 0;
  position: relative;
  text-align: left;
  width: 100%;
  font-size: 18px;
  line-height: 32px;
}
.footer-nav__toggle::after {
  background-size: 100% auto;
  background: url("img/vector/plus-orange.svg") no-repeat center center;
  content: "";
  height: 16px;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
}
.is-active .footer-nav__toggle::after {
  background: #fcbb68;
  height: 2px;
}

/*
|--------------------------------------------------------------------------
| Responsive
|--------------------------------------------------------------------------
*/
@media only screen and (max-width: 480px) {
  .footer-nav {
    margin-bottom: 0;
  }

  .footer-nav__title {
    display: none;
  }

  .footer-nav__links {
    max-height: 0;
    overflow: hidden;
    padding: 14px 0 0 0;
    transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);
  }
  .is-active .footer-nav__links {
    max-height: 999px;
    transition: max-height 0.3s cubic-bezier(1, 0, 1, 0);
  }

  .footer-nav__toggle {
    display: block;
  }
}
.header {
  background-color: #0b5873;
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 200;
}

.header__inner {
  height: 84px;
  margin: 0 28px;
  padding-left: 190px;
  padding-right: 346px;
  position: relative;
  transition: height 0.15s ease;
}
.is-scrolled .header__inner {
  height: 60px;
}

.header__contact {
  color: #fff;
  cursor: default;
  position: absolute;
  right: 0;
  text-align: center;
  top: 50%;
  transform: translateY(-50%);
}
.header__contact a {
  color: #fff;
}
.header__contact a:hover, .header__contact a:focus {
  color: #fff;
  text-decoration: underline;
}

.header__contact__heading {
  font-weight: 700;
}
.header__contact__heading a {
  font-size: 18px;
}

.header__contact__subheading {
  font-size: 14px;
}

.header__contact__image {
  background-color: #3c798f;
  border-radius: 50%;
  height: 48px;
  left: 0;
  overflow: hidden;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
}
.header__contact__image > img {
  display: block;
  pointer-events: none;
  width: 100%;
}

.header__contact__inner {
  font-size: 16px;
  line-height: 20px;
  padding-left: 67px;
}
.header__contact__inner > span {
  display: block;
}

.header__mobile__menu {
  color: #fff;
  display: none;
  height: 60px;
  line-height: 60px;
  padding-left: 28px;
  padding-right: 62px;
  position: absolute;
  right: 60px;
  top: 0;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.header__mobile__menu .is-open {
  display: none;
}
.header__mobile__menu .is-closed {
  display: block;
}
.header__mobile__menu.is-active {
  background-color: #3c798f;
}
.header__mobile__menu.is-active .is-open {
  display: block;
}
.header__mobile__menu.is-active .is-closed {
  display: none;
}
.header__mobile__menu.is-active::after {
  background-image: url("img/vector/menu-close.svg");
  background-size: 15px 15px;
}
.header__mobile__menu::after {
  background-size: 20px 17px;
  background: url("img/vector/menu.svg") no-repeat center center;
  content: "";
  height: 17px;
  margin-right: 28px;
  margin-top: -9px;
  position: absolute;
  right: 0;
  top: 50%;
  width: 20px;
}
.header__mobile__menu:hover, .header__mobile__menu:focus {
  color: #fff;
}

.header__mobile__phone {
  background: url("img/vector/menu-phone.svg") no-repeat center center/20px 20px;
  border-left: 1px solid #3c798f;
  display: none;
  height: 60px;
  position: absolute;
  right: 0;
  text-indent: -9999px;
  top: 0;
  width: 60px;
  z-index: 210;
}

.header__logo {
  display: block;
  left: 0;
  margin-top: -23px;
  overflow: hidden;
  position: absolute;
  top: 50%;
  transition: width 0.15s ease;
  width: 190px;
  z-index: 210;
}
.header__logo > img {
  display: block;
  max-width: 190px;
  pointer-events: none;
  width: 190px;
}
.is-scrolled .header__logo {
  width: 58px;
}

@media only screen and (max-width: 1460px) {
  .header__contact {
    background-color: #0b5873;
    border-radius: 4px;
    margin-top: 10px;
    margin-right: 10px;
    opacity: 1;
    padding: 10px;
    top: 100%;
    right: -28px;
    transform: none;
    transition: opacity 0.15s ease 0s, visibility 0.15s linear 0s;
    visibility: visible;
  }
  .is-scrolled .header__contact {
    opacity: 0;
    transition: opacity 0.15s ease 0s, visibility 0.15s linear 0s;
    visibility: hidden;
  }

  .header__contact__image {
    left: 10px;
  }

  .header__inner {
    padding-right: 0;
  }
}
@media only screen and (max-width: 1200px) {
  .header__inner {
    padding-left: 58px;
  }

  .header__logo {
    width: 58px;
  }
}
@media only screen and (max-width: 960px) {
  .header__contact {
    display: none;
  }

  .header__inner {
    height: 60px;
    margin-left: 0;
    margin-right: 0;
  }

  .header__logo {
    margin-left: 28px;
  }

  .header__mobile__menu,
.header__mobile__phone {
    display: block;
  }
}
.lander-sidebar {
  bottom: 28px;
  position: absolute;
  top: -190px;
}
.lander-sidebar aside {
  position: sticky;
  top: 104px;
}
.lander-sidebar__top {
  align-items: center;
  background-color: #fff;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  margin-bottom: 28px;
  padding: 33.6px;
}
.lander-sidebar__images {
  width: 105px;
  margin-bottom: 14px;
}
.lander-sidebar__bottom {
  background-color: #fcbb68;
  border-radius: 8px;
  padding: 33.6px;
}

.main {
  flex-basis: auto;
  flex-grow: 1;
  flex-shrink: 0;
}

.modal {
  background-color: #fff;
  box-shadow: 0 0 30px #333333;
  margin: 28px auto;
  max-width: 800px;
  padding: 28px;
  position: relative;
  width: auto;
}

.modal__heading {
  border-bottom: 1px solid #cccccc;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 28px;
  margin-left: -28px;
  margin-right: -28px;
  margin-top: -28px;
  padding: 28px 84px 28px 28px;
}

.navigation {
  display: flex;
  font-size: 18px;
  height: 100%;
  justify-content: center;
  line-height: 110%;
}
.navigation > ul {
  display: flex;
  height: 100%;
  list-style: none;
  margin-bottom: 0;
  padding: 0 28px;
}
.navigation > ul > li {
  display: flex;
  height: 100%;
}
.navigation > ul > li > a {
  align-items: center;
  color: #fff;
  display: flex;
  height: 100%;
  padding: 0 16.8px;
  text-align: center;
  white-space: nowrap;
}
.navigation > ul > li:hover > a, .navigation > ul > li:focus > a {
  background-color: #fcbb68;
  color: #404040;
}
.navigation > ul > li.navigation__contact {
  display: none;
}
.navigation > ul > .navigation__highlight:hover > a, .navigation > ul > .navigation__highlight:focus > a {
  background-color: transparent;
}
.navigation > ul > .navigation__highlight:hover::before, .navigation > ul > .navigation__highlight:focus::before {
  background-color: #fcbb68;
}

.navigation__contact {
  color: #fff;
  font-size: 16px;
  line-height: 175%;
  padding: 42px 28px;
  text-align: center;
}
.navigation__contact a {
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  line-height: 175%;
}
.navigation__contact a:hover, .navigation__contact a:focus {
  text-decoration: underline;
}
.navigation__contact > span {
  display: block;
}

.navigation__highlight {
  margin-left: 14px;
  position: relative;
}
.navigation__highlight::before {
  background-color: #107f80;
  border-radius: 3px;
  content: "";
  height: 50px;
  left: 0;
  margin-top: -25px;
  position: absolute;
  top: 50%;
  width: 100%;
}
.navigation__highlight > a {
  position: relative;
  z-index: 10;
}
.navigation__highlight + li {
  margin-left: 14px;
}

/*
|--------------------------------------------------------------------------
| Responsive
|--------------------------------------------------------------------------
*/
@media only screen and (max-width: 1680px) {
  .navigation {
    font-size: 16px;
  }
}
@media only screen and (max-width: 1460px) {
  .navigation {
    justify-content: flex-end;
  }
  .navigation > ul {
    padding-right: 0;
  }
}
@media only screen and (max-width: 1024px) {
  .navigation {
    font-size: 14px;
  }
  .navigation > ul > li > a {
    padding: 0 14px;
  }
}
@media only screen and (max-width: 960px) {
  .navigation {
    display: block;
    font-size: 18px;
    height: 100vh;
    left: 0;
    margin: 0;
    opacity: 0;
    padding-top: 60px;
    position: absolute;
    right: 0;
    top: 0;
    transition: opacity 0.15s ease 0s, visibility 0s linear 0.15s;
    visibility: hidden;
  }
  .navigation.is-active {
    opacity: 1;
    transition-delay: 0s;
    visibility: visible;
  }
  .navigation > ul {
    -webkit-overflow-scrolling: touch;
    background-color: #3c798f;
    display: block;
    height: 100%;
    overflow-y: scroll;
    padding: 21px 0;
  }
  .navigation > ul > li {
    display: block;
    height: auto;
  }
  .navigation > ul > li > a {
    display: block;
    height: auto;
    padding: 21px 28px;
    text-align: left;
  }
  .navigation > ul > li.navigation__contact {
    display: block;
  }
  .navigation > ul > .navigation__highlight {
    margin: 0;
  }
  .navigation > ul > .navigation__highlight:hover > a, .navigation > ul > .navigation__highlight:focus > a {
    background-color: #fcbb68;
  }

  .navigation__highlight::before {
    display: none;
  }
  .navigation__highlight + li {
    margin-left: 0;
  }
}
.news-listing {
  border: 2px solid #edeff2;
  display: flex;
  flex-direction: column;
  margin-bottom: 28px;
  position: relative;
  text-decoration: none;
}
.news-listing:hover, .news-listing:focus {
  border: solid 2px #fcbb68;
}
.news-listing:hover .news-listing__content, .news-listing:focus .news-listing__content {
  background-color: #fcbb68;
}
.news-listing:hover .news-listing__arrow, .news-listing:focus .news-listing__arrow {
  background: url("img/vector/arrow-right-white.svg") no-repeat center center/15px 13px;
}
.news-listing:hover .news-listing__date,
.news-listing:hover .news-listing__filter,
.news-listing:hover .news-listing__title, .news-listing:focus .news-listing__date,
.news-listing:focus .news-listing__filter,
.news-listing:focus .news-listing__title {
  color: #fff;
}

.news-listing__content {
  flex-grow: 1;
  padding: 28px;
  transition: all 0.15s ease;
}

.news-listing__date {
  color: #404040;
  float: right;
}

.news-listing__filter {
  color: #404040;
  float: left;
  font-weight: 300;
}

.news-listing__image {
  margin: -2px -2px 0 -2px;
}

.news-listing__arrow {
  background: url("img/vector/arrow-right-orange.svg") no-repeat center center/15px 13px;
  bottom: 28px;
  height: 13px;
  position: absolute;
  right: 28px;
  width: 15px;
  background-size: 100% auto;
  transition: all 0.15s ease;
}

.news-listing__tags {
  font-size: 14px;
  line-height: 26px;
  font-weight: 400;
  margin-bottom: 14px;
  text-transform: uppercase;
}
.news-listing__tags::after {
  clear: both;
  content: "";
  display: table;
}

.news-listing__title {
  font-size: 24px;
  line-height: 26px;
  font-weight: 400;
  margin-bottom: 56px;
  color: #404040;
}

/*
|--------------------------------------------------------------------------
| Responsive
|--------------------------------------------------------------------------
*/
@media only screen and (max-width: 960px) {
  .news-listing__content {
    padding: 14px;
  }
}
@media only screen and (max-width: 768px) {
  .news-listing__link {
    font-size: 14px;
  }

  .news-listing__tags {
    font-size: 12px;
    line-height: 26px;
  }

  .news-listing__title {
    font-size: 20px;
    line-height: 26px;
  }
}
.page-header {
  align-items: center;
  display: flex;
  margin-bottom: 28px;
}

.page-header--border {
  border-bottom: 1px solid #d9d9d9;
  padding-bottom: 28px;
}

.page-header__title {
  font-size: 32px;
  line-height: 39px;
  align-items: center;
  display: flex;
  font-weight: 300;
  margin-bottom: 0;
}
.page-header__title .profile-image {
  flex-shrink: 0;
}

.page-header__right {
  margin-left: auto;
}

.page-header__edit {
  color: #404040;
  display: inline-block;
  min-height: 24px;
  padding-right: 21px;
  position: relative;
}
.page-header__edit > span {
  background-color: #fcbb68;
  border-radius: 50%;
  display: block;
  height: 12px;
  position: absolute;
  top: -4px;
  right: 0;
  width: 12px;
}

@media only screen and (max-width: 960px) {
  .page-header--account {
    flex-wrap: wrap;
  }
  .page-header--account .page-header__right {
    flex: 1 0 100%;
  }

  .page-header__title {
    font-size: 26px;
    line-height: 39px;
  }
}
@media only screen and (max-width: 768px) {
  .page-header {
    flex-wrap: wrap;
    margin-bottom: 56px;
  }

  .page-header__title {
    margin-bottom: 28px;
  }

  .page-header__right {
    flex: 1 0 100%;
  }
}
@media only screen and (max-width: 480px) {
  .page-header {
    display: block;
    text-align: center;
  }

  .page-header__title {
    display: block;
  }
  .page-header__title .profile-image {
    margin-right: auto;
    margin-left: auto;
  }
}
.pagination {
  font-size: 22px;
  color: #404040;
  font-weight: 500;
  margin-bottom: 28px;
}
.pagination::after {
  clear: both;
  content: "";
  display: table;
}
.pagination ul {
  letter-spacing: -0.31em;
  list-style: none;
  margin-bottom: 0;
  padding-left: 0;
  text-align: center;
}
.pagination ul > li {
  display: inline-block;
  letter-spacing: normal;
}
.pagination ul > li > a {
  border: 1px solid transparent;
  color: #404040;
  display: block;
  height: 44px;
  padding: 8px 0;
  text-decoration: none;
  width: 44px;
}
.pagination ul > li > a:hover, .pagination ul > li > a:focus {
  color: #fcbb68;
}
.pagination ul > li.is-active > a {
  border-color: #edeff2;
  box-shadow: 0 2px 6px 0 rgba(64, 64, 64, 0.2);
  color: #fcbb68;
}
.pagination ul > li.is-active > a:hover, .pagination ul > li.is-active > a:focus {
  color: #fcbb68;
}

.pagination__button {
  color: #404040;
  padding: 8px 0;
  position: relative;
  text-decoration: none;
}
.pagination__button:hover, .pagination__button:focus {
  color: #fcbb68;
}
.pagination__button.is-disabled {
  color: #d9d9d9;
}

.pagination__button--next {
  float: right;
  padding-right: 20px;
}
.pagination__button--next::before {
  background: url("img/vector/angle-right-charcoal.svg") no-repeat center center;
  background-size: 100% auto;
  content: "";
  height: 12px;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
}
.pagination__button--next:focus::before, .pagination__button--next:hover::before {
  background-image: url("img/vector/angle-right-orange.svg");
}
.pagination__button--next.is-disabled::before {
  background-image: url("img/vector/angle-right-charcoal.svg");
  opacity: 0.2;
}

.pagination__button--previous {
  float: left;
  padding-left: 20px;
}
.pagination__button--previous::before {
  background: url("img/vector/angle-left-charcoal.svg") no-repeat center center;
  background-size: 100% auto;
  content: "";
  height: 12px;
  left: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
}
.pagination__button--previous:focus::before, .pagination__button--previous:hover::before {
  background-image: url("img/vector/angle-left-orange.svg");
}
.pagination__button--previous.is-disabled::before {
  background-image: url("img/vector/angle-left-charcoal.svg");
  opacity: 0.2;
}

/*
|--------------------------------------------------------------------------
| Responsive
|--------------------------------------------------------------------------
*/
@media only screen and (max-width: 768px) {
  .pagination {
    font-size: 16px;
  }
  .pagination ul > li > a {
    height: 36px;
    padding: 4px 0;
    width: 36px;
  }
  .pagination__button--previous {
    display: none;
  }
  .pagination__button--next {
    display: none;
  }

  .pagination__button > span {
    display: none;
  }
}
.panels {
  margin: 0 auto;
  max-width: 960px;
}

.panel {
  background-color: #fff;
  box-shadow: 0 2px 12px 0 rgba(64, 64, 64, 0.2);
  margin-bottom: 28px;
  padding-bottom: 28px;
  padding: 56px;
  position: relative;
}
.panel::after {
  clear: both;
  content: "";
  display: table;
}
.panel h2 {
  font-size: 24px;
  line-height: 26px;
}
.panel > :last-child {
  margin-bottom: 0;
}

.panel__heading {
  border-bottom: 2px solid #f2f2f2;
  display: block;
  margin: -56px -56px 28px;
  padding: 56px;
}
.panel__heading > h2 {
  display: inline;
  margin: 0;
  position: relative;
}

.panel--error {
  border: 1px solid #801010;
  box-shadow: 0 2px 12px 0 rgba(128, 16, 16, 0.5);
}
.panel--error h2 {
  color: #801010;
}

.panel--transparent {
  background-color: transparent;
  box-shadow: none;
}
.panel--transparent .panel__heading {
  border-bottom-color: #e5e5e5;
}

@media only screen and (max-width: 768px) {
  .panel {
    padding: 28px 28px 0 28px;
  }
  .panel .panel__heading {
    margin: -28px;
    margin-bottom: 28px;
    padding: 28px;
    padding-right: 80px;
  }
}
.panel-list {
  list-style: none;
  margin-top: -28px;
  margin-right: -56px;
  margin-left: -56px;
  padding-left: 0;
}
@media only screen and (max-width: 768px) {
  .panel-list {
    margin-right: -28px;
    margin-left: -28px;
  }
}
.panel-list li {
  padding: 28px 0;
  position: relative;
}
.panel-list li:nth-of-type(2n) {
  background-color: #edeff2;
}
.panel-list li::after {
  background-color: #f2f2f2;
  content: "";
  height: 1px;
  position: absolute;
  right: 0;
  left: 0;
  bottom: 0;
}

.panel-list__inner {
  margin: 0 28px;
}

.panel-list--wide {
  margin-right: -112px;
  margin-left: -112px;
}
@media only screen and (max-width: 768px) {
  .panel-list--wide {
    margin-right: -28px;
    margin-left: -28px;
  }
}
.panel-list--wide .panel-list__inner {
  margin: 0 112px;
}
@media only screen and (max-width: 768px) {
  .panel-list--wide .panel-list__inner {
    margin: 0 28px;
  }
}

.panel-toggle {
  box-shadow: 0 2px 6px 0 rgba(64, 64, 64, 0.2);
  margin-bottom: 28px;
}

.panel-toggle__heading {
  font-size: 25px;
  line-height: 39px;
  align-items: center;
  background-color: #404040;
  border-radius: 3px;
  color: #fff;
  display: flex;
  font-weight: 700;
  justify-content: space-between;
  padding: 14px 56px 14px 42px;
  position: relative;
  text-align: left;
  width: 100%;
}
.panel-toggle__heading:hover, .panel-toggle__heading:focus {
  color: #fff;
}
.is-active > .panel-toggle__heading {
  background-color: #5e92b3;
  color: #fff;
}
.panel-toggle__heading::after {
  background-image: url("img/vector/panel-toggle-chevron.svg");
  background-size: 17px;
  content: "";
  height: 8px;
  position: absolute;
  top: 50%;
  right: 18.6666666667px;
  transform: translateY(-50%) rotate(-90deg);
  transition: transform 0.15s ease-in-out;
  width: 17px;
}
.is-active > .panel-toggle__heading::after {
  transform: translateY(-50%) rotate(0deg);
}
.panel-toggle__heading abbr {
  margin-right: auto;
}

.panel-toggle--borderless {
  box-shadow: none;
}
.panel-toggle--borderless .panel-toggle__heading {
  box-shadow: 0 2px 6px 0 rgba(64, 64, 64, 0.2);
}
.panel-toggle--borderless .panel-toggle__content {
  padding: 0;
}
.panel-toggle--borderless.is-active > .panel-toggle__content {
  padding: 42px 0 28px;
}

.panel-toggle__state {
  background: no-repeat center;
  flex: 0 0 auto;
  height: 20px;
  margin-left: auto;
  width: 20px;
}

.panel-toggle__state--new {
  background-color: #fcbb68;
  border-radius: 50%;
  content: "";
  font-size: 12px;
  height: 18px;
  line-height: 18px;
  position: absolute;
  top: -9px;
  right: -9px;
  text-align: center;
  width: 18px;
}

.panel-toggle__content {
  background-color: #fff;
  max-height: 0;
  overflow: hidden;
  padding: 0 56px;
  transition: max-height 0.4s cubic-bezier(0, 1, 0, 1), padding 0.4s ease-in-out;
}
.is-active > .panel-toggle__content {
  max-height: 9999px;
  padding: 42px 56px 28px;
  transition: max-height 0.4s cubic-bezier(1, 0, 1, 0), padding 0.4s ease-in-out;
}

@media only screen and (max-width: 768px) {
  .panel-toggle__heading {
    font-size: 20px;
    padding: 14px 56px 14px 28px;
  }

  .panel-toggle__content {
    padding: 0 28px;
  }
  .is-active > .panel-toggle__content {
    padding: 28px;
  }
}
@media only screen and (max-width: 480px) {
  .panel-toggle__heading {
    font-size: 18px;
  }
}
.section {
  padding: 56px 0 28px 0;
  position: relative;
}
.section .container {
  position: relative;
  z-index: 1;
}

.section__background {
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover";
  height: 100%;
  left: 0;
  min-width: 100%;
  pointer-events: none;
  position: absolute;
  top: 0;
  z-index: 0;
}

.section--wide {
  padding: 112px 0 56px 0;
}

.section--no-top {
  padding-top: 0;
}

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

/*
|--------------------------------------------------------------------------
| Responsive
|--------------------------------------------------------------------------
*/
@media only screen and (max-width: 960px) {
  .section--wide {
    padding: 112px 0 56px 0;
  }
}
@media only screen and (max-width: 768px) {
  .section--wide {
    padding: 84px 0 56px 0;
  }
}
@media only screen and (max-width: 480px) {
  .section--wide {
    padding: 56px 0;
  }
}
.share {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  flex: 0 1 auto;
  justify-content: center;
  list-style: none;
  margin-bottom: 14px;
  margin-left: -7px;
  margin-right: -7px;
  padding-left: 0;
}
.share > li {
  flex: 0 0 auto;
  margin-bottom: 14px;
  max-width: 100%;
  padding: 0 7px;
}

.share__link {
  display: block;
  height: 60px;
  position: relative;
  text-indent: -9999px;
  width: 60px;
}
.share__link::after {
  background: no-repeat center center;
  border-radius: 50%;
  border: 2px solid #fcbb68;
  content: "";
  display: block;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  transition: 0.15s ease;
  width: 100%;
}
.share__link:hover::after {
  transform: translateY(-5px);
}

.share__link--email::after {
  background-image: url("img/vector/social-email.svg");
  background-size: 30px 19px;
}

.share__link--facebook::after {
  background-image: url("img/vector/social-facebook.svg");
  background-size: 14px 26px;
}

.share__link--linkedin::after {
  background-image: url("img/vector/social-linkedin.svg");
  background-size: 20px 20px;
}

.share__link--print::after {
  background-image: url("img/vector/social-print.svg");
  background-size: 28px 24px;
}

.share__link--twitter::after {
  background-image: url("img/vector/social-twitter.svg");
  background-size: 25px 20px;
}

.signup {
  align-items: center;
  background-color: #fcbb68;
  background-image: url("img/right-angle-white.png");
  background-position: right bottom;
  background-repeat: no-repeat;
  background-size: contain;
  display: flex;
  justify-content: space-between;
  margin-bottom: 28px;
  padding: 56px;
}

.signup__heading {
  flex-basis: calc(25% - 20px);
  margin: 0;
}

.signup__content {
  align-items: center;
  display: flex;
  flex-basis: 75%;
  margin: -7px;
}
.signup__content .button {
  flex-basis: 25%;
  margin: 0 7px;
  min-width: 0;
}

.signup__inner {
  display: flex;
  flex-basis: 75%;
}
.signup__inner .form-item {
  flex-basis: 25%;
  flex-grow: 1;
  margin: 0 7px;
}
.signup__inner .form-item:last-of-type {
  flex-basis: 50%;
}

/*
|--------------------------------------------------------------------------
| Responsive
|--------------------------------------------------------------------------
*/
@media only screen and (max-width: 1024px) {
  .signup {
    display: block;
  }

  .signup__heading {
    margin: 0 0 28px 0;
  }
}
@media only screen and (max-width: 960px) {
  .signup__content {
    flex-wrap: wrap;
  }
  .signup__content .button {
    flex-basis: 100%;
  }

  .signup__inner {
    flex-basis: 100%;
  }
  .signup__inner .form-item {
    margin-bottom: 14px;
  }
}
@media only screen and (max-width: 768px) {
  .signup {
    background-size: 160px;
    padding: 28px;
  }
}
@media only screen and (max-width: 480px) {
  .signup__inner {
    display: block;
  }
}
.static-button {
  background-color: #5e92b3;
  border-radius: 3px;
  box-shadow: 0 2px 4px 2px rgba(237, 239, 242, 0.7);
  color: #fff;
  display: inline-block;
  font-size: 22px;
  font-weight: 600;
  padding: 23.3333333333px 56px;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .static-button {
    display: block;
    min-height: 55px;
    padding: 18.6666666667px 28px;
  }
}

.status {
  background-color: #5e92b3;
  border-radius: 14px;
  color: #fff;
  display: inline-block;
  font-size: 14px;
  height: 28px;
  line-height: 16px;
  padding: 7px 15.5555555556px;
  position: relative;
  width: 110px;
}
.status::after {
  background-position: center;
  background-repeat: no-repeat;
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 30px;
}

.status--tick::after {
  background-image: url("img/vector/tick-white.svg");
  background-size: 12px auto;
}

.status--exclamation::after {
  background-image: url("img/vector/exclamation-white.svg");
  background-size: 4px auto;
}

.status--progress::after {
  background-image: url("img/vector/progress-white.svg");
  background-size: 17px auto;
}

.status--circle-cross::after {
  background-image: url("img/vector/circle-cross-white.svg");
  background-size: 17px auto;
}

.tabs--process {
  overflow: hidden;
}
.tabs--process .tabs__content {
  background-color: #f2f2f2;
  padding: 56px 0;
}
.tabs--process .tabs__content::before {
  background-color: #f2f2f2;
  content: "";
  height: 100%;
  left: -1000px;
  position: absolute;
  top: 0;
  width: 1000px;
  z-index: 1;
}
.tabs--process .tabs__content::after {
  background-color: #f2f2f2;
  content: "";
  height: 100%;
  position: absolute;
  right: -1000px;
  top: 0;
  width: 1000px;
  z-index: 1;
}
.tabs--process .tabs__content > .split {
  padding: 56px 0;
  justify-content: space-around;
}
.tabs--process .tabs__content > .split .split__left,
.tabs--process .tabs__content > .split .split__right {
  max-width: 340px;
}
.tabs--process .tabs__content > .split .split__left > .list,
.tabs--process .tabs__content > .split .split__right > .list {
  padding: 0 32px;
}
.tabs--process .tabs__nav {
  flex-wrap: nowrap;
  margin-bottom: 70px;
}
.tabs--process .tabs__nav > li {
  margin-right: 14px;
  width: 20%;
}
.tabs--process .tabs__nav > li:last-of-type {
  margin-right: 0;
}
.tabs--process .tabs__nav > li a {
  border-radius: 3px;
  border: 3px solid #6fa6d2;
  color: #000;
  font-size: 18px;
  line-height: 32px;
  padding: 30px 14px;
  position: relative;
}
.tabs--process .tabs__nav > li a .number-indicator {
  color: #6fa6d2;
  margin: 0 auto 14px auto;
}
.tabs--process .tabs__nav > li a .number-indicator circle {
  stroke: #6fa6d2;
}
.tabs--process .tabs__nav > li.is-active a {
  background-color: #107f80;
  border-color: #107f80;
  color: #fff;
}
.tabs--process .tabs__nav > li.is-active a::after {
  background-image: url("img/vector/angle-bottom-white.svg");
  background-size: 16px 8px;
  content: "";
  height: 8px;
  left: 50%;
  position: absolute;
  top: calc(100% + 7px);
  transform: translateX(-50%);
  width: 16px;
}
.tabs--process .tabs__nav > li.is-active a::before {
  background-color: #107f80;
  border-radius: 1000px;
  content: "";
  height: 60px;
  left: 50%;
  position: absolute;
  top: 100%;
  transform: translate(-50%, -50%);
  width: 60px;
}
.tabs--process .tabs__nav > li.is-active a .number-indicator {
  color: #fff;
}
.tabs--process .tabs__nav > li.is-active a .number-indicator circle {
  stroke: #fff;
}

/*
|--------------------------------------------------------------------------
| Responsive
|--------------------------------------------------------------------------
*/
@media only screen and (max-width: 960px) {
  .tabs--process .tabs__tab > .tabs__title {
    position: relative;
  }
  .tabs--process .tabs__tab > .tabs__title a {
    color: #000;
    padding: 28px 28px 28px 56px;
  }
  .tabs--process .tabs__tab > .tabs__title .number-indicator {
    color: #000;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
  }
  .tabs--process .tabs__tab > .tabs__title .number-indicator circle {
    stroke: #000;
  }
  .tabs--process .tabs__tab.is-active > .tabs__title a {
    background-color: transparent;
    color: #6fa6d2;
  }
  .tabs--process .tabs__tab.is-active > .tabs__title .number-indicator {
    color: #6fa6d2;
  }
  .tabs--process .tabs__tab.is-active > .tabs__title .number-indicator circle {
    stroke: #6fa6d2;
  }
}
@media only screen and (max-width: 768px) {
  .tabs--process .tabs__content > .split {
    padding: 28px 0 0 0;
  }
  .tabs--process .tabs__content > .split .split__left,
.tabs--process .tabs__content > .split .split__right {
    max-width: none;
  }
  .tabs--process .tabs__content > .split .split__left > .list,
.tabs--process .tabs__content > .split .split__right > .list {
    padding: 0;
  }
}
.upload {
  margin: 0 auto;
  position: relative;
  text-align: center;
  width: 180px;
  max-width: 100%;
}
.upload input {
  height: 0.1px;
  opacity: 0;
  overflow: hidden;
  position: absolute;
  width: 0.1px;
  z-index: -1;
}

.upload__button {
  background-color: #d9d9d9;
  border-radius: 3px;
  display: block;
  font-size: 16px;
  margin-bottom: 7px;
  min-width: 180px;
  padding: 14px 56px 14px 28px;
  position: relative;
}
.upload__button::after {
  background-image: url("img/vector/upload.svg");
  background-size: 16px auto;
  content: "";
  height: 16px;
  margin-top: -8px;
  position: absolute;
  right: 28px;
  top: 50%;
  width: 16px;
}

.upload__button--uploaded,
.upload__button--uploading {
  background-color: #107f80;
  border: 1px solid #107f80;
  color: #fff;
  white-space: nowrap;
}

.upload__button--uploading::after {
  background-image: url("img/vector/upload-arrow-white.svg");
}

.upload__button--uploaded::after {
  background-image: url("img/vector/tick-white.svg");
}

.upload__button--error {
  color: #801010;
}

.upload__error {
  color: #801010;
  display: none;
  font-size: 14px;
}
.upload--error .upload__error {
  display: block;
}

.upload__form {
  display: block;
}
.upload--uploaded .upload__form {
  display: none;
}

.upload__overlay {
  display: none;
  overflow: hidden;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.upload--uploading .upload__overlay {
  display: block;
}

.upload__uploaded {
  display: none;
}
.upload--uploaded .upload__uploaded {
  display: block;
}

@media only screen and (max-width: 480px) {
  .upload__button {
    min-width: 0;
  }
}
.wrapper {
  background-color: #fff;
  display: flex;
  flex-direction: column;
  margin-top: 84px;
  min-height: calc(100vh - 84px);
}

@media only screen and (max-width: 960px) {
  .wrapper {
    margin-top: 60px;
    min-height: 0;
  }
}
/*
|--------------------------------------------------------------------------
| Text alignment
|--------------------------------------------------------------------------
|
| Classes to override text-align or vertical-align. Responsive variations
| are available.
|
*/
.align-bottom {
  vertical-align: bottom;
}

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

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

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

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

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

@media only screen and (max-width: 1236px) {
  .xxl-align-bottom {
    vertical-align: bottom;
  }

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

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

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

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

  .xxl-align-top {
    vertical-align: top;
  }
}
@media only screen and (max-width: 1024px) {
  .xl-align-bottom {
    vertical-align: bottom;
  }

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

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

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

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

  .xl-align-top {
    vertical-align: top;
  }
}
@media only screen and (max-width: 960px) {
  .l-align-bottom {
    vertical-align: bottom;
  }

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

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

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

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

  .l-align-top {
    vertical-align: top;
  }
}
@media only screen and (max-width: 768px) {
  .m-align-bottom {
    vertical-align: bottom;
  }

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

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

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

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

  .m-align-top {
    vertical-align: top;
  }
}
@media only screen and (max-width: 480px) {
  .s-align-bottom {
    vertical-align: bottom;
  }

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

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

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

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

  .s-align-top {
    vertical-align: top;
  }
}
/*
|--------------------------------------------------------------------------
| Background color
|--------------------------------------------------------------------------
|
| Classes to override an elements background color. Colours can be
| added/removed from the $color map defined in _config.
|
*/
.background-black {
  background-color: #000;
}

.background-blue-light {
  background-color: #6fa6d2;
}

.background-blue {
  background-color: #5e92b3;
}

.background-charcoal {
  background-color: #404040;
}

.background-dark-grey {
  background-color: #646462;
}

.background-ghost {
  background-color: #edeff2;
}

.background-green {
  background-color: #107f80;
}

.background-light-grey {
  background-color: #d9d9d9;
}

.background-lighter-grey {
  background-color: #f2f2f2;
}

.background-orange {
  background-color: #fcbb68;
}

.background-red {
  background-color: #801010;
}

.background-teal-light {
  background-color: #3c798f;
}

.background-teal {
  background-color: #0b5873;
}

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

/*
|--------------------------------------------------------------------------
| Color
|--------------------------------------------------------------------------
|
| Classes to override an elements color. Colours can be
| added/removed from the $color map defined in _config.
|
*/
.black {
  color: #000;
}

.blue-light {
  color: #6fa6d2;
}

.blue {
  color: #5e92b3;
}

.charcoal {
  color: #404040;
}

.dark-grey {
  color: #646462;
}

.ghost {
  color: #edeff2;
}

.green {
  color: #107f80;
}

.light-grey {
  color: #d9d9d9;
}

.lighter-grey {
  color: #f2f2f2;
}

.orange {
  color: #fcbb68;
}

.red {
  color: #801010;
}

.teal-light {
  color: #3c798f;
}

.teal {
  color: #0b5873;
}

.white {
  color: #fff;
}

/*
|--------------------------------------------------------------------------
| Display
|--------------------------------------------------------------------------
|
| Classes to toggle display. Responsive variations are available to show or
| hide elements at certain breakpoints.
|
*/
.block {
  display: block;
}

.inline {
  display: inline;
}

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

.xxl-hide {
  display: none;
}

.xxl-show {
  display: none;
}

@media only screen and (max-width: 1236px) {
  .xxl-block {
    display: block;
  }

  .xxl-hide {
    display: none;
  }

  .xxl-show {
    display: block;
  }

  td.xxl-show,
th.xxl-show {
    display: table-cell;
  }
}
.xl-show {
  display: none;
}

@media only screen and (max-width: 1024px) {
  .xl-block {
    display: block;
  }

  .xl-hide {
    display: none;
  }

  .xl-show {
    display: block;
  }

  td.xl-show,
th.xl-show {
    display: table-cell;
  }
}
.l-show {
  display: none;
}

@media only screen and (max-width: 960px) {
  .l-block {
    display: block;
  }

  .l-hide {
    display: none;
  }

  .l-show {
    display: block;
  }

  td.l-show,
th.l-show {
    display: table-cell;
  }
}
.m-show {
  display: none;
}

@media only screen and (max-width: 768px) {
  .m-block {
    display: block;
  }

  .m-hide {
    display: none;
  }

  .m-show {
    display: block;
  }

  td.m-show,
th.m-show {
    display: table-cell;
  }
}
.s-show {
  display: none;
}

@media only screen and (max-width: 480px) {
  .s-block {
    display: block;
  }

  .s-hide {
    display: none;
  }

  .s-show {
    display: block;
  }

  td.s-show,
th.s-show {
    display: table-cell;
  }
}
/*
|--------------------------------------------------------------------------
| Floats and clearfixes
|--------------------------------------------------------------------------
|
| Classes to override float or apply a clearfix.
|
*/
.clearfix::after {
  clear: both;
  content: "";
  display: table;
}

.float-left {
  float: left;
}

.float-none {
  float: none;
}

.float-right {
  float: right;
}

/*
|--------------------------------------------------------------------------
| Margins
|--------------------------------------------------------------------------
|
| Classes to override margin. Responsive variations are available using the
| breakpoint prefixes.
|
*/
/**
 * For a given prefix produce the following classes for each direction:
 * .margin-[{direction}
 * .narrow-margin-{direction}
 * .no-margin-{direction}
 * .wide-margin-{direction}
 */
.margin-top {
  margin-top: 28px;
}

.narrow-margin-top {
  margin-top: 14px;
}

.no-margin-top {
  margin-top: 0;
}

.wide-margin-top {
  margin-top: 56px;
}

.margin-bottom {
  margin-bottom: 28px;
}

.narrow-margin-bottom {
  margin-bottom: 14px;
}

.no-margin-bottom {
  margin-bottom: 0;
}

.wide-margin-bottom {
  margin-bottom: 56px;
}

.margin-right {
  margin-right: 28px;
}

.narrow-margin-right {
  margin-right: 14px;
}

.no-margin-right {
  margin-right: 0;
}

.wide-margin-right {
  margin-right: 56px;
}

.margin-left {
  margin-left: 28px;
}

.narrow-margin-left {
  margin-left: 14px;
}

.no-margin-left {
  margin-left: 0;
}

.wide-margin-left {
  margin-left: 56px;
}

@media only screen and (max-width: 1236px) {
  .xxl-margin-top {
    margin-top: 28px;
  }

  .xxl-narrow-margin-top {
    margin-top: 14px;
  }

  .xxl-no-margin-top {
    margin-top: 0;
  }

  .xxl-wide-margin-top {
    margin-top: 56px;
  }

  .xxl-margin-bottom {
    margin-bottom: 28px;
  }

  .xxl-narrow-margin-bottom {
    margin-bottom: 14px;
  }

  .xxl-no-margin-bottom {
    margin-bottom: 0;
  }

  .xxl-wide-margin-bottom {
    margin-bottom: 56px;
  }

  .xxl-margin-right {
    margin-right: 28px;
  }

  .xxl-narrow-margin-right {
    margin-right: 14px;
  }

  .xxl-no-margin-right {
    margin-right: 0;
  }

  .xxl-wide-margin-right {
    margin-right: 56px;
  }

  .xxl-margin-left {
    margin-left: 28px;
  }

  .xxl-narrow-margin-left {
    margin-left: 14px;
  }

  .xxl-no-margin-left {
    margin-left: 0;
  }

  .xxl-wide-margin-left {
    margin-left: 56px;
  }
}
@media only screen and (max-width: 1024px) {
  .xl-margin-top {
    margin-top: 28px;
  }

  .xl-narrow-margin-top {
    margin-top: 14px;
  }

  .xl-no-margin-top {
    margin-top: 0;
  }

  .xl-wide-margin-top {
    margin-top: 56px;
  }

  .xl-margin-bottom {
    margin-bottom: 28px;
  }

  .xl-narrow-margin-bottom {
    margin-bottom: 14px;
  }

  .xl-no-margin-bottom {
    margin-bottom: 0;
  }

  .xl-wide-margin-bottom {
    margin-bottom: 56px;
  }

  .xl-margin-right {
    margin-right: 28px;
  }

  .xl-narrow-margin-right {
    margin-right: 14px;
  }

  .xl-no-margin-right {
    margin-right: 0;
  }

  .xl-wide-margin-right {
    margin-right: 56px;
  }

  .xl-margin-left {
    margin-left: 28px;
  }

  .xl-narrow-margin-left {
    margin-left: 14px;
  }

  .xl-no-margin-left {
    margin-left: 0;
  }

  .xl-wide-margin-left {
    margin-left: 56px;
  }
}
@media only screen and (max-width: 960px) {
  .l-margin-top {
    margin-top: 28px;
  }

  .l-narrow-margin-top {
    margin-top: 14px;
  }

  .l-no-margin-top {
    margin-top: 0;
  }

  .l-wide-margin-top {
    margin-top: 56px;
  }

  .l-margin-bottom {
    margin-bottom: 28px;
  }

  .l-narrow-margin-bottom {
    margin-bottom: 14px;
  }

  .l-no-margin-bottom {
    margin-bottom: 0;
  }

  .l-wide-margin-bottom {
    margin-bottom: 56px;
  }

  .l-margin-right {
    margin-right: 28px;
  }

  .l-narrow-margin-right {
    margin-right: 14px;
  }

  .l-no-margin-right {
    margin-right: 0;
  }

  .l-wide-margin-right {
    margin-right: 56px;
  }

  .l-margin-left {
    margin-left: 28px;
  }

  .l-narrow-margin-left {
    margin-left: 14px;
  }

  .l-no-margin-left {
    margin-left: 0;
  }

  .l-wide-margin-left {
    margin-left: 56px;
  }
}
@media only screen and (max-width: 768px) {
  .m-margin-top {
    margin-top: 28px;
  }

  .m-narrow-margin-top {
    margin-top: 14px;
  }

  .m-no-margin-top {
    margin-top: 0;
  }

  .m-wide-margin-top {
    margin-top: 56px;
  }

  .m-margin-bottom {
    margin-bottom: 28px;
  }

  .m-narrow-margin-bottom {
    margin-bottom: 14px;
  }

  .m-no-margin-bottom {
    margin-bottom: 0;
  }

  .m-wide-margin-bottom {
    margin-bottom: 56px;
  }

  .m-margin-right {
    margin-right: 28px;
  }

  .m-narrow-margin-right {
    margin-right: 14px;
  }

  .m-no-margin-right {
    margin-right: 0;
  }

  .m-wide-margin-right {
    margin-right: 56px;
  }

  .m-margin-left {
    margin-left: 28px;
  }

  .m-narrow-margin-left {
    margin-left: 14px;
  }

  .m-no-margin-left {
    margin-left: 0;
  }

  .m-wide-margin-left {
    margin-left: 56px;
  }
}
@media only screen and (max-width: 480px) {
  .s-margin-top {
    margin-top: 28px;
  }

  .s-narrow-margin-top {
    margin-top: 14px;
  }

  .s-no-margin-top {
    margin-top: 0;
  }

  .s-wide-margin-top {
    margin-top: 56px;
  }

  .s-margin-bottom {
    margin-bottom: 28px;
  }

  .s-narrow-margin-bottom {
    margin-bottom: 14px;
  }

  .s-no-margin-bottom {
    margin-bottom: 0;
  }

  .s-wide-margin-bottom {
    margin-bottom: 56px;
  }

  .s-margin-right {
    margin-right: 28px;
  }

  .s-narrow-margin-right {
    margin-right: 14px;
  }

  .s-no-margin-right {
    margin-right: 0;
  }

  .s-wide-margin-right {
    margin-right: 56px;
  }

  .s-margin-left {
    margin-left: 28px;
  }

  .s-narrow-margin-left {
    margin-left: 14px;
  }

  .s-no-margin-left {
    margin-left: 0;
  }

  .s-wide-margin-left {
    margin-left: 56px;
  }
}
/*
|--------------------------------------------------------------------------
| Column order
|--------------------------------------------------------------------------
|
| Classes to reorder grid columns. Responsive variations are available
| using the breakpoint prefixes.
|
*/
.xxl-first {
  order: -1;
}

.xxl-last {
  order: 1;
}

@media only screen and (max-width: 1236px) {
  .xxl-first {
    order: -1;
  }

  .xxl-last {
    order: 1;
  }
}
@media only screen and (max-width: 1024px) {
  .xl-first {
    order: -1;
  }

  .xl-last {
    order: 1;
  }
}
@media only screen and (max-width: 960px) {
  .l-first {
    order: -1;
  }

  .l-last {
    order: 1;
  }
}
@media only screen and (max-width: 768px) {
  .m-first {
    order: -1;
  }

  .m-last {
    order: 1;
  }
}
@media only screen and (max-width: 480px) {
  .s-first {
    order: -1;
  }

  .s-last {
    order: 1;
  }
}
/*
|--------------------------------------------------------------------------
| Screen reader only
|--------------------------------------------------------------------------
|
| Show element only when using a screen reader
|
*/
.sr-only {
  border: none;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

/*
|--------------------------------------------------------------------------
| To edge
|--------------------------------------------------------------------------
|
| Classes to pull element out to the edge of a container. Responsive
| variations are available using the breakpoint prefixes.
|
*/
.to-edge {
  margin-right: -28px;
  margin-left: -28px;
}

@media only screen and (max-width: 1236px) {
  .xxl-to-edge {
    margin-right: -28px;
    margin-left: -28px;
  }
}
@media only screen and (max-width: 1024px) {
  .xl-to-edge {
    margin-right: -28px;
    margin-left: -28px;
  }
}
@media only screen and (max-width: 960px) {
  .l-to-edge {
    margin-right: -28px;
    margin-left: -28px;
  }
}
@media only screen and (max-width: 768px) {
  .m-to-edge {
    margin-right: -28px;
    margin-left: -28px;
  }
}
@media only screen and (max-width: 480px) {
  .s-to-edge {
    margin-right: -28px;
    margin-left: -28px;
  }
}
/*
|--------------------------------------------------------------------------
| Typography
|--------------------------------------------------------------------------
|
| Classes to override font size, style and weight.
|
*/
/* Size */
.large {
  font-size: 18px;
  line-height: 32px;
}

.small {
  font-size: 14px;
  line-height: 20px;
}

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

.normal {
  font-style: normal;
}

/* Weight */
.bold {
  font-weight: 700;
}

.regular {
  font-weight: 400;
}

.light {
  font-weight: 300;
}

/*
|--------------------------------------------------------------------------
| Padding
|--------------------------------------------------------------------------
*/
.padding-top {
  padding-top: 28px;
}

.narrow-padding-top {
  padding-top: 14px;
}

.no-padding-top {
  padding-top: 0;
}

.wide-padding-top {
  padding-top: 56px;
}

.padding-bottom {
  padding-bottom: 28px;
}

.narrow-padding-bottom {
  padding-bottom: 14px;
}

.no-padding-bottom {
  padding-bottom: 0;
}

.wide-padding-bottom {
  padding-bottom: 56px;
}

.padding-right {
  padding-right: 28px;
}

.narrow-padding-right {
  padding-right: 14px;
}

.no-padding-right {
  padding-right: 0;
}

.wide-padding-right {
  padding-right: 56px;
}

.padding-left {
  padding-left: 28px;
}

.narrow-padding-left {
  padding-left: 14px;
}

.no-padding-left {
  padding-left: 0;
}

.wide-padding-left {
  padding-left: 56px;
}

@media only screen and (max-width: 1236px) {
  .xxl-padding-top {
    padding-top: 28px;
  }

  .xxl-narrow-padding-top {
    padding-top: 14px;
  }

  .xxl-no-padding-top {
    padding-top: 0;
  }

  .xxl-wide-padding-top {
    padding-top: 56px;
  }

  .xxl-padding-bottom {
    padding-bottom: 28px;
  }

  .xxl-narrow-padding-bottom {
    padding-bottom: 14px;
  }

  .xxl-no-padding-bottom {
    padding-bottom: 0;
  }

  .xxl-wide-padding-bottom {
    padding-bottom: 56px;
  }

  .xxl-padding-right {
    padding-right: 28px;
  }

  .xxl-narrow-padding-right {
    padding-right: 14px;
  }

  .xxl-no-padding-right {
    padding-right: 0;
  }

  .xxl-wide-padding-right {
    padding-right: 56px;
  }

  .xxl-padding-left {
    padding-left: 28px;
  }

  .xxl-narrow-padding-left {
    padding-left: 14px;
  }

  .xxl-no-padding-left {
    padding-left: 0;
  }

  .xxl-wide-padding-left {
    padding-left: 56px;
  }
}
@media only screen and (max-width: 1024px) {
  .xl-padding-top {
    padding-top: 28px;
  }

  .xl-narrow-padding-top {
    padding-top: 14px;
  }

  .xl-no-padding-top {
    padding-top: 0;
  }

  .xl-wide-padding-top {
    padding-top: 56px;
  }

  .xl-padding-bottom {
    padding-bottom: 28px;
  }

  .xl-narrow-padding-bottom {
    padding-bottom: 14px;
  }

  .xl-no-padding-bottom {
    padding-bottom: 0;
  }

  .xl-wide-padding-bottom {
    padding-bottom: 56px;
  }

  .xl-padding-right {
    padding-right: 28px;
  }

  .xl-narrow-padding-right {
    padding-right: 14px;
  }

  .xl-no-padding-right {
    padding-right: 0;
  }

  .xl-wide-padding-right {
    padding-right: 56px;
  }

  .xl-padding-left {
    padding-left: 28px;
  }

  .xl-narrow-padding-left {
    padding-left: 14px;
  }

  .xl-no-padding-left {
    padding-left: 0;
  }

  .xl-wide-padding-left {
    padding-left: 56px;
  }
}
@media only screen and (max-width: 960px) {
  .l-padding-top {
    padding-top: 28px;
  }

  .l-narrow-padding-top {
    padding-top: 14px;
  }

  .l-no-padding-top {
    padding-top: 0;
  }

  .l-wide-padding-top {
    padding-top: 56px;
  }

  .l-padding-bottom {
    padding-bottom: 28px;
  }

  .l-narrow-padding-bottom {
    padding-bottom: 14px;
  }

  .l-no-padding-bottom {
    padding-bottom: 0;
  }

  .l-wide-padding-bottom {
    padding-bottom: 56px;
  }

  .l-padding-right {
    padding-right: 28px;
  }

  .l-narrow-padding-right {
    padding-right: 14px;
  }

  .l-no-padding-right {
    padding-right: 0;
  }

  .l-wide-padding-right {
    padding-right: 56px;
  }

  .l-padding-left {
    padding-left: 28px;
  }

  .l-narrow-padding-left {
    padding-left: 14px;
  }

  .l-no-padding-left {
    padding-left: 0;
  }

  .l-wide-padding-left {
    padding-left: 56px;
  }
}
@media only screen and (max-width: 768px) {
  .m-padding-top {
    padding-top: 28px;
  }

  .m-narrow-padding-top {
    padding-top: 14px;
  }

  .m-no-padding-top {
    padding-top: 0;
  }

  .m-wide-padding-top {
    padding-top: 56px;
  }

  .m-padding-bottom {
    padding-bottom: 28px;
  }

  .m-narrow-padding-bottom {
    padding-bottom: 14px;
  }

  .m-no-padding-bottom {
    padding-bottom: 0;
  }

  .m-wide-padding-bottom {
    padding-bottom: 56px;
  }

  .m-padding-right {
    padding-right: 28px;
  }

  .m-narrow-padding-right {
    padding-right: 14px;
  }

  .m-no-padding-right {
    padding-right: 0;
  }

  .m-wide-padding-right {
    padding-right: 56px;
  }

  .m-padding-left {
    padding-left: 28px;
  }

  .m-narrow-padding-left {
    padding-left: 14px;
  }

  .m-no-padding-left {
    padding-left: 0;
  }

  .m-wide-padding-left {
    padding-left: 56px;
  }
}
@media only screen and (max-width: 480px) {
  .s-padding-top {
    padding-top: 28px;
  }

  .s-narrow-padding-top {
    padding-top: 14px;
  }

  .s-no-padding-top {
    padding-top: 0;
  }

  .s-wide-padding-top {
    padding-top: 56px;
  }

  .s-padding-bottom {
    padding-bottom: 28px;
  }

  .s-narrow-padding-bottom {
    padding-bottom: 14px;
  }

  .s-no-padding-bottom {
    padding-bottom: 0;
  }

  .s-wide-padding-bottom {
    padding-bottom: 56px;
  }

  .s-padding-right {
    padding-right: 28px;
  }

  .s-narrow-padding-right {
    padding-right: 14px;
  }

  .s-no-padding-right {
    padding-right: 0;
  }

  .s-wide-padding-right {
    padding-right: 56px;
  }

  .s-padding-left {
    padding-left: 28px;
  }

  .s-narrow-padding-left {
    padding-left: 14px;
  }

  .s-no-padding-left {
    padding-left: 0;
  }

  .s-wide-padding-left {
    padding-left: 56px;
  }
}
.no-padding {
  padding: 0;
}

@media only screen and (max-width: 1024px) {
  .xl-no-padding {
    padding: 0;
  }
}

@media only screen and (max-width: 960px) {
  .l-no-padding {
    padding: 0;
  }
}

@media only screen and (max-width: 768px) {
  .m-no-padding {
    padding: 0;
  }
}

@media only screen and (max-width: 768px) {
  .s-no-padding {
    padding: 0;
  }
}