@charset "UTF-8";
/* 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
*********************************** */
/*	Colours
***********************************  */
/*	Size variables
***********************************  */
/*	Transition variables
***********************************  */
/*	Selector variables
***********************************  */
/*	Assets – SVG
************************************* */
/*	Assets – PNG Graphics
************************************* */
/*	Assets – Banners
************************************* */
/*  Show/hide mixins 
*********************************** */
/*  Display mixins 
*********************************** */
/*  Typography mixins 
*********************************** */
/*  'Paragraph style' Mixins
*********************************** */
/*  Layout mixins 
*********************************** */
/*  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. */
/* line 23, ../eff_scss/02_basics/_normalize.scss */
article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
nav,
section,
summary {
  display: block;
}

/* Correct `inline-block` display not defined in IE 8/9. */
/* line 38, ../eff_scss/02_basics/_normalize.scss */
audio,
canvas,
video {
  display: inline-block;
}

/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */
/* line 52, ../eff_scss/02_basics/_normalize.scss */
audio:not([controls]) {
  display: none;
  height: 0;
}

/* Address styling not present in IE 8/9. */
/* line 58, ../eff_scss/02_basics/_normalize.scss */
[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.
 */
/* line 106, ../eff_scss/02_basics/_normalize.scss */
html {
  font-family: Arial;
  /* 1 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
}

/* Remove default margin. */
/* line 125, ../eff_scss/02_basics/_normalize.scss */
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. */
/* line 148, ../eff_scss/02_basics/_normalize.scss */
a:active,
a:hover {
  outline: 0;
}

/* line 153, ../eff_scss/02_basics/_normalize.scss */
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. */
/* line 168, ../eff_scss/02_basics/_normalize.scss */
p,
pre {
  margin: rhythm(1) 0;
}

/* line 172, ../eff_scss/02_basics/_normalize.scss */
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.
 */
/* line 181, ../eff_scss/02_basics/_normalize.scss */
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. */
/* line 216, ../eff_scss/02_basics/_normalize.scss */
abbr[title] {
  border-bottom: 1px dotted;
}

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

/* Address styling not present in Safari 5 and Chrome. */
/* line 227, ../eff_scss/02_basics/_normalize.scss */
dfn {
  font-style: italic;
}

/* Address differences between Firefox and other browsers. */
/* line 232, ../eff_scss/02_basics/_normalize.scss */
hr {
  height: 0;
  border: 1px solid #666;
  padding-bottom: -1px;
  margin: rhythm(1) 0;
}

/* Address styling not present in IE 8/9. */
/* line 241, ../eff_scss/02_basics/_normalize.scss */
mark {
  background: #ff0;
  color: #000;
}

/* Correct font family set oddly in Safari 5 and Chrome. */
/* line 247, ../eff_scss/02_basics/_normalize.scss */
code,
kbd,
pre,
samp,
tt,
var {
  font-family: Arial;
}

/* Improve readability of pre-formatted text in all browsers. */
/* line 261, ../eff_scss/02_basics/_normalize.scss */
pre {
  white-space: pre-wrap;
}

/* Set consistent quote types. */
/* line 273, ../eff_scss/02_basics/_normalize.scss */
q {
  quotes: "\201C" "\201D" "\2018" "\2019";
}

/* Address inconsistent and variable font size in all browsers. */
/* line 278, ../eff_scss/02_basics/_normalize.scss */
small {
  font-size: 80%;
}

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

/* line 290, ../eff_scss/02_basics/_normalize.scss */
sup {
  top: -0.5em;
}

/* line 293, ../eff_scss/02_basics/_normalize.scss */
sub {
  bottom: -0.25em;
}

/**
 * Lists
 */
/* line 300, ../eff_scss/02_basics/_normalize.scss */
dl,
menu,
ol,
ul {
  /* Address margins set differently in IE 6/7. */
  margin: rhythm(1) 0;
}

/* line 309, ../eff_scss/02_basics/_normalize.scss */
ol ol,
ol ul,
ul ol,
ul ul {
  /* Turn off margins on nested lists. */
  margin: 0;
}

/* line 315, ../eff_scss/02_basics/_normalize.scss */
dd {
  margin: 0 0 0 20px;
}

/* Address paddings set differently in IE 6/7. */
/* line 320, ../eff_scss/02_basics/_normalize.scss */
menu,
ol,
ul {
  padding: 0 0 0 20px;
}

/**
 * Embedded content and figures
 *
 * @todo Look into adding responsive embedded video.
 */
/* line 340, ../eff_scss/02_basics/_normalize.scss */
img {
  /* 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;
}
/* line 355, ../eff_scss/02_basics/_normalize.scss */
.lt-ie9 img {
  /* Correct IE 8 not scaling image height when resized. */
  width: auto;
}

/* Correct overflow displayed oddly in IE 9. */
/* line 363, ../eff_scss/02_basics/_normalize.scss */
svg:not(:root) {
  overflow: hidden;
}

/* Address margin not present in IE 8/9 and Safari 5. */
/* line 368, ../eff_scss/02_basics/_normalize.scss */
figure {
  margin: 0;
}

/**
 * Forms
 */
/* Define consistent border, margin, and padding. */
/* line 384, ../eff_scss/02_basics/_normalize.scss */
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.
 */
/* line 399, ../eff_scss/02_basics/_normalize.scss */
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.
 */
/* line 414, ../eff_scss/02_basics/_normalize.scss */
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.
 */
/* line 433, ../eff_scss/02_basics/_normalize.scss */
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.
 */
/* line 444, ../eff_scss/02_basics/_normalize.scss */
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.
 */
/* line 458, ../eff_scss/02_basics/_normalize.scss */
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.
 */
/* line 472, ../eff_scss/02_basics/_normalize.scss */
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.
 */
/* line 483, ../eff_scss/02_basics/_normalize.scss */
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).
 */
/* line 498, ../eff_scss/02_basics/_normalize.scss */
input[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
}

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

/* Remove inner padding and border in Firefox 4+. */
/* line 513, ../eff_scss/02_basics/_normalize.scss */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

/* remove some webkit styling of buttons and fields (on tablets and phones) */
/* line 520, ../eff_scss/02_basics/_normalize.scss */
input {
  -webkit-border-radius: 0;
}

/**
 * 1. Remove default vertical scrollbar in IE 8/9.
 * 2. Improve readability and alignment in all browsers.
 */
/* line 528, ../eff_scss/02_basics/_normalize.scss */
textarea {
  overflow: auto;
  /* 1 */
  vertical-align: top;
  /* 2 */
}

/* Drupal-style form labels. */
/* line 534, ../eff_scss/02_basics/_normalize.scss */
label {
  display: block;
  font-weight: bold;
}

/**
 * Tables
 */
/* line 542, ../eff_scss/02_basics/_normalize.scss */
table {
  /* Remove most spacing between table cells. */
  border-collapse: collapse;
  border-spacing: 0;
  /* Prevent cramped-looking tables */
  /* width: 100%; */
  /* Add vertical rhythm margins. */
}

/* line 554, ../eff_scss/02_basics/_normalize.scss */
.search-form .search-advanced {
  display: none;
}

/* line 557, ../eff_scss/02_basics/_normalize.scss */
.feed-icon {
  display: none;
}

/* line 561, ../eff_scss/02_basics/_normalize.scss */
.masonry_gutter_sizer,
.masonry_grid_sizer {
  display: block;
}

/* line 567, ../eff_scss/02_basics/_normalize.scss */
.visually-hidden,
.element-invisible {
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
}

/* line 572, ../eff_scss/02_basics/_normalize.scss */
.visually-hidden--focusable {
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
}
/* line 25, ../eff_scss/01_helpers/_mixins_display.scss */
.visually-hidden--focusable:active, .visually-hidden--focusable:focus {
  position: static !important;
  clip: auto;
  height: auto;
  width: auto;
  overflow: auto;
}

/* line 576, ../eff_scss/02_basics/_normalize.scss */
.accessible_hide {
  position: absolute !important;
  top: -9999px !important;
  left: -9999px !important;
}

/* line 581, ../eff_scss/02_basics/_normalize.scss */
ul.menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

/*  Wrapper layouts
    Site layout and structure
*********************************** */
/* line 6, ../eff_scss/02_basics/_wrapper_layouts.scss */
html {
  width: 100%;
  overflow-y: scroll;
}

/* line 10, ../eff_scss/02_basics/_wrapper_layouts.scss */
body {
  min-height: 100%;
  padding: 0;
  margin: 0;
  overflow: hidden;
  position: relative;
  min-width: 320px;
  background-color: white;
}

/* line 22, ../eff_scss/02_basics/_wrapper_layouts.scss */
.main_content_area {
  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;
}
/* line 26, ../eff_scss/02_basics/_wrapper_layouts.scss */
.main_content_area > * {
  width: 100%;
}

/* line 35, ../eff_scss/02_basics/_wrapper_layouts.scss */
#middle .title {
  width: 100%;
  margin-bottom: 1rem;
}

/* line 43, ../eff_scss/02_basics/_wrapper_layouts.scss */
.eff_main_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;
}
/* line 48, ../eff_scss/02_basics/_wrapper_layouts.scss */
.eff_main_content .content,
.eff_main_content .sidebar {
  margin-bottom: 2rem;
}
/* line 53, ../eff_scss/02_basics/_wrapper_layouts.scss */
.eff_main_content .content {
  width: 100%;
}
@media only screen and (min-width: 768px) {
  /* line 61, ../eff_scss/02_basics/_wrapper_layouts.scss */
  .eff_main_content .sidebar {
    width: 30.55554%;
  }
  /* line 66, ../eff_scss/02_basics/_wrapper_layouts.scss */
  .eff_main_content.has_sidebar .content {
    width: 65.27777%;
  }
}

/* Sitewide Typography
************************************* */
/* line 4, ../eff_scss/02_basics/_sitewide_typography.scss */
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)
  */
}

/* line 11, ../eff_scss/02_basics/_sitewide_typography.scss */
body, input, textarea, select {
  font-family: "Gotham A", "Gotham B", Helvetica, Arial, sans-serif;
  font-weight: 400;
  line-height: 1.5em;
  font-size: 0.875rem;
  color: #002870;
}

/* line 17, ../eff_scss/02_basics/_sitewide_typography.scss */
#admin-menu, #admin-menu ul, #admin-menu ol, #admin-menu li {
  font-size: 12px;
  font-weight: normal;
  line-height: 1.1em;
}

/* line 26, ../eff_scss/02_basics/_sitewide_typography.scss */
a, a:link {
  color: #002870;
  text-decoration: none;
}
/* line 32, ../eff_scss/02_basics/_sitewide_typography.scss */
p a {
  padding-bottom: 0.15em;
  border-bottom: 0.0625rem solid #FFAF00;
}
/* line 36, ../eff_scss/02_basics/_sitewide_typography.scss */
p a:hover, p a:focus {
  color: #00318a;
}

/* line 42, ../eff_scss/02_basics/_sitewide_typography.scss */
p {
  font-family: "Gotham A", "Gotham B", Helvetica, Arial, sans-serif;
  font-weight: 400;
  line-height: 1.5em;
  font-size: 0.875rem;
  -webkit-font-smoothing: antialiased;
  margin: 0 0 1.4em;
}

/* line 48, ../eff_scss/02_basics/_sitewide_typography.scss */
li {
  -webkit-font-smoothing: antialiased;
}

/* line 52, ../eff_scss/02_basics/_sitewide_typography.scss */
.entry ul {
  margin-top: 0;
  margin-left: 0;
  margin-right: 0;
  margin-bottom: 1.4em;
}
/* line 59, ../eff_scss/02_basics/_sitewide_typography.scss */
.entry ul li {
  margin-bottom: 0.25em;
}

/* line 65, ../eff_scss/02_basics/_sitewide_typography.scss */
h1 {
  -webkit-font-smoothing: antialiased;
  color: #002870;
  font-family: "Gotham A", "Gotham B", Helvetica, Arial, sans-serif;
  font-weight: 700;
  line-height: 1.2em;
  font-size: 1.625rem;
  margin-top: 1em;
  margin-bottom: 1em;
  padding-bottom: 0.5em;
  border-bottom: 1px solid #FFAF00;
  margin-top: 0;
  margin-bottom: 0.75em;
}
@media only screen and (min-width: 768px) {
  /* line 65, ../eff_scss/02_basics/_sitewide_typography.scss */
  h1 {
    font-size: 2.125rem;
  }
}

/* line 77, ../eff_scss/02_basics/_sitewide_typography.scss */
h2 {
  -webkit-font-smoothing: antialiased;
  color: #002870;
  font-family: "Gotham A", "Gotham B", Helvetica, Arial, sans-serif;
  font-weight: 700;
  line-height: 1.5em;
  font-size: 1.1875rem;
  margin-top: 1em;
  margin-bottom: 0.5em;
}

/* line 81, ../eff_scss/02_basics/_sitewide_typography.scss */
h2.sub_title {
  -webkit-font-smoothing: antialiased;
  color: #002870;
  font-family: "Gotham A", "Gotham B", Helvetica, Arial, sans-serif;
  font-weight: 700;
  line-height: 1.2em;
  font-size: 1rem;
  margin-top: 1em;
  margin-bottom: 1em;
  margin-top: 0;
}

