@charset "UTF-8";
/*!
******************************************************************
Theme Name: Peter Attia WordPress Theme
Theme URI: https://www.peterattiamd.com/
Description: Theme for Peter Attia
Author: Andrew Pautler
Author URI: http://www.pautlerdesign.com
Version: 1.2.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*/
/*Border Radius*/
/*Usage: @include rounded(3px);*/
/* Responsive Font Sizes */
/*Usage: @include font-sizes( 30px, 36px, 40px );*/
/*Clearfix*/
/*Usage: @extend %clearfix;*/
#peterattia .form--donate .field--amount .ginput_container, #peterattia .form--donate .field--donation-type .ginput_container {
  *zoom: 1; }
  #peterattia .form--donate .field--amount .ginput_container:before, #peterattia .form--donate .field--donation-type .ginput_container:before, #peterattia .form--donate .field--amount .ginput_container:after, #peterattia .form--donate .field--donation-type .ginput_container:after {
    content: " ";
    display: table; }
  #peterattia .form--donate .field--amount .ginput_container:after, #peterattia .form--donate .field--donation-type .ginput_container:after {
    clear: both; }

/*scss/utils/_variables.scss*/
/****** COLORS ******/
/*Color variables declared in /scss/base/_colors.scss*/
/****** TYPOGRAPHY ******/
/*Font variables declared in /scss/base/_fonts.scss*/
/*Responsive Typography*/
/*Taken from http://codepen.io/MadeByMike/pen/YPJJYv*/
/*https://gist.github.com/apautler/641178e22c9fd94f8464f97e5343b6e0*/
/*1.2*/
/****** 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 {
  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; }

.clear {
  clear: both; }

.noscroll {
  overflow: hidden; }

.mobile-only {
  display: block; }

.desktop-only {
  display: none; }

@media (min-width: 55em) {
  .mobile-only {
    display: none; }
  .desktop-only {
    display: block; } }

.no-padding {
  padding: 0; }

/*Print CSS added in style.scss*/
/*scss/base/_colors.scss*/
/*Brand Colors*/
/**
 * Brand Color
 *
 */
/*Common Grays*/
/*Social Media Colors*/
/*Messages*/
/*scss/base/_fonts.scss*/
/*********************************
AVENIR
*********************************/
/**
 * @license
 * MyFonts Webfont Build ID 3464475, 2017-10-13T18:29:02-0400
 *
 * The fonts listed in this notice are subject to the End User License
 * Agreement(s) entered into by the website owner. All other parties are
 * explicitly restricted from using the Licensed Webfonts(s).
 *
 * You may obtain a valid license at the URLs below.
 *
 * Webfont: AvenirLTStd-Heavy by Linotype
 * URL: https://www.myfonts.com/fonts/linotype/avenir/85-heavy/
 *
 * Webfont: AvenirLTStd-Light by Linotype
 * URL: https://www.myfonts.com/fonts/linotype/avenir/35-light/
 *
 * Webfont: AvenirLTStd-LightOblique by Linotype
 * URL: https://www.myfonts.com/fonts/linotype/avenir/35-light-oblique/
 *
 * Webfont: AvenirLTStd-HeavyOblique by Linotype
 * URL: https://www.myfonts.com/fonts/linotype/avenir/85-heavy-oblique/
 *
 *
 * License: https://www.myfonts.com/viewlicense?type=web&buildid=3464475
 * Licensed pageviews: 250,000
 * Webfonts copyright: Copyright &#x00A9; 1989, 1995, 2002 Adobe Systems Incorporated.  All Rights Reserved. &#x00A9; 1981, 1995, 2002 Heidelberger Druckmaschinen AG. All rights reserved.
 *
 * © 2017 MyFonts Inc
*/
@font-face {
  font-family: 'Avenir';
  src: url("webfonts/avenir/34DD1B_0_0.eot");
  src: url("webfonts/avenir/34DD1B_0_0.eot?#iefix") format("embedded-opentype"), url("webfonts/avenir/34DD1B_0_0.woff2") format("woff2"), url("webfonts/avenir/34DD1B_0_0.woff") format("woff"), url("webfonts/avenir/34DD1B_0_0.ttf") format("truetype");
  font-weight: bold; }

@font-face {
  font-family: 'Avenir';
  src: url("webfonts/avenir/34DD1B_1_0.eot");
  src: url("webfonts/avenir/34DD1B_1_0.eot?#iefix") format("embedded-opentype"), url("webfonts/avenir/34DD1B_1_0.woff2") format("woff2"), url("webfonts/avenir/34DD1B_1_0.woff") format("woff"), url("webfonts/avenir/34DD1B_1_0.ttf") format("truetype");
  font-weight: normal; }

@font-face {
  font-family: 'Avenir';
  src: url("webfonts/avenir/34DD1B_2_0.eot");
  src: url("webfonts/avenir/4DD1B_2_0.eot?#iefix") format("embedded-opentype"), url("webfonts/avenir/34DD1B_2_0.woff2") format("woff2"), url("webfonts/avenir/34DD1B_2_0.woff") format("woff"), url("webfonts/avenir/34DD1B_2_0.ttf") format("truetype");
  font-weight: normal;
  font-style: italic; }

@font-face {
  font-family: 'Avenir';
  src: url("webfonts/avenir/34DD1B_3_0.eot");
  src: url("webfonts/avenir/34DD1B_3_0.eot?#iefix") format("embedded-opentype"), url("webfonts/avenir/34DD1B_3_0.woff2") format("woff2"), url("webfonts/avenir/34DD1B_3_0.woff") format("woff"), url("webfonts/avenir/34DD1B_3_0.ttf") format("truetype");
  font-weight: bold;
  font-style: italic; }

/*********************************
PORTRAIT
*********************************/
/*Headlines*/
@font-face {
  font-family: 'Portrait Web';
  src: url("webfonts/portrait/Portrait-LightItalic-Web.eot");
  src: url("webfonts/portrait/Portrait-LightItalic-Web.eot?#iefix") format("embedded-opentype"), url("webfonts/portrait/Portrait-LightItalic-Web.woff2") format("woff2"), url("webfonts/portrait/Portrait-LightItalic-Web.woff") format("woff");
  font-weight: 600;
  font-style: italic;
  font-stretch: normal; }

