/*! normalize.css v4.1.1 | MIT License | github.com/necolas/normalize.css */
/**
 * 1. Change the default font family in all browsers (opinionated).
 * 2. Prevent adjustments of font size after orientation changes in IE and iOS. */
@import url(https://fonts.googleapis.com/css?family=Lato:400,300,300italic,400italic,700,700italic,900);

:root {

  /* Fonts */
  --font-primary: "Lato", Helvetica, sans-serif;

  /* Brand */
  --color-primary: #0073aa;

  /* Text */
  --color-text: #242424;
  --color-text-light: #888888;
  --color-text-muted: #aeaeae;

  /* Backgrounds */
  --color-white: #ffffff;
  --color-black: #000000;
  --color-bg-light: #f3f3f3;
  --color-bg-dark: #242424;
  --color-bg-darker: #141414;

  /* Borders */
  --color-border: #e0e0e0;
  --color-border-light: #f4f4f4;
  --color-border-soft: #ededed;

  /* Layout */
  --container-width: 90%;
  --container-max-width: 75rem;

  /* Radius */
  --radius-sm: 4px;
  --radius-md: 5px;
  --radius-round: 50%;

  /* Shadows */
  --shadow-button: 8px 10px 16px -9px rgba(0,0,0,.75);
  --shadow-header: 0 10px 13px -13px rgba(0,0,0,.5);
  --shadow-dropdown: 0 10px 23px -13px rgba(0,0,0,.75);
  --shadow-modal: 0 0 20px -1px rgba(0,0,0,.75);

  /* Spacing */
  --space-xs: .25rem;
  --space-sm: .5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;

  /* Header */
  --header-height: 80px;
  --header-height-sticky: 60px;

  /* Animation */
  --transition-fast: .2s ease;
  --transition-normal: .3s ease;

}

html {
  font-family: sans-serif;
  /* 1 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */ }

/**
 * Remove the margin in all browsers (opinionated). */
body {
  margin: 0; }

/* HTML5 display definitions
 * ========================================================================== */
/**
 * Add the correct display in IE 9-.
 * 1. Add the correct display in Edge, IE, and Firefox.
 * 2. Add the correct display in IE. */
article, aside, details, figcaption, figure, footer, header, main, menu, nav, section, summary {
  /* 1 */
  display: block; }

/**
 * Add the correct display in IE 9-. */
audio, canvas, progress, video {
  display: inline-block; }

/**
 * Add the correct display in iOS 4-7. */
audio:not([controls]) {
  display: none;
  height: 0; }

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera. */
progress {
  vertical-align: baseline; }

/**
 * Add the correct display in IE 10-.
 * 1. Add the correct display in IE. */
template, [hidden] {
  display: none; }

/* Links
 * ========================================================================== */
/**
 * 1. Remove the gray background on active links in IE 10.
 * 2. Remove gaps in links underline in iOS 8+ and Safari 8+. */
a {
  background-color: transparent;
  /* 1 */
  -webkit-text-decoration-skip: objects;
  /* 2 */ }
  a:active, a:hover {
    outline-width: 0; }

/**
 * Remove the outline on focused links when they are also active or hovered
 * in all browsers (opinionated). */
/* Text-level semantics
 * ========================================================================== */
/**
 * 1. Remove the bottom border in Firefox 39-.
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari. */
abbr[title] {
  border-bottom: none;
  /* 1 */
  text-decoration: underline;
  /* 2 */
  text-decoration: underline dotted;
  /* 2 */ }

/**
 * Prevent the duplicate application of `bolder` by the next rule in Safari 6. */
b, strong {
  font-weight: inherit; }

/**
 * Add the correct font weight in Chrome, Edge, and Safari. */
b, strong {
  font-weight: bolder; }

/**
 * Add the correct font style in Android 4.3-. */
dfn {
  font-style: italic; }

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari. */
h1 {
  font-size: 2em;
  margin: 0.67em 0; }

/**
 * Add the correct background and color in IE 9-. */
mark {
  background-color: #ff0;
  color: #000; }

/**
 * Add the correct font size in all browsers. */
small {
  font-size: 80%; }

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

sub {
  bottom: -0.25em; }

sup {
  top: -0.5em; }

/* Embedded content
 * ========================================================================== */
/**
 * Remove the border on images inside links in IE 10-. */
img {
  border-style: none; }

/**
 * Hide the overflow in IE. */
svg:not(:root) {
  overflow: hidden; }

/* Grouping content
 * ========================================================================== */
/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers. */
code, kbd, pre, samp {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */ }

/**
 * Add the correct margin in IE 8. */
figure {
  margin: 1em 40px; }

/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE. */
hr {
  box-sizing: content-box;
  /* 1 */
  height: 0;
  /* 1 */
  overflow: visible;
  /* 2 */ }

/* Forms
 * ========================================================================== */
/**
 * 1. Change font properties to `inherit` in all browsers (opinionated).
 * 2. Remove the margin in Firefox and Safari. */
button, input, select, textarea {
  font: inherit;
  /* 1 */
  margin: 0;
  /* 2 */ }

/**
 * Restore the font weight unset by the previous rule. */
optgroup {
  font-weight: bold; }

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge. */
button, input {
  /* 1 */
  overflow: visible; }

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox. */
button, select {
  /* 1 */
  text-transform: none; }

/**
 * 1. Prevent a WebKit bug where (2) destroys native `audio` and `video`
 *    controls in Android 4.
 * 2. Correct the inability to style clickable types in iOS and Safari. */
button, html [type="button"], [type="reset"], [type="submit"] {
  -webkit-appearance: button;
  /* 2 */ }

/**
 * Remove the inner border and padding in Firefox. */
button::-moz-focus-inner, [type="button"]::-moz-focus-inner, [type="reset"]::-moz-focus-inner, [type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0; }

/**
 * Restore the focus styles unset by the previous rule. */
button:-moz-focusring, [type="button"]:-moz-focusring, [type="reset"]:-moz-focusring, [type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText; }

/**
 * Change the border, margin, and padding in all browsers (opinionated). */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em; }

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers. */
legend {
  box-sizing: border-box;
  /* 1 */
  color: inherit;
  /* 2 */
  display: table;
  /* 1 */
  max-width: 100%;
  /* 1 */
  padding: 0;
  /* 3 */
  white-space: normal;
  /* 1 */ }

/**
 * Remove the default vertical scrollbar in IE. */
textarea {
  overflow: auto; }

/**
 * 1. Add the correct box sizing in IE 10-.
 * 2. Remove the padding in IE 10-. */
[type="checkbox"], [type="radio"] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */ }

/**
 * Correct the cursor style of increment and decrement buttons in Chrome. */
[type="number"]::-webkit-inner-spin-button, [type="number"]::-webkit-outer-spin-button {
  height: auto; }

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari. */
[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  outline-offset: -2px;
  /* 2 */ }
  [type="search"]::-webkit-search-cancel-button, [type="search"]::-webkit-search-decoration {
    -webkit-appearance: none; }

/**
 * Remove the inner padding and cancel buttons in Chrome and Safari on OS X. */
/**
 * Correct the text style of placeholders in Chrome, Edge, and Safari. */
::-webkit-input-placeholder {
  color: inherit;
  opacity: 0.54; }

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari. */
::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */ }

/** */
/** SIMPLE GRID */
/** (C) ZACH COLE 2016 */
/* UNIVERSAL */
* {
  box-sizing: border-box; }

html, body {
  height: 100%;
  width: 100%;
  margin: 0;
  padding: 0;
  left: 0;
  top: 0;
  font-size: 100%;
  box-sizing: border-box; }

/* ==== GRID SYSTEM ==== */
@media only screen and (max-width: 768px) {
  .article-body [class^="bean"] {
    width: 100% !important;
    margin: 0px !important; } }

.container {
  width: var(--container-width);
  margin-inline: auto;
}

.row {
  position: relative;
  width: 100%; }

.row [class^="col"] {
  float: left;
  margin: 0.5rem 1%;
  min-height: 0.125rem;
  position: relative; }

.col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12 {
  width: 98%; }

.col-1-sm {
  width: 6.33%; }

.col-2-sm {
  width: 14.66%; }

.col-3-sm {
  width: 23%; }

.col-4-sm {
  width: 31.33%; }

.col-5-sm {
  width: 39.66%; }

.col-6-sm {
  width: 48%; }

.col-7-sm {
  width: 56.33%; }

.col-8-sm {
  width: 64.66%; }

.col-9-sm {
  width: 73%; }

.col-10-sm {
  width: 81.33%; }

.col-11-sm {
  width: 89.66%; }

.col-12-sm {
  width: 98%; }

.row::after {
  content: "";
  display: table;
  clear: both; }

.hidden-sm {
  display: none; }

@media only screen and (min-width: 33.75em) {
  /* 540px */
  .container {
    width: 90%; } }

@media only screen and (min-width: 45em) {
  /* 720px */
  .col-1 {
    width: 6.33%; }
  .col-2 {
    width: 14.66%; }
  .col-3 {
    width: 23%; }
  .col-4 {
    width: 31.33%; }
  .col-5 {
    width: 39.66%; }
  .col-6 {
    width: 48%; }
  .col-7 {
    width: 56.33%; }
  .col-8 {
    width: 64.66%; }
  .col-9 {
    width: 73%; }
  .col-10 {
    width: 81.33%; }
  .col-11 {
    width: 89.66%; }
  .col-12 {
    width: 98%; }
  .hidden-sm {
    display: block; } }

@media only screen and (min-width: 75em) {
  /* 960px */
.container {
  width: var(--container-width);
  max-width: var(--container-max-width);
} }

/* ROOT FONT STYLES */
body {
  font-family: var(--font-primary);
  font-size: 1rem;
  color: var(--color-black);
  line-height: 1.5;
  font-weight: 500;
}

/* TYPOGRAPHY */
  h1 {
  font-size: clamp(2rem, 1.5rem + 2vw, 3.5rem);
}

h2 {
  font-size: clamp(1.75rem, 1.25rem + 1vw, 2.75rem);
}

h3 {
  font-size: clamp(1.25rem, 1rem + .5vw, 1.75rem);
}

h4 {
  font-size: 1.125rem; }

h5 {
  font-size: 1rem; }

h6 {
  font-size: 0.875rem; }

p {
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.5;
  margin-bottom: 25px; }

.alignleft {
  float: left;
  margin-right: 30px; }

.alignright {
  float: left;
  margin-left: 30px; }

.aligncenter {
  margin: 0 auto; }

.font-light {
  font-weight: 300; }

.font-regular {
  font-weight: 400; }

.font-heavy {
  font-weight: 700; }