/* line 89, ../eff_scss/02_basics/_sitewide_typography.scss */
.cat_description,
.cat_description p {
  -webkit-font-smoothing: antialiased;
  font-family: "Gotham A", "Gotham B", Helvetica, Arial, sans-serif;
  font-weight: 400;
  line-height: 1.5em;
  font-size: 1.5625rem;
}

/* line 95, ../eff_scss/02_basics/_sitewide_typography.scss */
.cta,
button {
  box-sizing: border-box;
  display: inline-block;
  height: auto;
  width: auto;
  background-color: #FFAF00;
  -webkit-font-smoothing: antialiased;
  font-family: "Gotham A", "Gotham B", Helvetica, Arial, sans-serif;
  font-weight: 500;
  line-height: 1.2em;
  font-size: 0.6875rem;
  text-align: center;
  padding-top: 1.14em;
  padding-bottom: 1.14em;
  padding-left: 2em;
  padding-right: 2em;
  border: thin solid #FFAF00;
}
/* line 9, ../eff_scss/01_helpers/typography/_mixins_buttons.scss */
.cta, .cta:link,
button,
button:link {
  color: #002870;
}
/* line 14, ../eff_scss/01_helpers/typography/_mixins_buttons.scss */
.cta:hover, .cta:focus,
button:hover,
button:focus {
  color: #002870;
  background-color: transparent;
}
/* line 31, ../eff_scss/01_helpers/typography/_mixins_buttons.scss */
.cta:hover, .cta:focus,
button:hover,
button:focus {
  border-color: #FFAF00;
}

/* line 101, ../eff_scss/02_basics/_sitewide_typography.scss */
.eff_main_content .content h3,
.eff_main_content .content h4,
.eff_main_content .content h5 {
  -webkit-font-smoothing: antialiased;
  color: #002870;
  font-family: "Gotham A", "Gotham B", Helvetica, Arial, sans-serif;
  font-weight: 700;
  line-height: 1.2em;
  font-size: 1rem;
  margin-top: 1em;
  margin-bottom: 1em;
}

/* Header – Basics
*********************************** */
/* line 4, ../eff_scss/03_components/_header.scss */
.header_container {
  position: relative;
  z-index: 9999;
  background-color: #002870;
  width: 100%;
  padding-top: 1.5rem;
  padding-bottom: 1.563rem;
  margin-bottom: 1.6rem;
}
/* line 17, ../eff_scss/03_components/_header.scss */
.header_container header .container {
  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;
}
/* line 25, ../eff_scss/03_components/_header.scss */
.header_container .header_a {
  -webkit-box-ordinal-group: 2;
  -moz-box-ordinal-group: 2;
  -ms-flex-order: 2;
  -webkit-order: 2;
  width: 60%;
}
/* line 30, ../eff_scss/03_components/_header.scss */
.header_container .header_b {
  -webkit-box-ordinal-group: 1;
  -moz-box-ordinal-group: 1;
  -ms-flex-order: 1;
  -webkit-order: 1;
  width: 15%;
}
/* line 35, ../eff_scss/03_components/_header.scss */
.header_container .header_c {
  -webkit-box-ordinal-group: 3;
  -moz-box-ordinal-group: 3;
  -ms-flex-order: 3;
  -webkit-order: 3;
  width: 15%;
}
@media only screen and (min-width: 768px) {
  /* line 42, ../eff_scss/03_components/_header.scss */
  .header_container .header_a {
    width: 40%;
  }
  /* line 45, ../eff_scss/03_components/_header.scss */
  .header_container .header_b,
  .header_container .header_c {
    width: 25%;
  }
  /* line 50, ../eff_scss/03_components/_header.scss */
  .header_container .header_c {
    min-height: 2.6875rem;
  }
}

/* Header – Elements
*********************************** */
/* line 67, ../eff_scss/03_components/_header.scss */
.header_container .logo a,
.footer_left .logo a {
  display: block;
}
/* line 70, ../eff_scss/03_components/_header.scss */
.header_container .logo a img,
.footer_left .logo a img {
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
}
/* line 75, ../eff_scss/03_components/_header.scss */
.header_container .logo a::after,
.footer_left .logo a::after {
  content: " ";
  display: block;
  width: 100%;
  height: 0;
  padding-bottom: 12%;
  background-image: url("data:image/svg+xml,%3Csvg%20id%3D%22Layer_1%22%20data-name%3D%22Layer%201%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22298.027%22%20height%3D%2236.19%22%20viewBox%3D%220%200%20298.027%2036.19%22%3E%0A%20%20%3Ctitle%3Efy%3C%2Ftitle%3E%0A%20%20%3Cg%20id%3D%22Artwork_10%22%20data-name%3D%22Artwork%2010%22%3E%0A%20%20%20%20%3Cg%20id%3D%22Artwork_10-2%22%20data-name%3D%22Artwork%2010-2%22%3E%0A%20%20%20%20%20%20%3Cpath%20id%3D%22Path_1489%22%20data-name%3D%22Path%201489%22%20d%3D%22M58.123%2C11.36H70.568v3.806H62.413v2.658h7.371v3.564H62.413v5.558h-4.29Z%22%20fill%3D%22%23fff%22%2F%3E%0A%20%20%20%20%20%20%3Cpath%20id%3D%22Path_1490%22%20data-name%3D%22Path%201490%22%20d%3D%22M72.018%2C19.218h0a8.167%2C8.167%2C0%2C0%2C1%2C8.231-8.1c.056%2C0%2C.113%2C0%2C.169%2C0a8.069%2C8.069%2C0%2C0%2C1%2C8.394%2C7.73c0%2C.082.006.163.006.245h0a8.167%2C8.167%2C0%2C0%2C1-8.23%2C8.1l-.17%2C0a8.069%2C8.069%2C0%2C0%2C1-8.393-7.731C72.021%2C19.38%2C72.019%2C19.3%2C72.018%2C19.218Zm12.325%2C0h0a3.993%2C3.993%2C0%2C1%2C0-7.971-.475%2C3.828%2C3.828%2C0%2C0%2C0%2C0%2C.415h0a4.049%2C4.049%2C0%2C0%2C0%2C3.863%2C4.225l.124%2C0a3.987%2C3.987%2C0%2C0%2C0%2C4.052-3.922c0-.082%2C0-.165%2C0-.247Z%22%20fill%3D%22%23fff%22%2F%3E%0A%20%20%20%20%20%20%3Cpath%20id%3D%22Path_1491%22%20data-name%3D%22Path%201491%22%20d%3D%22M90.868%2C20.12V11.36h4.35V20c0%2C2.235%2C1.148%2C3.323%2C2.839%2C3.323s2.9-1.027%2C2.9-3.2V11.36h4.35V20c0%2C5.014-2.839%2C7.25-7.31%2C7.25S90.868%2C24.953%2C90.868%2C20.12Z%22%20fill%3D%22%23fff%22%2F%3E%0A%20%20%20%20%20%20%3Cpath%20id%3D%22Path_1492%22%20data-name%3D%22Path%201492%22%20d%3D%22M107.905%2C11.36h4.048l6.4%2C8.216V11.36h4.289V26.947h-3.737l-6.646-8.518v8.518h-4.29Z%22%20fill%3D%22%23fff%22%2F%3E%0A%20%20%20%20%20%20%3Cpath%20id%3D%22Path_1493%22%20data-name%3D%22Path%201493%22%20d%3D%22M125.3%2C11.36h6.042c5.558%2C0%2C8.76%2C3.2%2C8.76%2C7.673h0c0%2C4.471-3.262%2C7.854-8.821%2C7.854h-5.921Zm4.289%2C3.806v7.975h1.752c2.6%2C0%2C4.29-1.45%2C4.29-3.927h0c0-2.477-1.692-3.987-4.29-3.987Z%22%20fill%3D%22%23fff%22%2F%3E%0A%20%20%20%20%20%20%3Cpath%20id%3D%22Path_1494%22%20data-name%3D%22Path%201494%22%20d%3D%22M146.631%2C11.239H150.8l6.646%2C15.647h-4.652l-1.148-2.779H145.6l-1.087%2C2.779h-4.532Zm3.806%2C9.546-1.752-4.41-1.752%2C4.41Z%22%20fill%3D%22%23fff%22%2F%3E%0A%20%20%20%20%20%20%3Cpath%20id%3D%22Path_1495%22%20data-name%3D%22Path%201495%22%20d%3D%22M161.311%2C15.166h-4.652V11.36h13.654v3.806h-4.654V26.947h-4.35Z%22%20fill%3D%22%23fff%22%2F%3E%0A%20%20%20%20%20%20%3Cpath%20id%3D%22Path_1496%22%20data-name%3D%22Path%201496%22%20d%3D%22M172.911%2C11.36H177.2V26.947h-4.289Z%22%20fill%3D%22%23fff%22%2F%3E%0A%20%20%20%20%20%20%3Cpath%20id%3D%22Path_1497%22%20data-name%3D%22Path%201497%22%20d%3D%22M180.161%2C19.218h0a8.167%2C8.167%2C0%2C0%2C1%2C8.231-8.1c.056%2C0%2C.113%2C0%2C.169%2C0a8.069%2C8.069%2C0%2C0%2C1%2C8.394%2C7.73c0%2C.082.006.163.006.245h0a8.167%2C8.167%2C0%2C0%2C1-8.23%2C8.1l-.17%2C0a8.069%2C8.069%2C0%2C0%2C1-8.393-7.731C180.164%2C19.38%2C180.162%2C19.3%2C180.161%2C19.218Zm12.325%2C0h0a3.993%2C3.993%2C0%2C1%2C0-7.971-.475%2C3.828%2C3.828%2C0%2C0%2C0%2C0%2C.415h0a4.049%2C4.049%2C0%2C0%2C0%2C3.863%2C4.225l.124%2C0A3.988%2C3.988%2C0%2C0%2C0%2C192.49%2C19.4c0-.062%2C0-.124%2C0-.186Z%22%20fill%3D%22%23fff%22%2F%3E%0A%20%20%20%20%20%20%3Cpath%20id%3D%22Path_1498%22%20data-name%3D%22Path%201498%22%20d%3D%22M198.527%2C11.36h4.048l6.4%2C8.216V11.36h4.289V26.947h-3.737l-6.646-8.518v8.518h-4.29Z%22%20fill%3D%22%23fff%22%2F%3E%0A%20%20%20%20%20%20%3Cg%20id%3D%22Group_331%22%20data-name%3D%22Group%20331%22%3E%0A%20%20%20%20%20%20%20%20%3Cpath%20id%3D%22Path_1499%22%20data-name%3D%22Path%201499%22%20d%3D%22M226.076%2C21.087l-5.921-9.727h4.894l3.2%2C5.679%2C3.2-5.679h4.834l-5.921%2C9.666v5.921h-4.29Z%22%20fill%3D%22%23fff%22%2F%3E%0A%20%20%20%20%20%20%20%20%3Cpath%20id%3D%22Path_1500%22%20data-name%3D%22Path%201500%22%20d%3D%22M237.011%2C11.36h12.506v3.625H241.3v2.356h7.491v3.383H241.3V23.2h8.337v3.685H237.011Z%22%20fill%3D%22%23fff%22%2F%3E%0A%20%20%20%20%20%20%20%20%3Cpath%20id%3D%22Path_1501%22%20data-name%3D%22Path%201501%22%20d%3D%22M257.25%2C11.239h4.168l6.647%2C15.647h-4.652l-1.087-2.779h-6.042L255.2%2C26.886h-4.532Zm3.806%2C9.546-1.752-4.41-1.752%2C4.41Z%22%20fill%3D%22%23fff%22%2F%3E%0A%20%20%20%20%20%20%20%20%3Cpath%20id%3D%22Path_1502%22%20data-name%3D%22Path%201502%22%20d%3D%22M269.574%2C11.36h7.371c2.356%2C0%2C4.048.6%2C5.075%2C1.692a4.829%2C4.829%2C0%2C0%2C1%2C1.389%2C3.625h0a4.953%2C4.953%2C0%2C0%2C1-3.2%2C4.773l3.685%2C5.437H278.94L275.8%2C22.175h-1.933v4.712h-4.291Zm7.129%2C7.491c1.45%2C0%2C2.3-.725%2C2.3-1.873h0c0-1.269-.906-1.873-2.356-1.873h-2.839v3.746Z%22%20fill%3D%22%23fff%22%2F%3E%0A%20%20%20%20%20%20%20%20%3Cpath%20id%3D%22Path_1503%22%20data-name%3D%22Path%201503%22%20d%3D%22M284.376%2C24.651l2.417-2.84a8.107%2C8.107%2C0%2C0%2C0%2C5.075%2C1.873c1.208%2C0%2C1.812-.423%2C1.812-1.087h0c0-.665-.483-1.027-2.658-1.51-3.323-.785-5.859-1.692-5.859-4.894h0c0-2.9%2C2.3-4.954%2C6.042-4.954a9.779%2C9.779%2C0%2C0%2C1%2C6.4%2C2.054l-2.174%2C3.021a7.608%2C7.608%2C0%2C0%2C0-4.35-1.51c-1.028%2C0-1.572.423-1.572%2C1.027h0c0%2C.725.544%2C1.027%2C2.719%2C1.51%2C3.564.785%2C5.8%2C1.933%2C5.8%2C4.833h0c0%2C3.2-2.537%2C5.075-6.283%2C5.075a10.94%2C10.94%2C0%2C0%2C1-7.37-2.6Z%22%20fill%3D%22%23fff%22%2F%3E%0A%20%20%20%20%20%20%3C%2Fg%3E%0A%20%20%20%20%20%20%3Cg%20id%3D%22Group_332%22%20data-name%3D%22Group%20332%22%3E%0A%20%20%20%20%20%20%20%20%3Cpath%20id%3D%22Path_1504%22%20data-name%3D%22Path%201504%22%20d%3D%22M24.472%2C36.19A28.825%2C28.825%2C0%2C0%2C1%2C13.6%2C34.015a15.409%2C15.409%2C0%2C0%2C1-8.579-9c-.423-1.027-.423-1.087-1.45-.967a2.118%2C2.118%2C0%2C0%2C1-1.269-.3C-.42%2C22.177-.6%2C17.767%2C1.091%2C16.075a3.261%2C3.261%2C0%2C0%2C1%2C2.84-1.148A.846.846%2C0%2C0%2C0%2C4.95%2C14.3l.008-.037C6.77%2C8.822%2C10.516%2C5.2%2C15.591%2C2.781A25.066%2C25.066%2C0%2C0%2C1%2C27.492%2C0a21.875%2C21.875%2C0%2C0%2C1%2C4.591.725A28.029%2C28.029%2C0%2C0%2C1%2C39.394%2C3.5a16.794%2C16.794%2C0%2C0%2C1%2C7.794%2C9.787c.362%2C1.087.362%2C1.148%2C1.208%2C1.148a3.8%2C3.8%2C0%2C0%2C1%2C3.564%2C2.839%2C6.452%2C6.452%2C0%2C0%2C1-.06%2C3.746%2C3.858%2C3.858%2C0%2C0%2C1-3.625%2C3.08%2C2.055%2C2.055%2C0%2C0%2C0-1.933%2C1.329c-2.054%2C3.987-5.437%2C6.525-9.425%2C8.277A32.819%2C32.819%2C0%2C0%2C1%2C24.472%2C36.19Zm-.06-3.564a28.343%2C28.343%2C0%2C0%2C0%2C10.331-1.933c4.108-1.631%2C7.552-3.987%2C9.243-8.277a1.39%2C1.39%2C0%2C0%2C1%2C1.51-.967%2C20.31%2C20.31%2C0%2C0%2C0%2C3.021-.06c1.269-.181%2C1.812-1.087%2C1.692-2.6S49.424%2C16.8%2C48.215%2C16.8a12.637%2C12.637%2C0%2C0%2C0-2.417.181c-.785.121-1.329%2C0-1.51-1.087a13.03%2C13.03%2C0%2C0%2C0-2.115-5.135%2C15.339%2C15.339%2C0%2C0%2C0-7.008-5.5%2C31.478%2C31.478%2C0%2C0%2C0-6.948-1.93c-.846-.121-1.269.423-.846%2C1.148a7.29%2C7.29%2C0%2C0%2C0%2C1.208%2C1.571%2C17.478%2C17.478%2C0%2C0%2C1%2C1.933%2C2.3%2C3.079%2C3.079%2C0%2C0%2C1%2C.483%2C2.6c-.544%2C2.235-3.2%2C4.169-5.8%2C4.229a3.928%2C3.928%2C0%2C0%2C1-3.989-4.96%2C3.143%2C3.143%2C0%2C0%2C1%2C2.782-2.538h.906c.423%2C0%2C.544-.242.362-.6a25.9%2C25.9%2C0%2C0%2C1-1.39-2.84c-.423-.967-.423-.967-1.45-.785a21.318%2C21.318%2C0%2C0%2C0-9.061%2C4.165%2C15.528%2C15.528%2C0%2C0%2C0-5.981%2C9.3c-.181.967-.3.967-1.208.785a4.753%2C4.753%2C0%2C0%2C0-1.631-.181c-.906.121-1.873%2C1.027-1.873%2C1.692a2.238%2C2.238%2C0%2C0%2C0%2C1.571%2C1.812H6.045a1.329%2C1.329%2C0%2C0%2C1%2C1.6.989%2C1.289%2C1.289%2C0%2C0%2C1%2C.032.223l.181.544a11.9%2C11.9%2C0%2C0%2C0%2C7.129%2C8.035%2C25.634%2C25.634%2C0%2C0%2C0%2C9.425%2C1.812Zm.846-20.541a3.083%2C3.083%2C0%2C0%2C0%2C2.175-1.027c.665-.665.6-1.027-.06-1.631s-.544-.362-.665.121a1.63%2C1.63%2C0%2C0%2C1-1.73%2C1.525c-.048%2C0-.1-.008-.143-.015a.362.362%2C0%2C0%2C0-.421.29l0%2C.01a.546.546%2C0%2C0%2C0%2C.362.6Z%22%20fill%3D%22%23fff%22%2F%3E%0A%20%20%20%20%20%20%20%20%3Cpath%20id%3D%22Path_1505%22%20data-name%3D%22Path%201505%22%20d%3D%22M25.68%2C30.39a11.666%2C11.666%2C0%2C0%2C1-7.673-2.779%2C2.306%2C2.306%2C0%2C0%2C1-.967-1.631%2C1.208%2C1.208%2C0%2C0%2C1%2C1.51-1.39%2C2.945%2C2.945%2C0%2C0%2C1%2C1.39.846%2C9.385%2C9.385%2C0%2C0%2C0%2C3.323%2C1.752A6.709%2C6.709%2C0%2C0%2C0%2C29%2C26.161l1.631-1.027c.906-.544%2C1.571-.483%2C2.054.06a1.57%2C1.57%2C0%2C0%2C1-.181%2C2.175%2C11.027%2C11.027%2C0%2C0%2C1-2.96%2C2.054A9.859%2C9.859%2C0%2C0%2C1%2C25.68%2C30.39Z%22%20fill%3D%22%23fff%22%2F%3E%0A%20%20%20%20%20%20%20%20%3Cpath%20id%3D%22Path_1506%22%20data-name%3D%22Path%201506%22%20d%3D%22M17.886%2C20.3a3.985%2C3.985%2C0%2C0%2C1-.242%2C1.812%2C1.206%2C1.206%2C0%2C0%2C1-1.027.785.984.984%2C0%2C0%2C1-.906-.665%2C5.869%2C5.869%2C0%2C0%2C1%2C.181-3.625%2C1.035%2C1.035%2C0%2C0%2C1%2C1.873.242%2C3.856%2C3.856%2C0%2C0%2C1%2C.121%2C1.45Z%22%20fill%3D%22%23fff%22%2F%3E%0A%20%20%20%20%20%20%20%20%3Cpath%20id%3D%22Path_1507%22%20data-name%3D%22Path%201507%22%20d%3D%22M32.688%2C21.207c0-.3.06-.6.06-.967a1.148%2C1.148%2C0%2C0%2C1%2C1.087-1.087%2C1.206%2C1.206%2C0%2C0%2C1%2C1.39.906%2C3.861%2C3.861%2C0%2C0%2C1%2C.06%2C2.054c-.181.785-.665%2C1.208-1.329%2C1.148a1.391%2C1.391%2C0%2C0%2C1-1.268-1.268Z%22%20fill%3D%22%23fff%22%2F%3E%0A%20%20%20%20%20%20%3C%2Fg%3E%0A%20%20%20%20%3C%2Fg%3E%0A%20%20%3C%2Fg%3E%0A%3C%2Fsvg%3E%0A");
  background-repeat: no-repeat;
  background-size: contain;
}

