@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 */
/* ---------- 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 {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  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: "opensans", 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: 16; }

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"] {
  -webkit-box-sizing: border-box;
  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;
  @each $breakpoint in $slicer-breakpoint-names {
    $i: index($slicer-breakpoint-names, $breakpoint);
    @media (min-width: nth($slicer-breakpoints, $i)) {
      content: nth($slicer-breakpoint-names, $i);
    }
  } 
}
*/
/**
 * Typography
 */
@font-face {
  font-family: 'opensans';
  src: url("../fonts/opensans-bold-webfont.eot");
  src: url("../fonts/opensans-bold-webfont.eot?#iefix") format("embedded-opentype"), url("../fonts/opensans-bold-webfont.woff2") format("woff2"), url("../fonts/opensans-bold-webfont.woff") format("woff"), url("../fonts/opensans-bold-webfont.ttf") format("truetype"), url("../fonts/opensans-bold-webfont.svg#open_sansbold") format("svg");
  font-weight: 300;
  font-style: normal; }

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

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

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

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: "opensans", Helvetica, Arial, sans-serif; }

h3, h4, h5, h6 {
  font-weight: 200; }

body {
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.8;
  font-weight: 100; }

h1 {
  font-size: 36px;
  font-size: 2.25rem;
  line-height: 1.3;
  color: #020296;
  margin: .67em 0;
  text-transform: uppercase; }

h2 {
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 1.3;
  color: #1f2334;
  margin: .83em 0; }

h3 {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.3;
  color: #020296;
  margin: 1em 0; }

h4 {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.3;
  color: #020296;
  margin: 1.33em 0; }

h5 {
  font-size: 12px;
  font-size: 0.75rem;
  color: #1f2334;
  margin: 1.67em 0; }

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

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

b, strong {
  font-weight: 700; }

dfn {
  font-style: italic; }

hr {
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  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: 16px;
  font-size: 1rem; }

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: 14px;
  font-size: 0.875rem; }

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

sub, sup {
  font-size: 14px;
  font-size: 0.875rem;
  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; }
  ul li {
    list-style-position: inside; }

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 ---------- */
blockquote {
  margin: 2.5em 0;
  border-left: 10px solid #020296;
  padding: 0 2.5em;
  font-weight: 200;
  color: #1f2334;
  font-size: 20px;
  font-size: 1.25rem; }

/*
 * Buttons
 */
.button,
input[type=submit] {
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  display: inline-block;
  padding: 15px 25px 13px;
  border-radius: 0;
  color: #1f2334;
  border: 2px solid #1f2334;
  text-transform: uppercase;
  font-weight: 300;
  font-size: 15px;
  font-size: 0.9375rem;
  min-width: 187px;
  text-align: center; }

.button:hover,
input[type=submit]:hover,
.button:focus {
  background-color: #020296;
  border-color: #020296;
  color: #fff;
  text-decoration: none; }