@font-face {
  font-family: 'Portrait Web';
  src: url("webfonts/portrait/Portrait-Light-Web.eot");
  src: url("webfonts/portrait/Portrait-Light-Web.eot?#iefix") format("embedded-opentype"), url("webfonts/portrait/Portrait-Light-Web.woff2") format("woff2"), url("webfonts/portrait/Portrait-Light-Web.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-stretch: normal; }

/*Text*/
@font-face {
  font-family: 'Portrait Text Web';
  src: url("webfonts/portrait/PortraitText-BoldItalic-Web.eot");
  src: url("webfonts/portrait/PortraitText-BoldItalic-Web.eot?#iefix") format("embedded-opentype"), url("webfonts/portrait/PortraitText-BoldItalic-Web.woff2") format("woff2"), url("webfonts/portrait/PortraitText-BoldItalic-Web.woff") format("woff");
  font-weight: 700;
  font-style: italic;
  font-stretch: normal; }

@font-face {
  font-family: 'Portrait Text Web';
  src: url("webfonts/portrait/PortraitText-Bold-Web.eot");
  src: url("webfonts/portrait/PortraitText-Bold-Web.eot?#iefix") format("embedded-opentype"), url("webfonts/portrait/PortraitText-Bold-Web.woff2") format("woff2"), url("webfonts/portrait/PortraitText-Bold-Web.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-stretch: normal; }

@font-face {
  font-family: 'Portrait Text Web';
  src: url("webfonts/portrait/PortraitText-RegularItalic-Web.eot");
  src: url("webfonts/portrait/PortraitText-RegularItalic-Web.eot?#iefix") format("embedded-opentype"), url("webfonts/portrait/PortraitText-RegularItalic-Web.woff2") format("woff2"), url("webfonts/portrait/PortraitText-RegularItalic-Web.woff") format("woff");
  font-weight: 400;
  font-style: italic;
  font-stretch: normal; }

@font-face {
  font-family: 'Portrait Text Web';
  src: url("webfonts/portrait/PortraitText-Regular-Web.eot");
  src: url("webfonts/portrait/PortraitText-Regular-Web.eot?#iefix") format("embedded-opentype"), url("webfonts/portrait/PortraitText-Regular-Web.woff2") format("woff2"), url("webfonts/portrait/PortraitText-Regular-Web.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-stretch: normal; }

@font-face {
  font-family: 'Portrait Inline Web';
  src: url("webfonts/portrait/PortraitInline-Sans-Web.eot");
  src: url("webfonts/portrait/PortraitInline-Sans-Web.eot?#iefix") format("embedded-opentype"), url("webfonts/portrait/PortraitInline-Sans-Web.woff2") format("woff2"), url("webfonts/portrait/PortraitInline-Sans-Web.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-stretch: normal; }

.sans {
  font-family: "Avenir", Helvetica, Arial, sans-serif; }

.serif {
  font-family: "Portrait Text Web", "Times New Roman", serif; }

/*scss/base/_grid.scss*/
/*-------------------------------------------------------*
 based on Pintsize (https://github.com/alistairtweedie/Pintsize/)
\*-------------------------------------------------------*/
.container {
  max-width: 1400px;
  width: 92%;
  margin: 0 auto;
  box-sizing: border-box; }

.flex {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-flow: row wrap;
  flex-flow: row wrap; }

.flex--auto .col {
  -webkit-flex-grow: 1;
  flex-grow: 1; }

.flex .col.-webkit-flex-bug {
  -webkit-flex: 1 1 0;
  /* this */ }

.flex--start {
  -webkit-justify-content: flex-start;
  justify-content: flex-start; }

.flex--start .col {
  -webkit-flex-grow: 0;
  flex-grow: 0; }

.flex--center {
  -webkit-justify-content: center;
  justify-content: center; }

.flex--center .col {
  -webkit-flex-grow: 0;
  flex-grow: 0; }

.flex--end {
  -webkit-justify-content: flex-end;
  justify-content: flex-end; }

.flex--end .col {
  -webkit-flex-grow: 0;
  flex-grow: 0; }

.flex--top {
  -webkit-align-items: flex-start;
  align-items: flex-start; }

.flex--middle {
  -webkit-align-items: center;
  align-items: center; }

.flex--baseline {
  -webkit-align-items: baseline;
  align-items: baseline; }

.flex--wrap {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap; }

.flex--row {
  -webkit-flex-direction: row;
  flex-direction: row; }

.flex--bottom {
  -webkit-align-items: flex-end;
  align-items: flex-end; }

.flex--bottom .col {
  -webkit-flex-grow: 1;
  flex-grow: 1; }

.flex--around {
  -webkit-justify-content: space-around;
  justify-content: space-around; }

.flex--around .col {
  -webkit-flex-grow: 0;
  flex-grow: 0;
  -webkit-flex-shrink: 1;
          flex-shrink: 1; }

.flex--between {
  -webkit-justify-content: space-between;
  justify-content: space-between; }

.flex--between .col {
  -webkit-flex-grow: 0;
  flex-grow: 0;
  -webkit-flex-shrink: 1;
          flex-shrink: 1; }

.flex--reverse {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse; }

.col {
  -webkit-flex-grow: 0;
  flex-grow: 0;
  -webkit-flex-shrink: 0;
          flex-shrink: 0;
  -webkit-flex-basis: auto;
          flex-basis: auto;
  max-width: 100%;
  box-sizing: border-box;
  padding-left: 10px;
  padding-right: 10px; }

.col--first {
  -webkit-order: -1;
  order: -1; }

.col--last {
  -webkit-order: 1;
  order: 1; }

.col--1 {
  -webkit-flex-basis: 8.33333%;
          flex-basis: 8.33333%;
  max-width: 8.33333%; }

.col--2 {
  -webkit-flex-basis: 16.66667%;
          flex-basis: 16.66667%;
  max-width: 16.66667%; }

.col--3 {
  -webkit-flex-basis: 25%;
          flex-basis: 25%;
  max-width: 25%; }

.col--4 {
  -webkit-flex-basis: 33.33333%;
          flex-basis: 33.33333%;
  max-width: 33.33333%; }

.col--5 {
  -webkit-flex-basis: 41.66667%;
          flex-basis: 41.66667%;
  max-width: 41.66667%; }

.col--6 {
  -webkit-flex-basis: 50%;
          flex-basis: 50%;
  max-width: 50%; }

.col--7 {
  -webkit-flex-basis: 58.33333%;
          flex-basis: 58.33333%;
  max-width: 58.33333%; }

.col--8 {
  -webkit-flex-basis: 66.66667%;
          flex-basis: 66.66667%;
  max-width: 66.66667%; }

.col--9 {
  -webkit-flex-basis: 75%;
          flex-basis: 75%;
  max-width: 75%; }

.col--10 {
  -webkit-flex-basis: 83.33333%;
          flex-basis: 83.33333%;
  max-width: 83.33333%; }

.col--11 {
  -webkit-flex-basis: 91.66667%;
          flex-basis: 91.66667%;
  max-width: 91.66667%; }

.col--12 {
  -webkit-flex-basis: 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 (min-width: 35em) {
  .col__xs--1 {
    -webkit-flex-basis: 8.33333%;
            flex-basis: 8.33333%;
    max-width: 8.33333%; }
  .col__xs--2 {
    -webkit-flex-basis: 16.66667%;
            flex-basis: 16.66667%;
    max-width: 16.66667%; }
  .col__xs--3 {
    -webkit-flex-basis: 25%;
            flex-basis: 25%;
    max-width: 25%; }
  .col__xs--4 {
    -webkit-flex-basis: 33.33333%;
            flex-basis: 33.33333%;
    max-width: 33.33333%; }
  .col__xs--5 {
    -webkit-flex-basis: 41.66667%;
            flex-basis: 41.66667%;
    max-width: 41.66667%; }
  .col__xs--6 {
    -webkit-flex-basis: 50%;
            flex-basis: 50%;
    max-width: 50%; }
  .col__xs--7 {
    -webkit-flex-basis: 58.33333%;
            flex-basis: 58.33333%;
    max-width: 58.33333%; }
  .col__xs--8 {
    -webkit-flex-basis: 66.66667%;
            flex-basis: 66.66667%;
    max-width: 66.66667%; }
  .col__xs--9 {
    -webkit-flex-basis: 75%;
            flex-basis: 75%;
    max-width: 75%; }
  .col__xs--10 {
    -webkit-flex-basis: 83.33333%;
            flex-basis: 83.33333%;
    max-width: 83.33333%; }
  .col__xs--11 {
    -webkit-flex-basis: 91.66667%;
            flex-basis: 91.66667%;
    max-width: 91.66667%; }
  .col__xs--12 {
    -webkit-flex-basis: 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-order: -1;
    order: -1; }
  .col__xs--last {
    -webkit-order: 1;
    order: 1; } }

@media (min-width: 48em) {
  .col__sm--1 {
    -webkit-flex-basis: 8.33333%;
            flex-basis: 8.33333%;
    max-width: 8.33333%; }
  .col__sm--2 {
    -webkit-flex-basis: 16.66667%;
            flex-basis: 16.66667%;
    max-width: 16.66667%; }
  .col__sm--3 {
    -webkit-flex-basis: 25%;
            flex-basis: 25%;
    max-width: 25%; }
  .col__sm--4 {
    -webkit-flex-basis: 33.33333%;
            flex-basis: 33.33333%;
    max-width: 33.33333%; }
  .col__sm--5 {
    -webkit-flex-basis: 41.66667%;
            flex-basis: 41.66667%;
    max-width: 41.66667%; }
  .col__sm--6 {
    -webkit-flex-basis: 50%;
            flex-basis: 50%;
    max-width: 50%; }
  .col__sm--7 {
    -webkit-flex-basis: 58.33333%;
            flex-basis: 58.33333%;
    max-width: 58.33333%; }
  .col__sm--8 {
    -webkit-flex-basis: 66.66667%;
            flex-basis: 66.66667%;
    max-width: 66.66667%; }
  .col__sm--9 {
    -webkit-flex-basis: 75%;
            flex-basis: 75%;
    max-width: 75%; }
  .col__sm--10 {
    -webkit-flex-basis: 83.33333%;
            flex-basis: 83.33333%;
    max-width: 83.33333%; }
  .col__sm--11 {
    -webkit-flex-basis: 91.66667%;
            flex-basis: 91.66667%;
    max-width: 91.66667%; }
  .col__sm--12 {
    -webkit-flex-basis: 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-order: -1;
    order: -1; }
  .col__sm--last {
    -webkit-order: 1;
    order: 1; } }

@media (min-width: 55em) {
  .col__md--1 {
    -webkit-flex-basis: 8.33333%;
            flex-basis: 8.33333%;
    max-width: 8.33333%; }
  .col__md--2 {
    -webkit-flex-basis: 16.66667%;
            flex-basis: 16.66667%;
    max-width: 16.66667%; }
  .col__md--3 {
    -webkit-flex-basis: 25%;
            flex-basis: 25%;
    max-width: 25%; }
  .col__md--4 {
    -webkit-flex-basis: 33.33333%;
            flex-basis: 33.33333%;
    max-width: 33.33333%; }
  .col__md--5 {
    -webkit-flex-basis: 41.66667%;
            flex-basis: 41.66667%;
    max-width: 41.66667%; }
  .col__md--6 {
    -webkit-flex-basis: 50%;
            flex-basis: 50%;
    max-width: 50%; }
  .col__md--7 {
    -webkit-flex-basis: 58.33333%;
            flex-basis: 58.33333%;
    max-width: 58.33333%; }
  .col__md--8 {
    -webkit-flex-basis: 66.66667%;
            flex-basis: 66.66667%;
    max-width: 66.66667%; }
  .col__md--9 {
    -webkit-flex-basis: 75%;
            flex-basis: 75%;
    max-width: 75%; }
  .col__md--10 {
    -webkit-flex-basis: 83.33333%;
            flex-basis: 83.33333%;
    max-width: 83.33333%; }
  .col__md--11 {
    -webkit-flex-basis: 91.66667%;
            flex-basis: 91.66667%;
    max-width: 91.66667%; }
  .col__md--12 {
    -webkit-flex-basis: 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-order: -1;
    order: -1; }
  .col__md--last {
    -webkit-order: 1;
    order: 1; } }

@media (min-width: 68em) {
  .col__lg--1 {
    -webkit-flex-basis: 8.33333%;
            flex-basis: 8.33333%;
    max-width: 8.33333%; }
  .col__lg--2 {
    -webkit-flex-basis: 16.66667%;
            flex-basis: 16.66667%;
    max-width: 16.66667%; }
  .col__lg--3 {
    -webkit-flex-basis: 25%;
            flex-basis: 25%;
    max-width: 25%; }
  .col__lg--4 {
    -webkit-flex-basis: 33.33333%;
            flex-basis: 33.33333%;
    max-width: 33.33333%; }
  .col__lg--5 {
    -webkit-flex-basis: 41.66667%;
            flex-basis: 41.66667%;
    max-width: 41.66667%; }
  .col__lg--6 {
    -webkit-flex-basis: 50%;
            flex-basis: 50%;
    max-width: 50%; }
  .col__lg--7 {
    -webkit-flex-basis: 58.33333%;
            flex-basis: 58.33333%;
    max-width: 58.33333%; }
  .col__lg--8 {
    -webkit-flex-basis: 66.66667%;
            flex-basis: 66.66667%;
    max-width: 66.66667%; }
  .col__lg--9 {
    -webkit-flex-basis: 75%;
            flex-basis: 75%;
    max-width: 75%; }
  .col__lg--10 {
    -webkit-flex-basis: 83.33333%;
            flex-basis: 83.33333%;
    max-width: 83.33333%; }
  .col__lg--11 {
    -webkit-flex-basis: 91.66667%;
            flex-basis: 91.66667%;
    max-width: 91.66667%; }
  .col__lg--12 {
    -webkit-flex-basis: 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-order: -1;
    order: -1; }
  .col__lg--last {
    -webkit-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: 1400px;
  /* Post title styling */ }

/* Main column width */
.wp-block {
  max-width: 1400px;
  /* Wide column width */
  /* Full column width */ }
  .wp-block[data-align="wide"] {
    max-width: none; }
    @media (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; }

/*Columns Styling*/
.wp-block-columns {
  -webkit-justify-content: center;
          justify-content: center; }
  @media (max-width: 55em) {
    .wp-block-columns .wp-block-column {
      margin-bottom: 1em; } }
/*Offset Columns (for testimonials)*/
@media (min-width: 55em) {
  .wp-block-columns--offset .wp-block-column {
    margin-bottom: -3em;
    z-index: 10; } }

.wp-block-columns.is-style-tight {
  gap: 1em; }

/* 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;
}*/
/*scss/atoms/_text.scss*/
body {
  font-size: 1.1em;
  line-height: 1.65;
  font-family: "Portrait Text Web", "Times New Roman", serif;
  color: #424242;
  box-sizing: border-box;
  overflow-x: hidden;
  scroll-behavior: smooth; }

::-moz-selection {
  background: #2195D3;
  color: #fff;
  text-shadow: none; }

::selection {
  background: #2195D3;
  color: #fff;
  text-shadow: none; }

/* Horizontal Rule */
hr {
  border: 0;
  height: 1px;
  background: rgba(0, 0, 0, 0.2);
  margin: 1.5em 0; }

abbr {
  border-bottom: 1px dotted #EEEEEE;
  cursor: help; }

a {
  color: #2195D3;
  /*color: $gray-900;*/
  text-decoration: none;
  font-weight: normal;
  transition: .2s all ease-in-out; }
  a:hover, a:focus, a:active {
    color: #1a76a7;
    /*color: darken($gray-900, 10%);*/ }

.link--read-more {
  display: block;
  margin-top: 0.75em; }

.content p, .content ul, .content ol, article p, article ul, article ol {
  margin-top: 0;
  margin-bottom: 1em; }

.content .button, .content .wp-block-button__link, article .button, article .wp-block-button__link {
  color: #fff;
  text-decoration: none;
  padding: 1em 1.5em; }
  .content .button::after, .content .wp-block-button__link::after, article .button::after, article .wp-block-button__link::after {
    display: none; }
  .content .button:hover, .content .wp-block-button__link:hover, article .button:hover, article .wp-block-button__link:hover {
    color: #fff; }

.content ol, .content ul, article ol, article ul {
  list-style: initial;
  padding-left: 1.5em;
  margin-left: 1em; }

.content ol, article ol {
  list-style: decimal; }

.content--post p, .content--post ul, .content--post ol {
  /*a {
      position: relative;
      padding-left: $space--xxs;
      padding-right: $space--xxs;

      &::after {
        content: "";
        width: 100%;
        height: 6px;
        position: absolute;
        left: 0;
        bottom: 2px;
        background: transparentize($link,.9);
        transition: .2s all ease-in-out;
      }

      &:hover, &:focus, &:active {
        &::after {
          height: 80%;
          background: transparentize($link,.8);
        }
      }
    }*/ }
  .content--post p a, .content--post ul a, .content--post ol a {
    /*border-bottom: 1px solid $gray-900;*/
    border-bottom: 1px solid #2195D3; }
    .content--post p a:hover, .content--post p a:focus, .content--post p a:active, .content--post ul a:hover, .content--post ul a:focus, .content--post ul a:active, .content--post ol a:hover, .content--post ol a:focus, .content--post ol a:active {
      border-bottom: 2px solid rgba(33, 149, 211, 0.5);
      /*border-bottom: 1px solid $gray-700;*/ }
  .content--post p .button, .content--post p .wp-block-button__link, .content--post ul .button, .content--post ul .wp-block-button__link, .content--post ol .button, .content--post ol .wp-block-button__link {
    border-bottom: none; }
    .content--post p .button:hover, .content--post p .button:focus, .content--post p .button:active, .content--post p .wp-block-button__link:hover, .content--post p .wp-block-button__link:focus, .content--post p .wp-block-button__link:active, .content--post ul .button:hover, .content--post ul .button:focus, .content--post ul .button:active, .content--post ul .wp-block-button__link:hover, .content--post ul .wp-block-button__link:focus, .content--post ul .wp-block-button__link:active, .content--post ol .button:hover, .content--post ol .button:focus, .content--post ol .button:active, .content--post ol .wp-block-button__link:hover, .content--post ol .wp-block-button__link:focus, .content--post ol .wp-block-button__link:active {
      border-bottom: none; }
  .content--post p li, .content--post ul li, .content--post ol li {
    margin-bottom: 1em; }
    .content--post p li ul, .content--post p li ol, .content--post ul li ul, .content--post ul li ol, .content--post ol li ul, .content--post ol li ol {
      margin-top: 1em; }

/*Intro Text*/
.text--intro, .has-large-font-size {
  font-size: 1.32em; }
  .text--intro p:first-child, .has-large-font-size p:first-child {
    margin-top: 0; }

/*Note Text*/
.text--note {
  font-size: 0.9166666667em;
  opacity: 0.5; }

.text--disclaimer {
  font-size: 0.7638888889em;
  margin: 1.5em 0;
  font-style: italic;
  color: #616161; }

/*Text Columns*/
@media (min-width: 55em) {
  .text--columns {
    -webkit-column-count: 2;
       -moz-column-count: 2;
            column-count: 2;
    -webkit-column-gap: 40px;
       -moz-column-gap: 40px;
            column-gap: 40px; }
    .text--columns > div {
      -webkit-column-break-inside: avoid;
         -moz-column-break-inside: avoid;
              break-inside: avoid; } }

/*
*******************************************************************
TEXT SIZING STYLES
*******************************************************************
*/
.has-tiny-font-size {
  font-size: 13px; }

.text--small, .has-small-font-size {
  font-size: 0.8125em; }

.text--normal, .has-regular-font-size {
  font-size: 1em; }

.text--intro, .text--large, .has-large-font-size {
  font-size: clamp(1.1em, 3vw, 1.25em); }

.has-x-large-font-size {
  font-size: clamp(1.5rem, 3.4vw, 2.25rem); }

.has-big-font-size {
  font-size: clamp(1.75rem, 4vw, 2.25rem); }

.has-huge-font-size {
  font-size: clamp(1.875rem, 4.5vw, 2.5rem); }

.has-jumbo-font-size {
  font-size: clamp(1.75rem, 5vw, 2.75rem); }

.has-gigantic-font-size {
  font-size: clamp(2.125rem, 5.25vw, 3rem); }

.has-colossal-font-size {
  font-size: clamp(3rem, 8.3vw, 5rem); }

.has-gargantuan-font-size {
  font-size: clamp(3.75rem, 9vw, 6.25rem); }

/*Sans Serif Text*/
.is-style-sans, .editor-styles-wrapper .is-style-sans {
  font-family: "Avenir", Helvetica, Arial, sans-serif; }

/*Text Alignment*/
.text--right, .has-text-align-right {
  text-align: right; }

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

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

/*WordPress Classes*/
.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden; }

/*
*******************************************************************
BANNER PARAGRAPH STYLES
*******************************************************************
*/
.is-style-banner {
  background: #212121;
  color: #fff !important;
  margin: 0 auto;
  padding: 0.25em 1em;
  text-align: center;
  font-family: "Avenir", Helvetica, Arial, sans-serif; }

/*scss/atoms/_headings.scss*/
/*
Resources:
http:/csswizardry.com/2012/02/pragmatic-practical-font-sizing-in-css/
https://github.com/modularscale/modularscale-sass
*/
h1, h2, h3, h4, h5, h6 {
  padding: 0;
  margin: 0.5em 0;
  line-height: 1.25;
  font-weight: normal;
  font-family: "Portrait Web", "Times New Roman", serif; }
  h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
    font-weight: bold; }

h1, .h1 {
  font-size: 1.584em; }

h2, .h2 {
  font-size: 1.32em; }

h3, .h3 {
  font-size: 1.1em; }

h4, .h4 {
  font-size: 0.9166666667em; }

h5, .h5 {
  font-size: 0.7638888889em; }

h6, .h6 {
  font-size: 0.6365740741em; }

h1.alt, h2.alt, h3.alt, h4.alt, h5.alt, h6.alt,
h1.is-style-alt, h2.is-style-alt, h3.is-style-alt, h4.is-style-alt, h5.is-style-alt, h6.is-style-alt {
  text-transform: uppercase;
  color: #424242;
  font-weight: bold;
  font-family: "Avenir", Helvetica, Arial, sans-serif; }

@media (min-width: 55em) {
  h1, .h1 {
    font-size: 1.9008em; }
  h2, .h2 {
    font-size: 1.584em; }
  h3, .h3 {
    font-size: 1.32em; }
  h4, .h4 {
    font-size: 1.1em; }
  h5, .h5 {
    font-size: 0.9166666667em; }
  h6, .h6 {
    font-size: 0.7638888889em; } }

/*scss/atoms/_lists.scss*/
ol, ul {
  margin: 0;
  padding: 0;
  list-style: none; }

/* Definition Lists */
dl {
  overflow: hidden;
  margin: 0 0 1em; }

dt {
  font-weight: bold; }

dd {
  margin-left: 0; }

/*Taxonomy Listing*/
.list--taxonomy a {
  display: inline-block;
  text-transform: lowercase;
  font-size: 0.9166666667em; }

/*Callout Listing*/
.list--callout, .content .list--callout, article .list--callout {
  list-style: none;
  margin: 0;
  padding: 0; }
  .list--callout > li, .content .list--callout > li, article .list--callout > li {
    counter-increment: step-counter;
    position: relative;
    margin-bottom: 2em; }
    .list--callout > li::before, .content .list--callout > li::before, article .list--callout > li::before {
      content: counter(step-counter);
      height: 50px;
      width: 50px;
      display: -webkit-flex;
      display: flex;
      -webkit-align-items: center;
              align-items: center;
      -webkit-justify-content: center;
              justify-content: center;
      margin-bottom: 0.75em;
      font-size: 120%;
      background-color: #195295;
      color: white;
      font-weight: bold;
      border-radius: 50%; }
  @media (min-width: 55em) {
    .list--callout > li, .content .list--callout > li, article .list--callout > li {
      padding-left: 70px; }
      .list--callout > li::before, .content .list--callout > li::before, article .list--callout > li::before {
        position: absolute;
        left: 0;
        top: 0; } }
/*Checklist Bullets*/
.is-style-checklist li, .list-item__check {
  list-style-type: none; }
  .is-style-checklist li::before, .list-item__check::before {
    content: "";
    display: inline-block;
    background: url("data:image/svg+xml,%3Csvg width='24' height='24' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Ccircle fill='%232195D3' cx='12' cy='12' r='12'/%3E%3Cpath d='M17.406 6.293a.75.75 0 0 1 1.241.836l-.053.078-7.5 9.75a.75.75 0 0 1-1.105.092l-.065-.069-3.75-4.5a.75.75 0 0 1 1.087-1.029l.065.069 3.15 3.78 6.93-9.007Z' fill='%23FFF'/%3E%3C/g%3E%3C/svg%3E") 50% 50% no-repeat;
    background-size: contain;
    width: 20px;
    height: 20px;
    margin-left: -35px;
    margin-right: 15px;
    margin-bottom: -5px; }

/*scss/atoms/_images.scss*/
img {
  max-width: 100%;
  height: auto;
  display: block; }

img.centered,
.aligncenter {
  display: block;
  margin: 1.5em auto 1.5em; }

img.alignnone {
  margin: 1.5em 0;
  width: inherit; }

img.alignleft,
.wp-caption.alignleft {
  margin: 0 1.5em 1.5em 0;
  float: left;
  max-width: 40%; }

img.alignright,
.wp-caption.alignright {
  margin: 0 0 1.5em 1.5em;
  float: right;
  max-width: 40%; }

.img--rounded, .is-style-rounded img {
  border-radius: 4px;
  background-clip: padding-box;
  /* stops bg color from leaking outside the border: */ }

.img--circle, .wp-block-image.is-style-circle img {
  border-radius: 50%;
  background-clip: padding-box;
  /* stops bg color from leaking outside the border: */ }

.img--full {
  width: 100%; }

.img--bordered {
  border: 1px solid #BDBDBD; }

.img--featured {
  margin-bottom: 1em; }

.wp-caption-text, .gallery-caption {
  color: #9E9E9E;
  font-size: 12px;
  font-family: "Avenir", Helvetica, Arial, sans-serif;
  line-height: 1.5;
  padding: 0.5em 0;
  margin: 0; }

figure {
  max-width: 100%; }

/*
*******************************************************************
GALLERY IMAGE STYLES
*******************************************************************
*/
.gallery {
  display: block; }
  .gallery .gallery-item {
    width: 100%; }
  @media (min-width: 48em) {
    .gallery {
      display: -webkit-flex;
      display: flex; }
      .gallery .gallery-item {
        -webkit-flex-basis: 100%;
                flex-basis: 100%;
        max-width: 100%;
        padding: 0.5em; }
      .gallery .gallery-columns-2 .gallery-item {
        -webkit-flex-basis: 50%;
                flex-basis: 50%;
        max-width: 50%; }
      .gallery .gallery-columns-3 .gallery-item {
        -webkit-flex-basis: 33%;
                flex-basis: 33%;
        max-width: 33%; }
      .gallery .gallery-columns-4 .gallery-item {
        -webkit-flex-basis: 25%;
                flex-basis: 25%;
        max-width: 25%; } }
/*scss/atoms/_buttons.scss*/
/*
*******************************************************************
DEFAULT BUTTON
*******************************************************************
*/
.button, .wp-block-button__link, input[type="submit"], .wp-block-button__submit {
  display: inline-block;
  padding: 1em 1.5em;
  line-height: 1;
  background: #2195D3;
  border-radius: 3px;
  border: none;
  color: #fff;
  text-align: center;
  text-decoration: none;
  font-weight: bold;
  font-family: "Avenir", Helvetica, Arial, sans-serif;
  transition: .2s all ease-in-out; }
  .button:hover, .button:focus, .button:active, .wp-block-button__link:hover, .wp-block-button__link:focus, .wp-block-button__link:active, input[type="submit"]:hover, input[type="submit"]:focus, input[type="submit"]:active, .wp-block-button__submit:hover, .wp-block-button__submit:focus, .wp-block-button__submit:active {
    background: #1a76a7;
    color: #fff;
    text-decoration: none; }
  .button.has-primary-background-color, .wp-block-button__link.has-primary-background-color, input[type="submit"].has-primary-background-color, .wp-block-button__submit.has-primary-background-color {
    border-color: #123a69; }
    .button.has-primary-background-color:hover, .button.has-primary-background-color:focus, .wp-block-button__link.has-primary-background-color:hover, .wp-block-button__link.has-primary-background-color:focus, input[type="submit"].has-primary-background-color:hover, input[type="submit"].has-primary-background-color:focus, .wp-block-button__submit.has-primary-background-color:hover, .wp-block-button__submit.has-primary-background-color:focus {
      background-color: #123a69; }
  .button.has-light-primary-background-color, .wp-block-button__link.has-light-primary-background-color, input[type="submit"].has-light-primary-background-color, .wp-block-button__submit.has-light-primary-background-color {
    color: #195295;
    border-color: #195295; }
    .button.has-light-primary-background-color:hover, .button.has-light-primary-background-color:focus, .wp-block-button__link.has-light-primary-background-color:hover, .wp-block-button__link.has-light-primary-background-color:focus, input[type="submit"].has-light-primary-background-color:hover, input[type="submit"].has-light-primary-background-color:focus, .wp-block-button__submit.has-light-primary-background-color:hover, .wp-block-button__submit.has-light-primary-background-color:focus {
      background-color: #195295;
      color: #fff; }
  .button.has-secondary-background-color, .wp-block-button__link.has-secondary-background-color, input[type="submit"].has-secondary-background-color, .wp-block-button__submit.has-secondary-background-color {
    border-color: #1a76a7; }
    .button.has-secondary-background-color:hover, .button.has-secondary-background-color:focus, .wp-block-button__link.has-secondary-background-color:hover, .wp-block-button__link.has-secondary-background-color:focus, input[type="submit"].has-secondary-background-color:hover, input[type="submit"].has-secondary-background-color:focus, .wp-block-button__submit.has-secondary-background-color:hover, .wp-block-button__submit.has-secondary-background-color:focus {
      background-color: #1a76a7; }
  .button.has-light-secondary-background-color, .wp-block-button__link.has-light-secondary-background-color, input[type="submit"].has-light-secondary-background-color, .wp-block-button__submit.has-light-secondary-background-color {
    color: #2195D3;
    border-color: #2195D3; }
    .button.has-light-secondary-background-color:hover, .button.has-light-secondary-background-color:focus, .wp-block-button__link.has-light-secondary-background-color:hover, .wp-block-button__link.has-light-secondary-background-color:focus, input[type="submit"].has-light-secondary-background-color:hover, input[type="submit"].has-light-secondary-background-color:focus, .wp-block-button__submit.has-light-secondary-background-color:hover, .wp-block-button__submit.has-light-secondary-background-color:focus {
      background-color: #2195D3;
      color: #fff; }
  .button.has-tertiary-background-color, .wp-block-button__link.has-tertiary-background-color, input[type="submit"].has-tertiary-background-color, .wp-block-button__submit.has-tertiary-background-color {
    border-color: #1c2a3f; }
    .button.has-tertiary-background-color:hover, .button.has-tertiary-background-color:focus, .wp-block-button__link.has-tertiary-background-color:hover, .wp-block-button__link.has-tertiary-background-color:focus, input[type="submit"].has-tertiary-background-color:hover, input[type="submit"].has-tertiary-background-color:focus, .wp-block-button__submit.has-tertiary-background-color:hover, .wp-block-button__submit.has-tertiary-background-color:focus {
      background-color: #1c2a3f; }
  .button.has-light-tertiary-background-color, .wp-block-button__link.has-light-tertiary-background-color, input[type="submit"].has-light-tertiary-background-color, .wp-block-button__submit.has-light-tertiary-background-color {
    color: #2B4163;
    border-color: #2B4163; }
    .button.has-light-tertiary-background-color:hover, .button.has-light-tertiary-background-color:focus, .wp-block-button__link.has-light-tertiary-background-color:hover, .wp-block-button__link.has-light-tertiary-background-color:focus, input[type="submit"].has-light-tertiary-background-color:hover, input[type="submit"].has-light-tertiary-background-color:focus, .wp-block-button__submit.has-light-tertiary-background-color:hover, .wp-block-button__submit.has-light-tertiary-background-color:focus {
      background-color: #2B4163;
      color: #fff; }
  .button.has-primary-bg-background-color, .wp-block-button__link.has-primary-bg-background-color, input[type="submit"].has-primary-bg-background-color, .wp-block-button__submit.has-primary-bg-background-color {
    border-color: #c6d2e4; }
    .button.has-primary-bg-background-color:hover, .button.has-primary-bg-background-color:focus, .wp-block-button__link.has-primary-bg-background-color:hover, .wp-block-button__link.has-primary-bg-background-color:focus, input[type="submit"].has-primary-bg-background-color:hover, input[type="submit"].has-primary-bg-background-color:focus, .wp-block-button__submit.has-primary-bg-background-color:hover, .wp-block-button__submit.has-primary-bg-background-color:focus {
      background-color: #c6d2e4; }
  .button.has-light-primary-bg-background-color, .wp-block-button__link.has-light-primary-bg-background-color, input[type="submit"].has-light-primary-bg-background-color, .wp-block-button__submit.has-light-primary-bg-background-color {
    color: #e8edf4;
    border-color: #e8edf4; }
    .button.has-light-primary-bg-background-color:hover, .button.has-light-primary-bg-background-color:focus, .wp-block-button__link.has-light-primary-bg-background-color:hover, .wp-block-button__link.has-light-primary-bg-background-color:focus, input[type="submit"].has-light-primary-bg-background-color:hover, input[type="submit"].has-light-primary-bg-background-color:focus, .wp-block-button__submit.has-light-primary-bg-background-color:hover, .wp-block-button__submit.has-light-primary-bg-background-color:focus {
      background-color: #e8edf4;
      color: #fff; }
  .button.has-secondary-bg-background-color, .wp-block-button__link.has-secondary-bg-background-color, input[type="submit"].has-secondary-bg-background-color, .wp-block-button__submit.has-secondary-bg-background-color {
    border-color: #bee0f1; }
    .button.has-secondary-bg-background-color:hover, .button.has-secondary-bg-background-color:focus, .wp-block-button__link.has-secondary-bg-background-color:hover, .wp-block-button__link.has-secondary-bg-background-color:focus, input[type="submit"].has-secondary-bg-background-color:hover, input[type="submit"].has-secondary-bg-background-color:focus, .wp-block-button__submit.has-secondary-bg-background-color:hover, .wp-block-button__submit.has-secondary-bg-background-color:focus {
      background-color: #bee0f1; }
  .button.has-light-secondary-bg-background-color, .wp-block-button__link.has-light-secondary-bg-background-color, input[type="submit"].has-light-secondary-bg-background-color, .wp-block-button__submit.has-light-secondary-bg-background-color {
    color: #e8f4fa;
    border-color: #e8f4fa; }
    .button.has-light-secondary-bg-background-color:hover, .button.has-light-secondary-bg-background-color:focus, .wp-block-button__link.has-light-secondary-bg-background-color:hover, .wp-block-button__link.has-light-secondary-bg-background-color:focus, input[type="submit"].has-light-secondary-bg-background-color:hover, input[type="submit"].has-light-secondary-bg-background-color:focus, .wp-block-button__submit.has-light-secondary-bg-background-color:hover, .wp-block-button__submit.has-light-secondary-bg-background-color:focus {
      background-color: #e8f4fa;
      color: #fff; }
  .button.has-tertiary-bg-background-color, .wp-block-button__link.has-tertiary-bg-background-color, input[type="submit"].has-tertiary-bg-background-color, .wp-block-button__submit.has-tertiary-bg-background-color {
    border-color: #cbd3da; }
    .button.has-tertiary-bg-background-color:hover, .button.has-tertiary-bg-background-color:focus, .wp-block-button__link.has-tertiary-bg-background-color:hover, .wp-block-button__link.has-tertiary-bg-background-color:focus, input[type="submit"].has-tertiary-bg-background-color:hover, input[type="submit"].has-tertiary-bg-background-color:focus, .wp-block-button__submit.has-tertiary-bg-background-color:hover, .wp-block-button__submit.has-tertiary-bg-background-color:focus {
      background-color: #cbd3da; }
  .button.has-light-tertiary-bg-background-color, .wp-block-button__link.has-light-tertiary-bg-background-color, input[type="submit"].has-light-tertiary-bg-background-color, .wp-block-button__submit.has-light-tertiary-bg-background-color {
    color: #e9ecef;
    border-color: #e9ecef; }
    .button.has-light-tertiary-bg-background-color:hover, .button.has-light-tertiary-bg-background-color:focus, .wp-block-button__link.has-light-tertiary-bg-background-color:hover, .wp-block-button__link.has-light-tertiary-bg-background-color:focus, input[type="submit"].has-light-tertiary-bg-background-color:hover, input[type="submit"].has-light-tertiary-bg-background-color:focus, .wp-block-button__submit.has-light-tertiary-bg-background-color:hover, .wp-block-button__submit.has-light-tertiary-bg-background-color:focus {
      background-color: #e9ecef;
      color: #fff; }
  .button.has-white-background-color, .wp-block-button__link.has-white-background-color, input[type="submit"].has-white-background-color, .wp-block-button__submit.has-white-background-color {
    border-color: #e6e6e6; }
    .button.has-white-background-color:hover, .button.has-white-background-color:focus, .wp-block-button__link.has-white-background-color:hover, .wp-block-button__link.has-white-background-color:focus, input[type="submit"].has-white-background-color:hover, input[type="submit"].has-white-background-color:focus, .wp-block-button__submit.has-white-background-color:hover, .wp-block-button__submit.has-white-background-color:focus {
      background-color: #e6e6e6; }
  .button.has-light-white-background-color, .wp-block-button__link.has-light-white-background-color, input[type="submit"].has-light-white-background-color, .wp-block-button__submit.has-light-white-background-color {
    color: #FFFFFF;
    border-color: #FFFFFF; }
    .button.has-light-white-background-color:hover, .button.has-light-white-background-color:focus, .wp-block-button__link.has-light-white-background-color:hover, .wp-block-button__link.has-light-white-background-color:focus, input[type="submit"].has-light-white-background-color:hover, input[type="submit"].has-light-white-background-color:focus, .wp-block-button__submit.has-light-white-background-color:hover, .wp-block-button__submit.has-light-white-background-color:focus {
      background-color: #FFFFFF;
      color: #fff; }
  .button.has-lightgray-background-color, .wp-block-button__link.has-lightgray-background-color, input[type="submit"].has-lightgray-background-color, .wp-block-button__submit.has-lightgray-background-color {
    border-color: gainsboro; }
    .button.has-lightgray-background-color:hover, .button.has-lightgray-background-color:focus, .wp-block-button__link.has-lightgray-background-color:hover, .wp-block-button__link.has-lightgray-background-color:focus, input[type="submit"].has-lightgray-background-color:hover, input[type="submit"].has-lightgray-background-color:focus, .wp-block-button__submit.has-lightgray-background-color:hover, .wp-block-button__submit.has-lightgray-background-color:focus {
      background-color: gainsboro; }
  .button.has-light-lightgray-background-color, .wp-block-button__link.has-light-lightgray-background-color, input[type="submit"].has-light-lightgray-background-color, .wp-block-button__submit.has-light-lightgray-background-color {
    color: #F5F5F5;
    border-color: #F5F5F5; }
    .button.has-light-lightgray-background-color:hover, .button.has-light-lightgray-background-color:focus, .wp-block-button__link.has-light-lightgray-background-color:hover, .wp-block-button__link.has-light-lightgray-background-color:focus, input[type="submit"].has-light-lightgray-background-color:hover, input[type="submit"].has-light-lightgray-background-color:focus, .wp-block-button__submit.has-light-lightgray-background-color:hover, .wp-block-button__submit.has-light-lightgray-background-color:focus {
      background-color: #F5F5F5;
      color: #fff; }
  .button.has-midgray-background-color, .wp-block-button__link.has-midgray-background-color, input[type="submit"].has-midgray-background-color, .wp-block-button__submit.has-midgray-background-color {
    border-color: #5c5c5c; }
    .button.has-midgray-background-color:hover, .button.has-midgray-background-color:focus, .wp-block-button__link.has-midgray-background-color:hover, .wp-block-button__link.has-midgray-background-color:focus, input[type="submit"].has-midgray-background-color:hover, input[type="submit"].has-midgray-background-color:focus, .wp-block-button__submit.has-midgray-background-color:hover, .wp-block-button__submit.has-midgray-background-color:focus {
      background-color: #5c5c5c; }
  .button.has-light-midgray-background-color, .wp-block-button__link.has-light-midgray-background-color, input[type="submit"].has-light-midgray-background-color, .wp-block-button__submit.has-light-midgray-background-color {
    color: #757575;
    border-color: #757575; }
    .button.has-light-midgray-background-color:hover, .button.has-light-midgray-background-color:focus, .wp-block-button__link.has-light-midgray-background-color:hover, .wp-block-button__link.has-light-midgray-background-color:focus, input[type="submit"].has-light-midgray-background-color:hover, input[type="submit"].has-light-midgray-background-color:focus, .wp-block-button__submit.has-light-midgray-background-color:hover, .wp-block-button__submit.has-light-midgray-background-color:focus {
      background-color: #757575;
      color: #fff; }
  .button.has-darkgray-background-color, .wp-block-button__link.has-darkgray-background-color, input[type="submit"].has-darkgray-background-color, .wp-block-button__submit.has-darkgray-background-color {
    border-color: #292929; }
    .button.has-darkgray-background-color:hover, .button.has-darkgray-background-color:focus, .wp-block-button__link.has-darkgray-background-color:hover, .wp-block-button__link.has-darkgray-background-color:focus, input[type="submit"].has-darkgray-background-color:hover, input[type="submit"].has-darkgray-background-color:focus, .wp-block-button__submit.has-darkgray-background-color:hover, .wp-block-button__submit.has-darkgray-background-color:focus {
      background-color: #292929; }
  .button.has-light-darkgray-background-color, .wp-block-button__link.has-light-darkgray-background-color, input[type="submit"].has-light-darkgray-background-color, .wp-block-button__submit.has-light-darkgray-background-color {
    color: #424242;
    border-color: #424242; }
    .button.has-light-darkgray-background-color:hover, .button.has-light-darkgray-background-color:focus, .wp-block-button__link.has-light-darkgray-background-color:hover, .wp-block-button__link.has-light-darkgray-background-color:focus, input[type="submit"].has-light-darkgray-background-color:hover, input[type="submit"].has-light-darkgray-background-color:focus, .wp-block-button__submit.has-light-darkgray-background-color:hover, .wp-block-button__submit.has-light-darkgray-background-color:focus {
      background-color: #424242;
      color: #fff; }
  .button.has-darkestgray-background-color, .wp-block-button__link.has-darkestgray-background-color, input[type="submit"].has-darkestgray-background-color, .wp-block-button__submit.has-darkestgray-background-color {
    border-color: #020202; }
    .button.has-darkestgray-background-color:hover, .button.has-darkestgray-background-color:focus, .wp-block-button__link.has-darkestgray-background-color:hover, .wp-block-button__link.has-darkestgray-background-color:focus, input[type="submit"].has-darkestgray-background-color:hover, input[type="submit"].has-darkestgray-background-color:focus, .wp-block-button__submit.has-darkestgray-background-color:hover, .wp-block-button__submit.has-darkestgray-background-color:focus {
      background-color: #020202; }
  .button.has-light-darkestgray-background-color, .wp-block-button__link.has-light-darkestgray-background-color, input[type="submit"].has-light-darkestgray-background-color, .wp-block-button__submit.has-light-darkestgray-background-color {
    color: #1B1B1B;
    border-color: #1B1B1B; }
    .button.has-light-darkestgray-background-color:hover, .button.has-light-darkestgray-background-color:focus, .wp-block-button__link.has-light-darkestgray-background-color:hover, .wp-block-button__link.has-light-darkestgray-background-color:focus, input[type="submit"].has-light-darkestgray-background-color:hover, input[type="submit"].has-light-darkestgray-background-color:focus, .wp-block-button__submit.has-light-darkestgray-background-color:hover, .wp-block-button__submit.has-light-darkestgray-background-color:focus {
      background-color: #1B1B1B;
      color: #fff; }

.wp-block-button {
  margin-bottom: 0.75em; }

/*
*******************************************************************
ALTERNATE BUTTON
*******************************************************************
*/
.button--alt, .wp-block-button.is-style-alt .wp-block-button__link, .wp-block-button__link.button--alt:not(.has-background) {
  background: #195295; }
  .button--alt:hover, .button--alt:focus, .button--alt:active, .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, .wp-block-button__link.button--alt:not(.has-background):hover, .wp-block-button__link.button--alt:not(.has-background):focus, .wp-block-button__link.button--alt:not(.has-background):active {
    background: #123a69; }

/*
*******************************************************************
TERTIARY BUTTON
*******************************************************************
*/
.button--tertiary, .wp-block-button.is-style-tertiary .wp-block-button__link, .wp-block-button__link.button--tertiary:not(.has-background) {
  background: #2B4163; }
  .button--tertiary:hover, .button--tertiary:focus, .button--tertiary:active, .wp-block-button.is-style-tertiary .wp-block-button__link:hover, .wp-block-button.is-style-tertiary .wp-block-button__link:focus, .wp-block-button.is-style-tertiary .wp-block-button__link:active, .wp-block-button__link.button--tertiary:not(.has-background):hover, .wp-block-button__link.button--tertiary:not(.has-background):focus, .wp-block-button__link.button--tertiary:not(.has-background):active {
    background: #1c2a3f; }

/*
*******************************************************************
GRAY BUTTON
*******************************************************************
*/
.button--gray, .wp-block-button.is-style-gray .wp-block-button__link, .wp-block-button__link.button--gray:not(.has-background) {
  background: #424242; }
  .button--gray:hover, .button--gray:focus, .button--gray:active, .wp-block-button.is-style-gray .wp-block-button__link:hover, .wp-block-button.is-style-gray .wp-block-button__link:focus, .wp-block-button.is-style-gray .wp-block-button__link:active, .wp-block-button__link.button--gray:not(.has-background):hover, .wp-block-button__link.button--gray:not(.has-background):focus, .wp-block-button__link.button--gray:not(.has-background):active {
    background: #292929; }

/*
*******************************************************************
BUTTON SIZING
*******************************************************************
*/
.button--large, .wp-block-button.is-style-large .wp-block-button__link {
  padding: 1.5em 2em; }

.button--small, .wp-block-button.is-style-small .wp-block-button__link {
  padding: 0.5em 0.75em !important;
  font-size: 0.7638888889em; }

/*
*******************************************************************
SUBTLE BUTTON
*******************************************************************
*/
.button--subtle, .wp-block-button.is-style-subtle .wp-block-button__link, .content--post .button--subtle, .section--hero a.button--subtle, .wp-block-button__link.button--subtle:not(.has-background) {
  background: #E0E0E0;
  color: #424242;
  margin: 0.25em 0; }
  .button--subtle:hover, .button--subtle:focus, .wp-block-button.is-style-subtle .wp-block-button__link:hover, .wp-block-button.is-style-subtle .wp-block-button__link:focus, .content--post .button--subtle:hover, .content--post .button--subtle:focus, .section--hero a.button--subtle:hover, .section--hero a.button--subtle:focus, .wp-block-button__link.button--subtle:not(.has-background):hover, .wp-block-button__link.button--subtle:not(.has-background):focus {
    background: #BDBDBD;
    color: #424242; }

/*
*******************************************************************
BORDERED BUTTON
*******************************************************************
*/
.button--bordered, .wp-block-button.is-style-bordered .wp-block-button__link, .content--post .button--bordered {
  background: #fff;
  border: 2px solid #2195D3;
  color: #2195D3; }
  .button--bordered:hover, .button--bordered:focus, .wp-block-button.is-style-bordered .wp-block-button__link:hover, .wp-block-button.is-style-bordered .wp-block-button__link:focus, .content--post .button--bordered:hover, .content--post .button--bordered:focus {
    background: rgba(255, 255, 255, 0.75);
    color: #2195D3; }

/*
*******************************************************************
PLAY BUTTON
*******************************************************************
*/
.button--play, .content .button--play {
  display: block;
  width: 100%;
  min-width: 100%;
  padding: 1em 0.5em;
  margin-bottom: 1em;
  font-size: .75em;
  font-weight: normal; }
  .button--play::before, .content .button--play::before {
    content: "";
    display: inline-block;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M.23 23.92A.5.5 0 0 1 0 23.5V.5A.49.49 0 0 1 .23.09a.48.48 0 0 1 .5 0l23 11.5A.49.49 0 0 1 24 12a.5.5 0 0 1-.28.45L.73 23.94A.65.65 0 0 1 .5 24a.56.56 0 0 1-.27-.08z' fill='%23fff'/%3E%3C/svg%3E");
    background-size: 12px 12px;
    width: 12px;
    height: 12px;
    margin-right: 5px; }

/*
*******************************************************************
AUDIO BUTTON
*******************************************************************
*/
.button--audio, .content .button--audio {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
  line-height: 0;
  width: 100%;
  min-width: 100%; }
  .button--audio::before, .content .button--audio::before {
    content: "";
    display: inline-block;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23FFF' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' stroke-miterlimit='10'%3E%3Cpath d='M11 21l-5-4H3a2 2 0 0 1-2-2V9a2 2 0 0 1 2-2h3l5-4zM17.002 7.001a7.254 7.254 0 0 1-.002 10'/%3E%3Cpath d='M18.001 2C21.037 4.281 23 7.911 23 12s-1.963 7.719-4.999 10'/%3E%3C/g%3E%3C/svg%3E");
    background-size: 20px 20px;
    width: 20px;
    height: 20px;
    margin-right: 0.75em; }

/*
*******************************************************************
BUTTON GROUP
*******************************************************************
*/
.button--group {
  display: -webkit-flex;
  display: flex;
  -webkit-align-content: center;
          align-content: center;
  -webkit-align-items: center;
          align-items: center;
  -webkit-justify-content: center;
          justify-content: center; }
  .button--group > * {
    display: inline-block;
    margin-right: 0.5em; }
  @media (min-width: 48em) {
    .button--group {
      -webkit-justify-content: flex-start;
              justify-content: flex-start; } }
/*scss/atoms/_tables.scss*/
table, .wp-block-table table {
  border-collapse: collapse;
  border-spacing: 0;
  border: 1px solid #EEEEEE;
  width: 100%; }

th {
  text-align: left;
  border: 1px solid #EEEEEE;
  padding: 0.5em;
  background: #2195D3;
  color: #fff; }

tr {
  border-bottom: 1px solid #EEEEEE; }

td {
  border: 1px solid #EEEEEE;
  padding: 0.5em; }

/*scss/atoms/_blockquotes.scss*/
blockquote, .blockquote, .wp-block-quote {
  font-style: italic;
  border-left: 4px solid #195295;
  margin: 1.5em 0;
  padding: 0.5em 1em;
  position: relative;
  color: #195295;
  font-style: italic; }
  blockquote p, .blockquote p, .wp-block-quote p {
    margin: 0 !important; }
  blockquote cite, blockquote .wp-block-quote__citation, .blockquote cite, .blockquote .wp-block-quote__citation, .wp-block-quote cite, .wp-block-quote .wp-block-quote__citation {
    display: block;
    font-weight: bold;
    font-family: "Avenir", Helvetica, Arial, sans-serif;
    font-size: 0.7638888889em;
    margin-top: 1em; }
  @media (min-width: 55em) {
    blockquote, .blockquote, .wp-block-quote {
      font-size: 1.32em; } }
/*
*******************************************************************
TESTIMONIAL BLOCKQUOTE SECTION
*******************************************************************
*/
.testimonial {
  border-left: none;
  color: #424242;
  font-style: normal;
  font-size: 0.95em;
  font-family: "Avenir", Helvetica, Arial, sans-serif;
  margin: 1.5em 0 1.5em;
  padding: 0; }
  .testimonial.testimonial--minimal {
    font-size: 0.8em; }
  @media (min-width: 55em) {
    .testimonial {
      margin-top: 0; } }
.testimonial__quote {
  display: block;
  font-size: 4em;
  font-weight: bold;
  line-height: .5;
  font-family: Georgia, san-serif; }

.testimonial__image {
  max-width: 60px;
  border-radius: 40px;
  margin-right: 0.75em; }

.testimonial__heading {
  font-weight: bold;
  font-family: "Avenir", Helvetica, Arial, sans-serif; }

.testimonial__cite {
  font-style: normal;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: flex-start;
          justify-content: flex-start;
  -webkit-align-items: center;
          align-items: center; }
  .testimonial__cite .testimonial__title {
    font-weight: normal;
    display: block; }

.testimonial__rating .star-icon {
  color: #E0E0E0;
  font-size: 1.25em;
  position: relative; }
  @media (min-width: 68em) {
    .testimonial__rating .star-icon {
      font-size: 1.25em; } }
.testimonial__rating .star-icon.full:before {
  color: #FEC111;
  content: '\2605';
  /* Full star in UTF-8 */
  position: absolute;
  left: 0; }

.testimonial__rating .star-icon.half:before {
  color: #FEC111;
  content: '\2605';
  /* Half star in UTF-8 */
  position: absolute;
  left: 0;
  width: 50%;
  overflow: hidden; }

/*scss/atoms/_paragraph.scss*/
.wp-post-image + p {
  margin-top: 0;
  /*Remove top margin from first paragraph directly following featured image*/ }

/*scss/atoms/_icons.scss*/
.i-info {
  width: 11px;
  height: 11px;
  opacity: 0.6; }

.i-arrow {
  width: 20px;
  height: 20px; }

.i-arrow--link {
  display: block;
  padding: 10px;
  width: 40px;
  height: 40px;
  background: #F5F5F5;
  border: 1px solid #EEEEEE;
  border-radius: 50%;
  text-align: center; }
  .i-arrow--link:hover, .i-arrow--link:focus {
    background: #EEEEEE; }

.icon-search {
  width: 16px;
  height: 16px; }

/*scss/atoms/_forms.scss*/
form {
  font-family: "Avenir", Helvetica, Arial, sans-serif; }

button,
input,
select,
textarea {
  font-size: 100%;
  /* Corrects font size not being inherited in all browsers */
  margin: 0;
  /* Addresses margins set differently in IE6/7, F3/4, S5, Chrome */
  vertical-align: baseline;
  /* Improves appearance and consistency in all browsers */ }

input[type="checkbox"],
input[type="radio"] {
  padding: 0;
  /* Addresses excess padding in IE8/9 */
  width: inherit;
  min-width: inherit;
  min-height: inherit;
  display: inline;
  clear: both; }

input[type="search"] {
  -webkit-appearance: textfield;
  /* Addresses appearance set to searchfield in S5, Chrome */
  /* Addresses box sizing set to border-box in S5, Chrome (include -moz to future-proof) */
  box-sizing: content-box; }

input[type="search"]::-webkit-search-decoration {
  /* Corrects inner padding displayed oddly in S5, Chrome on OSX */
  -webkit-appearance: none; }

button::-moz-focus-inner,
input::-moz-focus-inner {
  /* Corrects inner padding and border displayed oddly in FF3/4 www.sitepen.com/blog/2008/05/14/the-devils-in-the-details-fixing-dojos-toolbar-buttons/ */
  border: 0;
  padding: 0; }

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
textarea {
  display: inline-block;
  padding: 0.75em 1em;
  width: 100%;
  color: #212121;
  border: 1px solid #BDBDBD;
  border-radius: 3px;
  background-clip: padding-box;
  /* stops bg color from leaking outside the border: */
  box-sizing: border-box; }
  input[type="text"]:focus,
  input[type="email"]:focus,
  input[type="url"]:focus,
  input[type="password"]:focus,
  input[type="search"]:focus,
  textarea:focus {
    border-color: #aaa; }

select {
  height: 48px;
  max-width: 100%; }

textarea {
  overflow: auto;
  /* Removes default vertical scrollbar in IE6/7/8/9 */
  vertical-align: top;
  /* Improves readability and alignment in all browsers */ }

label, legend {
  font-weight: bold;
  display: block;
  margin-bottom: 0;
  vertical-align: middle;
  line-height: 1.25em; }

abbr[title="required"], abbr[title="Required"], .required {
  border-bottom: none;
  color: #911; }

.field {
  margin-bottom: 1em; }

/*------------------------------------*\
    $SPECIFIC FORMS
\*------------------------------------*/
/*Search Form*/
.form--search {
  position: relative;
  box-sizing: border-box;
  max-width: 600px;
  margin: 0 auto; }

.form--search__field {
  font-weight: normal;
  padding: 0.75em;
  font-size: 1.1em; }
  .form--search__field::-webkit-input-placeholder {
    color: #616161; }
  .form--search__field::-moz-placeholder {
    color: #616161; }
  .form--search__field:-ms-input-placeholder {
    color: #616161; }
  .form--search__field::placeholder {
    color: #616161; }

.form--search__submit {
  position: absolute;
  display: block;
  padding: 10px;
  right: 15px;
  top: 50%;
  margin-top: -20px;
  background: none;
  border: none;
  width: 36px;
  height: 36px; }
  .form--search__submit:hover, .form--search__submit:focus {
    background: #fff; }
    .form--search__submit:hover .icon-search, .form--search__submit:focus .icon-search {
      opacity: 0.6; }

/*Newsletter Form*/
.gform_wrapper .form--newsletter .gform_footer {
  margin: 0; }

.gform_wrapper .form--newsletter input[type="submit"] {
  margin: 0 auto !important;
  display: block !important;
  padding: 1em 2em;
  font-size: 1.1em !important; }

@media (min-width: 55em) {
  .gform_wrapper .form--newsletter .gform_fields {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-flow: row wrap;
            flex-flow: row wrap; }
  .gform_wrapper .form--newsletter li.gfield {
    -webkit-flex-basis: 48%;
            flex-basis: 48%;
    max-width: 48%;
    padding: 0 1%; } }

/*Inline Form*/
#peterattia {
  /*Inline Form*/ }
  #peterattia .form--inline {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-flow: row wrap;
            flex-flow: row wrap;
    max-width: 760px;
    -webkit-justify-content: flex-start;
            justify-content: flex-start;
    margin: 0; }
    #peterattia .form--inline label {
      display: none; }
    #peterattia .form--inline .gform_body {
      -webkit-flex-basis: 100%;
              flex-basis: 100%;
      max-width: 100%; }
    #peterattia .form--inline .gform_footer {
      -webkit-flex-basis: 100%;
              flex-basis: 100%;
      max-width: 100%;
      display: -webkit-flex;
      display: flex;
      -webkit-justify-content: center;
              justify-content: center; }
    #peterattia .form--inline .gform_footer {
      margin-top: 0; }
    #peterattia .form--inline input[type="submit"] {
      padding-top: 1em;
      padding-bottom: 1em;
      background: #2195D3;
      width: 100%; }
      #peterattia .form--inline input[type="submit"]:hover, #peterattia .form--inline input[type="submit"]:focus {
        background: #1a76a7; }
    @media (min-width: 48em) {
      #peterattia .form--inline .gform_body {
        -webkit-flex-basis: 70%;
                flex-basis: 70%;
        max-width: 70%; }
      #peterattia .form--inline .gform_footer {
        -webkit-flex-basis: 30%;
                flex-basis: 30%;
        max-width: 30%; } }
/*scss/atoms/_media.scss*/
embed,
iframe,
object {
  display: block;
  margin: 0 auto 1.5em;
  max-width: 100%; }

/*Responsive Video Code*/
.video {
  position: relative;
  height: 0;
  padding-bottom: 56.25%; }

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

.type-video.video {
  padding: 0;
  height: inherit; }

figure.is-type-video {
  margin: 0; }

/*
*******************************************************************
AUDIO PLAYER
*******************************************************************
*/
.audio__sticky {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1em;
  background: rgba(0, 0, 0, 0.75);
  z-index: 10000; }
  .audio__sticky .smart-track-player.spp-stp-desktop {
    margin: 0 !important; }
  .audio__sticky .icon--close {
    width: 36px;
    height: 36px;
    display: block;
    margin: 0 auto; }
  .audio__sticky.is-hidden {
    display: none; }

.smart-podcast-player .spp-progress-bar, .smart-track-player .spp-progress-bar {
  height: 11px !important; }

.smart-podcast-player .spp-progress-bar .spp-position, .smart-track-player .spp-progress-bar .spp-position {
  height: 22px !important;
  width: 12px !important; }

/*Mobile Smart Podcast Player*/
.smart-track-player.spp-stp-mobile {
  margin: 0.5em 0 !important; }

/*
*******************************************************************
MEDIA & TEXT
*******************************************************************
*/
.wp-block-media-text {
  grid-template-columns: 5fr 7fr;
  grid-column-gap: 16px; }
  .wp-block-media-text.has-media-on-the-right {
    grid-template-columns: 7fr 5fr; }
  .wp-block-media-text .wp-block-media-text__content {
    padding: 0 16px; }
  @media (min-width: 48em) {
    .wp-block-media-text.is-stacked-on-mobile {
      display: block; }
      .wp-block-media-text.is-stacked-on-mobile .wp-block-media-text__media {
        margin-bottom: 32px; } }
.wp-block-media-text__media,
.block-library-media-text__media-container {
  -webkit-clip-path: circle();
          clip-path: circle(); }

/*
*******************************************************************
SEPARATOR
*******************************************************************
*/
.wp-block-separator,
hr {
  border: 0;
  height: 1px;
  background: rgba(0, 0, 0, 0.2);
  margin: 1.5em 0; }

/*
*******************************************************************
SECTION BREAK
*******************************************************************
*/
.section--break {
  font-size: 2em;
  padding: 0.75em 0;
  text-align: center; }

.wp-block-separator.is-style-sectionbreak {
  background: none;
  font-size: 2em;
  padding: 0.75em 0;
  margin: 0;
  height: inherit;
  border: none;
  text-align: center; }
  .wp-block-separator.is-style-sectionbreak::before {
    content: "§";
    display: block; }

/*scss/atoms/_groups.scss*/
/*
*******************************************************************
GROUPS
*******************************************************************
*/
.wp-block-group, .wp-block-cover {
  padding: 2.25em 0; }
  @media (min-width: 55em) {
    .wp-block-group, .wp-block-cover {
      padding: 3.5em 0;
      /*Add padding if custom positioning*/ }
      .wp-block-group.has-custom-content-position, .wp-block-cover.has-custom-content-position {
        padding-left: 10%;
        padding-right: 10%; } }
  .wp-block-group .wp-block-group__inner-container,
  .wp-block-group .wp-block-cover__inner-container, .wp-block-cover .wp-block-group__inner-container,
  .wp-block-cover .wp-block-cover__inner-container {
    max-width: 95%;
    margin: 0 auto; }
    .wp-block-group .wp-block-group__inner-container > *:first-child,
    .wp-block-group .wp-block-cover__inner-container > *:first-child, .wp-block-cover .wp-block-group__inner-container > *:first-child,
    .wp-block-cover .wp-block-cover__inner-container > *:first-child {
      margin-top: 0; }
    .wp-block-group .wp-block-group__inner-container > *:last-child,
    .wp-block-group .wp-block-cover__inner-container > *:last-child, .wp-block-cover .wp-block-group__inner-container > *:last-child,
    .wp-block-cover .wp-block-cover__inner-container > *:last-child {
      margin-bottom: 0; }
    @media (min-width: 68em) {
      .wp-block-group .wp-block-group__inner-container,
      .wp-block-group .wp-block-cover__inner-container, .wp-block-cover .wp-block-group__inner-container,
      .wp-block-cover .wp-block-cover__inner-container {
        width: 1168px; } }
  .wp-block-group.has-minimal-padding, .wp-block-cover.has-minimal-padding {
    padding: 1em 0; }
    @media (min-width: 55em) {
      .wp-block-group.has-minimal-padding, .wp-block-cover.has-minimal-padding {
        padding: 1.5em 0; } }
    .wp-block-group.has-minimal-padding:not(.has-background), .wp-block-cover.has-minimal-padding:not(.has-background) {
      margin-top: 0 !important;
      margin-bottom: 0 !important; }
  @media (min-width: 68em) {
    .wp-block-group.alignfull .wp-block-group__inner-container, .wp-block-cover.alignfull .wp-block-group__inner-container {
      max-width: 92%; } }
  @media (min-width: 85em) {
    .wp-block-group.alignfull .wp-block-group__inner-container, .wp-block-cover.alignfull .wp-block-group__inner-container {
      width: 1170px;
      max-width: 100%; } }
  .wp-block-group .wp-block-group.alignwide, .wp-block-cover .wp-block-group.alignwide {
    max-width: 736px;
    margin: 0 auto; }
  .wp-block-group.alignfull.has-primary-background-color + .wp-block-group.alignfull.has-primary-background-color, .wp-block-group.alignfull.has-primary-background-color + .wp-block-cover.alignfull.has-primary-background-color, .wp-block-group.alignfull + .wp-block-group.alignfull.has-primary-background-color, .wp-block-cover.alignfull.has-primary-background-color + .wp-block-group.alignfull.has-primary-background-color, .wp-block-cover.alignfull.has-primary-background-color + .wp-block-cover.alignfull.has-primary-background-color, .wp-block-cover.alignfull + .wp-block-group.alignfull.has-primary-background-color {
    margin-top: -30px; }
  .wp-block-group.alignfull.has-primary-darken-background-color + .wp-block-group.alignfull.has-primary-darken-background-color, .wp-block-group.alignfull.has-primary-darken-background-color + .wp-block-cover.alignfull.has-primary-darken-background-color, .wp-block-group.alignfull + .wp-block-group.alignfull.has-primary-darken-background-color, .wp-block-cover.alignfull.has-primary-darken-background-color + .wp-block-group.alignfull.has-primary-darken-background-color, .wp-block-cover.alignfull.has-primary-darken-background-color + .wp-block-cover.alignfull.has-primary-darken-background-color, .wp-block-cover.alignfull + .wp-block-group.alignfull.has-primary-darken-background-color {
    margin-top: -30px; }
  .wp-block-group.alignfull.has-primary-lighten-background-color + .wp-block-group.alignfull.has-primary-lighten-background-color, .wp-block-group.alignfull.has-primary-lighten-background-color + .wp-block-cover.alignfull.has-primary-lighten-background-color, .wp-block-group.alignfull + .wp-block-group.alignfull.has-primary-lighten-background-color, .wp-block-cover.alignfull.has-primary-lighten-background-color + .wp-block-group.alignfull.has-primary-lighten-background-color, .wp-block-cover.alignfull.has-primary-lighten-background-color + .wp-block-cover.alignfull.has-primary-lighten-background-color, .wp-block-cover.alignfull + .wp-block-group.alignfull.has-primary-lighten-background-color {
    margin-top: -30px; }
  .wp-block-group.alignfull.has-primary-bg-background-color + .wp-block-group.alignfull.has-primary-bg-background-color, .wp-block-group.alignfull.has-primary-bg-background-color + .wp-block-cover.alignfull.has-primary-bg-background-color, .wp-block-group.alignfull + .wp-block-group.alignfull.has-primary-bg-background-color, .wp-block-cover.alignfull.has-primary-bg-background-color + .wp-block-group.alignfull.has-primary-bg-background-color, .wp-block-cover.alignfull.has-primary-bg-background-color + .wp-block-cover.alignfull.has-primary-bg-background-color, .wp-block-cover.alignfull + .wp-block-group.alignfull.has-primary-bg-background-color {
    margin-top: -30px; }
  .wp-block-group.alignfull.has-secondary-background-color + .wp-block-group.alignfull.has-secondary-background-color, .wp-block-group.alignfull.has-secondary-background-color + .wp-block-cover.alignfull.has-secondary-background-color, .wp-block-group.alignfull + .wp-block-group.alignfull.has-secondary-background-color, .wp-block-cover.alignfull.has-secondary-background-color + .wp-block-group.alignfull.has-secondary-background-color, .wp-block-cover.alignfull.has-secondary-background-color + .wp-block-cover.alignfull.has-secondary-background-color, .wp-block-cover.alignfull + .wp-block-group.alignfull.has-secondary-background-color {
    margin-top: -30px; }
  .wp-block-group.alignfull.has-secondary-darken-background-color + .wp-block-group.alignfull.has-secondary-darken-background-color, .wp-block-group.alignfull.has-secondary-darken-background-color + .wp-block-cover.alignfull.has-secondary-darken-background-color, .wp-block-group.alignfull + .wp-block-group.alignfull.has-secondary-darken-background-color, .wp-block-cover.alignfull.has-secondary-darken-background-color + .wp-block-group.alignfull.has-secondary-darken-background-color, .wp-block-cover.alignfull.has-secondary-darken-background-color + .wp-block-cover.alignfull.has-secondary-darken-background-color, .wp-block-cover.alignfull + .wp-block-group.alignfull.has-secondary-darken-background-color {
    margin-top: -30px; }
  .wp-block-group.alignfull.has-secondary-lighten-background-color + .wp-block-group.alignfull.has-secondary-lighten-background-color, .wp-block-group.alignfull.has-secondary-lighten-background-color + .wp-block-cover.alignfull.has-secondary-lighten-background-color, .wp-block-group.alignfull + .wp-block-group.alignfull.has-secondary-lighten-background-color, .wp-block-cover.alignfull.has-secondary-lighten-background-color + .wp-block-group.alignfull.has-secondary-lighten-background-color, .wp-block-cover.alignfull.has-secondary-lighten-background-color + .wp-block-cover.alignfull.has-secondary-lighten-background-color, .wp-block-cover.alignfull + .wp-block-group.alignfull.has-secondary-lighten-background-color {
    margin-top: -30px; }
  .wp-block-group.alignfull.has-secondary-bg-background-color + .wp-block-group.alignfull.has-secondary-bg-background-color, .wp-block-group.alignfull.has-secondary-bg-background-color + .wp-block-cover.alignfull.has-secondary-bg-background-color, .wp-block-group.alignfull + .wp-block-group.alignfull.has-secondary-bg-background-color, .wp-block-cover.alignfull.has-secondary-bg-background-color + .wp-block-group.alignfull.has-secondary-bg-background-color, .wp-block-cover.alignfull.has-secondary-bg-background-color + .wp-block-cover.alignfull.has-secondary-bg-background-color, .wp-block-cover.alignfull + .wp-block-group.alignfull.has-secondary-bg-background-color {
    margin-top: -30px; }
  .wp-block-group.alignfull.has-tertiary-background-color + .wp-block-group.alignfull.has-tertiary-background-color, .wp-block-group.alignfull.has-tertiary-background-color + .wp-block-cover.alignfull.has-tertiary-background-color, .wp-block-group.alignfull + .wp-block-group.alignfull.has-tertiary-background-color, .wp-block-cover.alignfull.has-tertiary-background-color + .wp-block-group.alignfull.has-tertiary-background-color, .wp-block-cover.alignfull.has-tertiary-background-color + .wp-block-cover.alignfull.has-tertiary-background-color, .wp-block-cover.alignfull + .wp-block-group.alignfull.has-tertiary-background-color {
    margin-top: -30px; }
  .wp-block-group.alignfull.has-tertiary-darken-background-color + .wp-block-group.alignfull.has-tertiary-darken-background-color, .wp-block-group.alignfull.has-tertiary-darken-background-color + .wp-block-cover.alignfull.has-tertiary-darken-background-color, .wp-block-group.alignfull + .wp-block-group.alignfull.has-tertiary-darken-background-color, .wp-block-cover.alignfull.has-tertiary-darken-background-color + .wp-block-group.alignfull.has-tertiary-darken-background-color, .wp-block-cover.alignfull.has-tertiary-darken-background-color + .wp-block-cover.alignfull.has-tertiary-darken-background-color, .wp-block-cover.alignfull + .wp-block-group.alignfull.has-tertiary-darken-background-color {
    margin-top: -30px; }
  .wp-block-group.alignfull.has-tertiary-lighten-background-color + .wp-block-group.alignfull.has-tertiary-lighten-background-color, .wp-block-group.alignfull.has-tertiary-lighten-background-color + .wp-block-cover.alignfull.has-tertiary-lighten-background-color, .wp-block-group.alignfull + .wp-block-group.alignfull.has-tertiary-lighten-background-color, .wp-block-cover.alignfull.has-tertiary-lighten-background-color + .wp-block-group.alignfull.has-tertiary-lighten-background-color, .wp-block-cover.alignfull.has-tertiary-lighten-background-color + .wp-block-cover.alignfull.has-tertiary-lighten-background-color, .wp-block-cover.alignfull + .wp-block-group.alignfull.has-tertiary-lighten-background-color {
    margin-top: -30px; }
  .wp-block-group.alignfull.has-tertiary-bg-background-color + .wp-block-group.alignfull.has-tertiary-bg-background-color, .wp-block-group.alignfull.has-tertiary-bg-background-color + .wp-block-cover.alignfull.has-tertiary-bg-background-color, .wp-block-group.alignfull + .wp-block-group.alignfull.has-tertiary-bg-background-color, .wp-block-cover.alignfull.has-tertiary-bg-background-color + .wp-block-group.alignfull.has-tertiary-bg-background-color, .wp-block-cover.alignfull.has-tertiary-bg-background-color + .wp-block-cover.alignfull.has-tertiary-bg-background-color, .wp-block-cover.alignfull + .wp-block-group.alignfull.has-tertiary-bg-background-color {
    margin-top: -30px; }
  .wp-block-group.alignfull.has-white-background-color + .wp-block-group.alignfull.has-white-background-color, .wp-block-group.alignfull.has-white-background-color + .wp-block-cover.alignfull.has-white-background-color, .wp-block-group.alignfull + .wp-block-group.alignfull.has-white-background-color, .wp-block-cover.alignfull.has-white-background-color + .wp-block-group.alignfull.has-white-background-color, .wp-block-cover.alignfull.has-white-background-color + .wp-block-cover.alignfull.has-white-background-color, .wp-block-cover.alignfull + .wp-block-group.alignfull.has-white-background-color {
    margin-top: -30px; }
  .wp-block-group.alignfull.has-lightgray-background-color + .wp-block-group.alignfull.has-lightgray-background-color, .wp-block-group.alignfull.has-lightgray-background-color + .wp-block-cover.alignfull.has-lightgray-background-color, .wp-block-group.alignfull + .wp-block-group.alignfull.has-lightgray-background-color, .wp-block-cover.alignfull.has-lightgray-background-color + .wp-block-group.alignfull.has-lightgray-background-color, .wp-block-cover.alignfull.has-lightgray-background-color + .wp-block-cover.alignfull.has-lightgray-background-color, .wp-block-cover.alignfull + .wp-block-group.alignfull.has-lightgray-background-color {
    margin-top: -30px; }
  .wp-block-group.alignfull.has-midgray-background-color + .wp-block-group.alignfull.has-midgray-background-color, .wp-block-group.alignfull.has-midgray-background-color + .wp-block-cover.alignfull.has-midgray-background-color, .wp-block-group.alignfull + .wp-block-group.alignfull.has-midgray-background-color, .wp-block-cover.alignfull.has-midgray-background-color + .wp-block-group.alignfull.has-midgray-background-color, .wp-block-cover.alignfull.has-midgray-background-color + .wp-block-cover.alignfull.has-midgray-background-color, .wp-block-cover.alignfull + .wp-block-group.alignfull.has-midgray-background-color {
    margin-top: -30px; }
  .wp-block-group.alignfull.has-darkgray-background-color + .wp-block-group.alignfull.has-darkgray-background-color, .wp-block-group.alignfull.has-darkgray-background-color + .wp-block-cover.alignfull.has-darkgray-background-color, .wp-block-group.alignfull + .wp-block-group.alignfull.has-darkgray-background-color, .wp-block-cover.alignfull.has-darkgray-background-color + .wp-block-group.alignfull.has-darkgray-background-color, .wp-block-cover.alignfull.has-darkgray-background-color + .wp-block-cover.alignfull.has-darkgray-background-color, .wp-block-cover.alignfull + .wp-block-group.alignfull.has-darkgray-background-color {
    margin-top: -30px; }
  .wp-block-group.alignfull.has-darkestgray-background-color + .wp-block-group.alignfull.has-darkestgray-background-color, .wp-block-group.alignfull.has-darkestgray-background-color + .wp-block-cover.alignfull.has-darkestgray-background-color, .wp-block-group.alignfull + .wp-block-group.alignfull.has-darkestgray-background-color, .wp-block-cover.alignfull.has-darkestgray-background-color + .wp-block-group.alignfull.has-darkestgray-background-color, .wp-block-cover.alignfull.has-darkestgray-background-color + .wp-block-cover.alignfull.has-darkestgray-background-color, .wp-block-cover.alignfull + .wp-block-group.alignfull.has-darkestgray-background-color {
    margin-top: -30px; }

.wide-content .wp-block-group:not(.narrow) .wp-block-group__inner-container,
.wp-block-group.wide .wp-block-group__inner-container {
  max-width: 1400px; }

/*_bullets.scss*/
/*Default Bullet*/
.bullet {
  text-align: center; }
  .bullet .bullet__icon {
    max-width: 60px;
    display: block;
    margin: 0 auto 1em; }

/*scss/molecules/_comments.scss*/
/*
*******************************************************************
HEADER COMMENTS
*******************************************************************
*/
.header--comments {
  text-align: center; }
  .header--comments .button--small {
    display: block;
    margin: 0 auto; }
  @media (min-width: 48em) {
    .header--comments {
      text-align: left; }
      .header--comments .button--small {
        display: inline;
        margin: 0; } }
/*
*******************************************************************
COMMENTS LISTING
*******************************************************************
*/
.entry-comments {
  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; }
  .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 (min-width: 48em) {
      .entry-comments .comment-content {
        font-size: 0.9em; } }
    @media (min-width: 55em) {
      .entry-comments .comment-content {
        font-size: 0.85em; } }
    .entry-comments .comment-content a {
      word-wrap: break-word; }
  .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-meta {
    line-height: 1.3; }
    @media (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-style: normal; }
  .entry-comments .comment-metadata {
    margin-bottom: 0.75em; }
  .entry-comments .comment-metadata a {
    font-size: 1em;
    color: #757575;
    font-weight: normal;
    text-decoration: none;
    padding: 0.5em 0; }
  .entry-comments .comment-subject {
    margin-top: 1em;
    margin-bottom: 0.25em; }
  .entry-comments .comment-awaiting-moderation {
    background: #eee;
    padding: 0.5em;
    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 {
    font-size: 0.9em;
    padding: 1em 0.25em; }
    .entry-comments .comment-reply-link:hover, .entry-comments .comment-reply-link:focus {
      color: #1a76a7; }
  @media (min-width: 55em) {
    .entry-comments header {
      text-align: left; }
    .entry-comments .comment .avatar {
      display: block; } }
  .entry-comments .nav--pagination {
    border-top: none;
    margin-top: 0; }

/*
*******************************************************************
COMMENT RESPONSE FORM
*******************************************************************
*/
.comment-respond a {
  color: #2195D3; }

.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: #2195D3;
  color: #fff;
  text-align: center;
  text-decoration: none;
  font-weight: bold;
  transition: .2s all ease-in-out; }

@media (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: 0.5em;
  border-radius: 4px;
  text-decoration: none;
  display: block;
  margin: 0.5em 0 0.5em 0.75em;
  float: right;
  font-size: 0.4em; }
  @media (min-width: 55em) {
    #cancel-comment-reply-link {
      margin-top: 1.5em; } }
/*scss/molecules/_gallery.scss*/
/*Gallery*/
.gallery-item {
  display: inline-block;
  text-align: left;
  vertical-align: top;
  margin: 0 0 1.5em;
  padding: 0 1em 0 0;
  width: 50%; }

.gallery-columns-1 .gallery-item {
  width: 100%; }

.gallery-columns-2 .gallery-item {
  max-width: 50%; }

.gallery-item a,
.gallery-item a:hover,
.gallery-item a:focus {
  box-shadow: none;
  background: none;
  display: inline-block;
  max-width: 100%; }

.gallery-item a img {
  display: block;
  transition: -webkit-filter 0.2s ease-in;
  transition: filter 0.2s ease-in;
  transition: filter 0.2s ease-in, -webkit-filter 0.2s ease-in;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden; }

.gallery-item a:hover img,
.gallery-item a:focus img {
  -webkit-filter: opacity(60%);
  filter: opacity(60%); }

.gallery-caption {
  display: block;
  text-align: left;
  padding: 0 10px 0 0;
  margin-bottom: 0; }

@media (min-width: 48em) {
  /* Gallery Columns */
  .gallery-item {
    max-width: 25%; }
  .gallery-columns-1 .gallery-item {
    max-width: 100%; }
  .gallery-columns-2 .gallery-item {
    max-width: 50%; }
  .gallery-columns-3 .gallery-item {
    max-width: 33.33%; }
  .gallery-columns-4 .gallery-item {
    max-width: 25%; } }

@media (min-width: 55em) {
  /* Gallery Columns */
  .gallery-columns-5 .gallery-item {
    max-width: 20%; }
  .gallery-columns-6 .gallery-item {
    max-width: 16.66%; }
  .gallery-columns-7 .gallery-item {
    max-width: 14.28%; }
  .gallery-columns-8 .gallery-item {
    max-width: 12.5%; }
  .gallery-columns-9 .gallery-item {
    max-width: 11.11%; } }

/*scss/molecules/_intro-text.scss*/
.intro {
  font-family: "Portrait Text Web", "Times New Roman", serif;
  font-size: 1.32em; }
  .intro p:first-child {
    margin-top: 0; }

/*scss/molecules/_navigation.scss*/
/*Flex Nav Layout*/
@media (min-width: 68em) {
  .nav--flex {
    display: -webkit-flex;
    display: flex; } }

.nav--flex-end {
  -webkit-justify-content: flex-end;
          justify-content: flex-end; }

.nav--flex-start {
  -webkit-justify-content: flex-start;
          justify-content: flex-start; }

.nav--flex-center {
  -webkit-justify-content: center;
          justify-content: center; }

/*Show/Hide Menu*/
.header__navigation {
  display: none; }

.header__navigation.toggled-on,
.no-js .header__navigation {
  display: block;
  height: 92vh;
  overflow-x: scroll; }

/*Mobile Menu*/
.menu--mobile {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
  -webkit-justify-content: flex-end;
          justify-content: flex-end; }
  @media (min-width: 68em) {
    .menu--mobile {
      display: none; } }
/*Mobile Menu Icon*/
.nav--icon--mobile {
  width: 24px;
  height: 23px;
  position: relative;
  margin: 0 0 0 1em;
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
  transition: .5s ease-in-out;
  cursor: pointer; }
  .nav--icon--mobile span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background: #424242;
    border-radius: 9px;
    opacity: 1;
    left: 0;
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
    transition: .25s ease-in-out; }
  .nav--icon--mobile span:nth-child(1) {
    top: 0px; }
  .nav--icon--mobile span:nth-child(2), .nav--icon--mobile span:nth-child(3) {
    top: 9px; }
  .nav--icon--mobile span:nth-child(4) {
    top: 18px; }
  .nav--icon--mobile.toggled-on span:nth-child(1) {
    top: 9px;
    width: 0%;
    left: 50%; }
  .nav--icon--mobile.toggled-on span:nth-child(2) {
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg); }
  .nav--icon--mobile.toggled-on span:nth-child(3) {
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg); }
  .nav--icon--mobile.toggled-on span:nth-child(4) {
    top: 9px;
    width: 0%;
    left: 50%; }
  .nav--icon--mobile:hover, .nav--icon--mobile:active {
    background: none;
    opacity: 0.5; }
  @media (min-width: 68em) {
    .nav--icon--mobile {
      display: none; } }
/*Header Navigation*/
.header__navigation {
  margin-top: 0.75em;
  -webkit-flex-basis: 100%;
          flex-basis: 100%;
  max-width: 100%; }
  @media (min-width: 68em) {
    .header__navigation {
      -webkit-flex-basis: auto;
              flex-basis: auto;
      -webkit-flex-grow: 1;
              flex-grow: 1;
      display: -webkit-flex;
      display: flex;
      -webkit-justify-content: flex-end;
              justify-content: flex-end;
      -webkit-align-items: center;
              align-items: center; }
      .header__navigation nav {
        display: -webkit-flex;
        display: flex;
        -webkit-align-items: center;
                align-items: center; } }
  @media (min-width: 68em) {
    .header__navigation {
      margin-top: 0;
      padding-left: 0.5em; } }
/*Dropdown Toggle*/
.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; }
  .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: 52px; }
  .dropdown-toggle:hover, .dropdown-toggle:focus {
    background-color: rgba(238, 238, 238, 0.8);
    color: #2195D3;
    outline: none; }
    .dropdown-toggle:hover::after, .dropdown-toggle:focus::after {
      color: #424242; }
  .dropdown-toggle:focus::after {
    border-color: transparent; }
  .dropdown-toggle.toggled-on {
    -webkit-transform: rotate(-180deg);
            transform: rotate(-180deg); }
  @media (min-width: 68em) {
    .dropdown-toggle {
      display: none; } }
/*Primary Navigation*/
.nav--primary li {
  border-top: 1px solid #EEEEEE; }

.nav--primary > li {
  position: relative; }

.nav--primary a {
  font-size: 0.9166666667em;
  box-sizing: border-box;
  width: 100%;
  color: #424242;
  text-decoration: none;
  font-weight: normal;
  display: block;
  transition: .35s opacity ease-in-out;
  position: relative;
  padding: 0.75em 0.5em; }
  .nav--primary a:hover, .nav--primary a:focus {
    background: rgba(238, 238, 238, 0.5); }

@media (min-width: 68em) {
  .nav--primary {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
            align-items: center;
    text-transform: uppercase; }
    .nav--primary li {
      border-top: none; }
    .nav--primary a {
      z-index: 10000;
      /*move above dropdown menu*/
      font-size: 0.7638888889em;
      text-align: center;
      letter-spacing: 0.05em;
      padding: 2em 0.5em;
      border-top: 4px solid transparent; }
      .nav--primary a:hover, .nav--primary a:focus {
        background: rgba(33, 149, 211, 0.1);
        border-top-color: rgba(33, 149, 211, 0.2); }
    .nav--primary > .menu-item-has-children > a {
      display: -webkit-flex;
      display: flex;
      -webkit-align-items: center;
              align-items: center; }
    .nav--primary > .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:%239E9E9E;%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: 12px;
      height: 12px;
      color: #757575;
      font-family: sans-serif;
      display: inline-block;
      margin-left: 5px;
      /*margin-top: 5px;*/
      /*float: right;*/
      opacity: 0.5; }
    .nav--primary .menu-item:hover > .sub-menu,
    .nav--primary .menu-item:focus > .sub-menu {
      opacity: 1;
      right: 0px; }
    .nav--primary > .menu-item-has-children:hover, .nav--primary > .menu-item-has-children:focus {
      border-bottom: none; }
    .nav--primary > .menu-item-has-children:hover > a, .nav--primary > .menu-item-has-children:focus > a {
      background: #e8f3f9; }
    .nav--primary > .current_page_item > a, .nav--primary > .current-menu-item > a, .nav--primary > .current-menu-parent > a, .nav--primary > .current-menu-ancestor > a {
      border-top: 4px solid #2195D3;
      background: #e8f3f9; }
    .nav--primary .menu-item--feature {
      background: rgba(0, 0, 0, 0.2);
      border-bottom: none; }
      .nav--primary .menu-item--feature:hover, .nav--primary .menu-item--feature:focus {
        border-bottom: none;
        background: rgba(0, 0, 0, 0.3); }
        .nav--primary .menu-item--feature:hover a, .nav--primary .menu-item--feature:focus a {
          border-bottom: none; } }

@media (min-width: 85em) {
  .nav--primary a {
    padding: 2em 0.75em; } }

/*External Menu Item*/
.menu-item--external a {
  display: -webkit-flex;
  display: flex;
  gap: 6px;
  -webkit-align-items: center;
          align-items: center; }
  .menu-item--external a::after {
    content: "";
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M25 7 6 26m19-5V7H11' stroke-width='2' fill='none' stroke='%234893CD'/%3E%3C/svg%3E") 50% 50% no-repeat;
    width: 20px;
    height: 20px; }

/*Mobile Navigation */
@media (min-width: 68em) {
  .nav--mobile {
    display: none; } }

/*Dropdown Navigation*/
.sub-menu {
  display: none;
  margin-left: 1em; }
  .sub-menu li {
    position: relative; }
  .sub-menu a {
    font-size: 0.7638888889em;
    padding-left: 2em;
    border-radius: 0;
    border-top: none; }
  .sub-menu.toggled-on {
    display: block; }
  @media (min-width: 68em) {
    .sub-menu {
      display: block;
      position: absolute;
      right: 0;
      top: -900px;
      z-index: 99;
      margin-left: 0;
      margin-top: 0;
      opacity: 0;
      padding: 10px 0;
      width: 286px;
      background: #e8f3f9;
      border-top: none;
      /*.sub-menu .current-menu-item > a,
    .sub-menu .current-menu-item > a:hover,
    .sub-menu .current-menu-item > a:focus {
      border-bottom: 3px solid transparent;
      color: $brand-color-4;
    }*/ }
      .sub-menu > .menu-item-has-children > a::after {
        content: "\25BB";
        font-size: 14px;
        color: #BDBDBD;
        font-family: sans-serif;
        display: inline-block;
        margin-left: 10px;
        margin-top: 4px;
        float: right; }
      .sub-menu li {
        float: none;
        padding: 0 8px;
        position: relative; }
        .sub-menu li + li > a {
          border-top: 1px solid rgba(0, 0, 0, 0.05); }
      .sub-menu a {
        position: relative;
        display: block;
        border-bottom: none;
        text-transform: none;
        letter-spacing: 0;
        text-align: left;
        padding: 0.5em 1em;
        font-weight: normal;
        font-size: 0.7638888889em; }
        .sub-menu a:hover, .sub-menu a:focus {
          border-bottom: none;
          background: rgba(33, 149, 211, 0.2); }
      .sub-menu .sub-menu {
        margin: -44px 0 0 286px;
        padding: 6px 0; } }
@media (min-width: 55em) {
  .menu-item:hover > .sub-menu,
  .menu-item:focus > .sub-menu {
    right: 0;
    top: inherit;
    opacity: 1; } }

/*Logged Out/Logged In Navigation*/
.nav--logged-out, .nav--logged-in {
  display: none; }
  .nav--logged-out li a, .nav--logged-in li a {
    color: #424242;
    font-weight: normal;
    text-transform: none;
    text-decoration: none; }
  @media (min-width: 68em) {
    .nav--logged-out, .nav--logged-in {
      display: -webkit-flex;
      display: flex; } }
/*Navigation Button*/
li.nav--button {
  margin: 0 0.5em;
  text-align: center; }
  li.nav--button a {
    background: #2195D3;
    color: #fff;
    padding: 1em 0.75em;
    border-top: none;
    line-height: 1; }
    li.nav--button a:hover, li.nav--button a:focus {
      background: #1a76a7; }
  li.nav--button.current-menu-item a {
    background: #2195D3;
    color: #fff;
    padding: 1em 0.75em;
    border-top: none;
    line-height: 1; }
  li.nav--button.is-style-subtle a {
    background: #E0E0E0;
    color: #424242; }
    li.nav--button.is-style-subtle a:hover, li.nav--button.is-style-subtle a:focus {
      background: #c7c7c7; }
  li.nav--button.is-style-subtle.current-menu-item a {
    background: #E0E0E0;
    color: #424242; }

/*Profile Navigation*/
.nav--profile--avatar {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
  -webkit-justify-content: flex-end;
          justify-content: flex-end; }
  .nav--profile--avatar::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:%239E9E9E;%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; }
  .nav--profile--avatar .avatar {
    background: #fff;
    border: 1px solid #424242;
    border-radius: 50%;
    display: inline; }

.nav--profile__container {
  position: relative;
  padding: 1.4em 0.5em;
  display: none; }
  .nav--profile__container .nav--profile {
    display: none; }
  @media (min-width: 55em) {
    .nav--profile__container {
      display: block; } }
  .nav--profile__container:hover {
    background: rgba(33, 149, 211, 0.2);
    background-image: linear-gradient(to right, rgba(33, 149, 211, 0.1), rgba(33, 149, 211, 0.1)), linear-gradient(to right, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.95));
    /*set white base to help text be legible*/ }
    .nav--profile__container:hover .nav--profile {
      display: block;
      opacity: 1; }

.nav--profile {
  /*hidden until avatar is hovered, inherits styles from .sub-menu class*/
  position: absolute;
  top: 81px;
  right: 0;
  background: rgba(33, 149, 211, 0.2);
  background-image: linear-gradient(to right, rgba(33, 149, 211, 0.1), rgba(33, 149, 211, 0.1)), linear-gradient(to right, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.95));
  /*set white base to help text be legible*/
  width: 200px; }
  .nav--profile a {
    color: #424242;
    text-decoration: none; }

/*Search Navigation*/
.menu-item-search {
  position: relative;
  z-index: 100; }
  .menu-item-search a {
    padding: 1.25em 0.75em;
    display: none;
    border-top: 4px solid transparent; }
    .menu-item-search a:hover, .menu-item-search a:focus {
      background: rgba(33, 149, 211, 0.1);
      border-top-color: rgba(33, 149, 211, 0.2); }
  .menu-item-search a.is-active {
    background: rgba(33, 149, 211, 0.1);
    border-top-color: #2195D3; }
  .menu-item-search .icon-search {
    fill: #424242; }
  @media (min-width: 68em) {
    .menu-item-search a {
      display: block; }
      .menu-item-search a .icon-search {
        width: 16px;
        height: 18px;
        padding-top: 5px; }
    .menu-item-search .form--search {
      display: none;
      position: absolute;
      width: 300px;
      top: 82px;
      right: 0;
      padding: 0.75em;
      background: rgba(33, 149, 211, 0.1); } }
  @media (min-width: 68em) {
    .menu-item-search a .icon-search {
      width: 20px;
      height: 23px; } }
/*Sticky Navigation*/
.sticky.header--primary {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  margin: 0;
  z-index: 1500;
  padding: 0.5em 0; }
  .sticky.header--primary .site__logo {
    width: 150px;
    height: 28px; }
  @media (min-width: 68em) {
    .sticky.header--primary {
      padding: 0; }
      .sticky.header--primary .site__logo {
        width: 180px;
        height: 38px;
        margin-top: 0.25em;
        margin-bottom: 0.25em; }
      .sticky.header--primary .nav--primary a {
        padding-top: 1em;
        padding-bottom: 1em; }
      .sticky.header--primary li.nav--button a {
        padding-top: 0.5em;
        padding-bottom: 0.5em; }
      .sticky.header--primary .menu-item-search a {
        padding-top: 0.45em;
        padding-bottom: 0.45em; }
      .sticky.header--primary .nav--profile__container {
        padding-top: 0.6em;
        padding-bottom: 0.6em; }
      .sticky.header--primary .nav--profile {
        top: 55px; } }
.single .sticky.header--primary {
  padding-bottom: 0.75em; }

/*
*******************************************************************
FILTER NAVIGATION STYLES
*******************************************************************
*/
.nav--filter {
  border-bottom: 1px solid #F5F5F5;
  width: 100%;
  -webkit-flex-basis: 100%;
          flex-basis: 100%;
  max-width: 100%;
  margin: 1.5em 0 3em;
  font-family: "Avenir", Helvetica, Arial, sans-serif; }
  .nav--filter > ul {
    margin: 0 0 1.5em;
    padding: 0;
    border: 1px solid #EEEEEE; }
  .nav--filter li {
    list-style-type: none; }
    .nav--filter li a {
      padding: 0.75em 1em;
      display: block;
      text-align: center; }
      .nav--filter li a:hover, .nav--filter li a:focus, .nav--filter li a:active {
        background: #EEEEEE; }
  .nav--filter .menu-item--active {
    background: #2195D3;
    color: #fff; }
    .nav--filter .menu-item--active:hover, .nav--filter .menu-item--active:focus, .nav--filter .menu-item--active:active {
      background: #2195D3;
      color: #fff; }
  @media (min-width: 48em) {
    .nav--filter {
      display: -webkit-flex;
      display: flex;
      -webkit-justify-content: space-between;
              justify-content: space-between; }
      .nav--filter > ul {
        display: -webkit-flex;
        display: flex;
        margin: 0;
        border: none; }
      .nav--filter li a {
        border-bottom: 4px solid transparent;
        background: none; }
        .nav--filter li a:hover, .nav--filter li a:focus, .nav--filter li a:active {
          border-bottom-color: #EEEEEE;
          background: none; }
      .nav--filter .menu-item--active {
        border-bottom-color: #2195D3;
        background: none;
        color: #424242; }
        .nav--filter .menu-item--active:hover, .nav--filter .menu-item--active:focus, .nav--filter .menu-item--active:active {
          border-bottom-color: #2195D3;
          background: none;
          color: #424242; } }
/*
*******************************************************************
ANCHOR NAVIGATION STYLES
Used on start here page
*******************************************************************
*/
.nav--anchor {
  margin: 1em 0; }
  .nav--anchor .nav--flex {
    display: -webkit-flex;
    display: flex;
    -webkit-align-content: center;
            align-content: center;
    -webkit-justify-content: center;
            justify-content: center;
    -webkit-flex-flow: row wrap;
            flex-flow: row wrap;
    list-style: none;
    padding: 0;
    margin: 0;
    border-top: 1px solid #EEEEEE;
    border-bottom: 1px solid #F5F5F5; }
    .nav--anchor .nav--flex li {
      margin: 0; }
  .nav--anchor li a {
    font-weight: normal;
    padding: 0.5em 0.75em;
    text-decoration: none;
    display: block;
    border-bottom: none; }
    .nav--anchor li a:hover, .nav--anchor li a:focus, .nav--anchor li a:active {
      background: #F5F5F5;
      text-decoration: none;
      border-bottom: none; }
    @media (min-width: 48em) {
      .nav--anchor li a {
        padding: 0.75em 1em; } }
/*
*******************************************************************
SUBSCRIBE NAVIGATION STYLES
Used on podcast page
*******************************************************************
*/
.nav--subscribe {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-justify-content: center;
          justify-content: center; }
  .nav--subscribe li {
    float: left; }
  .nav--subscribe a {
    padding: 0.5em 0.75em 0.5em 0;
    text-decoration: underline;
    display: block; }
  @media (min-width: 55em) {
    .nav--subscribe {
      display: block; } }
/*scss/molecules/_heading-groups.scss*/
/*Page Heading*/
.header__title {
  padding: 1.5em; }

.header--page {
  position: relative;
  text-align: center; }
  @media (min-width: 68em) {
    .header--page .heading--page {
      font-size: 2.28096em; } }
/*Post Heading*/
.header--post .header__title {
  position: relative;
  text-align: left; }

@media (min-width: 35em) {
  .header--post .header__meta--alt {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
            align-items: center;
    -webkit-justify-content: space-between;
            justify-content: space-between; }
    .header--post .header__meta--alt .list-item__meta {
      -webkit-order: 2;
              order: 2;
      margin: 0.5em 0; }
    .header--post .header__meta--alt .alt {
      -webkit-order: 1;
              order: 1; } }

.header--post .list-item__category {
  padding-top: 1.5em;
  display: block;
  text-align: center;
  display: inline;
  padding-top: 0; }

/*Header with Image*/
.header--page--image .header__title {
  margin-top: -0.75em;
  background: #fff;
  position: relative;
  z-index: 10; }

@media (min-width: 68em) {
  .header--page--image .header__title {
    margin-top: -1.5em; } }

.header__image {
  width: 100%; }

.header__image--container {
  width: 100%;
  max-height: 350px;
  overflow: hidden;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center; }

.category .header--page--image .heading--page, .tag .header--page--image .heading--page {
  padding-top: 0; }

.category .header--page--image .heading--page__secondary, .tag .header--page--image .heading--page__secondary {
  padding: 1em 1em 0; }

/*Title Text*/
.heading--page {
  margin: 0;
  position: relative; }

.heading--page__secondary {
  color: #757575;
  text-transform: uppercase;
  font-family: "Avenir", Helvetica, Arial, sans-serif;
  font-weight: bold; }

.heading--page__tagline {
  color: #616161;
  font-family: "Avenir", Helvetica, Arial, sans-serif;
  margin: 0;
  line-height: 1.5;
  font-size: 0.9166666667em; }
  @media (min-width: 55em) {
    .heading--page__tagline {
      font-size: 1.1em; } }
/*Copy Title*/
.heading--page__copy {
  position: absolute;
  left: -55px;
  color: #9E9E9E;
  font-size: 20px;
  padding: 0;
  height: 48px;
  width: 48px;
  background: #F5F5F5;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
  -webkit-justify-content: center;
          justify-content: center; }
  .heading--page__copy:hover, .heading--page__copy:focus, .heading--page__copy:active {
    color: #757575;
    background: #EEEEEE; }
    .heading--page__copy:hover ~ span, .heading--page__copy:focus ~ span, .heading--page__copy:active ~ span {
      text-decoration: underline; }
  @media (min-width: 55em) {
    .heading--page__copy {
      height: 50px;
      width: 50px;
      left: -70px; } }
.heading--page__copy-target {
  display: none; }

/*Heading Meta*/
.header__meta {
  color: #757575;
  font-size: 0.9166666667em;
  margin: 0 0 2em;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
          justify-content: space-between;
  -webkit-align-items: center;
          align-items: center; }
  .header__meta a {
    font-weight: bold;
    color: #757575; }

/*Byline*/
.header__meta--byline {
  display: block;
  text-align: left;
  color: #424242;
  font-family: "Avenir", Helvetica, Arial, sans-serif;
  margin: 0;
  font-size: 14px; }

/*Centered Heading*/
.heading--center {
  text-align: center;
  display: block; }

/*Category Header*/
.header--category {
  margin-bottom: 1em; }
  .header--category .text--intro, .header--category .has-large-font-size {
    font-size: 1.15em; }

/*scss/molecules/_messaging.scss*/
/*Messaging*/
.message {
  padding: 0.75em;
  text-align: center;
  margin: 1em;
  border-radius: 3px;
  width: 100%; }
  .message p {
    margin: 0; }

.message--default {
  background: #EEEEEE; }

/*Subscribe Button Message*/
.message--subscribe {
  background: #F5F5F5;
  padding: 1.5em;
  margin: 1.5em 0;
  text-align: left;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
  -webkit-flex-flow: row wrap;
          flex-flow: row wrap; }
  .message--subscribe .message--subscribe__cta {
    -webkit-order: 2;
            order: 2;
    min-width: 200px; }
  .message--subscribe .message--subscribe__content {
    -webkit-order: 1;
            order: 1;
    margin-bottom: 0.75em; }
  @media (min-width: 48em) {
    .message--subscribe {
      -webkit-flex-flow: row nowrap;
              flex-flow: row nowrap; }
      .message--subscribe .message--subscribe__cta {
        -webkit-order: 1;
                order: 1;
        margin-right: 1em; }
      .message--subscribe .message--subscribe__content {
        -webkit-order: 2;
                order: 2;
        margin-bottom: 0; } }
/*Banner Message*/
.banner {
  background: #2195D3;
  padding: 0.75em;
  color: #fff;
  font-family: "Avenir", Helvetica, Arial, sans-serif;
  text-align: center; }
  .banner p {
    margin: 0;
    min-width: 200px; }
  .banner .button {
    margin: 0.75em 0 0;
    padding: 0.5em 0.75em; }
    @media (min-width: 55em) {
      .banner .button {
        margin: 0 0 0 0.75em;
        padding: 0.75em 1em; } }
  @media (min-width: 55em) {
    .banner {
      text-align: left; }
      .banner .container {
        display: -webkit-flex;
        display: flex;
        -webkit-justify-content: center;
                justify-content: center;
        -webkit-align-items: center;
                align-items: center; } }
.banner--minimal {
  padding: 0.5em;
  text-align: center;
  font-size: 90%; }

/*_modal.scss*/
.modal-body a {
  border-bottom: 1px solid #212121; }
  .modal-body a:hover, .modal-body a:focus, .modal-body a:active {
    border-bottom: 1px solid #616161; }

.modal-body .wp-block-embed {
  margin: 0; }

#loginModal .modal-dialog {
  max-width: 600px;
  width: 80%;
  margin-left: auto;
  margin-right: auto; }

/*Header Opt-in Modal*/
.modal.modal-header-nav .wp-block-buttons {
  display: -webkit-flex;
  display: flex; }

.modal.modal-header-nav .modal-body,
.modal.modal-header-nav .has-background:not(.has-lightgray-background-color):not(.has-primary-bg-background-color):not(.has-secondary-bg-background-color):not(.has-tertiary-bg-background-color):not(.has-white-background-color) .modal-body > * {
  color: #000 !important; }

.modal.modal-header-nav .close {
  background: #000;
  width: 36px;
  height: 36px;
  position: absolute;
  top: -20px;
  right: 15px;
  border-radius: 50%;
  z-index: 10;
  border: 3px solid #fff;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
  -webkit-justify-content: center;
          justify-content: center;
  color: #fff;
  font-size: 30px;
  line-height: 0;
  padding-bottom: 2px; }

.modal.modal-header-nav .modal-dialog {
  max-width: 90%;
  width: 840px;
  margin-left: auto;
  margin-right: auto; }

.modal.modal-header-nav .modal-body {
  padding: 0; }

.modal.modal-header-nav .modal-body .gform_footer {
  padding: 0;
  -webkit-align-items: center;
          align-items: center; }

.modal.modal-header-nav .modal-body .wp-block-group {
  padding: 1em; }

.modal.modal-header-nav p.has-big-font-size {
  margin-bottom: 0; }

@media (max-width: 55em) {
  .modal.modal-header-nav .modal-body .wp-block-image.is-style-background {
    display: none; } }

@media (min-width: 55em) {
  .modal.modal-header-nav .modal-body {
    position: relative;
    overflow: hidden; }
  .modal.modal-header-nav .modal-body .wp-block-group {
    max-width: 650px;
    margin: 0 auto;
    position: relative;
    z-index: 10; }
  .modal.modal-header-nav .modal-body .wp-block-image.is-style-background {
    position: absolute;
    bottom: 0;
    right: -30px;
    margin-bottom: 0;
    z-index: 1; } }

.has-background .modal-header-nav .modal-body h3,
.has-background .modal-header-nav .modal-body h4,
.has-background .modal-header-nav .modal-body p {
  color: #000 !important; }

#peterattia .modal .gform_confirmation_message {
  background: #EEEEEE;
  color: #000; }

/*scss/molecules/_listing.scss*/
.listing {
  margin-bottom: 1em;
  width: 100%;
  -webkit-flex-basis: 100%;
          flex-basis: 100%;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-flow: row wrap;
          flex-flow: row wrap; }
  .listing .list-item:last-child {
    margin-bottom: 0; }
  @media (min-width: 55em) {
    .listing .list-item:last-child {
      margin-bottom: inherit; } }
/*Split Listing*/
@media (min-width: 55em) {
  .listing--split .list-item {
    max-width: calc(50% - 3em);
    -webkit-flex-basis: calc(50% - 3em);
            flex-basis: calc(50% - 3em);
    margin-left: 1.5em;
    margin-right: 1.5em; }
  .listing--split .list-item__category--ns {
    left: 0.75em; } }

/*Split Listing*/
@media (min-width: 55em) {
  .listing--3up .list-item {
    max-width: calc(33% - 3em);
    -webkit-flex-basis: calc(33% - 3em);
            flex-basis: calc(33% - 3em);
    margin-left: 1.5em;
    margin-right: 1.5em; } }

.list-item {
  position: relative;
  background: #fff;
  width: 100%;
  text-align: left;
  margin-bottom: 1em;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: flex-start;
          align-items: flex-start; }
  .list-item > a {
    padding: 0;
    width: 100%; }
    .list-item > a::after {
      width: 0;
      height: 0;
      display: none; }
  .list-item .list-item__image__container {
    -webkit-flex-basis: 25%;
            flex-basis: 25%;
    max-width: 25%;
    margin-right: 5%; }
  .list-item .list-item__content {
    -webkit-flex-basis: 70%;
            flex-basis: 70%;
    max-width: 70%; }
  .list-item .list-item__description {
    display: none; }
  @media (min-width: 48em) {
    .list-item .list-item__image__container {
      -webkit-flex-basis: 40%;
              flex-basis: 40%;
      max-width: 40%; }
    .list-item .list-item__content {
      -webkit-flex-basis: 55%;
              flex-basis: 55%;
      max-width: 55%; }
    .list-item .list-item__description {
      display: block; } }
  @media (min-width: 55em) {
    .list-item .list-item__image {
      margin: 0; } }
.list-item__image {
  display: block;
  margin: 0 auto 0.75em;
  height: inherit;
  border: 1px solid #EEEEEE;
  width: 100%; }

.list-item__meta {
  color: #757575;
  font-size: 1.1em; }
  .list-item__meta em {
    text-transform: lowercase;
    color: #BDBDBD;
    font-size: 0.9166666667em;
    min-width: 80px;
    display: inline-block; }

.list-item__header {
  margin: 0 0 0.75em;
  position: relative;
  z-index: 10; }

.list-item__heading {
  font-size: 1.32em;
  margin-top: 0.25em; }
  .list-item__heading a {
    color: #424242;
    font-weight: bold;
    text-decoration: none; }

.list-item__description {
  color: #616161;
  font-family: "Avenir", Helvetica, Arial, sans-serif;
  font-size: 1em; }
  .list-item__description p {
    margin: 0; }
  .list-item__description a {
    text-decoration: underline; }

.list-item__category {
  color: #9E9E9E;
  text-transform: uppercase;
  font-family: "Avenir", Helvetica, Arial, sans-serif;
  font-style: normal;
  font-weight: bold;
  -webkit-font-smoothing: antialiased;
  font-size: 0.9166666667em;
  line-height: 1;
  /*letter-spacing: 0.05em;*/
  /*display: inline-block;*/
  display: inline;
  color: #2195D3; }
  .list-item__category a {
    font-weight: bold; }

.list-item__category--ns {
  background: #2195D3;
  color: #fff;
  padding: 0.5em 0.75em;
  position: absolute;
  top: 1px;
  left: 3em; }
  @media (min-width: 55em) {
    .list-item__category--ns {
      left: 3em; } }
/*Flipped List Item*/
@media (min-width: 48em) {
  .list-item--flipped .list-item__image__container {
    -webkit-flex-basis: 40%;
            flex-basis: 40%;
    max-width: 40%;
    margin-left: 5%;
    margin-right: 0; } }

/*Minimal Listing*/
.list-item--minimal .list-item__image {
  width: 100%; }

.list-item--minimal .list-item__category--ns {
  left: 0.5em;
  top: 1px; }

@media (min-width: 48em) {
  .list-item--minimal .list-item__image__container {
    -webkit-flex-basis: 30%;
            flex-basis: 30%;
    max-width: 30%; }
  .list-item--minimal .list-item__content {
    -webkit-flex-basis: 65%;
            flex-basis: 65%;
    max-width: 65%; } }

/*Feature Listing*/
.list-item__feature {
  -webkit-flex-flow: row nowrap;
          flex-flow: row nowrap;
  -webkit-align-content: flex-start;
          align-content: flex-start; }
  .list-item__feature a {
    display: block;
    margin: 0 auto; }
  .list-item__feature .list-item__image {
    max-width: 100%;
    width: 100%;
    margin: 0 auto; }
  .list-item__feature .list-item__category--ns {
    left: 0.5em; }
  @media (min-width: 35em) {
    .list-item__feature {
      display: -webkit-flex;
      display: flex;
      -webkit-align-items: flex-start;
              align-items: flex-start;
      text-align: left;
      margin-bottom: 1.5em; }
      .list-item__feature .list-item__image__container {
        max-width: 30%;
        -webkit-flex-basis: 30%;
                flex-basis: 30%;
        margin-right: 5%; }
      .list-item__feature .list-item__content {
        max-width: 65%;
        -webkit-flex-basis: 65%;
                flex-basis: 65%; } }
  @media (min-width: 55em) {
    .list-item__feature {
      max-width: 33.33333%;
      -webkit-flex-basis: 33.33333%;
              flex-basis: 33.33333%;
      padding: 0 1.5em; }
      .list-item__feature .list-item__header {
        margin-top: 0.75em; }
      .list-item__feature .list-item__category--ns {
        left: 3em; }
      .list-item__feature .list-item__image__container {
        max-width: 100%;
        -webkit-flex-basis: 100%;
                flex-basis: 100%;
        margin-right: 0; }
      .list-item__feature .list-item__content {
        max-width: 100%;
        -webkit-flex-basis: 100%;
                flex-basis: 100%; }
      .list-item__feature .list-item__image {
        width: 100%; } }
/*Hero Listing*/
.list-item__hero {
  position: relative;
  z-index: 1;
  border: 1px solid #E0E0E0;
  margin-bottom: 1.5em;
  -webkit-align-items: center;
          align-items: center; }
  .list-item__hero .list-item__header {
    margin-top: 0.75em; }
  .list-item__hero .list-item__image__container {
    -webkit-order: 2;
            order: 2;
    -webkit-flex-basis: 100%;
            flex-basis: 100%;
    max-width: 100%; }
  .list-item__hero .list-item__image {
    border: none;
    margin-bottom: 0; }
  .list-item__hero .list-item__content {
    -webkit-order: 1;
            order: 1;
    -webkit-flex-basis: 100%;
            flex-basis: 100%;
    max-width: 100%; }
  @media (min-width: 55em) {
    .list-item__hero {
      max-width: 100%;
      -webkit-flex-basis: 100%;
              flex-basis: 100%;
      margin: 0 1.5em 1.5em; }
      .list-item__hero .list-item__category--ns {
        left: inherit;
        right: 3em; }
      .list-item__hero .list-item__image__container {
        -webkit-order: 1;
                order: 1;
        -webkit-flex-basis: 45%;
                flex-basis: 45%;
        max-width: 45%;
        margin-right: 0; }
      .list-item__hero .list-item__content {
        -webkit-order: 2;
                order: 2;
        -webkit-flex-basis: 50%;
                flex-basis: 50%;
        max-width: 50%;
        padding: 0.75em 1.5em; }
      .list-item__hero .list-item__header {
        margin-top: 0; } }
/*Category List Item (used on Topics page)*/
.list-item--category {
  padding: 1em;
  display: block;
  border: 1px solid #EEEEEE;
  border-radius: 3px;
  margin: 0 1% 1%; }
  .list-item--category :last-child {
    margin-bottom: 0; }
  .list-item--category .list-item__image {
    margin: -1em 0 1em -1em;
    width: calc(100% + 2em);
    max-width: calc(100% + 2em);
    border-radius: 3px 3px 0 0;
    border: none; }
  @media (min-width: 48em) {
    .list-item--category {
      -webkit-flex-basis: 31.33%;
              flex-basis: 31.33%;
      max-width: 31.33%; } }
/*Tag Listing*/
.listing--tags {
  text-align: center;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
          justify-content: center;
  -webkit-flex-flow: row wrap;
          flex-flow: row wrap; }

.list-item--tag {
  list-style-type: none; }
  .list-item--tag a {
    display: inline-block;
    padding: 0.5em 1em;
    margin: 0.5em;
    border: 2px solid rgba(33, 149, 211, 0.5);
    color: rgba(33, 149, 211, 0.8);
    font-weight: bold;
    text-transform: lowercase;
    font-family: "Avenir", Helvetica, Arial, sans-serif; }
    .list-item--tag a:hover, .list-item--tag a:focus {
      background: #fff; }

/*Category Listing*/
.post-categories, .listing--categories {
  margin: 0;
  padding: 0;
  list-style: none;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-justify-content: center;
          justify-content: center;
  font-family: "Avenir", Helvetica, Arial, sans-serif; }
  .post-categories li, .listing--categories li {
    text-transform: lowercase;
    list-style-type: none; }
    .post-categories li a, .listing--categories li a {
      background: rgba(25, 82, 149, 0.5);
      color: #fff;
      padding: 0.5em 0.75em;
      margin: 0.25em;
      display: inline-block; }
      .post-categories li a:hover, .post-categories li a:focus, .listing--categories li a:hover, .listing--categories li a:focus {
        background: rgba(25, 82, 149, 0.75); }
  .post-categories ul.children, .listing--categories ul.children {
    display: none; }

/*Media Listing*/
@media (min-width: 55em) {
  .listing--media--feature .listing--media__item {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-basis: row wrap;
            flex-basis: row wrap;
    -webkit-align-items: flex-start;
            align-items: flex-start; }
  .listing--media--feature .listing--media__item__image {
    max-width: 30%;
    -webkit-flex-basis: 30%;
            flex-basis: 30%;
    margin-right: 2%; }
  .listing--media--feature .listing--media__item__content {
    max-width: 68%;
    -webkit-flex-basis: 68%;
            flex-basis: 68%; } }

.listing--media__item {
  padding-bottom: 1.5em; }
  .listing--media__item p {
    margin: 0; }
  .listing--media__item + .listing--media__item {
    border-top: 1px solid #F5F5F5;
    padding-top: 1.5em; }

.listing--media__item__image a {
  display: block; }
  .listing--media__item__image a::after {
    display: none; }

/*Question Listing*/
.list-item--question {
  margin-bottom: 3em; }
  .list-item--question .list-item__header {
    position: inherit;
    width: 100%; }
    @media (min-width: 55em) {
      .list-item--question .list-item__header {
        position: relative; } }
  .list-item--question .list-item__heading {
    margin: 0; }
    @media (min-width: 48em) {
      .list-item--question .list-item__heading {
        width: calc(100% - 120px); } }
  .list-item--question .list-item__toggle {
    display: none;
    background: none;
    color: #2195D3;
    font-size: 0.8em;
    font-weight: normal;
    border: 1px solid #EEEEEE;
    margin-top: 0.75em; }
    @media (min-width: 48em) {
      .list-item--question .list-item__toggle {
        position: absolute;
        top: 0;
        right: 0;
        border: none;
        margin-top: 0; } }
  .list-item--question .list-item__description {
    display: none; }
  .list-item--question .list-item--rating {
    width: 130px;
    min-width: 130px;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
            align-items: center;
    color: #757575;
    font-family: "Avenir", Helvetica, Arial, sans-serif;
    margin-right: 1.5em;
    margin-bottom: 0.75em; }
    .list-item--question .list-item--rating a {
      display: -webkit-flex;
      display: flex;
      -webkit-flex-flow: row wrap;
              flex-flow: row wrap;
      -webkit-align-items: center;
              align-items: center;
      -webkit-justify-content: center;
              justify-content: center;
      margin-right: 0.75em;
      text-align: center;
      width: 50px; }
      .list-item--question .list-item--rating a span {
        -webkit-flex-basis: 100%;
                flex-basis: 100%;
        max-width: 100%; }
    .list-item--question .list-item--rating svg {
      width: 28px;
      height: 28px;
      stroke: #757575;
      fill: none;
      stroke-width: 2;
      stroke-linecap: round;
      stroke-linejoin: round;
      stroke-miterlimit: 10;
      margin-right: 0.25em; }
  @media (min-width: 55em) {
    .list-item--question .list-item__content {
      width: calc(100% - 130px);
      min-width: calc(100% - 130px); } }
/*Video Listing*/
.list-item--video .list-item__image__container {
  position: relative; }
  .list-item--video .list-item__image__container::before {
    content: "";
    display: block;
    background-image: url("data:image/svg+xml,%3Csvg width='48' height='34' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M19.044 23.27l-.002-13.582 12.97 6.814-12.968 6.768zM47.52 7.334s-.47-3.33-1.908-4.798C43.786.61 41.74.601 40.803.49 34.086 0 24.011 0 24.011 0h-.022S13.914 0 7.197.49C6.258.6 4.214.61 2.387 2.535.948 4.003.48 7.334.48 7.334S0 11.247 0 15.158v3.668c0 3.912.48 7.823.48 7.823s.468 3.331 1.907 4.798c1.827 1.926 4.225 1.866 5.293 2.067C11.52 33.885 24 34 24 34s10.086-.015 16.803-.505c.938-.113 2.983-.122 4.809-2.048 1.438-1.467 1.908-4.798 1.908-4.798s.48-3.91.48-7.823v-3.668c0-3.911-.48-7.824-.48-7.824z' fill='%23000' fill-rule='evenodd'/%3E%3C/svg%3E");
    height: 34px;
    width: 48px;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -17px;
    margin-left: -24px;
    opacity: 0.5; }
  .list-item--video .list-item__image__container:hover::before, .list-item--video .list-item__image__container:focus::before, .list-item--video .list-item__image__container:active::before {
    opacity: 0.85; }

/*scss/molecules/_pagination.scss*/
.nav--pagination {
  margin: 3em auto;
  padding-top: 1.5em;
  border-top: 2px solid #EEEEEE;
  display: table;
  width: 100%;
  text-align: center; }

.nav--pagination a,
.nav--pagination a:hover,
.nav--pagination .active a,
.nav--pagination .disabled {
  color: #fff;
  text-decoration: none; }
  .nav--pagination a::after,
  .nav--pagination a:hover::after,
  .nav--pagination .active a::after,
  .nav--pagination .disabled::after {
    display: none; }

.nav--pagination .current,
.nav--pagination a,
.nav--pagination a:hover {
  padding: 0.3em 0.75em;
  border-radius: 3px;
  display: inline-block;
  color: #fff;
  background: #195295;
  font-weight: bold; }

.nav--pagination a,
.nav--pagination a:hover {
  font-weight: normal;
  color: #212121;
  cursor: pointer;
  background: none; }
  .nav--pagination a.next:hover, .nav--pagination a.prev:hover,
  .nav--pagination a:hover.next:hover,
  .nav--pagination a:hover.prev:hover {
    background: none;
    text-decoration: underline; }

.nav--pagination a:hover,
.nav--pagination .active a {
  background-color: rgba(25, 82, 149, 0.5);
  border-bottom: none; }

/*scss/molecules/_sharing.scss*/
/*Widgets*/
.sharedaddy {
  padding: 1.5em 0 0;
  margin-top: 2em;
  margin-bottom: -1.5em;
  border-top: 1px solid #EEEEEE; }

/*_sections.scss*/
/*Default Section*/
.section {
  padding: 2em 0; }

.section__heading {
  text-align: center; }

.section__subheading {
  margin-bottom: 1.5em;
  font-size: 0.9166666667em; }

.section--separate {
  margin: 0 0 3em; }

@media (min-width: 55em) {
  .section--padded {
    padding: 5em 0; } }

/*Newsletter Section*/
.section--newsletter {
  border-top: 2px solid #EEEEEE;
  border-bottom: 2px solid #EEEEEE;
  width: 100%;
  padding: 1.5em 0; }
  .section--newsletter img {
    margin-top: 0; }
  .section--newsletter ol, .section--newsletter ul {
    list-style-type: inherit;
    margin-left: 1em;
    padding-left: 1em; }

/*Bordered Section*/
.section--bordered {
  border-top: 1px solid #F5F5F5;
  border-bottom: 1px solid #F5F5F5;
  padding: 1em 0; }

/*Nerd Safari Section*/
.section--nerd-safari {
  background: #424242 url("images/bg-nerd-safari.jpg") 50% 50% no-repeat;
  background-size: cover;
  color: #fff;
  padding: 1em 0; }
  .section--nerd-safari .alt {
    margin-top: 0;
    color: #fff; }
  @media (min-width: 55em) {
    .section--nerd-safari {
      padding: 2em 0; } }
  @media (min-width: 68em) {
    .section--nerd-safari {
      padding: 3em 0; } }
@media (min-width: 55em) {
  .single .section--nerd-safari {
    padding: 1.5em 0; } }

@media (min-width: 68em) {
  .single .section--nerd-safari {
    padding: 1.5em 0; } }

/*Guest Section*/
.section--guest {
  padding: 1em;
  margin: 1.5em 0; }
  .section--guest .section--guest__heading {
    margin-top: 0; }
  .section--guest .section--guest__image {
    max-width: 200px; }
  .section--guest *:last-child {
    margin-bottom: 0; }
  @media (min-width: 68em) {
    .section--guest {
      padding: 1.5em; } }
/*Disclaimer Section*/
.section--disclaimer {
  color: #757575;
  background: #F5F5F5;
  border: 1px solid #EEEEEE;
  font-size: 0.7638888889em;
  padding: 1em;
  margin-top: 1.5em;
  margin-bottom: 1.5em; }
  .section--disclaimer p {
    margin: 0; }

/*Category Section*/
.section--category .section__heading {
  margin-top: 0;
  text-align: left; }

/*Post Section*/
.section--posts .section__heading {
  text-align: left; }
  .section--posts .section__heading a {
    font-weight: normal; }
  @media (min-width: 55em) {
    .section--posts .section__heading {
      padding-left: 0.8em;
      padding-right: 0.8em; } }
/*Hero Section*/
.section--hero {
  background: #f3f4f8;
  color: #212121;
  text-align: left;
  display: -webkit-flex;
  display: flex;
  -webkit-align-content: center;
          align-content: center;
  -webkit-align-items: center;
          align-items: center;
  padding: 1.5em 0;
  max-width: 1800px;
  margin: 0 auto; }
  .section--hero a {
    text-decoration: underline; }
  .section--hero h1 {
    font-size: 1.9008em; }
  .section--hero p {
    font-size: 1.1em; }
  .section--hero .button {
    text-decoration: none;
    font-size: 0.85em; }
    @media (min-width: 55em) {
      .section--hero .button {
        font-size: 1em; } }
  @media (min-width: 48em) {
    .section--hero {
      background: #f3f4f8 url(/wp-content/uploads/2020/06/Peter-Attia-Hero.jpg) right 50% no-repeat;
      background-position: right -100px top 50%;
      background-size: contain;
      text-align: left;
      min-height: 460px; } }
  @media (min-width: 55em) {
    .section--hero {
      min-height: 560px; }
      .section--hero h1 {
        font-size: 2.28096em; } }
  @media (min-width: 68em) {
    .section--hero {
      background-position: right 0px top 50%; } }
/*Testimonial Section*/
.section--testimonials {
  padding-bottom: 0; }

/*Callout Section*/
.section--callout {
  padding: 1em;
  margin: 0 0 1.5em;
  background: #F5F5F5;
  border: 2px solid #EEEEEE; }
  .section--callout h5 {
    font-weight: bold;
    font-family: "Avenir", Helvetica, Arial, sans-serif;
    margin-top: 0; }
  .section--callout ul {
    font-size: 80%;
    margin: 0; }
    .section--callout ul li {
      margin-bottom: 0; }

/*Colored Sections*/
.section--gray {
  background: #F5F5F5; }

.section--blue {
  background: #195295;
  color: #fff; }
  .section--blue .alt {
    color: #fff; }
  .section--blue .button {
    background: #fff;
    color: #195295; }
    .section--blue .button:hover, .section--blue .button:focus, .section--blue .button:active {
      background: rgba(255, 255, 255, 0.8); }

/*scss/molecules/_widgets.scss*/
/*Widgets*/
.widget {
  margin-bottom: 3em; }
  .widget ul {
    padding: 0;
    margin: 0;
    list-style-type: none; }
  .widget li + li {
    margin-top: 1em; }
  .widget .button {
    color: #fff;
    text-decoration: none; }
    .widget .button:hover, .widget .button:focus {
      color: #fff; }

.widget__title {
  font-size: 1.1em;
  margin: 0 0 1em;
  text-transform: uppercase;
  color: #616161;
  font-family: "Avenir", Helvetica, Arial, sans-serif; }

/*Author Widget*/
.widget--author {
  box-sizing: border-box;
  font-family: "Avenir", Helvetica, Arial, sans-serif;
  font-size: 0.9166666667em;
  color: #BDBDBD;
  margin: 0 0 0.75em 0;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
  -webkit-flex-grow: 0;
          flex-grow: 0;
  -webkit-flex-shrink: 0;
          flex-shrink: 0;
  -webkit-flex-basis: 100%;
          flex-basis: 100%;
  max-width: 100%;
  -webkit-justify-content: center;
          justify-content: center; }
  .widget--author p {
    margin: 0;
    text-align: left; }
  .widget--author strong {
    text-transform: uppercase;
    color: #616161;
    font-size: 1.1em;
    display: block; }
  .widget--author .avatar {
    max-width: 50px;
    width: 50px;
    height: 50px;
    margin-right: 0.75em;
    border-radius: 50%; }
  @media (min-width: 48em) {
    .widget--author {
      -webkit-justify-content: flex-start;
              justify-content: flex-start;
      margin: 0; } }
.widget--author__text {
  font-size: 0.9166666667em; }

/*Read Time Widget*/
.widget--read-time {
  text-transform: lowercase; }
  .widget--read-time strong {
    font-weight: normal;
    text-transform: none; }

/*Share Widget*/
@media (min-width: 48em) {
  .widget--share {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: flex-end;
            justify-content: flex-end; } }

/*Reading Progress Widget*/
.widget--progress {
  display: none;
  /*hide progress bar by default*/
  width: 100%;
  height: 3px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  background-color: transparent;
  color: #2195D3;
  background-color: #EEEEEE;
  transition: width .6s ease; }
  .widget--progress[value] {
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    background-color: #2195D3 !important; }

::-moz-progress-bar {
  -moz-appearance: none;
       appearance: none;
  background-color: #2195D3 !important; }

::-webkit-progress-value {
  background-color: #2195D3 !important; }

::-webkit-progress-bar {
  background-color: #EEEEEE !important; }

.single .header--primary.sticky .widget--progress {
  display: block;
  clear: both;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0; }

/*Footer Widgets*/
.footer .widget__title {
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 2em;
  font-weight: bold; }

.footer .widget {
  text-align: center; }
  .footer .widget a {
    display: block; }
  @media (min-width: 48em) {
    .footer .widget {
      text-align: left; } }
/*_blocks.scss*/
/*
*******************************************************************
GUTENBURG ALIGNMENT OPTIONS
*******************************************************************
*/
.content--post {
  /*Allow block groups set to align wide to be wider*/ }
  .content--post > *.alignwide {
    max-width: 986px;
    margin: 0 auto; }
  .content--post > .wp-block-group.alignwide {
    margin: 1em calc(50% - 50vw);
    max-width: 100vw;
    width: 100vw; }
    @media (min-width: 55em) {
      .content--post > .wp-block-group.alignwide {
        margin-top: 1.5em;
        margin-bottom: 1.5em; } }
    @media (min-width: 1400px) {
      .content--post > .wp-block-group.alignwide {
        max-width: 1400px;
        width: 1400px;
        margin-left: -316px;
        margin-right: -316px; } }
  .content--post > *.alignfull,
  .content--post .block-area > *.alignfull {
    margin: 1.5em calc(50% - 50vw);
    max-width: 100vw;
    width: 100vw; }
  .content--post > *.alignfull:first-child,
  .content--post .block-area > *.alignfull:first-child {
    margin-top: -1em; }
    @media (min-width: 55em) {
      .content--post > *.alignfull:first-child,
      .content--post .block-area > *.alignfull:first-child {
        margin-top: -3em; } }
/*
*******************************************************************
DEFAULT BLOCK
*******************************************************************
*/
.wp-block-group {
  padding: 2em 0;
  /*Minimal Padding*/ }
  @media (min-width: 55em) {
    .wp-block-group {
      padding: 3em 0; } }
  .wp-block-group.is-style-minimal-padding {
    padding: 1em 0; }

/*Remove margin when background blocks are stacked*/
.wp-block-group[class*="bg--"] + .wp-block-group[class*="background"],
.wp-block-group[class*="bg--"] + .has-background,
.has-background + .has-background {
  margin-top: -1.5em; }

/*Remove margin from last block*/
.content--post div.wp-block-group:last-child[class*="bg--"] {
  margin-bottom: -2em; }

/*Remove bottom margin on last block*/
section[class*="block--"]:last-of-type {
  margin-bottom: 0; }

/*
*******************************************************************
BLOCK CONTENT
*******************************************************************
*/
.block__content {
  width: 1400px;
  max-width: 95%;
  margin: 0 auto;
  /*Remove top margin when subheading used*/ }
  .block__content h2 {
    margin-top: 0; }
  .block__content h2 + h3 {
    margin-top: 0; }

/*
*******************************************************************
COLOR OPTIONS
*******************************************************************
*/
.has-primary-color {
  color: #195295; }

.has-light-primary-color {
  color: white; }

.has-primary-background-color {
  background-color: #195295; }

.has-light-primary-background-color {
  background-color: white; }
  .has-light-primary-background-color a {
    color: #2195D3; }

.has-secondary-color {
  color: #2195D3; }

.has-light-secondary-color {
  color: white; }

.has-secondary-background-color {
  background-color: #2195D3; }

.has-light-secondary-background-color {
  background-color: white; }
  .has-light-secondary-background-color a {
    color: #2195D3; }

.has-tertiary-color {
  color: #2B4163; }

.has-light-tertiary-color {
  color: white; }

.has-tertiary-background-color {
  background-color: #2B4163; }

.has-light-tertiary-background-color {
  background-color: white; }
  .has-light-tertiary-background-color a {
    color: #2195D3; }

.has-primary-bg-color {
  color: #e8edf4; }

.has-light-primary-bg-color {
  color: white; }

.has-primary-bg-background-color {
  background-color: #e8edf4; }

.has-light-primary-bg-background-color {
  background-color: white; }
  .has-light-primary-bg-background-color a {
    color: #2195D3; }

.has-secondary-bg-color {
  color: #e8f4fa; }

.has-light-secondary-bg-color {
  color: white; }

.has-secondary-bg-background-color {
  background-color: #e8f4fa; }

.has-light-secondary-bg-background-color {
  background-color: white; }
  .has-light-secondary-bg-background-color a {
    color: #2195D3; }

.has-tertiary-bg-color {
  color: #e9ecef; }

.has-light-tertiary-bg-color {
  color: white; }

.has-tertiary-bg-background-color {
  background-color: #e9ecef; }

.has-light-tertiary-bg-background-color {
  background-color: white; }
  .has-light-tertiary-bg-background-color a {
    color: #2195D3; }

.has-white-color {
  color: #FFFFFF; }

.has-light-white-color {
  color: white; }

.has-white-background-color {
  background-color: #FFFFFF; }

.has-light-white-background-color {
  background-color: white; }
  .has-light-white-background-color a {
    color: #2195D3; }

.has-lightgray-color {
  color: #F5F5F5; }

.has-light-lightgray-color {
  color: white; }

.has-lightgray-background-color {
  background-color: #F5F5F5; }

.has-light-lightgray-background-color {
  background-color: white; }
  .has-light-lightgray-background-color a {
    color: #2195D3; }

.has-midgray-color {
  color: #757575; }

.has-light-midgray-color {
  color: white; }

.has-midgray-background-color {
  background-color: #757575; }

.has-light-midgray-background-color {
  background-color: white; }
  .has-light-midgray-background-color a {
    color: #2195D3; }

.has-darkgray-color {
  color: #424242; }

.has-light-darkgray-color {
  color: white; }

.has-darkgray-background-color {
  background-color: #424242; }

.has-light-darkgray-background-color {
  background-color: white; }
  .has-light-darkgray-background-color a {
    color: #2195D3; }

.has-darkestgray-color {
  color: #1B1B1B; }

.has-light-darkestgray-color {
  color: #e7e7e7; }

.has-darkestgray-background-color {
  background-color: #1B1B1B; }

.has-light-darkestgray-background-color {
  background-color: #e7e7e7; }
  .has-light-darkestgray-background-color a {
    color: #2195D3; }

.has-background:not(.has-lightgray-background-color):not(.has-primary-bg-background-color):not(.has-secondary-bg-background-color):not(.has-tertiary-bg-background-color):not(.has-white-background-color) {
  color: #fff;
  /*List Item*/
  /*Blocks*/ }
  .has-background:not(.has-lightgray-background-color):not(.has-primary-bg-background-color):not(.has-secondary-bg-background-color):not(.has-tertiary-bg-background-color):not(.has-white-background-color) h1, .has-background:not(.has-lightgray-background-color):not(.has-primary-bg-background-color):not(.has-secondary-bg-background-color):not(.has-tertiary-bg-background-color):not(.has-white-background-color) h2, .has-background:not(.has-lightgray-background-color):not(.has-primary-bg-background-color):not(.has-secondary-bg-background-color):not(.has-tertiary-bg-background-color):not(.has-white-background-color) h3, .has-background:not(.has-lightgray-background-color):not(.has-primary-bg-background-color):not(.has-secondary-bg-background-color):not(.has-tertiary-bg-background-color):not(.has-white-background-color) h4, .has-background:not(.has-lightgray-background-color):not(.has-primary-bg-background-color):not(.has-secondary-bg-background-color):not(.has-tertiary-bg-background-color):not(.has-white-background-color) h5, .has-background:not(.has-lightgray-background-color):not(.has-primary-bg-background-color):not(.has-secondary-bg-background-color):not(.has-tertiary-bg-background-color):not(.has-white-background-color) h6, .has-background:not(.has-lightgray-background-color):not(.has-primary-bg-background-color):not(.has-secondary-bg-background-color):not(.has-tertiary-bg-background-color):not(.has-white-background-color) p {
    color: #fff; }
  .has-background:not(.has-lightgray-background-color):not(.has-primary-bg-background-color):not(.has-secondary-bg-background-color):not(.has-tertiary-bg-background-color):not(.has-white-background-color) p, .has-background:not(.has-lightgray-background-color):not(.has-primary-bg-background-color):not(.has-secondary-bg-background-color):not(.has-tertiary-bg-background-color):not(.has-white-background-color) ul, .has-background:not(.has-lightgray-background-color):not(.has-primary-bg-background-color):not(.has-secondary-bg-background-color):not(.has-tertiary-bg-background-color):not(.has-white-background-color) ol {
    color: #fff; }
  .has-background:not(.has-lightgray-background-color):not(.has-primary-bg-background-color):not(.has-secondary-bg-background-color):not(.has-tertiary-bg-background-color):not(.has-white-background-color) .list-item {
    color: #fff; }
    .has-background:not(.has-lightgray-background-color):not(.has-primary-bg-background-color):not(.has-secondary-bg-background-color):not(.has-tertiary-bg-background-color):not(.has-white-background-color) .list-item a {
      color: #fff; }
  .has-background:not(.has-lightgray-background-color):not(.has-primary-bg-background-color):not(.has-secondary-bg-background-color):not(.has-tertiary-bg-background-color):not(.has-white-background-color) .list-item__excerpt {
    color: #fff; }
    .has-background:not(.has-lightgray-background-color):not(.has-primary-bg-background-color):not(.has-secondary-bg-background-color):not(.has-tertiary-bg-background-color):not(.has-white-background-color) .list-item__excerpt p, .has-background:not(.has-lightgray-background-color):not(.has-primary-bg-background-color):not(.has-secondary-bg-background-color):not(.has-tertiary-bg-background-color):not(.has-white-background-color) .list-item__excerpt ul, .has-background:not(.has-lightgray-background-color):not(.has-primary-bg-background-color):not(.has-secondary-bg-background-color):not(.has-tertiary-bg-background-color):not(.has-white-background-color) .list-item__excerpt ol {
      color: #fff; }
  .has-background:not(.has-lightgray-background-color):not(.has-primary-bg-background-color):not(.has-secondary-bg-background-color):not(.has-tertiary-bg-background-color):not(.has-white-background-color) .list-item__heading {
    color: #fff; }
    .has-background:not(.has-lightgray-background-color):not(.has-primary-bg-background-color):not(.has-secondary-bg-background-color):not(.has-tertiary-bg-background-color):not(.has-white-background-color) .list-item__heading a {
      color: #fff; }
  .has-background:not(.has-lightgray-background-color):not(.has-primary-bg-background-color):not(.has-secondary-bg-background-color):not(.has-tertiary-bg-background-color):not(.has-white-background-color) .block-post-listing__title {
    color: #fff; }
    .has-background:not(.has-lightgray-background-color):not(.has-primary-bg-background-color):not(.has-secondary-bg-background-color):not(.has-tertiary-bg-background-color):not(.has-white-background-color) .block-post-listing__title a {
      color: #fff; }

/*scss/organisms/_aside.scss*/
/*Aside*/
.sidebar--primary {
  border-top: 1px solid #EEEEEE;
  margin-top: 1.5em;
  margin-bottom: 3em;
  padding-top: 1.5em; }
  @media (min-width: 55em) {
    .sidebar--primary {
      border-top: none;
      padding-top: 0;
      margin-top: 0; } }
/*scss/organisms/_footer.scss*/
/*Primary Site Footer*/
.footer {
  font-size: 0.7638888889em;
  font-family: "Avenir", Helvetica, Arial, sans-serif;
  text-align: left;
  position: relative;
  color: #fff;
  background: #424242;
  margin-top: 3em;
  padding-top: 3em; }
  .footer a.site__logo {
    margin: 0 auto 1em; }
  .footer .form--inline {
    min-width: 320px; }
    .footer .form--inline input[type="submit"] {
      max-width: 120px; }
  .footer .footer__form {
    display: none; }
    @media (min-width: 48em) {
      .footer .footer__form {
        display: block; } }
  .footer .footer--logo {
    text-align: center; }
    .footer .footer--logo p {
      margin: 1em 0; }
    .footer .footer--logo h4 {
      color: #fff;
      margin-top: 1.5em; }
    .footer .footer--logo .form--inline_wrapper {
      margin: 0; }
    .footer .footer--logo .gform_wrapper ul li.gfield {
      margin-top: 0.5em; }
    .footer .footer--logo .gform_footer {
      margin-top: 0;
      padding-top: 0.5em; }
    @media (min-width: 55em) {
      .footer .footer--logo {
        text-align: left; } }
  .footer .container {
    padding: 1.5em 0 2em; }
  .footer .form--search {
    margin: 2em 0; }
  .footer p {
    margin: 0; }
  .footer a {
    color: #fff;
    font-weight: normal;
    text-decoration: none; }
    .footer a:hover, .footer a:focus {
      text-decoration: underline; }
  .footer .footer__copyright {
    margin-top: 1.5em;
    text-align: center; }
    @media (min-width: 48em) {
      .footer .footer__copyright {
        text-align: left; } }
  .footer .nav--legal {
    text-align: center; }
  .footer .widget {
    margin-top: 1.5em; }
  @media (min-width: 48em) {
    .footer a.site__logo {
      margin: 0 0 1.5em; }
    .footer .nav--legal {
      text-align: right; }
    .footer .widget {
      margin-top: 0; } }
/*Post Footer*/
.footer--post section {
  margin: 1.5em 0; }

.footer--post .widget--author {
  color: #616161;
  font-family: "Portrait Text Web", "Times New Roman", serif;
  font-size: 1.1em;
  -webkit-align-items: flex-start;
          align-items: flex-start; }
  .footer--post .widget--author .avatar {
    max-width: 96px; }
  .footer--post .widget--author p {
    font-size: 0.9166666667em; }
  .footer--post .widget--author .widget--author__content {
    width: calc(100% - 96px - 0.75em); }
  .footer--post .widget--author .widget--author__title {
    margin-top: 0; }

.footer--post .listing--tags, .footer--post .post-categories {
  -webkit-justify-content: flex-start;
          justify-content: flex-start;
  margin: 0;
  padding: 0;
  font-size: 0.9166666667em; }
  .footer--post .listing--tags a, .footer--post .post-categories a {
    margin: 0.25em; }

/*scss/organisms/_header.scss*/
/*Site Header*/
.site__logo {
  display: block;
  margin: 0 10px 0 0;
  width: 180px;
  height: 34px; }
  .site__logo img {
    width: 100%;
    display: block;
    margin: 0; }
  @media (min-width: 48em) {
    .site__logo {
      width: 242px;
      height: 45px;
      margin: 0; } }
  @media (min-width: 68em) {
    .site__logo {
      margin-top: 0.75em;
      margin-bottom: 0.75em; } }
/*Primary Header*/
.header--primary {
  position: relative;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid #EEEEEE;
  padding: 0.75em 0;
  font-family: "Avenir", Helvetica, Arial, sans-serif;
  /*Header Search*/ }
  .header--primary .form--search {
    margin: 0.75em auto; }
  @media (min-width: 68em) {
    .header--primary {
      padding: 0; }
      .header--primary .form--search {
        margin: 0 0 0 1em; } }
/*Logo / Search Bar Area*/
.header__logo > .col__lg--3 {
  -webkit-flex-flow: row nowrap;
          flex-flow: row nowrap; }

.header__logo > div {
  -webkit-align-items: center;
          align-items: center; }

/*scss/organisms/_page-content.scss*/
.content--primary {
  margin: 1em 0; }
  @media (min-width: 68em) {
    .content--primary {
      margin: 2em 0; } }
  @media (min-width: 85em) {
    .content--primary {
      font-size: 1.1em; } }
@media (min-width: 55em) {
  .single-post .content {
    font-size: 1.1em; } }

@media (min-width: 68em) {
  .single-post .content {
    font-size: 1.2em; }
    .single-post .content .section--newsletter {
      font-size: 0.9em; } }

.single-post .content--post p:first-child:first-letter {
  float: left;
  font-family: "Avenir", Helvetica, Arial, sans-serif;
  font-size: 62px;
  line-height: 50px;
  padding-top: 10px;
  padding-right: 10px;
  padding-left: 0px; }

.single-post .content--post .mepr-unauthorized-message p:first-child:first-letter {
  float: none;
  font-size: inherit;
  line-height: inherit;
  padding-top: 0;
  padding-right: 0;
  padding-left: 0; }

.single-post .content--post blockquote, .single-post .content--post .section--disclaimer {
  /*Remove drop-cap in blockquotes*/ }
  .single-post .content--post blockquote p:first-child:first-letter, .single-post .content--post .section--disclaimer p:first-child:first-letter {
    float: none;
    font-size: inherit;
    line-height: inherit;
    padding-top: 0;
    padding-right: 0;
    padding-left: 0; }

.single-post .content--post .text--no-drop-cap:first-child:first-letter,
.single-post .content--post .smart-podcast-player p:first-child:first-letter,
.single-post .content--post .spp-artist-and-title p:first-child:first-letter {
  float: none;
  font-size: inherit;
  line-height: inherit;
  padding-top: 0;
  padding-right: 0;
  padding-left: 0;
  font-family: inherit; }

.layout--default main {
  max-width: 768px; }

.layout--wide main {
  max-width: 1400px; }

/*scss/pages/_default.scss*/
.content--post {
  margin: 0 0 3em; }
  .content--post iframe {
    min-height: 150px; }
  .content--post form iframe {
    min-height: inherit; }
  .content--post .wp-block-group.alignfull:last-child,
  .content--post .block.alignfull:last-child {
    margin-bottom: -2em; }
  @media (min-width: 55em) {
    .content--post iframe {
      /*min-height: 315px;*/ } }
/*Category Archive*/
.category.archive .list-item .list-item__category {
  display: none;
  /* hide category on listings on category pages */ }

/*Nerd Safari Listing*/
.post-type-archive-nerd-safari .list-item__category--ns {
  display: none; }

/*scss/pages/_home.scss*/
/*.home {
  @include large {
    .header__logo {
      position: relative;
    }
    .site__logo {
      margin-left: auto;
      margin-right: auto;
    }
    .header__navigation {
      justify-content: center;
    }

    .menu-logged-in-navigation-container, .menu-logged-out-navigation-container, .nav--profile__container {
      position: absolute;
      top: 0;
      right: 0;
    }
    .menu-logged-in-navigation-container {
      right: 80px;
    }
  }
}
*/
.home .content--primary {
  margin-top: 0;
  margin-bottom: 0; }

.home .list-item__hero {
  padding-bottom: 2em; }
  @media (min-width: 55em) {
    .home .list-item__hero {
      padding: 0 1.5em; } }
.home .section--posts .section__heading {
  text-align: center;
  margin-bottom: 1em; }

.home .testimonial {
  font-size: 1em; }
  @media (min-width: 68em) {
    .home .testimonial {
      padding: 1em; } }
.home .footer {
  margin-top: 0; }

#peterattia.home .form--inline {
  -webkit-justify-content: center;
          justify-content: center;
  margin: 0 auto; }

/*_search.scss*/
.search .header--page {
  margin: 0.75em 0 2em; }

.search .heading--page {
  background: none;
  padding: 0.5em; }

/*_podcast.scss*/
.page--podcast {
  /*Header*/
  /*
  *******************************************************************
  SUBSCRIBE NAV + ICONS
  *******************************************************************
  */ }
  .page--podcast .header--podcast {
    margin-bottom: 1.5em; }
    @media (min-width: 48em) {
      .page--podcast .header--podcast .col__md--10 {
        display: -webkit-flex;
        display: flex;
        -webkit-align-items: center;
                align-items: center; } }
  .page--podcast .header__image {
    max-width: 35%;
    -webkit-flex-basis: 35%;
            flex-basis: 35%;
    float: right;
    margin: 0 0 0.75em 0.75em; }
  .page--podcast .header__title {
    text-align: left;
    padding: 0; }
  .page--podcast .heading--page__secondary {
    font-family: "Portrait Text Web", "Times New Roman", serif;
    text-transform: none;
    font-style: italic;
    color: #424242;
    font-weight: normal; }
  @media (min-width: 48em) {
    .page--podcast .header__image {
      max-width: 300px;
      -webkit-flex-basis: 300px;
              flex-basis: 300px;
      float: none;
      margin: 0 auto; }
    .page--podcast .header__title {
      -webkit-flex-basis: calc(100% - 300px);
              flex-basis: calc(100% - 300px);
      max-width: calc(100% - 300px);
      padding: 1.5em; } }
  @media (min-width: 55em) {
    .page--podcast {
      margin: 1.5em auto; } }
  .page--podcast .subscribe-navigation {
    margin-top: 1.5em;
    font-family: "Avenir", Helvetica, Arial, sans-serif; }
    @media (min-width: 55em) {
      .page--podcast .subscribe-navigation::before {
        content: "";
        display: block;
        width: 100px;
        height: 3px;
        background: #F5F5F5;
        margin-bottom: 1.5em; } }
    .page--podcast .subscribe-navigation a {
      padding: 0.75em 1em;
      font-weight: bold;
      font-size: 0.9166666667em; }
      @media (min-width: 55em) {
        .page--podcast .subscribe-navigation a {
          padding: 0.75em 1.5em 0.75em 0;
          margin-right: 0.25em; } }
  .page--podcast .nav--subscribe a[class^="icon"] {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
            align-items: center;
    text-decoration: none;
    color: #616161; }
    .page--podcast .nav--subscribe a[class^="icon"]::before {
      content: "";
      display: block;
      width: 30px;
      height: 30px;
      background-size: 30px 30px;
      background-position: 50% 50%;
      background-repeat: no-repeat;
      opacity: 0.6;
      margin-right: 0.5em; }
    .page--podcast .nav--subscribe a[class^="icon"]:hover, .page--podcast .nav--subscribe a[class^="icon"]:active, .page--podcast .nav--subscribe a[class^="icon"]:focus {
      color: #424242; }
      .page--podcast .nav--subscribe a[class^="icon"]:hover::before, .page--podcast .nav--subscribe a[class^="icon"]:active::before, .page--podcast .nav--subscribe a[class^="icon"]:focus::before {
        opacity: 0.8; }
    .page--podcast .nav--subscribe a[class^="icon"].icon--apple-podcasts::before {
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 16 16' xmlns='http://www.w3.org/2000/svg' fill-rule='evenodd' clip-rule='evenodd' stroke-linejoin='round' stroke-miterlimit='1.414'%3E%3Cpath fill='%23000' d='M8 16s1.75 0 1.75-5.18c0-.965-.784-1.75-1.75-1.75s-1.75.785-1.75 1.75C6.25 16 8 16 8 16zm2.147-1.766c.077-.296.136-.595.183-.897l.035-.24a6.32 6.32 0 003.12-2.753c.297-.534.516-1.11.646-1.71.15-.67.19-1.368.11-2.052a5.99 5.99 0 00-.51-1.853c-.31-.69-.74-1.32-1.28-1.85-.55-.55-1.2-1-1.91-1.31-.73-.33-1.53-.5-2.34-.52-.81-.02-1.62.11-2.38.4-.73.28-1.4.69-1.98 1.22a6.244 6.244 0 00-1.97 5.57c.09.58.26 1.15.51 1.69a6.305 6.305 0 002.83 2.92c.15.07.3.14.46.21.01.08.03.17.04.26.05.29.11.59.18.88a7.312 7.312 0 01-4.19-3.47 7.5 7.5 0 01-.73-2c-.17-.77-.2-1.58-.1-2.37.1-.74.31-1.47.62-2.14.37-.79.89-1.52 1.51-2.13A6.957 6.957 0 015.2.62 7.307 7.307 0 017.933.05c.938-.01 1.877.16 2.75.503a7.272 7.272 0 014.508 5.636c.12.76.12 1.54-.01 2.29-.11.7-.34 1.39-.65 2.03a7.288 7.288 0 01-3.27 3.27c-.35.17-.72.32-1.1.44zm.346-2.854l.006-.312c0-.21 0-.42-.03-.627-.01-.08-.03-.15-.05-.23a3.73 3.73 0 001.28-2.14c.08-.4.1-.82.04-1.24-.05-.37-.15-.73-.3-1.07-.19-.41-.45-.79-.77-1.11-.33-.32-.7-.58-1.12-.77-.46-.2-.96-.32-1.46-.33-.5-.01-1.01.08-1.48.26-.42.17-.81.41-1.15.72-.34.31-.62.67-.82 1.08-.17.33-.29.68-.36 1.05a3.7 3.7 0 00-.03 1.15c.05.37.15.73.3 1.07.23.51.57.96.99 1.33l-.06.27c-.04.21-.03.41-.03.63v.28a4.73 4.73 0 01-1.67-1.77c-.23-.41-.39-.85-.48-1.31a4.54 4.54 0 01-.06-1.56 4.753 4.753 0 011.35-2.76c.41-.41.89-.74 1.41-.97.58-.26 1.21-.4 1.84-.42.64-.01 1.28.1 1.87.33.54.21 1.03.52 1.46.91.42.39.78.85 1.04 1.36.21.42.37.87.45 1.33.08.48.1.97.03 1.45-.06.47-.19.93-.39 1.36-.39.87-1.06 1.62-1.88 2.11zM8 5.016c.974 0 1.764.79 1.764 1.765a1.763 1.763 0 11-3.528.01c0-.97.79-1.761 1.764-1.761z'/%3E%3C/svg%3E"); }
    .page--podcast .nav--subscribe a[class^="icon"].icon--rss::before {
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='m10 27c0 2.78125-2.265625 5-5 5-2.78125 0-5-2.21875-5-5 0-2.734375 2.21875-5 5-5 2.734375 0 5 2.265625 5 5zm22 4.328125c0 .375-.296875.671875-.671875.671875h-4.65625c-.375 0-.671875-.296875-.671875-.671875 0-14-11.328125-25.328125-25.328125-25.328125-.375 0-.671875-.296875-.671875-.671875v-4.65625c0-.375.296875-.671875.671875-.671875 17.296875 0 31.328125 14.03125 31.328125 31.328125zm-10 0c0 .375-.296875.671875-.671875.671875h-4.65625c-.375 0-.671875-.296875-.671875-.671875 0-8.46875-6.859375-15.328125-15.328125-15.328125-.375 0-.671875-.296875-.671875-.671875v-4.65625c0-.375.296875-.671875.671875-.671875 11.765625 0 21.328125 9.5625 21.328125 21.328125z' fill-rule='evenodd'/%3E%3C/svg%3E%0A"); }
    .page--podcast .nav--subscribe a[class^="icon"].icon--google::before {
      background-image: url("data:image/svg+xml,%3Csvg version='1.1' id='Layer_1' xmlns='http://www.w3.org/2000/svg' x='0' y='0' viewBox='0 0 22 22' xml:space='preserve'%3E%3Cstyle%3E.st0%7Bfill:%23000%7D%3C/style%3E%3Cg id='Icon'%3E%3Cg id='Podcast_icon_final'%3E%3Cg id='_logo_Podcasts_192px'%3E%3Cpath id='Shape' class='st0' d='M9.6 7V15h2.8V7z'/%3E%3Ccircle id='Oval' class='st0' cx='1.4' cy='10.2' r='1.4'/%3E%3Ccircle id='Oval-2' class='st0' cx='1.4' cy='11.8' r='1.4'/%3E%3Cpath id='Rectangle-path' class='st0' d='M0 10.2h2.8v1.5H0z'/%3E%3Ccircle id='Oval-3' class='st0' cx='20.6' cy='11.8' r='1.4'/%3E%3Ccircle id='Oval-4' class='st0' cx='20.6' cy='10.2' r='1.4'/%3E%3Cpath id='Rectangle-path-2' class='st0' d='M19.2 10.2H22v1.5h-2.8z'/%3E%3Ccircle id='Oval-5' class='st0' cx='6.1' cy='14.8' r='1.4'/%3E%3Ccircle id='Oval-6' class='st0' cx='6.1' cy='16.2' r='1.4'/%3E%3Cpath id='Rectangle-path-3' class='st0' d='M4.8 14.8h2.8v1.5H4.8z'/%3E%3Ccircle id='Oval-7' class='st0' cx='6.1' cy='5.8' r='1.4'/%3E%3Ccircle id='Oval-8' class='st0' cx='6.1' cy='10.6' r='1.4'/%3E%3Cpath id='Rectangle-path-4' class='st0' d='M4.8 5.8h2.8v4.9H4.8z'/%3E%3Ccircle id='Oval-9' class='st0' cx='15.9' cy='7.2' r='1.4'/%3E%3Ccircle id='Oval-10' class='st0' cx='15.9' cy='5.8' r='1.4'/%3E%3Cpath id='Rectangle-path-5' class='st0' d='M14.5 5.8h2.8v1.5h-2.8z'/%3E%3Ccircle id='Oval-11' class='st0' cx='11' cy='2.9' r='1.4'/%3E%3Ccircle id='Oval-12' class='st0' cx='11' cy='1.4' r='1.4'/%3E%3Cpath id='Rectangle-path-6' class='st0' d='M9.6 1.4h2.8v1.5H9.6z'/%3E%3Ccircle id='Oval-13' class='st0' cx='11' cy='20.6' r='1.4'/%3E%3Ccircle id='Oval-14' class='st0' cx='11' cy='19.1' r='1.4'/%3E%3Cpath id='Rectangle-path-7' class='st0' d='M9.6 19.1h2.8v1.5H9.6z'/%3E%3Ccircle id='Oval-15' class='st0' cx='15.9' cy='16.2' r='1.4'/%3E%3Ccircle id='Oval-16' class='st0' cx='15.9' cy='11.4' r='1.4'/%3E%3Cpath id='Rectangle-path-8' class='st0' d='M14.5 11.4h2.8v4.9h-2.8z'/%3E%3Ccircle id='Oval-17' class='st0' cx='11' cy='7' r='1.4'/%3E%3Ccircle id='Oval-18' class='st0' cx='11' cy='15' r='1.4'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); }
    .page--podcast .nav--subscribe a[class^="icon"].icon--overcast::before {
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1000 1000'%3E%3Cpath fill-rule='evenodd' fill='%23000' d='M500 900c-221.67 0-400-178.33-400-400s178.33-400 400-400 400 178.33 400 400-178.33 400-400 400zm0-158.33l30-30-30-115-30 115 30 30zM461.67 740l-15 56.67 35-35-20-21.67zm76.66 0l-20 20 35 35-15-55zm28.34 103.33L500 776.67l-66.67 66.66C455 846.67 476.67 850 500 850s45-1.67 66.67-6.67zM500 150c-193.33 0-350 156.67-350 350 0 153.33 98.33 283.33 235 330l75-278.33C443.33 540 433.33 520 433.33 498.33c0-36.66 30-66.66 66.67-66.66s66.67 30 66.67 66.66c0 21.67-10 40-26.67 53.34L615 830c136.67-46.67 235-176.67 235-330 0-193.33-156.67-350-350-350zm228.33 523.33c-8.33 10-23.33 13.34-35 5C681.67 670 680 655 688.33 645c0 0 45-60 45-145s-45-145-45-145c-8.33-10-6.66-25 5-33.33 11.67-8.34 26.67-5 35 5 3.34 3.33 55 71.66 55 173.33 0 101.67-51.66 170-55 173.33zm-121.66-65c-10-10-8.34-28.33 1.66-38.33 0 0 25-26.67 25-70s-25-68.33-25-70c-10-10-10-26.67-1.66-38.33 10-11.67 25-11.67 35-1.67 1.66 1.67 41.66 43.33 41.66 110s-40 108.33-41.66 110c-10 10-25 8.33-35-1.67zm-213.34 0c-10 10-25 11.67-35 1.67-1.66-3.33-41.66-43.33-41.66-110s40-106.67 41.66-110c10-10 26.67-10 35 1.67 10 10 8.34 28.33-1.66 38.33 0 1.67-25 26.67-25 70s25 70 25 70c10 10 11.66 26.67 1.66 38.33zm-86.66 70c-11.67 8.34-26.67 5-35-5-3.34-3.33-55-71.66-55-173.33 0-101.67 51.66-170 55-173.33 8.33-10 23.33-13.34 35-5C318.33 330 320 345 311.67 355c0 0-45 60-45 145s45 145 45 145c8.33 10 5 25-5 33.33zm0 0'/%3E%3C/svg%3E"); }
    .page--podcast .nav--subscribe a[class^="icon"].icon--stitcher::before {
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M18 6.9h-.4V17h.4V6.9zm-.8 1.2h-.4V16h.4V8.1zm-1.1 0H0V16h16.1V8.1zm7.9 0h-4.5V16H24V8.1zm-5.3 0h-.4V16h.4V8.1z' fill='%23000'/%3E%3C/svg%3E"); }
    .page--podcast .nav--subscribe a[class^="icon"].icon--spotify::before {
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 0C5.4 0 0 5.4 0 12s5.4 12 12 12 12-5.4 12-12S18.7 0 12 0zm5.5 17.3c-.2.4-.7.5-1 .2-2.8-1.7-6.4-2.1-10.6-1.1-.4.1-.8-.2-.9-.5-.1-.4.2-.8.5-.9 4.6-1 8.5-.6 11.6 1.3.5.2.6.7.4 1zM19 14c-.3.4-.8.6-1.3.3-3.2-2-8.2-2.6-11.9-1.4-.5.1-1-.1-1.1-.6-.1-.5.1-1 .6-1.1 4.4-1.3 9.8-.7 13.5 1.6.3.2.5.8.2 1.2zm.1-3.3C15.2 8.4 8.8 8.2 5.2 9.3c-.6.2-1.2-.2-1.4-.7-.2-.6.2-1.2.7-1.4 4.3-1.3 11.3-1 15.7 1.6.5.3.7 1 .4 1.6-.3.4-1 .6-1.5.3z' fill='%23000'/%3E%3C/svg%3E"); }

/*Supercast Feed Styling*/
.supercast-feed-deeplinks {
  -webkit-flex-flow: row wrap;
          flex-flow: row wrap; }
  .supercast-feed-deeplinks li a {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
            align-items: center;
    font-family: "Avenir", Helvetica, Arial, sans-serif;
    font-weight: bold;
    text-decoration: none;
    color: #616161; }
    .supercast-feed-deeplinks li a img {
      margin-right: 8px;
      border-radius: 50%;
      width: 25px; }
    .supercast-feed-deeplinks li a:hover, .supercast-feed-deeplinks li a:active, .supercast-feed-deeplinks li a:focus {
      color: #424242; }

/*_qualys.scss*/
.page-template-page-qualys .list-item--minimal {
  margin-bottom: 1.5em; }

.page-template-page-qualys .list-item .list-item__description {
  display: block; }

/*_directory.scss*/
/*
*******************************************************************
DIRECTORY FORM
*******************************************************************
*/
.form--directory_wrapper .form--directory {
  /*Fields*/
  /*Pagination Footer*/
  /*Step Navigation*/
  /*Section Headings*/ }
  @media (min-width: 48em) {
    .form--directory_wrapper .form--directory .gfield_radio {
      display: -webkit-flex;
      display: flex;
      -webkit-justify-content: flex-start;
              justify-content: flex-start; }
      .form--directory_wrapper .form--directory .gfield_radio input {
        margin-top: 0; }
      .form--directory_wrapper .form--directory .gfield_radio li {
        margin-right: 1em;
        display: -webkit-flex;
        display: flex;
        -webkit-align-items: center;
                align-items: center; } }
  .form--directory_wrapper .form--directory .gform_page_footer {
    border-top: none; }
    .form--directory_wrapper .form--directory .gform_page_footer input[type="button"], .form--directory_wrapper .form--directory .gform_page_footer input[type="submit"] {
      background: #2195D3;
      padding: 1.5em 2em;
      margin: 0 auto;
      display: block; }
    .form--directory_wrapper .form--directory .gform_page_footer input.gform_previous_button {
      float: left;
      color: #9E9E9E;
      background: none;
      padding: 1em; }
  .form--directory_wrapper .form--directory .gf_page_steps {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
            justify-content: space-between;
    -webkit-align-items: center;
            align-items: center;
    border-bottom: none;
    position: relative;
    margin-bottom: 2em; }
    .form--directory_wrapper .form--directory .gf_page_steps::after {
      content: "";
      display: block;
      position: absolute;
      bottom: 13px;
      left: 85px;
      right: 85px;
      height: 2px;
      background: #E0E0E0;
      z-index: 0; }
  .form--directory_wrapper .form--directory .gf_step {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
            justify-content: center;
    -webkit-flex-flow: row wrap;
            flex-flow: row wrap;
    -webkit-flex-basis: 180px;
            flex-basis: 180px;
    max-width: 180px;
    margin: 0;
    height: inherit;
    text-align: center;
    opacity: 1;
    z-index: 1; }
    .form--directory_wrapper .form--directory .gf_step .gf_step_label {
      -webkit-flex-basis: 100%;
              flex-basis: 100%;
      max-width: 100%;
      font-weight: bold;
      display: block;
      margin-bottom: 0.5em;
      color: #BDBDBD; }
    .form--directory_wrapper .form--directory .gf_step .gf_step_number {
      -webkit-order: 2;
              order: 2;
      text-indent: -9999em;
      width: 20px;
      height: 20px;
      background: #BDBDBD;
      border-radius: 50%;
      display: block;
      margin: 0 auto; }
    .form--directory_wrapper .form--directory .gf_step.gf_step_active .gf_step_label {
      color: #2195D3; }
    .form--directory_wrapper .form--directory .gf_step.gf_step_active .gf_step_number {
      background-color: #2195D3; }
  .form--directory_wrapper .form--directory .gf_step_clear {
    display: none; }
  .form--directory_wrapper .form--directory .gsection {
    border: none; }
  .form--directory_wrapper .form--directory .gsection_title {
    font-weight: normal;
    text-align: center;
    font-size: 1.9008em;
    margin-bottom: 1em; }
    @media (min-width: 55em) {
      .form--directory_wrapper .form--directory .gsection_title {
        font-size: 2.28096em; } }
  .form--directory_wrapper .form--directory .gsection_description {
    font-size: 1.1em;
    text-align: center; }

/*
*******************************************************************
DIRECTORY LISTING
*******************************************************************
*/
/*Search Form*/
.store_locator_plus .slp_search_form .search_box .search_item, .store_locator_plus .slp_search_form #addy_in_radius {
  display: block;
  width: 100%;
  margin: 0 1% 1em; }
  .store_locator_plus .slp_search_form .search_box .search_item label, .store_locator_plus .slp_search_form #addy_in_radius label {
    display: block;
    text-align: left;
    text-transform: uppercase; }

.store_locator_plus .slp_search_form .search_box select {
  width: 100%; }

.store_locator_plus .slp_search_form .search_box .search_item .slp_ui_button {
  margin: 1em auto;
  padding: 1em 2em;
  background: #2195D3;
  color: #fff;
  font-weight: bold;
  border: none;
  border-radius: 3px; }
  .store_locator_plus .slp_search_form .search_box .search_item .slp_ui_button:hover, .store_locator_plus .slp_search_form .search_box .search_item .slp_ui_button:focus, .store_locator_plus .slp_search_form .search_box .search_item .slp_ui_button:active {
    background: #1a76a7; }

.store_locator_plus .slp_search_form .search_box .ui-state-default {
  background: #fff;
  border: 1px solid #A6997C;
  font-family: "Avenir", Helvetica, Arial, sans-serif;
  width: 100% !important; }

.store_locator_plus .slp_search_form .search_box .ui-selectmenu-text {
  padding: .7em 2.1em .7em .5em; }

@media (min-width: 55em) {
  .store_locator_plus .slp_search_form #addy_in_address {
    width: 100%; }
  .store_locator_plus .slp_search_form .search_box .search_item, .store_locator_plus .slp_search_form #addy_in_radius {
    width: 48%;
    float: left; } }

/*Advanced Search*/
.container-advanced {
  display: block;
  text-align: center;
  width: 100%;
  margin: 0 auto;
  padding: 1em .5em .5em; }
  .container-advanced.is-active {
    background: #F5F5F5; }

.label-advanced {
  display: block; }

.search-advanced {
  display: none;
  width: 100%;
  background: #F5F5F5;
  padding: 0.5em;
  margin-bottom: 1em; }
  .search-advanced select {
    height: 50px; }

/*Results*/
.no_results_found {
  text-align: center;
  background: #9E9E9E;
  color: #fff;
  padding: 1em;
  border-radius: 3px;
  margin: 1.5em auto;
  width: 100%; }
  .no_results_found h2 {
    font-size: 1.32em;
    margin: 0; }

.store_locator_plus .slp_results_container .results_wrapper {
  border-radius: 0;
  border-color: #F5F5F5;
  padding: 0;
  margin: 1.5em 0;
  line-height: 1.5; }
  .store_locator_plus .slp_results_container .results_wrapper:hover {
    cursor: default;
    background: none;
    border-color: #F5F5F5; }

.store_locator_plus .slp_results_container .location_name {
  margin: 0;
  font-family: "Avenir", Helvetica, Arial, sans-serif; }

.store_locator_plus .slp_results_container .results_entry .location_distance {
  display: block;
  float: none;
  margin: 0.75em 0; }

.store_locator_plus .slp_results_container .slp_result_name {
  font-family: "Avenir", Helvetica, Arial, sans-serif;
  margin: 0 0 0.5em;
  font-weight: bold; }
  .store_locator_plus .slp_results_container .slp_result_name .license {
    display: inline;
    font-weight: normal;
    color: #9E9E9E;
    font-size: 80%; }

.store_locator_plus .slp_results_container .results_row_content {
  padding: 0.75em;
  clear: both; }

.store_locator_plus .slp_results_container .slp_result_contact {
  margin-bottom: 1em; }

.store_locator_plus .slp_results_container div[class^='results_row_'] + div[class^='results_row_'] {
  margin-top: 1em; }

.store_locator_plus .slp_results_container .results_entry {
  font-size: 85%; }
  .store_locator_plus .slp_results_container .results_entry span {
    display: block; }
  .store_locator_plus .slp_results_container .results_entry h6 {
    font-family: "Avenir", Helvetica, Arial, sans-serif;
    color: #9E9E9E;
    margin-bottom: 0;
    text-transform: uppercase; }

.store_locator_plus .slp_results_container .slp_result_directions a {
  color: #2195D3; }

.store_locator_plus .slp_results_container .slp_result_website {
  word-wrap: break-word;
  word-break: break-word;
  -webkit-hyphens: auto;
      -ms-hyphens: auto;
          hyphens: auto; }

.store_locator_plus .slp_results_container div[class^='results_row_'] {
  max-width: 100%;
  -webkit-flex-basis: 100%;
          flex-basis: 100%;
  margin: 0 0 1em;
  padding: 0 1%; }

.store_locator_plus .slp_results_container .slp_result_extra {
  margin-bottom: 1em; }
  .store_locator_plus .slp_results_container .slp_result_extra h6 {
    font-weight: bold;
    color: #424242;
    text-transform: none;
    margin-top: 0; }

@media (min-width: 55em) {
  .store_locator_plus .slp_results_container div[class^='results_row_'] + div[class^='results_row_'] {
    margin-top: 0; } }

.list-item--directory {
  font-family: "Avenir", Helvetica, Arial, sans-serif; }
  .list-item--directory .list-item__header {
    padding: 1.5em 1em 1em;
    margin: 0; }
  .list-item--directory .list-item__content {
    width: 100%; }
  .list-item--directory .list-item__toggle {
    width: 100%;
    padding: 0.75em;
    background: #F5F5F5;
    text-align: center;
    cursor: pointer;
    color: #424242;
    font-weight: normal; }
  .list-item--directory .list-item__hidden {
    padding: 1.5em 0;
    margin: 0 1.5em;
    border-top: 1px solid #F5F5F5;
    /*display: none;*/ }
    @media (min-width: 35em) {
      .list-item--directory .list-item__hidden {
        -moz-column-count: 2;
        -webkit-column-count: 2;
                column-count: 2;
        -webkit-column-gap: 1em;
           -moz-column-gap: 1em;
                column-gap: 1em; }
        .list-item--directory .list-item__hidden > div {
          -webkit-column-break-inside: avoid;
          /* Chrome, Safari */
          page-break-inside: avoid;
          /* Theoretically FF 20+ */
          -moz-column-break-inside: avoid;
               break-inside: avoid-column;
          /* IE 11 */ } }
    @media (min-width: 55em) {
      .list-item--directory .list-item__hidden {
        -moz-column-count: 3;
        -webkit-column-count: 3;
                column-count: 3; } }
/*Map Bubble*/
.slp_info_bubble {
  line-height: 1.5; }
  .slp_info_bubble .slp_bubble_name {
    font-weight: bold;
    font-family: "Avenir", Helvetica, Arial, sans-serif; }

/*_donate.scss*/
/*
*******************************************************************
DONATE FORM
*******************************************************************
*/
#peterattia .form--donate {
  font-family: "Avenir", Helvetica, Arial, sans-serif;
  /*Section Headings*/
  /*Amount Fields*/
  /*Message*/
  /*Donation Type*/
  /*Credit Card Field*/
  /*Total Fields*/
  /*Footer*/ }
  #peterattia .form--donate .gsection {
    border-bottom: none;
    margin-top: 4em !important;
    margin-bottom: 1em; }
  #peterattia .form--donate .gsection_title {
    font-family: "Avenir", Helvetica, Arial, sans-serif;
    font-size: 1.584em;
    font-weight: normal; }
  #peterattia .form--donate .field--amount, #peterattia .form--donate .field--donation-type {
    margin-top: 1.5em;
    margin-bottom: 0; }
    #peterattia .form--donate .field--amount input, #peterattia .form--donate .field--donation-type input {
      display: none; }
    #peterattia .form--donate .field--amount input, #peterattia .form--donate .field--amount label, #peterattia .form--donate .field--donation-type input, #peterattia .form--donate .field--donation-type label {
      width: 100% !important; }
    #peterattia .form--donate .field--amount .gchoice_11_1_0, #peterattia .form--donate .field--amount .gchoice_11_20_0, #peterattia .form--donate .field--amount .gchoice_15_20_0, #peterattia .form--donate .field--donation-type .gchoice_11_1_0, #peterattia .form--donate .field--donation-type .gchoice_11_20_0, #peterattia .form--donate .field--donation-type .gchoice_15_20_0 {
      /*display: none;*/
      /*hide first $0 option*/ }
    #peterattia .form--donate .field--amount ul, #peterattia .form--donate .field--donation-type ul {
      display: -webkit-flex;
      display: flex;
      -webkit-flex-flow: row wrap;
              flex-flow: row wrap;
      -webkit-justify-content: center;
              justify-content: center;
      margin: 0;
      padding: 0; }
    #peterattia .form--donate .field--amount li, #peterattia .form--donate .field--donation-type li {
      -webkit-flex-basis: 48%;
              flex-basis: 48%;
      max-width: 48%;
      margin: 0 1% 1% !important;
      border-radius: 6px;
      background-clip: padding-box;
      /* stops bg color from leaking outside the border: */
      border: 1px solid #BDBDBD;
      text-align: center;
      overflow: hidden; }
      @media (min-width: 35em) {
        #peterattia .form--donate .field--amount li, #peterattia .form--donate .field--donation-type li {
          -webkit-flex-basis: 23%;
                  flex-basis: 23%;
          max-width: 23%; } }
    #peterattia .form--donate .field--amount .gfield_radio label, #peterattia .form--donate .field--amount label, #peterattia .form--donate .field--donation-type .gfield_radio label, #peterattia .form--donate .field--donation-type label {
      display: block;
      padding: .75em 0.75em 0.65em;
      margin: 0;
      font-weight: normal;
      font-size: 1.5em;
      max-width: 100%;
      color: #424242;
      overflow: hidden;
      font-weight: bold;
      line-height: 1.2; }
      #peterattia .form--donate .field--amount .gfield_radio label .term, #peterattia .form--donate .field--amount label .term, #peterattia .form--donate .field--donation-type .gfield_radio label .term, #peterattia .form--donate .field--donation-type label .term {
        font-size: 0.75em;
        font-weight: normal;
        color: #9E9E9E;
        display: block; }
        @media (min-width: 48em) {
          #peterattia .form--donate .field--amount .gfield_radio label .term, #peterattia .form--donate .field--amount label .term, #peterattia .form--donate .field--donation-type .gfield_radio label .term, #peterattia .form--donate .field--donation-type label .term {
            display: inline; } }
      #peterattia .form--donate .field--amount .gfield_radio label .tagline, #peterattia .form--donate .field--amount label .tagline, #peterattia .form--donate .field--donation-type .gfield_radio label .tagline, #peterattia .form--donate .field--donation-type label .tagline {
        margin-top: 0.5em;
        font-size: 0.55em;
        font-weight: normal;
        color: #9E9E9E;
        display: block; }
      #peterattia .form--donate .field--amount .gfield_radio label:hover, #peterattia .form--donate .field--amount .gfield_radio label:focus, #peterattia .form--donate .field--amount label:hover, #peterattia .form--donate .field--amount label:focus, #peterattia .form--donate .field--donation-type .gfield_radio label:hover, #peterattia .form--donate .field--donation-type .gfield_radio label:focus, #peterattia .form--donate .field--donation-type label:hover, #peterattia .form--donate .field--donation-type label:focus {
        background: #EEEEEE; }
    #peterattia .form--donate .field--amount input[type="radio"]:checked + label, #peterattia .form--donate .field--donation-type input[type="radio"]:checked + label {
      background: #2195D3;
      color: #FFF; }
      #peterattia .form--donate .field--amount input[type="radio"]:checked + label .term, #peterattia .form--donate .field--donation-type input[type="radio"]:checked + label .term {
        color: rgba(255, 255, 255, 0.75); }
      #peterattia .form--donate .field--amount input[type="radio"]:checked + label .tagline, #peterattia .form--donate .field--donation-type input[type="radio"]:checked + label .tagline {
        color: #fff; }
  #peterattia .form--donate .field--amount-other {
    clear: none;
    float: none;
    width: 100%;
    margin-top: 0;
    margin-bottom: 1em; }
    #peterattia .form--donate .field--amount-other .ginput_container {
      margin-top: 0;
      position: relative; }
      #peterattia .form--donate .field--amount-other .ginput_container::before {
        content: "$";
        display: block;
        position: absolute;
        top: 50%;
        left: 0.5em;
        height: 30px;
        font-size: 24px;
        color: #9E9E9E;
        margin-top: -20px; }
    #peterattia .form--donate .field--amount-other .instruction {
      display: none;
      /*hide instructions*/ }
    #peterattia .form--donate .field--amount-other label {
      display: none; }
    #peterattia .form--donate .field--amount-other input {
      border: 1px solid #BDBDBD;
      font-size: 1.584em;
      font-weight: normal;
      padding: 0.5em 0.5em 0.5em 1em !important; }
  #peterattia .form--donate .message {
    margin-left: 0; }
  #peterattia .form--donate .field--donation-type .gfield_radio label {
    padding: 1em;
    font-size: 1.32em; }
  #peterattia .form--donate .field--donation-type input, #peterattia .form--donate .field--donation-type label {
    width: 100% !important; }
  @media (min-width: 55em) {
    #peterattia .form--donate .field--donation-type li {
      width: 48%; } }
  #peterattia .form--donate .ginput_container_creditcard {
    position: relative; }
  #peterattia .form--donate .gform_card_icon_container {
    position: absolute;
    right: 10px;
    top: 5px; }
  #peterattia .form--donate .gform_card_icon_inactive {
    display: none;
    /*hide credit card icon when inactive*/ }
  #peterattia .form--donate select {
    height: 55px; }
  #peterattia .form--donate .ginput_card_expiration_container label {
    margin-top: 0 !important; }
  #peterattia .form--donate .field--total label {
    float: left;
    margin-right: 2em;
    font-size: 80%;
    text-transform: uppercase;
    max-width: 150px; }
  #peterattia .form--donate .field--total .ginput_container_total {
    clear: both;
    float: left;
    margin-right: 2%;
    width: 30%; }
  #peterattia .form--donate .field--total span.ginput_total {
    color: #424242;
    font-weight: bold; }
  #peterattia .form--donate .field--total .gfield_description {
    float: left;
    width: 66%;
    clear: none;
    margin: 0.75em 0 0;
    padding: 0; }
  @media (min-width: 48em) {
    #peterattia .form--donate .field--total .ginput_container_total {
      clear: none;
      margin-right: 0.75em;
      width: inherit; }
    #peterattia .form--donate .field--total .gfield_description {
      width: 300px;
      margin-top: 0.25em; } }
  #peterattia .form--donate .gform_footer {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
            align-items: center; }
  #peterattia .form--donate .gform_ajax_spinner {
    margin-left: 20px; }

/*
*******************************************************************
MEMBERPRESS FORMS
*******************************************************************
*/
.form--donate .membership--form {
  /*display: none; */
  /*hide form by default*/ }

/*
*******************************************************************
START HERE PAGE STYLES
*******************************************************************
*/
.page-template-page-start-here .content--post > .section:first-child {
  padding-top: 0; }

.page-template-page-start-here .section {
  padding: 1em 0; }
  @media (min-width: 55em) {
    .page-template-page-start-here .section {
      padding: 2em 0; } }
.page-template-page-start-here .section--bg {
  padding: 0.75em 1.5em;
  margin: 2em 0;
  border-radius: 3px;
  width: 100%;
  background: #EEEEEE; }
  .page-template-page-start-here .section--bg .list-item {
    background: none; }

.page-template-page-start-here .testimonial {
  padding-right: 1em; }

.page-template-page-start-here .list-item__heading {
  font-size: 1.28em; }

.page-template-page-start-here .list-item__description {
  display: none; }

.page-template-page-start-here .section__heading {
  text-align: left; }
  .page-template-page-start-here .section__heading.text--center {
    text-align: center; }
  .page-template-page-start-here .section__heading h2 {
    font-size: 1.584em;
    font-family: "Avenir", Helvetica, Arial, sans-serif; }

.page-template-page-start-here .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: inherit; }

@media (min-width: 55em) {
  .page-template-page-start-here .listing--split {
    margin-left: -1.5em; } }

/*_discounts.scss*/
/*
*******************************************************************
DISCOUNTS PAGE
*******************************************************************
*/
.coupon {
  margin: 1.5em 0; }
  @media (min-width: 55em) {
    .coupon {
      margin: 2em 0; } }
  .coupon + .coupon {
    border-top: 1px solid #EEEEEE;
    padding-top: 1.5em; }
    @media (min-width: 55em) {
      .coupon + .coupon {
        padding-top: 2em; } }
.coupon__date {
  color: #757575;
  font-family: "Avenir", Helvetica, Arial, sans-serif;
  font-weight: bold;
  margin: 0 0 0.5em;
  text-transform: uppercase; }

.coupon__name {
  font-size: 1.584em;
  font-family: "Avenir", Helvetica, Arial, sans-serif;
  margin-top: 0; }
  @media (min-width: 55em) {
    .coupon__name {
      font-size: 1.9008em; } }
.coupon__info {
  background: rgba(25, 82, 149, 0.1);
  margin-bottom: 0.75em; }
  .coupon__info p {
    padding: 0.75em; }

.coupon .coupon__description {
  background: rgba(25, 82, 149, 0.2);
  font-weight: bold;
  margin: 0;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-align-items: center;
          align-items: center;
  -webkit-justify-content: space-between;
          justify-content: space-between; }
  .coupon .coupon__description p {
    margin: 0; }
  .coupon .coupon__description .coupon__expiration {
    font-weight: normal;
    font-style: italic; }

.coupon__code {
  font-size: 1.9008em;
  margin: 0;
  padding: 0.5em; }

.coupon__url {
  display: block;
  font-size: 1.32em;
  word-wrap: break-word;
  margin: 0;
  padding: 0.75em; }

/*_subscribe.scss*/
/*
*******************************************************************
SUBSCRIBE PAGE STYLES
*******************************************************************
*/
.subscriber__heading {
  font-weight: bold;
  font-family: "Avenir", Helvetica, Arial, sans-serif;
  text-align: center;
  font-size: 1.584em; }
  @media (min-width: 55em) {
    .subscriber__heading {
      font-size: 1.9008em; } }
.subscribe__subheading {
  font-family: "Avenir", Helvetica, Arial, sans-serif;
  text-align: center;
  font-size: 1.32em;
  font-weight: normal;
  margin-top: 2em;
  margin-bottom: 0; }
  @media (min-width: 55em) {
    .subscribe__subheading {
      font-size: 1.584em; } }
.subscribe__toggle {
  position: relative;
  margin: 0 auto;
  width: 280px;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-justify-content: flex-end;
          justify-content: flex-end; }
  .subscribe__toggle .subscribe__toggle__callout {
    color: #72BA0B;
    text-transform: uppercase;
    text-align: center;
    font-weight: bold;
    font-size: 0.8em;
    font-family: "Avenir", Helvetica, Arial, sans-serif;
    width: 140px;
    position: relative;
    max-width: 50%;
    -webkit-flex-basis: 50%;
            flex-basis: 50%; }
    .subscribe__toggle .subscribe__toggle__callout span {
      background: #fff;
      padding: 0.25em;
      z-index: 10;
      position: relative; }
    .subscribe__toggle .subscribe__toggle__callout::before {
      content: "";
      display: block;
      border-bottom: 2px solid #72BA0B;
      height: 2px;
      width: 100%;
      position: absolute;
      top: 50%;
      margin-top: -2px; }
    @media (min-width: 55em) {
      .subscribe__toggle .subscribe__toggle__callout {
        width: 180px; } }
  .subscribe__toggle *, .subscribe__toggle *:before, .subscribe__toggle *:after {
    box-sizing: border-box; }
  .subscribe__toggle input[type="checkbox"] {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0; }
    .subscribe__toggle input[type="checkbox"][disabled] ~ label {
      pointer-events: none;
      color: rgba(158, 158, 158, 0.5); }
      .subscribe__toggle input[type="checkbox"][disabled] ~ label .subscribe__toggle__switch {
        opacity: 0.4; }
    .subscribe__toggle input[type="checkbox"]:focus ~ label .subscribe__toggle__switch, .subscribe__toggle input[type="checkbox"]:hover ~ label .subscribe__toggle__switch {
      background-color: #fff; }
    .subscribe__toggle input[type="checkbox"]:hover ~ label {
      color: #919191; }
    .subscribe__toggle input[type="checkbox"]:checked ~ label:hover {
      color: #969696; }
    .subscribe__toggle input[type="checkbox"]:checked ~ label .subscribe__toggle__switch {
      background-color: #fff; }
      .subscribe__toggle input[type="checkbox"]:checked ~ label .subscribe__toggle__switch::before {
        content: attr(data-unchecked);
        left: 2px; }
      .subscribe__toggle input[type="checkbox"]:checked ~ label .subscribe__toggle__switch::after {
        color: #fff;
        background: #757575;
        left: 134px;
        content: attr(data-checked); }
        @media (min-width: 55em) {
          .subscribe__toggle input[type="checkbox"]:checked ~ label .subscribe__toggle__switch::after {
            left: 174px; } }
  .subscribe__toggle label {
    font-size: 1.2em;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
    position: relative;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
            align-items: center;
    font-family: "Avenir", Helvetica, Arial, sans-serif;
    text-transform: none;
    font-weight: normal;
    max-width: 100%;
    -webkit-flex-basis: 100%;
            flex-basis: 100%;
    cursor: pointer; }
    .subscribe__toggle label .subscribe__toggle__switch {
      position: relative;
      height: 70px;
      -webkit-flex: 0 0 280px;
              flex: 0 0 280px;
      border-radius: 35px;
      transition: all 0.3s cubic-bezier(0, 1, 0.5, 1);
      background: #fff;
      border: 2px solid #EEEEEE; }
      .subscribe__toggle label .subscribe__toggle__switch:before {
        content: attr(data-checked);
        position: absolute;
        top: 2px;
        left: 134px;
        text-align: center;
        font-size: 0.8em;
        line-height: 62px;
        width: 140px;
        padding: 0 12px;
        color: #E0E0E0;
        border-radius: 31px; }
      .subscribe__toggle label .subscribe__toggle__switch:after {
        content: attr(data-unchecked);
        position: absolute;
        top: 2px;
        left: 2px;
        z-index: 5;
        text-align: center;
        font-size: 0.8em;
        line-height: 62px;
        background: #757575;
        -webkit-transform: translate3d(0, 0, 0);
                transform: translate3d(0, 0, 0);
        transition: -webkit-transform 0.3s cubic-bezier(0, 1, 0.5, 1);
        transition: transform 0.3s cubic-bezier(0, 1, 0.5, 1);
        transition: transform 0.3s cubic-bezier(0, 1, 0.5, 1), -webkit-transform 0.3s cubic-bezier(0, 1, 0.5, 1);
        color: #fff;
        border-radius: 31px;
        width: 140px; }
  @media (min-width: 55em) {
    .subscribe__toggle {
      width: 360px; }
      .subscribe__toggle label .subscribe__toggle__switch {
        -webkit-flex: 0 0 360px;
                flex: 0 0 360px; }
        .subscribe__toggle label .subscribe__toggle__switch::before {
          left: 174px; }
        .subscribe__toggle label .subscribe__toggle__switch::before, .subscribe__toggle label .subscribe__toggle__switch::after {
          width: 180px;
          font-size: 1em; } }
.form--donate .form--donate__yearly {
  display: none;
  /*hide by default*/ }

.membership--form {
  display: none;
  /*hide by default*/
  /*Select Payment Method Heading*/
  /*Hide Coupon Link*/ }
  .membership--form.is-active {
    display: block; }
  .membership--form h3 {
    font-weight: bold;
    font-family: "Avenir", Helvetica, Arial, sans-serif;
    font-size: 1.1em;
    clear: both;
    padding-top: 1.5em; }
  .membership--form[class*='monthly-donation--'] .have-coupon-link {
    display: none; }

/*#card-element {
  height: 50px;
}
*/
/*Custom Subscribe Pages*/
/*$149 membership for $99 offer*/
.postid-13652 .mp_wrapper .mp-form-row label[for="mpgft-signup-gift-checkbox1"] {
  display: none !important; }

.postid-13652 .mp_wrapper .have-coupon-link {
  display: none !important; }

/*_book.scss*/
.page--book {
  margin-top: 0;
  margin-bottom: 0;
  /*Hero Section*/
  /*About Section*/
  /*Testimonials Section*/
  /*Peter Section*/
  /*CTA Section*/
  /*Pre-Order Section*/ }
  @media (min-width: 55em) {
    .page--book .section--hero .container {
      display: -webkit-flex;
      display: flex;
      gap: 32px;
      -webkit-align-items: center;
              align-items: center;
      -webkit-justify-content: center;
              justify-content: center; }
      .page--book .section--hero .container .section--hero__content {
        -webkit-flex-basis: calc(100% - 332px);
                flex-basis: calc(100% - 332px);
        max-width: calc(100% - 332px); }
      .page--book .section--hero .container .section--hero__image {
        -webkit-flex-basis: 300px;
                flex-basis: 300px;
        max-width: 300px; } }
  @media (min-width: 68em) {
    .page--book .section--hero .container {
      gap: 64px; }
      .page--book .section--hero .container .section--hero__content {
        -webkit-flex-basis: calc(100% - 414px);
                flex-basis: calc(100% - 414px);
        max-width: calc(100% - 414px); }
      .page--book .section--hero .container .section--hero__image {
        -webkit-flex-basis: 350px;
                flex-basis: 350px;
        max-width: 350px; } }
  .page--book .section--hero .section--hero__image {
    margin: 1em 0; }
  .page--book .section--hero .message {
    background: #EEEEEE;
    margin-left: 0;
    margin-right: 0;
    font-weight: bold;
    text-align: left; }
  .page--book .button--group {
    -webkit-flex-flow: row wrap;
            flex-flow: row wrap;
    -webkit-justify-content: flex-start;
            justify-content: flex-start;
    gap: 6px; }
    .page--book .button--group > * {
      margin: 0; }
  .page--book .section--about__content {
    text-align: center;
    margin: 0 auto;
    max-width: 850px; }
  .page--book .section--testimonial {
    background: #212121; }
    .page--book .section--testimonial .testimonials {
      margin-top: 1.5em; }
    @media (min-width: 55em) {
      .page--book .section--testimonial .testimonials {
        display: -webkit-flex;
        display: flex;
        -webkit-align-items: flex-start;
                align-items: flex-start;
        gap: 32px; } }
    .page--book .section--testimonial .section--testimonials__content * {
      color: #fff; }
  .page--book .section--peter .container {
    max-width: 850px; }
    @media (min-width: 55em) {
      .page--book .section--peter .container {
        display: -webkit-flex;
        display: flex;
        gap: 32px;
        -webkit-align-items: center;
                align-items: center;
        -webkit-justify-content: center;
                justify-content: center; }
        .page--book .section--peter .container .section--peter__content {
          -webkit-flex-basis: calc(100% - 332px);
                  flex-basis: calc(100% - 332px);
          max-width: calc(100% - 332px); }
        .page--book .section--peter .container .section--peter__image {
          -webkit-flex-basis: 300px;
                  flex-basis: 300px;
          max-width: 300px; } }
  .page--book .section--peter .section--peter__image {
    border-radius: 50%;
    overflow: hidden; }
  .page--book .section--cta {
    background: #1c2a3f;
    color: #fff;
    text-align: center; }
    .page--book .section--cta .button--group {
      -webkit-justify-content: center;
              justify-content: center; }
    .page--book .section--cta .section--cta__content {
      margin: 0 auto;
      max-width: 900px; }
  .page--book .section--preorder .section--preorder__content {
    max-width: 1000px;
    margin: 0 auto; }
  .page--book .section--preorder form {
    margin: 0 auto;
    max-width: 800px; }

.page-template-page-book .footer {
  margin-top: 0; }

/*_blocks-custom.scss*/
/*_gravityforms.scss*/
#peterattia {
  /*reCAPTCHA*/
  /*Form Footer*/
  /*User Activation*/
  /* Custom Honeypot */ }
  #peterattia .gform_wrapper.gf_browser_chrome .gform_body {
    width: 100%; }
  #peterattia .gfield_description li {
    list-style: inherit !important; }
  #peterattia .gform_wrapper input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]) {
    padding: 0.75em 1em; }
  #peterattia .gform_wrapper .top_label div.ginput_container {
    margin-top: 0 !important; }
  #peterattia .ginput_container label {
    font-weight: normal; }
  #peterattia .gform_wrapper.gf_browser_chrome .ginput_complex .ginput_right select, #peterattia .gform_wrapper.gf_browser_chrome .ginput_complex select {
    margin-top: 0; }
  #peterattia .gform_wrapper.gf_browser_chrome .gfield_checkbox li input, #peterattia .gform_wrapper.gf_browser_chrome .gfield_checkbox li input[type=checkbox], #peterattia .gform_wrapper.gf_browser_chrome .gfield_radio li input[type=radio] {
    margin-top: 2px;
    margin-right: 5px;
    vertical-align: top; }
  #peterattia .gform_wrapper .field_sublabel_below .ginput_complex.ginput_container label, #peterattia .gform_wrapper .field_sublabel_below div[class*=gfield_time_].ginput_container label {
    margin-top: 0.5em; }
  #peterattia .gform_wrapper.gf_browser_chrome ul.gform_fields li.gfield span.name_first, #peterattia .gform_wrapper.gf_browser_chrome ul.gform_fields li.gfield span.name_last, #peterattia .gform_wrapper.gf_browser_chrome ul.gform_fields li.gfield span.name_middle {
    padding-top: 0; }
  #peterattia .gform_confirmation_message {
    background: #9BBA2E;
    padding: 0.75em;
    margin-bottom: 1em;
    border-radius: 3px;
    color: #fff; }
    #peterattia .gform_confirmation_message p {
      margin-bottom: 0; }
    #peterattia .gform_confirmation_message a {
      color: #fff; }
  #peterattia .grecaptcha-badge {
    visibility: hidden !important; }
  #peterattia .gform_page_footer {
    border-top: none; }
  #peterattia .gform_page_footer .button.gform_next_button,
  #peterattia .gform_page_footer .gform_button {
    margin: 0;
    float: right;
    padding: 1em 0.75em;
    min-width: 180px; }
  #peterattia .gform_page_footer .gform_previous_button {
    color: #757575;
    float: left;
    background: #F5F5F5;
    border: none; }
  #peterattia .widecolumn {
    text-align: center; }
  #peterattia #signup-welcome .h3 {
    font-family: "Portrait Text Web", "Times New Roman", serif;
    font-size: 1em; }
  #peterattia .ohnohoney {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    height: 0;
    width: 0;
    z-index: -1; }

.shared-counts-wrap.shortcode.style-icon {
  margin: 0;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
          justify-content: center; }
  .shared-counts-wrap.shortcode.style-icon .shared-counts-button .shared-counts-icon {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
            align-items: center;
    -webkit-justify-content: center;
            justify-content: center;
    margin: 10px; }
    .shared-counts-wrap.shortcode.style-icon .shared-counts-button .shared-counts-icon svg {
      width: 24px;
      height: 24px;
      fill: #666; }
  .shared-counts-wrap.shortcode.style-icon .shared-counts-button.print {
    margin-left: 1.5em; }
    .shared-counts-wrap.shortcode.style-icon .shared-counts-button.print .shared-counts-icon svg {
      fill: #999; }
  @media (min-width: 48em) {
    .shared-counts-wrap.shortcode.style-icon {
      -webkit-justify-content: flex-end;
              justify-content: flex-end; } }
/*MemberPress Styles*/
/*
*******************************************************************
LOGIN STYLES
*******************************************************************
*/
.mp_login_form .mepr_password + div {
  /*Login Remember Me field*/ }
  .mp_login_form .mepr_password + div label {
    width: inherit !important;
    text-transform: none;
    font-weight: normal;
    font-size: 0.7638888889em; }

.mp_login_form {
  margin: 0 auto;
  max-width: 600px; }
  .mp_login_form .submit {
    text-align: center; }

/*
*******************************************************************
ACCOUNT PAGE STYLES
*******************************************************************
*/
.mepr-account-actions a {
  display: inline-block;
  padding: 0.25em .5em;
  background: #757575;
  color: #fff;
  border-radius: 3px;
  margin: 0.1em;
  font-size: 13px; }

/*
*******************************************************************
SIGNUP STYLES
*******************************************************************
*/
.single-memberpressproduct .header__navigation, .single-memberpressproduct .nav--profile__container, .single-memberpressproduct .nav--icon--mobile {
  display: none;
  /*hide main navigation on MemberPress product pages*/ }

.mp-form-row:not(.mepr_last_name):not(.mepr_password_confirm) {
  clear: both; }

.mepr_custom_field {
  clear: both; }

.mepr-checkbox-field {
  font-weight: normal; }
  .mepr-checkbox-field a {
    font-weight: bold;
    text-decoration: underline; }

.mepr-checkbox-field.mepr-form-input input {
  width: 30px; }

.have-coupon-link {
  display: inline-block;
  padding: 0.5em;
  background: brand_colors(primary_bg);
  border-radius: 3px;
  margin-bottom: 1em;
  font-size: 16px; }

.mepr-mailchimptags-signup-field {
  clear: both;
  margin-top: 1em; }

#mepr-mailchimptags-checkbox {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: flex-start;
          align-items: flex-start; }
  #mepr-mailchimptags-checkbox input {
    margin: 5px 15px 0 2px; }

#mepr-mailchimptags-privacy {
  display: none;
  color: #9E9E9E;
  font-style: italic; }

#mepr_payment_method {
  clear: both;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-flow: row wrap;
          flex-flow: row wrap; }
  #mepr_payment_method::before {
    content: "Payment Method";
    font-weight: bold;
    -webkit-flex-basis: 100%;
            flex-basis: 100%;
    max-width: 100%;
    margin-top: 1em; }

.mepr-payment-methods-radios {
  width: 100%; }

.mepr-payment-methods-wrapper {
  clear: both; }

.mepr_payment_method-wrapper {
  display: -webkit-flex;
  display: flex; }

/*.mepr_payment_method, .mepr-payment-methods-radios label {*/
.mp_wrapper .mepr_payment_method,
.mepr-payment-methods-radios > label {
  -webkit-flex-basis: 49%;
          flex-basis: 49%;
  max-width: 49%;
  background: #fff !important;
  padding: 0 !important;
  margin: 0 0 0.5em !important;
  border-radius: 3px;
  background-clip: padding-box;
  /* stops bg color from leaking outside the border: */
  border: 1px solid #BDBDBD;
  text-align: center; }
  .mp_wrapper .mepr_payment_method .mepr-payment-method,
  .mepr-payment-methods-radios > label .mepr-payment-method {
    margin-bottom: 0;
    height: 100%; }
  .mp_wrapper .mepr_payment_method .mepr-payment-method-label,
  .mepr-payment-methods-radios > label .mepr-payment-method-label {
    height: 100%; }
  .mp_wrapper .mepr_payment_method .mepr-payment-method-label-text,
  .mepr-payment-methods-radios > label .mepr-payment-method-label-text {
    display: -webkit-flex !important;
    display: flex !important;
    -webkit-align-items: center;
            align-items: center;
    -webkit-justify-content: center;
            justify-content: center;
    padding: 0.75em 0.75em;
    margin: 0;
    font-weight: normal;
    font-size: 1.584em;
    max-width: 100%;
    line-height: 1.2;
    height: 100%; }
    .mp_wrapper .mepr_payment_method .mepr-payment-method-label-text:hover, .mp_wrapper .mepr_payment_method .mepr-payment-method-label-text:focus,
    .mepr-payment-methods-radios > label .mepr-payment-method-label-text:hover,
    .mepr-payment-methods-radios > label .mepr-payment-method-label-text:focus {
      background: #EEEEEE; }
  .mp_wrapper .mepr_payment_method input[type="radio"]:checked + .mepr-payment-method-label-text,
  .mepr-payment-methods-radios > label input[type="radio"]:checked + .mepr-payment-method-label-text {
    background: #2195D3;
    color: #FFF; }
  .mp_wrapper .mepr_payment_method + .mepr_payment_method,
  .mepr-payment-methods-radios > label + .mepr_payment_method {
    margin-left: 2% !important; }
  .mp_wrapper .mepr_payment_method .mp-checkbox-field .mepr-form-radio,
  .mp_wrapper .mepr_payment_method input[type="radio"],
  .mepr-payment-methods-radios > label .mp-checkbox-field .mepr-form-radio,
  .mepr-payment-methods-radios > label input[type="radio"] {
    display: none;
    /*hide radio input*/ }

.mepr-payment-methods-wrapper h3 {
  padding-top: 0; }

.mepr-payment-methods-wrapper .mepr-payment-methods-radios {
  margin-bottom: 1em; }
  .mepr-payment-methods-wrapper .mepr-payment-methods-radios + hr {
    display: none; }

/*PayPal description message*/
.mp_wrapper .mepr-payment-methods-wrapper .mepr_payment_method-plfh1b-1mc .mepr-payment-method-desc-text {
  background: #F5F5F5;
  text-align: center;
  padding: 0.75em;
  border-radius: 3px;
  margin-bottom: 1em; }

#mp-pm-desc-plfh1b-1mc {
  text-align: center;
  margin: 1em 0;
  padding: 0.75em;
  border-radius: 3px;
  background: #F5F5F5; }

input[type="checkbox"].mepr-form-checkbox {
  width: 90px; }

.monthly-donation--19 label[for="mpgft-signup-gift-checkbox1"],
.page-template-page-subscribe .yearly-donation--149 label[for="mpgft-signup-gift-checkbox1"] {
  display: none !important; }

/*
*******************************************************************
CHECKOUT STYLES
*******************************************************************
*/
.memberpressproduct-template .sticky.header--primary {
  position: relative;
  /*remove sticky header on checkout page*/ }

.memberpressproduct-template .header__logo > .flex.col__lg--3 {
  -webkit-flex-basis: 100%;
          flex-basis: 100%;
  max-width: 1000%; }
  .memberpressproduct-template .header__logo > .flex.col__lg--3 .site__logo {
    margin-left: auto;
    margin-right: auto; }

.mepr-signup-form .cc-error {
  font-size: 0.9166666667em;
  line-height: 1em; }

.mepr-signup-form .mp-form-row {
  margin-bottom: 1.5em; }

.mepr-signup-form .mepr_price {
  background: #F5F5F5;
  border-radius: 3px;
  text-align: center;
  padding: 0.75em;
  margin-top: 0.5em; }
  .mepr-signup-form .mepr_price > * {
    margin: 0 !important;
    font-size: 0.7638888889em; }

@media (min-width: 55em) {
  .mepr-signup-form .mepr_first_name {
    float: left;
    width: 49% !important;
    margin-right: 1% !important; }
  .mepr-signup-form .mepr_last_name {
    float: left;
    width: 50% !important; }
  .mepr-signup-form .mepr_mepr-address-one {
    clear: both; }
  .mepr-signup-form .mepr_mepr-address-city {
    float: left;
    width: 35% !important;
    margin-right: 1% !important; }
  .mepr-signup-form .mepr_mepr-address-state {
    float: left;
    width: 35% !important;
    margin-right: 1% !important;
    clear: none !important; }
  .mepr-signup-form .mepr_mepr-address-zip {
    float: left;
    width: 28% !important;
    clear: none !important; }
  .mepr-signup-form .mepr_mepr-address-country {
    clear: both; }
  .mepr-signup-form .mepr_password {
    float: left;
    width: 49% !important;
    margin-right: 1% !important;
    margin-bottom: 0.5em; }
  .mepr-signup-form .mepr_password_confirm {
    float: left;
    width: 50% !important;
    margin-bottom: 0.5em; }
  .mepr-signup-form .mp-password-strength-area {
    clear: both; } }

.mepr-signup-form .mepr-form input.invalid, .mepr-signup-form .mepr-form select.invalid, .mepr-signup-form .mepr-form textarea.invalid, .mepr-signup-form .mepr-form label.mepr-checkbox-field.invalid, .mepr-signup-form .mepr-form div.mepr-checkboxes-field.invalid, .mepr-signup-form .mepr-form div.mepr-radios-field.invalid {
  border-width: 1px; }

.mepr-signup-form .mepr-submit {
  margin: 0 auto;
  display: block; }

.field--refund {
  margin: 2em 0 0;
  font-weight: normal; }

/*
*******************************************************************
MESSAGES STYLES
*******************************************************************
*/
.mepr_error, .mepr_updated {
  color: #fff;
  border: none !important;
  border-radius: 3px; }
  .mepr_error a, .mepr_updated a {
    color: #fff; }
    .mepr_error a:hover, .mepr_error a:focus, .mepr_updated a:hover, .mepr_updated a:focus {
      color: #fff;
      text-decoration: none; }
  .mepr_error p, .mepr_error ul, .mepr_error ol, .mepr_updated p, .mepr_updated ul, .mepr_updated ol {
    margin-bottom: 0; }

.mepr_error {
  background: #911 !important; }

.mepr_updated {
  background: #089e00 !important; }

/*
*******************************************************************
PROTECTED CONTENT STYLES
*******************************************************************
*/
.mepr-unauthorized-excerpt {
  position: relative; }
  .mepr-unauthorized-excerpt::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    max-height: 100%;
    background: linear-gradient(to top, white 10%, rgba(255, 255, 255, 0) 100%); }

.mepr-unauthorized-message {
  background: #F5F5F5;
  text-align: center;
  padding: 2em; }
  .mepr-unauthorized-message + .mepr-login-form-wrap {
    display: none; }

/*
*******************************************************************
TABLE STYLES
*******************************************************************
*/
.mepr-account-table td {
  font-size: 0.9166666667em; }

/*
*******************************************************************
TEXT STYLES
*******************************************************************
*/
.mepr-active {
  color: #089e00; }

/*_bootstrap.scss*/
/*Bootstrap Modals (Customized)*/
.close {
  float: right;
  font-size: 1.32em;
  font-weight: bold;
  line-height: 1;
  color: #fff;
  margin-right: -1em; }

.close:hover,
.close:focus {
  color: #fff;
  text-decoration: none;
  cursor: pointer;
  opacity: .5; }

button.close {
  -webkit-appearance: none;
  padding: 0;
  cursor: pointer;
  background: transparent;
  border: 0; }

.modal-open {
  overflow: hidden; }

.modal {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 105000;
  display: none;
  overflow: hidden;
  -webkit-overflow-scrolling: touch;
  outline: 0; }

.modal.fade .modal-dialog {
  transition: -webkit-transform .3s ease-out;
  transition: transform .3s ease-out;
  transition: transform .3s ease-out, -webkit-transform .3s ease-out;
  -webkit-transform: translate(0, -25%);
          transform: translate(0, -25%); }

.modal.in .modal-dialog {
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0); }

.modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto; }

.modal-dialog {
  position: relative;
  width: auto;
  margin: 0.75em; }

.modal-content {
  position: relative;
  background-color: #fff;
  background-clip: padding-box;
  outline: 0; }

.modal-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1040;
  background-color: #000; }

.modal-backdrop.fade {
  opacity: 0; }

.modal-backdrop.in {
  opacity: .5; }

.modal-title {
  margin: 0;
  line-height: 1.42857143; }

.modal .modal-body {
  position: relative;
  padding: 1em;
  font-size: 0.9166666667em;
  background: #fff; }

.modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll; }

@media (min-width: 55em) {
  .modal-dialog {
    margin-top: 60px;
    margin-left: 10%;
    width: 80%; }
  .modal-content {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5); } }

/*_modern-footnotes.scss*/
.modern-footnotes-footnote {
  background: #2B4163;
  padding: 0px 5px 2px;
  border-radius: 3px;
  margin-left: 2px; }
  .modern-footnotes-footnote a {
    border: none !important;
    color: #fff; }

.easy-footnote-title {
  text-transform: uppercase;
  color: #757575;
  border-top: 1px solid #EEEEEE;
  padding-top: 1.5em;
  margin-top: 1.5em; }
  .easy-footnote-title h4 {
    font-family: "Avenir", Helvetica, Arial, sans-serif;
    font-size: 1.32em; }

/*A to Z Plugin Styling*/
/*Table of Contents*/
.az-letters {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
          justify-content: center; }
  .az-letters:after {
    content: "";
    display: table;
    clear: both; }
  .az-letters ul.az-links {
    padding: 0;
    margin: 0; }
    .az-letters ul.az-links li {
      list-style: none;
      float: left;
      width: 2em;
      height: 2em;
      box-sizing: border-box;
      margin: 0.25em;
      border: 2px solid #EEEEEE;
      background: #F5F5F5;
      color: #9E9E9E;
      display: -webkit-flex;
      display: flex;
      -webkit-align-items: center;
              align-items: center;
      -webkit-justify-content: center;
              justify-content: center; }
    .az-letters ul.az-links a {
      color: #2195D3;
      text-decoration: none;
      border: 0;
      box-shadow: none; }

/*Section Heading*/
.letter-section {
  margin-bottom: 2em; }
  .letter-section h2 {
    border-bottom: 1px solid #EEEEEE;
    font-family: "Avenir", Helvetica, Arial, sans-serif;
    font-weight: bold;
    font-size: 1.1em;
    margin-top: 2em; }
  .letter-section ul {
    margin: 0;
    padding: 0; }
    @media (min-width: 55em) {
      .letter-section ul {
        -webkit-column-count: 3;
           -moz-column-count: 3;
                column-count: 3;
        -webkit-column-gap: 2%;
           -moz-column-gap: 2%;
                column-gap: 2%; } }
    .letter-section ul li {
      list-style-type: none;
      padding: 0;
      margin: 0 0 0.75em 0;
      /*text-transform: lowercase;*/ }
      .letter-section ul li a {
        display: block;
        border-bottom: none; }
        .letter-section ul li a:hover, .letter-section ul li a:focus, .letter-section ul li a:active {
          border-bottom: none; }
  .letter-section .back-to-top {
    display: none; }

/*Print Styles*/
@media print {
  body {
    background: white;
    color: black;
    margin: 0 auto;
    max-width: 80%;
    font-size: 0.9em;
    overflow: hidden; }
  .container, .container-fluid, .content--primary {
    width: auto;
    display: block !important; }
  .header__logo .col__lg--3 {
    width: 100%;
    -webkit-flex-basis: 100%;
            flex-basis: 100%;
    max-width: 100%; }
  .site__logo {
    margin: .25em auto; }
  .menu--mobile .button {
    display: none; }
  .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: 68em) {
    .content--primary {
      margin: 0; } }
  @media print and (min-width: 85em) {
    .content--primary {
      font-size: 0.9166666667em; } }
@media print and (min-width: 55em) {
  .single-post .content {
    font-size: 0.9166666667em; } }

@media print and (min-width: 68em) {
  .single-post .content {
    font-size: 0.9166666667em; } }

@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: "Portrait Text Web", "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 */