@charset "UTF-8";
/**
 * Style file @
 *
 * This file is compiled into style.css
 */
/* ---------- Import variables ---------- */
/* Layout */
/**
 * Jeet grid settings.
 */
/**
 * Breakpoints - Breakpoint slicer
 * https://github.com/lolmaus/breakpoint-slicer
 */
/* Colors */
/* Greys */
/* Elements */
/* Borders */
/* Links */
/* Font stuff */
/**
 * magic numbers
 */
/* ---------- Import grid system ---------- */
/*  Syntax Quick Reference
  --------------------------
  column($ratios: 1, $offset: 0, $cycle: 0, $uncycle: 0, $gutter: $jeet-gutter)
  span($ratio: 1, $offset: 0)
  shift($ratios: 0, $col_or_span: column, $gutter: $jeet-gutter)
  unshift()
  edit()
  center($max_width: 1410px, $pad: 0)
  stack($pad: 0, $align: false)
  unstack()
  align($direction: both)
  cf()
*/
/**
 * List functions courtesy of the wonderful folks at Team Sass.
 * Check out their awesome grid: Singularity.
 */
/**
 * Get  percentage from a given ratio.
 * @param {number} [$ratio=1] - The column ratio of the element.
 * @returns {number} - The percentage value.
 */
/**
 * Work out the column widths based on the ratio and gutter sizes.
 * @param {number} [$ratios=1] - The column ratio of the element.
 * @param {number} [$gutter=$jeet-gutter] - The gutter for the column.
 * @returns {list} $width $gutter - A list containing the with and gutter for the element.
 */
/**
 * Get the set layout direction for the project.
 * @returns {string} $direction - The layout direction.
 */
/**
 * Replace a specified list value with a new value (uses built in set-nth() if available)
 * @param {list} $list - The list of values you want to alter.
 * @param {number} $index - The index of the list item you want to replace.
 * @param {*} $value - The value you want to replace $index with.
 * @returns {list} $list - The list with the value replaced or removed.
 * @warn if an invalid index is supplied.
 */
/**
 * Reverse a list (progressively enhanced for Sass 3.3)
 * @param {list} $list - The list of values you want to reverse.
 * @returns {list} $result - The reversed list.
 */
/**
 * Get the opposite direction to a given value.
 * @param {string} $dir - The direction you want the opposite of.
 * @returns {string} - The opposite direction to $dir.
 * @warn if an incorrect string is provided.
 */
/**
 * Style an element as a column with a gutter.
 * @param {number} [$ratios=1] - A width relative to its container as a fraction.
 * @param {number} [$offset=0] - A offset specified as a fraction (see $ratios).
 * @param {number} [$cycle=0] - Easily create an nth column grid where $cycle equals the number of columns.
 * @param {number} [$uncycle=0] - Undo a previous cycle value to allow for a new one.
 * @param {number} [$gutter=$jeet-gutter] - Specify the gutter width as a percentage of the containers width.
 */
/**
 * An alias for the column mixin.
 * @param [$args...] - All arguments get passed through to column().
 */
/**
 * Get the width of a column and nothing else.
 * @param {number} [$ratios=1] - A width relative to its container as a fraction.
 * @param {number} [$gutter=$jeet-gutter] - Specify the gutter width as a percentage of the containers width.
 */
/**
 * Get the gutter size of a column and nothing else.
 * @param {number} [ratios=1] - A width relative to its container as a fraction.
 * @param {number} [gutter=jeet.gutter] - Specify the gutter width as a percentage of the containers width.
 */
/**
 * An alias for the column-width function.
 * @param [$args...] - All arguments get passed through to column().
 */
/**
 * An alias for the column-gutter function.
 * @param [$args...] - All arguments get passed through to column().
 */
/**
 * Style an element as a column without any gutters for a seamless row.
 * @param {number} [$ratios=1] - A width relative to its container as a fraction.
 * @param {number} [$offset=0] - A offset specified as a fraction (see $ratios).
 * @param {number} [cycle=0] - Easily create an nth column grid where cycle equals the number of columns.
 * @param {number} [uncycle=0] - Undo a previous cycle value to allow for a new one.
 */
/**
 * Reorder columns without altering the HTML.
 * @param {number} [$ratios=0] - Specify how far along you want the element to move.
 * @param {string} [$col-or-span=column] - Specify whether the element has a gutter or not.
 * @param {number} [$gutter=$jeet-gutter] - Specify the gutter width as a percentage of the containers width.
 */
/**
 * Reset an element that has had shift() applied to it.
 */
/**
 * View the grid and its layers for easy debugging.
 * @param {string} [$color=black] - The background tint applied.
 * @param {boolean} [$important=false] - Whether to apply the style as !important.
 */
/**
 *  Alias for edit().
 */
/**
 * Horizontally center an element.
 * @param {number} [$max-width=1410px] - The max width the element can be.
 * @param {number} [$pad=0] - Specify the element's left and right padding.
 */
/**
 * Uncenter an element.
 */
/**
 * Stack an element so that nothing is either side of it.
 * @param {number} [$pad=0] - Specify the element's left and right padding.
 * @param {boolean/string} [$align=false] - Specify the text align for the element.
 */
/**
 * Unstack an element.
 */
/**
 * Center an element on either or both axes.
 * @requires A parent container with relative positioning.
 * @param {string} [$direction=both] - Specify which axes to center the element on.
 */
/**
 * Apply a clearfix to an element.
 */
/* ---------- Import base ---------- */
/*  Better box model */
*,
*:after,
*:before {
  box-sizing: border-box;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
nav,
section,
summary {
  display: block;
}

audio,
canvas,
video {
  display: inline-block;
}

audio:not([controls]) {
  display: none;
  height: 0;
}

[hidden], template {
  display: none;
}

html {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

html,
button,
input,
select,
textarea {
  font-family: "museosans", Helvetica, Arial, sans-serif;
}

body {
  margin: 0;
}

a {
  background: transparent;
}

a:focus {
  outline: thin dotted;
}

a:hover, a:active {
  outline: 0;
}

abbr[title] {
  border-bottom: 1px dotted;
}

b,
strong {
  font-weight: bold;
}

dfn {
  font-style: italic;
}

mark {
  background: #ff0;
  color: #000;
}

code,
kbd,
pre,
samp {
  font-family: monospace, serif;
  font-size: 20;
}

pre {
  white-space: pre;
  white-space: pre-wrap;
  word-wrap: break-word;
}

q {
  quotes: "\201C" "\201D" "\2018" "\2019";
}

q:before,
q:after {
  content: '';
  content: none;
}

small {
  font-size: 80%;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

/* Base responsive images */
img {
  height: auto;
  max-width: 100%;
  border: 0;
}

svg:not(:root) {
  overflow: hidden;
}

figure {
  margin: 0;
}

fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

legend {
  border: 0;
  padding: 0;
  white-space: normal;
}

button,
input,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  margin: 0;
  vertical-align: baseline;
}

button,
input {
  line-height: normal;
}

button,
select {
  text-transform: none;
}

button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  cursor: pointer;
}

button[disabled],
input[disabled] {
  cursor: default;
}

input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  padding: 0;
}

input[type="search"] {
  -webkit-appearance: textfield;
}

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

button::-moz-focus-inner, input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

