@charset "UTF-8";
/* Please note: This is the main style sheet for the website, everything needed to style the site
   is in this file/included from this file. Styles for 'the conversation' section are separate.
*/
/* Media Queries
*********************************** */
/*
  I am working with REMs for the whole site, except for the media queries which is not viable
  These media queries are better suited to mobile first.
*/
/* Set Initial grid values
*********************************** */
/* HOW TO USE: Effgrid can be called like this:

@include grid( $property, $num_cols, $num_guts, $num_cols_parent, $grid:desktop );

	What to these parameters mean?

	$property : this is the CSS property you wish to insert, for example 'width'
	$num_cols : the number of columns you want to be included in the percentage generated for the property
	$num_guts : the number of gutters you want to be included in the percentage generated for the property
	$num_cols_parent : the number of grid columns that the elements parent is occupying
	$grid : leave blank for desktop, inside media queries for tablet sizes, specify 'tablet'


	For example:

	// Assume the container is 12 columns
	.full_width_container {


		// Item we are going to set as 6 columns wide
		.item_we_would_like_to_manipulate {
			@include grid(width,6,0,12); // compiles to width: X%; item will be 6 columns of 12 columns grid
			padding:{
				@include grid(left,3,1,12); // compiles to padding-left: X%; item will have padding-left of 3 columns + 1 gutter
			}
		}
	}


	A further example, where the container is 6 columns:
	.full_width_container {

		.six_column_container {
			@include grid(width,6,0,12); // compiles to width: X%; item will be 6 columns of 12 columns grid
			padding:{
				@include grid(left,3,1,12); // compiles to padding-left: X%; item will have padding-left of 3 columns + 1 gutter
			}

			// Item we are going to set as 3 columns wide
			.item_we_would_like_to_manipulate {
				@include grid(width,3,0,6); // compiles to width: X%; item will be 3 columns of 12 columns grid
			}
		}
	}

*/
/* Generate percentage grid values
*********************************** */
/* 	Fonts – Specfics
    These are not to be used directly in styling,
    please use the generic values further below!
*********************************** */
/* 	Fonts – Generic values
    Use these values in styling!
*********************************** */
/*	Colours - Specifics
    These are not to be used directly in styling,
    please use the generic values further below!
***********************************  */
/*	Colours - Generic values
    Use these values in styling!
***********************************  */
/*	Size variables
***********************************  */
/*	Transition variables
***********************************  */
/*	Selector variables
***********************************  */
/*	Assets – SVG
************************************* */
/*	Assets – Tileable SVG
************************************* */
/*	Assets – Banners
************************************* */
/*	Assets – PNG Graphics
************************************* */
/*  Show/hide mixins
*********************************** */
/*  Display mixins
*********************************** */
/*  Typography mixins
*********************************** */
/*  Type hierarchy size mixins
    - Do not use type_hierarchy_sizes to set type styles on text elements!
    The purpose of this is to use relative units on non-text elements
    (without applying the entire type style, which is unnecessary)
*********************************** */
/*  'Paragraph style' Variables
*********************************** */
/*  'Paragraph style' Mixins
    - These are actual type styles, apply these to text elements
*********************************** */
/* Override colors in a button that is already styled up with mixin: button
*/
/*  Layout Partial -
    1 col on mobile
*********************************** */
/*  Layout Partial -
    4 cols in full width parent on desktop
*********************************** */
/*  Layout Partial -
    3 cols in full width parent on desktop
*********************************** */
/*  Layout Partial -
    3 cols in 9 column parent on desktop
*********************************** */
/*  Layout Partial -
    2 cols in full width parent on desktop
*********************************** */
/*  Layout Partial -
    2 cols in full width parent on tablet
*********************************** */
/*  Layout Partial -
    2 cols in 8 col parent parent on desktop
*********************************** */
/*  Full Layout mixin –
    4 col on desktop (full width parent)

    (2 col on tablet
    1 col on mobile)
*********************************** */
/*  Full Layout mixin –
    3 col on desktop (full width parent)

    (2 col on tablet
    1 col on mobile)
*********************************** */
/*  Full Layout mixin –
    3 col on desktop (in 9 col parent)

    (2 col on tablet
    1 col on mobile)
*********************************** */
/*  Full Layout mixin –
    2 col on desktop (in full width parent)

    (2 col on tablet
    1 col on mobile)
*********************************** */
/*  Layout mixins - Special full layouts
*********************************** */
/*  component style: page overlay
    - Style up a default page overlay   
*/
/*  component style: standard square button
    style up an element as a standard square button, choice of icons
    eg. burger, search etc
*/
/*  component style: imageBackgroundOutlineRect
    - this styles up the .image_background HTML found in .listed_content_item.style__sectional (for example)
    - it handles styling of the rectangle graphic, animate in effects and hover effects

    - $imageBackground__parent_container is the direct parent element to .image_background
    - $imageBackground__animate_in_container is a container element to .image_background, the one that JS flags with .animate_in and .in_viewport
    - $anchor_element is the container element which will be hovered to produce the hover effect on the graphic
    - other parameters are line color and line color on hover
*/
/*  Animate Into Viewport effects
*********************************** */
/*  Normalize

    This file is a fork of these original sources:
    - normalize.css v2.1.2 | MIT License | git.io/normalize
    - normalize.scss v2.1.2 | MIT/GPLv2 License | bit.ly/normalize-scss
*********************************** */
/**
 * HTML5 display definitions
 */
/* Correct `block` display not defined in IE 8/9. */
article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
nav,
section,
summary {
  display: block;
}

/* Correct `inline-block` display not defined in IE 8/9. */
audio,
canvas,
video {
  display: inline-block;
}

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

/* Address styling not present in IE 8/9. */
[hidden] {
  display: none;
}

/**
 * Base
 *
 * Instead of relying on the fonts that are available on a user's computer, you
 * can use web fonts which, like images, are resources downloaded to the user's
 * browser. Because of the bandwidth and rendering resources required, web fonts
 * should be used with care.
 *
 * Numerous resources for web fonts can be found on Google. Here are a few
 * websites where you can find Open Source fonts to download:
 * - http://www.fontsquirrel.com/fontface
 * - http://www.theleagueofmoveabletype.com
 *
 * In order to use these fonts, you will need to convert them into formats
 * suitable for web fonts. We recommend the free-to-use Font Squirrel's
 * Font-Face Generator:
 *   http://www.fontsquirrel.com/fontface/generator
 *
 * The following is an example @font-face declaration. This font can then be
 * used in any ruleset using a property like this:  font-family: Example, serif;
 *
 * Since we're using Sass, you'll need to declare your font faces here, then you
 * can add them to the font variables in the _init.scss partial.
 */
/*
@font-face {
  font-family: 'Example';
  src: url('../fonts/example.eot');
  src: url('../fonts/example.eot?iefix') format('eot'),
    url('../fonts/example.woff') format('woff'),
    url('../fonts/example.ttf') format('truetype'),
    url('../fonts/example.svg#webfontOkOndcij') format('svg');
  font-weight: normal;
  font-style: normal;
}
*/
/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS text size adjust after orientation change, without disabling
 *    user zoom.
 * 3. Correct text resizing oddly in IE 6/7 when body `font-size` is set using
 *    `em` units.
 */
html {
  font-family: Arial; /* 1 */
  -ms-text-size-adjust: 100%; /* 2 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

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

/**
 * Links
 *
 * The order of link states are based on Eric Meyer's article:
 * http://meyerweb.com/eric/thoughts/2007/06/11/who-ordered-the-link-states
 */
/* Improve readability when focused and also mouse hovered in all browsers. */
a:active, a:hover,
button:active,
button:hover {
  outline: 0;
}

a:-webkit-any-link {
  text-decoration: none;
}

/**
 * Typography
 *
 * To achieve a pleasant vertical rhythm, we use Compass' Vertical Rhythm mixins
 * so that the line height of our base font becomes the basic unit of vertical
 * measurement. We use multiples of that unit to set the top and bottom margins
 * for our block level elements and to set the line heights of any fonts.
 * For more information, see http://24ways.org/2006/compose-to-a-vertical-rhythm
 */
/* Set 1 unit of vertical rhythm on the top and bottom margin. */
p,
pre {
  margin: rhythm(1) 0;
}

blockquote {
  /* Also indent the quote on both sides. */
  margin: rhythm(1) 20px;
}

/**
 * Address variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari 5, and Chrome.
 */
h1 {
  /* Set the font-size and line-height while keeping a proper vertical rhythm. */
  /* Set 1 unit of vertical rhythm on the top and bottom margins. */
}

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

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

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

/* Address differences between Firefox and other browsers. */
hr {
  height: 0;
  border: 1px solid #666;
  padding-bottom: -1px;
  margin: rhythm(1) 0;
}

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

/* Correct font family set oddly in Safari 5 and Chrome. */
code,
kbd,
pre,
samp,
tt,
var {
  font-family: Arial;
}

/* Improve readability of pre-formatted text in all browsers. */
pre {
  white-space: pre-wrap;
}

/* Set consistent quote types. */
q {
  quotes: "“" "”" "‘" "’";
}

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

/**
 * Lists
 */
dl,
menu,
ol,
ul {
  /* Address margins set differently in IE 6/7. */
  margin: rhythm(1) 0;
}

ol ol,
ol ul,
ul ol,
ul ul {
  /* Turn off margins on nested lists. */
  margin: 0;
}

dd {
  margin: 0 0 0 20px;
}

/* Address paddings set differently in IE 6/7. */
menu,
ol,
ul {
  padding: 0 0 0 20px;
}

/**
 * Embedded content and figures
 *
 * @todo Look into adding responsive embedded video.
 */
img {
  display: block;
  /* Remove border when inside `a` element in IE 8/9. */
  border: 0;
  /* Suppress the space beneath the baseline */
  /* vertical-align: bottom; */
  /* Responsive images */
  max-width: 100%;
  height: auto;
}
.lt-ie9 img {
  /* Correct IE 8 not scaling image height when resized. */
  width: auto;
}

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

/* Address margin not present in IE 8/9 and Safari 5. */
figure {
  margin: 0;
}

/**
 * Forms
 */
/* Define consistent border, margin, and padding. */
fieldset {
  margin: 0 2px;
  /* Apply borders and padding that keep the vertical rhythm. */
  border-color: #c0c0c0;
}

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

/**
 * 1. Correct font family not being inherited in all browsers.
 * 2. Correct font size not being inherited in all browsers.
 * 3. Address margins set differently in Firefox 4+, Safari 5, and Chrome.
 * 4. Improve appearance and consistency with IE 6/7.
 * 5. Keep form elements constrained in their containers.
 */
button,
input,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 2 */
  margin: 0; /* 3 */
  max-width: 100%; /* 5 */
}

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

/**
 * 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 Chrome, Safari 5+, and IE 8+.
 * Correct `select` style inheritance in Firefox 4+ and Opera.
 */
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.
 * 4. Remove inner spacing in IE 7 without affecting normal text inputs.
 *    Known issue: inner spacing remains in IE 6.
 */
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;
}

/**
 * 1. Address box sizing set to `content-box` in IE 8/9.
 * 2. Remove excess padding in IE 8/9.
 * 3. Remove excess padding in IE 7.
 *    Known issue: excess padding remains in IE 6.
 */
input[type=checkbox],
input[type=radio] {
  padding: 0; /* 2 */
}

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

/**
 * Remove inner padding and search cancel button in Safari 5 and Chrome
 * on OS X.
 */
input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

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

/* remove some webkit styling of buttons and fields (on tablets and phones) */
input {
  -webkit-border-radius: 0;
}

/**
 * 1. Remove default vertical scrollbar in IE 8/9.
 * 2. Improve readability and alignment in all browsers.
 */
textarea {
  overflow: auto; /* 1 */
  vertical-align: top; /* 2 */
}

/* Drupal-style form labels. */
label {
  display: block;
  font-weight: bold;
}

/**
 * Tables
 */
table {
  /* Remove most spacing between table cells. */
  border-collapse: collapse;
  border-spacing: 0;
  /* Prevent cramped-looking tables */
  /* width: 100%; */
  /* Add vertical rhythm margins. */
}

.search-form .search-advanced {
  display: none;
}

.feed-icon {
  display: none;
}

.masonry_gutter_sizer,
.masonry_grid_sizer {
  display: block;
}

.visually-hidden,
.element-invisible {
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
}

.visually-hidden--focusable {
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
}
.visually-hidden--focusable:active, .visually-hidden--focusable:focus {
  position: static !important;
  clip: auto;
  height: auto;
  width: auto;
  overflow: auto;
}

.accessible_hide {
  position: absolute !important;
  top: -9999px !important;
  left: -9999px !important;
}

ul.menu {
  list-style: none;
  padding: 0;
}

.js-hide {
  display: none;
}

picture {
  display: block;
  line-height: 0;
}
picture img {
  width: 100%;
  height: auto;
}

* {
  box-sizing: border-box;
}

.preload * {
  transition: none !important;
}

/*	Webfonts
		- if the project requires selfhosted webfonts,
		place @font-face rules here
*********************************** */
/* Webfont: ModernEra-Regular */
@font-face {
  font-family: "Lato";
  src: url("../fonts/Lato-Regular.woff2");
  font-style: normal;
  font-weight: 400;
  text-rendering: optimizeLegibility;
}
@font-face {
  font-family: "Lato";
  src: url("../fonts/Lato-Italic.woff2");
  font-style: italic;
  font-weight: 400;
  text-rendering: optimizeLegibility;
}
@font-face {
  font-family: "Lato";
  src: url("../fonts/Lato-Bold.woff2");
  font-style: normal;
  font-weight: 700;
  text-rendering: optimizeLegibility;
}
@font-face {
  font-family: "Lato";
  src: url("../fonts/Lato-Heavy.woff2");
  font-style: normal;
  font-weight: 800;
  text-rendering: optimizeLegibility;
}
@font-face {
  font-family: "Lato";
  src: url("../fonts/Lato-Black.woff2");
  font-style: normal;
  font-weight: 900;
  text-rendering: optimizeLegibility;
}
/*  Site layout and structure
*********************************** */
html {
  width: 100%;
  overflow-y: scroll;
}

body {
  min-height: 100%;
  padding: 0;
  margin: 0;
  overflow-x: hidden;
  position: relative;
  min-width: 320px;
  background: white;
}
body.logged-in {
  overflow: hidden;
}

.page-standard {
  display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6, BB7 */
  display: -ms-flexbox; /* TWEENER - IE 10 */
  display: -webkit-flex; /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
  display: flex; /* NEW, Spec - Firefox, Chrome, Opera */
  flex-direction: column;
  position: relative;
  background-color: transparent;
  min-height: 100vh;
  z-index: 2;
}
.page-standard section.full_width__main_outer {
  flex-grow: 1;
}

/* Site layout – Width holders
******************************** */
section.full_width {
  display: block;
  width: 100%;
  background-color: transparent;
}
section.full_width .section_inner {
  box-sizing: content-box;
  max-width: 69.75rem;
  margin: 0 auto;
  padding-left: 6%;
  padding-right: 6%;
}
@media only screen and (min-width: 480px) {
  section.full_width .section_inner {
    padding-left: 4%;
    padding-right: 4%;
  }
}
@media only screen and (min-width: 552px) {
  section.full_width .section_inner {
    padding-left: 3.5%;
    padding-right: 3.5%;
  }
}
@media only screen and (min-width: 696px) {
  section.full_width .section_inner {
    padding-left: 3%;
    padding-right: 3%;
  }
}

/* Content layout
******************************** */
body.frontend_nodetype--content .main_content #post_content_inner_wrapper {
  display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6, BB7 */
  display: -ms-flexbox; /* TWEENER - IE 10 */
  display: -webkit-flex; /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
  display: flex; /* NEW, Spec - Firefox, Chrome, Opera */
  flex-wrap: wrap;
}
body.frontend_nodetype--content .main_content .region-post-content-inner-left,
body.frontend_nodetype--content .main_content .region-post-content-inner-right {
  width: 100%;
}
@media only screen and (min-width: 624px) {
  body.frontend_nodetype--content .main_content .region-post-content-inner-left,
  body.frontend_nodetype--content .main_content .region-post-content-inner-right {
    width: 82.5945827047%;
    margin-left: 8.7027086476%;
    margin-right: 8.7027086476%;
  }
}
@media only screen and (min-width: 768px) {
  body.frontend_nodetype--content .main_content .region-post-content-inner-left,
  body.frontend_nodetype--content .main_content .region-post-content-inner-right {
    width: 82.5945827047%;
    margin-left: 8.6021505376%;
    margin-right: 8.6021505376%;
  }
}
@media only screen and (min-width: 912px) {
  body.frontend_nodetype--content .main_content .region-post-content-inner-left {
    width: 13.9784946237%;
    margin-left: 0;
    margin-right: 3.2258064516%;
  }
  body.frontend_nodetype--content .main_content .region-post-content-inner-right {
    width: 65.5913978495%;
    margin-left: 17.2043010753%;
    margin-right: 17.2043010753%;
  }
  body.frontend_nodetype--content .main_content .region-post-content-inner-left + .region-post-content-inner-right {
    margin-left: 0;
    margin-right: 0;
  }
}

/*  Default layouts:
************************************* */
.region-post-content-inner-right .block + .block {
  margin-top: 2.5rem;
}

.view ul,
.field__items {
  list-style: none;
  padding: 0;
  margin: 0;
}

.views-rows-subset,
.field--name-field-related.field__item,
.field__items {
  display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6, BB7 */
  display: -ms-flexbox; /* TWEENER - IE 10 */
  display: -webkit-flex; /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
  display: flex; /* NEW, Spec - Firefox, Chrome, Opera */
  flex-wrap: wrap;
}
.views-rows-subset > *,
.field--name-field-related.field__item > *,
.field__items > * {
  width: 100%;
}

.gridItem {
  flex-grow: 0;
  width: 100%;
  padding-bottom: 2.5rem;
}
.gridItem:last-child {
  padding-bottom: 0;
}

@media only screen and (min-width: 552px) and (max-width: 767px) {
  .views-row-view-method-listed-mini {
    width: 47.7837481141%;
    margin-right: 4.4325037718%;
    padding-bottom: 6.6487556577%;
  }
  .views-row-view-method-listed-mini:nth-child(2n) {
    margin-right: 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1127px) {
  .views-row-view-method-listed-mini {
    width: 48.3870967742%;
    margin-right: 3.2258064516%;
    padding-bottom: 4.8387096774%;
  }
  .views-row-view-method-listed-mini:nth-child(2n) {
    margin-right: 0;
  }
}
@media only screen and (min-width: 1128px) {
  .views-row-view-method-listed-mini {
    width: 22.5806451613%;
    margin-right: 3.2258064516%;
    padding-bottom: 4.8387096774%;
  }
  .views-row-view-method-listed-mini:nth-child(4n) {
    margin-right: 0;
  }
}

/*  fullLayout__2col_onDesktop_parent1of1
*********************************** */
@media only screen and (min-width: 552px) and (max-width: 767px) {
  .gridItem__3col_onDesktop {
    width: 47.7837481141%;
    margin-right: 4.4325037718%;
    padding-bottom: 6.6487556577%;
  }
  .gridItem__3col_onDesktop:nth-child(2n) {
    margin-right: 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 983px) {
  .gridItem__3col_onDesktop {
    width: 48.3870967742%;
    margin-right: 3.2258064516%;
    padding-bottom: 4.8387096774%;
  }
  .gridItem__3col_onDesktop:nth-child(2n) {
    margin-right: 0;
  }
}
@media only screen and (min-width: 984px) {
  .gridItem__3col_onDesktop {
    width: 31.1827956989%;
    margin-right: 3.2258064516%;
    padding-bottom: 4.8387096774%;
  }
  .gridItem__3col_onDesktop:nth-child(3n) {
    margin-right: 0;
  }
}

/*  fullLayout__2col_onDesktop_parent1of1
*********************************** */
@media only screen and (min-width: 552px) {
  .gridItem__2col_onDesktop {
    width: 47.7837481141%;
    margin-right: 4.4325037718%;
    padding-bottom: 6.6487556577%;
  }
  .gridItem__2col_onDesktop:nth-child(2n) {
    margin-right: 0;
  }
}
@media only screen and (min-width: 768px) {
  .gridItem__2col_onDesktop {
    width: 48.3870967742%;
    margin-right: 3.2258064516%;
    padding-bottom: 4.8387096774%;
  }
  .gridItem__2col_onDesktop:nth-child(2n) {
    margin-right: 0;
  }
}

/*  fullLayout__Main8colWithSide4col_onDesktop
*********************************** */
.gridLayout__Main8colWithSide4col_onDesktop.main_side__right .gridItem__side {
  margin-bottom: 2rem;
}
@media only screen and (min-width: 984px) {
  .gridLayout__Main8colWithSide4col_onDesktop.main_side__right {
    display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6, BB7 */
    display: -ms-flexbox; /* TWEENER - IE 10 */
    display: -webkit-flex; /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
    display: flex; /* NEW, Spec - Firefox, Chrome, Opera */
    flex-wrap: wrap;
    justify-content: space-between;
    -webkit-box-align: flex-start;
    -moz-box-align: flex-start;
    -ms-flex-align: flex-start;
    -webkit-align-items: flex-start;
    align-items: flex-start;
  }
  .gridLayout__Main8colWithSide4col_onDesktop.main_side__right > * {
    -webkit-box-ordinal-group: 5;
    -moz-box-ordinal-group: 5;
    -ms-flex-order: 5;
    -webkit-order: 5;
    width: 100%;
  }
  .gridLayout__Main8colWithSide4col_onDesktop.main_side__right .gridItem__side {
    width: 31.1827956989%;
  }
  .gridLayout__Main8colWithSide4col_onDesktop.main_side__right .gridItem__side .gridItem {
    width: 100%;
    margin-right: 0;
    padding-bottom: 10.3448275862%;
  }
  .gridLayout__Main8colWithSide4col_onDesktop.main_side__right .gridItem__side .gridItem:last-child {
    padding-bottom: 0;
  }
  .gridLayout__Main8colWithSide4col_onDesktop.main_side__right .gridItem__side {
    -webkit-box-ordinal-group: 1;
    -moz-box-ordinal-group: 1;
    -ms-flex-order: 1;
    -webkit-order: 1;
  }
  .gridLayout__Main8colWithSide4col_onDesktop.main_side__right .gridItem__main {
    width: 65.5913978495%;
  }
  .gridLayout__Main8colWithSide4col_onDesktop.main_side__right .gridItem__main .gridItem__3col_onDesktop {
    width: 47.5409836066%;
    margin-right: 4.9180327869%;
    padding-bottom: 7.3770491803%;
  }
  .gridLayout__Main8colWithSide4col_onDesktop.main_side__right .gridItem__main .gridItem__3col_onDesktop:nth-child(3n) {
    margin-right: 4.9180327869%;
  }
  .gridLayout__Main8colWithSide4col_onDesktop.main_side__right .gridItem__main .gridItem__3col_onDesktop:nth-child(2n) {
    margin-right: 0;
  }
  .gridLayout__Main8colWithSide4col_onDesktop.main_side__right .gridItem__main {
    -webkit-box-ordinal-group: 2;
    -moz-box-ordinal-group: 2;
    -ms-flex-order: 2;
    -webkit-order: 2;
  }
}

@media only screen and (min-width: 984px) {
  .gridLayout__Main8colWithSide4col_onDesktop.main_side__left {
    display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6, BB7 */
    display: -ms-flexbox; /* TWEENER - IE 10 */
    display: -webkit-flex; /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
    display: flex; /* NEW, Spec - Firefox, Chrome, Opera */
    flex-wrap: wrap;
    justify-content: space-between;
    -webkit-box-align: flex-start;
    -moz-box-align: flex-start;
    -ms-flex-align: flex-start;
    -webkit-align-items: flex-start;
    align-items: flex-start;
  }
  .gridLayout__Main8colWithSide4col_onDesktop.main_side__left > * {
    -webkit-box-ordinal-group: 5;
    -moz-box-ordinal-group: 5;
    -ms-flex-order: 5;
    -webkit-order: 5;
    width: 100%;
  }
  .gridLayout__Main8colWithSide4col_onDesktop.main_side__left .gridItem__side {
    width: 31.1827956989%;
  }
  .gridLayout__Main8colWithSide4col_onDesktop.main_side__left .gridItem__side .gridItem {
    width: 100%;
    margin-right: 0;
    padding-bottom: 10.3448275862%;
  }
  .gridLayout__Main8colWithSide4col_onDesktop.main_side__left .gridItem__side .gridItem:last-child {
    padding-bottom: 0;
  }
  .gridLayout__Main8colWithSide4col_onDesktop.main_side__left .gridItem__side {
    -webkit-box-ordinal-group: 2;
    -moz-box-ordinal-group: 2;
    -ms-flex-order: 2;
    -webkit-order: 2;
  }
  .gridLayout__Main8colWithSide4col_onDesktop.main_side__left .gridItem__main {
    width: 65.5913978495%;
  }
  .gridLayout__Main8colWithSide4col_onDesktop.main_side__left .gridItem__main .gridItem__3col_onDesktop {
    width: 47.5409836066%;
    margin-right: 4.9180327869%;
    padding-bottom: 7.3770491803%;
  }
  .gridLayout__Main8colWithSide4col_onDesktop.main_side__left .gridItem__main .gridItem__3col_onDesktop:nth-child(3n) {
    margin-right: 4.9180327869%;
  }
  .gridLayout__Main8colWithSide4col_onDesktop.main_side__left .gridItem__main .gridItem__3col_onDesktop:nth-child(2n) {
    margin-right: 0;
  }
  .gridLayout__Main8colWithSide4col_onDesktop.main_side__left .gridItem__main {
    -webkit-box-ordinal-group: 1;
    -moz-box-ordinal-group: 1;
    -ms-flex-order: 1;
    -webkit-order: 1;
  }
}

@media only screen and (min-width: 984px) {
  .block-views-blocknews-home-block-1 .view-content {
    display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6, BB7 */
    display: -ms-flexbox; /* TWEENER - IE 10 */
    display: -webkit-flex; /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
    display: flex; /* NEW, Spec - Firefox, Chrome, Opera */
    flex-wrap: wrap;
    justify-content: space-between;
    -webkit-box-align: flex-start;
    -moz-box-align: flex-start;
    -ms-flex-align: flex-start;
    -webkit-align-items: flex-start;
    align-items: flex-start;
  }
  .block-views-blocknews-home-block-1 .view-content > * {
    -webkit-box-ordinal-group: 5;
    -moz-box-ordinal-group: 5;
    -ms-flex-order: 5;
    -webkit-order: 5;
    width: 100%;
  }
  .block-views-blocknews-home-block-1 .view-content .views-rows-subset-listed {
    width: 31.1827956989%;
  }
  .block-views-blocknews-home-block-1 .view-content .views-rows-subset-listed .gridItem {
    width: 100%;
    margin-right: 0;
    padding-bottom: 10.3448275862%;
  }
  .block-views-blocknews-home-block-1 .view-content .views-rows-subset-listed .gridItem:last-child {
    padding-bottom: 0;
  }
  .block-views-blocknews-home-block-1 .view-content .views-rows-subset-listed {
    -webkit-box-ordinal-group: 2;
    -moz-box-ordinal-group: 2;
    -ms-flex-order: 2;
    -webkit-order: 2;
  }
  .block-views-blocknews-home-block-1 .view-content .views-rows-subset-listed_highlight {
    width: 65.5913978495%;
  }
  .block-views-blocknews-home-block-1 .view-content .views-rows-subset-listed_highlight .gridItem__3col_onDesktop {
    width: 47.5409836066%;
    margin-right: 4.9180327869%;
    padding-bottom: 7.3770491803%;
  }
  .block-views-blocknews-home-block-1 .view-content .views-rows-subset-listed_highlight .gridItem__3col_onDesktop:nth-child(3n) {
    margin-right: 4.9180327869%;
  }
  .block-views-blocknews-home-block-1 .view-content .views-rows-subset-listed_highlight .gridItem__3col_onDesktop:nth-child(2n) {
    margin-right: 0;
  }
  .block-views-blocknews-home-block-1 .view-content .views-rows-subset-listed_highlight {
    -webkit-box-ordinal-group: 1;
    -moz-box-ordinal-group: 1;
    -ms-flex-order: 1;
    -webkit-order: 1;
  }
}

.masonry_item {
  float: left;
}

/* Media Queries
*********************************** */
/*
  I am working with REMs for the whole site, except for the media queries which is not viable
  These media queries are better suited to mobile first.
*/
/* Set Initial grid values
*********************************** */
/* HOW TO USE: Effgrid can be called like this:

@include grid( $property, $num_cols, $num_guts, $num_cols_parent, $grid:desktop );

	What to these parameters mean?

	$property : this is the CSS property you wish to insert, for example 'width'
	$num_cols : the number of columns you want to be included in the percentage generated for the property
	$num_guts : the number of gutters you want to be included in the percentage generated for the property
	$num_cols_parent : the number of grid columns that the elements parent is occupying
	$grid : leave blank for desktop, inside media queries for tablet sizes, specify 'tablet'


	For example:

	// Assume the container is 12 columns
	.full_width_container {


		// Item we are going to set as 6 columns wide
		.item_we_would_like_to_manipulate {
			@include grid(width,6,0,12); // compiles to width: X%; item will be 6 columns of 12 columns grid
			padding:{
				@include grid(left,3,1,12); // compiles to padding-left: X%; item will have padding-left of 3 columns + 1 gutter
			}
		}
	}


	A further example, where the container is 6 columns:
	.full_width_container {

		.six_column_container {
			@include grid(width,6,0,12); // compiles to width: X%; item will be 6 columns of 12 columns grid
			padding:{
				@include grid(left,3,1,12); // compiles to padding-left: X%; item will have padding-left of 3 columns + 1 gutter
			}

			// Item we are going to set as 3 columns wide
			.item_we_would_like_to_manipulate {
				@include grid(width,3,0,6); // compiles to width: X%; item will be 3 columns of 12 columns grid
			}
		}
	}

*/
/* Generate percentage grid values
*********************************** */
/* 	Fonts – Specfics
    These are not to be used directly in styling,
    please use the generic values further below!
*********************************** */
/* 	Fonts – Generic values
    Use these values in styling!
*********************************** */
/*	Colours - Specifics
    These are not to be used directly in styling,
    please use the generic values further below!
***********************************  */
/*	Colours - Generic values
    Use these values in styling!
***********************************  */
/*	Size variables
***********************************  */
/*	Transition variables
***********************************  */
/*	Selector variables
***********************************  */
/*	Assets – SVG
************************************* */
/*	Assets – Tileable SVG
************************************* */
/*	Assets – Banners
************************************* */
/*	Assets – PNG Graphics
************************************* */
/*  Show/hide mixins
*********************************** */
/*  Display mixins
*********************************** */
/*  Typography mixins
*********************************** */
/*  Type hierarchy size mixins
    - Do not use type_hierarchy_sizes to set type styles on text elements!
    The purpose of this is to use relative units on non-text elements
    (without applying the entire type style, which is unnecessary)
*********************************** */
/*  'Paragraph style' Variables
*********************************** */
/*  'Paragraph style' Mixins
    - These are actual type styles, apply these to text elements
*********************************** */
/* Override colors in a button that is already styled up with mixin: button
*/
/*  Layout Partial -
    1 col on mobile
*********************************** */
/*  Layout Partial -
    4 cols in full width parent on desktop
*********************************** */
/*  Layout Partial -
    3 cols in full width parent on desktop
*********************************** */
/*  Layout Partial -
    3 cols in 9 column parent on desktop
*********************************** */
/*  Layout Partial -
    2 cols in full width parent on desktop
*********************************** */
/*  Layout Partial -
    2 cols in full width parent on tablet
*********************************** */
/*  Layout Partial -
    2 cols in 8 col parent parent on desktop
*********************************** */
/*  Full Layout mixin –
    4 col on desktop (full width parent)

    (2 col on tablet
    1 col on mobile)
*********************************** */
/*  Full Layout mixin –
    3 col on desktop (full width parent)

    (2 col on tablet
    1 col on mobile)
*********************************** */
/*  Full Layout mixin –
    3 col on desktop (in 9 col parent)

    (2 col on tablet
    1 col on mobile)
*********************************** */
/*  Full Layout mixin –
    2 col on desktop (in full width parent)

    (2 col on tablet
    1 col on mobile)
*********************************** */
/*  Layout mixins - Special full layouts
*********************************** */
/*  component style: page overlay
    - Style up a default page overlay   
*/
/*  component style: standard square button
    style up an element as a standard square button, choice of icons
    eg. burger, search etc
*/
/*  component style: imageBackgroundOutlineRect
    - this styles up the .image_background HTML found in .listed_content_item.style__sectional (for example)
    - it handles styling of the rectangle graphic, animate in effects and hover effects

    - $imageBackground__parent_container is the direct parent element to .image_background
    - $imageBackground__animate_in_container is a container element to .image_background, the one that JS flags with .animate_in and .in_viewport
    - $anchor_element is the container element which will be hovered to produce the hover effect on the graphic
    - other parameters are line color and line color on hover
*/
/*  Animate Into Viewport effects
*********************************** */
.field--name-body,
.field--type-text-long,
.cke_editable {
  font-family: "Lato", Helvetica, Arial, sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  line-height: 1.6em;
  font-size: 1rem;
  /*	Paragraphs
  ************************************* */
}
@media only screen and (min-width: 768px) {
  .field--name-body,
  .field--type-text-long,
  .cke_editable {
    font-size: 1.0625rem;
  }
}
@media only screen and (min-width: 1488px) {
  .field--name-body,
  .field--type-text-long,
  .cke_editable {
    font-size: 1.125rem;
  }
}
.field--name-body p,
.field--name-body li,
.field--type-text-long p,
.field--type-text-long li,
.cke_editable p,
.cke_editable li {
  font-family: "Lato", Helvetica, Arial, sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  line-height: 1.6em;
  font-size: 1rem;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
  margin-bottom: 1.45em;
}
@media only screen and (min-width: 768px) {
  .field--name-body p,
  .field--name-body li,
  .field--type-text-long p,
  .field--type-text-long li,
  .cke_editable p,
  .cke_editable li {
    font-size: 1.0625rem;
  }
}
@media only screen and (min-width: 1488px) {
  .field--name-body p,
  .field--name-body li,
  .field--type-text-long p,
  .field--type-text-long li,
  .cke_editable p,
  .cke_editable li {
    font-size: 1.125rem;
  }
}
.field--name-body p em,
.field--name-body li em,
.field--type-text-long p em,
.field--type-text-long li em,
.cke_editable p em,
.cke_editable li em {
  font-style: italic;
}
.field--name-body p u,
.field--name-body li u,
.field--type-text-long p u,
.field--type-text-long li u,
.cke_editable p u,
.cke_editable li u {
  text-decoration: underline;
}
.field--name-body p strong,
.field--name-body li strong,
.field--type-text-long p strong,
.field--type-text-long li strong,
.cke_editable p strong,
.cke_editable li strong {
  font-weight: 700;
}
.field--name-body a:not(.cta), .field--name-body a:not(.cta):link,
.field--type-text-long a:not(.cta),
.field--type-text-long a:not(.cta):link,
.cke_editable a:not(.cta),
.cke_editable a:not(.cta):link {
  color: #112C53;
  border-bottom: 0.0625rem solid #2EA9B0;
}
.field--name-body a:not(.cta):hover, .field--name-body a:not(.cta):focus, .field--name-body a:not(.cta):link:hover, .field--name-body a:not(.cta):link:focus,
.field--type-text-long a:not(.cta):hover,
.field--type-text-long a:not(.cta):focus,
.field--type-text-long a:not(.cta):link:hover,
.field--type-text-long a:not(.cta):link:focus,
.cke_editable a:not(.cta):hover,
.cke_editable a:not(.cta):focus,
.cke_editable a:not(.cta):link:hover,
.cke_editable a:not(.cta):link:focus {
  color: #2EA9B0;
}

.field--name-body,
.field--type-text-long,
.cke_editable {
  /*  Headings
  ************************************* */
  /*  Lists
  ************************************* */
  /*  Images
  ************************************* */
}
.field--name-body .cta_right,
.field--type-text-long .cta_right,
.cke_editable .cta_right {
  display: inline-block;
  box-sizing: border-box;
  background-color: #2EA9B0;
  -webkit-font-smoothing: antialiased;
  font-family: "Lato", Helvetica, Arial, sans-serif;
  font-weight: 800;
  line-height: 1.2em;
  letter-spacing: 0;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.75rem;
  text-align: center;
  position: relative;
  padding-top: 0.975em;
  padding-bottom: 0.975em;
  min-width: 2.5em;
  border: 0;
  padding-left: 2em;
  padding-right: 4.8em;
}
.field--name-body .cta_right, .field--name-body .cta_right:link,
.field--type-text-long .cta_right,
.field--type-text-long .cta_right:link,
.cke_editable .cta_right,
.cke_editable .cta_right:link {
  color: #112C53;
}
@media only screen and (min-width: 768px) {
  .field--name-body .cta_right,
  .field--type-text-long .cta_right,
  .cke_editable .cta_right {
    font-size: 0.8125rem;
  }
}
.field--name-body .cta_right::after,
.field--type-text-long .cta_right::after,
.cke_editable .cta_right::after {
  flex-shrink: 0;
  content: " ";
  display: block;
  width: 2.8em;
  height: 100%;
  position: absolute;
  top: 0;
  background-repeat: no-repeat;
  background-position: 50% 50%;
}
.field--name-body .cta_right:hover, .field--name-body .cta_right:focus-visible, a:hover .field--name-body .cta_right, a:focus-visible .field--name-body .cta_right,
.field--type-text-long .cta_right:hover,
.field--type-text-long .cta_right:focus-visible,
a:hover .field--type-text-long .cta_right,
a:focus-visible .field--type-text-long .cta_right,
.cke_editable .cta_right:hover,
.cke_editable .cta_right:focus-visible,
a:hover .cke_editable .cta_right,
a:focus-visible .cke_editable .cta_right {
  color: #112C53;
  background-color: #2EA9B0;
}
.field--name-body .cta_right:hover::after, .field--name-body .cta_right:focus-visible::after, a:hover .field--name-body .cta_right::after, a:focus-visible .field--name-body .cta_right::after,
.field--type-text-long .cta_right:hover::after,
.field--type-text-long .cta_right:focus-visible::after,
a:hover .field--type-text-long .cta_right::after,
a:focus-visible .field--type-text-long .cta_right::after,
.cke_editable .cta_right:hover::after,
.cke_editable .cta_right:focus-visible::after,
a:hover .cke_editable .cta_right::after,
a:focus-visible .cke_editable .cta_right::after {
  background-color: #2EA9B0;
}
@media only screen and (max-width: 407px) {
  .field--name-body .cta_right,
  .field--type-text-long .cta_right,
  .cke_editable .cta_right {
    width: 100%;
  }
}
.field--name-body .cta_right::after,
.field--type-text-long .cta_right::after,
.cke_editable .cta_right::after {
  flex-shrink: 0;
  content: " ";
  display: block;
  width: 2.8em;
  height: 100%;
  position: absolute;
  top: 0;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  right: 0;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg data-name='Layer 1' xmlns='http://www.w3.org/2000/svg' width='13.92' height='14.283'%3E%3Cpath fill='%23fff' d='M6.778 0L5.364 1.414l4.728 4.728H0v2h10.092l-4.728 4.727 1.414 1.414 7.142-7.141L6.778 0z'/%3E%3C/svg%3E");
  background-size: 31%;
}
@media only screen and (min-width: 768px) {
  .field--name-body .cta_right::after,
  .field--type-text-long .cta_right::after,
  .cke_editable .cta_right::after {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg data-name='Layer 1' xmlns='http://www.w3.org/2000/svg' width='17.901' height='18.385'%3E%3Cpath fill='%23fff' d='M8.709 0L7.295 1.414l6.778 6.778H0v2h14.073l-6.778 6.779 1.414 1.414 9.192-9.193L8.709 0z'/%3E%3C/svg%3E");
    background-size: 33.5%;
  }
}
@media only screen and (max-width: 479px) {
  .field--name-body .cta_right,
  .field--type-text-long .cta_right,
  .cke_editable .cta_right {
    width: 100%;
  }
}
.field--name-body h2,
.field--type-text-long h2,
.cke_editable h2 {
  margin-top: 1.25em;
  margin-bottom: 0.35em;
}
.field--name-body h2 em,
.field--type-text-long h2 em,
.cke_editable h2 em {
  font-style: normal;
}
.field--name-body h2 u,
.field--type-text-long h2 u,
.cke_editable h2 u {
  text-decoration: none;
}
.field--name-body h2 a,
.field--type-text-long h2 a,
.cke_editable h2 a {
  color: #112C53;
  text-decoration: none;
  border-bottom: 0;
}
.field--name-body h2 strong,
.field--type-text-long h2 strong,
.cke_editable h2 strong {
  font-weight: 800;
}
.field--name-body h3,
.field--type-text-long h3,
.cke_editable h3 {
  margin-top: 1.75em;
  margin-bottom: 0.85em;
}
.field--name-body h3 em,
.field--type-text-long h3 em,
.cke_editable h3 em {
  font-style: normal;
}
.field--name-body h3 u,
.field--type-text-long h3 u,
.cke_editable h3 u {
  text-decoration: none;
}
.field--name-body h3 a,
.field--type-text-long h3 a,
.cke_editable h3 a {
  color: #112C53;
  text-decoration: none;
  border-bottom: 0;
}
.field--name-body h3 strong,
.field--type-text-long h3 strong,
.cke_editable h3 strong {
  font-weight: 700;
}
.field--name-body h3.headingd,
.field--type-text-long h3.headingd,
.cke_editable h3.headingd {
  -webkit-font-smoothing: antialiased;
  color: #112C53;
  font-family: "Lato", Helvetica, Arial, sans-serif;
  font-weight: 700;
  line-height: 1.45em;
  font-size: 1.0625rem;
  letter-spacing: 0;
  margin-top: 0;
  margin-bottom: 0.85em;
  margin-top: 1.75em;
  margin-bottom: 0.5em;
}
@media only screen and (min-width: 1272px) {
  .field--name-body h3.headingd,
  .field--type-text-long h3.headingd,
  .cke_editable h3.headingd {
    font-size: 1.125rem;
  }
}
@media only screen and (min-width: 1344px) {
  .field--name-body h3.headingd,
  .field--type-text-long h3.headingd,
  .cke_editable h3.headingd {
    font-size: 1.1875rem;
  }
}
@media only screen and (min-width: 1488px) {
  .field--name-body h3.headingd,
  .field--type-text-long h3.headingd,
  .cke_editable h3.headingd {
    font-size: 1.25rem;
  }
}
.field--name-body ul,
.field--name-body ol,
.field--type-text-long ul,
.field--type-text-long ol,
.cke_editable ul,
.cke_editable ol {
  font-size: 1rem;
  margin: 0 0 1.5em 0;
  padding: 0;
  clear: both;
  display: block;
}
@media only screen and (min-width: 768px) {
  .field--name-body ul,
  .field--name-body ol,
  .field--type-text-long ul,
  .field--type-text-long ol,
  .cke_editable ul,
  .cke_editable ol {
    font-size: 1.0625rem;
  }
}
@media only screen and (min-width: 1488px) {
  .field--name-body ul,
  .field--name-body ol,
  .field--type-text-long ul,
  .field--type-text-long ol,
  .cke_editable ul,
  .cke_editable ol {
    font-size: 1.125rem;
  }
}
.field--name-body ul li,
.field--name-body ol li,
.field--type-text-long ul li,
.field--type-text-long ol li,
.cke_editable ul li,
.cke_editable ol li {
  position: relative;
  list-style-type: none;
  list-style-image: none;
  position: relative;
  padding-left: 31px;
  margin-bottom: 0.35em;
}
.field--name-body ul li::before,
.field--name-body ol li::before,
.field--type-text-long ul li::before,
.field--type-text-long ol li::before,
.cke_editable ul li::before,
.cke_editable ol li::before {
  position: absolute;
  top: 0;
  left: 0;
  padding: 0;
}
.field--name-body ul li p,
.field--name-body ol li p,
.field--type-text-long ul li p,
.field--type-text-long ol li p,
.cke_editable ul li p,
.cke_editable ol li p {
  margin: 0;
}
.field--name-body ul li ul,
.field--name-body ul li ol,
.field--name-body ol li ul,
.field--name-body ol li ol,
.field--type-text-long ul li ul,
.field--type-text-long ul li ol,
.field--type-text-long ol li ul,
.field--type-text-long ol li ol,
.cke_editable ul li ul,
.cke_editable ul li ol,
.cke_editable ol li ul,
.cke_editable ol li ol {
  margin-top: 0.5em;
}
.field--name-body ul .cta,
.field--name-body ol .cta,
.field--type-text-long ul .cta,
.field--type-text-long ol .cta,
.cke_editable ul .cta,
.cke_editable ol .cta {
  padding: 0;
  border: 0;
}
.field--name-body ul .cta::before, .field--name-body ul .cta::after,
.field--name-body ol .cta::before,
.field--name-body ol .cta::after,
.field--type-text-long ul .cta::before,
.field--type-text-long ul .cta::after,
.field--type-text-long ol .cta::before,
.field--type-text-long ol .cta::after,
.cke_editable ul .cta::before,
.cke_editable ul .cta::after,
.cke_editable ol .cta::before,
.cke_editable ol .cta::after {
  content: none;
}
.field--name-body ul .cta:hover, .field--name-body ul .cta:focus,
.field--name-body ol .cta:hover,
.field--name-body ol .cta:focus,
.field--type-text-long ul .cta:hover,
.field--type-text-long ul .cta:focus,
.field--type-text-long ol .cta:hover,
.field--type-text-long ol .cta:focus,
.cke_editable ul .cta:hover,
.cke_editable ul .cta:focus,
.cke_editable ol .cta:hover,
.cke_editable ol .cta:focus {
  background-color: transparent !important;
}
.field--name-body ul,
.field--type-text-long ul,
.cke_editable ul {
  list-style-type: none;
}
.field--name-body ul li::before,
.field--type-text-long ul li::before,
.cke_editable ul li::before {
  content: "–";
}
.field--name-body ul > li::before,
.field--type-text-long ul > li::before,
.cke_editable ul > li::before {
  content: "–";
  top: 12px;
  left: 2px;
  display: block;
  overflow: hidden;
  text-align: left;
  text-indent: -9999px;
  width: 0.3125rem;
  height: 0.3125rem;
  background-color: #112C53;
  border-radius: 50%;
}
.field--name-body ul ul,
.field--name-body ul ol,
.field--type-text-long ul ul,
.field--type-text-long ul ol,
.cke_editable ul ul,
.cke_editable ul ol {
  margin-bottom: 0;
}
.field--name-body ol,
.field--type-text-long ol,
.cke_editable ol {
  counter-reset: item;
}
.field--name-body ol > li::before,
.field--type-text-long ol > li::before,
.cke_editable ol > li::before {
  counter-increment: item;
  content: counter(item) ".";
  top: 0px;
  display: inline-block;
}
.field--name-body img,
.field--name-body figure,
.field--type-text-long img,
.field--type-text-long figure,
.cke_editable img,
.cke_editable figure {
  display: block;
  max-width: 100%;
  height: auto;
  margin-top: 3rem;
  margin-bottom: 3rem;
}
.field--name-body img,
.field--type-text-long img,
.cke_editable img {
  display: block;
}
.field--name-body figure,
.field--type-text-long figure,
.cke_editable figure {
  display: table;
  margin-left: 0;
  margin-right: 0;
}
.field--name-body figure > *,
.field--type-text-long figure > *,
.cke_editable figure > * {
  display: table-row;
}
.field--name-body figure br,
.field--type-text-long figure br,
.cke_editable figure br {
  display: none;
}
.field--name-body figure,
.field--name-body figure img,
.field--type-text-long figure,
.field--type-text-long figure img,
.cke_editable figure,
.cke_editable figure img {
  max-width: 100%;
  height: auto;
}
.field--name-body figure img,
.field--type-text-long figure img,
.cke_editable figure img {
  margin: 0;
  z-index: 1;
}
.field--name-body figure figcaption,
.field--type-text-long figure figcaption,
.cke_editable figure figcaption {
  display: table-caption;
  caption-side: bottom;
  font-family: "Lato", Helvetica, Arial, sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  line-height: 1.6em;
  font-size: 0.875rem;
  color: #EA5D4E;
  padding-top: 1.55em;
}
@media only screen and (min-width: 480px) {
  .field--name-body figure figcaption,
  .field--type-text-long figure figcaption,
  .cke_editable figure figcaption {
    font-size: 0.9375rem;
  }
}
@media only screen and (min-width: 768px) {
  .field--name-body figure figcaption,
  .field--type-text-long figure figcaption,
  .cke_editable figure figcaption {
    font-size: 1rem;
  }
}
.field--name-body .align-left,
.field--name-body .align-right,
.field--type-text-long .align-left,
.field--type-text-long .align-right,
.cke_editable .align-left,
.cke_editable .align-right {
  margin-top: 0;
  margin-bottom: 1.5rem;
}
.field--name-body .align-left img,
.field--name-body .align-right img,
.field--type-text-long .align-left img,
.field--type-text-long .align-right img,
.cke_editable .align-left img,
.cke_editable .align-right img {
  margin: 0;
}
@media only screen and (max-width: 551px) {
  .field--name-body .align-left img,
  .field--name-body .align-right img,
  .field--type-text-long .align-left img,
  .field--type-text-long .align-right img,
  .cke_editable .align-left img,
  .cke_editable .align-right img {
    margin-left: auto;
    margin-right: auto;
  }
}
@media only screen and (min-width: 552px) {
  .field--name-body .align-left,
  .field--name-body .align-right,
  .field--type-text-long .align-left,
  .field--type-text-long .align-right,
  .cke_editable .align-left,
  .cke_editable .align-right {
    max-width: 45%;
  }
}
@media only screen and (min-width: 552px) {
  .field--name-body .align-left,
  .field--type-text-long .align-left,
  .cke_editable .align-left {
    float: left;
    clear: left;
    margin-right: 2.5rem;
  }
}
@media only screen and (min-width: 552px) {
  .field--name-body .align-right,
  .field--type-text-long .align-right,
  .cke_editable .align-right {
    float: right;
    clear: right;
    margin-left: 2.5rem;
  }
}
.field--name-body .align-center,
.field--name-body .align-center img,
.field--type-text-long .align-center,
.field--type-text-long .align-center img,
.cke_editable .align-center,
.cke_editable .align-center img {
  margin-left: auto;
  margin-right: auto;
}
@media only screen and (min-width: 912px) {
  .field--name-body .align-center,
  .field--type-text-long .align-center,
  .cke_editable .align-center {
    width: 152.4590163934%;
  }
}

@media only screen and (min-width: 552px) {
  .field--name-body .align-left {
    margin-left: -10.5366579292%;
  }
}
@media only screen and (min-width: 768px) {
  .field--name-body .align-left {
    margin-left: -10.3896103896%;
  }
}
@media only screen and (min-width: 912px) {
  .field--name-body .align-left {
    margin-left: -17.7777777778%;
  }
}
@media only screen and (min-width: 552px) {
  .field--name-body .align-right {
    margin-right: -10.5366579292%;
  }
}
@media only screen and (min-width: 768px) {
  .field--name-body .align-right {
    margin-right: -10.3896103896%;
  }
}
@media only screen and (min-width: 912px) {
  .field--name-body .align-right {
    margin-right: -17.7777777778%;
  }
}

.responsive-embed {
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.cke_editable hr,
.field-name-body hr {
  border: 0;
  border-bottom: thin solid #112C53;
  margin-top: 3rem;
  margin-bottom: 3rem;
}

.field--name-field-media-oembed-video {
  position: relative;
  aspect-ratio: 16/9;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}
.field--name-field-media-oembed-video iframe {
  position: absolute;
  width: 100%;
  height: 100%;
}

.field--name-body > *:first-child,
.field--type-text-long > *:first-child {
  margin-top: 0 !important;
}
.field--name-body > *:last-child,
.field--type-text-long > *:last-child {
  margin-bottom: 0 !important;
}

/* Media Queries
*********************************** */
/*
  I am working with REMs for the whole site, except for the media queries which is not viable
  These media queries are better suited to mobile first.
*/
/* Set Initial grid values
*********************************** */
/* HOW TO USE: Effgrid can be called like this:

@include grid( $property, $num_cols, $num_guts, $num_cols_parent, $grid:desktop );

	What to these parameters mean?

	$property : this is the CSS property you wish to insert, for example 'width'
	$num_cols : the number of columns you want to be included in the percentage generated for the property
	$num_guts : the number of gutters you want to be included in the percentage generated for the property
	$num_cols_parent : the number of grid columns that the elements parent is occupying
	$grid : leave blank for desktop, inside media queries for tablet sizes, specify 'tablet'


	For example:

	// Assume the container is 12 columns
	.full_width_container {


		// Item we are going to set as 6 columns wide
		.item_we_would_like_to_manipulate {
			@include grid(width,6,0,12); // compiles to width: X%; item will be 6 columns of 12 columns grid
			padding:{
				@include grid(left,3,1,12); // compiles to padding-left: X%; item will have padding-left of 3 columns + 1 gutter
			}
		}
	}


	A further example, where the container is 6 columns:
	.full_width_container {

		.six_column_container {
			@include grid(width,6,0,12); // compiles to width: X%; item will be 6 columns of 12 columns grid
			padding:{
				@include grid(left,3,1,12); // compiles to padding-left: X%; item will have padding-left of 3 columns + 1 gutter
			}

			// Item we are going to set as 3 columns wide
			.item_we_would_like_to_manipulate {
				@include grid(width,3,0,6); // compiles to width: X%; item will be 3 columns of 12 columns grid
			}
		}
	}

*/
/* Generate percentage grid values
*********************************** */
/* 	Fonts – Specfics
    These are not to be used directly in styling,
    please use the generic values further below!
*********************************** */
/* 	Fonts – Generic values
    Use these values in styling!
*********************************** */
/*	Colours - Specifics
    These are not to be used directly in styling,
    please use the generic values further below!
***********************************  */
/*	Colours - Generic values
    Use these values in styling!
***********************************  */
/*	Size variables
***********************************  */
/*	Transition variables
***********************************  */
/*	Selector variables
***********************************  */
/*	Assets – SVG
************************************* */
/*	Assets – Tileable SVG
************************************* */
/*	Assets – Banners
************************************* */
/*	Assets – PNG Graphics
************************************* */
/*  Show/hide mixins
*********************************** */
/*  Display mixins
*********************************** */
/*  Typography mixins
*********************************** */
/*  Type hierarchy size mixins
    - Do not use type_hierarchy_sizes to set type styles on text elements!
    The purpose of this is to use relative units on non-text elements
    (without applying the entire type style, which is unnecessary)
*********************************** */
/*  'Paragraph style' Variables
*********************************** */
/*  'Paragraph style' Mixins
    - These are actual type styles, apply these to text elements
*********************************** */
/* Override colors in a button that is already styled up with mixin: button
*/
/*  Layout Partial -
    1 col on mobile
*********************************** */
/*  Layout Partial -
    4 cols in full width parent on desktop
*********************************** */
/*  Layout Partial -
    3 cols in full width parent on desktop
*********************************** */
/*  Layout Partial -
    3 cols in 9 column parent on desktop
*********************************** */
/*  Layout Partial -
    2 cols in full width parent on desktop
*********************************** */
/*  Layout Partial -
    2 cols in full width parent on tablet
*********************************** */
/*  Layout Partial -
    2 cols in 8 col parent parent on desktop
*********************************** */
/*  Full Layout mixin –
    4 col on desktop (full width parent)

    (2 col on tablet
    1 col on mobile)
*********************************** */
/*  Full Layout mixin –
    3 col on desktop (full width parent)

    (2 col on tablet
    1 col on mobile)
*********************************** */
/*  Full Layout mixin –
    3 col on desktop (in 9 col parent)

    (2 col on tablet
    1 col on mobile)
*********************************** */
/*  Full Layout mixin –
    2 col on desktop (in full width parent)

    (2 col on tablet
    1 col on mobile)
*********************************** */
/*  Layout mixins - Special full layouts
*********************************** */
/*  component style: page overlay
    - Style up a default page overlay   
*/
/*  component style: standard square button
    style up an element as a standard square button, choice of icons
    eg. burger, search etc
*/
/*  component style: imageBackgroundOutlineRect
    - this styles up the .image_background HTML found in .listed_content_item.style__sectional (for example)
    - it handles styling of the rectangle graphic, animate in effects and hover effects

    - $imageBackground__parent_container is the direct parent element to .image_background
    - $imageBackground__animate_in_container is a container element to .image_background, the one that JS flags with .animate_in and .in_viewport
    - $anchor_element is the container element which will be hovered to produce the hover effect on the graphic
    - other parameters are line color and line color on hover
*/
/*  Animate Into Viewport effects
*********************************** */
.frontend_nodetype--content .field--name-field-media-oembed-video {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  margin-top: 2rem;
  margin-bottom: 2rem;
}
.frontend_nodetype--content .field--name-field-media-oembed-video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
}
.frontend_nodetype--content figure:has(iframe),
.frontend_nodetype--content .align-left:has(iframe),
.frontend_nodetype--content .align-right:has(iframe),
.frontend_nodetype--content .align-center:has(iframe) {
  width: 100%;
}
.frontend_nodetype--content figure .field--name-field-media-oembed-video,
.frontend_nodetype--content .align-left .field--name-field-media-oembed-video,
.frontend_nodetype--content .align-right .field--name-field-media-oembed-video {
  margin: 0;
}

.field--name-body,
.field--type-text-long,
.cke_editable {
  font-family: "Lato", Helvetica, Arial, sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  line-height: 1.6em;
  font-size: 1rem;
  /*	Paragraphs
  ************************************* */
}
@media only screen and (min-width: 768px) {
  .field--name-body,
  .field--type-text-long,
  .cke_editable {
    font-size: 1.0625rem;
  }
}
@media only screen and (min-width: 1488px) {
  .field--name-body,
  .field--type-text-long,
  .cke_editable {
    font-size: 1.125rem;
  }
}
.field--name-body p,
.field--name-body li,
.field--type-text-long p,
.field--type-text-long li,
.cke_editable p,
.cke_editable li {
  font-family: "Lato", Helvetica, Arial, sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  line-height: 1.6em;
  font-size: 1rem;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
  margin-bottom: 1.45em;
}
@media only screen and (min-width: 768px) {
  .field--name-body p,
  .field--name-body li,
  .field--type-text-long p,
  .field--type-text-long li,
  .cke_editable p,
  .cke_editable li {
    font-size: 1.0625rem;
  }
}
@media only screen and (min-width: 1488px) {
  .field--name-body p,
  .field--name-body li,
  .field--type-text-long p,
  .field--type-text-long li,
  .cke_editable p,
  .cke_editable li {
    font-size: 1.125rem;
  }
}
.field--name-body p em,
.field--name-body li em,
.field--type-text-long p em,
.field--type-text-long li em,
.cke_editable p em,
.cke_editable li em {
  font-style: italic;
}
.field--name-body p u,
.field--name-body li u,
.field--type-text-long p u,
.field--type-text-long li u,
.cke_editable p u,
.cke_editable li u {
  text-decoration: underline;
}
.field--name-body p strong,
.field--name-body li strong,
.field--type-text-long p strong,
.field--type-text-long li strong,
.cke_editable p strong,
.cke_editable li strong {
  font-weight: 700;
}
.field--name-body a:not(.cta), .field--name-body a:not(.cta):link,
.field--type-text-long a:not(.cta),
.field--type-text-long a:not(.cta):link,
.cke_editable a:not(.cta),
.cke_editable a:not(.cta):link {
  color: #112C53;
  border-bottom: 0.0625rem solid #2EA9B0;
}
.field--name-body a:not(.cta):hover, .field--name-body a:not(.cta):focus, .field--name-body a:not(.cta):link:hover, .field--name-body a:not(.cta):link:focus,
.field--type-text-long a:not(.cta):hover,
.field--type-text-long a:not(.cta):focus,
.field--type-text-long a:not(.cta):link:hover,
.field--type-text-long a:not(.cta):link:focus,
.cke_editable a:not(.cta):hover,
.cke_editable a:not(.cta):focus,
.cke_editable a:not(.cta):link:hover,
.cke_editable a:not(.cta):link:focus {
  color: #2EA9B0;
}

.field--name-body,
.field--type-text-long,
.cke_editable {
  /*  Headings
  ************************************* */
  /*  Lists
  ************************************* */
  /*  Images
  ************************************* */
}
.field--name-body .cta_right,
.field--type-text-long .cta_right,
.cke_editable .cta_right {
  display: inline-block;
  box-sizing: border-box;
  background-color: #2EA9B0;
  -webkit-font-smoothing: antialiased;
  font-family: "Lato", Helvetica, Arial, sans-serif;
  font-weight: 800;
  line-height: 1.2em;
  letter-spacing: 0;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.75rem;
  text-align: center;
  position: relative;
  padding-top: 0.975em;
  padding-bottom: 0.975em;
  min-width: 2.5em;
  border: 0;
  padding-left: 2em;
  padding-right: 4.8em;
}
.field--name-body .cta_right, .field--name-body .cta_right:link,
.field--type-text-long .cta_right,
.field--type-text-long .cta_right:link,
.cke_editable .cta_right,
.cke_editable .cta_right:link {
  color: #112C53;
}
@media only screen and (min-width: 768px) {
  .field--name-body .cta_right,
  .field--type-text-long .cta_right,
  .cke_editable .cta_right {
    font-size: 0.8125rem;
  }
}
.field--name-body .cta_right::after,
.field--type-text-long .cta_right::after,
.cke_editable .cta_right::after {
  flex-shrink: 0;
  content: " ";
  display: block;
  width: 2.8em;
  height: 100%;
  position: absolute;
  top: 0;
  background-repeat: no-repeat;
  background-position: 50% 50%;
}
.field--name-body .cta_right:hover, .field--name-body .cta_right:focus-visible, a:hover .field--name-body .cta_right, a:focus-visible .field--name-body .cta_right,
.field--type-text-long .cta_right:hover,
.field--type-text-long .cta_right:focus-visible,
a:hover .field--type-text-long .cta_right,
a:focus-visible .field--type-text-long .cta_right,
.cke_editable .cta_right:hover,
.cke_editable .cta_right:focus-visible,
a:hover .cke_editable .cta_right,
a:focus-visible .cke_editable .cta_right {
  color: #112C53;
  background-color: #2EA9B0;
}
.field--name-body .cta_right:hover::after, .field--name-body .cta_right:focus-visible::after, a:hover .field--name-body .cta_right::after, a:focus-visible .field--name-body .cta_right::after,
.field--type-text-long .cta_right:hover::after,
.field--type-text-long .cta_right:focus-visible::after,
a:hover .field--type-text-long .cta_right::after,
a:focus-visible .field--type-text-long .cta_right::after,
.cke_editable .cta_right:hover::after,
.cke_editable .cta_right:focus-visible::after,
a:hover .cke_editable .cta_right::after,
a:focus-visible .cke_editable .cta_right::after {
  background-color: #2EA9B0;
}
@media only screen and (max-width: 407px) {
  .field--name-body .cta_right,
  .field--type-text-long .cta_right,
  .cke_editable .cta_right {
    width: 100%;
  }
}
.field--name-body .cta_right::after,
.field--type-text-long .cta_right::after,
.cke_editable .cta_right::after {
  flex-shrink: 0;
  content: " ";
  display: block;
  width: 2.8em;
  height: 100%;
  position: absolute;
  top: 0;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  right: 0;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg data-name='Layer 1' xmlns='http://www.w3.org/2000/svg' width='13.92' height='14.283'%3E%3Cpath fill='%23fff' d='M6.778 0L5.364 1.414l4.728 4.728H0v2h10.092l-4.728 4.727 1.414 1.414 7.142-7.141L6.778 0z'/%3E%3C/svg%3E");
  background-size: 31%;
}
@media only screen and (min-width: 768px) {
  .field--name-body .cta_right::after,
  .field--type-text-long .cta_right::after,
  .cke_editable .cta_right::after {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg data-name='Layer 1' xmlns='http://www.w3.org/2000/svg' width='17.901' height='18.385'%3E%3Cpath fill='%23fff' d='M8.709 0L7.295 1.414l6.778 6.778H0v2h14.073l-6.778 6.779 1.414 1.414 9.192-9.193L8.709 0z'/%3E%3C/svg%3E");
    background-size: 33.5%;
  }
}
@media only screen and (max-width: 479px) {
  .field--name-body .cta_right,
  .field--type-text-long .cta_right,
  .cke_editable .cta_right {
    width: 100%;
  }
}
.field--name-body h2,
.field--type-text-long h2,
.cke_editable h2 {
  margin-top: 1.25em;
  margin-bottom: 0.35em;
}
.field--name-body h2 em,
.field--type-text-long h2 em,
.cke_editable h2 em {
  font-style: normal;
}
.field--name-body h2 u,
.field--type-text-long h2 u,
.cke_editable h2 u {
  text-decoration: none;
}
.field--name-body h2 a,
.field--type-text-long h2 a,
.cke_editable h2 a {
  color: #112C53;
  text-decoration: none;
  border-bottom: 0;
}
.field--name-body h2 strong,
.field--type-text-long h2 strong,
.cke_editable h2 strong {
  font-weight: 800;
}
.field--name-body h3,
.field--type-text-long h3,
.cke_editable h3 {
  margin-top: 1.75em;
  margin-bottom: 0.85em;
}
.field--name-body h3 em,
.field--type-text-long h3 em,
.cke_editable h3 em {
  font-style: normal;
}
.field--name-body h3 u,
.field--type-text-long h3 u,
.cke_editable h3 u {
  text-decoration: none;
}
.field--name-body h3 a,
.field--type-text-long h3 a,
.cke_editable h3 a {
  color: #112C53;
  text-decoration: none;
  border-bottom: 0;
}
.field--name-body h3 strong,
.field--type-text-long h3 strong,
.cke_editable h3 strong {
  font-weight: 700;
}
.field--name-body h3.headingd,
.field--type-text-long h3.headingd,
.cke_editable h3.headingd {
  -webkit-font-smoothing: antialiased;
  color: #112C53;
  font-family: "Lato", Helvetica, Arial, sans-serif;
  font-weight: 700;
  line-height: 1.45em;
  font-size: 1.0625rem;
  letter-spacing: 0;
  margin-top: 0;
  margin-bottom: 0.85em;
  margin-top: 1.75em;
  margin-bottom: 0.5em;
}
@media only screen and (min-width: 1272px) {
  .field--name-body h3.headingd,
  .field--type-text-long h3.headingd,
  .cke_editable h3.headingd {
    font-size: 1.125rem;
  }
}
@media only screen and (min-width: 1344px) {
  .field--name-body h3.headingd,
  .field--type-text-long h3.headingd,
  .cke_editable h3.headingd {
    font-size: 1.1875rem;
  }
}
@media only screen and (min-width: 1488px) {
  .field--name-body h3.headingd,
  .field--type-text-long h3.headingd,
  .cke_editable h3.headingd {
    font-size: 1.25rem;
  }
}
.field--name-body h4,
.field--type-text-long h4,
.cke_editable h4 {
  -webkit-font-smoothing: antialiased;
  color: #112C53;
  font-family: "Lato", Helvetica, Arial, sans-serif;
  font-weight: 700;
  line-height: 1.45em;
  font-size: 1.0625rem;
  letter-spacing: 0;
  margin-top: 0;
  margin-bottom: 0.85em;
  margin-top: 1.75em;
  margin-bottom: 0.5em;
}
.field--name-body h4 em,
.field--type-text-long h4 em,
.cke_editable h4 em {
  font-style: normal;
}
.field--name-body h4 u,
.field--type-text-long h4 u,
.cke_editable h4 u {
  text-decoration: none;
}
.field--name-body h4 a,
.field--type-text-long h4 a,
.cke_editable h4 a {
  color: #112C53;
  text-decoration: none;
  border-bottom: 0;
}
.field--name-body h4 strong,
.field--type-text-long h4 strong,
.cke_editable h4 strong {
  font-weight: 700;
}
@media only screen and (min-width: 1272px) {
  .field--name-body h4,
  .field--type-text-long h4,
  .cke_editable h4 {
    font-size: 1.125rem;
  }
}
@media only screen and (min-width: 1344px) {
  .field--name-body h4,
  .field--type-text-long h4,
  .cke_editable h4 {
    font-size: 1.1875rem;
  }
}
@media only screen and (min-width: 1488px) {
  .field--name-body h4,
  .field--type-text-long h4,
  .cke_editable h4 {
    font-size: 1.25rem;
  }
}
.field--name-body ul,
.field--name-body ol,
.field--type-text-long ul,
.field--type-text-long ol,
.cke_editable ul,
.cke_editable ol {
  font-size: 1rem;
  margin: 0 0 1.5em 0;
  padding: 0;
  clear: both;
  display: block;
}
@media only screen and (min-width: 768px) {
  .field--name-body ul,
  .field--name-body ol,
  .field--type-text-long ul,
  .field--type-text-long ol,
  .cke_editable ul,
  .cke_editable ol {
    font-size: 1.0625rem;
  }
}
@media only screen and (min-width: 1488px) {
  .field--name-body ul,
  .field--name-body ol,
  .field--type-text-long ul,
  .field--type-text-long ol,
  .cke_editable ul,
  .cke_editable ol {
    font-size: 1.125rem;
  }
}
.field--name-body ul li,
.field--name-body ol li,
.field--type-text-long ul li,
.field--type-text-long ol li,
.cke_editable ul li,
.cke_editable ol li {
  position: relative;
  list-style-type: none;
  list-style-image: none;
  position: relative;
  padding-left: 31px;
  margin-bottom: 0.35em;
}
.field--name-body ul li::before,
.field--name-body ol li::before,
.field--type-text-long ul li::before,
.field--type-text-long ol li::before,
.cke_editable ul li::before,
.cke_editable ol li::before {
  position: absolute;
  top: 0;
  left: 0;
  padding: 0;
}
.field--name-body ul li p,
.field--name-body ol li p,
.field--type-text-long ul li p,
.field--type-text-long ol li p,
.cke_editable ul li p,
.cke_editable ol li p {
  margin: 0;
}
.field--name-body ul li ul,
.field--name-body ul li ol,
.field--name-body ol li ul,
.field--name-body ol li ol,
.field--type-text-long ul li ul,
.field--type-text-long ul li ol,
.field--type-text-long ol li ul,
.field--type-text-long ol li ol,
.cke_editable ul li ul,
.cke_editable ul li ol,
.cke_editable ol li ul,
.cke_editable ol li ol {
  margin-top: 0.5em;
}
.field--name-body ul .cta,
.field--name-body ol .cta,
.field--type-text-long ul .cta,
.field--type-text-long ol .cta,
.cke_editable ul .cta,
.cke_editable ol .cta {
  padding: 0;
  border: 0;
}
.field--name-body ul .cta::before, .field--name-body ul .cta::after,
.field--name-body ol .cta::before,
.field--name-body ol .cta::after,
.field--type-text-long ul .cta::before,
.field--type-text-long ul .cta::after,
.field--type-text-long ol .cta::before,
.field--type-text-long ol .cta::after,
.cke_editable ul .cta::before,
.cke_editable ul .cta::after,
.cke_editable ol .cta::before,
.cke_editable ol .cta::after {
  content: none;
}
.field--name-body ul .cta:hover, .field--name-body ul .cta:focus,
.field--name-body ol .cta:hover,
.field--name-body ol .cta:focus,
.field--type-text-long ul .cta:hover,
.field--type-text-long ul .cta:focus,
.field--type-text-long ol .cta:hover,
.field--type-text-long ol .cta:focus,
.cke_editable ul .cta:hover,
.cke_editable ul .cta:focus,
.cke_editable ol .cta:hover,
.cke_editable ol .cta:focus {
  background-color: transparent !important;
}
.field--name-body ul,
.field--type-text-long ul,
.cke_editable ul {
  list-style-type: none;
}
.field--name-body ul li::before,
.field--type-text-long ul li::before,
.cke_editable ul li::before {
  content: "–";
}
.field--name-body ul > li::before,
.field--type-text-long ul > li::before,
.cke_editable ul > li::before {
  content: "–";
  top: 12px;
  left: 2px;
  display: block;
  overflow: hidden;
  text-align: left;
  text-indent: -9999px;
  width: 0.3125rem;
  height: 0.3125rem;
  background-color: #112C53;
  border-radius: 50%;
}
.field--name-body ul ul,
.field--name-body ul ol,
.field--type-text-long ul ul,
.field--type-text-long ul ol,
.cke_editable ul ul,
.cke_editable ul ol {
  margin-bottom: 0;
}
.field--name-body ol,
.field--type-text-long ol,
.cke_editable ol {
  counter-reset: item;
}
.field--name-body ol > li::before,
.field--type-text-long ol > li::before,
.cke_editable ol > li::before {
  counter-increment: item;
  content: counter(item) ".";
  top: 0px;
  display: inline-block;
}
.field--name-body img,
.field--name-body figure,
.field--type-text-long img,
.field--type-text-long figure,
.cke_editable img,
.cke_editable figure {
  display: block;
  max-width: 100%;
  height: auto;
  margin-top: 3rem;
  margin-bottom: 3rem;
}
.field--name-body img,
.field--type-text-long img,
.cke_editable img {
  display: block;
}
.field--name-body figure,
.field--type-text-long figure,
.cke_editable figure {
  display: table;
  margin-left: 0;
  margin-right: 0;
}
.field--name-body figure > *,
.field--type-text-long figure > *,
.cke_editable figure > * {
  display: table-row;
}
.field--name-body figure br,
.field--type-text-long figure br,
.cke_editable figure br {
  display: none;
}
.field--name-body figure,
.field--name-body figure img,
.field--type-text-long figure,
.field--type-text-long figure img,
.cke_editable figure,
.cke_editable figure img {
  max-width: 100%;
  height: auto;
}
.field--name-body figure img,
.field--type-text-long figure img,
.cke_editable figure img {
  margin: 0;
  z-index: 1;
}
.field--name-body figure figcaption,
.field--type-text-long figure figcaption,
.cke_editable figure figcaption {
  display: table-caption;
  caption-side: bottom;
  font-family: "Lato", Helvetica, Arial, sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  line-height: 1.6em;
  font-size: 0.875rem;
  color: #EA5D4E;
  padding-top: 1.55em;
}
@media only screen and (min-width: 480px) {
  .field--name-body figure figcaption,
  .field--type-text-long figure figcaption,
  .cke_editable figure figcaption {
    font-size: 0.9375rem;
  }
}
@media only screen and (min-width: 768px) {
  .field--name-body figure figcaption,
  .field--type-text-long figure figcaption,
  .cke_editable figure figcaption {
    font-size: 1rem;
  }
}
.field--name-body .align-left,
.field--name-body .align-right,
.field--type-text-long .align-left,
.field--type-text-long .align-right,
.cke_editable .align-left,
.cke_editable .align-right {
  margin-top: 0;
  margin-bottom: 1.5rem;
}
.field--name-body .align-left img,
.field--name-body .align-right img,
.field--type-text-long .align-left img,
.field--type-text-long .align-right img,
.cke_editable .align-left img,
.cke_editable .align-right img {
  margin: 0;
}
@media only screen and (max-width: 551px) {
  .field--name-body .align-left img,
  .field--name-body .align-right img,
  .field--type-text-long .align-left img,
  .field--type-text-long .align-right img,
  .cke_editable .align-left img,
  .cke_editable .align-right img {
    margin-left: auto;
    margin-right: auto;
  }
}
@media only screen and (min-width: 552px) {
  .field--name-body .align-left,
  .field--name-body .align-right,
  .field--type-text-long .align-left,
  .field--type-text-long .align-right,
  .cke_editable .align-left,
  .cke_editable .align-right {
    max-width: 45%;
  }
}
@media only screen and (min-width: 552px) {
  .field--name-body .align-left,
  .field--type-text-long .align-left,
  .cke_editable .align-left {
    float: left;
    clear: left;
    margin-right: 2.5rem;
  }
}
@media only screen and (min-width: 552px) {
  .field--name-body .align-right,
  .field--type-text-long .align-right,
  .cke_editable .align-right {
    float: right;
    clear: right;
    margin-left: 2.5rem;
  }
}
.field--name-body .align-center,
.field--name-body .align-center img,
.field--type-text-long .align-center,
.field--type-text-long .align-center img,
.cke_editable .align-center,
.cke_editable .align-center img {
  margin-left: auto;
  margin-right: auto;
}
@media only screen and (min-width: 912px) {
  .field--name-body .align-center,
  .field--type-text-long .align-center,
  .cke_editable .align-center {
    width: 152.4590163934%;
  }
}

@media only screen and (min-width: 552px) {
  .field--name-body .align-left {
    margin-left: -10.5366579292%;
  }
}
@media only screen and (min-width: 768px) {
  .field--name-body .align-left {
    margin-left: -10.3896103896%;
  }
}
@media only screen and (min-width: 912px) {
  .field--name-body .align-left {
    margin-left: -17.7777777778%;
  }
}
@media only screen and (min-width: 552px) {
  .field--name-body .align-right {
    margin-right: -10.5366579292%;
  }
}
@media only screen and (min-width: 768px) {
  .field--name-body .align-right {
    margin-right: -10.3896103896%;
  }
}
@media only screen and (min-width: 912px) {
  .field--name-body .align-right {
    margin-right: -17.7777777778%;
  }
}

.responsive-embed {
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.cke_editable hr,
.field-name-body hr {
  border: 0;
  border-bottom: thin solid #112C53;
  margin-top: 3rem;
  margin-bottom: 3rem;
}

.field--name-field-media-oembed-video {
  position: relative;
  aspect-ratio: 16/9;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}
.field--name-field-media-oembed-video iframe {
  position: absolute;
  width: 100%;
  height: 100%;
}

.field--name-body > *:first-child,
.field--type-text-long > *:first-child {
  margin-top: 0 !important;
}
.field--name-body > *:last-child,
.field--type-text-long > *:last-child {
  margin-bottom: 0 !important;
}

/* Sitewide Typography
************************************* */
html {
  /*
    Letting the browser and user set default font-size, for accesibility.
    I am working with REMs (except for media queries which is not viable)
  */
}

body, input, textarea, select {
  font-family: "Lato", Helvetica, Arial, sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  line-height: 1.6em;
  font-size: 1rem;
  color: #112C53;
  letter-spacing: 0;
  font-display: swap;
}
@media only screen and (min-width: 768px) {
  body, input, textarea, select {
    font-size: 1.0625rem;
  }
}
@media only screen and (min-width: 1488px) {
  body, input, textarea, select {
    font-size: 1.125rem;
  }
}

#admin-menu, #admin-menu ul, #admin-menu ol, #admin-menu li {
  font-size: 12px;
  font-weight: normal;
  line-height: 1.1em;
}

a, a:link {
  color: #2EA9B0;
  text-decoration: none;
}
p a {
  border-bottom: 0.0625rem solid #2EA9B0;
}
p a:hover, p a:focus {
  color: #2EA9B0;
}

p {
  font-family: "Lato", Helvetica, Arial, sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  line-height: 1.6em;
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
  margin: 0 0 1em;
}
@media only screen and (min-width: 768px) {
  p {
    font-size: 1.0625rem;
  }
}
@media only screen and (min-width: 1488px) {
  p {
    font-size: 1.125rem;
  }
}

h1 {
  -webkit-font-smoothing: antialiased;
  color: #EA5D4E;
  font-family: "Lato", Helvetica, Arial, sans-serif;
  font-weight: 800;
  line-height: 1.225em;
  font-size: 1.625rem;
  letter-spacing: 0.01em;
  margin-top: 0;
  margin-bottom: 0.4em;
}
@media only screen and (min-width: 480px) {
  h1 {
    font-size: 1.8125rem;
  }
}
@media only screen and (min-width: 624px) {
  h1 {
    font-size: 2rem;
  }
}
@media only screen and (min-width: 840px) {
  h1 {
    font-size: 2.1875rem;
  }
}
@media only screen and (min-width: 1055px) {
  h1 {
    font-size: 2.375rem;
  }
}
@media only screen and (min-width: 1344px) {
  h1 {
    font-size: 2.5625rem;
  }
}
@media only screen and (min-width: 1488px) {
  h1 {
    font-size: 2.75rem;
  }
}

h2 {
  -webkit-font-smoothing: antialiased;
  color: #112C53;
  font-family: "Lato", Helvetica, Arial, sans-serif;
  font-weight: 800;
  line-height: 1.375em;
  font-size: 1.4375rem;
  letter-spacing: 0;
  margin-top: 0;
  margin-bottom: 0.6em;
}
@media only screen and (min-width: 624px) {
  h2 {
    font-size: 1.5rem;
  }
}
@media only screen and (min-width: 1344px) {
  h2 {
    font-size: 1.6875rem;
  }
}
@media only screen and (min-width: 1488px) {
  h2 {
    font-size: 1.875rem;
  }
}

h3 {
  -webkit-font-smoothing: antialiased;
  color: #112C53;
  font-family: "Lato", Helvetica, Arial, sans-serif;
  font-weight: 700;
  line-height: 1.4em;
  font-size: 1.1875rem;
  letter-spacing: 0;
  margin-top: 0;
  margin-bottom: 0.4em;
}
@media only screen and (min-width: 1272px) {
  h3 {
    font-size: 1.25rem;
  }
}
@media only screen and (min-width: 1488px) {
  h3 {
    font-size: 1.375rem;
  }
}

.header_intro {
  font-family: "Lato", Helvetica, Arial, sans-serif;
  font-weight: 400;
  line-height: 1.45em;
  letter-spacing: 0;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  font-size: 1.1875rem;
  color: #112C53;
}
@media only screen and (min-width: 1272px) {
  .header_intro {
    font-size: 1.25rem;
  }
}
@media only screen and (min-width: 1488px) {
  .header_intro {
    font-size: 1.375rem;
  }
}

.cta {
  display: inline-block;
  box-sizing: border-box;
  background-color: #4EB6BC;
  -webkit-font-smoothing: antialiased;
  font-family: "Lato", Helvetica, Arial, sans-serif;
  font-weight: 800;
  line-height: 1.2em;
  letter-spacing: 0;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.75rem;
  text-align: center;
  position: relative;
  padding-top: 0.975em;
  padding-bottom: 0.975em;
  min-width: 2.5em;
  border: 0;
  padding-left: 2em;
  padding-right: 2em;
}
.cta, .cta:link {
  color: #112C53;
}
@media only screen and (min-width: 768px) {
  .cta {
    font-size: 0.8125rem;
  }
}
.cta:hover, .cta:focus-visible, a:hover .cta, a:focus-visible .cta {
  color: #112C53;
  background-color: #C8ECF0;
}
@media only screen and (max-width: 407px) {
  .cta {
    width: 100%;
  }
}

.cta_right {
  display: inline-block;
  box-sizing: border-box;
  background-color: #2EA9B0;
  -webkit-font-smoothing: antialiased;
  font-family: "Lato", Helvetica, Arial, sans-serif;
  font-weight: 800;
  line-height: 1.2em;
  letter-spacing: 0;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.75rem;
  text-align: center;
  position: relative;
  padding-top: 0.975em;
  padding-bottom: 0.975em;
  min-width: 2.5em;
  border: 0;
  padding-left: 2em;
  padding-right: 4.8em;
}
.cta_right, .cta_right:link {
  color: white;
}
@media only screen and (min-width: 768px) {
  .cta_right {
    font-size: 0.8125rem;
  }
}
.cta_right::after {
  flex-shrink: 0;
  content: " ";
  display: block;
  width: 2.8em;
  height: 100%;
  position: absolute;
  top: 0;
  background-repeat: no-repeat;
  background-position: 50% 50%;
}
.cta_right:hover, .cta_right:focus-visible, a:hover .cta_right, a:focus-visible .cta_right {
  color: white;
  background-color: #112C53;
}
.cta_right:hover::after, .cta_right:focus-visible::after, a:hover .cta_right::after, a:focus-visible .cta_right::after {
  background-color: #112C53;
}
@media only screen and (max-width: 407px) {
  .cta_right {
    width: 100%;
  }
}
.cta_right::after {
  flex-shrink: 0;
  content: " ";
  display: block;
  width: 2.8em;
  height: 100%;
  position: absolute;
  top: 0;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  right: 0;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg data-name='Layer 1' xmlns='http://www.w3.org/2000/svg' width='13.92' height='14.283'%3E%3Cpath fill='%23fff' d='M6.778 0L5.364 1.414l4.728 4.728H0v2h10.092l-4.728 4.727 1.414 1.414 7.142-7.141L6.778 0z'/%3E%3C/svg%3E");
  background-size: 31%;
}
@media only screen and (min-width: 768px) {
  .cta_right::after {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg data-name='Layer 1' xmlns='http://www.w3.org/2000/svg' width='17.901' height='18.385'%3E%3Cpath fill='%23fff' d='M8.709 0L7.295 1.414l6.778 6.778H0v2h14.073l-6.778 6.779 1.414 1.414 9.192-9.193L8.709 0z'/%3E%3C/svg%3E");
    background-size: 33.5%;
  }
}

.cta_download {
  display: inline-block;
  box-sizing: border-box;
  background-color: #2EA9B0;
  -webkit-font-smoothing: antialiased;
  font-family: "Lato", Helvetica, Arial, sans-serif;
  font-weight: 800;
  line-height: 1.2em;
  letter-spacing: 0;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.75rem;
  text-align: center;
  position: relative;
  padding-top: 0.975em;
  padding-bottom: 0.975em;
  min-width: 2.5em;
  border: 0;
  padding-left: 2em;
  padding-right: 4.8em;
}
.cta_download, .cta_download:link {
  color: white;
}
@media only screen and (min-width: 768px) {
  .cta_download {
    font-size: 0.8125rem;
  }
}
.cta_download::after {
  flex-shrink: 0;
  content: " ";
  display: block;
  width: 2.8em;
  height: 100%;
  position: absolute;
  top: 0;
  background-repeat: no-repeat;
  background-position: 50% 50%;
}
.cta_download:hover, .cta_download:focus-visible, a:hover .cta_download, a:focus-visible .cta_download {
  color: white;
  background-color: #112C53;
}
.cta_download:hover::after, .cta_download:focus-visible::after, a:hover .cta_download::after, a:focus-visible .cta_download::after {
  background-color: #112C53;
}
@media only screen and (max-width: 407px) {
  .cta_download {
    width: 100%;
  }
}
.cta_download::after {
  flex-shrink: 0;
  content: " ";
  display: block;
  width: 2.8em;
  height: 100%;
  position: absolute;
  top: 0;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  right: 0;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg data-name='Layer 1' xmlns='http://www.w3.org/2000/svg' width='16.769' height='19.302'%3E%3Cpath fill='%23fff' d='M0 17.302h16.769v2H0z' data-name='Line 110'/%3E%3Cpath fill='%23fff' d='M14.112 5.364l-4.727 4.728V0h-2v10.092L2.657 5.364 1.243 6.778l7.142 7.142 7.141-7.142-1.414-1.414z'/%3E%3C/svg%3E");
  background-size: 40% auto;
}
@media only screen and (min-width: 768px) {
  .cta_download::after {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg data-name='Layer 1' xmlns='http://www.w3.org/2000/svg' width='20' height='23.016'%3E%3Cg fill='%23fff'%3E%3Cpath d='M19.192 8.708l-1.414-1.415L11 14.072V0H9v14.072L2.222 7.293.808 8.708 10 17.9l9.192-9.192zM0 21.016h20v2H0z'/%3E%3C/g%3E%3C/svg%3E");
    background-size: 33.5%;
  }
}

.field--name-field-link a {
  display: inline-block;
  box-sizing: border-box;
  background-color: #2EA9B0;
  -webkit-font-smoothing: antialiased;
  font-family: "Lato", Helvetica, Arial, sans-serif;
  font-weight: 800;
  line-height: 1.2em;
  letter-spacing: 0;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.75rem;
  text-align: center;
  position: relative;
  padding-top: 0.975em;
  padding-bottom: 0.975em;
  min-width: 2.5em;
  border: 0;
  padding-left: 2em;
  padding-right: 4.8em;
}
.field--name-field-link a, .field--name-field-link a:link {
  color: white;
}
@media only screen and (min-width: 768px) {
  .field--name-field-link a {
    font-size: 0.8125rem;
  }
}
.field--name-field-link a::after {
  flex-shrink: 0;
  content: " ";
  display: block;
  width: 2.8em;
  height: 100%;
  position: absolute;
  top: 0;
  background-repeat: no-repeat;
  background-position: 50% 50%;
}
.field--name-field-link a:hover, .field--name-field-link a:focus-visible, a:hover .field--name-field-link a, a:focus-visible .field--name-field-link a {
  color: white;
  background-color: #112C53;
}
.field--name-field-link a:hover::after, .field--name-field-link a:focus-visible::after, a:hover .field--name-field-link a::after, a:focus-visible .field--name-field-link a::after {
  background-color: #112C53;
}
@media only screen and (max-width: 407px) {
  .field--name-field-link a {
    width: 100%;
  }
}
.field--name-field-link a::after {
  flex-shrink: 0;
  content: " ";
  display: block;
  width: 2.8em;
  height: 100%;
  position: absolute;
  top: 0;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  right: 0;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg data-name='Layer 1' xmlns='http://www.w3.org/2000/svg' width='13.92' height='14.283'%3E%3Cpath fill='%23fff' d='M6.778 0L5.364 1.414l4.728 4.728H0v2h10.092l-4.728 4.727 1.414 1.414 7.142-7.141L6.778 0z'/%3E%3C/svg%3E");
  background-size: 31%;
}
@media only screen and (min-width: 768px) {
  .field--name-field-link a::after {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg data-name='Layer 1' xmlns='http://www.w3.org/2000/svg' width='17.901' height='18.385'%3E%3Cpath fill='%23fff' d='M8.709 0L7.295 1.414l6.778 6.778H0v2h14.073l-6.778 6.779 1.414 1.414 9.192-9.193L8.709 0z'/%3E%3C/svg%3E");
    background-size: 33.5%;
  }
}
@media only screen and (min-width: 408px) {
  .field--name-field-link a {
    min-width: 14em;
  }
}

.field--name-field-display-title {
  font-size: 1.4375rem;
  padding-top: 1.75em;
  border-top: thin solid #EA5D4E;
}
@media only screen and (min-width: 624px) {
  .field--name-field-display-title {
    font-size: 1.5rem;
  }
}
@media only screen and (min-width: 1344px) {
  .field--name-field-display-title {
    font-size: 1.6875rem;
  }
}
@media only screen and (min-width: 1488px) {
  .field--name-field-display-title {
    font-size: 1.875rem;
  }
}
.field--name-field-display-title h2 {
  margin-bottom: 1.55em;
}

section.full_width__grid {
  display: none;
  background-color: transparent !important;
}
.show_grid section.full_width__grid {
  display: block;
  position: fixed;
  z-index: 3;
  top: 0;
  left: 0;
}
.show_grid section.full_width__grid,
.show_grid section.full_width__grid .width_holder_inner,
.show_grid section.full_width__grid div {
  height: 100%;
}
.show_grid section.full_width__grid .col,
.show_grid section.full_width__grid .gutter {
  display: block;
  overflow: hidden;
  float: left;
  margin: 0;
}
.show_grid section.full_width__grid .col {
  width: 5.376344086%;
  background-color: rgba(255, 58, 125, 0.2);
}
.show_grid section.full_width__grid .gutter {
  width: 3.2258064516%;
  background-color: rgba(61, 58, 125, 0.1);
}
@media only screen and (max-width: 767px) {
  .show_grid section.full_width__grid .col {
    width: 4.2702048759%;
  }
  .show_grid section.full_width__grid .gutter {
    width: 4.4325037718%;
  }
}

.skip_link {
  -webkit-font-smoothing: antialiased;
  color: #112C53;
  font-family: "Lato", Helvetica, Arial, sans-serif;
  font-weight: 700;
  line-height: 1.45em;
  font-size: 1.0625rem;
  letter-spacing: 0;
  margin-top: 0;
  margin-bottom: 0.85em;
  text-align: center;
  margin: 0 !important;
}
@media only screen and (min-width: 1272px) {
  .skip_link {
    font-size: 1.125rem;
  }
}
@media only screen and (min-width: 1344px) {
  .skip_link {
    font-size: 1.1875rem;
  }
}
@media only screen and (min-width: 1488px) {
  .skip_link {
    font-size: 1.25rem;
  }
}
.skip_link:focus {
  display: block;
  overflow: hidden;
  width: 100%;
  margin-top: 0.5em !important;
  margin-bottom: 0.5em !important;
}

#sliding-popup {
  padding-top: 1em;
  padding-bottom: 1.25em;
  position: fixed;
  z-index: 3;
  width: 100%;
  background-color: #112C53;
}
#sliding-popup .popup-content {
  width: auto;
  box-sizing: content-box;
  max-width: 69.75rem;
  margin: 0 auto;
  padding-left: 6%;
  padding-right: 6%;
  display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6, BB7 */
  display: -ms-flexbox; /* TWEENER - IE 10 */
  display: -webkit-flex; /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
  display: flex; /* NEW, Spec - Firefox, Chrome, Opera */
  flex-wrap: wrap;
  justify-content: space-between;
}
@media only screen and (min-width: 480px) {
  #sliding-popup .popup-content {
    padding-left: 4%;
    padding-right: 4%;
  }
}
@media only screen and (min-width: 552px) {
  #sliding-popup .popup-content {
    padding-left: 3.5%;
    padding-right: 3.5%;
  }
}
@media only screen and (min-width: 696px) {
  #sliding-popup .popup-content {
    padding-left: 3%;
    padding-right: 3%;
  }
}
#sliding-popup #popup-text,
#sliding-popup #popup-buttons {
  width: 100%;
}
#sliding-popup #popup-text {
  flex-grow: 1;
}
#sliding-popup #popup-text p {
  display: inline;
}
#sliding-popup #popup-buttons {
  text-align: left;
  margin-top: 1em;
}
#sliding-popup h2 {
  font-family: "Lato", Helvetica, Arial, sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  line-height: 1.6em;
  font-size: 0.875rem;
  color: white;
  margin-top: 0;
  margin-bottom: 0.5em;
}
@media only screen and (min-width: 480px) {
  #sliding-popup h2 {
    font-size: 0.9375rem;
  }
}
@media only screen and (min-width: 768px) {
  #sliding-popup h2 {
    font-size: 1rem;
  }
}
#sliding-popup p {
  font-family: "Lato", Helvetica, Arial, sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  line-height: 1.6em;
  font-size: 0.875rem;
  color: white;
  margin-bottom: 0.25em;
}
@media only screen and (min-width: 480px) {
  #sliding-popup p {
    font-size: 0.9375rem;
  }
}
@media only screen and (min-width: 768px) {
  #sliding-popup p {
    font-size: 1rem;
  }
}
#sliding-popup button {
  display: inline-block;
  font-family: "Lato", Helvetica, Arial, sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  line-height: 1.6em;
  font-size: 0.875rem;
  color: white;
  background-color: transparent;
  padding-top: 0.4em;
  padding-bottom: 0.425em;
  padding-left: 0.7em;
  padding-right: 0.7em;
  border: thin solid white;
  margin-left: 0.7em;
  margin-bottom: 0.7em;
}
@media only screen and (min-width: 480px) {
  #sliding-popup button {
    font-size: 0.9375rem;
  }
}
@media only screen and (min-width: 768px) {
  #sliding-popup button {
    font-size: 1rem;
  }
}
#sliding-popup button:hover, #sliding-popup button:focus {
  color: #112C53;
  background-color: white;
}
#sliding-popup button:first-child {
  margin-left: 0;
}
#sliding-popup .find-more-button {
  font-family: "Lato", Helvetica, Arial, sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  line-height: 1.6em;
  font-size: 0.875rem;
  display: inline;
  padding: 0;
  background-color: transparent !important;
  border: 0 !important;
  color: white;
  min-width: 0;
  margin: 0;
}
@media only screen and (min-width: 480px) {
  #sliding-popup .find-more-button {
    font-size: 0.9375rem;
  }
}
@media only screen and (min-width: 768px) {
  #sliding-popup .find-more-button {
    font-size: 1rem;
  }
}
#sliding-popup .find-more-button:hover, #sliding-popup .find-more-button:focus {
  color: white;
  text-decoration: underline;
}
@media only screen and (min-width: 480px) {
  #sliding-popup .popup-content {
    flex-wrap: nowrap;
  }
  #sliding-popup #popup-text,
  #sliding-popup #popup-buttons {
    width: auto;
  }
  #sliding-popup #popup-text {
    margin-right: 1em;
  }
  #sliding-popup #popup-buttons {
    text-align: right;
    margin-top: 0;
  }
}

section.above_the_fold_content {
  font-size: 1.625rem;
  margin-bottom: 1.25em;
}
@media only screen and (min-width: 480px) {
  section.above_the_fold_content {
    font-size: 1.8125rem;
  }
}
@media only screen and (min-width: 624px) {
  section.above_the_fold_content {
    font-size: 2rem;
  }
}
@media only screen and (min-width: 840px) {
  section.above_the_fold_content {
    font-size: 2.1875rem;
  }
}
@media only screen and (min-width: 1055px) {
  section.above_the_fold_content {
    font-size: 2.375rem;
  }
}
@media only screen and (min-width: 1344px) {
  section.above_the_fold_content {
    font-size: 2.5625rem;
  }
}
@media only screen and (min-width: 1488px) {
  section.above_the_fold_content {
    font-size: 2.75rem;
  }
}

/* Header Outer
*********************************** */
section.full_width__header_outer {
  background-color: #112C53;
  position: relative;
  z-index: 1000;
}

/* Header – Layout
*********************************** */
section.full_width__header {
  position: relative;
  z-index: 9999;
  background-color: transparent;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}
@media only screen and (min-width: 768px) {
  section.full_width__header {
    padding-bottom: 2rem;
  }
}

#header {
  display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6, BB7 */
  display: -ms-flexbox; /* TWEENER - IE 10 */
  display: -webkit-flex; /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
  display: flex; /* NEW, Spec - Firefox, Chrome, Opera */
  flex-wrap: wrap;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  width: 100%;
}
@media only screen and (min-width: 768px) {
  #header {
    -webkit-box-align: flex-start;
    -moz-box-align: flex-start;
    -ms-flex-align: flex-start;
    -webkit-align-items: flex-start;
    align-items: flex-start;
  }
}
#header .region-header-branding {
  flex-shrink: 0;
  margin-right: 1.25rem;
}
@media only screen and (min-width: 768px) {
  #header .region-header-branding {
    margin-top: 0.6rem;
    margin-right: 3rem;
  }
}
#header .region-header {
  flex-grow: 1;
  flex-shrink: 1;
  display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6, BB7 */
  display: -ms-flexbox; /* TWEENER - IE 10 */
  display: -webkit-flex; /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
  display: flex; /* NEW, Spec - Firefox, Chrome, Opera */
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
#header .region-header > * {
  flex-shrink: 1;
}
#header .region-header > *:first-child {
  margin-left: 0;
}
#header .region-header #block-arcsl-main-menu {
  flex-shrink: 0;
}
#header .region-header-b {
  display: none;
}
@media only screen and (min-width: 768px) {
  #header .region-header-b {
    display: block;
    width: 100%;
    margin-top: 0.9rem;
  }
}
#header .block.menu--main {
  position: relative;
  z-index: 2;
}
#header .block.site-branding {
  position: relative;
  z-index: 3;
}
@media only screen and (min-width: 624px) {
  #header .region-header > * {
    margin-left: 1.45rem;
  }
}

/* Header – Elements
*********************************** */
@media only screen {
  .site-branding .logo {
    display: block;
    overflow: hidden;
    text-align: left;
    text-indent: -9999px;
    width: 12.375rem;
    margin: 0;
  }
  .site-branding .logo::after {
    content: " ";
    display: block;
    width: 100%;
    height: 0;
    padding-bottom: 9.5%;
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg data-name='Layer 1' xmlns='http://www.w3.org/2000/svg' width='293' height='25.475'%3E%3Cg data-name='Group 165'%3E%3Cpath data-name='Path 1' d='M113.022 10.461h-1.463a.623.623 0 01-.4-.123.758.758 0 01-.232-.3l-.76-2.075h-4.214l-.76 2.075a.659.659 0 01-.218.295.605.605 0 01-.4.134H103.1l4-10.177h1.925zm-3.34-3.841l-1.239-3.383c-.06-.151-.124-.328-.19-.535s-.131-.429-.2-.668c-.061.239-.124.462-.189.671s-.13.39-.191.545l-1.231 3.369z' fill='%23fff'/%3E%3Cpath data-name='Path 2' d='M115.222 4.229a3.8 3.8 0 011.006-.809 2.706 2.706 0 011.323-.31 2.38 2.38 0 011.08.246 2.424 2.424 0 01.844.714 3.42 3.42 0 01.549 1.154 5.794 5.794 0 01.193 1.572A4.952 4.952 0 01120 8.3a3.662 3.662 0 01-.622 1.2 2.9 2.9 0 01-.978.791 2.841 2.841 0 01-1.284.285 2.6 2.6 0 01-1.035-.186 2.542 2.542 0 01-.767-.517v2.954h-1.737V3.244h1.062a.427.427 0 01.444.317zm.091 4.361a1.7 1.7 0 00.644.507 1.9 1.9 0 00.756.148 1.659 1.659 0 00.711-.148 1.4 1.4 0 00.538-.45 2.261 2.261 0 00.341-.763 4.372 4.372 0 00.12-1.087 4.836 4.836 0 00-.1-1.073 2.05 2.05 0 00-.291-.713 1.162 1.162 0 00-.46-.4 1.438 1.438 0 00-.616-.126 1.756 1.756 0 00-.921.228 2.832 2.832 0 00-.719.644z' fill='%23fff'/%3E%3Cpath data-name='Path 3' d='M123 4.229a3.784 3.784 0 011.006-.809 2.706 2.706 0 011.323-.31 2.373 2.373 0 011.079.246 2.427 2.427 0 01.845.714 3.42 3.42 0 01.549 1.154A5.873 5.873 0 01128 6.8a4.952 4.952 0 01-.218 1.5 3.681 3.681 0 01-.622 1.2 2.9 2.9 0 01-.978.791 2.841 2.841 0 01-1.284.285 2.6 2.6 0 01-1.035-.186 2.542 2.542 0 01-.767-.517v2.954h-1.737V3.244h1.065a.427.427 0 01.443.317zm.091 4.361a1.722 1.722 0 00.643.507 1.91 1.91 0 00.757.148 1.654 1.654 0 00.71-.148 1.4 1.4 0 00.539-.45 2.278 2.278 0 00.34-.763 4.372 4.372 0 00.12-1.084 4.836 4.836 0 00-.1-1.073 2.069 2.069 0 00-.291-.713 1.158 1.158 0 00-.461-.4 1.431 1.431 0 00-.615-.126 1.762 1.762 0 00-.922.228 2.828 2.828 0 00-.718.644z' fill='%23fff'/%3E%3Cpath data-name='Path 4' d='M130.893.008v10.453h-1.737V.008z' fill='%23fff'/%3E%3Cpath data-name='Path 5' d='M134.458 1.141a.989.989 0 01-.091.422 1.157 1.157 0 01-.242.345 1.175 1.175 0 01-.355.235 1.061 1.061 0 01-.437.088 1.038 1.038 0 01-.425-.088 1.118 1.118 0 01-.584-.58 1.024 1.024 0 01-.088-.422 1.105 1.105 0 01.672-1.023 1.038 1.038 0 01.425-.088 1.094 1.094 0 01.437.088 1.156 1.156 0 01.355.235 1.123 1.123 0 01.242.352 1.056 1.056 0 01.091.436zm-.239 2.1v7.22h-1.744V3.244z' fill='%23fff'/%3E%3Cpath data-name='Path 6' d='M137.121 7.071a3.4 3.4 0 00.2.96 1.972 1.972 0 00.408.668 1.6 1.6 0 00.6.394 2.2 2.2 0 00.77.13 2.393 2.393 0 00.728-.1 3.353 3.353 0 00.535-.218q.23-.118.4-.218a.682.682 0 01.334-.1.362.362 0 01.324.162l.5.634a2.961 2.961 0 01-.647.566 3.668 3.668 0 01-.75.366 4.169 4.169 0 01-.8.194 5.72 5.72 0 01-.784.057 3.868 3.868 0 01-1.4-.249 3.136 3.136 0 01-1.125-.74 3.466 3.466 0 01-.754-1.21 4.7 4.7 0 01-.274-1.67 4.017 4.017 0 01.239-1.39 3.346 3.346 0 01.686-1.132 3.237 3.237 0 011.091-.763 3.582 3.582 0 011.452-.281 3.536 3.536 0 011.259.218 2.731 2.731 0 01.993.636 2.937 2.937 0 01.65 1.027 3.8 3.8 0 01.235 1.389 1.124 1.124 0 01-.084.531.349.349 0 01-.324.137zm3.313-1.049a2.082 2.082 0 00-.1-.636 1.52 1.52 0 00-.285-.524 1.329 1.329 0 00-.481-.355 1.649 1.649 0 00-.679-.13 1.61 1.61 0 00-1.185.429 2.1 2.1 0 00-.551 1.217z' fill='%23fff'/%3E%3Cpath data-name='Path 7' d='M149.35.008v10.453h-1.062a.41.41 0 01-.436-.317l-.148-.7a3.688 3.688 0 01-1 .809 2.713 2.713 0 01-1.319.31 2.378 2.378 0 01-1.083-.247 2.4 2.4 0 01-.848-.713 3.407 3.407 0 01-.549-1.157 5.818 5.818 0 01-.193-1.576 4.925 4.925 0 01.218-1.491 3.618 3.618 0 01.627-1.2 2.939 2.939 0 01.977-.791 2.829 2.829 0 011.281-.285 2.533 2.533 0 011.035.19 2.647 2.647 0 01.767.514V.008zm-1.737 5.079a1.721 1.721 0 00-.644-.506 1.906 1.906 0 00-.749-.148 1.674 1.674 0 00-.711.148 1.421 1.421 0 00-.541.446 2.156 2.156 0 00-.345.76 4.364 4.364 0 00-.12 1.086 4.836 4.836 0 00.1 1.073 2.122 2.122 0 00.291.718 1.119 1.119 0 00.465.4 1.482 1.482 0 00.612.123 1.766 1.766 0 00.921-.226 2.73 2.73 0 00.719-.64z' fill='%23fff'/%3E%3Cpath data-name='Path 8' d='M162.28 10.461h-1.709a.748.748 0 01-.7-.38l-2.138-3.257a.761.761 0 00-.263-.26.931.931 0 00-.426-.077h-.808v3.974h-1.893V.289h3.1A6.461 6.461 0 01159.22.5a3.389 3.389 0 011.217.6 2.346 2.346 0 01.7.925 3.028 3.028 0 01.226 1.185 3.074 3.074 0 01-.151.971 2.807 2.807 0 01-.436.83 2.94 2.94 0 01-.7.654 3.509 3.509 0 01-.953.444 1.83 1.83 0 01.338.249 1.8 1.8 0 01.281.341zm-4.868-5.331a2.924 2.924 0 00.933-.13 1.821 1.821 0 00.655-.373 1.487 1.487 0 00.383-.559 1.92 1.92 0 00.128-.711A1.444 1.444 0 00159 2.168a2.443 2.443 0 00-1.559-.415h-1.209V5.13z' fill='%23fff'/%3E%3Cpath data-name='Path 9' d='M163.762 7.071a3.4 3.4 0 00.2.96 1.953 1.953 0 00.407.668 1.6 1.6 0 00.6.394 2.2 2.2 0 00.77.13 2.387 2.387 0 00.727-.1A3.551 3.551 0 00167 8.9c.152-.08.285-.152.4-.218a.671.671 0 01.334-.1.36.36 0 01.323.162l.5.634a2.865 2.865 0 01-.647.566 3.677 3.677 0 01-.748.366 4.1 4.1 0 01-.8.193 5.72 5.72 0 01-.784.057 3.868 3.868 0 01-1.4-.249 3.14 3.14 0 01-1.126-.74 3.461 3.461 0 01-.752-1.21 4.678 4.678 0 01-.275-1.67 3.99 3.99 0 01.24-1.39 3.327 3.327 0 01.685-1.132 3.237 3.237 0 011.091-.763 3.825 3.825 0 012.712-.063 2.754 2.754 0 01.992.636 2.946 2.946 0 01.65 1.027 3.847 3.847 0 01.235 1.389 1.137 1.137 0 01-.084.531.353.353 0 01-.324.137zm3.313-1.049a2.108 2.108 0 00-.095-.636 1.518 1.518 0 00-.284-.524 1.341 1.341 0 00-.482-.355 1.649 1.649 0 00-.679-.13 1.61 1.61 0 00-1.185.429 2.107 2.107 0 00-.552 1.217z' fill='%23fff'/%3E%3Cpath data-name='Path 10' d='M174.131 4.651a.486.486 0 01-.148.158.385.385 0 01-.2.046.622.622 0 01-.27-.07c-.1-.046-.208-.1-.334-.158a3.143 3.143 0 00-.432-.158 2.1 2.1 0 00-.574-.07 1.32 1.32 0 00-.805.218.68.68 0 00-.292.57.544.544 0 00.151.39 1.334 1.334 0 00.4.277 3.958 3.958 0 00.567.215q.315.094.643.207a6.729 6.729 0 01.643.257 2.269 2.269 0 01.566.366 1.612 1.612 0 01.551 1.276 2.45 2.45 0 01-.186.96 2.092 2.092 0 01-.552.76 2.606 2.606 0 01-.9.5 4.22 4.22 0 01-1.969.112 4.145 4.145 0 01-.682-.186 3.83 3.83 0 01-.606-.281 2.908 2.908 0 01-.488-.352l.4-.661a.549.549 0 01.182-.183.52.52 0 01.267-.064.555.555 0 01.306.092c.1.061.207.127.334.2a2.921 2.921 0 00.446.2 1.939 1.939 0 00.651.091 1.7 1.7 0 00.53-.074 1.11 1.11 0 00.37-.189.737.737 0 00.211-.277.835.835 0 00.067-.327.582.582 0 00-.151-.415 1.32 1.32 0 00-.4-.282 3.99 3.99 0 00-.57-.214q-.32-.095-.654-.207a5.952 5.952 0 01-.654-.263 2.262 2.262 0 01-.57-.383 1.736 1.736 0 01-.4-.57 1.966 1.966 0 01-.151-.816 2.081 2.081 0 01.172-.846 1.975 1.975 0 01.517-.7 2.558 2.558 0 01.851-.479 3.544 3.544 0 011.178-.179 3.606 3.606 0 011.358.246 3.027 3.027 0 011.02.647z' fill='%23fff'/%3E%3Cpath data-name='Path 11' d='M177.035 7.071a3.4 3.4 0 00.2.96 1.953 1.953 0 00.407.668 1.6 1.6 0 00.6.394 2.2 2.2 0 00.77.13 2.387 2.387 0 00.727-.1 3.551 3.551 0 00.535-.218c.152-.08.285-.152.4-.218a.671.671 0 01.334-.1.36.36 0 01.323.162l.5.634a2.918 2.918 0 01-.648.566 3.677 3.677 0 01-.748.366 4.1 4.1 0 01-.8.193 5.72 5.72 0 01-.784.057 3.868 3.868 0 01-1.4-.249 3.14 3.14 0 01-1.126-.74 3.461 3.461 0 01-.752-1.21A4.678 4.678 0 01175.3 6.7a3.99 3.99 0 01.24-1.39 3.359 3.359 0 01.685-1.132 3.237 3.237 0 011.091-.763 3.825 3.825 0 012.712-.063 2.754 2.754 0 01.992.636 2.946 2.946 0 01.65 1.027 3.8 3.8 0 01.235 1.389 1.137 1.137 0 01-.084.531.352.352 0 01-.323.137zm3.313-1.049a2.108 2.108 0 00-.1-.636 1.518 1.518 0 00-.284-.524 1.341 1.341 0 00-.482-.355 1.649 1.649 0 00-.679-.13 1.61 1.61 0 00-1.185.429 2.107 2.107 0 00-.552 1.217z' fill='%23fff'/%3E%3Cpath data-name='Path 12' d='M182.832 4.25a4.285 4.285 0 013-1.14 2.926 2.926 0 011.133.207 2.411 2.411 0 01.844.577 2.458 2.458 0 01.523.883 3.394 3.394 0 01.179 1.126v4.558h-.788a.8.8 0 01-.38-.074.516.516 0 01-.211-.3l-.154-.52a6.351 6.351 0 01-.535.432 3.136 3.136 0 01-.542.312 2.8 2.8 0 01-.6.193 3.429 3.429 0 01-.707.067 2.773 2.773 0 01-.844-.123 1.854 1.854 0 01-.669-.369 1.652 1.652 0 01-.436-.612 2.172 2.172 0 01-.154-.851 1.717 1.717 0 01.091-.545 1.578 1.578 0 01.3-.517 2.478 2.478 0 01.537-.464 3.5 3.5 0 01.813-.38 7.073 7.073 0 011.121-.263 11.22 11.22 0 011.464-.123V5.9a1.577 1.577 0 00-.31-1.073 1.134 1.134 0 00-.893-.347 2.131 2.131 0 00-.7.1 3.016 3.016 0 00-.488.221l-.384.221a.758.758 0 01-.383.1.5.5 0 01-.31-.095.782.782 0 01-.2-.221zm3.982 3.13a9.614 9.614 0 00-1.266.13 3.378 3.378 0 00-.824.242 1.083 1.083 0 00-.444.345.855.855 0 00.138 1.084 1.166 1.166 0 00.706.2 2.064 2.064 0 00.925-.193 2.764 2.764 0 00.763-.587z' fill='%23fff'/%3E%3Cpath data-name='Path 13' d='M191.569 4.5a3.093 3.093 0 01.8-1.016 1.712 1.712 0 011.1-.369 1.341 1.341 0 01.8.218l-.112 1.3a.337.337 0 01-.1.179.286.286 0 01-.179.053 1.923 1.923 0 01-.312-.035 2.39 2.39 0 00-.405-.035 1.446 1.446 0 00-.513.084 1.305 1.305 0 00-.405.243 1.639 1.639 0 00-.316.383 3.662 3.662 0 00-.256.513v4.442h-1.737V3.244h1.02a.419.419 0 01.5.313.424.424 0 01.01.123z' fill='%23fff'/%3E%3Cpath data-name='Path 14' d='M199.932 4.771a.847.847 0 01-.151.154.344.344 0 01-.214.057.476.476 0 01-.261-.081 8.118 8.118 0 00-.3-.183 2.218 2.218 0 00-.418-.183 1.9 1.9 0 00-.6-.081 1.823 1.823 0 00-.8.165 1.526 1.526 0 00-.574.474 2.164 2.164 0 00-.34.749 4.006 4.006 0 00-.112 1 3.958 3.958 0 00.123 1.028 2.186 2.186 0 00.355.756 1.523 1.523 0 00.562.464 1.718 1.718 0 00.747.158 1.845 1.845 0 00.671-.1 2.07 2.07 0 00.433-.225c.116-.081.219-.157.305-.225a.462.462 0 01.292-.1.352.352 0 01.316.162l.5.634a3.182 3.182 0 01-.627.566 3.481 3.481 0 01-.7.366 3.558 3.558 0 01-.746.193 5.137 5.137 0 01-.763.057 3.226 3.226 0 01-1.26-.249 2.981 2.981 0 01-1.034-.728 3.482 3.482 0 01-.7-1.171 4.518 4.518 0 01-.256-1.58 4.631 4.631 0 01.228-1.473 3.32 3.32 0 01.672-1.175 3.068 3.068 0 011.1-.777 3.771 3.771 0 011.506-.281 3.581 3.581 0 011.417.26 3.468 3.468 0 011.093.745z' fill='%23fff'/%3E%3Cpath data-name='Path 15' d='M203.07 4.018a3.752 3.752 0 01.929-.64 2.678 2.678 0 011.189-.246 2.583 2.583 0 011.048.2 2.073 2.073 0 01.764.562 2.513 2.513 0 01.464.866 3.68 3.68 0 01.158 1.108v4.593h-1.738V5.868a1.558 1.558 0 00-.3-1.024 1.131 1.131 0 00-.921-.362 1.81 1.81 0 00-.845.2 3.055 3.055 0 00-.746.556v5.219h-1.737V.008h1.737z' fill='%23fff'/%3E%3Cpath data-name='Path 16' d='M219.523 8.063a.378.378 0 01.275.12l.745.808a4.1 4.1 0 01-1.523 1.176 5.26 5.26 0 01-2.17.408 5.137 5.137 0 01-2.037-.387 4.481 4.481 0 01-1.543-1.077 4.71 4.71 0 01-.982-1.646 6.188 6.188 0 01-.341-2.089 5.786 5.786 0 01.366-2.1 4.83 4.83 0 011.03-1.642 4.659 4.659 0 011.586-1.073 5.255 5.255 0 012.039-.383 5.018 5.018 0 011.974.366 4.692 4.692 0 011.466.957l-.633.88a.575.575 0 01-.144.147.406.406 0 01-.242.063.46.46 0 01-.218-.06 2.833 2.833 0 01-.246-.147 10.173 10.173 0 00-.31-.194 2.577 2.577 0 00-.408-.19 3.349 3.349 0 00-.538-.148 3.643 3.643 0 00-.707-.06 3.139 3.139 0 00-1.247.243 2.692 2.692 0 00-.975.7 3.258 3.258 0 00-.633 1.126 4.727 4.727 0 00-.225 1.516 4.456 4.456 0 00.242 1.527 3.354 3.354 0 00.657 1.125 2.8 2.8 0 00.978.7 3.027 3.027 0 001.21.242 5.283 5.283 0 00.7-.042 2.93 2.93 0 00.577-.134 2.506 2.506 0 00.5-.235 3.169 3.169 0 00.469-.354.616.616 0 01.147-.1.362.362 0 01.161-.043z' fill='%23fff'/%3E%3Cpath data-name='Path 17' d='M224.4 3.132a3.951 3.951 0 011.459.26 3.173 3.173 0 011.126.739 3.238 3.238 0 01.725 1.169 4.826 4.826 0 010 3.087 3.311 3.311 0 01-.721 1.175 3.147 3.147 0 01-1.126.746 3.908 3.908 0 01-1.459.261 3.969 3.969 0 01-1.47-.261 3.132 3.132 0 01-1.129-.746 3.352 3.352 0 01-.726-1.175 4.772 4.772 0 010-3.087 3.286 3.286 0 01.726-1.168 3.185 3.185 0 011.129-.739 3.968 3.968 0 011.466-.261zm0 6.1a1.526 1.526 0 001.333-.606 3.022 3.022 0 00.432-1.772 3.064 3.064 0 00-.432-1.78 1.52 1.52 0 00-1.333-.612 1.55 1.55 0 00-1.354.615 3.035 3.035 0 00-.44 1.777 3 3 0 00.44 1.769 1.559 1.559 0 001.354.607z' fill='%23fff'/%3E%3Cpath data-name='Path 18' d='M230.84.008v10.453h-1.74V.008z' fill='%23fff'/%3E%3Cpath data-name='Path 19' d='M234.125.008v10.453h-1.738V.008z' fill='%23fff'/%3E%3Cpath data-name='Path 20' d='M235.483 4.25a4.276 4.276 0 013-1.14 2.926 2.926 0 011.133.207 2.393 2.393 0 01.845.577 2.484 2.484 0 01.524.883 3.4 3.4 0 01.18 1.126v4.558h-.789a.8.8 0 01-.379-.074.505.505 0 01-.211-.3l-.155-.52a6.159 6.159 0 01-.531.433 3.136 3.136 0 01-.542.312 2.8 2.8 0 01-.6.193 3.429 3.429 0 01-.707.067 2.784 2.784 0 01-.845-.123 1.861 1.861 0 01-.667-.369 1.633 1.633 0 01-.436-.612 2.156 2.156 0 01-.156-.851 1.717 1.717 0 01.091-.545 1.625 1.625 0 01.3-.517 2.51 2.51 0 01.538-.464 3.476 3.476 0 01.812-.38 7.059 7.059 0 011.122-.263 11.19 11.19 0 011.463-.123V5.9a1.581 1.581 0 00-.309-1.073 1.135 1.135 0 00-.894-.347 2.131 2.131 0 00-.7.1 3.026 3.026 0 00-.489.221c-.14.082-.269.156-.383.221a.758.758 0 01-.383.1.509.509 0 01-.315-.093.81.81 0 01-.2-.221zm3.98 3.13a9.787 9.787 0 00-1.266.13 3.383 3.383 0 00-.823.242 1.08 1.08 0 00-.443.345.749.749 0 00-.134.429.757.757 0 00.271.655 1.169 1.169 0 00.707.2 2.064 2.064 0 00.925-.193 2.741 2.741 0 00.762-.587z' fill='%23fff'/%3E%3Cpath data-name='Path 21' d='M244.317 4.131a3.574 3.574 0 01.968-.728 2.636 2.636 0 011.212-.27 2.536 2.536 0 011.13.246 2.417 2.417 0 01.858.706 3.319 3.319 0 01.545 1.115 5.258 5.258 0 01.19 1.471 5.483 5.483 0 01-.218 1.6 3.668 3.668 0 01-.622 1.229 2.78 2.78 0 01-2.241 1.073 2.627 2.627 0 01-.612-.067 2.338 2.338 0 01-.507-.187 2.052 2.052 0 01-.425-.291 3.515 3.515 0 01-.369-.383l-.077.485a.437.437 0 01-.144.261.456.456 0 01-.278.077h-1.146V.008h1.737zm0 4.459a1.7 1.7 0 00.644.507 1.852 1.852 0 00.734.148 1.742 1.742 0 00.722-.144 1.368 1.368 0 00.544-.45 2.245 2.245 0 00.345-.781 4.718 4.718 0 00.12-1.136 2.934 2.934 0 00-.394-1.72 1.326 1.326 0 00-1.133-.53 1.641 1.641 0 00-.873.228 2.908 2.908 0 00-.711.644z' fill='%23fff'/%3E%3Cpath data-name='Path 22' d='M253.546 3.132a3.951 3.951 0 011.459.26 3.173 3.173 0 011.126.739 3.238 3.238 0 01.721 1.168 4.826 4.826 0 010 3.087 3.311 3.311 0 01-.721 1.175 3.147 3.147 0 01-1.126.746 3.908 3.908 0 01-1.459.261 3.969 3.969 0 01-1.47-.261 3.149 3.149 0 01-1.13-.746 3.373 3.373 0 01-.725-1.175 4.772 4.772 0 010-3.087 3.3 3.3 0 01.725-1.168 3.2 3.2 0 011.13-.739 3.968 3.968 0 011.47-.26zm0 6.1a1.526 1.526 0 001.333-.606 3.022 3.022 0 00.432-1.772 3.064 3.064 0 00-.432-1.78 1.52 1.52 0 00-1.333-.612 1.55 1.55 0 00-1.354.615 3.035 3.035 0 00-.44 1.777 3 3 0 00.44 1.769 1.559 1.559 0 001.354.607z' fill='%23fff'/%3E%3Cpath data-name='Path 23' d='M259.862 4.5a3.116 3.116 0 01.8-1.016 1.714 1.714 0 011.1-.369 1.348 1.348 0 01.8.218l-.113 1.3a.337.337 0 01-.1.179.286.286 0 01-.179.053 1.935 1.935 0 01-.313-.035 2.39 2.39 0 00-.405-.035 1.441 1.441 0 00-.512.084 1.286 1.286 0 00-.4.243 1.668 1.668 0 00-.317.383 3.775 3.775 0 00-.256.513v4.442h-1.74V3.244h1.02a.57.57 0 01.374.095.561.561 0 01.14.341z' fill='%23fff'/%3E%3Cpath data-name='Path 24' d='M263 4.25a4.281 4.281 0 013-1.14 2.926 2.926 0 011.133.207 2.393 2.393 0 01.845.577 2.481 2.481 0 01.523.883 3.394 3.394 0 01.179 1.123v4.558h-.789a.8.8 0 01-.38-.074.513.513 0 01-.211-.3l-.155-.52a6.351 6.351 0 01-.535.432 3.127 3.127 0 01-.541.312 2.858 2.858 0 01-.6.193 3.413 3.413 0 01-.706.067 2.753 2.753 0 01-.845-.123 1.85 1.85 0 01-.668-.369 1.633 1.633 0 01-.436-.612 2.156 2.156 0 01-.156-.851 1.718 1.718 0 01.092-.545 1.614 1.614 0 01.3-.517 2.459 2.459 0 01.538-.464 3.476 3.476 0 01.812-.38 7.059 7.059 0 011.122-.263 11.19 11.19 0 011.463-.123V5.9a1.575 1.575 0 00-.31-1.073 1.134 1.134 0 00-.893-.347 2.131 2.131 0 00-.7.1 3.026 3.026 0 00-.489.221q-.21.123-.383.221a.758.758 0 01-.383.1.506.506 0 01-.31-.095.782.782 0 01-.2-.221zm3.981 3.13a9.614 9.614 0 00-1.266.13 3.378 3.378 0 00-.824.242 1.086 1.086 0 00-.443.345.855.855 0 00.137 1.084 1.166 1.166 0 00.706.2 2.071 2.071 0 00.926-.193 2.741 2.741 0 00.762-.587z' fill='%23fff'/%3E%3Cpath data-name='Path 25' d='M277.279 10.461h-1.737V4.546h-3.349v3.909a.775.775 0 00.165.528.569.569 0 00.453.189.827.827 0 00.271-.039 1.311 1.311 0 00.189-.081c.054-.028.1-.055.144-.081a.249.249 0 01.127-.039.2.2 0 01.126.039.588.588 0 01.107.116l.52.845a2.649 2.649 0 01-.873.478 3.239 3.239 0 01-1.02.162 1.9 1.9 0 01-1.445-.531 2.05 2.05 0 01-.5-1.467v-4.03h-.739a.339.339 0 01-.24-.092.358.358 0 01-.1-.274v-.69l1.16-.2.366-1.962a.369.369 0 01.388-.3h.9V3.3h5.086zm.3-9.348a1.034 1.034 0 01-.091.425 1.125 1.125 0 01-.6.583 1.1 1.1 0 01-.439.088 1.024 1.024 0 01-.422-.088 1.118 1.118 0 01-.58-.584 1.038 1.038 0 01-.088-.425 1.035 1.035 0 01.088-.432 1.161 1.161 0 01.235-.352 1.133 1.133 0 01.345-.24 1.024 1.024 0 01.42-.088 1.127 1.127 0 01.8.327 1.2 1.2 0 01.243.352 1.029 1.029 0 01.092.434z' fill='%23fff'/%3E%3Cpath data-name='Path 26' d='M282.034 3.132a3.955 3.955 0 011.459.26 3.173 3.173 0 011.126.739 3.213 3.213 0 01.72 1.168 4.8 4.8 0 010 3.087 3.286 3.286 0 01-.72 1.175 3.147 3.147 0 01-1.126.746 3.908 3.908 0 01-1.459.261 3.969 3.969 0 01-1.47-.261 3.145 3.145 0 01-1.129-.746 3.373 3.373 0 01-.725-1.175 4.772 4.772 0 010-3.087 3.3 3.3 0 01.725-1.168 3.185 3.185 0 011.129-.739 3.988 3.988 0 011.47-.26zm0 6.1a1.53 1.53 0 001.333-.606 3.022 3.022 0 00.432-1.772 3.064 3.064 0 00-.432-1.78 1.52 1.52 0 00-1.333-.612 1.55 1.55 0 00-1.354.615 3.035 3.035 0 00-.44 1.777 3 3 0 00.44 1.769 1.559 1.559 0 001.354.607z' fill='%23fff'/%3E%3Cpath data-name='Path 27' d='M288.337 4.131a4.559 4.559 0 01.461-.405 2.912 2.912 0 01.513-.316 2.838 2.838 0 011.255-.277 2.583 2.583 0 011.048.2 2.054 2.054 0 01.764.562 2.471 2.471 0 01.464.866A3.68 3.68 0 01293 5.869v4.593h-1.736V5.868a1.552 1.552 0 00-.3-1.024 1.131 1.131 0 00-.921-.362 1.809 1.809 0 00-.844.2 3.06 3.06 0 00-.747.556v5.219h-1.737V3.244h1.062a.427.427 0 01.444.317z' fill='%23fff'/%3E%3Cpath data-name='Path 28' d='M109.721 17.037a.672.672 0 01-.179.214.4.4 0 01-.235.067.6.6 0 01-.32-.109 8.837 8.837 0 00-.411-.242 3.457 3.457 0 00-.559-.242 2.362 2.362 0 00-.756-.109 2.238 2.238 0 00-.69.1 1.464 1.464 0 00-.5.263 1.039 1.039 0 00-.3.4 1.312 1.312 0 00-.1.517.9.9 0 00.2.6 1.681 1.681 0 00.531.408 4.842 4.842 0 00.753.3q.422.133.865.285a8.22 8.22 0 01.866.352 2.931 2.931 0 01.753.507 2.307 2.307 0 01.53.748 2.609 2.609 0 01.2 1.076 3.52 3.52 0 01-.235 1.292 2.967 2.967 0 01-.69 1.048 3.254 3.254 0 01-1.107.7 4.1 4.1 0 01-1.5.256 4.881 4.881 0 01-.957-.1 4.959 4.959 0 01-.9-.27 4.858 4.858 0 01-.813-.422 4.008 4.008 0 01-.676-.549l.556-.908a.6.6 0 01.183-.165.46.46 0 01.24-.067.677.677 0 01.38.144q.2.144.485.32a3.845 3.845 0 00.658.32 2.531 2.531 0 00.9.144 1.854 1.854 0 001.253-.383 1.376 1.376 0 00.443-1.1 1.025 1.025 0 00-.2-.654 1.633 1.633 0 00-.53-.425 3.922 3.922 0 00-.754-.292q-.422-.119-.858-.26a7.542 7.542 0 01-.859-.338 2.781 2.781 0 01-.752-.514 2.345 2.345 0 01-.531-.791 3 3 0 01-.2-1.171 2.76 2.76 0 01.221-1.083 2.8 2.8 0 01.643-.936 3.168 3.168 0 011.042-.655 3.83 3.83 0 011.421-.246 4.787 4.787 0 011.66.281 3.751 3.751 0 011.3.789z' fill='%23fff'/%3E%3Cpath data-name='Path 29' d='M114.707 18.03a3.936 3.936 0 011.46.26 3.178 3.178 0 011.125.739 3.238 3.238 0 01.721 1.168 4.842 4.842 0 010 3.088 3.3 3.3 0 01-.721 1.174 3.134 3.134 0 01-1.125.746 3.917 3.917 0 01-1.46.261 3.974 3.974 0 01-1.471-.261 3.133 3.133 0 01-1.128-.746 3.369 3.369 0 01-.725-1.174 4.775 4.775 0 010-3.088 3.284 3.284 0 01.725-1.168 3.181 3.181 0 011.128-.739 4 4 0 011.471-.26zm0 6.1a1.53 1.53 0 001.333-.606 3.03 3.03 0 00.433-1.772 3.071 3.071 0 00-.433-1.78 1.52 1.52 0 00-1.333-.612 1.555 1.555 0 00-1.354.615 3.034 3.034 0 00-.439 1.777 3 3 0 00.439 1.769 1.559 1.559 0 001.354.607z' fill='%23fff'/%3E%3Cpath data-name='Path 30' d='M125.6 18.142v7.217h-1.062a.41.41 0 01-.437-.317l-.118-.576a3.878 3.878 0 01-.979.727 2.692 2.692 0 01-1.259.278 2.561 2.561 0 01-1.044-.2 2.1 2.1 0 01-.763-.566 2.469 2.469 0 01-.468-.869 3.674 3.674 0 01-.158-1.107v-4.587h1.737v4.587a1.533 1.533 0 00.306 1.023 1.135 1.135 0 00.917.362 1.834 1.834 0 00.844-.2 2.977 2.977 0 00.747-.552v-5.22z' fill='%23fff'/%3E%3Cpath data-name='Path 31' d='M129.515 25.471a1.9 1.9 0 01-1.446-.531 2.05 2.05 0 01-.5-1.467v-4.03h-.738a.339.339 0 01-.24-.092.358.358 0 01-.1-.274v-.692l1.161-.19.366-1.969a.381.381 0 01.133-.218.4.4 0 01.254-.077h.9V18.2h1.927v1.239h-1.927v3.911a.775.775 0 00.165.528.571.571 0 00.454.189.8.8 0 00.27-.039 1.323 1.323 0 00.19-.081c.054-.028.1-.055.144-.081a.24.24 0 01.127-.039.2.2 0 01.126.039.609.609 0 01.1.116l.521.845a2.654 2.654 0 01-.872.478 3.241 3.241 0 01-1.015.166z' fill='%23fff'/%3E%3Cpath data-name='Path 32' d='M133.869 18.916a3.752 3.752 0 01.929-.64 2.684 2.684 0 011.187-.244 2.583 2.583 0 011.048.2 2.05 2.05 0 01.763.562 2.471 2.471 0 01.464.866 3.681 3.681 0 01.159 1.108v4.593h-1.734v-4.6a1.558 1.558 0 00-.3-1.024 1.133 1.133 0 00-.922-.361 1.809 1.809 0 00-.844.2 3.055 3.055 0 00-.746.556v5.219h-1.737V14.906h1.737z' fill='%23fff'/%3E%3Cpath data-name='Path 33' d='M149.294 23.8v1.56h-5.958V15.192h1.892V23.8z' fill='%23fff'/%3E%3Cpath data-name='Path 34' d='M152.987 18.03a3.951 3.951 0 011.459.26 3.2 3.2 0 011.127.739 3.257 3.257 0 01.72 1.168 4.829 4.829 0 010 3.088 3.327 3.327 0 01-.72 1.174 3.151 3.151 0 01-1.127.746 3.908 3.908 0 01-1.459.261 3.969 3.969 0 01-1.47-.261 3.132 3.132 0 01-1.129-.746 3.369 3.369 0 01-.725-1.174 4.775 4.775 0 010-3.088 3.284 3.284 0 01.725-1.168 3.185 3.185 0 011.129-.739 3.968 3.968 0 011.47-.26zm0 6.1a1.527 1.527 0 001.333-.606 3.022 3.022 0 00.432-1.772 3.066 3.066 0 00-.432-1.78 1.52 1.52 0 00-1.333-.612 1.55 1.55 0 00-1.353.615 3.035 3.035 0 00-.44 1.777 3 3 0 00.44 1.769 1.557 1.557 0 001.353.607z' fill='%23fff'/%3E%3Cpath data-name='Path 35' d='M159.29 19.029a4.659 4.659 0 01.46-.405 3.036 3.036 0 01.513-.316 2.829 2.829 0 011.256-.277 2.583 2.583 0 011.048.2 2.061 2.061 0 01.763.562 2.471 2.471 0 01.464.866 3.681 3.681 0 01.159 1.108v4.593h-1.738v-4.594a1.552 1.552 0 00-.3-1.024 1.133 1.133 0 00-.922-.361 1.809 1.809 0 00-.844.2 3.055 3.055 0 00-.746.556v5.219h-1.738v-7.214h1.062a.427.427 0 01.444.317z' fill='%23fff'/%3E%3Cpath data-name='Path 36' d='M171.656 14.906v10.453h-1.062a.409.409 0 01-.436-.317l-.148-.7a3.636 3.636 0 01-1 .809 2.7 2.7 0 01-1.319.31 2.378 2.378 0 01-1.083-.247 2.424 2.424 0 01-.848-.713 3.435 3.435 0 01-.549-1.157 5.858 5.858 0 01-.193-1.576 4.925 4.925 0 01.218-1.491 3.615 3.615 0 01.626-1.2 2.92 2.92 0 01.978-.791 2.829 2.829 0 011.281-.286 2.545 2.545 0 011.034.19 2.647 2.647 0 01.767.514v-3.8zm-1.737 5.079a1.71 1.71 0 00-.643-.506 1.911 1.911 0 00-.75-.148 1.669 1.669 0 00-.71.148 1.421 1.421 0 00-.541.446 2.158 2.158 0 00-.346.76 4.364 4.364 0 00-.12 1.086 4.777 4.777 0 00.1 1.073 2.1 2.1 0 00.291.718 1.111 1.111 0 00.464.4 1.482 1.482 0 00.612.123 1.769 1.769 0 00.922-.226 2.742 2.742 0 00.718-.64z' fill='%23fff'/%3E%3Cpath data-name='Path 37' d='M176.354 18.03a3.957 3.957 0 011.46.26 3.192 3.192 0 011.125.739 3.246 3.246 0 01.721 1.168 4.842 4.842 0 010 3.088 3.33 3.33 0 01-.721 1.174 3.143 3.143 0 01-1.125.746 3.917 3.917 0 01-1.46.261 3.974 3.974 0 01-1.471-.261 3.133 3.133 0 01-1.128-.746 3.369 3.369 0 01-.725-1.174 4.775 4.775 0 010-3.088 3.284 3.284 0 01.725-1.168 3.181 3.181 0 011.128-.739 4 4 0 011.471-.26zm0 6.1a1.531 1.531 0 001.333-.606 3.037 3.037 0 00.432-1.772 3.074 3.074 0 00-.432-1.78 1.523 1.523 0 00-1.333-.612 1.553 1.553 0 00-1.354.615 3.034 3.034 0 00-.439 1.777 3 3 0 00.439 1.769 1.559 1.559 0 001.354.607z' fill='%23fff'/%3E%3Cpath data-name='Path 38' d='M182.657 19.029a4.659 4.659 0 01.46-.405 3.036 3.036 0 01.513-.316 2.829 2.829 0 011.256-.277 2.583 2.583 0 011.048.2 2.05 2.05 0 01.763.562 2.471 2.471 0 01.464.866 3.681 3.681 0 01.159 1.108v4.593h-1.738v-4.594a1.558 1.558 0 00-.3-1.024 1.13 1.13 0 00-.922-.361 1.809 1.809 0 00-.844.2 3.055 3.055 0 00-.746.556v5.219h-1.737v-7.214h1.067a.427.427 0 01.444.317z' fill='%23fff'/%3E%3Cpath data-name='Path 39' d='M17.03.273v15.443L5.145.273H0v25.084h5.508V9.41L17.79 25.357h4.746V.273z' fill='%23fff'/%3E%3Cpath data-name='Rectangle 1' fill='%23fff' d='M26.997.273h5.58v25.084h-5.58z'/%3E%3Cpath data-name='Path 40' d='M52.907.273v10.1H42.616V.273h-5.584v25.084h5.58v-9.641H52.9v9.64h5.58V.273z' fill='%23fff'/%3E%3Cpath data-name='Path 41' d='M75.6 10.364l-.282.009h-6.777v-5.12h6.785l.282.009c1.209.035 2.9.506 2.9 2.552s-1.695 2.515-2.9 2.551m2.865 4.443c3.189-.665 5.551-3.128 5.551-7.172A7.009 7.009 0 0077.367.292a6.727 6.727 0 00-.426-.008V.272H62.947v25.085h5.579v-9.641h4.131l5.943 9.641h6.384z' fill='%23fff'/%3E%3Cpath data-name='Rectangle 2' fill='%23ea5d4e' d='M93.271.273h2.214v25.081h-2.214z'/%3E%3C/g%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
  }
  .site-branding .logo img {
    position: absolute !important;
    height: 1px;
    width: 1px;
    overflow: hidden;
    clip: rect(1px, 1px, 1px, 1px);
  }
}
@media only screen and (min-width: 408px) {
  .site-branding .logo {
    width: 14.0625rem;
  }
}
@media only screen and (min-width: 480px) {
  .site-branding .logo {
    width: 15rem;
  }
}
@media only screen and (min-width: 624px) {
  .site-branding .logo {
    width: 16.25rem;
  }
}
@media only screen and (min-width: 696px) {
  .site-branding .logo {
    width: 18.3125rem;
  }
}

.full_width__header .block.menu--highlight-menu-main {
  display: none;
}
@media only screen and (min-width: 768px) {
  .full_width__header .block.menu--highlight-menu-main {
    display: block;
  }
  .full_width__header .block.menu--highlight-menu-main ul.menu {
    display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6, BB7 */
    display: -ms-flexbox; /* TWEENER - IE 10 */
    display: -webkit-flex; /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
    display: flex; /* NEW, Spec - Firefox, Chrome, Opera */
    flex-wrap: nowrap;
    justify-content: flex-end;
    -webkit-font-smoothing: antialiased;
    color: #112C53;
    font-family: "Lato", Helvetica, Arial, sans-serif;
    font-weight: 700;
    line-height: 1.45em;
    font-size: 1.0625rem;
    letter-spacing: 0;
    margin-top: 0;
    margin-bottom: 0.85em;
    margin: 0;
  }
}
@media only screen and (min-width: 768px) and (min-width: 1272px) {
  .full_width__header .block.menu--highlight-menu-main ul.menu {
    font-size: 1.125rem;
  }
}
@media only screen and (min-width: 768px) and (min-width: 1344px) {
  .full_width__header .block.menu--highlight-menu-main ul.menu {
    font-size: 1.1875rem;
  }
}
@media only screen and (min-width: 768px) and (min-width: 1488px) {
  .full_width__header .block.menu--highlight-menu-main ul.menu {
    font-size: 1.25rem;
  }
}
@media only screen and (min-width: 768px) {
  .full_width__header .block.menu--highlight-menu-main ul.menu li {
    margin-right: 2.4em;
    display: none;
  }
  .full_width__header .block.menu--highlight-menu-main ul.menu li:nth-child(-n+4) {
    display: block;
  }
  .full_width__header .block.menu--highlight-menu-main ul.menu li:last-child, .full_width__header .block.menu--highlight-menu-main ul.menu li:nth-child(4) {
    margin-right: 0;
  }
  .full_width__header .block.menu--highlight-menu-main ul.menu li a {
    color: #FED47A;
    display: block;
  }
  .full_width__header .block.menu--highlight-menu-main ul.menu li a:hover, .full_width__header .block.menu--highlight-menu-main ul.menu li a:focus, .full_width__header .block.menu--highlight-menu-main ul.menu li a.menu-item--active-trail {
    color: #4EB6BC;
  }
}

.full_width__header .block.menu--highlight-menu-sub {
  display: none;
}
@media only screen and (min-width: 768px) {
  .full_width__header .block.menu--highlight-menu-sub {
    display: block;
  }
  .full_width__header .block.menu--highlight-menu-sub ul.menu {
    display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6, BB7 */
    display: -ms-flexbox; /* TWEENER - IE 10 */
    display: -webkit-flex; /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
    display: flex; /* NEW, Spec - Firefox, Chrome, Opera */
    flex-wrap: nowrap;
    justify-content: flex-end;
    font-family: "Lato", Helvetica, Arial, sans-serif;
    font-weight: 400;
    letter-spacing: 0;
    text-transform: none;
    -webkit-font-smoothing: antialiased;
    line-height: 1.4em;
    font-size: 0.875rem;
    margin: 0;
  }
  .full_width__header .block.menu--highlight-menu-sub ul.menu li {
    margin-right: 1.95em;
    display: none;
  }
  .full_width__header .block.menu--highlight-menu-sub ul.menu li:nth-child(-n+4) {
    display: block;
  }
  .full_width__header .block.menu--highlight-menu-sub ul.menu li:last-child, .full_width__header .block.menu--highlight-menu-sub ul.menu li:nth-child(4) {
    margin-right: 0;
  }
  .full_width__header .block.menu--highlight-menu-sub ul.menu li a {
    color: white;
    display: block;
  }
  .full_width__header .block.menu--highlight-menu-sub ul.menu li a:hover, .full_width__header .block.menu--highlight-menu-sub ul.menu li a:focus, .full_width__header .block.menu--highlight-menu-sub ul.menu li a.menu-item--active-trail {
    color: #4EB6BC;
  }
}

section.full_width__header .skip_link:focus {
  color: white;
}

.search-block-form {
  display: none;
}

.full_width__header .block.menu--main {
  display: none;
}
.full_width__header .block.menu--main.toggleMenu_setup {
  display: block;
}
.full_width__header .block.menu--main .overlay_outer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6, BB7 */
  display: -ms-flexbox; /* TWEENER - IE 10 */
  display: -webkit-flex; /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
  display: flex; /* NEW, Spec - Firefox, Chrome, Opera */
  overflow: hidden;
  z-index: 10;
  background-color: #112C53;
  transform: translateZ(0);
  opacity: 0;
  transition: opacity 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
}
.full_width__header .block.menu--main .overlay_outer .content_overlay {
  display: none;
}
.full_width__header .block.menu--main .overlay_outer .overlay_inner {
  flex-grow: 1;
  box-sizing: content-box;
  max-width: 69.75rem;
  padding-left: 6%;
  padding-right: 6%;
  margin: 0 auto;
}
@media only screen and (min-width: 480px) {
  .full_width__header .block.menu--main .overlay_outer .overlay_inner {
    padding-left: 4%;
    padding-right: 4%;
  }
}
@media only screen and (min-width: 552px) {
  .full_width__header .block.menu--main .overlay_outer .overlay_inner {
    padding-left: 3.5%;
    padding-right: 3.5%;
  }
}
@media only screen and (min-width: 696px) {
  .full_width__header .block.menu--main .overlay_outer .overlay_inner {
    padding-left: 3%;
    padding-right: 3%;
  }
}
.full_width__header .block.menu--main .overlay_outer .overlay_inner .overlay_wrap {
  box-sizing: border-box;
  width: 100%;
  overflow-x: hidden;
  overflow-y: auto;
}
.full_width__header .block.menu--main .overlay_outer.closed {
  display: block;
}
.full_width__header .block.menu--main .overlay_outer.open {
  opacity: 1;
}
.full_width__header .block.menu--main .overlay_outer.overlay_hidden {
  display: none;
}
.full_width__header .block.menu--main .overlay_outer .overlay_inner {
  display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6, BB7 */
  display: -ms-flexbox; /* TWEENER - IE 10 */
  display: -webkit-flex; /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
  display: flex; /* NEW, Spec - Firefox, Chrome, Opera */
  flex-direction: column;
  padding-top: 1.5rem;
  padding-bottom: 5rem;
  overflow: hidden;
}
.full_width__header .block.menu--main .toggle_button_wrap {
  display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6, BB7 */
  display: -ms-flexbox; /* TWEENER - IE 10 */
  display: -webkit-flex; /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
  display: flex; /* NEW, Spec - Firefox, Chrome, Opera */
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.full_width__header .block.menu--main .toggle_button_wrap button {
  margin-left: 0.75rem;
}
.full_width__header .block.menu--main .toggle_button_wrap button:first-child {
  margin-left: 0;
}
@media only screen and (min-width: 768px) {
  .full_width__header .block.menu--main .mainNavOverlay_toggle_button.opensMode__Menu {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  .full_width__header .block.menu--main .mainNavOverlay_toggle_button.opensMode__Menu {
    display: inline-block;
    overflow: hidden;
    text-align: left;
    text-indent: -9999px;
    line-height: 0;
    box-sizing: border-box;
    padding: 0;
    width: 1.5625rem;
    min-width: 0;
    height: 1.5625rem;
    overflow: hidden;
    position: relative;
    background-repeat: no-repeat;
    background-color: transparent;
    background-position: 50% 50%;
    border: 0;
    background-size: 95% auto;
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg data-name='Layer 1' xmlns='http://www.w3.org/2000/svg' width='22.704' height='20.972'%3E%3Cg data-name='Group 444'%3E%3Ccircle cx='1.892' cy='1.892' r='1.892' fill='%23fff' data-name='Ellipse 18'/%3E%3Cpath fill='%23fff' d='M11.193.657h11.511v2H11.193z' data-name='Line 65'/%3E%3Cg data-name='Group 166'%3E%3Cpath fill='%23fff' d='M0 9.486h22.704v2H0z' data-name='Line 69'/%3E%3Ccircle cx='20.812' cy='19.08' r='1.892' fill='%23fff' data-name='Ellipse 21'/%3E%3Cpath fill='%23fff' d='M0 18.315h11.511v2H0z' data-name='Line 68'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  }
  .full_width__header .block.menu--main .mainNavOverlay_toggle_button.opensMode__Menu:hover, .full_width__header .block.menu--main .mainNavOverlay_toggle_button.opensMode__Menu:focus {
    background-color: transparent;
  }
  .full_width__header .block.menu--main .mainNavOverlay_toggle_button.opensMode__Menu .line {
    display: none;
  }
  .full_width__header .block.menu--main .mainNavOverlay_toggle_button.opensMode__Menu:hover, .full_width__header .block.menu--main .mainNavOverlay_toggle_button.opensMode__Menu:focus {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg data-name='Layer 1' xmlns='http://www.w3.org/2000/svg' width='22.704' height='20.972'%3E%3Cg data-name='Group 444'%3E%3Ccircle cx='1.892' cy='1.892' r='1.892' fill='%232ea9b0' data-name='Ellipse 18'/%3E%3Cpath fill='%232ea9b0' d='M11.193.657h11.511v2H11.193z' data-name='Line 65'/%3E%3Cg data-name='Group 166'%3E%3Cpath fill='%232ea9b0' d='M0 9.486h22.704v2H0z' data-name='Line 69'/%3E%3Ccircle cx='20.812' cy='19.08' r='1.892' fill='%232ea9b0' data-name='Ellipse 21'/%3E%3Cpath fill='%232ea9b0' d='M0 18.315h11.511v2H0z' data-name='Line 68'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  }
}
.full_width__header .block.menu--main .mainNavOverlay_toggle_button.opensMode__search {
  display: inline-block;
  overflow: hidden;
  text-align: left;
  text-indent: -9999px;
  line-height: 0;
  box-sizing: border-box;
  padding: 0;
  width: 1.5625rem;
  min-width: 0;
  height: 1.5625rem;
  overflow: hidden;
  position: relative;
  background-repeat: no-repeat;
  background-color: transparent;
  background-position: 50% 50%;
  border: 0;
  background-repeat: no-repeat;
  background-size: 84% auto;
  background-position: 50% 55%;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg data-name='Layer 1' xmlns='http://www.w3.org/2000/svg' width='20.997' height='20.977'%3E%3Cpath d='M12.705 0a8.279 8.279 0 00-6.531 13.384L0 19.563l1.415 1.414L7.586 14.8A8.288 8.288 0 1012.705 0zm0 14.584A6.292 6.292 0 1119 8.292a6.3 6.3 0 01-6.295 6.292z' fill='%23fff'/%3E%3C/svg%3E");
}
.full_width__header .block.menu--main .mainNavOverlay_toggle_button.opensMode__search:hover, .full_width__header .block.menu--main .mainNavOverlay_toggle_button.opensMode__search:focus {
  background-color: transparent;
}
.full_width__header .block.menu--main .mainNavOverlay_toggle_button.opensMode__search:hover, .full_width__header .block.menu--main .mainNavOverlay_toggle_button.opensMode__search:focus {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg data-name='Layer 1' xmlns='http://www.w3.org/2000/svg' width='20.997' height='20.977'%3E%3Cpath d='M12.705 0a8.279 8.279 0 00-6.531 13.384L0 19.563l1.415 1.414L7.586 14.8A8.288 8.288 0 1012.705 0zm0 14.584A6.292 6.292 0 1119 8.292a6.3 6.3 0 01-6.295 6.292z' fill='%232ea9b0'/%3E%3C/svg%3E");
}
@media only screen and (min-width: 768px) {
  .full_width__header .block.menu--main .mainNavOverlay_toggle_button.opensMode__search {
    background-size: 73% auto;
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg data-name='Layer 1' xmlns='http://www.w3.org/2000/svg' width='18.868' height='18.851'%3E%3Cpath d='M11.454 0a7.4 7.4 0 00-5.9 11.882L0 17.437l1.415 1.414L6.962 13.3A7.41 7.41 0 1011.454 0zm0 12.828a5.414 5.414 0 115.414-5.414 5.42 5.42 0 01-5.414 5.414z' fill='%23fff'/%3E%3C/svg%3E");
  }
  .full_width__header .block.menu--main .mainNavOverlay_toggle_button.opensMode__search:hover, .full_width__header .block.menu--main .mainNavOverlay_toggle_button.opensMode__search:focus {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg data-name='Layer 1' xmlns='http://www.w3.org/2000/svg' width='18.868' height='18.851'%3E%3Cpath d='M11.454 0a7.4 7.4 0 00-5.9 11.882L0 17.437l1.415 1.414L6.962 13.3A7.41 7.41 0 1011.454 0zm0 12.828a5.414 5.414 0 115.414-5.414 5.42 5.42 0 01-5.414 5.414z' fill='%232ea9b0'/%3E%3C/svg%3E");
  }
}
.full_width__header .block.menu--main .overlay_controls {
  display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6, BB7 */
  display: -ms-flexbox; /* TWEENER - IE 10 */
  display: -webkit-flex; /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
  display: flex; /* NEW, Spec - Firefox, Chrome, Opera */
  justify-content: flex-end;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  margin-bottom: 3.25rem;
}
.full_width__header .block.menu--main .overlay_controls .control_buttons {
  display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6, BB7 */
  display: -ms-flexbox; /* TWEENER - IE 10 */
  display: -webkit-flex; /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
  display: flex; /* NEW, Spec - Firefox, Chrome, Opera */
  justify-content: flex-end;
}
.full_width__header .block.menu--main .overlay_controls button {
  flex-shrink: 0;
  position: relative;
  display: block;
  overflow: hidden;
  text-align: left;
  text-indent: -9999px;
  width: 2rem;
  height: 2rem;
  background-color: transparent;
  background-position: 50% 50%;
  border: 0;
  border-radius: 0;
  border: 0;
  padding: 0;
  margin-left: 0.75rem;
}
@media only screen and (min-width: 552px) {
  .full_width__header .block.menu--main .overlay_controls button {
    width: 3.125rem;
    height: 3.125rem;
  }
}
.full_width__header .block.menu--main #closeMainNavPageOverlayBtn {
  display: inline-block;
  overflow: hidden;
  text-align: left;
  text-indent: -9999px;
  line-height: 0;
  box-sizing: border-box;
  padding: 0;
  width: 1.5625rem;
  min-width: 0;
  height: 1.5625rem;
  overflow: hidden;
  position: relative;
  background-repeat: no-repeat;
  background-color: transparent;
  background-position: 50% 50%;
  border: 0;
}
.full_width__header .block.menu--main #closeMainNavPageOverlayBtn:hover, .full_width__header .block.menu--main #closeMainNavPageOverlayBtn:focus {
  background-color: transparent;
}
.full_width__header .block.menu--main #closeMainNavPageOverlayBtn .line {
  display: block;
  width: 90%;
  height: 0;
  background-color: transparent;
  border-bottom: 0.125rem solid white;
  position: absolute;
  top: 50%;
  left: 50%;
  transform-origin: 50% 55%;
}
.full_width__header .block.menu--main #closeMainNavPageOverlayBtn .line.id_1 {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.full_width__header .block.menu--main #closeMainNavPageOverlayBtn .line.id_2 {
  transform: translate(-50%, -50%) rotate(45deg);
}
.full_width__header .block.menu--main #switchModeInMainOverlay.mode__menu {
  display: inline-block;
  overflow: hidden;
  text-align: left;
  text-indent: -9999px;
  line-height: 0;
  box-sizing: border-box;
  padding: 0;
  width: 1.5625rem;
  min-width: 0;
  height: 1.5625rem;
  overflow: hidden;
  position: relative;
  background-repeat: no-repeat;
  background-color: transparent;
  background-position: 50% 50%;
  border: 0;
  background-repeat: no-repeat;
  background-size: 84% auto;
  background-position: 50% 55%;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg data-name='Layer 1' xmlns='http://www.w3.org/2000/svg' width='20.997' height='20.977'%3E%3Cpath d='M12.705 0a8.279 8.279 0 00-6.531 13.384L0 19.563l1.415 1.414L7.586 14.8A8.288 8.288 0 1012.705 0zm0 14.584A6.292 6.292 0 1119 8.292a6.3 6.3 0 01-6.295 6.292z' fill='%23fff'/%3E%3C/svg%3E");
}
.full_width__header .block.menu--main #switchModeInMainOverlay.mode__menu:hover, .full_width__header .block.menu--main #switchModeInMainOverlay.mode__menu:focus {
  background-color: transparent;
}
.full_width__header .block.menu--main #switchModeInMainOverlay.mode__menu:hover, .full_width__header .block.menu--main #switchModeInMainOverlay.mode__menu:focus {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg data-name='Layer 1' xmlns='http://www.w3.org/2000/svg' width='20.997' height='20.977'%3E%3Cpath d='M12.705 0a8.279 8.279 0 00-6.531 13.384L0 19.563l1.415 1.414L7.586 14.8A8.288 8.288 0 1012.705 0zm0 14.584A6.292 6.292 0 1119 8.292a6.3 6.3 0 01-6.295 6.292z' fill='%232ea9b0'/%3E%3C/svg%3E");
}
@media only screen and (min-width: 768px) {
  .full_width__header .block.menu--main #switchModeInMainOverlay.mode__menu {
    background-size: 73% auto;
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg data-name='Layer 1' xmlns='http://www.w3.org/2000/svg' width='18.868' height='18.851'%3E%3Cpath d='M11.454 0a7.4 7.4 0 00-5.9 11.882L0 17.437l1.415 1.414L6.962 13.3A7.41 7.41 0 1011.454 0zm0 12.828a5.414 5.414 0 115.414-5.414 5.42 5.42 0 01-5.414 5.414z' fill='%23fff'/%3E%3C/svg%3E");
  }
  .full_width__header .block.menu--main #switchModeInMainOverlay.mode__menu:hover, .full_width__header .block.menu--main #switchModeInMainOverlay.mode__menu:focus {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg data-name='Layer 1' xmlns='http://www.w3.org/2000/svg' width='18.868' height='18.851'%3E%3Cpath d='M11.454 0a7.4 7.4 0 00-5.9 11.882L0 17.437l1.415 1.414L6.962 13.3A7.41 7.41 0 1011.454 0zm0 12.828a5.414 5.414 0 115.414-5.414 5.42 5.42 0 01-5.414 5.414z' fill='%232ea9b0'/%3E%3C/svg%3E");
  }
}
.full_width__header .block.menu--main #switchModeInMainOverlay.mode__menu .line {
  display: none;
}
.full_width__header .block.menu--main #switchModeInMainOverlay.mode__search {
  display: inline-block;
  overflow: hidden;
  text-align: left;
  text-indent: -9999px;
  line-height: 0;
  box-sizing: border-box;
  padding: 0;
  width: 1.5625rem;
  min-width: 0;
  height: 1.5625rem;
  overflow: hidden;
  position: relative;
  background-repeat: no-repeat;
  background-color: transparent;
  background-position: 50% 50%;
  border: 0;
  background-size: 95% auto;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg data-name='Layer 1' xmlns='http://www.w3.org/2000/svg' width='22.704' height='20.972'%3E%3Cg data-name='Group 444'%3E%3Ccircle cx='1.892' cy='1.892' r='1.892' fill='%23fff' data-name='Ellipse 18'/%3E%3Cpath fill='%23fff' d='M11.193.657h11.511v2H11.193z' data-name='Line 65'/%3E%3Cg data-name='Group 166'%3E%3Cpath fill='%23fff' d='M0 9.486h22.704v2H0z' data-name='Line 69'/%3E%3Ccircle cx='20.812' cy='19.08' r='1.892' fill='%23fff' data-name='Ellipse 21'/%3E%3Cpath fill='%23fff' d='M0 18.315h11.511v2H0z' data-name='Line 68'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.full_width__header .block.menu--main #switchModeInMainOverlay.mode__search:hover, .full_width__header .block.menu--main #switchModeInMainOverlay.mode__search:focus {
  background-color: transparent;
}
.full_width__header .block.menu--main #switchModeInMainOverlay.mode__search .line {
  display: none;
}
.full_width__header .block.menu--main #switchModeInMainOverlay.mode__search:hover, .full_width__header .block.menu--main #switchModeInMainOverlay.mode__search:focus {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg data-name='Layer 1' xmlns='http://www.w3.org/2000/svg' width='22.704' height='20.972'%3E%3Cg data-name='Group 444'%3E%3Ccircle cx='1.892' cy='1.892' r='1.892' fill='%232ea9b0' data-name='Ellipse 18'/%3E%3Cpath fill='%232ea9b0' d='M11.193.657h11.511v2H11.193z' data-name='Line 65'/%3E%3Cg data-name='Group 166'%3E%3Cpath fill='%232ea9b0' d='M0 9.486h22.704v2H0z' data-name='Line 69'/%3E%3Ccircle cx='20.812' cy='19.08' r='1.892' fill='%232ea9b0' data-name='Ellipse 21'/%3E%3Cpath fill='%232ea9b0' d='M0 18.315h11.511v2H0z' data-name='Line 68'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
@media only screen and (min-width: 768px) {
  .full_width__header .block.menu--main #switchModeInMainOverlay.mode__search {
    display: none;
  }
}
.full_width__header .block.menu--main .overlay_modes {
  flex-grow: 1;
  position: relative;
  overflow: hidden;
  width: calc(100% + 2rem);
  margin-left: -1rem;
}
.full_width__header .block.menu--main .overlay_mode {
  position: absolute;
  top: 0;
  left: 0;
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
  transform: translateX(0%);
}
.full_width__header .block.menu--main .overlay_mode.mode_transition_enabled {
  transition: transform 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
}
.full_width__header .block.menu--main .overlay_menu_wrap {
  display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6, BB7 */
  display: -ms-flexbox; /* TWEENER - IE 10 */
  display: -webkit-flex; /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
  display: flex; /* NEW, Spec - Firefox, Chrome, Opera */
  flex-direction: column;
}
.full_width__header .block.menu--main .overlay_inner.mode__search .overlay_menu_wrap {
  transform: translateX(100%);
}
.full_width__header .block.menu--main .overlay_inner.mode__menu .overlay_search_wrap {
  transform: translateX(-100%);
}
.full_width__header .block.menu--main .menu_controls {
  font-size: 1.1875rem;
  display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6, BB7 */
  display: -ms-flexbox; /* TWEENER - IE 10 */
  display: -webkit-flex; /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
  display: flex; /* NEW, Spec - Firefox, Chrome, Opera */
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  margin-bottom: 0.85em;
}
@media only screen and (min-width: 1272px) {
  .full_width__header .block.menu--main .menu_controls {
    font-size: 1.25rem;
  }
}
@media only screen and (min-width: 1488px) {
  .full_width__header .block.menu--main .menu_controls {
    font-size: 1.375rem;
  }
}
.full_width__header .block.menu--main .collapseLevel {
  flex-shrink: 0;
  display: block;
  overflow: hidden;
  text-align: left;
  text-indent: -9999px;
  width: 1.5rem;
  height: 1.5rem;
  padding: 0;
  background-color: transparent;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg data-name='Layer 1' xmlns='http://www.w3.org/2000/svg' width='18.974' height='17.574'%3E%3Cpath fill='%23fff' d='M8.821 17.574l1.054-1.057-7.759-7.73 7.759-7.73L8.821 0 0 8.787l8.821 8.787z' data-name='Path 52'/%3E%3Ccircle cx='17.514' cy='8.69' r='1.46' fill='%23fff' data-name='Ellipse 3'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: 13px auto;
  border: 0;
  margin-right: 0.5rem;
}
.full_width__header .block.menu--main .collapseLevel:hover, .full_width__header .block.menu--main .collapseLevel:focus {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg data-name='Layer 1' xmlns='http://www.w3.org/2000/svg' width='18.974' height='17.574'%3E%3Cpath fill='%232ea9b0' d='M8.821 17.574l1.054-1.057-7.759-7.73 7.759-7.73L8.821 0 0 8.787l8.821 8.787z' data-name='Path 52'/%3E%3Ccircle cx='17.514' cy='8.69' r='1.46' fill='%232ea9b0' data-name='Ellipse 3'/%3E%3C/svg%3E");
}
.full_width__header .block.menu--main .collapseLevel.root_level {
  display: none;
}
.full_width__header .block.menu--main .collapseLevel.root_level + .menuLevelHeading a {
  display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6, BB7 */
  display: -ms-flexbox; /* TWEENER - IE 10 */
  display: -webkit-flex; /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
  display: flex; /* NEW, Spec - Firefox, Chrome, Opera */
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.full_width__header .block.menu--main .menuLevelHeading {
  flex-shrink: 1;
  -webkit-font-smoothing: antialiased;
  font-family: "Lato", Helvetica, Arial, sans-serif;
  font-weight: 900;
  line-height: 1.2em;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.75rem;
  margin: 0;
}
@media only screen and (min-width: 768px) {
  .full_width__header .block.menu--main .menuLevelHeading {
    font-size: 0.8125rem;
  }
}
.full_width__header .block.menu--main .menuLevelHeading a {
  color: white;
}
.full_width__header .block.menu--main .menuLevelHeading a:hover, .full_width__header .block.menu--main .menuLevelHeading a:focus {
  color: #4EB6BC;
}
.full_width__header .block.menu--main .overlay_menu {
  flex-grow: 1;
  position: relative;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  width: calc(100% + 2rem);
  margin-left: -1rem;
}
.full_width__header .block.menu--main .overlay_menu ul.menu {
  -webkit-font-smoothing: antialiased;
  color: white;
  font-family: "Lato", Helvetica, Arial, sans-serif;
  font-weight: 700;
  line-height: 1.45em;
  font-size: 1.0625rem;
  letter-spacing: 0;
  margin-top: 0;
  margin-bottom: 0.85em;
  display: block;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  position: absolute;
  top: 0;
  left: 0;
  box-sizing: border-box;
  padding-left: 1rem;
  padding-right: 1rem;
  width: 100%;
  height: auto;
  min-height: 100%;
  background-color: #112C53;
  margin: 0;
}
@media only screen and (min-width: 1272px) {
  .full_width__header .block.menu--main .overlay_menu ul.menu {
    font-size: 1.125rem;
  }
}
@media only screen and (min-width: 1344px) {
  .full_width__header .block.menu--main .overlay_menu ul.menu {
    font-size: 1.1875rem;
  }
}
@media only screen and (min-width: 1488px) {
  .full_width__header .block.menu--main .overlay_menu ul.menu {
    font-size: 1.25rem;
  }
}
.full_width__header .block.menu--main .overlay_menu ul.menu li {
  width: 100%;
  margin-right: 0;
  margin-bottom: 0;
}
.full_width__header .block.menu--main .overlay_menu ul.menu li .li_inner {
  display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6, BB7 */
  display: -ms-flexbox; /* TWEENER - IE 10 */
  display: -webkit-flex; /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
  display: flex; /* NEW, Spec - Firefox, Chrome, Opera */
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.full_width__header .block.menu--main .overlay_menu ul.menu li a.menu-item {
  flex-grow: 1;
  color: white;
  text-decoration: none;
  border: 0;
  padding-top: 0.9em;
  padding-bottom: 0.9em;
  margin: 0;
}
.full_width__header .block.menu--main .overlay_menu ul.menu li a.menu-item:hover, .full_width__header .block.menu--main .overlay_menu ul.menu li a.menu-item:focus {
  color: #4EB6BC;
  outline: 0;
}
.full_width__header .block.menu--main .overlay_menu ul.menu li a.menu-item.menu-item--active-trail {
  color: #4EB6BC;
}
.full_width__header .block.menu--main .overlay_menu ul.menu li .expandLevel {
  display: block;
  overflow: hidden;
  text-align: left;
  text-indent: -9999px;
  width: 2.875em;
  height: 2.875em;
  padding: 0;
  background-color: transparent;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg data-name='Layer 1' xmlns='http://www.w3.org/2000/svg' width='18.974' height='17.574'%3E%3Cpath fill='%23fff' d='M10.153 17.574l-1.054-1.057 7.759-7.73-7.759-7.73L10.153 0l8.821 8.787-8.821 8.787z' data-name='Path 52'/%3E%3Ccircle cx='1.46' cy='8.69' r='1.46' fill='%23fff' data-name='Ellipse 3'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: 13px auto;
  background-position: 50% 50%;
  position: relative;
  border: 0;
}
.full_width__header .block.menu--main .overlay_menu ul.menu li .expandLevel::before {
  content: " ";
  display: block;
  width: 0;
  height: 1.875em;
  position: absolute;
  left: 0;
  top: 0.5em;
}
.full_width__header .block.menu--main .overlay_menu ul.menu li .expandLevel:hover, .full_width__header .block.menu--main .overlay_menu ul.menu li .expandLevel:focus {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg data-name='Layer 1' xmlns='http://www.w3.org/2000/svg' width='18.974' height='17.574'%3E%3Cpath fill='%232ea9b0' d='M10.153 17.574l-1.054-1.057 7.759-7.73-7.759-7.73L10.153 0l8.821 8.787-8.821 8.787z' data-name='Path 52'/%3E%3Ccircle cx='1.46' cy='8.69' r='1.46' fill='%232ea9b0' data-name='Ellipse 3'/%3E%3C/svg%3E");
}
@media only screen and (min-width: 768px) {
  .full_width__header .block.menu--main .overlay_menu ul.menu li a.menu-item {
    padding-top: 0.9em;
    padding-bottom: 0.9em;
  }
}
.full_width__header .block.menu--main .overlay_menu ul.menu ul.menu {
  display: block;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
}
.full_width__header .block.menu--main .overlay_menu ul.menu ul.menu.active {
  transform: translateX(0%);
}
.full_width__header .block.menu--main .overlay_search_wrap form {
  font-size: 1.625rem;
  display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6, BB7 */
  display: -ms-flexbox; /* TWEENER - IE 10 */
  display: -webkit-flex; /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
  display: flex; /* NEW, Spec - Firefox, Chrome, Opera */
  justify-content: space-between;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  padding-bottom: 0.25em;
  border-bottom: thin solid white;
}
@media only screen and (min-width: 480px) {
  .full_width__header .block.menu--main .overlay_search_wrap form {
    font-size: 1.8125rem;
  }
}
@media only screen and (min-width: 624px) {
  .full_width__header .block.menu--main .overlay_search_wrap form {
    font-size: 2rem;
  }
}
@media only screen and (min-width: 840px) {
  .full_width__header .block.menu--main .overlay_search_wrap form {
    font-size: 2.1875rem;
  }
}
@media only screen and (min-width: 1055px) {
  .full_width__header .block.menu--main .overlay_search_wrap form {
    font-size: 2.375rem;
  }
}
@media only screen and (min-width: 1344px) {
  .full_width__header .block.menu--main .overlay_search_wrap form {
    font-size: 2.5625rem;
  }
}
@media only screen and (min-width: 1488px) {
  .full_width__header .block.menu--main .overlay_search_wrap form {
    font-size: 2.75rem;
  }
}
.full_width__header .block.menu--main .overlay_search_wrap .form-item {
  flex-shrink: 1;
  width: 100%;
  margin-bottom: 0;
}
.full_width__header .block.menu--main .overlay_search_wrap .form-search {
  -webkit-font-smoothing: antialiased;
  color: #112C53;
  font-family: "Lato", Helvetica, Arial, sans-serif;
  font-weight: 800;
  line-height: 1.225em;
  font-size: 1.625rem;
  letter-spacing: 0.01em;
  margin-top: 0;
  margin-bottom: 0.4em;
  font-weight: 400;
  font-style: italic;
  color: white;
  padding-top: 0;
  padding-left: 0;
  padding-bottom: 0;
  background-color: transparent;
  border: 0;
  margin: 0;
}
@media only screen and (min-width: 480px) {
  .full_width__header .block.menu--main .overlay_search_wrap .form-search {
    font-size: 1.8125rem;
  }
}
@media only screen and (min-width: 624px) {
  .full_width__header .block.menu--main .overlay_search_wrap .form-search {
    font-size: 2rem;
  }
}
@media only screen and (min-width: 840px) {
  .full_width__header .block.menu--main .overlay_search_wrap .form-search {
    font-size: 2.1875rem;
  }
}
@media only screen and (min-width: 1055px) {
  .full_width__header .block.menu--main .overlay_search_wrap .form-search {
    font-size: 2.375rem;
  }
}
@media only screen and (min-width: 1344px) {
  .full_width__header .block.menu--main .overlay_search_wrap .form-search {
    font-size: 2.5625rem;
  }
}
@media only screen and (min-width: 1488px) {
  .full_width__header .block.menu--main .overlay_search_wrap .form-search {
    font-size: 2.75rem;
  }
}
.full_width__header .block.menu--main .overlay_search_wrap .form-search::-webkit-input-placeholder {
  color: white;
  -webkit-font-smoothing: antialiased;
}
.full_width__header .block.menu--main .overlay_search_wrap .form-search::-moz-placeholder {
  color: white;
  -webkit-font-smoothing: antialiased;
}
.full_width__header .block.menu--main .overlay_search_wrap .form-search:-moz-placeholder {
  color: white;
  -webkit-font-smoothing: antialiased;
}
.full_width__header .block.menu--main .overlay_search_wrap .form-search:-ms-input-placeholder {
  color: white;
  -webkit-font-smoothing: antialiased;
}
.full_width__header .block.menu--main .overlay_search_wrap input[type=search]::-webkit-search-cancel-button {
  width: 1em;
  height: 1em;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14.849' height='14.85' data-name='Layer 1'%3E%3Cpath fill='%23ffffff' d='M14.849 1.414 13.435 0 7.424 6.01 1.414 0 0 1.414l6.01 6.011L0 13.435l1.414 1.414 6.01-6.01 6.011 6.011 1.414-1.414-6.011-6.011 6.011-6.011z'/%3E%3C/svg%3E");
  background-position: 50% 75%;
}
.full_width__header .block.menu--main .overlay_search_wrap input[type=search]::-webkit-search-cancel-button:hover {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14.849' height='14.85' data-name='Layer 1'%3E%3Cpath fill='%232ea9b0' d='M14.849 1.414 13.435 0 7.424 6.01 1.414 0 0 1.414l6.01 6.011L0 13.435l1.414 1.414 6.01-6.01 6.011 6.011 1.414-1.414-6.011-6.011 6.011-6.011z'/%3E%3C/svg%3E");
}
.full_width__header .block.menu--main .overlay_search_wrap .form-actions {
  margin-top: 0;
}
.full_width__header .block.menu--main .overlay_search_wrap .form-submit {
  flex-shrink: 0;
  font-size: 1.625rem;
  padding: 0;
  display: block;
  overflow: hidden;
  text-align: left;
  text-indent: -9999px;
  padding: 0;
  min-width: 0;
  width: 1em;
  height: 1em;
  background-color: transparent;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg data-name='Layer 1' xmlns='http://www.w3.org/2000/svg' width='27.524' height='27.499'%3E%3Cpath d='M16.875 0a10.645 10.645 0 00-8.216 17.419L0 26.085 1.415 27.5l8.657-8.664A10.647 10.647 0 1016.875 0zm0 19.3a8.65 8.65 0 118.649-8.65 8.66 8.66 0 01-8.649 8.65z' fill='%23fff'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: 50% 75%;
  background-size: 63% auto;
  border: 0;
  margin-left: 1rem;
  margin-bottom: 0;
}
@media only screen and (min-width: 480px) {
  .full_width__header .block.menu--main .overlay_search_wrap .form-submit {
    font-size: 1.8125rem;
  }
}
@media only screen and (min-width: 624px) {
  .full_width__header .block.menu--main .overlay_search_wrap .form-submit {
    font-size: 2rem;
  }
}
@media only screen and (min-width: 840px) {
  .full_width__header .block.menu--main .overlay_search_wrap .form-submit {
    font-size: 2.1875rem;
  }
}
@media only screen and (min-width: 1055px) {
  .full_width__header .block.menu--main .overlay_search_wrap .form-submit {
    font-size: 2.375rem;
  }
}
@media only screen and (min-width: 1344px) {
  .full_width__header .block.menu--main .overlay_search_wrap .form-submit {
    font-size: 2.5625rem;
  }
}
@media only screen and (min-width: 1488px) {
  .full_width__header .block.menu--main .overlay_search_wrap .form-submit {
    font-size: 2.75rem;
  }
}
.full_width__header .block.menu--main .overlay_search_wrap .form-submit:hover, .full_width__header .block.menu--main .overlay_search_wrap .form-submit:focus {
  background-color: transparent;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg data-name='Layer 1' xmlns='http://www.w3.org/2000/svg' width='27.524' height='27.499'%3E%3Cpath d='M16.875 0a10.645 10.645 0 00-8.216 17.419L0 26.085 1.415 27.5l8.657-8.664A10.647 10.647 0 1016.875 0zm0 19.3a8.65 8.65 0 118.649-8.65 8.66 8.66 0 01-8.649 8.65z' fill='%232ea9b0'/%3E%3C/svg%3E");
}
@media only screen and (min-width: 552px) {
  .full_width__header .block.menu--main .overlay_search_wrap form {
    margin-top: 3rem;
  }
}
@media only screen and (max-width: 623px) {
  .full_width__header .block.menu--main .overlay_search_wrap form {
    padding-bottom: 0.4em;
  }
  .full_width__header .block.menu--main .overlay_search_wrap .form-search {
    font-size: 1.25rem;
  }
  .full_width__header .block.menu--main .overlay_search_wrap .form-submit {
    width: 1.5625rem;
    height: 1.5625rem;
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg data-name='Layer 1' xmlns='http://www.w3.org/2000/svg' width='20.997' height='20.977'%3E%3Cpath d='M12.705 0a8.279 8.279 0 00-6.531 13.384L0 19.563l1.415 1.414L7.586 14.8A8.288 8.288 0 1012.705 0zm0 14.584A6.292 6.292 0 1119 8.292a6.3 6.3 0 01-6.295 6.292z' fill='%23fff'/%3E%3C/svg%3E");
    background-size: 84% auto;
    background-position: 50% 55%;
  }
  .full_width__header .block.menu--main .overlay_search_wrap .form-submit:hover, .full_width__header .block.menu--main .overlay_search_wrap .form-submit:focus {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg data-name='Layer 1' xmlns='http://www.w3.org/2000/svg' width='20.997' height='20.977'%3E%3Cpath d='M12.705 0a8.279 8.279 0 00-6.531 13.384L0 19.563l1.415 1.414L7.586 14.8A8.288 8.288 0 1012.705 0zm0 14.584A6.292 6.292 0 1119 8.292a6.3 6.3 0 01-6.295 6.292z' fill='%232ea9b0'/%3E%3C/svg%3E");
  }
}
@media only screen and (min-width: 768px) {
  .full_width__header .block.menu--main .overlay_search_wrap form {
    margin-top: 6.5rem;
    margin-left: 8.6021505376%;
    margin-right: 8.6021505376%;
  }
}
@media print {
  .full_width__header .block.menu--main {
    display: none;
  }
}

.field--name-field-banner-tag {
  -webkit-font-smoothing: antialiased;
  font-family: "Lato", Helvetica, Arial, sans-serif;
  font-weight: 900;
  line-height: 1.2em;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.75rem;
  color: #112C53;
  display: inline-block;
  padding-top: 0.9em;
  padding-bottom: 0.9em;
  padding-left: 1.8em;
  padding-right: 1.8em;
  border: 0.125rem solid #112C53;
  margin-bottom: 2.5em;
}
@media only screen and (min-width: 768px) {
  .field--name-field-banner-tag {
    font-size: 0.8125rem;
  }
}

.field--name-field-banner-text {
  -webkit-font-smoothing: antialiased;
  color: #112C53;
  font-family: "Lato", Helvetica, Arial, sans-serif;
  font-weight: 800;
  line-height: 1.225em;
  font-size: 1.625rem;
  letter-spacing: 0.01em;
  margin-top: 0;
  margin-bottom: 0.4em;
  color: #EA5D4E;
  max-width: 37.5rem;
  margin: 0 auto;
}
@media only screen and (min-width: 480px) {
  .field--name-field-banner-text {
    font-size: 1.8125rem;
  }
}
@media only screen and (min-width: 624px) {
  .field--name-field-banner-text {
    font-size: 2rem;
  }
}
@media only screen and (min-width: 840px) {
  .field--name-field-banner-text {
    font-size: 2.1875rem;
  }
}
@media only screen and (min-width: 1055px) {
  .field--name-field-banner-text {
    font-size: 2.375rem;
  }
}
@media only screen and (min-width: 1344px) {
  .field--name-field-banner-text {
    font-size: 2.5625rem;
  }
}
@media only screen and (min-width: 1488px) {
  .field--name-field-banner-text {
    font-size: 2.75rem;
  }
}

/*  Banner
*********************************** */
section.full_width__banner {
  font-size: 1.625rem;
  /*  Banner – On nodetype listing
  *********************************** */
  /*  Banner – On Sectional page
  *********************************** */
  /*  Banner – On content page
  *********************************** */
}
@media only screen and (min-width: 480px) {
  section.full_width__banner {
    font-size: 1.8125rem;
  }
}
@media only screen and (min-width: 624px) {
  section.full_width__banner {
    font-size: 2rem;
  }
}
@media only screen and (min-width: 840px) {
  section.full_width__banner {
    font-size: 2.1875rem;
  }
}
@media only screen and (min-width: 1055px) {
  section.full_width__banner {
    font-size: 2.375rem;
  }
}
@media only screen and (min-width: 1344px) {
  section.full_width__banner {
    font-size: 2.5625rem;
  }
}
@media only screen and (min-width: 1488px) {
  section.full_width__banner {
    font-size: 2.75rem;
  }
}
section.full_width__banner #banner_box {
  -webkit-box-ordinal-group: 1;
  -moz-box-ordinal-group: 1;
  -ms-flex-order: 1;
  -webkit-order: 1;
}
section.full_width__banner .banner_content {
  padding-top: 1em;
}
@media only screen and (min-width: 552px) {
  section.full_width__banner .banner_content {
    padding-top: 0;
  }
}
section.full_width__banner .field--name-field-media-image {
  height: 0;
  padding-bottom: 56.815%;
  position: relative;
}
section.full_width__banner .field--name-field-media-image picture {
  position: absolute;
  top: 0;
  left: 50%;
  width: 100.2vw;
  height: 100%;
  transform: translateX(-50.1%);
}
section.full_width__banner .field--name-field-media-image picture::after {
  content: " ";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 24%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.46), transparent);
}
section.full_width__banner .field--name-field-media-image picture img {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
}
@media only screen and (min-width: 552px) {
  section.full_width__banner .field--name-field-media-image {
    height: 11.3636em;
    padding-bottom: 0;
  }
}
@media only screen and (min-width: 768px) {
  section.full_width__banner .field--name-field-media-image picture::after {
    content: none;
  }
}
section.full_width__banner .field--name-field-call-to-action.field__items {
  font-size: 0.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1.75em;
  margin-top: 2em;
}
@media only screen and (min-width: 768px) {
  section.full_width__banner .field--name-field-call-to-action.field__items {
    font-size: 0.8125rem;
  }
}
section.full_width__banner .field--name-field-call-to-action.field__items > * {
  width: auto;
}
section.full_width__banner .field--name-field-call-to-action a {
  display: inline-block;
  box-sizing: border-box;
  background-color: transparent;
  -webkit-font-smoothing: antialiased;
  font-family: "Lato", Helvetica, Arial, sans-serif;
  font-weight: 800;
  line-height: 1.2em;
  letter-spacing: 0;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.75rem;
  padding-top: 1em;
  padding-bottom: 1em;
  padding-left: 1.25em;
  padding-right: 1.25em;
  border: 1px solid #2EA9B0;
  display: inline-flex;
  align-items: center;
}
section.full_width__banner .field--name-field-call-to-action a, section.full_width__banner .field--name-field-call-to-action a:link {
  color: #112C53;
}
@media only screen and (min-width: 768px) {
  section.full_width__banner .field--name-field-call-to-action a {
    font-size: 0.8125rem;
  }
}
section.full_width__banner .field--name-field-call-to-action a::after {
  content: " ";
  display: block;
  width: 1.4615em;
  height: 1.3538em;
  margin-left: 0.8em;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg data-name='Layer 1' xmlns='http://www.w3.org/2000/svg' width='18.974' height='17.601'%3E%3Cg data-name='Group 52'%3E%3Cpath fill='%23112c53' d='M10.173 17.601l-1.414-1.414 7.387-7.386-7.387-7.387L10.173 0l8.801 8.801-8.801 8.8z' data-name='Path 52'/%3E%3Ccircle cx='1.5' cy='8.707' r='1.5' fill='%23112c53' data-name='Ellipse 3'/%3E%3C/g%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
}
section.full_width__banner .field--name-field-call-to-action a:hover, section.full_width__banner .field--name-field-call-to-action a:focus-visible {
  background-color: #112C53;
  border-color: #112C53;
}
section.full_width__banner .field--name-field-call-to-action a:hover, section.full_width__banner .field--name-field-call-to-action a:hover:link, section.full_width__banner .field--name-field-call-to-action a:focus-visible, section.full_width__banner .field--name-field-call-to-action a:focus-visible:link {
  color: white;
}
section.full_width__banner .field--name-field-call-to-action a:hover::after, section.full_width__banner .field--name-field-call-to-action a:focus-visible::after {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg data-name='Layer 1' xmlns='http://www.w3.org/2000/svg' width='18.974' height='17.601'%3E%3Cg data-name='Group 52'%3E%3Cpath fill='%23fff' d='M10.173 17.601l-1.414-1.414 7.387-7.386-7.387-7.387L10.173 0l8.801 8.801-8.801 8.8z' data-name='Path 52'/%3E%3Ccircle cx='1.5' cy='8.707' r='1.5' fill='%23fff' data-name='Ellipse 3'/%3E%3C/g%3E%3C/svg%3E");
}
section.full_width__banner #about-this-resource a {
  background-color: #2EA9B0;
}
section.full_width__banner #about-this-resource a:hover, section.full_width__banner #about-this-resource a:focus-visible {
  background-color: #C8ECF0;
  border-color: #C8ECF0;
}
section.full_width__banner #about-this-resource a:hover, section.full_width__banner #about-this-resource a:hover:link, section.full_width__banner #about-this-resource a:focus-visible, section.full_width__banner #about-this-resource a:focus-visible:link {
  color: #112C53;
}
section.full_width__banner #about-this-resource a:hover::after, section.full_width__banner #about-this-resource a:focus-visible::after {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg data-name='Layer 1' xmlns='http://www.w3.org/2000/svg' width='18.974' height='17.601'%3E%3Cg data-name='Group 52'%3E%3Cpath fill='%23112c53' d='M10.173 17.601l-1.414-1.414 7.387-7.386-7.387-7.387L10.173 0l8.801 8.801-8.801 8.8z' data-name='Path 52'/%3E%3Ccircle cx='1.5' cy='8.707' r='1.5' fill='%23112c53' data-name='Ellipse 3'/%3E%3C/g%3E%3C/svg%3E");
}
section.full_width__banner #about-this-resource a:active {
  border-color: #C8ECF0;
}
section.full_width__banner #search-the-hub a::after {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' data-name='Layer 1' viewBox='0 0 18.868 18.851'%3E%3Cpath d='M11.454 0C7.366 0 4.04 3.326 4.04 7.414c0 1.678.567 3.223 1.511 4.467L0 17.437l1.415 1.414 5.547-5.552a7.365 7.365 0 0 0 4.491 1.529c4.088 0 7.414-3.326 7.414-7.414S15.542 0 11.454 0Zm0 12.828c-2.985 0-5.414-2.429-5.414-5.414S8.469 2 11.454 2s5.414 2.429 5.414 5.414-2.429 5.414-5.414 5.414Z' style='fill:%23112c53;stroke-width:0'/%3E%3C/svg%3E");
}
section.full_width__banner #search-the-hub a:hover, section.full_width__banner #search-the-hub a:focus-visible {
  background-color: #2EA9B0;
  border-color: #2EA9B0;
}
section.full_width__banner #search-the-hub a:hover, section.full_width__banner #search-the-hub a:hover:link, section.full_width__banner #search-the-hub a:focus-visible, section.full_width__banner #search-the-hub a:focus-visible:link {
  color: #112C53;
}
section.full_width__banner .gridLayout__Main8colWithSide4col_onDesktop.main_side__left {
  -webkit-box-align: normal;
  -moz-box-align: normal;
  -ms-flex-align: normal;
  -webkit-align-items: normal;
  align-items: normal;
}
section.full_width__banner .gridLayout__Main8colWithSide4col_onDesktop.main_side__left .region-breadcrumbs {
  -webkit-box-ordinal-group: 1;
  -moz-box-ordinal-group: 1;
  -ms-flex-order: 1;
  -webkit-order: 1;
}
section.full_width__banner .gridLayout__Main8colWithSide4col_onDesktop.main_side__left .gridItem__main {
  padding-bottom: 1.55em;
}
@media only screen and (min-width: 552px) and (max-width: 767px) {
  section.full_width__banner .gridLayout__Main8colWithSide4col_onDesktop.main_side__left .gridItem__main {
    width: 73.8918740571%;
  }
}
@media only screen and (min-width: 624px) and (max-width: 767px) {
  section.full_width__banner .gridLayout__Main8colWithSide4col_onDesktop.main_side__left .gridItem__side {
    width: 73.8918740571%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 983px) {
  section.full_width__banner .gridLayout__Main8colWithSide4col_onDesktop.main_side__left .gridItem__main {
    width: 74.1935483871%;
  }
  section.full_width__banner .gridLayout__Main8colWithSide4col_onDesktop.main_side__left .gridItem__side {
    width: 48.3870967742%;
  }
}
@media only screen and (min-width: 984px) {
  section.full_width__banner .gridLayout__Main8colWithSide4col_onDesktop.main_side__left .gridItem__main {
    padding-right: 8.6021505376%;
    padding-bottom: 0;
  }
}
@media only screen and (min-width: 984px) {
  section.full_width__banner {
    min-height: 8.18em;
  }
}
.frontend_nodetype--listing section.full_width__banner {
  background-image: none;
  position: relative;
}
.frontend_nodetype--listing section.full_width__banner::before {
  font-size: 1.625rem;
  content: " ";
  display: block;
  position: absolute;
  z-index: -1;
  top: 0;
  left: 50%;
  width: 100.1vw;
  height: 100%;
  transform: translateX(-50%);
  background-color: #193E72;
  background-image: url("../images/arcsl_pattern_02--darkblue@2x.png");
  background-repeat: repeat;
  background-size: 53.1875rem auto;
}
@media only screen and (min-width: 480px) {
  .frontend_nodetype--listing section.full_width__banner::before {
    font-size: 1.8125rem;
  }
}
@media only screen and (min-width: 624px) {
  .frontend_nodetype--listing section.full_width__banner::before {
    font-size: 2rem;
  }
}
@media only screen and (min-width: 840px) {
  .frontend_nodetype--listing section.full_width__banner::before {
    font-size: 2.1875rem;
  }
}
@media only screen and (min-width: 1055px) {
  .frontend_nodetype--listing section.full_width__banner::before {
    font-size: 2.375rem;
  }
}
@media only screen and (min-width: 1344px) {
  .frontend_nodetype--listing section.full_width__banner::before {
    font-size: 2.5625rem;
  }
}
@media only screen and (min-width: 1488px) {
  .frontend_nodetype--listing section.full_width__banner::before {
    font-size: 2.75rem;
  }
}
@media only screen and (min-width: 768px) {
  .frontend_nodetype--listing section.full_width__banner::before {
    height: calc(100% - 1.5em);
  }
}
.frontend_nodetype--listing section.full_width__banner .section_wrap {
  min-height: 4.4em;
}
@media only screen and (min-width: 984px) {
  .frontend_nodetype--listing section.full_width__banner .gridLayout__Main8colWithSide4col_onDesktop.main_side__left .gridItem__main {
    padding-bottom: 2.75em;
  }
}
.frontend_nodetype--listing section.full_width__banner nav.breadcrumb ol li,
.frontend_nodetype--listing section.full_width__banner nav.breadcrumb ol li a {
  color: white;
}
.frontend_nodetype--listing section.full_width__banner nav.breadcrumb ol li a::after {
  border-color: white;
}
.frontend_nodetype--listing section.full_width__banner h1 {
  color: #4EB6BC;
}
.frontend_nodetype--listing section.full_width__banner p {
  color: white;
}
.frontend_nodetype--listing section.full_width__banner .page_share_box {
  color: white;
}
.frontend_nodetype--listing section.full_width__banner .header_intro {
  font-family: "Lato", Helvetica, Arial, sans-serif;
  font-weight: 400;
  line-height: 1.45em;
  letter-spacing: 0;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  font-size: 1.4375rem;
  margin: 0;
}
@media only screen and (min-width: 624px) {
  .frontend_nodetype--listing section.full_width__banner .header_intro {
    font-size: 1.5rem;
  }
}
@media only screen and (min-width: 1344px) {
  .frontend_nodetype--listing section.full_width__banner .header_intro {
    font-size: 1.6875rem;
  }
}
@media only screen and (min-width: 1488px) {
  .frontend_nodetype--listing section.full_width__banner .header_intro {
    font-size: 1.875rem;
  }
}
.frontend_nodetype--listing section.full_width__banner .sidebar-second {
  position: relative;
  background-color: #112C53;
}
.frontend_nodetype--listing section.full_width__banner .sidebar-second::before {
  content: " ";
  display: block;
  position: absolute;
  top: 0;
  left: 50%;
  z-index: -1;
  width: 100vw;
  height: 100%;
  background-color: #112C53;
  transform: translateX(-50%);
}
.frontend_nodetype--listing section.full_width__banner .sidebar-second h2,
.frontend_nodetype--listing section.full_width__banner .sidebar-second h2 a {
  color: white;
}
.frontend_nodetype--listing section.full_width__banner .sidebar-second h2::after {
  border-color: white;
}
.frontend_nodetype--listing section.full_width__banner .sidebar-second h2 a:hover, .frontend_nodetype--listing section.full_width__banner .sidebar-second h2 a:focus {
  color: #4EB6BC;
}
.frontend_nodetype--listing section.full_width__banner .sidebar-second h2.collapsingToggle .toggleExpand {
  color: white;
}
.frontend_nodetype--listing section.full_width__banner .sidebar-second h2.collapsingToggle .toggleExpand .icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg data-name='Layer 1' xmlns='http://www.w3.org/2000/svg' width='18.874' height='18'%3E%3Cg fill='%23fff'%3E%3Ccircle cx='1.5' cy='9.187' r='1.5'/%3E%3Cpath d='M18.874 8h-8V0h-2v18h2v-8h8V8z'/%3E%3C/g%3E%3C/svg%3E");
}
.frontend_nodetype--listing section.full_width__banner .sidebar-second h2.collapsingToggle .toggleExpand.open .icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg data-name='Layer 1' xmlns='http://www.w3.org/2000/svg' width='16' height='2'%3E%3Cpath fill='%23fff' d='M0 0h16v2H0z' data-name='Line 31'/%3E%3C/svg%3E");
}
.frontend_nodetype--listing section.full_width__banner .sidebar-second ul.menu a.menu-item {
  color: white;
}
.frontend_nodetype--listing section.full_width__banner .sidebar-second ul.menu a.menu-item:hover, .frontend_nodetype--listing section.full_width__banner .sidebar-second ul.menu a.menu-item:focus, .frontend_nodetype--listing section.full_width__banner .sidebar-second ul.menu a.menu-item.menu-item--active-trail {
  color: #4EB6BC;
}
.frontend_nodetype--listing section.full_width__banner .sidebar-second p,
.frontend_nodetype--listing section.full_width__banner .sidebar-second form label {
  color: white;
}
.frontend_nodetype--listing section.full_width__banner .sidebar-second form .mc-field-group {
  margin-bottom: 1.25em;
}
.frontend_nodetype--listing section.full_width__banner .sidebar-second form input[type=text], .frontend_nodetype--listing section.full_width__banner .sidebar-second form input[type=password], .frontend_nodetype--listing section.full_width__banner .sidebar-second form input[type=email], .frontend_nodetype--listing section.full_width__banner .sidebar-second form input[type=search], .frontend_nodetype--listing section.full_width__banner .sidebar-second form .form-text, .frontend_nodetype--listing section.full_width__banner .sidebar-second form textarea {
  font-family: "Lato", Helvetica, Arial, sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  line-height: 1.4em;
  font-size: 0.875rem;
  color: #989898;
  padding-top: 0.7em;
  padding-bottom: 0.8em;
  padding-left: 1em;
  padding-right: 1em;
  background-color: white;
  border: 0;
}
.frontend_nodetype--listing section.full_width__banner .sidebar-second form input[type=text]::-webkit-input-placeholder, .frontend_nodetype--listing section.full_width__banner .sidebar-second form input[type=password]::-webkit-input-placeholder, .frontend_nodetype--listing section.full_width__banner .sidebar-second form input[type=email]::-webkit-input-placeholder, .frontend_nodetype--listing section.full_width__banner .sidebar-second form input[type=search]::-webkit-input-placeholder, .frontend_nodetype--listing section.full_width__banner .sidebar-second form .form-text::-webkit-input-placeholder, .frontend_nodetype--listing section.full_width__banner .sidebar-second form textarea::-webkit-input-placeholder {
  color: #989898;
}
.frontend_nodetype--listing section.full_width__banner .sidebar-second form input[type=text]::-moz-placeholder, .frontend_nodetype--listing section.full_width__banner .sidebar-second form input[type=password]::-moz-placeholder, .frontend_nodetype--listing section.full_width__banner .sidebar-second form input[type=email]::-moz-placeholder, .frontend_nodetype--listing section.full_width__banner .sidebar-second form input[type=search]::-moz-placeholder, .frontend_nodetype--listing section.full_width__banner .sidebar-second form .form-text::-moz-placeholder, .frontend_nodetype--listing section.full_width__banner .sidebar-second form textarea::-moz-placeholder {
  color: #989898;
}
.frontend_nodetype--listing section.full_width__banner .sidebar-second form input[type=text]:-moz-placeholder, .frontend_nodetype--listing section.full_width__banner .sidebar-second form input[type=password]:-moz-placeholder, .frontend_nodetype--listing section.full_width__banner .sidebar-second form input[type=email]:-moz-placeholder, .frontend_nodetype--listing section.full_width__banner .sidebar-second form input[type=search]:-moz-placeholder, .frontend_nodetype--listing section.full_width__banner .sidebar-second form .form-text:-moz-placeholder, .frontend_nodetype--listing section.full_width__banner .sidebar-second form textarea:-moz-placeholder {
  color: #989898;
}
.frontend_nodetype--listing section.full_width__banner .sidebar-second form input[type=text]:-ms-input-placeholder, .frontend_nodetype--listing section.full_width__banner .sidebar-second form input[type=password]:-ms-input-placeholder, .frontend_nodetype--listing section.full_width__banner .sidebar-second form input[type=email]:-ms-input-placeholder, .frontend_nodetype--listing section.full_width__banner .sidebar-second form input[type=search]:-ms-input-placeholder, .frontend_nodetype--listing section.full_width__banner .sidebar-second form .form-text:-ms-input-placeholder, .frontend_nodetype--listing section.full_width__banner .sidebar-second form textarea:-ms-input-placeholder {
  color: #989898;
}
.frontend_nodetype--listing section.full_width__banner .sidebar-second form input[type=submit] {
  width: 100%;
}
@media only screen and (min-width: 624px) {
  .frontend_nodetype--listing section.full_width__banner .sidebar-second {
    padding-top: 1.875rem;
    padding-bottom: 1.875rem;
    padding-left: 1.875rem;
    padding-right: 1.875rem;
  }
  .frontend_nodetype--listing section.full_width__banner .sidebar-second::before {
    content: none;
  }
}
@media only screen and (min-width: 984px) {
  .frontend_nodetype--listing section.full_width__banner .sidebar-second {
    padding-bottom: 3em;
    min-height: 14em;
  }
  .frontend_nodetype--listing section.full_width__banner .sidebar-second::before {
    content: " ";
    left: 0;
    width: calc(100% + 7rem);
    transform: none;
  }
}
body.nodetype--sectional section.full_width__banner {
  min-height: 0;
  background-image: url("../images/arcsl_pattern_01--large@2x.png");
  background-repeat: repeat;
  background-size: 21.3409em auto;
  background-position: 50% 0%;
}
body.nodetype--sectional section.full_width__banner::before {
  content: none;
}
body.nodetype--sectional section.full_width__banner::after {
  content: " ";
  display: block;
  width: 3.1538em;
  height: 2.9324em;
  background-repeat: no-repeat;
  background-position: 100% 100%;
  background-size: contain;
  position: absolute;
  z-index: 1;
  bottom: 0;
  right: 0;
}
body.nodetype--sectional section.full_width__banner.illustration_a::after {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg data-name='Layer 1' xmlns='http://www.w3.org/2000/svg' width='211.746' height='212'%3E%3Cpath d='M39.436 211.846V212h91.823v-.155a80.589 80.589 0 0180.489-80.588v-91.82c-95.023.056-172.312 77.375-172.312 172.409z' fill='%23f29330'/%3E%3Cpath d='M0 211.846V212h39.438v-.154c0-95.034 77.289-172.353 172.31-172.409V0C94.979.056 0 95.067 0 211.846z' fill='%23ffedcc'/%3E%3Cpath d='M131.257 211.845V212h80.485v-80.743a80.589 80.589 0 00-80.485 80.588z' fill='%23193e72'/%3E%3C/svg%3E");
}
body.nodetype--sectional section.full_width__banner.illustration_b::after {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg data-name='Layer 1' xmlns='http://www.w3.org/2000/svg' width='227.566' height='213.497'%3E%3Cpath d='M172.628 96.1a24.483 24.483 0 01-3.063-11.577 169.1 169.1 0 00-16.965 7.244 24.378 24.378 0 016.011 10.322q6.835-3.321 14.017-5.989zM204.27 31.587a24.342 24.342 0 01-.631-11.924 225.444 225.444 0 00-39.894 7.843 24.479 24.479 0 014.1 11.229 213.582 213.582 0 0136.425-7.148zM132.625 184.019a112.1 112.1 0 00-13.313 29.481h12.47a100.252 100.252 0 0110.229-22.01 24.67 24.67 0 01-9.386-7.471zM93.692 77.307a213.417 213.417 0 0130.591-20.528 24.442 24.442 0 01-5.045-10.836 225.318 225.318 0 00-33.59 22.533 24.555 24.555 0 018.044 8.831zM109.566 139.189q5.158-5.775 10.858-11.029a24.5 24.5 0 01-7.441-9.353 171.842 171.842 0 00-12.866 13.079 24.667 24.667 0 019.449 7.303zM60.384 110.615a24.544 24.544 0 01-8.831-8.045 225.525 225.525 0 00-22.65 33.8 24.29 24.29 0 0110.837 5.047 213.4 213.4 0 0120.644-30.802zM10.649 180.439A225.03 225.03 0 003.593 213.5h12.032a213.1 213.1 0 016.249-28.943 24.229 24.229 0 01-11.225-4.118zM174.563 158.935a100.07 100.07 0 0129.137-12.252 24.719 24.719 0 01.044-12.242 111.929 111.929 0 00-36.651 15.108 24.682 24.682 0 017.47 9.386zM83.916 178.184a24.539 24.539 0 01-10.446-5.8 169.183 169.183 0 00-6.8 16.738 24.473 24.473 0 0111.558 3.072q2.516-7.17 5.688-14.01zM216.839 74.689a24.522 24.522 0 011.907 9.508c0 .784-.041 1.557-.112 2.322 2.951-.165 5.922-.256 8.914-.256h.018V74.342h-.018c-3.598 0-7.166.125-10.709.347z' fill='%23183e70'/%3E%3Cpath d='M24.37 184.681a24.257 24.257 0 10-2.5-.127 24.4 24.4 0 002.5.127z' fill='%23ea5d4e'/%3E%3Cpath d='M66.31 206.258a7.45 7.45 0 00-7.436 7.239h14.872a7.45 7.45 0 00-7.436-7.239z' fill='%23183e70'/%3E%3Cpath d='M78.228 192.191a24.473 24.473 0 00-11.558-3.072c-.121 0-.24-.009-.36-.009a24.591 24.591 0 00-24.589 24.39h17.153a7.439 7.439 0 0114.872 0H90.9a24.582 24.582 0 00-12.672-21.309z' fill='%23ea5d4e'/%3E%3Cpath d='M90.264 161.868a7.447 7.447 0 10-7.446-7.447 7.455 7.455 0 007.446 7.447z' fill='%23183e70'/%3E%3Cpath d='M90.264 179.016a24.541 24.541 0 10-6.348-.832 24.595 24.595 0 006.348.832zm-7.446-24.595a7.446 7.446 0 117.446 7.447 7.454 7.454 0 01-7.446-7.447z' fill='%23fff'/%3E%3Cpath d='M120.424 128.16a24.376 24.376 0 10-7.441-9.353 24.5 24.5 0 007.441 9.353z' fill='%23ea5d4e'/%3E%3Cpath d='M201.6 84.2a7.447 7.447 0 10-7.447 7.447A7.454 7.454 0 00201.6 84.2z' fill='%23183e70'/%3E%3Cpath d='M194.151 108.792a24.6 24.6 0 0024.483-22.273 25.09 25.09 0 00.112-2.322 24.595 24.595 0 00-49.189 0c0 .109.007.216.008.325a24.579 24.579 0 0024.586 24.27zM186.705 84.2a7.447 7.447 0 117.446 7.447 7.455 7.455 0 01-7.446-7.447z' fill='%23fff'/%3E%3Cpath d='M186.616 204.485a24.227 24.227 0 001.735 9.012h39.215v-26.848a24.352 24.352 0 00-40.95 17.836z' fill='%23ea5d4e'/%3E%3Cpath d='M220.1 140.651a7.456 7.456 0 007.447 7.446h.018v-14.892h-.018a7.455 7.455 0 00-7.447 7.446z' fill='%23fff'/%3E%3Cpath d='M203.745 134.441a24.6 24.6 0 0023.8 30.8h.018V148.1h-.018a7.447 7.447 0 110-14.893h.018v-17.15h-.018a24.605 24.605 0 00-23.8 18.384z' fill='%23ea5d4e'/%3E%3Cpath d='M144.717 169.088a7.447 7.447 0 107.446-7.447 7.455 7.455 0 00-7.446 7.447z' fill='%23183e70'/%3E%3Cpath d='M142.011 191.487a24.609 24.609 0 10-9.386-7.468 24.485 24.485 0 009.386 7.468zm10.152-29.846a7.447 7.447 0 11-7.446 7.447 7.456 7.456 0 017.446-7.447z' fill='%23fff'/%3E%3Cpath d='M135.942 41.292a7.447 7.447 0 102.181-5.265 7.415 7.415 0 00-2.181 5.265z' fill='%23183e70'/%3E%3Cpath d='M126 58.683a24.6 24.6 0 10-1.715-1.9 24.868 24.868 0 001.715 1.9zm22.656-22.656a7.447 7.447 0 11-10.531 0 7.413 7.413 0 0110.529 0z' fill='%23fff'/%3E%3Cpath d='M64.6 88.965a7.447 7.447 0 102.176-5.265 7.417 7.417 0 00-2.176 5.265z' fill='%23183e70'/%3E%3Cpath d='M60.384 110.615a24.544 24.544 0 10-5.733-4.26 24.6 24.6 0 005.733 4.26zM77.307 83.7a7.447 7.447 0 11-10.531 0 7.415 7.415 0 0110.531 0z' fill='%23fff'/%3E%3Cpath d='M203.639 19.663a24.361 24.361 0 0023.908 29.075h.019V0h-.019a24.406 24.406 0 00-23.908 19.663z' fill='%23ea5d4e'/%3E%3C/svg%3E");
}
body.nodetype--sectional section.full_width__banner.illustration_c::after {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg data-name='Layer 1' xmlns='http://www.w3.org/2000/svg' width='211.836' height='211.991'%3E%3Cpath d='M198.678 148.685a64.877 64.877 0 00-51.378 63.306h37.5a27.257 27.257 0 0127.039-27.2v-37.51a64.773 64.773 0 00-13.161 1.404z' fill='%23fed47a'/%3E%3Cpath d='M87.726 151.289l33.681 16.488a101.627 101.627 0 0146.384-46.377l-16.486-33.686a139.334 139.334 0 00-63.579 63.575zM81.176 167.085a138.079 138.079 0 00-7.476 44.906h37.5a100.624 100.624 0 015.443-32.719zM179.28 116.633a100.669 100.669 0 0132.556-5.438v-37.5a138.084 138.084 0 00-44.736 7.472z' fill='%236667ad'/%3E%3Cpath d='M48.117 151.956l-35.208-12.911a211.358 211.358 0 00-8.619 30.386l36.744 7.5a173.437 173.437 0 017.083-24.975zM98.159 79.771L73.676 51.365a213.655 213.655 0 00-22.307 22.309l28.406 24.479a176.364 176.364 0 0118.384-18.382zM135.091 55.328l-16.563-33.642A212.675 212.675 0 0091.326 37.7L112.7 68.51a175.142 175.142 0 0122.391-13.182zM68.519 112.69L37.7 91.319a212.721 212.721 0 00-16.01 27.2l33.649 16.561a175 175 0 0113.18-22.39zM176.962 41.018l-7.5-36.744a211.486 211.486 0 00-30.385 8.617L151.983 48.1a173.682 173.682 0 0124.979-7.082zM195.139 38.3c5.525-.532 11.111-.8 16.7-.806V0a215.64 215.64 0 00-20.284.972zM.982 191.542C.332 198.3 0 205.182 0 211.991h37.5c0-5.617.273-11.288.808-16.86z' fill='%23ea5d4e'/%3E%3C/svg%3E");
}
body.nodetype--sectional section.full_width__banner .section_inner {
  position: relative;
  z-index: 2;
}
body.nodetype--sectional section.full_width__banner .banner_main {
  position: relative;
}
body.nodetype--sectional section.full_width__banner h1,
body.nodetype--sectional section.full_width__banner p,
body.nodetype--sectional section.full_width__banner nav.breadcrumb ol li a,
body.nodetype--sectional section.full_width__banner nav.breadcrumb ol li::after {
  color: #112C53;
}
body.nodetype--sectional section.full_width__banner nav.breadcrumb ol li a::after {
  border-color: #112C53;
}
body.nodetype--sectional section.full_width__banner .sidebar-second {
  background-color: transparent;
  padding: 0;
}
body.nodetype--sectional section.full_width__banner .sidebar-second::before {
  content: none;
}
@media only screen and (max-width: 623px) {
  body.nodetype--sectional section.full_width__banner {
    background-color: transparent;
  }
  body.nodetype--sectional section.full_width__banner #block-contentfield-14 {
    padding-bottom: 0;
  }
}
@media only screen and (max-width: 551px) {
  body.nodetype--sectional section.full_width__banner .gridItem__main {
    width: 73.8918740571%;
  }
}
@media only screen and (min-width: 624px) {
  body.nodetype--sectional section.full_width__banner .field--name-field-media-image {
    height: auto;
  }
  body.nodetype--sectional section.full_width__banner picture {
    position: static;
    left: initial;
    width: 100%;
    height: auto;
    transform: none;
  }
  body.nodetype--sectional section.full_width__banner img {
    position: static;
    height: auto;
  }
}
@media only screen and (min-width: 768px) {
  body.nodetype--sectional section.full_width__banner::after {
    width: 4em;
    height: 3.8em;
  }
}
@media only screen and (min-width: 984px) {
  body.nodetype--sectional section.full_width__banner .sidebar-second {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
  }
  body.nodetype--sectional section.full_width__banner .sidebar-second .region-sidebar-second {
    position: relative;
    height: 100%;
  }
  body.nodetype--sectional section.full_width__banner .sidebar-second .banner_main {
    position: relative;
  }
  body.nodetype--sectional section.full_width__banner .sidebar-second .contextual-region {
    position: static;
  }
  body.nodetype--sectional section.full_width__banner .sidebar-second .field--name-field-media-image {
    position: static;
  }
  body.nodetype--sectional section.full_width__banner .sidebar-second #block-contentfield-14 picture {
    position: absolute;
    top: 0;
    left: auto;
    width: calc(100% + 200px);
    height: 100%;
    transform: none;
  }
  body.nodetype--sectional section.full_width__banner .sidebar-second #block-contentfield-14 img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    max-width: none;
    height: 100%;
    object-fit: cover;
  }
}
@media only screen and (min-width: 1200px) {
  body.nodetype--sectional section.full_width__banner::after {
    width: 5.1818em;
    height: 4.8181em;
  }
}
body.frontend_nodetype--content section.full_width__banner {
  min-height: 0;
}
@media only screen and (min-width: 624px) {
  body.frontend_nodetype--content section.full_width__banner .gridLayout__Main8colWithSide4col_onDesktop.main_side__left .gridItem__main,
  body.frontend_nodetype--content section.full_width__banner .gridLayout__Main8colWithSide4col_onDesktop.main_side__left .gridItem__side {
    margin-left: 8.7027086476%;
  }
}
@media only screen and (min-width: 768px) {
  body.frontend_nodetype--content section.full_width__banner .gridLayout__Main8colWithSide4col_onDesktop.main_side__left .gridItem__main,
  body.frontend_nodetype--content section.full_width__banner .gridLayout__Main8colWithSide4col_onDesktop.main_side__left .gridItem__side {
    margin-left: 8.7027086476%;
  }
}
@media only screen and (min-width: 912px) {
  body.frontend_nodetype--content section.full_width__banner .gridLayout__Main8colWithSide4col_onDesktop.main_side__left .gridItem__main,
  body.frontend_nodetype--content section.full_width__banner .gridLayout__Main8colWithSide4col_onDesktop.main_side__left .gridItem__side {
    margin-left: 0;
  }
}
@media only screen and (min-width: 984px) {
  body.frontend_nodetype--content section.full_width__banner .banner_content {
    border-right: thin solid #EA5D4E;
  }
}

.page-standard.has_super_banner section.full_width__header_outer {
  position: absolute;
  background-color: transparent;
}
.page-standard.has_super_banner #banner_box {
  position: relative;
}
.page-standard.has_super_banner .field--name-field-media-image {
  height: 12.3461em;
}
.page-standard.has_super_banner .region-banner-super-image picture::after {
  content: " ";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 70%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.54), transparent);
}
.page-standard.has_super_banner .region-banner-super {
  padding-top: 1em;
}
.page-standard.has_super_banner .scroll_btn_wrap {
  display: none;
}
.page-standard.has_super_banner h1 {
  -webkit-font-smoothing: antialiased;
  color: #112C53;
  font-family: "Lato", Helvetica, Arial, sans-serif;
  font-weight: 800;
  line-height: 1.375em;
  font-size: 1.4375rem;
  letter-spacing: 0;
  margin-top: 0;
  margin-bottom: 0.6em;
}
@media only screen and (min-width: 624px) {
  .page-standard.has_super_banner h1 {
    font-size: 1.5rem;
  }
}
@media only screen and (min-width: 1344px) {
  .page-standard.has_super_banner h1 {
    font-size: 1.6875rem;
  }
}
@media only screen and (min-width: 1488px) {
  .page-standard.has_super_banner h1 {
    font-size: 1.875rem;
  }
}
.page-standard.has_super_banner section.full_width__header_outer {
  transition: background-color 0.3s;
}
.page-standard.has_super_banner section.full_width__header_outer:hover, .page-standard.has_super_banner section.full_width__header_outer:focus-within {
  background-color: #112C53;
}
@media only screen and (min-width: 552px) {
  .page-standard.has_super_banner .field--name-field-banner-tag {
    color: white;
    border-color: white;
  }
  .page-standard.has_super_banner .field--name-field-banner-text {
    color: white;
  }
  .page-standard.has_super_banner .region-banner-super-image {
    position: absolute;
    z-index: 1;
    height: 100%;
    width: 100%;
  }
  .page-standard.has_super_banner .region-banner-super-image picture {
    height: 100vh;
  }
  .page-standard.has_super_banner .region-banner-super-image picture::after {
    height: 100%;
    background: none;
    background-color: rgba(17, 44, 83, 0.28);
  }
  .page-standard.has_super_banner .region-banner-super {
    position: relative;
    z-index: 2;
    min-height: 100vh;
    display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6, BB7 */
    display: -ms-flexbox; /* TWEENER - IE 10 */
    display: -webkit-flex; /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
    display: flex; /* NEW, Spec - Firefox, Chrome, Opera */
    flex-direction: column;
    justify-content: center;
    text-align: center;
    padding-bottom: 2em;
  }
  .page-standard.has_super_banner .scroll_btn_wrap {
    display: block;
    position: absolute;
    z-index: 2;
    bottom: 1em;
    left: 50%;
    transform: translateX(-50%);
  }
  .page-standard.has_super_banner .scroll_btn_wrap .scroll_btn {
    display: block;
    overflow: hidden;
    text-align: left;
    text-indent: -9999px;
    width: 1em;
    height: 1em;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: 56.5% auto;
    border: 0;
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg data-name='Layer 1' xmlns='http://www.w3.org/2000/svg' width='17.601' height='18.974'%3E%3Cg data-name='Group 52'%3E%3Cpath fill='%23fff' d='M0 10.173l1.414-1.414L8.8 16.146l7.387-7.387 1.414 1.414L8.8 18.974 0 10.173z' data-name='Path 52'/%3E%3Ccircle cx='8.894' cy='1.5' r='1.5' fill='%23fff' data-name='Ellipse 3'/%3E%3C/g%3E%3C/svg%3E");
  }
  .page-standard.has_super_banner .scroll_btn_wrap .scroll_btn:hover {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg data-name='Layer 1' xmlns='http://www.w3.org/2000/svg' width='17.601' height='18.974'%3E%3Cg data-name='Group 52'%3E%3Cpath fill='%23112c53' d='M0 10.173l1.414-1.414L8.8 16.146l7.387-7.387 1.414 1.414L8.8 18.974 0 10.173z' data-name='Path 52'/%3E%3Ccircle cx='8.894' cy='1.5' r='1.5' fill='%23112c53' data-name='Ellipse 3'/%3E%3C/g%3E%3C/svg%3E");
  }
  .page-standard.has_super_banner h1 {
    color: #EA5D4E;
  }
}

section.full_width__main_outer {
  position: relative;
  z-index: 2;
}

/* Width holder main
*********************************** */
section.full_width__main {
  font-size: 1.625rem;
  margin-top: 1em;
}
@media only screen and (min-width: 480px) {
  section.full_width__main {
    font-size: 1.8125rem;
  }
}
@media only screen and (min-width: 624px) {
  section.full_width__main {
    font-size: 2rem;
  }
}
@media only screen and (min-width: 840px) {
  section.full_width__main {
    font-size: 2.1875rem;
  }
}
@media only screen and (min-width: 1055px) {
  section.full_width__main {
    font-size: 2.375rem;
  }
}
@media only screen and (min-width: 1344px) {
  section.full_width__main {
    font-size: 2.5625rem;
  }
}
@media only screen and (min-width: 1488px) {
  section.full_width__main {
    font-size: 2.75rem;
  }
}
section.full_width__main .section_wrap {
  font-size: 1rem;
}
@media only screen and (min-width: 768px) {
  section.full_width__main .section_wrap {
    font-size: 1.0625rem;
  }
}
@media only screen and (min-width: 1488px) {
  section.full_width__main .section_wrap {
    font-size: 1.125rem;
  }
}

section.full_width__pre_content + section.full_width__main {
  margin-top: 0;
}

section.full_width__post_content {
  font-size: 1.625rem;
}
@media only screen and (min-width: 480px) {
  section.full_width__post_content {
    font-size: 1.8125rem;
  }
}
@media only screen and (min-width: 624px) {
  section.full_width__post_content {
    font-size: 2rem;
  }
}
@media only screen and (min-width: 840px) {
  section.full_width__post_content {
    font-size: 2.1875rem;
  }
}
@media only screen and (min-width: 1055px) {
  section.full_width__post_content {
    font-size: 2.375rem;
  }
}
@media only screen and (min-width: 1344px) {
  section.full_width__post_content {
    font-size: 2.5625rem;
  }
}
@media only screen and (min-width: 1488px) {
  section.full_width__post_content {
    font-size: 2.75rem;
  }
}

nav.breadcrumb {
  display: none;
}
@media only screen and (min-width: 552px) {
  nav.breadcrumb {
    display: block;
  }
  nav.breadcrumb ol {
    list-style: none;
    margin: 0;
    display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6, BB7 */
    display: -ms-flexbox; /* TWEENER - IE 10 */
    display: -webkit-flex; /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
    display: flex; /* NEW, Spec - Firefox, Chrome, Opera */
    flex-wrap: wrap;
    font-family: "Lato", Helvetica, Arial, sans-serif;
    font-weight: 400;
    letter-spacing: 0;
    text-transform: none;
    -webkit-font-smoothing: antialiased;
    line-height: 1.4em;
    font-size: 0.875rem;
    padding-top: 1.5em;
    padding-bottom: 2.45em;
    padding-left: 0;
    padding-right: 0;
  }
  nav.breadcrumb ol li,
  nav.breadcrumb ol li a {
    color: #112C53;
  }
  nav.breadcrumb ol li a {
    position: relative;
    padding-bottom: 0.0625rem;
  }
  nav.breadcrumb ol li a::after {
    content: " ";
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
    border-bottom: thin solid #112C53;
    width: 0;
    transition: width 0.25s;
  }
  nav.breadcrumb ol li a:hover::after, nav.breadcrumb ol li a:focus::after {
    width: 100%;
  }
  nav.breadcrumb ol li a, nav.breadcrumb ol li::after {
    display: inline-block;
  }
  nav.breadcrumb ol li::after {
    content: ">";
    margin-right: 0.35em;
  }
  nav.breadcrumb ol li:last-child::after {
    content: none;
  }
}

@media only screen and (min-width: 552px) {
  .page-standard:has(#block-arcsl-daycenterbreadcrumb) ol {
    padding-bottom: 0;
  }
}

#block-arcsl-daycenterbreadcrumb {
  margin-bottom: 1rem;
}
#block-arcsl-daycenterbreadcrumb ol {
  padding: 0;
}
#block-arcsl-daycenterbreadcrumb ol li {
  font-family: "Lato", Helvetica, Arial, sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  line-height: 1.4em;
  font-size: 0.875rem;
  padding: 0;
}
#block-arcsl-daycenterbreadcrumb ol li::before {
  content: none;
}
#block-arcsl-daycenterbreadcrumb ol a {
  border: 0;
}
#block-arcsl-daycenterbreadcrumb ol a:hover, #block-arcsl-daycenterbreadcrumb ol a:focus-visible, #block-arcsl-daycenterbreadcrumb ol a:active {
  color: #112C53;
}

.listing_tag {
  -webkit-font-smoothing: antialiased;
  font-family: "Lato", Helvetica, Arial, sans-serif;
  font-weight: 900;
  line-height: 1.2em;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.75rem;
}
@media only screen and (min-width: 768px) {
  .listing_tag {
    font-size: 0.8125rem;
  }
}

.date_box {
  -webkit-font-smoothing: antialiased;
}

.date_tag_box {
  -webkit-font-smoothing: antialiased;
  font-family: "Lato", Helvetica, Arial, sans-serif;
  font-weight: 900;
  line-height: 1.2em;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.75rem;
  margin-bottom: 0.9em;
}
@media only screen and (min-width: 768px) {
  .date_tag_box {
    font-size: 0.8125rem;
  }
}
.date_tag_box > * {
  -webkit-font-smoothing: antialiased;
  font-family: "Lato", Helvetica, Arial, sans-serif;
  font-weight: 900;
  line-height: 1.2em;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.75rem;
  display: inline-block;
  vertical-align: baseline;
  margin-bottom: 0.3em;
}
@media only screen and (min-width: 768px) {
  .date_tag_box > * {
    font-size: 0.8125rem;
  }
}
.date_tag_box .listing_tag_actual {
  margin-right: 0.8em;
}
.date_tag_box .tag_spacer {
  display: none;
}
.date_tag_box .listing_tag_date {
  -webkit-font-smoothing: antialiased;
  font-family: "Lato", Helvetica, Arial, sans-serif;
  font-weight: 400;
  line-height: 1.2em;
  text-transform: none;
  letter-spacing: 0;
  font-size: 0.75rem;
}
@media only screen and (min-width: 768px) {
  .date_tag_box .listing_tag_date {
    font-size: 0.875rem;
  }
}

.page_share_box .date_tag_box {
  margin-bottom: 1.73em;
}
.page_share_box .listing_tag_actual {
  margin-bottom: 0;
}
@media only screen and (min-width: 552px) {
  .page_share_box {
    font-size: 0.75rem;
    display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6, BB7 */
    display: -ms-flexbox; /* TWEENER - IE 10 */
    display: -webkit-flex; /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
    display: flex; /* NEW, Spec - Firefox, Chrome, Opera */
    -webkit-box-align: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
  }
}
@media only screen and (min-width: 552px) and (min-width: 768px) {
  .page_share_box {
    font-size: 0.8125rem;
  }
}
@media only screen and (min-width: 552px) {
  .page_share_box > * {
    margin-right: 3em;
  }
  .page_share_box > *:last-child {
    margin-right: 0;
  }
}
@media only screen and (min-width: 552px) {
  .page_share_box .date_tag_box {
    margin-bottom: 0;
  }
}

/* WHU */
.views-field-snippet.snippet {
  display: none;
}

.listing_box_text .summary.hidden {
  display: none;
}

.path--search .listing_box_text .summary.visible-on-search {
  display: block;
}

/*  Listed content item Partial – Mini person
*********************************** */
.mini_person {
  font-size: 1.1875rem;
  display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6, BB7 */
  display: -ms-flexbox; /* TWEENER - IE 10 */
  display: -webkit-flex; /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
  display: flex; /* NEW, Spec - Firefox, Chrome, Opera */
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
@media only screen and (min-width: 1272px) {
  .mini_person {
    font-size: 1.25rem;
  }
}
@media only screen and (min-width: 1488px) {
  .mini_person {
    font-size: 1.375rem;
  }
}
.mini_person .headshot {
  overflow: hidden;
  border-radius: 50%;
  margin-right: 0.625rem;
}
.mini_person h3 {
  font-family: "Lato", Helvetica, Arial, sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  line-height: 1.6em;
  font-size: 0.875rem;
  margin-bottom: 0;
}
@media only screen and (min-width: 480px) {
  .mini_person h3 {
    font-size: 0.9375rem;
  }
}
@media only screen and (min-width: 768px) {
  .mini_person h3 {
    font-size: 1rem;
  }
}

.external_profile {
  font-family: "Lato", Helvetica, Arial, sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  line-height: 1.6em;
  font-size: 0.875rem;
  border-bottom: thin solid #2EA9B0;
}
@media only screen and (min-width: 480px) {
  .external_profile {
    font-size: 0.9375rem;
  }
}
@media only screen and (min-width: 768px) {
  .external_profile {
    font-size: 1rem;
  }
}

/*  Listed content item Partial – Box text
*********************************** */
.listing_box_text .listing_tag_actual {
  color: #2EA9B0;
}
.listing_box_text .teaser_text p {
  font-family: "Lato", Helvetica, Arial, sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  line-height: 1.6em;
  font-size: 0.875rem;
}
@media only screen and (min-width: 480px) {
  .listing_box_text .teaser_text p {
    font-size: 0.9375rem;
  }
}
@media only screen and (min-width: 768px) {
  .listing_box_text .teaser_text p {
    font-size: 1rem;
  }
}
.listing_box_text.style__promo {
  font-size: 1.1875rem;
  background-color: #F4F7FC;
  transition: background-color 0.3s;
}
@media only screen and (min-width: 1272px) {
  .listing_box_text.style__promo {
    font-size: 1.25rem;
  }
}
@media only screen and (min-width: 1488px) {
  .listing_box_text.style__promo {
    font-size: 1.375rem;
  }
}
.listing_box_text.style__promo .text_inner {
  padding-top: 1.875rem;
  padding-left: 1.875rem;
  padding-right: 1.875rem;
}
.listing_box_text.style__promo .date_tag_box,
.listing_box_text.style__promo .listing_tag_actual {
  transition: color 0.3s;
}
.listing_box_text.style__promo h2 a {
  transition: color 0.3s;
}
.listing_box_text.style__promo h2 a span {
  transition: border-color 0.3s;
}
.listing_box_text.style__promo h3 {
  transition: color 0.3s;
}
.listing_box_text.style__promo .read_more_wrap {
  display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6, BB7 */
  display: -ms-flexbox; /* TWEENER - IE 10 */
  display: -webkit-flex; /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
  display: flex; /* NEW, Spec - Firefox, Chrome, Opera */
  justify-content: flex-end;
  -webkit-box-align: flex-end;
  -moz-box-align: flex-end;
  -ms-flex-align: flex-end;
  -webkit-align-items: flex-end;
  align-items: flex-end;
}
.listing_box_text.style__promo .mini_person {
  flex-grow: 1;
  padding-left: 1.875rem;
  margin-bottom: 1.5em;
}
.listing_box_text.style__promo .mini_person .headshot {
  display: none;
}
.listing_box_text.style__promo .subtitle {
  font-family: "Lato", Helvetica, Arial, sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  line-height: 1.6em;
  font-size: 0.875rem;
}
@media only screen and (min-width: 480px) {
  .listing_box_text.style__promo .subtitle {
    font-size: 0.9375rem;
  }
}
@media only screen and (min-width: 768px) {
  .listing_box_text.style__promo .subtitle {
    font-size: 1rem;
  }
}
.listing_box_text.style__promo .read_more {
  flex-shrink: 0;
  display: block;
  overflow: hidden;
  text-align: left;
  text-indent: -9999px;
  width: 3.125rem;
  height: 3.125rem;
  background-color: #2EA9B0;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg data-name='Layer 1' xmlns='http://www.w3.org/2000/svg' width='18.974' height='17.601'%3E%3Cg data-name='Group 52'%3E%3Cpath fill='%23fff' d='M10.173 17.601l-1.414-1.414 7.387-7.386-7.387-7.387L10.173 0l8.801 8.801-8.801 8.8z' data-name='Path 52'/%3E%3Ccircle cx='1.5' cy='8.707' r='1.5' fill='%23fff' data-name='Ellipse 3'/%3E%3C/g%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: 38% auto;
}
@media only screen and (min-width: 768px) {
  .listing_box_text.style__promo .mini_person {
    padding: 0;
    margin-left: -1.25rem;
  }
  .listing_box_text.style__promo .mini_person .headshot {
    display: block;
  }
}
.highlighted .listing_box_text.style__promo {
  background-color: #C8ECF0;
}
.highlighted .listing_box_text.style__promo .listing_tag_actual {
  color: #112C53;
}
.node--type-event .listing_box_text.style__promo .listing_tag_actual {
  color: #EA5D4E;
}
.node--type-event .listing_box_text.style__promo h2 span {
  border-color: #EA5D4E;
}
.node--type-event .listing_box_text.style__promo .read_more {
  background-color: #EA5D4E;
}

.listed_content_item h2 {
  -webkit-font-smoothing: antialiased;
  color: #112C53;
  font-family: "Lato", Helvetica, Arial, sans-serif;
  font-weight: 700;
  line-height: 1.4em;
  font-size: 1.1875rem;
  letter-spacing: 0;
  margin-top: 0;
  margin-bottom: 0.4em;
}
@media only screen and (min-width: 1272px) {
  .listed_content_item h2 {
    font-size: 1.25rem;
  }
}
@media only screen and (min-width: 1488px) {
  .listed_content_item h2 {
    font-size: 1.375rem;
  }
}
.listed_content_item h2 span {
  border-bottom: thin solid #2EA9B0;
}
.listed_content_item h2 a {
  display: block;
  color: #112C53;
}
.listed_content_item.style__link_card {
  position: relative;
}
.listed_content_item.style__link_card h2 a::before {
  content: " ";
  display: block;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.listed_content_item.style__link_card.card_has_link picture {
  overflow: hidden;
}
.listed_content_item.style__link_card.card_has_link picture img {
  transform: scale3d(1, 1, 1) rotate(0.0001deg);
  transition: transform 0.3s;
}
.listed_content_item.style__link_card.card_has_link:hover, .listed_content_item.style__link_card.card_has_link:focus-within {
  cursor: pointer;
}
.listed_content_item.style__link_card.card_has_link:hover picture img, .listed_content_item.style__link_card.card_has_link:focus-within picture img {
  transform: scale3d(1.03, 1.03, 1);
}
.listed_content_item.style__link_card.card_has_link:hover .listing_box_text.style__promo, .listed_content_item.style__link_card.card_has_link:focus-within .listing_box_text.style__promo {
  background-color: #2EA9B0;
}
.listed_content_item.style__link_card.card_has_link:hover .listing_box_text.style__promo .date_tag_box,
.listed_content_item.style__link_card.card_has_link:hover .listing_box_text.style__promo .listing_tag_actual, .listed_content_item.style__link_card.card_has_link:focus-within .listing_box_text.style__promo .date_tag_box,
.listed_content_item.style__link_card.card_has_link:focus-within .listing_box_text.style__promo .listing_tag_actual {
  color: white;
}
.listed_content_item.style__link_card.card_has_link:hover .listing_box_text.style__promo h2 a, .listed_content_item.style__link_card.card_has_link:focus-within .listing_box_text.style__promo h2 a {
  color: white;
}
.listed_content_item.style__link_card.card_has_link:hover .listing_box_text.style__promo h2 span, .listed_content_item.style__link_card.card_has_link:focus-within .listing_box_text.style__promo h2 span {
  border-color: white;
}
.listed_content_item.style__link_card.card_has_link:hover .listing_box_text.style__promo h3,
.listed_content_item.style__link_card.card_has_link:hover .listing_box_text.style__promo .subtitle,
.listed_content_item.style__link_card.card_has_link:hover .listing_box_text.style__promo p, .listed_content_item.style__link_card.card_has_link:focus-within .listing_box_text.style__promo h3,
.listed_content_item.style__link_card.card_has_link:focus-within .listing_box_text.style__promo .subtitle,
.listed_content_item.style__link_card.card_has_link:focus-within .listing_box_text.style__promo p {
  color: white;
}
.listed_content_item.style__link_card.card_has_link:hover .listing_box_text.style__promo .external_profile, .listed_content_item.style__link_card.card_has_link:focus-within .listing_box_text.style__promo .external_profile {
  color: white;
  border-color: white;
}
.listed_content_item.style__link_card.node--type-event.card_has_link:hover .listing_box_text.style__promo, .listed_content_item.style__link_card.node--type-event.card_has_link:focus-within .listing_box_text.style__promo {
  background-color: #EA5D4E;
}

/*  Listed content item – Default
*********************************** */
.listed_content_item.style__default h2 {
  margin-bottom: 0.65em;
}
@media only screen and (min-width: 552px) {
  .listed_content_item.style__default .listing_box_text {
    margin-right: 1.875rem;
  }
  .listed_content_item.style__default > .listing_box_image {
    position: relative;
    z-index: -1;
    margin-top: -3.125rem;
    margin-left: 1.875rem;
  }
}

/*  Listed content item – Default Highlight
*********************************** */
@media only screen and (min-width: 624px) {
  .listed_content_item.style__default_highlight {
    display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6, BB7 */
    display: -ms-flexbox; /* TWEENER - IE 10 */
    display: -webkit-flex; /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
    display: flex; /* NEW, Spec - Firefox, Chrome, Opera */
    flex-wrap: nowrap;
    -webkit-box-align: flex-start;
    -moz-box-align: flex-start;
    -ms-flex-align: flex-start;
    -webkit-align-items: flex-start;
    align-items: flex-start;
  }
  .listed_content_item.style__default_highlight > .listing_box_image {
    flex-shrink: 0;
    position: relative;
    z-index: -1;
    width: 73.7704918033%;
    margin-left: -21.3114754098%;
    margin-bottom: 0;
  }
  .listed_content_item.style__default_highlight .listing_box_text {
    flex-grow: 0;
    width: 47.5409836066%;
    margin-top: 1.5em;
  }
}

/*  Listed content item – Sectional
*********************************** */
.views-row-view-method-listed_sectionalpage {
  font-size: 1.4375rem;
}
@media only screen and (min-width: 624px) {
  .views-row-view-method-listed_sectionalpage {
    font-size: 1.5rem;
  }
}
@media only screen and (min-width: 1344px) {
  .views-row-view-method-listed_sectionalpage {
    font-size: 1.6875rem;
  }
}
@media only screen and (min-width: 1488px) {
  .views-row-view-method-listed_sectionalpage {
    font-size: 1.875rem;
  }
}
.views-row-view-method-listed_sectionalpage .listed_content_item {
  cursor: auto;
}
.views-row-view-method-listed_sectionalpage h2 {
  -webkit-font-smoothing: antialiased;
  color: #112C53;
  font-family: "Lato", Helvetica, Arial, sans-serif;
  font-weight: 800;
  line-height: 1.375em;
  font-size: 1.4375rem;
  letter-spacing: 0;
  margin-top: 0;
  margin-bottom: 0.6em;
}
@media only screen and (min-width: 624px) {
  .views-row-view-method-listed_sectionalpage h2 {
    font-size: 1.5rem;
  }
}
@media only screen and (min-width: 1344px) {
  .views-row-view-method-listed_sectionalpage h2 {
    font-size: 1.6875rem;
  }
}
@media only screen and (min-width: 1488px) {
  .views-row-view-method-listed_sectionalpage h2 {
    font-size: 1.875rem;
  }
}
.views-row-view-method-listed_sectionalpage h2 a::before {
  content: " ";
  display: block;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.views-row-view-method-listed_sectionalpage .listing_box_image {
  position: relative;
  z-index: -1;
  width: 100%;
}
.views-row-view-method-listed_sectionalpage .listing_box_text {
  font-size: 1.4375rem;
  position: relative;
  background-color: white;
  width: 100%;
}
@media only screen and (min-width: 624px) {
  .views-row-view-method-listed_sectionalpage .listing_box_text {
    font-size: 1.5rem;
  }
}
@media only screen and (min-width: 1344px) {
  .views-row-view-method-listed_sectionalpage .listing_box_text {
    font-size: 1.6875rem;
  }
}
@media only screen and (min-width: 1488px) {
  .views-row-view-method-listed_sectionalpage .listing_box_text {
    font-size: 1.875rem;
  }
}
.views-row-view-method-listed_sectionalpage .listing_box_text .text_inner {
  padding-top: 1.275em;
  padding-left: 1.875rem;
  padding-right: 1.875rem;
  padding-bottom: 0.75em;
}
.views-row-view-method-listed_sectionalpage .listing_box_text p {
  transition: color 0.3s;
}
.views-row-view-method-listed_sectionalpage .listing_box_text:hover, .views-row-view-method-listed_sectionalpage .listing_box_text:focus-within {
  background-color: #2EA9B0;
}
.views-row-view-method-listed_sectionalpage .listing_box_text:hover .date_tag_box,
.views-row-view-method-listed_sectionalpage .listing_box_text:hover .listing_tag_actual, .views-row-view-method-listed_sectionalpage .listing_box_text:focus-within .date_tag_box,
.views-row-view-method-listed_sectionalpage .listing_box_text:focus-within .listing_tag_actual {
  color: white;
}
.views-row-view-method-listed_sectionalpage .listing_box_text:hover h2 a, .views-row-view-method-listed_sectionalpage .listing_box_text:focus-within h2 a {
  color: white;
}
.views-row-view-method-listed_sectionalpage .listing_box_text:hover h2 span, .views-row-view-method-listed_sectionalpage .listing_box_text:focus-within h2 span {
  border-color: white;
}
.views-row-view-method-listed_sectionalpage .listing_box_text:hover p, .views-row-view-method-listed_sectionalpage .listing_box_text:focus-within p {
  color: white;
}
.views-row-view-method-listed_sectionalpage .teaser_text p {
  margin: 0;
}
.views-row-view-method-listed_sectionalpage .read_more {
  margin-left: auto;
}
@media only screen and (min-width: 624px) {
  .views-row-view-method-listed_sectionalpage {
    padding-bottom: 5.25em;
  }
  .views-row-view-method-listed_sectionalpage .listed_content_item {
    display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6, BB7 */
    display: -ms-flexbox; /* TWEENER - IE 10 */
    display: -webkit-flex; /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
    display: flex; /* NEW, Spec - Firefox, Chrome, Opera */
    flex-wrap: nowrap;
    justify-content: space-between;
    -webkit-box-align: flex-start;
    -moz-box-align: flex-start;
    -ms-flex-align: flex-start;
    -webkit-align-items: flex-start;
    align-items: flex-start;
  }
  .views-row-view-method-listed_sectionalpage .listing_box_image {
    width: 73.8918740571%;
  }
  .views-row-view-method-listed_sectionalpage .listing_box_text {
    width: 47.7837481141%;
    margin-top: 2.2em;
  }
  .views-row-view-method-listed_sectionalpage .listing_box_text .text_inner {
    padding-left: 1.7em;
    padding-right: 1.7em;
    padding-bottom: 2.45em;
  }
  .views-row-view-method-listed_sectionalpage:nth-child(2n+1) .listing_box_image {
    -webkit-box-ordinal-group: 1;
    -moz-box-ordinal-group: 1;
    -ms-flex-order: 1;
    -webkit-order: 1;
  }
  .views-row-view-method-listed_sectionalpage:nth-child(2n+1) .listing_box_text {
    -webkit-box-ordinal-group: 2;
    -moz-box-ordinal-group: 2;
    -ms-flex-order: 2;
    -webkit-order: 2;
    margin-left: -26.1081259429%;
  }
  .views-row-view-method-listed_sectionalpage:nth-child(2n) .listing_box_image {
    margin-left: -26.1081259429%;
  }
}
@media only screen and (min-width: 768px) {
  .views-row-view-method-listed_sectionalpage .listing_box_image {
    width: 74.1935483871%;
  }
  .views-row-view-method-listed_sectionalpage .listing_box_text {
    width: 48.3870967742%;
  }
  .views-row-view-method-listed_sectionalpage:nth-child(2n+1) .listing_box_text {
    margin-left: -25.8064516129%;
  }
  .views-row-view-method-listed_sectionalpage:nth-child(2n) .listing_box_image {
    margin-left: -25.8064516129%;
  }
}
@media only screen and (min-width: 840px) {
  .views-row-view-method-listed_sectionalpage .listing_box_image {
    width: 74.1935483871%;
  }
  .views-row-view-method-listed_sectionalpage .listing_box_text {
    width: 39.7849462366%;
  }
  .views-row-view-method-listed_sectionalpage:nth-child(2n+1) .listing_box_text {
    margin-left: -17.2043010753%;
  }
  .views-row-view-method-listed_sectionalpage:nth-child(2n) .listing_box_image {
    margin-left: -17.2043010753%;
  }
}

/*  Listed content item – People
*********************************** */
.listed_content_item.style__people {
  display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6, BB7 */
  display: -ms-flexbox; /* TWEENER - IE 10 */
  display: -webkit-flex; /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
  display: flex; /* NEW, Spec - Firefox, Chrome, Opera */
  flex-wrap: wrap;
}
.listed_content_item.style__people .listing_box_image {
  -webkit-box-ordinal-group: 1;
  -moz-box-ordinal-group: 1;
  -ms-flex-order: 1;
  -webkit-order: 1;
  width: 100%;
}
.listed_content_item.style__people .listing_box_text {
  -webkit-box-ordinal-group: 2;
  -moz-box-ordinal-group: 2;
  -ms-flex-order: 2;
  -webkit-order: 2;
  flex-grow: 1;
  padding-bottom: 1.7em;
}
.listed_content_item.style__people h2 span {
  border: 0;
}
.listed_content_item.style__people.style__link_card.card_has_link:hover .listing_box_text.style__promo, .listed_content_item.style__people.style__link_card.card_has_link:focus-within .listing_box_text.style__promo {
  background-color: #F4F7FC;
}
.listed_content_item.style__people.style__link_card.card_has_link:hover .listing_box_text.style__promo .date_tag_box,
.listed_content_item.style__people.style__link_card.card_has_link:hover .listing_box_text.style__promo h2 a,
.listed_content_item.style__people.style__link_card.card_has_link:hover .listing_box_text.style__promo .subtitle, .listed_content_item.style__people.style__link_card.card_has_link:focus-within .listing_box_text.style__promo .date_tag_box,
.listed_content_item.style__people.style__link_card.card_has_link:focus-within .listing_box_text.style__promo h2 a,
.listed_content_item.style__people.style__link_card.card_has_link:focus-within .listing_box_text.style__promo .subtitle {
  color: #112C53;
}
.listed_content_item.style__people.style__link_card.card_has_link:hover .listing_box_text.style__promo .listing_tag_actual, .listed_content_item.style__people.style__link_card.card_has_link:focus-within .listing_box_text.style__promo .listing_tag_actual {
  color: #4EB6BC;
}
.listed_content_item.style__people.style__link_card.card_has_link:hover .listing_box_text.style__promo .external_profile, .listed_content_item.style__people.style__link_card.card_has_link:focus-within .listing_box_text.style__promo .external_profile {
  color: #4EB6BC;
  border-color: #4EB6BC;
}
@media only screen and (min-width: 480px) {
  .listed_content_item.style__people .listing_box_image {
    position: relative;
    z-index: -1;
    width: 72.4137931034%;
    margin-right: 27.5862068966%;
  }
  .listed_content_item.style__people .listing_box_text {
    margin-top: -3.125rem;
    margin-left: 1.875rem;
  }
}

/*  Listed content item – Long text
*********************************** */
.gridItem.views-row-view-method-listed_long_text {
  padding-bottom: 0;
}

.listed_content_item.style__long_text h2 {
  -webkit-font-smoothing: antialiased;
  font-family: "Lato", Helvetica, Arial, sans-serif;
  font-weight: 800;
  line-height: 1.375em;
  font-size: 1.4375rem;
  letter-spacing: 0;
  margin-top: 0;
  margin-bottom: 0.6em;
}
@media only screen and (min-width: 624px) {
  .listed_content_item.style__long_text h2 {
    font-size: 1.5rem;
  }
}
@media only screen and (min-width: 1344px) {
  .listed_content_item.style__long_text h2 {
    font-size: 1.6875rem;
  }
}
@media only screen and (min-width: 1488px) {
  .listed_content_item.style__long_text h2 {
    font-size: 1.875rem;
  }
}
.listed_content_item.style__long_text h2 span {
  border: 0;
}
.listed_content_item.style__long_text p {
  font-family: "Lato", Helvetica, Arial, sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  line-height: 1.6em;
  font-size: 1rem;
}
@media only screen and (min-width: 768px) {
  .listed_content_item.style__long_text p {
    font-size: 1.0625rem;
  }
}
@media only screen and (min-width: 1488px) {
  .listed_content_item.style__long_text p {
    font-size: 1.125rem;
  }
}
.listed_content_item.style__long_text .read_more {
  display: inline-block;
  box-sizing: border-box;
  background-color: none;
  -webkit-font-smoothing: antialiased;
  font-family: "Lato", Helvetica, Arial, sans-serif;
  font-weight: 800;
  line-height: 1.2em;
  letter-spacing: 0;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.75rem;
  padding: 0.95em 1.25em;
  border: 1px solid #2EA9B0;
  display: -webkit-inline-box;
  display: -moz-inline-box;
  display: -ms-inline-flexbox;
  display: -webkit-inline-flex;
  display: inline-flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  margin-top: 1em;
}
.listed_content_item.style__long_text .read_more, .listed_content_item.style__long_text .read_more:link {
  color: #112C53;
}
@media only screen and (min-width: 768px) {
  .listed_content_item.style__long_text .read_more {
    font-size: 0.8125rem;
  }
}
.listed_content_item.style__long_text .read_more:hover, .listed_content_item.style__long_text .read_more:focus-visible {
  background-color: #2EA9B0;
  border-color: #2EA9B0;
}
.listed_content_item.style__long_text .read_more::after {
  content: " ";
  display: block;
  box-sizing: content-box;
  width: 1.4em;
  height: 1.4em;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg data-name='Layer 1' xmlns='http://www.w3.org/2000/svg' width='18.974' height='17.601'%3E%3Cg data-name='Group 52'%3E%3Cpath fill='%23112c53' d='M10.173 17.601l-1.414-1.414 7.387-7.386-7.387-7.387L10.173 0l8.801 8.801-8.801 8.8z' data-name='Path 52'/%3E%3Ccircle cx='1.5' cy='8.707' r='1.5' fill='%23112c53' data-name='Ellipse 3'/%3E%3C/g%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: 100% 50%;
  padding-left: 1.1em;
  transition: padding 0.25s;
}

.listed_content_item.style__text h2 {
  font-family: "Lato", Helvetica, Arial, sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  line-height: 1.6em;
  font-size: 0.875rem;
  margin: 0;
}
@media only screen and (min-width: 480px) {
  .listed_content_item.style__text h2 {
    font-size: 0.9375rem;
  }
}
@media only screen and (min-width: 768px) {
  .listed_content_item.style__text h2 {
    font-size: 1rem;
  }
}
.listed_content_item.style__text h2 span {
  border: 0;
}

/*  Sidebars
*********************************** */
.sidebars {
  font-size: 1.0625rem;
}
@media only screen and (min-width: 1272px) {
  .sidebars {
    font-size: 1.125rem;
  }
}
@media only screen and (min-width: 1344px) {
  .sidebars {
    font-size: 1.1875rem;
  }
}
@media only screen and (min-width: 1488px) {
  .sidebars {
    font-size: 1.25rem;
  }
}
.sidebars h2 {
  -webkit-font-smoothing: antialiased;
  color: #112C53;
  font-family: "Lato", Helvetica, Arial, sans-serif;
  font-weight: 700;
  line-height: 1.45em;
  font-size: 1.0625rem;
  letter-spacing: 0;
  margin-top: 0;
  margin-bottom: 0.85em;
}
@media only screen and (min-width: 1272px) {
  .sidebars h2 {
    font-size: 1.125rem;
  }
}
@media only screen and (min-width: 1344px) {
  .sidebars h2 {
    font-size: 1.1875rem;
  }
}
@media only screen and (min-width: 1488px) {
  .sidebars h2 {
    font-size: 1.25rem;
  }
}
.sidebars h2::after {
  content: " ";
  display: block;
  width: 0.6em;
  border-bottom: thin solid #112C53;
  margin-top: 0.8em;
}
.sidebars h2 a {
  color: #112C53;
}
.sidebars h2 a:hover, .sidebars h2 a:focus {
  color: #EA5D4E;
}
.sidebars h2.collapsingToggle {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.sidebars h2.collapsingToggle .toggleExpand {
  -webkit-font-smoothing: antialiased;
  color: #112C53;
  font-family: "Lato", Helvetica, Arial, sans-serif;
  font-weight: 700;
  line-height: 1.45em;
  font-size: 1.0625rem;
  letter-spacing: 0;
  margin-top: 0;
  margin-bottom: 0.85em;
  text-align: left;
  padding: 0;
  width: 100%;
  background-color: transparent;
  border: 0;
  margin: 0;
  transition: background-color 0.3s;
}
@media only screen and (min-width: 1272px) {
  .sidebars h2.collapsingToggle .toggleExpand {
    font-size: 1.125rem;
  }
}
@media only screen and (min-width: 1344px) {
  .sidebars h2.collapsingToggle .toggleExpand {
    font-size: 1.1875rem;
  }
}
@media only screen and (min-width: 1488px) {
  .sidebars h2.collapsingToggle .toggleExpand {
    font-size: 1.25rem;
  }
}
.sidebars h2.collapsingToggle .toggleExpand .inner {
  display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6, BB7 */
  display: -ms-flexbox; /* TWEENER - IE 10 */
  display: -webkit-flex; /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
  display: flex; /* NEW, Spec - Firefox, Chrome, Opera */
  flex-wrap: nowrap;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  padding-left: 1.875rem;
  padding-right: 1em;
  padding-top: 0.8em;
  padding-bottom: 0.85em;
}
.sidebars h2.collapsingToggle .toggleExpand .text {
  flex-grow: 1;
}
.sidebars h2.collapsingToggle .toggleExpand .icon {
  flex-shrink: 0;
  width: 1em;
  height: 1em;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg data-name='Layer 1' xmlns='http://www.w3.org/2000/svg' width='18.874' height='18'%3E%3Cg fill='%23112c53'%3E%3Ccircle cx='1.5' cy='9.187' r='1.5'/%3E%3Cpath d='M18.874 8h-8V0h-2v18h2v-8h8V8z'/%3E%3C/g%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: contain;
}
@media only screen and (max-width: 623px) {
  .sidebars h2.collapsingToggle .toggleExpand .inner {
    padding-left: 3.5%;
    padding-right: 3.5%;
  }
}
@media only screen and (max-width: 551px) {
  .sidebars h2.collapsingToggle .toggleExpand .inner {
    padding-left: 4%;
    padding-right: 4%;
  }
}
@media only screen and (max-width: 479px) {
  .sidebars h2.collapsingToggle .toggleExpand .inner {
    padding-left: 6%;
    padding-right: 6%;
  }
}
.sidebars h2.collapsingToggle .toggleExpand:hover, .sidebars h2.collapsingToggle .toggleExpand:focus {
  background-color: #4EB6BC;
}
.sidebars h2.collapsingToggle .toggleExpand.open .icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg data-name='Layer 1' xmlns='http://www.w3.org/2000/svg' width='16' height='2'%3E%3Cpath fill='%23112c53' d='M0 0h16v2H0z' data-name='Line 31'/%3E%3C/svg%3E");
  background-size: 16px auto;
}
@media only screen and (min-width: 624px) {
  .sidebars h2.collapsingToggle .toggleExpand .inner {
    padding-left: 0;
    padding-right: 0;
  }
  .sidebars h2.collapsingToggle .toggleExpand:hover, .sidebars h2.collapsingToggle .toggleExpand:focus {
    background-color: transparent !important;
  }
}
.sidebars ul.menu {
  font-family: "Lato", Helvetica, Arial, sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  line-height: 1.6em;
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
  margin: 0;
}
@media only screen and (min-width: 768px) {
  .sidebars ul.menu {
    font-size: 1.0625rem;
  }
}
@media only screen and (min-width: 1488px) {
  .sidebars ul.menu {
    font-size: 1.125rem;
  }
}
.sidebars ul.menu li {
  margin-bottom: 0.35em;
}
.sidebars ul.menu a.menu-item {
  color: #112C53;
}
.sidebars ul.menu a.menu-item:hover, .sidebars ul.menu a.menu-item:focus, .sidebars ul.menu a.menu-item.menu-item--active-trail {
  color: #EA5D4E;
}
.sidebars .block {
  font-size: 1.4375rem;
}
@media only screen and (min-width: 624px) {
  .sidebars .block {
    font-size: 1.5rem;
  }
}
@media only screen and (min-width: 1344px) {
  .sidebars .block {
    font-size: 1.6875rem;
  }
}
@media only screen and (min-width: 1488px) {
  .sidebars .block {
    font-size: 1.875rem;
  }
}
.sidebars .block + .block {
  margin-top: 1.5rem;
}
@media only screen and (max-width: 623px) {
  .sidebars {
    position: relative;
  }
  .sidebars::before {
    content: " ";
    display: block;
    position: absolute;
    top: 0;
    left: 50%;
    z-index: -1;
    width: 100vw;
    height: 100%;
    background-color: #F4F7FC;
    transform: translateX(-50%);
  }
  .sidebars h2 {
    padding-top: 1em;
  }
  .sidebars h2.collapsingToggle {
    padding-top: 0;
  }
  .sidebars h2.collapsingToggle::after {
    content: none;
  }
  .sidebars .block {
    padding-bottom: 1.25em;
  }
  .sidebars .block.menu--main {
    position: relative;
    left: 50%;
    width: 100vw;
    padding-bottom: 0;
    transform: translateX(-50%);
  }
  .sidebars .block.menu--main > ul {
    padding-bottom: 1em;
  }
  .sidebars .block.menu--main h2,
  .sidebars .block.menu--main > ul {
    padding-left: 3.5%;
    padding-right: 3.5%;
  }
}
@media only screen and (max-width: 551px) {
  .sidebars .block.menu--main h2,
  .sidebars .block.menu--main > ul {
    padding-left: 4%;
    padding-right: 4%;
  }
}
@media only screen and (max-width: 479px) {
  .sidebars .block.menu--main h2,
  .sidebars .block.menu--main > ul {
    padding-left: 6%;
    padding-right: 6%;
  }
}

.region-post-content-inner-left {
  font-family: "Lato", Helvetica, Arial, sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  line-height: 1.6em;
  font-size: 0.875rem;
  -webkit-font-smoothing: antialiased;
}
@media only screen and (min-width: 480px) {
  .region-post-content-inner-left {
    font-size: 0.9375rem;
  }
}
@media only screen and (min-width: 768px) {
  .region-post-content-inner-left {
    font-size: 1rem;
  }
}
.region-post-content-inner-left .field--name-field-display-author.field__items .field__item {
  margin-bottom: 0;
}
.region-post-content-inner-left .block {
  margin-bottom: 1.25em;
}
@media only screen and (max-width: 911px) {
  .region-post-content-inner-left .block {
    float: left;
    clear: none;
    width: 48.3870967742%;
  }
}
@media only screen and (max-width: 767px) {
  .region-post-content-inner-left .block {
    width: 47.7837481141%;
  }
}

#block-contentfield-7,
.field--name-field-read-time {
  font-family: "Lato", Helvetica, Arial, sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  line-height: 1.6em;
  font-size: 0.875rem;
}
@media only screen and (min-width: 480px) {
  #block-contentfield-7,
  .field--name-field-read-time {
    font-size: 0.9375rem;
  }
}
@media only screen and (min-width: 768px) {
  #block-contentfield-7,
  .field--name-field-read-time {
    font-size: 1rem;
  }
}

#block-contentfield-5 > h2 {
  font-family: "Lato", Helvetica, Arial, sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  line-height: 1.6em;
  font-size: 0.875rem;
  font-weight: 700;
  margin-bottom: 0.2em;
}
@media only screen and (min-width: 480px) {
  #block-contentfield-5 > h2 {
    font-size: 0.9375rem;
  }
}
@media only screen and (min-width: 768px) {
  #block-contentfield-5 > h2 {
    font-size: 1rem;
  }
}

#block-contentfield-7 {
  margin-bottom: 0;
}

#arcsl_tweets .arcsl_twitter_text > h2 {
  -webkit-font-smoothing: antialiased;
  font-family: "Lato", Helvetica, Arial, sans-serif;
  font-weight: 700;
  line-height: 1.45em;
  font-size: 1.0625rem;
  letter-spacing: 0;
  margin-top: 0;
  margin-bottom: 0.85em;
}
@media only screen and (min-width: 1272px) {
  #arcsl_tweets .arcsl_twitter_text > h2 {
    font-size: 1.125rem;
  }
}
@media only screen and (min-width: 1344px) {
  #arcsl_tweets .arcsl_twitter_text > h2 {
    font-size: 1.1875rem;
  }
}
@media only screen and (min-width: 1488px) {
  #arcsl_tweets .arcsl_twitter_text > h2 {
    font-size: 1.25rem;
  }
}
#arcsl_tweets .arcsl_twitter_text > h2 a {
  display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6, BB7 */
  display: -ms-flexbox; /* TWEENER - IE 10 */
  display: -webkit-flex; /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
  display: flex; /* NEW, Spec - Firefox, Chrome, Opera */
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  border: 0;
}
#arcsl_tweets .arcsl_twitter_text > h2 a::before {
  content: " ";
  display: block;
  width: 1.4em;
  height: 1.18em;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='13' height='13.011' data-name='Layer 1'%3E%3Cpath fill='%23112d53' d='M7.738 5.51 12.578 0h-1.146l-4.2 4.783L3.871 0H0l5.076 7.234L0 13.011h1.147l4.437-5.052 3.545 5.052H13M1.56.847h1.762l8.109 11.359H9.669'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  margin-right: 0.375em;
}
#arcsl_tweets .arcsl_twitter_text > h2 a:hover::before, #arcsl_tweets .arcsl_twitter_text > h2 a:focus::before {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='13' height='13.011' data-name='Layer 1'%3E%3Cpath fill='%232ea9b0' d='M7.738 5.51 12.578 0h-1.146l-4.2 4.783L3.871 0H0l5.076 7.234L0 13.011h1.147l4.437-5.052 3.545 5.052H13M1.56.847h1.762l8.109 11.359H9.669'/%3E%3C/svg%3E");
}

/* 	Footer – Layout
*********************************** */
section.full_width__footer {
  background-color: #4EB6BC;
  position: relative;
  z-index: 3;
}
section.full_width__footer #footer {
  font-size: 1.0625rem;
  padding-top: 2.75em;
  padding-bottom: 0;
  position: relative;
}
@media only screen and (min-width: 1272px) {
  section.full_width__footer #footer {
    font-size: 1.125rem;
  }
}
@media only screen and (min-width: 1344px) {
  section.full_width__footer #footer {
    font-size: 1.1875rem;
  }
}
@media only screen and (min-width: 1488px) {
  section.full_width__footer #footer {
    font-size: 1.25rem;
  }
}
section.full_width__footer #footer > * {
  font-family: "Lato", Helvetica, Arial, sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  line-height: 1.6em;
  font-size: 0.875rem;
}
@media only screen and (min-width: 480px) {
  section.full_width__footer #footer > * {
    font-size: 0.9375rem;
  }
}
@media only screen and (min-width: 768px) {
  section.full_width__footer #footer > * {
    font-size: 1rem;
  }
}
@media only screen and (min-width: 696px) {
  section.full_width__footer #footer {
    padding-bottom: 0.25em;
  }
  section.full_width__footer #footer .bg_graphic {
    position: absolute;
    z-index: -1;
    top: 0;
    left: 48.3870967742%;
    height: 100%;
    width: 51.6129032258%;
  }
  section.full_width__footer #footer .bg_graphic::before {
    content: " ";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100vw;
    background-color: #2EA9B0;
  }
}
section.full_width__footer .region-footer {
  display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6, BB7 */
  display: -ms-flexbox; /* TWEENER - IE 10 */
  display: -webkit-flex; /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
  display: flex; /* NEW, Spec - Firefox, Chrome, Opera */
  flex-wrap: wrap;
}
section.full_width__footer .region-footer > * {
  width: 100%;
  -webkit-box-ordinal-group: 1;
  -moz-box-ordinal-group: 1;
  -ms-flex-order: 1;
  -webkit-order: 1;
}
section.full_width__footer .region-footer .block {
  margin-bottom: 2rem;
}
section.full_width__footer .region-footer .block:last-child {
  margin-bottom: 0;
}
@media only screen and (min-width: 696px) {
  section.full_width__footer .region-footer .block {
    width: 21.6756221712%;
    margin-right: 4.4325037718%;
  }
  section.full_width__footer .region-footer .block:nth-child(4n) {
    margin-right: 0;
  }
  section.full_width__footer .region-footer .block.menu--footer,
  section.full_width__footer .region-footer #block-sitebyeffusion {
    width: 47.7837481141%;
  }
  section.full_width__footer .region-footer #block-sitebyeffusion {
    margin-right: 0;
  }
}
@media only screen and (min-width: 768px) {
  section.full_width__footer .region-footer .block {
    width: 22.5806451613%;
    margin-right: 3.2258064516%;
  }
  section.full_width__footer .region-footer .block:nth-child(4n) {
    margin-right: 0;
  }
  section.full_width__footer .region-footer .block.menu--footer,
  section.full_width__footer .region-footer #block-sitebyeffusion {
    width: 48.3870967742%;
  }
}
@media print {
  section.full_width__footer {
    display: none;
  }
}

/* 	Footer – Elements
*********************************** */
section.full_width__footer .section_wrap {
  position: relative;
}
section.full_width__footer .section_wrap::before, section.full_width__footer .section_wrap::after {
  font-size: 1.625rem;
  content: " ";
  display: block;
  position: absolute;
  z-index: 2;
  background-size: contain;
}
@media only screen and (min-width: 480px) {
  section.full_width__footer .section_wrap::before, section.full_width__footer .section_wrap::after {
    font-size: 1.8125rem;
  }
}
@media only screen and (min-width: 624px) {
  section.full_width__footer .section_wrap::before, section.full_width__footer .section_wrap::after {
    font-size: 2rem;
  }
}
@media only screen and (min-width: 840px) {
  section.full_width__footer .section_wrap::before, section.full_width__footer .section_wrap::after {
    font-size: 2.1875rem;
  }
}
@media only screen and (min-width: 1055px) {
  section.full_width__footer .section_wrap::before, section.full_width__footer .section_wrap::after {
    font-size: 2.375rem;
  }
}
@media only screen and (min-width: 1344px) {
  section.full_width__footer .section_wrap::before, section.full_width__footer .section_wrap::after {
    font-size: 2.5625rem;
  }
}
@media only screen and (min-width: 1488px) {
  section.full_width__footer .section_wrap::before, section.full_width__footer .section_wrap::after {
    font-size: 2.75rem;
  }
}
section.full_width__footer .section_wrap::before {
  top: 0;
  right: 1em;
  width: 2.7727em;
  height: 1.7954em;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg data-name='Layer 1' xmlns='http://www.w3.org/2000/svg' width='121.954' height='79.171'%3E%3Cpath data-name='Path 83' d='M45.714 2.083C12.7 10.935-6.821 45.515 2.2 79.171l25.049-6.716c-5.319-19.841 5.975-40.174 25.179-45.322s39.157 6.806 44.477 26.647l25.049-6.717c-9.023-33.655-43.225-53.832-76.24-44.98' fill='%236667ad'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  transform: translateY(-50%);
}
section.full_width__footer .section_wrap::after {
  top: 1.5em;
  right: 0;
  width: 1.909em;
  height: 1.909em;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg data-name='Layer 1' xmlns='http://www.w3.org/2000/svg' width='106.688' height='106.688'%3E%3Cpath data-name='Path 84' d='M106.688 37.333H70.179V0H36.512v37.333H0V71h36.512v35.688h33.667V71h36.509z' fill='%23fed47a'/%3E%3C/svg%3E");
  transform: translateX(50%);
}
@media only screen and (min-width: 1272px) {
  section.full_width__footer .section_wrap::after {
    transform: translateX(110%);
  }
}
section.full_width__footer a:not(.cta), section.full_width__footer a:not(.cta):link {
  color: #112C53;
  text-decoration: none;
}
section.full_width__footer a:not(.cta):hover, section.full_width__footer a:not(.cta):focus, section.full_width__footer a:not(.cta):link:hover, section.full_width__footer a:not(.cta):link:focus {
  color: #112C53;
  text-decoration: underline;
}
section.full_width__footer p,
section.full_width__footer li,
section.full_width__footer .field--name-body p,
section.full_width__footer .field--name-body li {
  font-family: "Lato", Helvetica, Arial, sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  line-height: 1.6em;
  font-size: 0.875rem;
}
@media only screen and (min-width: 480px) {
  section.full_width__footer p,
  section.full_width__footer li,
  section.full_width__footer .field--name-body p,
  section.full_width__footer .field--name-body li {
    font-size: 0.9375rem;
  }
}
@media only screen and (min-width: 768px) {
  section.full_width__footer p,
  section.full_width__footer li,
  section.full_width__footer .field--name-body p,
  section.full_width__footer .field--name-body li {
    font-size: 1rem;
  }
}
section.full_width__footer .cta {
  display: inline-block;
  box-sizing: border-box;
  background-color: transparent;
  font-family: "Lato", Helvetica, Arial, sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  line-height: 1.6em;
  font-size: 0.875rem;
  font-weight: 700;
  text-align: center;
  padding-top: 0.6em;
  padding-bottom: 0.8em;
  padding-left: 1em;
  padding-right: 1em;
  border: thin solid white;
}
section.full_width__footer .cta, section.full_width__footer .cta:link {
  color: #112C53;
}
@media only screen and (min-width: 480px) {
  section.full_width__footer .cta {
    font-size: 0.9375rem;
  }
}
@media only screen and (min-width: 768px) {
  section.full_width__footer .cta {
    font-size: 1rem;
  }
}
section.full_width__footer .cta:hover, section.full_width__footer .cta:focus-visible {
  background-color: white;
  border-color: white;
}
@media only screen and (max-width: 479px) {
  section.full_width__footer .cta {
    width: auto;
  }
}
section.full_width__footer h2 {
  -webkit-font-smoothing: antialiased;
  color: #112C53;
  font-family: "Lato", Helvetica, Arial, sans-serif;
  font-weight: 700;
  line-height: 1.45em;
  font-size: 1.0625rem;
  letter-spacing: 0;
  margin-top: 0;
  margin-bottom: 0.85em;
  margin-bottom: 0.4em;
}
@media only screen and (min-width: 1272px) {
  section.full_width__footer h2 {
    font-size: 1.125rem;
  }
}
@media only screen and (min-width: 1344px) {
  section.full_width__footer h2 {
    font-size: 1.1875rem;
  }
}
@media only screen and (min-width: 1488px) {
  section.full_width__footer h2 {
    font-size: 1.25rem;
  }
}
section.full_width__footer ul.menu {
  -webkit-font-smoothing: antialiased;
  font-family: "Lato", Helvetica, Arial, sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  line-height: 1.6em;
  font-size: 0.875rem;
  -webkit-font-smoothing: antialiased;
  margin: 0;
}
@media only screen and (min-width: 480px) {
  section.full_width__footer ul.menu {
    font-size: 0.9375rem;
  }
}
@media only screen and (min-width: 768px) {
  section.full_width__footer ul.menu {
    font-size: 1rem;
  }
}
section.full_width__footer ul.menu li {
  margin-bottom: 0.3em;
}
@media only screen and (max-width: 695px) {
  section.full_width__footer .block.menu--highlight-menu-main {
    margin-bottom: 0;
  }
}
@media only screen and (min-width: 696px) {
  section.full_width__footer .block.menu--highlight-menu-sub {
    font-size: 1.0625rem;
    padding-top: 1.85em;
  }
}
@media only screen and (min-width: 696px) and (min-width: 1272px) {
  section.full_width__footer .block.menu--highlight-menu-sub {
    font-size: 1.125rem;
  }
}
@media only screen and (min-width: 696px) and (min-width: 1344px) {
  section.full_width__footer .block.menu--highlight-menu-sub {
    font-size: 1.1875rem;
  }
}
@media only screen and (min-width: 696px) and (min-width: 1488px) {
  section.full_width__footer .block.menu--highlight-menu-sub {
    font-size: 1.25rem;
  }
}
section.full_width__footer .block.menu--footer ul {
  display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6, BB7 */
  display: -ms-flexbox; /* TWEENER - IE 10 */
  display: -webkit-flex; /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
  display: flex; /* NEW, Spec - Firefox, Chrome, Opera */
}
section.full_width__footer .block.menu--footer ul li {
  font-family: "Lato", Helvetica, Arial, sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  line-height: 1.4em;
  font-size: 0.875rem;
  display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6, BB7 */
  display: -ms-flexbox; /* TWEENER - IE 10 */
  display: -webkit-flex; /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
  display: flex; /* NEW, Spec - Firefox, Chrome, Opera */
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0.65em;
}
section.full_width__footer .block.menu--footer ul li::after {
  content: " ";
  display: block;
  width: 0.1875rem;
  height: 0.1875rem;
  background-color: #112C53;
  border-radius: 50%;
  margin-left: 0.65em;
}
section.full_width__footer .block.menu--footer ul li:last-child::after {
  content: none;
}
section.full_width__footer .social_media_links {
  gap: 1.2rem;
}
section.full_width__footer .social_media_links li a {
  width: 1.8rem;
  height: 1.8rem;
  background-size: contain;
}
section.full_width__footer .social_media_links li.email a {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg data-name='Layer 1' xmlns='http://www.w3.org/2000/svg' width='15' height='11.25'%3E%3Cpath d='M7.5 6.071L.009 0h14.982zm0 1.608L0 1.6v9.65h15V1.6z' fill='%23fff'/%3E%3C/svg%3E");
}
section.full_width__footer .social_media_links li.twitter a {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='13' height='13.011' data-name='Layer 1'%3E%3Cpath fill='%23fff' d='M7.738 5.51 12.578 0h-1.146l-4.2 4.783L3.871 0H0l5.076 7.234L0 13.011h1.147l4.437-5.052 3.545 5.052H13M1.56.847h1.762l8.109 11.359H9.669'/%3E%3C/svg%3E");
  background-size: auto 83%;
}
section.full_width__footer .social_media_links li.linkedin a {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12.522' height='12' data-name='Layer 1'%3E%3Cpath fill='%23fff' d='M2.6 1.3A1.294 1.294 0 1 1 1.3 0a1.3 1.3 0 0 1 1.3 1.3Zm.011 2.348H0V12h2.609Zm4.164 0H4.181V12h2.593V7.618c0-2.437 3.145-2.636 3.145 0V12h2.6V6.714c0-4.111-4.655-3.961-5.749-1.937Z'/%3E%3C/svg%3E");
  background-size: auto 87%;
}

@media only screen and (max-width: 695px) {
  #block-keepintouch,
  #block-socialmediaaccounts,
  #block-footer,
  #block-sitebyeffusion {
    position: relative;
    margin-bottom: 0;
    padding-bottom: 2em;
  }
  #block-keepintouch::before,
  #block-socialmediaaccounts::before,
  #block-footer::before,
  #block-sitebyeffusion::before {
    content: " ";
    display: block;
    position: absolute;
    top: 0;
    left: 50%;
    z-index: -1;
    width: 100vw;
    height: 100%;
    transform: translateX(-50%);
    background-color: #2EA9B0;
  }
  .field--name-body {
    max-width: 25.5rem;
  }
}
@media only screen and (max-width: 695px) {
  #block-keepintouch {
    padding-top: 2em;
  }
}

@media only screen and (max-width: 695px) {
  #block-footer {
    padding-bottom: 0.25em;
  }
}

#block-sitebyeffusion .field--name-body {
  font-family: "Lato", Helvetica, Arial, sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  line-height: 1.4em;
  font-size: 0.875rem;
}
#block-sitebyeffusion .field--name-body a {
  border-color: #112C53;
}
#block-sitebyeffusion .field--name-body a:hover, #block-sitebyeffusion .field--name-body a:focus {
  text-decoration: none;
  color: white;
  border-color: white;
}
@media only screen and (min-width: 696px) {
  #block-sitebyeffusion .field--name-body {
    text-align: right;
  }
}

/*  Carousel slide functionality
    uses Slick
*********************************** */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6, BB7 */
  display: -ms-flexbox; /* TWEENER - IE 10 */
  display: -webkit-flex; /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
  display: flex; /* NEW, Spec - Firefox, Chrome, Opera */
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  position: relative;
}
.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  height: 100%;
  min-height: 1px;
  margin-right: 1.5rem;
  display: none;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

/*  Carousel Theme
*********************************** */
/* Slider */
.slick-loading .slick-list {
  background: #fff slick-image-url("ajax-loader.gif") center center no-repeat;
}

/* Icons */
/* Arrows */
.slick-dots {
  list-style: none;
  box-sizing: border-box;
  padding-top: 0;
  padding-bottom: 0;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  margin: 0;
  margin-top: 1rem;
  display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6, BB7 */
  display: -ms-flexbox; /* TWEENER - IE 10 */
  display: -webkit-flex; /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
  display: flex; /* NEW, Spec - Firefox, Chrome, Opera */
  flex-wrap: wrap;
}
.slick-dots li {
  display: block;
  overflow: hidden;
  text-align: left;
  text-indent: -9999px;
  position: relative;
  width: 0.5rem;
  height: 1rem;
  cursor: pointer;
  margin-left: 0.75rem;
  margin-right: 0.75rem;
  margin-bottom: 0.5rem;
}
.slick-dots li button {
  display: block;
  overflow: hidden;
  text-align: left;
  text-indent: -9999px;
  padding: 0;
  min-width: 0;
  border: 0;
  width: 6px;
  height: 6px;
  background-color: #112C53;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.slick-dots li:last-child {
  margin-right: 0;
}
.slick-dots li:first-child:last-child {
  display: none;
}
.slick-dots li:hover button, .slick-dots li:focus button, .slick-dots li.slick-active button {
  background-color: white;
}
@media only screen and (min-width: 552px) {
  .slick-dots li {
    width: 1rem;
  }
  .slick-dots li button {
    width: 8px;
    height: 8px;
  }
}
@media only screen and (min-width: 1055px) {
  .slick-dots li {
    height: 2rem;
  }
  .slick-dots li button {
    width: 11px;
    height: 11px;
  }
}

.caro_head {
  font-size: 1.1875rem;
  display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6, BB7 */
  display: -ms-flexbox; /* TWEENER - IE 10 */
  display: -webkit-flex; /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
  display: flex; /* NEW, Spec - Firefox, Chrome, Opera */
  flex-wrap: wrap;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5em;
}
@media only screen and (min-width: 1272px) {
  .caro_head {
    font-size: 1.25rem;
  }
}
@media only screen and (min-width: 1488px) {
  .caro_head {
    font-size: 1.375rem;
  }
}
.caro_head h2,
.caro_head .slick-dots {
  margin-bottom: 0.2em;
}
.caro_head h2 {
  margin-right: 1em;
  margin-bottom: 0.5em;
}
.caro_head .slick-dots {
  margin-top: 0;
}

/*  Owl Carousel
*********************************** */
.owl-stage {
  display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6, BB7 */
  display: -ms-flexbox; /* TWEENER - IE 10 */
  display: -webkit-flex; /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
  display: flex; /* NEW, Spec - Firefox, Chrome, Opera */
  flex-wrap: nowrap;
  position: relative;
}

.largeImageCarousel {
  display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6, BB7 */
  display: -ms-flexbox; /* TWEENER - IE 10 */
  display: -webkit-flex; /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
  display: flex; /* NEW, Spec - Firefox, Chrome, Opera */
  justify-content: space-between;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  position: relative;
  left: 50%;
  width: 100vw;
  margin-left: -50vw;
}
.largeImageCarousel .slick-list {
  width: 100%;
}
@media only screen and (max-width: 695px) {
  .largeImageCarousel .slick-arrow {
    display: none !important;
  }
}
.largeImageCarousel .slick-arrow.slick-prev {
  display: inline-block;
  overflow: hidden;
  text-align: left;
  text-indent: -9999px;
  line-height: 0;
  box-sizing: border-box;
  padding: 0;
  width: 1.5625rem;
  min-width: 0;
  height: 1.5625rem;
  overflow: hidden;
  position: relative;
  background-repeat: no-repeat;
  background-color: transparent;
  background-position: 50% 50%;
  border: 0;
}
.largeImageCarousel .slick-arrow.slick-prev:hover, .largeImageCarousel .slick-arrow.slick-prev:focus {
  background-color: transparent;
}
.largeImageCarousel .slick-arrow.slick-next {
  display: inline-block;
  overflow: hidden;
  text-align: left;
  text-indent: -9999px;
  line-height: 0;
  box-sizing: border-box;
  padding: 0;
  width: 1.5625rem;
  min-width: 0;
  height: 1.5625rem;
  overflow: hidden;
  position: relative;
  background-repeat: no-repeat;
  background-color: transparent;
  background-position: 50% 50%;
  border: 0;
}
.largeImageCarousel .slick-arrow.slick-next:hover, .largeImageCarousel .slick-arrow.slick-next:focus {
  background-color: transparent;
}
.largeImageCarousel .car_item {
  margin-right: 0;
}
.largeImageCarousel .car_item img {
  width: 100%;
}
.largeImageCarousel .slick-dots {
  justify-content: center;
  width: 82.7956989247%;
  position: absolute;
  bottom: 0rem;
  left: 8.6021505376%;
  margin: 0;
}
@media only screen and (min-width: 552px) {
  .largeImageCarousel .slick-dots {
    bottom: 1rem;
  }
}
@media only screen and (min-width: 696px) {
  .largeImageCarousel {
    width: 100%;
    left: initial;
    margin-left: 0;
  }
  .largeImageCarousel .slick-list {
    width: 82.7956989247%;
  }
}
@media only screen and (min-width: 1344px) {
  .largeImageCarousel .slick-list {
    width: 72.0430107527%;
  }
}
@media only screen and (min-width: 1488px) {
  .largeImageCarousel .slick-arrow.slick-prev, .largeImageCarousel .slick-arrow.slick-next {
    width: 5rem;
    height: 5rem;
    background-size: 25% auto;
    border-width: 0.1875rem;
    transition: all 0.3s;
  }
}
@media only screen and (min-width: 2208px) {
  .largeImageCarousel .slick-list {
    width: 82.7956989247%;
  }
}

.paragraph {
  font-size: 1.625rem;
  margin-top: 2em;
  margin-bottom: 2em;
}
@media only screen and (min-width: 480px) {
  .paragraph {
    font-size: 1.8125rem;
  }
}
@media only screen and (min-width: 624px) {
  .paragraph {
    font-size: 2rem;
  }
}
@media only screen and (min-width: 840px) {
  .paragraph {
    font-size: 2.1875rem;
  }
}
@media only screen and (min-width: 1055px) {
  .paragraph {
    font-size: 2.375rem;
  }
}
@media only screen and (min-width: 1344px) {
  .paragraph {
    font-size: 2.5625rem;
  }
}
@media only screen and (min-width: 1488px) {
  .paragraph {
    font-size: 2.75rem;
  }
}

/*  Paragraphs – on content page and pulled out to full width
*********************************** */
.paragraph.style__text {
  font-size: 1rem;
  margin-top: 1em;
  margin-bottom: 1em;
}
@media only screen and (min-width: 768px) {
  .paragraph.style__text {
    font-size: 1.0625rem;
  }
}
@media only screen and (min-width: 1488px) {
  .paragraph.style__text {
    font-size: 1.125rem;
  }
}

/*  Paragraphs – Related team
*********************************** */
.paragraph.style__related-team > h2 {
  -webkit-font-smoothing: antialiased;
  color: #112C53;
  font-family: "Lato", Helvetica, Arial, sans-serif;
  font-weight: 800;
  line-height: 1.375em;
  font-size: 1.4375rem;
  letter-spacing: 0;
  margin-top: 0;
  margin-bottom: 0.6em;
  margin-bottom: 3em;
}
@media only screen and (min-width: 624px) {
  .paragraph.style__related-team > h2 {
    font-size: 1.5rem;
  }
}
@media only screen and (min-width: 1344px) {
  .paragraph.style__related-team > h2 {
    font-size: 1.6875rem;
  }
}
@media only screen and (min-width: 1488px) {
  .paragraph.style__related-team > h2 {
    font-size: 1.875rem;
  }
}
.paragraph.style__related-team > h2 span {
  border-bottom: thin solid #2EA9B0;
}
.paragraph.style__related-team .field__items .field__item {
  padding-bottom: 2.5rem;
}
@media only screen and (min-width: 768px) {
  .paragraph.style__related-team .field__items {
    display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6, BB7 */
    display: -ms-flexbox; /* TWEENER - IE 10 */
    display: -webkit-flex; /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
    display: flex; /* NEW, Spec - Firefox, Chrome, Opera */
  }
  .paragraph.style__related-team .field__items .field__item {
    width: 48.0519480519%;
    margin-right: 3.8961038961%;
    padding-bottom: 4.9180327869%;
  }
  .paragraph.style__related-team .field__items .field__item:nth-child(2n) {
    margin-right: 0;
  }
}
@media only screen and (min-width: 912px) {
  .paragraph.style__related-team .field__items .field__item {
    width: 47.5409836066%;
    margin-right: 4.9180327869%;
  }
}

/*  Paragraphs – Profile
*********************************** */
.paragraph.style__profile {
  display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6, BB7 */
  display: -ms-flexbox; /* TWEENER - IE 10 */
  display: -webkit-flex; /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
  display: flex; /* NEW, Spec - Firefox, Chrome, Opera */
  width: 100%;
  font-size: 1.1875rem;
  position: relative;
  margin-top: 0;
}
@media only screen and (min-width: 1272px) {
  .paragraph.style__profile {
    font-size: 1.25rem;
  }
}
@media only screen and (min-width: 1488px) {
  .paragraph.style__profile {
    font-size: 1.375rem;
  }
}
.paragraph.style__profile article {
  flex-shrink: 0;
}
.paragraph.style__profile .headshot {
  flex-shrink: 0;
  width: 7rem;
  margin-right: 1.35em;
}
.paragraph.style__profile .headshot .inner {
  display: block;
  width: 100%;
  height: 0;
  padding-bottom: 100%;
  overflow: hidden;
  border-radius: 50%;
}
.paragraph.style__profile .text {
  flex-shrink: 1;
  flex-grow: 1;
}
.paragraph.style__profile h2 {
  -webkit-font-smoothing: antialiased;
  font-family: "Lato", Helvetica, Arial, sans-serif;
  font-weight: 700;
  line-height: 1.4em;
  font-size: 1.1875rem;
  letter-spacing: 0;
  margin-top: 0;
  margin-bottom: 0.4em;
}
@media only screen and (min-width: 1272px) {
  .paragraph.style__profile h2 {
    font-size: 1.25rem;
  }
}
@media only screen and (min-width: 1488px) {
  .paragraph.style__profile h2 {
    font-size: 1.375rem;
  }
}
.paragraph.style__profile h2 a {
  color: #112C53;
}
.paragraph.style__profile h2 a::before {
  content: " ";
  display: block;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.paragraph.style__profile h2 a:hover, .paragraph.style__profile h2 a:focus {
  color: #4EB6BC;
}

/*  Captions (used in paragraphs)
*********************************** */
/*  Paragraph – Image
*********************************** */
.paragraph.style__image {
  font-size: 0.875rem;
}
@media only screen and (min-width: 480px) {
  .paragraph.style__image {
    font-size: 0.9375rem;
  }
}
@media only screen and (min-width: 768px) {
  .paragraph.style__image {
    font-size: 1rem;
  }
}
.paragraph.style__image .inner {
  display: inline-block;
  text-align: right;
}
.paragraph.style__image .field--name-field-image {
  max-width: calc(100% - 2em);
  margin-bottom: -3.9em;
}
.paragraph.style__image .field--name-field-caption {
  position: relative;
  z-index: 2;
  display: inline-block;
  text-align: left;
  box-sizing: border-box;
  max-width: 21.875rem;
  margin-right: -2em;
}
.paragraph.style__image img {
  display: block;
  margin: 0;
}
@media only screen and (max-width: 551px) {
  .paragraph.style__image .field--name-field-image {
    display: table-cell;
  }
  .paragraph.style__image .field--name-field-caption {
    display: table-caption;
    caption-side: bottom;
    max-width: none;
    margin-right: 0;
  }
}

/*  Paragraph – Text and image
*********************************** */
.paragraph.style__image-and-text .image {
  margin-bottom: 1.25rem;
}
@media only screen and (min-width: 552px) {
  .paragraph.style__image-and-text {
    display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6, BB7 */
    display: -ms-flexbox; /* TWEENER - IE 10 */
    display: -webkit-flex; /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
    display: flex; /* NEW, Spec - Firefox, Chrome, Opera */
  }
  .paragraph.style__image-and-text .image {
    flex-shrink: 0;
    width: 30.3783308188%;
    margin-right: 4.4325037718%;
  }
  .paragraph.style__image-and-text .text {
    flex-shrink: 1;
    flex-grow: 1;
  }
}
@media only screen and (min-width: 624px) {
  .paragraph.style__image-and-text .image {
    width: 36.7800524248%;
    margin-right: 5.366579292%;
  }
}
@media only screen and (min-width: 768px) {
  .paragraph.style__image-and-text .image {
    width: 37.6623376623%;
    margin-right: 3.8961038961%;
  }
}
@media only screen and (min-width: 912px) {
  .paragraph.style__image-and-text .image {
    width: 34.4262295082%;
    margin-right: 4.9180327869%;
  }
}

/*  Paragraph – Full width image
*********************************** */
.paragraph.style__full-with-image {
  position: relative;
  left: 50%;
}
@media only screen and (max-width: 767px) {
  .paragraph.style__full-with-image {
    width: 100vw;
    transform: translateX(-50%);
  }
}
@media only screen and (min-width: 768px) {
  .paragraph.style__full-with-image {
    left: -10.3896103896%;
    right: -10.3896103896%;
    width: 120.77922%;
  }
}
@media only screen and (min-width: 912px) {
  .paragraph.style__full-with-image {
    left: -26.2295081967%;
    right: -26.2295081967%;
    width: 152.45902%;
  }
}

/*  Paragraph – Quote
*********************************** */
.paragraph.style__quote {
  padding-bottom: 1.25rem;
}
.paragraph.style__quote .inner {
  font-size: 1.4375rem;
  position: relative;
  padding-top: 1.275em;
  padding-bottom: 1.9em;
  border: thin solid #EA5D4E;
}
@media only screen and (min-width: 624px) {
  .paragraph.style__quote .inner {
    font-size: 1.5rem;
  }
}
@media only screen and (min-width: 1344px) {
  .paragraph.style__quote .inner {
    font-size: 1.6875rem;
  }
}
@media only screen and (min-width: 1488px) {
  .paragraph.style__quote .inner {
    font-size: 1.875rem;
  }
}
.paragraph.style__quote .inner.has_attr {
  border-bottom: 0;
}
.paragraph.style__quote .quote {
  font-family: "Lato", Helvetica, Arial, sans-serif;
  font-weight: 400;
  line-height: 1.45em;
  letter-spacing: 0;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  font-size: 1.4375rem;
  padding-left: 1.5em;
  padding-right: 1.5em;
  margin: 0;
}
@media only screen and (min-width: 624px) {
  .paragraph.style__quote .quote {
    font-size: 1.5rem;
  }
}
@media only screen and (min-width: 1344px) {
  .paragraph.style__quote .quote {
    font-size: 1.6875rem;
  }
}
@media only screen and (min-width: 1488px) {
  .paragraph.style__quote .quote {
    font-size: 1.875rem;
  }
}
.paragraph.style__quote .quote::before {
  content: open-quote;
}
.paragraph.style__quote .quote::after {
  content: close-quote;
}
.paragraph.style__quote .mini_person {
  font-size: 1.4375rem;
  display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6, BB7 */
  display: -ms-flexbox; /* TWEENER - IE 10 */
  display: -webkit-flex; /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
  display: flex; /* NEW, Spec - Firefox, Chrome, Opera */
  flex-wrap: nowrap;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  position: absolute;
  bottom: 0;
  transform: translateY(50%);
  width: 100%;
}
@media only screen and (min-width: 624px) {
  .paragraph.style__quote .mini_person {
    font-size: 1.5rem;
  }
}
@media only screen and (min-width: 1344px) {
  .paragraph.style__quote .mini_person {
    font-size: 1.6875rem;
  }
}
@media only screen and (min-width: 1488px) {
  .paragraph.style__quote .mini_person {
    font-size: 1.875rem;
  }
}
.paragraph.style__quote .mini_person::before, .paragraph.style__quote .mini_person::after {
  content: " ";
  display: block;
  border-bottom: thin solid #EA5D4E;
}
.paragraph.style__quote .mini_person::before {
  flex-grow: 0;
  flex-shrink: 0;
  width: calc(1.5em - 1rem);
  margin-right: 1rem;
}
.paragraph.style__quote .mini_person::after {
  flex-grow: 1;
  flex-shrink: 1;
  margin-left: 1rem;
}
@media only screen and (min-width: 768px) {
  .paragraph.style__quote .quote {
    padding-left: 3.15em;
    padding-right: 3.15em;
  }
  .paragraph.style__quote .mini_person::before {
    width: calc(3.15em - 2.5rem);
    margin-right: 2.5rem;
  }
  .paragraph.style__quote .mini_person::after {
    margin-left: 2.5rem;
  }
}

/*  Paragraph – Download
*********************************** */
.paragraph.style__download .file a {
  -webkit-font-smoothing: antialiased;
  color: #112C53;
  font-family: "Lato", Helvetica, Arial, sans-serif;
  font-weight: 700;
  line-height: 1.45em;
  font-size: 1.0625rem;
  letter-spacing: 0;
  margin-top: 0;
  margin-bottom: 0.85em;
  display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6, BB7 */
  display: -ms-flexbox; /* TWEENER - IE 10 */
  display: -webkit-flex; /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
  display: flex; /* NEW, Spec - Firefox, Chrome, Opera */
  justify-content: space-between;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  position: relative;
  padding-top: 1.15em;
  padding-bottom: 1.15em;
  padding-left: 1.25em;
  padding-right: 1.25em;
  background-color: #EA5D4E;
}
@media only screen and (min-width: 1272px) {
  .paragraph.style__download .file a {
    font-size: 1.125rem;
  }
}
@media only screen and (min-width: 1344px) {
  .paragraph.style__download .file a {
    font-size: 1.1875rem;
  }
}
@media only screen and (min-width: 1488px) {
  .paragraph.style__download .file a {
    font-size: 1.25rem;
  }
}
.paragraph.style__download .file a .cta {
  width: auto;
}
@media only screen and (max-width: 551px) {
  .paragraph.style__download .file a {
    padding-bottom: 2.25em;
    margin-bottom: 3em;
  }
  .paragraph.style__download .file a .cta {
    position: absolute;
    bottom: 0;
    right: 0;
    transform: translateY(50%);
  }
}
@media only screen and (min-width: 1055px) {
  .paragraph.style__download .file a {
    padding-right: 0;
  }
  .paragraph.style__download .file a .cta {
    transform: translateX(2.8em);
  }
}

/*  Paragraph – Content list
*********************************** */
.paragraph.style__content-list {
  font-size: 1.4375rem;
  padding-top: 2em;
  border-top: thin solid #EA5D4E;
  margin-top: 1em;
}
@media only screen and (min-width: 624px) {
  .paragraph.style__content-list {
    font-size: 1.5rem;
  }
}
@media only screen and (min-width: 1344px) {
  .paragraph.style__content-list {
    font-size: 1.6875rem;
  }
}
@media only screen and (min-width: 1488px) {
  .paragraph.style__content-list {
    font-size: 1.875rem;
  }
}

/*  Paragraph – You might also like
*********************************** */
.paragraph.style__you-might-also-like {
  margin-top: 1.65em;
}

.paragraph.style__accordion {
  font-size: 1rem;
  border-top: 1px solid #E6EAF0;
  margin-top: 0;
  margin-bottom: 1em;
}
@media only screen and (min-width: 768px) {
  .paragraph.style__accordion {
    font-size: 1.0625rem;
  }
}
@media only screen and (min-width: 1488px) {
  .paragraph.style__accordion {
    font-size: 1.125rem;
  }
}

.paragraph.style__accordion-item {
  border-bottom: 1px solid #E6EAF0;
  margin-top: 0;
  margin-bottom: 0;
}
.paragraph.style__accordion-item .field--name-field-title,
.paragraph.style__accordion-item .toggleExpand {
  -webkit-font-smoothing: antialiased;
  color: #112C53;
  font-family: "Lato", Helvetica, Arial, sans-serif;
  font-weight: 700;
  line-height: 1.6em;
  letter-spacing: 0;
  font-size: 1rem;
  margin: 0;
}
@media only screen and (min-width: 768px) {
  .paragraph.style__accordion-item .field--name-field-title,
  .paragraph.style__accordion-item .toggleExpand {
    font-size: 1.0625rem;
  }
}
@media only screen and (min-width: 1488px) {
  .paragraph.style__accordion-item .field--name-field-title,
  .paragraph.style__accordion-item .toggleExpand {
    font-size: 1.125rem;
  }
}
.paragraph.style__accordion-item .toggleExpand {
  text-align: left;
  width: 100%;
  background-color: transparent;
  padding-top: 0.65em;
  padding-bottom: 0.65em;
  padding-left: 0;
  padding-right: 0;
  border: 0;
  border-radius: 0;
}
.paragraph.style__accordion-item .toggleExpand .inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.paragraph.style__accordion-item .toggleExpand .icon {
  display: block;
  position: relative;
  width: 0.7059em;
  height: 0.7059em;
  margin-right: 1.2em;
}
.paragraph.style__accordion-item .toggleExpand .icon::before, .paragraph.style__accordion-item .toggleExpand .icon::after {
  content: " ";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 2px;
  background-color: #112C53;
}
.paragraph.style__accordion-item .toggleExpand .icon::before {
  transform: translate(-50%, -50%);
}
.paragraph.style__accordion-item .toggleExpand .icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}
.paragraph.style__accordion-item .toggleExpand:hover, .paragraph.style__accordion-item .toggleExpand:focus-visible {
  color: #2EA9B0;
}
.paragraph.style__accordion-item .toggleExpand:hover .icon, .paragraph.style__accordion-item .toggleExpand:focus-visible .icon {
  opacity: 0.65;
}
.paragraph.style__accordion-item .toggleExpand.open .icon::after {
  display: none;
}
.paragraph.style__accordion-item .field--name-field-text {
  padding-top: 0;
  padding-bottom: 2.25em;
}

.paragraph.style__jump-title {
  font-size: 1.4375rem;
  margin-top: 1.55em;
  margin-bottom: 1em;
}
@media only screen and (min-width: 624px) {
  .paragraph.style__jump-title {
    font-size: 1.5rem;
  }
}
@media only screen and (min-width: 1344px) {
  .paragraph.style__jump-title {
    font-size: 1.6875rem;
  }
}
@media only screen and (min-width: 1488px) {
  .paragraph.style__jump-title {
    font-size: 1.875rem;
  }
}
.paragraph.style__jump-title h2 {
  -webkit-font-smoothing: antialiased;
  color: #112C53;
  font-family: "Lato", Helvetica, Arial, sans-serif;
  font-weight: 800;
  line-height: 1.375em;
  font-size: 1.4375rem;
  letter-spacing: 0;
  margin-top: 0;
  margin-bottom: 0.6em;
}
@media only screen and (min-width: 624px) {
  .paragraph.style__jump-title h2 {
    font-size: 1.5rem;
  }
}
@media only screen and (min-width: 1344px) {
  .paragraph.style__jump-title h2 {
    font-size: 1.6875rem;
  }
}
@media only screen and (min-width: 1488px) {
  .paragraph.style__jump-title h2 {
    font-size: 1.875rem;
  }
}

.paragraph.paragraph--type--downloads {
  font-size: 1rem;
}
@media only screen and (min-width: 768px) {
  .paragraph.paragraph--type--downloads {
    font-size: 1.0625rem;
  }
}
@media only screen and (min-width: 1488px) {
  .paragraph.paragraph--type--downloads {
    font-size: 1.125rem;
  }
}
@media only screen and (min-width: 552px) {
  .paragraph.paragraph--type--downloads .field--name-field-a-download.many_item.field__items {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 2.25rem;
  }
}

.paragraph.paragraph--type--download-item {
  font-size: 1rem;
  color: white;
  position: relative;
  background-color: #112C53;
  padding-top: 1.1em;
  padding-bottom: 1em;
  padding-left: 1.3em;
  padding-right: 1.3em;
  clip-path: polygon(0% 0%, calc(100% - 21px) 0%, 100% calc(0% + 21px), 100% 100%, 0% 100%);
  margin: 0;
}
@media only screen and (min-width: 768px) {
  .paragraph.paragraph--type--download-item {
    font-size: 1.0625rem;
  }
}
@media only screen and (min-width: 1488px) {
  .paragraph.paragraph--type--download-item {
    font-size: 1.125rem;
  }
}
.paragraph.paragraph--type--download-item::before {
  content: " ";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  width: 21px;
  height: 21px;
  background-color: #EA5D4E;
}
.paragraph.paragraph--type--download-item h2 {
  -webkit-font-smoothing: antialiased;
  color: white;
  font-family: "Lato", Helvetica, Arial, sans-serif;
  font-weight: 700;
  line-height: 1.6em;
  letter-spacing: 0;
  font-size: 1rem;
}
@media only screen and (min-width: 768px) {
  .paragraph.paragraph--type--download-item h2 {
    font-size: 1.0625rem;
  }
}
@media only screen and (min-width: 1488px) {
  .paragraph.paragraph--type--download-item h2 {
    font-size: 1.125rem;
  }
}
.paragraph.paragraph--type--download-item .field--name-field-introduction {
  font-family: "Lato", Helvetica, Arial, sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  line-height: 1.6em;
  font-size: 0.875rem;
}
@media only screen and (min-width: 480px) {
  .paragraph.paragraph--type--download-item .field--name-field-introduction {
    font-size: 0.9375rem;
  }
}
@media only screen and (min-width: 768px) {
  .paragraph.paragraph--type--download-item .field--name-field-introduction {
    font-size: 1rem;
  }
}
.paragraph.paragraph--type--download-item .field--name-field-download-text {
  -webkit-font-smoothing: antialiased;
  font-family: "Lato", Helvetica, Arial, sans-serif;
  font-weight: 800;
  line-height: 1.2em;
  letter-spacing: 0;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.75rem;
  padding-top: 1.1em;
  border-top: 1px solid rgba(255, 255, 255, 0.27);
  margin-top: 1.5em;
}
@media only screen and (min-width: 768px) {
  .paragraph.paragraph--type--download-item .field--name-field-download-text {
    font-size: 0.8125rem;
  }
}
.paragraph.paragraph--type--download-item .fancydownload {
  display: block;
  overflow: hidden;
  text-align: left;
  text-indent: -9999px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.paragraph.paragraph--type--download-item:hover, .paragraph.paragraph--type--download-item:focus-within {
  opacity: 0.85;
}

.paragraph.style__highlighted-text {
  font-size: 1rem;
  background-color: rgba(234, 93, 78, 0.2);
  padding-top: 1.1em;
  padding-bottom: 1.3em;
  padding-left: 1.3em;
  padding-right: 1.3em;
  margin-top: 2.5em;
  margin-bottom: 2.5em;
}
@media only screen and (min-width: 768px) {
  .paragraph.style__highlighted-text {
    font-size: 1.0625rem;
  }
}
@media only screen and (min-width: 1488px) {
  .paragraph.style__highlighted-text {
    font-size: 1.125rem;
  }
}
.paragraph.style__highlighted-text a:not(.cta) {
  border-bottom-color: #112C53;
}
.paragraph.style__highlighted-text p {
  font-family: "Lato", Helvetica, Arial, sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  line-height: 1.6em;
  font-size: 1rem;
  font-weight: 700;
}
@media only screen and (min-width: 768px) {
  .paragraph.style__highlighted-text p {
    font-size: 1.0625rem;
  }
}
@media only screen and (min-width: 1488px) {
  .paragraph.style__highlighted-text p {
    font-size: 1.125rem;
  }
}

.field--name-field-content .field__item:first-child .paragraph {
  margin-top: 0;
}
.field--name-field-content .field__item:last-child .paragraph {
  margin-bottom: 0;
}

/*  Pagination
*********************************** */
nav.pager {
  -webkit-font-smoothing: antialiased;
  color: #112C53;
  font-family: "Lato", Helvetica, Arial, sans-serif;
  font-weight: 700;
  line-height: 1.4em;
  font-size: 1.1875rem;
  letter-spacing: 0;
  margin-top: 0;
  margin-bottom: 0.4em;
  margin-top: 2rem;
  margin-bottom: 2rem;
}
@media only screen and (min-width: 1272px) {
  nav.pager {
    font-size: 1.25rem;
  }
}
@media only screen and (min-width: 1488px) {
  nav.pager {
    font-size: 1.375rem;
  }
}
nav.pager ul {
  list-style: none;
  padding: 0;
  display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6, BB7 */
  display: -ms-flexbox; /* TWEENER - IE 10 */
  display: -webkit-flex; /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
  display: flex; /* NEW, Spec - Firefox, Chrome, Opera */
  justify-content: center;
}
nav.pager ul li {
  margin-right: 0.35em;
}
nav.pager ul li:last-child {
  margin-right: 0;
}
nav.pager ul li a {
  display: inline-block;
  box-sizing: border-box;
  background-color: #4EB6BC;
  -webkit-font-smoothing: antialiased;
  font-family: "Lato", Helvetica, Arial, sans-serif;
  font-weight: 800;
  line-height: 1.2em;
  letter-spacing: 0;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.75rem;
  text-align: center;
  position: relative;
  padding-top: 0.975em;
  padding-bottom: 0.975em;
  min-width: 2.5em;
  border: 0;
  padding-left: 2em;
  padding-right: 2em;
  padding-left: 1.5em;
  padding-right: 1.5em;
  min-width: 0;
}
nav.pager ul li a, nav.pager ul li a:link {
  color: #112C53;
}
@media only screen and (min-width: 768px) {
  nav.pager ul li a {
    font-size: 0.8125rem;
  }
}
nav.pager ul li a:hover, nav.pager ul li a:focus-visible, a:hover nav.pager ul li a, a:focus-visible nav.pager ul li a {
  color: #112C53;
  background-color: #C8ECF0;
}
@media only screen and (max-width: 407px) {
  nav.pager ul li a {
    width: 100%;
  }
}
nav.pager ul li.is-active a {
  color: white;
  background-color: #112C53;
  border-color: #112C53;
}

.js-pager__items {
  list-style: none;
  padding: 0;
  margin: 0;
  display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6, BB7 */
  display: -ms-flexbox; /* TWEENER - IE 10 */
  display: -webkit-flex; /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
  display: flex; /* NEW, Spec - Firefox, Chrome, Opera */
  justify-content: center;
}
.js-pager__items a.button {
  display: inline-block;
  box-sizing: border-box;
  background-color: transparent;
  -webkit-font-smoothing: antialiased;
  font-family: "Lato", Helvetica, Arial, sans-serif;
  font-weight: 800;
  line-height: 1.2em;
  letter-spacing: 0;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.75rem;
  text-align: center;
  position: relative;
  padding-top: 0.975em;
  padding-bottom: 0.975em;
  min-width: 2.5em;
  border: 0;
  padding-left: 2em;
  padding-right: 2em;
}
.js-pager__items a.button, .js-pager__items a.button:link {
  color: #112C53;
}
@media only screen and (min-width: 768px) {
  .js-pager__items a.button {
    font-size: 0.8125rem;
  }
}
.js-pager__items a.button::after {
  flex-shrink: 0;
  content: " ";
  display: block;
  width: 2.8em;
  height: 100%;
  position: absolute;
  top: 0;
  background-repeat: no-repeat;
  background-position: 50% 50%;
}
.js-pager__items a.button:hover, .js-pager__items a.button:focus-visible, a:hover .js-pager__items a.button, a:focus-visible .js-pager__items a.button {
  color: rgba(17, 44, 83, 0.2);
  background-color: #112C53;
}
@media only screen and (max-width: 407px) {
  .js-pager__items a.button {
    width: 100%;
  }
}

/* 	Forms
*********************************** */
form label {
  -webkit-font-smoothing: antialiased;
  color: #112C53;
  font-family: "Lato", Helvetica, Arial, sans-serif;
  font-weight: 700;
  line-height: 1.45em;
  font-size: 1.0625rem;
  letter-spacing: 0;
  margin-top: 0;
  margin-bottom: 0.85em;
  margin-bottom: 0.75em;
}
@media only screen and (min-width: 1272px) {
  form label {
    font-size: 1.125rem;
  }
}
@media only screen and (min-width: 1344px) {
  form label {
    font-size: 1.1875rem;
  }
}
@media only screen and (min-width: 1488px) {
  form label {
    font-size: 1.25rem;
  }
}
form input[type=text], form input[type=password], form input[type=email], form input[type=search], form .form-text, form textarea {
  font-family: "Lato", Helvetica, Arial, sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  line-height: 1.6em;
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
  box-sizing: border-box;
  width: 100%;
  padding-top: 0.45em;
  padding-bottom: 0.45em;
  padding-left: 0.8em;
  padding-right: 0;
  background-color: transparent;
  border: thin solid #112C53;
  -webkit-appearance: none;
  border-radius: 0;
}
@media only screen and (min-width: 768px) {
  form input[type=text], form input[type=password], form input[type=email], form input[type=search], form .form-text, form textarea {
    font-size: 1.0625rem;
  }
}
@media only screen and (min-width: 1488px) {
  form input[type=text], form input[type=password], form input[type=email], form input[type=search], form .form-text, form textarea {
    font-size: 1.125rem;
  }
}
form input[type=text]:focus, form input[type=password]:focus, form input[type=email]:focus, form input[type=search]:focus, form .form-text:focus, form textarea:focus {
  outline: 0;
}
form input[type=text]::-webkit-input-placeholder, form input[type=password]::-webkit-input-placeholder, form input[type=email]::-webkit-input-placeholder, form input[type=search]::-webkit-input-placeholder, form .form-text::-webkit-input-placeholder, form textarea::-webkit-input-placeholder {
  color: #112C53;
}
form input[type=text]::-moz-placeholder, form input[type=password]::-moz-placeholder, form input[type=email]::-moz-placeholder, form input[type=search]::-moz-placeholder, form .form-text::-moz-placeholder, form textarea::-moz-placeholder {
  color: #112C53;
}
form input[type=text]:-moz-placeholder, form input[type=password]:-moz-placeholder, form input[type=email]:-moz-placeholder, form input[type=search]:-moz-placeholder, form .form-text:-moz-placeholder, form textarea:-moz-placeholder {
  color: #112C53;
}
form input[type=text]:-ms-input-placeholder, form input[type=password]:-ms-input-placeholder, form input[type=email]:-ms-input-placeholder, form input[type=search]:-ms-input-placeholder, form .form-text:-ms-input-placeholder, form textarea:-ms-input-placeholder {
  color: #112C53;
}
form textarea {
  resize: vertical;
}
form .form-item,
form .mc-field-group {
  margin-bottom: 2em;
}
form input[type=search]::-webkit-search-cancel-button {
  width: 1.5rem;
  height: 1.5rem;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14.849' height='14.85' data-name='Layer 1'%3E%3Cpath fill='%23112c53' d='M14.849 1.414 13.435 0 7.424 6.01 1.414 0 0 1.414l6.01 6.011L0 13.435l1.414 1.414 6.01-6.01 6.011 6.011 1.414-1.414-6.011-6.011 6.011-6.011z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: 50% 50%;
  margin: 0;
  cursor: pointer;
}
form input[type=search]::-webkit-search-cancel-button:hover {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14.849' height='14.85' data-name='Layer 1'%3E%3Cpath fill='%232ea9b0' d='M14.849 1.414 13.435 0 7.424 6.01 1.414 0 0 1.414l6.01 6.011L0 13.435l1.414 1.414 6.01-6.01 6.011 6.011 1.414-1.414-6.011-6.011 6.011-6.011z'/%3E%3C/svg%3E");
}
form fieldset {
  padding: 0;
  margin: 0;
  border: 0;
}
form .description {
  font-family: "Lato", Helvetica, Arial, sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  line-height: 1.6em;
  font-size: 0.875rem;
  margin-top: 0.5em;
}
@media only screen and (min-width: 480px) {
  form .description {
    font-size: 0.9375rem;
  }
}
@media only screen and (min-width: 768px) {
  form .description {
    font-size: 1rem;
  }
}
form input[type=submit],
form .form-submit {
  display: inline-block;
  box-sizing: border-box;
  background-color: #4EB6BC;
  -webkit-font-smoothing: antialiased;
  font-family: "Lato", Helvetica, Arial, sans-serif;
  font-weight: 800;
  line-height: 1.2em;
  letter-spacing: 0;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.75rem;
  text-align: center;
  position: relative;
  padding-top: 0.975em;
  padding-bottom: 0.975em;
  min-width: 2.5em;
  border: 0;
  padding-left: 2em;
  padding-right: 2em;
}
form input[type=submit], form input[type=submit]:link,
form .form-submit,
form .form-submit:link {
  color: #112C53;
}
@media only screen and (min-width: 768px) {
  form input[type=submit],
  form .form-submit {
    font-size: 0.8125rem;
  }
}
form input[type=submit]:hover, form input[type=submit]:focus-visible, a:hover form input[type=submit], a:focus-visible form input[type=submit],
form .form-submit:hover,
form .form-submit:focus-visible,
a:hover form .form-submit,
a:focus-visible form .form-submit {
  color: #112C53;
  background-color: #C8ECF0;
}
@media only screen and (max-width: 407px) {
  form input[type=submit],
  form .form-submit {
    width: 100%;
  }
}

#mc_embed_signup label.checkbox {
  display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6, BB7 */
  display: -ms-flexbox; /* TWEENER - IE 10 */
  display: -webkit-flex; /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
  display: flex; /* NEW, Spec - Firefox, Chrome, Opera */
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  cursor: pointer;
}
#mc_embed_signup label.checkbox span {
  margin-left: 0.5em;
}

/*  Social links
*********************************** */
.social_media_links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6, BB7 */
  display: -ms-flexbox; /* TWEENER - IE 10 */
  display: -webkit-flex; /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
  display: flex; /* NEW, Spec - Firefox, Chrome, Opera */
  gap: 0.9rem;
}
.social_media_links li a {
  display: block;
  overflow: hidden;
  text-align: left;
  text-indent: -9999px;
  width: 1.5rem;
  height: 1.5rem;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: 90% auto;
}
.social_media_links li a:hover, .social_media_links li a:focus {
  opacity: 0.75;
}
.social_media_links li.facebook a {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg data-name='Layer 1' xmlns='http://www.w3.org/2000/svg' width='5.885' height='12'%3E%3Cpath data-name='Path 331' d='M1.687 4.138V3A2.787 2.787 0 014.2 0h1.685v2.255H4.2c-.2 0-.415.313-.415.706v1.177h2.1v2.293h-2.1V12h-2.1V6.431H0V4.138z' fill='%23112d53'/%3E%3C/svg%3E");
  background-size: auto 52%;
}
.social_media_links li.twitter a {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='13' height='13.011' data-name='Layer 1'%3E%3Cpath fill='%23112d53' d='M7.738 5.51 12.578 0h-1.146l-4.2 4.783L3.871 0H0l5.076 7.234L0 13.011h1.147l4.437-5.052 3.545 5.052H13M1.56.847h1.762l8.109 11.359H9.669'/%3E%3C/svg%3E");
  background-size: 58% auto;
  background-position: 50% 55%;
}
.social_media_links li.linkedin a {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12.522' height='12' data-name='Layer 1'%3E%3Cpath fill='%23112d53' d='M2.6 1.3A1.294 1.294 0 1 1 1.3 0a1.3 1.3 0 0 1 1.3 1.3Zm.011 2.348H0V12h2.609Zm4.164 0H4.181V12h2.593V7.618c0-2.437 3.145-2.636 3.145 0V12h2.6V6.714c0-4.111-4.655-3.961-5.749-1.937Z'/%3E%3C/svg%3E");
  background-size: 60% auto;
}

#block-contentfield-6 .field--name-field-thumbnail {
  max-width: 8.4375rem;
  border-radius: 50%;
  overflow: hidden;
}
@media only screen and (min-width: 768px) {
  #block-contentfield-6 .field--name-field-thumbnail {
    max-width: 12.25rem;
  }
}

#block-contentfield-6 {
  font-size: 1.4375rem;
  padding-top: 2em;
  padding-bottom: 2em;
  position: relative;
}
@media only screen and (min-width: 624px) {
  #block-contentfield-6 {
    font-size: 1.5rem;
  }
}
@media only screen and (min-width: 1344px) {
  #block-contentfield-6 {
    font-size: 1.6875rem;
  }
}
@media only screen and (min-width: 1488px) {
  #block-contentfield-6 {
    font-size: 1.875rem;
  }
}
#block-contentfield-6::before {
  font-size: 1.625rem;
  content: " ";
  display: block;
  position: absolute;
  z-index: -1;
  top: 0;
  left: 50%;
  width: 100vw;
  height: 100%;
  transform: translateX(-50%);
  background-color: #C8ECF0;
  background-image: url("../images/arcsl_pattern_03--turq@2x.png");
  background-repeat: repeat;
  background-position: 50% 50%;
  background-size: 37.6818em;
}
@media only screen and (min-width: 480px) {
  #block-contentfield-6::before {
    font-size: 1.8125rem;
  }
}
@media only screen and (min-width: 624px) {
  #block-contentfield-6::before {
    font-size: 2rem;
  }
}
@media only screen and (min-width: 840px) {
  #block-contentfield-6::before {
    font-size: 2.1875rem;
  }
}
@media only screen and (min-width: 1055px) {
  #block-contentfield-6::before {
    font-size: 2.375rem;
  }
}
@media only screen and (min-width: 1344px) {
  #block-contentfield-6::before {
    font-size: 2.5625rem;
  }
}
@media only screen and (min-width: 1488px) {
  #block-contentfield-6::before {
    font-size: 2.75rem;
  }
}
#block-contentfield-6 > h2 {
  -webkit-font-smoothing: antialiased;
  color: #112C53;
  font-family: "Lato", Helvetica, Arial, sans-serif;
  font-weight: 800;
  line-height: 1.375em;
  font-size: 1.4375rem;
  letter-spacing: 0;
  margin-top: 0;
  margin-bottom: 0.6em;
  margin-bottom: 1.75em;
}
@media only screen and (min-width: 624px) {
  #block-contentfield-6 > h2 {
    font-size: 1.5rem;
  }
}
@media only screen and (min-width: 1344px) {
  #block-contentfield-6 > h2 {
    font-size: 1.6875rem;
  }
}
@media only screen and (min-width: 1488px) {
  #block-contentfield-6 > h2 {
    font-size: 1.875rem;
  }
}
#block-contentfield-6 > h2 span {
  border-bottom: thin solid #2EA9B0;
}

#block-signuptoournewsletter .field--name-body a {
  display: inline-block;
  box-sizing: border-box;
  background-color: #4EB6BC;
  -webkit-font-smoothing: antialiased;
  font-family: "Lato", Helvetica, Arial, sans-serif;
  font-weight: 800;
  line-height: 1.2em;
  letter-spacing: 0;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.75rem;
  text-align: center;
  position: relative;
  padding-top: 0.975em;
  padding-bottom: 0.975em;
  min-width: 2.5em;
  border: 0;
  padding-left: 2em;
  padding-right: 2em;
  width: 100%;
}
#block-signuptoournewsletter .field--name-body a, #block-signuptoournewsletter .field--name-body a:link {
  color: #112C53;
}
@media only screen and (min-width: 768px) {
  #block-signuptoournewsletter .field--name-body a {
    font-size: 0.8125rem;
  }
}
#block-signuptoournewsletter .field--name-body a:hover, #block-signuptoournewsletter .field--name-body a:focus-visible, a:hover #block-signuptoournewsletter .field--name-body a, a:focus-visible #block-signuptoournewsletter .field--name-body a {
  color: #112C53;
  background-color: #C8ECF0;
}
@media only screen and (max-width: 407px) {
  #block-signuptoournewsletter .field--name-body a {
    width: 100%;
  }
}

article.node--ataglance {
  font-size: 1rem;
}
@media only screen and (min-width: 768px) {
  article.node--ataglance {
    font-size: 1.0625rem;
  }
}
@media only screen and (min-width: 1488px) {
  article.node--ataglance {
    font-size: 1.125rem;
  }
}
article.node--ataglance:not(:empty) {
  background-color: #F4F7FC;
  padding-top: 2.25em;
  padding-bottom: 2.75em;
  padding-left: 2.75em;
  padding-right: 2.75em;
  margin-bottom: 4em;
}
article.node--ataglance h2 {
  -webkit-font-smoothing: antialiased;
  color: #112C53;
  font-family: "Lato", Helvetica, Arial, sans-serif;
  font-weight: 700;
  line-height: 1.45em;
  font-size: 1.0625rem;
  letter-spacing: 0;
  margin-top: 0;
  margin-bottom: 0.85em;
}
@media only screen and (min-width: 1272px) {
  article.node--ataglance h2 {
    font-size: 1.125rem;
  }
}
@media only screen and (min-width: 1344px) {
  article.node--ataglance h2 {
    font-size: 1.1875rem;
  }
}
@media only screen and (min-width: 1488px) {
  article.node--ataglance h2 {
    font-size: 1.25rem;
  }
}
article.node--ataglance h2::after {
  content: " ";
  display: block;
  width: 0.6em;
  border-bottom: thin solid #112C53;
  margin-top: 0.8em;
}
article.node--ataglance ul {
  font-family: "Lato", Helvetica, Arial, sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  line-height: 1.6em;
  font-size: 1rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
@media only screen and (min-width: 768px) {
  article.node--ataglance ul {
    font-size: 1.0625rem;
  }
}
@media only screen and (min-width: 1488px) {
  article.node--ataglance ul {
    font-size: 1.125rem;
  }
}
article.node--ataglance li {
  display: flex;
  margin-bottom: 0.1em;
}
article.node--ataglance li::before {
  flex-shrink: 0;
  content: " ";
  display: block;
  width: 0.375rem;
  height: 0.625rem;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='6.306' height='9.784' data-name='Layer 1'%3E%3Cpath fill='%23112c53' d='M1.414 9.784 0 8.37l3.478-3.478L0 1.414 1.414 0l4.892 4.892-4.892 4.892z' data-name='Path 454'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  margin-top: 0.6em;
  margin-right: 1em;
}
article.node--ataglance a {
  color: #112C53;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}
article.node--ataglance a:hover, article.node--ataglance a:focus-visible {
  color: #EA5D4E;
}

.block-tabs {
  position: relative;
  z-index: 10;
  padding-top: 2rem;
  padding-bottom: 2rem;
}
.block-tabs ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6, BB7 */
  display: -ms-flexbox; /* TWEENER - IE 10 */
  display: -webkit-flex; /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
  display: flex; /* NEW, Spec - Firefox, Chrome, Opera */
}
.block-tabs ul li {
  margin-right: 6px;
}
.block-tabs ul li:last-child {
  margin-right: 0;
}
.block-tabs ul li a {
  display: block;
  -webkit-font-smoothing: antialiased;
  color: #EA5D4E;
  font-family: "Lato", Helvetica, Arial, sans-serif;
  font-weight: 700;
  line-height: 1.45em;
  font-size: 1.0625rem;
  letter-spacing: 0;
  margin-top: 0;
  margin-bottom: 0.85em;
  padding: 0.5em 0.75em;
  background-color: white;
  border: thin solid #EA5D4E;
  margin: 0;
}
@media only screen and (min-width: 1272px) {
  .block-tabs ul li a {
    font-size: 1.125rem;
  }
}
@media only screen and (min-width: 1344px) {
  .block-tabs ul li a {
    font-size: 1.1875rem;
  }
}
@media only screen and (min-width: 1488px) {
  .block-tabs ul li a {
    font-size: 1.25rem;
  }
}
.block-tabs ul li a.is-active, .block-tabs ul li a:hover, .block-tabs ul li a:focus {
  background-color: #EA5D4E;
  color: white;
}

.drupal-messages {
  font-family: "Lato", Helvetica, Arial, sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  line-height: 1.6em;
  font-size: 1rem;
  padding: 1em;
  background-color: #C8ECF0;
  margin-bottom: 1em;
}
@media only screen and (min-width: 768px) {
  .drupal-messages {
    font-size: 1.0625rem;
  }
}
@media only screen and (min-width: 1488px) {
  .drupal-messages {
    font-size: 1.125rem;
  }
}

/* All 'Content' pages
*********************************** */
.field--name-field-content.field__items {
  display: block;
}

.field--name-field-display-author.field__items {
  display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6, BB7 */
  display: -ms-flexbox; /* TWEENER - IE 10 */
  display: -webkit-flex; /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
  display: flex; /* NEW, Spec - Firefox, Chrome, Opera */
  flex-wrap: wrap;
}
.field--name-field-display-author.field__items .field__item {
  margin-right: 2.5rem;
  margin-bottom: 0.75rem;
}

body.frontend_nodetype--content section.full_width__main {
  background-image: url("../images/arcsl_pattern_01--large@2x.png");
  background-repeat: repeat;
  background-size: 29.0227em auto;
  position: relative;
  overflow: hidden;
  padding-bottom: 2em;
  margin-top: 1.55em;
}
body.frontend_nodetype--content section.full_width__main::before, body.frontend_nodetype--content section.full_width__main::after {
  content: "";
  display: block;
  position: absolute;
  z-index: 1;
  left: 0;
  width: 100%;
  height: 25rem;
}
body.frontend_nodetype--content section.full_width__main::before {
  top: 0;
  background: linear-gradient(to bottom, white, rgba(255, 255, 255, 0));
}
body.frontend_nodetype--content section.full_width__main::after {
  bottom: 0;
  background: linear-gradient(to top, white, rgba(255, 255, 255, 0));
}
body.frontend_nodetype--content section.full_width__main .section_inner {
  position: relative;
  z-index: 2;
}
body.frontend_nodetype--content section.above_the_fold_content {
  margin-bottom: 0;
}
body.frontend_nodetype--content article.node .field--name-body p {
  font-family: "Lato", Helvetica, Arial, sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  color: #112C53;
}
@media only screen and (min-width: 912px) {
  body.frontend_nodetype--content section.full_width__main {
    padding-bottom: 3.75em;
  }
  body.frontend_nodetype--content .region-post-content-inner-left::before,
  body.frontend_nodetype--content .region-post-content-inner-right::before {
    content: " ";
    font-size: 1.625rem;
    display: block;
    width: 100%;
    border-bottom: 1rem solid transparent;
    margin-bottom: 1em;
  }
}
@media only screen and (min-width: 912px) and (min-width: 480px) {
  body.frontend_nodetype--content .region-post-content-inner-left::before,
  body.frontend_nodetype--content .region-post-content-inner-right::before {
    font-size: 1.8125rem;
  }
}
@media only screen and (min-width: 912px) and (min-width: 624px) {
  body.frontend_nodetype--content .region-post-content-inner-left::before,
  body.frontend_nodetype--content .region-post-content-inner-right::before {
    font-size: 2rem;
  }
}
@media only screen and (min-width: 912px) and (min-width: 840px) {
  body.frontend_nodetype--content .region-post-content-inner-left::before,
  body.frontend_nodetype--content .region-post-content-inner-right::before {
    font-size: 2.1875rem;
  }
}
@media only screen and (min-width: 912px) and (min-width: 1055px) {
  body.frontend_nodetype--content .region-post-content-inner-left::before,
  body.frontend_nodetype--content .region-post-content-inner-right::before {
    font-size: 2.375rem;
  }
}
@media only screen and (min-width: 912px) and (min-width: 1344px) {
  body.frontend_nodetype--content .region-post-content-inner-left::before,
  body.frontend_nodetype--content .region-post-content-inner-right::before {
    font-size: 2.5625rem;
  }
}
@media only screen and (min-width: 912px) and (min-width: 1488px) {
  body.frontend_nodetype--content .region-post-content-inner-left::before,
  body.frontend_nodetype--content .region-post-content-inner-right::before {
    font-size: 2.75rem;
  }
}
@media only screen and (min-width: 912px) {
  body.frontend_nodetype--content .region-post-content-inner-right::before {
    border-color: #F4F7FC;
  }
}

article.node .content > .field {
  margin-bottom: 2rem;
}
article.node .content > .field:last-child {
  margin-bottom: 0;
}

/*  Listing (not sectional)
*********************************** */
body.frontend_nodetype--listing section.above_the_fold_content {
  margin-bottom: 0;
}
body.frontend_nodetype--listing section.full_width__main {
  margin-top: 0;
}
body.frontend_nodetype--listing section.full_width__main .block + .block {
  margin-bottom: 1rem;
}
@media only screen and (max-width: 983px) {
  body.frontend_nodetype--listing section.full_width__main .block + .block {
    margin-top: 2rem;
  }
}
@media only screen and (min-width: 768px) {
  body.frontend_nodetype--listing .main_content {
    width: 65.5913978495%;
  }
}
body.frontend_nodetype--listing section.full_width__post_content {
  padding-top: 1em;
  padding-bottom: 1.5em;
}
body.frontend_nodetype--listing .page-standard.no_listing section.full_width__main {
  padding-bottom: 1em;
}

/*  Sectional listing
*********************************** */
body.nodetype--sectional section.full_width__main_outer {
  background-color: #193E72;
}
@media only screen and (min-width: 552px) {
  body.nodetype--sectional section.full_width__main_outer {
    font-size: 1.625rem;
    background-image: url("../images/arcsl_pattern_01--darkblue@2x.png");
    background-repeat: repeat;
    background-size: 21.3409em auto;
    background-position: 55% 0%;
  }
}
@media only screen and (min-width: 552px) and (min-width: 480px) {
  body.nodetype--sectional section.full_width__main_outer {
    font-size: 1.8125rem;
  }
}
@media only screen and (min-width: 552px) and (min-width: 624px) {
  body.nodetype--sectional section.full_width__main_outer {
    font-size: 2rem;
  }
}
@media only screen and (min-width: 552px) and (min-width: 840px) {
  body.nodetype--sectional section.full_width__main_outer {
    font-size: 2.1875rem;
  }
}
@media only screen and (min-width: 552px) and (min-width: 1055px) {
  body.nodetype--sectional section.full_width__main_outer {
    font-size: 2.375rem;
  }
}
@media only screen and (min-width: 552px) and (min-width: 1344px) {
  body.nodetype--sectional section.full_width__main_outer {
    font-size: 2.5625rem;
  }
}
@media only screen and (min-width: 552px) and (min-width: 1488px) {
  body.nodetype--sectional section.full_width__main_outer {
    font-size: 2.75rem;
  }
}
body.nodetype--sectional section.full_width__post_content {
  padding-top: 2em;
  padding-bottom: 3em;
}
@media only screen and (min-width: 1488px) {
  body.nodetype--sectional section.full_width__post_content {
    padding-top: 3em;
  }
}

/*  Front page – General
*********************************** */
body.frontpage #block-arcsl-content--2 {
  display: none;
}
body.frontpage.adminimal-admin-toolbar #block-arcsl-content--2 {
  display: block;
}

/*  Front page – Banner
*********************************** */
body.frontpage section.full_width__banner {
  background-color: #112C53;
  padding-bottom: 0;
  min-height: 0;
}
body.frontpage section.full_width__banner .banner_main {
  position: relative;
  z-index: 1;
}
body.frontpage section.full_width__banner .bg_graphic {
  font-size: 1.625rem;
  position: absolute;
  background-repeat: no-repeat;
  background-size: contain;
}
@media only screen and (min-width: 480px) {
  body.frontpage section.full_width__banner .bg_graphic {
    font-size: 1.8125rem;
  }
}
@media only screen and (min-width: 624px) {
  body.frontpage section.full_width__banner .bg_graphic {
    font-size: 2rem;
  }
}
@media only screen and (min-width: 840px) {
  body.frontpage section.full_width__banner .bg_graphic {
    font-size: 2.1875rem;
  }
}
@media only screen and (min-width: 1055px) {
  body.frontpage section.full_width__banner .bg_graphic {
    font-size: 2.375rem;
  }
}
@media only screen and (min-width: 1344px) {
  body.frontpage section.full_width__banner .bg_graphic {
    font-size: 2.5625rem;
  }
}
@media only screen and (min-width: 1488px) {
  body.frontpage section.full_width__banner .bg_graphic {
    font-size: 2.75rem;
  }
}
body.frontpage section.full_width__banner .bg_graphic_1 {
  z-index: 2;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #193E72;
}
body.frontpage section.full_width__banner .bg_graphic_2::before,
body.frontpage section.full_width__banner .bg_graphic_3::before,
body.frontpage section.full_width__banner .bg_graphic_4::before {
  content: " ";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: contain;
}
body.frontpage section.full_width__banner .bg_graphic_2 {
  z-index: 1;
  top: 24%;
  left: 0;
  width: 2.7727em;
  height: 1.7954em;
}
body.frontpage section.full_width__banner .bg_graphic_2::before {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg data-name='Layer 1' xmlns='http://www.w3.org/2000/svg' width='121.954' height='79.171'%3E%3Cpath data-name='Path 83' d='M45.714 2.083C12.7 10.935-6.821 45.515 2.2 79.171l25.049-6.716c-5.319-19.841 5.975-40.174 25.179-45.322s39.157 6.806 44.477 26.647l25.049-6.717c-9.023-33.655-43.225-53.832-76.24-44.98' fill='%23fed47a'/%3E%3C/svg%3E");
  transform: translateX(-40%);
}
body.frontpage section.full_width__banner .bg_graphic_3 {
  z-index: 1;
  top: 12%;
  right: 0;
  width: 2.1538em;
  height: 1.6538em;
}
body.frontpage section.full_width__banner .bg_graphic_3::before {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg data-name='Layer 1' xmlns='http://www.w3.org/2000/svg' width='112.125' height='85.674'%3E%3Cpath data-name='Rectangle 98' fill='%236667ad' d='M0 54.266L93.99 0l18.134 31.408-93.991 54.266z'/%3E%3C/svg%3E");
  transform: translateX(40%);
}
@media only screen and (min-width: 552px) {
  body.frontpage section.full_width__banner .bg_graphic_3 {
    width: 2.5454em;
    height: 1.9545em;
  }
}
body.frontpage section.full_width__banner .bg_graphic_4 {
  z-index: 3;
  top: 32%;
  right: 0;
  width: 1.9615em;
  height: 2em;
}
body.frontpage section.full_width__banner .bg_graphic_4::before {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg data-name='Layer 1' xmlns='http://www.w3.org/2000/svg' width='101.732' height='103.027'%3E%3Cg data-name='Group 154'%3E%3Cpath data-name='Rectangle 29' fill='%232ea9b0' d='M0 25.318L25.966 0l75.764 77.71-25.967 25.317z'/%3E%3C/g%3E%3C/svg%3E");
  transform: translateX(65%);
}
@media only screen and (min-width: 552px) {
  body.frontpage section.full_width__banner .bg_graphic_4 {
    width: 2.3181em;
    height: 2.3409em;
  }
  body.frontpage section.full_width__banner .bg_graphic_4::before {
    transform: translateX(32%);
  }
}
body.frontpage section.full_width__banner .bg_graphic_5 {
  z-index: 3;
  bottom: 0;
  left: 0;
  width: 2.4318em;
  height: 2.4318em;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg data-name='Layer 1' xmlns='http://www.w3.org/2000/svg' width='106.688' height='106.688'%3E%3Cpath data-name='Path 84' d='M106.688 37.333H70.179V0H36.512v37.333H0V71h36.512v35.688h33.667V71h36.509z' fill='%23ea5d4e'/%3E%3C/svg%3E");
  transform: translate(-50%, 0.829em);
}
body.frontpage section.full_width__banner .bg_graphic_6,
body.frontpage section.full_width__banner .bg_graphic_7 {
  width: 1.4772em;
  height: 1.7045em;
}
body.frontpage section.full_width__banner .bg_graphic_6 {
  z-index: 1;
  bottom: 0;
  left: 50%;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg data-name='Layer 1' xmlns='http://www.w3.org/2000/svg' width='64.732' height='74.745'%3E%3Cpath data-name='Path 85' d='M0 56.058V18.687L32.367 0l32.365 18.687v37.371L32.367 74.745z' fill='%23fed47a'/%3E%3C/svg%3E");
  transform: translate(-150%, 0.659em);
}
body.frontpage section.full_width__banner .bg_graphic_7 {
  z-index: 3;
  bottom: 0;
  left: 50%;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg data-name='Layer 1' xmlns='http://www.w3.org/2000/svg' width='64.732' height='74.745'%3E%3Cpath data-name='Path 85' d='M0 56.058V18.687L32.367 0l32.365 18.687v37.371L32.367 74.745z' fill='%236667ad'/%3E%3C/svg%3E");
  transform: translate(-50%, 0.659em);
}
@media only screen and (max-width: 623px) {
  body.frontpage section.full_width__banner .bg_graphic_5,
  body.frontpage section.full_width__banner .bg_graphic_6,
  body.frontpage section.full_width__banner .bg_graphic_7 {
    display: none;
  }
}
body.frontpage section.full_width__banner .gridLayout__Main8colWithSide4col_onDesktop.main_side__left .gridItem__main {
  padding-bottom: 2.8em;
}
@media only screen and (min-width: 480px) {
  body.frontpage section.full_width__banner .gridLayout__Main8colWithSide4col_onDesktop.main_side__left .gridItem__main {
    padding-bottom: 3.25em;
  }
}
body.frontpage section.full_width__banner .banner_content {
  position: relative;
  z-index: 3;
  width: 100%;
  padding-left: 1.875rem;
  padding-right: 1.875rem;
  padding-top: 6.88172%;
}
@media only screen and (min-width: 480px) {
  body.frontpage section.full_width__banner .banner_content {
    padding-left: 8.7027086476%;
    padding-right: 8.7027086476%;
  }
}
@media only screen and (min-width: 552px) {
  body.frontpage section.full_width__banner .banner_content {
    padding-right: 0;
  }
}
@media only screen and (min-width: 624px) {
  body.frontpage section.full_width__banner .banner_content {
    width: 73.8918740571%;
  }
}
@media only screen and (min-width: 768px) {
  body.frontpage section.full_width__banner .banner_content {
    width: 74.1935483871%;
    padding-left: 8.6021505376%;
  }
}
body.frontpage section.full_width__banner h1 {
  color: white;
  font-weight: 400;
}
body.frontpage section.full_width__banner section.full_width {
  position: relative;
  z-index: 3;
  top: 0;
  left: 50%;
  width: 100vw !important;
  transform: translateX(-50%);
}
body.frontpage section.full_width__banner section.full_width .section_wrap {
  display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6, BB7 */
  display: -ms-flexbox; /* TWEENER - IE 10 */
  display: -webkit-flex; /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
  display: flex; /* NEW, Spec - Firefox, Chrome, Opera */
  flex-wrap: wrap;
  justify-content: flex-end;
}

/*  Front page – Our research areas dropdown
*********************************** */
.block-views-blockour-research-areas-block-1 .block_title h2 {
  -webkit-font-smoothing: antialiased;
  color: #112C53;
  font-family: "Lato", Helvetica, Arial, sans-serif;
  font-weight: 700;
  line-height: 1.45em;
  font-size: 1.0625rem;
  letter-spacing: 0;
  margin-top: 0;
  margin-bottom: 0.85em;
  width: 100%;
  padding: 1em;
  background-color: #C8ECF0;
  margin: 0;
  margin-top: -3.1em;
}
@media only screen and (min-width: 1272px) {
  .block-views-blockour-research-areas-block-1 .block_title h2 {
    font-size: 1.125rem;
  }
}
@media only screen and (min-width: 1344px) {
  .block-views-blockour-research-areas-block-1 .block_title h2 {
    font-size: 1.1875rem;
  }
}
@media only screen and (min-width: 1488px) {
  .block-views-blockour-research-areas-block-1 .block_title h2 {
    font-size: 1.25rem;
  }
}
.block-views-blockour-research-areas-block-1 .block_title h2.collapsingToggle {
  padding: 0;
}
.block-views-blockour-research-areas-block-1 .block_title h2.collapsingToggle .toggleExpand {
  -webkit-font-smoothing: antialiased;
  color: #112C53;
  font-family: "Lato", Helvetica, Arial, sans-serif;
  font-weight: 700;
  line-height: 1.45em;
  font-size: 1.0625rem;
  letter-spacing: 0;
  margin-top: 0;
  margin-bottom: 0.85em;
  text-align: left;
  padding: 0;
  width: 100%;
  background-color: transparent;
  border: 0;
  margin: 0;
  transition: background-color 0.3s;
}
@media only screen and (min-width: 1272px) {
  .block-views-blockour-research-areas-block-1 .block_title h2.collapsingToggle .toggleExpand {
    font-size: 1.125rem;
  }
}
@media only screen and (min-width: 1344px) {
  .block-views-blockour-research-areas-block-1 .block_title h2.collapsingToggle .toggleExpand {
    font-size: 1.1875rem;
  }
}
@media only screen and (min-width: 1488px) {
  .block-views-blockour-research-areas-block-1 .block_title h2.collapsingToggle .toggleExpand {
    font-size: 1.25rem;
  }
}
.block-views-blockour-research-areas-block-1 .block_title h2.collapsingToggle .toggleExpand .inner {
  display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6, BB7 */
  display: -ms-flexbox; /* TWEENER - IE 10 */
  display: -webkit-flex; /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
  display: flex; /* NEW, Spec - Firefox, Chrome, Opera */
  flex-wrap: nowrap;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  padding-left: 1.875rem;
  padding-right: 1em;
  padding-top: 0.8em;
  padding-bottom: 0.85em;
}
.block-views-blockour-research-areas-block-1 .block_title h2.collapsingToggle .toggleExpand .text {
  flex-grow: 1;
}
.block-views-blockour-research-areas-block-1 .block_title h2.collapsingToggle .toggleExpand .icon {
  flex-shrink: 0;
  width: 1em;
  height: 1em;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg data-name='Layer 1' xmlns='http://www.w3.org/2000/svg' width='18.874' height='18'%3E%3Cg fill='%23112c53'%3E%3Ccircle cx='1.5' cy='9.187' r='1.5'/%3E%3Cpath d='M18.874 8h-8V0h-2v18h2v-8h8V8z'/%3E%3C/g%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: contain;
}
@media only screen and (max-width: 623px) {
  .block-views-blockour-research-areas-block-1 .block_title h2.collapsingToggle .toggleExpand .inner {
    padding-left: 3.5%;
    padding-right: 3.5%;
  }
}
@media only screen and (max-width: 551px) {
  .block-views-blockour-research-areas-block-1 .block_title h2.collapsingToggle .toggleExpand .inner {
    padding-left: 4%;
    padding-right: 4%;
  }
}
@media only screen and (max-width: 479px) {
  .block-views-blockour-research-areas-block-1 .block_title h2.collapsingToggle .toggleExpand .inner {
    padding-left: 6%;
    padding-right: 6%;
  }
}
.block-views-blockour-research-areas-block-1 .block_title h2.collapsingToggle .toggleExpand:hover, .block-views-blockour-research-areas-block-1 .block_title h2.collapsingToggle .toggleExpand:focus {
  background-color: #4EB6BC;
}
.block-views-blockour-research-areas-block-1 .block_title h2.collapsingToggle .toggleExpand.open .icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg data-name='Layer 1' xmlns='http://www.w3.org/2000/svg' width='16' height='2'%3E%3Cpath fill='%23112c53' d='M0 0h16v2H0z' data-name='Line 31'/%3E%3C/svg%3E");
  background-size: 16px auto;
}
@media only screen and (min-width: 624px) {
  .block-views-blockour-research-areas-block-1 .block_title h2 {
    width: auto;
    min-width: 47.7837481141%;
  }
}
@media only screen and (min-width: 768px) {
  .block-views-blockour-research-areas-block-1 .block_title h2 {
    min-width: 48.3870967742%;
  }
}
@media only screen and (min-width: 840px) {
  .block-views-blockour-research-areas-block-1 .block_title h2 {
    min-width: 31.1827956989%;
  }
}
.block-views-blockour-research-areas-block-1 > div {
  position: relative;
  top: 0;
  left: 50%;
  width: 100.2vw !important;
  transform: translateX(-50.1%);
}
.block-views-blockour-research-areas-block-1 > div .views-rows-subset {
  box-sizing: content-box;
  padding-left: 6%;
  padding-right: 6%;
  max-width: 69.75rem;
  margin: 0 auto;
}
@media only screen and (min-width: 480px) {
  .block-views-blockour-research-areas-block-1 > div .views-rows-subset {
    padding-left: 4%;
    padding-right: 4%;
  }
}
@media only screen and (min-width: 552px) {
  .block-views-blockour-research-areas-block-1 > div .views-rows-subset {
    padding-left: 3.5%;
    padding-right: 3.5%;
  }
}
@media only screen and (min-width: 696px) {
  .block-views-blockour-research-areas-block-1 > div .views-rows-subset {
    padding-left: 3%;
    padding-right: 3%;
  }
}
.block-views-blockour-research-areas-block-1 .view {
  position: relative;
  z-index: 1;
  background-color: #C8ECF0;
}
.block-views-blockour-research-areas-block-1 .gridItem {
  padding-bottom: 0;
}
.block-views-blockour-research-areas-block-1 .views-rows-subset {
  font-size: 1.0625rem;
  display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6, BB7 */
  display: -ms-flexbox; /* TWEENER - IE 10 */
  display: -webkit-flex; /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
  display: flex; /* NEW, Spec - Firefox, Chrome, Opera */
  flex-wrap: wrap;
  padding-bottom: 2.6em;
}
@media only screen and (min-width: 1272px) {
  .block-views-blockour-research-areas-block-1 .views-rows-subset {
    font-size: 1.125rem;
  }
}
@media only screen and (min-width: 1344px) {
  .block-views-blockour-research-areas-block-1 .views-rows-subset {
    font-size: 1.1875rem;
  }
}
@media only screen and (min-width: 1488px) {
  .block-views-blockour-research-areas-block-1 .views-rows-subset {
    font-size: 1.25rem;
  }
}
.block-views-blockour-research-areas-block-1 .views-row {
  border-bottom: thin solid #112C53;
  padding-top: 0.2em;
  padding-bottom: 0.2em;
}
.block-views-blockour-research-areas-block-1 .views-row:last-child {
  border-bottom: 0;
}
.block-views-blockour-research-areas-block-1 .views-field-title {
  font-family: "Lato", Helvetica, Arial, sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
}
.block-views-blockour-research-areas-block-1 .views-field-title,
.block-views-blockour-research-areas-block-1 .views-field-title a {
  color: #112C53;
}
.block-views-blockour-research-areas-block-1 .views-field-title a {
  display: block;
  padding-top: 0.65em;
  padding-bottom: 0.7em;
}
.block-views-blockour-research-areas-block-1 .views-field-title a:hover, .block-views-blockour-research-areas-block-1 .views-field-title a:focus {
  opacity: 0.7;
}
@media only screen and (max-width: 623px) {
  .block-views-blockour-research-areas-block-1 section.full_width .section_inner {
    padding-left: 0;
    padding-right: 0;
  }
}
@media only screen and (min-width: 624px) {
  .block-views-blockour-research-areas-block-1 .views-rows-subset {
    padding-top: 2em;
  }
  .block-views-blockour-research-areas-block-1 .views-row {
    width: 47.7837481141%;
    margin-right: 4.4325037718%;
  }
  .block-views-blockour-research-areas-block-1 .views-row:nth-child(2n) {
    margin-right: 0;
  }
}
@media only screen and (min-width: 768px) {
  .block-views-blockour-research-areas-block-1 .views-row {
    width: 48.3870967742%;
    margin-right: 3.2258064516%;
  }
}
@media only screen and (min-width: 840px) {
  .block-views-blockour-research-areas-block-1 .views-row {
    width: 39.7849462366%;
    margin-left: 8.6021505376%;
    margin-right: 3.2258064516%;
  }
  .block-views-blockour-research-areas-block-1 .views-row:nth-last-child(2) {
    border-bottom: 0;
  }
}

/*  Front page – Main
*********************************** */
body.frontpage section.full_width__main {
  padding-bottom: 1.5em;
}

/*  Front page – Listings
*********************************** */
@media only screen and (min-width: 984px) {
  body.frontpage #post_content_inner_wrapper {
    display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6, BB7 */
    display: -ms-flexbox; /* TWEENER - IE 10 */
    display: -webkit-flex; /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
    display: flex; /* NEW, Spec - Firefox, Chrome, Opera */
    flex-wrap: wrap;
    justify-content: space-between;
    -webkit-box-align: flex-start;
    -moz-box-align: flex-start;
    -ms-flex-align: flex-start;
    -webkit-align-items: flex-start;
    align-items: flex-start;
  }
  body.frontpage #post_content_inner_wrapper > * {
    -webkit-box-ordinal-group: 5;
    -moz-box-ordinal-group: 5;
    -ms-flex-order: 5;
    -webkit-order: 5;
    width: 100%;
  }
  body.frontpage #post_content_inner_wrapper .region-post-content-inner-right {
    width: 31.1827956989%;
  }
  body.frontpage #post_content_inner_wrapper .region-post-content-inner-right .gridItem {
    width: 100%;
    margin-right: 0;
    padding-bottom: 10.3448275862%;
  }
  body.frontpage #post_content_inner_wrapper .region-post-content-inner-right .gridItem:last-child {
    padding-bottom: 0;
  }
  body.frontpage #post_content_inner_wrapper .region-post-content-inner-right {
    -webkit-box-ordinal-group: 2;
    -moz-box-ordinal-group: 2;
    -ms-flex-order: 2;
    -webkit-order: 2;
  }
  body.frontpage #post_content_inner_wrapper .region-post-content-inner {
    width: 65.5913978495%;
  }
  body.frontpage #post_content_inner_wrapper .region-post-content-inner .gridItem__3col_onDesktop {
    width: 47.5409836066%;
    margin-right: 4.9180327869%;
    padding-bottom: 7.3770491803%;
  }
  body.frontpage #post_content_inner_wrapper .region-post-content-inner .gridItem__3col_onDesktop:nth-child(3n) {
    margin-right: 4.9180327869%;
  }
  body.frontpage #post_content_inner_wrapper .region-post-content-inner .gridItem__3col_onDesktop:nth-child(2n) {
    margin-right: 0;
  }
  body.frontpage #post_content_inner_wrapper .region-post-content-inner {
    -webkit-box-ordinal-group: 1;
    -moz-box-ordinal-group: 1;
    -ms-flex-order: 1;
    -webkit-order: 1;
  }
}
body.frontpage section.full_width__main .block {
  width: 100%;
  margin-bottom: 2.5rem;
}
body.frontpage section.full_width__main .block-views-blockhome-articles-block-1 {
  font-size: 1.625rem;
}
@media only screen and (min-width: 480px) {
  body.frontpage section.full_width__main .block-views-blockhome-articles-block-1 {
    font-size: 1.8125rem;
  }
}
@media only screen and (min-width: 624px) {
  body.frontpage section.full_width__main .block-views-blockhome-articles-block-1 {
    font-size: 2rem;
  }
}
@media only screen and (min-width: 840px) {
  body.frontpage section.full_width__main .block-views-blockhome-articles-block-1 {
    font-size: 2.1875rem;
  }
}
@media only screen and (min-width: 1055px) {
  body.frontpage section.full_width__main .block-views-blockhome-articles-block-1 {
    font-size: 2.375rem;
  }
}
@media only screen and (min-width: 1344px) {
  body.frontpage section.full_width__main .block-views-blockhome-articles-block-1 {
    font-size: 2.5625rem;
  }
}
@media only screen and (min-width: 1488px) {
  body.frontpage section.full_width__main .block-views-blockhome-articles-block-1 {
    font-size: 2.75rem;
  }
}
body.frontpage section.full_width__main .block-views-blockhome-articles-block-2 .listed_content_item.style__default .listing_box_text {
  margin-right: 0;
}
body.frontpage section.full_width__main .region-post-content-inner-right {
  display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6, BB7 */
  display: -ms-flexbox; /* TWEENER - IE 10 */
  display: -webkit-flex; /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
  display: flex; /* NEW, Spec - Firefox, Chrome, Opera */
  flex-wrap: wrap;
}
@media only screen and (min-width: 552px) {
  body.frontpage section.full_width__main .region-post-content-inner-right .gridItem__3col_onDesktop {
    width: 100%;
    margin-right: 0;
  }
  body.frontpage section.full_width__main .region-post-content-inner-right .block:nth-child(2n) {
    margin-right: 0;
  }
}
@media only screen and (min-width: 552px) and (max-width: 767px) {
  body.frontpage section.full_width__main .region-post-content-inner-right .block {
    width: 47.7837481141%;
    margin-right: 4.4325037718%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 983px) {
  body.frontpage section.full_width__main .region-post-content-inner-right .block {
    width: 48.3870967742%;
    margin-right: 3.2258064516%;
  }
}
body.frontpage #block-tweets {
  margin-top: 0;
}
body.frontpage #block-tweets .arcsl_twitter_text > h2 a {
  justify-content: flex-end;
}

/* 	Search page
*********************************** */
body.path--search .main_content #content {
  padding-left: 0;
  padding-right: 0;
}

.search-item-list {
  display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6, BB7 */
  display: -ms-flexbox; /* TWEENER - IE 10 */
  display: -webkit-flex; /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
  display: flex; /* NEW, Spec - Firefox, Chrome, Opera */
  flex-wrap: wrap;
}

.region-content .search-form,
#views-exposed-form-day-centre-resources-hub-search-page-1,
#views-exposed-form-day-centre-resources-hub-search-page-2 {
  margin-bottom: 4rem;
}
.region-content .search-form .container-inline,
.region-content .search-form .form--inline,
#views-exposed-form-day-centre-resources-hub-search-page-1 .container-inline,
#views-exposed-form-day-centre-resources-hub-search-page-1 .form--inline,
#views-exposed-form-day-centre-resources-hub-search-page-2 .container-inline,
#views-exposed-form-day-centre-resources-hub-search-page-2 .form--inline {
  display: flex;
  border: 1px solid #2EA9B0;
}
.region-content .search-form label,
#views-exposed-form-day-centre-resources-hub-search-page-1 label,
#views-exposed-form-day-centre-resources-hub-search-page-2 label {
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
}
.region-content .search-form .form-item,
#views-exposed-form-day-centre-resources-hub-search-page-1 .form-item,
#views-exposed-form-day-centre-resources-hub-search-page-2 .form-item {
  flex-shrink: 1;
  width: 100%;
  margin: 0;
}
.region-content .search-form input[type=text],
.region-content .search-form input[type=search],
#views-exposed-form-day-centre-resources-hub-search-page-1 input[type=text],
#views-exposed-form-day-centre-resources-hub-search-page-1 input[type=search],
#views-exposed-form-day-centre-resources-hub-search-page-2 input[type=text],
#views-exposed-form-day-centre-resources-hub-search-page-2 input[type=search] {
  border: 0;
}
.region-content .search-form input[type=text]::placeholder,
.region-content .search-form input[type=search]::placeholder,
#views-exposed-form-day-centre-resources-hub-search-page-1 input[type=text]::placeholder,
#views-exposed-form-day-centre-resources-hub-search-page-1 input[type=search]::placeholder,
#views-exposed-form-day-centre-resources-hub-search-page-2 input[type=text]::placeholder,
#views-exposed-form-day-centre-resources-hub-search-page-2 input[type=search]::placeholder {
  color: #989898;
}
.region-content .search-form .form-submit,
#views-exposed-form-day-centre-resources-hub-search-page-1 .form-submit,
#views-exposed-form-day-centre-resources-hub-search-page-2 .form-submit {
  flex-shrink: 0;
  font-size: 1rem;
  display: block;
  overflow: hidden;
  text-align: left;
  text-indent: -9999px;
  height: auto;
  width: 2.85em;
  background-color: transparent;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' data-name='Layer 1' viewBox='0 0 18.868 18.851'%3E%3Cpath d='M11.454 0C7.366 0 4.04 3.326 4.04 7.414c0 1.678.567 3.223 1.511 4.467L0 17.437l1.415 1.414 5.547-5.552a7.365 7.365 0 0 0 4.491 1.529c4.088 0 7.414-3.326 7.414-7.414S15.542 0 11.454 0Zm0 12.828c-2.985 0-5.414-2.429-5.414-5.414S8.469 2 11.454 2s5.414 2.429 5.414 5.414-2.429 5.414-5.414 5.414Z' style='fill:%23112c53;stroke-width:0'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: 41% auto;
  padding: 0;
  margin: 0;
}
@media only screen and (min-width: 768px) {
  .region-content .search-form .form-submit,
  #views-exposed-form-day-centre-resources-hub-search-page-1 .form-submit,
  #views-exposed-form-day-centre-resources-hub-search-page-2 .form-submit {
    font-size: 1.0625rem;
  }
}
@media only screen and (min-width: 1488px) {
  .region-content .search-form .form-submit,
  #views-exposed-form-day-centre-resources-hub-search-page-1 .form-submit,
  #views-exposed-form-day-centre-resources-hub-search-page-2 .form-submit {
    font-size: 1.125rem;
  }
}
.region-content .search-form .form-submit:hover, .region-content .search-form .form-submit:focus-visible,
#views-exposed-form-day-centre-resources-hub-search-page-1 .form-submit:hover,
#views-exposed-form-day-centre-resources-hub-search-page-1 .form-submit:focus-visible,
#views-exposed-form-day-centre-resources-hub-search-page-2 .form-submit:hover,
#views-exposed-form-day-centre-resources-hub-search-page-2 .form-submit:focus-visible {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg data-name='Layer 1' xmlns='http://www.w3.org/2000/svg' width='18.868' height='18.851'%3E%3Cpath d='M11.454 0a7.4 7.4 0 00-5.9 11.882L0 17.437l1.415 1.414L6.962 13.3A7.41 7.41 0 1011.454 0zm0 12.828a5.414 5.414 0 115.414-5.414 5.42 5.42 0 01-5.414 5.414z' fill='%232ea9b0'/%3E%3C/svg%3E");
}
.region-content .search-form .form-actions,
#views-exposed-form-day-centre-resources-hub-search-page-1 .form-actions,
#views-exposed-form-day-centre-resources-hub-search-page-2 .form-actions {
  display: flex;
  flex-direction: column;
}
.region-content .search-form .form-actions .form-submit,
#views-exposed-form-day-centre-resources-hub-search-page-1 .form-actions .form-submit,
#views-exposed-form-day-centre-resources-hub-search-page-2 .form-actions .form-submit {
  flex-grow: 1;
}
.region-content .search-form + h2,
#views-exposed-form-day-centre-resources-hub-search-page-1 + h2,
#views-exposed-form-day-centre-resources-hub-search-page-2 + h2 {
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
}
@media only screen and (min-width: 624px) {
  .region-content .search-form .container-inline,
  .region-content .search-form .form--inline,
  #views-exposed-form-day-centre-resources-hub-search-page-1 .container-inline,
  #views-exposed-form-day-centre-resources-hub-search-page-1 .form--inline,
  #views-exposed-form-day-centre-resources-hub-search-page-2 .container-inline,
  #views-exposed-form-day-centre-resources-hub-search-page-2 .form--inline {
    width: 82.5945827047%;
  }
}
@media only screen and (min-width: 768px) {
  .region-content .search-form .container-inline,
  .region-content .search-form .form--inline,
  #views-exposed-form-day-centre-resources-hub-search-page-1 .container-inline,
  #views-exposed-form-day-centre-resources-hub-search-page-1 .form--inline,
  #views-exposed-form-day-centre-resources-hub-search-page-2 .container-inline,
  #views-exposed-form-day-centre-resources-hub-search-page-2 .form--inline {
    width: 48.3870967742%;
  }
}

.search-help-link {
  display: none;
  -webkit-font-smoothing: antialiased;
  font-family: "Lato", Helvetica, Arial, sans-serif;
  font-weight: 900;
  line-height: 1.2em;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.75rem;
  margin-top: 3em;
}
@media only screen and (min-width: 768px) {
  .search-help-link {
    font-size: 0.8125rem;
  }
}
.search-help-link:hover, .search-help-link:focus {
  color: #112C53;
}

.path--search section.above_the_fold_content,
.alias--day-centre-resources-hub-search section.above_the_fold_content,
.alias--research-and-implementation-our-research-areas-social-care-about-our-social-care-research-day-search section.above_the_fold_content {
  margin: 0;
}
.path--search section.full_width__banner .gridLayout__Main8colWithSide4col_onDesktop.main_side__left .gridItem__main,
.alias--day-centre-resources-hub-search section.full_width__banner .gridLayout__Main8colWithSide4col_onDesktop.main_side__left .gridItem__main,
.alias--research-and-implementation-our-research-areas-social-care-about-our-social-care-research-day-search section.full_width__banner .gridLayout__Main8colWithSide4col_onDesktop.main_side__left .gridItem__main {
  padding-bottom: 0;
}
.path--search h1,
.alias--day-centre-resources-hub-search h1,
.alias--research-and-implementation-our-research-areas-social-care-about-our-social-care-research-day-search h1 {
  margin-bottom: 0.65em;
}

/* Other pages, which need banner layout
*********************************** */
body.path--search section.full_width__banner,
.path--day-centre-resources-hub section.full_width__banner,
.alias--research-and-implementation-our-research-areas-social-care-about-our-social-care-research-day-search section.full_width__banner,
body[class^=alias--research-and-implementation-our-research-areas-social-care-about-our-social-care-research-day] section.full_width__banner, div[body*=" alias--research-and-implementation-our-research-areas-social-care-about-our-social-care-research-day"] section.full_width__banner,
body.path--taxonomy section.full_width__banner,
body.path--user section.full_width__banner {
  min-height: 0;
}
body.path--search section.full_width__main,
.path--day-centre-resources-hub section.full_width__main,
.alias--research-and-implementation-our-research-areas-social-care-about-our-social-care-research-day-search section.full_width__main,
body[class^=alias--research-and-implementation-our-research-areas-social-care-about-our-social-care-research-day] section.full_width__main, div[body*=" alias--research-and-implementation-our-research-areas-social-care-about-our-social-care-research-day"] section.full_width__main,
body.path--taxonomy section.full_width__main,
body.path--user section.full_width__main {
  padding-bottom: 2em;
}

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