@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 */
/* style stuff */
/* ---------- 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: "proxima-nova", 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: "“" "”" "‘" "’";
}

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

/*
* Breakpoints slicer debug
 */
body::after {
  position: fixed;
  font-size: 18px;
  bottom: 0;
  left: 0;
  z-index: 10000000;
  padding: 5px;
  color: #fff;
  background-color: #000;
}
@media (min-width: 0) {
  body::after {
    content: "mini";
  }
}
@media (min-width: 320px) {
  body::after {
    content: "mobile";
  }
}
@media (min-width: 480px) {
  body::after {
    content: "middy";
  }
}
@media (min-width: 600px) {
  body::after {
    content: "tablet-p";
  }
}
@media (min-width: 768px) {
  body::after {
    content: "tablet-l";
  }
}
@media (min-width: 1083px) {
  body::after {
    content: "desktop";
  }
}
@media (min-width: 1280px) {
  body::after {
    content: "desktop-xl";
  }
}

/**
 * Typography
 */
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: "proxima-nova", Helvetica, Arial, sans-serif;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 900;
  text-transform: uppercase;
}

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

h1 {
  font-size: 37px;
  font-size: 2.3125rem;
  line-height: 1.3;
  color: #233c98;
  margin: 0.67em 0;
}

h2 {
  font-size: 25px;
  font-size: 1.5625rem;
  line-height: 1.3;
  color: #233c98;
  margin: 0.83em 0;
}

h3 {
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 1.3;
  color: #424242;
  margin: 1em 0;
}

h4 {
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 1.3;
  color: #424242;
  margin: 1.33em 0;
}

h5 {
  font-size: 20px;
  font-size: 1.25rem;
  color: #424242;
  margin: 1.67em 0;
}

h6 {
  font-size: 20px;
  font-size: 1.25rem;
  color: #424242;
  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;
}

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: -0.5em;
}

sub {
  bottom: -0.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-image: url("../img/list-style.svg");
}
ul.rteindent1 {
  padding: 0;
}
ul ul {
  list-style-image: url("../img/list-style-inner.svg");
  padding: 20px 0 20px 30px;
}

ul > li {
  padding-left: 30px;
}
ul > li ul li {
  padding-left: 20px;
}

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

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 ---------- */
blockquote {
  margin: 2.5em 0;
  border-left: 11px solid #233c98;
  padding: 0 2em 0 2.5em;
  color: #757575;
}

/*
 * Buttons
 */
.button {
  transition: all 0.3s;
  display: inline-block;
  border: none;
  border-radius: 0;
  background-color: #fff200;
  color: #fff;
  color: #233c98;
  font-weight: 800;
  font-size: 24px;
  font-size: 1.5rem;
  padding: 16px 80px 12px 20px;
  position: relative;
  min-width: 270px;
  cursor: pointer;
  line-height: 1.2em;
}
.button:after {
  content: "";
  width: 42px;
  height: 28px;
  position: absolute;
  right: 20px;
  top: 0;
  bottom: 0;
  margin: auto 0;
  background: url("../img/btn-arrow-blue.svg") no-repeat center center;
}

.button:hover,
.button:focus {
  background-color: #e1d71e;
  color: #233c98;
}

input[type=submit] {
  background: #fff200;
  color: #233c98;
  text-transform: uppercase;
  font-weight: 800;
  padding: 15px 40px 12px;
  font-size: 24px;
  font-size: 1.5rem;
  transition: all 0.2s ease-out;
}

input[type=submit]:hover {
  background: #e1d71e;
  color: #233c98;
}

.easy-breadcrumb {
  font-size: 80%;
  margin: 2.5em 0 0;
  font-size: 16px;
  font-size: 1rem;
}
.easy-breadcrumb a {
  font-weight: 700;
}
.easy-breadcrumb .easy-breadcrumb_segment-wrapper:first-child a {
  padding-left: 30px;
  background: url("../img/icon-house.svg") no-repeat left top;
}

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

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

/*
 * Classes that can be used in CKEditor
 */
.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%;
  }
}
.ckeditor-accordion dt a {
  background: none;
  border-bottom: 10px solid #233c98;
  color: #424242;
  text-transform: uppercase;
  font-weight: 400;
  padding-left: 40px;
  position: relative;
  margin-top: 10px;
}
.ckeditor-accordion dt a:hover {
  background: none;
}

.ckeditor-accordion dd {
  padding-left: 40px;
}

.ckeditor-accordion dt a::before {
  font-weight: 400;
  line-height: 35px;
  font-size: 35px;
  font-size: 2.1875rem;
  position: absolute;
  left: 10px;
  width: 20px;
  height: 46px;
  top: 0;
  bottom: 0;
  margin: auto 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: 12px;
  display: inline-block;
  border: none;
  border-radius: 0;
  color: #424242;
  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: 0.5em;
}

input[type=submit].ajax-processed, .form-submit {
  background-color: #233c98;
  cursor: pointer;
  border: 0;
  color: #fff200;
}
.views-reset-button input[type=submit].ajax-processed, .views-reset-button .form-submit {
  background-color: #233c98;
}
.views-reset-button input[type=submit].ajax-processed:hover, .views-reset-button input[type=submit].ajax-processed:focus, .views-reset-button .form-submit:hover, .views-reset-button .form-submit:focus {
  background-color: #1d2d69;
  color: #bbb536;
}

.form-managed-file .form-submit {
  background-color: #233c98;
}
.form-managed-file .form-submit:hover {
  background-color: #1d2d69;
  color: #bbb536;
}

.description {
  font-size: 18px;
  font-size: 1.125rem;
  color: #8f8f8f;
  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;
  text-transform: inherit !important;
  color: #424242 !important;
  font-size: 22px !important;
}

.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: 0.5em;
}
.webform-client-form .form-item {
  position: relative;
}
.webform-client-form .form-item > label {
  text-transform: uppercase;
  font-weight: 900;
  color: #233c98;
  font-size: 24px;
  font-size: 1.5rem;
}
.webform-client-form .form-item .label-inline {
  display: inline;
}
.webform-client-form .form-item textarea {
  box-shadow: none;
  border: none;
  padding: 25px;
  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;
}

/**
 * Google Recaptcha
 */