textarea {
  overflow: auto;
  vertical-align: top;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/**
 * Mixins
 *
 * Snippets of reusable CSS to develop faster and keep code readable
 */
/**
 * Extendables
 *
 * Collect all of your extendable classes, ids and silent extendables.
 */
.clearfix {
  *zoom: 1;
}

.clearfix:before, .clearfix:after {
  content: '';
  display: table;
}

.clearfix:after {
  clear: both;
}

.autoanchors ul {
  margin: 0;
  padding: 0;
}

.autoanchors ul li {
  margin: 0;
  padding: 0;
  list-style: none;
}

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

.text-pink {
  color: #cd6583;
}

.text-green {
  color: #279d4b;
}

.text-blue {
  color: #1a729c;
}

.text-orange {
  color: #f7921e;
}

.text-small {
  font-size: 80%;
}

.text-large {
  font-size: 125%;
}

/**
 * Typography
 */
/* Generated by Font Squirrel (http://www.fontsquirrel.com) on November 7, 2015 */
@font-face {
  font-family: 'museosans';
  src: url("../fonts/museosans_500-webfont.eot");
  src: url("../fonts/museosans_500-webfont.eot?#iefix") format("embedded-opentype"), url("../fonts/museosans_500-webfont.woff2") format("woff2"), url("../fonts/museosans_500-webfont.woff") format("woff"), url("../fonts/museosans_500-webfont.ttf") format("truetype"), url("../fonts/museosans_500-webfont.svg#museo_sans500") format("svg");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'museosans';
  src: url("../fonts/museosans_500_italic-webfont.eot");
  src: url("../fonts/museosans_500_italic-webfont.eot?#iefix") format("embedded-opentype"), url("../fonts/museosans_500_italic-webfont.woff2") format("woff2"), url("../fonts/museosans_500_italic-webfont.woff") format("woff"), url("../fonts/museosans_500_italic-webfont.ttf") format("truetype"), url("../fonts/museosans_500_italic-webfont.svg#museo_sans500_italic") format("svg");
  font-weight: normal;
  font-style: italic;
}

@font-face {
  font-family: 'museosans';
  src: url("../fonts/museosans_700-webfont.eot");
  src: url("../fonts/museosans_700-webfont.eot?#iefix") format("embedded-opentype"), url("../fonts/museosans_700-webfont.woff2") format("woff2"), url("../fonts/museosans_700-webfont.woff") format("woff"), url("../fonts/museosans_700-webfont.ttf") format("truetype"), url("../fonts/museosans_700-webfont.svg#museo_sans700") format("svg");
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: 'icomoon';
  src: url("../fonts/icomoon.eot?yjtilk");
  src: url("../fonts/icomoon.eot?yjtilk#iefix") format("embedded-opentype"), url("../fonts/icomoon.ttf?yjtilk") format("truetype"), url("../fonts/icomoon.woff?yjtilk") format("woff"), url("../fonts/icomoon.svg?yjtilk#icomoon") format("svg");
  font-weight: normal;
  font-style: normal;
}

.icon-pen-angled:before {
  content: "\e907";
}

.icon-phone:before {
  content: "\f095";
}

html {
  font-size: 100%;
  -webkit-text-size-adjust: 100%;
  /* 2 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

html,
button,
input,
select,
textarea {
  font-family: "museosans", Helvetica, Arial, sans-serif;
}

body {
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 1.5;
}

@media (max-width: 768px) {
  body {
    font-size: 16px;
    font-size: 1rem;
  }
}

h1 {
  line-height: 1.1;
  color: #5f6c6a;
  margin: .67em 0;
}

@media (max-width: 768px) {
  h1 {
    font-size: 24px;
    font-size: 1.5rem;
  }
}

@media (min-width: 769px) {
  h1 {
    font-size: 38px;
    font-size: 2.375rem;
  }
}

h2 {
  line-height: 1.1;
  color: #5f6c6a;
  margin: .83em 0;
}

@media (max-width: 768px) {
  h2 {
    font-size: 32px;
    font-size: 2rem;
  }
}

@media (min-width: 769px) {
  h2 {
    font-size: 40px;
    font-size: 2.5rem;
  }
}

h3 {
  line-height: 1.3;
  color: #1a729c;
  margin: 1em 0;
}

@media (max-width: 768px) {
  h3 {
    font-size: 24px;
    font-size: 1.5rem;
  }
}

@media (min-width: 769px) {
  h3 {
    font-size: 32px;
    font-size: 2rem;
  }
}

h4 {
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 1.1;
  color: #5f6c6a;
  margin: 1.33em 0;
}

h5 {
  font-size: 18px;
  font-size: 1.125rem;
  color: #5f6c6a;
  margin: 1.67em 0;
}

h6 {
  font-size: 12px;
  font-size: 0.75rem;
  color: #5f6c6a;
  margin: 2.33em 0;
}

abbr[title] {
  border-bottom: 1px dotted;
}

b, strong {
  font-weight: 700;
}

dfn {
  font-style: italic;
}

hr {
  box-sizing: content-box;
  height: 0;
  margin: 2.5em 0;
}

mark {
  background: #ff0;
  color: #000;
}

p, pre {
  margin: 1.5em 0;
}

code, kbd, pre, samp {
  font-family: monospace,serif;
  font-family: 'courier new',monospace;
  font-size: 20px;
  font-size: 1.25rem;
}

pre {
  white-space: pre;
  white-space: pre-wrap;
  word-wrap: break-word;
}

q {
  quotes: none;
}

q:before, q:after {
  content: '';
  content: none;
}

small {
  font-size: 18px;
  font-size: 1.125rem;
}

large {
  font-size: 22px;
  font-size: 1.375rem;
}

sub, sup {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -.5em;
}

sub {
  bottom: -.25em;
}

dl, ol, ul {
  margin: 1.5em 0;
}

dl dl, dl menu, dl ul, ol dl, ol menu, ol ul, ul dl, ul menu, ul ul {
  margin: 0;
}

dd {
  margin: 0 0 0 30px;
}

ul {
  padding: 0 0 0 30px;
  list-style: disc;
}

ul.rteindent1 {
  padding: 0;
}

ol {
  padding: 0 0 0 30px;
  list-style: decimal;
}

ol.rteindent1 {
  padding: 0;
}

ol ol {
  margin: 0;
  list-style: lower-alpha;
}

nav ul, nav ol {
  list-style: none;
  list-style-image: none;
}

img {
  border: 0;
  -ms-interpolation-mode: bicubic;
}

svg:not(:root) {
  overflow: hidden;
}

figure {
  margin: 0;
}

/* ---------- Components ---------- */
.autoanchors {
  background-color: #fdf9f4;
  margin: 0 -500%;
}

@media (max-width: 1200px) {
  .autoanchors {
    padding: 2em 500%;
  }
}

@media (min-width: 1025px) {
  .autoanchors {
    padding: 3em 500%;
  }
}

.autoanchors ul {
  line-height: 1;
  margin-left: 20px;
  max-width: 860px;
}

@media (min-width: 769px) {
  .autoanchors ul {
    margin: 0 auto;
  }
}

.autoanchors ul li {
  margin-bottom: 1em;
}

.autoanchors a {
  display: inline-block;
  position: relative;
}

@media (min-width: 769px) {
  .autoanchors a {
    font-size: 24px;
    font-size: 1.5rem;
  }
}

.autoanchors a:after {
  content: '';
  position: absolute;
  left: -30px;
  top: .14em;
  width: 18px;
  height: 18px;
  background: url(../img/arrow.svg) no-repeat;
  background-size: 18px 18px;
  transition: all .2s ease-in-out;
}

.autoanchors a:hover {
  color: #f7921e;
}

.autoanchors a:hover:after {
  left: -25px;
}

blockquote {
  margin: 2.5em 0;
  border-left: 4px solid #279d4b;
  padding: 0 2.5em;
  font-style: italic;
}

/*
 * Buttons
 */
.button {
  transition: all 0.3s;
  display: inline-block;
  padding: 10px 15px;
  border: 1px solid #f7921e;
  border-radius: 5px;
  background-color: #ffffff;
  color: #279d4b;
  position: relative;
  transition: all 0.2s;
  text-transform: uppercase;
}

.button:before {
  transition: all 0.2s;
  content: '';
  position: absolute;
  top: 2px;
  right: 2px;
  bottom: 2px;
  left: 2px;
  border: 2px solid #f7921e;
  border-radius: 5px;
}

.button:hover,
input[type=submit]:hover,
.button:focus {
  color: #1a729c;
  text-decoration: none;
}

.button:hover:before,
input[type=submit]:hover:before,
.button:focus:before {
  top: -1px;
  right: -1px;
  bottom: -1px;
  left: -1px;
}

.button-arrow {
  display: inline-block;
  text-transform: uppercase;
  position: relative;
}

.button-arrow:after {
  content: '';
  position: absolute;
  right: -22px;
  top: .3em;
  width: 18px;
  height: 18px;
  background: url(../img/arrow.svg) no-repeat;
  background-size: 18px 18px;
  transition: all 0.2s ease-in-out;
}

.button-arrow:hover:after {
  right: -27px;
}

.breadcrumb {
  font-size: 80%;
  margin: 1.5em 0;
}

/*
 * caption.js styles
 */
/* Main */
.caption {
  line-height: 0;
}

.caption figcaption {
  display: block;
  line-height: 1.2;
  font-size: 90%;
  padding: 1em 0;
}

/*
 * Forms, webforms
 */
input[type=text],
input[type=password],
input[type=email],
input[type=url],
input[type=date],
input[type=month],
input[type=time],
input[type=datetime],
input[type=datetime-local],
input[type=week],
input[type=number],
input[type=search],
input[type=tel],
input[type=color],
.form-text,
select,
textarea {
  padding: .5em .6em;
  display: inline-block;
  border: 1px solid #ccc;
  border-radius: 5px;
  color: #5f6c6a;
  font-size: 20;
  width: 100%;
  max-width: 500px;
  outline: none;
}

input[type=text]:focus,
input[type=password]:focus,
input[type=email]:focus,
input[type=url]:focus,
input[type=date]:focus,
input[type=month]:focus,
input[type=time]:focus,
input[type=datetime]:focus,
input[type=datetime-local]:focus,
input[type=week]:focus,
input[type=number]:focus,
input[type=search]:focus,
input[type=tel]:focus,
input[type=color]:focus,
.form-text:focus,
select:focus,
textarea:focus {
  border-color: #777;
}

fieldset {
  margin-bottom: 1.5em;
  padding: 0;
  border: 0;
}

fieldset fieldset {
  margin-bottom: 0;
}

form fieldset:last-of-type {
  margin-bottom: 0;
}

.fieldset-description {
  margin-bottom: 1.5em;
}

.grippie {
  max-width: 500px;
}

/*  legend... wait for it... dary! */
legend {
  padding: 0;
  font-size: 22px;
  font-size: 1.375rem;
  font-weight: 600;
  border-bottom: 1px solid #dfdfdf;
  display: block;
  width: 100%;
  margin-bottom: 1.5em;
}

label {
  display: block;
  margin-bottom: 0.5em;
}

/*  Placeholders. Keep as seperate selectors or it won't work  */
.placeholder {
  color: #919191;
  opacity: 0.5 !important;
}

::-webkit-input-placeholder {
  color: #919191;
  opacity: 0.5 !important;
}

:-moz-placeholder {
  /* Firefox 18- */
  color: #919191;
  opacity: 0.5 !important;
}

::-moz-placeholder {
  /* Firefox 19+ */
  color: #919191;
  opacity: 0.5 !important;
}

:-ms-input-placeholder {
  color: #919191;
  opacity: 0.5 !important;
}

/*  Drupal classes */
.form-item {
  margin-bottom: 1.5em;
}

input[type="submit"], .form-submit {
  background-color: #f7921e;
  border: 0;
  padding: 0.5em .75em;
  color: #ffffff;
  font-weight: 700;
  border-radius: 5px;
  cursor: pointer;
}

input[type="submit"]:hover, .form-submit:hover {
  background-color: #279d4b;
  color: #fff;
}

.views-reset-button input[type="submit"], .views-reset-button .form-submit {
  background-color: #777;
}

.views-reset-button input[type="submit"]:hover, .views-reset-button input[type="submit"]:focus, .views-reset-button .form-submit:hover, .views-reset-button .form-submit:focus {
  color: #fff;
  background-color: #279d4b;
}

.form-managed-file .form-submit {
  background-color: #777;
}

.form-managed-file .form-submit:hover {
  background-color: #279d4b;
}

.description {
  font-size: 18px;
  font-size: 1.125rem;
  color: #adb7b5;
  margin: 0.75em 0;
}

.form-type-checkbox {
  margin-bottom: 0;
}

.form-type-checkbox label {
  font-weight: 400;
}

.form-type-radio {
  margin-bottom: 0;
}

.form-radios label,
label.option {
  display: inline;
}

.form-managed-file .form-file {
  display: inline;
  width: auto;
}

.form-type-date select {
  width: auto;
}

/*
  WEBFORM
*/
.webform-client-form .form,
.webform-client-form .form-item {
  margin-bottom: 1.5em;
}

.webform-client-form .form label,
.webform-client-form .form-item label {
  margin-bottom: 1.5em;
}

.webform-client-form .form-item {
  position: relative;
}

.webform-client-form .form-item > label {
  font-weight: bold;
}

.webform-client-form .form-item .label-inline {
  display: inline;
}

.webform-client-form .form-item textarea {
  box-shadow: none;
  border: 1px solid #dfdfdf;
  padding: 10px;
  border-radius: 0;
}

.webform-client-form .form-item input[readonly="readonly"] {
  background-color: #fcfcfc;
  border-color: #dfdfdf;
}

.webform-client-form .webform-component-checkboxes input,
.webform-client-form .webform-component-radios input {
  padding-top: 2px;
}

.webform-client-form .webform-component-checkboxes.form-item .form-item,
.webform-client-form .webform-component-radios.form-item .form-item {
  margin-bottom: 0;
}

.webform-client-form .webform-component-checkboxes.form-item .form-item label,
.webform-client-form .webform-component-radios.form-item .form-item label {
  font-weight: normal;
  margin-bottom: 0;
}

.webform-client-form .webform-component-checkboxes.form-item .form-item .form-type-checkbox,
.webform-client-form .webform-component-radios.form-item .form-item .form-type-checkbox {
  margin: 0;
  padding: 10px 0 10px 5px;
}

.webform-client-form .form-item-clear {
  width: auto;
  border: 0;
  padding: 0;
  font-weight: bold;
}

.webform-client-form .webform-component-date .form-select,
.webform-client-form .webform-component-time .form-select {
  width: auto;
}

.webform-client-form .webform-component-textarea .grippie {
  display: none;
}

.page-user {
  background: #fff;
  padding: 0 20px;
}

#login-top img {
  max-width: 70%;
  margin: 0 auto;
  display: block;
}

#auth_box {
  font-family: "museosans", Helvetica, Arial, sans-serif;
  max-width: 340px;
  margin: 3em auto 0;
}