/* line 90, ../eff_scss/03_components/_header.scss */
.header_container .logo {
  width: 10.9375rem;
  margin: 0 auto;
}
@media only screen and (min-width: 480px) {
  /* line 90, ../eff_scss/03_components/_header.scss */
  .header_container .logo {
    width: 12.25rem;
  }
}
@media only screen and (min-width: 768px) {
  /* line 90, ../eff_scss/03_components/_header.scss */
  .header_container .logo {
    width: 18.625rem;
  }
}

/* line 106, ../eff_scss/03_components/_header.scss */
.widget_search {
  text-align: right;
}
/* line 108, ../eff_scss/03_components/_header.scss */
.widget_search form {
  display: inline-block;
  margin: 0;
}
/* line 111, ../eff_scss/03_components/_header.scss */
.widget_search form label {
  display: none;
}
/* line 115, ../eff_scss/03_components/_header.scss */
.widget_search form > div {
  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;
  justify-content: flex-end;
  position: relative;
  min-height: 2.3125rem;
}
/* line 123, ../eff_scss/03_components/_header.scss */
.widget_search form input[type="text"] {
  color: white;
  display: none;
  background-color: #002870;
  border: thin solid white;
  width: 100%;
  margin-right: 1rem;
}
/* line 134, ../eff_scss/03_components/_header.scss */
.widget_search form .btn-submit {
  flex-shrink: 0;
  display: block;
  overflow: hidden;
  text-align: left;
  text-indent: -9999px;
  width: 28px;
  min-width: 0;
  height: 28px;
  background-color: #FFAF00;
  background-image: url("data:image/svg+xml,%3Csvg%20id%3D%22Layer_1%22%20data-name%3D%22Layer%201%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2211.778%22%20height%3D%2211.636%22%20viewBox%3D%220%200%2011.778%2011.636%22%3E%0A%20%20%3Ctitle%3Efy%3C%2Ftitle%3E%0A%20%20%3Cg%20id%3D%22Artwork_2%22%20data-name%3D%22Artwork%202%22%3E%0A%20%20%20%20%3Cpath%20id%3D%22Artwork_2-2%22%20data-name%3D%22Artwork%202-2%22%20d%3D%22M10.468%2C1.115A3.849%2C3.849%2C0%2C0%2C0%2C5.336.858%2C3.679%2C3.679%2C0%2C0%2C0%2C3.968%2C3a3.845%2C3.845%2C0%2C0%2C0%2C.684%2C3.165l-.6.6h-.17a.939.939%2C0%2C0%2C0-.77.257L.3%2C9.924a.94.94%2C0%2C0%2C0-.038%2C1.33l.038.038a.941.941%2C0%2C0%2C0%2C1.454%2C0L2.861%2C10.18%2C4.567%2C8.47a.943.943%2C0%2C0%2C0%2C.342-.77.515.515%2C0%2C0%2C1%2C.257-.428H5.08l.342-.342a3.85%2C3.85%2C0%2C0%2C0%2C5.046-5.816ZM7.731%2C6.589a2.737%2C2.737%2C0%2C1%2C1%2C2.737-2.737h0A2.737%2C2.737%2C0%2C0%2C1%2C7.731%2C6.589Z%22%20fill%3D%22%23002870%22%2F%3E%0A%20%20%3C%2Fg%3E%0A%3C%2Fsvg%3E%0A");
  background-repeat: no-repeat;
  background-position: 50% 50%;
  border: 0;
  border-radius: 50%;
  margin: 0;
}
/* line 149, ../eff_scss/03_components/_header.scss */
.widget_search form .btn-submit:hover, .widget_search form .btn-submit:focus {
  opacity: 0.8;
}
/* line 158, ../eff_scss/03_components/_header.scss */
.widget_search.jsEngaged input[type="text"] {
  transition: width 0.5s;
}
/* line 163, ../eff_scss/03_components/_header.scss */
.widget_search.jsEngaged.closed input[type="text"] {
  display: block;
  border: 0;
  padding-left: 0;
  padding-right: 0;
  width: 0%;
}
/* line 175, ../eff_scss/03_components/_header.scss */
.widget_search.jsEngaged.open input[type="text"] {
  display: block;
}
@media only screen and (max-width: 767px) {
  /* line 182, ../eff_scss/03_components/_header.scss */
  .widget_search.jsEngaged input[type="text"] {
    position: absolute;
    top: -4px;
    right: 57px;
    max-width: none;
  }
  /* line 189, ../eff_scss/03_components/_header.scss */
  .widget_search.jsEngaged.open input[type="text"] {
    width: 279px;
  }
}
@media only screen and (max-width: 479px) {
  /* line 197, ../eff_scss/03_components/_header.scss */
  .widget_search.jsEngaged.open input[type="text"] {
    right: 25px;
    width: 195px;
  }
}

/* line 1, ../eff_scss/03_components/_main_nav.scss */
.container.topm_cont {
  position: relative;
  z-index: 9999;
  margin-bottom: 2.3rem;
  background-color: #002870;
  width: 100%;
}
@media only screen and (min-width: 768px) {
  .container.topm_cont {
    padding: 20px 10px 1px 10px;
    margin-top: -26px;
  }
}