.g-recaptcha {
  margin-bottom: 1.5em;
}

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

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

#auth_box {
  font-family: "proxima-nova", 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: #233c98;
  border: 1px solid #233c98;
  display: inline-block;
  margin-right: 10px;
  padding: 15px 25px;
}
.item-list .pager a:hover {
  background: #233c98;
  color: #fff;
  text-decoration: none;
}
.item-list .pager a:active {
  background: #233c98;
}
.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: #233c98;
  border-top: 1px solid #233c98;
  border-left: 1px solid #233c98;
  border-bottom: 1px solid #233c98;
  color: #fff;
  padding: 15px 25px;
  margin-top: -1px;
  margin-right: 10px;
}
.item-list .pager .pager-next, .item-list .pager .pager-last {
  text-transform: uppercase;
}

.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: #233c98;
  /* 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: #192c6f;
  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: relative;
  display: block;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -o-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 {
  -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;
  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;
}

/* 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-slider {
  margin-bottom: 30px;
}

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

/*
 * Tables
 */
table {
  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 tr:nth-child(2n+3) {
  background: #fff;
}
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: 15px;
  vertical-align: top;
  border-bottom: 1px solid #dfdfdf;
}
table th {
  vertical-align: bottom;
  border-bottom: 2px solid #dfdfdf;
  background: #233c98;
  color: #fff;
  font-weight: 400;
}
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: 15px;
}
.table-bordered th {
  vertical-align: bottom;
  border-bottom: 2px solid #dfdfdf;
  background: #233c98;
  color: #fff;
  font-weight: 400;
}

.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: #233c98;
  color: #fff;
}
.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: 15px;
  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: 0.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;
}

/* ---------- Import design ---------- */
/**
 * Layout
 *
 * All layout theming should go in this file
 */
.container {
  max-width: 1200px;
  margin: 0 auto;
  *zoom: 1;
}
.container:before, .container:after {
  content: "";
  display: table;
}
.container:after {
  clear: both;
}
@media (max-width: 1280px) {
  .container {
    padding: 0 20px;
  }
}

@media (min-width: 769px) {
  .one-sidebar.sidebar-first .main {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 68.8%;
    margin-left: 0%;
    margin-right: 4%;
    position: relative;
    left: 26%;
  }
  .one-sidebar.sidebar-first .main:before, .one-sidebar.sidebar-first .main:after {
    content: "";
    display: table;
  }
  .one-sidebar.sidebar-first .main:after {
    clear: both;
  }
  .one-sidebar.sidebar-first .main:last-child {
    margin-right: 0%;
  }
  .one-sidebar.sidebar-second .main {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 67%;
    margin-left: 0%;
    margin-right: 10%;
  }
  .one-sidebar.sidebar-second .main:before, .one-sidebar.sidebar-second .main:after {
    content: "";
    display: table;
  }
  .one-sidebar.sidebar-second .main:after {
    clear: both;
  }
  .one-sidebar.sidebar-second .main:last-child {
    margin-right: 0%;
  }
  .one-sidebar aside.sidebar_first {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 27.2%;
    margin-left: 0%;
    margin-right: 4%;
    position: relative;
    left: -72.8%;
  }
  .one-sidebar aside.sidebar_first:before, .one-sidebar aside.sidebar_first:after {
    content: "";
    display: table;
  }
  .one-sidebar aside.sidebar_first:after {
    clear: both;
  }
  .one-sidebar aside.sidebar_first:last-child {
    margin-right: 0%;
  }
  .one-sidebar aside.sidebar_second {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 23%;
    margin-left: 0%;
    margin-right: 10%;
  }
  .one-sidebar aside.sidebar_second:before, .one-sidebar aside.sidebar_second:after {
    content: "";
    display: table;
  }
  .one-sidebar aside.sidebar_second:after {
    clear: both;
  }
  .one-sidebar aside.sidebar_second:last-child {
    margin-right: 0%;
  }

  .two-sidebars .main {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 58.4%;
    margin-left: 0%;
    margin-right: 4%;
    position: relative;
    left: 20.8%;
  }
  .two-sidebars .main:before, .two-sidebars .main:after {
    content: "";
    display: table;
  }
  .two-sidebars .main:after {
    clear: both;
  }
  .two-sidebars .main:last-child {
    margin-right: 0%;
  }
  .two-sidebars .sidebar_first {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 16.8%;
    margin-left: 0%;
    margin-right: 4%;
    position: relative;
    left: -62.4%;
  }
  .two-sidebars .sidebar_first:before, .two-sidebars .sidebar_first:after {
    content: "";
    display: table;
  }
  .two-sidebars .sidebar_first:after {
    clear: both;
  }
  .two-sidebars .sidebar_first:last-child {
    margin-right: 0%;
  }
  .two-sidebars .sidebar_second {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 16.8%;
    margin-left: 0%;
    margin-right: 4%;
  }
  .two-sidebars .sidebar_second:before, .two-sidebars .sidebar_second:after {
    content: "";
    display: table;
  }
  .two-sidebars .sidebar_second:after {
    clear: both;
  }
  .two-sidebars .sidebar_second:last-child {
    margin-right: 0%;
  }
}
.ds-2col > .group-left, .ds-2col > .group-right {
  float: left;
  width: 50%;
}

.primary-navigation {
  background: transparent url("../img/bg-header.svg") repeat-x center bottom 32px;
  width: calc(100% - 475px);
  position: absolute;
  left: 242px;
  top: 0;
  height: 122px;
}
@media (max-width: 600px) {
  .primary-navigation {
    left: 0;
    width: 33.33%;
    position: fixed;
    z-index: 501;
  }
}
.primary-navigation > li {
  float: left;
}

#superfish-1 > li > span {
  cursor: default;
}