#auth_box .form-submit {
  width: 100%;
  float: none;
  padding: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

#auth_box input[type="text"], #auth_box input[type="password"] {
  width: 100%;
  padding: 12px;
  background: #f2f2f2;
}

#top_part {
  margin-top: 2em;
}

#login-middle {
  border: 1px solid #dfdfdf;
  border-radius: 3px;
  box-shadow: 0 0 25px #f2f2f2;
  padding: 1em;
  margin-bottom: 2em;
}

#login-middle h2 {
  font-size: 1.5em;
  margin-top: 0;
}

#login-bottom {
  text-align: center;
}

.login-footer {
  margin-top: 4em;
  text-align: center;
}

.page-maintenance {
  padding: 50px 20px;
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.page-maintenance h1:before {
  content: "";
  display: block;
  width: 150px;
  height: 150px;
  margin: 0 auto 1em;
  background: url("../img/admin/info.png");
  background: url("../img/admin/info.svg"), none;
  background-size: 150px 150px;
}

/*
 * Pagination
 */
.item-list {
  overflow: auto;
}

.item-list .pager {
  padding: 0;
  text-align: left;
  overflow: auto;
}

.item-list .pager li {
  float: left;
  list-style: none;
  padding: 0;
}

.item-list .pager a {
  color: #5f6c6a;
  background: #fff;
  border-top: 1px solid #dfdfdf;
  border-left: 1px solid #dfdfdf;
  border-bottom: 1px solid #dfdfdf;
  display: inline-block;
  padding: 5px 14px;
}

.item-list .pager a:hover {
  background: #279d4b;
  border-color: #279d4b;
  color: #fff;
  text-decoration: none;
}

.item-list .pager a:active {
  background: #999999;
}

.item-list .pager .pager-ellipsis {
  background: #fff;
  border-top: 1px solid #dfdfdf;
  border-left: 1px solid #dfdfdf;
  border-bottom: 1px solid #dfdfdf;
  display: inline-block;
  padding: 5px 12px;
  /*  2 px less */
}

.item-list .pager .last {
  border-right: 1px solid #dfdfdf;
}

.item-list .pager .pager-current {
  background: #777;
  border-top: 1px solid #dfdfdf;
  border-left: 1px solid #dfdfdf;
  border-bottom: 1px solid #dfdfdf;
  color: #fff;
  padding: 6px 15px;
  margin-top: -1px;
}

/**
 * Prett four coloured rainbow
 */
.rainbow {
  height: 6px;
  position: relative;
  z-index: 2;
}

.rainbow span {
  *zoom: 1;
  float: left;
  clear: none;
  text-align: inherit;
  width: 25%;
  margin-left: 0%;
  margin-right: 0%;
  height: 8px;
}

.rainbow span:before, .rainbow span:after {
  content: '';
  display: table;
}

.rainbow span:after {
  clear: both;
}

.rainbow span:nth-child(1) {
  background-color: #1a729c;
}

.rainbow span:nth-child(2) {
  background-color: #279d4b;
}

.rainbow span:nth-child(3) {
  background-color: #f7921e;
}

.rainbow span:nth-child(4) {
  background-color: #cd6583;
}

ul.resp-tabs-list {
  margin: 0;
  padding: 0;
}

.resp-tabs-list li {
  display: inline-block;
  list-style: none;
  cursor: pointer;
  float: left;
  text-align: right;
  line-height: 1.2;
  font-size: 24px;
  font-size: 1.5rem;
  color: #bbb;
  font-weight: 700;
}

.resp-tabs-container {
  padding: 0;
  background-color: #fff;
  clear: left;
}

h2.resp-accordion {
  cursor: pointer;
  display: none;
}

.resp-tab-content {
  display: none;
}

.resp-tab-content > * {
  margin-top: .2em;
}

li.resp-tab-active {
  font-size: 28px;
  font-size: 1.75rem;
  color: #cd6583;
}

.resp-content-active, .resp-accordion-active {
  display: block;
}

/*-----------Vertical tabs-----------*/
.resp-vtabs ul.resp-tabs-list {
  float: left;
  width: 35%;
  position: relative;
  padding-right: 5%;
}

.resp-vtabs .resp-tabs-list li {
  display: block;
  cursor: pointer;
  margin-bottom: 1em;
  position: relative;
  float: right;
}

.resp-vtabs .resp-tabs-list li.active {
  padding-right: 1em;
}

.resp-vtabs .resp-tabs-container {
  padding: 0;
  float: left;
  width: 60%;
  min-height: 250px;
  clear: none;
}

.resp-vtabs .resp-tab-content {
  border: none;
  word-wrap: break-word;
}

.resp-vtabs li.resp-tab-active {
  position: relative;
  z-index: 1;
}

h2.resp-tab-active span.resp-arrow {
  border: none;
}

/*-----------Accordion styles-----------*/
.resp-easy-accordion h2.resp-accordion {
  display: block;
  font-size: 32px;
  font-size: 2rem;
}

.resp-jfit {
  width: 100%;
  margin: 0;
}

.resp-tab-content-active {
  display: block;
}

/*Here your can change the breakpoint to set the accordion, when screen resolution changed*/
@media (max-width: 768px) {
  ul.resp-tabs-list {
    display: none;
  }
  h2.resp-accordion {
    display: block;
    font-size: 22px;
    font-size: 1.375rem;
    color: #cd6583;
  }
  h2.resp-accordion:after {
    content: '+';
    font-family: 'Courier', Arial, Helvetica;
    font-weight: 700;
    color: #f7921e;
  }
  h2.resp-accordion.resp-tab-active:after {
    content: '-';
  }
  .resp-vtabs .resp-tabs-container {
    border: none;
    float: none;
    width: 100%;
    min-height: 100px;
    clear: none;
  }
  .resp-accordion-closed {
    display: none !important;
  }
}

.site-map ul {
  padding: 0;
  margin: 0;
}

.site-map ul ul {
  padding-left: 20px;
}

.site-map ul ul a {
  background: #999;
}

.site-map ul ul ul a {
  background: #777;
}

.site-map ul ul ul ul a {
  background: #555;
}

.site-map ul ul ul ul ul a {
  background: #333;
}

.site-map ul a {
  padding: 5px 10px;
  background: #1a729c;
  /* Change to primary-color colour */
}

.site-map li {
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-map a {
  color: white;
  display: inline-block;
  margin-bottom: 1px;
}

.site-map a:hover {
  background: #135270;
  color: #fff;
}

.search-results {
  list-style-type: none;
  padding: 0;
}

.search-results a {
  font-weight: 700;
}

.search-results .search-snippet {
  font-size: 19;
}

/* Slider */
.slick-slider {
  position: initial;
  margin-bottom: 30px;
  top: 130px;
  transition: top .2s;
  z-index: 1;
  width: 100%;
  display: block;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-slider .slick__slide {
  border: 0;
  outline: 0;
}

.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 {
  -webkit-translate3d: 0, 0, 0;
  -moz-translate3d: 0, 0, 0;
  -ms-translate3d: 0, 0, 0;
  -o-translate3d: 0, 0, 0;
  translate3d: 0, 0, 0;
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
}

.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  overflow: hidden;
  min-height: 1px;
  position: relative;
  display: none;
}

[dir="rtl"] .slick-slide {
  float: right;
}

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

/* Arrows */
.slick-prev,
.slick-next {
  position: absolute;
  display: block;
  height: 20px;
  width: 20px;
  line-height: 0;
  font-size: 0;
  cursor: pointer;
  background: transparent;
  color: transparent;
  top: 50%;
  margin-top: -10px;
  padding: 0;
  border: none;
  outline: none;
  z-index: 1000;
}

.slick-prev:hover, .slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  outline: none;
  background: transparent;
  color: transparent;
}

.slick-prev:hover:before, .slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
  opacity: 1;
}