.easy-breadcrumb {
  font-size: 15px;
  font-size: 0.9375rem;
  font-weight: 200; }
  .easy-breadcrumb a.easy-breadcrumb_segment-front {
    text-indent: -9000px;
    width: 16px;
    height: 18px;
    background: url("../img/icon-home.svg") no-repeat center bottom;
    display: inline-block; }
    .easy-breadcrumb a.easy-breadcrumb_segment-front:hover {
      border: none;
      padding: 0; }
  .easy-breadcrumb a:hover {
    border-bottom: 2px solid #020296;
    padding-bottom: 3px;
    color: #020296; }

.easy-breadcrumb_segment-separator {
  padding: 0 3px; }

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

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

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

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

small {
  font-size: 14px;
  font-size: 0.875rem; }

/* 
// Using jeet.gs


.layout-row {
	@include cf();
}
body.cke_editable {
	padding: 20px;
	.layout-row {
		padding: 10px;
		margin: 0 -10px 20px;
		border: 1px dashed pink;
	}
	.layout-row > div {
		border: 1px dashed #a5d3e4;
	}
	table {
		td {
			border: 1px dashed #ccc;
		}
	}
}
@include from(tablet-l) {
	.col-one-half {
		@include col(1/2, $gutter: 3);
	}
	.col-one-third {
		@include col(1/3, $gutter: 3);
	}
	.col-two-thirds {
		@include col(2/3, $gutter: 3);
	}	
	.col-one-quarter {
		@include col(1/4, $gutter: 3);
	}
}

*/
/*
 * 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: 2px;
  color: #1f2334;
  font-size: 16;
  width: 100%;
  max-width: 500px;
  outline: none;
  font-weight: 200; }
  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: 18px;
  font-size: 1.125rem;
  font-weight: 600;
  border-bottom: 1px solid #aab1c5;
  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: #1f2334;
  opacity: 1 !important; }

::-webkit-input-placeholder {
  color: #1f2334;
  opacity: 1 !important; }

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

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

:-ms-input-placeholder {
  color: #1f2334;
  opacity: 1 !important; }

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

input[type="submit"], .form-submit {
  background-color: transparent;
  cursor: pointer; }
  .views-reset-button input[type="submit"], .views-reset-button .form-submit {
    background-color: transparent; }
    .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 {
      background-color: #020296; }

.form-managed-file .form-submit {
  background-color: transparent; }
  .form-managed-file .form-submit:hover {
    background-color: #1f2334; }

.description {
  font-size: 14px;
  font-size: 0.875rem;
  color: #586494;
  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 {
    -webkit-box-shadow: none;
    box-shadow: none;
    border: 1px solid #aab1c5;
    padding: 10px;
    border-radius: 0; }
  .webform-client-form .form-item input[readonly="readonly"] {
    background-color: #fcfcfc;
    border-color: #aab1c5; }

.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: "opensans", 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 #aab1c5;
  border-radius: 3px;
  -webkit-box-shadow: 0 0 25px #f2f2f2;
  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: #1f2334;
      background: #fff;
      border-top: 1px solid #aab1c5;
      border-left: 1px solid #aab1c5;
      border-bottom: 1px solid #aab1c5;
      display: inline-block;
      padding: 5px 14px; }
      .item-list .pager a:hover {
        background: #1f2334;
        border-color: #1f2334;
        color: #fff;
        text-decoration: none; }
      .item-list .pager a:active {
        background: #999999; }
    .item-list .pager .pager-ellipsis {
      background: #fff;
      border-top: 1px solid #aab1c5;
      border-left: 1px solid #aab1c5;
      border-bottom: 1px solid #aab1c5;
      display: inline-block;
      padding: 5px 12px;
      /*  2 px less */ }
    .item-list .pager .last {
      border-right: 1px solid #aab1c5; }
    .item-list .pager .pager-current {
      background: #777;
      border-top: 1px solid #aab1c5;
      border-left: 1px solid #aab1c5;
      border-bottom: 1px solid #aab1c5;
      color: #fff;
      padding: 6px 15px;
      margin-top: -1px; }

.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: #020296;
    /* 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: #010164;
    color: #fff; }

.search-results {
  list-style-type: none;
  padding: 0; }
  .search-results a {
    font-weight: 700; }
  .search-results .search-snippet {
    font-size: 15; }

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  -webkit-box-sizing: border-box;
  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-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 {
  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;
    background-color: #020296;
    color: #fff;
    font-weight: 100; }
  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: 15px 20px;
    vertical-align: top;
    border-bottom: 1px solid #aab1c5; }
  table > thead > tr > th {
    vertical-align: bottom;
    border-bottom: 2px solid #aab1c5; }
  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 #aab1c5; }
  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 #aab1c5; }
  .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 #aab1c5;
    padding: 15px 20px; }

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

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

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

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

.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 20px;
  vertical-align: top;
  border: 0; }

/**
 * Tabs
 */
.tabs.primary {
  list-style: none;
  padding-left: 0;
  border-bottom: 1px solid #aab1c5; }
  .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 #aab1c5;
      border-left: 1px solid #aab1c5;
      border-right: 1px solid #aab1c5;
      border-bottom: 0 solid white;
      background: white; }

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

.no-sidebars #page-content .main {
  width: 100%;
  max-width: 100%; }

@media (min-width: 769px) {
  .one-sidebar.sidebar-first .main {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 74%;
    margin-left: 0%;
    margin-right: 4%; }
    .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: 74%;
    margin-left: 0%;
    margin-right: 4%; }
    .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: 22%;
    margin-left: 0%;
    margin-right: 4%; }
    .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: 22%;
    margin-left: 0%;
    margin-right: 4%; }
    .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: 48%;
    margin-left: 0%;
    margin-right: 4%;
    position: relative;
    left: 26%; }
    .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: 22%;
    margin-left: 0%;
    margin-right: 4%;
    position: relative;
    left: -52%; }
    .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: 22%;
    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%; } }

#page-content .main {
  max-width: 850px; }

.menu {
  padding: 0;
  margin: 0; }

#block-block-2 {
  float: right; }

#primary-navigation {
  float: right;
  *zoom: 1;
  float: left;
  clear: none;
  text-align: inherit;
  width: 75%;
  margin-left: 0%;
  margin-right: 0%; }
  #primary-navigation:before, #primary-navigation:after {
    content: '';
    display: table; }
  #primary-navigation:after {
    clear: both; }
  #primary-navigation .menu {
    display: inline-block;
    float: right; }
    #primary-navigation .menu li {
      float: left; }
    #primary-navigation .menu a {
      font-weight: 200;
      text-transform: uppercase;
      font-size: 18px;
      font-size: 1.125rem;
      padding: 45px 25px 30px;
      display: block;
      outline: none; }
      @media (max-width: 1200px) {
        #primary-navigation .menu a {
          padding-left: 15px;
          padding-right: 15px; } }
      #primary-navigation .menu a:focus, #primary-navigation .menu a:hover, #primary-navigation .menu a.active {
        background: #020296;
        color: #fff; }