#superfish-1 > li > a, #superfish-1 > li > span {
  font-size: 18px;
  font-size: 1.125rem;
  color: #fff;
  font-weight: bold;
  display: block;
  padding: 33px 35px;
  line-height: 24px;
}
@media (max-width: 1800px) {
  #superfish-1 > li > a, #superfish-1 > li > span {
    padding: 33px 30px;
  }
}
@media (max-width: 1280px) {
  #superfish-1 > li > a, #superfish-1 > li > span {
    padding: 33px 20px;
  }
}
#superfish-1 > li > a:hover, #superfish-1 > li > a:focus, #superfish-1 > li > span:hover, #superfish-1 > li > span:focus {
  color: #fff200;
}
#superfish-1 > li > a.active, #superfish-1 > li > span.active {
  background: #e1d71e;
  color: #233c98;
}
#superfish-1 > li > a.active.sf-with-ul, #superfish-1 > li > span.active.sf-with-ul {
  color: #233c98;
}
#superfish-1 > li > a.active.sf-with-ul .sf-sub-indicator, #superfish-1 > li > span.active.sf-with-ul .sf-sub-indicator {
  background: transparent url("../img/icon-dropdown-blue.svg") no-repeat;
}
#superfish-1 > li > a.active.sf-with-ul:hover, #superfish-1 > li > span.active.sf-with-ul:hover {
  color: #233c98;
}
#superfish-1 > li > a .sf-sub-indicator, #superfish-1 > li > span .sf-sub-indicator {
  background: transparent url("../img/icon-dropdown.svg") no-repeat;
  width: 16px;
  height: 10px;
  top: 0;
  bottom: 0;
  margin: auto 0;
  right: 20px;
}
#superfish-1 > li > a.sf-with-ul, #superfish-1 > li > span.sf-with-ul {
  padding-right: 51px;
}
@media (max-width: 1280px) {
  #superfish-1 > li > a.sf-with-ul, #superfish-1 > li > span.sf-with-ul {
    padding-right: 40px;
  }
}

#superfish-1 > li.sfHover > a {
  color: #fff200;
}

#superfish-1 > li > ul {
  top: 4.5em;
  border-bottom: 2px solid #233c98;
}
#superfish-1 > li > ul li a {
  color: #233c98;
  padding: 15px 35px;
  font-weight: bold;
  background: rgba(255, 255, 255, 0.88);
  font-size: 18px;
  font-size: 1.125rem;
}
#superfish-1 > li > ul li a:hover {
  background: #e1d71e;
}

#superfish-1-toggle {
  position: absolute;
  right: 0;
  top: 0;
  color: #fff200;
  height: 90px;
  width: 116px;
  background: #233c98;
}
@media (max-width: 600px) {
  #superfish-1-toggle {
    width: 100%;
  }
}
#superfish-1-toggle:after {
  content: "Menu";
  position: absolute;
  bottom: 11px;
  left: 0;
  right: 0;
  margin: 0 auto;
  text-align: center;
}
@media (max-width: 600px) {
  #superfish-1-toggle:after {
    font-size: 17px;
    font-size: 1.0625rem;
  }
}
#superfish-1-toggle span {
  text-indent: -9000px;
  height: 5px;
  background: #fff200;
  width: 38px;
  position: absolute;
  display: block;
  right: 0;
  top: 30px;
  bottom: 0;
  border-radius: 5px;
  left: 0;
  margin: 0 auto;
}
#superfish-1-toggle span:before {
  content: "";
  position: absolute;
  top: -11px;
  background: #fff200;
  left: 0;
  right: 0;
  height: 5px;
  border-radius: 5px;
  transition: all 0.3s ease-out;
}
#superfish-1-toggle span:after {
  content: "";
  position: absolute;
  bottom: -11px;
  background: #fff200;
  left: 0;
  right: 0;
  height: 5px;
  border-radius: 5px;
  transition: all 0.3s ease-out;
}
#superfish-1-toggle.sf-expanded span:before {
  transform: rotate(-135deg);
  top: 0;
}
#superfish-1-toggle.sf-expanded span:after {
  transform: rotate(135deg);
  bottom: 0;
}
#superfish-1-toggle.sf-expanded span {
  background: none;
}

#superfish-1-accordion {
  top: 90px !important;
  float: none;
  transition: all 0.3s;
  padding-top: 29px;
  border-bottom: 2px solid #233c98;
  overflow: auto;
}
@media (max-width: 600px) {
  #superfish-1-accordion {
    padding-top: 0;
  }
}

#superfish-1-accordion.sf-hidden {
  left: -300% !important;
}

#superfish-1-accordion.sf-expanded {
  float: none !important;
  position: fixed !important;
  background: rgba(255, 255, 255, 0.6);
  left: 0 !important;
  right: 0 !important;
}

@media (max-width: 1083px) {
  .sf-menu > li > a, .sf-menu .nolink {
    padding: 25px 20px;
    background: #fff;
    color: #233c98;
    font-weight: 700;
    position: relative;
  }

  .sf-depth-2 {
    background: #fff;
    padding: 8px 20px;
    font-size: 17px;
    font-size: 1.0625rem;
  }

  .menuparent .nolink:after {
    content: "+";
    position: absolute;
    right: 20px;
    font-size: 25px;
    font-size: 1.5625rem;
    line-height: 20px;
  }

  .menuparent.sf-expanded .nolink:after {
    content: "-";
  }

  .sf-menu > li:first-child > a {
    padding-top: 50px;
  }

  .sf-menu > li:last-child > a {
    padding-bottom: 50px;
  }
}
/*
 * Design
 *
 * Include all your design elements in this file.
 */
body {
  background: #fff;
  color: #424242;
  background: #dddddd url("../img/pattern.jpg") repeat center center;
}

a {
  transition: all 0.3s ease-out;
  color: #233c98;
  text-decoration: none;
  font-weight: 700;
}
a:hover, a:focus {
  color: #15235a;
}

.field {
  margin-bottom: 1em;
}
.field .field-label {
  font-weight: 700;
}

/* ----------------  HEADER ----------------------- */
header {
  position: fixed;
  width: 100%;
  z-index: 10;
  height: 122px;
  top: 0;
}
@media (max-width: 600px) {
  header {
    position: relative;
  }
}

.logo {
  float: left;
  display: inline-block;
  margin: 0;
  width: 13%;
  text-align: center;
  position: absolute;
  left: 0;
  width: 242px;
  top: 0;
  line-height: 0;
  z-index: 500;
}
@media (max-width: 600px) {
  .logo {
    width: 100%;
    top: 90px;
    z-index: 400;
  }
}
.logo a {
  outline: none;
  background: rgba(255, 255, 255, 0.6);
  padding: 15px;
  float: right;
  max-width: 193px;
}
@media (max-width: 600px) {
  .logo a {
    padding: 20px;
    text-align: center;
    float: none;
    max-width: none;
    display: block;
  }
}
.logo .blue {
  float: left;
  width: 49px;
  height: 122px;
  background: transparent url("../img/bg-header.svg") repeat-x center bottom 32px;
}
@media (max-width: 600px) {
  .logo .blue {
    display: none;
  }
}