.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
  opacity: 0.25;
}

.slick-prev:before, .slick-next:before {
  font-size: 20px;
  line-height: 1;
  color: white;
  opacity: 0.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-prev {
  left: 20px;
}

[dir="rtl"] .slick-prev {
  left: auto;
  right: -25px;
}

.slick-prev:before {
  content: "←";
}

[dir="rtl"] .slick-prev:before {
  content: "→";
}

.slick-next {
  right: 20px;
}

[dir="rtl"] .slick-next {
  left: -25px;
  right: auto;
}

.slick-next:before {
  content: "→";
}

[dir="rtl"] .slick-next:before {
  content: "←";
}

/* Dots */
.slick-dots {
  position: absolute;
  bottom: 0;
  list-style: none;
  display: block;
  text-align: center;
  padding: 0;
  width: 100%;
  z-index: 1000;
}

.slick-dots li {
  position: relative;
  display: inline-block;
  height: 20px;
  width: 20px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}

.slick-dots li button {
  border: 0;
  background: transparent;
  display: block;
  height: 20px;
  width: 20px;
  outline: none;
  line-height: 0;
  font-size: 0;
  color: transparent;
  padding: 5px;
  cursor: pointer;
}

.slick-dots li button:hover, .slick-dots li button:focus {
  outline: none;
}

.slick-dots li button:hover:before, .slick-dots li button:focus:before {
  opacity: 1;
}

.slick-dots li button:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "•";
  width: 20px;
  height: 20px;
  font-size: 30px;
  line-height: 20px;
  text-align: center;
  color: black;
  opacity: 0.25;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-dots li.slick-active button:before {
  color: black;
  opacity: 0.75;
}

.view-homepage-slider .view-row {
  position: relative;
}

.banner-text {
  position: absolute;
  bottom: 7%;
  z-index: 2;
}

.banner-title {
  box-shadow: 0.4em 0 0 rgba(255, 255, 255, 0.45), -0.4em 0 0 rgba(255, 255, 255, 0.45);
  background-color: rgba(255, 255, 255, 0.45);
  display: inline-block;
  margin-left: 6%;
  max-width: 500px;
  font-weight: 700;
  font-size: 32px;
  font-size: 2rem;
  line-height: 1.1;
}

@media (max-width: 1024px) {
  .banner-title {
    font-size: 18px;
    font-size: 1.125rem;
  }
}

.banner-title span {
  color: #444444;
  padding-top: .21em;
  padding-bottom: .2em;
  line-height: 1.54em;
  -webkit-box-decoration-break: clone;
          box-decoration-break: clone;
  display: inline;
}

.banner-meta {
  display: inline-block;
  margin-left: 6%;
  margin-top: 5px;
  font-size: 24px;
  font-size: 1.5rem;
}

@media (max-width: 1024px) {
  .banner-meta {
    font-size: 14px;
    font-size: 0.875rem;
  }
}

.banner-meta > span {
  box-shadow: 0.55em 0 0 rgba(255, 255, 255, 0.45), -0.55em 0 0 rgba(255, 255, 255, 0.45);
  background-color: rgba(255, 255, 255, 0.45);
  padding-top: .2em;
  padding-bottom: .2em;
  line-height: 1.5;
}

.banner-name {
  display: inline-block;
  color: #1a729c;
}

.banner-suffix {
  display: inline-block;
  font-style: italic;
  color: #cd6583;
}

.slick-slide img {
  display: block;
  outline: 0;
  border: 0;
  width: 100%;
  height: auto;
}

/*
 * Tables
 */
table {
  background-color: #fff;
  border: 0 solid transparent;
  width: 100%;
  max-width: 100%;
  margin-bottom: 1.5em;
}

table caption {
  text-align: left;
}

table th {
  text-align: left;
}

table td {
  vertical-align: top;
}

table > thead > tr > th,
table > thead > tr > td,
table > tbody > tr > th,
table > tbody > tr > td,
table > tfoot > tr > th,
table > tfoot > tr > td {
  padding: 5px;
  vertical-align: top;
  border-bottom: 1px solid #dfdfdf;
}

table > thead > tr > th {
  vertical-align: bottom;
  border-bottom: 2px solid #dfdfdf;
}

table > caption + thead > tr:first-child > th,
table > caption + thead > tr:first-child > td,
table > colgroup + thead > tr:first-child > th,
table > colgroup + thead > tr:first-child > td,
table > thead:first-child > tr:first-child > th,
table > thead:first-child > tr:first-child > td {
  border-top: 0;
}

table > tbody + tbody {
  border-top: 2px solid #dfdfdf;
}

table table {
  background-color: #fff;
  margin-bottom: 0;
}

/**
 * Responsive tables. tables in node content are wrapped with a div with class "table-responsive" via js in scripts.js
 */
.table-responsive {
  width: 100%;
  overflow-y: auto;
}

.table-responsive::-webkit-scrollbar {
  -webkit-appearance: none;
  width: 14px;
  height: 14px;
}

.table-responsive::-webkit-scrollbar-thumb {
  border-radius: 8px;
  border: 3px solid #fff;
  background-color: rgba(0, 0, 0, 0.3);
}

.table-bordered {
  border: 1px solid #dfdfdf;
}

.table-bordered > thead > tr > th,
.table-bordered > thead > tr > td,
.table-bordered > tbody > tr > th,
.table-bordered > tbody > tr > td,
.table-bordered > tfoot > tr > th,
.table-bordered > tfoot > tr > td {
  border: 1px solid #dfdfdf;
  padding: 5px;
}

.table-striped > tbody > tr:nth-child(odd),
.table-striped .odd-row {
  background-color: #f2f2f2;
}

.table-striped th, .table-striped td {
  border: 0;
}

.table-striped-vertical th:nth-child(odd),
.table-striped-vertical td:nth-child(odd),
.table-striped-vertical .odd-column {
  background-color: #f2f2f2;
}

.table-striped-vertical th, .table-striped-vertical td {
  border: 0;
}

.table-vertical th, .table-vertical td {
  border-top: 0;
  border-bottom: 0;
  border-right: 1px solid #dfdfdf;
}

.table-vertical tr td:last-child,
.table-vertical tr th:last-child {
  border: 0;
}

.table-unstyled > thead > tr > th,
.table-unstyled > thead > tr > td,
.table-unstyled > tbody > tr > th,
.table-unstyled > tbody > tr > td,
.table-unstyled > tfoot > tr > th,
.table-unstyled > tfoot > tr > td {
  padding: 0;
  vertical-align: top;
  border: 0;
}

/**
 * Tabs
 */
.tabs.primary {
  list-style: none;
  padding-left: 0;
  border-bottom: 1px solid #dfdfdf;
}

.tabs.primary li {
  display: inline-block;
  position: relative;
  top: 1px;
}

.tabs.primary a {
  display: inline-block;
  padding: .5em 1em;
}

.tabs.primary a.active {
  border-top: 1px solid #dfdfdf;
  border-left: 1px solid #dfdfdf;
  border-right: 1px solid #dfdfdf;
  border-bottom: 0 solid white;
  background: white;
}

/*
 * Classes that can be used in the WYSIWYG editor
 */
.image-left {
  float: left;
  background-color: #fff;
  border: 1px solid #dfdfdf;
  padding: 5px;
  margin-right: 1.25em;
}

.image-right {
  float: right;
  background-color: #fff;
  border: 1px solid #dfdfdf;
  padding: 5px;
  margin-left: 1.25em;
}

big {
  font-size: 22px;
  font-size: 1.375rem;
}

small {
  font-size: 18px;
  font-size: 1.125rem;
}

.layout-row {
  *zoom: 1;
}

.layout-row:before, .layout-row:after {
  content: '';
  display: table;
}

.layout-row:after {
  clear: both;
}

body.cke_editable {
  padding: 20px;
}

body.cke_editable .layout-row {
  padding: 10px;
  margin: 0 -10px 20px;
  border: 1px dashed pink;
}

body.cke_editable .layout-row > div {
  border: 1px dashed #a5d3e4;
}

body.cke_editable table td {
  border: 1px dashed #ccc;
}

@media (min-width: 769px) {
  .col-one-half {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 48.5%;
    margin-left: 0%;
    margin-right: 3%;
  }
  .col-one-half:before, .col-one-half:after {
    content: '';
    display: table;
  }
  .col-one-half:after {
    clear: both;
  }
  .col-one-half:last-child {
    margin-right: 0%;
  }
  .col-one-third {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 31.33333%;
    margin-left: 0%;
    margin-right: 3%;
  }
  .col-one-third:before, .col-one-third:after {
    content: '';
    display: table;
  }
  .col-one-third:after {
    clear: both;
  }
  .col-one-third:last-child {
    margin-right: 0%;
  }
  .col-two-thirds {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 65.66667%;
    margin-left: 0%;
    margin-right: 3%;
  }
  .col-two-thirds:before, .col-two-thirds:after {
    content: '';
    display: table;
  }
  .col-two-thirds:after {
    clear: both;
  }
  .col-two-thirds:last-child {
    margin-right: 0%;
  }
  .col-one-quarter {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 22.75%;
    margin-left: 0%;
    margin-right: 3%;
  }
  .col-one-quarter:before, .col-one-quarter:after {
    content: '';
    display: table;
  }
  .col-one-quarter:after {
    clear: both;
  }
  .col-one-quarter:last-child {
    margin-right: 0%;
  }
}

/* ---------- Import design ---------- */
/**
 * Layout
 *
 * All layout theming should go in this file
 */
.container, .footer-bottom .wrapper {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
}

.container-small {
  position: relative;
  max-width: 860px;
}

/*
@include from(tablet-l) {
  .one-sidebar {
    &.sidebar-first {
      .main {
        @include col(3/4);
        @include shift(1/4);
      }
    }
    &.sidebar-second {
      .main {
        @include col(3/4);
      }
    }
    aside {
      &.sidebar_first {
        @include col(1/4);
        @include shift(-3/4);
      }
      &.sidebar_second {
        @include col(1/4);
      }
    }
  }
  .two-sidebars {
    .main {
      @include col(2/4);
      @include shift(1/4);
    }
    .sidebar_first {
      @include col(1/4);
      @include shift(-2/4);
    }
    .sidebar_second {
      @include col(1/4);
    }
  }
}
 */
/**
 * Primary navigation
 */
.primary-navigation {
  position: absolute;
  top: 50px;
  left: 3%;
  transition: top .2s;
}

.pinned .primary-navigation {
  top: 22px;
}

.burger-menu {
  position: relative;
  height: 27px;
  width: 93px;
  display: block;
}

.burger-menu:hover .burger-text {
  color: #1a729c;
}

.burger,
.burger:before,
.burger:after {
  position: absolute;
  top: 11px;
  width: 24px;
  height: 4px;
  background: #5f6c6a;
  transition: all .3s;
}

.burger:before {
  top: -8px;
  left: 0;
  content: "";
}

.burger:after {
  top: 8px;
  left: 0;
  content: "";
}

.burger-text {
  position: absolute;
  left: 34px;
  top: 0;
  color: #5f6c6a;
}

.open .burger {
  background: transparent;
}

.open .burger:before {
  top: 0;
  -webkit-transform: rotate3d(0, 0, 1, -45deg);
}

.open .burger:after {
  top: 0;
  -webkit-transform: rotate3d(0, 0, 1, 45deg);
}

.toggle-nav {
  position: absolute;
  left: 3%;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}

.primary-nav {
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  background: #fff;
  padding-top: 2em;
  top: 130px;
}

.admin-menu .primary-nav {
  left: 60px;
}

.body-pinned .primary-nav {
  top: 70px;
}

.primary-nav h2 {
  margin-bottom: 0.5em;
}

.primary-nav ul {
  margin: 0;
  padding: 0;
}

@media (min-width: 1025px) {
  .primary-nav ul {
    display: table;
    table-layout: fixed;
    width: 100%;
  }
}

.primary-nav li {
  list-style: none;
  margin-bottom: 0;
}

.primary-nav li a {
  margin-bottom: 0.5em;
  display: inline-block;
  position: relative;
}

.primary-nav ul ul a {
  padding-left: 20px;
}

.primary-nav ul ul a:before {
  content: '';
  position: absolute;
  left: -2px;
  top: .3em;
  width: 18px;
  height: 18px;
  background: url(../img/arrow.svg) no-repeat;
  background-size: 18px 18px;
  transition: all 0.1s ease-in-out;
}

.primary-nav ul ul a:hover:before {
  left: 1px;
}

.primary-nav .content {
  padding: 0 3%;
  *zoom: 1;
}

.primary-nav .content:before, .primary-nav .content:after {
  content: '';
  display: table;
}

.primary-nav .content:after {
  clear: both;
}

.primary-nav .content > ul > li {
  opacity: 0;
  position: relative;
  left: 15px;
  width: auto;
  margin-bottom: 1em;
}

.primary-nav .content > ul > li:nth-child(1) {
  transition: all 200ms cubic-bezier(0.235, -0.07, 0.285, 1.65) 0.1s;
  transition-timing-function: cubic-bezier(0.235, -0.07, 0.285, 1.65);
}

.primary-nav .content > ul > li:nth-child(2) {
  transition: all 200ms cubic-bezier(0.235, -0.07, 0.285, 1.65) 0.2s;
  transition-timing-function: cubic-bezier(0.235, -0.07, 0.285, 1.65);
}

.primary-nav .content > ul > li:nth-child(3) {
  transition: all 200ms cubic-bezier(0.235, -0.07, 0.285, 1.65) 0.3s;
  transition-timing-function: cubic-bezier(0.235, -0.07, 0.285, 1.65);
}

.primary-nav .content > ul > li:nth-child(4) {
  transition: all 200ms cubic-bezier(0.235, -0.07, 0.285, 1.65) 0.4s;
  transition-timing-function: cubic-bezier(0.235, -0.07, 0.285, 1.65);
}

.primary-nav .content > ul > li:nth-child(5) {
  transition: all 200ms cubic-bezier(0.235, -0.07, 0.285, 1.65) 0.5s;
  transition-timing-function: cubic-bezier(0.235, -0.07, 0.285, 1.65);
}

.primary-nav .content > ul > li:nth-child(6) {
  transition: all 200ms cubic-bezier(0.235, -0.07, 0.285, 1.65) 0.6s;
  transition-timing-function: cubic-bezier(0.235, -0.07, 0.285, 1.65);
}

@media (min-width: 481px) and (max-width: 1024px) {
  .primary-nav .content > ul > li {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 48.5%;
    margin-left: 0%;
    margin-right: 3%;
  }
  .primary-nav .content > ul > li:before, .primary-nav .content > ul > li:after {
    content: '';
    display: table;
  }
  .primary-nav .content > ul > li:after {
    clear: both;
  }
  .primary-nav .content > ul > li:nth-of-type(2n) {
    margin-right: 0%;
    float: right;
  }
  .primary-nav .content > ul > li:nth-of-type(2n + 1) {
    clear: both;
  }
}

@media (min-width: 1025px) {
  .primary-nav .content > ul > li {
    display: table-cell;
    width: 100%;
    padding-right: 2%;
  }
}

.primary-nav .content > ul > li > a {
  color: #5f6c6a;
}

@media (max-width: 1024px) {
  .primary-nav .content > ul > li > a {
    font-size: 24px;
    font-size: 1.5rem;
  }
}

@media (min-width: 1025px) and (max-width: 1200px) {
  .primary-nav .content > ul > li > a {
    font-size: 32px;
    font-size: 2rem;
  }
}

@media (min-width: 1201px) {
  .primary-nav .content > ul > li > a {
    font-size: 36px;
    font-size: 2.25rem;
  }
}

.primary-nav {
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.2s, visibility 0s 0.2s;
}

.open .primary-nav {
  height: 100%;
  z-index: 9999;
  visibility: visible;
  opacity: 1;
  transition: opacity 0.4s;
  overflow-y: scroll;
  overflow-y: overlay;
}

.open .primary-nav .content {
  padding-bottom: 100px;
}

.open .primary-nav .content > ul > li {
  opacity: 1;
  left: 0;
}

.open .site-name-slogan,
.open .header {
  opacity: 0;
}

/*
 * Design
 *
 * Include all your design elements in this file.
 */
html,
body {
  overflow-x: hidden;
}

html.menu-open {
  overflow: hidden;
}

body {
  color: #5f6c6a;
  background: #fff;
  padding-top: 130px;
}

a {
  transition: all 0.3s;
  color: #279d4b;
  text-decoration: none;
  font-weight: 700;
}

a:hover, a:focus {
  color: #1a729c;
}

.field {
  margin-bottom: 1em;
}

.field .field-label {
  font-weight: 700;
}

/**
 * Header
 */
header {
  background-color: #ffffff;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  height: 130px;
  z-index: 100;
  transition: height .2s ease-in-out;
  border-bottom: 2px solid transparent;
}

header .container, header .footer-bottom .wrapper, .footer-bottom header .wrapper {
  position: relative;
}

@media (max-width: 768px) {
  header #block-block-1 .helpline-tel {
    text-align: center;
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 48.5%;
    margin-left: 0%;
    margin-right: 3%;
    display: block;
  }
  header #block-block-1 .helpline-tel:before, header #block-block-1 .helpline-tel:after {
    content: '';
    display: table;
  }
  header #block-block-1 .helpline-tel:after {
    clear: both;
  }
  header #block-block-1 .helpline-tel:last-child {
    margin-right: 0%;
  }
  header #block-block-1 .helpline-tel strong {
    font-size: 0;
  }
  header #block-block-1 .helpline-tel:after {
    font-size: 25px;
    font-family: 'icomoon';
    content: "\f095";
    height: 30px;
    width: 30px;
  }
  header #block-block-1 .helpline-enquiry {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 48.5%;
    margin-left: 0%;
    margin-right: 3%;
    text-align: center;
    display: block;
    font-size: 0;
  }
  header #block-block-1 .helpline-enquiry:before, header #block-block-1 .helpline-enquiry:after {
    content: '';
    display: table;
  }
  header #block-block-1 .helpline-enquiry:after {
    clear: both;
  }
  header #block-block-1 .helpline-enquiry:last-child {
    margin-right: 0%;
  }
  header #block-block-1 .helpline-enquiry:after {
    font-size: 25px;
    font-family: 'icomoon';
    content: "\e900";
    height: 30px;
    width: 30px;
  }
}