#nav-trigger {
  display: none;
  position: absolute;
  width: 58px;
  height: 79px;
  left: 50px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  cursor: pointer; }
  @media (max-width: 600px) {
    #nav-trigger {
      left: 10%; } }
  @media (max-width: 480px) {
    #nav-trigger {
      left: 5%;
      width: 40px; } }
  #nav-trigger.open span {
    background: #fff; }
  #nav-trigger.open span:after {
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    top: 0; }
  #nav-trigger.open span:before {
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
    top: 0; }
  #nav-trigger span {
    width: 54px;
    height: 10px;
    background: #0909bd;
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    -webkit-transition: all 0.2s ease-out;
    -o-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
    border-radius: 10px; }
    @media (max-width: 480px) {
      #nav-trigger span {
        width: 40px;
        height: 8px; } }
  #nav-trigger span:before {
    content: "";
    position: absolute;
    top: -19px;
    width: 54px;
    height: 10px;
    background: #0909bd;
    -webkit-transition: all 0.2s ease-out;
    -o-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
    border-radius: 10px; }
    @media (max-width: 480px) {
      #nav-trigger span:before {
        width: 40px;
        height: 8px;
        top: -15px; } }
  #nav-trigger span:after {
    content: "";
    position: absolute;
    bottom: -19px;
    width: 54px;
    height: 10px;
    background: #0909bd;
    -webkit-transition: all 0.2s ease-out;
    -o-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
    border-radius: 10px; }
    @media (max-width: 480px) {
      #nav-trigger span:after {
        width: 40px;
        height: 8px;
        bottom: -15px; } }
  @media (max-width: 1024px) {
    #nav-trigger {
      display: block; } }

@media (max-width: 1024px) {
  #primary-navigation .menu {
    display: none; } }

#nav-mobile {
  top: -100%;
  position: fixed;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  z-index: 950;
  left: 0;
  right: 0;
  overflow: auto; }
  #nav-mobile a {
    color: #fff;
    text-transform: uppercase;
    font-size: 23px;
    font-size: 1.4375rem;
    padding: 30px 20px;
    display: block;
    position: relative;
    font-weight: 700;
    display: block;
    text-align: center; }
  #nav-mobile ul {
    margin: 0;
    padding: 0; }

#nav-mobile.menu-open {
  top: 170px;
  background: #1f2334;
  bottom: 0; }

header.stick #nav-mobile.menu-open {
  top: 100px; }

/*
 * Design
 *
 * Include all your design elements in this file.
 */
body {
  background: #fff;
  color: #1f2334; }

a {
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  color: #020296;
  text-decoration: none; }
  a:hover, a:focus {
    color: #1f2334; }

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

#logo {
  margin: 0;
  line-height: 0;
  *zoom: 1;
  float: left;
  clear: none;
  text-align: inherit;
  width: 25%;
  margin-left: 0%;
  margin-right: 0%; }
  #logo:before, #logo:after {
    content: '';
    display: table; }
  #logo:after {
    clear: both; }
  @media (max-width: 1024px) {
    #logo {
      position: absolute;
      -webkit-transform-style: preserve-3d;
      transform-style: preserve-3d;
      top: 50%;
      left: 50%;
      -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
      transform: translate(-50%, -50%);
      width: auto; } }
  #logo a {
    padding-top: 15px;
    display: block; }
    @media (max-width: 1024px) {
      #logo a {
        padding: 0; } }
  #logo img {
    max-width: 265px; }

header {
  border-bottom: 5px solid #020296;
  position: relative;
  z-index: 999;
  background: #fff;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s; }
  @media (max-width: 1024px) {
    header {
      min-height: 170px;
      top: 0; } }

header.stick {
  position: fixed;
  width: 100%;
  top: 0; }
  @media (max-width: 1024px) {
    header.stick {
      min-height: 100px; } }

#block-block-2 p {
  margin: 0; }

#block-block-2 .content a {
  color: #020296;
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 20px;
  font-weight: 200;
  padding: 49px 20px 30px 63px;
  display: block;
  position: relative;
  outline: none; }
  @media (max-width: 1024px) {
    #block-block-2 .content a {
      text-indent: -9000px;
      padding: 0;
      position: absolute;
      top: 50%;
      right: 50px;
      -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
      transform: translateY(-50%);
      width: 58px;
      height: 58px; } }
  @media (max-width: 600px) {
    #block-block-2 .content a {
      right: 10%; } }
  @media (max-width: 480px) {
    #block-block-2 .content a {
      right: 5%;
      width: 40px;
      height: 40px; } }
  #block-block-2 .content a:before {
    content: "";
    background: url("../img/icon-phone.svg") no-repeat center center;
    width: 29px;
    height: 29px;
    position: absolute;
    top: 42px;
    bottom: 0;
    left: 22px; }
    @media (max-width: 1024px) {
      #block-block-2 .content a:before {
        width: 58px;
        height: 58px;
        background-size: 100%;
        top: 0;
        left: 0; } }
    @media (max-width: 480px) {
      #block-block-2 .content a:before {
        width: 40px;
        height: 40px; } }

@media (max-width: 480px) {
  figure {
    margin-bottom: 20px; } }

.group-header {
  display: table;
  position: relative; }

.field-name-title, .inner-image {
  width: 50%;
  display: table-cell; }

.inner-image {
  min-height: 220px; }

.not-front .group-header .field-name-title .field-item {
  background: url("../img/repeat-light-blue.jpg") repeat left top;
  overflow: auto; }

#page-content {
  padding-top: 50px;
  padding-bottom: 50px; }