.top-ctas {
  position: absolute;
  right: 0;
  top: 0;
  width: 232px;
}
@media (max-width: 600px) {
  .top-ctas {
    width: 66.66%;
    position: fixed;
    z-index: 500;
  }
}
.top-ctas ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
.top-ctas li {
  padding: 0;
}
@media (max-width: 1800px) {
  .top-ctas li {
    float: left;
  }
}
@media (max-width: 600px) {
  .top-ctas li {
    width: 50%;
  }
}
@media (max-width: 320px) {
  .top-ctas li:first-child {
    width: 40%;
  }
  .top-ctas li:last-child {
    width: 60%;
  }
}
.top-ctas .call {
  display: none;
}
@media (max-width: 1280px) {
  .top-ctas .call {
    display: block;
  }
}
.top-ctas .number {
  display: block;
}
@media (max-width: 1280px) {
  .top-ctas .number {
    display: none;
  }
}
.top-ctas li a {
  display: block;
  padding: 10px 28px 7px 75px;
  font-weight: bold;
  font-size: 19px;
  font-size: 1.1875rem;
  max-width: 232px;
  position: relative;
}
@media (max-width: 1280px) {
  .top-ctas li a {
    width: 116px;
    display: inline-block;
    min-height: 90px;
    text-align: center;
    padding: 50px 10px 10px 10px;
  }
}
@media (max-width: 600px) {
  .top-ctas li a {
    min-height: none;
    display: block;
    width: 100%;
    font-size: 17px;
    font-size: 1.0625rem;
    padding: 54px 10px 10px 10px;
  }
}
.top-ctas li a:hover {
  color: #233c98;
}
.top-ctas li:nth-child(1) a {
  background: #fff200 url("../img/btn-phone.svg") no-repeat left 28px center;
}
@media (max-width: 1280px) {
  .top-ctas li:nth-child(1) a {
    background: #fff200 url("../img/btn-phone.svg") no-repeat center top 22px;
    background-size: 40%;
  }
}
@media (min-width: 481px) and (max-width: 600px) {
  .top-ctas li:nth-child(1) a {
    background-size: 30%;
  }
}
.top-ctas li:nth-child(1) a:hover {
  background-color: #e1d71e;
}
.top-ctas li:nth-child(2) a {
  background: #ffffff url("../img/btn-locate-us.svg") no-repeat left 36px center;
  font-weight: bold;
}
@media (max-width: 1280px) {
  .top-ctas li:nth-child(2) a {
    background: #ffffff url("../img/btn-locate-us.svg") no-repeat center top 14px;
    background-size: 18%;
  }
}
@media (min-width: 481px) and (max-width: 600px) {
  .top-ctas li:nth-child(2) a {
    background-size: 13%;
  }
}
.top-ctas li:nth-child(2) a:hover {
  background-color: #e5e5e5;
}

/* ----------------  SPLASH ----------------------- */
.front .content-area-wrapper {
  margin-top: -122px;
}

#splash {
  height: 100vh;
  background: transparent url("../img/bg-home.jpg") no-repeat center center;
  background-size: cover;
  position: relative;
}
@media (max-width: 768px) {
  #splash {
    height: 95vh;
  }
}
@media (max-width: 600px) {
  #splash {
    height: 200vh;
  }
}
@media (max-width: 480px) {
  #splash {
    height: 185vh;
  }
}

.hours {
  background: #fff;
  position: absolute;
  right: 0;
  top: 350px;
  padding: 15px 20px 12px 90px;
}
@media (min-width: 769px) and (max-width: 1083px) {
  .hours {
    top: 300px;
  }
}
@media (max-width: 600px) {
  .hours {
    left: 0;
    top: 219px;
  }
}
@media (max-width: 320px) {
  .hours {
    padding: 15px 20px 12px 78px;
  }
}
.hours:before {
  content: "";
  position: absolute;
  width: 50px;
  height: 50px;
  left: 20px;
  top: 0;
  bottom: 0;
  margin: auto 0;
  background: url("../img/icon-clock.svg") no-repeat center center;
}
@media (max-width: 320px) {
  .hours:before {
    left: 13px;
  }
}
.hours h2, .hours p {
  margin: 0;
}
.hours h2 {
  text-transform: inherit;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
}
.hours p {
  font-size: 18px;
  font-size: 1.125rem;
  color: #233c98;
}

.statement {
  background: #233c98;
  max-width: 51%;
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 40px 40px 0px 20px;
}
@media (max-width: 1280px) {
  .statement {
    max-width: 85%;
  }
}
@media (max-width: 768px) {
  .statement {
    max-width: none;
    width: 100%;
    padding: 40px 20px;
  }
}
.statement h2 {
  color: #fff;
  font-size: 29px;
  font-size: 1.8125rem;
  line-height: 1.5em;
  margin: 0;
}
@media (max-width: 480px) {
  .statement h2 {
    word-wrap: break-word;
    -webkit-hyphens: auto;
            hyphens: auto;
  }
}
.statement .content {
  max-width: 85%;
  float: right;
}
@media (max-width: 768px) {
  .statement .content {
    max-width: none;
    float: none;
  }
}
.statement p {
  color: #fff200;
  font-weight: 700;
  font-style: italic;
  font-size: 26px;
  font-size: 1.625rem;
  margin-bottom: 0;
}
@media (max-width: 480px) {
  .statement p {
    font-size: 23px;
    font-size: 1.4375rem;
  }
}
.statement .button {
  position: absolute;
  right: -36px;
  bottom: 30px;
  z-index: 3;
}
.statement .button:hover {
  right: -72px;
}
@media (max-width: 768px) {
  .statement .button {
    left: 20px;
    right: auto;
    bottom: -36px;
  }
  .statement .button:hover {
    right: auto;
  }
}
.statement p a {
  font-style: normal;
}

/* ----------------  INNER PAGE ----------------------- */
.not-front .main {
  padding-bottom: 100px;
}