.site-name-slogan {
  width: 210px;
  height: 100px;
  margin: 15px auto;
}

.site-name {
  margin: 0;
}

#logo {
  display: block;
  width: 190px;
  height: 100px;
  margin: 0 auto;
  opacity: 1;
}

.header {
  position: absolute;
  right: 3%;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  text-align: right;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.2;
}

.header strong {
  color: #1a729c;
  font-size: 20px;
  font-size: 1.25rem;
}

.header .content > * {
  margin: 0;
}

header.pinned {
  height: 70px;
}

header.pinned #logo {
  width: 105px;
  height: 50px;
}

header.pinned .site-name-slogan {
  margin-top: 10px;
  margin-bottom: 10px;
  height: 50px;
}

header.open {
  border-color: #dfdfdf;
}

header.open #logo,
header.open .header {
  opacity: 0;
}

/**
 * Front page
 */
/**
 * Internal page
 */
@media (min-width: 1025px) {
  .not-front {
    margin-top: 590px;
  }
}

@media (min-width: 481px) and (max-width: 1024px) {
  .not-front {
    margin-top: 400px;
  }
}

@media (max-width: 768px) {
  .not-front {
    margin-top: 250px;
  }
}

.content-area-wrapper {
  position: relative;
  background-color: #ffffff;
  z-index: 2;
}

