/*!
******************************************************************
Theme Name: Brian Cain WordPress Theme
Theme URI: https://briancain.com
Description: Theme for Brian Cain Website
Author: Andrew Pautler
Author URI: https://www.pautlerdesign.com
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
******************************************************************/
/*scss/utils/_mixins.scss*/
/*------------------------------------*\
    $MIXINS
\*------------------------------------*/
/*Media Queries*/
/*REM Font Sizing*/
/*Black & White*/
/*Transitions*/
/*Usage: @include transition(color .3s ease);*/
/*Opacity*/
/*Usage: @include opacity(0.8);*/
/*Gradient*/
/*Usage: @include linear-gradient(#000, #BADA55);*/
/*Border Radius*/
/*Usage: @include rounded(3px);*/
/* Responsive Font Sizes */
/*Usage: @include font-sizes( 30px, 36px, 40px );*/
/*Clearfix*/
/*Usage: @extend %clearfix;*/
/*scss/utils/_variables.scss*/
/****** COLORS ******/
/*Color variables declared in /scss/base/_colors.scss*/
/****** TYPOGRAPHY ******/
/*Font variables declared in /scss/base/_fonts.scss*/
/****** LAYOUT ******/
/****** SPACING ******/
/*Spacing layout variables declared in /scss/base/_layout.scss*/
/****** BREAKPOINTS ******/
/*scss/utils/_normalize.scss*/
/* normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */
/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS and IE text size adjust after device orientation change,
 *    without disabling user zoom.
 */
html {
  font-family: sans-serif;
  /* 1 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */ }

/**
 * Remove default margin.
 */
body {
  margin: 0; }

/* HTML5 display definitions
   ========================================================================== */
/**
 * Correct `block` display not defined for any HTML5 element in IE 8/9.
 * Correct `block` display not defined for `details` or `summary` in IE 10/11
 * and Firefox.
 * Correct `block` display not defined for `main` in IE 11.
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block; }

/**
 * 1. Correct `inline-block` display not defined in IE 8/9.
 * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
 */
audio,
canvas,
progress,
video {
  display: inline-block;
  /* 1 */
  vertical-align: baseline;
  /* 2 */ }

/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */
audio:not([controls]) {
  display: none;
  height: 0; }

/**
 * Address `[hidden]` styling not present in IE 8/9/10.
 * Hide the `template` element in IE 8/9/10/11, Safari, and Firefox < 22.
 */
[hidden],
template {
  display: none; }

/* Links
   ========================================================================== */
/**
 * Remove the gray background color from active links in IE 10.
 */
a {
  background-color: transparent; }

/**
 * Improve readability of focused elements when they are also in an
 * active/hover state.
 */
a:active,
a:hover {
  outline: 0; }

/* Text-level semantics
   ========================================================================== */
/**
 * Address styling not present in IE 8/9/10/11, Safari, and Chrome.
 */
abbr[title] {
  border-bottom: 1px dotted; }

/**
 * Address style set to `bolder` in Firefox 4+, Safari, and Chrome.
 */
b,
strong {
  font-weight: bold; }

/**
 * Address styling not present in Safari and Chrome.
 */
dfn {
  font-style: italic; }

/**
 * Address variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari, and Chrome.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0; }

/**
 * Address styling not present in IE 8/9.
 */
mark {
  background: #ff0;
  color: #000; }

/**
 * Address inconsistent and variable font size in all browsers.
 */
small {
  font-size: 80%; }

/**
 * Prevent `sub` and `sup` affecting `line-height` in all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline; }

sup {
  top: -0.5em; }

sub {
  bottom: -0.25em; }

/* Embedded content
   ========================================================================== */
/**
 * Remove border when inside `a` element in IE 8/9/10.
 */
img {
  border: 0; }

/**
 * Correct overflow not hidden in IE 9/10/11.
 */
svg:not(:root) {
  overflow: hidden; }

/* Grouping content
   ========================================================================== */
/**
 * Address margin not present in IE 8/9 and Safari.
 */
figure {
  margin: 1em 40px; }

/**
 * Address differences between Firefox and other browsers.
 */
hr {
  box-sizing: content-box;
  height: 0; }

/**
 * Contain overflow in all browsers.
 */
pre {
  overflow: auto; }

/**
 * Address odd `em`-unit font size rendering in all browsers.
 */
code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em; }

/* Forms
   ========================================================================== */
/**
 * Known limitation: by default, Chrome and Safari on OS X allow very limited
 * styling of `select`, unless a `border` property is set.
 */
/**
 * 1. Correct color not being inherited.
 *    Known issue: affects color of disabled elements.
 * 2. Correct font properties not being inherited.
 * 3. Address margins set differently in Firefox 4+, Safari, and Chrome.
 */
button,
input,
optgroup,
select,
textarea {
  color: inherit;
  /* 1 */
  font: inherit;
  /* 2 */
  margin: 0;
  /* 3 */ }

/**
 * Address `overflow` set to `hidden` in IE 8/9/10/11.
 */
button {
  overflow: visible; }

/**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.
 * Correct `select` style inheritance in Firefox.
 */
button,
select {
  text-transform: none; }

/**
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *    `input` and others.
 */
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  /* 2 */
  cursor: pointer;
  /* 3 */ }

/**
 * Re-set default cursor for disabled elements.
 */
button[disabled],
html input[disabled] {
  cursor: default; }

/**
 * Remove inner padding and border in Firefox 4+.
 */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0; }

/**
 * Address Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */
input {
  line-height: normal; }

/**
 * It's recommended that you don't attempt to style these elements.
 * Firefox's implementation doesn't respect box-sizing, padding, or width.
 *
 * 1. Address box sizing set to `content-box` in IE 8/9/10.
 * 2. Remove excess padding in IE 8/9/10.
 */
input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */ }

/**
 * Fix the cursor style for Chrome's increment/decrement buttons. For certain
 * `font-size` values of the `input`, it causes the cursor style of the
 * decrement button to change from `default` to `text`.
 */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto; }

/**
 * 1. Address `appearance` set to `searchfield` in Safari and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari and Chrome.
 */
input[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  box-sizing: content-box;
  /* 2 */ }

/**
 * Remove inner padding and search cancel button in Safari and Chrome on OS X.
 * Safari (but not Chrome) clips the cancel button when the search input has
 * padding (and `textfield` appearance).
 */
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none; }

/**
 * Define consistent border, margin, and padding.
 */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em; }

/**
 * 1. Correct `color` not being inherited in IE 8/9/10/11.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 */
legend {
  border: 0;
  /* 1 */
  padding: 0;
  /* 2 */ }

/**
 * Remove default vertical scrollbar in IE 8/9/10/11.
 */
textarea {
  overflow: auto; }

/**
 * Don't inherit the `font-weight` (applied by a rule above).
 * NOTE: the default cannot safely be changed in Chrome and Safari on OS X.
 */
optgroup {
  font-weight: bold; }

/* Tables
   ========================================================================== */
/**
 * Remove most spacing between table cells.
 */
table {
  border-collapse: collapse;
  border-spacing: 0; }

td,
th {
  padding: 0; }

/*scss/utils/_helper.scss*/
/* ==|== non-semantic helper classes ========================================
   Please define your styles before this section.
   ========================================================================== */
/* For image replacement */
.ir {
  display: block;
  border: 0;
  text-indent: -999em;
  overflow: hidden;
  background-color: transparent;
  background-repeat: no-repeat;
  text-align: left;
  direction: ltr;
  *line-height: 0; }

.ir br {
  display: none; }

/* Hide from both screenreaders and browsers: h5bp.com/u */
.hidden, .is-hidden {
  display: none !important;
  visibility: hidden; }

/* Hide only visually, but have it available for screenreaders: h5bp.com/v */
.visuallyhidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px; }

/* Extends the .visuallyhidden class to allow the element to be focusable when navigated to via the keyboard: h5bp.com/p */
.visuallyhidden.focusable:active, .visuallyhidden.focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  width: auto; }

/* Hide visually and from screenreaders, but maintain layout */
.invisible {
  visibility: hidden; }

/* Contain floats: h5bp.com/q */
.clearfix:before, .clearfix:after {
  content: "";
  display: table; }

.clearfix:after {
  clear: both; }

.clearfix {
  *zoom: 1; }

.mobile-only {
  display: block; }

.desktop-only {
  display: none; }

@media screen and (min-width: 55em) {
  .mobile-only {
    display: none; }
  .desktop-only {
    display: block; } }

.no-padding {
  padding: 0; }

/*scss/base/_colors.scss*/
/*
*******************************************************************
BRAND COLORS
*******************************************************************
*/
/*
*******************************************************************
COMMON GRAYS
*******************************************************************
*/
/*
*******************************************************************
SOCIAL MEDIA COLORS
*******************************************************************
*/
/*
*******************************************************************
MESSAGE COLORS
*******************************************************************
*/
/*scss/base/_fonts.scss*/
.sans, .font--sans {
  font-family: "futura-pt", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol"; }

.serif, .font--serif {
  font-family: Georgia, "Times New Roman", serif; }

/*scss/base/_grid.scss*/
/*-------------------------------------------------------*
 based on Pintsize (https://github.com/alistairtweedie/Pintsize/)
\*-------------------------------------------------------*/
.container {
  max-width: 1400px;
  width: 95%;
  margin: 0 auto;
  box-sizing: border-box; }

.flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-flow: row wrap;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap; }

.flex--auto .col {
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1; }

.flex .col.-webkit-flex-bug {
  -webkit-flex: 1 1 0;
  /* this */ }

.flex--start {
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start; }

.flex--start .col {
  -webkit-box-flex: 0;
  -webkit-flex-grow: 0;
  -ms-flex-positive: 0;
  flex-grow: 0; }

.flex--center {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center; }

.flex--center .col {
  -webkit-box-flex: 0;
  -webkit-flex-grow: 0;
  -ms-flex-positive: 0;
  flex-grow: 0; }

.flex--end {
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end; }

.flex--end .col {
  -webkit-box-flex: 0;
  -webkit-flex-grow: 0;
  -ms-flex-positive: 0;
  flex-grow: 0; }

.flex--top {
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start; }

.flex--middle {
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center; }

.flex--baseline {
  -webkit-box-align: baseline;
  -webkit-align-items: baseline;
  -ms-flex-align: baseline;
  align-items: baseline; }

.flex--wrap {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap; }

.flex--row {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row; }

.flex--bottom {
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  align-items: flex-end; }

.flex--bottom .col {
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1; }

.flex--around {
  -webkit-justify-content: space-around;
  -ms-flex-pack: distribute;
  justify-content: space-around; }

.flex--around .col {
  -webkit-box-flex: 0;
  -webkit-flex-grow: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  -webkit-flex-shrink: 1;
  -ms-flex-negative: 1;
  flex-shrink: 1; }

.flex--between {
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between; }

.flex--between .col {
  -webkit-box-flex: 0;
  -webkit-flex-grow: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  -webkit-flex-shrink: 1;
  -ms-flex-negative: 1;
  flex-shrink: 1; }

.flex--reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse; }

.col {
  -webkit-box-flex: 0;
  -webkit-flex-grow: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-flex-basis: auto;
  -ms-flex-preferred-size: auto;
  flex-basis: auto;
  max-width: 100%;
  box-sizing: border-box;
  padding-left: 10px;
  padding-right: 10px; }

@media screen and (min-width: 48em) {
  .col {
    padding-left: 20px;
    padding-right: 20px; } }

.col--first {
  -webkit-box-ordinal-group: 0;
  -webkit-order: -1;
  -ms-flex-order: -1;
  order: -1; }

.col--last {
  -webkit-box-ordinal-group: 2;
  -webkit-order: 1;
  -ms-flex-order: 1;
  order: 1; }

.col--1 {
  -webkit-flex-basis: 8.33333%;
  -ms-flex-preferred-size: 8.33333%;
  flex-basis: 8.33333%;
  max-width: 8.33333%; }

.col--2 {
  -webkit-flex-basis: 16.66667%;
  -ms-flex-preferred-size: 16.66667%;
  flex-basis: 16.66667%;
  max-width: 16.66667%; }

.col--3 {
  -webkit-flex-basis: 25%;
  -ms-flex-preferred-size: 25%;
  flex-basis: 25%;
  max-width: 25%; }

.col--4 {
  -webkit-flex-basis: 33.33333%;
  -ms-flex-preferred-size: 33.33333%;
  flex-basis: 33.33333%;
  max-width: 33.33333%; }

.col--5 {
  -webkit-flex-basis: 41.66667%;
  -ms-flex-preferred-size: 41.66667%;
  flex-basis: 41.66667%;
  max-width: 41.66667%; }

.col--6 {
  -webkit-flex-basis: 50%;
  -ms-flex-preferred-size: 50%;
  flex-basis: 50%;
  max-width: 50%; }

.col--7 {
  -webkit-flex-basis: 58.33333%;
  -ms-flex-preferred-size: 58.33333%;
  flex-basis: 58.33333%;
  max-width: 58.33333%; }

.col--8 {
  -webkit-flex-basis: 66.66667%;
  -ms-flex-preferred-size: 66.66667%;
  flex-basis: 66.66667%;
  max-width: 66.66667%; }

.col--9 {
  -webkit-flex-basis: 75%;
  -ms-flex-preferred-size: 75%;
  flex-basis: 75%;
  max-width: 75%; }

.col--10 {
  -webkit-flex-basis: 83.33333%;
  -ms-flex-preferred-size: 83.33333%;
  flex-basis: 83.33333%;
  max-width: 83.33333%; }

.col--11 {
  -webkit-flex-basis: 91.66667%;
  -ms-flex-preferred-size: 91.66667%;
  flex-basis: 91.66667%;
  max-width: 91.66667%; }

.col--12 {
  -webkit-flex-basis: 100%;
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
  max-width: 100%; }

.col__offset--1 {
  margin-left: 8.33333%; }

.col__offset--2 {
  margin-left: 16.66667%; }

.col__offset--3 {
  margin-left: 25%; }

.col__offset--4 {
  margin-left: 33.33333%; }

.col__offset--5 {
  margin-left: 41.66667%; }

.col__offset--6 {
  margin-left: 50%; }

.col__offset--7 {
  margin-left: 58.33333%; }

.col__offset--8 {
  margin-left: 66.66667%; }

.col__offset--9 {
  margin-left: 75%; }

.col__offset--10 {
  margin-left: 83.33333%; }

.col__offset--11 {
  margin-left: 91.66667%; }

.col__offset--12 {
  margin-left: 100%; }

@media screen and (min-width: 35em) {
  .col__xs--1 {
    -webkit-flex-basis: 8.33333%;
    -ms-flex-preferred-size: 8.33333%;
    flex-basis: 8.33333%;
    max-width: 8.33333%; }
  .col__xs--2 {
    -webkit-flex-basis: 16.66667%;
    -ms-flex-preferred-size: 16.66667%;
    flex-basis: 16.66667%;
    max-width: 16.66667%; }
  .col__xs--3 {
    -webkit-flex-basis: 25%;
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
    max-width: 25%; }
  .col__xs--4 {
    -webkit-flex-basis: 33.33333%;
    -ms-flex-preferred-size: 33.33333%;
    flex-basis: 33.33333%;
    max-width: 33.33333%; }
  .col__xs--5 {
    -webkit-flex-basis: 41.66667%;
    -ms-flex-preferred-size: 41.66667%;
    flex-basis: 41.66667%;
    max-width: 41.66667%; }
  .col__xs--6 {
    -webkit-flex-basis: 50%;
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%; }
  .col__xs--7 {
    -webkit-flex-basis: 58.33333%;
    -ms-flex-preferred-size: 58.33333%;
    flex-basis: 58.33333%;
    max-width: 58.33333%; }
  .col__xs--8 {
    -webkit-flex-basis: 66.66667%;
    -ms-flex-preferred-size: 66.66667%;
    flex-basis: 66.66667%;
    max-width: 66.66667%; }
  .col__xs--9 {
    -webkit-flex-basis: 75%;
    -ms-flex-preferred-size: 75%;
    flex-basis: 75%;
    max-width: 75%; }
  .col__xs--10 {
    -webkit-flex-basis: 83.33333%;
    -ms-flex-preferred-size: 83.33333%;
    flex-basis: 83.33333%;
    max-width: 83.33333%; }
  .col__xs--11 {
    -webkit-flex-basis: 91.66667%;
    -ms-flex-preferred-size: 91.66667%;
    flex-basis: 91.66667%;
    max-width: 91.66667%; }
  .col__xs--12 {
    -webkit-flex-basis: 100%;
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%; }
  .col__xs__offset--0 {
    margin-left: 0%; }
  .col__xs__offset--1 {
    margin-left: 8.33333%; }
  .col__xs__offset--2 {
    margin-left: 16.66667%; }
  .col__xs__offset--3 {
    margin-left: 25%; }
  .col__xs__offset--4 {
    margin-left: 33.33333%; }
  .col__xs__offset--5 {
    margin-left: 41.66667%; }
  .col__xs__offset--6 {
    margin-left: 50%; }
  .col__xs__offset--7 {
    margin-left: 58.33333%; }
  .col__xs__offset--8 {
    margin-left: 66.66667%; }
  .col__xs__offset--9 {
    margin-left: 75%; }
  .col__xs__offset--10 {
    margin-left: 83.33333%; }
  .col__xs__offset--11 {
    margin-left: 91.66667%; }
  .col__xs__offset--12 {
    margin-left: 100%; }
  .col__xs--first {
    -webkit-box-ordinal-group: 0;
    -webkit-order: -1;
    -ms-flex-order: -1;
    order: -1; }
  .col__xs--last {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
    -ms-flex-order: 1;
    order: 1; } }