@media (max-width: 768px) {
  .not-front.one-sidebar .main {
    padding-bottom: 0;
  }
}

.inner-image {
  height: 45vh;
  position: relative;
  z-index: 0;
}
@media (max-width: 768px) {
  .inner-image {
    height: 74vh;
  }
}
.inner-image p {
  margin: 0;
}

.page-projects .logo a, .page-sales-domestic .logo a, .page-sales-commercial .logo a, .page-hire-domestic .logo a, .page-hire-commercial .logo a, .node-type-demountable .logo a {
  background: #bfd2eb;
}
.page-projects .inner-image, .page-sales-domestic .inner-image, .page-sales-commercial .inner-image, .page-hire-domestic .inner-image, .page-hire-commercial .inner-image, .node-type-demountable .inner-image {
  height: 0;
  margin: 0;
  padding-top: 250px;
}
@media (max-width: 600px) {
  .page-projects .inner-image, .page-sales-domestic .inner-image, .page-sales-commercial .inner-image, .page-hire-domestic .inner-image, .page-hire-commercial .inner-image, .node-type-demountable .inner-image {
    padding-top: 250px;
  }
}
.page-projects .page-title, .page-sales-domestic .page-title, .page-sales-commercial .page-title, .page-hire-domestic .page-title, .page-hire-commercial .page-title, .node-type-demountable .page-title {
  transform: translateX(-50%);
  left: 50%;
}
@media (max-width: 768px) {
  .page-projects .page-title, .page-sales-domestic .page-title, .page-sales-commercial .page-title, .page-hire-domestic .page-title, .page-hire-commercial .page-title, .node-type-demountable .page-title {
    left: 20px;
    transform: none;
    right: 20px;
    margin: 0 auto;
    width: calc(100% - 40px);
    text-align: center;
  }
}

.node-type-demountable .page-title {
  background: #233c98;
  color: #fff;
}

.inner-container {
  position: absolute;
  left: 0;
  right: 0;
  max-width: 1200px;
  margin: 0 auto;
  bottom: 0;
}

.page-title {
  position: absolute;
  background: #ffffff;
  text-transform: uppercase;
  color: #233c98;
  bottom: 0;
  left: 0;
  max-width: 1200px;
  padding: 30px 45px 25px;
  display: inline-block;
  margin: 0;
}
@media (max-width: 480px) {
  .page-title {
    display: inline-block;
    text-align: center;
    width: 100%;
  }
}

.content-area-wrapper .contextual-links > li {
  padding-left: 0;
}

/* ----------------  SIDEBAR ----------------------- */
.sidebar .block h2 {
  color: #424242;
  font-weight: 700;
  margin: 4.7em 0 0.8em 0;
  font-size: 22px;
  font-size: 1.375rem;
}
@media (max-width: 768px) {
  .sidebar .block h2 {
    margin: 2em 0 0.8em 0;
  }
}
.sidebar .block h2 a {
  color: #424242;
}

@media (max-width: 768px) {
  .sidebar {
    margin: 0 0 50px 0;
  }
}

.sidebar .menu {
  list-style: none;
  padding: 0;
  margin: 0 0 0 -36px;
}
@media (max-width: 768px) {
  .sidebar .menu {
    margin: 0;
  }
}
.sidebar .menu li {
  padding: 10px 0;
}
.sidebar .menu li a {
  color: #424242;
  position: relative;
  padding-left: 35px;
  font-size: 22px;
  font-size: 1.375rem;
  background: url("../img/btn-arrow-sidebar.svg") no-repeat left -30px bottom 2px;
}
.sidebar .menu li a.active {
  color: #233c98;
  font-weight: 700;
  background: url("../img/btn-arrow-sidebar.svg") no-repeat left 0 bottom 2px;
}
.sidebar .menu li a.active:hover {
  background: url("../img/btn-arrow-sidebar.svg") no-repeat left 0 bottom 2px;
}
.sidebar .menu li a:hover, .sidebar .menu li a:focus {
  color: #233c98;
  background: url("../img/btn-arrow-sidebar-hover.svg") no-repeat left 0 bottom 2px;
}

/* ----------------  CTAS ----------------------- */
#ctas {
  overflow: hidden;
  margin-bottom: 60px;
}

#block-block-5, #block-block-6 {
  *zoom: 1;
  float: left;
  clear: none;
  text-align: inherit;
  width: 50%;
  margin-left: 0%;
  margin-right: 0%;
  background: #000;
}
#block-block-5:before, #block-block-5:after, #block-block-6:before, #block-block-6:after {
  content: "";
  display: table;
}
#block-block-5:after, #block-block-6:after {
  clear: both;
}
@media (max-width: 1083px) {
  #block-block-5, #block-block-6 {
    display: block;
    clear: both;
    float: none;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  #block-block-5:first-child, #block-block-6:first-child {
    margin-left: auto;
  }
  #block-block-5:last-child, #block-block-6:last-child {
    margin-right: auto;
  }
}
#block-block-5 .content a, #block-block-6 .content a {
  display: block;
  width: 100%;
  font-size: 36px;
  font-size: 2.25rem;
}
@media (max-width: 1280px) {
  #block-block-5 .content a, #block-block-6 .content a {
    font-size: 30px;
    font-size: 1.875rem;
  }
}
@media (max-width: 1083px) {
  #block-block-5 .content a, #block-block-6 .content a {
    text-align: center;
    font-size: 36px;
    font-size: 2.25rem;
  }
}
#block-block-5 .content a:hover, #block-block-6 .content a:hover {
  opacity: 0.82;
}
#block-block-5 p, #block-block-6 p {
  margin: 0;
}

#block-block-6 .content a {
  background: #fff200;
  color: #233c98;
  text-transform: uppercase;
  font-weight: 900;
  padding: 50px 0 50px 85px;
}
@media (max-width: 1083px) {
  #block-block-6 .content a {
    padding: 80px 20px 50px 20px;
  }
}

