@charset "UTF-8";
/*
 * SASS Architecture:
 *
 * base/       - contains global styles, such as resets, typography, colors, etc.
 * components/ - contains each self-contained component in its own .scss partial
 * layout/     - contains styling for larger layout components; e.g. nav, header, footer, etc.
 * utilities/      - contains global mixins, functions, helper selectors, etc.
 * style.scss   – output file that brings together all of the above part
 */
/*
 * NOTE:
 *
 *
 */
/****************************************
  Variables
*****************************************/
/* 1. Structure
========================================================================== */
/* 2. Text Select
========================================================================== */
/* 3. Colors
========================================================================== */
/* Cubic-bezier is life. */
/* 4. Links
========================================================================== */
/* 5. Fonts
========================================================================== */
/* 6. Easing
========================================================================== */
/* Cubic-bezier is life. */
/**
 * @file
 * This file lists the breakpoints that we are going to use in the theme.
 */
.align-horizontal,
.align-vertical,
.align-full {
  position: relative;
}

.align-horizontal {
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
}

.align-vertical {
  top: 50%;
  vertical-align: top;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
}

.align-full {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
}

.iconSmooth {
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.imgCover {
  min-width: 100%;
  max-width: none;
  width: 100%;
  min-height: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.imgCoverFallback {
  display: block;
  background-size: cover !important;
  background-position: center center !important;
}

.transitionShort {
  transition: all 0.1s ease-out;
  -webkit-transition: all 0.1s ease-out;
}

.transitionMed {
  transition: all 0.2s cubic-bezier(0.39, 0.01, 0.2, 0.98);
  -webkit-transition: all 0.2s cubic-bezier(0.39, 0.01, 0.2, 0.98);
}

.transitionLong {
  transition: all 0.3s cubic-bezier(0.39, 0.01, 0.2, 0.98);
  -webkit-transition: all 0.3s cubic-bezier(0.39, 0.01, 0.2, 0.98);
}

.z-depth-0 {
  box-shadow: none;
}

.z-depth-1 {
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
}
.z-depth-1-inset {
  box-shadow: inset 0 2px 5px 0 rgba(0, 0, 0, 0.16), inset 0 2px 10px 0 rgba(0, 0, 0, 0.12);
}
.z-depth-1-half {
  box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
}
.z-depth-1-half-inset {
  box-shadow: inset 0 5px 11px 0 rgba(0, 0, 0, 0.18), inset 0 4px 15px 0 rgba(0, 0, 0, 0.15);
}

.z-depth-2 {
  box-shadow: 0 8px 17px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
.z-depth-2-inset {
  box-shadow: inset 0 8px 17px 0 rgba(0, 0, 0, 0.2), inset 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.z-depth-3 {
  box-shadow: 0 12px 15px 0 rgba(0, 0, 0, 0.24), 0 17px 50px 0 rgba(0, 0, 0, 0.19);
}
.z-depth-3-inset {
  box-shadow: inset 0 12px 15px 0 rgba(0, 0, 0, 0.24), inset 0 17px 50px 0 rgba(0, 0, 0, 0.19);
}

.z-depth-4, .modal {
  box-shadow: 0 16px 28px 0 rgba(0, 0, 0, 0.22), 0 25px 55px 0 rgba(0, 0, 0, 0.21);
}
.z-depth-4-inset, .modal-inset {
  box-shadow: inset 0 16px 28px 0 rgba(0, 0, 0, 0.22), inset 0 25px 55px 0 rgba(0, 0, 0, 0.21);
}

.z-depth-5 {
  box-shadow: 0 27px 24px 0 rgba(0, 0, 0, 0.2), 0 40px 77px 0 rgba(0, 0, 0, 0.22);
}
.z-depth-5-inset {
  box-shadow: inset 0 27px 24px 0 rgba(0, 0, 0, 0.2), inset 0 40px 77px 0 rgba(0, 0, 0, 0.22);
}

/*
 * Mixin for easy media queries
 * @include bp(tablet) { SCSS here };
*/
/*
 * Mixin for micro clearfix
 * @include microclearfix;
*/
/*
placeholder mixin
 */
/*! normalize.css v3.0.2 | MIT License | git.io/normalize */
/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS text size adjust after orientation change, without disabling
 *    user zoom.
 */
body, html {
  height: 100%;
  width: 100%;
  margin: 0;
  padding: 0;
  font-size: 1em;
  line-height: 1.5;
  /*font-family: TBD;*/
  font-style: normal;
  font-weight: 400;
  -ms-text-size-adjust: 100%; /* 2 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

/**
 * Remove default margin.
 */
body {
  margin: 0;
}

/* HTML5 display definitions
   ========================================================================== */
/**
 * Correct `block` display not defined for any HTML5 element in IE 8/9.
 * Correct `block` display not defined for `details` or `summary` in IE 10/11
 * and Firefox.
 * Correct `block` display not defined for `main` in IE 11.
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block;
}

/**
 * 1. Correct `inline-block` display not defined in IE 8/9.
 * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
 */
audio,
canvas,
progress,
video {
  display: inline-block; /* 1 */
  vertical-align: baseline; /* 2 */
}

/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */
audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 * Address `[hidden]` styling not present in IE 8/9/10.
 * Hide the `template` element in IE 8/9/11, Safari, and Firefox < 22.
 */
[hidden],
template {
  display: none;
}

/* Links
   ========================================================================== */
/**
 * Remove the gray background color from active links in IE 10.
 */
a {
  background-color: transparent;
}

/**
 * Improve readability when focused and also mouse hovered in all browsers.
 */
a:active,
a:hover {
  outline: 0;
}

/* Text-level semantics
   ========================================================================== */
/**
 * Address styling not present in IE 8/9/10/11, Safari, and Chrome.
 */
abbr[title] {
  border-bottom: 1px dotted;
}

/**
 * Address style set to `bolder` in Firefox 4+, Safari, and Chrome.
 */
b,
strong {
  font-weight: bold;
}

/**
 * Address styling not present in Safari and Chrome.
 */
dfn {
  font-style: italic;
}

/**
 * Address variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari, and Chrome.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/**
 * Address styling not present in IE 8/9.
 */
mark {
  background: #ff0;
  color: #000;
}

/**
 * Address inconsistent and variable font size in all browsers.
 */
small {
  font-size: 80%;
}

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

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

/* Embedded content
   ========================================================================== */
/**
 * Remove border when inside `a` element in IE 8/9/10.
 */
img {
  border: 0;
}

/**
 * Correct overflow not hidden in IE 9/10/11.
 */
svg:not(:root) {
  overflow: hidden;
}

/* Grouping content
   ========================================================================== */
/**
 * Address margin not present in IE 8/9 and Safari.
 */
figure {
  margin: 1em 40px;
}

/**
 * Address differences between Firefox and other browsers.
 */
hr {
  box-sizing: content-box;
  height: 0;
}

/**
 * Contain overflow in all browsers.
 */
pre {
  overflow: auto;
}

/**
 * Address odd `em`-unit font size rendering in all browsers.
 */
code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

/* Forms
   ========================================================================== */
/**
 * Known limitation: by default, Chrome and Safari on OS X allow very limited
 * styling of `select`, unless a `border` property is set.
 */
/**
 * 1. Correct color not being inherited.
 *    Known issue: affects color of disabled elements.
 * 2. Correct font properties not being inherited.
 * 3. Address margins set differently in Firefox 4+, Safari, and Chrome.
 */
button,
input,
optgroup,
select,
textarea {
  color: inherit; /* 1 */
  font: inherit; /* 2 */
  margin: 0; /* 3 */
}

/**
 * Address `overflow` set to `hidden` in IE 8/9/10/11.
 */
button {
  overflow: visible;
}

/**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.
 * Correct `select` style inheritance in Firefox.
 */
button,
select {
  text-transform: none;
}

/**
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *    `input` and others.
 */
button,
html input[type=button],
input[type=reset],
input[type=submit] {
  -webkit-appearance: button; /* 2 */
  cursor: pointer; /* 3 */
}

/**
 * Re-set default cursor for disabled elements.
 */
button[disabled],
html input[disabled] {
  cursor: default;
}

/**
 * Remove inner padding and border in Firefox 4+.
 */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

/**
 * Address Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */
input {
  line-height: normal;
}

/**
 * It's recommended that you don't attempt to style these elements.
 * Firefox's implementation doesn't respect box-sizing, padding, or width.
 *
 * 1. Address box sizing set to `content-box` in IE 8/9/10.
 * 2. Remove excess padding in IE 8/9/10.
 */
input[type=checkbox],
input[type=radio] {
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}

/**
 * Fix the cursor style for Chrome's increment/decrement buttons. For certain
 * `font-size` values of the `input`, it causes the cursor style of the
 * decrement button to change from `default` to `text`.
 */
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Address `appearance` set to `searchfield` in Safari and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari and Chrome
 *    (include `-moz` to future-proof).
 */
input[type=search] {
  -webkit-appearance: textfield; /* 1 */ /* 2 */
  box-sizing: content-box;
}

/**
 * Remove inner padding and search cancel button in Safari and Chrome on OS X.
 * Safari (but not Chrome) clips the cancel button when the search input has
 * padding (and `textfield` appearance).
 */
input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * Define consistent border, margin, and padding.
 */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

/**
 * 1. Correct `color` not being inherited in IE 8/9/10/11.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 */
legend {
  border: 0; /* 1 */
  padding: 0; /* 2 */
}

/**
 * Remove default vertical scrollbar in IE 8/9/10/11.
 */
textarea {
  overflow: auto;
}

/**
 * Don't inherit the `font-weight` (applied by a rule above).
 * NOTE: the default cannot safely be changed in Chrome and Safari on OS X.
 */
optgroup {
  font-weight: bold;
}

/* Tables
   ========================================================================== */
/**
 * Remove most spacing between table cells.
 */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

td,
th {
  padding: 0;
}

@font-face {
  font-family: "icomoon";
  src: url("../fonts/icomoon.eot?mixz7n");
  src: url("../fonts/icomoon.eot?mixz7n#iefix") format("embedded-opentype"), url("../fonts/icomoon.ttf?mixz7n") format("truetype"), url("../fonts/icomoon.woff?mixz7n") format("woff"), url("../fonts/icomoon.svg?mixz7n#icomoon") format("svg");
  font-weight: normal;
  font-style: normal;
}
[class^=icon-], [class*=" icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: "icomoon" !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/*! HTML5 Boilerplate v4.3.0 | MIT License | http://h5bp.com/ */
/*
 * What follows is the result of much research on cross-browser styling.
 * Credit left inline and big thanks to Nicolas Gallagher, Jonathan Neal,
 * Kroc Camen, and the H5BP dev community and team.
 */
/* ==========================================================================
   Base styles: opinionated defaults
   ========================================================================== */
/*
 * Remove text-shadow in selection highlight: h5bp.com/i
 * These selection rule sets have to be separate.
 * Customize the background color to match your design.
 */
html {
  font-family: sans-serif;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

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

audio,
canvas,
progress,
video {
  display: inline-block;
  vertical-align: baseline;
}

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

[hidden],
template {
  display: none;
}

a {
  background-color: transparent;
}

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

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

b,
strong {
  font-weight: bold;
}

dfn {
  font-style: italic;
}

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

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

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

img {
  border: 0;
}

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

figure {
  margin: 1em 40px;
}

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

pre {
  overflow: auto;
}

code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

button,
input,
optgroup,
select,
textarea {
  color: inherit;
  font: inherit;
  margin: 0;
}

button {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

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

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

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

input {
  line-height: normal;
}

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

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  height: auto;
}

input[type=search] {
  -webkit-appearance: textfield;
  box-sizing: content-box;
}

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

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

legend {
  border: 0;
  padding: 0;
}

textarea {
  overflow: auto;
}

optgroup {
  font-weight: bold;
}

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

td,
th {
  padding: 0;
}

* {
  box-sizing: border-box;
}

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

html {
  font-size: 10px;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

input,
button,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

a {
  color: #337ab7;
  text-decoration: none;
}

a:hover,
a:focus {
  color: #23527c;
  text-decoration: underline;
}

a:focus {
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}

:focus-visible {
  outline-offset: 2px;
}

figure {
  margin: 0;
}

img {
  vertical-align: top;
}

.responsive img,
.img-responsive {
  display: block;
  max-width: 100%;
  height: auto;
}

.img-rounded {
  border-radius: 6px;
}

.img-circle {
  border-radius: 50%;
}

hr {
  margin-top: 20px;
  margin-bottom: 20px;
  border: 0;
  border-top: 1px solid #eeeeee;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.sr-only-focusable:active,
.sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  clip: auto;
}

[role=button] {
  cursor: pointer;
}

.clearfix:before,
.clearfix:after,
.dl-horizontal dd:before,
.dl-horizontal dd:after,
.container:before,
.container:after,
.container-fluid:before,
.container-fluid:after,
.row:before,
.row:after,
.form-horizontal .form-group:before,
.form-horizontal .form-group:after,
.pager:before,
.pager:after {
  content: " ";
  display: table;
}

.clearfix:after,
.dl-horizontal dd:after,
.container:after,
.container-fluid:after,
.row:after,
.form-horizontal .form-group:after,
.pager:after {
  clear: both;
}

.center-block {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.pull-right {
  float: right !important;
}

.pull-left {
  float: left !important;
}

.hide {
  display: none !important;
}

.show {
  display: block !important;
}

.invisible {
  visibility: hidden;
}

.text-hide {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
}

.hidden {
  display: none !important;
}

.affix {
  position: fixed;
}
.visible-xs,
.visible-sm,
.visible-md,
.visible-lg {
  display: none !important;
}

.visible-xs-block,
.visible-xs-inline,
.visible-xs-inline-block,
.visible-sm-block,
.visible-sm-inline,
.visible-sm-inline-block,
.visible-md-block,
.visible-md-inline,
.visible-md-inline-block,
.visible-lg-block,
.visible-lg-inline,
.visible-lg-inline-block {
  display: none !important;
}

@media (max-width: 767px) {
  .visible-xs {
    display: block !important;
  }
  table.visible-xs {
    display: table !important;
  }
  tr.visible-xs {
    display: table-row !important;
  }
  th.visible-xs,
  td.visible-xs {
    display: table-cell !important;
  }
}
@media (max-width: 767px) {
  .visible-xs-block {
    display: block !important;
  }
}
@media (max-width: 767px) {
  .visible-xs-inline {
    display: inline !important;
  }
}
@media (max-width: 767px) {
  .visible-xs-inline-block {
    display: inline-block !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm {
    display: block !important;
  }
  table.visible-sm {
    display: table !important;
  }
  tr.visible-sm {
    display: table-row !important;
  }
  th.visible-sm,
  td.visible-sm {
    display: table-cell !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm-block {
    display: block !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm-inline {
    display: inline !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm-inline-block {
    display: inline-block !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md {
    display: block !important;
  }
  table.visible-md {
    display: table !important;
  }
  tr.visible-md {
    display: table-row !important;
  }
  th.visible-md,
  td.visible-md {
    display: table-cell !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md-block {
    display: block !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md-inline {
    display: inline !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md-inline-block {
    display: inline-block !important;
  }
}
@media (min-width: 1200px) {
  .visible-lg {
    display: block !important;
  }
  table.visible-lg {
    display: table !important;
  }
  tr.visible-lg {
    display: table-row !important;
  }
  th.visible-lg,
  td.visible-lg {
    display: table-cell !important;
  }
}
@media (min-width: 1200px) {
  .visible-lg-block {
    display: block !important;
  }
}
@media (min-width: 1200px) {
  .visible-lg-inline {
    display: inline !important;
  }
}
@media (min-width: 1200px) {
  .visible-lg-inline-block {
    display: inline-block !important;
  }
}
@media (max-width: 767px) {
  .hidden-xs {
    display: none !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .hidden-sm {
    display: none !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .hidden-md {
    display: none !important;
  }
}
@media (min-width: 1200px) {
  .hidden-lg {
    display: none !important;
  }
}
.visible-print {
  display: none !important;
}

@media print {
  .visible-print {
    display: block !important;
  }
  table.visible-print {
    display: table !important;
  }
  tr.visible-print {
    display: table-row !important;
  }
  th.visible-print,
  td.visible-print {
    display: table-cell !important;
  }
}
.visible-print-block {
  display: none !important;
}

@media print {
  .visible-print-block {
    display: block !important;
  }
}
.visible-print-inline {
  display: none !important;
}

@media print {
  .visible-print-inline {
    display: inline !important;
  }
}
.visible-print-inline-block {
  display: none !important;
}

@media print {
  .visible-print-inline-block {
    display: inline-block !important;
  }
}
@media print {
  .hidden-print {
    display: none !important;
  }
}
.embed-responsive {
  position: relative;
  display: block;
  height: 0;
  padding: 0;
  overflow: hidden;
}

.embed-responsive .embed-responsive-item,
.embed-responsive iframe,
.embed-responsive embed,
.embed-responsive object,
.embed-responsive video {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  border: 0;
}

.embed-responsive-16by9 {
  padding-bottom: 56.25%;
}

.embed-responsive-4by3 {
  padding-bottom: 75%;
}

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

/*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */
@media print {
  *,
  *:before,
  *:after {
    background: transparent !important;
    color: #000 !important;
    box-shadow: none !important;
    text-shadow: none !important;
  }
  a,
  a:visited {
    text-decoration: underline;
  }
  a[href]:after {
    content: " (" attr(href) ")";
    display: none;
  }
  abbr[title]:after {
    content: " (" attr(title) ")";
    display: none;
  }
  a[href^="#"]:after,
  a[href^="javascript:"]:after {
    content: "";
    display: none;
  }
  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }
  thead {
    display: table-header-group;
  }
  tr,
  img {
    page-break-inside: avoid;
  }
  img {
    max-width: 100% !important;
  }
  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }
  h2,
  h3 {
    page-break-after: avoid;
  }
  header.header {
    min-height: auto !important;
  }
  .region-header {
    background: #2E5A8A !important;
  }
  a.site-logo {
    display: block;
    position: relative;
    margin-bottom: 16px;
  }
  .main.container {
    border-bottom: 10px solid #2E5A8A !important;
  }
  .disclaimer {
    border: 2px solid #4E358D !important;
  }
  table thead {
    background: #efefef;
  }
  table tbody {
    box-shadow: 0px 4px 1px #cecece !important;
  }
  table td:last-child {
    display: none;
  }
  .navbar,
  .region-secondary-menu,
  .responsive-menu-toggle-wrapper,
  #block-corporate-breadcrumbs,
  .block-search,
  .menu-section,
  .toc-mobile.toc-menu,
  .back-to-top,
  .banner,
  .footer,
  .footer_bottom,
  #gdpr-popup,
  .video-embed-field-responsive-video {
    display: none !important;
  }
  .btn > .caret,
  .dropup > .btn > .caret {
    border-top-color: #000 !important;
  }
  .label {
    border: 1px solid #000;
  }
  .table {
    border-collapse: collapse !important;
  }
  .table td,
  .table th {
    background-color: #fff !important;
  }
  .table-bordered th,
  .table-bordered td {
    border: 1px solid #ddd !important;
  }
  .field--name-field-image {
    float: none !important;
    margin-left: 0 !important;
    padding-left: 0 !important;
  }
  .field--name-field-image img {
    float: none !important;
  }
}
.container,
.region-header,
.region-menu,
.region-banner,
.region-footer,
.region-footer-bottom {
  margin-right: auto;
  margin-left: auto;
  padding-left: 16px;
  padding-right: 16px;
}

@media (min-width: 1400px) {
  .container,
  .region-header,
  .region-menu,
  .region-banner,
  .region-footer,
  .region-footer-bottom {
    width: 1370px;
  }
}
.container-fluid {
  margin-right: auto;
  margin-left: auto;
  padding-left: 16px;
  padding-right: 16px;
}

.row {
  margin-left: -16px;
  margin-right: -16px;
}

.col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12, .col-xs-13, .col-sm-13, .col-md-13, .col-lg-13, .col-xs-14, .col-sm-14, .col-md-14, .col-lg-14, .col-xs-15, .col-sm-15, .col-md-15, .col-lg-15, .col-xs-16, .col-sm-16, .col-md-16, .col-lg-16, .col-xs-17, .col-sm-17, .col-md-17, .col-lg-17, .col-xs-18, .col-sm-18, .col-md-18, .col-lg-18, .col-xs-19, .col-sm-19, .col-md-19, .col-lg-19, .col-xs-20, .col-sm-20, .col-md-20, .col-lg-20, .col-xs-21, .col-sm-21, .col-md-21, .col-lg-21, .col-xs-22, .col-sm-22, .col-md-22, .col-lg-22, .col-xs-23, .col-sm-23, .col-md-23, .col-lg-23, .col-xs-24, .col-sm-24, .col-md-24, .col-lg-24 {
  position: relative;
  min-height: 1px;
  padding-left: 16px;
  padding-right: 16px;
}

.col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12, .col-xs-13, .col-xs-14, .col-xs-15, .col-xs-16, .col-xs-17, .col-xs-18, .col-xs-19, .col-xs-20, .col-xs-21, .col-xs-22, .col-xs-23, .col-xs-24 {
  float: left;
}

.col-xs-24 {
  width: 100%;
}

.col-xs-23 {
  width: 95.83333333%;
}

.col-xs-22 {
  width: 91.66666667%;
}

.col-xs-21 {
  width: 87.5%;
}

.col-xs-20 {
  width: 83.33333333%;
}

.col-xs-19 {
  width: 79.16666667%;
}

.col-xs-18 {
  width: 75%;
}

.col-xs-17 {
  width: 70.83333333%;
}

.col-xs-16 {
  width: 66.66666667%;
}

.col-xs-15 {
  width: 62.5%;
}

.col-xs-14 {
  width: 58.33333333%;
}

.col-xs-13 {
  width: 54.16666667%;
}

.col-xs-12 {
  width: 50%;
}

.col-xs-11 {
  width: 45.83333333%;
}

.col-xs-10 {
  width: 41.66666667%;
}

.col-xs-9 {
  width: 37.5%;
}

.col-xs-8 {
  width: 33.33333333%;
}

.col-xs-7 {
  width: 29.16666667%;
}

.col-xs-6 {
  width: 25%;
}

.col-xs-5 {
  width: 20.83333333%;
}

.col-xs-4 {
  width: 16.66666667%;
}

.col-xs-3 {
  width: 12.5%;
}

.col-xs-2 {
  width: 8.33333333%;
}

.col-xs-1 {
  width: 4.16666667%;
}

.col-xs-pull-24 {
  right: 100%;
}

.col-xs-pull-23 {
  right: 95.83333333%;
}

.col-xs-pull-22 {
  right: 91.66666667%;
}

.col-xs-pull-21 {
  right: 87.5%;
}

.col-xs-pull-20 {
  right: 83.33333333%;
}

.col-xs-pull-19 {
  right: 79.16666667%;
}

.col-xs-pull-18 {
  right: 75%;
}

.col-xs-pull-17 {
  right: 70.83333333%;
}

.col-xs-pull-16 {
  right: 66.66666667%;
}

.col-xs-pull-15 {
  right: 62.5%;
}

.col-xs-pull-14 {
  right: 58.33333333%;
}

.col-xs-pull-13 {
  right: 54.16666667%;
}

.col-xs-pull-12 {
  right: 50%;
}

.col-xs-pull-11 {
  right: 45.83333333%;
}

.col-xs-pull-10 {
  right: 41.66666667%;
}

.col-xs-pull-9 {
  right: 37.5%;
}

.col-xs-pull-8 {
  right: 33.33333333%;
}

.col-xs-pull-7 {
  right: 29.16666667%;
}

.col-xs-pull-6 {
  right: 25%;
}

.col-xs-pull-5 {
  right: 20.83333333%;
}

.col-xs-pull-4 {
  right: 16.66666667%;
}

.col-xs-pull-3 {
  right: 12.5%;
}

.col-xs-pull-2 {
  right: 8.33333333%;
}

.col-xs-pull-1 {
  right: 4.16666667%;
}

.col-xs-pull-0 {
  right: auto;
}

.col-xs-push-24 {
  left: 100%;
}

.col-xs-push-23 {
  left: 95.83333333%;
}

.col-xs-push-22 {
  left: 91.66666667%;
}

.col-xs-push-21 {
  left: 87.5%;
}

.col-xs-push-20 {
  left: 83.33333333%;
}

.col-xs-push-19 {
  left: 79.16666667%;
}

.col-xs-push-18 {
  left: 75%;
}

.col-xs-push-17 {
  left: 70.83333333%;
}

.col-xs-push-16 {
  left: 66.66666667%;
}

.col-xs-push-15 {
  left: 62.5%;
}

.col-xs-push-14 {
  left: 58.33333333%;
}

.col-xs-push-13 {
  left: 54.16666667%;
}

.col-xs-push-12 {
  left: 50%;
}

.col-xs-push-11 {
  left: 45.83333333%;
}

.col-xs-push-10 {
  left: 41.66666667%;
}

.col-xs-push-9 {
  left: 37.5%;
}

.col-xs-push-8 {
  left: 33.33333333%;
}

.col-xs-push-7 {
  left: 29.16666667%;
}

.col-xs-push-6 {
  left: 25%;
}

.col-xs-push-5 {
  left: 20.83333333%;
}

.col-xs-push-4 {
  left: 16.66666667%;
}

.col-xs-push-3 {
  left: 12.5%;
}

.col-xs-push-2 {
  left: 8.33333333%;
}

.col-xs-push-1 {
  left: 4.16666667%;
}

.col-xs-push-0 {
  left: auto;
}

.col-xs-offset-24 {
  margin-left: 100%;
}

.col-xs-offset-23 {
  margin-left: 95.83333333%;
}

.col-xs-offset-22 {
  margin-left: 91.66666667%;
}

.col-xs-offset-21 {
  margin-left: 87.5%;
}

.col-xs-offset-20 {
  margin-left: 83.33333333%;
}

.col-xs-offset-19 {
  margin-left: 79.16666667%;
}

.col-xs-offset-18 {
  margin-left: 75%;
}

.col-xs-offset-17 {
  margin-left: 70.83333333%;
}

.col-xs-offset-16 {
  margin-left: 66.66666667%;
}

.col-xs-offset-15 {
  margin-left: 62.5%;
}

.col-xs-offset-14 {
  margin-left: 58.33333333%;
}

.col-xs-offset-13 {
  margin-left: 54.16666667%;
}

.col-xs-offset-12 {
  margin-left: 50%;
}

.col-xs-offset-11 {
  margin-left: 45.83333333%;
}

.col-xs-offset-10 {
  margin-left: 41.66666667%;
}

.col-xs-offset-9 {
  margin-left: 37.5%;
}

.col-xs-offset-8 {
  margin-left: 33.33333333%;
}

.col-xs-offset-7 {
  margin-left: 29.16666667%;
}

.col-xs-offset-6 {
  margin-left: 25%;
}

.col-xs-offset-5 {
  margin-left: 20.83333333%;
}

.col-xs-offset-4 {
  margin-left: 16.66666667%;
}

.col-xs-offset-3 {
  margin-left: 12.5%;
}

.col-xs-offset-2 {
  margin-left: 8.33333333%;
}

.col-xs-offset-1 {
  margin-left: 4.16666667%;
}

.col-xs-offset-0 {
  margin-left: 0%;
}

@media (min-width: 768px) {
  .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm-13, .col-sm-14, .col-sm-15, .col-sm-16, .col-sm-17, .col-sm-18, .col-sm-19, .col-sm-20, .col-sm-21, .col-sm-22, .col-sm-23, .col-sm-24 {
    float: left;
  }
  .col-sm-24 {
    width: 100%;
  }
  .col-sm-23 {
    width: 95.83333333%;
  }
  .col-sm-22 {
    width: 91.66666667%;
  }
  .col-sm-21 {
    width: 87.5%;
  }
  .col-sm-20 {
    width: 83.33333333%;
  }
  .col-sm-19 {
    width: 79.16666667%;
  }
  .col-sm-18 {
    width: 75%;
  }
  .col-sm-17 {
    width: 70.83333333%;
  }
  .col-sm-16 {
    width: 66.66666667%;
  }
  .col-sm-15 {
    width: 62.5%;
  }
  .col-sm-14 {
    width: 58.33333333%;
  }
  .col-sm-13 {
    width: 54.16666667%;
  }
  .col-sm-12 {
    width: 50%;
  }
  .col-sm-11 {
    width: 45.83333333%;
  }
  .col-sm-10 {
    width: 41.66666667%;
  }
  .col-sm-9 {
    width: 37.5%;
  }
  .col-sm-8 {
    width: 33.33333333%;
  }
  .col-sm-7 {
    width: 29.16666667%;
  }
  .col-sm-6 {
    width: 25%;
  }
  .col-sm-5 {
    width: 20.83333333%;
  }
  .col-sm-4 {
    width: 16.66666667%;
  }
  .col-sm-3 {
    width: 12.5%;
  }
  .col-sm-2 {
    width: 8.33333333%;
  }
  .col-sm-1 {
    width: 4.16666667%;
  }
  .col-sm-pull-24 {
    right: 100%;
  }
  .col-sm-pull-23 {
    right: 95.83333333%;
  }
  .col-sm-pull-22 {
    right: 91.66666667%;
  }
  .col-sm-pull-21 {
    right: 87.5%;
  }
  .col-sm-pull-20 {
    right: 83.33333333%;
  }
  .col-sm-pull-19 {
    right: 79.16666667%;
  }
  .col-sm-pull-18 {
    right: 75%;
  }
  .col-sm-pull-17 {
    right: 70.83333333%;
  }
  .col-sm-pull-16 {
    right: 66.66666667%;
  }
  .col-sm-pull-15 {
    right: 62.5%;
  }
  .col-sm-pull-14 {
    right: 58.33333333%;
  }
  .col-sm-pull-13 {
    right: 54.16666667%;
  }
  .col-sm-pull-12 {
    right: 50%;
  }
  .col-sm-pull-11 {
    right: 45.83333333%;
  }
  .col-sm-pull-10 {
    right: 41.66666667%;
  }
  .col-sm-pull-9 {
    right: 37.5%;
  }
  .col-sm-pull-8 {
    right: 33.33333333%;
  }
  .col-sm-pull-7 {
    right: 29.16666667%;
  }
  .col-sm-pull-6 {
    right: 25%;
  }
  .col-sm-pull-5 {
    right: 20.83333333%;
  }
  .col-sm-pull-4 {
    right: 16.66666667%;
  }
  .col-sm-pull-3 {
    right: 12.5%;
  }
  .col-sm-pull-2 {
    right: 8.33333333%;
  }
  .col-sm-pull-1 {
    right: 4.16666667%;
  }
  .col-sm-pull-0 {
    right: auto;
  }
  .col-sm-push-24 {
    left: 100%;
  }
  .col-sm-push-23 {
    left: 95.83333333%;
  }
  .col-sm-push-22 {
    left: 91.66666667%;
  }
  .col-sm-push-21 {
    left: 87.5%;
  }
  .col-sm-push-20 {
    left: 83.33333333%;
  }
  .col-sm-push-19 {
    left: 79.16666667%;
  }
  .col-sm-push-18 {
    left: 75%;
  }
  .col-sm-push-17 {
    left: 70.83333333%;
  }
  .col-sm-push-16 {
    left: 66.66666667%;
  }
  .col-sm-push-15 {
    left: 62.5%;
  }
  .col-sm-push-14 {
    left: 58.33333333%;
  }
  .col-sm-push-13 {
    left: 54.16666667%;
  }
  .col-sm-push-12 {
    left: 50%;
  }
  .col-sm-push-11 {
    left: 45.83333333%;
  }
  .col-sm-push-10 {
    left: 41.66666667%;
  }
  .col-sm-push-9 {
    left: 37.5%;
  }
  .col-sm-push-8 {
    left: 33.33333333%;
  }
  .col-sm-push-7 {
    left: 29.16666667%;
  }
  .col-sm-push-6 {
    left: 25%;
  }
  .col-sm-push-5 {
    left: 20.83333333%;
  }
  .col-sm-push-4 {
    left: 16.66666667%;
  }
  .col-sm-push-3 {
    left: 12.5%;
  }
  .col-sm-push-2 {
    left: 8.33333333%;
  }
  .col-sm-push-1 {
    left: 4.16666667%;
  }
  .col-sm-push-0 {
    left: auto;
  }
  .col-sm-offset-24 {
    margin-left: 100%;
  }
  .col-sm-offset-23 {
    margin-left: 95.83333333%;
  }
  .col-sm-offset-22 {
    margin-left: 91.66666667%;
  }
  .col-sm-offset-21 {
    margin-left: 87.5%;
  }
  .col-sm-offset-20 {
    margin-left: 83.33333333%;
  }
  .col-sm-offset-19 {
    margin-left: 79.16666667%;
  }
  .col-sm-offset-18 {
    margin-left: 75%;
  }
  .col-sm-offset-17 {
    margin-left: 70.83333333%;
  }
  .col-sm-offset-16 {
    margin-left: 66.66666667%;
  }
  .col-sm-offset-15 {
    margin-left: 62.5%;
  }
  .col-sm-offset-14 {
    margin-left: 58.33333333%;
  }
  .col-sm-offset-13 {
    margin-left: 54.16666667%;
  }
  .col-sm-offset-12 {
    margin-left: 50%;
  }
  .col-sm-offset-11 {
    margin-left: 45.83333333%;
  }
  .col-sm-offset-10 {
    margin-left: 41.66666667%;
  }
  .col-sm-offset-9 {
    margin-left: 37.5%;
  }
  .col-sm-offset-8 {
    margin-left: 33.33333333%;
  }
  .col-sm-offset-7 {
    margin-left: 29.16666667%;
  }
  .col-sm-offset-6 {
    margin-left: 25%;
  }
  .col-sm-offset-5 {
    margin-left: 20.83333333%;
  }
  .col-sm-offset-4 {
    margin-left: 16.66666667%;
  }
  .col-sm-offset-3 {
    margin-left: 12.5%;
  }
  .col-sm-offset-2 {
    margin-left: 8.33333333%;
  }
  .col-sm-offset-1 {
    margin-left: 4.16666667%;
  }
  .col-sm-offset-0 {
    margin-left: 0%;
  }
}
@media (min-width: 992px) {
  .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-md-13, .col-md-14, .col-md-15, .col-md-16, .col-md-17, .col-md-18, .col-md-19, .col-md-20, .col-md-21, .col-md-22, .col-md-23, .col-md-24 {
    float: left;
  }
  .col-md-24 {
    width: 100%;
  }
  .col-md-23 {
    width: 95.83333333%;
  }
  .col-md-22 {
    width: 91.66666667%;
  }
  .col-md-21 {
    width: 87.5%;
  }
  .col-md-20 {
    width: 83.33333333%;
  }
  .col-md-19 {
    width: 79.16666667%;
  }
  .col-md-18 {
    width: 75%;
  }
  .col-md-17 {
    width: 70.83333333%;
  }
  .col-md-16 {
    width: 66.66666667%;
  }
  .col-md-15 {
    width: 62.5%;
  }
  .col-md-14 {
    width: 58.33333333%;
  }
  .col-md-13 {
    width: 54.16666667%;
  }
  .col-md-12 {
    width: 50%;
  }
  .col-md-11 {
    width: 45.83333333%;
  }
  .col-md-10 {
    width: 41.66666667%;
  }
  .col-md-9 {
    width: 37.5%;
  }
  .col-md-8 {
    width: 33.33333333%;
  }
  .col-md-7 {
    width: 29.16666667%;
  }
  .col-md-6 {
    width: 25%;
  }
  .col-md-5 {
    width: 20.83333333%;
  }
  .col-md-4 {
    width: 16.66666667%;
  }
  .col-md-3 {
    width: 12.5%;
  }
  .col-md-2 {
    width: 8.33333333%;
  }
  .col-md-1 {
    width: 4.16666667%;
  }
  .col-md-pull-24 {
    right: 100%;
  }
  .col-md-pull-23 {
    right: 95.83333333%;
  }
  .col-md-pull-22 {
    right: 91.66666667%;
  }
  .col-md-pull-21 {
    right: 87.5%;
  }
  .col-md-pull-20 {
    right: 83.33333333%;
  }
  .col-md-pull-19 {
    right: 79.16666667%;
  }
  .col-md-pull-18 {
    right: 75%;
  }
  .col-md-pull-17 {
    right: 70.83333333%;
  }
  .col-md-pull-16 {
    right: 66.66666667%;
  }
  .col-md-pull-15 {
    right: 62.5%;
  }
  .col-md-pull-14 {
    right: 58.33333333%;
  }
  .col-md-pull-13 {
    right: 54.16666667%;
  }
  .col-md-pull-12 {
    right: 50%;
  }
  .col-md-pull-11 {
    right: 45.83333333%;
  }
  .col-md-pull-10 {
    right: 41.66666667%;
  }
  .col-md-pull-9 {
    right: 37.5%;
  }
  .col-md-pull-8 {
    right: 33.33333333%;
  }
  .col-md-pull-7 {
    right: 29.16666667%;
  }
  .col-md-pull-6 {
    right: 25%;
  }
  .col-md-pull-5 {
    right: 20.83333333%;
  }
  .col-md-pull-4 {
    right: 16.66666667%;
  }
  .col-md-pull-3 {
    right: 12.5%;
  }
  .col-md-pull-2 {
    right: 8.33333333%;
  }
  .col-md-pull-1 {
    right: 4.16666667%;
  }
  .col-md-pull-0 {
    right: auto;
  }
  .col-md-push-24 {
    left: 100%;
  }
  .col-md-push-23 {
    left: 95.83333333%;
  }
  .col-md-push-22 {
    left: 91.66666667%;
  }
  .col-md-push-21 {
    left: 87.5%;
  }
  .col-md-push-20 {
    left: 83.33333333%;
  }
  .col-md-push-19 {
    left: 79.16666667%;
  }
  .col-md-push-18 {
    left: 75%;
  }
  .col-md-push-17 {
    left: 70.83333333%;
  }
  .col-md-push-16 {
    left: 66.66666667%;
  }
  .col-md-push-15 {
    left: 62.5%;
  }
  .col-md-push-14 {
    left: 58.33333333%;
  }
  .col-md-push-13 {
    left: 54.16666667%;
  }
  .col-md-push-12 {
    left: 50%;
  }
  .col-md-push-11 {
    left: 45.83333333%;
  }
  .col-md-push-10 {
    left: 41.66666667%;
  }
  .col-md-push-9 {
    left: 37.5%;
  }
  .col-md-push-8 {
    left: 33.33333333%;
  }
  .col-md-push-7 {
    left: 29.16666667%;
  }
  .col-md-push-6 {
    left: 25%;
  }
  .col-md-push-5 {
    left: 20.83333333%;
  }
  .col-md-push-4 {
    left: 16.66666667%;
  }
  .col-md-push-3 {
    left: 12.5%;
  }
  .col-md-push-2 {
    left: 8.33333333%;
  }
  .col-md-push-1 {
    left: 4.16666667%;
  }
  .col-md-push-0 {
    left: auto;
  }
  .col-md-offset-24 {
    margin-left: 100%;
  }
  .col-md-offset-23 {
    margin-left: 95.83333333%;
  }
  .col-md-offset-22 {
    margin-left: 91.66666667%;
  }
  .col-md-offset-21 {
    margin-left: 87.5%;
  }
  .col-md-offset-20 {
    margin-left: 83.33333333%;
  }
  .col-md-offset-19 {
    margin-left: 79.16666667%;
  }
  .col-md-offset-18 {
    margin-left: 75%;
  }
  .col-md-offset-17 {
    margin-left: 70.83333333%;
  }
  .col-md-offset-16 {
    margin-left: 66.66666667%;
  }
  .col-md-offset-15 {
    margin-left: 62.5%;
  }
  .col-md-offset-14 {
    margin-left: 58.33333333%;
  }
  .col-md-offset-13 {
    margin-left: 54.16666667%;
  }
  .col-md-offset-12 {
    margin-left: 50%;
  }
  .col-md-offset-11 {
    margin-left: 45.83333333%;
  }
  .col-md-offset-10 {
    margin-left: 41.66666667%;
  }
  .col-md-offset-9 {
    margin-left: 37.5%;
  }
  .col-md-offset-8 {
    margin-left: 33.33333333%;
  }
  .col-md-offset-7 {
    margin-left: 29.16666667%;
  }
  .col-md-offset-6 {
    margin-left: 25%;
  }
  .col-md-offset-5 {
    margin-left: 20.83333333%;
  }
  .col-md-offset-4 {
    margin-left: 16.66666667%;
  }
  .col-md-offset-3 {
    margin-left: 12.5%;
  }
  .col-md-offset-2 {
    margin-left: 8.33333333%;
  }
  .col-md-offset-1 {
    margin-left: 4.16666667%;
  }
  .col-md-offset-0 {
    margin-left: 0%;
  }
}
@media (min-width: 1200px) {
  .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg-13, .col-lg-14, .col-lg-15, .col-lg-16, .col-lg-17, .col-lg-18, .col-lg-19, .col-lg-20, .col-lg-21, .col-lg-22, .col-lg-23, .col-lg-24 {
    float: left;
  }
  .col-lg-24 {
    width: 100%;
  }
  .col-lg-23 {
    width: 95.83333333%;
  }
  .col-lg-22 {
    width: 91.66666667%;
  }
  .col-lg-21 {
    width: 87.5%;
  }
  .col-lg-20 {
    width: 83.33333333%;
  }
  .col-lg-19 {
    width: 79.16666667%;
  }
  .col-lg-18 {
    width: 75%;
  }
  .col-lg-17 {
    width: 70.83333333%;
  }
  .col-lg-16 {
    width: 66.66666667%;
  }
  .col-lg-15 {
    width: 62.5%;
  }
  .col-lg-14 {
    width: 58.33333333%;
  }
  .col-lg-13 {
    width: 54.16666667%;
  }
  .col-lg-12 {
    width: 50%;
  }
  .col-lg-11 {
    width: 45.83333333%;
  }
  .col-lg-10 {
    width: 41.66666667%;
  }
  .col-lg-9 {
    width: 37.5%;
  }
  .col-lg-8 {
    width: 33.33333333%;
  }
  .col-lg-7 {
    width: 29.16666667%;
  }
  .col-lg-6 {
    width: 25%;
  }
  .col-lg-5 {
    width: 20.83333333%;
  }
  .col-lg-4 {
    width: 16.66666667%;
  }
  .col-lg-3 {
    width: 12.5%;
  }
  .col-lg-2 {
    width: 8.33333333%;
  }
  .col-lg-1 {
    width: 4.16666667%;
  }
  .col-lg-pull-24 {
    right: 100%;
  }
  .col-lg-pull-23 {
    right: 95.83333333%;
  }
  .col-lg-pull-22 {
    right: 91.66666667%;
  }
  .col-lg-pull-21 {
    right: 87.5%;
  }
  .col-lg-pull-20 {
    right: 83.33333333%;
  }
  .col-lg-pull-19 {
    right: 79.16666667%;
  }
  .col-lg-pull-18 {
    right: 75%;
  }
  .col-lg-pull-17 {
    right: 70.83333333%;
  }
  .col-lg-pull-16 {
    right: 66.66666667%;
  }
  .col-lg-pull-15 {
    right: 62.5%;
  }
  .col-lg-pull-14 {
    right: 58.33333333%;
  }
  .col-lg-pull-13 {
    right: 54.16666667%;
  }
  .col-lg-pull-12 {
    right: 50%;
  }
  .col-lg-pull-11 {
    right: 45.83333333%;
  }
  .col-lg-pull-10 {
    right: 41.66666667%;
  }
  .col-lg-pull-9 {
    right: 37.5%;
  }
  .col-lg-pull-8 {
    right: 33.33333333%;
  }
  .col-lg-pull-7 {
    right: 29.16666667%;
  }
  .col-lg-pull-6 {
    right: 25%;
  }
  .col-lg-pull-5 {
    right: 20.83333333%;
  }
  .col-lg-pull-4 {
    right: 16.66666667%;
  }
  .col-lg-pull-3 {
    right: 12.5%;
  }
  .col-lg-pull-2 {
    right: 8.33333333%;
  }
  .col-lg-pull-1 {
    right: 4.16666667%;
  }
  .col-lg-pull-0 {
    right: auto;
  }
  .col-lg-push-24 {
    left: 100%;
  }
  .col-lg-push-23 {
    left: 95.83333333%;
  }
  .col-lg-push-22 {
    left: 91.66666667%;
  }
  .col-lg-push-21 {
    left: 87.5%;
  }
  .col-lg-push-20 {
    left: 83.33333333%;
  }
  .col-lg-push-19 {
    left: 79.16666667%;
  }
  .col-lg-push-18 {
    left: 75%;
  }
  .col-lg-push-17 {
    left: 70.83333333%;
  }
  .col-lg-push-16 {
    left: 66.66666667%;
  }
  .col-lg-push-15 {
    left: 62.5%;
  }
  .col-lg-push-14 {
    left: 58.33333333%;
  }
  .col-lg-push-13 {
    left: 54.16666667%;
  }
  .col-lg-push-12 {
    left: 50%;
  }
  .col-lg-push-11 {
    left: 45.83333333%;
  }
  .col-lg-push-10 {
    left: 41.66666667%;
  }
  .col-lg-push-9 {
    left: 37.5%;
  }
  .col-lg-push-8 {
    left: 33.33333333%;
  }
  .col-lg-push-7 {
    left: 29.16666667%;
  }
  .col-lg-push-6 {
    left: 25%;
  }
  .col-lg-push-5 {
    left: 20.83333333%;
  }
  .col-lg-push-4 {
    left: 16.66666667%;
  }
  .col-lg-push-3 {
    left: 12.5%;
  }
  .col-lg-push-2 {
    left: 8.33333333%;
  }
  .col-lg-push-1 {
    left: 4.16666667%;
  }
  .col-lg-push-0 {
    left: auto;
  }
  .col-lg-offset-24 {
    margin-left: 100%;
  }
  .col-lg-offset-23 {
    margin-left: 95.83333333%;
  }
  .col-lg-offset-22 {
    margin-left: 91.66666667%;
  }
  .col-lg-offset-21 {
    margin-left: 87.5%;
  }
  .col-lg-offset-20 {
    margin-left: 83.33333333%;
  }
  .col-lg-offset-19 {
    margin-left: 79.16666667%;
  }
  .col-lg-offset-18 {
    margin-left: 75%;
  }
  .col-lg-offset-17 {
    margin-left: 70.83333333%;
  }
  .col-lg-offset-16 {
    margin-left: 66.66666667%;
  }
  .col-lg-offset-15 {
    margin-left: 62.5%;
  }
  .col-lg-offset-14 {
    margin-left: 58.33333333%;
  }
  .col-lg-offset-13 {
    margin-left: 54.16666667%;
  }
  .col-lg-offset-12 {
    margin-left: 50%;
  }
  .col-lg-offset-11 {
    margin-left: 45.83333333%;
  }
  .col-lg-offset-10 {
    margin-left: 41.66666667%;
  }
  .col-lg-offset-9 {
    margin-left: 37.5%;
  }
  .col-lg-offset-8 {
    margin-left: 33.33333333%;
  }
  .col-lg-offset-7 {
    margin-left: 29.16666667%;
  }
  .col-lg-offset-6 {
    margin-left: 25%;
  }
  .col-lg-offset-5 {
    margin-left: 20.83333333%;
  }
  .col-lg-offset-4 {
    margin-left: 16.66666667%;
  }
  .col-lg-offset-3 {
    margin-left: 12.5%;
  }
  .col-lg-offset-2 {
    margin-left: 8.33333333%;
  }
  .col-lg-offset-1 {
    margin-left: 4.16666667%;
  }
  .col-lg-offset-0 {
    margin-left: 0%;
  }
}
.clearfix:before,
.clearfix:after,
.dl-horizontal dd:before,
.dl-horizontal dd:after,
.container:before,
.container:after,
.container-fluid:before,
.container-fluid:after,
.row:before,
.row:after,
.form-horizontal .form-group:before,
.form-horizontal .form-group:after,
.pager:before,
.pager:after {
  content: " ";
  display: table;
}

.clearfix:after,
.dl-horizontal dd:after,
.container:after,
.container-fluid:after,
.row:after,
.form-horizontal .form-group:after,
.pager:after {
  clear: both;
}

.center-block {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.pull-right {
  float: right !important;
}

.pull-left {
  float: left !important;
}

.hide {
  display: none !important;
}

.show {
  display: block !important;
}

.invisible {
  visibility: hidden;
}

.text-hide {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
}

.hidden {
  display: none !important;
}

.affix {
  position: fixed;
}
.visible-xs,
.visible-sm,
.visible-md,
.visible-lg {
  display: none !important;
}

.visible-xs-block,
.visible-xs-inline,
.visible-xs-inline-block,
.visible-sm-block,
.visible-sm-inline,
.visible-sm-inline-block,
.visible-md-block,
.visible-md-inline,
.visible-md-inline-block,
.visible-lg-block,
.visible-lg-inline,
.visible-lg-inline-block {
  display: none !important;
}

@media (max-width: 767px) {
  .visible-xs {
    display: block !important;
  }
  table.visible-xs {
    display: table !important;
  }
  tr.visible-xs {
    display: table-row !important;
  }
  th.visible-xs,
  td.visible-xs {
    display: table-cell !important;
  }
}
@media (max-width: 767px) {
  .visible-xs-block {
    display: block !important;
  }
}
@media (max-width: 767px) {
  .visible-xs-inline {
    display: inline !important;
  }
}
@media (max-width: 767px) {
  .visible-xs-inline-block {
    display: inline-block !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm {
    display: block !important;
  }
  table.visible-sm {
    display: table !important;
  }
  tr.visible-sm {
    display: table-row !important;
  }
  th.visible-sm,
  td.visible-sm {
    display: table-cell !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm-block {
    display: block !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm-inline {
    display: inline !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm-inline-block {
    display: inline-block !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md {
    display: block !important;
  }
  table.visible-md {
    display: table !important;
  }
  tr.visible-md {
    display: table-row !important;
  }
  th.visible-md,
  td.visible-md {
    display: table-cell !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md-block {
    display: block !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md-inline {
    display: inline !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md-inline-block {
    display: inline-block !important;
  }
}
@media (min-width: 1200px) {
  .visible-lg {
    display: block !important;
  }
  table.visible-lg {
    display: table !important;
  }
  tr.visible-lg {
    display: table-row !important;
  }
  th.visible-lg,
  td.visible-lg {
    display: table-cell !important;
  }
}
@media (min-width: 1200px) {
  .visible-lg-block {
    display: block !important;
  }
}
@media (min-width: 1200px) {
  .visible-lg-inline {
    display: inline !important;
  }
}
@media (min-width: 1200px) {
  .visible-lg-inline-block {
    display: inline-block !important;
  }
}
@media (max-width: 767px) {
  .hidden-xs {
    display: none !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .hidden-sm {
    display: none !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .hidden-md {
    display: none !important;
  }
}
@media (min-width: 1200px) {
  .hidden-lg {
    display: none !important;
  }
}
.visible-print {
  display: none !important;
}

@media print {
  .visible-print {
    display: block !important;
  }
  table.visible-print {
    display: table !important;
  }
  tr.visible-print {
    display: table-row !important;
  }
  th.visible-print,
  td.visible-print {
    display: table-cell !important;
  }
}
.visible-print-block {
  display: none !important;
}

@media print {
  .visible-print-block {
    display: block !important;
  }
}
.visible-print-inline {
  display: none !important;
}

@media print {
  .visible-print-inline {
    display: inline !important;
  }
}
.visible-print-inline-block {
  display: none !important;
}

@media print {
  .visible-print-inline-block {
    display: inline-block !important;
  }
}
@media print {
  .hidden-print {
    display: none !important;
  }
}
.clear {
  clear: both;
}

.no-padding {
  padding-right: 0;
  padding-left: 0;
}

/* GENERAL */
body {
  background: #fff;
  /*
  &.toolbar-horizontal.toolbar-fixed {
    padding-top: 39px;

    &.toolbar-tray-open {
     padding-top: 79px; 
    }
  }

  &.toolbar-vertical.toolbar-fixed {
    padding-top: 39px;
  }
  */
}

a,
a:visited {
  /* color: $linkColor; */
}

a:hover {
  /* color: $linkHoverColor; */
}

/* STRUCTURE */
#container {
  /* max-width: $pageWidth; */
  margin: 0px auto;
}

div.main.container {
  background: url("../images/content-wrapper-bg.png") bottom left repeat-x;
  padding: 0 16px 32px;
  min-height: 50vh;
  width: 100%;
}

.layout-container {
  position: relative;
  margin: 0;
  min-width: 320px;
  padding: 0;
}

.banner {
  background: #f1f1f1 url("../images/banner-wrapper-bg.png") bottom left repeat-x;
  min-height: 380px;
  overflow: hidden;
  padding: 0 0 16px;
}

#main-content {
  width: 100%;
}

.block-system-main-block {
  height: 100%;
}
.block-system-main-block .node--type-page.node--view-mode-full {
  height: 100%;
}

.layout-content {
  background: #fff;
  margin: 0;
  position: relative;
  overflow: hidden;
  order: 0;
}
@media (min-width: 992px) {
  .layout-content {
    display: flex;
    margin: 0 auto;
    padding: 0 16px;
    max-width: 1370px;
  }
}
.layout-content .region-content,
.layout-content .region-content-front {
  width: 100%;
  padding: 0px;
}
.layout-content .region-sidebar {
  width: 100%;
  margin-top: 16px;
  margin-bottom: 32px;
}
@media (min-width: 992px) {
  .layout-content .region-sidebar {
    width: 40%;
    padding-left: 32px;
    margin-top: 48px;
  }
}

.region-content-bottom {
  width: 100%;
  padding: 0 16px;
}

.page-node-type-page.sidebar .layout-content .region-content {
  width: 100%;
  padding: 0px;
}
@media (min-width: 992px) {
  .page-node-type-page.sidebar .layout-content .region-content {
    width: 70%;
  }
}
@media (min-width: 992px) {
  .page-node-type-page.sidebar .layout-content .region-sidebar {
    width: 30%;
    padding-left: 32px;
    margin-top: 48px;
  }
}

body {
  font-family: "helvetica", sans-serif;
  background: #fff;
  color: #000;
  font-size: 14px;
  line-height: 1.4;
  font-weight: 400;
}
@media (min-width: 1200px) {
  body {
    font-size: 16px;
    line-height: 1.52;
  }
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "helvetica", sans-serif;
  font-weight: 400;
  line-height: 1.1;
  color: #000;
}

h1,
h2,
h3 {
  margin-top: 0;
  margin-bottom: 24px;
}

h4,
h5,
h6 {
  margin-top: 10px;
  margin-bottom: 10px;
}

h1 {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.25;
}
@media (min-width: 992px) {
  h1 {
    font-size: 48px;
  }
}

h1.page-title {
  color: #1f3d5e;
  margin-bottom: 0;
  font-size: 300%;
  letter-spacing: -1px;
  font-weight: normal;
  line-height: 1.2em;
}

h2 {
  font-size: 24px;
  line-height: 1.25;
  font-weight: 700;
}
@media (min-width: 992px) {
  h2 {
    font-size: 36px;
  }
}
h2 a {
  text-decoration: none;
  font-weight: 700;
}
h2 a:hover, h2 a:focus {
  text-decoration: underline;
}

h3 {
  font-size: 21px;
  line-height: 1.667;
  font-weight: 600;
  margin-bottom: 8px;
}
h3 a {
  text-decoration: none;
}
h3 a:hover, h3 a:focus {
  text-decoration: underline;
}

h4 {
  font-size: 18px;
}

h5 {
  font-size: 16px;
}

h6 {
  font-size: 12px;
}

p {
  margin: 0 0 1.5em;
  line-height: 1.75;
}

.lead {
  margin-bottom: 20px;
  font-size: 16px;
  font-weight: 300;
  line-height: 2;
}
@media (min-width: 768px) {
  .lead {
    font-size: 21px;
  }
}

.small,
small {
  font-size: 85%;
}

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

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

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

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

.text-nowrap {
  white-space: nowrap;
}

.text-lowercase {
  text-transform: lowercase;
}

.text-uppercase {
  text-transform: uppercase;
}

.text-capitalize {
  text-transform: capitalize;
}

a {
  color: #2A537F;
  cursor: pointer;
  text-decoration-skip: ink;
  -webkit-text-decoration-skip: ink;
  text-decoration: underline;
}
a:hover {
  color: #2A537F;
  text-decoration: none;
}

ol,
ul {
  margin-top: 0;
  margin-bottom: 1em;
}

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

.list {
  overflow: hidden;
  margin: 0;
  padding: 0;
  list-style: none;
}
.list li {
  margin: 0;
}

.list-unstyled {
  padding-left: 0;
  list-style: none;
}

.list-inline {
  padding-left: 0;
  list-style: none;
  margin-left: -5px;
}

.list-inline > li {
  display: inline-block;
  padding-left: 5px;
  padding-right: 5px;
}

.list-striped .entry {
  background: #fff;
}
.list-striped .entry:nth-child(2n+1) {
  background: #F7F7F7;
}

.list-flex {
  display: block;
}
@media (min-width: 992px) {
  .list-flex {
    display: flex;
    flex-wrap: wrap;
  }
}
.list-flex li {
  margin-bottom: 16px;
}

.field--name-body ul,
.field--name-field-content ul {
  list-style: none;
  padding: 0;
}
.field--name-body ul li,
.field--name-field-content ul li {
  list-style-type: disc;
  margin-bottom: 4px;
  position: relative;
  padding-left: 0;
  line-height: 1.5;
  margin-left: 24px;
}
.field--name-body ol li,
.field--name-field-content ol li {
  margin-bottom: 4px;
  padding-left: 0;
  line-height: 1.5;
  margin-left: 24px;
}

dl {
  margin-top: 0;
  margin-bottom: 20px;
}

dd,
dt {
  line-height: 1.42857143;
}

dt {
  font-weight: bold;
}

dd {
  margin-left: 0;
}

@media (min-width: 768px) {
  .dl-horizontal dt {
    float: left;
    width: 160px;
    clear: left;
    text-align: right;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .dl-horizontal dd {
    margin-left: 180px;
  }
}
abbr[data-original-title],
abbr[title] {
  cursor: help;
  border-bottom: 1px dotted #777777;
}

.initialism {
  font-size: 90%;
  text-transform: uppercase;
}

blockquote {
  padding: 16px 16px 16px 32px;
  margin: 0 0 20px;
  font-size: 1.125empx;
}

blockquote ol:last-child,
blockquote p:last-child,
blockquote ul:last-child {
  margin-bottom: 0;
}

blockquote .small,
blockquote footer,
blockquote small {
  display: block;
  font-size: 80%;
  line-height: 1.42857143;
  color: #777777;
}

blockquote .small:before,
blockquote footer:before,
blockquote small:before {
  content: "— ";
}

blockquote.pull-right {
  padding-right: 15px;
  padding-left: 0;
  border-right: 5px solid #eeeeee;
  border-left: 0;
  text-align: right;
}

.blockquote-reverse .small:before,
.blockquote-reverse footer:before,
.blockquote-reverse small:before,
blockquote.pull-right .small:before,
blockquote.pull-right footer:before,
blockquote.pull-right small:before {
  content: "";
}

.blockquote-reverse .small:after,
.blockquote-reverse footer:after,
.blockquote-reverse small:after,
blockquote.pull-right .small:after,
blockquote.pull-right footer:after,
blockquote.pull-right small:after {
  content: " —";
}

address {
  margin-bottom: 20px;
  font-style: normal;
  line-height: 1.42857143;
}

code,
kbd,
pre,
samp {
  font-family: Menlo, Monaco, Consolas, "Courier New", monospace;
}

code {
  padding: 2px 4px;
  font-size: 90%;
  color: #c7254e;
  background-color: #f9f2f4;
  border-radius: 4px;
}

kbd {
  padding: 2px 4px;
  font-size: 90%;
  color: #ffffff;
  background-color: #333333;
  border-radius: 3px;
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25);
}

kbd kbd {
  padding: 0;
  font-size: 100%;
  font-weight: bold;
  box-shadow: none;
}

pre {
  display: block;
  padding: 9.5px;
  margin: 0 0 10px;
  font-size: 13px;
  line-height: 1.42857143;
  word-break: break-all;
  word-wrap: break-word;
  color: #333333;
  background-color: #f5f5f5;
  border: 1px solid #cccccc;
  border-radius: 4px;
}

pre code {
  padding: 0;
  font-size: inherit;
  color: inherit;
  white-space: pre-wrap;
  background-color: transparent;
  border-radius: 0;
}

.pre-scrollable {
  max-height: 340px;
  overflow-y: scroll;
}

@font-face {
  font-family: "icomoon";
  src: url("../fonts/fonts/icomoon.eot?e39vz1");
  src: url("../fonts/fonts/icomoon.eot?e39vz1#iefix") format("embedded-opentype"), url("../fonts/fonts/icomoon.ttf?e39vz1") format("truetype"), url("../fonts/fonts/icomoon.woff?e39vz1") format("woff"), url("../fonts/fonts/icomoon.svg?e39vz1#icomoon") format("svg");
  font-weight: normal;
  font-style: normal;
}
[class^=icon-], [class*=" icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: "icomoon" !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-mode_edit:before {
  content: "\e254";
}

.icon-directions_bike:before {
  content: "\e52f";
}

.icon-directions_bus:before {
  content: "\e530";
}

.icon-directions_car:before {
  content: "\e531";
}

.icon-directions_walk:before {
  content: "\e536";
}

.icon-event_note:before {
  content: "\e616";
}

.icon-local_offer:before {
  content: "\e54e";
}

.icon-work:before {
  content: "\e8f9";
}

.icon-search:before {
  content: "\e92c";
}

.icon-activity:before {
  content: "\e901";
}

.icon-alert-circle:before {
  content: "\e902";
}

.icon-arrow-down:before {
  content: "\e903";
}

.icon-arrow-left:before {
  content: "\e904";
}

.icon-arrow-right:before {
  content: "\e905";
}

.icon-arrow-up:before {
  content: "\e906";
}

.icon-at-sign:before {
  content: "\e907";
}

.icon-book:before {
  content: "\e908";
}

.icon-bookmark:before {
  content: "\e909";
}

.icon-check-square:before {
  content: "\e90a";
}

.icon-check:before {
  content: "\e90b";
}

.icon-chevron-down:before {
  content: "\e90c";
}

.icon-chevron-left:before {
  content: "\e90d";
}

.icon-chevron-right:before {
  content: "\e90e";
}

.icon-chevron-up:before {
  content: "\e90f";
}

.icon-comment-circle:before {
  content: "\e910";
}

.icon-comment-square:before {
  content: "\e911";
}

.icon-crosshair:before {
  content: "\e912";
}

.icon-download-cloud:before {
  content: "\e913";
}

.icon-download:before {
  content: "\e914";
}

.icon-edit:before {
  content: "\e915";
}

.icon-facebook:before {
  content: "\e916";
}

.icon-feather:before {
  content: "\e917";
}

.icon-flag:before {
  content: "\e918";
}

.icon-folder:before {
  content: "\e919";
}

.icon-headphones:before {
  content: "\e91a";
}

.icon-heart:before {
  content: "\e91b";
}

.icon-home:before {
  content: "\e91c";
}

.icon-inbox:before {
  content: "\e91d";
}

.icon-layers:before {
  content: "\e91e";
}

.icon-location:before {
  content: "\e91f";
}

.icon-map-pin:before {
  content: "\e920";
}

.icon-menu:before {
  content: "\e921";
}

.icon-monitor:before {
  content: "\e922";
}

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

.icon-share:before {
  content: "\e924";
}

.icon-tag:before {
  content: "\e925";
}

.icon-toggle-left:before {
  content: "\e926";
}

.icon-toggle-right:before {
  content: "\e927";
}

.icon-twitter:before {
  content: "\e928";
}

.icon-x:before {
  content: "\e929";
}

.icon-zoom-in:before {
  content: "\e92a";
}

.icon-zoom-out:before {
  content: "\e92b";
}

.icon-check-circle:before {
  content: "\e900";
}

.icon-ribbon:before {
  content: "\e01e";
}

.icon-bookmark2:before {
  content: "\f02e";
}

.icon-bullhorn:before {
  content: "\f0a1";
}

.sliding-popup-bottom {
  background: #1f3d5e !important;
}
.sliding-popup-bottom .popup-content {
  max-width: 1170px !important;
  overflow: hidden;
  padding: 4px 16px 4px 4px !important;
}
.sliding-popup-bottom .popup-content #popup-text {
  color: #fff;
  overflow: hidden;
}
.sliding-popup-bottom .popup-content #popup-text h2 {
  float: left;
  font-size: 24px !important;
  font-weight: 600;
  position: relative;
  padding-left: 0px;
  margin-right: 16px !important;
}
.sliding-popup-bottom .popup-content #popup-text p {
  margin-top: 4px !important;
  font-weight: normal;
  font-size: 14px;
}
.sliding-popup-bottom .popup-content #popup-text .find-more-button {
  font-size: 14px;
}
.sliding-popup-bottom .popup-content #popup-buttons button {
  font-weight: 400 !important;
  box-shadow: none !important;
  text-shadow: none !important;
  border-radius: 4px !important;
  padding: 8px;
  font-size: 14px !important;
  min-width: 140px;
  font-family: "helvetica", sans-serif !important;
  margin-top: 12px !important;
}
.sliding-popup-bottom .popup-content #popup-buttons button.agree-button.eu-cookie-compliance-secondary-button {
  background: #000;
  color: #fff;
}
.sliding-popup-bottom .popup-content #popup-buttons button.agree-button.eu-cookie-compliance-secondary-button:hover, .sliding-popup-bottom .popup-content #popup-buttons button.agree-button.eu-cookie-compliance-secondary-button:focus {
  background: #1f3d5e;
}

.block-local-tasks-block {
  clear: both;
}

nav.tabs {
  position: relative;
  overflow: hidden;
  margin: 0 0 16px;
  font-weight: 300;
  font-size: 1.25em;
}
nav.tabs ul {
  padding: 0 15px;
  max-width: none;
  box-shadow: inset 0 -2px #1f3d5e;
  display: flex;
}
nav.tabs ul li {
  position: relative;
  z-index: 1;
  display: block;
  margin: 0;
  text-align: center;
  -moz-flex: 1;
  flex: 1;
}
nav.tabs ul li a {
  position: relative;
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  line-height: 2.5;
  padding: 0.7em 0.4em 16px;
  box-shadow: inset 0 -2px #1f3d5e;
  color: #666;
  text-align: left;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 1px;
  font-weight: 700;
  font-size: 0.8em;
  line-height: 1;
  transition: color 0.3s, box-shadow 0.3s;
  margin: 16px 0 0;
}
nav.tabs ul li a:focus, nav.tabs ul li a:hover {
  background: transparent;
  box-shadow: inset 0 -2px #000;
  color: #000;
}
nav.tabs ul li.is-active a {
  background: transparent;
  box-shadow: inset 0 -2px #000;
  color: #000;
}

.block-system-breadcrumb-block {
  position: relative;
}
.block-system-breadcrumb-block nav.breadcrumb {
  z-index: 10;
  background: white;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.85);
  color: #000;
}
.block-system-breadcrumb-block nav.breadcrumb li {
  color: #000;
}
.block-system-breadcrumb-block nav.breadcrumb li:before {
  content: "|";
  display: inline-block;
  font-size: 20px;
  position: relative;
  top: 1px;
  margin-top: -4px;
  margin-left: 2px;
  margin-right: 4px;
}
.block-system-breadcrumb-block nav.breadcrumb li:first-child:before {
  display: none;
}
.block-system-breadcrumb-block nav.breadcrumb a {
  color: #2A537F;
}
.block-system-breadcrumb-block nav.breadcrumb a:hover, .block-system-breadcrumb-block nav.breadcrumb a:active {
  color: #2A537F;
}

.block__content {
  margin-bottom: 6rem;
}
.block__content .field__label {
  text-transform: uppercase;
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 0.6em;
}
.block__content p {
  margin: 0;
}

.footer-menu ul li.menu-item {
  display: inline-block;
}
.footer-menu ul li.menu-item:after {
  content: " | ";
}
.footer-menu ul li.menu-item:last-child:after {
  display: none;
}

.region-sidebar .block-menu h2 {
  background-color: #1f3d5e;
  color: #fff;
  padding: 8px 8px 8px 16px;
  margin-bottom: 0;
  font-size: 130%;
  font-weight: bold;
}
.region-sidebar .block-menu ul.menu {
  margin: 0;
  padding: 0;
}
.region-sidebar .block-menu ul.menu li {
  margin: 0;
  border-bottom: 2px solid #fff;
  list-style: none;
}
.region-sidebar .block-menu ul.menu li a {
  background-color: #E1E1E1;
  display: block;
  font-size: 110%;
  font-weight: bold;
  color: #2A537F;
  text-decoration: none;
  display: block;
  padding: 8px 32px 8px 16px;
  position: relative;
}
.region-sidebar .block-menu ul.menu li a:hover, .region-sidebar .block-menu ul.menu li a.is-active {
  background-color: #f8f8f8;
}
.region-sidebar .block-menu ul.menu li.menu-item--collapsed > a:after {
  content: "";
  position: absolute;
  border-left: 12px solid #1f3d5e;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  right: 8px;
  top: 12px;
}
.region-sidebar .block-menu ul.menu li.menu-item--expanded > a:after {
  content: "";
  position: absolute;
  border-left: 8px solid transparent;
  border-top: 12px solid #1f3d5e;
  border-right: 8px solid transparent;
  right: 8px;
  top: 12px;
}
.region-sidebar .block-menu ul.menu li li {
  border: 0;
  padding: 0;
}
.region-sidebar .block-menu ul.menu li li a {
  background-color: #f8f8f8;
  padding-left: 32px;
}
.region-sidebar .block-menu ul.menu li li li {
  border: 0;
  padding: 0;
}
.region-sidebar .block-menu ul.menu li li li a {
  background-color: #f8f8f8;
  padding-left: 48px;
}
.region-sidebar .block-menu ul.menu li li li li {
  border: 0;
  padding: 0;
}
.region-sidebar .block-menu ul.menu li li li li a {
  background-color: #f8f8f8;
  padding-left: 64px;
}

.block-page-title-block {
  padding: 0 0 16px;
}

.article-image {
  margin-bottom: 16px;
}
.article-image img {
  width: 100%;
}

.headline-banner {
  position: relative;
  margin-bottom: 40px;
}
.headline-banner .blazy {
  min-height: 30vh;
  max-height: 60vh;
  overflow: hidden;
}
.headline-banner .outer {
  width: 100%;
}
@media (min-width: 992px) {
  .headline-banner .outer {
    position: absolute;
    top: 0;
    left: 0;
  }
}
.headline-banner .outer .container {
  position: relative;
}
.headline-banner .panel {
  background-color: #fff;
  color: #000;
  width: 100%;
  padding-top: 12px;
}
@media (min-width: 992px) {
  .headline-banner .panel {
    padding: 24px 32px 32px;
    width: 50%;
    position: absolute;
    top: 16px;
    left: 16px;
  }
}
.headline-banner .panel h2 {
  font-size: 24px;
  font-weight: 100;
  color: #000;
  text-transform: none;
}
@media (min-width: 992px) {
  .headline-banner .panel h2 {
    font-size: 40px;
  }
}
.headline-banner .panel p {
  display: block;
  margin: 0 0 24px;
}

.addtoany_list.a2a_kit_size_32 {
  margin-top: -8px;
  margin-bottom: 16px;
}
@media (min-width: 992px) {
  .addtoany_list.a2a_kit_size_32 {
    float: right;
  }
}
.addtoany_list.a2a_kit_size_32 a > span {
  border-radius: 4px;
  height: 40px;
  line-height: 32px;
  opacity: 1;
  width: 40px;
  background: white !important;
  color: black !important;
  border-radius: 50%;
  border: 1px solid #1f3d5e;
  padding: 8px;
  transition: all ease-in 0.25s;
  margin-top: -4px;
}
.addtoany_list.a2a_kit_size_32 a > span svg path {
  fill: #1f3d5e;
  -webkit-fill: #1f3d5e;
  -webkit-text-stroke: #1f3d5e;
  transition: all ease-in 0.25s;
}
.addtoany_list.a2a_kit_size_32 a:hover > span {
  border-color: #1f3d5e;
  background: #1f3d5e !important;
}
.addtoany_list.a2a_kit_size_32 a:hover > span svg path {
  fill: #fff;
  -webkit-fill: #fff;
  -webkit-text-stroke: #fff;
}

.social-media-links--platforms.horizontal li {
  margin-right: 8px;
}
.social-media-links--platforms.horizontal li .fa {
  border: 4px solid #fff;
  border-radius: 50%;
  padding: 8px;
  width: 56px;
  height: 56px;
}
.social-media-links--platforms.horizontal li a {
  color: #fff;
}
.social-media-links--platforms.horizontal li a:focus, .social-media-links--platforms.horizontal li a:hover {
  color: #1f3d5e;
}

.logos .list-flex {
  justify-content: center;
  align-items: center;
  padding: 40px 16px;
  display: flex;
}
.logos .list-flex li {
  margin: 0 16px 0 0;
}
@media (min-width: 992px) {
  .logos .list-flex li {
    margin: 0 40px 0 0;
  }
}
.logos .list-flex li:first-child {
  border-right: 1px solid;
  padding-right: 24px;
}
@media (min-width: 992px) {
  .logos .list-flex li:first-child {
    padding-right: 64px;
    margin-right: 80px;
  }
}
.logos .list-flex li:last-child {
  margin-right: 0;
}

.block-responsive-menu-toggle {
  position: absolute;
  top: 8px;
  right: 80px;
}
@media (min-width: 992px) {
  .block-responsive-menu-toggle {
    top: 40px;
  }
}

.view-latest .slick {
  padding: 16px 0;
}
.view-latest .slick img {
  float: left;
  margin: 0 15px 15px 4px;
  border: 5px solid #fafafa;
  -o-box-shadow: 0 2px 4px #aaa;
  box-shadow: 0 2px 4px #aaa;
  width: auto;
  max-width: 280px !important;
}
.view-latest .slick h2 {
  font-size: 22px;
}
.view-latest .slick .slick__slider {
  margin: 0;
}
.view-latest .slick .slick-dots {
  bottom: -32px;
  text-align: left;
}
.view-latest .slick .slick-dots li {
  width: auto;
}
.view-latest .slick .slick-dots li button {
  font-size: 16px;
  line-height: 32px;
  width: 48px;
  height: 32px;
  padding: 0;
  margin-right: 8px;
  color: black;
  border: 0px solid;
  background-color: #f1f1f1;
}
.view-latest .slick .slick-dots li button:before {
  display: none;
}
.view-latest .slick .slick-dots li button:hover, .view-latest .slick .slick-dots li button:focus {
  background: #ccc;
  border-color: #ccc;
}
.view-latest .slick .slick-dots li button:focus {
  outline: 1px solid;
}
.view-latest .slick .slick-dots li.slick-active button {
  background: #ccc;
  border-color: #ccc;
}

.emergency {
  margin: 20px 0;
  border: 3px solid #1F3D5E;
  padding: 12px;
  text-align: center;
}
.emergency p {
  margin: 0;
}

.block-list .entry h2 {
  border-bottom: 1px solid #ccc;
  font-size: 18px;
  margin-bottom: 8px;
}
.block-list .entry img {
  width: 100%;
}
.block-list .entry ul.menu {
  margin: 0;
}
.block-list .entry ul.menu li {
  margin: 2px 0;
  list-style: none;
  padding: 0;
}
.block-list .entry ul.menu li a {
  display: block;
  background-color: #e1e1e1;
  font-weight: bold;
  margin: 0;
  padding: 12px 8px;
}

.block-social-media-links li a span {
  border-width: 3px !important;
}
.block-social-media-links li a span:before {
  font-family: icomoon;
  font-size: 24px;
  line-height: 24px;
  position: relative;
  top: 1px;
}
.block-social-media-links li a {
  color: #fff !important;
  color: rgba(255, 255, 255, 0.7) !important;
  text-decoration: none;
}
.block-social-media-links li a:hover, .block-social-media-links li a:focus {
  color: #fff !important;
}
.block-social-media-links .fa-facebook:before {
  content: "\e916";
}
.block-social-media-links .fa-twitter:before {
  content: "\e930";
}
.block-social-media-links .fa-youtube:before {
  content: "\e92f";
}
.block-social-media-links .fa-vimeo-square:before {
  content: "\e92e";
}
.block-social-media-links .fa-instagram:before {
  content: "\e92d";
}
.block-social-media-links .fa-linkedin:before {
  content: "\e931";
}

#__ba_panel {
  border: 0 !important;
  text-align: left;
  position: fixed !important;
  top: 16px !important;
  right: 0 !important;
}

#block-coronaviruskeymessages.black {
  background: #009ee3;
  color: #000;
}
#block-coronaviruskeymessages.black h1 {
  color: #fff;
  background-color: #097FAF;
  padding: 16px 0;
  font-size: 24px;
  min-height: inherit;
  overflow: hidden;
  margin-bottom: 24px;
  min-height: 60px;
}
@media (min-width: 992px) {
  #block-coronaviruskeymessages.black h1 {
    padding: 24px 16px;
    font-size: 36px;
  }
}
#block-coronaviruskeymessages.black h1 .container {
  padding: 90px 16px 0;
  background-position: 16px 0;
  background-repeat: no-repeat;
  background-size: 290px;
}
@media (min-width: 992px) {
  #block-coronaviruskeymessages.black h1 .container {
    background-position: 99% 50%;
    background-repeat: no-repeat;
    background-size: contain;
    padding: 0;
    display: flex;
    min-height: 2em;
    align-items: center;
  }
}
@media (min-width: 1400px) {
  #block-coronaviruskeymessages.black h1 .container {
    padding: 0 16px;
  }
}
#block-coronaviruskeymessages.black h1 span {
  display: block;
  margin-top: 1em;
}
@media (min-width: 992px) {
  #block-coronaviruskeymessages.black h1 span {
    margin-top: 0;
  }
}
#block-coronaviruskeymessages.black h2 {
  color: #000;
}
#block-coronaviruskeymessages.black .view-eva header {
  border-top: 2px solid #0081b8;
}
#block-coronaviruskeymessages.black .view-eva header h3 {
  color: #000;
  padding-top: 8px;
}
#block-coronaviruskeymessages.black ul.list-flex {
  margin: 0 -16px;
}
#block-coronaviruskeymessages.black ul.list-flex a {
  font-size: 18px;
  color: #fff;
}

/****************************************
  Buttons
*****************************************/
.btn {
  display: inline-block;
  margin-bottom: 16px;
}
.btn a {
  background-color: transparent;
  border: 1px solid #000;
  border-radius: 0;
  color: #000;
  display: block;
  padding: 16px 32px;
  width: auto;
  text-align: center;
  font-size: 24px;
  line-heght: 1.3;
  font-weight: 400;
  font-family: "helvetica", sans-serif;
  outline: 0;
  text-decoration: none;
}
.btn a:hover, .btn a:focus {
  background: #000;
  color: #fff;
}

.btn-inverse a {
  color: white;
  border-color: #fff;
}
.btn-inverse a:hover, .btn-inverse a:focus {
  background: #fff;
  color: #000;
}

fieldset {
  padding: 0;
  margin: 0;
  border: 0;
  min-width: 0;
}

legend {
  display: block;
  width: 100%;
  padding: 0;
  margin-bottom: 20px;
  font-size: 21px;
  line-height: inherit;
  color: #333333;
  border: 0;
  border-bottom: 1px solid #e5e5e5;
}

label {
  display: inline-block;
  max-width: 100%;
  margin-bottom: 5px;
  font-weight: bold;
}

input[type=search] {
  box-sizing: border-box;
}

input[type=radio],
input[type=checkbox] {
  margin: 4px 0 0;
  margin-top: 1px \9 ;
  line-height: normal;
}

input[type=file] {
  display: block;
}

input[type=range] {
  display: block;
  width: 100%;
}

select[multiple],
select[size] {
  height: auto;
}

input[type=file]:focus,
input[type=radio]:focus,
input[type=checkbox]:focus {
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}

output {
  display: block;
  padding-top: 7px;
  font-size: 14px;
  line-height: 1.42857143;
  color: #555555;
}

.form-control {
  display: block;
  width: 100%;
  height: 34px;
  padding: 6px 12px;
  font-size: 14px;
  line-height: 1.42857143;
  color: #555555;
  background-color: #ffffff;
  background-image: none;
  border: 1px solid #cccccc;
  border-radius: 4px;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
}

.form-control:focus {
  border-color: #66afe9;
  outline: 0;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
}

.form-control::-moz-placeholder {
  color: #999999;
  opacity: 1;
}

.form-control:-ms-input-placeholder {
  color: #999999;
}

.form-control::-webkit-input-placeholder {
  color: #999999;
}

.form-control::-ms-expand {
  border: 0;
  background-color: transparent;
}

.form-control[disabled],
.form-control[readonly],
fieldset[disabled] .form-control {
  background-color: #eeeeee;
  opacity: 1;
}

.form-control[disabled],
fieldset[disabled] .form-control {
  cursor: not-allowed;
}

textarea.form-control {
  height: auto;
}

input[type=search] {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
}

@media screen and (-webkit-min-device-pixel-ratio: 0) {
  input[type=date].form-control,
  input[type=time].form-control,
  input[type=datetime-local].form-control,
  input[type=month].form-control {
    line-height: 34px;
  }
  input[type=date].input-sm,
  input[type=time].input-sm,
  input[type=datetime-local].input-sm,
  input[type=month].input-sm,
  .input-group-sm input[type=date],
  .input-group-sm input[type=time],
  .input-group-sm input[type=datetime-local],
  .input-group-sm input[type=month] {
    line-height: 30px;
  }
  input[type=date].input-lg,
  input[type=time].input-lg,
  input[type=datetime-local].input-lg,
  input[type=month].input-lg,
  .input-group-lg input[type=date],
  .input-group-lg input[type=time],
  .input-group-lg input[type=datetime-local],
  .input-group-lg input[type=month] {
    line-height: 46px;
  }
}
.form-group {
  margin-bottom: 15px;
}

.radio,
.checkbox {
  position: relative;
  display: block;
  margin-top: 10px;
  margin-bottom: 10px;
}

.radio label,
.checkbox label {
  min-height: 20px;
  padding-left: 20px;
  margin-bottom: 0;
  font-weight: normal;
  cursor: pointer;
}

.radio input[type=radio],
.radio-inline input[type=radio],
.checkbox input[type=checkbox],
.checkbox-inline input[type=checkbox] {
  position: absolute;
  margin-left: -20px;
  margin-top: 4px \9 ;
}

.radio + .radio,
.checkbox + .checkbox {
  margin-top: -5px;
}

.radio-inline,
.checkbox-inline {
  position: relative;
  display: inline-block;
  padding-left: 20px;
  margin-bottom: 0;
  vertical-align: middle;
  font-weight: normal;
  cursor: pointer;
}

.radio-inline + .radio-inline,
.checkbox-inline + .checkbox-inline {
  margin-top: 0;
  margin-left: 10px;
}

input[type=radio][disabled],
input[type=checkbox][disabled],
input[type=radio].disabled,
input[type=checkbox].disabled,
fieldset[disabled] input[type=radio],
fieldset[disabled] input[type=checkbox] {
  cursor: not-allowed;
}

.radio-inline.disabled,
.checkbox-inline.disabled,
fieldset[disabled] .radio-inline,
fieldset[disabled] .checkbox-inline {
  cursor: not-allowed;
}

.radio.disabled label,
.checkbox.disabled label,
fieldset[disabled] .radio label,
fieldset[disabled] .checkbox label {
  cursor: not-allowed;
}

.form-control-static {
  padding-top: 7px;
  padding-bottom: 7px;
  margin-bottom: 0;
  min-height: 34px;
}

.form-control-static.input-lg,
.form-control-static.input-sm {
  padding-left: 0;
  padding-right: 0;
}

.input-sm {
  height: 30px;
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px;
}

select.input-sm {
  height: 30px;
  line-height: 30px;
}

textarea.input-sm,
select[multiple].input-sm {
  height: auto;
}

.form-group-sm .form-control {
  height: 30px;
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px;
}

.form-group-sm select.form-control {
  height: 30px;
  line-height: 30px;
}

.form-group-sm textarea.form-control,
.form-group-sm select[multiple].form-control {
  height: auto;
}

.form-group-sm .form-control-static {
  height: 30px;
  min-height: 32px;
  padding: 6px 10px;
  font-size: 12px;
  line-height: 1.5;
}

.input-lg {
  height: 46px;
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.3333333;
  border-radius: 6px;
}

select.input-lg {
  height: 46px;
  line-height: 46px;
}

textarea.input-lg,
select[multiple].input-lg {
  height: auto;
}

.form-group-lg .form-control {
  height: 46px;
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.3333333;
  border-radius: 6px;
}

.form-group-lg select.form-control {
  height: 46px;
  line-height: 46px;
}

.form-group-lg textarea.form-control,
.form-group-lg select[multiple].form-control {
  height: auto;
}

.form-group-lg .form-control-static {
  height: 46px;
  min-height: 38px;
  padding: 11px 16px;
  font-size: 18px;
  line-height: 1.3333333;
}

.has-feedback {
  position: relative;
}

.has-feedback .form-control {
  padding-right: 42.5px;
}

.form-control-feedback {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  display: block;
  width: 34px;
  height: 34px;
  line-height: 34px;
  text-align: center;
  pointer-events: none;
}

.input-lg + .form-control-feedback,
.input-group-lg + .form-control-feedback,
.form-group-lg .form-control + .form-control-feedback {
  width: 46px;
  height: 46px;
  line-height: 46px;
}

.input-sm + .form-control-feedback,
.input-group-sm + .form-control-feedback,
.form-group-sm .form-control + .form-control-feedback {
  width: 30px;
  height: 30px;
  line-height: 30px;
}

.has-success .help-block,
.has-success .control-label,
.has-success .radio,
.has-success .checkbox,
.has-success .radio-inline,
.has-success .checkbox-inline,
.has-success.radio label,
.has-success.checkbox label,
.has-success.radio-inline label,
.has-success.checkbox-inline label {
  color: #3c763d;
}

.has-success .form-control {
  border-color: #3c763d;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}

.has-success .form-control:focus {
  border-color: #2b542c;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168;
}

.has-success .input-group-addon {
  color: #3c763d;
  border-color: #3c763d;
  background-color: #dff0d8;
}

.has-success .form-control-feedback {
  color: #3c763d;
}

.has-warning .help-block,
.has-warning .control-label,
.has-warning .radio,
.has-warning .checkbox,
.has-warning .radio-inline,
.has-warning .checkbox-inline,
.has-warning.radio label,
.has-warning.checkbox label,
.has-warning.radio-inline label,
.has-warning.checkbox-inline label {
  color: #8a6d3b;
}

.has-warning .form-control {
  border-color: #8a6d3b;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}

.has-warning .form-control:focus {
  border-color: #66512c;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b;
}

.has-warning .input-group-addon {
  color: #8a6d3b;
  border-color: #8a6d3b;
  background-color: #fcf8e3;
}

.has-warning .form-control-feedback {
  color: #8a6d3b;
}

.has-error .help-block,
.has-error .control-label,
.has-error .radio,
.has-error .checkbox,
.has-error .radio-inline,
.has-error .checkbox-inline,
.has-error.radio label,
.has-error.checkbox label,
.has-error.radio-inline label,
.has-error.checkbox-inline label {
  color: #a94442;
}

.has-error .form-control {
  border-color: #a94442;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}

.has-error .form-control:focus {
  border-color: #843534;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483;
}

.has-error .input-group-addon {
  color: #a94442;
  border-color: #a94442;
  background-color: #f2dede;
}

.has-error .form-control-feedback {
  color: #a94442;
}

.has-feedback label ~ .form-control-feedback {
  top: 25px;
}

.has-feedback label.sr-only ~ .form-control-feedback {
  top: 0;
}

.help-block {
  display: block;
  margin-top: 5px;
  margin-bottom: 10px;
  color: #737373;
}

@media (min-width: 768px) {
  .form-inline .form-group {
    display: inline-block;
    margin-bottom: 0;
    vertical-align: middle;
  }
  .form-inline .form-control {
    display: inline-block;
    width: auto;
    vertical-align: middle;
  }
  .form-inline .form-control-static {
    display: inline-block;
  }
  .form-inline .input-group {
    display: inline-table;
    vertical-align: middle;
  }
  .form-inline .input-group .input-group-addon,
  .form-inline .input-group .input-group-btn,
  .form-inline .input-group .form-control {
    width: auto;
  }
  .form-inline .input-group > .form-control {
    width: 100%;
  }
  .form-inline .control-label {
    margin-bottom: 0;
    vertical-align: middle;
  }
  .form-inline .radio,
  .form-inline .checkbox {
    display: inline-block;
    margin-top: 0;
    margin-bottom: 0;
    vertical-align: middle;
  }
  .form-inline .radio label,
  .form-inline .checkbox label {
    padding-left: 0;
  }
  .form-inline .radio input[type=radio],
  .form-inline .checkbox input[type=checkbox] {
    position: relative;
    margin-left: 0;
  }
  .form-inline .has-feedback .form-control-feedback {
    top: 0;
  }
}
.form-horizontal .radio,
.form-horizontal .checkbox,
.form-horizontal .radio-inline,
.form-horizontal .checkbox-inline {
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 7px;
}

.form-horizontal .radio,
.form-horizontal .checkbox {
  min-height: 27px;
}

.form-horizontal .form-group {
  margin-left: -20px;
  margin-right: -20px;
}

@media (min-width: 768px) {
  .form-horizontal .control-label {
    text-align: right;
    margin-bottom: 0;
    padding-top: 7px;
  }
}
.form-horizontal .has-feedback .form-control-feedback {
  right: 20px;
}

@media (min-width: 768px) {
  .form-horizontal .form-group-lg .control-label {
    padding-top: 11px;
    font-size: 18px;
  }
}
@media (min-width: 768px) {
  .form-horizontal .form-group-sm .control-label {
    padding-top: 6px;
    font-size: 12px;
  }
}
.contact-form label {
  display: block;
  font-weight: 400;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.node--type-webform .form-type-textfield label,
.node--type-webform .form-type-email label,
.node--type-webform .form-type-tel label {
  display: block;
}
.node--type-webform .form-type-textfield input,
.node--type-webform .form-type-email input,
.node--type-webform .form-type-tel input {
  width: 100%;
  height: 40px;
  line-height: 40px;
  font-size: 24px;
  border: 1px solid #dadada;
  margin: 0 auto;
  display: block;
  width: 100%;
  padding: 0 8px;
}
.node--type-webform .form-type-textarea textarea {
  font-size: 24px;
  border: 1px solid #dadada;
  margin: 0 auto;
  display: block;
  width: 100%;
  padding: 8px;
}
.node--type-webform.node--view-mode-full {
  display: flex;
  flex-wrap: wrap;
}
.node--type-webform.node--view-mode-full .group-primary {
  width: 75%;
  padding: 0 16px;
}
.node--type-webform.node--view-mode-full .group-secondary {
  width: 20.66666667%;
  padding: 0 16px;
  border-right: 1px solid #F7F7F7;
  margin-left: -8px;
  padding-top: 40px;
  order: -1;
}
.node--type-webform.node--view-mode-full .group-secondary .author {
  text-align: right;
}
.node--type-webform.node--view-mode-full .group-secondary .date {
  text-align: right;
  font-size: 75%;
}
.node--type-webform.node--view-mode-full .group-secondary .a2a_kit {
  display: block;
  border-top: 1px solid #F7F7F7;
  margin-top: 16px;
  padding-top: 16px;
}
.node--type-webform.node--view-mode-full .form-item-have-you-contacted-the-company-yet- {
  display: flex;
  flex-wrap: wrap;
}
.node--type-webform.node--view-mode-full .form-item-have-you-contacted-the-company-yet- label {
  order: 0;
  width: 100%;
}
.node--type-webform.node--view-mode-full .form-item-have-you-contacted-the-company-yet- .toggle {
  order: 1;
}
.node--type-webform.node--view-mode-full .form-item-have-you-contacted-the-company-yet- .description {
  order: -1;
  background: #f7f7f7;
  padding: 16px;
  margin-bottom: 16px;
}
.node--type-webform.node--view-mode-full .form-item {
  width: 100%;
}
.node--type-webform.node--view-mode-full select {
  width: 100%;
  height: 40px;
}
.node--type-webform.node--view-mode-full .webform-button--reset {
  background-color: #f7f7f7;
  color: #aaa;
  float: right;
}

form.webform-submission-form {
  background-color: #eee;
  padding: 24px 40px;
  margin-bottom: 40px;
  overflow: hidden;
}
form.webform-submission-form input.button {
  background: #1f3d5e;
  color: #fff;
  border-radius: 2em;
  border: 0;
  padding: 0.5em 1.5em;
  float: right;
}
form.webform-submission-form input.button:hover, form.webform-submission-form input.button:focus-visible {
  background-color: #2E5A8A;
}

.view-filters input.button {
  background: #1f3d5e;
  color: #fff;
  border-radius: 2em;
  border: 0;
  padding: 0.5em 1.5em;
  float: right;
}
.view-filters input.button:hover, .view-filters input.button:focus-visible {
  background-color: #2E5A8A;
}

.pagination {
  display: inline-block;
  padding-left: 0;
  margin: 10px 0;
  border-radius: 0px;
}

.pagination > li {
  display: inline;
}

.pagination > li > a,
.pagination > li > span {
  position: relative;
  float: left;
  padding: 6px 12px;
  line-height: 1.42857143;
  text-decoration: none;
  color: #337ab7;
  background-color: #ffffff;
  border: 1px solid #dddddd;
  margin-left: -1px;
}

.pagination > li:first-child > a,
.pagination > li:first-child > span {
  margin-left: 0;
  border-bottom-left-radius: 4px;
  border-top-left-radius: 4px;
}

.pagination > li:last-child > a,
.pagination > li:last-child > span {
  border-bottom-right-radius: 4px;
  border-top-right-radius: 4px;
}

.pagination > li > a:hover,
.pagination > li > span:hover,
.pagination > li > a:focus,
.pagination > li > span:focus {
  z-index: 2;
  color: #23527c;
  background-color: #eeeeee;
  border-color: #dddddd;
}

.pagination > .active > a,
.pagination > .active > span,
.pagination > .active > a:hover,
.pagination > .active > span:hover,
.pagination > .active > a:focus,
.pagination > .active > span:focus {
  z-index: 3;
  color: #ffffff;
  background-color: #337ab7;
  border-color: #337ab7;
  cursor: default;
}

.pagination > .disabled > span,
.pagination > .disabled > span:hover,
.pagination > .disabled > span:focus,
.pagination > .disabled > a,
.pagination > .disabled > a:hover,
.pagination > .disabled > a:focus {
  color: #666;
  background-color: #ffffff;
  border-color: #dddddd;
  cursor: not-allowed;
}

.pagination-lg > li > a,
.pagination-lg > li > span {
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.3333333;
}

.pagination-lg > li:first-child > a,
.pagination-lg > li:first-child > span {
  border-bottom-left-radius: 6px;
  border-top-left-radius: 6px;
}

.pagination-lg > li:last-child > a,
.pagination-lg > li:last-child > span {
  border-bottom-right-radius: 6px;
  border-top-right-radius: 6px;
}

.pagination-sm > li > a,
.pagination-sm > li > span {
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
}

.pagination-sm > li:first-child > a,
.pagination-sm > li:first-child > span {
  border-bottom-left-radius: 3px;
  border-top-left-radius: 3px;
}

.pagination-sm > li:last-child > a,
.pagination-sm > li:last-child > span {
  border-bottom-right-radius: 3px;
  border-top-right-radius: 3px;
}

.pager {
  padding-left: 0;
  margin: 20px 0 0;
  list-style: none;
  text-align: center;
}

.pager li {
  display: inline;
  font-size: 18px;
  padding: 8px 4px;
}

.pager li > a,
.pager li > span {
  display: inline-block;
  padding: 4px 8px;
  /*
  background-color: #ffffff;
  border: 1px solid #dddddd;
  border-radius: 15px;
  */
}

.pager li > a:hover,
.pager li > a:focus {
  text-decoration: none;
  /*background-color: #eeeeee;*/
}

.pager .next > a,
.pager .next > span {
  float: right;
}

.pager .previous > a,
.pager .previous > span {
  float: left;
}

.pager__item {
  font-size: 18px;
  padding: 8px 4px;
}
.pager__item span {
  display: none;
}
.pager__item a {
  padding-right: 16px !important;
  position: relative;
  text-decoration: none;
}
.pager__item a:before {
  content: "Page ";
}
.pager__item a:after {
  content: " ";
  border-right: 1px solid;
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  transform: rotate(-12deg);
}

.pager__item.is-active {
  font-weight: bold;
}
.pager__item.is-active a {
  pointer-events: none;
  color: #000;
}

.pager__item--next a:before,
.pager__item--previous a:before {
  display: none;
}
.pager__item--next a:after,
.pager__item--previous a:after {
  font-family: "icomoon" !important;
  speak: none;
  font-style: normal;
  font-weight: 900;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\e901";
  position: relative;
  top: 2px;
  transform: none;
  border: 0;
}

.pager__item--next a:after {
  content: "\e90e";
}

.pager__item--previous a:after {
  content: "\e90d";
}

.pager li.pager__item--ellipsis {
  display: none;
}

table {
  background-color: transparent;
}

caption {
  padding-top: 8px;
  padding-bottom: 8px;
  color: #666;
  text-align: left;
}

th {
  text-align: left;
}

.table {
  width: 100%;
  max-width: 100%;
  margin-bottom: 20px;
}

.table > thead > tr > th,
.table > tbody > tr > th,
.table > tfoot > tr > th,
.table > thead > tr > td,
.table > tbody > tr > td,
.table > tfoot > tr > td {
  padding: 8px;
  line-height: 1.42857143;
  vertical-align: top;
  border-top: 1px solid #dddddd;
}

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

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

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

.table .table {
  background-color: #ffffff;
}

.table-condensed > thead > tr > th,
.table-condensed > tbody > tr > th,
.table-condensed > tfoot > tr > th,
.table-condensed > thead > tr > td,
.table-condensed > tbody > tr > td,
.table-condensed > tfoot > tr > td {
  padding: 5px;
}

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

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

.table-bordered > thead > tr > th,
.table-bordered > thead > tr > td {
  border-bottom-width: 2px;
}

.table-striped > tbody > tr:nth-of-type(odd) {
  background-color: #f9f9f9;
}

.table-hover > tbody > tr:hover {
  background-color: #f5f5f5;
}

table col[class*=col-] {
  position: static;
  float: none;
  display: table-column;
}

table td[class*=col-],
table th[class*=col-] {
  position: static;
  float: none;
  display: table-cell;
}

.table > thead > tr > td.active,
.table > tbody > tr > td.active,
.table > tfoot > tr > td.active,
.table > thead > tr > th.active,
.table > tbody > tr > th.active,
.table > tfoot > tr > th.active,
.table > thead > tr.active > td,
.table > tbody > tr.active > td,
.table > tfoot > tr.active > td,
.table > thead > tr.active > th,
.table > tbody > tr.active > th,
.table > tfoot > tr.active > th {
  background-color: #f5f5f5;
}

.table-hover > tbody > tr > td.active:hover,
.table-hover > tbody > tr > th.active:hover,
.table-hover > tbody > tr.active:hover > td,
.table-hover > tbody > tr:hover > .active,
.table-hover > tbody > tr.active:hover > th {
  background-color: #e8e8e8;
}

.table > thead > tr > td.success,
.table > tbody > tr > td.success,
.table > tfoot > tr > td.success,
.table > thead > tr > th.success,
.table > tbody > tr > th.success,
.table > tfoot > tr > th.success,
.table > thead > tr.success > td,
.table > tbody > tr.success > td,
.table > tfoot > tr.success > td,
.table > thead > tr.success > th,
.table > tbody > tr.success > th,
.table > tfoot > tr.success > th {
  background-color: #dff0d8;
}

.table-hover > tbody > tr > td.success:hover,
.table-hover > tbody > tr > th.success:hover,
.table-hover > tbody > tr.success:hover > td,
.table-hover > tbody > tr:hover > .success,
.table-hover > tbody > tr.success:hover > th {
  background-color: #d0e9c6;
}

.table > thead > tr > td.info,
.table > tbody > tr > td.info,
.table > tfoot > tr > td.info,
.table > thead > tr > th.info,
.table > tbody > tr > th.info,
.table > tfoot > tr > th.info,
.table > thead > tr.info > td,
.table > tbody > tr.info > td,
.table > tfoot > tr.info > td,
.table > thead > tr.info > th,
.table > tbody > tr.info > th,
.table > tfoot > tr.info > th {
  background-color: #d9edf7;
}

.table-hover > tbody > tr > td.info:hover,
.table-hover > tbody > tr > th.info:hover,
.table-hover > tbody > tr.info:hover > td,
.table-hover > tbody > tr:hover > .info,
.table-hover > tbody > tr.info:hover > th {
  background-color: #c4e3f3;
}

.table > thead > tr > td.warning,
.table > tbody > tr > td.warning,
.table > tfoot > tr > td.warning,
.table > thead > tr > th.warning,
.table > tbody > tr > th.warning,
.table > tfoot > tr > th.warning,
.table > thead > tr.warning > td,
.table > tbody > tr.warning > td,
.table > tfoot > tr.warning > td,
.table > thead > tr.warning > th,
.table > tbody > tr.warning > th,
.table > tfoot > tr.warning > th {
  background-color: #fcf8e3;
}

.table-hover > tbody > tr > td.warning:hover,
.table-hover > tbody > tr > th.warning:hover,
.table-hover > tbody > tr.warning:hover > td,
.table-hover > tbody > tr:hover > .warning,
.table-hover > tbody > tr.warning:hover > th {
  background-color: #faf2cc;
}

.table > thead > tr > td.danger,
.table > tbody > tr > td.danger,
.table > tfoot > tr > td.danger,
.table > thead > tr > th.danger,
.table > tbody > tr > th.danger,
.table > tfoot > tr > th.danger,
.table > thead > tr.danger > td,
.table > tbody > tr.danger > td,
.table > tfoot > tr.danger > td,
.table > thead > tr.danger > th,
.table > tbody > tr.danger > th,
.table > tfoot > tr.danger > th {
  background-color: #f2dede;
}

.table-hover > tbody > tr > td.danger:hover,
.table-hover > tbody > tr > th.danger:hover,
.table-hover > tbody > tr.danger:hover > td,
.table-hover > tbody > tr:hover > .danger,
.table-hover > tbody > tr.danger:hover > th {
  background-color: #ebcccc;
}

.table-responsive {
  overflow-x: auto;
  min-height: 0.01%;
}

@media screen and (max-width: 767px) {
  .table-responsive {
    width: 100%;
    margin-bottom: 15px;
    overflow-y: hidden;
    -ms-overflow-style: -ms-autohiding-scrollbar;
    border: 1px solid #dddddd;
  }
  .table-responsive > .table {
    margin-bottom: 0;
  }
  .table-responsive > .table > thead > tr > th,
  .table-responsive > .table > tbody > tr > th,
  .table-responsive > .table > tfoot > tr > th,
  .table-responsive > .table > thead > tr > td,
  .table-responsive > .table > tbody > tr > td,
  .table-responsive > .table > tfoot > tr > td {
    white-space: nowrap;
  }
  .table-responsive > .table-bordered {
    border: 0;
  }
  .table-responsive > .table-bordered > thead > tr > th:first-child,
  .table-responsive > .table-bordered > tbody > tr > th:first-child,
  .table-responsive > .table-bordered > tfoot > tr > th:first-child,
  .table-responsive > .table-bordered > thead > tr > td:first-child,
  .table-responsive > .table-bordered > tbody > tr > td:first-child,
  .table-responsive > .table-bordered > tfoot > tr > td:first-child {
    border-left: 0;
  }
  .table-responsive > .table-bordered > thead > tr > th:last-child,
  .table-responsive > .table-bordered > tbody > tr > th:last-child,
  .table-responsive > .table-bordered > tfoot > tr > th:last-child,
  .table-responsive > .table-bordered > thead > tr > td:last-child,
  .table-responsive > .table-bordered > tbody > tr > td:last-child,
  .table-responsive > .table-bordered > tfoot > tr > td:last-child {
    border-right: 0;
  }
  .table-responsive > .table-bordered > tbody > tr:last-child > th,
  .table-responsive > .table-bordered > tfoot > tr:last-child > th,
  .table-responsive > .table-bordered > tbody > tr:last-child > td,
  .table-responsive > .table-bordered > tfoot > tr:last-child > td {
    border-bottom: 0;
  }
}
.view-filters .form--inline .form-actions,
.views-exposed-form .form--inline .form-actions {
  clear: none;
  float: left;
}
.view-filters input.form-submit,
.views-exposed-form input.form-submit {
  background-color: #F1C40F;
  border: 0;
  border-radius: 0;
  color: #000;
  margin-bottom: 0.5rem;
  padding: 1rem 2rem;
  width: 100%;
  text-align: center;
}
.view-filters input.form-text,
.view-filters select.form-select,
.views-exposed-form input.form-text,
.views-exposed-form select.form-select {
  background-color: #fff;
  border: 1px solid #95A5A6;
  border-radius: 0;
  color: #666;
  padding: 1rem 2rem;
  width: 100%;
  height: 40px;
  -webkit-appearance: none;
  -webkit-border-radius: 0;
}

.more-link {
  text-align: left;
}
.more-link a {
  text-decoration: none;
  position: relative;
}
.more-link a:after {
  font-family: "icomoon" !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\e905";
  position: relative;
  top: 2px;
  margin-left: 8px;
}

.view .view-empty {
  margin-bottom: 24px;
}
.view .view-filters {
  display: flex;
  background-color: #F1F1F1;
  padding: 10px;
}
.view .view-filters form {
  width: 100%;
}
.view .view-filters form .form--inline {
  display: flex;
}
.view .view-filters form .form--inline .form-item {
  display: flex;
  width: 100%;
  align-items: center;
  margin: 0;
}
.view .view-filters form .form--inline .form-item label {
  display: block;
  min-width: 15%;
  margin: 0;
}
.view .view-filters form .form--inline .form-actions {
  margin: 0 0 0 16px;
  padding: 0;
  float: none;
}
.view .view-filters form .form--inline .form-actions input {
  margin: 0;
  padding: 8px 24px;
  color: #fff;
  background-color: #2E5A8A;
  border-radius: 8px;
  border: 1px solid #2E5A8A;
}
.view .view-filters form .form--inline .form-actions input:hover, .view .view-filters form .form--inline .form-actions input:focus-visible, .view .view-filters form .form--inline .form-actions input:focus {
  background-color: #1F8292;
  border-color: #1F8292;
}
.view .view-filters form .form--inline .form-actions input:focus-visible, .view .view-filters form .form--inline .form-actions input:focus {
  outline: 2px solid white;
  outline-offset: 2px;
}
.view table {
  width: 100%;
}
.view table tr {
  background-color: #eee;
  border-bottom: 1px solid #ccc;
  padding: 0;
}
.view table tr td {
  padding: 12px 8px;
  vertical-align: top;
  background-color: transparent;
}
.view table tr td img {
  border: 3px solid #CCC;
  max-width: 120px;
}
.view table th {
  padding: 8px;
  color: #fff;
  font-weight: bold;
  background-color: #2E5A8A;
  border-bottom: 2px solid #1f3d5e;
}
.view table th a {
  color: #fff;
  text-decoration: none;
  position: relative;
  padding-right: 32px;
  display: inline-block;
}
.view table th a .tablesort {
  background: none;
  right: 4px;
  top: 6px;
  position: absolute;
}
.view table th a .tablesort:before {
  content: "";
  width: 16px;
  height: 16px;
  display: block;
  border-top: 12px solid white;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
}
.view table th a .tablesort--desc {
  top: 2px;
}
.view table th a .tablesort--desc:before {
  border-top: 0;
  border-bottom: 12px solid white;
}
.view table tr:nth-child(even) td {
  background-color: #FAFAFA;
}

.view-webcasts .views-row {
  clear: both;
  overflow: hidden;
  border-bottom: 1px dotted #bbb;
  padding: 16px 0 24px;
}
.view-webcasts .views-field-field-image {
  float: left;
}
.view-webcasts .views-field-field-image img {
  border: 3px solid #CCC;
  max-width: 120px;
  margin: 0 16px 16px 0;
}
.view-webcasts h3 {
  margin: 0 0 0 120px;
}
.view-webcasts .views-field-body {
  margin-left: 120px;
}
.view-webcasts .views-field-body p {
  margin: 0;
}

.view-grants .view-header > h2,
.view-tenders .view-header > h2 {
  font-size: 24px;
  margin-bottom: 8px;
}

/* News */
.view-news .view-content,
.view-publications .view-content {
  width: 100%;
  overflow-x: scroll;
}
.view-news .view-content table,
.view-publications .view-content table {
  width: 100%;
}

.region-footer {
  overflow: hidden;
  padding: 2em 1em;
  color: #f1f1f1;
}

footer.footer {
  clear: both;
  background: #2E5A8A;
  color: #f1f1f1;
  overflow: hidden;
  padding: 0;
}
footer.footer .block {
  padding-bottom: 24px;
  margin-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
@media (min-width: 992px) {
  footer.footer .block {
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: 0;
  }
}
footer.footer .h2,
footer.footer h2 {
  border-bottom: 2px solid #4c78a8;
  margin-bottom: 0.5em;
  padding-bottom: 0.25em;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  word-spacing: 0.08em;
  word-spacing: 0.15em;
  font-size: 16px;
  color: inherit;
}
footer.footer ul.menu {
  margin: 0;
  -moz-columns: 2;
       columns: 2;
}
@media (min-width: 992px) {
  footer.footer ul.menu {
    -moz-columns: 1;
         columns: 1;
  }
}
footer.footer ul.menu li {
  padding: 0;
  list-style: none;
}
footer.footer ul.menu li a {
  color: #f1f1f1;
  display: block;
  padding: 0.333em 0;
  word-wrap: break-word;
}
footer.footer a {
  color: #fff;
  text-decoration: none;
}
footer.footer a.is-active {
  color: #ededed;
}
footer.footer a:active, footer.footer a:focus, footer.footer a:hover {
  color: #e6e6e6;
  background: transparent;
  text-decoration: underline;
}

.footer_bottom {
  background: #1f3d5e;
  color: #f1f1f1;
  overflow: hidden;
  font-weight: 300;
  text-align: center;
}
.footer_bottom .block {
  display: inline-block;
  padding: 16px 0;
}
.footer_bottom .block p {
  margin: 0;
  padding: 0;
}
.footer_bottom .block a {
  color: white;
}
.footer_bottom .menu--account ul.menu {
  display: inline-block;
  margin: 0;
}
.footer_bottom .menu--account ul.menu li {
  display: inline-block;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0 8px;
}
.footer_bottom .menu--account ul.menu li:last-child {
  border: 0;
}
.footer_bottom .menu--account ul.menu li a:hover,
.footer_bottom .menu--account ul.menu li a:focus {
  color: #fff;
}

header.header {
  width: 100%;
  background-color: #2E5A8A;
  min-height: 110px;
  color: #fff;
}
@media (min-width: 992px) {
  header.header {
    height: auto;
  }
}
header.header .region-header {
  position: relative;
}
header.header .block-system-branding-block,
header.header .branding {
  padding: 24px 0 0;
  margin: 0;
  display: block;
  position: relative;
  z-index: 1;
}
@media (min-width: 992px) {
  header.header .block-system-branding-block,
  header.header .branding {
    padding-top: 32px;
  }
}
header.header .site-logo img {
  text-align: left;
  z-index: 5;
}

.node.node--view-mode-teaser h2 {
  position: relative;
  z-index: 10;
}

.node.node--view-mode-full .masthead {
  font-size: 120%;
  font-weight: bold;
  color: #999;
  display: flex;
  margin-bottom: 32px;
}
.node.node--view-mode-full .masthead .field--name-field-directorates {
  display: inline-block;
}
.node.node--view-mode-full .masthead .field--name-field-directorates .field__item {
  display: inline-block;
}
.node.node--view-mode-full .masthead .field--name-field-directorates:before {
  content: "-";
  display: inline-block;
  margin: 0 4px;
}
.node.node--view-mode-full .masthead .field--name-field-directorates a {
  color: #999;
}
.node.node--view-mode-full .field--name-body table {
  width: 100%;
  background-color: #FAFAFA;
}
.node.node--view-mode-full .field--name-body table thead {
  border-top: 1px solid #ccc;
}
.node.node--view-mode-full .field--name-body table thead tr th {
  padding: 12px 8px;
  vertical-align: top;
}
.node.node--view-mode-full .field--name-body table tbody {
  border-top: 1px solid #ccc;
}
.node.node--view-mode-full .field--name-body table tbody tr td {
  padding: 12px 8px;
  vertical-align: top;
}
.node.node--view-mode-full .node-links {
  border-top: 1px solid #CCC;
  padding: 1em 0;
  width: 100%;
  clear: both;
  margin-top: 20px;
}
.node.node--view-mode-full .attachments {
  clear: both;
}
.node.node--view-mode-full .attachments h2 {
  margin: 0 0 8px;
}
.node.node--view-mode-full .attachments table {
  width: 100%;
}
.node.node--view-mode-full .attachments table thead {
  display: none;
}
.node.node--view-mode-full .attachments table tbody {
  border: 1px solid #DDD !important;
  background: none;
}
.node.node--view-mode-full .attachments table tbody tr:hover {
  background: #DDD !important;
}
.node.node--view-mode-full .attachments table tbody td {
  padding: 4px 8px;
}
.node.node--view-mode-full .attachments table tbody td:last-child {
  text-align: right;
}

.node--type-news.node--view-mode-teaser {
  padding: 16px 0 0px 32px;
  background: #F7F7F7;
  border-bottom: 1px solid #1f3d5e;
  margin-bottom: 16px;
  display: flex;
  overflow: hidden;
}
.node--type-news.node--view-mode-teaser .group-left {
  width: 100%;
  position: relative;
  padding-right: 32px;
}
.node--type-news.node--view-mode-teaser .group-left:after {
  content: "";
  display: block;
  height: 100%;
  height: calc(100% + 32px);
  width: 60px;
  position: absolute;
  top: -16px;
  right: -30px;
  background: #F7F7F7;
  transform: skew(8deg);
  z-index: 0;
}
.node--type-news.node--view-mode-teaser .group-right {
  min-width: 280px;
  max-width: 400px;
  background: #fff;
  margin: -16px 0;
  padding-left: 0px;
}
.node--type-news.node--view-mode-teaser .group-right img {
  width: 100%;
  height: auto;
}
.node--type-news.node--view-mode-teaser h2 {
  font-size: 24px;
  margin-bottom: 8px;
  position: relative;
  z-index: 10;
}
.node--type-news.node--view-mode-teaser h2.topic-small {
  font-size: 18px;
  color: #1f3d5e;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.node--type-news.node--view-mode-teaser .type {
  text-transform: uppercase;
  font-weight: 700;
  opacity: 0.3;
}
.node--type-news.node--view-mode-full .masthead {
  font-size: 120%;
  font-weight: bold;
  color: #999;
  display: flex;
  margin-bottom: 32px;
}
.node--type-news.node--view-mode-full .masthead .field--name-field-directorates {
  display: inline-block;
}
.node--type-news.node--view-mode-full .masthead .field--name-field-directorates:before {
  content: "-";
  display: inline-block;
  margin: 0 4px;
}
.node--type-news.node--view-mode-full .masthead .field--name-field-directorates a {
  color: #999;
}
.node--type-news.node--view-mode-full .field--name-field-image {
  float: right;
  padding: 0 2em 2em;
}
.node--type-news.node--view-mode-full .field--name-field-image img {
  float: right;
  width: auto !important;
  height: auto !important;
  border: 1px solid #DDD;
  padding: 10px;
  background-color: #F4F4F4;
  box-shadow: 3px 3px 0 #F6F6F6;
  max-width: 300px;
}

.node--type-directorate.node--view-mode-full .field--name-body img {
  float: right;
  margin: 16px 0 16px 16px;
}
.node--type-directorate.node--view-mode-full .related-info {
  overflow: hidden;
}
.node--type-directorate.node--view-mode-full .related-info .view {
  float: left;
}
@media (min-width: 992px) {
  .node--type-directorate.node--view-mode-full .related-info .view {
    width: 50%;
    padding-right: 2%;
  }
}
.node--type-directorate.node--view-mode-full .related-info .view h2 {
  color: #1f3d5e;
  margin-bottom: 0.2em;
  padding-bottom: 0.2em;
  font-weight: normal;
  border-bottom: 2px solid #1f3d5e;
}
.node--type-directorate.node--view-mode-full .related-info .view .views-row {
  padding: 12px 8px;
  border-bottom: 1px dotted #bbb;
}

.node--type-key-message.node--view-mode-full .banner {
  background: #097FAF url("/sites/default/files/2020-06/PHA_Site_StaySafe_SaveLives_BannerMessage.png") 0% 0% no-repeat;
  min-height: inherit;
  overflow: hidden;
  padding: 24px 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-size: contain;
  margin-bottom: 24px;
}
.node--type-key-message.node--view-mode-full .banner p {
  margin: 0;
  line-height: 1;
}
.node--type-key-message.node--view-mode-full .banner img {
  max-height: 120px;
  margin: 0;
}
.node--type-key-message.node--view-mode-full .field--name-field-image {
  margin: 0 0 16px;
}
.node--type-key-message.node--view-mode-full .field--name-field-sections .field__item {
  margin: 0 0 16px;
}
.node--type-key-message.node--view-mode-full .paragraph--type-basic p {
  margin: 0 0 16px;
}
.node--type-key-message.node--view-mode-full .paragraph--type-basic p:last-child {
  margin-bottom: 0;
}
.node--type-key-message.node--view-mode-full .paragraph--type-basic ul {
  padding-left: 1.2em;
}
.node--type-key-message.node--view-mode-full .paragraph--type-link .field {
  display: inline-block;
  display: flex;
  align-items: center;
  box-sizing: border-box;
  padding-left: 50px;
  min-height: 45px;
  max-width: 460px;
  position: relative;
}
.node--type-key-message.node--view-mode-full .paragraph--type-link .field a {
  display: flex;
  height: 100%;
  line-height: 1;
  min-height: 45px;
  align-items: center;
  font-size: 18px;
  font-weight: 600;
  text-align: unset;
  text-decoration: underline;
}
.node--type-key-message.node--view-mode-full .paragraph--type-link .field a:before {
  background: #1f3d5e;
  border-radius: 50%;
  width: 37px;
  height: 37px;
  line-height: 37px;
  text-align: left;
  display: flex;
  font-size: 32px;
  color: white;
  position: absolute;
  left: 0;
  content: "\e905";
  font-family: "icomoon";
  text-indent: -5px;
}
.node--type-key-message.node--view-mode-full .paragraph--type-downloads .field-content {
  display: inline-block;
  display: flex;
  align-items: center;
  box-sizing: border-box;
  padding-left: 50px;
  min-height: 45px;
  max-width: 460px;
  position: relative;
}
.node--type-key-message.node--view-mode-full .paragraph--type-downloads .field-content a {
  display: flex;
  height: 100%;
  line-height: 1;
  min-height: 45px;
  align-items: center;
  font-size: 18px;
  font-weight: 600;
  text-align: unset;
  text-decoration: underline;
}
.node--type-key-message.node--view-mode-full .paragraph--type-downloads .field-content a:before {
  background: #1f3d5e;
  border-radius: 50%;
  width: 37px;
  height: 37px;
  line-height: 33px;
  text-align: left;
  display: flex;
  font-size: 24px;
  color: white;
  position: absolute;
  left: 0;
  content: "\e914";
  font-family: "icomoon";
  justify-content: center;
}
.node--type-key-message.node--view-mode-teaser .field--name-field-image {
  margin: 0 0 16px;
}
.node--type-key-message.node--view-mode-teaser .field--name-field-sections .field__item {
  margin: 0 0 16px;
}
.node--type-key-message.node--view-mode-teaser .paragraph--type-basic {
  font-size: 1.3em;
}
.node--type-key-message.node--view-mode-teaser .paragraph--type-basic p {
  line-height: 1.4;
}
.node--type-key-message.node--view-mode-teaser .paragraph--type-basic p:last-child {
  margin-bottom: 0;
}
.node--type-key-message.node--view-mode-teaser .paragraph--type-basic ul {
  padding-left: 1.2em;
}
.node--type-key-message.node--view-mode-teaser .paragraph--type-link .field {
  display: inline-block;
  display: flex;
  align-items: center;
  box-sizing: border-box;
  padding-left: 50px;
  min-height: 45px;
  max-width: 460px;
  position: relative;
}
.node--type-key-message.node--view-mode-teaser .paragraph--type-link .field a {
  display: flex;
  height: 100%;
  line-height: 1;
  min-height: 45px;
  align-items: center;
  font-size: 18px;
  font-weight: 600;
  text-align: unset;
  text-decoration: underline;
  color: #000;
}
.node--type-key-message.node--view-mode-teaser .paragraph--type-link .field a:before {
  background: #FBDC2E;
  border-radius: 50%;
  width: 37px;
  height: 37px;
  line-height: 35px;
  text-align: left;
  display: flex;
  font-size: 39px;
  color: #009ee3;
  position: absolute;
  left: 0;
  content: "\e905";
  font-family: "icomoon";
  text-indent: -6px;
}
.node--type-key-message.node--view-mode-teaser .paragraph--type-downloads .field-content {
  display: inline-block;
  display: flex;
  align-items: center;
  box-sizing: border-box;
  padding-left: 50px;
  min-height: 45px;
  max-width: 460px;
  position: relative;
}
.node--type-key-message.node--view-mode-teaser .paragraph--type-downloads .field-content a {
  display: flex;
  height: 100%;
  line-height: 1;
  min-height: 45px;
  align-items: center;
  font-size: 18px;
  font-weight: 600;
  text-align: unset;
  text-decoration: underline;
  color: #000;
}
.node--type-key-message.node--view-mode-teaser .paragraph--type-downloads .field-content a:before {
  background: #000;
  border-radius: 50%;
  width: 37px;
  height: 37px;
  line-height: 33px;
  text-align: left;
  display: flex;
  font-size: 24px;
  color: #fff;
  position: absolute;
  left: 0;
  content: "\e914";
  font-family: "icomoon";
  justify-content: center;
}

.path-frontpage div.main.container {
  padding-bottom: 0;
}
.path-frontpage .layout-content {
  overflow: visible;
}

.region-content-front {
  margin-bottom: 32px;
  overflow: hidden;
}
.region-content-front .latest-list {
  position: relative;
}
.region-content-front .latest-list:before {
  position: absolute;
  top: 0;
  left: -8px;
  width: 2px;
  height: 100%;
  background: #333;
  content: "";
  opacity: 0.3;
}
.region-content-front .latest-list:after {
  position: absolute;
  top: 0;
  right: -2px;
  width: 2px;
  height: 100%;
  background: #333;
  content: "";
  opacity: 0.3;
}
.region-content-front .view-latest .list-unstyled li.entry {
  border-bottom: 1px dotted #bbb;
  padding: 20px 0;
}
.region-content-front .view-latest .list-unstyled li.entry h3 {
  margin-bottom: 0px;
}
.region-content-front .view-latest .list-unstyled li.entry strong.meta {
  color: #666;
  display: block;
  margin-bottom: 12px;
}
.region-content-front .view-latest .list-unstyled li.entry img {
  width: 90px;
  border: 1px solid #ccc;
  padding: 2px;
  background-color: #F4F4F4;
  box-shadow: 3px 3px 0 #F6F6F6;
  float: left;
}
.region-content-front .view-latest .list-unstyled li.entry .text {
  margin-left: 120px;
}

.region-banner {
  display: flex;
  flex-wrap: wrap;
}
.region-banner .slider {
  margin: 16px 0;
  position: relative;
  order: 1;
}
.region-banner .slider > h2 {
  margin: 0;
}
@media (min-width: 768px) {
  .region-banner .slider {
    order: 0;
    box-shadow: 2px 0 0 rgba(0, 0, 0, 0.3);
  }
}
.region-banner .slider:after {
  position: absolute;
  top: 0;
  right: 0;
  width: 2px;
  height: 100%;
  background: white;
  content: "";
}
.region-banner .campaigns {
  margin: 16px 0;
  order: 0;
}
@media (min-width: 768px) {
  .region-banner .campaigns {
    order: 1;
  }
}

.node--type-page.node--view-mode-teaser h2 {
  font-size: 24px;
  margin-bottom: 8px;
}
.node--type-page.node--view-mode-full img {
  float: right;
  margin: 8px 8px 16px 16px;
}

.page-node-type-page .region-content-bottom {
  padding: 0;
}

.node--type-publication.node--view-mode-full .masthead {
  font-size: 120%;
  font-weight: bold;
  color: #999;
  display: flex;
  margin-bottom: 32px;
}
.node--type-publication.node--view-mode-full .masthead .field--name-field-directorates {
  display: inline-block;
}
.node--type-publication.node--view-mode-full .masthead .field--name-field-directorates .field__item {
  display: inline-block;
}
.node--type-publication.node--view-mode-full .masthead .field--name-field-directorates:before {
  content: "-";
  display: inline-block;
  margin: 0 4px;
}
.node--type-publication.node--view-mode-full .masthead .field--name-field-directorates a {
  color: #999;
}
.node--type-publication.node--view-mode-full .field--name-field-image {
  float: right;
  padding: 0 2em 2em;
}
.node--type-publication.node--view-mode-full .field--name-field-image img {
  float: right;
  width: auto !important;
  height: auto !important;
  border: 1px solid #DDD;
  padding: 10px;
  background-color: #F4F4F4;
  box-shadow: 3px 3px 0 #F6F6F6;
  max-width: 300px;
}
.node--type-publication.node--view-mode-full .publication-details h2 {
  margin-bottom: 0px;
}

/* Full width display on view */
.entry-full {
  max-width: 100% !important;
  clear: both;
  overflow: hidden;
}

.paragraph .view .list-flex .entry.entry-full img {
  aspect-ratio: inherit;
  float: left;
  margin: 0 2rem 1rem 0;
  width: 200px;
  max-height: 200px;
  overflow: visible;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: left;
     object-position: left;
}

.search-block-form {
  margin: 40px 0 16px;
}
@media (min-width: 992px) {
  .search-block-form {
    margin-top: 56px;
  }
}
.search-block-form form {
  text-align: right;
}
.search-block-form input.form-search {
  border: 1px solid #fff;
  width: 160px;
  padding: 4px;
  border-radius: 2px;
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
  margin-bottom: 4px;
  color: #333;
}
.search-block-form input.button {
  background: transparent;
  color: #fff;
  border-radius: 8px;
  border: 1px solid #fff;
  padding: 4px 16px;
}
.search-block-form input.button:hover, .search-block-form input.button:focus-visible, .search-block-form input.button:focus {
  background-color: #1F8292;
}
.search-block-form input.button:focus-visible, .search-block-form input.button:focus {
  outline: 2px solid white;
  outline-offset: 2px;
}

.path-search .region-content {
  padding: 0 16px;
}
@media (min-width: 992px) {
  .path-search .region-content {
    float: left;
    width: 66.66666667%;
    padding: 0;
  }
  .path-search .region-content .block-system-main-block {
    clear: both;
    padding: 0 16px;
  }
}
.path-search .region-sidebar {
  padding: 0 16px;
  display: block;
}
@media (min-width: 992px) {
  .path-search .region-sidebar {
    float: right;
    width: 33.33333333%;
    margin-top: 2rem;
  }
}

.view-search .view-header {
  padding-bottom: 20px;
}
.view-search .view-header em {
  font-weight: 900;
  margin-right: 2px;
}
.view-search .view-header p {
  margin: 8px 0 0;
}
.view-search .view-header .results-summary {
  background: #F7F7F7;
  padding: 8px;
  margin-top: -16px;
}
.view-search .views-row {
  padding-bottom: 0px;
  border-bottom: 2px solid #F7F7F7;
  margin-bottom: 32px;
}
.view-search .views-row h2 {
  font-size: 24px;
  margin-bottom: 8px;
}
.view-search .views-row h3 {
  margin: 0 0 12px;
}
.view-search .views-row p {
  margin-bottom: 0;
}
.view-search .views-row .dates {
  text-transform: uppercase;
  color: #000;
  font-size: 13px;
  margin-top: 8px;
  display: block;
}
.view-search .views-row .dates span {
  padding: 0 0 0 5px;
  margin-left: 5px;
  border-left: 1px solid;
}
.view-search .views-row .dates span:first-child {
  margin-left: 0;
  padding-left: 0;
  border: 0;
}
.view-search .views-row .details {
  display: flex;
  margin-bottom: 8px;
}
.view-search .views-row .details .field {
  position: relative;
  display: inline-block;
  padding-right: 12px;
}
.view-search .views-row .details .field:after {
  content: "|";
  position: absolute;
  right: 0px;
  top: 0;
  width: 8px;
}
.view-search .views-row .details .field:last-of-type:after {
  display: none;
}
.view-search .views-row .search-details {
  border-top: 1px solid #F7F7F7;
  padding: 4px 0px;
  margin-top: 8px;
  display: flex;
}
.view-search .views-row .search-details .field {
  font-weight: 700;
  font-size: 14px;
  position: relative;
  display: inline-block;
  padding-right: 12px;
  opacity: 0.3;
}
.view-search .views-row .search-details .field:after {
  content: "|";
  position: absolute;
  right: 0px;
  top: 0;
  width: 8px;
}
.view-search .views-row .search-details .field:last-of-type:after {
  display: none;
}
.view-search .views-row .search-details .list-flex .entry {
  margin-right: 4px;
  margin-bottom: 0;
}
.view-search .views-row .search-details .list-flex .entry:after {
  content: ",";
  padding-left: 1px;
}
.view-search .views-row .search-details .list-flex .entry:last-child:after {
  display: none;
}

.search-help-link {
  display: block;
  margin-bottom: 16px;
}

.search-results {
  margin: 0;
  padding: 0;
}
.search-results li {
  margin-left: 0;
  border-bottom: 1px solid #ccc;
  margin-bottom: 16px;
}

.user-registration-type-institution-form #edit-account {
  border: 1px solid #cecece;
  padding: 16px 32px 24px;
  background: #f5f5f5;
  margin: 16px 0 32px 0;
  display: block;
  clear: both;
  float: left;
}
.user-registration-type-institution-form #edit-account .form-type-email {
  margin-bottom: 32px;
}
.user-registration-type-institution-form #edit-account .form-item label {
  display: block;
  text-transform: uppercase;
}

.user-login-form label {
  display: block;
  text-transform: uppercase;
}

.user--view-mode-full .view {
  margin: 16px;
}
.user--view-mode-full .view h2 {
  background: #efefef;
  padding: 8px 16px;
  margin-bottom: 12px;
}
.user--view-mode-full .view header {
  position: relative;
}
.user--view-mode-full .view header .btn {
  padding: 0;
  position: absolute;
  top: 0;
  right: 0;
  border: 0;
}
.user--view-mode-full .view header .btn a {
  text-decoration: none;
  display: block;
  text-transform: uppercase;
  background-color: transparent;
  border: 0;
  border-radius: 0;
  margin-bottom: 0;
  padding: 12px 24px 12px 24px;
  width: auto;
  text-align: center;
  font-size: 12px;
  font-weight: 500;
}
.user--view-mode-full .view table {
  width: 100%;
  padding: 0 16px;
  font-size: 12px;
}
.user--view-mode-full .view table th {
  border-bottom: 1px solid;
  text-transform: uppercase;
  font-size: 11px;
  padding: 8px;
}
.user--view-mode-full .view table tr {
  border-bottom: 1px solid #000;
}
.user--view-mode-full .view table tr:nth-child(even) {
  background: #F7F7F7;
}
.user--view-mode-full .view table td {
  vertical-align: top;
  padding: 4px 8px;
}
.user--view-mode-full .view table td a {
  color: #000;
  font-weight: 700;
}
.user--view-mode-full .view table td a:hover, .user--view-mode-full .view table td a:focus {
  color: #2A537F;
}
.user--view-mode-full .view table .btn {
  border: 0;
  background: none;
}
.user--view-mode-full .view table .btn a {
  text-decoration: none;
  display: block;
  text-transform: uppercase;
  background-color: transparent;
  border: 0;
  border-radius: 0;
  color: #fff;
  margin-bottom: 0;
  padding: 2px 4px;
  width: auto;
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  background: #1f3d5e;
}
.user--view-mode-full .view table .btn a:hover, .user--view-mode-full .view table .btn a:focus {
  background: #3E4F4F;
  color: #fff;
}
.user--view-mode-full.ds-2col-stacked-fluid > .group-left, .user--view-mode-full.ds-2col-stacked-fluid > .group-right {
  width: 100%;
}
@media (min-width: 992px) {
  .user--view-mode-full.ds-2col-stacked-fluid > .group-left, .user--view-mode-full.ds-2col-stacked-fluid > .group-right {
    width: 50%;
  }
}

/*
  Secondary Menu/region styling
*/
header .region-secondary-menu .block-menu {
  display: none;
  overflow: hidden;
  background: #F7F7F7;
}
@media (min-width: 992px) {
  header .region-secondary-menu .block-menu {
    display: block;
    max-width: 1370px;
    margin: 0 auto;
  }
}
header .region-secondary-menu .block-menu ul.menu {
  margin: 0;
  border-right: 1px solid #1f3d5e;
  overflow: hidden;
  float: right;
}
header .region-secondary-menu .block-menu ul.menu li {
  display: block;
  float: left;
  padding-top: 0;
}
header .region-secondary-menu .block-menu ul.menu li a {
  padding: 0 16px;
  line-height: 24px;
  color: #2A537F;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 300;
  display: block;
  text-decoration: none;
}
header .region-secondary-menu .block-menu ul.menu li a:focus, header .region-secondary-menu .block-menu ul.menu li a:hover {
  text-decoration: none;
  color: #2A537F;
}
header .region-secondary-menu .block-menu ul.menu li.menu-item--active-trail a {
  text-decoration: none;
  color: #1d3a59;
  font-weight: 700;
  letter-spacing: 0.5px;
}

/*
  Main Menu/region styling
 */
header + div.menu {
  background: #1f3d5e;
  color: #fff;
}
header + div.menu ul.menu {
  min-height: 35px;
  display: flex;
  margin: 0;
  padding: 0;
  overflow: hidden;
  gap: 2rem;
}
header + div.menu ul.menu li {
  float: left;
  list-style: none;
  margin: 0;
  padding: 0;
}
header + div.menu ul.menu li a {
  min-height: 35px;
  display: block;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  font-size: 125%;
  padding: 0 9px;
  margin: 0;
  line-height: 230%;
  float: left;
}
header + div.menu ul.menu li a:hover {
  background-color: #3d5b7c;
}
header + div.menu ul.menu li a.is-active {
  background: #fff;
  color: #1f3d5e;
}
header + div.menu ul.menu li a:focus, header + div.menu ul.menu li a:focus-visible {
  outline: 2px solid white;
  outline-offset: -2px;
}

.path-frontpage .menu ul.menu li a.is-active {
  background: #f1f1f1;
}

header .block-superfish {
  display: none;
}
@media (min-width: 992px) {
  header .block-superfish {
    display: block;
    position: relative;
    padding: 0;
    float: right;
    margin-top: 24px;
    max-width: 90%;
    max-width: calc(100% - 100px);
  }
  header .block-superfish ul.menu {
    display: flex;
    width: 100%;
    justify-content: space-between;
    padding: 0;
    margin: 0;
    list-style: none;
  }
  header .block-superfish ul.menu li.menu-item {
    display: inline-block;
    display: flex;
    margin: 0;
    list-style: none;
    padding: 8px 16px 0;
    min-width: 80px;
    align-self: flex-end;
  }
  header .block-superfish ul.menu li.menu-item.menu-item--active-trail a {
    font-weight: 700;
  }
  header .block-superfish ul.menu a {
    padding: 0;
    line-height: 1.4;
    font-size: 20px;
    color: #000;
    display: block;
    font-weight: 300;
    cursor: pointer;
    text-decoration: none;
  }
  header .block-superfish ul.menu a:focus, header .block-superfish ul.menu a:hover {
    text-decoration: none;
    color: #1f3d5e;
  }
}

.field__label {
  font-weight: 600;
  font-size: 1.8rem;
  line-height: 2.5;
}

.breadcrumb {
  padding: 8px 0;
  font-size: 15px;
}
.breadcrumb li {
  color: #3E4F4F;
}
.breadcrumb li:before {
  content: "/";
  color: #000;
  padding: 0 4px;
}
.breadcrumb li a {
  color: #000;
}

.video-embed-field-responsive-video {
  max-width: 960px;
}
.video-embed-field-responsive-video:after {
  padding-bottom: 16px;
}

@media (min-width: 992px) {
  .toc-responsive {
    max-width: calc(100% - 350px);
  }
}

span.red {
  color: #EC130E;
}

span.amber {
  color: #B66008;
}

span.green {
  color: #2E633A;
}

.block-content--type-decision-tree {
  background: #009aab;
  padding: 32px;
  color: white;
  cursor: auto;
}
.block-content--type-decision-tree h2 {
  color: #fff;
  margin-bottom: 12px;
  border-bottom: 1px solid #fff;
  padding-bottom: 4px;
}
.block-content--type-decision-tree .field--name-field-question {
  font-size: 1.5em;
  margin: 0 0 12px;
}
.block-content--type-decision-tree .branch_options .field__item {
  min-height: 40px;
  margin-bottom: 4px;
}
.block-content--type-decision-tree .branch_options .field__item input {
  position: absolute;
  z-index: -1;
  visibility: hidden;
}
.block-content--type-decision-tree .branch_options .field__item label {
  font-size: 1.5em;
  font-weight: 300;
  padding-left: 40px;
  position: relative;
  cursor: pointer;
}
.block-content--type-decision-tree .branch_options .field__item label:before {
  position: absolute;
  left: 0px;
  width: 32px;
  height: 32px;
  background-color: #fff;
  border: 4px solid #fff;
  border-radius: 0;
  content: "";
}
.block-content--type-decision-tree .branch_options .field__item input:checked + label {
  font-weight: 700;
}
.block-content--type-decision-tree .branch_options .field__item input:checked + label:before {
  background-color: #1f3d5e;
  border-radius: 50%;
  box-shadow: 2px 2px 2px 2px rgba(0, 0, 0, 0.15);
}
.block-content--type-decision-tree .branch_options .further_info {
  margin: 16px 0;
  font-size: 1.5em;
  padding: 16px;
  background: #fff;
  color: #333;
  box-shadow: 2px 2px 2px 2px rgba(0, 0, 0, 0.15);
}
.block-content--type-decision-tree .branch_options .further_info p {
  margin-bottom: 12px;
}
.block-content--type-decision-tree .branch_options .further_info p:last-child {
  margin: 0;
}
.block-content--type-decision-tree .branch_options .further_info a {
  text-decoration: underline;
  font-weight: 700;
}
.block-content--type-decision-tree .branch_options .cta {
  display: inline-block;
  padding: 12px 16px;
  font-size: 1.25em;
  background: #1f3d5e;
  cursor: pointer;
}
.block-content--type-decision-tree .branch_options .cta:hover, .block-content--type-decision-tree .branch_options .cta:focus {
  background: #122438;
}
.block-content--type-decision-tree .branch_options .further_info:empty,
.block-content--type-decision-tree .branch_options .cta:empty {
  display: none;
}

.region-content-bottom .block-content--type-decision-tree {
  margin: 32px -16px -32px;
}

.path-frontpage .region-content-bottom .block-content--type-decision-tree {
  margin: 0 -16px;
}

a[href*=footnote] {
  font-style: inherit;
  text-transform: capitalize;
  text-decoration: blink;
  font-variant: all-petite-caps;
  vertical-align: super;
}

ul.footnotes {
  padding-top: 16px !important;
}
ul.footnotes li {
  margin-bottom: 8px !important;
  list-style-type: none !important;
  max-width: 800px !important;
  position: relative;
}
ul.footnotes a.footnote-label {
  position: absolute;
  left: -16px;
  z-index: 2;
  font-style: inherit;
  font-variant: none;
}

.paragraph--type-graphical-menu .full-width {
  margin: 0 -16px;
}
.paragraph--type-graphical-menu .entry .paragraph--type-menu-link {
  background: #f7f7f7;
  height: 100%;
}
.paragraph--type-graphical-menu .entry .paragraph--type-menu-link img {
  float: none;
  margin: 0;
  width: 100%;
}
.paragraph--type-graphical-menu .entry .paragraph--type-menu-link h3 {
  margin: 0;
  line-height: 1.2;
}
.paragraph--type-graphical-menu .entry .paragraph--type-menu-link h3 a {
  display: block;
  padding: 16px;
}
.paragraph--type-graphical-menu .entry .paragraph--type-menu-link h3 a:hover {
  background: #1f3d5e;
  color: #fff;
}
@media (min-width: 992px) {
  .paragraph--type-graphical-menu.two-column .entry {
    width: 50% !important;
  }
}
@media (min-width: 992px) {
  .paragraph--type-graphical-menu.three-column .entry {
    width: 33.3333% !important;
  }
}
@media (min-width: 992px) {
  .paragraph--type-graphical-menu.four-column .entry {
    width: 25% !important;
  }
}

#block-useraccountmenu a {
  color: #fff;
}

button.slick-prev:focus,
button.slick-next:focus {
  background: #1f3d5e;
  color: #fff;
  outline: 1px solid;
}

#__ba_floatingLaunch {
  top: calc(100% - 64px) !important;
}

#block-emergencymessage,
.emergency-message-queen {
  background-color: #000;
  color: #fff;
}
#block-emergencymessage .field--name-body,
.emergency-message-queen .field--name-body {
  max-width: 1380px;
  margin: 0 auto;
  padding: 2em;
}
#block-emergencymessage .field--name-body h2,
.emergency-message-queen .field--name-body h2 {
  color: #fff;
  margin: 0;
}
#block-emergencymessage .field--name-body p:last-child,
.emergency-message-queen .field--name-body p:last-child {
  margin-bottom: 0;
}

.ui-accordion .ui-accordion-header {
  font-size: 24px;
  margin-top: 1rem;
}
.ui-accordion .ui-accordion-header a {
  padding-left: 0.5rem;
}

.ui-accordion-header.ui-state-active {
  background: #2E5A8A;
  border-color: #2E5A8A;
  color: #f1f1f1;
}

.ui-accordion .ui-widget-content {
  font-family: "helvetica", sans-serif;
  font-size: 14px;
  line-height: 1.4;
}
@media (min-width: 1200px) {
  .ui-accordion .ui-widget-content {
    font-size: 16px;
    line-height: 1.52;
  }
}

/* GDPR Buttons */
#gdpr-popup .gdpr-popup-content .gdpr-popup-buttons button {
  background-color: transparent !important;
  border: 1px solid white !important;
}
#gdpr-popup .gdpr-popup-content .gdpr-popup-buttons button:hover, #gdpr-popup .gdpr-popup-content .gdpr-popup-buttons button:focus-visible {
  background-color: #1F8292;
}

/* Homepage Redevelopment */
.paragraph h2 {
  position: relative;
  margin-bottom: 0.5em;
}
.paragraph.grey {
  background-color: #f7f7f7;
  padding: 2em 0 3em 0;
  position: relative;
}
.paragraph.grey:before {
  position: absolute;
  z-index: 0;
  content: "";
  display: block;
  top: 0;
  bottom: 0;
  left: -16px;
  right: -16px;
  background-color: #f7f7f7;
}
@media screen and (min-width: 992px) {
  .paragraph.grey:before {
    left: -32px;
    right: -32px;
  }
}
@media screen and (min-width: 1400px) {
  .paragraph.grey:before {
    left: calc(-50vw + 669px);
    right: calc(-50vw + 669px);
  }
}
.paragraph.white {
  background-color: #fff;
  padding: 2rem 0;
  position: relative;
}
.paragraph.blue {
  background-color: #8eb6dc;
  padding: 2em 0 3em 0;
  position: relative;
}
.paragraph.blue:before {
  position: absolute;
  z-index: 0;
  content: "";
  display: block;
  top: 0;
  bottom: 0;
  left: -16px;
  right: -16px;
  background-color: #8eb6dc;
}
@media screen and (min-width: 992px) {
  .paragraph.blue:before {
    left: -32px;
    right: -32px;
  }
}
@media screen and (min-width: 1400px) {
  .paragraph.blue:before {
    left: calc(-50vw + 669px);
    right: calc(-50vw + 669px);
  }
}

.paragraph--type-banner img {
  position: relative;
}
@media screen and (min-width: 992px) {
  .paragraph--type-banner img {
    margin-left: -1em;
    margin-right: -1em;
    max-width: calc(100% + 2em);
  }
}
.paragraph--type-banner .text {
  background: white;
  position: relative;
  padding: 2em;
  background: #fff;
  box-shadow: 2px 4px 4px 0px rgba(0, 0, 0, 0.15);
}
@media screen and (min-width: 992px) {
  .paragraph--type-banner .text {
    width: 50%;
    position: absolute;
    bottom: 1.5em;
    left: 0rem;
    min-width: 40ch;
    max-width: 70ch;
  }
}
.paragraph--type-banner .text h2 {
  margin-bottom: 0.25em;
}
.paragraph--type-banner .text p {
  font-size: 1.333em;
}
.paragraph--type-banner .text p:last-child {
  margin: 0;
}

.paragraph .view.view-grid {
  margin-top: 2rem;
}

.paragraph .view .list-flex {
  gap: 2rem;
  flex-wrap: wrap;
  position: relative;
}
@media screen and (min-width: 992px) {
  .paragraph .view .list-flex {
    display: flex;
  }
}
.paragraph .view .list-flex .entry {
  width: 100%;
  background-color: white;
  padding: 2em 2em 2em;
  box-shadow: 1px 6px 8px 2px rgba(0, 0, 0, 0.15);
  border: 1px solid #eee;
}
@media screen and (min-width: 992px) {
  .paragraph .view .list-flex .entry {
    max-width: calc(33.33% - 1.667rem);
  }
}
.paragraph .view .list-flex .entry img {
  margin-bottom: 1em;
  aspect-ratio: 16/9;
  -o-object-fit: cover;
     object-fit: cover;
}
.paragraph .view .list-flex .entry h3 {
  line-height: 1.25;
}
.paragraph .view .list-flex .entry p:last-child {
  margin-bottom: 0;
}

.paragraph--type-cta {
  flex-wrap: wrap;
  gap: 2em;
}
@media screen and (min-width: 992px) {
  .paragraph--type-cta {
    display: flex;
  }
  .paragraph--type-cta h2 {
    width: 100%;
    margin-bottom: 0;
  }
  .paragraph--type-cta .media {
    width: 60%;
  }
  .paragraph--type-cta .media + .cta-content {
    width: calc(40% - 2em);
  }
}
.paragraph--type-cta .media,
.paragraph--type-cta .cta-content {
  position: relative;
}
.paragraph--type-cta .cta-content {
  font-size: 1.125em;
}
.paragraph--type-cta .cta-content p:last-child,
.paragraph--type-cta .cta-content ul:last-child {
  margin-bottom: 0;
}
.paragraph--type-cta .cta-content ul li {
  margin-bottom: 0.25em;
}

.paragraph .view .more-link {
  text-align: right;
  margin-top: 1em;
}
.paragraph .view .more-link a {
  text-decoration: none;
  position: relative;
  font-size: 1.25em;
  border-bottom: 8px solid;
  padding: 0.5em 1em;
  padding-right: 0.3667em;
  text-align: right;
  display: inline-block;
  background: rgba(255, 255, 255, 0.5);
}
.paragraph .view .more-link a:hover, .paragraph .view .more-link a:focus-visible {
  background-color: #2A537F;
  color: white;
  border-color: #2A537F;
}

/* Updated Social Media */
.block-social-media-links {
  width: 100%;
}
.block-social-media-links ul.menu {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}
.block-social-media-links ul.menu li {
  text-align: center;
}
.block-social-media-links ul.menu li a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  text-align: center;
}
.block-social-media-links ul.menu li a:hover, .block-social-media-links ul.menu li a:focus-visible {
  color: #fff;
}
.block-social-media-links ul.menu li a:before {
  content: "";
  display: block;
  margin-bottom: 0.25em;
  font-family: "icomoon";
  text-align: center;
  font-size: 24px;
  line-height: 1;
}
.block-social-media-links ul.menu li a[href*=facebook]:before {
  content: "\e916";
}
.block-social-media-links ul.menu li a[href*=twitter]:before {
  content: "\e930";
}
.block-social-media-links ul.menu li a[href*=linkedin]:before {
  content: "\e931";
}
.block-social-media-links ul.menu li a[href*=vimeo]:before {
  content: "\e92e";
}
.block-social-media-links ul.menu li a[href*=instagram]:before {
  content: "\e92d";
}
.block-social-media-links ul.menu li a[href*=youtube]:before {
  content: "\e92f";
}

/* Cookies */
.cookiesjsr--app {
  background-color: #666;
  font-size: 1em;
}

.cookiesjsr-banner.active {
  position: sticky;
  top: 0em;
  background: transparent;
  max-width: 1400px;
  margin: 0 auto;
  display: block;
  z-index: 1;
}

.cookiesjsr-banner--info {
  width: 100%;
}

.cookiesjsr-links.links--row li a {
  color: #fff;
  text-decoration: underline;
}
.cookiesjsr-links.links--row li a:hover, .cookiesjsr-links.links--row li a:focus-visible {
  outline: 2px solid white;
  outline-offset: 2px;
}

/* Klaro */
body:has(#klaro-cookie-notice) {
  overflow: hidden;
}

body:has(#klaro-cookie-notice) .mm-page .dialog-off-canvas-main-canvas {
  pointer-events: none;
}

body:has(#klaro-cookie-notice) .mm-page:after {
  content: "";
  background: black;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 100;
  opacity: 0.75;
}

.klaro_toggle_dialog {
  right: auto;
  left: 25px;
}

/* Remote Video */
.media--type-remote-video .field__item {
  aspect-ratio: 16/9;
}
.media--type-remote-video .field__item iframe {
  min-width: 100%;
  height: 100%;
}
.media--type-remote-video .field__item [data-type=placeholder] {
  min-width: 100%;
  height: 100% !important;
}
.media--type-remote-video .field__item [data-type=placeholder] .klaro.cm-as-context-notice {
  padding: 2em;
  background-color: rgba(0, 0, 0, 0.75);
}
.media--type-remote-video .field__item [data-type=placeholder] .context-notice {
  flex-wrap: nowrap;
  padding: 2em;
  height: 100%;
}
.media--type-remote-video .field__item [data-type=placeholder] .context-notice > p:first-child {
  font-size: 2em;
  font-weight: 900;
  line-height: 1;
  margin: 1em 0 0.5em;
}
.media--type-remote-video .field__item [data-type=placeholder] .context-notice .klaro .context-notice p.cm-dialog-link {
  width: 100%;
}

/* Grid paragraph */
.paragraph--type-grid h2,
.paragraph--type-grid .field--name-field-content,
.paragraph--type-grid .grid {
  position: relative;
}

.grid {
  padding: 0 16px;
}
@media (min-width: 992px) {
  .grid {
    padding: 0;
  }
}
.grid .list-flex {
  gap: 2rem;
  display: flex;
  flex-wrap: wrap;
}
.grid .list-flex .entry img {
  margin: 0 0 0 1em;
  float: none;
}

.cards .list .entry {
  border: 2px solid #f7f7f7;
  border-radius: 1em;
  padding: 2em;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.15);
}
.cards .list .entry > img {
  max-width: 150px;
  border-radius: 50%;
  box-shadow: 0 4px 4px 4px rgba(0, 0, 0, 0.15);
  margin: 0 0 1em 0;
}
@media (min-width: 768px) {
  .cards .list .entry > img {
    float: right;
    margin-left: 1em;
  }
}
.cards .list .entry h3 {
  margin: 0;
}
.cards .list .entry h3 + .subhead {
  font-size: 18px;
  font-weight: 600;
  color: #666;
  margin-bottom: 0;
}
.cards .list .entry .grid-content {
  margin-top: 1em;
}

/* Columns */
.two .grid .list .entry {
  width: 100%;
}
@media (min-width: 768px) {
  .two .grid .list .entry {
    width: calc(50% - 1rem);
  }
}

.three .grid .list .entry {
  width: 100%;
}
@media (min-width: 768px) {
  .three .grid .list .entry {
    width: calc(50% - 1rem);
  }
}
@media (min-width: 992px) {
  .three .grid .list .entry {
    width: calc(33.33% - 1.333rem);
  }
}

.four .grid .list .entry {
  width: 100%;
}
@media (min-width: 768px) {
  .four .grid .list .entry {
    width: calc(50% - 1rem);
  }
}
@media (min-width: 992px) {
  .four .grid .list .entry {
    width: calc(25% - 1.5rem);
  }
}
.four .grid .list .entry > img {
  float: none;
  margin-left: 0;
  margin-right: 0;
}

/* Colours */
.white .grid .list .entry {
  background-color: white;
}

.grey .grid .list .entry {
  background-color: white;
}

.blue .grid .list .entry {
  background-color: #f0f7fb;
}/*# sourceMappingURL=style.css.map */