.title-image-container {
  display: table;
  width: 100%; }
  .title-image-container .page-title, .title-image-container .page-image {
    display: table-cell;
    width: 50%;
    vertical-align: middle;
    height: 221px;
    border-bottom: 1px solid #020296; }
    @media (max-width: 768px) {
      .title-image-container .page-title, .title-image-container .page-image {
        display: block;
        width: 100%;
        position: relative; } }
  .title-image-container .page-image {
    background-size: cover;
    background-position: center center; }
  .title-image-container .page-title {
    background: url("../img/repeat-light-blue.jpg") repeat left top; }
    @media (max-width: 768px) {
      .title-image-container .page-title {
        height: auto; } }
    .title-image-container .page-title h1 {
      color: #fff;
      padding: 0 50px;
      margin: 0;
      text-align: right; }
      @media (max-width: 768px) {
        .title-image-container .page-title h1 {
          padding: 40px;
          font-size: 30px;
          font-size: 1.875rem;
          text-align: center; } }
      @media (max-width: 320px) {
        .title-image-container .page-title h1 {
          padding: 40px 20px; } }
  .title-image-container .page-title-inner {
    max-width: 50%;
    min-width: 50%;
    float: right; }
    @media (max-width: 1200px) {
      .title-image-container .page-title-inner {
        max-width: none;
        min-width: 0; } }
    @media (max-width: 768px) {
      .title-image-container .page-title-inner {
        float: none; } }

.secondary-heading-container {
  background: #cacaca;
  padding: 60px 20px;
  bottom: 0;
  width: 100%;
  margin: 0; }
  .secondary-heading-container .secondary-heading {
    max-width: 1230px;
    margin: 0 auto;
    color: #373737;
    font-size: 30px;
    font-size: 1.875rem;
    text-align: center;
    font-weight: 100; }

#block-views-home-banners-block .ds-1col {
  max-width: 1230px;
  margin: 0 auto;
  position: relative;
  min-height: 517px; }

#block-views-home-banners-block .banner-title {
  max-width: 50%;
  position: absolute;
  right: 0;
  top: 50%;
  bottom: 0;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  text-align: right; }
  @media (max-width: 768px) {
    #block-views-home-banners-block .banner-title {
      max-width: none;
      left: 20px; } }

#block-views-home-banners-block h2 {
  max-width: 60%;
  margin: 0 auto;
  text-align: right;
  color: #020296;
  font-size: 39px;
  font-size: 2.4375rem;
  display: inline-block;
  font-weight: 100;
  display: inline;
  padding: 5px 20px 10px 0;
  background-color: rgba(255, 255, 255, 0.65);
  -webkit-box-shadow: -0.5em 0 0 rgba(255, 255, 255, 0.65), 0.33em 0 0 rgba(255, 255, 255, 0.65);
  box-shadow: -0.5em 0 0 rgba(255, 255, 255, 0.65), 0.33em 0 0 rgba(255, 255, 255, 0.65);
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  text-align: right;
  line-height: 2em; }
  @media (max-width: 768px) {
    #block-views-home-banners-block h2 {
      font-size: 35px;
      font-size: 2.1875rem; } }

#front-capability {
  text-align: center;
  padding: 65px 0 55px; }
  #front-capability h2 {
    text-transform: uppercase;
    font-size: 36px;
    font-size: 2.25rem;
    margin: 0; }

#block-block-6 p {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 200;
  margin: 1.7em 0; }
  #block-block-6 p a {
    font-weight: bold;
    color: #1f2334; }
    #block-block-6 p a:hover {
      color: #020296; }

#front-find-out-more {
  width: 100%; }
  @media (min-width: 601px) {
    #front-find-out-more {
      display: table; } }
  #front-find-out-more .block {
    display: table-cell;
    width: 50%;
    text-align: center;
    vertical-align: bottom;
    padding: 50px 20px; }
    @media (max-width: 768px) {
      #front-find-out-more .block {
        width: 100%;
        display: block; } }

#block-block-3 {
  background: #020296 repeat center center; }
  #block-block-3 h2, #block-block-3 a {
    color: #fff; }
  #block-block-3 h2 {
    font-size: 35px;
    font-size: 2.1875rem;
    text-transform: uppercase; }
  #block-block-3 .button {
    border-color: #fff; }
    #block-block-3 .button:hover {
      background: #fff;
      color: #020296; }

#block-block-4 {
  background: #f9f9f9; }
  #block-block-4 h2 {
    font-size: 28px;
    font-size: 1.75rem;
    font-style: italic;
    font-weight: 100; }

.ds-2col {
  display: table;
  background: #fff;
  width: 100%; }
  .ds-2col .group-left, .ds-2col .group-right {
    display: table-cell;
    float: none; }