.article-body {
  padding-top: 60px;
  padding-bottom: 80px; }
  @media only screen and (max-width: 768px) {
    .article-body {
      padding-bottom: 0px;
      padding-top: 30px; } }
  .article-body > p:first-of-type {
    font-size: 1.4rem;
    line-height: 1.4; }
    @media only screen and (max-width: 768px) {
      .article-body > p:first-of-type {
        font-size: 1.3rem;
        line-height: 1.4; } }
    .article-body > p:first-of-type a {
      font-size: 1.4rem;
      line-height: 1.5; }
      @media only screen and (max-width: 768px) {
        .article-body > p:first-of-type a {
          line-height: 1.4;
          line-height: 1.5; } }
  .article-body h1 {
    font-size: 2.5rem;
    line-height: 1; }
  .article-body h2 {
    margin: 5px 0px 15px 0px;
    font-size: 1.6rem;
    line-height: 1;
    font-weight: 700;
    margin-top: 0px;
    line-height: 1.2; }
  .article-body h3 {
    font-size: 1.375rem;
    margin: 5px 0px 15px 0px;
    line-height: 1.2; }
  .article-body h4 {
    font-size: 1.125rem;
    margin: 5px 0px 15px 0px;
    line-height: 1.2; }
  .article-body h5 {
    font-size: 1rem; }
  .article-body h6 {
    font-size: 0.875rem; }
  .article-body p {
    font-size: 1.125rem;
    font-weight: 400;
    line-height: 1.5;
    margin-top: 0px;
    margin-bottom: 25px;
    color: #242424; }
    .article-body p:empty {
      margin-bottom: 0px; }
  .article-body img {
    display: block;
    max-width: 100%;
    height: auto;
    border: 1px solid #e0e0e0; }
  .article-body ul, .article-body ol {
    margin-bottom: 30px; }
    .article-body ul li, .article-body ol li {
      padding-left: 10px;
      margin-bottom: 10px;
      font-size: 1.2rem; }
  .article-body ol {
    counter-reset: item; }
    .article-body ol li {
      display: block;
      padding: 0px; }
      .article-body ol li::before {
        content: counter(item) ".";
        counter-increment: item;
        color: #242424;
        margin-left: -28px;
        margin-right: 15px; }

.article-body ol ul li {
  list-style: disc;
  display: list-item; }
  .article-body ol ul li::before {
    content: none;
    counter-increment: none; }

hr {
  border: 0px;
  display: block;
  height: 1px;
  background: #e0e0e0;
  margin-bottom: 30px; }

iframe {
  border: 0px; }

.article-body .wp-caption-text, .article-body .gallery-caption {
  font-size: .95rem;
  color: #888888;
  margin-top: 5px; }

/* POSITIONING */
.left {
  text-align: left; }

.right {
  text-align: right; }

.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto; }

.justify {
  text-align: justify; }

/* Gradients */
.gradient_left:before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 5;
  background-image: linear-gradient(270deg, transparent 0%, rgba(0, 0, 0, 0.6) 80%); }
  @media only screen and (max-width: 768px) {
    .gradient_left:before {
      background-image: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.6) 40%); } }

.gradient_right:before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 5;
  background-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.65) 90%); }
  @media only screen and (max-width: 768px) {
    .gradient_right:before {
      background-image: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.6) 80%); } }

.gradient_solid:before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 5;
  background: rgba(0, 0, 0, 0.5); }

.gradient_solid {
  background: rgba(0, 0, 0, 0.5); }

.mfp-content {
  max-width: 80%; }

.wistia_responsive_padding {
  box-shadow: 0px 0px 20px -1px rgba(0, 0, 0, 0.75); }

.sticky {
  position: fixed !important;
  width: 100%;
  left: 0;
  top: 0;
  z-index: 100 !important;
  border-top: 0; }

.stop-scrolling {
  overflow: hidden;
  position: fixed;
  height: 100%; }

.aligncenter {
  max-width: 100%;
  height: auto; }

.button {
  background: var(--color-primary);
  color: var(--color-white);
  text-decoration: none;
  text-transform: uppercase;
  padding:
    calc(var(--space-md) + 1px)
    calc(var(--space-xl) - 2px);
  font-size: 1rem;
  text-align: center;
  display: inline-block;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-button);
  transition: opacity var(--transition-normal);
}