#block-block-5 {
  text-align: right;
}
#block-block-5 p {
  position: relative;
}
#block-block-5 .content p:after {
  content: "OR";
  background: #fff;
  width: 65px;
  height: 65px;
  text-align: center;
  position: absolute;
  right: -32px;
  top: 0;
  bottom: 0;
  margin: auto 0;
  padding-top: 15px;
  color: #233c98;
  font-weight: 700;
  font-size: 25px;
  font-size: 1.5625rem;
  z-index: 10;
}
@media (max-width: 1083px) {
  #block-block-5 .content p:after {
    left: 0;
    right: 0;
    margin: 0 auto;
    bottom: -32px;
    top: inherit;
  }
}
#block-block-5 .content a {
  background: #233c98;
  color: #fff200;
  text-transform: uppercase;
  font-weight: 900;
  padding: 50px 85px 50px 0;
}
@media (max-width: 1083px) {
  #block-block-5 .content a {
    padding: 50px 20px 80px 20px;
  }
}

/* ----------------  LOGOS ----------------------- */
#block-block-7 h2 {
  margin: 0 0 2em 0;
}

#block-block-8 {
  margin-bottom: 65px;
}
#block-block-8 h2 {
  margin: 3em 0;
}
@media (max-width: 768px) {
  #block-block-8 p {
    margin: 0;
  }
}

#block-block-7, #block-block-8 {
  width: 100%;
  padding: 0 20px;
  text-align: center;
}
#block-block-7 h2, #block-block-7 h4, #block-block-8 h2, #block-block-8 h4 {
  font-size: 16px;
  font-size: 1rem;
  color: #535353;
  text-transform: inherit;
  font-weight: 400;
}
#block-block-7 img, #block-block-8 img {
  margin: 0 15px;
}
@media (max-width: 768px) {
  #block-block-7 img, #block-block-8 img {
    max-width: 100px;
    margin: 15px;
  }
}

/* ----------------  FOOTER ----------------------- */
footer {
  overflow: hidden;
  padding: 7px 48px;
  background: #233c98;
  color: #fff;
}
@media (max-width: 1083px) {
  footer {
    padding: 10px 20px;
  }
}
footer .block {
  *zoom: 1;
  float: left;
  clear: none;
  text-align: inherit;
  width: 66.6666666667%;
  margin-left: 0%;
  margin-right: 0%;
}
footer .block:before, footer .block:after {
  content: "";
  display: table;
}
footer .block:after {
  clear: both;
}
@media (max-width: 1083px) {
  footer .block {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 60%;
    margin-left: 0%;
    margin-right: 0%;
  }
  footer .block:before, footer .block:after {
    content: "";
    display: table;
  }
  footer .block:after {
    clear: both;
  }
}
@media (max-width: 600px) {
  footer .block {
    display: block;
    clear: both;
    float: none;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  footer .block:first-child {
    margin-left: auto;
  }
  footer .block:last-child {
    margin-right: auto;
  }
}
footer .created {
  *zoom: 1;
  float: left;
  clear: none;
  text-align: inherit;
  width: 33.3333333333%;
  margin-left: 0%;
  margin-right: 0%;
}
footer .created:before, footer .created:after {
  content: "";
  display: table;
}
footer .created:after {
  clear: both;
}
@media (max-width: 600px) {
  footer .created {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 40%;
    margin-left: 0%;
    margin-right: 0%;
  }
  footer .created:before, footer .created:after {
    content: "";
    display: table;
  }
  footer .created:after {
    clear: both;
  }
}
@media (max-width: 1083px) {
  footer .created {
    display: block;
    clear: both;
    float: none;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  footer .created:first-child {
    margin-left: auto;
  }
  footer .created:last-child {
    margin-right: auto;
  }
}
footer p, footer ul {
  margin: 0;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
}
footer .created {
  padding: 10px 0;
}
footer .created p {
  text-align: right;
}
@media (max-width: 1083px) {
  footer .created p {
    text-align: left;
  }
}
footer .created a {
  color: #fff200;
}
footer .created a:hover {
  color: #fff200;
  opacity: 0.82;
}
footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
footer ul li {
  float: left;
  padding: 0;
}
footer ul li:first-child {
  margin-right: 20px;
}
footer ul li a {
  color: #fff;
  display: block;
}
footer ul li a:Hover {
  color: #fff;
  opacity: 0.82;
}
footer ul li:nth-child(1) a {
  background: url("../img/icon-location-yellow.svg") no-repeat left center;
  padding: 10px 0 10px 32px;
}
@media (max-width: 1083px) {
  footer ul li:nth-child(1) a {
    background: url("../img/icon-location-yellow.svg") no-repeat left 5px center;
    padding: 10px 0 10px 40px;
  }
}
footer ul li:nth-child(2) a {
  background: url("../img/icon-fb.svg") no-repeat left center;
  padding: 10px 0 10px 40px;
}

/* ----------------  UPSELLS ----------------------- */
#upsells {
  max-width: 1200px;
  margin: 0 auto;
  *zoom: 1;
  padding: 115px 20px;
}
#upsells:before, #upsells:after {
  content: "";
  display: table;
}
#upsells:after {
  clear: both;
}

#block-block-9 {
  width: 100%;
  overflow: hidden;
}
@media (max-width: 768px) {
  #block-block-9 {
    padding-bottom: 50px;
  }
}
#block-block-9 .content > p {
  line-height: 1.3;
  color: #233c98;
  font-weight: 900;
  text-transform: uppercase;
  font-size: 35px;
  font-size: 2.1875rem;
  text-align: center;
  max-width: 80%;
  margin: 0 auto 100px;
}
@media (max-width: 1083px) {
  #block-block-9 .content > p {
    max-width: none;
    margin: 0;
  }
}

#block-block-10, #block-block-11, #block-block-12 {
  *zoom: 1;
  float: left;
  clear: none;
  text-align: inherit;
  width: 31.3333333333%;
  margin-left: 0%;
  margin-right: 3%;
  min-height: 281px;
  position: relative;
}
#block-block-10:before, #block-block-10:after, #block-block-11:before, #block-block-11:after, #block-block-12:before, #block-block-12:after {
  content: "";
  display: table;
}
#block-block-10:after, #block-block-11:after, #block-block-12:after {
  clear: both;
}
#block-block-10:last-child, #block-block-11:last-child, #block-block-12:last-child {
  margin-right: 0%;
}
@media (max-width: 768px) {
  #block-block-10, #block-block-11, #block-block-12 {
    display: block;
    clear: both;
    float: none;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    max-width: 309px;
  }
  #block-block-10:first-child, #block-block-11:first-child, #block-block-12:first-child {
    margin-left: auto;
  }
  #block-block-10:last-child, #block-block-11:last-child, #block-block-12:last-child {
    margin-right: auto;
  }
}
#block-block-10 .content p, #block-block-11 .content p, #block-block-12 .content p {
  background: #233c98;
  color: #fff200;
  display: inline-block;
  font-style: italic;
  font-size: 17px;
  font-size: 1.0625rem;
  padding: 5px 10px;
}
@media (min-width: 769px) and (max-width: 1083px) {
  #block-block-10 .content p, #block-block-11 .content p, #block-block-12 .content p {
    font-size: 15px;
    font-size: 0.9375rem;
  }
}