#front-our-expertise {
  background: #eaeaea;
  padding-bottom: 109px; }
  #front-our-expertise h2 {
    text-transform: uppercase;
    font-size: 40px;
    font-size: 2.5rem;
    text-align: center;
    margin: 1.8em 0; }
  @media (max-width: 600px) {
    #front-our-expertise .field-name-title {
      width: 100%;
      text-align: center;
      display: block; } }
  #front-our-expertise .ds-2col {
    display: table;
    background: #fff;
    width: 100%;
    height: 306px;
    position: relative; }
    @media (max-width: 600px) {
      #front-our-expertise .ds-2col {
        display: block;
        min-height: 550px; } }
    #front-our-expertise .ds-2col .group-left, #front-our-expertise .ds-2col .group-right {
      display: table-cell;
      float: none; }
      @media (max-width: 600px) {
        #front-our-expertise .ds-2col .group-left, #front-our-expertise .ds-2col .group-right {
          display: block;
          width: 100%; } }
    #front-our-expertise .ds-2col .group-left {
      padding: 30px;
      vertical-align: middle;
      text-align: center;
      background: #fff; }
      @media (max-width: 600px) {
        #front-our-expertise .ds-2col .group-left {
          position: absolute;
          bottom: 0;
          z-index: 2; } }
    @media (max-width: 600px) {
      #front-our-expertise .ds-2col .group-right {
        position: absolute;
        top: 0;
        min-height: 300px; } }
  #front-our-expertise .view h3 {
    font-size: 20px;
    font-size: 1.25rem;
    margin: 0;
    text-transform: none;
    color: #1f2334;
    text-align: center;
    font-weight: 300; }
  #front-our-expertise .view .field-name-title {
    width: auto;
    display: block; }
  #front-our-expertise .view li {
    width: 48.25%;
    float: left;
    margin-bottom: 3.5%; }
    @media (max-width: 768px) {
      #front-our-expertise .view li {
        width: 100%; } }
  #front-our-expertise .view li:nth-child(odd) {
    margin-right: 3.5%; }
  #front-our-expertise .view li:nth-child(3) {
    clear: both; }
  #front-our-expertise .view .item-list ul {
    list-style: none;
    margin: 0;
    padding: 0; }

@media (max-width: 768px) {
  #front-case-study {
    padding-bottom: 70px; } }

#front-case-study .front-case-study {
  display: table;
  height: 625px;
  width: 100%; }
  @media (max-width: 768px) {
    #front-case-study .front-case-study {
      height: 700px; } }
  @media (max-width: 320px) {
    #front-case-study .front-case-study {
      height: 810px; } }

#front-case-study .case-right, #front-case-study .case-left {
  display: table-cell;
  width: 50%; }
  @media (max-width: 768px) {
    #front-case-study .case-right, #front-case-study .case-left {
      display: block;
      width: 100%;
      position: absolute;
      text-align: center; } }

#front-case-study .case-left {
  vertical-align: top;
  padding-bottom: 50px; }
  @media (max-width: 768px) {
    #front-case-study .case-left {
      z-index: 2;
      bottom: 0; } }

@media (max-width: 768px) {
  #front-case-study .case-right {
    z-index: 1;
    top: 0;
    left: 0;
    right: 0;
    min-height: 300px; } }

@media (max-width: 480px) {
  #front-case-study .case-right {
    min-height: 420px; } }

#front-case-study .front-title-case-study {
  background: url("../img/repeat-dark-gray.jpg") repeat center center;
  overflow: hidden; }

#front-case-study h2 {
  margin: 0;
  display: block;
  padding: 70px 0;
  color: #fff;
  text-transform: uppercase;
  font-size: 36px;
  font-size: 2.25rem; }
  @media (max-width: 768px) {
    #front-case-study h2 {
      text-align: center;
      padding: 35px 0; } }
  @media (max-width: 480px) {
    #front-case-study h2 {
      font-size: 28px;
      font-size: 1.75rem;
      padding: 30px 0; } }

#front-case-study .inner-case {
  max-width: 635px;
  float: right;
  padding-right: 50px;
  min-width: 635px; }
  @media (max-width: 1400px) {
    #front-case-study .inner-case {
      max-width: none;
      min-width: calc(100% - 100px);
      padding: 0 50px;
      float: left; } }
  @media (max-width: 768px) {
    #front-case-study .inner-case {
      float: none;
      width: 100%; } }
  #front-case-study .inner-case.bottom {
    background: #fff; }
    @media (max-width: 768px) {
      #front-case-study .inner-case.bottom {
        padding: 0.4em 20px 0 20px; } }

#front-case-study p {
  font-size: 20px;
  font-size: 1.25rem; }
  @media (max-width: 768px) {
    #front-case-study p {
      margin: 0.7em 0; } }

#front-case-study .slick-next {
  position: absolute;
  left: calc(50% + 38px);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.7);
  top: 10px;
  bottom: 0;
  height: 100%;
  z-index: 20;
  width: 78px; }
  @media (max-width: 768px) {
    #front-case-study .slick-next {
      left: 0;
      right: 0;
      margin: 0 auto;
      bottom: -30px;
      top: initial;
      height: 50px;
      -webkit-transform: none;
      -ms-transform: none;
      transform: none; } }
  #front-case-study .slick-next:before {
    position: absolute;
    content: "";
    top: 0;
    bottom: 0;
    margin: auto;
    left: 0;
    right: 0;
    width: 41px;
    height: 39px;
    background-size: 100%;
    background: url("../img/icon-change-slide.svg") no-repeat center center;
    z-index: 22;
    opacity: 1;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s; }
  #front-case-study .slick-next:hover:before {
    -webkit-transform: rotate(-360deg);
    -ms-transform: rotate(-360deg);
    transform: rotate(-360deg); }

#front-case-study .slick {
  position: relative; }

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

#footer-1 {
  background: #1f2334;
  color: #fff;
  padding: 40px 0 100px; }
  #footer-1 h2 {
    font-size: 36px;
    font-size: 2.25rem;
    text-transform: uppercase;
    color: #fff; }
    @media (max-width: 480px) {
      #footer-1 h2 {
        font-size: 28px;
        font-size: 1.75rem; } }