.article-body .button {
  box-shadow: none;
  color: #fff; }

.play_button {
  color: #fff;
  text-decoration: none;
  display: inline-block;
  text-transform: uppercase;
  font-size: 1.1rem;
  opacity: 1; 
    padding-top: 1em;
}
  .play_button:focus {
    outline: 0; }
  .play_button span {
    color: #fff;
    font-size: 2.3rem;
    line-height: .9;
    margin-right: 10px;
    margin-left: 10px;
    border: 3px solid #fff;
    border-radius: 50%;
    padding: 10px;
    display: inline-block;
    height: 56px;
    width: 56px;
    margin-top: -15px; }

.button.button-secondary {
  color: #c7c6c6;
  border: 1px solid #c7c6c6;
  background: transparent;
  box-shadow: none;
  text-transform: none;
  padding: 15px 30px;
  font-size: .9rem; }
  .button.button-secondary:hover {
    color: #000;
    border: 1px solid #000; }

.gform_wrapper .gform_footer input.button, .gform_wrapper .gform_footer input[type=submit], .gform_wrapper .gform_page_footer input.button, .gform_wrapper .gform_page_footer input[type=submit] {
  border: 0px; }

/* Magnific Popup CSS */
.video_modal {
  width: auto;
  position: relative; }

.mfp-close {
  display: inline;
  right: 0px;
  top: -50px;
  margin-left: -28px;
  color: #fff !important;
  position: absolute;
  background: transparent;
  border: 0px;
  font-size: 2rem;
  outline: none; }

.mfp-auto-cursor .mfp-content {
  text-align: center; }
  .mfp-auto-cursor .mfp-content iframe {
    box-shadow: 0px 0px 20px -1px rgba(0, 0, 0, 0.75); }

.mfp-bg {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1042;
  overflow: hidden;
  position: fixed;
  background: #0b0b0b;
  opacity: 0.8; }

.mfp-wrap {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1043;
  position: fixed;
  outline: none !important;
  -webkit-backface-visibility: hidden; }

.mfp-container {
  text-align: center;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  padding: 0 8px;
  box-sizing: border-box; }
  .mfp-container:before {
    content: '';
    display: inline-block;
    height: 100%;
    vertical-align: middle; }

.mfp-align-top .mfp-container:before {
  display: none; }

.mfp-content {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin: 0 auto;
  text-align: left;
  z-index: 1045; }

.mfp-inline-holder .mfp-content, .mfp-ajax-holder .mfp-content {
  width: 100%;
  cursor: auto; }

.mfp-ajax-cur {
  cursor: progress; }

.mfp-zoom-out-cur {
  cursor: -moz-zoom-out;
  cursor: -webkit-zoom-out;
  cursor: zoom-out; }
  .mfp-zoom-out-cur .mfp-image-holder .mfp-close {
    cursor: -moz-zoom-out;
    cursor: -webkit-zoom-out;
    cursor: zoom-out; }

.mfp-zoom {
  cursor: pointer;
  cursor: -webkit-zoom-in;
  cursor: -moz-zoom-in;
  cursor: zoom-in; }

.mfp-auto-cursor .mfp-content {
  cursor: auto; }

.mfp-close, .mfp-arrow, .mfp-preloader, .mfp-counter {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none; }

.mfp-loading.mfp-figure {
  display: none; }

.mfp-hide {
  display: none !important; }

.mfp-preloader {
  color: #CCC;
  position: absolute;
  top: 50%;
  width: auto;
  text-align: center;
  margin-top: -0.8em;
  left: 8px;
  right: 8px;
  z-index: 1044; }
  .mfp-preloader a {
    color: #CCC; }
    .mfp-preloader a:hover {
      color: #FFF; }

.mfp-s-ready .mfp-preloader, .mfp-s-error .mfp-content {
  display: none; }

.mfp-close-btn-in .mfp-close {
  color: #333; }

.mfp-counter {
  position: absolute;
  top: 0;
  right: 0;
  color: #CCC;
  font-size: 12px;
  line-height: 18px;
  white-space: nowrap; }

.mfp-arrow {
  position: absolute;
  opacity: 0.65;
  margin: 0;
  top: 50%;
  margin-top: -55px;
  padding: 0;
  width: 90px;
  height: 110px;
  -webkit-tap-highlight-color: transparent; }
  .mfp-arrow:active {
    margin-top: -54px; }
  .mfp-arrow:hover, .mfp-arrow:focus {
    opacity: 1; }
  .mfp-arrow:before {
    content: '';
    display: block;
    width: 0;
    height: 0;
    position: absolute;
    left: 0;
    top: 0;
    margin-top: 35px;
    margin-left: 35px;
    border: medium inset transparent; }
  .mfp-arrow:after {
    content: '';
    display: block;
    width: 0;
    height: 0;
    position: absolute;
    left: 0;
    top: 0;
    margin-top: 35px;
    margin-left: 35px;
    border: medium inset transparent;
    border-top-width: 13px;
    border-bottom-width: 13px;
    top: 8px; }
  .mfp-arrow:before {
    border-top-width: 21px;
    border-bottom-width: 21px;
    opacity: 0.7; }

.mfp-arrow-left {
  left: 0; }
  .mfp-arrow-left:after {
    border-right: 17px solid #FFF;
    margin-left: 31px; }
  .mfp-arrow-left:before {
    margin-left: 25px;
    border-right: 27px solid #3F3F3F; }

.mfp-arrow-right {
  right: 0; }
  .mfp-arrow-right:after {
    border-left: 17px solid #FFF;
    margin-left: 39px; }
  .mfp-arrow-right:before {
    border-left: 27px solid #3F3F3F; }

.mfp-iframe-holder {
  padding-top: 40px;
  padding-bottom: 40px; }
  .mfp-iframe-holder .mfp-content {
    line-height: 0;
    width: 100%;
    max-width: 900px; }

.mfp-iframe-scaler {
  width: 100%;
  height: 0;
  overflow: hidden;
  padding-top: 56.25%; }
  .mfp-iframe-scaler iframe {
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
    background: #000; }

/* Main image in popup */
img.mfp-img {
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
  line-height: 0;
  box-sizing: border-box;
  padding: 40px 0 40px;
  margin: 0 auto; }

/* The shadow behind the image */
.mfp-figure {
  line-height: 0; }
  .mfp-figure:after {
    content: '';
    position: absolute;
    left: 0;
    top: 40px;
    bottom: 40px;
    display: block;
    right: 0;
    width: auto;
    height: auto;
    z-index: -1;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
    background: #444; }
  .mfp-figure small {
    color: #BDBDBD;
    display: block;
    font-size: 12px;
    line-height: 14px; }
  .mfp-figure figure {
    margin: 0; }

.mfp-bottom-bar {
  margin-top: -36px;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  cursor: auto; }

.mfp-title {
  text-align: left;
  line-height: 18px;
  color: #F3F3F3;
  word-wrap: break-word;
  padding-right: 36px; }

.mfp-image-holder .mfp-content {
  max-width: 100%; }

.mfp-gallery .mfp-image-holder .mfp-figure {
  cursor: pointer; }

@media screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px) {
  /**
   *   * Remove all paddings around the image on small screen */
  .mfp-img-mobile .mfp-image-holder {
    padding-left: 0;
    padding-right: 0; }
  .mfp-img-mobile img.mfp-img {
    padding: 0; }
  .mfp-img-mobile .mfp-figure:after {
    top: 0;
    bottom: 0; }
  .mfp-img-mobile .mfp-figure small {
    display: inline;
    margin-left: 5px; }
  .mfp-img-mobile .mfp-bottom-bar {
    background: rgba(0, 0, 0, 0.6);
    bottom: 0;
    margin: 0;
    top: auto;
    padding: 3px 5px;
    position: fixed;
    box-sizing: border-box; }
    .mfp-img-mobile .mfp-bottom-bar:empty {
      padding: 0; }
  .mfp-img-mobile .mfp-counter {
    right: 5px;
    top: 3px; } }

@media all and (max-width: 900px) {
  .mfp-arrow {
    -webkit-transform: scale(0.75);
    transform: scale(0.75); }
  .mfp-arrow-left {
    -webkit-transform-origin: 0;
    transform-origin: 0; }
  .mfp-arrow-right {
    -webkit-transform-origin: 100%;
    transform-origin: 100%; }
  .mfp-container {
    padding-left: 6px;
    padding-right: 6px; } }

/* This is the address and service header */
  .header_description {
  background: var(--color-bg-light);
  border-bottom: 1px solid var(--color-border);
  padding: 6px 0px; }
  .header_description .container {
    display: flex;
    justify-content: space-between; }
    .header_description .container p {
      margin: 0px;
      font-size: .8rem;
      line-height: 1.3;
      color: var(--color-text-light);
      /* On medium size screens only one line is shown (service times) */ }
      @media only screen and (max-width: 768px) {
        .header_description .container p:first-of-type {
          display: none; } }
    .header_description .container a {
      text-decoration: none;
      font-size: inherit;
      line-height: inherit;
      color: #888888;
      font-weight: 300;
      transition: color 0.2s ease; }
      .header_description .container a:hover {
        color: #000; }

/* Main website header and navigation */
.header_main {
  border-bottom: 1px solid var(--color-border);
  box-shadow: var(--shadow-header);
  position: relative;
  z-index: 12;
  background: var(--color-white);}
  .header_main .container {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    overflow-7: scroll;
    /* The container is previously set to strech to ensure that the nav is centered and the full height, this is reset for mobile  */
    /* Significant changes are made for mobile at this break point. */
    /* THe mobile nave displays a mobile button and absoluetly positioned nav underneath it. */ }
    @media only screen and (max-width: 768px) {
      .header_main .container {
        align-items: center; } }
    .header_main .container > a {
      display: flex;
      align-items: center;
      max-width: 180px; }
    .header_main .container .header_main_logo {
      display: block;
      max-height: 66px;
      max-width: 100%;
      padding: 10px 0px; }
      @media only screen and (max-width: 768px) {
        .header_main .container .header_main_logo {
          max-width: 100%; } }
    .header_main .container .header_logo {
      margin: 0px;
      display: flex;
      padding: 23px 0px 24px 0px;
      text-transform: uppercase; }
      .header_main .container .header_logo a {
        text-decoration: none;
        font-weight: 700;
        font-size: 1.4rem; }
        .header_main .container .header_logo a:visited {
          color: #000; }
    .header_main .container .nav_main > ul {
      margin: 0px;
      padding: 0px;
      display: flex;
      height: 100%;
      position: relative;
      /* These styles are for the drop down menues */ }
      .header_main .container .nav_main > ul li {
        list-style: none;
        height: 100%;
        display: flex;
        align-items: center;
        position: relative; }
        .header_main .container .nav_main > ul li a {
          text-decoration: none;
          padding: 0px 15px;
          font-weight: 400;
          font-size: 1.1rem;
          color: var(--color-text-light);
          height: 100%;
          display: flex;
          align-items: center;
          cursor: pointer;
          transition: background-color 0.2s ease, color 0.2s ease;
          padding: 27px 15px; }
          @media only screen and (max-width: 900px) {
            .header_main .container .nav_main > ul li a {
              font-size: 1rem;
              padding: 0px 10px; } }
          .header_main .container .nav_main > ul li a:hover {
            color: var(--color-black); }
            @media only screen and (max-width: 768px) {
              .header_main .container .nav_main > ul li a:hover {
                color: #888888 !important; } }
            .header_main .container .nav_main > ul li a:hover .menu-item-has-children {
              display: block; }
      .header_main .container .nav_main > ul .current-menu-item > a {
        color: var(--color-primary); }
      .header_main .container .nav_main > ul .menu-item-has-children > a {
        position: relative;
        padding-right: 27px;
        /* Ads a arrow to pages with children */ }
        @media only screen and (max-width: 768px) {
          .header_main .container .nav_main > ul .menu-item-has-children > a {
            padding-right: 0px;
            font-size: 1rem; } }
        .header_main .container .nav_main > ul .menu-item-has-children > a::after {
          font-family: "dashicons";
          content: "\f347";
          position: absolute;
          right: 0px;
          font-size: .7rem;
          margin-top: 7px;
          margin-right: 10px;
          opacity: .5; }
          @media only screen and (max-width: 900px) {
            .header_main .container .nav_main > ul .menu-item-has-children > a::after {
              margin-top: 3px; } }
          @media only screen and (max-width: 768px) {
            .header_main .container .nav_main > ul .menu-item-has-children > a::after {
              display: none; } }
      .header_main .container .nav_main > ul .menu-item-has-children > ul {
        display: none;
        position: absolute;
        top: 80px;
        margin: 0px;
        padding: 0px;
        border: 1px solid #e0e0e0;
        border-top: 0px;
        border-bottom: 0px;
        background: #fff;
        box-shadow: 0px 10px 23px -13px rgba(0, 0, 0, 0.75);
        left: 0px;
        min-width: 160px; }
        @media only screen and (max-width: 768px) {
          .header_main .container .nav_main > ul .menu-item-has-children > ul {
            box-shadow: 0px 0px 0px 0px; } }
        .header_main .container .nav_main > ul .menu-item-has-children > ul li a {
          border-bottom: 1px solid #f4f4f4;
          display: block;
          width: 100%;
          padding: 15px 20px;
          font-size: 1rem; }
    .header_main .container .nav_main > ul .menu-item-has-children:hover > ul {
      display: block; }
    .header_main .container .mobile-button {
      display: none; }
    @media only screen and (max-width: 768px) {
      .header_main .container .nav_main {
        align-items: center;
        height: auto; }
        .header_main .container .nav_main a {
          text-decoration: none; }
        .header_main .container .nav_main .mobile-button {
          display: flex;
          font-size: 1.55rem;
          padding-right: 9px;
          align-items: center;
          font-size: 1.1rem;
          color: #888888; }
          .header_main .container .nav_main .mobile-button:hover {
            color: #000; }
            .header_main .container .nav_main .mobile-button:hover span {
              color: #000; }
          .header_main .container .nav_main .mobile-button span {
            margin-right: 5px;
            font-size: 1.7rem;
            height: auto;
            width: auto;
            color: #888888; }
        .header_main .container .nav_main > ul {
          display: none;
          position: absolute;
          z-index: 16;
          top: 67px;
          left: 0px;
          height: auto;
          background: #fff;
          border-bottom: 1px solid #e0e0e0;
          width: 100%;
          /* Sub menues are desplayed with the other mobile nav options */ }
          .header_main .container .nav_main > ul li {
            display: block; }
            .header_main .container .nav_main > ul li a {
              text-align: center;
              border-bottom: 1px solid #f4f4f4;
              padding: 10px 0px;
              display: block;
              width: 100%; }
          .header_main .container .nav_main > ul .menu-item-has-children:hover {
            background: transparent; }
          .header_main .container .nav_main > ul .menu-item-has-children:after {
            padding: 0px;
            content: '';
            display: none; }
          .header_main .container .nav_main > ul .menu-item-has-children > ul {
            display: block;
            position: relative;
            top: inherit;
            margin: 0px;
            padding: 0px;
            border: 0px;
            background: #fbfbfb; }
            .header_main .container .nav_main > ul .menu-item-has-children > ul li a {
              padding: 10px 0px; } }
        @media only screen and (max-width: 768px) and (max-width: 768px) {
          .header_main .container .nav_main > ul .menu-item-has-children > ul li a {
            padding: 10px 0px 10px 30px; } }

.sticky_padding {
  margin-bottom: 75px; }

.header_main.sticky {
  min-height: 60px; }

.header_main.sticky .container .nav_main > ul li a {
  padding-top: 17px;
  padding-bottom: 17px; }

.header_main.sticky .container .header_main_logo {
  max-height: 60px; }

.header_main.sticky .container .nav_main > ul .menu-item-has-children > ul {
  top: 60px; }

@media only screen and (max-width: 768px) {
  .header_main .container .nav_main > ul {
    height: 100vh;
    overflow-y: scroll;
    padding-bottom: 200px;
    background: white; }
  .header_main .container .nav_main > ul {
    background: rgba(0, 0, 0, 0.8); }
    .header_main .container .nav_main > ul li {
      height: auto;
      background: #fff; }
      .header_main .container .nav_main > ul li a {
        background: white;
        color: #000;
        text-align: left;
        padding-left: 30px; }
      .header_main .container .nav_main > ul li ul li {
        background: #FBFBFB; }
        .header_main .container .nav_main > ul li ul li a {
          background: #FBFBFB;
          color: #888888;
          text-align: left;
          padding-left: 30px; }
  .header_main.sticky .container .nav_main > ul {
    top: 61px; }
  .header_main.sticky .container .nav_main > ul .menu-item-has-children > ul {
    top: 0px; } }


  .footer {
  background: var(--color-bg-dark);
  padding: 60px 0px; }
  @media only screen and (max-width: 768px) {
    .footer {
      padding: 30px 10%; }
      .footer .col-2 {
        width: 48%; } }
  .footer img {
    width: 35%;
    margin-bottom: 15px;
    opacity: .6; }
    @media only screen and (max-width: 768px) {
      .footer img {
        display: block;
        margin-bottom: 15px; } }
  .footer ul {
    padding: 0px;
    margin: 0px; }
    .footer ul li {
      padding: 0px;
      margin: 0px;
      list-style: none;
      margin-bottom: 10px;
      line-height: 1.2; }
      @media only screen and (max-width: 768px) {
        .footer ul li {
          text-align: left; } }
      .footer ul li a {
        color: var(--color-text-light);;
        text-decoration: none;
        font-weight: 200; }
        @media only screen and (max-width: 768px) {
          .footer ul li a {
            text-align: left; } }
        .footer ul li a:hover {
          color: var(--color-white);}
    .footer ul .menu-item-has-children ul {
      display: none; }
  .footer p {
    color: var(--color-text-light);
    margin: 0px;
    font-size: .9rem;
    line-height: 1.7;
    font-weight: 200; }
    @media only screen and (max-width: 768px) {
      .footer p {
        text-align: left; } }
    .footer p strong {
     color: var(--color-white); }
  .footer a {
    color: var(--color-text-light);
    font-weight: 200;
    display: block; }
    @media only screen and (max-width: 768px) {
      .footer a {
        text-align: left; } }
  .footer br {
    line-height: 1.3; }
  .footer h4 {
    color: var(--color-white);
    margin: 0px 0px 15px 0px; }
    @media only screen and (max-width: 768px) {
      .footer h4 {
        text-align: left; } }
  .footer .footer_news li a {
    font-size: .9rem;
    line-height: 1rem; }
    @media only screen and (max-width: 768px) {
      .footer .footer_news li a {
        text-align: left; } }

.copyright {
  background: var(--color-bg-darker);
  padding: 20px 0px; }
  .copyright .row {
    font-size: .7rem;
    line-height: .8;
    color: #888888; }
    @media only screen and (max-width: 768px) {
      .copyright .row {
        text-align: center; } }
  .copyright p {
    font-size: .7rem;
    margin: 0px; }
  .copyright .powered_link a {
    color: #888888; }
    .copyright .powered_link a:visited {
      color: #888888; }

.panel_link {
  text-decoration: none; }

.panel {
  min-height: 250px;
  padding: 120px 0px 120px 0px;
  position: relative; }
  @media only screen and (max-width: 768px) {
    .panel {
      padding: 140px 0px 140px 0px;
      background-attachment: inherit !important; } }
  .panel .container {
    position: relative;
    z-index: 9;
    width: 85%; }
  .panel h2 {
    display: block;
    color: #fff;
    font-size: 3.8rem;
    line-height: 1;
    margin: 15px 40% 10px 0px;
    font-weight: 900;
    text-transform: uppercase; }
    @media only screen and (max-width: 768px) {
      .panel h2 {
        margin: 15px 0px;
        font-size: 2rem;
        text-align: center; } }
  .panel h3 {
    margin: 0px;
    color: #fff;
    font-weight: 300;
    font-size: 1.8rem;
    line-height: 1.2;
    font-style: italic; }
    @media only screen and (max-width: 768px) {
      .panel h3 {
        text-align: center;
        font-size: 1.2rem; } }
  .panel h4 {
    margin: 0px;
    color: #fff;
    font-weight: 300;
    line-height: 1.2; }
    @media only screen and (max-width: 768px) {
      .panel h4 {
        text-align: center; } }
  @media only screen and (max-width: 768px) {
    .panel .call-to-actions {
      text-align: center; } }
  .panel .button {
    margin-top: .5em;
    margin-bottom: .5em; }

.header-panel {
  box-shadow: inset 0px -8px 20px -8px rgba(0, 0, 0, 0.9);
  z-index: 10; }

.promotional_panel {
  padding: 110px;
  min-height: 480px; }
  @media only screen and (max-width: 768px) {
    .promotional_panel {
      padding: 30px;
      display: flex;
      align-items: center; } }
  .promotional_panel .container {
    text-align: right; }
    @media only screen and (max-width: 768px) {
      .promotional_panel .container {
        display: flex;
        flex-direction: column; } }
    .promotional_panel .container h2 {
      margin: 10px 0px 10px 60%;
      font-size: 2rem;
      line-height: 1.1; }
      @media only screen and (max-width: 768px) {
        .promotional_panel .container h2 {
          text-align: center;
          margin: 10px 0px; } }
    .promotional_panel .container h3 {
      font-size: 1.2rem;
      margin-bottom: 20px; }
      @media only screen and (max-width: 768px) {
        .promotional_panel .container h3 {
          text-align: center; } }
    .promotional_panel .container .button {
      font-size: 1rem;
      margin-top: 20px;
      padding: 17px 40px;
      margin: 0 auto; }
    .promotional_panel .container .play_button {
      margin-right: 10px; }

.page_panel {
  padding: 170px 0px 160px 0px;
  box-shadow: 0px 13px 20px -13px rgba(0, 0, 0, 0.4);
  border-bottom: 1px solid #888888; }
  .page_panel h1 {
    display: block;
    color: #fff;
    font-size: 3.7rem;
    line-height: .95;
    margin: 15px 40% 10px 0px;
    font-weight: 900;
    text-transform: uppercase; }
    @media only screen and (max-width: 768px) {
      .page_panel h1 {
        margin: 15px 0px;
        font-size: 2rem;
        text-align: center; } }



.promo_blocks {
  padding: 30px 0px;
  position: relative; }
  .promo_blocks .row {
    display: flex; }
    @media only screen and (max-width: 768px) {
      .promo_blocks .row {
        flex-direction: column; } }
    .promo_blocks .row .promo_block {
      display: block;
      background: #888888;
      text-align: center;
      padding: 80px 20px;
      border: 1px solid #e0e0e0;
      text-decoration: none; }
      .promo_blocks .row .promo_block h3 {
        color: #fff;
        text-shadow: 1px 1px 20px black;
        text-transform: uppercase;
        font-weight: 900;
        line-height: 1.1; }

.about {
  position: relative;
  overflow-y: hidden;
  padding-bottom: 80px;
  /* fixes potential theme css conflict */ }
  .about .row {
    position: relative;
    z-index: 99; }
  .about .acf-map {
    width: 130%;
    height: 105%;
    position: absolute;
    z-index: 9;
    top: 60px;
    right: 0px; }
    @media only screen and (max-width: 900px) {
      .about .acf-map {
        display: none; } }
  .about .acf-map img {
    max-width: inherit !important; }
  .about .acf-map.gradient_right:before {
    background: linear-gradient(to left, white 34%, rgba(255, 255, 255, 0) 47%, rgba(255, 255, 255, 0) 66%, rgba(255, 255, 255, 0) 67%); }

.sermon_latest .sermon_graphic.with_video {
  display: flex;
  align-items: flex-start;
  justify-content: center; }
  .sermon_latest .sermon_graphic.with_video::before {
    content: "\f522";
    display: block;
    color: white;
    position: absolute;
    z-index: 15;
    font-size: 7rem;
    font-family: dashicons;
    opacity: 1;
    top: 35%;
    transform: translateY(-35%);
    width: 100%;
    text-align: center;
    text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5); }

.player {
  display: flex;
  align-items: center;
  margin-top: 5px; }
  @media only screen and (max-width: 900px) {
    .player {
      margin-top: 20px; }
      .player .file_info {
        color: #c8c8c8;
        font-size: .7rem;
        text-align: center;
        margin-top: 6px; }
        .player .file_info a {
          text-decoration: none;
          color: #c8c8c8;
          font-size: .7rem; }
          .player .file_info a:hover {
            color: #000; }
        .player .file_info span {
          color: #c8c8c8;
          font-size: .7rem; } }
  .player #duration {
    margin: 0px 0px 0px 10px;
    font-size: .8rem;
    color: #c8c8c8; }

.sermon_info {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding-top: 10px; }
  @media only screen and (max-width: 900px) {
    .sermon_info {
      flex-direction: column;
      width: 100%; }
      .sermon_info .title {
        width: 100%; } }
  .sermon_info a {
    text-decoration: none; }
  .sermon_info p {
    margin: 0px;
    font-size: .8rem;
    line-height: .8;
    color: #aeaeae; }
    @media only screen and (max-width: 900px) {
      .sermon_info p {
        margin-bottom: 20px;
        text-align: center; } }
  .sermon_info h3 {
    margin: 0px;
    font-weight: 500; }
    @media only screen and (max-width: 900px) {
      .sermon_info h3 {
        text-align: center; } }
  @media only screen and (max-width: 900px) {
    .sermon_info .button {
      display: none; } }

.sermon_graphic a {
  text-decoration: none;
  color: inherit; }

.stock_series_graphix {
  background: #555555;
  display: flex;
  padding: 120px 10%;
  border: 1px solid #242424; }
  .stock_series_graphix p {
    text-align: center;
    color: #fff;
    width: 100%;
    text-transform: uppercase;
    font-size: 3rem;
    font-weight: 900;
    line-height: 1; }

.title a {
  color: #242424; }

.audio-player {
  width: 100%;
  text-align: center;
  display: flex;
  flex-flow: row;
  align-items: center;
  justify-content: center; }
  .audio-player .player-controls {
    align-items: center;
    justify-content: center;
    flex: 3; }
  .audio-player progress {
    width: 100%;
    background-color: #ededed;
    border: 1px solid #e0e0e0;
    border-radius: 40px;
    display: block;
    height: 20px;
    overflow: hidden; }
  .audio-player progress[value] {
    -webkit-appearance: none;
    appearance: none;
    background: #ededed;
    border-radius: 40px;
    display: block;
    height: 20px;
    width: 100%;
    overflow: hidden; }
  .audio-player progress[value]::-webkit-progress-bar {
    background-color: #ededed;
    border-radius: 40px;
    overflow: hidden; }
  .audio-player .player-controls p {
    font-size: 1rem;
    line-height: 1.2;
    margin-bottom: 5px;
    text-align: left; }
    @media only screen and (max-width: 768px) {
      .audio-player .player-controls p {
        font-size: .9rem; } }
  .audio-player .file_info {
    display: flex;
    justify-content: space-between;
    margin-top: 5px; }
    .audio-player .file_info p {
      font-size: .8rem;
      line-height: .8;
      color: #aeaeae; }
      @media only screen and (max-width: 768px) {
        .audio-player .file_info p {
          margin-top: 5px; } }
    .audio-player .file_info a {
      font-size: .8rem;
      line-height: .8;
      color: #aeaeae; }
  .audio-player .start-time {
    margin-right: 8px;
    margin-top: 2px;
    display: block; }
    @media only screen and (max-width: 768px) {
      .audio-player .start-time {
        display: none; } }
  .audio-player .end-time {
    margin-left: 8px;
    margin-top: 2px;
    display: block; }
    @media only screen and (max-width: 768px) {
      .audio-player .end-time {
        display: none; } }

#play-btn {
  outline: 0px;
  border: 0px;
  background: #0073AA;
  border-radius: 50%;
  margin-right: 25px;
  height: 50px;
  width: 50px;
  padding: 0px;
  display: block;
  position: relative; }
  @media only screen and (max-width: 768px) {
    #play-btn {
      margin-right: 15px; } }
  #play-btn:before {
    content: "\f522";
    color: #fff;
    font-size: 2rem;
    line-height: 1.35;
    position: absolute;
    height: auto;
    width: auto;
    top: 4px;
    left: 12px;
    font-family: 'dashicons'; }

#play-btn.pause:before {
  content: "\f523";
  color: #fff;
  font-size: 1.8rem;
  line-height: 1.35;
  position: absolute;
  height: auto;
  width: auto;
  top: 6px;
  left: 11px;
  font-family: 'dashicons'; }

.home .player-controls {
  margin-top: 25px; }

.home .audio-player .file_info p {
  margin-top: 3px; }

.instagram_bar {
  width: 100%;
  overflow: hidden; }
  .instagram_bar ul {
    display: flex;
    padding: 0px;
    margin: 0px; }
    .instagram_bar ul li {
      width: 100%; }
      .instagram_bar ul li a {
        width: 100%; }
        .instagram_bar ul li a img {
          display: block;
          width: 100% !important; }

.sidebar {
  padding-left: 1.5%;
  padding-top: 45px;
  padding-bottom: 30px; }

.page_sidebar_widget {
  margin-bottom: 40px;
  padding-bottom: 30px;
  border-bottom: 1px solid #ededed; }
  .page_sidebar_widget h3 {
    margin: 0px 0px 7px 0px;
    font-size: 1.2rem;
    line-height: 1.2;
    font-weight: 700; }
  .page_sidebar_widget ul {
    margin-top: 0px;
    padding: 0px; }
    .page_sidebar_widget ul li {
      list-style: none; }
  .page_sidebar_widget a {
    text-decoration: none;
    color: #242424; }
    .page_sidebar_widget a:hover {
      color: #0073AA; }

.page .page_sidebar_widget:first-of-type {
  padding-bottom: 0px;
  border-bottom: 0px; }

.page .page_sidebar_widget:last-of-type {
  padding-bottom: 0px;
  border-bottom: 0px; }

.sibling_pages {
  margin-bottom: 60px; }
  .sibling_pages li {
    display: none; }
    .sibling_pages li a {
      text-decoration: none;
      font-size: 1.2rem;
      padding: 12px 0px;
      color: #646464;
      border-bottom: 1px solid #e0e0e0;
      display: block; }
      .sibling_pages li a:hover {
        color: #242424; }
  .sibling_pages li.current-menu-ancestor, .sibling_pages li.current-menu-parent {
    display: block; }
    .sibling_pages li.current-menu-ancestor ul li, .sibling_pages li.current-menu-parent ul li {
      display: block; }
  .sibling_pages li.current-menu-item {
    display: block; }
    .sibling_pages li.current-menu-item ul li {
      display: block; }
    .sibling_pages li.current-menu-item > a {
      color: #0073AA; }

.vision_box .vision_box_box {
  width: 120%;
  margin-left: -20%;
  padding: 60px 40px 40px 40px; }
  @media only screen and (max-width: 768px) {
    .vision_box .vision_box_box {
      width: 100%;
      margin: 0px; } }
  .vision_box .vision_box_box h3 {
    color: #fff;
    text-transform: uppercase;
    font-size: 1.6rem;
    line-height: 1.3;
    font-weight: 300;
    margin-bottom: 20px; }
    .vision_box .vision_box_box h3:after {
      content: '____';
      display: block;
      letter-spacing: -1px;
      font-weight: 500;
      opacity: .5; }

.vision_box p {
  margin: 5px 0px;
  font-style: italic;
  font-weight: 300; }
  .vision_box p a {
    color: #888888;
    font-size: .9rem;
    font-weight: 300; }
    .vision_box p a:hover {
      color: #888888;
      text-decoration: underline; }

.contact_sidebar p {
  font-size: 1rem;
  margin: 0px; }
  .contact_sidebar p strong {
    display: block;
    font-size: 1.2rem;
    margin-bottom: 15px; }

.contact_sidebar .phone_number {
  margin-top: 10px;
  margin-bottom: 15px; }
  .contact_sidebar .phone_number span {
    font-weight: 700; }

.contact_sidebar a {
  text-decoration: underline;
  font-size: .8rem; }

.cta_sidebar {
  border: 1px solid #e0e0e0;
  background: #fff;
  width: 120%;
  margin-left: -20%; }
  @media only screen and (max-width: 768px) {
    .cta_sidebar {
      width: 100%;
      margin: 0 auto;
      margin-bottom: 30px; } }
  .cta_sidebar img {
    max-width: 100%;
    width: 100%;
    margin-bottom: 0px; }
  .cta_sidebar p {
    text-align: center;
    padding: 0px 10% 20px 10%;
    margin: 0px;
    font-size: .9rem;
    line-height: 1.3;
    margin-bottom: 10px;
    color: #888888; }
  .cta_sidebar a.button {
    display: block;
    padding: 17px 0px;
    text-align: center;
    margin: 0px 10%;
    box-shadow: 0px 0px 0px 0px;
    margin-top: 20px;
    margin-bottom: 15px;
    position: relative;
    z-index: 4;
    text-transform: none;
    font-weight: 500;
    color: #fff; }
    .cta_sidebar a.button:hover {
      color: #fff; }

.event_sidebar {
  margin-bottom: 40px; }
  .event_sidebar h3 {
    margin-bottom: 15px; }
  .event_sidebar .related_event {
    display: flex;
    align-items: center;
    text-decoration: none;
    margin-bottom: 10px;
    color: #242424; }
    .event_sidebar .related_event:hover {
      color: #0073AA; }
      .event_sidebar .related_event:hover .date_box {
        color: #242424; }
    .event_sidebar .related_event:visited {
      color: #242424; }
    .event_sidebar .related_event .date_text p {
      margin: 0px;
      line-height: 1.3;
      font-size: 1rem; }
    .event_sidebar .related_event .date_box {
      padding: 10px 15px;
      background: #fff; }
      .event_sidebar .related_event .date_box .month {
        font-size: .8rem; }
      .event_sidebar .related_event .date_box .days {
        font-size: 1.3rem; }

.annoucement_sidebar {
  margin-bottom: 40px; }
  .annoucement_sidebar h3 {
    margin-bottom: 15px; }
  .annoucement_sidebar .related_announcement {
    color: #242424; }
    .annoucement_sidebar .related_announcement p {
      margin: 0px 0px 12px 0px;
      line-height: 1.3;
      font-size: 1rem; }
  .annoucement_sidebar a:visited {
    color: #242424; }

.sidebar form input {
  width: 100%;
  padding: 5px 10px; }

.sidebar form [type="submit"] {
  width: 100%;
  color: #fff;
  background: #a7a7a7;
  text-align: center;
  border: 0px;
  padding: 12px 10px;
  border-radius: 4px; }

.sidebar form p {
  margin-bottom: 10px;
  font-size: 1rem;
  line-height: 1.2; }

.sidebar .page_sidebar_widget form [type="submit"] {
  margin-top: 10px;
  box-shadow: none; }

.article-body .bean-five-sixth, .article-body .bean-four-fifth, .article-body .bean-one-fifth, .article-body .bean-one-fourth, .article-body .bean-one-half, .article-body .bean-one-sixth, .article-body .bean-one-third, .article-body .bean-three-fifth, .article-body .bean-three-fourth, .article-body .bean-two-fifth, .article-body .bean-two-third {
  clear: inherit; }

.article-body .bean-column-last {
  margin-right: 0px;
  float: right; }
  .article-body .bean-column-last:after {
    content: '';
    visibility: hidden;
    display: block;
    clear: both;
    width: 100%;
    height: 0;
    font-size: 0; }

.article-body .bean-break {
  display: block;
  clear: both; }

.article-body .bean-panel {
  clear: both; }
  .article-body .bean-panel .bean-panel-heading {
    border: 1px solid #e8e8e8; }
  .article-body .bean-panel .bean-panel-title > a {
    display: block;
    width: 100%;
    margin: 0px;
    float: none;
    font-size: 1.1rem !important;
    background: #fbfbfb;
    color: #242424 !important; }
  .article-body .bean-panel .bean-panel-body {
    padding: 20px 30px;
    font-size: 1rem;
    font-weight: 500;
    border: 1px solid #e8e8e8;
    border-top: 0px; }

.article-body a.bean-btn {
  display: inline-block;
  float: none;
  font-family: 'Lato', Helvetica, sans-serif !important;
  border: 0px;
  color: #fff !important;
  font-size: 1rem !important;
  font-weight: 300 !important; }
  .article-body a.bean-btn i {
    color: white;
    font-weight: 300;
    margin-right: 10px; }

.article-body .bean-tabs {
  display: flex;
  border-bottom: 1px solid #e8e8e8;
  padding-left: 20px; }
  .article-body .bean-tabs > li > a {
    color: #888888 !important;
    text-decoration: none; }
  .article-body .bean-tabs > li.active > a, .article-body .bean-tabs .bean-tabs > li.active > a:focus, .article-body .bean-tabs .bean-tabs > li.active > a:hover {
    border: 1px solid #e8e8e8;
    border-bottom: 0px;
    color: #242424 !important; }

.article-body .bean-tab-content {
  border: 1px solid #e8e8e8;
  border-top: 0px;
  padding: 10px 17px; }

.article-body .bean-quote {
  background-color: transparent;
  color: #242424;
  font-size: 2.3rem;
  line-height: 1.1;
  font-weight: 800;
  width: 100%;
  text-align: center;
  padding: 20px 0px 50px 0px;
  margin: 0px;
  text-transform: uppercase;
  margin: 0 auto; }

.article-body .bean-alert {
  clear: both; }

.social-share {
  margin-bottom: 30px;
  display: flex;
  align-items: center; }
  .social-share h4 {
    margin: 0px;
    padding: 0px;
    margin-right: 15px; }
  .social-share ul {
    margin: 0px;
    padding: 0px;
    display: flex; }
  .social-share li {
    margin: 0px;
    padding: 0px;
    list-style: none;
    margin-right: 5px; }
    .social-share li img {
      width: 95%;
      height: auto; }
      .social-share li img:hover {
        opacity: .8; }

.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 40px; }
  .pagination .pages {
    display: flex;
    padding: 0px;
    margin: 0px; }
    .pagination .pages li {
      padding: 0px;
      margin: 0px;
      list-style: none; }
      .pagination .pages li .dots {
        color: #888888;
        padding: 0px 6px; }
    .pagination .pages .page-number {
      background: #f3f3f3;
      padding: 15px 20px;
      margin: 0px 4px;
      text-decoration: none;
      border: 1px solid #e0e0e0;
      color: #888888; }
      .pagination .pages .page-number:hover {
        background: #fff;
        color: #242424; }
    .pagination .pages .page-number.current {
      background: #fff; }
  .pagination .next, .pagination .prev {
    background: #f3f3f3;
    padding: 13px 20px;
    margin: 0px 4px;
    text-decoration: none;
    border: 1px solid #e0e0e0;
    color: #888888; }
    .pagination .next:hover, .pagination .prev:hover {
      background: #fff;
      color: #242424; }
  .pagination .next:after {
    content: "\f345";
    font-family: 'dashicons';
    margin-left: 8px;
    position: relative;
    top: 3px;
    display: inline-block; }
  .pagination .prev:before {
    content: "\f341";
    font-family: 'dashicons';
    margin-right: 8px;
    position: relative;
    top: 3px;
    display: inline-block; }

.search .main_section .main_content .article-body {
  padding-top: 0px; }

.search .sibling_pages {
  display: none; }

.search h1 {
  margin-top: 60px; }

.search .search_item {
  margin: 40px 0px; }
  .search .search_item h4 {
    margin: 0px;
    font-size: 1.5rem; }
    .search .search_item h4 a {
      color: #000;
      text-decoration: none; }
  .search .search_item a {
    color: #888888; }

.author .author_box {
  border: 1px solid #e0e0e0;
  margin-top: -100px;
  position: relative;
  z-index: 15;
  padding-bottom: 30px; }
  .author .author_box img {
    max-width: 100%; }
  .author .author_box .author_info {
    padding: 10%; }
    .author .author_box .author_info h2 {
      margin: 0px; }
    .author .author_box .author_info h4 {
      margin: 0px; }
    .author .author_box .author_info p {
      font-size: .95rem; }
    .author .author_box .author_info .button {
      color: white;
      box-shadow: none;
      width: 100%; }

.author .author_posts {
  padding-top: 30px; }

.author .author_posts [class^="col"].announcement_item:nth-child(2n+1) {
  clear: both; }

.author .row [class^="col"].announcement_item:nth-child(3n+1) {
  clear: none; }

.about {
  padding-top: 20px; }
  .about .row {
    display: flex; }
    @media only screen and (max-width: 900px) {
      .about .row {
        flex-direction: column; }
        .about .row .col-6 {
          width: 100%; } }
  .about .about_video {
    position: relative;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center; }
    .about .about_video span {
      position: absolute;
      z-index: 9;
      color: #fff;
      font-size: 6rem;
      height: 100%;
      width: 100%;
      display: flex;
      justify-content: center;
      align-items: center;
      text-shadow: 1px 1px 20px black; }
  .about img {
    display: block;
    width: 100%; }
  .about .about_content {
    padding-left: 5%; }
    @media only screen and (max-width: 900px) {
      .about .about_content {
        padding-left: 0px; } }
    .about .about_content .row {
      padding: 20px 0px 50px 0px; }
      @media only screen and (max-width: 900px) {
        .about .about_content .row {
          flex-direction: row; } }
      .about .about_content .row p {
        margin: 0px;
        font-size: 1rem;
        line-height: 1.5; }
        .about .about_content .row p br {
          line-height: 1.5; }
    .about .about_content h3 {
      color: #0073AA;
      text-transform: uppercase;
      font-size: 1.6rem;
      line-height: 1.4;
      font-weight: 900;
      margin-bottom: 0px; }
    .about .about_content .button {
      box-shadow: none;
      padding: 17px 45px; }

.sermons_latest {
  position: relative;
  margin-bottom: 0px; }

.sermons_background {
  display: flex;
  position: absolute;
  width: 100%;
  max-height: 300px;
  overflow: hidden; }
  .sermons_background .col-6 {
    width: 50%;
    margin: 0px;
    padding: 0px;
    position: relative; }
  .sermons_background img {
    display: block;
    width: 100%;
    position: relative; }
  .sermons_background:before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 5;
    background-image: linear-gradient(0deg, white 10%, rgba(255, 255, 255, 0) 100%); }

.sermons_rotation {
  display: flex;
  z-index: 10;
  position: absolute;
  top: 100px;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto; }
  .sermons_rotation .col-6 {
    margin: 0px;
    width: 50%; }
  .sermons_rotation img {
    width: 100%;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.7); }
  .sermons_rotation a {
    position: relative; }

.sermon_latest {
  position: relative;
  z-index: 11;
  top: 45px;
  left: 0;
  right: 0;
  margin-bottom: 50px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  justify-content: center;
  max-width: 800px;
  width: 90%; }
  .sermon_latest img {
    width: 100%;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.7);
    display: block;
    position: relative; }
  .sermon_latest .include_video {
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.7); }

.featured_video {
  margin-top: -40px;
  position: relative;
  z-index: 10;
  margin-bottom: 0px;
  border: 1px solid #242424; }

.main_section {
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#000000+0,000000+45&0.65+0,0+46 */
  background: -moz-linear-gradient(left, #F3F3F3 0%, #fff 49%);
  background: -webkit-linear-gradient(left, #F3F3F3 0%, #fff 45%);
  background: linear-gradient(to left, #F3F3F3 0%, #fff 45%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#F3F3F3', endColorstr='#00000000',GradientType=1 ); }
  @media only screen and (max-width: 768px) {
    .main_section {
      background: #fff; } }
  .main_section .main_content {
    background: white;
    padding-bottom: 40px;
    margin-top: 0px;
    margin-bottom: 0px;
    border-right: 1px solid #f3f3f3; }
    @media only screen and (max-width: 768px) {
      .main_section .main_content {
        border: 0px;
        padding-right: 0px;
        padding-bottom: 0px; } }
    .main_section .main_content .article-body {
      padding-right: 5%; }
      .main_section .main_content .article-body .alignleft, .main_section .main_content .article-body .alignrght, .main_section .main_content .article-body .aligncenter {
        max-width: 100%; }
      .main_section .main_content .article-body img {
        border: 1px solid #e0e0e0;
        max-width: 100%; }

.main_section.full-width {
  background: #fff; }
  .main_section.full-width .main_content {
    border: 0px;
    padding: 0px; }
    .main_section.full-width .main_content .article-body {
      padding-right: 0px; }

.page_not_found {
  padding: 300px 50px; }
  .page_not_found h2 {
    margin: 0px;
    color: #fff;
    text-align: center; }

.page-template-page-sermons .current_series {
  text-decoration: none;
  padding: 100px 0px 70px 0px; }
  .page-template-page-sermons .current_series a {
    text-decoration: none; }
  .page-template-page-sermons .current_series p {
    color: #fff;
    font-weight: 300;
    margin: 10px 0px 0px 0px;
    font-size: .9rem; }
    @media only screen and (max-width: 768px) {
      .page-template-page-sermons .current_series p {
        text-align: center; } }
  .page-template-page-sermons .current_series a.button {
    margin-top: 25px;
    padding: 17px 40px; }
    @media only screen and (max-width: 768px) {
      .page-template-page-sermons .current_series a.button {
        display: block;
        margin-top: 20px;
        text-align: center; } }

.page-template-page-sermons .main_section {
  padding: 30px 0px 60px 0px; }

.series_item {
  margin-bottom: 30px; }
  .series_item img {
    display: block;
    max-width: 100%;
    border: 1px solid #e0e0e0; }
  .series_item:nth-child(2n+1) {
    clear: both; }
  .series_item .series_title {
    display: flex;
    justify-content: space-between; }
    .series_item .series_title h4 {
      margin: 0px;
      font-size: .9rem;
      font-weight: 400;
      padding-left: 5px;
      color: #888888; }
    .series_item .series_title p {
      padding-right: 5px;
      font-size: .8rem;
      margin: 0px;
      color: #888888; }

.panel.series_panel {
  height: 450px;
  padding: 50px 0px 0px 0px;
  overflow: hidden;
  background: #242424; }

.series_background {
  border-bottom: 1px solid #888888;
  filter: blur(15px);
  height: 115%;
  width: 110%;
  margin-left: -5%;
  margin-top: -2%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0; }

.series_graphic {
  position: relative;
  z-index: 11;
  margin-top: -400px;
  padding-bottom: 30px; }
  @media only screen and (max-width: 768px) {
    .series_graphic {
      margin-top: -430px; } }
  .series_graphic img {
    display: block;
    max-width: 80%;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.7);
    margin: 0 auto; }
    @media only screen and (max-width: 768px) {
      .series_graphic img {
        max-width: 100%; } }

.single-sermon_series .include_video, .single-sermons .include_video {
  width: 80%;
  margin: 0 auto;
  margin-bottom: 5px; }
  @media only screen and (max-width: 900px) {
    .single-sermon_series .include_video, .single-sermons .include_video {
      width: 100%; } }

.single-sermon_series .series_title, .single-sermons .series_title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 40px 0px 30px 0px; }
  @media only screen and (max-width: 768px) {
    .single-sermon_series .series_title, .single-sermons .series_title {
      flex-wrap: wrap; } }
  .single-sermon_series .series_title h1, .single-sermons .series_title h1 {
    font-size: 2.5rem;
    line-height: 1;
    text-transform: uppercase;
    font-weight: 800;
    margin: 0px;
    color: #242424; }
  .single-sermon_series .series_title p, .single-sermons .series_title p {
    text-transform: uppercase;
    font-size: .9rem;
    margin: 0px; }

.single-sermon_series .main_section, .single-sermons .main_section {
  background: #fff;
  position: relative;
  z-index: 10; }
  .single-sermon_series .main_section h3, .single-sermons .main_section h3 {
    text-transform: uppercase;
    font-size: 1rem;
    color: #242424;
    font-weight: 600;
    margin: 0px 0px 10px 0px; }
  .single-sermon_series .main_section p, .single-sermons .main_section p {
    font-size: 1rem;
    line-height: 1.4;
    color: #888888;
    margin: 0px 0px 18px 0px; }

.single-sermon_series .series_description, .single-sermons .series_description {
  padding-right: 4%;
  margin-bottom: 120px; }
  @media only screen and (max-width: 768px) {
    .single-sermon_series .series_description, .single-sermons .series_description {
      margin-bottom: 0px; } }

.single-sermon_series .speaker, .single-sermons .speaker {
  display: flex;
  margin-bottom: 15px; }
  .single-sermon_series .speaker img, .single-sermons .speaker img {
    margin-right: 15px;
    border-radius: 50%;
    height: 50px;
    width: 50px; }
  .single-sermon_series .speaker .speaker_text p, .single-sermons .speaker .speaker_text p {
    margin: 0px;
    color: #242424; }
  .single-sermon_series .speaker .speaker_text span, .single-sermons .speaker .speaker_text span {
    color: #888888; }

.single-sermon_series .series_sermons, .single-sermons .series_sermons {
  margin-bottom: 120px; }
  @media only screen and (max-width: 768px) {
    .single-sermon_series .series_sermons, .single-sermons .series_sermons {
      margin-bottom: 20px; } }
  .single-sermon_series .series_sermons ul, .single-sermons .series_sermons ul {
    margin: 0px;
    padding: 0px; }
    .single-sermon_series .series_sermons ul li, .single-sermons .series_sermons ul li {
      margin: 0px;
      padding: 0px;
      list-style: none; }
    .single-sermon_series .series_sermons ul .sermon_item, .single-sermons .series_sermons ul .sermon_item {
      display: flex;
      align-items: flex-start;
      margin-bottom: 15px; }
      @media only screen and (max-width: 768px) {
        .single-sermon_series .series_sermons ul .sermon_item, .single-sermons .series_sermons ul .sermon_item {
          flex-direction: column; } }
      .single-sermon_series .series_sermons ul .sermon_item span, .single-sermons .series_sermons ul .sermon_item span {
        color: #888888;
        font-size: .9rem;
        margin-right: 20px;
        white-space: nowrap; }
      .single-sermon_series .series_sermons ul .sermon_item a, .single-sermons .series_sermons ul .sermon_item a {
        font-size: 1.2rem;
        color: #242424; }

.single-sermon_series .tags, .single-sermon_series .scriptures, .single-sermon_series .notes, .single-sermons .tags, .single-sermons .scriptures, .single-sermons .notes {
  margin-bottom: 30px;
  color: #888888;
  font-size: .9rem; }
  .single-sermon_series .tags .commas:last-of-type, .single-sermon_series .scriptures .commas:last-of-type, .single-sermon_series .notes .commas:last-of-type, .single-sermons .tags .commas:last-of-type, .single-sermons .scriptures .commas:last-of-type, .single-sermons .notes .commas:last-of-type {
    display: none; }

.single-sermon_series .podcast_link, .single-sermons .podcast_link {
  margin-top: 40px;
  line-height: 1.1; }

.recent_sermons h3, .recent_series h3 {
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 10px; }

.recent_sermon {
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid #f3f3f3; }
  .recent_sermon:last-of-type {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f3f3f3; }
  .recent_sermon h4 {
    margin: 0px; }
  .recent_sermon p {
    margin: 0px;
    color: #888888;
    font-size: .9rem; }
    .recent_sermon p:last-of-type {
      font-size: .7rem; }

.single-sermons .main_section {
  background: #f3f3f3;
  border-top: 1px solid #e0e0e0;
  padding: 50px 0px; }
  @media only screen and (max-width: 768px) {
    .single-sermons .main_section .row {
      display: flex;
      flex-direction: column; } }
  .single-sermons .main_section h1 {
    margin: 0px;
    text-transform: uppercase;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 15px; }
  .single-sermons .main_section p {
    color: #242424;
    line-height: 1.5; }
  .single-sermons .main_section .date {
    margin: 0px 0px 10px 0px;
    color: #888888; }
  @media only screen and (max-width: 768px) {
    .single-sermons .main_section .sermon_content {
      order: -1; } }
  .single-sermons .main_section .sermon_text p:first-of-type {
    font-size: 1.3rem;
    line-height: 1.4;
    margin-top: 30px; }
  .single-sermons .main_section .sermon_sidebar {
    padding-left: 3%; }

.single-sermons .player {
  padding: 15px 20px 0px 20px; }
  @media only screen and (max-width: 768px) {
    .single-sermons .player {
      background: #fff;
      margin-top: 0px;
      margin-bottom: 10px;
      padding: 10px; } }

.single-sermons .series_list {
  padding-right: 3%; }
  .single-sermons .series_list p {
    color: #888888;
    font-size: .8rem;
    margin-top: 4px; }
  .single-sermons .series_list ul {
    margin: 0px;
    padding: 0px; }
    @media only screen and (max-width: 768px) {
      .single-sermons .series_list ul {
        margin-left: 20px; } }
    .single-sermons .series_list ul li {
      margin: 0px;
      padding: 0px;
      list-style: none;
      margin-bottom: 10px; }
    .single-sermons .series_list ul .current {
      list-style: disc; }
      .single-sermons .series_list ul .current a {
        text-decoration: none;
        color: #000 !important; }
  .single-sermons .series_list .series_info {
    margin-top: 50px; }
  .single-sermons .series_list img {
    display: block;
    width: 100%; }

.date_box {
  border: 1px solid #e0e0e0;
  padding: 15px;
  margin-right: 20px; }
  .date_box span {
    display: block;
    text-transform: uppercase;
    text-align: center;
    line-height: 1.2;
    font-weight: 700; }
  .date_box span.days {
    font-size: 1.6rem; }

.page-template-page-events .featured_event {
  text-decoration: none;
  padding: 100px 0px 70px 0px; }
  .page-template-page-events .featured_event a {
    text-decoration: none; }
  .page-template-page-events .featured_event p {
    color: #fff;
    font-weight: 300;
    margin: 10px 0px 0px 0px;
    font-size: .9rem; }
    @media only screen and (max-width: 768px) {
      .page-template-page-events .featured_event p {
        text-align: center; } }
  .page-template-page-events .featured_event a.button {
    margin-top: 25px;
    padding: 17px 40px; }
    @media only screen and (max-width: 768px) {
      .page-template-page-events .featured_event a.button {
        display: block;
        margin-top: 20px;
        text-align: center; } }

.page-template-page-events .main_section,
.events-page-layout .main_section {
  padding: 30px 0px 60px 0px; }

.page-template-page-events .event_header,
.events-page-layout .event_header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 10px 0px 30px 0px;
  padding: 0px 0px 30px 0px;
  border-bottom: 1px solid #f3f3f3; }
.page-template-page-events .event_header h1,
.events-page-layout .event_header h1 {
    text-transform: uppercase;
    font-weight: 700;
    margin: 0px;
    font-size: 1.375rem; }

.page-template-page-events .event_item,
.events-page-layout .event_item {
  margin-bottom: 40px; }
  .page-template-page-events .event_item .featured_images,
.events-page-layout .event_item .featured_images {
    margin-left: 0px; }
.page-template-page-events .event_item .featured_images a,
.events-page-layout .event_item .featured_images a {
      text-decoration: none; }
   .page-template-page-events .event_item .featured_images img,
.events-page-layout .event_item .featured_images img {
      max-width: 100%; }
    .page-template-page-events .event_item .featured_images .stock_event_image {
      background: #f3f3f3;
      border: 1px solid #e0e0e0;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 90px 0px; }
      .page-template-page-events .event_item .featured_images .stock_event_image span {
        color: #888888; }
  .page-template-page-events .event_item .event_info,
.events-page-layout .event_item .event_info {
    padding-left: 3%;
    margin-right: 0px; }
    .page-template-page-events .event_item .event_info .date_row,
.events-page-layout .event_item .event_info .date_row {
      display: flex;
      align-items: flex-start;
      margin-bottom: 10px; }
      .page-template-page-events .event_item .event_info .date_row .date_text a {
        text-decoration: none;
        color: #242424; }
      .page-template-page-events .event_item .event_info .date_row .date_text h3 {
        margin: 0px;
        font-weight: 700;
        font-size: 1.6rem;
        line-height: 1.2; }
      .page-template-page-events .event_item .event_info .date_row .date_text p {
        margin: 0px;
        font-size: 1rem;
        line-height: 1.4;
        margin-top: 3px;
        color: #6f6e6e;
        font-weight: normal; }

.single-events .main_section .main_content {
  border-right: 0px;
  padding-top: 40px; }

.single-events .event_header {
  padding: 126px 0px 80px 0px; }
  .single-events .event_header p, .single-events .event_header h3 {
    color: #fff;
    font-weight: 400;}
      @media only screen and (max-width: 768px) {
          .single-events .event_header p, .single-events .event_header h3 {
              text-align: center; }}
  .single-events .event_header h3 {
    margin: 0px;
    color: #fff;
    font-weight: 300;
    font-size: 1.8rem;
    line-height: 1.2;
    font-style: italic; }
    @media only screen and (max-width: 768px) {
      .single-events .event_header h3 {
        text-align: center;
        font-size: 1.2rem; } }
  .single-events .event_header h4 {
    margin: 0px;
    color: #fff;
    font-weight: 300;
    line-height: 1.2; }
    @media only screen and (max-width: 768px) {
      .single-events .event_header h4 {
        text-align: center; } }
  .single-events .event_header .button {
    margin-top: 5px; }
    
    @media only screen and (max-width: 768px) {
        .single-events .event_header .button { 
            width:100%; }}

.single-events .event_content {
  padding-right: 2%;
  padding-left: 2%; }
  .single-events .event_content h1 {
    text-transform: uppercase;
    font-size: 2.5rem;
    margin: 0px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 15px; }

.single-events .main_section {
  background: #fff;
  position: relative;
  z-index: 10; }

.single-events h3 {
  text-transform: uppercase;
  font-size: 1rem;
  color: #242424;
  font-weight: 600;
  margin: 0px 0px 10px 0px; }

.single-events .events_list {
  margin-top: 45px; }
  @media only screen and (max-width: 768px) {
    .single-events .events_list {
      display: none; } }
  .single-events .events_list p {
    color: #888888;
    font-size: .8rem;
    margin-top: 4px; }
  .single-events .events_list ul {
    margin: 0px;
    padding: 10px 0px 0px 0px; }
    .single-events .events_list ul li {
      margin: 0px;
      padding: 0px 0px 10px 0px;
      list-style: none;
      margin-bottom: 10px;
      line-height: 1.2; }
    .single-events .events_list ul .current {
      list-style: disc; }
      .single-events .events_list ul .current a {
        text-decoration: none;
        color: #000 !important; }

  .single-events .events_sidebar a.button {
    background: #456649;
    color: #fff !important;
    box-shadow: none;
    margin-bottom: 30px; }
  .single-events .events_sidebar p {
    margin: 0px;
    color: #888888;
    font-size: 1rem; }
  .single-events .events_sidebar .location {
    margin-top: 20px; }
  .single-events .events_sidebar .directions {
    font-size: .8rem; }

.related_leaders {
  display: flex; }

.sidebar .related_leader {
  align-items: flex-start; }

.related_leader {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  border: 1px solid #e0e0e0;
  padding: 10%;
  margin-bottom: 30px;
  background: #fff; }
  .related_leader img {
    max-width: 100%;
    height: auto;
    display: block;
    margin-bottom: 15px;
    border: 1px solid #e0e0e0; }
  .related_leader h4 {
    margin: 0px;
    font-weight: 700;
    font-size: 1.2rem;
    line-height: 1;
    text-align: left; }
  .related_leader p {
    margin: 0px;
    text-align: left;
    font-size: .9rem; }
  .related_leader p.job_title {
    color: #888888;
    font-style: italic;
    font-size: 1rem; }

.page-template-page-team .article-content {
  padding-top: 40px; }
  .page-template-page-team .article-content h1 {
    margin: 0px;
    text-transform: uppercase;
    font-weight: 800; }

.page-template-page-team .article-body {
  padding-bottom: 0px; }

.page-template-page-team .related_leaders {
  padding: 0px 0px 60px 0px;
  flex-wrap: wrap; }

.page-template-page-team .related_leader {
  padding: 3%;
  align-items: flex-start; }
  .page-template-page-team .related_leader p {
    text-align: left; }

.page-template-page-team .featured_leaders {
  padding: 0px 0px 20px 0px; }
  .page-template-page-team .featured_leaders .related_leader {
    flex-direction: row; }
    @media only screen and (max-width: 768px) {
      .page-template-page-team .featured_leaders .related_leader {
        flex-direction: column; } }
    .page-template-page-team .featured_leaders .related_leader a.team_link {
      display: block;
      margin-bottom: 0px;
      margin-right: 5%;
      width: 30%; }
      @media only screen and (max-width: 768px) {
        .page-template-page-team .featured_leaders .related_leader a.team_link {
          width: 100%;
          margin-right: 0px; } }
    .page-template-page-team .featured_leaders .related_leader img {
      margin-bottom: 0px;
      width: 100%; }
      @media only screen and (max-width: 768px) {
        .page-template-page-team .featured_leaders .related_leader img {
          width: 100%; } }
    .page-template-page-team .featured_leaders .related_leader .related_leader_text {
      width: 35%;
      margin-right: 4%;
      height: auto; }
      @media only screen and (max-width: 768px) {
        .page-template-page-team .featured_leaders .related_leader .related_leader_text {
          width: 100%;
          margin-top: 30px; } }
      .page-template-page-team .featured_leaders .related_leader .related_leader_text h4 {
        text-align: left; }
      .page-template-page-team .featured_leaders .related_leader .related_leader_text .job_title {
        margin-bottom: 15px; }
    .page-template-page-team .featured_leaders .related_leader .related_leader_contact {
      text-align: right;
      border-left: 1px solid #f3f3f3;
      padding-left: 4%;
      height: 100%;
      padding-top: 20px; }
      @media only screen and (max-width: 768px) {
        .page-template-page-team .featured_leaders .related_leader .related_leader_contact {
          height: auto;
          border-left: 0px;
          padding-left: 0px; } }
      .page-template-page-team .featured_leaders .related_leader .related_leader_contact p {
        margin-bottom: 7px; }
      .page-template-page-team .featured_leaders .related_leader .related_leader_contact .social_contact {
        margin-top: 20px; }
        .page-template-page-team .featured_leaders .related_leader .related_leader_contact .social_contact a span {
          text-decoration: none;
          margin: 2px 6px 0px 0px;
          color: #888888; }

.single-team .main_section {
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#000000+0,000000+45&0.65+0,0+46 */
  background: -moz-linear-gradient(right, #F3F3F3 0%, #fff 45%, transparent 46%);
  background: -webkit-linear-gradient(right, #F3F3F3 0%, #fff 45%, transparent 46%);
  background: linear-gradient(to right, #F3F3F3 0%, #fff 45%, transparent 46%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#F3F3F3', endColorstr='#00000000',GradientType=1 ); }
  @media only screen and (max-width: 768px) {
    .single-team .main_section {
      background: #fff; } }
  .single-team .main_section .main_content {
    background: white;
    padding-left: 3%;
    padding-bottom: 100px;
    margin-top: 0px;
    margin-bottom: 0px;
    border-left: 1px solid #f3f3f3;
    border-right: 0px; }
    @media only screen and (max-width: 768px) {
      .single-team .main_section .main_content {
        border: 0px;
        padding-left: 0px;
        padding-bottom: 0px; } }
    .single-team .main_section .main_content h1 {
      margin: 0px; }
    .single-team .main_section .main_content h2 {
      margin: 0px;
      margin-bottom: 20px;
      color: #888888;
      font-weight: 400;
      font-style: italic;
      font-size: 1.4rem; }

.single-team .left-sidebar {
  padding-left: 0px;
  margin-left: 0px;
  padding-right: 1%; }
  .single-team .left-sidebar img {
    max-width: 100%; }
  .single-team .left-sidebar .related_leader_contact {
    padding-right: 7%;
    width: 100%;
    margin-top: 20px; }
    .single-team .left-sidebar .related_leader_contact p {
      text-align: right;
      margin: 0px;
      font-size: 1rem; }
      @media only screen and (max-width: 768px) {
        .single-team .left-sidebar .related_leader_contact p {
          text-align: center; } }
    .single-team .left-sidebar .related_leader_contact a {
      text-align: right;
      font-size: 1rem; }
      @media only screen and (max-width: 768px) {
        .single-team .left-sidebar .related_leader_contact a {
          text-align: center; } }
      .single-team .left-sidebar .related_leader_contact a span {
        text-decoration: none;
        margin: 2px 0px 0px 7px;
        color: #888888; }
    .single-team .left-sidebar .related_leader_contact .social_contact {
      margin-top: 15px; }

.page-template-page-stories .main_section {
  padding: 80px 0px; }

.row [class^="col"].story_item {
  margin-bottom: 30px; }
  .row [class^="col"].story_item:nth-child(3n+1) {
    clear: both; }
  .row [class^="col"].story_item img {
    width: 100%;
    border: 1px solid #e0e0e0; }
  .row [class^="col"].story_item a {
    text-decoration: none;
    color: #242424; }
  .row [class^="col"].story_item h2 {
    margin: 10px 0px 10px 0px;
    font-size: 1.5rem;
    line-height: 1.3; }
  .row [class^="col"].story_item p {
    margin: 0px;
    font-size: 1rem;
    line-height: 1.4; }
  .row [class^="col"].story_item .stock_story_image {
    background: #f3f3f3;
    border: 1px solid #e0e0e0;
    display: flex;
    animation-delay: center;
    justify-content: center;
    padding: 80px 10%;
    color: #888888;
    text-align: center;
    line-height: 1.2; }

.page-template-page-announcements .main_section {
  padding: 80px 0px; }

.page-template-page-announcements .row {
  flex-wrap: wrap; }

.row [class^="col"].announcement_item {
  margin-bottom: 50px; }
  .row [class^="col"].announcement_item:nth-child(3n+1) {
    clear: both; }
  .row [class^="col"].announcement_item img {
    width: 100%;
    border: 1px solid #888888; }
  .row [class^="col"].announcement_item a {
    text-decoration: none;
    color: #242424; }
  .row [class^="col"].announcement_item h2 {
    margin: 10px 0px 5px 0px;
    font-size: 1.5rem;
    line-height: 1.3; }
  .row [class^="col"].announcement_item p {
    margin: 0px;
    font-size: 1rem;
    line-height: 1.4; }
  .row [class^="col"].announcement_item .annoucement_date {
    color: #888888;
    font-size: .9rem;
    margin-bottom: 6px; }
  .row [class^="col"].announcement_item .stock_announcement_image {
    background: #f3f3f3;
    border: 1px solid #e0e0e0;
    display: flex;
    animation-delay: center;
    justify-content: center;
    padding: 80px 10%;
    color: #888888;
    text-align: center;
    line-height: 1.2; }

.page-template-page-small-groups .main_section > .container > .row, .single-small-groups .main_section > .container > .row {
  padding-bottom: 80px; }

.page-template-page-small-groups .article-body, .single-small-groups .article-body {
  padding: 0px 0px 15px 0px; }

.page-template-page-small-groups .map-panel, .single-small-groups .map-panel {
  background: transparent;
  padding: 0px; }

.page-template-page-small-groups .acf-map, .single-small-groups .acf-map {
  height: 500px;
  width: 100%; }

.page-template-page-small-groups .row [class^="col"].small-group_item, .single-small-groups .row [class^="col"].small-group_item {
  margin-bottom: 30px; }
  .page-template-page-small-groups .row [class^="col"].small-group_item:nth-child(4n+1), .single-small-groups .row [class^="col"].small-group_item:nth-child(4n+1) {
    clear: both; }
  .page-template-page-small-groups .row [class^="col"].small-group_item img, .single-small-groups .row [class^="col"].small-group_item img {
    width: 100%;
    border: 1px solid #e0e0e0; }
  .page-template-page-small-groups .row [class^="col"].small-group_item .group_status, .single-small-groups .row [class^="col"].small-group_item .group_status {
    margin: 5px 0px 0px 0px;
    color: #a2a1a1;
    font-size: .8rem; }
    .page-template-page-small-groups .row [class^="col"].small-group_item .group_status span, .single-small-groups .row [class^="col"].small-group_item .group_status span {
      margin-top: -4px;
      color: #d5d4d4; }
  .page-template-page-small-groups .row [class^="col"].small-group_item a, .single-small-groups .row [class^="col"].small-group_item a {
    text-decoration: none;
    color: #242424; }
  .page-template-page-small-groups .row [class^="col"].small-group_item h2, .single-small-groups .row [class^="col"].small-group_item h2 {
    margin: 3px 0px 5px 0px;
    font-size: 1.3rem;
    line-height: 1.2; }
  .page-template-page-small-groups .row [class^="col"].small-group_item p, .single-small-groups .row [class^="col"].small-group_item p {
    margin: 0px;
    font-size: .9rem;
    line-height: 1.4;
    color: #a2a1a1; }
  .page-template-page-small-groups .row [class^="col"].small-group_item .stock_group_image, .single-small-groups .row [class^="col"].small-group_item .stock_group_image {
    background: #f3f3f3;
    border: 1px solid #e0e0e0;
    display: flex;
    animation-delay: center;
    justify-content: center;
    padding: 80px 10%;
    color: #888888;
    text-align: center;
    line-height: 1.2; }
  .page-template-page-small-groups .row [class^="col"].small-group_item hr, .single-small-groups .row [class^="col"].small-group_item hr {
    border: 0px;
    height: 1px;
    margin-bottom: 8px;
    background-color: #f3f3f3; }
  .page-template-page-small-groups .row [class^="col"].small-group_item .group_details, .single-small-groups .row [class^="col"].small-group_item .group_details {
    color: #242424; }

.gm-style-iw {
  max-width: 300px; }
  .gm-style-iw h4, .gm-style-iw h5, .gm-style-iw p {
    margin: 0px;
    color: #242424;
    font-weight: 400; }
  .gm-style-iw h4 {
    font-weight: 700;
    font-size: 1.5rem; }
  .gm-style-iw p {
    font-size: 1rem;
    line-height: 1.4;
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid #e0e0e0; }
  .gm-style-iw a.button {
    margin: 20px 0px 0px 0px;
    box-shadow: none;
    display: block;
    width: 100%;
    text-align: center; }

.map_note {
  width: 100%;
  background: #f3f3f3;
  border: 1px solid #e0e0e0; }
  .map_note p {
    width: 100%;
    max-width: 1000px;
    text-align: center;
    margin: 0 auto;
    font-size: .9rem;
    line-height: 1;
    padding: 10px;
    color: #888888; }

.single-small-groups .sidebar {
  padding: 30px 1.5% 0px 0px; }

.single-small-groups .main_section {
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#000000+0,000000+45&0.65+0,0+46 */
  background: -moz-linear-gradient(right, #F3F3F3 0%, #fff 45%, transparent 46%);
  background: -webkit-linear-gradient(right, #F3F3F3 0%, #fff 45%, transparent 46%);
  background: linear-gradient(to right, #F3F3F3 0%, #fff 45%, transparent 46%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#F3F3F3',GradientType=1 ); }
  @media only screen and (max-width: 768px) {
    .single-small-groups .main_section {
      background: #fff; } }
  .single-small-groups .main_section .main_content {
    border-right: 0px;
    border-left: 1px solid #f3f3f3;
    padding-top: 30px;
    padding-left: 4%;
    padding-right: 0px; }
    @media only screen and (max-width: 768px) {
      .single-small-groups .main_section .main_content {
        padding: 0px;
        border: 0px; } }
    .single-small-groups .main_section .main_content .button {
      color: #fff; }

.single-small-groups .group_header h1 {
  margin: 10px 0px 10px 0px; }

.single-small-groups .group_header h4 {
  margin: 0px 0px 5px 0px; }

.single-small-groups .group_header p {
  margin: 0px; }

.single-small-groups .group_header .group_details {
  font-size: .9rem;
  color: #888888; }

.single-small-groups .group_header .group_status {
  margin: 5px 0px 0px 20px;
  color: #a2a1a1;
  font-size: 1rem;
  font-style: normal;
  float: right; }
  @media only screen and (max-width: 768px) {
    .single-small-groups .group_header .group_status {
      margin: 0px 0px 0px 0px;
      float: none;
      display: block; } }
  .single-small-groups .group_header .group_status span {
    margin-top: 3px;
    font-size: 1.2rem;
    color: #d5d4d4; }

.single-small-groups .group_header hr {
  margin: 15px 0px 15px 0px; }

.single-small-groups .button {
  display: block;
  box-shadow: none;
  text-align: center;
  margin-top: 50px;
  margin-bottom: 25px;
  font-size: 1.2rem;
  padding: 25px; }

.single-small-groups .sidebar img {
  max-width: 100%;
  display: block;
  border: 1px solid #e0e0e0; }

.single-small-groups .sidebar p {
  margin: 0px; }

.single-small-groups .sidebar .share {
  margin-top: 20px; }
  @media only screen and (max-width: 768px) {
    .single-small-groups .sidebar .share {
      display: none; } }
  .single-small-groups .sidebar .share img {
    border: 0px; }

.closed_groups .small-group_item {
  opacity: .5;
  transition: opacity .25s ease-in-out; }
  .closed_groups .small-group_item a.read-more {
    color: #888888 !important; }
  .closed_groups .small-group_item:hover {
    opacity: 1; }
    
    .next-occurrence-box {
    margin-bottom: 20px;
    padding: 12px;
    background: #f5f5f5;
    border-left: 4px solid #2e6da4;
    line-height: 1.6;
}

.video {
    padding-top: .5em;
    display: flex;
    flex-direction: row;
    column-gap: 1em;
}

 @media only screen and (max-width: 768px) {
.video{
  display: flex;
        flex-direction: column;
}}