#block-block-10 {
  background: url("../img/map.png") no-repeat center center;
  background-size: 80%;
}
#block-block-10 p {
  position: absolute;
  left: 40%;
  bottom: 20%;
  transform: rotate(-20deg);
}

#block-block-11 {
  background: url("../img/lightbulb.svg") no-repeat center center;
  background-size: 58%;
}
#block-block-11 p {
  position: absolute;
  left: 40%;
  bottom: 18%;
  transform: rotate(10deg);
}

#block-block-12 {
  background: url("../img/tornado.svg") no-repeat center center;
  background-size: 60%;
}
#block-block-12 p {
  position: absolute;
  left: 26%;
  bottom: 16%;
  transform: rotate(-34deg);
}

/* ----------------  Audience ----------------------- */
#audience {
  padding-top: 100px;
}

#block-block-13, #block-block-14 {
  *zoom: 1;
  float: left;
  clear: none;
  text-align: inherit;
  width: 48%;
  margin-left: 0%;
  margin-right: 4%;
  padding-top: 270px;
  background-size: 100% auto !important;
  background-position: top -70px center;
  background-repeat: no-repeat;
}
#block-block-13:before, #block-block-13:after, #block-block-14:before, #block-block-14:after {
  content: "";
  display: table;
}
#block-block-13:after, #block-block-14:after {
  clear: both;
}
#block-block-13:last-child, #block-block-14:last-child {
  margin-right: 0%;
}
@media (max-width: 600px) {
  #block-block-13, #block-block-14 {
    display: block;
    clear: both;
    float: none;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  #block-block-13:first-child, #block-block-14:first-child {
    margin-left: auto;
  }
  #block-block-13:last-child, #block-block-14:last-child {
    margin-right: auto;
  }
}
#block-block-13 .content, #block-block-14 .content {
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 17px solid #233c98;
  padding: 22px 30px;
}
#block-block-13 .content h2, #block-block-14 .content h2 {
  font-size: 25px;
  font-size: 1.5625rem;
}
#block-block-13 .content p, #block-block-14 .content p {
  color: #535353;
  margin: 0;
}
#block-block-13 .content p a, #block-block-14 .content p a {
  padding-right: 45px;
  background: url("../img/btn-arrow-blue-tiny.svg") no-repeat right 10px center;
  margin-top: 15px;
  display: inline-block;
}
#block-block-13 .content p a:hover, #block-block-14 .content p a:hover {
  color: #233c98;
  background: url("../img/btn-arrow-blue-tiny.svg") no-repeat right 0 center;
}

#block-block-13 {
  background-image: url("../img/domestic.jpg");
}
@media (max-width: 600px) {
  #block-block-13 {
    margin-bottom: 43px;
  }
}

#block-block-14 {
  background-image: url("../img/commercial.jpg");
}

/* ----------------  secondhand buildinds page teaser----------------------- */
.view-secondhand-buildings .view-content .group-right {
  margin-bottom: 1em;
  background: #233c98;
  position: relative;
  padding: 60px 30px 100px 30px;
}
.view-secondhand-buildings .view-content .group-right h2, .view-secondhand-buildings .view-content .group-right .field-name-body .field-item {
  color: white;
}
.view-secondhand-buildings .view-content .button {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 30px;
  transition: all 0.3s ease;
}
.view-secondhand-buildings .view-content .button:hover {
  transform: translateX(-30%);
  transition: all 0.3s ease;
}
@media (max-width: 768px) {
  .view-secondhand-buildings .view-content .button {
    left: 50%;
    transform: translateX(-50%);
  }
  .view-secondhand-buildings .view-content .button:hover {
    left: 50%;
    transform: translateX(-50%);
  }
}
.view-secondhand-buildings .view-content .group-right, .view-secondhand-buildings .view-content .group-left {
  min-height: 430px;
}
@media (max-width: 1083px) {
  .view-secondhand-buildings .view-content .group-right, .view-secondhand-buildings .view-content .group-left {
    min-height: 530px;
  }
}
@media (max-width: 768px) {
  .view-secondhand-buildings .view-content .group-right, .view-secondhand-buildings .view-content .group-left {
    min-height: 350px;
  }
}
.view-secondhand-buildings .view-content .group-right, .view-secondhand-buildings .view-content .group-left {
  text-align: left;
}
@media (max-width: 768px) {
  .view-secondhand-buildings .view-content .group-right, .view-secondhand-buildings .view-content .group-left {
    float: none;
    width: 100%;
  }
}

/* ----------------  PROJECTS ----------------------- */
/* ----------------  PROJECTS ----------------------- */
.projects-list ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.projects-list ul li {
  padding: 0;
  background: #233c98;
  color: #fff;
  margin-bottom: 20px;
}
.projects-list ul h2 {
  color: #fff;
  font-size: 25px;
  font-size: 1.5625rem;
  margin: 0 0 1em 0;
}
.projects-list .group-left {
  padding: 60px 30px 100px 30px;
  position: relative;
}
.projects-list .button {
  position: absolute;
  right: -36px;
  bottom: 30px;
  z-index: 3;
}
.projects-list .button:hover {
  right: -72px;
}
@media (max-width: 768px) {
  .projects-list .button {
    left: 20px;
    right: auto;
    bottom: -32px;
  }
  .projects-list .button:hover {
    right: auto;
  }
}
.projects-list .group-right, .projects-list .group-left {
  min-height: 430px;
}
@media (max-width: 1083px) {
  .projects-list .group-right, .projects-list .group-left {
    min-height: 530px;
  }
}
@media (max-width: 768px) {
  .projects-list .group-right, .projects-list .group-left {
    min-height: 350px;
  }
}
.projects-list .group-right, .projects-list .group-left {
  text-align: left;
}
@media (max-width: 768px) {
  .projects-list .group-right, .projects-list .group-left {
    float: none;
    width: 100%;
  }
}