#block-block-1 {
  *zoom: 1;
  float: left;
  clear: none;
  text-align: inherit;
  width: 26.66667%;
  margin-left: 0%;
  margin-right: 10%; }
  #block-block-1:before, #block-block-1:after {
    content: '';
    display: table; }
  #block-block-1:after {
    clear: both; }
  #block-block-1:last-child {
    margin-right: 0%; }
  @media (max-width: 1024px) {
    #block-block-1 {
      display: block;
      clear: both;
      float: none;
      width: 100%;
      margin-left: auto;
      margin-right: auto;
      margin-bottom: 50px;
      text-align: center; }
      #block-block-1:first-child {
        margin-left: auto; }
      #block-block-1:last-child {
        margin-right: auto; } }
  #block-block-1 > .content {
    font-size: 16px;
    font-size: 1rem; }
  #block-block-1 a {
    color: #fff; }
    #block-block-1 a:hover {
      color: #020296; }
  #block-block-1 ul {
    margin: 0;
    padding: 0;
    list-style: none; }
  #block-block-1 li {
    font-weight: 300; }
    #block-block-1 li:first-child {
      margin-bottom: 18px; }
  #block-block-1 p {
    font-weight: 200; }

#block-webform-client-block-63 {
  *zoom: 1;
  float: left;
  clear: none;
  text-align: inherit;
  width: 63.33333%;
  margin-left: 0%;
  margin-right: 10%; }
  #block-webform-client-block-63:before, #block-webform-client-block-63:after {
    content: '';
    display: table; }
  #block-webform-client-block-63:after {
    clear: both; }
  #block-webform-client-block-63:last-child {
    margin-right: 0%; }
  @media (max-width: 1024px) {
    #block-webform-client-block-63 {
      display: block;
      clear: both;
      float: none;
      width: 100%;
      margin-left: auto;
      margin-right: auto;
      text-align: center; }
      #block-webform-client-block-63:first-child {
        margin-left: auto; }
      #block-webform-client-block-63:last-child {
        margin-right: auto; } }
  #block-webform-client-block-63 .form-text {
    float: left;
    width: 48.5%;
    margin-bottom: 3%; }
  #block-webform-client-block-63 .webform-component--name input {
    margin-right: 3%; }
  #block-webform-client-block-63 .form-textarea {
    float: left;
    max-width: none;
    width: 84%;
    height: 80px; }
    @media (max-width: 1024px) {
      #block-webform-client-block-63 .form-textarea {
        width: 77%; } }
    @media (max-width: 480px) {
      #block-webform-client-block-63 .form-textarea {
        width: 100%; } }
  #block-webform-client-block-63 .form-actions {
    float: right;
    width: 13%;
    height: 80px;
    display: block;
    position: relative; }
    @media (max-width: 1024px) {
      #block-webform-client-block-63 .form-actions {
        width: 20%; } }
    @media (max-width: 480px) {
      #block-webform-client-block-63 .form-actions {
        width: 100%;
        margin-top: 3%;
        height: 50px; } }
  #block-webform-client-block-63 .form-submit, #block-webform-client-block-63 .ajax-progress-throbber {
    border-color: #fff;
    min-width: 0;
    color: #fff;
    positon: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
    padding: 0; }
    @media (max-width: 480px) {
      #block-webform-client-block-63 .form-submit, #block-webform-client-block-63 .ajax-progress-throbber {
        margin-top: 3%; } }
    #block-webform-client-block-63 .form-submit:hover, #block-webform-client-block-63 .ajax-progress-throbber:hover {
      border-color: #fff;
      background: #1f2334; }
  #block-webform-client-block-63 .ajax-progress-throbber {
    position: absolute;
    background: #1f2334;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    top: 0;
    bottom: 0;
    margin: auto;
    display: block;
    z-index: 100;
    border: 2px solid #fff; }
    #block-webform-client-block-63 .ajax-progress-throbber .throbber {
      background: transparent url("../img/loading.gif") no-repeat center center;
      position: absolute;
      top: 0;
      bottom: 0;
      left: 0;
      right: 0;
      margin: auto;
      width: 30px;
      height: 30px; }

#footer-2 {
  background: #000;
  padding: 30px 0 20px; }

#block-menu-block-4 {
  *zoom: 1;
  float: left;
  clear: none;
  text-align: inherit;
  width: 48%;
  margin-left: 0%;
  margin-right: 4%;
  font-size: 12px;
  font-size: 0.75rem; }
  #block-menu-block-4:before, #block-menu-block-4:after {
    content: '';
    display: table; }
  #block-menu-block-4:after {
    clear: both; }
  #block-menu-block-4:last-child {
    margin-right: 0%; }
  @media (max-width: 600px) {
    #block-menu-block-4 {
      display: block;
      clear: both;
      float: none;
      width: 100%;
      margin-left: auto;
      margin-right: auto; }
      #block-menu-block-4:first-child {
        margin-left: auto; }
      #block-menu-block-4:last-child {
        margin-right: auto; } }
  #block-menu-block-4 ul {
    margin: 0;
    padding: 5px 0 0 0;
    list-style: none; }
  #block-menu-block-4 li {
    float: left;
    font-weight: 200;
    letter-spacing: 1px; }
    #block-menu-block-4 li a {
      color: #fff; }
      #block-menu-block-4 li a:hover {
        color: #020296; }
    #block-menu-block-4 li:after {
      content: "|";
      color: #fff;
      padding: 0 6px; }
    #block-menu-block-4 li:last-child:after {
      display: none; }