/* line 8, ../eff_scss/03_components/_main_nav.scss */
ul#menu-effusion-main-nav {
  margin-bottom: 1rem;
}
/* line 16, ../eff_scss/03_components/_main_nav.scss */
ul#menu-effusion-main-nav li a {
  display: block;
  color: #fff;
  -webkit-font-smoothing: antialiased;
}
/* line 24, ../eff_scss/03_components/_main_nav.scss */
ul#menu-effusion-main-nav li.current-menu-item > a, ul#menu-effusion-main-nav li.current-menu-ancestor > a {
  font-weight: 500;
  color: #fff;
}
/* line 27, ../eff_scss/03_components/_main_nav.scss */
ul#menu-effusion-main-nav li.current-menu-item > a span, ul#menu-effusion-main-nav li.current-menu-ancestor > a span {
  border-color: #002870;
}
/* line 34, ../eff_scss/03_components/_main_nav.scss */
ul#menu-effusion-main-nav .ehj {
  margin: 0;
}

@media only screen and (min-width: 768px) {
  /* line 41, ../eff_scss/03_components/_main_nav.scss */
  ul#menu-effusion-main-nav {
    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;
    -webkit-font-smoothing: antialiased;
    font-family: "Gotham A", "Gotham B", Helvetica, Arial, sans-serif;
    font-weight: 400;
    line-height: 1.5em;
    font-size: 1.1875rem;
  }
  /* line 47, ../eff_scss/03_components/_main_nav.scss */
  ul#menu-effusion-main-nav li {
    margin-right: 1.85em;
  }
  /* line 50, ../eff_scss/03_components/_main_nav.scss */
  ul#menu-effusion-main-nav li:last-child {
    margin-right: 0;
  }
  /* line 56, ../eff_scss/03_components/_main_nav.scss */
  ul#menu-effusion-main-nav li a span {
    display: block;
    padding-bottom: 0.25em;
    border-bottom: 1px solid transparent;
  }
  /* line 62, ../eff_scss/03_components/_main_nav.scss */
  ul#menu-effusion-main-nav li a:hover, ul#menu-effusion-main-nav li a:focus {
    text-decoration: none;
    color: #ffaf00;
  }
  /* line 66, ../eff_scss/03_components/_main_nav.scss */
  ul#menu-effusion-main-nav li a:hover span, ul#menu-effusion-main-nav li a:focus span {
    border-color: #ffaf00;
  }
  /* line 75, ../eff_scss/03_components/_main_nav.scss */
  ul#menu-effusion-main-nav li:hover ul {
    display: block !important;
  }
  /* line 82, ../eff_scss/03_components/_main_nav.scss */
  ul#menu-effusion-main-nav ul {
    display: none !important;
    position: absolute;
    top: auto;
    left: auto;
    background-color: white;
    padding-top: 0.5em;
    padding-bottom: 0.5em;
    padding-left: 0.75em;
    padding-right: 0.75em;
    border: thin solid #FFAF00;
    border-top-color: #002870;
    transform: translateY(-0.0625rem);
    max-width: 29.6875rem;
  }
  /* line 99, ../eff_scss/03_components/_main_nav.scss */
  ul#menu-effusion-main-nav ul li {
    margin-bottom: 0.5em;
  }
  /* line 102, ../eff_scss/03_components/_main_nav.scss */
  ul#menu-effusion-main-nav ul li a span {
    display: inline;
    padding-bottom: 0.1em;
  }

  /* line 112, ../eff_scss/03_components/_main_nav.scss */
  .mainNavOverlay_toggle_button,
  #closeMainNavPageOverlay,
  .menu_control {
    display: none;
  }
}
/* line 122, ../eff_scss/03_components/_main_nav.scss */
#closeMainNavPageOverlay {
  display: none;
}

@media only screen and (max-width: 767px) {
  /* line 128, ../eff_scss/03_components/_main_nav.scss */
  .overlay_outer {
    position: absolute;
    top: auto;
    left: 0;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    z-index: 10;
    background-color: transparent;
  }
  /* line 153, ../eff_scss/03_components/_main_nav.scss */
  .overlay_outer .overlay_inner {
    position: absolute;
    z-index: 2;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    top: 0;
    right: 0;
    height: 0%;
    width: 100%;
    box-sizing: border-box;
    padding-left: 3%;
    padding-right: 3%;
    background-color: white;
    transition: height 0.6s;
  }
}
@media only screen and (max-width: 767px) and (max-width: 695px) {
  /* line 153, ../eff_scss/03_components/_main_nav.scss */
  .overlay_outer .overlay_inner {
    padding-left: 3.5%;
    padding-right: 3.5%;
  }
}
@media only screen and (max-width: 767px) and (max-width: 551px) {
  /* line 153, ../eff_scss/03_components/_main_nav.scss */
  .overlay_outer .overlay_inner {
    padding-left: 4%;
    padding-right: 4%;
  }
}
@media only screen and (max-width: 767px) and (max-width: 479px) {
  /* line 153, ../eff_scss/03_components/_main_nav.scss */
  .overlay_outer .overlay_inner {
    padding-left: 4.5%;
    padding-right: 4.5%;
  }
}
@media only screen and (max-width: 767px) {
  /* line 170, ../eff_scss/03_components/_main_nav.scss */
  .overlay_outer .overlay_inner .overlay_wrap {
    box-sizing: border-box;
    width: 100%;
    overflow-x: hidden;
    overflow-y: auto;
  }
  /* line 180, ../eff_scss/03_components/_main_nav.scss */
  .overlay_outer.closed {
    display: block;
  }
  /* line 186, ../eff_scss/03_components/_main_nav.scss */
  .overlay_outer.open .content_overlay {
    opacity: 1;
  }
  /* line 189, ../eff_scss/03_components/_main_nav.scss */
  .overlay_outer.open .overlay_inner {
    height: 100%;
  }
  /* line 198, ../eff_scss/03_components/_main_nav.scss */
  .overlay_outer.overlay_hidden {
    display: none;
  }

  /* line 207, ../eff_scss/03_components/_main_nav.scss */
  ul#menu-effusion-main-nav {
    text-align: center;
    -webkit-font-smoothing: antialiased;
    font-family: "Gotham A", "Gotham B", Helvetica, Arial, sans-serif;
    font-weight: 500;
    line-height: 1.375em;
    font-size: 1.625rem;
    margin-top: 1em;
    margin-bottom: 1em;
    padding-top: 1.5em;
    margin-top: 0;
    margin-bottom: 0;
  }
}
@media only screen and (max-width: 767px) and (min-width: 768px) {
  /* line 207, ../eff_scss/03_components/_main_nav.scss */
  ul#menu-effusion-main-nav {
    font-size: 2.25rem;
  }
}
@media only screen and (max-width: 767px) {
  /* line 219, ../eff_scss/03_components/_main_nav.scss */
  ul#menu-effusion-main-nav li {
    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: center;
    -webkit-box-align: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    margin-bottom: 0.5em;
  }
  /* line 229, ../eff_scss/03_components/_main_nav.scss */
  ul#menu-effusion-main-nav li a {
    display: block;
    color: #002870;
    font-weight: 400;
  }
  /* line 235, ../eff_scss/03_components/_main_nav.scss */
  ul#menu-effusion-main-nav .menu_control {
    position: relative;
    display: block;
    overflow: hidden;
    text-align: left;
    text-indent: -9999px;
    width: 2.1875rem;
    height: 2.1875rem;
    background-color: transparent;
    padding: 0;
    border: thin solid #FFAF00;
    border-radius: 50%;
    margin-top: 0;
    margin-bottom: 0;
    margin-left: 0.75em;
  }
  /* line 250, ../eff_scss/03_components/_main_nav.scss */
  ul#menu-effusion-main-nav .menu_control span {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 47%;
    height: 100%;
    background-position: 50% 50%;
    background-size: 100% auto;
  }
  /* line 262, ../eff_scss/03_components/_main_nav.scss */
  ul#menu-effusion-main-nav .menu_control.open span {
    background-image: url("data:image/svg+xml,%3Csvg%20id%3D%22Layer_1%22%20data-name%3D%22Layer%201%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2215.5%22%20height%3D%222%22%20viewBox%3D%220%200%2015.5%202%22%3E%0A%20%20%3Ctitle%3Efy%3C%2Ftitle%3E%0A%20%20%3Crect%20width%3D%2215.5%22%20height%3D%222%22%20fill%3D%22%23002870%22%2F%3E%0A%3C%2Fsvg%3E%0A");
    background-repeat: no-repeat;
  }
  /* line 267, ../eff_scss/03_components/_main_nav.scss */
  ul#menu-effusion-main-nav .menu_control.closed span {
    background-image: url("data:image/svg+xml,%3Csvg%20id%3D%22Layer_1%22%20data-name%3D%22Layer%201%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2215.5%22%20height%3D%2215.5%22%20viewBox%3D%220%200%2015.5%2015.5%22%3E%0A%20%20%3Ctitle%3Efy%3C%2Ftitle%3E%0A%20%20%3Cpolygon%20points%3D%2215.5%206.75%208.75%206.75%208.75%200%206.75%200%206.75%206.75%200%206.75%200%208.75%206.75%208.75%206.75%2015.5%208.75%2015.5%208.75%208.75%2015.5%208.75%2015.5%206.75%22%20fill%3D%22%23002870%22%2F%3E%0A%3C%2Fsvg%3E%0A");
    background-repeat: no-repeat;
  }
  /* line 274, ../eff_scss/03_components/_main_nav.scss */
  ul#menu-effusion-main-nav ul {
    width: 100%;
    font-size: 1.375rem;
    margin-top: 0.5em;
    margin-bottom: 0.5em;
  }
  /* line 284, ../eff_scss/03_components/_main_nav.scss */
  ul#menu-effusion-main-nav ul li {
    margin-bottom: 0.25em;
  }

  /* line 293, ../eff_scss/03_components/_main_nav.scss */
  .mainNavOverlay_toggle_button {
    display: block;
    overflow: hidden;
    text-align: left;
    text-indent: -9999px;
    width: 1.8125rem;
    height: 3rem;
    padding: 0;
    background-color: transparent;
    position: relative;
    border: 0;
    margin: 0;
  }
  /* line 305, ../eff_scss/03_components/_main_nav.scss */
  .mainNavOverlay_toggle_button .line {
    width: 100%;
    height: 0;
    border-bottom: 3px solid #FFAF00;
    position: absolute;
    left: 50%;
    transform: translate(-50%, -1px);
    transition: all 0.3s;
  }
  /* line 315, ../eff_scss/03_components/_main_nav.scss */
  .mainNavOverlay_toggle_button .line.id_1 {
    top: 27%;
  }
  /* line 318, ../eff_scss/03_components/_main_nav.scss */
  .mainNavOverlay_toggle_button .line.id_2 {
    top: 50%;
  }
  /* line 321, ../eff_scss/03_components/_main_nav.scss */
  .mainNavOverlay_toggle_button .line.id_3 {
    top: 73%;
  }
  /* line 325, ../eff_scss/03_components/_main_nav.scss */
  .mainNavOverlay_toggle_button .line.id_4, .mainNavOverlay_toggle_button .line.id_5 {
    display: none;
  }
  /* line 333, ../eff_scss/03_components/_main_nav.scss */
  .mainNavOverlay_toggle_button.open .line.id_2 {
    display: none;
  }
  /* line 337, ../eff_scss/03_components/_main_nav.scss */
  .mainNavOverlay_toggle_button.open .line.id_1, .mainNavOverlay_toggle_button.open .line.id_3 {
    top: 50%;
    transform-origin: 50% 50%;
  }
  /* line 343, ../eff_scss/03_components/_main_nav.scss */
  .mainNavOverlay_toggle_button.open .line.id_1 {
    transform: translate(-50%, -1px) rotate(45deg);
  }
  /* line 346, ../eff_scss/03_components/_main_nav.scss */
  .mainNavOverlay_toggle_button.open .line.id_3 {
    transform: translate(-50%, -1px) rotate(-45deg);
  }
}
@media only screen and (max-width: 767px) and (min-width: 768px) {
  /* line 293, ../eff_scss/03_components/_main_nav.scss */
  .mainNavOverlay_toggle_button {
    width: 3rem;
    height: 3rem;
  }
  /* line 356, ../eff_scss/03_components/_main_nav.scss */
  .mainNavOverlay_toggle_button .line {
    width: 80%;
  }
}