.banner {
  position: fixed;
  top: 130px;
  transition: top .2s;
  width: 100%;
  z-index: 1;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

.body-pinned .banner {
  top: 70px;
}

@media (min-width: 1025px) {
  .banner {
    height: 590px;
  }
}

@media (min-width: 481px) and (max-width: 1024px) {
  .banner {
    height: 400px;
  }
}

@media (max-width: 768px) {
  .banner {
    height: 250px;
  }
}

.banner h1 {
  display: inline-block;
  max-width: 500px;
  position: absolute;
  bottom: 5%;
}

.banner h1 span {
  box-shadow: 0.4em 0 0 #ffffff, -0.4em 0 0 #ffffff;
  background-color: #ffffff;
  padding-top: .2em;
  line-height: 1.5;
  padding-bottom: .2em;
}

.content-wrapper h2 {
  position: relative;
}

.content-wrapper h2:before {
  content: '';
  position: absolute;
  left: -40px;
  top: .3em;
  width: 24px;
  height: 24px;
  background: url(../img/arrow.svg) no-repeat;
  background-size: 24px 24px;
}

.container-content {
  padding-bottom: 2em;
}

.page-media .media-items {
  margin-top: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #5f6c6a;
}

.page-media .media-items ul.links {
  padding: 0;
}

.page-media .media-items ul.links .node-readmore {
  list-style: none;
}

.page-jobs .view-jobs .job-items {
  margin-top: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #5f6c6a;
}

.page-jobs .view-jobs .job-items ul.links {
  padding: 0;
}

.page-jobs .view-jobs .job-items ul.links .node-readmore {
  list-style: none;
}

.node-type-job .job-form h2 {
  margin-top: 10px;
  border-top: 1px solid #5f6c6a;
  padding-top: 20px;
}

.node-type-job .job-form h2:before {
  background: initial;
}

/**
 * Footer
 */
footer {
  position: relative;
  padding: 2em 0;
  z-index: 2;
  background-color: #fdf9f4;
  *zoom: 1;
}

footer:before, footer:after {
  content: '';
  display: table;
}

footer:after {
  clear: both;
}

@media (min-width: 1025px) {
  footer .container, footer .footer-bottom .wrapper, .footer-bottom footer .wrapper {
    display: table;
    table-layout: fixed;
    width: 100%;
  }
}

@media (min-width: 481px) and (max-width: 1024px) {
  footer .block {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 48.5%;
    margin-left: 0%;
    margin-right: 3%;
  }
  footer .block:before, footer .block:after {
    content: '';
    display: table;
  }
  footer .block:after {
    clear: both;
  }
  footer .block:nth-of-type(2n) {
    margin-right: 0%;
    float: right;
  }
  footer .block:nth-of-type(2n + 1) {
    clear: both;
  }
}

@media (min-width: 1025px) {
  footer .block {
    display: table-cell;
    width: 100%;
    padding-right: 2%;
  }
}

footer h2 {
  margin-bottom: 0.5em;
}

footer h2 a {
  color: #5f6c6a;
}

@media (max-width: 1024px) {
  footer h2 a {
    font-size: 24px;
    font-size: 1.5rem;
  }
}

@media (min-width: 1025px) and (max-width: 1200px) {
  footer h2 a {
    font-size: 40px;
    font-size: 2.5rem;
  }
}

@media (min-width: 1201px) {
  footer h2 a {
    font-size: 40px;
    font-size: 2.5rem;
  }
}

footer ul {
  margin: 0;
  padding: 0;
}

footer li {
  list-style: none;
  margin-bottom: 0;
}

footer li a {
  margin-bottom: .5em;
  display: inline-block;
  position: relative;
}

footer .menu a {
  padding-left: 20px;
}

footer .menu a:before {
  content: '';
  position: absolute;
  left: -2px;
  top: .3em;
  width: 18px;
  height: 18px;
  background: url(../img/arrow.svg) no-repeat;
  background-size: 18px 18px;
  transition: all 0.1s ease-in-out;
}

footer .menu a:hover:before {
  left: 1px;
}

.footer-bottom {
  background-color: #5f6c6a;
  overflow: hidden;
  padding-bottom: 10px;
  padding-top: 20px;
  position: relative;
  z-index: 2;
  *zoom: 1;
}

.footer-bottom:before, .footer-bottom:after {
  content: '';
  display: table;
}

.footer-bottom:after {
  clear: both;
}

.footer-bottom .wrapper {
  overflow: hidden;
}

.footer-bottom .wrapper .content > p {
  color: #fff;
  margin: 20px auto 0;
  font-size: 0.8em;
}

.footer-bottom .wrapper .content .bottom {
  *zoom: 1;
}

.footer-bottom .wrapper .content .bottom:before, .footer-bottom .wrapper .content .bottom:after {
  content: '';
  display: table;
}

.footer-bottom .wrapper .content .bottom:after {
  clear: both;
}

.footer-bottom .wrapper .content .bottom ul {
  *zoom: 1;
  float: left;
  clear: none;
  text-align: inherit;
  width: 65.66667%;
  margin-left: 0%;
  margin-right: 3%;
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.footer-bottom .wrapper .content .bottom ul:before, .footer-bottom .wrapper .content .bottom ul:after {
  content: '';
  display: table;
}

.footer-bottom .wrapper .content .bottom ul:after {
  clear: both;
}

.footer-bottom .wrapper .content .bottom ul:last-child {
  margin-right: 0%;
}

.footer-bottom .wrapper .content .bottom ul li a {
  padding: 20px 0 10px;
  display: block;
  float: left;
  font-size: 0.7em;
  margin-right: 10px;
  font-weight: 500;
  color: #fff;
}

.footer-bottom .wrapper .content .bottom ul li a:after {
  content: ' ';
  display: block;
  float: right;
  background-color: #fff;
  width: 1px;
  height: 0.8em;
  margin-left: 10px;
  margin-top: 5px;
}

.footer-bottom .wrapper .content .bottom ul li a:hover {
  color: #279d4b;
}

.footer-bottom .wrapper .content .bottom ul li:last-of-type a:after {
  display: none;
}

.footer-bottom .wrapper .content .bottom .credits {
  *zoom: 1;
  float: left;
  clear: none;
  text-align: inherit;
  width: 31.33333%;
  margin-left: 0%;
  margin-right: 3%;
  margin: 0;
  color: #fff;
  padding: 20px 0;
  font-size: 0.7em;
  text-align: right;
}

.footer-bottom .wrapper .content .bottom .credits:before, .footer-bottom .wrapper .content .bottom .credits:after {
  content: '';
  display: table;
}

.footer-bottom .wrapper .content .bottom .credits:after {
  clear: both;
}

.footer-bottom .wrapper .content .bottom .credits:last-child {
  margin-right: 0%;
}

.footer-bottom .wrapper .content .bottom .credits a:hover {
  text-decoration: underline;
  color: #fff;
}

/**
 * Homepage content style
 */
.homepage-intro {
  text-align: center;
  background-color: #fdf9f4;
  font-size: 24px;
  font-size: 1.5rem;
  padding: 2em 0;
}

@media (max-width: 768px) {
  .homepage-intro {
    font-size: 18px;
    font-size: 1.125rem;
  }
}

.homepage-photo .content > *:first-child {
  margin-top: 0;
}

.homepage-photo .content > *:first-child {
  margin-bottom: 0;
}

.homepage-photo .content img {
  display: block;
}

.homepage-what-to-expect {
  background-color: #fdf9f4;
  *zoom: 1;
  padding: 2em 0;
}

.homepage-what-to-expect:before, .homepage-what-to-expect:after {
  content: '';
  display: table;
}

.homepage-what-to-expect:after {
  clear: both;
}

.homepage-what-to-expect h2 {
  text-align: center;
}

@media (min-width: 769px) {
  .homepage-what-to-expect h2 {
    margin-bottom: 2em;
  }
}

.homepage-what-to-expect h3 {
  margin-top: 0;
  position: relative;
}

@media (max-width: 768px) {
  .homepage-what-to-expect h3 {
    /*&:before {
				@include font-size($h3-font-size);
				content: '';
				display: inline-block;
				width: 24px;
				height: 24px;
				border-radius: 50px;
				border: 3px solid $tertiary-color;
				position: absolute;
				left: -1.02em;
				top: 0.13em;
				background-color: $cream;
			}*/
  }
}

@media (min-width: 769px) {
  .homepage-what-to-expect h3 {
    /*&:before {
				@include font-size($h3-font-size);
				content: '';
				display: inline-block;
				width: 24px;
				height: 24px;
				border-radius: 50px;
				border: 3px solid $tertiary-color;
				position: absolute;
				left: 46%;
				top: -1.27em;
				background-color: $cream;
			}*/
  }
}

@media (min-width: 1025px) {
  .homepage-what-to-expect h3:before {
    top: -1.47em;
  }
}

.homepage-what-to-expect .container-expect {
  *zoom: 1;
}

.homepage-what-to-expect .container-expect:before, .homepage-what-to-expect .container-expect:after {
  content: '';
  display: table;
}

.homepage-what-to-expect .container-expect:after {
  clear: both;
}

@media (min-width: 769px) {
  .homepage-what-to-expect .container-expect .expect-wrapper {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-flow: row wrap;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
  }
}

.homepage-what-to-expect .container-expect .block {
  position: relative;
  border: 1px solid #5f6c6a;
  padding-bottom: 30px;
}

.homepage-what-to-expect .container-expect .block h3 {
  display: block;
  text-align: center;
  background-color: #5f6c6a;
  color: #fff;
  padding: 30px 0;
  margin: 0;
  font-size: 1.6rem;
}

.homepage-what-to-expect .container-expect .block p {
  padding: 30px 30px 10px 30px;
  margin: 0;
  font-size: 1.15rem;
}

.homepage-what-to-expect .container-expect .block a.button-arrow {
  position: absolute;
  bottom: 20px;
}

@media (max-width: 480px) {
  .homepage-what-to-expect .container-expect .block {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 100%;
    margin-left: 0%;
    margin-right: 3%;
    margin-bottom: 20px;
  }
  .homepage-what-to-expect .container-expect .block:before, .homepage-what-to-expect .container-expect .block:after {
    content: '';
    display: table;
  }
  .homepage-what-to-expect .container-expect .block:after {
    clear: both;
  }
  .homepage-what-to-expect .container-expect .block:nth-of-type(1n) {
    margin-right: 0%;
    float: right;
  }
  .homepage-what-to-expect .container-expect .block:nth-of-type(1n + 1) {
    clear: both;
  }
  .homepage-what-to-expect .container-expect .block:nth-of-type(1) .content, .homepage-what-to-expect .container-expect .block:nth-of-type(2) .content, .homepage-what-to-expect .container-expect .block:nth-of-type(3) .content {
    /*&:before {
						content: "";
						width: 8px;
						height: 112%;
						border-left: 2px solid $tertiary-color;
						border-right: 2px solid $tertiary-color;
						position: absolute;
						top: 1em;
						left: 0.5em;
					}*/
  }
}

@media (min-width: 481px) and (max-width: 768px) {
  .homepage-what-to-expect .container-expect .block {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 48.5%;
    margin-left: 0%;
    margin-right: 3%;
    margin-bottom: 20px;
  }
  .homepage-what-to-expect .container-expect .block:before, .homepage-what-to-expect .container-expect .block:after {
    content: '';
    display: table;
  }
  .homepage-what-to-expect .container-expect .block:after {
    clear: both;
  }
  .homepage-what-to-expect .container-expect .block:nth-of-type(1n) {
    margin-right: 3%;
    float: left;
  }
  .homepage-what-to-expect .container-expect .block:nth-of-type(1n + 1) {
    clear: none;
  }
  .homepage-what-to-expect .container-expect .block:nth-of-type(2n) {
    margin-right: 0%;
    float: right;
  }
  .homepage-what-to-expect .container-expect .block:nth-of-type(2n + 1) {
    clear: both;
  }
  .homepage-what-to-expect .container-expect .block:nth-of-type(1) .content, .homepage-what-to-expect .container-expect .block:nth-of-type(2) .content, .homepage-what-to-expect .container-expect .block:nth-of-type(3) .content {
    /*&:before {
						content: "";
						width: 8px;
						height: 112%;
						border-left: 2px solid $tertiary-color;
						border-right: 2px solid $tertiary-color;
						position: absolute;
						top: 1em;
						left: 0.5em;
					}*/
  }
}

@media (min-width: 769px) and (max-width: 1200px) {
  .homepage-what-to-expect .container-expect .block {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 31.33333%;
    margin-left: 0%;
    margin-right: 3%;
    margin-bottom: 20px;
  }
  .homepage-what-to-expect .container-expect .block:before, .homepage-what-to-expect .container-expect .block:after {
    content: '';
    display: table;
  }
  .homepage-what-to-expect .container-expect .block:after {
    clear: both;
  }
  .homepage-what-to-expect .container-expect .block:nth-of-type(3n) {
    margin-right: 0%;
    float: right;
  }
  .homepage-what-to-expect .container-expect .block:nth-of-type(3n + 1) {
    clear: both;
  }
}

@media (min-width: 1201px) {
  .homepage-what-to-expect .container-expect .block {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 17.6%;
    margin-left: 0%;
    margin-right: 3%;
  }
  .homepage-what-to-expect .container-expect .block:before, .homepage-what-to-expect .container-expect .block:after {
    content: '';
    display: table;
  }
  .homepage-what-to-expect .container-expect .block:after {
    clear: both;
  }
  .homepage-what-to-expect .container-expect .block:nth-of-type(5n) {
    margin-right: 0%;
    float: right;
  }
  .homepage-what-to-expect .container-expect .block:nth-of-type(5n + 1) {
    clear: both;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .homepage-what-to-expect .container-expect .block {
    font-size: 16px;
    font-size: 1rem;
  }
}

.homepage-what-to-expect .container-expect-cost {
  text-align: center;
  line-height: 1.2;
  font-size: 24px;
  font-size: 1.5rem;
}

.homepage-what-to-expect .container-expect-cost strong {
  color: #1a729c;
  font-size: 32px;
  font-size: 2rem;
}

.homepage-what-to-expect h3 em {
  font-size: 16px;
  font-size: 1rem;
  color: #cd6583;
  font-weight: 400;
  white-space: nowrap;
}

.homepage-bottom {
  text-align: center;
  font-size: 24px;
  font-size: 1.5rem;
  padding: 2em 0;
}

@media (max-width: 768px) {
  .homepage-bottom {
    font-size: 18px;
    font-size: 1.125rem;
  }
}

.homepage-journey-cost {
  @extends .container;
  *zoom: 1;
  margin-top: 50px;
}

.homepage-journey-cost:before, .homepage-journey-cost:after {
  content: '';
  display: table;
}

.homepage-journey-cost:after {
  clear: both;
}

@media (max-width: 768px) {
  .homepage-journey-cost p.first {
    text-align: center;
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 100%;
    margin-left: 0%;
    margin-right: 3%;
  }
  .homepage-journey-cost p.first:before, .homepage-journey-cost p.first:after {
    content: '';
    display: table;
  }
  .homepage-journey-cost p.first:after {
    clear: both;
  }
  .homepage-journey-cost p.first:last-child {
    margin-right: 0%;
  }
}

@media (min-width: 769px) {
  .homepage-journey-cost p.first {
    text-align: right;
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 22.75%;
    margin-left: 25.75%;
    margin-right: 3%;
  }
  .homepage-journey-cost p.first:before, .homepage-journey-cost p.first:after {
    content: '';
    display: table;
  }
  .homepage-journey-cost p.first:after {
    clear: both;
  }
  .homepage-journey-cost p.first:last-child {
    margin-right: 0%;
  }
}

.homepage-journey-cost p.second {
  color: #cd6583;
  font-size: 1rem;
  font-style: italic;
}

@media (max-width: 768px) {
  .homepage-journey-cost p.second {
    text-align: center;
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 100%;
    margin-left: 0%;
    margin-right: 3%;
  }
  .homepage-journey-cost p.second:before, .homepage-journey-cost p.second:after {
    content: '';
    display: table;
  }
  .homepage-journey-cost p.second:after {
    clear: both;
  }
  .homepage-journey-cost p.second:last-child {
    margin-right: 0%;
  }
}

@media (min-width: 769px) {
  .homepage-journey-cost p.second {
    text-align: left;
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 22.75%;
    margin-left: 0%;
    margin-right: 3%;
    margin-top: 35px;
  }
  .homepage-journey-cost p.second:before, .homepage-journey-cost p.second:after {
    content: '';
    display: table;
  }
  .homepage-journey-cost p.second:after {
    clear: both;
  }
  .homepage-journey-cost p.second:last-child {
    margin-right: 0%;
  }
}

.homepage-journey-cost p.second span {
  display: block;
  width: 100%;
  color: #1a729c;
  font-size: 1.8rem;
}

.homepage-journey {
  *zoom: 1;
  padding: 2em 0;
}

.homepage-journey:before, .homepage-journey:after {
  content: '';
  display: table;
}

.homepage-journey:after {
  clear: both;
}

@media (max-width: 1024px) {
  .homepage-journey h2.text-center {
    text-align: left;
  }
}

@media (min-width: 769px) {
  .homepage-journey-left {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 74.25%;
    margin-left: 0%;
    margin-right: 3%;
  }
  .homepage-journey-left:before, .homepage-journey-left:after {
    content: '';
    display: table;
  }
  .homepage-journey-left:after {
    clear: both;
  }
  .homepage-journey-left:last-child {
    margin-right: 0%;
  }
  .homepage-journey-right {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 22.75%;
    margin-left: 0%;
    margin-right: 3%;
  }
  .homepage-journey-right:before, .homepage-journey-right:after {
    content: '';
    display: table;
  }
  .homepage-journey-right:after {
    clear: both;
  }
  .homepage-journey-right:last-child {
    margin-right: 0%;
  }
}

.homepage-wrapper {
  position: relative;
  z-index: 2;
  background-color: #FFF;
}

@-webkit-keyframes show {
  0% {
    opacity: 0;
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
}

@keyframes show {
  0% {
    opacity: 0;
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
}

.homepage-journey-timeline #block-views-journey-to-recovery-block-2 {
  *zoom: 1;
}

.homepage-journey-timeline #block-views-journey-to-recovery-block-2:before, .homepage-journey-timeline #block-views-journey-to-recovery-block-2:after {
  content: '';
  display: table;
}

.homepage-journey-timeline #block-views-journey-to-recovery-block-2:after {
  clear: both;
}

.homepage-journey-timeline #block-views-journey-to-recovery-block-2 ol {
  display: block;
  margin: 0;
  padding: 0;
  list-style-type: none;
  counter-reset: ol-counter;
}

.homepage-journey-timeline #block-views-journey-to-recovery-block-2 ol:before {
  content: 'STEPS';
  color: #f7921e;
  display: block;
  width: 100%;
}