.captovate {
  *zoom: 1;
  float: left;
  clear: none;
  text-align: inherit;
  width: 48%;
  margin-left: 0%;
  margin-right: 4%;
  text-align: right;
  margin: 0; }
  .captovate:before, .captovate:after {
    content: '';
    display: table; }
  .captovate:after {
    clear: both; }
  .captovate:last-child {
    margin-right: 0%; }
  @media (max-width: 600px) {
    .captovate {
      display: block;
      clear: both;
      float: none;
      width: 100%;
      margin-left: auto;
      margin-right: auto;
      text-align: left;
      margin-top: 20px; }
      .captovate:first-child {
        margin-left: auto; }
      .captovate:last-child {
        margin-right: auto; } }
  .captovate a {
    font-size: 18px;
    font-size: 1.125rem;
    letter-spacing: 2px;
    font-weight: 200;
    color: #fff; }
    .captovate a:hover {
      color: #020296; }

#quotes {
  background: #020296;
  color: #fff;
  padding: 65px 0 110px; }
  #quotes .content {
    max-width: 1230px;
    margin: 0 auto;
    text-align: center;
    padding: 0 20px; }
  #quotes p {
    position: relative;
    padding: 35px 110px 1.5em;
    font-size: 20px;
    font-size: 1.25rem;
    margin: 0; }
    @media (max-width: 600px) {
      #quotes p {
        padding: 110px 0;
        margin-bottom: 1.5em; } }
  #quotes p:before {
    content: "";
    background: url("../img/left-quote.png") no-repeat center center;
    background-size: contain;
    width: 106px;
    height: 91px;
    position: absolute;
    left: 0;
    top: 0; }
    @media (max-width: 600px) {
      #quotes p:before {
        left: 0;
        right: 0;
        margin: 0 auto; } }
  #quotes p:after {
    content: "";
    background: url("../img/right-quote.png") no-repeat center center;
    background-size: contain;
    width: 106px;
    height: 91px;
    position: absolute;
    right: 0; }
    @media (max-width: 600px) {
      #quotes p:after {
        bottom: 0;
        left: 0;
        right: 0;
        margin: 0 auto; } }
  #quotes span {
    display: block;
    font-size: 14px;
    font-size: 0.875rem;
    letter-spacing: 1px; }
  #quotes .slick {
    position: relative; }
  #quotes .content {
    position: relative; }
  #quotes .slick-next {
    position: absolute;
    left: calc(50% - 41px);
    z-index: 20;
    width: 78px;
    height: 50px;
    bottom: 0;
    top: inherit; }
    #quotes .slick-next:before {
      position: absolute;
      content: "";
      bottom: 0;
      margin: auto;
      left: 0;
      right: 0;
      width: 41px;
      height: 39px;
      background-size: 100%;
      background: url("../img/icon-change-slide-white.svg") no-repeat center center;
      z-index: 22;
      opacity: 1;
      -webkit-transition: all 0.5s;
      -o-transition: all 0.5s;
      transition: all 0.5s; }
    #quotes .slick-next:hover:before {
      -webkit-transform: rotate(-360deg);
      -ms-transform: rotate(-360deg);
      transform: rotate(-360deg); }
  #quotes .slick__arrow {
    position: absolute;
    left: 0;
    right: 0;
    height: 39px;
    bottom: -54px;
    top: inherit; }

.quote-author {
  text-transform: uppercase;
  font-weight: 300; }

.quote-company {
  font-style: italic; }

.sidebar h2 {
  display: inline-block;
  font-size: 20px;
  font-size: 1.25rem; }

.sidebar .menu {
  list-style: none; }

.sidebar li {
  line-height: 2.25em;
  font-size: 18px;
  font-size: 1.125rem; }

.sidebar li a:hover, .sidebar li a.active {
  padding-bottom: 4px;
  border-bottom: 2px solid #020296;
  color: #020296; }

.page-node-84 #page-content {
  display: none; }

.page-node-84 .block h2 {
  display: none; }

.page-node-84 #front-our-expertise {
  padding: 100px 0 70px; }

.services-lists {
  background: #eaeaea;
  padding: 100px 0; }

.service-list {
  display: table;
  width: 100%;
  max-width: 1230px;
  margin: 0 auto; }
  @media (max-width: 1400px) {
    .service-list {
      padding: 0 20px; } }

.service-item {
  display: table-cell;
  vertical-align: top;
  width: 48%;
  horizontal-align: right; }
  @media (max-width: 768px) {
    .service-item {
      width: 100%;
      display: block;
      margin-bottom: 20px; } }
  .service-item p {
    font-size: 14px;
    font-size: 0.875rem;
    line-height: 2em;
    font-weight: 200; }
  .service-item p:last-child {
    margin-bottom: 0; }
  .service-item h3 {
    font-weight: 300;
    font-size: 20px;
    font-size: 1.25rem;
    margin: 0 0 1em 0; }