@media screen and (min-width: 48em) {
  .col__sm--1 {
    -webkit-flex-basis: 8.33333%;
    -ms-flex-preferred-size: 8.33333%;
    flex-basis: 8.33333%;
    max-width: 8.33333%; }
  .col__sm--2 {
    -webkit-flex-basis: 16.66667%;
    -ms-flex-preferred-size: 16.66667%;
    flex-basis: 16.66667%;
    max-width: 16.66667%; }
  .col__sm--3 {
    -webkit-flex-basis: 25%;
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
    max-width: 25%; }
  .col__sm--4 {
    -webkit-flex-basis: 33.33333%;
    -ms-flex-preferred-size: 33.33333%;
    flex-basis: 33.33333%;
    max-width: 33.33333%; }
  .col__sm--5 {
    -webkit-flex-basis: 41.66667%;
    -ms-flex-preferred-size: 41.66667%;
    flex-basis: 41.66667%;
    max-width: 41.66667%; }
  .col__sm--6 {
    -webkit-flex-basis: 50%;
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%; }
  .col__sm--7 {
    -webkit-flex-basis: 58.33333%;
    -ms-flex-preferred-size: 58.33333%;
    flex-basis: 58.33333%;
    max-width: 58.33333%; }
  .col__sm--8 {
    -webkit-flex-basis: 66.66667%;
    -ms-flex-preferred-size: 66.66667%;
    flex-basis: 66.66667%;
    max-width: 66.66667%; }
  .col__sm--9 {
    -webkit-flex-basis: 75%;
    -ms-flex-preferred-size: 75%;
    flex-basis: 75%;
    max-width: 75%; }
  .col__sm--10 {
    -webkit-flex-basis: 83.33333%;
    -ms-flex-preferred-size: 83.33333%;
    flex-basis: 83.33333%;
    max-width: 83.33333%; }
  .col__sm--11 {
    -webkit-flex-basis: 91.66667%;
    -ms-flex-preferred-size: 91.66667%;
    flex-basis: 91.66667%;
    max-width: 91.66667%; }
  .col__sm--12 {
    -webkit-flex-basis: 100%;
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%; }
  .col__sm__offset--0 {
    margin-left: 0%; }
  .col__sm__offset--1 {
    margin-left: 8.33333%; }
  .col__sm__offset--2 {
    margin-left: 16.66667%; }
  .col__sm__offset--3 {
    margin-left: 25%; }
  .col__sm__offset--4 {
    margin-left: 33.33333%; }
  .col__sm__offset--5 {
    margin-left: 41.66667%; }
  .col__sm__offset--6 {
    margin-left: 50%; }
  .col__sm__offset--7 {
    margin-left: 58.33333%; }
  .col__sm__offset--8 {
    margin-left: 66.66667%; }
  .col__sm__offset--9 {
    margin-left: 75%; }
  .col__sm__offset--10 {
    margin-left: 83.33333%; }
  .col__sm__offset--11 {
    margin-left: 91.66667%; }
  .col__sm__offset--12 {
    margin-left: 100%; }
  .col__sm--first {
    -webkit-box-ordinal-group: 0;
    -webkit-order: -1;
    -ms-flex-order: -1;
    order: -1; }
  .col__sm--last {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
    -ms-flex-order: 1;
    order: 1; } }

@media screen and (min-width: 55em) {
  .col__md--1 {
    -webkit-flex-basis: 8.33333%;
    -ms-flex-preferred-size: 8.33333%;
    flex-basis: 8.33333%;
    max-width: 8.33333%; }
  .col__md--2 {
    -webkit-flex-basis: 16.66667%;
    -ms-flex-preferred-size: 16.66667%;
    flex-basis: 16.66667%;
    max-width: 16.66667%; }
  .col__md--3 {
    -webkit-flex-basis: 25%;
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
    max-width: 25%; }
  .col__md--4 {
    -webkit-flex-basis: 33.33333%;
    -ms-flex-preferred-size: 33.33333%;
    flex-basis: 33.33333%;
    max-width: 33.33333%; }
  .col__md--5 {
    -webkit-flex-basis: 41.66667%;
    -ms-flex-preferred-size: 41.66667%;
    flex-basis: 41.66667%;
    max-width: 41.66667%; }
  .col__md--6 {
    -webkit-flex-basis: 50%;
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%; }
  .col__md--7 {
    -webkit-flex-basis: 58.33333%;
    -ms-flex-preferred-size: 58.33333%;
    flex-basis: 58.33333%;
    max-width: 58.33333%; }
  .col__md--8 {
    -webkit-flex-basis: 66.66667%;
    -ms-flex-preferred-size: 66.66667%;
    flex-basis: 66.66667%;
    max-width: 66.66667%; }
  .col__md--9 {
    -webkit-flex-basis: 75%;
    -ms-flex-preferred-size: 75%;
    flex-basis: 75%;
    max-width: 75%; }
  .col__md--10 {
    -webkit-flex-basis: 83.33333%;
    -ms-flex-preferred-size: 83.33333%;
    flex-basis: 83.33333%;
    max-width: 83.33333%; }
  .col__md--11 {
    -webkit-flex-basis: 91.66667%;
    -ms-flex-preferred-size: 91.66667%;
    flex-basis: 91.66667%;
    max-width: 91.66667%; }
  .col__md--12 {
    -webkit-flex-basis: 100%;
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%; }
  .col__md__offset--0 {
    margin-left: 0%; }
  .col__md__offset--1 {
    margin-left: 8.33333%; }
  .col__md__offset--2 {
    margin-left: 16.66667%; }
  .col__md__offset--3 {
    margin-left: 25%; }
  .col__md__offset--4 {
    margin-left: 33.33333%; }
  .col__md__offset--5 {
    margin-left: 41.66667%; }
  .col__md__offset--6 {
    margin-left: 50%; }
  .col__md__offset--7 {
    margin-left: 58.33333%; }
  .col__md__offset--8 {
    margin-left: 66.66667%; }
  .col__md__offset--9 {
    margin-left: 75%; }
  .col__md__offset--10 {
    margin-left: 83.33333%; }
  .col__md__offset--11 {
    margin-left: 91.66667%; }
  .col__md__offset--12 {
    margin-left: 100%; }
  .col__md--first {
    -webkit-box-ordinal-group: 0;
    -webkit-order: -1;
    -ms-flex-order: -1;
    order: -1; }
  .col__md--last {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
    -ms-flex-order: 1;
    order: 1; } }

@media (min-width: 65.625em) {
  .col__lg--1 {
    -webkit-flex-basis: 8.33333%;
    -ms-flex-preferred-size: 8.33333%;
    flex-basis: 8.33333%;
    max-width: 8.33333%; }
  .col__lg--2 {
    -webkit-flex-basis: 16.66667%;
    -ms-flex-preferred-size: 16.66667%;
    flex-basis: 16.66667%;
    max-width: 16.66667%; }
  .col__lg--3 {
    -webkit-flex-basis: 25%;
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
    max-width: 25%; }
  .col__lg--4 {
    -webkit-flex-basis: 33.33333%;
    -ms-flex-preferred-size: 33.33333%;
    flex-basis: 33.33333%;
    max-width: 33.33333%; }
  .col__lg--5 {
    -webkit-flex-basis: 41.66667%;
    -ms-flex-preferred-size: 41.66667%;
    flex-basis: 41.66667%;
    max-width: 41.66667%; }
  .col__lg--6 {
    -webkit-flex-basis: 50%;
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%; }
  .col__lg--7 {
    -webkit-flex-basis: 58.33333%;
    -ms-flex-preferred-size: 58.33333%;
    flex-basis: 58.33333%;
    max-width: 58.33333%; }
  .col__lg--8 {
    -webkit-flex-basis: 66.66667%;
    -ms-flex-preferred-size: 66.66667%;
    flex-basis: 66.66667%;
    max-width: 66.66667%; }
  .col__lg--9 {
    -webkit-flex-basis: 75%;
    -ms-flex-preferred-size: 75%;
    flex-basis: 75%;
    max-width: 75%; }
  .col__lg--10 {
    -webkit-flex-basis: 83.33333%;
    -ms-flex-preferred-size: 83.33333%;
    flex-basis: 83.33333%;
    max-width: 83.33333%; }
  .col__lg--11 {
    -webkit-flex-basis: 91.66667%;
    -ms-flex-preferred-size: 91.66667%;
    flex-basis: 91.66667%;
    max-width: 91.66667%; }
  .col__lg--12 {
    -webkit-flex-basis: 100%;
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%; }
  .col__lg__offset--0 {
    margin-left: 0%; }
  .col__lg__offset--1 {
    margin-left: 8.33333%; }
  .col__lg__offset--2 {
    margin-left: 16.66667%; }
  .col__lg__offset--3 {
    margin-left: 25%; }
  .col__lg__offset--4 {
    margin-left: 33.33333%; }
  .col__lg__offset--5 {
    margin-left: 41.66667%; }
  .col__lg__offset--6 {
    margin-left: 50%; }
  .col__lg__offset--7 {
    margin-left: 58.33333%; }
  .col__lg__offset--8 {
    margin-left: 66.66667%; }
  .col__lg__offset--9 {
    margin-left: 75%; }
  .col__lg__offset--10 {
    margin-left: 83.33333%; }
  .col__lg__offset--11 {
    margin-left: 91.66667%; }
  .col__lg__offset--12 {
    margin-left: 100%; }
  .col__lg--first {
    -webkit-box-ordinal-group: 0;
    -webkit-order: -1;
    -ms-flex-order: -1;
    order: -1; }
  .col__lg--last {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
    -ms-flex-order: 1;
    order: 1; } }

/*scss/base/_layout.scss*/
* {
  box-sizing: border-box; }

.margin--none {
  margin: 0; }

.margin--xxs {
  margin: 0.25em; }

.margin--xs {
  margin: 0.5em; }

.margin--s {
  margin: 0.75em; }

.margin--m {
  margin: 1em; }

.margin--l {
  margin: 1.5em; }

.margin--xl {
  margin: 2em; }

.margin-bottom--none {
  margin-bottom: 0; }

.margin-bottom--xxs {
  margin-bottom: 0.25em; }

.margin-bottom--xs {
  margin-bottom: 0.5em; }

.margin-bottom--s {
  margin-bottom: 0.75em; }

.margin-bottom--m {
  margin-bottom: 1em; }

.margin-bottom--l {
  margin-bottom: 1.5em; }

.margin-bottom--xl {
  margin-bottom: 2em; }

.margin-top--none {
  margin-top: 0; }

.margin-top--xxs {
  margin-top: 0.25em; }

.margin-top--xs {
  margin-top: 0.5em; }

.margin-top--s {
  margin-top: 0.75em; }

.margin-top--m {
  margin-top: 1em; }

.margin-top--l {
  margin-top: 1.5em; }

.margin-top--xl {
  margin-top: 2em; }

.margin-left--none {
  margin-left: 0; }

.margin-left--xxs {
  margin-left: 0.25em; }

.margin-left--xs {
  margin-left: 0.5em; }

.margin-left--s {
  margin-left: 0.75em; }

.margin-left--m {
  margin-left: 1em; }

.margin-left--l {
  margin-left: 1.5em; }

.margin-left--xl {
  margin-left: 2em; }

.margin-right--none {
  margin-right: 0; }

.margin-right--xxs {
  margin-right: 0.25em; }

.margin-right--xs {
  margin-right: 0.5em; }

.margin-right--s {
  margin-right: 0.75em; }

.margin-right--m {
  margin-right: 1em; }

.margin-right--l {
  margin-right: 1.5em; }

.margin-right--xl {
  margin-right: 2em; }

.padding--none {
  padding: 0; }

.padding--xxs {
  padding: 0.25em; }

.padding--xs {
  padding: 0.5em; }

.padding--s {
  padding: 0.75em; }

.padding--m {
  padding: 1em; }

.padding--l {
  padding: 1.5em; }

.padding--xl {
  padding: 2em; }

.padding-bottom--none {
  padding-bottom: 0; }

.padding-bottom--xxs {
  padding-bottom: 0.25em; }

.padding-bottom--xs {
  padding-bottom: 0.5em; }

.padding-bottom--s {
  padding-bottom: 0.75em; }

.padding-bottom--m {
  padding-bottom: 1em; }

.padding-bottom--l {
  padding-bottom: 1.5em; }

.padding-bottom--xl {
  padding-bottom: 2em; }

.padding-top--none {
  padding-top: 0; }

.padding-top--xxs {
  padding-top: 0.25em; }

.padding-top--xs {
  padding-top: 0.5em; }

.padding-top--s {
  padding-top: 0.75em; }

.padding-top--m {
  padding-top: 1em; }

.padding-top--l {
  padding-top: 1.5em; }

.padding-top--xl {
  padding-top: 2em; }

.padding-left--none {
  padding-left: 0; }

.padding-left--xxs {
  padding-left: 0.25em; }

.padding-left--xs {
  padding-left: 0.5em; }

.padding-left--s {
  padding-left: 0.75em; }

.padding-left--m {
  padding-left: 1em; }

.padding-left--l {
  padding-left: 1.5em; }

.padding-left--xl {
  padding-left: 2em; }

.padding-right--none {
  padding-right: 0; }

.padding-right--xxs {
  padding-right: 0.25em; }

.padding-right--xs {
  padding-right: 0.5em; }

.padding-right--s {
  padding-right: 0.75em; }

.padding-right--m {
  padding-right: 1em; }

.padding-right--l {
  padding-right: 1.5em; }

.padding-right--xl {
  padding-right: 2em; }

/* Post title width */
.editor-post-title__block.wp-block {
  max-width: 72em;
  /* Post title styling */ }

/* Main column width */
.wp-block {
  max-width: 72em;
  /* Wide column width */
  /* Full column width */ }
  .wp-block[data-align="wide"] {
    max-width: none; }
    @media screen and (min-width: 55em) {
      .wp-block[data-align="wide"] {
        max-width: none;
        margin-left: calc(25vw - 25%);
        margin-right: calc(25vw - 25%); } }
  .wp-block[data-align="full"] {
    max-width: none; }

/* Undo blockquote styles */
/*.wp-block-quote:not(.is-large):not(.is-style-large) {
	border-left: 0;
	padding-left: 0;
}*/
/* Fix space between image and caption */
/*.wp-block-image {
	line-height: 0;
}*/
main ul, main ol {
  padding-left: 1.5rem; }
  main ul li, main ol li {
    padding-bottom: .5rem; }
    main ul li:last-child, main ol li:last-child {
      padding-bottom: 0; }
    main ul li ul, main ul li ol, main ol li ul, main ol li ol {
      padding-top: .5rem; }