/* line 2, ../eff_scss/03_components/_footer.scss */
footer {
  background-color: #002870;
  padding-top: 2rem;
  padding-bottom: 2rem;
}
/* line 9, ../eff_scss/03_components/_footer.scss */
footer div,
footer p,
footer a {
  -webkit-font-smoothing: antialiased;
  font-family: "Gotham A", "Gotham B", Helvetica, Arial, sans-serif;
  font-weight: 400;
  line-height: 1.5em;
  font-size: 0.6875rem;
}
/* line 15, ../eff_scss/03_components/_footer.scss */
footer div,
footer p,
footer span,
footer a,
footer a:link {
  color: white;
}
/* line 26, ../eff_scss/03_components/_footer.scss */
footer .top_share .social_title {
  color: white;
  width: auto;
  margin-right: 1rem;
}
/* line 31, ../eff_scss/03_components/_footer.scss */
footer .top_share a {
  background-color: white;
}
/* line 38, ../eff_scss/03_components/_footer.scss */
footer form label {
  color: white;
}
/* line 46, ../eff_scss/03_components/_footer.scss */
footer #mc_embed_signup .mc-field-group,
footer #mc_embed_signup_box .mc-field-group {
  flex-wrap: wrap;
  justify-content: flex-start;
}
/* line 51, ../eff_scss/03_components/_footer.scss */
footer #mc_embed_signup label,
footer #mc_embed_signup_box label {
  margin-right: 0;
}
/* line 56, ../eff_scss/03_components/_footer.scss */
footer #mc_embed_signup input[type="text"],
footer #mc_embed_signup input[type="email"],
footer #mc_embed_signup_box input[type="text"],
footer #mc_embed_signup_box input[type="email"] {
  -webkit-font-smoothing: antialiased;
  font-family: "Gotham A", "Gotham B", Helvetica, Arial, sans-serif;
  font-weight: 500;
  line-height: 1.2em;
  font-size: 0.6875rem;
  text-transform: none;
  font-weight: 400;
  padding-left: 1em;
  padding-right: 1em;
  width: 8.75rem;
  height: 2.5rem;
}
/* line 68, ../eff_scss/03_components/_footer.scss */
footer #mc_embed_signup input[type="submit"],
footer #mc_embed_signup_box input[type="submit"] {
  width: 2.5rem;
  height: 2.5rem;
}
/* line 76, ../eff_scss/03_components/_footer.scss */
footer .footer_left .logo {
  width: 12.375rem;
  margin-bottom: 1rem;
}
/* line 84, ../eff_scss/03_components/_footer.scss */
footer .footer_left .widget_text a {
  font-weight: 500;
}
@media only screen and (max-width: 767px) {
  /* line 92, ../eff_scss/03_components/_footer.scss */
  footer .container > * {
    margin-bottom: 2rem;
  }
}
@media only screen and (min-width: 768px) {
  /* line 100, ../eff_scss/03_components/_footer.scss */
  footer .container {
    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;
  }
  /* line 104, ../eff_scss/03_components/_footer.scss */
  footer .container > * {
    width: 30.55554%;
  }
  /* line 110, ../eff_scss/03_components/_footer.scss */
  footer .footer_left .widget_text + .widget_text {
    margin-top: 6em;
  }
  /* line 115, ../eff_scss/03_components/_footer.scss */
  footer .footer_middle,
  footer .footer_right {
    text-align: center;
  }
  /* line 123, ../eff_scss/03_components/_footer.scss */
  footer #mc_embed_signup .mc-field-group,
  footer #mc_embed_signup_box .mc-field-group {
    justify-content: center;
  }
  /* line 130, ../eff_scss/03_components/_footer.scss */
  footer .top_share .social_title {
    width: 100%;
    margin-right: 0;
  }
}

/* line 3, ../eff_scss/03_components/_listing_item.scss */
.post-title h2 {
  -webkit-font-smoothing: antialiased;
  color: #002870;
  font-family: "Gotham A", "Gotham B", Helvetica, Arial, sans-serif;
  font-weight: 700;
  line-height: 1.175em;
  font-size: 1.375rem;
  margin-top: 1em;
  margin-bottom: 1em;
  padding-bottom: 0.7em;
  border-bottom: 0.1875rem solid #002870;
  margin-top: 0;
  margin-bottom: 0.725em;
}
@media only screen and (min-width: 768px) {
  /* line 3, ../eff_scss/03_components/_listing_item.scss */
  .post-title h2 {
    font-size: 1.625rem;
  }
}

/* line 14, ../eff_scss/03_components/_listing_item.scss */
.post-descr {
  margin-bottom: 1.7em;
}
/* line 17, ../eff_scss/03_components/_listing_item.scss */
.post-descr p:last-child {
  margin-bottom: 0;
}

/* line 24, ../eff_scss/03_components/_listing_item.scss */
.post-item {
  box-sizing: border-box;
}
/* line 27, ../eff_scss/03_components/_listing_item.scss */
.post-item a {
  display: block;
}
/* line 32, ../eff_scss/03_components/_listing_item.scss */
.post-item .post-meta {
  margin-bottom: 1.45em;
}
/* line 37, ../eff_scss/03_components/_listing_item.scss */
.post-item .read_more {
  display: inline-block;
  -webkit-font-smoothing: antialiased;
  font-family: "Gotham A", "Gotham B", Helvetica, Arial, sans-serif;
  font-weight: 500;
  line-height: 1.2em;
  font-size: 0.6875rem;
  text-transform: none;
  padding-right: 1.7em;
  padding-bottom: 0.65em;
  background-image: url("data:image/svg+xml,%3Csvg%20id%3D%22Layer_1%22%20data-name%3D%22Layer%201%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%227.931%22%20height%3D%226.719%22%20viewBox%3D%220%200%207.931%206.719%22%3E%0A%20%20%3Ctitle%3Efy%3C%2Ftitle%3E%0A%20%20%3Cpolygon%20points%3D%225.248%200%204.466%200.624%206.21%202.807%200%202.807%200%203.807%206.294%203.807%204.466%206.095%205.248%206.719%207.931%203.36%205.248%200%22%20fill%3D%22%23002870%22%2F%3E%0A%3C%2Fsvg%3E%0A");
  background-repeat: no-repeat;
  background-position: right 0 top 0.3em;
  border-bottom: thin solid #FFAF00;
}
/* line 56, ../eff_scss/03_components/_listing_item.scss */
.post-item a:hover .post-title, .post-item a:focus .post-title {
  opacity: 0.7;
}
@media only screen and (max-width: 767px) {
  /* line 24, ../eff_scss/03_components/_listing_item.scss */
  .post-item {
    margin-bottom: 2rem;
  }
}

/* line 69, ../eff_scss/03_components/_listing_item.scss */
.post-meta {
  -webkit-font-smoothing: antialiased;
  font-family: "Gotham A", "Gotham B", Helvetica, Arial, sans-serif;
  font-weight: 400;
  line-height: 1.2em;
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
/* line 72, ../eff_scss/03_components/_listing_item.scss */
.post-meta > * {
  display: inline-block;
  vertical-align: baseline;
}
/* line 77, ../eff_scss/03_components/_listing_item.scss */
.post-meta .tag {
  font-weight: 700;
}
/* line 81, ../eff_scss/03_components/_listing_item.scss */
.post-meta .separator {
  display: inline-block;
  overflow: hidden;
  text-align: left;
  text-indent: -9999px;
  height: 0.8em;
  width: 0;
  border-right: thin solid #FFAF00;
  margin-left: 0.5em;
  margin-right: 0.5em;
}
/* line 92, ../eff_scss/03_components/_listing_item.scss */
.post-meta .date {
  font-weight: 400;
}
/* line 96, ../eff_scss/03_components/_listing_item.scss */
.post-meta > a:first-child {
  font-weight: 700;
}

/* line 103, ../eff_scss/03_components/_listing_item.scss */
.primary .post-item .post-title h2 {
  color: #FFAF00;
  margin-top: 0.75em;
}
/* line 108, ../eff_scss/03_components/_listing_item.scss */
.primary .post-item .read_more {
  box-sizing: border-box;
  display: inline-block;
  height: auto;
  width: auto;
  background-color: #FFAF00;
  -webkit-font-smoothing: antialiased;
  font-family: "Gotham A", "Gotham B", Helvetica, Arial, sans-serif;
  font-weight: 500;
  line-height: 1.2em;
  font-size: 0.6875rem;
  text-align: center;
  padding-top: 1.14em;
  padding-bottom: 1.14em;
  padding-left: 2em;
  padding-right: 2em;
  border: thin solid #FFAF00;
  background-image: url("data:image/svg+xml,%3Csvg%20id%3D%22Layer_1%22%20data-name%3D%22Layer%201%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%227.931%22%20height%3D%226.719%22%20viewBox%3D%220%200%207.931%206.719%22%3E%0A%20%20%3Ctitle%3Efy%3C%2Ftitle%3E%0A%20%20%3Cpolygon%20points%3D%225.248%200%204.466%200.624%206.21%202.807%200%202.807%200%203.807%206.294%203.807%204.466%206.095%205.248%206.719%207.931%203.36%205.248%200%22%20fill%3D%22%23002870%22%2F%3E%0A%3C%2Fsvg%3E%0A");
  background-repeat: no-repeat;
  background-position: top 47% right 2.1em;
  padding-right: 5.1em;
}
/* line 9, ../eff_scss/01_helpers/typography/_mixins_buttons.scss */
.primary .post-item .read_more, .primary .post-item .read_more:link {
  color: #002870;
}
/* line 14, ../eff_scss/01_helpers/typography/_mixins_buttons.scss */
.primary .post-item .read_more:hover, .primary .post-item .read_more:focus {
  color: #002870;
  background-color: transparent;
}
/* line 31, ../eff_scss/01_helpers/typography/_mixins_buttons.scss */
.primary .post-item .read_more:hover, .primary .post-item .read_more:focus {
  border-color: #FFAF00;
}
/* line 115, ../eff_scss/03_components/_listing_item.scss */
.primary .post-item a:hover .read_more, .primary .post-item a:focus .read_more {
  background-color: transparent;
  border-color: #FFAF00;
}
/* line 47, ../eff_scss/01_helpers/typography/_mixins_buttons.scss */
.primary .post-item a:hover .read_more, .primary .post-item a:hover .read_more:link, .primary .post-item a:focus .read_more, .primary .post-item a:focus .read_more:link {
  color: #002870;
}

/* line 141, ../eff_scss/03_components/_listing_item.scss */
.widget_em_widget ul,
ul.events_calendar {
  list-style: none;
  padding: 0;
  margin: 0;
}
/* line 148, ../eff_scss/03_components/_listing_item.scss */
.widget_em_widget ul li,
ul.events_calendar li {
  width: 100%;
  padding-bottom: 1.5rem;
  border-bottom: thin solid #FFAF00;
  margin-bottom: 1.5rem;
}
/* line 158, ../eff_scss/03_components/_listing_item.scss */
.widget_em_widget ul li:last-child,
ul.events_calendar li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
  margin-bottom: 0;
}
/* line 168, ../eff_scss/03_components/_listing_item.scss */
.widget_em_widget ul li a:hover .post-title, .widget_em_widget ul li a:focus .post-title,
ul.events_calendar li a:hover .post-title,
ul.events_calendar li a:focus .post-title {
  opacity: 0.7;
}
/* line 175, ../eff_scss/03_components/_listing_item.scss */
.widget_em_widget ul li a + p,
ul.events_calendar li a + p {
  display: none;
}
/* line 180, ../eff_scss/03_components/_listing_item.scss */
.widget_em_widget ul li .post-title h2,
ul.events_calendar li .post-title h2 {
  -webkit-font-smoothing: antialiased;
  color: #002870;
  font-family: "Gotham A", "Gotham B", Helvetica, Arial, sans-serif;
  font-weight: 700;
  line-height: 1.5em;
  font-size: 1.1875rem;
  margin-top: 1em;
  margin-bottom: 0.5em;
  font-weight: 500;
  padding-bottom: 0;
  border-bottom: 0;
  margin-top: 0;
  margin-bottom: 0;
}
/* line 192, ../eff_scss/03_components/_listing_item.scss */
.widget_em_widget ul li .post-descr,
ul.events_calendar li .post-descr {
  margin-bottom: 0;
}
/* line 196, ../eff_scss/03_components/_listing_item.scss */
.widget_em_widget ul li .date,
ul.events_calendar li .date {
  -webkit-font-smoothing: antialiased;
  font-family: "Gotham A", "Gotham B", Helvetica, Arial, sans-serif;
  font-weight: 400;
  line-height: 1.5em;
  font-size: 1.5625rem;
}
/* line 199, ../eff_scss/03_components/_listing_item.scss */
.widget_em_widget ul li .content,
ul.events_calendar li .content {
  box-sizing: border-box;
  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;
  justify-content: space-between;
}
/* line 205, ../eff_scss/03_components/_listing_item.scss */
.widget_em_widget ul li .content .inner,
ul.events_calendar li .content .inner {
  max-width: 25.9375rem;
}
/* line 210, ../eff_scss/03_components/_listing_item.scss */
.widget_em_widget ul li .content::after,
ul.events_calendar li .content::after {
  flex-shrink: 0;
  content: " ";
  display: block;
  width: 1.5625rem;
  height: 1.25rem;
  background-image: url("data:image/svg+xml,%3Csvg%20id%3D%22Layer_1%22%20data-name%3D%22Layer%201%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224.339%22%20height%3D%2220%22%20viewBox%3D%220%200%2024.339%2020%22%3E%0A%20%20%3Ctitle%3Efy%3C%2Ftitle%3E%0A%20%20%3Cpolygon%20points%3D%2215.159%200%2014.447%200.654%2022.582%209.516%200%209.516%200%2010.484%2022.582%2010.484%2014.447%2019.346%2015.159%2020%2024.339%2010%2015.159%200%22%20fill%3D%22%23002870%22%2F%3E%0A%3C%2Fsvg%3E%0A");
  background-repeat: no-repeat;
  margin-left: 1.75rem;
}
/* line 224, ../eff_scss/03_components/_listing_item.scss */
.widget_em_widget ul li h4,
ul.events_calendar li h4 {
  -webkit-font-smoothing: antialiased;
  color: #002870;
  font-family: "Gotham A", "Gotham B", Helvetica, Arial, sans-serif;
  font-weight: 700;
  line-height: 1.5em;
  font-size: 1.1875rem;
  margin-top: 1em;
  margin-bottom: 0.5em;
  margin-top: 0;
}
@media only screen and (min-width: 480px) {
  /* line 232, ../eff_scss/03_components/_listing_item.scss */
  .widget_em_widget ul li a,
  ul.events_calendar li 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: flex-start;
    -moz-box-align: flex-start;
    -ms-flex-align: flex-start;
    -webkit-align-items: flex-start;
    align-items: flex-start;
  }
  /* line 236, ../eff_scss/03_components/_listing_item.scss */
  .widget_em_widget ul li .date,
  ul.events_calendar li .date {
    -webkit-font-smoothing: antialiased;
    font-family: "Gotham A", "Gotham B", Helvetica, Arial, sans-serif;
    font-weight: 400;
    line-height: 1.5em;
    font-size: 1.5625rem;
    width: 30.55554%;
    margin-right: 4.16669%;
  }
  /* line 244, ../eff_scss/03_components/_listing_item.scss */
  .widget_em_widget ul li .content,
  ul.events_calendar li .content {
    width: 65.27777%;
    padding-left: 1.75rem;
    padding-right: 1.75rem;
  }
}