@media (max-width: 768px) {
  .homepage-journey-timeline #block-views-journey-to-recovery-block-2 ol:before {
    margin-bottom: 20px;
    text-align: center;
    font-size: 2rem;
  }
}

.homepage-journey-timeline #block-views-journey-to-recovery-block-2 ol li {
  text-align: center;
  font-size: 1em;
  padding: 0 20px;
}

@media (max-width: 768px) {
  .homepage-journey-timeline #block-views-journey-to-recovery-block-2 ol li {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 100%;
    margin-left: 0%;
    margin-right: 3%;
    line-height: 40px;
    margin-bottom: 20px;
  }
  .homepage-journey-timeline #block-views-journey-to-recovery-block-2 ol li:before, .homepage-journey-timeline #block-views-journey-to-recovery-block-2 ol li:after {
    content: '';
    display: table;
  }
  .homepage-journey-timeline #block-views-journey-to-recovery-block-2 ol li:after {
    clear: both;
  }
  .homepage-journey-timeline #block-views-journey-to-recovery-block-2 ol li:last-child {
    margin-right: 0%;
  }
}

@media (min-width: 769px) {
  .homepage-journey-timeline #block-views-journey-to-recovery-block-2 ol li {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 16.66667%;
    margin-left: 0%;
    margin-right: 0%;
    background: transparent url(../img/journey-timeline-bg.png) repeat-x left 16px;
    text-align: center;
  }
  .homepage-journey-timeline #block-views-journey-to-recovery-block-2 ol li:before, .homepage-journey-timeline #block-views-journey-to-recovery-block-2 ol li:after {
    content: '';
    display: table;
  }
  .homepage-journey-timeline #block-views-journey-to-recovery-block-2 ol li:after {
    clear: both;
  }
}