.node-type-project .field-name-body {
  max-width: 744px;
  margin: 0 0 4em;
}

.front .projects-list .views-row {
  width: 50%;
  float: left;
}
@media (max-width: 1280px) {
  .front .projects-list .views-row {
    width: 100%;
    float: none;
  }
  .front .projects-list .views-row:first-child {
    margin-bottom: 20px;
  }
}
@media (max-width: 1280px) {
  .front .projects-list .group-left, .front .projects-list .group-right {
    min-height: 350px;
  }
}

#block-views-projects-block {
  padding: 110px 0 0;
  *zoom: 1;
  text-align: center;
}
#block-views-projects-block:before, #block-views-projects-block:after {
  content: "";
  display: table;
}
#block-views-projects-block:after {
  clear: both;
}
#block-views-projects-block > h2 {
  background: #fff;
  display: inline-block;
  font-size: 37px;
  font-size: 2.3125rem;
  padding: 30px 40px 23px 40px;
  margin: 0;
}

.submitted {
  display: none;
}

.slick-next, .slick-prev {
  bottom: -27px;
  background: #233c98;
  top: auto;
  margin: 0;
  transition: all 0.3s;
  border: none;
  border-radius: 0;
  background-color: #fff200;
  color: #fff;
  color: #233c98;
  font-weight: 800;
  font-size: 24px;
  font-size: 1.5rem;
  min-width: 270px;
  cursor: pointer;
  width: auto;
  height: auto;
  line-height: 1.2em;
}
@media (max-width: 768px) {
  .slick-next, .slick-prev {
    text-indent: -9000px;
    width: 60px;
    min-width: 0;
  }
}
.slick-next:after, .slick-prev:after {
  content: "";
  width: 42px;
  height: 28px;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto 0;
}
.slick-next:before, .slick-prev:before {
  display: none;
}
.slick-next:hover, .slick-next:focus, .slick-prev:hover, .slick-prev:focus {
  opacity: 1;
  outline: none;
  background-color: #e1d71e;
  color: #233c98;
}

.slick-prev {
  padding: 16px 20px 12px 80px;
  left: 0;
}
@media (max-width: 768px) {
  .slick-prev {
    padding: 16px 20px 12px 60px;
  }
}
.slick-prev:after {
  left: 20px;
  background: url("../img/btn-arrow-blue-prev.svg") no-repeat center center;
}

.slick-next {
  right: 0;
  padding: 16px 80px 12px 20px;
}
@media (max-width: 768px) {
  .slick-next {
    padding: 16px 60px 12px 20px;
  }
}
.slick-next:after {
  right: 20px;
  background: url("../img/btn-arrow-blue.svg") no-repeat center center;
}

.slick__arrow {
  top: auto;
}

.slick-slider {
  margin-bottom: 0;
}

.slick--slider {
  margin-bottom: 100px;
}

.views-exposed-widgets .description {
  display: none;
}

.views-exposed-form {
  background: #233c98;
  padding: 25px;
  margin-bottom: 20px;
}
.views-exposed-form label {
  color: #fff;
}

.btn-download:after {
  width: 28px;
  background: url("../img/btn-download.svg") no-repeat center center;
}

.webform-client-form {
  margin-top: 50px;
}

.node--project--teaser h3 {
  color: #fff;
  font-size: 25px;
  font-size: 1.5625rem;
}

h4.cat-title {
  font-size: 25px;
  font-size: 1.5625rem;
  line-height: 1.3;
}

.cat-title {
  background: #233c98;
  color: #fff;
  text-align: center;
  padding: 20px;
  margin: 0;
  display: inline-block;
}

.cat-title-container {
  text-align: center;
}

.cat-image {
  height: 30vh;
  height: 460px;
}

.view-id-demountable_carousels .slick__arrow {
  bottom: -57px;
}

.field-name-field-plan-download, .field-name-download-plan, .field-name-enquire-about-a-demountable {
  float: left;
  margin-top: 20px;
}
@media (max-width: 600px) {
  .field-name-field-plan-download, .field-name-download-plan, .field-name-enquire-about-a-demountable {
    float: none;
  }
}

.field-name-enquire-about-a-demountable a {
  padding-right: 45px;
  background: url("../img/btn-arrow-blue-tiny.svg") no-repeat right 10px center;
  display: inline-block;
}
.field-name-enquire-about-a-demountable a:hover {
  color: #233c98;
  background: url("../img/btn-arrow-blue-tiny.svg") no-repeat right 0 center;
}

.field-name-field-plan-download a,
.field-name-download-plan a {
  padding-right: 45px;
  background: url("../img/btn-blue-download.svg") no-repeat right 10px top 3px;
  display: inline-block;
}
.field-name-field-plan-download a:hover,
.field-name-download-plan a:hover {
  color: #233c98;
  background: url("../img/btn-blue-download.svg") no-repeat right 10px top 7px;
}

.field-name-enquire-about-a-demountable {
  margin-left: 30px;
}
@media (max-width: 600px) {
  .field-name-enquire-about-a-demountable {
    margin-left: 0;
  }
}

@media (max-width: 768px) {
  .block .view-demountable-carousels {
    margin-bottom: 90px;
  }
}

/* CAROUSEL*/
.view-demountable-carousels nav.slick__arrow {
  *zoom: 1;
}
.view-demountable-carousels nav.slick__arrow:before, .view-demountable-carousels nav.slick__arrow:after {
  content: "";
  display: table;
}
.view-demountable-carousels nav.slick__arrow:after {
  clear: both;
}
.view-demountable-carousels .slick-dots {
  position: static;
}
.view-demountable-carousels .slick-dots li button:before {
  color: #233c98;
  font-size: 12px;
  line-height: 10px;
}
@media (min-width: 1281px) {
  #block-block-1 .content ul li {
    width: 100%;
  }
}
.node-project.view-mode-teaser_less_text h3 {
  color: white;
}