/*
*******************************************************************
COLOR CODING
*******************************************************************
*/
.has-orange-color {
  color: #F78F1E; }

.has-orange-background-color {
  background-color: #F78F1E; }

.has-purple-color {
  color: #212E84; }

.has-purple-background-color {
  background-color: #212E84; }

/*
*******************************************************************
BUTTON BLOCK
*******************************************************************
*/
.wp-block-button__link {
  border-radius: 3px; }
  .wp-block-button__link:hover {
    text-decoration: none; }
  .wp-block-button__link:not(.has-text-color) {
    color: white; }
    .wp-block-button__link:not(.has-text-color):hover {
      color: white; }
  .wp-block-button__link:not(.has-background) {
    background-color: #3a96d2; }
    .wp-block-button__link:not(.has-background):hover, .wp-block-button__link:not(.has-background):focus {
      background-color: #1f5e87; }
  .wp-block-button__link.has-orange-color:hover, .wp-block-button__link.has-orange-color:focus {
    color: #F78F1E; }
  .wp-block-button__link.has-orange-background-color:hover, .wp-block-button__link.has-orange-background-color:focus {
    background-color: #da7508; }
  .wp-block-button__link.has-purple-color:hover, .wp-block-button__link.has-purple-color:focus {
    color: #212E84; }
  .wp-block-button__link.has-purple-background-color:hover, .wp-block-button__link.has-purple-background-color:focus {
    background-color: #17205b; }

/*Outlined Button*/
/*scss/atoms/_headings.scss*/
/*
*******************************************************************
DEAFULT HEADINGS
- via: http:/csswizardry.com/2012/02/pragmatic-practical-font-sizing-in-css/
- via: https://github.com/modularscale/modularscale-sass
*******************************************************************
*/
h1, h2, h3, h4, h5, h6 {
  padding: 0;
  margin: 0.5em 0;
  line-height: 1.25; }

h1 {
  font-size: 35px; }
  @media screen and (min-width: 48em) {
    h1 {
      font-size: 38px; } }
  @media screen and (min-width: 55em) {
    h1 {
      font-size: 41px; } }
  @media (min-width: 65.625em) {
    h1 {
      font-size: 44px; } }

h2 {
  font-size: 31px; }
  @media screen and (min-width: 48em) {
    h2 {
      font-size: 34px; } }
  @media screen and (min-width: 55em) {
    h2 {
      font-size: 37px; } }
  @media (min-width: 65.625em) {
    h2 {
      font-size: 40px; } }

h3 {
  font-size: 27px; }
  @media screen and (min-width: 48em) {
    h3 {
      font-size: 30px; } }
  @media screen and (min-width: 55em) {
    h3 {
      font-size: 33px; } }
  @media (min-width: 65.625em) {
    h3 {
      font-size: 36px; } }

h4 {
  font-size: 23px; }
  @media screen and (min-width: 48em) {
    h4 {
      font-size: 26px; } }
  @media screen and (min-width: 55em) {
    h4 {
      font-size: 29px; } }
  @media (min-width: 65.625em) {
    h4 {
      font-size: 32px; } }

h5 {
  font-size: 19px; }
  @media screen and (min-width: 48em) {
    h5 {
      font-size: 22px; } }
  @media screen and (min-width: 55em) {
    h5 {
      font-size: 25px; } }
  @media (min-width: 65.625em) {
    h5 {
      font-size: 28px; } }

h6 {
  font-size: 15px; }
  @media screen and (min-width: 48em) {
    h6 {
      font-size: 18px; } }
  @media screen and (min-width: 55em) {
    h6 {
      font-size: 21px; } }
  @media (min-width: 65.625em) {
    h6 {
      font-size: 24px; } }

/*
*******************************************************************
ALTERNATE HEADINGS
*******************************************************************
*/
h1.alt, h2.alt, h3.alt, h4.alt, h5.alt, h6.alt {
  font-family: "futura-pt", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  text-transform: uppercase;
  color: #757575; }

/*
*******************************************************************
CUSTOM HEADINGS
*******************************************************************
*/
.page__title {
  margin: 0; }

.heading__xl {
  font-size: 38px; }
  @media screen and (min-width: 48em) {
    .heading__xl {
      font-size: 44px; } }
  @media screen and (min-width: 55em) {
    .heading__xl {
      font-size: 48px; } }
  @media (min-width: 65.625em) {
    .heading__xl {
      font-size: 54px; } }

/*scss/atoms/_lists.scss*/
/*
*******************************************************************
CORE LIST STYLES
*******************************************************************
*/
ol, ul {
  margin: 0;
  padding: 0; }

/*
*******************************************************************
DEFINITION LISTS
*******************************************************************
*/
dl {
  overflow: hidden;
  margin: 0 0 1em; }

dt {
  font-weight: bold; }

dd {
  margin-left: 0; }

/*
*******************************************************************
LISTS WITHIN TEXT AREAS
*******************************************************************
*/
.text ol, .text ul {
  list-style: initial;
  margin-left: 1.5rem; }

.text ol {
  list-style-type: decimal; }

/*
*******************************************************************
BULLET LISTING STYLES
*******************************************************************
*/
.list--checklist, .content .list--checklist, .block--copy .list--checklist {
  margin: 1em 0;
  padding: 0; }

li.list-item--check, .optin .optin__content li, .list--checklist li {
  position: relative;
  text-align: left;
  padding-left: 36px;
  margin-bottom: 0.75em;
  list-style-type: none; }
  li.list-item--check::before, .optin .optin__content li::before, .list--checklist li::before {
    content: "";
    display: block;
    position: absolute;
    top: 3px;
    left: 0;
    width: 24px;
    height: 24px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%233a96d2' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E"); }

.list--checklist.list--checklist--reversed li::before, .optin .optin__content li::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23FFFFFF' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
  opacity: 0.75; }

/*scss/atoms/_images.scss*/
/*
*******************************************************************
CORE IMAGE STYLES
*******************************************************************
*/
img {
  max-width: 100%;
  height: auto;
  display: block; }

.centered,
.aligncenter {
  display: block;
  margin: 0 auto 24px; }

.alignnone {
  margin: 0 auto 12px;
  width: inherit; }

.alignleft,
.wp-caption.alignleft {
  margin: 0 1em 1em 0;
  float: left;
  max-width: 40%; }

.alignright,
.wp-caption.alignright {
  margin: 0 0 1em 1em;
  float: right;
  max-width: 40%; }

.img--rounded {
  border-radius: 4px; }

.img--circle, .img-circle {
  border-radius: 50%; }

.img--full {
  width: 100%; }

.img--bordered {
  border: 1px solid #EEEEEE; }

.wp-caption-text {
  color: #707070;
  color: rgba(51, 51, 51, 0.7);
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 1.5;
  padding: 0.5em 0; }

.gallery-caption {
  color: #707070;
  color: rgba(51, 51, 51, 0.7);
  display: block;
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 1.5;
  padding: 0.5em 0; }

/*WordPress Image Classes*/
.wp-caption-text {
  color: #9E9E9E;
  font-size: 12px;
  line-height: 1.5;
  padding: 0.5em 0; }

.gallery-caption {
  color: #9E9E9E;
  display: block;
  font-size: 12px;
  line-height: 1.5;
  padding: 0.5em 0; }

figure {
  margin: 0; }

.wp-block-image figcaption {
  text-align: left;
  font-size: 0.9em;
  font-style: italic; }
  @media screen and (min-width: 48em) {
    .wp-block-image figcaption {
      font-size: 1em; } }

/*
*******************************************************************
GALLERY IMAGE STYLES
*******************************************************************
*/
.gallery {
  display: block; }
  .gallery .gallery-item {
    width: 100%; }
  @media screen and (min-width: 48em) {
    .gallery {
      display: flex; }
      .gallery .gallery-item {
        flex-basis: 100%;
        max-width: 100%;
        padding: 0.5em; }
      .gallery .gallery-columns-2 .gallery-item {
        flex-basis: 50%;
        max-width: 50%; }
      .gallery .gallery-columns-3 .gallery-item {
        flex-basis: 33%;
        max-width: 33%; }
      .gallery .gallery-columns-4 .gallery-item {
        flex-basis: 25%;
        max-width: 25%; } }

/*scss/atoms/_buttons.scss*/
/*
*******************************************************************
DEFAULT BUTTON
*******************************************************************
*/
.button, button {
  display: inline-block;
  padding: 1em 1.5em;
  border-radius: 4px;
  background: #3a96d2;
  color: #fff;
  text-align: center;
  text-decoration: none;
  font-weight: bold;
  transition: .2s all ease-in-out; }
  .button:hover, .button:focus, .button:active, button:hover, button:focus, button:active {
    background: #287bb1;
    color: #fff;
    text-decoration: none; }

/*
*******************************************************************
ALTERNATE BUTTON
*******************************************************************
*/
.button--alt, .button-alt {
  background: #3EB6E9; }
  .button--alt:hover, .button--alt:focus, .button--alt:active, .button-alt:hover, .button-alt:focus, .button-alt:active {
    background: #19a1db; }

.wp-block-button.is-style-alt .wp-block-button__link {
  background: #3EB6E9; }
  .wp-block-button.is-style-alt .wp-block-button__link:hover, .wp-block-button.is-style-alt .wp-block-button__link:focus, .wp-block-button.is-style-alt .wp-block-button__link:active {
    background: #19a1db; }

/*
*******************************************************************
TERTIARY BUTTON
*******************************************************************
*/
.button--tertiary, .button-tertiary {
  background: #346BB3; }
  .button--tertiary:hover, .button--tertiary:focus, .button--tertiary:active, .button-tertiary:hover, .button-tertiary:focus, .button-tertiary:active {
    background: #29538b; }

/*
*******************************************************************
CTA BUTTON
*******************************************************************
*/
.button--cta, .button-cta {
  background: #6bb334; }
  .button--cta:hover, .button--cta:focus, .button--cta:active, .button-cta:hover, .button-cta:focus, .button-cta:active {
    background: #538b29; }

/*
*******************************************************************
SUBTLE BUTTON
*******************************************************************
*/
.button--subtle {
  background: rgba(0, 0, 0, 0.2); }
  .button--subtle:hover, .button--subtle:focus, .button--subtle:active {
    background: rgba(0, 0, 0, 0.4); }

/*
*******************************************************************
DISABLED BUTTON
*******************************************************************
*/
.button--disabled, button:disabled {
  opacity: 0.5;
  cursor: not-allowed; }

/*
*******************************************************************
BUTTON SIZING
*******************************************************************
*/
.button--large {
  padding: 1.5em 3em; }

.wp-block-button.is-style-large .wp-block-button__link {
  padding: 1.5em 3em; }

.button--small {
  font-size: 80%; }

.wp-block-button.is-style-small .wp-block-button__link {
  font-size: 80%; }

.button--wide {
  padding-left: 3em;
  padding-right: 3em; }

/*
*******************************************************************
ALL CAPS BUTTON
*******************************************************************
*/
.button--caps {
  text-transform: uppercase; }

/*
*******************************************************************
WHITE BUTTON
*******************************************************************
*/
.button--white {
  background: white;
  color: #3a96d2 !important;
  border: none;
  text-decoration: none; }
  .button--white:hover, .button--white:focus, .button--white:active {
    background: white;
    color: #287bb1 !important;
    text-decoration: none; }

/*
*******************************************************************
DARK BUTTON
*******************************************************************
*/
.button--dark {
  background: #212121; }
  .button--dark:hover, .button--dark:focus, .button--dark:active {
    background: #080808; }

/*scss/atoms/_tables.scss*/
/*
*******************************************************************
CUSTOM TABLE STYLES
*******************************************************************
*/
table {
  max-width: 100%;
  background-color: transparent;
  margin: 0 0 1.5em;
  width: 100%;
  text-align: left;
  font-size: 80%; }

tr {
  border-bottom: 1px solid #EEEEEE; }

th {
  text-align: left;
  font-weight: bold; }

td, th {
  padding: 0.5em 0; }

/*scss/atoms/_blockquotes.scss*/
/*
*******************************************************************
DEFAULT BLOCKQUOTE
*******************************************************************
*/
blockquote, .blockquote--default, .wp-block-quote {
  color: #424242;
  background: #F5F5F5;
  border-top: 4px solid #3a96d2;
  padding: 0.75em;
  font-style: italic;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.15em;
  margin: 1.5em 0;
  position: relative; }
  @media screen and (min-width: 48em) {
    blockquote, .blockquote--default, .wp-block-quote {
      font-size: 1.25em; } }
  @media screen and (min-width: 55em) {
    blockquote, .blockquote--default, .wp-block-quote {
      font-size: 1.45em; } }
  blockquote cite, .blockquote--default cite, .wp-block-quote cite {
    display: block;
    font-weight: bold;
    text-transform: uppercase;
    color: rgba(58, 150, 210, 0.9);
    font-size: 65%;
    font-style: normal;
    font-family: "futura-pt", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
    letter-spacing: 0.05em;
    margin-top: 1em; }
  blockquote p, .blockquote--default p, .wp-block-quote p {
    margin: 0; }
  @media screen and (min-width: 55em) {
    blockquote, .blockquote--default, .wp-block-quote {
      border-top: none;
      border-left: 4px solid #3a96d2; } }

.blockquote__title {
  color: #757575;
  font-weight: normal;
  font-style: italic;
  text-transform: none;
  display: block;
  letter-spacing: 0; }

/*
*******************************************************************
TESTIMONIAL BLOCKQUOTE
*******************************************************************
*/
.blockquote--testimonial {
  display: flex;
  align-items: flex-start;
  font-size: 1em;
  margin: 0.75em 0; }
  @media screen and (min-width: 48em) {
    .blockquote--testimonial {
      font-size: 1.15em; } }
  @media screen and (min-width: 55em) {
    .blockquote--testimonial {
      font-size: 1.25em; } }
  .blockquote--testimonial .blockquote__content {
    max-width: 70%;
    flex-basis: 70%; }
  .blockquote--testimonial .blockquote__image {
    max-width: 25%;
    flex-basis: 25%;
    margin-left: 5%; }
  .blockquote--testimonial cite {
    font-size: 85%; }
  @media screen and (min-width: 48em) {
    .blockquote--testimonial .blockquote__content {
      max-width: calc(100% - 160px - 5%);
      flex-basis: calc(100% - 160px - 5%); }
    .blockquote--testimonial .blockquote__image {
      max-width: 160px;
      flex-basis: 160px;
      margin-left: 5%; } }

@media screen and (min-width: 48em) {
  .block--testimonial-split {
    column-count: 2;
    column-gap: 40px; }
    .block--testimonial-split .blockquote--testimonial-split {
      break-inside: avoid;
      margin: 0 0 1em; } }

.blockquote--testimonial-split {
  font-size: 0.9em; }
  @media screen and (min-width: 48em) {
    .blockquote--testimonial-split {
      font-size: 1em; } }
  @media screen and (min-width: 55em) {
    .blockquote--testimonial-split {
      font-size: 1.05em; } }
  @media screen and (min-width: 48em) {
    .blockquote--testimonial-split .blockquote__content {
      max-width: calc(100% - 120px - 4%);
      flex-basis: calc(100% - 120px - 4%); }
    .blockquote--testimonial-split .blockquote__image {
      max-width: 120px;
      flex-basis: 120px;
      margin-left: 4%; } }

/*scss/atoms/_text.scss*/
/*
*******************************************************************
DEFAULT TEXT STYLES
*******************************************************************
*/
body {
  font-size: 1.1em;
  line-height: 1.6;
  font-family: "futura-pt", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  font-display: swap;
  color: #212121;
  font-weight: 400; }
  @media screen and (min-width: 48em) {
    body {
      font-size: 1.2em; } }
  @media screen and (min-width: 55em) {
    body {
      font-size: 1.3em; } }

::selection {
  background: #3a96d2;
  color: #fff;
  text-shadow: none; }

/*
*******************************************************************
HORIZONTAL RULE STYLES
*******************************************************************
*/
hr {
  border: 0;
  height: 1px;
  background: rgba(0, 0, 0, 0.2);
  margin: 1.5em 0; }

abbr {
  border-bottom: 1px dotted #EEEEEE;
  cursor: help; }

.content ol, .content ul, article ol, article ul, .entry-content ol, .entry-content ul, .block--copy ol, .block--copy ul {
  list-style: initial;
  padding-left: 1.5em;
  margin-left: 1em;
  margin-bottom: 1.5em; }

.content ol, article ol, .entry-content ol, .block--copy ol {
  list-style: decimal; }

/*
*******************************************************************
LINK STYLES
*******************************************************************
*/
a {
  color: #3a96d2;
  text-decoration: underline;
  font-weight: bold;
  transition: .2s all ease-in-out; }
  a:hover, a:focus, a:active {
    color: #287bb1;
    text-decoration: none; }

/*
*******************************************************************
FAQ STYLES
*******************************************************************
*/
.qa-row {
  margin-top: 40px;
}
.qa-row .qa_block:not(:first-child) {
  margin-bottom: 20px;
  border-top: 1px solid #ccc;
}
.qa_block .qa_block_q {
  font-weight: bold;
  cursor: pointer;
  user-select: none;
  padding-right: 30px;
}
.qa_block .qa_block_q {
  position: relative;
}
.qa_block .qa_block_q:after {
  content: '\f078';
  font-family: "Font Awesome 5 Free";
  display: block;  
  position: absolute;
  right: 5px;
  top: 0;
}
.qa_block.expand .qa_block_q:after {
  content: '\f077';
}
.qa_block .qa_block_a {
  height: 0;
  opacity: 0;
  overflow: hidden;
}
.qa_block.expand .qa_block_a {
  height: auto;
  opacity: 1;
  transition: all ease 0.3s;
}
.qa_block .qa_block_a p {
  margin-top: 0;
}

/*

*******************************************************************
TEXT SIZING STYLES
*******************************************************************
*/
.text--small, .has-small-font-size {
  font-size: 90%; }
  @media screen and (min-width: 48em) {
    .text--small, .has-small-font-size {
      font-size: 85%; } }
  @media screen and (min-width: 55em) {
    .text--small, .has-small-font-size {
      font-size: 80%; } }

.text--intro, .text--large, .has-large-font-size {
  font-size: 110%; }

/*
*******************************************************************
TEXT WEIGHT STYLES
*******************************************************************
*/
.text--light {
  font-weight: 300; }

.text--normal {
  font-weight: 400; }

.text--bold {
  font-weight: 800; }

/*
*******************************************************************
TEXT ALIGNMENT STYLES
*******************************************************************
*/
.text--right {
  text-align: right; }

.text--left {
  text-align: left; }

.text--center {
  text-align: center; }

/*
*******************************************************************
TEXT CAPS STYLES
*******************************************************************
*/
.text--uppercase {
  text-transform: uppercase; }

/*
*******************************************************************
WORDPRESS CLASS STYLES
*******************************************************************
*/
.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden; }

.sticky {
  position: relative; }

.bypostauthor {
  position: relative; }

/*scss/atoms/_paragraph.scss*/
/*
*******************************************************************
PARAGRAPH STYLES
*******************************************************************
*/
.wp-post-image + p {
  margin-top: 0;
  /*Remove top margin from first paragraph directly following featured image*/ }

/*scss/atoms/_icons.scss*/
/*
*******************************************************************
DEFAULT ICON STYLES
*******************************************************************
*/
.content--primary svg {
  fill: #757575;
  width: 32px;
  height: 32px;
  min-width: 32px;
  min-height: 32px; }

/*
*******************************************************************
SEARCH ICON
*******************************************************************
*/
.i-search {
  width: 14px;
  height: 14px;
  margin-right: 0.25em;
  fill: #424242; }

/*
*******************************************************************
ICON ROW STYLES
*******************************************************************
*/
.icon--row {
  max-width: 240px;
  opacity: 0.5;
  margin-bottom: 1em; }

/*
*******************************************************************
ICON SIZING STYLES
*******************************************************************
*/
.icon--small svg {
  width: 32px;
  height: 32px;
  min-width: 32px;
  min-height: 32px; }

.icon--medium svg {
  width: 45px;
  height: 45px;
  min-width: 45px;
  min-height: 45px; }

.icon--large svg {
  width: 60px;
  height: 60px;
  min-width: 60px;
  min-height: 60px; }

/*
*******************************************************************
BRAND ICON STYLES
*******************************************************************
*/
.icon--brand svg {
  stroke: #757575;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-miterlimit: 10; }

.icon--brand .color--secondary {
  stroke: #3a96d2; }

.icon--reversed svg {
  stroke: #fff; }

/*scss/atoms/_forms.scss*/
/*
*******************************************************************
CORE FORM STYLES
*******************************************************************
*/
button,
input,
select,
textarea {
  font-size: 100%;
  margin: 0;
  vertical-align: baseline; }

input[type="checkbox"],
input[type="radio"] {
  padding: 0;
  width: inherit;
  min-width: inherit;
  min-height: inherit;
  display: inline;
  clear: both; }

input[type="search"] {
  box-sizing: content-box; }

input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none; }

button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0; }

input[type="text"],
input[type="email"],
input[type="url"],
input[type="tel"],
input[type="password"],
input[type="search"],
textarea {
  display: inline-block;
  padding: 0.75em;
  width: 100%;
  color: #212121;
  background: #fff;
  border: 1px solid #9E9E9E;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  background-clip: padding-box;
  /* stops bg color from leaking outside the border: */
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box; }
  input[type="text"]:focus,
  input[type="email"]:focus,
  input[type="url"]:focus,
  input[type="tel"]:focus,
  input[type="password"]:focus,
  input[type="search"]:focus,
  textarea:focus {
    border-color: #aaa; }

textarea {
  overflow: auto;
  vertical-align: top; }

abbr[title="required"], abbr[title="Required"], .required {
  border-bottom: none;
  color: #911; }

input[type="submit"], input[type="button"] {
  display: block;
  margin: 0 auto;
  padding: 1em 1.5em;
  border-radius: 4px;
  border: none;
  background: #3a96d2;
  color: #fff;
  text-align: center;
  text-decoration: none;
  font-weight: bold;
  transition: .2s all ease-in-out; }
  input[type="submit"]:hover, input[type="submit"]:focus, input[type="submit"]:active, input[type="button"]:hover, input[type="button"]:focus, input[type="button"]:active {
    background: #287bb1;
    color: #fff;
    text-decoration: none; }

/*
*******************************************************************
DEFAULT FORM STYLES
- Labels, input, select, textarea
*******************************************************************
*/
form br {
  display: none; }

label, legend {
  font-weight: bold;
  display: block;
  margin-bottom: 0.25em;
  color: #212121;
  vertical-align: middle;
  line-height: 1.25em; }

/*via https://www.filamentgroup.com/lab/select-css.html*/
select {
  display: block;
  font-size: 16px;
  font-family: "futura-pt", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  font-weight: 700;
  color: #424242;
  line-height: 1.3;
  padding: .6em 1.4em .5em .8em;
  width: 100%;
  max-width: 100%;
  height: 61px;
  box-sizing: border-box;
  margin: 0;
  border: 1px solid #9E9E9E;
  border-radius: .5em;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  background-color: #fff;
  background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23007CB2%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E"), linear-gradient(to bottom, #ffffff 0%, #efefef 100%);
  background-repeat: no-repeat, repeat;
  background-position: right .7em top 50%, 0 0;
  background-size: .65em auto, 100%; }

.select-css::-ms-expand {
  display: none; }

.select-css:hover {
  border-color: #888; }

.select-css:focus {
  border-color: #EEEEEE;
  box-shadow: 0 0 1px 3px rgba(59, 153, 252, 0.7);
  box-shadow: 0 0 0 3px -moz-mac-focusring;
  color: #222;
  outline: none; }

.select-css option {
  font-weight: normal; }

.field {
  margin-bottom: 1em; }

@media screen and (min-width: 48em) {
  .field--half, .name_first, .name_last {
    width: 48%;
    margin-right: 2%;
    float: left;
    clear: none !important; } }

.content form ul {
  margin: 0;
  padding: 0; }

/*------------------------------------*\
    $SPECIFIC FORMS
\*------------------------------------*/
/*
*******************************************************************
SEARCH FORM
*******************************************************************
*/
.form--search {
  position: relative;
  box-sizing: border-box;
  max-width: 600px;
  width: 100%;
  margin: 0 auto; }
  .form--search label {
    display: none; }
  .form--search .icon-search {
    width: 16px;
    height: 16px;
    min-height: 16px;
    min-width: 16px; }
  @media screen and (min-width: 55em) {
    .form--search {
      width: 250px; } }

.form--search__field {
  font-weight: normal;
  padding: 0.75em;
  font-size: 0.85em; }
  .form--search__field::placeholder {
    color: #616161; }

.form--search__submit {
  position: absolute;
  display: flex;
  justify-content: center;
  padding: 5px;
  right: 5px;
  top: 50%;
  margin-top: -15px;
  background: none;
  border: none;
  width: 32px;
  height: 32px; }
  .form--search__submit svg {
    width: 16px;
    height: 16px;
    min-width: 16px;
    min-height: 16px;
    fill: #757575; }
  .form--search__submit:hover, .form--search__submit:focus {
    background: none;
    outline: none; }
    .form--search__submit:hover .icon-search, .form--search__submit:focus .icon-search {
      opacity: 0.6; }
    .form--search__submit:hover svg, .form--search__submit:focus svg {
      fill: #424242; }

/*
*******************************************************************
INLINE FORM
*******************************************************************
*/
/*Main Inline Form Styles*/
.form--inline, .optin__form--inline {
  width: 100%;
  margin: 0; }
  .form--inline label, .optin__form--inline label {
    display: none; }
  .form--inline input, .form--inline input[type=text], .form--inline input[type=email], .optin__form--inline input, .optin__form--inline input[type=text], .optin__form--inline input[type=email] {
    height: 60px;
    padding: 1em;
    margin-bottom: 0.75em; }
    @media screen and (min-width: 55em) {
      .form--inline input, .form--inline input[type=text], .form--inline input[type=email], .optin__form--inline input, .optin__form--inline input[type=text], .optin__form--inline input[type=email] {
        margin-bottom: 0; } }
  .form--inline ul, .optin__form--inline ul {
    list-style: none; }
  .form--inline input[type="submit"], .form--inline input[type="button"], .optin__form--inline input[type="submit"], .optin__form--inline input[type="button"] {
    height: 60px;
    background: #3a96d2;
    padding-top: 1em;
    padding-bottom: 1em;
    border-radius: 3px;
    border: none;
    width: 100%;
    text-align: center;
    line-height: 1; }
  .form--inline .gform_confirmation_wrapper, .optin__form--inline .gform_confirmation_wrapper {
    margin-bottom: 0;
    font-size: 0.9em; }
  @media screen and (min-width: 55em) {
    .form--inline, .optin__form--inline {
      display: flex;
      flex-flow: row wrap;
      justify-content: flex-start; }
      .form--inline .gform_body, .optin__form--inline .gform_body {
        width: calc(100% - 220px); }
      .form--inline .gform_footer, .optin__form--inline .gform_footer {
        width: 200px;
        margin-left: 20px; } }

/*Optin Inline Form*/
.optin__form--inline > * {
  flex-basis: 100%;
  max-width: 100%; }

.optin__form--inline form {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  margin: 0; }

.optin__form--inline .field {
  flex-basis: 100%;
  max-width: 100%; }

/*Full Width Inline Form*/
@media screen and (min-width: 48em) {
  .form--inline--full .gform_body {
    flex-basis: 100%;
    max-width: 100%; }
    .form--inline--full .gform_body .gform_fields {
      display: flex; }
      .form--inline--full .gform_body .gform_fields > li {
        width: 50%; }
  .form--inline--full .gform_footer {
    flex-basis: 100%;
    max-width: 100%; }
  .form--inline--full input[type="submit"] {
    width: initial; } }

/*scss/atoms/_media.scss*/
/*
*******************************************************************
RESPONSIVE MEDIA
*******************************************************************
*/
.player, .video-container, .wp-block-embed__wrapper {
  position: relative;
  height: 0;
  padding-bottom: 56.25%; }
  .player iframe, .video-container iframe, .wp-block-embed__wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; }

/*backgrounds.scss*/
/*
*******************************************************************
WHITE BACKGROUND
*******************************************************************
*/
.bg--white {
  background: #fff; }

/*
*******************************************************************
COLORED BACKGROUNDS
*******************************************************************
*/
.bg--gray100 {
  background: #F5F5F5; }

.bg--gray500 {
  background: #9E9E9E; }

.bg--gray800 {
  background: #424242; }

.bg--blue100 {
  background: rgba(58, 150, 210, 0.1); }

.bg--blue200 {
  background: rgba(58, 150, 210, 0.2); }

.bg--blue {
  background: #3a96d2; }

.bg--blue-light {
  background: #3EB6E9; }

.bg--blue-dark {
  background: #346BB3; }

.bg--blue-darkest {
  background: #2f4a9e; }

.bg--blue-gradient {
  background-image: linear-gradient(147deg, #3a96d2 5%, #2f4a9e 95%); }

/*Dark Backgrounds*/
.bg--blue, .bg--blue-light, .bg--blue-dark, .bg--blue-darkest, .bg--blue-gradient, .bg--gray500, .bg--gray800 {
  color: #fff; }
  .bg--blue *, .bg--blue p, .bg--blue ul, .bg--blue ol, .bg--blue-light *, .bg--blue-light p, .bg--blue-light ul, .bg--blue-light ol, .bg--blue-dark *, .bg--blue-dark p, .bg--blue-dark ul, .bg--blue-dark ol, .bg--blue-darkest *, .bg--blue-darkest p, .bg--blue-darkest ul, .bg--blue-darkest ol, .bg--blue-gradient *, .bg--blue-gradient p, .bg--blue-gradient ul, .bg--blue-gradient ol, .bg--gray500 *, .bg--gray500 p, .bg--gray500 ul, .bg--gray500 ol, .bg--gray800 *, .bg--gray800 p, .bg--gray800 ul, .bg--gray800 ol {
    color: #fff; }
  .bg--blue .alt, .bg--blue-light .alt, .bg--blue-dark .alt, .bg--blue-darkest .alt, .bg--blue-gradient .alt, .bg--gray500 .alt, .bg--gray800 .alt {
    color: #fff;
    opacity: 0.75; }
  .bg--blue img, .bg--blue-light img, .bg--blue-dark img, .bg--blue-darkest img, .bg--blue-gradient img, .bg--gray500 img, .bg--gray800 img {
    mix-blend-mode: multiply; }
  .bg--blue .block__image img, .bg--blue-light .block__image img, .bg--blue-dark .block__image img, .bg--blue-darkest .block__image img, .bg--blue-gradient .block__image img, .bg--gray500 .block__image img, .bg--gray800 .block__image img {
    mix-blend-mode: normal; }
  .bg--blue .gfield input, .bg--blue .gfield textarea, .bg--blue-light .gfield input, .bg--blue-light .gfield textarea, .bg--blue-dark .gfield input, .bg--blue-dark .gfield textarea, .bg--blue-darkest .gfield input, .bg--blue-darkest .gfield textarea, .bg--blue-gradient .gfield input, .bg--blue-gradient .gfield textarea, .bg--gray500 .gfield input, .bg--gray500 .gfield textarea, .bg--gray800 .gfield input, .bg--gray800 .gfield textarea {
    color: #212121; }

/*
*******************************************************************
GRADIENT BACKGROUNDs
*******************************************************************
*/
/*_blocks.scss*/
/*
*******************************************************************
DEFAULT BLOCK
*******************************************************************
*/
.block {
  padding: 1.5em 0; }
  .block:first-of-type {
    padding-top: 1em; }
  @media screen and (min-width: 55em) {
    .block {
      padding: 3em 0; } }
  .block li {
    margin-bottom: 1em; }

/*
*******************************************************************
BLOCK CONTENT
*******************************************************************
*/
.block__copy .button {
  margin-top: 0.75em; }

/*
*******************************************************************
BLOCK ICON
*******************************************************************
*/
.block__icon {
  margin-bottom: 0.5em;
  width: 60px;
  height: 60px; }
  .block__icon svg {
    width: 60px;
    height: 60px;
    min-width: 60px;
    min-height: 60px; }
  .block__icon img {
    width: 100%; }

.block__header-icon {
  opacity: 0.75;
  margin: 0 auto; }

/*
*******************************************************************
BLOCK IMAGES
*******************************************************************
*/
.block__image {
  position: relative;
  width: 450px;
  max-width: 100%;
  margin: 1.5em auto;
  /*Secondary Image*/ }
  .block__image .img--secondary {
    position: absolute;
    bottom: 0;
    left: 50px;
    width: 35%; }
  @media screen and (min-width: 35em) {
    .block__image {
      max-width: 450px; } }
  @media screen and (min-width: 55em) {
    .block__image {
      margin: 0; } }

/*Image Ordering/Offsets*/
@media screen and (min-width: 55em) {
  .block.block__image--left .block__image {
    margin-right: 5%;
    order: 1; }
  .block.block__image--left .block__copy {
    order: 2; }
  .block.block__image--right .block__image {
    margin-left: 5%; } }

/*
*******************************************************************
OPTIN BLOCK
*******************************************************************
*/
.block__optin {
  margin-top: 2em; }
  @media screen and (min-width: 55em) {
    .block__optin {
      margin-top: 0; } }

/*
*******************************************************************
DIVIDER ICONS
*******************************************************************
*/
.block--divider {
  position: relative;
  margin-top: 1.5em; }
  .block--divider::before {
    content: "";
    display: block;
    width: 800px;
    height: 80px;
    max-width: 100%;
    background: url("images/accent-divider.svg") left 50% no-repeat;
    background-size: cover;
    margin: -60px auto 0; }
  @media screen and (min-width: 55em) {
    .block--divider::before {
      width: 1200px;
      height: 120px;
      margin-top: -100px; } }

/*_bullets.scss*/
/*
*******************************************************************
DEFAULT BULLET STYLES
*******************************************************************
*/
.bullet {
  margin-bottom: 1em;
  text-align: center; }
  .bullet p {
    margin: 0; }

.bullet__subheading {
  font-size: 14px; }
  @media screen and (min-width: 48em) {
    .bullet__subheading {
      font-size: 16px; } }
  @media screen and (min-width: 55em) {
    .bullet__subheading {
      font-size: 18px; } }
  @media (min-width: 65.625em) {
    .bullet__subheading {
      font-size: 20px; } }

.bullet__icon {
  width: 48px;
  margin: 0 auto 1em; }

.bullet__link {
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 0.75em;
  text-decoration: none;
  display: block; }

/*
*******************************************************************
SPLIT BULLETS
*******************************************************************
*/
@media screen and (min-width: 55em) {
  .bullets--split {
    column-count: 2;
    column-gap: 40px; }
    .bullets--split .bullet {
      break-inside: avoid; } }

/*
*******************************************************************
SIDE BULLETS
*******************************************************************
*/
.bullet--side {
  display: flex;
  align-items: flex-start; }
  .bullet--side .bullet__icon {
    flex-basis: 48px;
    max-width: 48px;
    margin-right: 20px; }
  .bullet--side .bullet__content {
    text-align: left;
    flex-basis: calc(100% - 48px - 20px);
    flex-basis: calc(100% - 48px - 20px); }

/*scss/molecules/_comments.scss*/
/*
*******************************************************************
HEADER COMMENTS
*******************************************************************
*/
.header--comments {
  text-align: center; }
  .header--comments .button--small {
    display: block;
    margin: 0 auto; }
  @media screen and (min-width: 48em) {
    .header--comments {
      text-align: left; }
      .header--comments .button--small {
        display: inline;
        margin: 0; } }

/*
*******************************************************************
COMMENTS LISTING
*******************************************************************
*/
.entry-comments {
  margin-top: 1.5em;
  margin-bottom: 1.5em; }
  .entry-comments header {
    text-align: center; }
  .entry-comments h5 a {
    font-size: 12px;
    font-size: 1.2rem;
    display: inline-block;
    float: right; }
  .entry-comments .comment {
    border: 1px solid #EEEEEE; }
  .entry-comments ol.comment-list, .entry-comments ul.children {
    margin: 0 0;
    padding: 0;
    clear: both; }
  .entry-comments > .comment-list > .comment {
    margin-bottom: 1em; }
  .entry-comments .children .comment {
    border-left: none;
    border-right: none;
    border-bottom: none; }
  .entry-comments .entry-comments .comment-author {
    margin-bottom: 0; }
  .entry-comments .comment-list li,
  .entry-comments .ping-list li {
    position: relative;
    list-style-type: none; }
    .entry-comments .comment-list li .comment-body,
    .entry-comments .ping-list li .comment-body {
      padding: 1em; }
  .entry-comments .comment-list > li.parent article {
    margin-bottom: 0.75em; }
  .entry-comments .comment-list li.depth-3 article {
    margin-bottom: 0;
    /*remove margin from third-level comment because it has no reply link*/ }
  .entry-comments .comment .avatar {
    display: none;
    position: absolute;
    top: 0.75em;
    left: 15px;
    width: 45px;
    max-width: 60px;
    border: 1px solid #F5F5F5;
    border-radius: 50%; }
  .entry-comments .comment-content {
    font-size: 1em;
    word-wrap: break-word; }
    @media screen and (min-width: 48em) {
      .entry-comments .comment-content {
        font-size: 0.9em; } }
    @media screen and (min-width: 55em) {
      .entry-comments .comment-content {
        font-size: 0.85em; } }
    .entry-comments .comment-content a, .entry-comments .comment-content p, .entry-comments .comment-content ul, .entry-comments .comment-content ol, .entry-comments .comment-content li {
      word-wrap: break-word; }
    .entry-comments .comment-content iframe {
      max-width: 100%; }
  .entry-comments .comment-author {
    font-size: 1.25em;
    font-weight: normal;
    line-height: 1.3; }
    .entry-comments .comment-author b {
      font-weight: normal;
      font-size: 1.25em; }
    .entry-comments .comment-author a {
      display: block;
      padding: 0.5em 0; }
      @media screen and (min-width: 55em) {
        .entry-comments .comment-author a {
          padding: 0; } }
  .entry-comments .comment-meta {
    line-height: 1.3; }
    @media screen and (min-width: 55em) {
      .entry-comments .comment-meta {
        font-size: 80%; } }
  .entry-comments .comment-reply a {
    font-size: 12px;
    font-size: 1.2rem;
    background: #E0E0E0;
    color: #424242;
    font-weight: normal;
    text-decoration: none; }
    .entry-comments .comment-reply a:hover {
      background: #BDBDBD; }
  .entry-comments .entry-pings .reply,
  .entry-comments .comment-author .says {
    display: none; }
  .entry-comments .comment-author cite {
    font-style: normal; }
  .entry-comments .comment-author a {
    color: #424242;
    font-weight: bold;
    font-style: normal; }
  .entry-comments .comment-metadata a {
    font-size: 1em;
    color: #757575;
    font-weight: normal;
    text-decoration: none;
    padding: 1em 0;
    display: block; }
  .entry-comments .comment-subject {
    margin-top: 1em;
    margin-bottom: 0.25em; }
  .entry-comments .comment-awaiting-moderation {
    background: #eee;
    padding: 0.5em;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    background-clip: padding-box;
    /* stops bg color from leaking outside the border: */
    font-size: 14px;
    font-size: 1.4rem;
    text-align: center;
    margin-top: 1em; }
  .entry-comments .comment-reply-link {
    display: block;
    font-size: 0.9em;
    padding: 1.5em 2em 1.5em 0; }
    .entry-comments .comment-reply-link:hover, .entry-comments .comment-reply-link:focus {
      color: #287bb1; }
    @media screen and (min-width: 55em) {
      .entry-comments .comment-reply-link {
        display: inline; } }
  @media screen and (min-width: 55em) {
    .entry-comments header {
      text-align: left; }
    .entry-comments .comment .avatar {
      display: block; } }

/*
*******************************************************************
COMMENT RESPONSE FORM
*******************************************************************
*/
.comment .comment-respond {
  padding: 1em; }

.comment-respond a {
  color: #3a96d2; }

.comment-respond label {
  font-size: 1em;
  margin-bottom: 0.25em; }

.comment-respond p {
  margin-bottom: 1.5em; }

.comment-respond input[type="submit"] {
  display: block;
  padding: 1em 1.5em;
  margin: 0 auto;
  border-radius: 4px;
  border: none;
  background: #3a96d2;
  color: #fff;
  text-align: center;
  text-decoration: none;
  font-weight: bold;
  transition: .2s all ease-in-out; }

@media screen and (min-width: 55em) {
  .comment-respond .comment-form-author, .comment-respond .comment-form-email {
    width: 49%;
    float: left; }
  .comment-respond .comment-form-email {
    float: right; } }

#cancel-comment-reply-link {
  background: #F5F5F5;
  color: #424242;
  padding: 1em;
  border-radius: 4px;
  text-decoration: none;
  display: block;
  margin: 0 0 0 0.75em;
  float: right;
  font-size: 15px; }
  @media screen and (min-width: 55em) {
    #cancel-comment-reply-link {
      margin-top: 1.5em; } }

/*_links.scss*/
/*
*******************************************************************
FAUX LINK STYLES
*******************************************************************
*/
.link--faux {
  display: block;
  margin-top: 0.75em;
  color: #3a96d2;
  font-weight: bold;
  text-decoration: underline; }

/*
*******************************************************************
CALLOUT LINK STYLES
*******************************************************************
*/
.link--callout, .link--read-more {
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  line-height: 16px;
  margin-top: 1em; }
  .link--callout::before, .link--read-more::before {
    content: "";
    display: block;
    width: 16px;
    height: 16px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%233a96d2' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M9 18l6-6-6-6'/%3E%3C/svg%3E");
    opacity: 0.5;
    margin-right: 0.25em; }

/*
*******************************************************************
BACK TO TOP LINK STYLES
*******************************************************************
*/
.link--back-to-top {
  background: #fff;
  color: #424242;
  line-height: 1;
  padding: 0.75em 0.5em;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 3px;
  border: 1px solid #F5F5F5;
  text-decoration: none; }
  .link--back-to-top::before {
    content: "";
    display: block;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%23424242' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 19V6M5 12l7-7 7 7'/%3E%3C/svg%3E");
    background-size: contain;
    width: 18px;
    height: 18px;
    margin-right: 0.5em; }
  .link--back-to-top:hover, .link--back-to-top:focus, .link--back-to-top:active {
    color: #424242;
    background-color: #F5F5F5;
    text-decoration: none; }

/*_images.scss*/
/*
*******************************************************************
FEATURED IMAGE STYLES
*******************************************************************
*/
.image--featured img {
  border: 1px solid #F5F5F5; }

/*
*******************************************************************
HEXAGON IMAGE STYLES
*******************************************************************
*/
@supports (-webkit-clip-path: polygon(50% 0%, 95% 25%, 95% 75%, 50% 100%, 5% 75%, 5% 25%)) or (clip-path: polygon(50% 0%, 95% 25%, 95% 75%, 50% 100%, 5% 75%, 5% 25%)) {
  .img--hexagon {
    -webkit-clip-path: polygon(50% 0%, 95% 25%, 95% 75%, 50% 100%, 5% 75%, 5% 25%);
    clip-path: polygon(50% 0%, 95% 25%, 95% 75%, 50% 100%, 5% 75%, 5% 25%); } }

@supports not (clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%)) {
  .img--hexagon {
    border-radius: 50%; } }

/*
*******************************************************************
ACCENT IMAGE STYLES
Adds hexagon shape overlay
*******************************************************************
*/
.img--accents {
  position: relative; }
  .img--accents::before {
    content: "";
    display: block;
    position: absolute;
    z-index: 10;
    top: 0;
    right: 0;
    height: 100%;
    width: 100%;
    background: url("images/image-accents-default.svg") right 50% no-repeat;
    background-size: contain; }

/*scss/molecules/_navigation.scss*/
/*
*******************************************************************
GENERAL NAVIGATION
*******************************************************************
*/
/*Flex Nav Layout*/
@media (min-width: 65.625em) {
  .nav--flex {
    display: flex; } }

.nav--flex-end {
  justify-content: flex-end; }

.nav--flex-start {
  justify-content: flex-start; }

nav li {
  list-style-type: none; }

/*
*******************************************************************
SHOW/HIDE STYLES
*******************************************************************
*/
.header__navigation .header__secondary, .header__navigation .header__primary {
  display: none; }

.header.toggled-on .header__secondary,
.header.toggled-on .header__primary,
.no-js .header__secondary,
.no-js .header__primary {
  display: block; }

@media (min-width: 65.625em) {
  .header__navigation {
    display: block; }
  .header__navigation .header__secondary, .header__navigation .header__primary {
    display: flex;
    justify-content: flex-end; }
  .nav--mobile, .nav--icon--mobile {
    display: none; } }

/*
*******************************************************************
MOBILE MENU STYLES
*******************************************************************
*/
.menu-toggle {
  padding: 0.5em 0.75em;
  border-radius: 3px;
  font-weight: bold;
  border: 1px solid #EEEEEE;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.9em;
  display: flex;
  align-items: center; }
  .menu-toggle::before {
    content: "";
    display: block;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23212121' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='3' y1='12' x2='21' y2='12'%3E%3C/line%3E%3Cline x1='3' y1='6' x2='21' y2='6'%3E%3C/line%3E%3Cline x1='3' y1='18' x2='21' y2='18'%3E%3C/line%3E%3C/svg%3E");
    width: 16px;
    height: 16px;
    background-size: 16px 16px;
    margin-right: 0.5em; }
  .menu-toggle:hover, .menu-toggle:focus, .menu-toggle:active {
    background: #EEEEEE; }
  .menu-toggle.toggled-on {
    background: #424242;
    color: #fff; }
    .menu-toggle.toggled-on::before {
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23FFFFFF' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='18' y1='6' x2='6' y2='18'%3E%3C/line%3E%3Cline x1='6' y1='6' x2='18' y2='18'%3E%3C/line%3E%3C/svg%3E"); }

/*Dropdown Toggle (for subpages within mobile menu)*/
.header__navigation--primary button {
  display: none; }

@media (max-width: 65.625em) {
  .header__navigation--primary .dropdown-toggle {
    background-color: #F5F5F5;
    border: 0;
    border-radius: 0;
    color: #1a1a1a;
    content: "";
    padding: 0;
    text-transform: none;
    position: absolute;
    right: 0;
    top: 0;
    height: 50px;
    width: 50px; }
    .header__navigation--primary .dropdown-toggle::after {
      padding: 0.75em;
      content: "";
      background: url(data:image/svg+xml;base64,PHN2ZyBkYXRhLW5hbWU9IkxheWVyIDEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDMwIDMwIj48dGl0bGU+QXJ0Ym9hcmQgMTwvdGl0bGU+PHBhdGggZD0iTTE1IDE5Ljg0bC04LjM0LTguMzZMOCAxMC4xNmw3IDcgNy03IDEuMzIgMS4zMnoiIGZpbGw9IiMzODM3MzYiLz48L3N2Zz4=) 50% 50% no-repeat;
      left: 1px;
      position: relative;
      width: 44px; }
    .header__navigation--primary .dropdown-toggle:hover, .header__navigation--primary .dropdown-toggle:focus {
      background-color: rgba(238, 238, 238, 0.8);
      color: #3a96d2;
      outline: none; }
      .header__navigation--primary .dropdown-toggle:hover::after, .header__navigation--primary .dropdown-toggle:focus::after {
        color: #424242; }
    .header__navigation--primary .dropdown-toggle:focus::after {
      border-color: transparent; }
    .header__navigation--primary .dropdown-toggle.toggled-on {
      transform: rotate(-180deg);
      background: #EEEEEE; } }

@media (min-width: 65.625em) {
  .header__navigation--primary .dropdown-toggle {
    display: none; } }

/*
*******************************************************************
PRIMARY NAVIGATION STYLES
*******************************************************************
*/
.main-navigation {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-end; }
  .main-navigation > * {
    flex-basis: 100%;
    max-width: 100%; }
  .main-navigation > .menu-item-search {
    order: 1; }
  .main-navigation > .menu-primary-navigation-container {
    order: 2; }
  @media (min-width: 65.625em) {
    .main-navigation {
      flex-flow: row nowrap;
      align-items: center; }
      .main-navigation > .menu-item-search {
        flex-basis: initial;
        max-width: initial;
        order: 2; }
      .main-navigation > .menu-primary-navigation-container {
        flex-basis: initial;
        max-width: initial;
        order: 1; } }

.header__navigation--primary, .menu-main-menu-container {
  width: 100%; }

.nav--primary {
  margin: 0.5em 0 0;
  border-bottom: 1px solid #F5F5F5; }
  .nav--primary > li {
    position: relative; }
    .nav--primary > li + li {
      border-top: 1px solid #F5F5F5; }
  .nav--primary a {
    font-size: 0.9em;
    box-sizing: border-box;
    width: 100%;
    color: #424242;
    text-decoration: underline;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: block;
    transition: .35s opacity ease-in-out;
    position: relative;
    padding: 0.75em 0.5em;
    text-decoration: none; }
    @media screen and (min-width: 55em) {
      .nav--primary a {
        font-size: 0.95em; } }
    .nav--primary a:hover, .nav--primary a:focus {
      background: rgba(238, 238, 238, 0.25); }
  @media (min-width: 65.625em) {
    .nav--primary {
      display: flex;
      flex-wrap: nowrap;
      justify-content: center;
      align-items: center;
      margin: 0;
      border-bottom: none; }
      .nav--primary > li + li {
        border-top: none; }
      .nav--primary a {
        z-index: 10000;
        /*move above dropdown menu*/
        text-align: center;
        padding: 0.75em 1em;
        text-decoration: none; }
        .nav--primary a:hover, .nav--primary a:focus {
          background: #EEEEEE; }
      .nav--primary > li > a {
        border-bottom: 3px solid transparent; }
      .nav--primary > li > a:hover {
        background: #F5F5F5; }
      .nav--primary > .current-menu-item > a {
        border-bottom-color: #3a96d2;
        color: #3a96d2; } }

/*
*******************************************************************
SHOW THE DROPDOWN FOR SUB-PAGES
*******************************************************************
*/
@media(max-width: 65.5625em) {
  .header__navigation--primary button {
  display: block !important; }
}  

/*
*******************************************************************
SECONDARY NAVIGATION STYLES
*******************************************************************
*/
.nav--secondary {
  position: relative; }
  .nav--secondary > li {
    position: relative;
    white-space: nowrap;
    border-bottom: 1px solid #F5F5F5; }
  .nav--secondary a {
    font-size: 1em;
    box-sizing: border-box;
    width: 100%;
    color: #616161;
    font-weight: normal;
    text-decoration: none;
    display: block;
    transition: .35s opacity ease-in-out;
    position: relative;
    padding: 0.75em 0.5em; }
    @media screen and (min-width: 55em) {
      .nav--secondary a {
        font-size: 0.85em; } }
    .nav--secondary a:hover, .nav--secondary a:focus {
      background: rgba(238, 238, 238, 0.75); }
  @media (min-width: 65.625em) {
    .nav--secondary {
      margin-bottom: 0; }
      .nav--secondary > li {
        border-bottom: none; }
      .nav--secondary a {
        padding: 0.75em 0.75em;
        color: #757575; }
      .nav--secondary .menu-item-has-children > a::after {
        width: 12px;
        height: 12px; } }

/*
*******************************************************************
ACCOUNT NAVIGATION STYLES
*******************************************************************
*/
.nav--account svg {
  fill: #757575;
  width: 18px;
  height: 18px;
  margin-right: 0.5em; }

/*
*******************************************************************
GENERAL MENU-ITEM STYLES
*******************************************************************
*/
.menu-item {
  /*Has Children*/
  /*Drop-down Menu*/ }
  .menu-item a {
    display: flex;
    align-items: center; }
  @media (min-width: 65.625em) {
    .menu-item.menu-item-has-children > a::after {
      content: "";
      background: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='utf-8'%3F%3E%3Csvg version='1.1' id='Layer_1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' viewBox='0 0 30 30' style='enable-background:new 0 0 30 30;' xml:space='preserve'%3E%3Cstyle type='text/css'%3E .st0%7Bfill:%23000000;%7D%0A%3C/style%3E%3Ctitle%3EArtboard 1%3C/title%3E%3Cpath class='st0' d='M15,19.8l-8.3-8.4L8,10.2l7,7l7-7l1.3,1.3L15,19.8z'/%3E%3C/svg%3E%0A") 50% 50% no-repeat;
      width: 16px;
      height: 16px;
      color: #BDBDBD;
      font-family: sans-serif;
      display: inline-block;
      margin-left: 5px;
      opacity: 0.5; } }
  .menu-item:hover > .sub-menu,
  .menu-item:focus > .sub-menu {
    opacity: 1;
    left: 0;
    top: inherit; }

.menu-item-has-children:hover > a,
.menu-item-has-children:focus > a {
  background: #F5F5F5;
  border-bottom-color: transparent; }

/*
*******************************************************************
SUB-MENU NAVIGATION STYLES
*******************************************************************
*/
.sub-menu {
  display: none; }
  .sub-menu li {
    position: relative; }
  .sub-menu a {
    font-size: 0.9empx;
    font-size: 0.09emrem;
    padding-left: 1.5em;
    border-radius: 0;
    border-top: none;
    font-weight: normal;
    text-transform: none;
    letter-spacing: 0; }
  .sub-menu.toggled-on {
    display: block; }
  .sub-menu .sub-menu a {
    padding-left: 3em;
    color: #424242; }
  @media (min-width: 65.625em) {
    .sub-menu {
      display: block;
      position: absolute;
      right: 0;
      top: -9000px;
      z-index: 10000;
      margin-top: 0px;
      margin-left: 0;
      opacity: 0;
      padding: 10px 0;
      width: 100%;
      min-width: 300px;
      background: rgba(238, 238, 238, 0.95); }
      .sub-menu li {
        float: none;
        padding: 0 8px; }
      .sub-menu a {
        font-weight: normal;
        position: relative;
        display: block;
        border-radius: 3px;
        text-align: left;
        padding: 0.75em;
        text-transform: none;
        letter-spacing: 0; }
      .sub-menu a:hover,
      .sub-menu .current-menu-item > a,
      .sub-menu .current-menu-item > a:hover {
        border-bottom: none;
        background: #BDBDBD;
        color: #424242; }
      .sub-menu .sub-menu {
        margin: -54px 0 0 199px; } }

/*
*******************************************************************
SEARCH NAVIGATION STYLES
*******************************************************************
*/
.menu-item-search {
  position: relative;
  z-index: 1000;
  margin: 1em 0; }
  .menu-item-search a {
    padding: 0.75em 0.75em;
    display: none; }
    .menu-item-search a:hover, .menu-item-search a:focus {
      background: #F5F5F5; }
  .menu-item-search a.is-active {
    background: #F5F5F5; }
  .menu-item-search .icon-search {
    fill: #424242; }
  @media (min-width: 65.625em) {
    .menu-item-search {
      margin: 0; }
      .menu-item-search a {
        display: block; }
        .menu-item-search a svg {
          width: 20px;
          height: 20px;
          min-height: 20px;
          min-width: 20px; }
      .menu-item-search .form--search {
        display: none;
        position: absolute;
        width: 300px;
        right: 0;
        padding: 0.75em;
        background: #F5F5F5; }
        .menu-item-search .form--search label {
          display: none; }
      .menu-item-search .form--search__field {
        font-size: ms(-3);
        padding: 1em; }
      .menu-item-search .form--search__submit {
        right: 20px;
        width: 30px;
        height: 30px;
        margin-top: -18px; }
        .menu-item-search .form--search__submit svg {
          width: 18px;
          height: 18px;
          min-height: 18px;
          min-width: 18px; } }

/*
*******************************************************************
FOOTER NAVIGATION STYLES
*******************************************************************
*/
.menu-footer-navigation-container {
  width: 100%; }

.nav--footer {
  margin: 0; }
  .nav--footer a {
    display: block;
    text-decoration: none;
    padding: 0.75em 0;
    text-transform: uppercase;
    color: #424242;
    font-weight: normal;
    letter-spacing: 0.1em; }
  .nav--footer .sub-menu {
    display: none;
    /*hide secondary links in footer nav*/ }
  @media screen and (min-width: 35em) {
    .nav--footer {
      flex-flow: row wrap;
      justify-content: flex-start;
      display: flex; }
      .nav--footer a {
        padding: 0 1em 0 0; } }

/*
*******************************************************************
LEGAL NAVIGATION STYLES
*******************************************************************
*/
.nav--legal a {
  text-decoration: underline;
  text-transform: none;
  letter-spacing: 0; }

/*
*******************************************************************
BREADCRUMB NAVIGATION STYLES
*******************************************************************
*/
.nav--breadcrumbs {
  color: #757575;
  font-size: 1rem;
  margin: 1em 0;
  text-align: center; }
  @media screen and (min-width: 48em) {
    .nav--breadcrumbs {
      font-size: 0.9rem; } }
  @media screen and (min-width: 55em) {
    .nav--breadcrumbs {
      font-size: 0.85rem; } }
  .nav--breadcrumbs a {
    color: #616161;
    font-weight: normal;
    text-decoration: none; }

/*
*******************************************************************
SOCIAL NAVIGATION STYLES
*******************************************************************
*/
.nav--social ul {
  text-align: center; }

.nav--social li a {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #757575; }

.nav--social svg {
  fill: #757575;
  width: 16px;
  height: 16px;
  min-width: 16px;
  min-height: 16px;
  margin-right: 0.5em; }

@media screen and (min-width: 48em) {
  .nav--social ul {
    text-align: left; }
  .nav--social li a {
    justify-content: flex-start; } }

/*scss/molecules/_heading-groups.scss*/
/*
*******************************************************************
PAGE HEADINGS
*******************************************************************
*/
.heading--page {
  margin-top: 0; }

.header--page {
  margin-bottom: 0.75em; }

.header__meta {
  display: flex;
  justify-content: space-between;
  margin: 1em 0; }
  .header__meta > * {
    margin-right: 1.5em; }

/*
*******************************************************************
PAGE HEADINGS
*******************************************************************
*/
.heading--section {
  padding: 0.25em 0;
  border-bottom: 3px solid #EEEEEE;
  margin: 2em 0 1em; }

.heading--subsection {
  padding: 0.25em 0;
  border-bottom: 1px solid #EEEEEE;
  margin: 1.5em 0 1em; }

/*
*******************************************************************
POST HEADINGS
*******************************************************************
*/
.header--post {
  max-width: 768px;
  margin: 0 auto 0.75em; }
  .header--post.header__image {
    max-width: 1168px; }
  @media screen and (min-width: 55em) {
    .header--post {
      margin-bottom: 3em; } }

.header__author, .header__comments {
  display: flex;
  align-items: center;
  margin-right: 2em; }
  .header__author p, .header__comments p {
    margin: 0;
    color: #9E9E9E;
    text-transform: uppercase; }
    .header__author p strong, .header__comments p strong {
      color: #616161;
      font-weight: normal;
      text-transform: none; }
  @media screen and (min-width: 55em) {
    .header__author, .header__comments {
      margin-right: 6em; } }

/*Grid Overwrite from /5-pages/_default.scss*/
.header--post.header__image .page__image, .header--post.header__image .header__image {
  max-height: 300px; }

@media screen and (min-width: 55em) {
  .header--post.header__image {
    grid-template-rows: auto fit-content(200px); }
    .header--post.header__image .page__image, .header--post.header__image .header__image {
      max-height: inherit; }
      .header--post.header__image .page__image img, .header--post.header__image .header__image img {
        max-width: 100%; }
    .header--post.header__image .page__content, .header--post.header__image .header__content {
      align-items: end;
      padding-bottom: 0;
      grid-area: 2 / 1 / 3 / 3; } }

/*
*******************************************************************
TAXONOMY HEADINGS
*******************************************************************
*/
.header--category .heading--page {
  text-align: center; }

.header--category.header__image .heading--page {
  text-align: left; }

.header--category.header__image .header__image {
  align-items: center; }

.header--category .header__excerpt {
  font-size: 120%; }
  .header--category .header__excerpt p:last-child, .header--category .header__excerpt ul:last-child, .header--category .header__excerpt ol:last-child {
    margin-bottom: 0; }

/*scss/molecules/_messaging.scss*/
/*
*******************************************************************
MESSAGE STYLES
*******************************************************************
*/
.message {
  padding: 0.75em;
  text-align: center;
  margin: 1em 0;
  border-radius: 3px; }
  .message p {
    margin: 0; }

.message--default {
  background: #F5F5F5; }

/*
*******************************************************************
SUBTLE MESSAGE STYLES
*******************************************************************
*/
.message--subtle, .message-subtle {
  background: #F5F5F5;
  border: 1px solid #EEEEEE; }

/*
*******************************************************************
ALERT MESSAGE STYLES
*******************************************************************
*/
.message--alert, .alert {
  padding: 0.75em;
  text-align: center;
  margin: 1em 0;
  border-radius: 3px;
  background: #911;
  color: #fff; }
  .message--alert a, .alert a {
    color: #fff;
    text-decoration: underline; }

/*
*******************************************************************
CONFIRM MESSAGE STYLES
*******************************************************************
*/
.message--confirm, .confirm, .gform_confirmation_wrapper, .mm-success, .nf-response-msg {
  background-color: #99cb38;
  border-radius: 4px;
  color: #fff;
  font-weight: bold;
  padding: 15px;
  margin-bottom: 30px; }
  .message--confirm h1, .message--confirm h2, .message--confirm h3, .message--confirm h4, .message--confirm h5, .message--confirm h6, .confirm h1, .confirm h2, .confirm h3, .confirm h4, .confirm h5, .confirm h6, .gform_confirmation_wrapper h1, .gform_confirmation_wrapper h2, .gform_confirmation_wrapper h3, .gform_confirmation_wrapper h4, .gform_confirmation_wrapper h5, .gform_confirmation_wrapper h6, .mm-success h1, .mm-success h2, .mm-success h3, .mm-success h4, .mm-success h5, .mm-success h6, .nf-response-msg h1, .nf-response-msg h2, .nf-response-msg h3, .nf-response-msg h4, .nf-response-msg h5, .nf-response-msg h6 {
    margin-top: 0; }

.program .gform_confirmation_wrapper {
  background: none;
  color: #212121; }

/*scss/molecules/_listing.scss*/
/*
*******************************************************************
DEFAULT LISTING STYLES
- Parent element wrapping listings
*******************************************************************
*/
.listing {
  margin-bottom: 1.5em;
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  width: 100%; }
  @media screen and (min-width: 55em) {
    .listing {
      display: flex; }
      .listing > .list-item {
        max-width: 31%;
        flex-basis: 31%;
        margin: 1%; } }

/*
*******************************************************************
BASE/DEFAULT LIST STYLES
*******************************************************************
*/
.list-item {
  display: flex;
  flex-flow: row wrap;
  align-items: flex-start;
  align-content: flex-start;
  position: relative;
  margin: 0 1.5% 1.5em;
  transition: all 0.2s ease-in-out;
  flex-grow: 1;
  flex-shrink: 0;
  flex-basis: 97%;
  max-width: 97%;
  box-sizing: border-box;
  background: #fff;
  border: 1px solid #EEEEEE;
  border-radius: 4px;
  overflow: hidden;
  color: #424242;
  text-decoration: none; }
  .list-item:hover, .list-item:focus, .list-item:active {
    color: #212121;
    opacity: 0.8; }

.list-item__image__container {
  width: 100%; }

.list-item__image {
  display: block;
  max-width: 100%;
  flex-basis: 100%;
  margin: 0 auto;
  width: 100%; }

.list-item__meta {
  color: #424242;
  display: block;
  margin-bottom: 0.5em;
  font-weight: normal;
  text-transform: uppercase;
  font-size: 14px;
  line-height: 1.4;
  letter-spacing: 0.05em;
  max-width: 100%;
  flex-basis: 100%; }
  .list-item__meta strong {
    display: block;
    text-transform: uppercase; }

.list-item__excerpt {
  font-weight: normal;
  color: #616161; }
  @media screen and (min-width: 55em) {
    .list-item__excerpt {
      font-size: 0.9em; } }
  .list-item__excerpt p, .list-item__excerpt ul, .list-item__excerpt ol {
    color: #616161; }

.list-item__content {
  padding: 1em;
  background: #fff;
  max-width: 100%;
  flex-basis: 100%; }
  .list-item__content p {
    margin: 0; }

.list-item__heading {
  margin: 0 0 0.5em;
  color: #424242;
  font-weight: normal;
  font-size: 26px; }
  @media screen and (min-width: 55em) {
    .list-item__heading {
      font-size: 28px; } }
  .list-item__heading a {
    color: #424242;
    text-decoration: none; }

.list-item__description {
  color: #757575;
  font-weight: normal;
  font-size: 90%; }

.list-item__divider {
  color: #E0E0E0;
  padding: 0 0.75em; }

.list-item__category {
  color: #9E9E9E;
  font-weight: bold;
  text-transform: uppercase;
  text-decoration: none; }

/*
*******************************************************************
MINIMAL LIST STYLES
*******************************************************************
*/
.list-item--minimal .list-item__heading {
  margin: 0;
  font-size: 22px; }
  @media screen and (min-width: 55em) {
    .list-item--minimal .list-item__heading {
      font-size: 24px; } }

/*
*******************************************************************
CATEGORY LISTING STYLES
*******************************************************************
*/
.post-categories, .content .post-categories {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start; }
  .post-categories li, .content .post-categories li {
    text-transform: lowercase;
    list-style-type: none; }
    .post-categories li a, .content .post-categories li a {
      background: rgba(62, 182, 233, 0.75);
      color: #fff;
      padding: 0.5em 0.75em;
      margin: 0.25em;
      display: inline-block;
      text-decoration: none; }
      .post-categories li a:hover, .post-categories li a:focus, .content .post-categories li a:hover, .content .post-categories li a:focus {
        background: rgba(62, 182, 233, 0.85); }
      @media screen and (min-width: 48em) {
        .post-categories li a, .content .post-categories li a {
          font-size: 75%; } }

/*
*******************************************************************
TAG LISTING STYLES
*******************************************************************
*/
.listing--tags, .content .listing--tags {
  text-align: center;
  display: flex;
  flex-flow: row wrap;
  margin: 0;
  padding: 0; }

.list-item--tag {
  list-style-type: none; }
  .list-item--tag a {
    display: inline-block;
    padding: 0.5em 1em;
    margin: 0 0.5em 0.5em 0;
    background: #F5F5F5;
    border: 2px solid #E0E0E0;
    color: #9E9E9E;
    font-weight: bold;
    text-transform: lowercase;
    text-decoration: none; }
    .list-item--tag a:hover, .list-item--tag a:focus {
      background: rgba(245, 245, 245, 0.5); }
    @media screen and (min-width: 48em) {
      .list-item--tag a {
        font-size: 75%; } }

/*scss/molecules/_pagination.scss*/
/*
*******************************************************************
PAGINATION NAVIGATION STYLES
*******************************************************************
*/
.nav--pagination {
  margin: 3em auto;
  padding-top: 1.5em;
  display: table;
  width: 100%;
  text-align: center;
  color: #9E9E9E; }

.nav--pagination .current {
  padding: 0.5em 0.75em;
  color: #424242;
  font-weight: bold; }

.nav--pagination a,
.nav--pagination a:hover,
.nav--pagination .active a,
.nav--pagination .disabled {
  text-decoration: none;
  font-weight: normal;
  padding: 0.5em 0.75em;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  background-clip: padding-box;
  /* stops bg color from leaking outside the border: */
  color: #9E9E9E;
  cursor: pointer; }

.nav--pagination a:hover,
.nav--pagination .active a {
  border-bottom: none;
  color: #424242; }

/*Comment Navigation*/
.entry-comments .nav--pagination {
  margin: 1em 0;
  border-top: none; }

/*scss/molecules/_sections.scss*/
/*
*******************************************************************
DEFAULT SECTION
*******************************************************************
*/
/*
*******************************************************************
PADDED SECTION
*******************************************************************
*/
.section--padded {
  padding: 1.5em 0; }
  @media screen and (min-width: 55em) {
    .section--padded {
      padding: 3em 0; } }

.section--padded-half {
  padding: 0.75em 0; }
  @media screen and (min-width: 55em) {
    .section--padded-half {
      padding: 1.5em 0; } }

.section--no-padding {
  padding: 0; }
  @media screen and (min-width: 55em) {
    .section--no-padding {
      padding: 0; } }

/*
*******************************************************************
MESSAGE SECTION
*******************************************************************
*/
.section--message {
  padding: 1em;
  border-radius: 3px;
  max-width: 1200px;
  margin: 1em auto; }
  @media (min-width: 65.625em) {
    .section--message {
      padding: 2em; } }

/*
*******************************************************************
COPY SECTIONS
*******************************************************************
*/
.section--copy main {
  max-width: 768px;
  margin: 0 auto; }

/*
*******************************************************************
COPY + IMAGE SECTIONS
*******************************************************************
*/
@media screen and (min-width: 48em) {
  .section--copy-image main.image__left .section__content {
    grid-area: b; }
  .section--copy-image main.image__left .section__image {
    grid-area: a; }
  .section--copy-image main.image__left .image__feature::after {
    left: -20px;
    right: inherit; } }
  @media screen and (min-width: 48em) and (min-width: 55em) {
    .section--copy-image main.image__left .image__feature::after {
      left: -40px;
      right: inherit; } }

@media screen and (min-width: 48em) {
  .section--copy-image main {
    align-items: center; } }

@media screen and (min-width: 55em) {
  .section--copy-image main {
    align-items: start; } }

.section--copy-image .section__content {
  align-self: center; }

.section--copy-image .section__image {
  margin: 0 0 1.5em; }
  @media screen and (min-width: 48em) {
    .section--copy-image .section__image {
      padding: 0 1.5em; } }
  @media screen and (min-width: 55em) {
    .section--copy-image .section__image {
      margin-top: -3em;
      margin-bottom: 2em; } }

@media screen and (min-width: 55em) {
  .section--copy-image {
    margin-top: 1.5em; } }

/*
*******************************************************************
OPTIN SECTION STYLES
*******************************************************************
*/
.section--optin > section {
  margin: 1em 0 1.5em; }

@media screen and (min-width: 48em) {
  .section--optin {
    display: flex; }
    .section--optin > section {
      margin: 0 2%;
      max-width: 46%;
      flex-basis: 46%; } }

/*
*******************************************************************
CTA SECTION
*******************************************************************
*/
.cta {
  background: rgba(0, 0, 0, 0.25);
  border-radius: 6px;
  text-align: center; }

.cta__subheading {
  background: rgba(0, 0, 0, 0.25);
  padding: 0.5em 0.75em;
  text-transform: uppercase;
  border-radius: 6px 6px 0 0; }

.cta__content {
  padding: 0.75em; }

.cta__price {
  font-weight: 300;
  font-size: 30px;
  line-height: 1.2;
  margin: 0; }
  @media screen and (min-width: 48em) {
    .cta__price {
      font-size: 34px; } }
  @media screen and (min-width: 55em) {
    .cta__price {
      font-size: 38px; } }
  @media (min-width: 65.625em) {
    .cta__price {
      font-size: 42px; } }

.cta__copy {
  font-size: 1.1em;
  opacity: 0.75; }

/*Countdown*/
.countdown {
  display: flex;
  justify-content: center;
  margin: 1.5em 0; }
  .countdown .countdown__module {
    padding: 0.75em;
    text-align: center;
    text-transform: uppercase; }
    .countdown .countdown__module span {
      font-size: 1.75em;
      display: block;
      font-weight: bold; }
    @media screen and (min-width: 55em) {
      .countdown .countdown__module {
        padding: 1em; }
        .countdown .countdown__module span {
          font-size: 2.25em; } }

/*
*******************************************************************
CTA COPY OVERRIDE
*******************************************************************
*/
@media screen and (min-width: 55em) {
  .cta__copy__bottom > a {
    font-size: 1.3em;
  }
}
.cta__copy__bottom > a {
  display: block;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
  animation-name: ctaCopy;
  animation-duration: 5s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;    
}
@keyframes ctaCopy {
    2%, 18% {
        transform: translate3d(-5px, 0, 0);
    }

    4%, 16% {
        transform: translate3d(5px, 0, 0);
    }

    6%, 10%, 14% {
        transform: translate3d(-5px, 0, 0);
    }

    8%, 12% {
        transform: translate3d(5px, 0, 0);
    }
    
    18.1% {
        transform: translate3d(0px, 0, 0);
    }
}

/*
*******************************************************************
RELATED SECTION STYLES
*******************************************************************
*/
.section--related .list-item__category {
  text-transform: none;
  color: inherit;
  letter-spacing: 0; }

/*_modal.scss*/
.modal-open {
  overflow: hidden; }

.modal {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 10500000;
  display: none;
  overflow: hidden;
  outline: 0; }

.modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto; }

.modal-dialog {
  position: relative;
  width: auto;
  margin: 0.5rem;
  pointer-events: none; }

.modal.fade .modal-dialog {
  transition: -webkit-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -25%);
  transform: translate(0, -25%); }

.modal.show .modal-dialog {
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0); }

.modal-dialog-centered {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (0.5rem * 2)); }

.modal-content {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-color: #fff;
  background-clip: padding-box;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
  outline: 0;
  border-radius: 6px; }

.modal-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1040;
  background-color: #3a96d2; }

.modal-backdrop.fade {
  opacity: 0; }

.modal-backdrop.show {
  opacity: 0.9; }

.modal .close {
  position: absolute;
  top: 0;
  padding: 0;
  font-size: 50px;
  font-weight: normal;
  right: 0.25em;
  z-index: 10000;
  color: #fff;
  background: none;
  border: none;
  line-height: 1; }

.modal-title {
  margin-bottom: 0;
  line-height: 1.5; }

.modal-body {
  position: relative;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1em; }
  .modal-body h1:first-child, .modal-body h2:first-child, .modal-body h3:first-child, .modal-body h4:first-child, .modal-body h5:first-child, .modal-body h6:first-child {
    margin-top: 0; }
  .modal-body .gform_footer {
    text-align: center; }

.modal-footer > :not(:first-child) {
  margin-left: .25rem; }

.modal-footer > :not(:last-child) {
  margin-right: .25rem; }

.modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll; }

@media (min-width: 576px) {
  .modal-dialog {
    max-width: 500px;
    margin: 10% auto; }
  .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2)); }
  .modal-sm {
    max-width: 300px; } }

@media (min-width: 992px) {
  .modal-dialog {
    max-width: 600px; } }

/*scss/molecules/_widgets.scss*/
/*
*******************************************************************
WIDGET STYLES
*******************************************************************
*/
.widget {
  padding: 1em;
  margin-bottom: 1em;
  border: 1px solid #F5F5F5;
  font-size: 80%; }
  .widget ul {
    padding: 0;
    margin: 0;
    list-style-type: none; }
  .widget li + li {
    margin-top: 1em; }
  @media screen and (min-width: 55em) {
    .widget {
      margin-bottom: 3em; } }

.widget__title {
  margin: 0 0 0.75em; }

/*
*******************************************************************
WIDGET WITHOUT PADDING
*******************************************************************
*/
.widget--no-padding {
  padding: 0; }

/*
*******************************************************************
AUTHOR WIDGET
*******************************************************************
*/
.widget--author {
  display: flex;
  flex-flow: row wrap;
  align-items: flex-start;
  border: none;
  padding: 0;
  flex-grow: 0;
  flex-shrink: 0;
  box-sizing: border-box; }
  .widget--author .avatar {
    border-radius: 50%;
    width: 25%;
    margin-right: 1em; }
  .widget--author .widget__title {
    font-weight: bold;
    margin: 0 0 0.25em; }
  .widget--author .widget__text {
    margin: 0; }
  .widget--author .widget__content {
    text-align: left;
    width: calc(75% - 1em); }

/*scss/molecules/_optin.scss*/
/*
*******************************************************************
OPTIN SECTION
*******************************************************************
*/
.optins > * {
  margin: 0.5em 0; }
  @media screen and (min-width: 55em) {
    .optins > * {
      margin: 0; } }

.optin {
  color: #fff;
  border-radius: 6px; }

/*Optin Subheading*/
.optin__subheading {
  text-align: center;
  border-bottom: 2px solid rgba(58, 150, 210, 0.5);
  text-align: center;
  margin: -1.5em auto 1.5em;
  max-width: 80%; }
  .optin__subheading h4 {
    color: #3a96d2;
    position: relative;
    margin-bottom: -0.5em;
    background: #FFF;
    padding: 0 0.75em;
    display: inline-block;
    bottom: -0.65em; }

/*Optin Image*/
.optin__image__container {
  border-radius: 6px 6px 0 0;
  max-height: 200px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center; }

/*Optin Icon*/
.optin__icon {
  position: relative;
  z-index: 10;
  padding: 15px;
  border-radius: 50%;
  margin: -2.5em auto 0.5em;
  background: #3a96d2;
  width: 70px;
  height: 70px; }
  .optin__icon img {
    width: 40px;
    height: 40px;
    display: block; }

/*Optin Content*/
.optin__content {
  padding: 1em;
  background-image: linear-gradient(180deg, #3a96d2 33%, #2f4a9e 100%);
  text-align: center;
  border-radius: 0 0 6px 6px; }
  @media (min-width: 65.625em) {
    .optin__content {
      padding: 1.5em; } }

/*Optin CTA*/
.optin__cta {
  text-align: center; }
  @media screen and (min-width: 55em) {
    .optin__cta {
      position: relative; }
      .optin__cta .button {
        width: 50%; }
      .optin__cta::before {
        content: "";
        display: block;
        background: url("data:image/svg+xml,%3Csvg width='86' height='38' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M82.758 16.627c1.598 1.824 3.826 2.852 2.198 5.542-1.208.303-2.582.03-4.064-.55-8.933 5.8-18.807 9.846-27.12 12.937-2.834 3.745-6.95 3.211-10.84 3.435-.768-1.343-1.833-2.188-1.402-3.477.481-1.423 4.62-2.046 6.63-2.702 2.992-.98 5.27-2.027 7.152-2.15 6.127-3.2 12.508-5.547 18.524-9.114-13.389-1.999-26.563-3.407-39.614-3.86-4.193-.144-8.593.226-12.647-.808-.358-.01-.16.743-.877.62-4.705-.987-13.703 1.43-18.465-.12-1.188-.39-3.31-2.44-1.58-4.665 4.832 1.656 10.441.494 16.093.478 2.89-.012 5.86.505 8.68.58 12.795.318 25.534.595 37.501 2.727 3.921-.174 8.76.985 13.591 1.585C71.025 12.077 59.776 8.356 50.6 3.966c-.459-1.427-.586-2.268.224-3.966 2.284.126 3.906 1.52 5.837 2.32 7.076 2.954 14.415 4.596 21.3 9.546.623.45.895.153.716 1.203 2.016-.22 2.542 1.798 4.081 3.558' fill='%23FFF' fill-rule='evenodd' opacity='.75'/%3E%3C/svg%3E") 50% 50% no-repeat;
        background-size: contain;
        width: 15%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 5%; } }

/*
*******************************************************************
ALTERNATE OPTIN SECTION
*******************************************************************
*/
.optin--alt .optin__content {
  background-image: linear-gradient(180deg, #424242 33%, #212121 100%); }

.optin--alt .optin__subheading {
  border-bottom-color: #BDBDBD; }
  .optin--alt .optin__subheading h4 {
    color: #757575; }

.optin--alt .optin__icon {
  background: #424242; }

@media screen and (min-width: 55em) {
  .optin--alt .optin__cta::before {
    left: inherit;
    right: 5%;
    transform: rotate(180deg); } }

/*
*******************************************************************
MINIMAL OPTIN STYLES
*******************************************************************
*/
.optin--minimal {
  margin: 0 auto 1.5em;
  display: grid;
  grid-template-columns: 200px auto; }
  .optin--minimal .optin__image__container {
    border-radius: 6px 0 0 6px;
    max-width: 100%;
    height: 100%;
    max-height: 100%; }
    .optin--minimal .optin__image__container img {
      max-width: 380px; }
      @media screen and (min-width: 55em) {
        .optin--minimal .optin__image__container img {
          max-width: 300px; } }
  .optin--minimal .optin__content {
    padding: 0.75em;
    text-align: left;
    border-radius: 0 6px 6px 0; }
    .optin--minimal .optin__content h6 {
      margin-top: 0; }
    .optin--minimal .optin__content li {
      margin: 0; }
  .optin--minimal .gform_fields {
    display: flex; }
    .optin--minimal .gform_fields > li:first-child {
      margin-right: 5px; }
  .optin--minimal .gfield {
    margin-bottom: 0; }
  .optin--minimal input[type="submit"] {
    background: #212121;
    margin-bottom: 0; }
    .optin--minimal input[type="submit"]:hover, .optin--minimal input[type="submit"]:focus, .optin--minimal input[type="submit"]:active {
      background: #080808; }

/*scss/molecules/_Concentration-grids.scss*/
/*
*******************************************************************
DEFAULT Concentration Form
*******************************************************************
*/
.concentration-grid-form {
  max-width: 600px;
  margin: 45px auto; }
  .concentration-grid-form select {
    height: 40px; }

@media screen and (max-width: 35em) {
  .concentration-grid-form {
    margin: 30px auto; } }
.concentration-grid {
  max-width: 600px;
  margin: 0 auto; }
  .concentration-grid .header h3 {
    margin: 70px 0 25px 0;
    font-size: 20px;
    text-align: center; }

.concentration-grid-box {
  width: 100%; }

.start_again_link {
  float: right;
  margin: 10px auto;
  font-size: 16px; }

.bottom_text h4 {
  text-align: center;
  color: #3a96d2; }

/*
*******************************************************************
Default Concentration box layout
*******************************************************************
*/
.row-blocks {
  overflow: hidden;
  border-bottom: 1px solid #414042; }
  .row-blocks:last-child {
    border-bottom: none; }
  .row-blocks .number-block {
    height: 50px;
    text-align: center;
    float: left;
    border-right: 1px solid #414042;
    cursor: pointer; }
    .row-blocks .number-block a {
      color: #414042;
      height: 100%;
      display: block;
      text-decoration: none; }
      .row-blocks .number-block a:hover {
        text-decoration: none; }
    .row-blocks .number-block:last-child {
      border-right: none; }
    .row-blocks .number-block a.selectedOK {
      color: #ffffff;
      background: #2f4a9e; }
    .row-blocks .number-block a.hint {
      color: green; }

a:visited {
  text-decoration: none; }
a:link {
  text-decoration: none; }
a:active {
  text-decoration: none; }

.gametime {
  color: red;
  line-height: 1.3; }

.arrow-info .pre-footer-info {
  overflow: auto;
  width: 100%;
  margin: 0px auto;
  margin-bottom: 2px; }

.grid-wrapper {
  border: 2px solid #414042;
  margin: 0 auto;
  font-weight: bold; }

/*scss/organisms/_aside.scss*/
/*
*******************************************************************
PRIMARY SIDEBAR
*******************************************************************
*/
@media screen and (min-width: 55em) {
  .sidebar--primary {
    padding-left: 3em; } }

@media (min-width: 65.625em) {
  .sidebar--primary {
    padding-left: 4em; } }

/*
*******************************************************************
SOCIAL SIDEBAR
*******************************************************************
*/
.sidebar--social {
  position: fixed;
  top: inherit;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  padding: 0.5em;
  z-index: 1000;
  border-top: 1px solid #F5F5F5;
  /*Shared Count Styles*/
  /*@supports(position:sticky) {
    @include medium {
      &.sticky {
        position: sticky;
        left: 0;
        top: 50px;
      }
    }
  }*/ }
  @media screen and (min-width: 55em) {
    .sidebar--social {
      position: absolute;
      left: -80px;
      right: inherit;
      top: 0;
      bottom: inherit;
      background: none;
      border-top: none;
      padding: 0;
      float: left; } }
  .sidebar--social .shared-counts-wrap.style-icon.style-icon {
    display: flex;
    justify-content: center; }
    .sidebar--social .shared-counts-wrap.style-icon.style-icon .shared-counts-button {
      display: block;
      float: none; }
    @media screen and (min-width: 55em) {
      .sidebar--social .shared-counts-wrap.style-icon.style-icon {
        display: block; } }

/*scss/organisms/_footer.scss*/
/*
*******************************************************************
PRIMARY FOOTER STYLES
*******************************************************************
*/
.footer {
  font-size: 1em;
  text-align: center;
  position: relative;
  margin-top: 3em;
  padding: 1.5em 0 0;
  border-top: 2px solid #F5F5F5; }
  @media screen and (min-width: 55em) {
    .footer {
      font-size: 0.85em; } }
  .footer a {
    font-weight: normal;
    color: #757575; }
    .footer a:hover, .footer a:active {
      opacity: 0.75; }
  .footer p a {
    text-decoration: underline; }
  @media screen and (min-width: 55em) {
    .footer {
      text-align: left; } }

.footer__copyright {
  text-align: center;
  margin-top: 1.5em;
  padding: 1em 0;
  opacity: 0.75; }
  @media screen and (min-width: 55em) {
    .footer__copyright {
      font-size: 0.85em; } }
  .footer__copyright p {
    margin: 0; }
  @media screen and (min-width: 55em) {
    .footer__copyright {
      text-align: left; } }

/*
*******************************************************************
FOOTER ICONS
*******************************************************************
*/
.logo__icon {
  width: 68px;
  height: 68px;
  margin: 0 auto 1em;
  display: block; }
  @media screen and (min-width: 55em) {
    .logo__icon {
      margin: 1em 0; } }

/*
*******************************************************************
FOOTER WIDGETS
*******************************************************************
*/
.footer__widget {
  background: none;
  border: none;
  font-size: 100%; }
  .footer__widget a {
    font-weight: normal;
    text-decoration: none;
    color: #757575; }
    .footer__widget a:hover, .footer__widget a:focus, .footer__widget a:active {
      text-decoration: underline; }

.footer__heading {
  margin-bottom: 2em;
  color: #616161;
  font-size: 16px; }
  @media screen and (min-width: 48em) {
    .footer__heading {
      font-size: 14px; } }

/*
*******************************************************************
POST FOOTER STYLES
*******************************************************************
*/
.post__meta {
  margin: 3em 0 2em;
  font-size: 1rem;
  color: #757575;
  text-align: center; }
  @media screen and (min-width: 48em) {
    .post__meta {
      font-size: 0.85rem; } }
  @media screen and (min-width: 55em) {
    .post__meta {
      font-size: 0.8rem; } }
  .post__meta::before {
    content: "";
    display: block;
    width: 100%;
    max-width: 200px;
    height: 2px;
    background: #EEEEEE;
    margin: 1.5em auto; }
  .post__meta a {
    color: #616161;
    font-weight: normal;
    text-decoration: none; }

.footer--post {
  margin-top: 2em;
  clear: both; }
  .footer--post section {
    margin: 1.5em 0; }
  .footer--post .section__heading {
    margin-bottom: 0.25em;
    font-weight: bold; }

.footer--social {
  text-align: center;
  justify-content: space-between;
  padding: 1.5em 0;
  border-top: 1px solid #EEEEEE;
  border-bottom: 1px solid #EEEEEE; }
  .footer--social .section__heading {
    min-width: 320px; }
  @media screen and (min-width: 48em) {
    .footer--social {
      text-align: left;
      display: flex;
      align-items: center; } }

/*scss/organisms/_header.scss*/
/*
*******************************************************************
PRIMARY HEADER STYLES
*******************************************************************
*/
.header--primary {
  background: #fff;
  padding: 0.25em 0; }
  @media (min-width: 65.625em) {
    .header--primary {
      padding: 0;
      display: flex;
      flex-flow: row nowrap;
      align-items: center;
      justify-content: space-between; } }

.header__primary {
  flex-basis: 100%;
  max-width: 100%; }

.header__logo {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%; }
  @media (min-width: 65.625em) {
    .header__logo {
      width: 368px; } }

/*Logo Styles*/
.logo {
  display: block;
  margin: 10px 10px 10px 0;
  text-decoration: none;
  color: #424242;
  width: 220px;
  height: 35px; }
  @media (min-width: 65.625em) {
    .logo {
      width: 368px;
      height: 57px;
      margin-right: 0.5em; } }

/*
*******************************************************************
HEADER NAVIGATION STYLES
*******************************************************************
*/
/*Mobile Menu Toggle*/
.header__navigation--menu {
  display: flex;
  align-items: center; }
  @media (min-width: 65.625em) {
    .header__navigation--menu {
      display: none; } }

.header__navigation {
  display: flex;
  flex-flow: row wrap; }
  .header__navigation > div {
    flex-basis: 100%;
    max-width: 100%; }
  .header__navigation .header__secondary {
    order: 2; }
    @media (min-width: 65.625em) {
      .header__navigation .header__secondary {
        order: 1; } }
  .header__navigation .header__primary {
    order: 1; }
    @media (min-width: 65.625em) {
      .header__navigation .header__primary {
        order: 2; } }

/*
*******************************************************************
MINIMAL/HIDDEN HEADER STYLES
*******************************************************************
*/
.nav--is-hidden .header__navigation, .nav--is-hidden .header__secondary, .nav--is-hidden .header__navigation--menu {
  display: none; }

.nav--is-hidden .header__logo {
  margin: 1.5em auto; }

.nav--is-hidden .header--primary {
  border-bottom: none; }

/*scss/organisms/_page-content.scss*/
/*
*******************************************************************
PAGE CONTENT
*******************************************************************
*/
body {
  overflow-x: hidden; }

/*scss/pages/_default.scss*/
.content.container {
  padding-bottom: 1.5em; }

.single .content.container {
  padding-bottom: 0; }

.content--post {
  margin: 0; }
  .content--post > h1:first-child, .content--post > h2:first-child, .content--post > h3:first-child, .content--post > h4:first-child, .content--post > h5:first-child, .content--post > h6:first-child {
    margin-top: 0;
    /*remove top margin if h element is first in content, otherwise it creates too much space at the top of the page*/ }
  .content--post > p:first-child {
    margin-top: 0; }

.content--primary {
  margin-top: 1em;
  margin-bottom: 1em; }
  @media screen and (min-width: 55em) {
    .content--primary {
      margin-top: 1.5em;
      margin-bottom: 1.5em; } }

/*DEFAULT PAGE STRUCTURE*/
.content {
  max-width: 1400px;
  width: 95%;
  margin: 0 auto;
  box-sizing: border-box; }

/*
*******************************************************************
SINGLE POST STRUCTURE
*******************************************************************
*/
.page--single .post__content {
  max-width: 768px;
  position: relative;
  margin-left: auto;
  margin-right: auto; }

.post__content {
  position: relative; }

/*
*******************************************************************
LANDING PAGE STRUCTURE
*******************************************************************
*/
.page--landing.content--primary {
  margin-top: 0; }

/*
*******************************************************************
SEARCH PAGE
*******************************************************************
*/
.search .header--page {
  margin-top: 1.5em; }

/*_home.scss*/
.page-template-page-home .page--home {
  margin-top: 0; }

.page-template-page-home .footer {
  margin-top: 0;
  border-top: none; }

/*_shared-count.scss*/
/*
*******************************************************************
SHARED COUNTS CUSTOM STYLES
*******************************************************************
*/
/*ICONS*/
.shared-counts-wrap.style-icon {
  margin-bottom: 0;
  width: inherit; }
  .shared-counts-wrap.style-icon a {
    text-decoration: none; }
  .shared-counts-wrap.style-icon .shared-counts-button .shared-counts-icon {
    width: 20px;
    height: 20px;
    min-height: 20px;
    min-width: 20px;
    line-height: 20px; }
    .shared-counts-wrap.style-icon .shared-counts-button .shared-counts-icon svg {
      width: 20px;
      height: 20px;
      min-height: 20px;
      min-width: 20px; }

/*BUTTONS / BAR*/
.section--share {
  margin: 3em 0; }
  .section--share .shared-counts-wrap.style-bar {
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    justify-content: center;
    margin: 0; }
    .section--share .shared-counts-wrap.style-bar a:first-of-type {
      border-radius: 0; }
    .section--share .shared-counts-wrap.style-bar a:last-of-type {
      border-radius: 0; }
    .section--share .shared-counts-wrap.style-bar .shared-counts-button, .section--share .shared-counts-wrap.style-bar .shared-counts-button:not(.included_total) {
      margin: 5px;
      padding: 1.5em;
      font-size: 18px; }
      .section--share .shared-counts-wrap.style-bar .shared-counts-button svg, .section--share .shared-counts-wrap.style-bar .shared-counts-button:not(.included_total) svg {
        min-width: 16px;
        min-height: 16px; }

/*_gravityforms.scss*/
/*
*******************************************************************
GENERAL GRAVITY FORM STYLES
*******************************************************************
*/
.gform_wrapper {
  /*Hide Label*/ }
  .gform_wrapper ul {
    padding: 0;
    margin: 0; }
  .gform_wrapper li {
    list-style: none;
    margin-bottom: 1em; }
  .gform_wrapper .gform_body .gfield {
    padding: 0; }
    .gform_wrapper .gform_body .gfield::before {
      display: none;
      /*hide check mark icons in optins*/ }
  .gform_wrapper .ginput_complex label {
    font-size: 90%;
    font-weight: normal; }
  .gform_wrapper .hidden_label label {
    display: none; }
  .gform_wrapper .ginput_container_checkbox label {
    display: inline-block; }

  .gform_wrapper select.gfield_select, 
  .gform_wrapper select.gfield_select option {
    color: #888 !important;
  }  
  .gform_wrapper li.gfield.gf_list_2col ul.gfield_checkbox li,.gform_wrapper li.gfield.gf_list_2col ul.gfield_radio li {
      width: 100%;
      display: -moz-inline-stack;
      display: inline-block;
      margin: 0;
      padding-right: 16px;
      padding-left: 30px;
      min-height: 28px;
      vertical-align: top;
      font-size: 90%;
      cursor: pointer;
  }
  .gform_wrapper li.gfield.gf_list_2col ul.gfield_checkbox li input[type="checkbox"],.gform_wrapper li.gfield.gf_list_2col ul.gfield_radio li input[type="checkbox"], 
  .gform_wrapper li.gfield.gf_list_2col ul.gfield_checkbox li input[type="radio"],.gform_wrapper li.gfield.gf_list_2col ul.gfield_radio li input[type="radio"] {   
      width: 28px;
      height: 28px;
  }
  .gform_wrapper li.gfield.gf_list_2col ul.gfield_checkbox li label,.gform_wrapper li.gfield.gf_list_2col ul.gfield_radio li label,.gform_wrapper li.gfield.gf_list_3col ul.gfield_checkbox li label,.gform_wrapper li.gfield.gf_list_3col ul.gfield_radio li label,.gform_wrapper li.gfield.gf_list_4col ul.gfield_checkbox li label,.gform_wrapper li.gfield.gf_list_4col ul.gfield_radio li label {
      max-width: 75%;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
      vertical-align: middle;
      font-size: 90%;
      position: relative;
      top: -10px;
  }
  .gform_wrapper ul.gform_fields:not(.top_label) li.gf_list_2col_vertical label.gfield_label,.gform_wrapper ul.gform_fields:not(.top_label) li.gfield.gf_list_2col label.gfield_label,.gform_wrapper ul.gform_fields:not(.top_label) li.gfield.gf_list_3col label.gfield_label,.gform_wrapper ul.gform_fields:not(.top_label) li.gfield.gf_list_4col label.gfield_label,.gform_wrapper ul.gform_fields:not(.top_label) li.gfield.gf_list_5col label.gfield_label,.gform_wrapper ul.gform_fields:not(.top_label) li.gfield.gf_list_inline label.gfield_label {
      margin: 0 0 10px
  }

  .gform_wrapper li.gfield.gf_list_2col ul.gfield_checkbox,.gform_wrapper li.gfield.gf_list_2col ul.gfield_radio,.gform_wrapper li.gfield.gf_list_3col ul.gfield_checkbox,.gform_wrapper li.gfield.gf_list_3col ul.gfield_radio,.gform_wrapper li.gfield.gf_list_4col ul.gfield_checkbox,.gform_wrapper li.gfield.gf_list_4col ul.gfield_radio,.gform_wrapper li.gfield.gf_list_5col ul.gfield_checkbox,.gform_wrapper li.gfield.gf_list_5col ul.gfield_radio {
      overflow: hidden;
      margin-top: 10px;
  }

  @media screen and (min-width: 48em) { 
    .gform_wrapper li.gfield.gf_list_2col ul.gfield_checkbox li,.gform_wrapper li.gfield.gf_list_2col ul.gfield_radio li {
      width: 50%;
    }
  }


/*
*******************************************************************
CONTACT FORM 7 STYLES
*******************************************************************
*/
.wpcf7-form-control-wrap {
  display: block; }

/*_memberium.scss*/
/*
*******************************************************************
LOGIN FORM STYLES
*******************************************************************
*/
.page-id-27970 .header--page {
  text-align: center; }

#loginform, #memb_password_send-1 {
  max-width: 100%;
  width: 600px;
  margin: 0 auto 2em; }
  #loginform br, #memb_password_send-1 br {
    display: none; }
  #loginform input[type="text"], #loginform input[type="password"], #memb_password_send-1 input[type="text"], #memb_password_send-1 input[type="password"] {
    width: 100%; }
  #loginform input[type="submit"], #memb_password_send-1 input[type="submit"] {
    margin: 0.75em auto 0;
    display: block; }

/*
*******************************************************************
Remove Facebook Comments (plugin) from Lessons
*******************************************************************
*/
.single-sfwd-lessons .fb-comments {
  display: none !important; }
  .single-sfwd-courses .fb-comments {
    display: none !important; }

/*
*******************************************************************
PRINT STYLES
*******************************************************************
*/
@media print {
  body {
    background: white;
    color: black;
    margin: 0 auto;
    max-width: 80%;
    font-size: 0.9em;
    overflow: hidden; }
  .header__logo .col__lg--3 {
    width: 100%;
    flex-basis: 100%;
    max-width: 100%; }
  .site__logo {
    margin: .25em auto; }
  .sticky.header--primary {
    position: relative; }
  #masthead {
    border-bottom: none; }
  #site-header-menu, #menu-toggle {
    display: none; }
  .header__meta {
    display: none; }
  .widget--progress {
    display: none !important; }
  .content--primary {
    margin: 0; } }
  @media print and (min-width: 65.625em) {
    .content--primary {
      margin: 0; } }
  @media print and (min-width: 75em) {
    .content--primary {
      font-size: 0.75em; } }

@media print and (min-width: 65.625em) {
  .single-post .content {
    font-size: 0.75em; } }

@media print {
  h1, h2, h3, h4, h5 {
    page-break-after: avoid;
    page-break-inside: avoid; }
  ul, img {
    page-break-inside: avoid; }
  .page .content--post p:first-child:first-letter,
  .single-post .content--post p:first-child:first-letter {
    float: none;
    font-size: inherit;
    line-height: inherit;
    padding-top: 0;
    padding-right: 0;
    padding-left: 0;
    font-family: Georgia, "Times New Roman", serif; }
  .page .content--post iframe,
  .single-post .content--post iframe {
    display: none; }
  .footer--post {
    /*Hide Social Sharing*/ }
    .footer--post .section--bordered {
      display: none; }
  .section--newsletter {
    display: none; }
  .section--related {
    display: none; }
  .section--comments {
    display: none !important; }
  footer.footer {
    display: none; }
  #comment-policy {
    display: none; }
  .essb_mailform, .essb_mailform_shadow, .om-wuf8xgsivo1nezacnttg-holder, .omapi-shortcode-helper, .omapi-shortcode-parsed {
    display: none !important; } }

@media print and (color) {
  * {
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact; } }

/*# sourceMappingURL=style.css.map */