.homepage-journey-timeline #block-views-journey-to-recovery-block-2 ol li span {
  display: block;
}

@media (max-width: 768px) {
  .homepage-journey-timeline #block-views-journey-to-recovery-block-2 ol li span {
    opacity: 1;
    color: #f7921e;
  }
}

@media (min-width: 769px) {
  .homepage-journey-timeline #block-views-journey-to-recovery-block-2 ol li span {
    opacity: 0;
    margin-top: 10px;
  }
}

.homepage-journey-timeline #block-views-journey-to-recovery-block-2 ol li:hover {
  cursor: pointer;
}

.homepage-journey-timeline #block-views-journey-to-recovery-block-2 ol li:before {
  border: 1px solid #f7921e;
  border-radius: 50px;
  width: 40px;
  height: 40px;
  color: #f7921e;
  background: #fff;
  content: counter(ol-counter);
  counter-increment: ol-counter;
  line-height: 40px;
  font-weight: bold;
  text-align: center;
}

@media (max-width: 768px) {
  .homepage-journey-timeline #block-views-journey-to-recovery-block-2 ol li:before {
    float: left;
    margin-right: 20px;
    background: #f7921e;
    color: #fff;
  }
}

@media (min-width: 769px) {
  .homepage-journey-timeline #block-views-journey-to-recovery-block-2 ol li:before {
    *zoom: 1;
    margin-bottom: 10px;
    display: block;
    margin: 0 auto;
  }
  .homepage-journey-timeline #block-views-journey-to-recovery-block-2 ol li:before:before, .homepage-journey-timeline #block-views-journey-to-recovery-block-2 ol li:before:after {
    content: '';
    display: table;
  }
  .homepage-journey-timeline #block-views-journey-to-recovery-block-2 ol li:before:after {
    clear: both;
  }
}

.homepage-journey-timeline #block-views-journey-to-recovery-block-2 ol li.active:hover, .homepage-journey-timeline #block-views-journey-to-recovery-block-2 ol li.views-row-first:hover {
  cursor: default;
}

.homepage-journey-timeline #block-views-journey-to-recovery-block-2 ol li.active span, .homepage-journey-timeline #block-views-journey-to-recovery-block-2 ol li.views-row-first span {
  -webkit-animation: show 0.3s ease-out forwards;
          animation: show 0.3s ease-out forwards;
  color: #f7921e;
}

.homepage-journey-timeline #block-views-journey-to-recovery-block-2 ol li.active:before, .homepage-journey-timeline #block-views-journey-to-recovery-block-2 ol li.views-row-first:before {
  background: #f7921e;
  color: #fff;
}

.homepage-journey-timeline #block-views-journey-to-recovery-block-2 ol li.current span {
  opacity: 1;
  color: #5f6c6a;
}

.homepage-journey-timeline #block-views-journey-to-recovery-block-2 ol li.current:before {
  border: 1px solid #5f6c6a;
  background: #5f6c6a;
  color: #fff;
}

.homepage-journey-timeline #block-views-journey-to-recovery-block-2 .view-footer {
  *zoom: 1;
}

.homepage-journey-timeline #block-views-journey-to-recovery-block-2 .view-footer:before, .homepage-journey-timeline #block-views-journey-to-recovery-block-2 .view-footer:after {
  content: '';
  display: table;
}

.homepage-journey-timeline #block-views-journey-to-recovery-block-2 .view-footer:after {
  clear: both;
}

.homepage-journey-timeline #block-views-journey-to-recovery-block-2 .view-footer .content {
  *zoom: 1;
  float: left;
  clear: none;
  text-align: inherit;
  width: 100%;
  margin-left: 0%;
  margin-right: 3%;
  text-align: right;
  padding-right: 20px;
}

.homepage-journey-timeline #block-views-journey-to-recovery-block-2 .view-footer .content:before, .homepage-journey-timeline #block-views-journey-to-recovery-block-2 .view-footer .content:after {
  content: '';
  display: table;
}

.homepage-journey-timeline #block-views-journey-to-recovery-block-2 .view-footer .content:after {
  clear: both;
}

.homepage-journey-timeline #block-views-journey-to-recovery-block-2 .view-footer .content:last-child {
  margin-right: 0%;
}

.homepage-journey-timeline #block-block-10 {
  @extends .container;
  *zoom: 1;
  margin-top: 50px;
  text-align: center;
}

.homepage-journey-timeline #block-block-10:before, .homepage-journey-timeline #block-block-10:after {
  content: '';
  display: table;
}

.homepage-journey-timeline #block-block-10:after {
  clear: both;
}

.homepage-journey-timeline #block-block-10 p.first {
  line-height: 30px;
  margin-top: 34px;
}

@media (max-width: 768px) {
  .homepage-journey-timeline #block-block-10 p.first {
    text-align: center;
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 100%;
    margin-left: 0%;
    margin-right: 3%;
  }
  .homepage-journey-timeline #block-block-10 p.first:before, .homepage-journey-timeline #block-block-10 p.first:after {
    content: '';
    display: table;
  }
  .homepage-journey-timeline #block-block-10 p.first:after {
    clear: both;
  }
  .homepage-journey-timeline #block-block-10 p.first:last-child {
    margin-right: 0%;
  }
}

@media (min-width: 769px) {
  .homepage-journey-timeline #block-block-10 p.first {
    text-align: right !important;
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 22.75%;
    margin-left: 25.75%;
    margin-right: 3%;
  }
  .homepage-journey-timeline #block-block-10 p.first:before, .homepage-journey-timeline #block-block-10 p.first:after {
    content: '';
    display: table;
  }
  .homepage-journey-timeline #block-block-10 p.first:after {
    clear: both;
  }
  .homepage-journey-timeline #block-block-10 p.first:last-child {
    margin-right: 0%;
  }
}

@media (max-width: 768px) {
  .homepage-journey-timeline #block-block-10 p.second {
    text-align: center;
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 100%;
    margin-left: 0%;
    margin-right: 3%;
  }
  .homepage-journey-timeline #block-block-10 p.second:before, .homepage-journey-timeline #block-block-10 p.second:after {
    content: '';
    display: table;
  }
  .homepage-journey-timeline #block-block-10 p.second:after {
    clear: both;
  }
  .homepage-journey-timeline #block-block-10 p.second:last-child {
    margin-right: 0%;
  }
}

@media (min-width: 769px) {
  .homepage-journey-timeline #block-block-10 p.second {
    text-align: left !important;
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 22.75%;
    margin-left: 0%;
    margin-right: 3%;
    margin-top: 30px;
  }
  .homepage-journey-timeline #block-block-10 p.second:before, .homepage-journey-timeline #block-block-10 p.second:after {
    content: '';
    display: table;
  }
  .homepage-journey-timeline #block-block-10 p.second:after {
    clear: both;
  }
  .homepage-journey-timeline #block-block-10 p.second:last-child {
    margin-right: 0%;
  }
}

/*# sourceMappingURL=style.css.map */