/* line 4, ../eff_scss/03_components/_pagination.scss */
.tf_pagination .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 */
  background-color: #efefef;
}
/* line 9, ../eff_scss/03_components/_pagination.scss */
.tf_pagination .page_prev {
  margin-right: 1rem;
}
/* line 12, ../eff_scss/03_components/_pagination.scss */
.tf_pagination .page_next {
  margin-left: 1rem;
}
/* line 18, ../eff_scss/03_components/_pagination.scss */
.tf_pagination .page-numbers .page-numbers:hover, .tf_pagination .page-numbers .page-numbers:focus {
  text-decoration: underline;
}
/* line 23, ../eff_scss/03_components/_pagination.scss */
.tf_pagination .page-numbers .page-numbers.current {
  text-decoration: underline;
}
/* line 26, ../eff_scss/03_components/_pagination.scss */
.tf_pagination .page-numbers .page-numbers .page_current {
  text-decoration: underline;
}

/* line 4, ../eff_scss/03_components/_forms.scss */
form label {
  -webkit-font-smoothing: antialiased;
  color: #002870;
  font-family: "Gotham A", "Gotham B", Helvetica, Arial, sans-serif;
  font-weight: 700;
  line-height: 1.2em;
  font-size: 1rem;
  margin-top: 1em;
  margin-bottom: 1em;
  margin-top: 0;
}
/* line 12, ../eff_scss/03_components/_forms.scss */
form input[type="text"],
form input[type="password"],
form input[type="email"],
form .form-text,
form textarea {
  font-family: "Gotham A", "Gotham B", Helvetica, Arial, sans-serif;
  font-weight: 400;
  line-height: 1.5em;
  font-size: 0.875rem;
  color: #002870;
  box-sizing: border-box;
  padding: 0.5em;
  border: thin solid #FFAF00;
  -webkit-box-shadow: none;
  box-shadow: none;
}
/* line 27, ../eff_scss/03_components/_forms.scss */
form input::-webkit-input-placeholder {
  color: #002870;
}
/* line 31, ../eff_scss/03_components/_forms.scss */
form input::-moz-placeholder {
  color: #002870;
}
/* line 35, ../eff_scss/03_components/_forms.scss */
form input:-moz-placeholder {
  color: #002870;
}
/* line 39, ../eff_scss/03_components/_forms.scss */
form input:-ms-input-placeholder {
  color: #002870;
}

/* line 3, ../eff_scss/03_components/_sidebar.scss */
.sidebar h2.cat_title {
  -webkit-font-smoothing: antialiased;
  color: #002870;
  font-family: "Gotham A", "Gotham B", Helvetica, Arial, sans-serif;
  font-weight: 700;
  line-height: 1.2em;
  font-size: 1rem;
  margin-top: 1em;
  margin-bottom: 1em;
  padding: 0.5em;
  border: thin solid #FFAF00;
  margin-top: 0;
  margin-bottom: 0;
}
/* line 13, ../eff_scss/03_components/_sidebar.scss */
.sidebar .category_wrap,
.sidebar .widget-container {
  margin-bottom: 1rem;
}

/* line 21, ../eff_scss/03_components/_sidebar.scss */
.widget_categories img {
  display: none;
}
/* line 25, ../eff_scss/03_components/_sidebar.scss */
.widget_categories .widget-title {
  margin: 0;
}
/* line 29, ../eff_scss/03_components/_sidebar.scss */
.widget_categories ul {
  list-style: none;
  font-family: "Gotham A", "Gotham B", Helvetica, Arial, sans-serif;
  font-weight: 400;
  line-height: 1.5em;
  font-size: 0.875rem;
  padding-top: 1em;
  padding-bottom: 1em;
  padding-left: 1.75rem;
  padding-right: 1.75rem;
  margin: 0;
  border: thin solid #FFAF00;
}
/* line 44, ../eff_scss/03_components/_sidebar.scss */
.widget_categories ul li a {
  display: block;
  position: relative;
  padding-left: 1.25rem;
  -webkit-font-smoothing: antialiased;
}
/* line 53, ../eff_scss/03_components/_sidebar.scss */
.widget_categories ul li a::before {
  content: " ";
  display: inline-block;
  background-image: url("data:image/svg+xml,%3Csvg%20id%3D%22Layer_1%22%20data-name%3D%22Layer%201%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%227.931%22%20height%3D%226.719%22%20viewBox%3D%220%200%207.931%206.719%22%3E%0A%20%20%3Ctitle%3Efy%3C%2Ftitle%3E%0A%20%20%3Cpolygon%20points%3D%225.248%200%204.466%200.624%206.21%202.807%200%202.807%200%203.807%206.294%203.807%204.466%206.095%205.248%206.719%207.931%203.36%205.248%200%22%20fill%3D%22%23002870%22%2F%3E%0A%3C%2Fsvg%3E%0A");
  background-repeat: no-repeat;
  height: 0.4375rem;
  width: 0.5rem;
  background-size: contain;
  position: absolute;
  top: 0.375rem;
  left: 0;
}
/* line 66, ../eff_scss/03_components/_sidebar.scss */
.widget_categories ul li a:hover, .widget_categories ul li a:focus {
  text-decoration: underline;
}
/* line 73, ../eff_scss/03_components/_sidebar.scss */
.widget_categories ul li.current-cat a {
  font-weight: 700;
}

/* line 2, ../eff_scss/03_components/_social_share.scss */
.top_share {
  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;
}
/* line 6, ../eff_scss/03_components/_social_share.scss */
.top_share .social_title {
  -webkit-font-smoothing: antialiased;
  color: #002870;
  font-family: "Gotham A", "Gotham B", Helvetica, Arial, sans-serif;
  font-weight: 700;
  line-height: 1.2em;
  font-size: 1rem;
  margin-top: 1em;
  margin-bottom: 1em;
  margin-top: 0;
  margin-bottom: 0;
  margin-right: 2em;
}
/* line 15, ../eff_scss/03_components/_social_share.scss */
.top_share .top_share {
  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;
}
/* line 21, ../eff_scss/03_components/_social_share.scss */
.top_share .social_google,
.top_share .social_fb,
.top_share .social_twitter,
.top_share .social_pinterest,
.top_share .btn_fb,
.top_share .btn_twitter,
.top_share .btn_skype {
  flex-shrink: 0;
  width: 2.1875rem;
  height: 2.1875rem;
  border: thin solid #FFAF00;
  border-radius: 50%;
  margin-right: 1rem;
}
/* line 38, ../eff_scss/03_components/_social_share.scss */
.top_share .social_google:last-child,
.top_share .social_fb:last-child,
.top_share .social_twitter:last-child,
.top_share .social_pinterest:last-child,
.top_share .btn_fb:last-child,
.top_share .btn_twitter:last-child,
.top_share .btn_skype:last-child {
  margin-right: 0;
}
/* line 41, ../eff_scss/03_components/_social_share.scss */
.top_share .social_google:hover, .top_share .social_google:focus,
.top_share .social_fb:hover,
.top_share .social_fb:focus,
.top_share .social_twitter:hover,
.top_share .social_twitter:focus,
.top_share .social_pinterest:hover,
.top_share .social_pinterest:focus,
.top_share .btn_fb:hover,
.top_share .btn_fb:focus,
.top_share .btn_twitter:hover,
.top_share .btn_twitter:focus,
.top_share .btn_skype:hover,
.top_share .btn_skype:focus {
  background-color: #FFAF00;
}
/* line 47, ../eff_scss/03_components/_social_share.scss */
.top_share .social_fb {
  background-image: url("data:image/svg+xml,%3Csvg%20id%3D%22Layer_1%22%20data-name%3D%22Layer%201%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%227.794%22%20height%3D%2215.885%22%20viewBox%3D%220%200%207.794%2015.885%22%3E%0A%20%20%3Ctitle%3Efy%3C%2Ftitle%3E%0A%20%20%3Cg%20id%3D%22Artwork_9%22%20data-name%3D%22Artwork%209%22%3E%0A%20%20%20%20%3Cg%20id%3D%22Artwork_9-2%22%20data-name%3D%22Artwork%209-2%22%3E%0A%20%20%20%20%20%20%3Cpath%20id%3D%22Path_500%22%20data-name%3D%22Path%20500%22%20d%3D%22M2.24%2C5.464V3.971C2.24%2C1.762%2C3.733%2C0%2C5.554%2C0h2.24V2.986H5.554c-.269%2C0-.537.418-.537.926V5.464H7.794V8.51H5.017v7.375H2.24V8.51H0V5.464Z%22%20fill%3D%22%23002870%22%2F%3E%0A%20%20%20%20%3C%2Fg%3E%0A%20%20%3C%2Fg%3E%0A%3C%2Fsvg%3E%0A");
  background-repeat: no-repeat;
  background-position: 50% 50%;
}
/* line 55, ../eff_scss/03_components/_social_share.scss */
.top_share .social_twitter {
  background-image: url("data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20%3F%3E%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%221200%22%20height%3D%221227%22%20viewBox%3D%220%200%201200%201227%22%20fill%3D%22none%22%3E%3Cg%20clip-path%3D%22url(%23clip0_1_2)%22%3E%3Cpath%20d%3D%22M714.163%20519.284L1160.89%200H1055.03L667.137%20450.887L357.328%200H0L468.492%20681.821L0%201226.37H105.866L515.491%20750.218L842.672%201226.37H1200L714.137%20519.284H714.163ZM569.165%20687.828L521.697%20619.934L144.011%2079.6944H306.615L611.412%20515.685L658.88%20583.579L1055.08%201150.3H892.476L569.165%20687.854V687.828Z%22%20fill%3D%22%23002870%22%2F%3E%3C%2Fg%3E%3Cdefs%3E%3CclipPath%20id%3D%22clip0_1_2%22%3E%3Crect%20width%3D%221200%22%20height%3D%221227%22%20fill%3D%22white%22%2F%3E%3C%2FclipPath%3E%3C%2Fdefs%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: 45%;
}
/* line 55, ../eff_scss/03_components/_social_share.scss */
.top_share .social_google {
  background-image: url("data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22utf-8%22%3F%3E%3C!--%20License%3A%20CC%20Attribution.%20Made%20by%20Leonid%20Tsvetkov%3A%20https%3A%2F%2Fwww.figma.com%2F%40leonid%20--%3E%3Csvg%20width%3D%22800px%22%20height%3D%22800px%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M3%2011C3%207.22876%203%205.34315%204.17157%204.17157C5.34315%203%207.22876%203%2011%203H13C16.7712%203%2018.6569%203%2019.8284%204.17157C21%205.34315%2021%207.22876%2021%2011V13C21%2016.7712%2021%2018.6569%2019.8284%2019.8284C18.6569%2021%2016.7712%2021%2013%2021H11C7.22876%2021%205.34315%2021%204.17157%2019.8284C3%2018.6569%203%2016.7712%203%2013V11Z%22%20stroke%3D%22%23002870%22%20stroke-width%3D%222%22%2F%3E%3Ccircle%20cx%3D%2216.5%22%20cy%3D%227.5%22%20r%3D%221.5%22%20fill%3D%22%23002870%22%2F%3E%3Ccircle%20cx%3D%2212%22%20cy%3D%2212%22%20r%3D%223%22%20stroke%3D%22%23002870%22%20stroke-width%3D%222%22%2F%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: 66%;
}
/* line 55, ../eff_scss/03_components/_social_share.scss */
.top_share .social_pinterest {
  background-image: url("data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22utf-8%22%3F%3E%3C!--%20License%3A%20Logo.%20Made%20by%20HashiCorp%3A%20https%3A%2F%2Fgithub.com%2Fhashicorp%2Fdesign-system%20--%3E%3Csvg%20width%3D%22800px%22%20height%3D%22800px%22%20viewBox%3D%220%200%2016%2016%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20fill%3D%22none%22%3E%3Cpath%20fill%3D%22%23002870%22%20d%3D%22M12.225%2012.225h-1.778V9.44c0-.664-.012-1.519-.925-1.519-.926%200-1.068.724-1.068%201.47v2.834H6.676V6.498h1.707v.783h.024c.348-.594.996-.95%201.684-.925%201.802%200%202.135%201.185%202.135%202.728l-.001%203.14zM4.67%205.715a1.037%201.037%200%2001-1.032-1.031c0-.566.466-1.032%201.032-1.032.566%200%201.031.466%201.032%201.032%200%20.566-.466%201.032-1.032%201.032zm.889%206.51h-1.78V6.498h1.78v5.727zM13.11%202H2.885A.88.88%200%20002%202.866v10.268a.88.88%200%2000.885.866h10.226a.882.882%200%2000.889-.866V2.865a.88.88%200%2000-.889-.864z%22%2F%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: 66%;
}

/* line 5, ../eff_scss/03_components/_mailchimp_signup.scss */
#mc_embed_signup .mc-field-group,
#mc_embed_signup_box .mc-field-group {
  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;
}
/* line 10, ../eff_scss/03_components/_mailchimp_signup.scss */
#mc_embed_signup form,
#mc_embed_signup_box form {
  margin: 0;
}
/* line 14, ../eff_scss/03_components/_mailchimp_signup.scss */
#mc_embed_signup input[type="text"],
#mc_embed_signup input[type="email"],
#mc_embed_signup_box input[type="text"],
#mc_embed_signup_box input[type="email"] {
  padding-top: 0.3em;
  padding-bottom: 0.3em;
  padding-left: 2em;
  padding-right: 2em;
  width: 11.6875rem;
  height: 2.5rem;
  -webkit-appearance: none;
}
/* line 27, ../eff_scss/03_components/_mailchimp_signup.scss */
#mc_embed_signup input[type="submit"],
#mc_embed_signup_box input[type="submit"] {
  display: block;
  overflow: hidden;
  text-align: left;
  text-indent: -9999px;
  width: 2.5rem;
  height: 2.5rem;
  background-color: #FFAF00;
  background-image: url("data:image/svg+xml,%3Csvg%20id%3D%22Layer_1%22%20data-name%3D%22Layer%201%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%227.931%22%20height%3D%226.719%22%20viewBox%3D%220%200%207.931%206.719%22%3E%0A%20%20%3Ctitle%3Efy%3C%2Ftitle%3E%0A%20%20%3Cpolygon%20points%3D%225.248%200%204.466%200.624%206.21%202.807%200%202.807%200%203.807%206.294%203.807%204.466%206.095%205.248%206.719%207.931%203.36%205.248%200%22%20fill%3D%22%23002870%22%2F%3E%0A%3C%2Fsvg%3E%0A");
  background-repeat: no-repeat;
  background-position: 50% 50%;
  border: 0;
  margin: 0;
}
/* line 39, ../eff_scss/03_components/_mailchimp_signup.scss */
#mc_embed_signup input[type="submit"]:hover, #mc_embed_signup input[type="submit"]:focus,
#mc_embed_signup_box input[type="submit"]:hover,
#mc_embed_signup_box input[type="submit"]:focus {
  opacity: 0.7;
}