.service-item-1 h3 {
  position: relative;
  padding-top: 1em; }

.service-item-2 h3 {
  position: relative;
  padding-top: 105px; }
  .service-item-2 h3:before {
    content: "";
    position: absolute;
    width: 59px;
    height: 91px;
    background: url("../img/icon-installations.jpg") no-repeat center center;
    top: 0;
    left: 0;
    right: 0;
    margin: 0 auto; }

.service-item-3 h3 {
  position: relative;
  padding-top: 105px; }
  .service-item-3 h3:before {
    content: "";
    position: absolute;
    width: 90px;
    height: 86px;
    background: url("../img/icon-emergency-repairs.jpg") no-repeat center center;
    top: 0;
    left: 0;
    right: 0;
    margin: 0 auto; }

.service-item-4 h3 {
  position: relative;
  padding-top: 105px; }
  .service-item-4 h3:before {
    content: "";
    position: absolute;
    width: 92px;
    height: 86px;
    background: url("../img/icon-equipment-hire.jpg") no-repeat center center;
    top: 0;
    left: 0;
    right: 0;
    margin: 0 auto; }

.service-list-1 {
  margin-bottom: 2.5%; }
  @media (max-width: 768px) {
    .service-list-1 {
      margin-bottom: 0; } }

.service-item:not(.spacer) {
  background: #fff;
  padding: 40px 70px; }
  @media (max-width: 600px) {
    .service-item:not(.spacer) {
      padding: 40px; } }
  @media (max-width: 320px) {
    .service-item:not(.spacer) {
      padding: 40px 20px; } }

.spacer {
  width: 4%; }
  @media (max-width: 768px) {
    .spacer {
      display: none; } }

.page-node-70 #page-content {
  display: none; }

.page-node-70 .content-area-wrapper {
  background: #eaeaea; }

.page-node-70 .content-area-wrapper .block {
  max-width: 1230px;
  margin: 0 auto; }

.page-node-70 .content-area-wrapper ul {
  list-style: none;
  margin: 0;
  padding: 0; }

#block-views-case-studies-block {
  padding: 100px 20px 0; }
  #block-views-case-studies-block .content li {
    float: left;
    width: 31.33%;
    background: #fff;
    min-height: 565px;
    margin-right: 3%;
    text-align: center;
    margin-bottom: 3%; }
    @media (max-width: 1024px) {
      #block-views-case-studies-block .content li {
        width: 48.5%; } }
    @media (max-width: 600px) {
      #block-views-case-studies-block .content li {
        width: 100%;
        margin-right: 0;
        min-height: 0;
        padding-bottom: 30px; } }
  @media (max-width: 1024px) {
    #block-views-case-studies-block li:nth-child(even) {
      margin-right: 0; } }
  @media (min-width: 1025px) {
    #block-views-case-studies-block li:nth-child(3n+3) {
      margin-right: 0; } }
  #block-views-case-studies-block img {
    width: 100%;
    max-width: none; }
  #block-views-case-studies-block .case-projects-inner {
    padding: 30px 30px 0; }
  #block-views-case-studies-block h2 {
    margin-top: 0;
    font-size: 21px;
    font-size: 1.3125rem; }
    #block-views-case-studies-block h2 a {
      color: #1f2334; }
  #block-views-case-studies-block p {
    font-size: 14px;
    font-size: 0.875rem; }

#block-views-projects-block {
  padding: 0 20px 100px; }
  #block-views-projects-block h2 {
    text-transform: uppercase;
    font-size: 36px;
    font-size: 2.25rem;
    text-align: center;
    margin: 1.75em 0 1.75em; }
  #block-views-projects-block li {
    padding: 10px;
    display: table;
    width: 100%; }
  #block-views-projects-block .project-item {
    display: table-cell; }
  #block-views-projects-block .project-date {
    padding-right: 40px;
    font-weight: 200; }
  #block-views-projects-block .views-table {
    background: #eaeaea; }
    #block-views-projects-block .views-table th, #block-views-projects-block .views-table td {
      border: none; }
    #block-views-projects-block .views-table th {
      background: url("../img/repeat-light-blue.jpg") repeat center center; }
    #block-views-projects-block .views-table td {
      background: transparent; }
    #block-views-projects-block .views-table tr:nth-child(even) {
      background: rgba(255, 255, 255, 0.4); }

#gallery .slick-track {
  padding-bottom: 0; }

#gallery .slick-next, #gallery .slick-prev {
  background: #020296;
  border-radius: 0;
  width: 50px;
  height: 70px; }
  #gallery .slick-next:before, #gallery .slick-prev:before {
    content: "";
    width: 27px;
    height: 50px;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto; }

#gallery .slick-next {
  right: 0; }
  #gallery .slick-next:before {
    background: url("../img/icon-next.svg") no-repeat center center; }

#gallery .slick-prev {
  left: 0; }
  #gallery .slick-prev:before {
    background: url("../img/icon-prev.svg") no-repeat center center; }

#gallery .slick-prev.slick-disabled, #gallery .slick-next.slick-disabled {
  background: #777; }
  #gallery .slick-prev.slick-disabled:before, #gallery .slick-next.slick-disabled:before {
    opacity: .2; }

.node-type-case-study #quotes .slick__arrow {
  bottom: -80px; }

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