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

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

dfn {
  font-style: italic; }

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

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

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

iframe {
  border: 0;
  max-width: 100%; }

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

.overflow-hidden {
  overflow: hidden; }

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

body {
  line-height: 1.5;
  font-weight: 300; }
  @media (max-width: 1200px) {
    body {
      font-size: 18px;
      font-size: 1.125rem; } }
  @media (min-width: 1201px) {
    body {
      font-size: 20px;
      font-size: 1.25rem; } }

h1 {
  font-size: 44px;
  font-size: 2.75rem;
  line-height: 1.3;
  color: #6CBC56;
  margin: 0 0 1.5rem;
  font-family: "Dosis", serif;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase; }
  @media (max-width: 480px) {
    h1 {
      font-size: 36px;
      font-size: 2.25rem; } }
  h1 a {
    color: #111; }
    h1 a:hover {
      color: #6CBC56; }

h2 {
  font-size: 36px;
  font-size: 2.25rem;
  line-height: 1.3;
  color: #6CBC56;
  margin: 0 0 1.5rem;
  font-family: "Dosis", serif;
  font-weight: 600;
  text-transform: uppercase; }
  @media (max-width: 480px) {
    h2 {
      font-size: 28px;
      font-size: 1.75rem; } }
  h2 a {
    color: #111; }
    h2 a:hover {
      color: #6CBC56; }

h3 {
  font-size: 28px;
  font-size: 1.75rem;
  line-height: 1.3;
  color: #6CBC56;
  margin: 0 0 1.5rem;
  font-family: "Dosis", serif;
  font-weight: 600;
  text-transform: uppercase; }
  @media (max-width: 480px) {
    h3 {
      font-size: 22px;
      font-size: 1.375rem; } }

h4 {
  font-size: 22px;
  font-size: 1.375rem;
  line-height: 1.3;
  color: #6CBC56;
  margin: 0 0 1.5rem;
  font-family: "Dosis", serif;
  font-weight: 600;
  text-transform: uppercase; }
  @media (max-width: 480px) {
    h4 {
      font-size: 18px;
      font-size: 1.125rem; } }

p,
dl,
ol,
ul,
blockquote {
  max-width: 46.25em; }
  p + h2,
  p + h3,
  p + h4,
  dl + h2,
  dl + h3,
  dl + h4,
  ol + h2,
  ol + h3,
  ol + h4,
  ul + h2,
  ul + h3,
  ul + h4,
  blockquote + h2,
  blockquote + h3,
  blockquote + h4 {
    margin-top: 3rem; }

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

b,
strong {
  font-weight: 600; }

dfn {
  font-style: italic; }

hr {
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  height: 0; }

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

p,
pre {
  margin: 0 0 1.5rem; }

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

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: 16px;
  font-size: 1rem; }

large {
  font-size: 20px;
  font-size: 1.25rem; }

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

sup {
  top: -.5em; }

sub {
  bottom: -.25em; }

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

dd {
  margin: 0 0 1.5rem; }

ul {
  padding: 0 0 0 1.5rem;
  list-style: disc; }
  ul.rteindent1 {
    padding: 0; }

ol {
  padding: 0 0 0 1.5rem;
  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 ---------- */
/**
 * Additional styles for CKEditor Accordion module
 */
.ckeditor-accordion dd {
  padding: 1.25em 1.5em; }
  .ckeditor-accordion dd > *:last-child {
    margin-bottom: 0; }

.page-banner {
  background-size: cover;
  background-position: center center; }
  @media (max-width: 480px) {
    .page-banner {
      height: 15.625em; } }
  @media (min-width: 481px) and (max-width: 1200px) {
    .page-banner {
      height: 25em; } }
  @media (min-width: 1201px) {
    .page-banner {
      height: 31.25em; } }
  @media (max-height: 850px) {
    .page-banner {
      height: 25em; } }

blockquote {
  margin: 0 0 1.5rem 1.5rem;
  border-left: 4px solid #214B80;
  padding: 0 1.5rem; }
  blockquote p:last-child {
    margin-bottom: 0; }

.block .content *:last-child {
  margin-bottom: 0; }

.block-easy-breadcrumb {
  font-size: 80%; }
  @media (max-width: 480px) {
    .block-easy-breadcrumb {
      margin-bottom: 3rem; } }
  @media (min-width: 481px) {
    .block-easy-breadcrumb {
      margin-bottom: 4.5rem; } }
  .block-easy-breadcrumb a {
    color: #111; }
    .block-easy-breadcrumb a:hover {
      color: #214B80; }

/*
 * Buttons
 */
.button, .skip-link.element-invisible.element-focusable:focus,
input[type=submit] {
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  display: inline-block;
  padding: 0.75rem;
  border: 0;
  border-radius: 2px;
  background-color: #6CBC56;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  font-size: 1rem; }

.button:hover, .skip-link.element-invisible.element-focusable:hover:focus,
input[type=submit]:hover,
.button:focus,
.skip-link.element-invisible.element-focusable:focus {
  background-color: #214B80;
  color: #fff;
  text-decoration: none; }

.button:active, .skip-link.element-invisible.element-focusable:active:focus,
input[type=submit]:active {
  background-color: #173357; }

.button-secondary {
  border-radius: 2px;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  display: inline-block;
  padding: 0.625em 1.25em;
  border: 2px solid #6CBC56;
  color: #6CBC56;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 16px;
  font-size: 1rem; }

.button-secondary:hover,
.button-secondary:focus {
  background-color: #173357;
  border-color: #173357;
  color: #fff;
  text-decoration: none; }

.button-inverse:active, .homepage-news-events .view-header a:active {
  background-color: #479627; }

.button-inverse, .homepage-news-events .view-header a {
  border-radius: 2px;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  display: inline-block;
  padding: 0.625em 1.25em;
  border: 2px solid #6CBC56;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 16px;
  font-size: 1rem; }

.button-inverse:hover, .homepage-news-events .view-header a:hover,
.button-inverse:focus,
.homepage-news-events .view-header a:focus {
  background-color: #6CBC56;
  color: #fff;
  text-decoration: none; }

.button-inverse:active, .homepage-news-events .view-header a:active {
  background-color: #479627; }

/*
 * caption.js styles
 */
/* Main */
.caption {
  line-height: 0;
  margin-top: 2.5em; }

.caption figcaption {
  display: block;
  line-height: 1.2;
  font-size: 90%;
  padding: 1em 0;
  margin-bottom: 1.5rem;
  color: #5C5859; }
  .caption figcaption::after {
    content: '';
    display: block;
    width: 50px;
    height: 2px;
    background-color: #214B80;
    margin-top: 1em; }

/*
 * 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;
  margin-right: 1.25em;
  max-width: 60%; }

.image-right {
  float: right;
  margin-left: 1.25em;
  max-width: 60%; }

big {
  font-size: 20px;
  font-size: 1.25rem; }

small {
  font-size: 16px;
  font-size: 1rem; }

/* 
// 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);
	}
}

*/
.fancybox-wrap {
  overflow: visible !important; }

/*
 * 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: 0.75rem;
  display: inline-block;
  border: 1px solid #ccc;
  border-radius: 2px;
  color: #5C5859;
  font-size: 18;
  width: 100%;
  max-width: 600px;
  outline: none;
  background-color: #fff;
  -webkit-appearance: none;
  font-family: Arial, Helvetica, sans-serif; }
  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: #214B80; }

.form-managed-file {
  width: 100%;
  max-width: 600px; }
  .form-managed-file input[type=submit] {
    padding: 0.75rem; }

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

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

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

.grippie {
  max-width: 600px; }

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

label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.75rem; }

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

input[type="submit"], .form-submit {
  margin-bottom: 1.5rem; }
  .views-reset-button input[type="submit"], .views-reset-button .form-submit {
    background-color: #555; }
    .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: #214B80; }

.form-managed-file .form-submit {
  background-color: #555; }
  .form-managed-file .form-submit:hover {
    background-color: #214B80; }

.description {
  font-size: 16px;
  font-size: 1rem;
  color: #a8a5a6;
  margin: 0.75rem 0 1.5rem; }

.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 {
  margin-bottom: 1.5rem; }
  .webform-client-form .form,
  .webform-client-form .form-item {
    margin-bottom: 1.5rem; }
    .webform-client-form .form label,
    .webform-client-form .form-item label {
      margin-bottom: 0.75rem; }
  .webform-client-form .form-item {
    position: relative; }
    .webform-client-form .form-item > label {
      font-weight: 600; }
    .webform-client-form .form-item .label-inline {
      display: inline; }
    .webform-client-form .form-item input[readonly="readonly"] {
      background-color: #fcfcfc;
      border-color: #dfdfdf; }
  .webform-client-form .webform-component-checkboxes.form-item .form-item,
  .webform-client-form .webform-component-radios.form-item .form-item {
    margin-bottom: 0.75rem; }
    .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; }
  .webform-client-form .form-item-clear {
    width: auto;
    border: 0;
    padding: 0;
    font-weight: 600; }
  .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.5rem; }

/* Webkit */
::-webkit-input-placeholder {
  color: #5C5859; }

/* Firefox 4-18 */
:-moz-placeholder {
  color: #5C5859; }

/* Firefox 19+ */
::-moz-placeholder {
  color: #5C5859; }

/* IE10+ */
:-ms-input-placeholder {
  color: #5C5859; }

html.js fieldset.collapsed {
  height: auto; }

hr {
  margin: 0 0 1.5rem;
  height: 2px;
  background: #111;
  border: 0; }

img {
  max-width: 100%;
  height: auto; }

.page-user-login {
  background-color: #f2f2f2; }

@media (max-width: 1024px) {
  .login-box {
    max-width: 25em;
    margin: 3rem auto 0; }
    .login-box header {
      margin-bottom: 3rem; }
    .login-box #main-content {
      background-color: #FFF;
      padding: 1.875em;
      border: 1px solid #ddd;
      -webkit-box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
              box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
      position: relative;
      z-index: 10; }
    .login-box .password-link p {
      margin-top: 1.5rem;
      margin-bottom: 0; }
    .login-box .login-footer {
      position: absolute;
      bottom: 1.25em;
      left: 50%;
      margin-left: -80px;
      z-index: 1; } }

@media (min-width: 1025px) {
  .login-box header {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    background-color: #FFF;
    height: 100%;
    width: 50%; }
    .login-box header span {
      display: block;
      position: absolute;
      top: 50%;
      -webkit-transform: translate(-50%, -50%);
          -ms-transform: translate(-50%, -50%);
              transform: translate(-50%, -50%);
      left: 50%;
      width: 60%; } }

@media (min-width: 1025px) {
  .login-box section {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    width: 50%;
    background-color: #f2f2f2; }
    .login-box section > span {
      position: absolute;
      top: 50%;
      -webkit-transform: translate(-50%, -50%);
          -ms-transform: translate(-50%, -50%);
              transform: translate(-50%, -50%);
      left: 50%;
      width: 60%; } }

.login-box .login-footer {
  margin-top: 1.5rem; }

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

/**
 * sub nav for pages
 */
.sidebar .block-menu-block h2 {
  font-size: 22px;
  font-size: 1.375rem;
  color: #fff;
  background-color: #18314e;
  margin: 0; }
  @media (min-width: 769px) and (max-width: 1024px) {
    .sidebar .block-menu-block h2 {
      font-size: 18px;
      font-size: 1.125rem; } }
  .sidebar .block-menu-block h2 a {
    padding: 1.25em 0.9375em;
    font-weight: 600;
    color: #fff;
    display: block; }
    .sidebar .block-menu-block h2 a:hover {
      text-decoration: none;
      background-color: #12253b; }

.sidebar .block-menu-block .menu {
  padding: 0;
  margin: 0; }
  .sidebar .block-menu-block .menu ul {
    margin: 0;
    padding: 0; }

.sidebar .block-menu-block li {
  list-style: none;
  padding: 0; }
  .sidebar .block-menu-block li a {
    font-weight: 600;
    padding: 0.625em 0.9375em;
    background-color: #154983;
    color: #fff;
    display: block; }
    @media (min-width: 769px) and (max-width: 1024px) {
      .sidebar .block-menu-block li a {
        font-size: 16px;
        font-size: 1rem; } }
    .sidebar .block-menu-block li a:hover {
      background-color: #18314e;
      text-decoration: none; }
    .sidebar .block-menu-block li a.active {
      background-color: #6CBC56;
      border-bottom: 5px solid #479627;
      border-top: 5px solid transparent;
      color: #fff; }
  .sidebar .block-menu-block li li a {
    color: #7BCBCA;
    padding-left: 1.875em; }
    @media (min-width: 1201px) {
      .sidebar .block-menu-block li li a {
        font-size: 18px;
        font-size: 1.125rem; } }
    .sidebar .block-menu-block li li a:hover {
      color: #fff; }

/**
 * Responsive nav
 */
@media (min-width: 1025px) {
  .nav-responsive {
    position: relative;
    z-index: 2; }
    .nav-responsive ul {
      padding-left: 0;
      margin-bottom: 0;
      max-width: 100%;
      position: absolute;
      right: 0;
      top: 11px; }
    .nav-responsive .menu {
      text-align: right; }
      .nav-responsive .menu li {
        float: left;
        position: relative; }
        .nav-responsive .menu li.facebook-link {
          position: relative; }
          .nav-responsive .menu li.facebook-link:hover a {
            background: transparent !important; }
          .nav-responsive .menu li.facebook-link a {
            text-indent: 9999px;
            display: block;
            padding: 0;
            position: relative; } }
          @media (min-width: 1025px) and (min-width: 1025px) and (max-width: 1200px) {
            .nav-responsive .menu li.facebook-link a {
              width: 30px;
              height: 38px; } }
          @media (min-width: 1025px) and (min-width: 1201px) {
            .nav-responsive .menu li.facebook-link a {
              width: 35px;
              height: 48px; } }

@media (min-width: 1025px) {
            .nav-responsive .menu li.facebook-link a:hover {
              opacity: .8;
              background: transparent !important; }
            .nav-responsive .menu li.facebook-link a:after {
              content: '';
              background: url("../img/icon-facebook.svg") no-repeat 50% 50%;
              position: absolute;
              left: 50%;
              top: 50%;
              -webkit-transform: translate(-50%, -50%);
                  -ms-transform: translate(-50%, -50%);
                      transform: translate(-50%, -50%); } }
            @media (min-width: 1025px) and (min-width: 1025px) and (max-width: 1200px) {
              .nav-responsive .menu li.facebook-link a:after {
                width: 20px;
                height: 20px; } }
            @media (min-width: 1025px) and (min-width: 1201px) {
              .nav-responsive .menu li.facebook-link a:after {
                width: 28px;
                height: 25px; } }

@media (min-width: 1025px) {
        .nav-responsive .menu li:hover a {
          background-color: #214B80;
          color: #fff; }
        .nav-responsive .menu li:hover span {
          background-color: #18314e;
          cursor: pointer; }
        .nav-responsive .menu li:hover .nav-click::before {
          -webkit-transform: rotate(90deg);
              -ms-transform: rotate(90deg);
                  transform: rotate(90deg);
          left: 10px; }
        .nav-responsive .menu li:hover .nav-click::after {
          -webkit-transform: rotate(0deg);
              -ms-transform: rotate(0deg);
                  transform: rotate(0deg); }
        .nav-responsive .menu li a:focus {
          background-color: #214B80;
          color: #fff; }
      .nav-responsive .menu a {
        font-weight: 600;
        display: inline-block;
        padding: 0.7rem 0.7rem 0.4rem;
        color: #5C5859;
        text-transform: uppercase; } }
      @media (min-width: 1025px) and (min-width: 1025px) and (max-width: 1200px) {
        .nav-responsive .menu a {
          font-size: 14px;
          font-size: 0.875rem; } }

@media (min-width: 1025px) {
        .nav-responsive .menu a:hover {
          text-decoration: none; }
      .nav-responsive .menu .nav-click {
        position: absolute;
        width: 1.25em;
        right: 0;
        height: 100%;
        display: block; }
        .nav-responsive .menu .nav-click::before {
          -webkit-transition: all 0.2s ease-in-out;
          -o-transition: all 0.2s ease-in-out;
          transition: all 0.2s ease-in-out;
          content: '';
          display: block;
          width: 2px;
          height: 8px;
          background-color: #6CBC56;
          left: 5px;
          top: 20px;
          position: relative;
          -webkit-transform: rotate(-45deg);
              -ms-transform: rotate(-45deg);
                  transform: rotate(-45deg); } }
        @media (min-width: 1025px) and (min-width: 1025px) and (max-width: 1200px) {
          .nav-responsive .menu .nav-click::before {
            top: 16px; } }

@media (min-width: 1025px) {
        .nav-responsive .menu .nav-click::after {
          -webkit-transition: all 0.2s ease-in-out;
          -o-transition: all 0.2s ease-in-out;
          transition: all 0.2s ease-in-out;
          content: '';
          display: block;
          width: 8px;
          height: 2px;
          background-color: #6CBC56;
          position: relative;
          top: 15px;
          left: 6px;
          -webkit-transform: rotate(-45deg);
              -ms-transform: rotate(-45deg);
                  transform: rotate(-45deg); } }
        @media (min-width: 1025px) and (min-width: 1025px) and (max-width: 1200px) {
          .nav-responsive .menu .nav-click::after {
            top: 11px; } }

@media (min-width: 1025px) {
        .nav-responsive .menu .nav-click:hover ~ ul {
          max-height: 200px; }
      .nav-responsive .menu .expanded {
        padding-right: 1.125em; }
        .nav-responsive .menu .expanded .show-menu {
          max-height: 700px; }
        .nav-responsive .menu .expanded ul {
          text-align: left;
          position: absolute;
          top: 100%;
          right: 0;
          width: 12.5em;
          min-width: 12.5em;
          background-color: #18314e;
          -webkit-transition: all 1s;
          -o-transition: all 1s;
          transition: all 1s;
          max-height: 0;
          overflow: hidden;
          display: block; }
          .nav-responsive .menu .expanded ul li {
            width: 100%;
            display: block; }
          .nav-responsive .menu .expanded ul a {
            font-size: 16px;
            font-size: 1rem;
            padding: 0.5rem 1rem;
            display: block;
            border-top: 3px solid transparent;
            border-bottom: 3px solid transparent;
            background-color: #18314e;
            color: #fff; }
            .nav-responsive .menu .expanded ul a:hover, .nav-responsive .menu .expanded ul a:focus {
              background-color: #fff;
              border-bottom-color: #6CBC56;
              color: #214B80; } }

/**
 *  Mobile nav
 */
@media (max-width: 1024px) {
  body.nav-visible {
    overflow: hidden; }
    body.nav-visible .header-global .nav-responsive {
      overflow: hidden; }
    body.nav-visible .header-global nav {
      max-height: 3000px;
      opacity: 1;
      -webkit-transition: opacity 1s ease-in-out 0s, left 0s ease-in-out 0s, max-height 0s ease-in-out 0s;
      -o-transition: opacity 1s ease-in-out 0s, left 0s ease-in-out 0s, max-height 0s ease-in-out 0s;
      transition: opacity 1s ease-in-out 0s, left 0s ease-in-out 0s, max-height 0s ease-in-out 0s; }
  .header-global nav {
    position: absolute;
    top: 0;
    opacity: 0;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    -webkit-transition: opacity 1s ease-in-out 1s, left 0s ease-in-out 1s, max-height 0s ease-in-out 2s;
    -o-transition: opacity 1s ease-in-out 1s, left 0s ease-in-out 1s, max-height 0s ease-in-out 2s;
    transition: opacity 1s ease-in-out 1s, left 0s ease-in-out 1s, max-height 0s ease-in-out 2s; }
    .header-global nav .nav-responsive {
      overflow: hidden;
      position: relative; }
  /** burger menu */
  .nav-mobile {
    cursor: pointer;
    position: absolute;
    right: 20px;
    height: 40px;
    width: 110px;
    display: block;
    z-index: 52;
    -webkit-transition: top .3s ease-in-out;
    -o-transition: top .3s ease-in-out;
    transition: top .3s ease-in-out;
    text-transform: uppercase; } }
  @media screen and (max-width: 1024px) and (min-width: 480px) and (max-width: 1024px) {
    .nav-mobile::before {
      content: "Menu";
      display: block;
      float: left;
      font-size: 22px;
      position: relative;
      top: 3px;
      -webkit-transition: color .3s ease-in-out;
      -o-transition: color .3s ease-in-out;
      transition: color .3s ease-in-out; }
    .nav-mobile.open::before {
      color: #fff; } }

@media (max-width: 1024px) {
    .header-default .nav-mobile {
      top: 49px; }
    .header-shrunk .nav-mobile {
      top: 27px; }
  .nav-mobile:hover span {
    background-color: #214B80; }
  .nav-mobile.open:hover span {
    background-color: #FFF; }
  .nav-mobile span {
    display: block;
    position: absolute;
    height: 5px;
    width: 40px;
    background: #6CBC56;
    border-radius: 2px;
    opacity: 1;
    right: 0;
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    -webkit-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    transition: .25s ease-in-out; }
  .nav-mobile span:nth-child(1) {
    top: 0px; }
  .nav-mobile span:nth-child(2),
  .nav-mobile span:nth-child(3) {
    top: 14px; }
  .nav-mobile span:nth-child(4) {
    top: 28px; }
  .nav-mobile.open span:nth-child(1) {
    top: 18px;
    width: 0%;
    right: 20px; }
  .nav-mobile.open span:nth-child(2) {
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
        transform: rotate(45deg); }
  .nav-mobile.open span:nth-child(3) {
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
        transform: rotate(-45deg); }
  .nav-mobile.open span:nth-child(4) {
    top: 18px;
    width: 0%;
    right: 20px; }
  .nav-responsive {
    position: relative;
    /* Mobile navigation, clickable area for revealing <ul> */ }
    .nav-responsive .content {
      background-color: #154983;
      overflow: hidden;
      position: relative;
      width: 100%;
      height: 100vh;
      z-index: 10;
      padding-top: 200px;
      *zoom: 1; }
      .nav-responsive .content:before, .nav-responsive .content:after {
        content: '';
        display: table; }
      .nav-responsive .content:after {
        clear: both; } }
    @media (max-width: 1024px) and (max-width: 480px) {
      .nav-responsive .content {
        padding-top: 130px; } }

@media (max-width: 1024px) {
    .nav-responsive .content > .menu {
      overflow-y: auto;
      overflow-x: hidden;
      -webkit-overflow-scrolling: touch;
      height: 100%;
      border-top: 1px solid #195599; }
      .nav-responsive .content > .menu > li {
        position: relative;
        left: 100px;
        opacity: 0;
        -webkit-transition: left 0.3s cubic-bezier(0.87, 0.96, 0.99, 1.13);
        -o-transition: left 0.3s cubic-bezier(0.87, 0.96, 0.99, 1.13);
        transition: left 0.3s cubic-bezier(0.87, 0.96, 0.99, 1.13); }
        .nav-responsive .content > .menu > li:nth-child(1) {
          -webkit-transition: left 0.3s ease-in-out 0.1s, opacity 0.3s ease-in-out 0.1s;
          -o-transition: left 0.3s ease-in-out 0.1s, opacity 0.3s ease-in-out 0.1s;
          transition: left 0.3s ease-in-out 0.1s, opacity 0.3s ease-in-out 0.1s; }
        .nav-responsive .content > .menu > li:nth-child(2) {
          -webkit-transition: left 0.3s ease-in-out 0.2s, opacity 0.3s ease-in-out 0.2s;
          -o-transition: left 0.3s ease-in-out 0.2s, opacity 0.3s ease-in-out 0.2s;
          transition: left 0.3s ease-in-out 0.2s, opacity 0.3s ease-in-out 0.2s; }
        .nav-responsive .content > .menu > li:nth-child(3) {
          -webkit-transition: left 0.3s ease-in-out 0.3s, opacity 0.3s ease-in-out 0.3s;
          -o-transition: left 0.3s ease-in-out 0.3s, opacity 0.3s ease-in-out 0.3s;
          transition: left 0.3s ease-in-out 0.3s, opacity 0.3s ease-in-out 0.3s; }
        .nav-responsive .content > .menu > li:nth-child(4) {
          -webkit-transition: left 0.3s ease-in-out 0.4s, opacity 0.3s ease-in-out 0.4s;
          -o-transition: left 0.3s ease-in-out 0.4s, opacity 0.3s ease-in-out 0.4s;
          transition: left 0.3s ease-in-out 0.4s, opacity 0.3s ease-in-out 0.4s; }
        .nav-responsive .content > .menu > li:nth-child(5) {
          -webkit-transition: left 0.3s ease-in-out 0.5s, opacity 0.3s ease-in-out 0.5s;
          -o-transition: left 0.3s ease-in-out 0.5s, opacity 0.3s ease-in-out 0.5s;
          transition: left 0.3s ease-in-out 0.5s, opacity 0.3s ease-in-out 0.5s; }
        .nav-responsive .content > .menu > li:nth-child(6) {
          -webkit-transition: left 0.3s ease-in-out 0.6s, opacity 0.3s ease-in-out 0.6s;
          -o-transition: left 0.3s ease-in-out 0.6s, opacity 0.3s ease-in-out 0.6s;
          transition: left 0.3s ease-in-out 0.6s, opacity 0.3s ease-in-out 0.6s; }
        .nav-responsive .content > .menu > li:nth-child(7) {
          -webkit-transition: left 0.3s ease-in-out 0.7s, opacity 0.3s ease-in-out 0.7s;
          -o-transition: left 0.3s ease-in-out 0.7s, opacity 0.3s ease-in-out 0.7s;
          transition: left 0.3s ease-in-out 0.7s, opacity 0.3s ease-in-out 0.7s; }
        .nav-responsive .content > .menu > li:nth-child(8) {
          -webkit-transition: left 0.3s ease-in-out 0.8s, opacity 0.3s ease-in-out 0.8s;
          -o-transition: left 0.3s ease-in-out 0.8s, opacity 0.3s ease-in-out 0.8s;
          transition: left 0.3s ease-in-out 0.8s, opacity 0.3s ease-in-out 0.8s; }
        .nav-responsive .content > .menu > li:nth-child(9) {
          -webkit-transition: left 0.3s ease-in-out 0.9s, opacity 0.3s ease-in-out 0.9s;
          -o-transition: left 0.3s ease-in-out 0.9s, opacity 0.3s ease-in-out 0.9s;
          transition: left 0.3s ease-in-out 0.9s, opacity 0.3s ease-in-out 0.9s; }
        .nav-responsive .content > .menu > li:nth-child(10) {
          -webkit-transition: left 0.3s ease-in-out 1s, opacity 0.3s ease-in-out 1s;
          -o-transition: left 0.3s ease-in-out 1s, opacity 0.3s ease-in-out 1s;
          transition: left 0.3s ease-in-out 1s, opacity 0.3s ease-in-out 1s; }
        .nav-responsive .content > .menu > li:nth-child(11) {
          -webkit-transition: left 0.3s ease-in-out 1.1s, opacity 0.3s ease-in-out 1.1s;
          -o-transition: left 0.3s ease-in-out 1.1s, opacity 0.3s ease-in-out 1.1s;
          transition: left 0.3s ease-in-out 1.1s, opacity 0.3s ease-in-out 1.1s; }
        .nav-responsive .content > .menu > li:nth-child(12) {
          -webkit-transition: left 0.3s ease-in-out 1.2s, opacity 0.3s ease-in-out 1.2s;
          -o-transition: left 0.3s ease-in-out 1.2s, opacity 0.3s ease-in-out 1.2s;
          transition: left 0.3s ease-in-out 1.2s, opacity 0.3s ease-in-out 1.2s; }
        .nav-responsive .content > .menu > li:nth-child(13) {
          -webkit-transition: left 0.3s ease-in-out 1.3s, opacity 0.3s ease-in-out 1.3s;
          -o-transition: left 0.3s ease-in-out 1.3s, opacity 0.3s ease-in-out 1.3s;
          transition: left 0.3s ease-in-out 1.3s, opacity 0.3s ease-in-out 1.3s; }
        .nav-responsive .content > .menu > li:nth-child(14) {
          -webkit-transition: left 0.3s ease-in-out 1.4s, opacity 0.3s ease-in-out 1.4s;
          -o-transition: left 0.3s ease-in-out 1.4s, opacity 0.3s ease-in-out 1.4s;
          transition: left 0.3s ease-in-out 1.4s, opacity 0.3s ease-in-out 1.4s; }
        .nav-responsive .content > .menu > li:nth-child(15) {
          -webkit-transition: left 0.3s ease-in-out 1.5s, opacity 0.3s ease-in-out 1.5s;
          -o-transition: left 0.3s ease-in-out 1.5s, opacity 0.3s ease-in-out 1.5s;
          transition: left 0.3s ease-in-out 1.5s, opacity 0.3s ease-in-out 1.5s; }
        .nav-responsive .content > .menu > li:nth-child(16) {
          -webkit-transition: left 0.3s ease-in-out 1.6s, opacity 0.3s ease-in-out 1.6s;
          -o-transition: left 0.3s ease-in-out 1.6s, opacity 0.3s ease-in-out 1.6s;
          transition: left 0.3s ease-in-out 1.6s, opacity 0.3s ease-in-out 1.6s; }
        .nav-responsive .content > .menu > li:nth-child(17) {
          -webkit-transition: left 0.3s ease-in-out 1.7s, opacity 0.3s ease-in-out 1.7s;
          -o-transition: left 0.3s ease-in-out 1.7s, opacity 0.3s ease-in-out 1.7s;
          transition: left 0.3s ease-in-out 1.7s, opacity 0.3s ease-in-out 1.7s; }
        .nav-responsive .content > .menu > li:nth-child(18) {
          -webkit-transition: left 0.3s ease-in-out 1.8s, opacity 0.3s ease-in-out 1.8s;
          -o-transition: left 0.3s ease-in-out 1.8s, opacity 0.3s ease-in-out 1.8s;
          transition: left 0.3s ease-in-out 1.8s, opacity 0.3s ease-in-out 1.8s; }
        .nav-responsive .content > .menu > li:nth-child(19) {
          -webkit-transition: left 0.3s ease-in-out 1.9s, opacity 0.3s ease-in-out 1.9s;
          -o-transition: left 0.3s ease-in-out 1.9s, opacity 0.3s ease-in-out 1.9s;
          transition: left 0.3s ease-in-out 1.9s, opacity 0.3s ease-in-out 1.9s; }
        .nav-responsive .content > .menu > li:nth-child(20) {
          -webkit-transition: left 0.3s ease-in-out 2s, opacity 0.3s ease-in-out 2s;
          -o-transition: left 0.3s ease-in-out 2s, opacity 0.3s ease-in-out 2s;
          transition: left 0.3s ease-in-out 2s, opacity 0.3s ease-in-out 2s; }
    .nav-responsive .content.nav-visible > ul > li {
      left: 0;
      opacity: 1; }
    .nav-responsive .nav-click {
      position: absolute;
      top: 0;
      right: 0;
      display: none;
      height: 100%;
      width: 80px;
      cursor: pointer;
      background-color: #164e8c; }
      .nav-responsive .nav-click:hover, .nav-responsive .nav-click:focus {
        background-color: #206ec5; }
      .nav-responsive .nav-click::before {
        -webkit-transition: all 0.2s ease-in-out;
        -o-transition: all 0.2s ease-in-out;
        transition: all 0.2s ease-in-out;
        content: '';
        display: block;
        width: 4px;
        height: 16px;
        background-color: #6CBC56;
        left: 33px;
        top: 22px;
        position: relative;
        -webkit-transform: rotate(-45deg);
            -ms-transform: rotate(-45deg);
                transform: rotate(-45deg); }
      .nav-responsive .nav-click::after {
        -webkit-transition: all 0.2s ease-in-out;
        -o-transition: all 0.2s ease-in-out;
        transition: all 0.2s ease-in-out;
        content: '';
        display: block;
        width: 16px;
        height: 4px;
        background-color: #6CBC56;
        position: relative;
        top: 12px;
        left: 36px;
        -webkit-transform: rotate(-45deg);
            -ms-transform: rotate(-45deg);
                transform: rotate(-45deg); }
      .nav-responsive .nav-click.nav-open::before {
        -webkit-transform: rotate(-135deg);
            -ms-transform: rotate(-135deg);
                transform: rotate(-135deg); }
      .nav-responsive .nav-click.nav-open::after {
        -webkit-transform: rotate(45deg);
            -ms-transform: rotate(45deg);
                transform: rotate(45deg); }
    .nav-responsive .menu {
      padding-left: 0;
      max-width: 100%; }
      .nav-responsive .menu li {
        display: block;
        position: relative; }
        .nav-responsive .menu li a {
          display: block;
          padding: 15px 2.5%;
          background: #154983;
          border-bottom: 1px solid #195599;
          color: #fff;
          text-transform: uppercase;
          font-weight: 400; }
          .nav-responsive .menu li a:hover, .nav-responsive .menu li a:focus {
            text-decoration: none;
            background-color: #206ec5; }
      .nav-responsive .menu .nav-item {
        width: 100%;
        float: none; }
      .nav-responsive .menu .nav-click {
        display: block; }
      .nav-responsive .menu .expanded ul {
        position: relative;
        width: 100%;
        max-height: 0;
        opacity: 0;
        -webkit-transition: all 1s ease-in-out;
        -o-transition: all 1s ease-in-out;
        transition: all 1s ease-in-out; }
        .nav-responsive .menu .expanded ul li a {
          border-bottom: 1px solid #1c61af;
          background-color: #195599;
          padding-left: 6%; }
          .nav-responsive .menu .expanded ul li a:hover, .nav-responsive .menu .expanded ul li a:focus {
            background-color: #206ec5; }
        .nav-responsive .menu .expanded ul.sub-nav-visible {
          max-height: 500px;
          opacity: 1; } }

/*
 * Pagination
 */
.item-list .pager {
  padding: 0;
  text-align: left;
  overflow: auto; }
  .item-list .pager li {
    float: left;
    list-style: none;
    padding: 0;
    margin-right: 1em; }
  .item-list .pager .pager-first a,
  .item-list .pager .pager-previous a,
  .item-list .pager .pager-next a,
  .item-list .pager .pager-last a {
    padding: 0; }
  .item-list .pager a {
    display: inline-block;
    padding: 0 0.5em; }
    .item-list .pager a:hover {
      text-decoration: underline; }
  .item-list .pager .pager-ellipsis {
    display: inline-block; }
  .item-list .pager .pager-current {
    font-weight: 600;
    border-bottom: 2px solid #555;
    padding: 0 0.5em; }

.item-list .pager-load-more li {
  float: none;
  text-align: center; }
  .item-list .pager-load-more li .ajax-progress {
    display: none; }

.photoswipe-gallery {
  margin-bottom: 1.5rem;
  overflow: hidden; }
  .photoswipe-gallery .field-item {
    float: left;
    padding: 0 1px 1px 0; }
    @media (max-width: 480px) {
      .photoswipe-gallery .field-item {
        width: 33%; } }
    @media (min-width: 481px) and (max-width: 768px) {
      .photoswipe-gallery .field-item {
        width: 25%; } }
    @media (min-width: 769px) {
      .photoswipe-gallery .field-item {
        width: 20%; } }
    .photoswipe-gallery .field-item img {
      display: block; }

.panel-search {
  -webkit-transition: all 1.2s cubic-bezier(0.42, 0, 0, 0.96);
  -o-transition: all 1.2s cubic-bezier(0.42, 0, 0, 0.96);
  transition: all 1.2s cubic-bezier(0.42, 0, 0, 0.96);
  background-color: #18314e;
  position: fixed;
  top: -200px;
  left: 0;
  width: 100%;
  z-index: 3;
  height: 200px;
  /* Webkit */
  /* Firefox 4-18 */
  /* Firefox 19+ */
  /* IE10+ */ }
  .panel-search > p {
    color: #fff;
    font-weight: 600;
    width: 600px;
    max-width: 94%;
    margin: 40px auto 0;
    position: relative;
    z-index: 2;
    left: 200px;
    opacity: 0;
    -webkit-transition: all 1.8s cubic-bezier(0.42, 0, 0, 0.96);
    -o-transition: all 1.8s cubic-bezier(0.42, 0, 0, 0.96);
    transition: all 1.8s cubic-bezier(0.42, 0, 0, 0.96);
    -webkit-transition-delay: 0.4s;
         -o-transition-delay: 0.4s;
            transition-delay: 0.4s; }
  .panel-search .form-text {
    border: 0;
    background-color: transparent;
    border: 0;
    border-radius: 0;
    max-width: 700px;
    font-size: 2rem;
    height: 4rem;
    line-height: 4rem;
    color: #fff;
    float: left;
    width: calc(100% - 60px);
    padding: 0; }
    .panel-search .form-text:focus {
      border-bottom-color: #fff;
      /* Webkit */
      /* Firefox 4-18 */
      /* Firefox 19+ */
      /* IE10+ */ }
      .panel-search .form-text:focus::-webkit-input-placeholder {
        color: #18314e; }
      .panel-search .form-text:focus:-moz-placeholder {
        color: #18314e; }
      .panel-search .form-text:focus::-moz-placeholder {
        color: #18314e; }
      .panel-search .form-text:focus:-ms-input-placeholder {
        color: #18314e; }
  .panel-search .form-submit {
    border-radius: 0;
    background-color: transparent;
    border: 0;
    float: left;
    height: 4rem;
    line-height: 4rem;
    width: 60px;
    overflow: hidden;
    text-indent: 350%;
    background: url("../img/icon-search.svg") no-repeat center center;
    background-size: 32px 32px;
    position: relative;
    left: 50px;
    opacity: 0;
    -webkit-transition: all 0.9s cubic-bezier(0.42, 0, 0, 0.96);
    -o-transition: all 0.9s cubic-bezier(0.42, 0, 0, 0.96);
    transition: all 0.9s cubic-bezier(0.42, 0, 0, 0.96);
    -webkit-transition-delay: 0.7s;
         -o-transition-delay: 0.7s;
            transition-delay: 0.7s; }
    .panel-search .form-submit:hover, .panel-search .form-submit:focus {
      background-color: transparent;
      background-size: 38px 38px;
      -webkit-transition-delay: 0;
           -o-transition-delay: 0;
              transition-delay: 0; }
  .panel-search ::-webkit-input-placeholder {
    color: #fff; }
  .panel-search :-moz-placeholder {
    color: #fff; }
  .panel-search ::-moz-placeholder {
    color: #fff; }
  .panel-search :-ms-input-placeholder {
    color: #fff; }

.panel-search-close {
  position: absolute;
  z-index: 5;
  right: -50px;
  top: 20px;
  display: block;
  width: 50px;
  height: 50px;
  opacity: 0;
  -webkit-transition-delay: 1.2s;
       -o-transition-delay: 1.2s;
          transition-delay: 1.2s;
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
  -webkit-transition: all 1s cubic-bezier(0.42, 0, 0, 0.96);
  -o-transition: all 1s cubic-bezier(0.42, 0, 0, 0.96);
  transition: all 1s cubic-bezier(0.42, 0, 0, 0.96); }
  .panel-search-close::before, .panel-search-close::after {
    display: block;
    width: 4px;
    height: 40px;
    content: '';
    background-color: #fff;
    position: absolute;
    -webkit-transition: all 0.2s cubic-bezier(0.42, 0, 0, 0.96);
    -o-transition: all 0.2s cubic-bezier(0.42, 0, 0, 0.96);
    transition: all 0.2s cubic-bezier(0.42, 0, 0, 0.96); }
  .panel-search-close::before {
    -webkit-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
            transform: rotate(-45deg);
    left: 23px;
    top: 5px; }
  .panel-search-close::after {
    -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
            transform: rotate(45deg);
    top: 5px;
    left: 23px; }
  .panel-search-close:hover::before {
    -webkit-transform: rotate(-90deg);
        -ms-transform: rotate(-90deg);
            transform: rotate(-90deg); }
  .panel-search-close:hover::after {
    -webkit-transform: rotate(90deg);
        -ms-transform: rotate(90deg);
            transform: rotate(90deg); }

.panel-search.panel-open {
  top: 0;
  -webkit-transition-delay: 0;
       -o-transition-delay: 0;
          transition-delay: 0; }
  .panel-search.panel-open > p,
  .panel-search.panel-open .form-submit {
    left: 0;
    opacity: 1; }
  .panel-search.panel-open .panel-search-close {
    top: 20px;
    right: 20px;
    opacity: 1;
    -webkit-transform: rotate(0);
        -ms-transform: rotate(0);
            transform: rotate(0);
    -webkit-transition-delay: 1s;
         -o-transition-delay: 1s;
            transition-delay: 1s; }

.search-toggle {
  display: block; }

#block-search-form {
  width: 600px;
  max-width: 94%;
  margin: 10px auto 0;
  border-bottom: 1px solid #fff;
  *zoom: 1; }
  #block-search-form:before, #block-search-form:after {
    content: '';
    display: table; }
  #block-search-form:after {
    clear: both; }

.header-global .search-toggle {
  cursor: pointer;
  position: relative;
  color: #fff; }
  @media (max-width: 1024px) {
    .header-global .search-toggle {
      padding: 15px 3%;
      background: #154983;
      border-bottom: 1px solid #195599;
      color: #fff;
      text-transform: uppercase;
      display: block;
      font-weight: 400; }
      .header-global .search-toggle:hover {
        background-color: #214B80; } }
  @media (min-width: 1025px) {
    .header-global .search-toggle {
      width: 47px;
      display: inline-block;
      height: 45px;
      overflow: hidden;
      text-indent: 200%;
      background: transparent url("../img/icon-search-green.svg") no-repeat center center;
      background-size: 24px 24px; }
      .header-global .search-toggle:hover, .header-global .search-toggle:focus {
        background-color: #206ec5; } }

/**
 * Search page
 */
#edit-basic .form-item-keys label {
  display: block; }

.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: #6CBC56;
    /* 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: #54a03f;
    color: #fff; }

.skip-link.element-invisible.element-focusable:focus {
  z-index: 2000;
  position: absolute !important; }

/*
 * Tables
 */
table {
  border: 0 solid transparent;
  width: 100%;
  max-width: 100%;
  margin-bottom: 1.5rem; }
  table caption {
    text-align: left; }
  table th {
    text-align: left; }
  table td {
    vertical-align: top; }
    table td *:first-child {
      margin-top: 0; }
    table td *:last-child {
      margin-bottom: 0; }
  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: 0.5rem 0.5rem 0.5rem 0;
    vertical-align: top;
    border-bottom: 1px solid #dfdfdf; }
  table > thead > tr > th {
    vertical-align: bottom;
    border-bottom: 2px solid #214B80; }
  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 {
    margin-bottom: 0; }

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

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

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

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

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

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

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

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

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

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

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

/**
 * Tabs
 */
.tabs.primary {
  list-style: none;
  padding-left: 0;
  border-bottom: 1px solid #dfdfdf; }
  .tabs.primary li {
    display: inline-block;
    position: relative;
    top: 1px; }
  .tabs.primary a {
    display: inline-block;
    padding: .5em 1em; }
    .tabs.primary a.active {
      border-top: 1px solid #dfdfdf;
      border-left: 1px solid #dfdfdf;
      border-right: 1px solid #dfdfdf;
      border-bottom: 0 solid white;
      background: white; }

/* ---------- Import design ---------- */
/*
 * Design
 * 
 * Include all your design elements in this file.
 */
body {
  color: #5C5859; }

a {
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  color: #3b7bcc;
  text-decoration: none;
  font-weight: 600; }
  a:hover, a:focus {
    color: #214B80;
    text-decoration: underline; }

.main-wrapper {
  margin-bottom: 3rem; }

.main {
  margin-top: 3rem;
  background-color: #FFF;
  position: relative;
  z-index: 1; }

.field-body {
  *zoom: 1; }
  .field-body:before, .field-body:after {
    content: '';
    display: table; }
  .field-body:after {
    clear: both; }

.field-label-inline {
  margin-bottom: 1.5rem; }
  .field-label-inline .field-label {
    display: inline-block;
    padding-right: 1.25em;
    font-weight: 600; }
  .field-label-inline .field-items {
    display: inline-block; }

.section-events .view-events .view-content > div {
  overflow: hidden; }

.section-events .view-events time {
  font-weight: 600; }
  @media (max-width: 480px) {
    .section-events .view-events time {
      display: block;
      padding-top: 0.75rem;
      font-size: 16px;
      font-size: 1rem; } }
  @media (min-width: 481px) {
    .section-events .view-events time {
      padding: 0.75rem 0;
      display: inline-block;
      width: 12.5em;
      border-bottom: 1px solid #acacac; } }

.section-events .view-events a {
  display: block; }
  @media (max-width: 480px) {
    .section-events .view-events a {
      border-bottom: 1px solid #dfdfdf;
      padding-bottom: 0.75rem; } }
  @media (min-width: 481px) {
    .section-events .view-events a {
      padding: 0.75rem;
      float: right;
      width: calc(100% - 12.5em);
      border-bottom: 1px solid #dfdfdf;
      white-space: nowrap;
      -o-text-overflow: ellipsis;
         text-overflow: ellipsis;
      overflow: hidden; } }

.footer-global {
  background-color: #18314e;
  color: #fff;
  overflow: hidden;
  font-size: 16px;
  font-size: 1rem; }
  .footer-global a {
    color: #fff; }
    .footer-global a:hover, .footer-global a:focus {
      color: #6CBC56; }
  .footer-global .footer-left {
    *zoom: 1; }
    .footer-global .footer-left:before, .footer-global .footer-left:after {
      content: '';
      display: table; }
    .footer-global .footer-left:after {
      clear: both; }
    @media (min-width: 769px) {
      .footer-global .footer-left {
        *zoom: 1;
        float: left;
        clear: none;
        text-align: inherit;
        width: 73.5%;
        margin-left: 0%;
        margin-right: 6%; }
        .footer-global .footer-left:before, .footer-global .footer-left:after {
          content: '';
          display: table; }
        .footer-global .footer-left:after {
          clear: both; }
        .footer-global .footer-left:last-child {
          margin-right: 0%; } }
  @media (min-width: 769px) {
    .footer-global .footer-right {
      *zoom: 1;
      float: left;
      clear: none;
      text-align: inherit;
      width: 20.5%;
      margin-left: 0%;
      margin-right: 6%; }
      .footer-global .footer-right:before, .footer-global .footer-right:after {
        content: '';
        display: table; }
      .footer-global .footer-right:after {
        clear: both; }
      .footer-global .footer-right:last-child {
        margin-right: 0%; } }
  @media (max-width: 480px) {
    .footer-global .footer-region {
      padding-top: 3rem;
      padding-bottom: 3rem; } }
  @media (min-width: 481px) {
    .footer-global .footer-region {
      padding-top: 6rem;
      padding-bottom: 6rem; } }
  .footer-global .block-webform {
    color: #fff; }
    .footer-global .block-webform h2 {
      font-size: 24px;
      font-size: 1.5rem;
      color: #6CBC56;
      padding-right: 0.625em; }
      @media (min-width: 481px) {
        .footer-global .block-webform h2 {
          margin: 0;
          padding: 1.05rem 1.05rem 1.05rem 0; } }
    .footer-global .block-webform .form-item {
      margin-bottom: 0; }
      @media (max-width: 480px) {
        .footer-global .block-webform .form-item {
          margin-bottom: 0.75rem; } }
    .footer-global .block-webform input {
      height: 50px;
      line-height: 50px;
      border-radius: 0; }
    .footer-global .block-webform .form-text {
      border: 2px solid #fff;
      -webkit-transition: all 0.2s ease-in-out;
      -o-transition: all 0.2s ease-in-out;
      transition: all 0.2s ease-in-out;
      -webkit-box-shadow: 0;
              box-shadow: 0;
      border-radius: 2px;
      -webkit-appearance: none; }
      .footer-global .block-webform .form-text:focus {
        border-color: #6CBC56; }
    .footer-global .block-webform .webform-component--name {
      float: left;
      padding-right: 0.625em; }
      @media (min-width: 481px) {
        .footer-global .block-webform .webform-component--name {
          width: 9.375em; } }
    .footer-global .block-webform .webform-component--email-address {
      float: left;
      padding-right: 0.625em; }
      @media (min-width: 481px) {
        .footer-global .block-webform .webform-component--email-address {
          width: 18.75em; } }
    .footer-global .block-webform .form-actions {
      float: left; }
      @media (min-width: 481px) {
        .footer-global .block-webform .form-actions {
          width: 6.25em; } }
    .footer-global .block-webform .form-submit {
      text-transform: uppercase;
      padding-top: 0;
      padding-bottom: 0;
      width: 100%;
      margin-bottom: 0;
      border-radius: 2px; }

.footer-left {
  padding-top: 3rem;
  padding-bottom: 3rem;
  position: relative;
  z-index: 1; }
  .footer-left::before {
    content: '';
    background-color: #154983;
    width: 2000px;
    height: 1000px;
    top: 0;
    right: -4%;
    position: absolute;
    z-index: 1; }
  .footer-left h2 {
    color: #fff;
    font-size: 24px;
    font-size: 1.5rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2; }
  .footer-left > div {
    position: relative;
    z-index: 2; }
    @media (min-width: 481px) {
      .footer-left > div {
        *zoom: 1;
        float: left;
        clear: none;
        text-align: inherit;
        width: 29.33333%;
        margin-left: 0%;
        margin-right: 6%; }
        .footer-left > div:before, .footer-left > div:after {
          content: '';
          display: table; }
        .footer-left > div:after {
          clear: both; }
        .footer-left > div:last-child {
          margin-right: 0%; } }
  .footer-left .contact {
    padding-left: 1.875em;
    background-position: 0 0;
    background-size: 20px 20px;
    background-repeat: no-repeat;
    margin-bottom: 0.75rem;
    -o-text-overflow: ellipsis;
       text-overflow: ellipsis;
    overflow: hidden; }
    .footer-left .contact a {
      color: #7BCBCA;
      font-weight: 400; }
  .footer-left .contact-phone {
    background-image: url("../img/icon-phone.svg"); }
  .footer-left .contact-fax {
    background-image: url("../img/icon-fax.svg"); }
  .footer-left .contact-email {
    background-image: url("../img/icon-email-symbol.svg"); }
  .footer-left .contact-postal {
    background-image: url("../img/icon-mail.svg"); }
  .footer-left .contact-address {
    background-image: url("../img/icon-map.svg"); }
  .footer-left .contact-facebook-link {
    background-image: url("../img/icon-facebook-light-green.svg"); }

.footer-right {
  padding-top: 3rem;
  padding-bottom: 3rem;
  position: relative;
  z-index: 1; }
  .footer-right::before {
    content: '';
    background-color: #123f72;
    width: 2000px;
    height: 1000px;
    top: 0;
    left: -15%;
    position: absolute;
    z-index: 1; }
  .footer-right h2 {
    color: #fff;
    font-size: 24px;
    font-size: 1.5rem;
    margin-bottom: 3rem; }
  .footer-right > div {
    position: relative;
    z-index: 2; }
  .footer-right .menu {
    list-style-type: none;
    padding-left: 0;
    overflow: hidden; }
    .footer-right .menu li {
      padding-left: 1.25em;
      background: url("../img/arrow-right-teal.svg") no-repeat 0 6px;
      background-size: 8px 8px;
      margin-bottom: 0.75rem; }
      @media (min-width: 481px) and (max-width: 768px) {
        .footer-right .menu li {
          *zoom: 1;
          float: left;
          clear: none;
          text-align: inherit;
          width: 29.33333%;
          margin-left: 0%;
          margin-right: 6%; }
          .footer-right .menu li:before, .footer-right .menu li:after {
            content: '';
            display: table; }
          .footer-right .menu li:after {
            clear: both; }
          .footer-right .menu li:last-child {
            margin-right: 0%; } }
      .footer-right .menu li a {
        font-weight: 400; }

.footer-bottom {
  position: relative;
  z-index: 2;
  background-color: #18314e;
  padding-top: 3rem;
  *zoom: 1; }
  .footer-bottom:before, .footer-bottom:after {
    content: '';
    display: table; }
  .footer-bottom:after {
    clear: both; }
  .footer-bottom .block:first-child img:not(:last-child) {
    margin-right: 1.25em; }
  @media (max-width: 768px) {
    .footer-bottom .block {
      margin-bottom: 3rem; } }
  @media (min-width: 769px) {
    .footer-bottom .block:first-child {
      float: left; }
    .footer-bottom .block:last-child {
      float: right;
      text-align: right; } }

.watermark {
  background-color: #18314e;
  padding-bottom: 3rem;
  text-align: right;
  color: #fff;
  position: relative;
  z-index: 2;
  font-size: 12px;
  font-size: 0.75rem; }
  .watermark a {
    font-weight: 400; }

.footer-region-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end; }

.footer-region #block-webform-client-block-24 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap; }
  @media (max-width: 768px) {
    .footer-region #block-webform-client-block-24 {
      -webkit-box-flex: 1;
          -ms-flex: 1 0 100%;
              flex: 1 0 100%;
      margin-bottom: 0.75rem; } }
  @media (min-width: 769px) {
    .footer-region #block-webform-client-block-24 {
      margin-right: 0;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      padding-right: 20px;
      width: calc(100% - 180px);
      float: left; } }
  @media (max-width: 1024px) {
    .footer-region #block-webform-client-block-24 h2 {
      -webkit-box-flex: 1;
          -ms-flex: 1 0 100%;
              flex: 1 0 100%; } }
  @media (max-width: 768px) {
    .footer-region #block-webform-client-block-24 > .content {
      -webkit-box-flex: 1;
          -ms-flex: 1 0 100%;
              flex: 1 0 100%; } }
  @media (min-width: 769px) {
    .footer-region #block-webform-client-block-24 > .content {
      -webkit-box-flex: 1;
          -ms-flex: 1 0 70%;
              flex: 1 0 70%; } }
  .footer-region #block-webform-client-block-24 .hide-home-page {
    display: none; }

.footer-region .subscribe-form--home-page .hide-home-page,
.footer-region .webform-client-form .hide-home-page {
  display: none; }

.footer-region .subscribe-form--home-page h2,
.footer-region .webform-client-form h2 {
  display: none; }

.footer-region .subscribe-form--home-page #mc_embed_signup_scroll,
.footer-region .subscribe-form--home-page > div,
.footer-region .webform-client-form #mc_embed_signup_scroll,
.footer-region .webform-client-form > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  position: relative; }
  @media (min-width: 481px) {
    .footer-region .subscribe-form--home-page #mc_embed_signup_scroll,
    .footer-region .subscribe-form--home-page > div,
    .footer-region .webform-client-form #mc_embed_signup_scroll,
    .footer-region .webform-client-form > div {
      margin: 0 -5px;
      padding-right: 115px; } }

@media (max-width: 480px) {
  .footer-region .subscribe-form--home-page .mc-field-group,
  .footer-region .subscribe-form--home-page .form-item,
  .footer-region .webform-client-form .mc-field-group,
  .footer-region .webform-client-form .form-item {
    margin-bottom: 0.675rem; } }

.footer-region .subscribe-form--home-page label,
.footer-region .webform-client-form label {
  display: none; }

.footer-region .subscribe-form--home-page input[type="text"],
.footer-region .subscribe-form--home-page input[type="email"],
.footer-region .webform-client-form input[type="text"],
.footer-region .webform-client-form input[type="email"] {
  border: 2px solid #fff;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  -webkit-box-shadow: 0;
          box-shadow: 0;
  border-radius: 2px;
  -webkit-appearance: none;
  padding: 5px 15px;
  height: 50px;
  line-height: 34px;
  font-family: Arial, Helvetica, sans-serif; }
  .footer-region .subscribe-form--home-page input[type="text"]:focus,
  .footer-region .subscribe-form--home-page input[type="email"]:focus,
  .footer-region .webform-client-form input[type="text"]:focus,
  .footer-region .webform-client-form input[type="email"]:focus {
    border-color: #6CBC56; }

@media (max-width: 480px) {
  .footer-region .subscribe-form--home-page .mc-field-group--fname,
  .footer-region .subscribe-form--home-page .webform-component--name,
  .footer-region .webform-client-form .mc-field-group--fname,
  .footer-region .webform-client-form .webform-component--name {
    width: 100%;
    padding-right: 0; } }

@media (min-width: 481px) {
  .footer-region .subscribe-form--home-page .mc-field-group--fname,
  .footer-region .subscribe-form--home-page .webform-component--name,
  .footer-region .webform-client-form .mc-field-group--fname,
  .footer-region .webform-client-form .webform-component--name {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 40%;
            flex: 1 0 40%;
    max-width: 40%;
    padding: 0 5px;
    margin: 0; } }

@media (max-width: 480px) {
  .footer-region .subscribe-form--home-page .mc-field-group--email-address,
  .footer-region .subscribe-form--home-page .webform-component--email-address,
  .footer-region .webform-client-form .mc-field-group--email-address,
  .footer-region .webform-client-form .webform-component--email-address {
    width: 100%;
    padding-right: 0; } }

@media (min-width: 481px) {
  .footer-region .subscribe-form--home-page .mc-field-group--email-address,
  .footer-region .subscribe-form--home-page .webform-component--email-address,
  .footer-region .webform-client-form .mc-field-group--email-address,
  .footer-region .webform-client-form .webform-component--email-address {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 60%;
            flex: 1 0 60%;
    max-width: 60%;
    margin: 0;
    padding: 0 5px; } }

@media (max-width: 480px) {
  .footer-region .subscribe-form--home-page .form-actions,
  .footer-region .webform-client-form .form-actions {
    width: 100%; } }

@media (min-width: 481px) {
  .footer-region .subscribe-form--home-page .form-actions,
  .footer-region .webform-client-form .form-actions {
    position: absolute;
    right: 0;
    width: 6.875em; } }

.footer-region .subscribe-form--home-page #mc-embedded-subscribe,
.footer-region .webform-client-form #mc-embedded-subscribe {
  text-transform: uppercase;
  width: 100%;
  margin-bottom: 0;
  padding-top: 0;
  padding-bottom: 0;
  border-radius: 2px;
  font-family: Arial, Helvetica, sans-serif; }

#block-block-5 {
  padding: 0.75rem 0; }
  @media (min-width: 769px) {
    #block-block-5 {
      -webkit-box-flex: 0;
          -ms-flex: 0 0 180px;
              flex: 0 0 180px;
      max-width: 180px; } }
  @media (min-width: 1025px) {
    #block-block-5 {
      padding: 1.125rem 0; } }

.header-global {
  position: fixed;
  padding-top: 10px;
  width: 100%;
  background-color: #fff;
  z-index: 1000;
  top: 0;
  -webkit-transition: all 1.2s cubic-bezier(0.42, 0, 0, 0.96);
  -o-transition: all 1.2s cubic-bezier(0.42, 0, 0, 0.96);
  transition: all 1.2s cubic-bezier(0.42, 0, 0, 0.96);
  *zoom: 1; }
  .admin-menu .header-global {
    width: calc(100% - 60px); }
  .header-global:before, .header-global:after {
    content: '';
    display: table; }
  .header-global:after {
    clear: both; }
  .header-global::before, .header-global::after {
    content: '';
    display: block;
    width: 50%;
    height: 10px;
    position: absolute;
    top: 0; }
  .header-global::before {
    left: 0;
    background-color: #6CBC56; }
  .header-global::after {
    left: 50%;
    background-color: #214B80; }

.header-global {
  -webkit-transition: all 1.2s cubic-bezier(0.42, 0, 0, 0.96);
  -o-transition: all 1.2s cubic-bezier(0.42, 0, 0, 0.96);
  transition: all 1.2s cubic-bezier(0.42, 0, 0, 0.96); }
  .header-global nav {
    -webkit-transition: all 1.2s cubic-bezier(0.42, 0, 0, 0.96);
    -o-transition: all 1.2s cubic-bezier(0.42, 0, 0, 0.96);
    transition: all 1.2s cubic-bezier(0.42, 0, 0, 0.96); }
    @media (max-width: 1024px) {
      .header-global nav {
        z-index: 50; } }
    @media (min-width: 1025px) {
      .header-global nav {
        z-index: 55; } }

@media (min-width: 1025px) {
  .site-title {
    width: 340px;
    float: left; }
  nav {
    width: calc(100% - 340px); } }

.site-title {
  position: relative;
  left: 3%;
  top: 0; }
  @media (max-width: 1024px) {
    .site-title {
      z-index: 55; } }
  @media (min-width: 1025px) {
    .site-title {
      z-index: 50; } }
  .site-title a {
    display: block; }
  @media (max-width: 480px) {
    .header-default .site-title {
      width: 220px; } }
  @media (max-width: 1024px) {
    .header-default .site-title {
      width: 340px; } }
  @media (min-width: 1025px) and (max-width: 1200px) {
    .header-default .site-title {
      width: 270px; } }
  @media (min-width: 1201px) {
    .header-default .site-title {
      width: 340px; } }

.logo-large {
  -webkit-transition: all 1.3s cubic-bezier(0.42, 0, 0, 0.96);
  -o-transition: all 1.3s cubic-bezier(0.42, 0, 0, 0.96);
  transition: all 1.3s cubic-bezier(0.42, 0, 0, 0.96); }
  .logo-large img {
    display: block; }

.logo-large {
  top: 0;
  padding: 20px;
  position: absolute;
  width: 290px; }
  @media (max-width: 480px) {
    .logo-large {
      width: 220px; } }
  .logo-large img {
    position: relative;
    z-index: 3; }
  .logo-large:before {
    opacity: 1;
    z-index: 2;
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #6cbc56;
    background: -webkit-linear-gradient(45deg, #6cbc56 0%, #214b80 100%); }
  .logo-large:after {
    -webkit-transition: opacity 0.2s ease-in;
    -o-transition: opacity 0.2s ease-in;
    transition: opacity 0.2s ease-in;
    opacity: 0;
    z-index: 2;
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #234379;
    background: -o-linear-gradient(45deg, #234379 0%, #6db446 100%);
    background: linear-gradient(45deg, #234379 0%, #6db446 100%); }

.site-title a:hover .logo-large:after,
.site-title a:focus .logo-large:after {
  opacity: 1; }

.header-default {
  position: fixed;
  top: 0;
  height: 118px;
  border-bottom: 1px solid transparent; }
  @media (min-width: 1025px) {
    .header-default nav {
      right: 20px;
      top: 31px;
      position: absolute;
      width: 94%; } }

.header-shrunk {
  height: 76px;
  border-bottom: 1px solid #214B80; }
  .header-shrunk .logo-large {
    width: 119px;
    padding: 10px; }
  @media (min-width: 1025px) {
    .header-shrunk nav {
      position: absolute;
      right: 3%;
      top: 8px; } }

.header-global.search-open {
  top: 200px;
  -webkit-transition-delay: 0s;
       -o-transition-delay: 0s;
          transition-delay: 0s; }

/**
 * Homepage
 */
/**
 * top bit
*/
@media (min-width: 769px) {
  .homepage-intro {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap; } }

.homepage-intro-first {
  position: relative; }
  @media (min-width: 769px) {
    .homepage-intro-first {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-flex: 0;
          -ms-flex: 0 0 50%;
              flex: 0 0 50%;
      max-width: 50%; } }
  @media (max-width: 480px) {
    .homepage-intro-first .content {
      padding: 3rem 5% 3rem 0; } }
  @media (min-width: 481px) {
    .homepage-intro-first .content {
      padding: 6rem 5% 6rem 0; } }

/**
 * stats
*/
@media (min-width: 769px) {
  .homepage-intro-second {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 50%; } }

@media (min-width: 769px) {
  .homepage-intro-second .block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 100%;
    width: 100%; } }

.homepage-intro-second .content {
  font-weight: 600; }
  @media (min-width: 481px) and (max-width: 768px) {
    .homepage-intro-second .content {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap; } }
  @media (min-width: 769px) {
    .homepage-intro-second .content {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
      height: 100%;
      width: 100%;
      padding-top: 6.6rem; } }

.homepage-intro-second .content > div {
  color: #fff;
  display: block;
  color: #fff;
  position: relative;
  font-size: 16px;
  font-size: 1rem; }
  @media (max-width: 480px) {
    .homepage-intro-second .content > div:nth-child(even) {
      background-color: #214B80; }
    .homepage-intro-second .content > div:nth-child(odd) {
      background-color: #6CBC56; } }
  @media (min-width: 481px) {
    .homepage-intro-second .content > div {
      height: 50%;
      width: 50%;
      min-height: 200px; }
      .homepage-intro-second .content > div:nth-child(1) {
        background-color: #214B80; }
      .homepage-intro-second .content > div:nth-child(2) {
        background-color: #6CBC56; }
      .homepage-intro-second .content > div:nth-child(3) {
        background-color: #6CBC56; }
      .homepage-intro-second .content > div:nth-child(4) {
        background-color: #214B80; } }
  .homepage-intro-second .content > div > div {
    width: 100%;
    padding: 5%;
    text-align: center; }
    @media (min-width: 769px) {
      .homepage-intro-second .content > div > div {
        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%); } }

.homepage-intro-second .statistic-figure {
  font-size: 48px;
  font-size: 3rem; }

.homepage-intro-second .statistic-text {
  font-size: 18px;
  font-size: 1.125rem;
  text-transform: uppercase; }

/**
 * News and events
*/
.homepage-news-events {
  *zoom: 1;
  background-color: #18314e;
  color: #fff; }
  .homepage-news-events:before, .homepage-news-events:after {
    content: '';
    display: table; }
  .homepage-news-events:after {
    clear: both; }
  @media (max-width: 480px) {
    .homepage-news-events {
      padding: 3rem 0; } }
  @media (min-width: 481px) {
    .homepage-news-events {
      padding: 6rem 0; } }
  .homepage-news-events h1 {
    margin-bottom: 2.25rem; }
  .homepage-news-events h1, .homepage-news-events h2, .homepage-news-events a {
    color: #fff; }
  .homepage-news-events .view-header {
    margin: 0 0 2.25rem; }

@media (max-width: 768px) {
  #block-views-news-block-1 {
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #7BCBCA; } }

@media (min-width: 769px) and (max-width: 1200px) {
  #block-views-news-block-1 {
    padding-bottom: 6rem;
    border-bottom: 1px solid #7BCBCA; } }

@media (min-width: 1201px) {
  #block-views-news-block-1 {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 64.66667%;
    margin-left: 0%;
    margin-right: 6%; }
    #block-views-news-block-1:before, #block-views-news-block-1:after {
      content: '';
      display: table; }
    #block-views-news-block-1:after {
      clear: both; }
    #block-views-news-block-1:last-child {
      margin-right: 0%; } }

@media (max-width: 1200px) {
  #block-views-events-block-1 {
    padding-top: 3rem; } }

@media (min-width: 1201px) {
  #block-views-events-block-1 {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 29.33333%;
    margin-left: 0%;
    margin-right: 6%; }
    #block-views-events-block-1:before, #block-views-events-block-1:after {
      content: '';
      display: table; }
    #block-views-events-block-1:after {
      clear: both; }
    #block-views-events-block-1:last-child {
      margin-right: 0%; } }

#block-views-events-block-1 h2 {
  margin-top: 0rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid #fff;
  display: inline-block; }

@media (max-width: 480px) {
  #block-views-events-block-1 .view-content > div {
    margin-bottom: 1.5rem; } }

@media (min-width: 481px) and (max-width: 1200px) {
  #block-views-events-block-1 .view-content > div {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 47%;
    margin-left: 0%;
    margin-right: 6%; }
    #block-views-events-block-1 .view-content > div:nth-child(1), #block-views-events-block-1 .view-content > div:nth-child(2) {
      margin-bottom: 1.5rem; }
    #block-views-events-block-1 .view-content > div:before, #block-views-events-block-1 .view-content > div:after {
      content: '';
      display: table; }
    #block-views-events-block-1 .view-content > div:after {
      clear: both; }
    #block-views-events-block-1 .view-content > div:nth-of-type(2n) {
      margin-right: 0%;
      float: right; }
    #block-views-events-block-1 .view-content > div:nth-of-type(2n + 1) {
      clear: both; } }

@media (min-width: 1201px) {
  #block-views-events-block-1 .view-content > div {
    margin-bottom: 3rem; } }

@media (min-width: 1201px) {
  #block-views-events-block-1 .view-content > div {
    width: 100%; } }

#block-views-events-block-1 .view-content > div time {
  font-size: 16px;
  font-size: 1rem; }

#block-views-events-block-1 .view-content > div .date-display-single,
#block-views-events-block-1 .view-content > div .date-display-range {
  color: #7BCBCA;
  font-weight: 600; }

#block-views-events-block-1 .view-content > div a {
  display: block;
  text-transform: uppercase; }

@media (max-width: 768px) {
  .featured-video-section {
    padding: 2.25rem 0; } }

@media (min-width: 481px) and (max-width: 1024px) {
  .featured-video-section {
    padding: 3.75rem 0; } }

@media (min-width: 1025px) {
  .featured-video-section {
    padding: 5.25rem 0; } }

.video-content-wrap {
  position: relative; }
  @media (min-width: 769px) {
    .video-content-wrap {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap; } }
  .video-content-wrap .video-item {
    text-decoration: none;
    color: #000;
    position: relative; }
    .video-content-wrap .video-item:hover {
      color: #54a03f; }
      .video-content-wrap .video-item:hover .video-item__image:after {
        background: #6CBC56;
        opacity: .3; }
      .video-content-wrap .video-item:hover .video-item__play {
        opacity: 1; }
    .video-content-wrap .video-item__image {
      margin-bottom: 10px;
      position: relative; }
      .video-content-wrap .video-item__image:after {
        position: absolute;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        content: '';
        background: #214B80;
        z-index: 2;
        opacity: .3;
        -webkit-transition: 200ms linear all;
        -o-transition: 200ms linear all;
        transition: 200ms linear all; }
      .video-content-wrap .video-item__image img {
        display: block;
        width: 100%; }
    .video-content-wrap .video-item__title {
      font: 20px/1.3 "Fira Sans", sans-serif;
      display: block; }
    .video-content-wrap .video-item__play {
      -webkit-transition: all 0.2s;
      -o-transition: all 0.2s;
      transition: all 0.2s;
      content: '';
      position: absolute;
      top: 50%;
      left: 50%;
      -webkit-transform: translate(-50%, -50%);
          -ms-transform: translate(-50%, -50%);
              transform: translate(-50%, -50%);
      z-index: 3;
      opacity: .7;
      background: url("../img/right-arrow-circular-button-blue.svg") 0 0/cover no-repeat; }
      @media (max-width: 768px) {
        .video-content-wrap .video-item__play {
          width: 70px;
          height: 70px; } }
      @media (min-width: 769px) {
        .video-content-wrap .video-item__play {
          width: 100px;
          height: 100px; } }

@media (min-width: 1025px) {
  #block-views-videos-block-4 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 75%;
            flex: 0 0 75%;
    max-width: 75%; } }

#block-views-videos-block-4 .view-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: auto; }
  @media (max-width: 1024px) {
    #block-views-videos-block-4 .view-content {
      margin: 0 -10px; } }
  @media (min-width: 1025px) {
    #block-views-videos-block-4 .view-content {
      margin: 0 -5px 0 -10px; } }
  #block-views-videos-block-4 .view-content > div {
    padding: 0 10px; }
    @media (max-width: 768px) {
      #block-views-videos-block-4 .view-content > div {
        margin-bottom: 1.5rem;
        -webkit-box-flex: 1;
            -ms-flex: 1 0 100%;
                flex: 1 0 100%; } }
    @media (min-width: 769px) and (max-width: 1024px) {
      #block-views-videos-block-4 .view-content > div {
        -webkit-box-flex: 1;
            -ms-flex: 1 0 50%;
                flex: 1 0 50%;
        max-width: 50%;
        margin-bottom: 1.5rem; } }
    @media (min-width: 1025px) {
      #block-views-videos-block-4 .view-content > div {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-flex: 1;
            -ms-flex: 1 0 33.33%;
                flex: 1 0 33.33%;
        max-width: 33.33%; } }
    #block-views-videos-block-4 .view-content > div:nth-child(2) .video-item__play {
      background-image: url("../img/right-arrow-circular-button-green.svg"); }

@media (min-width: 769px) and (max-width: 1024px) {
  #block-views-video-random-block-3 {
    position: absolute;
    top: 50%;
    right: 0;
    max-width: 50%;
    padding-left: 10px; } }

@media (min-width: 1025px) {
  #block-views-video-random-block-3 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
            flex: 0 0 25%;
    max-width: 25%;
    padding-left: 15px; } }

@media (max-width: 768px) {
  #block-views-video-random-block-3 .view-content .views-row {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 100%;
            flex: 1 0 100%; } }

#block-views-video-random-block-3 .video-item__play {
  background-image: url("../img/right-arrow-circular-button-green.svg"); }

@media (min-width: 481px) {
  .node-type-landing-page .field-name-field-intro-first-column,
  .node-type-landing-page .field-name-field-intro-second-column {
    width: 42%;
    display: inline-block;
    vertical-align: top;
    font-weight: 400;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem; }
  .node-type-landing-page .field-name-field-intro-first-column {
    margin-right: 8%; }
  .node-type-landing-page .field-name-field-intro-second-column {
    width: 42%; } }

@media (max-width: 768px) {
  .node-type-landing-page .field-name-field-intro-first-column,
  .node-type-landing-page .field-name-field-intro-second-column {
    font-size: 18px;
    font-size: 1.125rem;
    font-weight: 400; } }

@media (min-width: 769px) {
  .node-type-landing-page .field-name-field-intro-first-column,
  .node-type-landing-page .field-name-field-intro-second-column {
    font-size: 22px;
    font-size: 1.375rem; } }

#block-views-landing-page-teasers-block > h2 {
  margin-top: 1.5rem; }

.view-landing-page-teasers .view-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap; }

.view-landing-page-teasers article {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border: 1px solid #dfdfdf;
  margin-bottom: 3rem !important; }
  @media (min-width: 481px) and (max-width: 768px) {
    .view-landing-page-teasers article {
      *zoom: 1;
      float: left;
      clear: none;
      text-align: inherit;
      width: 48.5%;
      margin-left: 0%;
      margin-right: 3%; }
      .view-landing-page-teasers article:before, .view-landing-page-teasers article:after {
        content: '';
        display: table; }
      .view-landing-page-teasers article:after {
        clear: both; }
      .view-landing-page-teasers article:nth-of-type(2n) {
        margin-right: 0%;
        float: right; }
      .view-landing-page-teasers article:nth-of-type(2n + 1) {
        clear: both; } }
  @media (min-width: 769px) and (max-width: 1200px) {
    .view-landing-page-teasers article {
      *zoom: 1;
      float: left;
      clear: none;
      text-align: inherit;
      width: 31.33333%;
      margin-left: 0%;
      margin-right: 3%; }
      .view-landing-page-teasers article:before, .view-landing-page-teasers article:after {
        content: '';
        display: table; }
      .view-landing-page-teasers article:after {
        clear: both; }
      .view-landing-page-teasers article:nth-of-type(3n) {
        margin-right: 0%;
        float: right; }
      .view-landing-page-teasers article:nth-of-type(3n + 1) {
        clear: both; } }
  @media (min-width: 1201px) {
    .view-landing-page-teasers article {
      *zoom: 1;
      float: left;
      clear: none;
      text-align: inherit;
      width: 22.75%;
      margin-left: 0%;
      margin-right: 3%; }
      .view-landing-page-teasers article:before, .view-landing-page-teasers article:after {
        content: '';
        display: table; }
      .view-landing-page-teasers article:after {
        clear: both; }
      .view-landing-page-teasers article:nth-of-type(4n) {
        margin-right: 0%;
        float: right; }
      .view-landing-page-teasers article:nth-of-type(4n + 1) {
        clear: both; } }
  .view-landing-page-teasers article img {
    display: block;
    width: 100%; }
  .view-landing-page-teasers article h2 {
    font-size: 18px;
    font-size: 1.125rem;
    background-color: #6CBC56;
    padding: 0.75em 1em;
    color: #fff;
    margin: 0;
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out; }
  .view-landing-page-teasers article a {
    display: block;
    max-width: 100%;
    background-color: #fff; }
    .view-landing-page-teasers article a:hover, .view-landing-page-teasers article a:focus {
      text-decoration: none;
      background-color: #214B80;
      color: #fff; }
      .view-landing-page-teasers article a:hover h2, .view-landing-page-teasers article a:focus h2 {
        background-color: #18314e; }
      .view-landing-page-teasers article a:hover p, .view-landing-page-teasers article a:focus p {
        color: #fff; }
  .view-landing-page-teasers article p {
    color: #111;
    font-weight: 300;
    padding: 1em;
    font-size: 16px;
    font-size: 1rem; }

/**
 * Layout
 *
 * All layout theming should go in this file
 */
.row, .homepage-publications .block {
  *zoom: 1;
  *zoom: 1;
  width: auto;
  max-width: 1400px;
  float: none;
  display: block;
  margin-right: auto;
  margin-left: auto;
  padding-left: 3%;
  padding-right: 3%; }
  .row:before, .homepage-publications .block:before, .row:after, .homepage-publications .block:after {
    content: '';
    display: table; }
  .row:after, .homepage-publications .block:after {
    clear: both; }
  .row:before, .homepage-publications .block:before, .row:after, .homepage-publications .block:after {
    content: '';
    display: table; }
  .row:after, .homepage-publications .block:after {
    clear: both; }

@media (min-width: 769px) {
  .one-sidebar.sidebar-first .main {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 73.5%;
    margin-left: 0%;
    margin-right: 6%;
    position: relative;
    left: 26.5%; }
    .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: 73.5%;
    margin-left: 0%;
    margin-right: 6%; }
    .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: 20.5%;
    margin-left: 0%;
    margin-right: 6%;
    position: relative;
    left: -79.5%; }
    .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: 20.5%;
    margin-left: 0%;
    margin-right: 6%; }
    .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: 47%;
    margin-left: 0%;
    margin-right: 6%;
    position: relative;
    left: 26.5%; }
    .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: 20.5%;
    margin-left: 0%;
    margin-right: 6%;
    position: relative;
    left: -53%; }
    .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: 20.5%;
    margin-left: 0%;
    margin-right: 6%; }
    .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%; } }

/**
 * News
 */
/**
 * Cards
 */
.news-cards article {
  color: #111; }
  .news-cards article .item {
    background-color: #FFF;
    position: relative; }
    .news-cards article .item > div {
      padding: 5%; }
    .news-cards article .item > a {
      display: inline-block;
      padding: 0.625em 1.875em;
      color: #fff;
      background: #6CBC56;
      text-transform: uppercase;
      position: absolute;
      bottom: -2.75em;
      font-size: 16px;
      font-size: 1rem;
      letter-spacing: 1px; }
      .news-cards article .item > a:hover, .news-cards article .item > a:focus {
        background-color: #7BCBCA;
        text-decoration: none; }
      .news-cards article .item > a:active {
        background-color: #47b3b2; }
  .news-cards article h2 {
    font-size: 20px;
    font-size: 1.25rem; }
    .news-cards article h2 a {
      color: #214B80; }
      .news-cards article h2 a:hover, .news-cards article h2 a:focus {
        color: #6CBC56; }
  .news-cards article figure img {
    display: block;
    width: 100%; }
  .news-cards article time {
    color: #6CBC56;
    display: block;
    margin-bottom: 1.5rem;
    text-transform: uppercase; }
  .news-cards article p {
    margin-bottom: 0; }
    @media (max-width: 768px) {
      .news-cards article p {
        font-size: 16px;
        font-size: 1rem; } }
    @media (min-width: 769px) {
      .news-cards article p {
        font-size: 16px;
        font-size: 1rem; } }

@media (min-width: 481px) {
  .front .block-views .view-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap; } }

.front .block-views article {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; }
  @media (max-width: 480px) {
    .front .block-views article {
      margin-bottom: 4.5rem !important; } }
  @media (min-width: 481px) and (max-width: 768px) {
    .front .block-views article {
      *zoom: 1;
      float: left;
      clear: none;
      text-align: inherit;
      width: 48%;
      margin-left: 0%;
      margin-right: 4%;
      margin-bottom: 4.5rem !important; }
      .front .block-views article:before, .front .block-views article:after {
        content: '';
        display: table; }
      .front .block-views article:after {
        clear: both; }
      .front .block-views article:nth-of-type(2n) {
        margin-right: 0%;
        float: right; }
      .front .block-views article:nth-of-type(2n + 1) {
        clear: both; } }
  @media (min-width: 769px) and (max-width: 1200px) {
    .front .block-views article {
      *zoom: 1;
      float: left;
      clear: none;
      text-align: inherit;
      width: 31.33333%;
      margin-left: 0%;
      margin-right: 3%; }
      .front .block-views article:before, .front .block-views article:after {
        content: '';
        display: table; }
      .front .block-views article:after {
        clear: both; }
      .front .block-views article:nth-of-type(3n) {
        margin-right: 0%;
        float: right; }
      .front .block-views article:nth-of-type(3n + 1) {
        clear: both; }
      .front .block-views article:last-child {
        display: none; } }
  @media (min-width: 1201px) {
    .front .block-views article {
      *zoom: 1;
      float: left;
      clear: none;
      text-align: inherit;
      width: 31.33333%;
      margin-left: 0%;
      margin-right: 3%; }
      .front .block-views article:before, .front .block-views article:after {
        content: '';
        display: table; }
      .front .block-views article:after {
        clear: both; }
      .front .block-views article:nth-of-type(3n) {
        margin-right: 0%;
        float: right; }
      .front .block-views article:nth-of-type(3n + 1) {
        clear: both; }
      .front .block-views article:last-child {
        display: none; } }

/**
 * News landing page
 */
.page-news .main {
  margin-bottom: 4.5rem; }

@media (min-width: 481px) {
  .page-news .view-display-id-page .view-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    width: 100%; } }

.page-news .view-display-id-page article {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border: 1px solid #dfdfdf;
  margin-bottom: 6rem; }
  @media (max-width: 480px) {
    .page-news .view-display-id-page article {
      margin-bottom: 4.5rem !important; } }
  @media (min-width: 481px) and (max-width: 768px) {
    .page-news .view-display-id-page article {
      *zoom: 1;
      float: left;
      clear: none;
      text-align: inherit;
      width: 48%;
      margin-left: 0%;
      margin-right: 4%;
      margin-bottom: 4.5rem !important; }
      .page-news .view-display-id-page article:before, .page-news .view-display-id-page article:after {
        content: '';
        display: table; }
      .page-news .view-display-id-page article:after {
        clear: both; }
      .page-news .view-display-id-page article:nth-of-type(2n) {
        margin-right: 0%;
        float: right; }
      .page-news .view-display-id-page article:nth-of-type(2n + 1) {
        clear: both; } }
  @media (min-width: 769px) and (max-width: 1024px) {
    .page-news .view-display-id-page article {
      *zoom: 1;
      float: left;
      clear: none;
      text-align: inherit;
      width: 31.33333%;
      margin-left: 0%;
      margin-right: 3%; }
      .page-news .view-display-id-page article:before, .page-news .view-display-id-page article:after {
        content: '';
        display: table; }
      .page-news .view-display-id-page article:after {
        clear: both; }
      .page-news .view-display-id-page article:nth-of-type(3n) {
        margin-right: 0%;
        float: right; }
      .page-news .view-display-id-page article:nth-of-type(3n + 1) {
        clear: both; } }
  @media (min-width: 1025px) and (max-width: 1200px) {
    .page-news .view-display-id-page article {
      *zoom: 1;
      float: left;
      clear: none;
      text-align: inherit;
      width: 30.66667%;
      margin-left: 0%;
      margin-right: 4%; }
      .page-news .view-display-id-page article:before, .page-news .view-display-id-page article:after {
        content: '';
        display: table; }
      .page-news .view-display-id-page article:after {
        clear: both; }
      .page-news .view-display-id-page article:nth-of-type(3n) {
        margin-right: 0%;
        float: right; }
      .page-news .view-display-id-page article:nth-of-type(3n + 1) {
        clear: both; } }
  @media (min-width: 1201px) {
    .page-news .view-display-id-page article {
      *zoom: 1;
      float: left;
      clear: none;
      text-align: inherit;
      width: 22%;
      margin-left: 0%;
      margin-right: 4%; }
      .page-news .view-display-id-page article:before, .page-news .view-display-id-page article:after {
        content: '';
        display: table; }
      .page-news .view-display-id-page article:after {
        clear: both; }
      .page-news .view-display-id-page article:nth-of-type(4n) {
        margin-right: 0%;
        float: right; }
      .page-news .view-display-id-page article:nth-of-type(4n + 1) {
        clear: both; } }

/**
 * News item page
 */
@media (max-width: 768px) {
  .node--news--full .field-name-field-news-main-image {
    margin-bottom: 3rem; } }

@media (min-width: 769px) {
  .node--news--full .field-name-field-news-main-image {
    float: right;
    margin-left: 3rem;
    margin-bottom: 3rem; } }

@media (min-width: 769px) and (max-width: 1024px) {
  .node--news--full .field-name-field-news-main-image {
    max-width: 25em; } }

@media (min-width: 1025px) {
  .node--news--full .field-name-field-news-main-image {
    max-width: 31.25em; } }

.node--news--full .field-name-field-news-main-image img {
  display: block;
  color: #000; }

.node--news--full .news-date {
  color: #6cbc56;
  margin-bottom: 1.5rem; }

@media (max-width: 480px) {
  .homepage-publications {
    padding: 3rem 0; } }

@media (min-width: 481px) {
  .homepage-publications {
    padding: 6rem 0; } }

.homepage-publications h2 {
  text-align: center;
  color: #214B80;
  margin-bottom: 3rem; }

.view-id-publications.view-display-id-block .view-content > div {
  background-color: #6CBC56;
  text-align: center;
  min-height: 100px;
  width: 100%; }
  @media (max-width: 480px) {
    .view-id-publications.view-display-id-block .view-content > div {
      margin-bottom: 1.5rem !important; } }
  @media (min-width: 481px) and (max-width: 1024px) {
    .view-id-publications.view-display-id-block .view-content > div {
      *zoom: 1;
      float: left;
      clear: none;
      text-align: inherit;
      width: 48.5%;
      margin-left: 0%;
      margin-right: 3%;
      margin-bottom: 1.5rem !important; }
      .view-id-publications.view-display-id-block .view-content > div:before, .view-id-publications.view-display-id-block .view-content > div:after {
        content: '';
        display: table; }
      .view-id-publications.view-display-id-block .view-content > div:after {
        clear: both; }
      .view-id-publications.view-display-id-block .view-content > div:nth-of-type(2n) {
        margin-right: 0%;
        float: right; }
      .view-id-publications.view-display-id-block .view-content > div:nth-of-type(2n + 1) {
        clear: both; } }
  @media (min-width: 1025px) {
    .view-id-publications.view-display-id-block .view-content > div {
      *zoom: 1;
      float: left;
      clear: none;
      text-align: inherit;
      width: 22.75%;
      margin-left: 0%;
      margin-right: 3%; }
      .view-id-publications.view-display-id-block .view-content > div:before, .view-id-publications.view-display-id-block .view-content > div:after {
        content: '';
        display: table; }
      .view-id-publications.view-display-id-block .view-content > div:after {
        clear: both; }
      .view-id-publications.view-display-id-block .view-content > div:last-child {
        margin-right: 0%; } }
  .view-id-publications.view-display-id-block .view-content > div span {
    display: block;
    width: 48px;
    height: 48px;
    margin: 0 auto;
    margin-bottom: 1.5rem;
    background-repeat: no-repeat;
    background-position: center center; }
    .view-id-publications.view-display-id-block .view-content > div span.media {
      background-size: 48px 48px;
      background-image: url(../img/icon-book.svg); }
    .view-id-publications.view-display-id-block .view-content > div span.link {
      background-image: url(../img/icon-link.svg);
      background-size: 40px 40px; }
  .view-id-publications.view-display-id-block .view-content > div a {
    display: block;
    color: #fff;
    padding: 5% 10%;
    position: relative;
    overflow: hidden;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    text-align: center;
    position: relative; }
    .view-id-publications.view-display-id-block .view-content > div a:before {
      display: block;
      content: "";
      width: 100%;
      padding-top: 66.66667%; }
    .view-id-publications.view-display-id-block .view-content > div a > .content {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0; }
    .view-id-publications.view-display-id-block .view-content > div a div {
      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%);
      -webkit-transition: all 0.3s ease-in-out;
      -o-transition: all 0.3s ease-in-out;
      transition: all 0.3s ease-in-out;
      width: 90%;
      font-weight: 400; }
      .view-id-publications.view-display-id-block .view-content > div a div p:last-child {
        text-transform: uppercase;
        font-weight: 600; }
    .view-id-publications.view-display-id-block .view-content > div a div:first-child {
      opacity: 1; }
    .view-id-publications.view-display-id-block .view-content > div a div:last-child {
      font-size: 16px;
      font-size: 1rem;
      opacity: 0;
      padding-top: 1.25em;
      -webkit-transition: padding 0.2s ease-in-out;
      -o-transition: padding 0.2s ease-in-out;
      transition: padding 0.2s ease-in-out; }
      .view-id-publications.view-display-id-block .view-content > div a div:last-child p {
        position: relative; }
    .view-id-publications.view-display-id-block .view-content > div a:hover, .view-id-publications.view-display-id-block .view-content > div a:focus {
      text-decoration: none;
      background-color: #214B80; }
      .view-id-publications.view-display-id-block .view-content > div a:hover div:first-child, .view-id-publications.view-display-id-block .view-content > div a:focus div:first-child {
        opacity: 0; }
      .view-id-publications.view-display-id-block .view-content > div a:hover div:last-child, .view-id-publications.view-display-id-block .view-content > div a:focus div:last-child {
        opacity: 1;
        padding-top: 0; }
  .view-id-publications.view-display-id-block .view-content > div h3 {
    color: #fff;
    font-size: 22px;
    font-size: 1.375rem; }

#block-views-video-random-block,
#block-views-video-random-block-1,
#block-views-video-random-block-2 {
  *zoom: 1; }
  #block-views-video-random-block:before, #block-views-video-random-block:after,
  #block-views-video-random-block-1:before,
  #block-views-video-random-block-1:after,
  #block-views-video-random-block-2:before,
  #block-views-video-random-block-2:after {
    content: '';
    display: table; }
  #block-views-video-random-block:after,
  #block-views-video-random-block-1:after,
  #block-views-video-random-block-2:after {
    clear: both; }
  @media (min-width: 769px) {
    #block-views-video-random-block,
    #block-views-video-random-block-1,
    #block-views-video-random-block-2 {
      width: 60%;
      float: right; } }

@media (max-width: 768px) {
  #block-views-videos-block-1,
  #block-views-videos-block-2,
  #block-views-videos-block-3 {
    margin-top: 1em;
    padding-top: 1em;
    border-top: 1px solid #dfdfdf; } }

@media (min-width: 769px) {
  #block-views-videos-block-1,
  #block-views-videos-block-2,
  #block-views-videos-block-3 {
    width: 35%;
    float: left; } }

/**
 * Video player
 */
.responsive-video-container {
  position: relative;
  padding-bottom: 56.25%;
  /* 16:9 */
  padding-top: 25px;
  height: 0; }

.responsive-video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; }

#video-player--title {
  margin-top: 1em; }

/**
 * Video list
 */
.videos-list h3 {
  margin: 0; }

.videos-list ul {
  list-style: none;
  padding-left: 30px;
  display: none;
  margin-bottom: 0; }

#block-views-videos-block-3 .videos-list ul {
  display: block;
  padding-left: 0; }

.videos-list li:not(:last-child) {
  border-bottom: 1px solid #ccc; }

.videos-list li a {
  padding: 0.25em 0;
  display: inline-block;
  font-size: 16px;
  font-size: 1rem; }

.videos-list .video-current a {
  color: #6CBC56; }

.videos-list h3 {
  margin-bottom: 0.25em; }
  .videos-list h3 a {
    padding: 5px;
    display: block;
    margin-bottom: 1px;
    color: #154983;
    display: inline-block;
    border-bottom: 2px solid transparent;
    text-decoration: none; }
  .videos-list h3 a:hover {
    color: #214B80;
    text-decoration: none;
    border-bottom: 2px solid #214B80; }
  .videos-list h3 a::before {
    color: #154983;
    content: "+";
    font-family: Arial, Helvetica, sans-serif;
    font-size: 24px;
    font-weight: 700;
    display: inline-block;
    margin-right: 10px;
    position: relative;
    top: -2px;
    -webkit-transition: -webkit-transform 0.3s ease-in-out;
    transition: -webkit-transform 0.3s ease-in-out;
    -o-transition: transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
    text-decoration: none;
    border: 0 !important; }
  .videos-list h3.open a::before {
    -webkit-transform: rotate(-225deg);
        -ms-transform: rotate(-225deg);
            transform: rotate(-225deg); }

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