/* line 1, ../eff_scss/03_components/_expand_collapse_boxes.scss */
.toggle {
  display: block !important;
}

/* line 2, ../eff_scss/04_pages/_content_page.scss */
div.printfriendly {
  text-align: right;
  margin-bottom: 1rem !important;
}
/* line 7, ../eff_scss/04_pages/_content_page.scss */
div.printfriendly a {
  display: inline-block;
  -webkit-font-smoothing: antialiased;
  font-family: "Gotham A", "Gotham B", Helvetica, Arial, sans-serif;
  font-weight: 500;
  line-height: 1.2em;
  font-size: 0.6875rem;
  text-transform: none;
  font-size: 11px !important;
  font-weight: 400 !important;
  color: #002870 !important;
}
/* line 15, ../eff_scss/04_pages/_content_page.scss */
div.printfriendly a::before {
  content: " ";
  display: inline-block;
  background-image: url("data:image/svg+xml,%3Csvg%20id%3D%22Layer_1%22%20data-name%3D%22Layer%201%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%227.931%22%20height%3D%226.719%22%20viewBox%3D%220%200%207.931%206.719%22%3E%0A%20%20%3Ctitle%3Efy%3C%2Ftitle%3E%0A%20%20%3Cpolygon%20points%3D%225.248%200%204.466%200.624%206.21%202.807%200%202.807%200%203.807%206.294%203.807%204.466%206.095%205.248%206.719%207.931%203.36%205.248%200%22%20fill%3D%22%23002870%22%2F%3E%0A%3C%2Fsvg%3E%0A");
  background-repeat: no-repeat;
  height: 0.4375rem;
  width: 0.5rem;
  background-size: contain;
  padding-right: 0.375rem;
  border-right: thin solid #002870;
  margin-right: 0.5rem;
}
/* line 32, ../eff_scss/04_pages/_content_page.scss */
div.printfriendly a:hover, div.printfriendly a:focus {
  opacity: 0.7;
}

/* line 40, ../eff_scss/04_pages/_content_page.scss */
.toggle.box,
h3.toggle.box {
  color: #002870;
  background-color: #FFAF00;
}

/* line 45, ../eff_scss/04_pages/_content_page.scss */
.toggle_content.boxed {
  border-color: #FFAF00;
  border-style: solid;
}

/* line 51, ../eff_scss/04_pages/_content_page.scss */
.styled_table table,
.sb {
  color: #002870;
  border: thin solid #FFAF00;
}

/* line 59, ../eff_scss/04_pages/_content_page.scss */
.styled_table table tr th,
.sb .box_title {
  -webkit-font-smoothing: antialiased;
  color: #002870;
  font-family: "Gotham A", "Gotham B", Helvetica, Arial, sans-serif;
  font-weight: 700;
  line-height: 1.5em;
  font-size: 1.1875rem;
  margin-top: 1em;
  margin-bottom: 0.5em;
  background-color: white;
  border-bottom: thin solid #FFAF00;
  margin-top: 0;
}

/* line 69, ../eff_scss/04_pages/_content_page.scss */
.styled_table table tbody td p em,
.sb .box_content p em {
  font-style: normal;
}
/* line 73, ../eff_scss/04_pages/_content_page.scss */
.styled_table table tbody td .button_styled,
.sb .box_content .button_styled {
  box-sizing: border-box;
  display: inline-block;
  height: auto;
  width: auto;
  background-color: #FFAF00;
  -webkit-font-smoothing: antialiased;
  font-family: "Gotham A", "Gotham B", Helvetica, Arial, sans-serif;
  font-weight: 500;
  line-height: 1.2em;
  font-size: 0.6875rem;
  text-align: center;
  padding-top: 1.14em;
  padding-bottom: 1.14em;
  padding-left: 2em;
  padding-right: 2em;
  border: thin solid #FFAF00;
  color: #002870 !important;
  background-color: #FFAF00 !important;
  border: thin solid #FFAF00 !important;
}
/* line 9, ../eff_scss/01_helpers/typography/_mixins_buttons.scss */
.styled_table table tbody td .button_styled, .styled_table table tbody td .button_styled:link,
.sb .box_content .button_styled,
.sb .box_content .button_styled:link {
  color: #002870;
}
/* line 14, ../eff_scss/01_helpers/typography/_mixins_buttons.scss */
.styled_table table tbody td .button_styled:hover, .styled_table table tbody td .button_styled:focus,
.sb .box_content .button_styled:hover,
.sb .box_content .button_styled:focus {
  color: #002870;
  background-color: transparent;
}
/* line 31, ../eff_scss/01_helpers/typography/_mixins_buttons.scss */
.styled_table table tbody td .button_styled:hover, .styled_table table tbody td .button_styled:focus,
.sb .box_content .button_styled:hover,
.sb .box_content .button_styled:focus {
  border-color: #FFAF00;
}
/* line 79, ../eff_scss/04_pages/_content_page.scss */
.styled_table table tbody td .button_styled:hover, .styled_table table tbody td .button_styled:focus,
.sb .box_content .button_styled:hover,
.sb .box_content .button_styled:focus {
  color: #002870 !important;
  background-color: transparent !important;
  border: thin solid #FFAF00 !important;
}

/*  Front page
*********************************** */
/* line 7, ../eff_scss/04_pages/_front_page.scss */
.container.intro,
.container.intro p {
  -webkit-font-smoothing: antialiased;
  color: #002870;
  font-family: "Gotham A", "Gotham B", Helvetica, Arial, sans-serif;
  font-weight: 500;
  line-height: 1.375em;
  font-size: 1.625rem;
  margin-top: 1em;
  margin-bottom: 1em;
}
@media only screen and (min-width: 768px) {
  /* line 7, ../eff_scss/04_pages/_front_page.scss */
  .container.intro,
  .container.intro p {
    font-size: 2.25rem;
  }
}

/* line 12, ../eff_scss/04_pages/_front_page.scss */
.container.intro {
  text-align: center;
  margin-top: 0;
  margin-bottom: 1em;
}
/* line 19, ../eff_scss/04_pages/_front_page.scss */
.container.intro p {
  margin: 0;
}
/* line 22, ../eff_scss/04_pages/_front_page.scss */
.container.intro p a {
  border-color: #FFAF00;
}
/* line 26, ../eff_scss/04_pages/_front_page.scss */
.container.intro .textwidget {
  max-width: 43.75rem;
  margin: 0 auto;
}

/* line 32, ../eff_scss/04_pages/_front_page.scss */
.home_image_banner {
  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;
  margin-bottom: 2rem;
}
/* line 39, ../eff_scss/04_pages/_front_page.scss */
.home_image_banner .imageBox, .home_image_banner .imageBox2024 {
  box-sizing: border-box;
  width: 25.5208%;
  height: 0;
  padding-bottom: 42%;
  border: 3px solid #FFAF00;
  background-size: cover;
  background-position: 50% 63%;
  margin-bottom: 0;
}
.home_image_banner .imageBox2024 {
  width: 100%;
}
.front .homepage .main_content_area .topbar .top_share a {
  background-color: #fff;
}
/* line 50, ../eff_scss/04_pages/_front_page.scss */
.home_image_banner .imageBox:nth-child(1) {
  background-image: url("../images/eff/homeBanner_img1_60q.jpg");
  background-repeat: no-repeat;
}
/* line 53, ../eff_scss/04_pages/_front_page.scss */
.home_image_banner .imageBox:nth-child(2) {
  background-image: url("../images/eff/homeBanner_img2_60q.jpg");
  background-repeat: no-repeat;
  width: 40.2083%;
}
/* line 58, ../eff_scss/04_pages/_front_page.scss */
.home_image_banner .imageBox:nth-child(3) {
  background-image: url("../images/eff/homeBanner_img3_60q.jpg");
  background-repeat: no-repeat;
  margin-bottom: 0;
}
.home_image_banner .imageBox2024 {
  background-image: url("https://www.foundationyears.org.uk/files/2024/09/3.jpg");
  background-repeat: no-repeat;
}
@media only screen and (min-width: 768px) {
  /* line 32, ../eff_scss/04_pages/_front_page.scss */
  .home_image_banner {
    margin-bottom: 2.7rem;
  }
  /* line 77, ../eff_scss/04_pages/_front_page.scss */
  .home_image_banner .imageBox {
    height: 297px;
    padding-bottom: 0;
  }
}

/* line 87, ../eff_scss/04_pages/_front_page.scss */
.main_content_area #mc_embed_signup,
.main_content_area #mc_embed_signup_box,
.main_content_area .topbar {
  width: 100%;
  margin-bottom: 1.7rem;
}
/* line 105, ../eff_scss/04_pages/_front_page.scss */
.main_content_area #mc_embed_signup .mc-field-group,
.main_content_area #mc_embed_signup_box .mc-field-group {
  justify-content: center;
}
/* line 110, ../eff_scss/04_pages/_front_page.scss */
.main_content_area #mc_embed_signup label,
.main_content_area #mc_embed_signup_box label {
  width: 100%;
  text-align: center;
}
/* line 118, ../eff_scss/04_pages/_front_page.scss */
.main_content_area .top_share {
  justify-content: center;
}
@media only screen and (min-width: 768px) {
  .home_image_banner .imageBox2024 {
    padding-bottom: 46%;
  }
  .front .homepage .main_content_area #mc_embed_signup form {
    padding-left: 25px;
  }
  .front .homepage .main_content_area .top_share {
    justify-content: start;
	margin-left: -10px;
  }
  .front .homepage .main_content_area {
    margin-top: -134px;
  }
  .home_image_banner .imageBox2024 .items-bg {
    background-color: rgba(255, 255, 255, 0.8);
    margin-left: 10px;
    margin-right: 10px;
    margin-top: 33%;
    width: 731px;
    height: 92px;
  }
  /* line 124, ../eff_scss/04_pages/_front_page.scss */
  .main_content_area #mc_embed_signup,
  .main_content_area #mc_embed_signup_box,
  .main_content_area .topbar {
    margin-bottom: 2.85rem;
  }
  /* line 130, ../eff_scss/04_pages/_front_page.scss */
  .main_content_area #mc_embed_signup,
  .main_content_area #mc_embed_signup_box {
    width: 47.91665%;
  }
  /* line 135, ../eff_scss/04_pages/_front_page.scss */
  .main_content_area .topbar {
    width: 47.91665%;
  }
  /* line 139, ../eff_scss/04_pages/_front_page.scss */
  .main_content_area #mc_embed_signup,
  .main_content_area #mc_embed_signup_box {
    margin-right: 4.16669%;
  }
  /* line 145, ../eff_scss/04_pages/_front_page.scss */
  .main_content_area #mc_embed_signup .mc-field-group,
  .main_content_area #mc_embed_signup_box .mc-field-group {
    flex-wrap: nowrap;
    -webkit-box-align: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    justify-content: flex-start;
  }
  /* line 151, ../eff_scss/04_pages/_front_page.scss */
  .main_content_area #mc_embed_signup label,
  .main_content_area #mc_embed_signup_box label {
    width: auto;
    margin-right: 2em;
    margin-bottom: 0;
  }
  /* line 161, ../eff_scss/04_pages/_front_page.scss */
  .main_content_area .top_share {
    justify-content: flex-start;
  }
  .homepage .main_content_area .top_share {
    justify-content: center;
  }
}
@media only screen and (min-width: 990px) {
  .home_image_banner .imageBox2024 {
    padding-bottom: 43%;
  }
  .front .homepage .main_content_area #mc_embed_signup form {
    padding-left: 45px;
  }
  .front .homepage .main_content_area .top_share {
    justify-content: center;
	margin-left: 0;
  }
  .front .homepage .main_content_area {
    margin-top: -135px;
  }
  .home_image_banner .imageBox2024 .items-bg {
    margin-top: 32%;
    width: 934px;
    height: 100px;
  }
  /* line 167, ../eff_scss/04_pages/_front_page.scss */
  .main_content_area #mc_embed_signup,
  .main_content_area #mc_embed_signup_box,
  .main_content_area .topbar {
    width: 47.91665%;
  }
}

/* line 179, ../eff_scss/04_pages/_front_page.scss */
.middle.full_width .full_width_wrap > h2,
#em_widget-3 h3 {
  display: block;
  width: 100%;
  -webkit-font-smoothing: antialiased;
  color: #002870;
  font-family: "Gotham A", "Gotham B", Helvetica, Arial, sans-serif;
  font-weight: 700;
  line-height: 1.2em;
  font-size: 1.625rem;
  margin-top: 1em;
  margin-bottom: 1em;
  padding-bottom: 0.45em;
  border-bottom: thin solid #FFAF00;
  margin-top: 0;
}
@media only screen and (min-width: 768px) {
  /* line 179, ../eff_scss/04_pages/_front_page.scss */
  .middle.full_width .full_width_wrap > h2,
  #em_widget-3 h3 {
    font-size: 2.125rem;
  }
}

/* line 194, ../eff_scss/04_pages/_front_page.scss */
.middle.full_width {
  font-size: 1.625rem;
  margin-bottom: 1.6em;
}
@media only screen and (min-width: 768px) {
  /* line 194, ../eff_scss/04_pages/_front_page.scss */
  .middle.full_width {
    font-size: 2.125rem;
  }
}
/* line 197, ../eff_scss/04_pages/_front_page.scss */
.middle.full_width .full_width_inner {
  font-size: 0.875rem;
}
/* line 201, ../eff_scss/04_pages/_front_page.scss */
.middle.full_width .full_width_wrap {
  position: relative;
}
/* line 209, ../eff_scss/04_pages/_front_page.scss */
.middle.full_width .full_width_inner > .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;
}
/* line 214, ../eff_scss/04_pages/_front_page.scss */
.middle.full_width .view_all {
  box-sizing: border-box;
  display: inline-block;
  height: auto;
  width: auto;
  background-color: transparent;
  -webkit-font-smoothing: antialiased;
  font-family: "Gotham A", "Gotham B", Helvetica, Arial, sans-serif;
  font-weight: 500;
  line-height: 1.2em;
  font-size: 0.6875rem;
  text-align: center;
  padding-top: 1.14em;
  padding-bottom: 1.14em;
  padding-left: 2em;
  padding-right: 2em;
  border: thin solid #FFAF00;
  background-image: url("data:image/svg+xml,%3Csvg%20id%3D%22Layer_1%22%20data-name%3D%22Layer%201%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%227.931%22%20height%3D%226.719%22%20viewBox%3D%220%200%207.931%206.719%22%3E%0A%20%20%3Ctitle%3Efy%3C%2Ftitle%3E%0A%20%20%3Cpolygon%20points%3D%225.248%200%204.466%200.624%206.21%202.807%200%202.807%200%203.807%206.294%203.807%204.466%206.095%205.248%206.719%207.931%203.36%205.248%200%22%20fill%3D%22%23002870%22%2F%3E%0A%3C%2Fsvg%3E%0A");
  background-repeat: no-repeat;
  background-position: top 47% right 2.1em;
  padding-right: 5.1em;
}
/* line 9, ../eff_scss/01_helpers/typography/_mixins_buttons.scss */
.middle.full_width .view_all, .middle.full_width .view_all:link {
  color: #002870;
}
/* line 14, ../eff_scss/01_helpers/typography/_mixins_buttons.scss */
.middle.full_width .view_all:hover, .middle.full_width .view_all:focus {
  color: #002870;
  background-color: #FFAF00;
}
/* line 31, ../eff_scss/01_helpers/typography/_mixins_buttons.scss */
.middle.full_width .view_all:hover, .middle.full_width .view_all:focus {
  border-color: #FFAF00;
}
@media only screen and (min-width: 768px) {
  /* line 214, ../eff_scss/04_pages/_front_page.scss */
  .middle.full_width .view_all {
    position: absolute;
    top: 16px;
    right: 0;
  }
}
@media only screen and (min-width: 990px) {
  /* line 214, ../eff_scss/04_pages/_front_page.scss */
  .middle.full_width .view_all {
    top: 17px;
  }
}
/* line 236, ../eff_scss/04_pages/_front_page.scss */
.middle.full_width .post-detail .post-item a {
  display: block;
}
/* line 243, ../eff_scss/04_pages/_front_page.scss */
.middle.full_width .post-detail .primary {
  margin-bottom: 2.75rem;
}
/* line 249, ../eff_scss/04_pages/_front_page.scss */
.middle.full_width .post-detail .primary .post-item .post-title h2 {
  padding: 0;
  border: 0;
}
/* line 254, ../eff_scss/04_pages/_front_page.scss */
.middle.full_width .post-detail .primary .post-item .post-title h2::after {
  content: " ";
  display: block;
  width: 100%;
  position: relative;
  border-bottom: 0.1875rem solid #FFAF00;
  margin-top: 0.5em;
}
@media only screen and (min-width: 768px) {
  /* line 267, ../eff_scss/04_pages/_front_page.scss */
  .middle.full_width .post-detail .primary .post-item .post-title h2::after {
    margin-top: 1.1em;
  }
}
/* line 277, ../eff_scss/04_pages/_front_page.scss */
.middle.full_width .post-detail .primary .post-item .post-descr {
  margin-bottom: 2em;
}
@media only screen and (min-width: 768px) {
  /* line 283, ../eff_scss/04_pages/_front_page.scss */
  .middle.full_width .post-detail .primary .post-item 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 */
    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;
  }
  /* line 292, ../eff_scss/04_pages/_front_page.scss */
  .middle.full_width .post-detail .primary .post-item .post-title h2::after {
    width: 127.27293%;
    left: -27.27293%;
  }
  /* line 299, ../eff_scss/04_pages/_front_page.scss */
  .middle.full_width .post-detail .primary .post-item img,
  .middle.full_width .post-detail .primary .post-item .content {
    position: relative;
  }
  /* line 303, ../eff_scss/04_pages/_front_page.scss */
  .middle.full_width .post-detail .primary .post-item img {
    z-index: 1;
    width: 65.27777%;
  }
  /* line 307, ../eff_scss/04_pages/_front_page.scss */
  .middle.full_width .post-detail .primary .post-item .content {
    z-index: 2;
    width: 30.55554%;
  }
  /* line 312, ../eff_scss/04_pages/_front_page.scss */
  .middle.full_width .post-detail .primary .post-item .read_more {
    position: relative;
    left: -27.27293%;
  }
}
@media only screen and (min-width: 768px) {
  /* line 322, ../eff_scss/04_pages/_front_page.scss */
  .middle.full_width .post-detail .secondary {
    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;
  }
  /* line 328, ../eff_scss/04_pages/_front_page.scss */
  .middle.full_width .post-detail .secondary .post-item {
    width: 47.91665%;
    padding-left: 1.75rem;
  }
}
/* line 344, ../eff_scss/04_pages/_front_page.scss */
.middle.full_width.events {
  margin-bottom: 2.1rem;
}
/* line 346, ../eff_scss/04_pages/_front_page.scss */
.middle.full_width.events .box {
  width: 100%;
}

/* line 362, ../eff_scss/04_pages/_front_page.scss */
body.front .middle.full_width .posts_layout .post-item .post-meta {
  font-weight: 400;
}
/* line 367, ../eff_scss/04_pages/_front_page.scss */
body.front .middle.full_width .posts_layout .post-item .post-title h2 {
  -webkit-font-smoothing: antialiased;
  color: #002870;
  font-family: "Gotham A", "Gotham B", Helvetica, Arial, sans-serif;
  font-weight: 700;
  line-height: 1.5em;
  font-size: 1.1875rem;
  margin-top: 1em;
  margin-bottom: 0.5em;
  padding: 0;
  border: 0;
  margin-top: 0;
}
@media only screen and (min-width: 768px) {
  /* line 359, ../eff_scss/04_pages/_front_page.scss */
  body.front .middle.full_width .posts_layout {
    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;
  }
  /* line 381, ../eff_scss/04_pages/_front_page.scss */
  body.front .middle.full_width .posts_layout .post-item {
    width: 30.55554%;
    margin-right: 4.16669%;
  }
  /* line 388, ../eff_scss/04_pages/_front_page.scss */
  body.front .middle.full_width .posts_layout .post-item:nth-child(3) {
    margin-right: 0;
  }
  /* line 392, ../eff_scss/04_pages/_front_page.scss */
  body.front .middle.full_width .posts_layout .post-item a {
    padding-left: 1.75rem;
    padding-right: 1rem;
  }
}
@media only screen and (max-width: 767px) {
  /* line 406, ../eff_scss/04_pages/_front_page.scss */
  body.front .middle.full_width.main .full_width_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;
  }
  /* line 410, ../eff_scss/04_pages/_front_page.scss */
  body.front .middle.full_width.main .full_width_wrap > * {
    width: 100%;
    -webkit-box-ordinal-group: 2;
    -moz-box-ordinal-group: 2;
    -ms-flex-order: 2;
    -webkit-order: 2;
  }
  /* line 415, ../eff_scss/04_pages/_front_page.scss */
  body.front .middle.full_width.main .full_width_wrap h2 {
    -webkit-box-ordinal-group: 1;
    -moz-box-ordinal-group: 1;
    -ms-flex-order: 1;
    -webkit-order: 1;
  }
  /* line 418, ../eff_scss/04_pages/_front_page.scss */
  body.front .middle.full_width.main .full_width_wrap .view_all {
    width: auto;
    -webkit-box-ordinal-group: 3;
    -moz-box-ordinal-group: 3;
    -ms-flex-order: 3;
    -webkit-order: 3;
  }
}
@media only screen and (max-width: 767px) {
  /* line 428, ../eff_scss/04_pages/_front_page.scss */
  body.front .middle.full_width.events .full_width_wrap > .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;
  }
  /* line 432, ../eff_scss/04_pages/_front_page.scss */
  body.front .middle.full_width.events .full_width_wrap > .content > * {
    -webkit-box-ordinal-group: 3;
    -moz-box-ordinal-group: 3;
    -ms-flex-order: 3;
    -webkit-order: 3;
  }
  /* line 436, ../eff_scss/04_pages/_front_page.scss */
  body.front .middle.full_width.events .full_width_wrap > .content .widget_em_widget {
    -webkit-box-ordinal-group: 1;
    -moz-box-ordinal-group: 1;
    -ms-flex-order: 1;
    -webkit-order: 1;
  }
  /* line 439, ../eff_scss/04_pages/_front_page.scss */
  body.front .middle.full_width.events .full_width_wrap > .content .view_all {
    -webkit-box-ordinal-group: 2;
    -moz-box-ordinal-group: 2;
    -ms-flex-order: 2;
    -webkit-order: 2;
    margin-top: 1.5rem;
  }
}

/* line 5, ../eff_scss/04_pages/_listing_page.scss */
body.not_front .eff_main_content .post-item {
  margin-bottom: 4em;
}
/* line 8, ../eff_scss/04_pages/_listing_page.scss */
body.not_front .eff_main_content .post-item .post-title h2 {
  -webkit-font-smoothing: antialiased;
  color: #002870;
  font-family: "Gotham A", "Gotham B", Helvetica, Arial, sans-serif;
  font-weight: 700;
  line-height: 1.175em;
  font-size: 1.375rem;
  margin-top: 1em;
  margin-bottom: 1em;
  margin-top: 0;
  margin-bottom: 0.75em;
}
@media only screen and (min-width: 768px) {
  /* line 8, ../eff_scss/04_pages/_listing_page.scss */
  body.not_front .eff_main_content .post-item .post-title h2 {
    font-size: 1.625rem;
  }
}
