﻿/* Module Imports
========================================================================== */
/* normalize.css v3.0.1 | MIT License | git.io/normalize */
/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS text size adjust after 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,
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/11, Safari, and Firefox < 22.
 */
[hidden],
template {
  display: none; }

/* Links
   ========================================================================== */
/**
 * Remove the gray background color from active links in IE 10.
 */
a {
  background: transparent; }

/**
 * Improve readability when focused and also mouse hovered in all browsers.
 */
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; }

h2, h3, h4, h5, h6 {
  line-height: 1;
  margin: 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;
  max-width: 100%; }

/**
 * 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 {
  -moz-box-sizing: content-box;
  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
 *    (include `-moz` to future-proof).
 */
input[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  /* 2 */
  box-sizing: content-box; }

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

/* Mixins
--------------------------------------------------------------- */
body {
  width: 100%;
  *zoom: 1; }
  body:before, body:after {
    content: "";
    display: table; }
  body:after {
    clear: both; }

/* Variables
--------------------------------------------------------------- */
/* Typography (for site-wide content areas)
--------------------------------------------------------------- */
/* Fonts
 *
 * Any Google Fonts or other imported fonts go here. Typekit 
 * fonts are pulled in via javascript.
--------------------------------------------------------------- */
* {
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: none; }

html {
  font-size: 16px; }

body {
  color: #000;
  font-family: "freight-sans-pro", sans-serif;
  font-size: 100%;
  line-height: 1.7; }

a {
  color: #00bbdd;
  backface-visibility: hidden; }
  a:hover {
    backface-visibility: hidden; }

/* The 'content' class is reserved for all text areas of the site. */
.content {
  /* 
 *	For any styling of content text, meaning blog or 
 *	page content styling.  Anything that will be inside 
 *	a container of class "content".
 * ------------------------------------------- */ }
  .content p, .content ul, .content ol {
    font-size: 1.125em;
    font-weight: 400;
    letter-spacing: .5px; }
    @media (max-width: 767px) {
      .content p, .content ul, .content ol {
        font-size: 1em; } }
    .content p p, .content p ul, .content p ol, .content ul p, .content ul ul, .content ul ol, .content ol p, .content ol ul, .content ol ol {
      font-size: 1em; }
  .content a {
    -ms-transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    -webkit-backface-visibility: hidden;
    text-decoration: none; }
    .content a:hover {
      text-decoration: underline; }
  .content ul, .content ol {
    margin: 0;
    padding: 0 0 30px 3em; }
    .content ul ul, .content ul ol, .content ol ul, .content ol ol {
      padding: 10px 0 10px 3em; }
    .content ul li, .content ol li {
      display: block;
      margin: 10px 0;
      position: relative;
      text-align: left; }
      .content ul li:before, .content ol li:before {
        content: "";
        display: block;
        float: left;
        margin: 0 0 0 -2em; }
  .content ol {
    counter-reset: my-counter; }
    .content ol > li {
      list-style: none; }
      .content ol > li:before {
        content: counter(my-counter) ".";
        counter-increment: my-counter;
        font-weight: 600; }
  .content ul > li:before {
    background: #1a1e20;
    display: inline-block;
    height: 6px;
    margin: .7em 0 0 -2em;
    vertical-align: middle;
    width: 8px; }
  .content h1, .content h2, .content h3, .content h4, .content h5, .content h6 {
    color: #000;
    font-weight: 600;
    line-height: 1.2;
    margin: 0 0 30px 0;
    text-align: left; }
    .content h1 a, .content h2 a, .content h3 a, .content h4 a, .content h5 a, .content h6 a {
      color: inherit;
      text-decoration: none; }
      .content h1 a:hover, .content h2 a:hover, .content h3 a:hover, .content h4 a:hover, .content h5 a:hover, .content h6 a:hover {
        opacity: .8; }
  .content h1 {
    font-size: 2.300em; }
  .content h2 {
    font-size: 1.750em; }
  .content h3 {
    font-size: 1.600em; }
  .content h4 {
    font-size: 1.375em; }
  .content h5 {
    font-size: 1.125em; }
  .content h6 {
    font-size: 1.000em; }
  .content .button {
    -ms-transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    -webkit-backface-visibility: hidden;
    border: 2px solid #1a1e20;
    color: #1a1e20;
    cursor: pointer;
    display: inline-block;
    font-size: 0.9em;
    font-weight: 600;
    letter-spacing: 1px;
    line-height: 1;
    padding: 8px 30px;
    text-align: center; }
    .content .button:hover {
      background: #1a1e20;
      color: #FFF;
      opacity: 1; }
    @media (max-width: 375px) {
      .content .button {
        width: 100%;
        padding: 15px 30px; } }
  .content .button a {
    color: inherit !important;
    text-decoration: none !important;
    opacity: inherit !important;
    transition: none; }
  .content a.button:hover {
    opacity: 1; }
  .content form .form-element {
    margin-bottom: 20px; }
    .content form .form-element:last-of-type {
      margin-bottom: 0; }
  .content form .note {
    color: #0bd;
    font-size: 1.125em;
    letter-spacing: 1px;
    line-height: 1.2;
    margin-bottom: 1em; }
  .content form select,
  .content form input,
  .content form textarea,
  .content form button {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    border: none;
    color: #000;
    font: inherit;
    line-height: 1; }
    .content form select:focus, .content form select:active,
    .content form input:focus,
    .content form input:active,
    .content form textarea:focus,
    .content form textarea:active,
    .content form button:focus,
    .content form button:active {
      outline: 0; }
  .content form label,
  .content form select,
  .content form input,
  .content form textarea,
  .content form button {
    font-size: 1.125em; }
  .content form label {
    width: 100%;
    display: block; }
  .content form select {
    position: relative;
    cursor: pointer;
    width: 100%;
    padding: 1em;
    background: #FFF url("../img/ico-select.svg") right 10px center no-repeat; }
  .content form input[type=text],
  .content form input[type=number],
  .content form input[type=search],
  .content form input[type=tel],
  .content form input[type=password],
  .content form input[type=email],
  .content form input[type=reset],
  .content form button,
  .content form textarea {
    padding: .75em 1em;
    box-sizing: border-box;
    width: 100%; }
  .content form input[type=submit],
  .content form input[type=reset],
  .content form button {
    -ms-transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    -webkit-backface-visibility: hidden;
    background: transparent;
    border: 2px solid #1a1e20;
    box-sizing: border-box;
    color: #1a1e20;
    cursor: pointer;
    display: inline-block;
    font-weight: 600;
    letter-spacing: 1px;
    line-height: 1;
    padding: 8px 50px;
    text-align: center; }
    .content form input[type=submit]:hover,
    .content form input[type=reset]:hover,
    .content form button:hover {
      background: #1a1e20;
      color: #FFF;
      opacity: 1; }
    @media (max-width: 375px) {
      .content form input[type=submit],
      .content form input[type=reset],
      .content form button {
        width: 100%;
        padding: 15px 30px; } }
  .content form input[type=checkbox]:not(old),
  .content form input[type=radio]:not(old) {
    font-size: 1em;
    margin: 0;
    opacity: 0;
    padding: 0;
    width: 2em; }
  .content form input[type=checkbox]:not(old) + label,
  .content form input[type=radio]:not(old) + label {
    display: inline-block;
    margin-left: -2em;
    line-height: 1.5em;
    cursor: pointer; }
  .content form input[type=checkbox]:not(old) + label > span,
  .content form input[type=radio]:not(old) + label > span {
    background: #FFF;
    border-radius: 50%;
    border: 0;
    display: inline-block;
    height: 1em;
    margin: 0.25em 0.5em 0.25em 0.25em;
    position: relative;
    vertical-align: bottom;
    width: 1em; }
  .content form input[type=radio]:not(old):checked + label > span:before {
    background: #096475;
    border-radius: 50%;
    content: "";
    display: block;
    height: .75em;
    margin: .125em;
    width: .75em; }
  .content form input[type=checkbox]:not(old):checked + label > span {
    background: #33ccff; }
    .content form input[type=checkbox]:not(old):checked + label > span:before {
      border-radius: 50%;
      color: #1a1e20;
      content: '\f00c';
      display: block;
      font-family: "FontAwesome";
      font-size: .8em;
      height: 1.3em;
      line-height: 1.4em;
      text-align: center;
      width: 1.3em; }
  .content form .range-element {
    position: relative;
    *zoom: 1; }
    .content form .range-element:before, .content form .range-element:after {
      content: "";
      display: table; }
    .content form .range-element:after {
      clear: both; }
    .content form .range-element .input {
      float: left;
      position: relative;
      width: 80%; }
    .content form .range-element .output {
      float: left;
      font-weight: 600;
      line-height: 1;
      position: relative;
      text-align: right;
      width: 20%; }
  .content form input[type=range] {
    -webkit-appearance: none;
    margin: 0;
    width: 100%; }
  .content form input[type=range]:focus {
    outline: 0; }
  .content form input[type=range]::-webkit-slider-runnable-track {
    animate: 0.2s;
    background: #5a5a5a;
    border-radius: 0;
    border: 0px solid #000101;
    cursor: pointer;
    height: 16px;
    width: 100%; }
  .content form input[type=range]::-webkit-slider-thumb {
    -webkit-appearance: none;
    background-color: #FFF;
    border-radius: 0;
    border: 0;
    box-shadow: -6px 0 0 -2px #33ccff, -10px 0 0 -2px #33ccff, -14px 0 0 -2px #33ccff, -18px 0 0 -2px #33ccff, -22px 0 0 -2px #33ccff, -26px 0 0 -2px #33ccff, -30px 0 0 -2px #33ccff, -34px 0 0 -2px #33ccff, -38px 0 0 -2px #33ccff, -42px 0 0 -2px #33ccff, -46px 0 0 -2px #33ccff, -50px 0 0 -2px #33ccff, -54px 0 0 -2px #33ccff, -58px 0 0 -2px #33ccff, -62px 0 0 -2px #33ccff, -66px 0 0 -2px #33ccff, -70px 0 0 -2px #33ccff, -74px 0 0 -2px #33ccff, -78px 0 0 -2px #33ccff, -82px 0 0 -2px #33ccff, -86px 0 0 -2px #33ccff, -90px 0 0 -2px #33ccff, -94px 0 0 -2px #33ccff, -98px 0 0 -2px #33ccff, -102px 0 0 -2px #33ccff, -106px 0 0 -2px #33ccff, -110px 0 0 -2px #33ccff, -114px 0 0 -2px #33ccff, -118px 0 0 -2px #33ccff, -122px 0 0 -2px #33ccff, -126px 0 0 -2px #33ccff, -130px 0 0 -2px #33ccff, -134px 0 0 -2px #33ccff, -138px 0 0 -2px #33ccff, -142px 0 0 -2px #33ccff, -146px 0 0 -2px #33ccff, -150px 0 0 -2px #33ccff, -154px 0 0 -2px #33ccff, -158px 0 0 -2px #33ccff, -162px 0 0 -2px #33ccff, -166px 0 0 -2px #33ccff, -170px 0 0 -2px #33ccff, -174px 0 0 -2px #33ccff, -178px 0 0 -2px #33ccff, -182px 0 0 -2px #33ccff, -186px 0 0 -2px #33ccff, -190px 0 0 -2px #33ccff, -194px 0 0 -2px #33ccff, -198px 0 0 -2px #33ccff, -202px 0 0 -2px #33ccff, -206px 0 0 -2px #33ccff, -210px 0 0 -2px #33ccff, -214px 0 0 -2px #33ccff, -218px 0 0 -2px #33ccff, -222px 0 0 -2px #33ccff, -226px 0 0 -2px #33ccff, -230px 0 0 -2px #33ccff, -234px 0 0 -2px #33ccff, -238px 0 0 -2px #33ccff, -242px 0 0 -2px #33ccff, -246px 0 0 -2px #33ccff, -250px 0 0 -2px #33ccff, -254px 0 0 -2px #33ccff, -258px 0 0 -2px #33ccff, -262px 0 0 -2px #33ccff, -266px 0 0 -2px #33ccff, -270px 0 0 -2px #33ccff, -274px 0 0 -2px #33ccff, -278px 0 0 -2px #33ccff, -282px 0 0 -2px #33ccff, -286px 0 0 -2px #33ccff, -290px 0 0 -2px #33ccff, -294px 0 0 -2px #33ccff, -298px 0 0 -2px #33ccff, -302px 0 0 -2px #33ccff, -306px 0 0 -2px #33ccff, -310px 0 0 -2px #33ccff, -314px 0 0 -2px #33ccff, -318px 0 0 -2px #33ccff, -322px 0 0 -2px #33ccff, -326px 0 0 -2px #33ccff, -330px 0 0 -2px #33ccff, -334px 0 0 -2px #33ccff, -338px 0 0 -2px #33ccff, -342px 0 0 -2px #33ccff, -346px 0 0 -2px #33ccff, -350px 0 0 -2px #33ccff, -354px 0 0 -2px #33ccff, -358px 0 0 -2px #33ccff, -362px 0 0 -2px #33ccff, -366px 0 0 -2px #33ccff, -370px 0 0 -2px #33ccff, -374px 0 0 -2px #33ccff, -378px 0 0 -2px #33ccff, -382px 0 0 -2px #33ccff, -386px 0 0 -2px #33ccff, -390px 0 0 -2px #33ccff, -394px 0 0 -2px #33ccff, -398px 0 0 -2px #33ccff, -402px 0 0 -2px #33ccff, -406px 0 0 -2px #33ccff, -410px 0 0 -2px #33ccff, -414px 0 0 -2px #33ccff, -418px 0 0 -2px #33ccff, -422px 0 0 -2px #33ccff, -426px 0 0 -2px #33ccff, -430px 0 0 -2px #33ccff, -434px 0 0 -2px #33ccff, -438px 0 0 -2px #33ccff, -442px 0 0 -2px #33ccff, -446px 0 0 -2px #33ccff, -450px 0 0 -2px #33ccff, -454px 0 0 -2px #33ccff, -458px 0 0 -2px #33ccff, -462px 0 0 -2px #33ccff, -466px 0 0 -2px #33ccff, -470px 0 0 -2px #33ccff, -474px 0 0 -2px #33ccff, -478px 0 0 -2px #33ccff, -482px 0 0 -2px #33ccff, -486px 0 0 -2px #33ccff, -490px 0 0 -2px #33ccff, -494px 0 0 -2px #33ccff, -498px 0 0 -2px #33ccff, -502px 0 0 -2px #33ccff, -506px 0 0 -2px #33ccff, -510px 0 0 -2px #33ccff, -514px 0 0 -2px #33ccff, -518px 0 0 -2px #33ccff, -522px 0 0 -2px #33ccff, -526px 0 0 -2px #33ccff, -530px 0 0 -2px #33ccff, -534px 0 0 -2px #33ccff, -538px 0 0 -2px #33ccff, -542px 0 0 -2px #33ccff, -546px 0 0 -2px #33ccff, -550px 0 0 -2px #33ccff, -554px 0 0 -2px #33ccff, -558px 0 0 -2px #33ccff, -562px 0 0 -2px #33ccff, -566px 0 0 -2px #33ccff, -570px 0 0 -2px #33ccff, -574px 0 0 -2px #33ccff, -578px 0 0 -2px #33ccff, -582px 0 0 -2px #33ccff, -586px 0 0 -2px #33ccff, -590px 0 0 -2px #33ccff, -594px 0 0 -2px #33ccff, -598px 0 0 -2px #33ccff, -602px 0 0 -2px #33ccff, -606px 0 0 -2px #33ccff;
    cursor: pointer;
    height: 20px;
    margin: -2px 0;
    position: relative;
    width: 8px;
    z-index: 2; }
  .content form input[type=range]:focus::-webkit-slider-runnable-track {
    background: #5a5a5a; }
  .content form input[type=range]::-moz-range-track {
    animate: 0.2s;
    background: #5a5a5a;
    border-radius: 0;
    border: 0px solid #000101;
    box-shadow: 0px 0px 0px #000000, 0px 0px 0px #0d0d0d;
    cursor: pointer;
    height: 16px;
    width: 100%; }
  .content form input[type=range]::-moz-range-thumb {
    -moz-appearance: none;
    background-color: #FFF;
    border-radius: 0;
    border: 0;
    box-shadow: -6px 0 0 -1px #33ccff, -11px 0 0 -1px #33ccff, -16px 0 0 -1px #33ccff, -21px 0 0 -1px #33ccff, -26px 0 0 -1px #33ccff, -31px 0 0 -1px #33ccff, -36px 0 0 -1px #33ccff, -41px 0 0 -1px #33ccff, -46px 0 0 -1px #33ccff, -51px 0 0 -1px #33ccff, -56px 0 0 -1px #33ccff, -61px 0 0 -1px #33ccff, -66px 0 0 -1px #33ccff, -71px 0 0 -1px #33ccff, -76px 0 0 -1px #33ccff, -81px 0 0 -1px #33ccff, -86px 0 0 -1px #33ccff, -91px 0 0 -1px #33ccff, -96px 0 0 -1px #33ccff, -101px 0 0 -1px #33ccff, -106px 0 0 -1px #33ccff, -111px 0 0 -1px #33ccff, -116px 0 0 -1px #33ccff, -121px 0 0 -1px #33ccff, -126px 0 0 -1px #33ccff, -131px 0 0 -1px #33ccff, -136px 0 0 -1px #33ccff, -141px 0 0 -1px #33ccff, -146px 0 0 -1px #33ccff, -151px 0 0 -1px #33ccff, -156px 0 0 -1px #33ccff, -161px 0 0 -1px #33ccff, -166px 0 0 -1px #33ccff, -171px 0 0 -1px #33ccff, -176px 0 0 -1px #33ccff, -181px 0 0 -1px #33ccff, -186px 0 0 -1px #33ccff, -191px 0 0 -1px #33ccff, -196px 0 0 -1px #33ccff, -201px 0 0 -1px #33ccff, -206px 0 0 -1px #33ccff, -211px 0 0 -1px #33ccff, -216px 0 0 -1px #33ccff, -221px 0 0 -1px #33ccff, -226px 0 0 -1px #33ccff, -231px 0 0 -1px #33ccff, -236px 0 0 -1px #33ccff, -241px 0 0 -1px #33ccff, -246px 0 0 -1px #33ccff, -251px 0 0 -1px #33ccff, -256px 0 0 -1px #33ccff, -261px 0 0 -1px #33ccff, -266px 0 0 -1px #33ccff, -271px 0 0 -1px #33ccff, -276px 0 0 -1px #33ccff, -281px 0 0 -1px #33ccff, -286px 0 0 -1px #33ccff, -291px 0 0 -1px #33ccff, -296px 0 0 -1px #33ccff, -301px 0 0 -1px #33ccff, -306px 0 0 -1px #33ccff, -311px 0 0 -1px #33ccff, -316px 0 0 -1px #33ccff, -321px 0 0 -1px #33ccff, -326px 0 0 -1px #33ccff, -331px 0 0 -1px #33ccff, -336px 0 0 -1px #33ccff, -341px 0 0 -1px #33ccff, -346px 0 0 -1px #33ccff, -351px 0 0 -1px #33ccff, -356px 0 0 -1px #33ccff, -361px 0 0 -1px #33ccff, -366px 0 0 -1px #33ccff, -371px 0 0 -1px #33ccff, -376px 0 0 -1px #33ccff, -381px 0 0 -1px #33ccff, -386px 0 0 -1px #33ccff, -391px 0 0 -1px #33ccff, -396px 0 0 -1px #33ccff, -401px 0 0 -1px #33ccff, -406px 0 0 -1px #33ccff, -411px 0 0 -1px #33ccff, -416px 0 0 -1px #33ccff, -421px 0 0 -1px #33ccff, -426px 0 0 -1px #33ccff, -431px 0 0 -1px #33ccff, -436px 0 0 -1px #33ccff, -441px 0 0 -1px #33ccff, -446px 0 0 -1px #33ccff, -451px 0 0 -1px #33ccff, -456px 0 0 -1px #33ccff, -461px 0 0 -1px #33ccff, -466px 0 0 -1px #33ccff, -471px 0 0 -1px #33ccff, -476px 0 0 -1px #33ccff, -481px 0 0 -1px #33ccff, -486px 0 0 -1px #33ccff, -491px 0 0 -1px #33ccff, -496px 0 0 -1px #33ccff, -501px 0 0 -1px #33ccff, -506px 0 0 -1px #33ccff, -511px 0 0 -1px #33ccff, -516px 0 0 -1px #33ccff, -521px 0 0 -1px #33ccff, -526px 0 0 -1px #33ccff, -531px 0 0 -1px #33ccff, -536px 0 0 -1px #33ccff, -541px 0 0 -1px #33ccff, -546px 0 0 -1px #33ccff, -551px 0 0 -1px #33ccff, -556px 0 0 -1px #33ccff, -561px 0 0 -1px #33ccff, -566px 0 0 -1px #33ccff, -571px 0 0 -1px #33ccff, -576px 0 0 -1px #33ccff, -581px 0 0 -1px #33ccff, -586px 0 0 -1px #33ccff, -591px 0 0 -1px #33ccff, -596px 0 0 -1px #33ccff, -601px 0 0 -1px #33ccff, -606px 0 0 -1px #33ccff, -611px 0 0 -1px #33ccff, -616px 0 0 -1px #33ccff, -621px 0 0 -1px #33ccff, -626px 0 0 -1px #33ccff, -631px 0 0 -1px #33ccff, -636px 0 0 -1px #33ccff, -641px 0 0 -1px #33ccff, -646px 0 0 -1px #33ccff, -651px 0 0 -1px #33ccff, -656px 0 0 -1px #33ccff, -661px 0 0 -1px #33ccff, -666px 0 0 -1px #33ccff, -671px 0 0 -1px #33ccff, -676px 0 0 -1px #33ccff, -681px 0 0 -1px #33ccff, -686px 0 0 -1px #33ccff, -691px 0 0 -1px #33ccff, -696px 0 0 -1px #33ccff, -701px 0 0 -1px #33ccff, -706px 0 0 -1px #33ccff, -711px 0 0 -1px #33ccff, -716px 0 0 -1px #33ccff, -721px 0 0 -1px #33ccff, -726px 0 0 -1px #33ccff, -731px 0 0 -1px #33ccff, -736px 0 0 -1px #33ccff, -741px 0 0 -1px #33ccff, -746px 0 0 -1px #33ccff, -751px 0 0 -1px #33ccff, -756px 0 0 -1px #33ccff;
    cursor: pointer;
    height: 20px;
    margin: -2px 0;
    position: relative;
    width: 8px;
    z-index: 2; }
  .content form input[type=range]::-ms-track {
    animate: 0.2s;
    background: transparent;
    border-color: transparent;
    border-width: 39px 0;
    color: transparent;
    cursor: pointer;
    height: 16px;
    width: 100%; }
  .content form input[type=range]::-ms-fill-lower {
    background: #5a5a5a;
    border-radius: 50px;
    border: 0px solid #000101;
    box-shadow: 0px 0px 0px #000000, 0px 0px 0px #0d0d0d; }
  .content form input[type=range]::-ms-fill-upper {
    background: #5a5a5a;
    border-radius: 50px;
    border: 0px solid #000101;
    box-shadow: 0px 0px 0px #000000, 0px 0px 0px #0d0d0d; }
  .content form input[type=range]::-ms-thumb {
    box-shadow: 0px 0px 0px #000000, 0px 0px 0px #0d0d0d;
    border: 0px solid #000000;
    height: 20px;
    width: 39px;
    border-radius: 7px;
    background: #65001c;
    cursor: pointer; }
  .content form input[type=range]:focus::-ms-fill-lower {
    background: #5a5a5a; }
  .content form input[type=range]:focus::-ms-fill-upper {
    background: #5a5a5a; }
  .content form label[for=range] {
    overflow-x: hidden; }
  .content form .search-element {
    position: relative; }
    .content form .search-element input[type=search] {
      background: transparent;
      border: 3px solid #f3f2f2;
      color: #FFF;
      padding-right: 4em;
      width: 100%; }
    .content form .search-element input[type=submit] {
      -ms-transition: background 0.3s, color 0.3s;
      -webkit-transition: background 0.3s, color 0.3s;
      -moz-transition: background 0.3s, color 0.3s;
      -o-transition: background 0.3s, color 0.3s;
      transition: background 0.3s, color 0.3s;
      -webkit-backface-visibility: hidden;
      background: transparent;
      border: 3px solid #f3f2f2;
      bottom: 0;
      color: #FFF;
      font-family: "FontAwesome";
      font-size: 1.2em;
      line-height: .4em;
      padding: 0;
      position: absolute;
      right: 0;
      text-align: center;
      top: 0;
      width: 2.5em; }
      .content form .search-element input[type=submit]:hover {
        background: #f3f2f2;
        color: #1a1e20; }
  .content hr {
    border: 0;
    border-top: 1px solid #e3e3e3;
    margin: 0 0 30px 0; }
  .content blockquote {
    border: 2px solid #33ccff;
    border-left: 0;
    border-right: 0;
    font-size: 2.053em;
    margin: 0 0 30px 0;
    padding: 20px 20%; }
    @media (max-width: 767px) {
      .content blockquote {
        font-size: 1.5em;
        padding: 20px 10%; } }
    .content blockquote p {
      color: #000;
      font-size: 1em;
      letter-spacing: 1px;
      line-height: 1.3;
      text-align: center; }
      .content blockquote p:last-of-type {
        padding: 0; }
  .content b, .content strong {
    color: #000;
    font-weight: bold;
    font-size: inherit; }
  .content img {
    max-width: 100%;
    height: auto; }
  .content p {
    margin: 0;
    padding: 0 0 30px 0;
    text-align: justify; }
  .content u {
    text-decoration: underline; }
  .content i, .content em {
    font-style: italic; }
  .content mark {
    padding: 3px 5px; }
  .content big {
    font-size: 120%; }
  .content small {
    font-size: 80%; }
  .content .wp-audio-shortcode {
    margin-bottom: 30px; }
  .content .alignnone {
    margin: 0 20px 10px 0; }
  .content .aligncenter {
    display: block;
    margin: 10px auto 10px auto; }
  .content .alignright {
    float: right;
    margin: 10px 0 10px 20px;
    padding: 0; }
  .content .alignleft {
    float: left;
    margin: 10px 20px 10px 0;
    padding: 0; }
  .content .aligncenter {
    display: block;
    margin: 0 auto 30px auto;
    padding: 0; }
  .content .alignright, .content .alignleft {
    max-width: 50%;
    height: auto; }
  .content a img.alignright {
    float: right;
    margin: 10px 0 10px 20px; }
  .content a img.alignnone {
    margin: 0 20px 10px 0; }
  .content a img.alignleft {
    float: left;
    margin: 10px 20px 10px 0; }
  .content a img.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 30px; }
  .content .wp-caption {
    max-width: 100%;
    padding: 0; }
    .content .wp-caption img {
      max-width: 100%;
      height: auto;
      border: 0 none;
      margin: 0;
      padding: 0;
      width: auto; }
  @media (max-width: 767px) {
    .content .wp-caption.alignleft,
    .content .wp-caption.alignright {
      width: 100% !important; }
      .content .wp-caption.alignleft img,
      .content .wp-caption.alignright img {
        width: 100%; } }
  .content .wp-caption p.wp-caption-text {
    margin: 0;
    text-align: left;
    padding: 0 0 0 0;
    font-size: .8em;
    font-style: italic;
    color: #666; }
    .content .wp-caption p.wp-caption-text a {
      color: inherit; }

.container {
  *zoom: 1;
  margin: 0 auto;
  max-width: 90%;
  position: relative;
  width: 1400px; }
  .container:before, .container:after {
    content: "";
    display: table; }
  .container:after {
    clear: both; }

.row {
  *zoom: 1;
  display: block;
  width: 102.77778%;
  margin: 0 -1.38889%;
  *zoom: 1;
  position: relative; }
  .row:before, .row:after {
    content: "";
    display: table; }
  .row:after {
    clear: both; }
  .row:before, .row:after {
    content: "";
    display: table; }
  .row:after {
    clear: both; }

.inner {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0; }

.table {
  display: table;
  height: 100%;
  position: relative;
  width: 100%;
  z-index: 1; }
  .table .cell {
    display: table-cell;
    text-align: center;
    vertical-align: middle;
    width: 100%; }

.push-left {
  right: 80vw !important;
  left: -80vw !important; }

.push-right {
  left: 80vw !important;
  right: -80vw !important; }

.rtable table {
  display: inline-block;
  vertical-align: top;
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  line-height: 1.2;
  border-collapse: collapse;
  border-spacing: 0;
  z-index: 1;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch; }
  .rtable table th {
    color: #1a1e20;
    font-weight: 600;
    height: 150px;
    padding: 20px;
    position: relative;
    text-align: center;
    vertical-align: middle;
    min-width: 160px;
    white-space: normal; }
  .rtable table td {
    border: 2px solid #e7e7e7;
    color: #737373;
    padding: 16px 20px;
    position: relative; }
  .rtable table td:hover::after,
  .rtable table th:hover::after {
    display: block;
    content: "";
    position: absolute;
    background-color: #f1f7f9;
    left: 0;
    top: -5000px;
    height: 10000px;
    width: 100%;
    z-index: -1; }
  .rtable table td:first-child,
  .rtable table th:first-child {
    border-left: 0; }
  .rtable table td:last-child,
  .rtable table th:last-child {
    border-right: 0; }
  @media (max-width: 1023px) {
    .rtable table {
      background: radial-gradient(ellipse at left, rgba(0, 0, 0, 0.2) 0%, transparent 75%) 0 center, radial-gradient(ellipse at right, rgba(0, 0, 0, 0.2) 0%, transparent 75%) 100% center;
      background-size: 10px 100%, 10px 100%;
      background-attachment: scroll, scroll;
      background-repeat: no-repeat; }
      .rtable table th,
      .rtable table td {
        height: auto;
        padding: 10px; }
      .rtable table td:first-child,
      .rtable table th:first-child {
        background-image: linear-gradient(to right, white 50%, rgba(255, 255, 255, 0) 100%);
        background-repeat: no-repeat;
        background-size: 20px 100%;
        border-left: 0; }
      .rtable table td:last-child,
      .rtable table th:last-child {
        background-image: linear-gradient(to left, white 50%, rgba(255, 255, 255, 0) 100%);
        background-repeat: no-repeat;
        background-position: 100% 0;
        background-size: 20px 100%;
        border-right: 0; } }

.rtable {
  display: inline-block;
  vertical-align: top;
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  line-height: 1.2;
  border-collapse: collapse;
  border-spacing: 0;
  z-index: 1;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch; }
  .rtable th {
    color: #1a1e20;
    font-weight: 600;
    height: 150px;
    padding: 20px;
    position: relative;
    text-align: center;
    vertical-align: middle;
    min-width: 160px;
    white-space: normal; }
  .rtable td {
    border: 2px solid #e7e7e7;
    color: #737373;
    padding: 16px 20px;
    position: relative; }
  .rtable td:hover::after,
  .rtable th:hover::after {
    display: block;
    content: "";
    position: absolute;
    background-color: #f1f7f9;
    left: 0;
    top: -5000px;
    height: 10000px;
    width: 100%;
    z-index: -1; }
  .rtable td:first-child,
  .rtable th:first-child {
    border-left: 0; }
  .rtable td:last-child,
  .rtable th:last-child {
    border-right: 0; }
  @media (max-width: 1023px) {
    .rtable {
      background: radial-gradient(ellipse at left, rgba(0, 0, 0, 0.2) 0%, transparent 75%) 0 center, radial-gradient(ellipse at right, rgba(0, 0, 0, 0.2) 0%, transparent 75%) 100% center;
      background-size: 10px 100%, 10px 100%;
      background-attachment: scroll, scroll;
      background-repeat: no-repeat; }
      .rtable th,
      .rtable td {
        height: auto;
        padding: 10px; }
      .rtable td:first-child,
      .rtable th:first-child {
        background-image: linear-gradient(to right, white 50%, rgba(255, 255, 255, 0) 100%);
        background-repeat: no-repeat;
        background-size: 20px 100%;
        border-left: 0; }
      .rtable td:last-child,
      .rtable th:last-child {
        background-image: linear-gradient(to left, white 50%, rgba(255, 255, 255, 0) 100%);
        background-repeat: no-repeat;
        background-position: 100% 0;
        background-size: 20px 100%;
        border-right: 0; } }

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

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

.text-right {
  text-align: right; }

.banner-small {
  position: relative;
  background: #1a1e20;
  color: #FFF;
  font-size: 0.938em;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 10px 0;
  text-align: center;
  text-transform: uppercase;
  z-index: 10; }
  @media (max-width: 767px) {
    .banner-small {
      font-size: 0.8em; } }
  .banner-small a {
    -ms-transition: color 0.3s;
    -webkit-transition: color 0.3s;
    -moz-transition: color 0.3s;
    -o-transition: color 0.3s;
    transition: color 0.3s;
    -webkit-backface-visibility: hidden;
    border-bottom: 2px solid #FFF;
    color: #33ccff;
    text-decoration: none; }
    .banner-small a:hover {
      color: #FFF; }

.banner-medium {
  position: relative;
  background: #1a1e20;
  color: #FFF;
  text-align: center;
  font-size: 1.500em;
  font-weight: 500;
  padding: 50px 0;
  letter-spacing: 0.1em;
  z-index: 10; }
  .banner-medium h2, .banner-medium h3, .banner-medium h4 {
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;
    margin: 0;
    padding: 0; }
  .banner-medium:after {
    position: absolute;
    left: 50%;
    bottom: -21px;
    margin-left: -21px;
    display: block;
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 21px 21px 0 21px;
    border-color: #1a1e20 transparent transparent transparent; }
  @media (max-width: 767px) {
    .banner-medium {
      font-size: 1em;
      padding: 1.5em 0; } }

.banner-large {
  position: relative;
  background: #1a1e20;
  color: #FFF;
  text-align: center;
  font-size: 2.813em;
  font-weight: 500;
  padding: 50px 0;
  letter-spacing: 0.1em;
  z-index: 10; }
  .banner-large h2, .banner-large h3, .banner-large h4 {
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;
    margin: 0;
    padding: 0; }
  .banner-large:after {
    position: absolute;
    left: 50%;
    bottom: -21px;
    margin-left: -25px;
    display: block;
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 21px 25px 0 25px;
    border-color: #1a1e20 transparent transparent transparent; }
  @media (max-width: 767px) {
    .banner-large {
      font-size: 1.4em;
      padding: 1.5em 0; } }

.accordion {
  line-height: 1.2;
  margin: 0 0 30px 0; }
  .accordion dt {
    cursor: pointer;
    display: block;
    margin-bottom: 2px; }
    .accordion dt a {
      background: #e7e7e7;
      color: inherit;
      display: block;
      font-size: 1.125em;
      font-weight: 600;
      letter-spacing: 1px;
      line-height: 1.2;
      padding: 15px 15px 15px 50px;
      position: relative;
      -webkit-transition: all .5s;
      -moz-transition: all .5s;
      transition: all .5s;
      text-decoration: none; }
      .content .accordion dt a {
        text-decoration: none; }
      .accordion dt a:before {
        content: "\f067";
        display: inline-block;
        font-family: FontAwesome;
        font-size: .9em;
        font-style: normal;
        font-weight: normal;
        left: 20px;
        margin-top: 2px;
        position: absolute;
        text-decoration: inherit;
        vertical-align: middle; }
      .accordion dt a:hover {
        opacity: 1;
        background: #79dbfc; }
    .accordion dt.active a {
      background: #79dbfc; }
      .accordion dt.active a:before {
        content: "\f068"; }
  .accordion dd {
    margin: 0 0 2px 0;
    background: #F6F6F6;
    padding: 30px 50px;
    font-size: .9em; }
    .accordion dd p {
      line-height: 1.5; }
    .accordion dd p:last-child {
      padding: 0; }

/* Main Structure
========================================================================== */
*,
*:before,
*:after,
*:focus {
  box-sizing: border-box;
  outline: 0; }

html {
  max-width: 100%;
  min-height: 100%;
  overflow-x: hidden;
  width: 100%; }

body {
  -webkit-font-smoothing: antialiased;
  background: #f3f2f2;
  background: transparent;
  height: 100%;
  max-width: 100%;
  overflow-x: hidden;
  position: relative;
  width: 100%; }

/* Partial Imports
========================================================================== */
/* Header 
--------------------------------------------------------------- */
.site-header {
  -ms-transition: left 0.3s ease-in-out, right 0.3s ease-in-out;
  -webkit-transition: left 0.3s ease-in-out, right 0.3s ease-in-out;
  -moz-transition: left 0.3s ease-in-out, right 0.3s ease-in-out;
  -o-transition: left 0.3s ease-in-out, right 0.3s ease-in-out;
  transition: left 0.3s ease-in-out, right 0.3s ease-in-out;
  -webkit-backface-visibility: hidden;
  background: #FFF;
  border-bottom: 1px solid #e5e5e5;
  left: 0;
  position: fixed;
  right: 0;
  width: 100%;
  z-index: 100; }

.site-branding {
  -ms-transition: line-height 0.3s;
  -webkit-transition: line-height 0.3s;
  -moz-transition: line-height 0.3s;
  -o-transition: line-height 0.3s;
  transition: line-height 0.3s;
  -webkit-backface-visibility: hidden;
  float: left;
  line-height: 74px; }
  .shrink .site-branding {
    line-height: 46px; }
  .site-branding .logo {
    display: inline-block;
    line-height: inherit;
    margin: 0;
    padding: 0;
    vertical-align: middle; }
    .site-branding .logo a {
      display: block;
      vertical-align: middle; }
    .site-branding .logo img {
      -ms-transition: height 0.3s;
      -webkit-transition: height 0.3s;
      -moz-transition: height 0.3s;
      -o-transition: height 0.3s;
      transition: height 0.3s;
      -webkit-backface-visibility: hidden;
      display: block;
      height: 35px; }
      .shrink .site-branding .logo img {
        height: 22px; }

.site-navigation {
  -ms-transition: line-height 0.3s;
  -webkit-transition: line-height 0.3s;
  -moz-transition: line-height 0.3s;
  -o-transition: line-height 0.3s;
  transition: line-height 0.3s;
  -webkit-backface-visibility: hidden;
  float: right;
  line-height: 74px; }
  .shrink .site-navigation {
    line-height: 46px; }
  @media (max-width: 1023px) {
    .site-navigation {
      display: none; } }
  .site-navigation ul {
    display: inline-block;
    margin: 0;
    padding: 0; }
    .site-navigation ul a,
    .site-navigation ul span.level-0,
    .site-navigation ul span.level-1 {
      color: inherit;
      display: block;
      position: relative;
      text-decoration: none; }
  .site-navigation ul.menu {
    vertical-align: middle; }
    .site-navigation ul.menu > li {
      display: block;
      float: left;
      font-size: 0.9em;
      font-weight: 600;
      letter-spacing: .5px;
      text-align: center;
      text-transform: uppercase;
      vertical-align: middle; }
      .site-navigation ul.menu > li span.level-0 {
        padding-right: 15px;
        cursor: pointer; }
      .site-navigation ul.menu > li.menu-item-has-children span.level-0:after {
        -ms-transition: background 0.3s ease-in-out, color 0.3s ease-in-out;
        -webkit-transition: background 0.3s ease-in-out, color 0.3s ease-in-out;
        -moz-transition: background 0.3s ease-in-out, color 0.3s ease-in-out;
        -o-transition: background 0.3s ease-in-out, color 0.3s ease-in-out;
        transition: background 0.3s ease-in-out, color 0.3s ease-in-out;
        -webkit-backface-visibility: hidden;
        border-color: #000 transparent transparent transparent;
        border-style: solid;
        border-width: 4px 3px 0 3px;
        content: "";
        display: inline-block;
        height: 0;
        margin-left: 5px;
        margin-top: -2px;
        vertical-align: middle;
        width: 0; }
    .site-navigation ul.menu li.btn-search,
    .site-navigation ul.menu li.btn-churches {
      -ms-transition: line-height 0.3s, height 0.3s;
      -webkit-transition: line-height 0.3s, height 0.3s;
      -moz-transition: line-height 0.3s, height 0.3s;
      -o-transition: line-height 0.3s, height 0.3s;
      transition: line-height 0.3s, height 0.3s;
      -webkit-backface-visibility: hidden;
      display: block;
      height: 74px;
      height: 100%;
      line-height: 70px; }
      .shrink .site-navigation ul.menu li.btn-search, .shrink
      .site-navigation ul.menu li.btn-churches {
        height: 46px;
        line-height: 42px; }
    .site-navigation ul.menu li.btn-search a {
      -webkit-border-radius: 3px;
      -moz-border-radius: 3px;
      border-radius: 3px;
      -ms-transition: all 0.3s ease-in-out;
      -webkit-transition: all 0.3s ease-in-out;
      -moz-transition: all 0.3s ease-in-out;
      -o-transition: all 0.3s ease-in-out;
      transition: all 0.3s ease-in-out;
      -webkit-backface-visibility: hidden;
      background: #eaeaea;
      border: 2px solid #eaeaea;
      color: #9b9b9b;
      display: inline-block;
      font-size: 1.4em;
      height: 43px;
      line-height: 38px;
      padding: 0;
      vertical-align: middle;
      width: 55px; }
      .shrink .site-navigation ul.menu li.btn-search a {
        font-size: 1.2em;
        height: 32px;
        line-height: 28px;
        width: 40px; }
    .site-navigation ul.menu li.btn-search:hover a {
      color: #000;
      background: #FFF;
      border-color: #000; }
    .site-navigation ul.menu li.btn-churches {
      margin-left: 7px; }
      .site-navigation ul.menu li.btn-churches a {
        -webkit-border-radius: 3px;
        -moz-border-radius: 3px;
        border-radius: 3px;
        -ms-transition: all 0.3s ease-in-out;
        -webkit-transition: all 0.3s ease-in-out;
        -moz-transition: all 0.3s ease-in-out;
        -o-transition: all 0.3s ease-in-out;
        transition: all 0.3s ease-in-out;
        -webkit-backface-visibility: hidden;
        background: #1a1e20;
        border: 2px solid #1a1e20;
        color: #FFF;
        display: inline-block;
        font-weight: 700;
        height: 43px;
        line-height: 36px;
        padding: 0 20px;
        vertical-align: middle; }
        .shrink .site-navigation ul.menu li.btn-churches a {
          height: 32px;
          line-height: 26px;
          padding: 0 10px; }
      .site-navigation ul.menu li.btn-churches svg {
        fill: #fff;
        fill-rule: evenodd;
        -ms-transition: fill 0.3s ease-in-out;
        -webkit-transition: fill 0.3s ease-in-out;
        -moz-transition: fill 0.3s ease-in-out;
        -o-transition: fill 0.3s ease-in-out;
        transition: fill 0.3s ease-in-out;
        -webkit-backface-visibility: hidden;
        vertical-align: middle;
        margin-right: 10px; }
      .site-navigation ul.menu li.btn-churches:hover a {
        color: #000;
        background: #FFF;
        border-color: #000; }
      .site-navigation ul.menu li.btn-churches:hover svg {
        fill: #000; }
  .site-navigation ul.menu > li.menu-item-has-children span.level-0:before {
    border-color: transparent transparent #000 transparent;
    border-style: solid;
    border-width: 0 15px;
    bottom: 0;
    content: "";
    display: block;
    height: 0;
    left: 50%;
    margin-left: -15px;
    opacity: 0;
    position: absolute;
    -ms-transition: border-width 0.1s;
    -webkit-transition: border-width 0.1s;
    -moz-transition: border-width 0.1s;
    -o-transition: border-width 0.1s;
    transition: border-width 0.1s;
    -webkit-backface-visibility: hidden;
    -webkit-transition-delay: .3s;
    transition-delay: .3s;
    width: 0; }
  .site-navigation ul.menu > li:hover span.level-0:before {
    opacity: 1;
    border-width: 0 15px 15px 15px;
    -webkit-transition-delay: 0s;
    transition-delay: 0s; }
  .site-navigation ul.menu > li:hover > div {
    z-index: 40;
    max-height: 1000px;
    -webkit-transition-delay: 0s;
    transition-delay: 0s; }
    .site-navigation ul.menu > li:hover > div > ul {
      max-height: 1000px;
      opacity: 1; }
  .site-navigation ul.menu > li > div {
    background: #000;
    color: #FFF;
    display: block;
    left: 0;
    line-height: 1;
    max-height: 0;
    position: absolute;
    right: 0;
    text-align: left;
    width: 100%;
    z-index: 35;
    -ms-transition: max-height 0.3s ease-out;
    -webkit-transition: max-height 0.3s ease-out;
    -moz-transition: max-height 0.3s ease-out;
    -o-transition: max-height 0.3s ease-out;
    transition: max-height 0.3s ease-out;
    -webkit-backface-visibility: hidden;
    -webkit-transition-delay: .3s;
    transition-delay: .3s; }
    .site-navigation ul.menu > li > div:before, .site-navigation ul.menu > li > div:after {
      content: "";
      position: absolute;
      background: #000;
      width: 100%;
      top: 0;
      bottom: 0;
      left: -100%; }
    .site-navigation ul.menu > li > div:after {
      left: auto;
      right: -100%; }
    .site-navigation ul.menu > li > div > ul {
      display: block;
      width: 102.77778%;
      margin: 0 -1.38889%;
      *zoom: 1;
      max-height: 0;
      overflow: hidden;
      opacity: 0;
      -ms-transition: opacity 0.3s ease-out, max-height 0.3s ease-out;
      -webkit-transition: opacity 0.3s ease-out, max-height 0.3s ease-out;
      -moz-transition: opacity 0.3s ease-out, max-height 0.3s ease-out;
      -o-transition: opacity 0.3s ease-out, max-height 0.3s ease-out;
      transition: opacity 0.3s ease-out, max-height 0.3s ease-out;
      -webkit-backface-visibility: hidden; }
      .site-navigation ul.menu > li > div > ul:before, .site-navigation ul.menu > li > div > ul:after {
        content: "";
        display: table; }
      .site-navigation ul.menu > li > div > ul:after {
        clear: both; }
      .site-navigation ul.menu > li > div > ul > li {
        display: inline;
        float: left;
        width: 22.22222%;
        margin: 0 1.38889%;
        margin-top: 40px;
        margin-bottom: 40px; }
      .site-navigation ul.menu > li > div > ul > li.btn.btn-2-col {
        display: inline;
        float: left;
        width: 47.22222%;
        margin: 0 1.38889%;
        margin-bottom: 40px; }
  .site-navigation ul.sub-menu li.btn {
    margin-top: 66px; }
    .site-navigation ul.sub-menu li.btn a {
      border: 2px solid #33ffff;
      font-size: 1em;
      padding: 14px 10px 14px 17px;
      position: relative; }
      .site-navigation ul.sub-menu li.btn a:hover {
        background: #33ffff;
        color: #000;
        -ms-transition: background 0.3s ease-in-out, color 0.3s ease-in-out;
        -webkit-transition: background 0.3s ease-in-out, color 0.3s ease-in-out;
        -moz-transition: background 0.3s ease-in-out, color 0.3s ease-in-out;
        -o-transition: background 0.3s ease-in-out, color 0.3s ease-in-out;
        transition: background 0.3s ease-in-out, color 0.3s ease-in-out;
        -webkit-backface-visibility: hidden; }
      .site-navigation ul.sub-menu li.btn a:after {
        content: "\f105";
        display: inline-block;
        float: right;
        font-family: "FontAwesome";
        font-size: 2em;
        margin-top: -8px; }
  .site-navigation ul.sub-menu li.btn.btn-2-col {
    margin: 0; }
    .site-navigation ul.sub-menu li.btn.btn-2-col a {
      border: 2px solid #33ffff;
      font-size: 1.313em;
      padding: 18px; }
      .site-navigation ul.sub-menu li.btn.btn-2-col a:hover {
        background: #33ffff;
        color: #000;
        -ms-transition: background 0.3s ease-in-out, color 0.3s ease-in-out;
        -webkit-transition: background 0.3s ease-in-out, color 0.3s ease-in-out;
        -moz-transition: background 0.3s ease-in-out, color 0.3s ease-in-out;
        -o-transition: background 0.3s ease-in-out, color 0.3s ease-in-out;
        transition: background 0.3s ease-in-out, color 0.3s ease-in-out;
        -webkit-backface-visibility: hidden; }
      .site-navigation ul.sub-menu li.btn.btn-2-col a:after {
        margin-top: -11px; }
  .site-navigation ul.sub-menu li {
    padding: 0 20px;
    text-transform: uppercase; }
    .site-navigation ul.sub-menu li span.level-1 {
      border-bottom: 5px solid #33ffff;
      color: inherit;
      font-size: 1.125em;
      font-weight: 600;
      margin-bottom: 16px;
      padding-bottom: 10px;
      text-decoration: none; }
    .site-navigation ul.sub-menu li ul.sub-menu {
      line-height: 1; }
      .site-navigation ul.sub-menu li ul.sub-menu li {
        display: block;
        padding: 0;
        margin: 0 0 10px 0;
        line-height: 1; }
        .site-navigation ul.sub-menu li ul.sub-menu li a {
          margin: 0;
          padding: 0;
          border: 0;
          font-size: 0.875em; }
          .site-navigation ul.sub-menu li ul.sub-menu li a:hover {
            color: #33ffff; }

.mobile-nav-trigger {
  -ms-transition: line-height 0.3s;
  -webkit-transition: line-height 0.3s;
  -moz-transition: line-height 0.3s;
  -o-transition: line-height 0.3s;
  transition: line-height 0.3s;
  -webkit-backface-visibility: hidden;
  cursor: pointer;
  display: none;
  float: right;
  font-size: 1.4em;
  line-height: 74px; }
  .shrink .mobile-nav-trigger {
    line-height: 46px; }
  @media screen and (max-width: 1023px) {
    .mobile-nav-trigger {
      display: block; } }

.editorial-navigation {
  -ms-transition: line-height 0.3s;
  -webkit-transition: line-height 0.3s;
  -moz-transition: line-height 0.3s;
  -o-transition: line-height 0.3s;
  transition: line-height 0.3s;
  -webkit-backface-visibility: hidden;
  clear: both;
  line-height: 50px;
  position: relative;
  z-index: 30; }
  .shrink .editorial-navigation {
    line-height: 46px; }
  @media screen and (max-width: 1023px) {
    .editorial-navigation {
      display: none; } }
  .editorial-navigation > ul {
    *zoom: 1;
    display: block;
    margin: 0;
    padding: 0;
    position: relative; }
    .editorial-navigation > ul:before, .editorial-navigation > ul:after {
      content: "";
      display: table; }
    .editorial-navigation > ul:after {
      clear: both; }
    .editorial-navigation > ul:before, .editorial-navigation > ul:after {
      border-top: 1px solid #e5e5e5;
      bottom: 0;
      content: "";
      display: block;
      height: 52px;
      left: -100%;
      position: absolute;
      top: 0;
      width: 100%; }
    .editorial-navigation > ul:after {
      left: auto;
      right: -100%; }
    .editorial-navigation > ul li {
      -ms-transition: background 0.3s ease-in-out, color 0.3s ease-in-out;
      -webkit-transition: background 0.3s ease-in-out, color 0.3s ease-in-out;
      -moz-transition: background 0.3s ease-in-out, color 0.3s ease-in-out;
      -o-transition: background 0.3s ease-in-out, color 0.3s ease-in-out;
      transition: background 0.3s ease-in-out, color 0.3s ease-in-out;
      -webkit-backface-visibility: hidden;
      border: 1px solid #e5e5e5;
      border-bottom: 0;
      border-right: 0;
      color: #2b2b2b;
      display: block;
      float: left;
      margin: 0;
      padding: 0;
      text-align: center;
      width: 16.66667%; }
      .editorial-navigation > ul li .category {
        color: inherit;
        cursor: pointer;
        display: block;
        font-size: .9em;
        font-weight: 700;
        letter-spacing: .5px;
        overflow: hidden;
        text-decoration: none;
        text-overflow: ellipsis;
        text-transform: uppercase;
        white-space: nowrap;
        width: 100%; }
        @media (max-width: 1399px) {
          .editorial-navigation > ul li .category {
            font-size: .8em; } }
      .editorial-navigation > ul li i.fa {
        color: #bebebe;
        font-size: .75em;
        margin-left: 6px;
        margin-top: -2px;
        vertical-align: middle; }
        .touch .editorial-navigation > ul li i.fa {
          display: none; }
      .editorial-navigation > ul li:last-child {
        border-right: 1px solid #e5e5e5; }
      .editorial-navigation > ul li:hover {
        background: #37cefd;
        color: #FFF; }
        .editorial-navigation > ul li:hover i.fa {
          color: inherit; }
  .editorial-navigation ul li:hover .sub-menu .sub-menu-inner {
    visibility: visible;
    max-height: 1000px; }
  .editorial-navigation .sub-menu {
    -ms-transition: max-height 0.3s ease-in-out;
    -webkit-transition: max-height 0.3s ease-in-out;
    -moz-transition: max-height 0.3s ease-in-out;
    -o-transition: max-height 0.3s ease-in-out;
    transition: max-height 0.3s ease-in-out;
    -webkit-backface-visibility: hidden;
    background: #37cefd;
    color: #FFF;
    display: block;
    left: 0;
    line-height: 1;
    position: absolute;
    right: 0;
    width: 100%;
    z-index: 10; }
    .touch .editorial-navigation .sub-menu {
      display: none; }
    .editorial-navigation .sub-menu:before, .editorial-navigation .sub-menu:after {
      background: #7bdcfb;
      bottom: 0;
      content: "";
      left: -100%;
      position: absolute;
      top: 0;
      width: 100%; }
    .editorial-navigation .sub-menu:after {
      left: auto;
      right: -100%; }
    .editorial-navigation .sub-menu .sub-menu-inner {
      max-height: 0;
      overflow: hidden;
      visibility: hidden;
      -webkit-transition: opacity .2s, max-height .3s;
      -moz-transition: opacity .2s, max-height .3s;
      transition: opacity .2s, max-height .3s; }
    .editorial-navigation .sub-menu ul {
      display: block;
      line-height: 1;
      margin: 0;
      padding: 0; }
      .editorial-navigation .sub-menu ul li {
        border: 0;
        color: inherit;
        display: block;
        float: left;
        letter-spacing: normal;
        margin: 0;
        padding: 0;
        padding: 20px;
        text-align: left;
        text-transform: uppercase;
        width: 16.66667%; }
        @media (max-width: 1399px) {
          .editorial-navigation .sub-menu ul li {
            padding: 10px 10px 20px 10px; } }
        .editorial-navigation .sub-menu ul li a {
          -ms-transition: opacity 0.3s;
          -webkit-transition: opacity 0.3s;
          -moz-transition: opacity 0.3s;
          -o-transition: opacity 0.3s;
          transition: opacity 0.3s;
          -webkit-backface-visibility: hidden;
          color: inherit;
          display: block;
          opacity: .8;
          text-decoration: none; }
          .editorial-navigation .sub-menu ul li a:hover {
            opacity: 1; }
        .editorial-navigation .sub-menu ul li .post-nav-img {
          background-position: center center;
          background-size: cover;
          display: block;
          margin-bottom: 10px;
          padding-top: 57%; }
        .editorial-navigation .sub-menu ul li .post-nav-title {
          display: block;
          font-size: .88em;
          font-weight: 600;
          letter-spacing: 1px;
          line-height: 1.2em;
          position: relative; }
          @media (max-width: 1399px) {
            .editorial-navigation .sub-menu ul li .post-nav-title {
              font-size: .8em; } }
  .editorial-navigation .btn-all {
    *zoom: 1;
    -ms-transition: color 0.3s, background 0.3s;
    -webkit-transition: color 0.3s, background 0.3s;
    -moz-transition: color 0.3s, background 0.3s;
    -o-transition: color 0.3s, background 0.3s;
    transition: color 0.3s, background 0.3s;
    -webkit-backface-visibility: hidden;
    border: 2px solid #FFF;
    clear: both;
    color: inherit;
    display: block;
    font-size: 0.875em;
    font-weight: 700;
    letter-spacing: 0.1em;
    margin: 20px auto;
    max-width: 60%;
    padding: 10px 20px;
    text-decoration: none;
    text-transform: uppercase;
    width: 300px; }
    .editorial-navigation .btn-all:before, .editorial-navigation .btn-all:after {
      content: "";
      display: table; }
    .editorial-navigation .btn-all:after {
      clear: both; }
    .editorial-navigation .btn-all:hover {
      background: #FFF;
      color: #37cefd; }

#header-spacer {
  height: 126px;
  -ms-transition: height 0.3s;
  -webkit-transition: height 0.3s;
  -moz-transition: height 0.3s;
  -o-transition: height 0.3s;
  transition: height 0.3s;
  -webkit-backface-visibility: hidden; }
  @media (max-width: 1023px) {
    #header-spacer {
      height: 75px; } }

/* Mobile Nav
--------------------------------------------------------------- */
.panel-content {
  -ms-transition: left 0.3s ease-in-out, right 0.3s ease-in-out;
  -webkit-transition: left 0.3s ease-in-out, right 0.3s ease-in-out;
  -moz-transition: left 0.3s ease-in-out, right 0.3s ease-in-out;
  -o-transition: left 0.3s ease-in-out, right 0.3s ease-in-out;
  transition: left 0.3s ease-in-out, right 0.3s ease-in-out;
  -webkit-backface-visibility: hidden;
  left: 0;
  position: relative;
  right: 0;
  width: 100%;
  z-index: 20; }

.panel-mobile-nav {
  -ms-transition: left 0.3s ease-in-out, right 0.3s ease-in-out;
  -webkit-transition: left 0.3s ease-in-out, right 0.3s ease-in-out;
  -moz-transition: left 0.3s ease-in-out, right 0.3s ease-in-out;
  -o-transition: left 0.3s ease-in-out, right 0.3s ease-in-out;
  transition: left 0.3s ease-in-out, right 0.3s ease-in-out;
  -webkit-backface-visibility: hidden;
  background: #202020;
  height: 100vh;
  overflow: hidden;
  position: fixed;
  right: -80vw;
  width: 80vw;
  z-index: 10; }
  .panel-mobile-nav.active {
    right: 0; }
  .panel-mobile-nav .overflow {
    max-height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    position: relative;
    -webkit-overflow-scrolling: touch; }

.mobile-nav-header {
  border-bottom: 1px solid #313131;
  padding: 2em; }
  .mobile-nav-header #mobile-nav-close {
    -ms-transition: background 0.3s ease-in-out;
    -webkit-transition: background 0.3s ease-in-out;
    -moz-transition: background 0.3s ease-in-out;
    -o-transition: background 0.3s ease-in-out;
    transition: background 0.3s ease-in-out;
    -webkit-backface-visibility: hidden;
    border: 2px solid #FFF;
    cursor: pointer;
    cursor: pointer;
    display: block;
    height: 42px;
    opacity: 1;
    overflow: hidden;
    position: relative;
    text-indent: 100%;
    white-space: nowrap;
    width: 42px;
    z-index: 100; }
    .mobile-nav-header #mobile-nav-close:before, .mobile-nav-header #mobile-nav-close:after {
      -ms-transition: background 0.3s ease-in-out;
      -webkit-transition: background 0.3s ease-in-out;
      -moz-transition: background 0.3s ease-in-out;
      -o-transition: background 0.3s ease-in-out;
      transition: background 0.3s ease-in-out;
      -webkit-backface-visibility: hidden;
      background: #FFF;
      content: "";
      display: block;
      height: 30px;
      position: absolute;
      top: 4px;
      width: 2px; }
    .mobile-nav-header #mobile-nav-close:before {
      left: 18px;
      -webkit-transform: rotate(45deg);
      -moz-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
      transform: rotate(45deg); }
    .mobile-nav-header #mobile-nav-close:after {
      right: 18px;
      -webkit-transform: rotate(-45deg);
      -moz-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
      transform: rotate(-45deg); }
    .mobile-nav-header #mobile-nav-close:hover {
      background: #FFF; }
      .mobile-nav-header #mobile-nav-close:hover:before, .mobile-nav-header #mobile-nav-close:hover:after {
        background: #000; }

.slinky-menu {
  overflow: hidden;
  transform: translateZ(0);
  transition: all 300ms ease;
  -webkit-transform: translateZ(0);
  -webkit-transition: all 300ms ease; }
  .slinky-menu > ul {
    left: 0;
    position: relative;
    transform: translateZ(0);
    transition: all 300ms ease;
    -webkit-transform: translateZ(0);
    -webkit-transition: all 300ms ease; }
  .slinky-menu ul,
  .slinky-menu li {
    list-style: none;
    margin: 0;
    padding: 0;
    line-height: 1; }
  .slinky-menu ul {
    width: 100%; }
  .slinky-menu a {
    display: block; }
  .slinky-menu li ul {
    display: none;
    left: 100%;
    position: absolute;
    top: 0; }
  .slinky-menu .header {
    position: relative; }
  .slinky-menu h2 ~ a.back {
    display: block; }
  .slinky-menu h2 {
    font-size: 1em;
    margin: 0; }

.slinky-menu {
  color: #FFF;
  text-transform: uppercase; }
  .slinky-menu h2 {
    padding: 1em 2em;
    font-weight: 600;
    background: #3cc4f2; }
    .slinky-menu h2 ~ a.back {
      color: #3cc4f2; }
  .slinky-menu li {
    border-bottom: 1px solid #313131; }
  .slinky-menu a {
    border: none;
    color: #FFF;
    font-weight: 600;
    padding: 1em 2em;
    text-decoration: none; }
    .slinky-menu a:hover {
      background: #33ffff;
      color: #202020; }
  .slinky-menu a.next:after {
    content: '\f054';
    float: right;
    font-family: "FontAwesome";
    margin-left: 1em; }
  .slinky-menu a.back:before {
    content: '\f053';
    float: left;
    font-family: "FontAwesome";
    margin-right: 1em; }

/* Footer
--------------------------------------------------------------- */
.site-footer {
  height: 134px;
  width: 100%;
  background: #1a1e20; }
  .site-footer .footer-content {
    color: #525658;
    font-size: .8em;
    font-weight: 600;
    letter-spacing: 2px;
    text-align: center;
    text-transform: uppercase; }
  .site-footer .site-name {
    display: block; }
    @media (min-width: 768px) {
      .site-footer .site-name {
        display: inline; }
        .site-footer .site-name:before {
          content: "\00a0\00a0|\00a0\00a0"; } }

/* Article (Detail Views) Styles
--------------------------------------------------------------- */
/* Article Detail View Component
	 * 
	 * For single articles
	 * ---------------------------------------------------------------- */
article.view-detail .article-media {
  position: relative;
  background: #1a1e20; }
  article.view-detail .article-media .container {
    width: 940px; }

@media (min-width: 768px) and (max-width: 1024px) {
  article.view-detail .article-media .container {
    max-width: 80%; } }
  article.view-detail .article-media .background {
    z-index: 0;
    bottom: 0;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    background-position: center center;
    background-size: cover;
    background-attachment: fixed; }
    @media (max-width: 1024px) {
      article.view-detail .article-media .background {
        background-attachment: scroll; } }
  article.view-detail .article-media .table {
    height: 550px;
    height: calc(100vh - 300px);
    max-height: 550px; }
    article.view-detail .article-media .table .cell {
      padding: 40px 0; }
    @media (max-width: 1024px) {
      article.view-detail .article-media .table {
        height: 400px; } }

@media (max-width: 767px) and (orientation: portrait) {
  article.view-detail .article-media .table {
    height: 300px; } }

@media (max-width: 767px) and (orientation: landscape) {
  article.view-detail .article-media .table {
    height: 250px; } }
  article.view-detail .article-media .social {
    position: absolute;
    z-index: 2;
    bottom: 80px;
    right: 40px; }
    article.view-detail .article-media .social a {
      display: block;
      width: 55px;
      height: 55px;
      line-height: 50px;
      font-size: 1.4em;
      color: #FFF;
      background: #1a1e20;
      border: 2px solid #fff;
      -webkit-border-radius: 50%;
      -moz-border-radius: 50%;
      border-radius: 50%;
      text-align: center;
      margin: 4px;
      -ms-transition: background 0.3s, color 0.3s;
      -webkit-transition: background 0.3s, color 0.3s;
      -moz-transition: background 0.3s, color 0.3s;
      -o-transition: background 0.3s, color 0.3s;
      transition: background 0.3s, color 0.3s;
      -webkit-backface-visibility: hidden; }
      article.view-detail .article-media .social a i {
        vertical-align: baseline; }
      article.view-detail .article-media .social a:hover {
        background: #FFF;
        color: #1a1e20; }
    @media (max-width: 1024px) {
      article.view-detail .article-media .social {
        bottom: 20px;
        right: 20px; }
        article.view-detail .article-media .social a {
          width: 40px;
          height: 40px;
          line-height: 36px;
          font-size: 1em; } }
    @media (max-width: 767px) {
      article.view-detail .article-media .social {
        display: none; } }
  article.view-detail .article-media.video .background {
    opacity: 0; }
  article.view-detail .article-media.audio .background {
    opacity: .2; }
  article.view-detail .article-media.book {
    background: #343434; }
    article.view-detail .article-media.book img {
      display: inline-block;
      vertical-align: top;
      max-height: 400px;
      max-width: 60%;
      height: auto;
      box-shadow: 10px 10px 0 #292929; }

article.view-detail .article-content {
  position: relative;
  z-index: 10; }
  article.view-detail .article-content .container {
    width: 940px; }
  article.view-detail .article-content .article-category {
    line-height: 1;
    width: 420px;
    max-width: 100%;
    line-height: 40px;
    display: block;
    padding: 0 20px;
    margin: -20px auto 0 auto;
    background: #33ccff;
    color: #FFF;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-align: center;
    text-transform: uppercase;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis; }
    article.view-detail .article-content .article-category a {
      text-decoration: none;
      color: inherit; }
  article.view-detail .article-content .article-title {
    font-size: 3.750em;
    text-align: center;
    font-weight: 400;
    margin: 45px 0 25px 0;
    padding: 0;
    line-height: 1.2; }
    @media (max-width: 1024px) {
      article.view-detail .article-content .article-title {
        font-size: 3em; } }
    @media (max-width: 768px) {
      article.view-detail .article-content .article-title {
        font-size: 2.6em; } }
    @media (max-width: 375px) {
      article.view-detail .article-content .article-title {
        font-size: 2em;
        text-align: left; } }
  article.view-detail .article-content .article-meta {
    font-weight: 600;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 40px;
    line-height: 1.2; }
    @media (max-width: 768px) {
      article.view-detail .article-content .article-meta {
        font-size: .9em; } }
    @media (max-width: 375px) {
      article.view-detail .article-content .article-meta {
        font-size: .8em;
        text-align: left; } }
  article.view-detail .article-content .social {
    position: relative;
    text-align: center;
    padding: 50px 0 75px 0; }
    article.view-detail .article-content .social a {
      display: inline-block;
      width: 55px;
      height: 55px;
      line-height: 50px;
      font-size: 1.4em;
      color: #FFF;
      background: #1a1e20;
      border: 2px solid #1a1e20;
      -webkit-border-radius: 50%;
      -moz-border-radius: 50%;
      border-radius: 50%;
      text-align: center;
      margin: 0 4px;
      -ms-transition: background 0.3s, color 0.3s;
      -webkit-transition: background 0.3s, color 0.3s;
      -moz-transition: background 0.3s, color 0.3s;
      -o-transition: background 0.3s, color 0.3s;
      transition: background 0.3s, color 0.3s;
      -webkit-backface-visibility: hidden; }
      article.view-detail .article-content .social a i {
        vertical-align: baseline;
        font-style: normal; }
      article.view-detail .article-content .social a:hover {
        background: #FFF;
        color: #1a1e20; }

/* Recommmended Reading (in article detail view) */
.recommended-reading {
  background: #1a1e20;
  padding: 100px 0;
  position: relative; }
  @media (max-width: 767px) {
    .recommended-reading {
      padding: 2em 0 0 0; } }

@media (max-width: 767px) and (orientation: landscape) {
  .recommended-reading {
    padding: 2em 0 1em 0; } }
  .recommended-reading .article-top,
  .recommended-reading .article-bottom {
    background: #FFF;
    height: 40px;
    left: 0;
    margin: 0 auto;
    max-width: 100%;
    position: absolute;
    right: 0;
    width: 1200px; }
    @media (max-width: 767px) {
      .recommended-reading .article-top,
      .recommended-reading .article-bottom {
        display: none; } }
  .recommended-reading .article-bottom {
    top: 0; }
  .recommended-reading .article-top {
    bottom: 0; }
  .recommended-reading .title {
    text-transform: uppercase;
    font-size: 1.438em;
    font-weight: 600;
    color: #FFF;
    line-height: 1;
    letter-spacing: 0.1em;
    margin-bottom: 40px; }
    .recommended-reading .title a {
      text-decoration: none;
      color: inherit; }
  .recommended-reading article.view-list {
    display: inline;
    float: left;
    width: 22.22222%;
    margin: 0 1.38889%;
    position: relative;
    border: 0;
    color: #FFF; }
    .recommended-reading article.view-list:before {
      display: block;
      content: "";
      width: 100%;
      padding-top: 103.125%; }

@media (min-width: 1024px) and (max-width: 1399px) {
  .recommended-reading article.view-list {
    position: relative; }
    .recommended-reading article.view-list:before {
      display: block;
      content: "";
      width: 100%;
      padding-top: 150%; } }
    @media (max-width: 1023px) {
      .recommended-reading article.view-list {
        display: inline;
        float: left;
        width: 47.22222%;
        margin: 0 1.38889%;
        margin-bottom: 2em; } }
    @media (max-width: 767px) {
      .recommended-reading article.view-list {
        display: inline;
        float: left;
        width: 97.22222%;
        margin: 0 1.38889%;
        margin-bottom: 2em; } }

@media (max-width: 767px) and (orientation: landscape) {
  .recommended-reading article.view-list {
    display: inline;
    float: left;
    width: 47.22222%;
    margin: 0 1.38889%;
    margin-bottom: 1em; } }
    .recommended-reading article.view-list header {
      background: #30383c; }
  .recommended-reading.light {
    background: #d7d7d7; }
    .recommended-reading.light article.view-list {
      color: #1a1e20; }
    .recommended-reading.light article.view-list header {
      background: #FFF; }

/* Article Page (single.php) */
.page-article {
  background: #FFF; }

/* Article (List Views)
--------------------------------------------------------------- */
/* Article List View Component
 *
 * Component containing generic styles that are reused on multiple
 * archive pages (index.php, category.php)
 * ---------------------------------------------------------------- */
article.view-list {
  position: relative;
  background-color: #202020;
  border-top: 3px solid #33ccff;
  color: inherit;
  overflow: hidden; }
  article.view-list:before {
    display: block;
    content: "";
    width: 100%;
    padding-top: 163.63636%; }

@media (max-width: 767px) and (orientation: landscape) {
  article.view-list {
    position: relative; }
    article.view-list:before {
      display: block;
      content: "";
      width: 100%;
      padding-top: 100%; } }

@media (max-width: 767px) and (orientation: portrait) {
  article.view-list {
    position: relative; }
    article.view-list:before {
      display: block;
      content: "";
      width: 100%;
      padding-top: 120%; } }
  article.view-list .inner {
    display: flex;
    flex-flow: column;
    height: 100%; }
  article.view-list header {
    background: #FFF;
    flex: 0 1 auto;
    padding: 1em 1.5em 50px 1.5em;
    position: relative;
    text-align: left;
    z-index: 2; }
    @media (max-width: 768px) {
      article.view-list header {
        font-size: .9em; } }
  article.view-list .article-graphic {
    bottom: auto;
    flex: 1 1 auto;
    left: auto;
    position: relative;
    text-align: center;
    top: auto;
    right: auto;
    min-height: 100px; }
  article.view-list .article-link {
    display: block;
    bottom: 0;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 5; }
  article.view-list .book-image {
    bottom: 0;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    -ms-transition: background 0.5s ease-in-out;
    -webkit-transition: background 0.5s ease-in-out;
    -moz-transition: background 0.5s ease-in-out;
    -o-transition: background 0.5s ease-in-out;
    transition: background 0.5s ease-in-out;
    -webkit-backface-visibility: hidden;
    background-color: #343434;
    display: block; }
    article.view-list .book-image .padding {
      height: 100%;
      padding: 30px; }
      @media (max-width: 767px) {
        article.view-list .book-image .padding {
          padding: 20px; } }
    article.view-list .book-image img {
      box-shadow: 10px 10px 0 #292929;
      display: block;
      margin: 0 auto;
      max-height: 100%;
      vertical-align: top; }
  article.view-list .article-background {
    bottom: 0;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    background-position: center center;
    background-size: cover;
    -ms-transition: all 1s ease-in-out;
    -webkit-transition: all 1s ease-in-out;
    -moz-transition: all 1s ease-in-out;
    -o-transition: all 1s ease-in-out;
    transition: all 1s ease-in-out;
    -webkit-backface-visibility: hidden;
    background-color: #202020;
    opacity: .85; }
  article.view-list .article-play {
    bottom: 0;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    background: url("../img/ico-article-play.svg") center center no-repeat; }
    @media (max-width: 1024px) {
      article.view-list .article-play {
        background-size: 30% 30%; } }
  article.view-list .article-meta {
    font-size: 0.750em;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase; }
  article.view-list .article-title {
    font-size: 1.250em;
    font-weight: 500;
    line-height: 1.2;
    margin: 5px 0; }
  article.view-list .article-social {
    -ms-transition: left 0.2s ease-in-out;
    -webkit-transition: left 0.2s ease-in-out;
    -moz-transition: left 0.2s ease-in-out;
    -o-transition: left 0.2s ease-in-out;
    transition: left 0.2s ease-in-out;
    -webkit-backface-visibility: hidden;
    bottom: 0;
    cursor: pointer;
    height: 38px;
    left: -38px;
    line-height: 38px;
    position: absolute;
    text-align: center;
    white-space: nowrap;
    width: 100%;
    z-index: 10; }
    article.view-list .article-social.active {
      left: -100%; }
    article.view-list .article-social .s-title {
      display: inline-block;
      font-size: 0.688em;
      font-weight: 700;
      letter-spacing: 0.1em;
      padding-right: 10px;
      text-align: right;
      text-transform: uppercase;
      vertical-align: top;
      width: 100%; }
    article.view-list .article-social .s-options {
      background: #00bbdd;
      color: #fff;
      display: inline-block;
      text-align: left;
      vertical-align: top;
      width: 100%; }
      article.view-list .article-social .s-options .s-icon {
        background: #000;
        color: #FFF;
        display: inline-block;
        float: left;
        text-align: center;
        vertical-align: top;
        width: 38px; }
      article.view-list .article-social .s-options a {
        color: inherit;
        display: block;
        float: left;
        text-align: center;
        width: 38px; }
  article.view-list:hover .article-background {
    opacity: 1;
    -webkit-transform: scale(1.05, 1.05);
    -ms-transform: scale(1.05, 1.05);
    -moz-transform: scale(1.05, 1.05);
    transform: scale(1.05, 1.05); }
  article.view-list:hover .book-image {
    background-color: #444; }
  article.view-list.book .article-background {
    display: none; }

/* Archive header
 *
 * Used on all archive pages (index.php, category.php, search.php)
 * ---------------------------------------------------------------- */
.archive-header {
  display: inline;
  float: left;
  width: 97.22222%;
  margin: 0 1.38889%;
  padding: 2em 0; }
  .archive-header .archive-title {
    font-size: 1.125em;
    font-weight: 600;
    letter-spacing: 0.1em;
    line-height: 1;
    margin: 0;
    text-align: center;
    text-transform: uppercase; }

/* Index page
 *
 * Handles searches, date archives, tag archives, author 
 * archives, etc. Basically a catch-all. 
 * ---------------------------------------------------------------- */
.page-index {
  background: #f3f2f2; }
  .page-index .index-posts article {
    display: inline;
    float: left;
    width: 22.22222%;
    margin: 0 1.38889%;
    margin-bottom: 2em; }

@media (min-width: 769px) and (max-width: 1024px) {
  .page-index .index-posts article {
    display: inline;
    float: left;
    width: 30.55556%;
    margin: 0 1.38889%;
    margin-bottom: 2em; } }

@media (min-width: 376px) and (max-width: 768px) {
  .page-index .index-posts article {
    display: inline;
    float: left;
    width: 47.22222%;
    margin: 0 1.38889%;
    margin-bottom: 2em; } }
    @media (max-width: 375px) {
      .page-index .index-posts article {
        display: inline;
        float: left;
        width: 97.22222%;
        margin: 0 1.38889%;
        margin-bottom: 2em; } }

/* Category page
 *
 * Handles all category archives, nothing else.
 * ---------------------------------------------------------------- */
.page-archive {
  background: #f3f2f2; }
  .page-archive .archive-featured-posts {
    *zoom: 1; }
    .page-archive .archive-featured-posts:before, .page-archive .archive-featured-posts:after {
      content: "";
      display: table; }
    .page-archive .archive-featured-posts:after {
      clear: both; }
    .page-archive .archive-featured-posts article {
      display: inline;
      float: left;
      width: 47.22222%;
      margin: 0 1.38889%;
      margin-bottom: 2em; }
      @media (min-width: 768px) {
        .page-archive .archive-featured-posts article {
          position: relative; }
          .page-archive .archive-featured-posts article:before {
            display: block;
            content: "";
            width: 100%;
            padding-top: 79.41176%; }
          .page-archive .archive-featured-posts article .article-meta {
            font-size: 0.875em; }
          .page-archive .archive-featured-posts article .article-title {
            font-size: 1.813em; } }
      @media (max-width: 767px) {
        .page-archive .archive-featured-posts article {
          display: inline;
          float: left;
          width: 97.22222%;
          margin: 0 1.38889%;
          margin-bottom: 2em; } }

@media (max-width: 767px) and (orientation: landscape) {
  .page-archive .archive-featured-posts article {
    position: relative; }
    .page-archive .archive-featured-posts article:before {
      display: block;
      content: "";
      width: 100%;
      padding-top: 50%; } }
  .page-archive .archive-posts {
    display: inline;
    float: left;
    width: 72.22222%;
    margin: 0 1.38889%;
    margin-left: -98.61111%; }
    .page-archive .archive-posts .inner-row {
      display: block;
      width: 103.7037%;
      margin: 0 -1.85185%;
      *zoom: 1; }
      .page-archive .archive-posts .inner-row:before, .page-archive .archive-posts .inner-row:after {
        content: "";
        display: table; }
      .page-archive .archive-posts .inner-row:after {
        clear: both; }
    .page-archive .archive-posts article {
      display: inline;
      float: left;
      width: 29.62963%;
      margin: 0 1.85185%;
      margin-bottom: 2em; }
    @media (max-width: 1365px) {
      .page-archive .archive-posts {
        display: inline;
        float: left;
        width: 63.88889%;
        margin: 0 1.38889%;
        margin-left: -98.61111%; }
        .page-archive .archive-posts .inner-row {
          display: block;
          width: 104.16667%;
          margin: 0 -2.08333%;
          *zoom: 1; }
          .page-archive .archive-posts .inner-row:before, .page-archive .archive-posts .inner-row:after {
            content: "";
            display: table; }
          .page-archive .archive-posts .inner-row:after {
            clear: both; }
        .page-archive .archive-posts article {
          display: inline;
          float: left;
          width: 45.83333%;
          margin: 0 2.08333%;
          margin-bottom: 2em; } }
    @media (max-width: 767px) {
      .page-archive .archive-posts {
        display: inline;
        float: left;
        width: 97.22222%;
        margin: 0 1.38889%;
        margin-left: 1.38889%; }
        .page-archive .archive-posts article {
          display: inline;
          float: left;
          width: 97.22222%;
          margin: 0 1.38889%;
          margin-bottom: 2em; } }

@media (max-width: 767px) and (orientation: landscape) {
  .page-archive .archive-posts article {
    position: relative; }
    .page-archive .archive-posts article:before {
      display: block;
      content: "";
      width: 100%;
      padding-top: 50%; } }
  .page-archive .archive-sidebar {
    display: inline;
    float: left;
    width: 22.22222%;
    margin: 0 1.38889%;
    margin-left: 76.38889%;
    background: #1b1b1b;
    margin-bottom: 2em; }
    .page-archive .archive-sidebar .widget {
      padding: 20px; }
    @media (max-width: 1365px) {
      .page-archive .archive-sidebar {
        display: inline;
        float: left;
        width: 30.55556%;
        margin: 0 1.38889%;
        margin-left: 68.05556%;
        margin-bottom: 2em; } }
    @media (max-width: 767px) {
      .page-archive .archive-sidebar {
        display: none; } }
  .page-archive .archive-sidebar-mobile {
    display: none; }
    @media (max-width: 767px) {
      .page-archive .archive-sidebar-mobile {
        display: inline;
        float: left;
        width: 97.22222%;
        margin: 0 1.38889%;
        margin-bottom: 2em; } }
    .page-archive .archive-sidebar-mobile .widget-featured-posts ol li:last-of-type {
      border: 0; }
  .page-archive .widget-featured-posts {
    color: #f3f2f2;
    overflow: hidden; }
    .page-archive .widget-featured-posts .widget-title {
      background: #33ccff;
      color: #FFF;
      font-size: 1.063em;
      font-weight: 600;
      letter-spacing: 0.1em;
      margin: -20px -20px 20px -20px;
      padding: 15px;
      text-align: center;
      text-transform: uppercase; }
    .page-archive .widget-featured-posts ol {
      counter-reset: list;
      display: block;
      margin: 0;
      padding: 0; }
      .page-archive .widget-featured-posts ol li {
        border-bottom: 1px solid #525252;
        counter-increment: list;
        display: block;
        line-height: 1.2;
        margin: 0;
        min-height: 86px;
        padding: 20px 0;
        padding-left: 61px;
        position: relative; }
        .page-archive .widget-featured-posts ol li:before {
          -webkit-border-radius: 50%;
          -moz-border-radius: 50%;
          border-radius: 50%;
          -ms-transition: border-color 0.3s, color 0.3s;
          -webkit-transition: border-color 0.3s, color 0.3s;
          -moz-transition: border-color 0.3s, color 0.3s;
          -o-transition: border-color 0.3s, color 0.3s;
          transition: border-color 0.3s, color 0.3s;
          -webkit-backface-visibility: hidden;
          border: 4px solid #33ccff;
          content: counter(list);
          display: block;
          font-size: 1.875em;
          font-weight: 500;
          height: 46px;
          left: 0;
          line-height: 26px;
          position: absolute;
          text-align: center;
          width: 46px; }
        .page-archive .widget-featured-posts ol li:after {
          -ms-transition: left 0.3s;
          -webkit-transition: left 0.3s;
          -moz-transition: left 0.3s;
          -o-transition: left 0.3s;
          transition: left 0.3s;
          -webkit-backface-visibility: hidden;
          border-color: transparent transparent transparent #f3f2f2;
          border-style: solid;
          border-width: 10px 0 10px 8px;
          bottom: 0;
          content: "";
          display: block;
          height: 0;
          left: -28px;
          margin-top: -10px;
          position: absolute;
          top: 50%;
          width: 0; }
        @media (max-width: 1399px) {
          .page-archive .widget-featured-posts ol li {
            min-height: 70px;
            padding-left: 3em; }
            .page-archive .widget-featured-posts ol li:before {
              border: 3px solid #33ccff;
              font-size: 1.3em;
              height: 34px;
              line-height: 22px;
              width: 34px; } }
        .page-archive .widget-featured-posts ol li span {
          border-bottom: 2px solid transparent;
          -ms-transition: border-color 0.3s;
          -webkit-transition: border-color 0.3s;
          -moz-transition: border-color 0.3s;
          -o-transition: border-color 0.3s;
          transition: border-color 0.3s;
          -webkit-backface-visibility: hidden; }
        .page-archive .widget-featured-posts ol li a {
          display: block;
          bottom: 0;
          left: 0;
          position: absolute;
          right: 0;
          top: 0; }
        .page-archive .widget-featured-posts ol li:hover:after {
          left: -20px; }
        .page-archive .widget-featured-posts ol li:hover:before {
          border-color: #FFF;
          color: #33ccff; }
        .page-archive .widget-featured-posts ol li:hover span {
          border-color: #33ccff; }
  .page-archive .widget-twitter .widget-title {
    background: #FFF;
    color: #1b1b1b;
    display: inline-block;
    float: left;
    font-size: 0.813em;
    font-weight: 600;
    margin: -14px 0 0 -6px;
    padding: 8px 25px;
    text-transform: uppercase; }
  .page-archive .widget-twitter .background {
    background: #292929;
    padding: 50px 35px; }
    @media (max-width: 1023px) {
      .page-archive .widget-twitter .background {
        padding: 40px 20px; } }
  .page-archive .widget-twitter blockquote {
    color: #969696;
    display: block;
    font-size: 1.200em;
    font-style: italic;
    font-weight: 400;
    line-height: 1.2;
    margin: 0;
    position: relative; }
    @media (max-width: 1023px) {
      .page-archive .widget-twitter blockquote {
        font-size: 1.200em; } }
    .page-archive .widget-twitter blockquote:before {
      background-size: 100% 100%;
      background: url("../img/ico-quote.svg") no-repeat;
      content: "";
      display: block;
      height: 22px;
      left: -40px;
      position: absolute;
      top: -10px;
      width: 33px; }
      @media (max-width: 1023px) {
        .page-archive .widget-twitter blockquote:before {
          background-size: 80% 80%;
          left: -30px; } }
    .page-archive .widget-twitter blockquote p {
      overflow-wrap: break-word; }
    .page-archive .widget-twitter blockquote a {
      color: #FFF;
      text-decoration: none; }
  .page-archive .widget-twitter .latest {
    color: #FFF;
    display: block;
    font-size: 0.750em;
    letter-spacing: 0.1em;
    margin-top: 20px;
    text-align: right;
    text-decoration: none;
    text-transform: uppercase; }
    @media (max-width: 1023px) {
      .page-archive .widget-twitter .latest {
        font-size: 0.7em;
        font-weight: 500;
        letter-spacing: normal; } }
    .page-archive .widget-twitter .latest .fa {
      font-size: 1.6em;
      vertical-align: middle; }

/* General Page Styles
--------------------------------------------------------------- */
/* General Pages (page.php) */
.page-general {
  background: #FFF; }
  .page-general .page-content-top {
    position: relative;
    border-top: 4px solid #33ccff;
    height: 20px;
    width: 1074px;
    margin: 0 auto;
    background: #FFF;
    z-index: 60; }
    @media (max-width: 1073px) {
      .page-general .page-content-top {
        display: none; } }
  .page-general article.view-detail .article-category {
    display: none; }
  .page-general article.view-detail .article-title {
    text-align: left; }
  .page-general article.view-detail .article-meta {
    display: none; }

/* General Page + Sidebar (tpl-general-sidebar.php) */
.page-general-sidebar article.view-detail .container {
  width: 1300px; }

.page-general-sidebar .page-content-top {
  width: 1400px; }

.page-general-sidebar .main {
  display: inline;
  float: left;
  width: 63.88889%;
  margin: 0 1.38889%;
  margin-left: 34.72222%; }
  @media (max-width: 1023px) {
    .page-general-sidebar .main {
      display: inline;
      float: left;
      width: 55.55556%;
      margin: 0 1.38889%;
      margin-left: 43.05556%; } }
  @media (max-width: 767px) {
    .page-general-sidebar .main {
      display: inline;
      float: left;
      width: 97.22222%;
      margin: 0 1.38889%; } }

.page-general-sidebar .sidebar {
  display: inline;
  float: left;
  width: 30.55556%;
  margin: 0 1.38889%;
  margin-left: -98.61111%;
  background: #f4f4f4;
  padding: 40px 50px;
  margin-top: 50px;
  font-size: .9em;
  line-height: 1.5; }
  @media (max-width: 1023px) {
    .page-general-sidebar .sidebar {
      display: inline;
      float: left;
      width: 38.88889%;
      margin: 0 1.38889%;
      margin-left: -98.61111%;
      padding: 30px;
      margin-top: 50px; } }
  @media (max-width: 767px) {
    .page-general-sidebar .sidebar {
      display: inline;
      float: left;
      width: 97.22222%;
      margin: 0 1.38889%;
      padding: 20px; } }
  .page-general-sidebar .sidebar p {
    text-align: left; }

/* General Page: Report (tpl-general-report.php) */
.page-general-report {
  padding-bottom: 40px; }
  .page-general-report .article-media .container {
    width: 900px; }
  .page-general-report .page-content-top {
    border-top: 7px solid #33ffff;
    width: 100%; }
  .page-general-report .report-header {
    display: block;
    width: 102.77778%;
    margin: 0 -1.38889%;
    *zoom: 1;
    color: #FFF;
    padding: 40px 0;
    text-align: left; }
    .page-general-report .report-header:before, .page-general-report .report-header:after {
      content: "";
      display: table; }
    .page-general-report .report-header:after {
      clear: both; }
    @media (max-width: 767px) {
      .page-general-report .report-header {
        padding: 0; } }
  .page-general-report .rh-graphic {
    position: relative;
    display: inline;
    float: left;
    width: 20.13889%;
    margin: 0 1.38889%;
    position: relative;
    background: #00ffff; }
    .page-general-report .rh-graphic:before {
      display: block;
      content: "";
      width: 100%;
      padding-top: 137.96791%; }
    @media (max-width: 1023px) {
      .page-general-report .rh-graphic {
        display: inline;
        float: left;
        width: 22.22222%;
        margin: 0 1.38889%; } }

@media (max-width: 767px) and (orientation: portrait) {
  .page-general-report .rh-graphic {
    display: inline;
    float: left;
    width: 63.88889%;
    margin: 0 1.38889%;
    margin-left: 18.05556%;
    margin-bottom: 2em; } }
  .page-general-report .graphic-text {
    font-weight: 600;
    letter-spacing: 0.063em;
    line-height: 1.4;
    position: absolute;
    top: 30px;
    left: 30px;
    word-spacing: 500px;
    z-index: 2; }
  .page-general-report .graphic-background {
    bottom: 0;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    background-position: center center;
    background-size: cover;
    opacity: .43;
    z-index: 1; }
  .page-general-report .rh-info {
    display: inline;
    float: left;
    width: 70.13889%;
    margin: 0 1.38889%;
    margin-left: 5.55556%; }
    @media (max-width: 1023px) {
      .page-general-report .rh-info {
        display: inline;
        float: left;
        width: 63.88889%;
        margin: 0 1.38889%;
        margin-left: 9.72222%; } }

@media (max-width: 767px) and (orientation: portrait) {
  .page-general-report .rh-info {
    display: inline;
    float: left;
    width: 97.22222%;
    margin: 0 1.38889%; } }
  .page-general-report .info-title {
    font-size: 2.813em;
    font-weight: 400;
    letter-spacing: 0.063em; }
    @media (max-width: 1023px) {
      .page-general-report .info-title {
        font-size: 2em; } }
    @media (max-width: 767px) {
      .page-general-report .info-title {
        font-size: 1.4em; } }
  .page-general-report .info-description {
    color: #c3c3c3;
    font-size: 1.250em;
    letter-spacing: 0.063em;
    line-height: 1.5;
    margin-bottom: 30px; }
    @media (max-width: 1023px) {
      .page-general-report .info-description {
        font-size: 1em; } }
    .page-general-report .info-description a {
      border-bottom: 2px solid #33ccff;
      color: #3cf;
      text-decoration: none; }
  .page-general-report .info-button {
    -ms-transition: background 0.3s, color 0.3s;
    -webkit-transition: background 0.3s, color 0.3s;
    -moz-transition: background 0.3s, color 0.3s;
    -o-transition: background 0.3s, color 0.3s;
    transition: background 0.3s, color 0.3s;
    -webkit-backface-visibility: hidden;
    border: 2px solid #06fbf2;
    color: inherit;
    display: inline-block;
    font-weight: 600;
    letter-spacing: 0.063em;
    line-height: 1;
    min-width: 260px;
    padding: 16px;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase; }
    .page-general-report .info-button:hover {
      color: #1a1e20;
      background: #06fbf2; }
    @media (max-width: 1023px) {
      .page-general-report .info-button {
        min-width: auto;
        width: 100%; } }

/* General Page: Full Page Image (tpl-general-full-image.php) */
.page-general-full-image {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background: #1a1e20; }
  @media (max-width: 767px) {
    .page-general-full-image {
      position: relative;
      top: auto;
      right: auto;
      bottom: auto;
      left: auto;
      height: 600px; } }

@media (max-width: 767px) and (orientation: landscape) {
  .page-general-full-image {
    height: 450px; } }
  .page-general-full-image .page-content {
    bottom: 134px;
    color: #FFF;
    position: absolute;
    z-index: 3;
    width: 100%; }
    @media (max-width: 767px) {
      .page-general-full-image .page-content {
        bottom: 0; } }
    .page-general-full-image .page-content .container {
      width: 990px; }
    .page-general-full-image .page-content .title {
      font-size: 2.813em;
      font-weight: 400;
      letter-spacing: 0.05em; }
      @media (max-width: 1024px) {
        .page-general-full-image .page-content .title {
          font-size: 2em; } }
      @media (max-width: 767px) {
        .page-general-full-image .page-content .title {
          font-size: 1.2em; } }
    .page-general-full-image .page-content p {
      font-size: 1.250em;
      letter-spacing: 1px;
      text-align: justify; }
      @media (max-width: 1024px) {
        .page-general-full-image .page-content p {
          font-size: 1em; } }
      @media (max-width: 767px) {
        .page-general-full-image .page-content p {
          font-size: .9em;
          line-height: 1.2; } }
    .page-general-full-image .page-content .button {
      -ms-transition: border 0.3s, background 0.3s;
      -webkit-transition: border 0.3s, background 0.3s;
      -moz-transition: border 0.3s, background 0.3s;
      -o-transition: border 0.3s, background 0.3s;
      transition: border 0.3s, background 0.3s;
      -webkit-backface-visibility: hidden;
      border: 2px solid #06fbf2;
      color: inherit;
      display: inline-block;
      font-weight: 600;
      letter-spacing: 1px;
      line-height: 1;
      margin-bottom: 3em;
      min-width: 260px;
      padding: 17px;
      text-align: center;
      text-decoration: none;
      text-transform: uppercase; }
      .page-general-full-image .page-content .button:hover {
        color: #1a1e20;
        background: #06fbf2; }
      @media (max-width: 767px) {
        .page-general-full-image .page-content .button {
          font-size: .8em;
          padding: 10px;
          width: 100%;
          margin-bottom: 2em; } }
  .page-general-full-image .background {
    bottom: 0;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    background-position: center center;
    background-size: cover;
    z-index: 1; }
  .page-general-full-image .fade {
    bottom: 0;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    background: -moz-linear-gradient(top, transparent 30%, rgba(0, 0, 0, 0.8) 90%);
    background: -webkit-linear-gradient(top, transparent 30%, rgba(0, 0, 0, 0.8) 90%);
    background: linear-gradient(to bottom, transparent 30%, rgba(0, 0, 0, 0.8) 90%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#a6000000',GradientType=0 );
    z-index: 2; }

.page-template-tpl-general-full-image {
  height: 100vh; }
  @media (max-width: 767px) {
    .page-template-tpl-general-full-image {
      height: auto; } }
  .page-template-tpl-general-full-image .site-footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    z-index: 3;
    border-top: 7px solid #0ff; }
    @media (max-width: 767px) {
      .page-template-tpl-general-full-image .site-footer {
        position: relative;
        bottom: auto; } }

/* General Page: Poster (page.php) */
.page-general .article-poster img {
  display: block;
  max-width: 100%;
  vertical-align: top; }

.page-general article.poster {
  background: #e7e7e7;
  padding: 60px 0; }
  @media (max-width: 767px) {
    .page-general article.poster {
      padding: 40px 0; } }
  .page-general article.poster .article-content {
    background: #FFF;
    width: 1400px;
    max-width: 90%;
    margin: 0 auto; }

/* Item Lists (Opportunities, Projects)
--------------------------------------------------------------- */
.page-item-list {
  background: #efefef;
  position: relative; }
  .page-item-list .page-title {
    font-size: 1.375em;
    letter-spacing: 0.1em;
    padding: 2em 0;
    text-align: center;
    text-transform: uppercase; }
  .page-item-list .list-items-featured {
    background: #1a1e20;
    color: #FFF; }
    .page-item-list .list-items-featured .featured-item {
      position: relative;
      display: inline;
      float: left;
      width: 30.55556%;
      margin: 0 1.38889%;
      margin-bottom: 2em;
      position: relative; }
      .page-item-list .list-items-featured .featured-item:before {
        display: block;
        content: "";
        width: 100%;
        padding-top: 50%; }
      @media (max-width: 1023px) {
        .page-item-list .list-items-featured .featured-item {
          display: inline;
          float: left;
          width: 47.22222%;
          margin: 0 1.38889%;
          margin-bottom: 2em; } }
      @media (max-width: 767px) {
        .page-item-list .list-items-featured .featured-item {
          display: none; } }
  .page-item-list .featured-item {
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    overflow: hidden;
    background: #1a1e20;
    -ms-transition: background 0.3s;
    -webkit-transition: background 0.3s;
    -moz-transition: background 0.3s;
    -o-transition: background 0.3s;
    transition: background 0.3s;
    -webkit-backface-visibility: hidden; }
    .page-item-list .featured-item:hover {
      background: #42e0ff; }
  .page-item-list .fi-background {
    bottom: 0;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    background-position: center center;
    background-size: cover;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    -ms-transition: all 0.6s ease-in-out;
    -webkit-transition: all 0.6s ease-in-out;
    -moz-transition: all 0.6s ease-in-out;
    -o-transition: all 0.6s ease-in-out;
    transition: all 0.6s ease-in-out;
    -webkit-backface-visibility: hidden;
    opacity: .5;
    z-index: 0; }
  .page-item-list .fi-title {
    font-size: 1.250em;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase; }
  .page-item-list .fi-action {
    border-bottom: 4px solid #42e0ff;
    display: inline-block;
    font-size: 0.875em;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase; }
  .page-item-list .fi-link {
    bottom: 0;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    display: block;
    z-index: 4; }
  .page-item-list .list-items {
    padding: 2em 0; }
    @media (min-width: 1400px) {
      .page-item-list .list-items .column-filter {
        display: inline;
        float: left;
        width: 22.22222%;
        margin: 0 1.38889%; } }

@media (min-width: 1024px) and (max-width: 1399px) {
  .page-item-list .list-items .column-filter {
    display: inline;
    float: left;
    width: 30.55556%;
    margin: 0 1.38889%; } }
    @media (min-width: 1400px) {
      .page-item-list .list-items .column-items {
        display: inline;
        float: left;
        width: 72.22222%;
        margin: 0 1.38889%; }
        .page-item-list .list-items .column-items .inner-row {
          display: block;
          width: 103.7037%;
          margin: 0 -1.85185%;
          *zoom: 1; }
          .page-item-list .list-items .column-items .inner-row:before, .page-item-list .list-items .column-items .inner-row:after {
            content: "";
            display: table; }
          .page-item-list .list-items .column-items .inner-row:after {
            clear: both; }
        .page-item-list .list-items .column-items .item {
          display: inline;
          float: left;
          width: 29.62963%;
          margin: 0 1.85185%;
          margin-bottom: 2em; } }

@media (min-width: 1024px) and (max-width: 1399px) {
  .page-item-list .list-items .column-items {
    display: inline;
    float: left;
    width: 63.88889%;
    margin: 0 1.38889%; }
    .page-item-list .list-items .column-items .inner-row {
      display: block;
      width: 104.16667%;
      margin: 0 -2.08333%;
      *zoom: 1; }
      .page-item-list .list-items .column-items .inner-row:before, .page-item-list .list-items .column-items .inner-row:after {
        content: "";
        display: table; }
      .page-item-list .list-items .column-items .inner-row:after {
        clear: both; }
    .page-item-list .list-items .column-items .item {
      display: inline;
      float: left;
      width: 45.83333%;
      margin: 0 2.08333%;
      margin-bottom: 2em; } }
    @media (max-width: 1023px) {
      .page-item-list .list-items .column-items {
        display: inline;
        float: left;
        width: 97.22222%;
        margin: 0 1.38889%; }
        .page-item-list .list-items .column-items .inner-row {
          display: block;
          width: 102.77778%;
          margin: 0 -1.38889%;
          *zoom: 1; }
          .page-item-list .list-items .column-items .inner-row:before, .page-item-list .list-items .column-items .inner-row:after {
            content: "";
            display: table; }
          .page-item-list .list-items .column-items .inner-row:after {
            clear: both; }
        .page-item-list .list-items .column-items .item {
          display: inline;
          float: left;
          width: 47.22222%;
          margin: 0 1.38889%;
          margin-bottom: 2em; } }

@media (max-width: 767px) and (orientation: portrait) {
  .page-item-list .list-items .column-items .item {
    display: inline;
    float: left;
    width: 97.22222%;
    margin: 0 1.38889%;
    margin-bottom: 2em; } }
  .page-item-list .column-items-header {
    *zoom: 1;
    margin-bottom: 1em; }
    .page-item-list .column-items-header:before, .page-item-list .column-items-header:after {
      content: "";
      display: table; }
    .page-item-list .column-items-header:after {
      clear: both; }
    .page-item-list .column-items-header .title {
      margin-bottom: .5em;
      font-size: 1.250em;
      text-transform: uppercase;
      color: #1a1e20;
      letter-spacing: .5px; }
  .page-item-list #filter-clear {
    color: #1a1e20;
    font-size: 0.875em;
    font-weight: 700;
    letter-spacing: .5px;
    text-decoration: none;
    text-transform: uppercase; }
    .page-item-list #filter-clear span {
      -ms-transition: background 0.3s ease-in-out;
      -webkit-transition: background 0.3s ease-in-out;
      -moz-transition: background 0.3s ease-in-out;
      -o-transition: background 0.3s ease-in-out;
      transition: background 0.3s ease-in-out;
      -webkit-backface-visibility: hidden;
      background: #000;
      display: inline-block;
      height: 25px;
      position: relative;
      vertical-align: middle;
      width: 25px; }
      .page-item-list #filter-clear span:before, .page-item-list #filter-clear span:after {
        background: #FFF;
        content: "";
        display: block;
        height: 17px;
        position: absolute;
        top: 4px;
        width: 1px; }
      .page-item-list #filter-clear span:before {
        left: 12px;
        -webkit-transform: rotate(45deg);
        -moz-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        transform: rotate(45deg); }
      .page-item-list #filter-clear span:after {
        right: 12px;
        -webkit-transform: rotate(-45deg);
        -moz-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
        transform: rotate(-45deg); }
    .page-item-list #filter-clear:hover span {
      background: #cc0000; }
  .page-item-list #filter-sort {
    -webkit-appearance: none;
    appearance: none;
    background: #FFF url("../img/ico-select-alt.svg") right 10px center no-repeat;
    border-radius: 0;
    border: 0;
    color: #1a1e20;
    cursor: pointer;
    float: right;
    font-size: 0.875em;
    font-weight: 700;
    letter-spacing: .5px;
    line-height: 1;
    margin-bottom: 1em;
    padding: 10px 40px 10px 20px; }
  .page-item-list #filter-trigger {
    background: #1a1e20;
    color: #FFF;
    cursor: pointer;
    display: none;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 2em;
    padding: 1em;
    text-transform: uppercase; }
    @media (max-width: 1023px) {
      .page-item-list #filter-trigger {
        display: block; } }
    .page-item-list #filter-trigger i {
      display: inline-block;
      font-size: 1.4em;
      margin-right: 10px;
      vertical-align: middle; }
  .page-item-list .item {
    *zoom: 1;
    background: #FFF;
    box-shadow: 2px 2px 0 0 #d9d9d9;
    color: #1a1e20;
    line-height: 1;
    padding: 1.5em 2em 4em 2em;
    position: relative; }
    .page-item-list .item:before, .page-item-list .item:after {
      content: "";
      display: table; }
    .page-item-list .item:after {
      clear: both; }
  .page-item-list .i-image {
    position: relative;
    background-color: #1a1e20;
    background-position: center center;
    background-size: cover;
    margin: -1.5em -2em 1em -2em;
    position: relative; }
    .page-item-list .i-image:before {
      display: block;
      content: "";
      width: 100%;
      padding-top: 50%; }
  .page-item-list .i-category {
    bottom: 0;
    display: block;
    left: 0;
    position: absolute;
    right: 0;
    text-align: center; }
    .page-item-list .i-category span {
      background: #FFF;
      display: inline-block;
      font-size: 0.938em;
      font-weight: 600;
      padding: 6px 12px 0 12px;
      max-width: 90%;
      overflow: hidden;
      text-overflow: ellipsis;
      vertical-align: bottom;
      white-space: nowrap; }
  .page-item-list .i-title {
    float: left;
    font-size: 1.313em;
    font-weight: 700;
    line-height: inherit;
    margin-bottom: 20px;
    text-transform: uppercase;
    width: 100%; }
  .page-item-list .i-goal {
    color: #00bbdd;
    float: left;
    font-size: 1.125em;
    font-weight: 700;
    text-align: center;
    width: 100%; }
  .page-item-list .i-date,
  .page-item-list .i-location {
    float: left;
    font-size: 0.938em;
    font-weight: 600;
    margin: 0 0 12px 0;
    min-height: 33px;
    padding: 8px 0 0 46px;
    position: relative;
    width: 100%; }
    .page-item-list .i-date:before,
    .page-item-list .i-location:before {
      content: "";
      display: block;
      height: 33px;
      left: 0;
      position: absolute;
      top: 0;
      width: 33px; }
  .page-item-list .i-date:before {
    background: url("../img/ico-calendar.svg") left no-repeat; }
  .page-item-list .i-location:before {
    background: url("../img/ico-map-pin.svg") left no-repeat; }
  .page-item-list .i-description {
    float: left;
    font-size: 0.875em;
    letter-spacing: .5px;
    line-height: 1.2;
    margin: 1em 0 3.5em 0;
    width: 100%; }
    .page-item-list .i-description p {
      margin: 0; }
  .page-item-list .i-button {
    -ms-transition: background 0.3s, color 0.3s;
    -webkit-transition: background 0.3s, color 0.3s;
    -moz-transition: background 0.3s, color 0.3s;
    -o-transition: background 0.3s, color 0.3s;
    transition: background 0.3s, color 0.3s;
    -webkit-backface-visibility: hidden;
    background: #33ccff;
    border: 2px solid #33ccff;
    color: #efefef;
    display: block;
    font-size: 1.125em;
    font-weight: 700;
    letter-spacing: 0.1em;
    padding: 16px;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    position: absolute;
    bottom: 2.8em;
    left: 1.8em;
    right: 1.8em; }
    .page-item-list .i-button:hover {
      background: #FFF;
      color: #33ccff; }
  .page-item-list .i-sub-button {
    color: inherit;
    display: block;
    float: left;
    font-size: 0.938em;
    font-weight: 600;
    letter-spacing: 0.1em;
    margin: 10px;
    text-align: center;
    text-decoration: none;
    width: 100%;
    width: 94%;
    position: absolute;
    bottom: .7em;
    left: 0; }
  @media (max-width: 1023px) {
    .page-item-list .column-filter {
      -ms-transition: left 0.3s ease-in-out, right 0.3s ease-in-out, opacity 0.3s 0.3s;
      -webkit-transition: left 0.3s ease-in-out, right 0.3s ease-in-out, opacity 0.3s 0.3s;
      -moz-transition: left 0.3s ease-in-out, right 0.3s ease-in-out, opacity 0.3s 0.3s;
      -o-transition: left 0.3s ease-in-out, right 0.3s ease-in-out, opacity 0.3s 0.3s;
      transition: left 0.3s ease-in-out, right 0.3s ease-in-out, opacity 0.3s 0.3s;
      -webkit-backface-visibility: hidden;
      background: #1a1e20;
      bottom: 0;
      cursor: pointer;
      display: block;
      float: none;
      height: 100vh;
      left: -80vw;
      margin: 0;
      opacity: 0;
      overflow: hidden;
      position: fixed;
      top: 0;
      width: 80vw;
      z-index: 1000; }
      .page-item-list .column-filter.active {
        -ms-transition: left 0.3s ease-in-out, right 0.3s ease-in-out;
        -webkit-transition: left 0.3s ease-in-out, right 0.3s ease-in-out;
        -moz-transition: left 0.3s ease-in-out, right 0.3s ease-in-out;
        -o-transition: left 0.3s ease-in-out, right 0.3s ease-in-out;
        transition: left 0.3s ease-in-out, right 0.3s ease-in-out;
        -webkit-backface-visibility: hidden;
        left: 0vw;
        opacity: 1; }
      .page-item-list .column-filter .overflow {
        -webkit-overflow-scrolling: touch;
        max-height: 100%;
        overflow-x: hidden;
        overflow-y: auto;
        position: relative; } }
  .page-item-list .column-filter .results-filter-header {
    *zoom: 1;
    display: none;
    padding: 2em 2em 0 2em; }
    .page-item-list .column-filter .results-filter-header:before, .page-item-list .column-filter .results-filter-header:after {
      content: "";
      display: table; }
    .page-item-list .column-filter .results-filter-header:after {
      clear: both; }
    @media (max-width: 1023px) {
      .page-item-list .column-filter .results-filter-header {
        display: block; } }
    .page-item-list .column-filter .results-filter-header #filter-close {
      -ms-transition: background 0.3s ease-in-out;
      -webkit-transition: background 0.3s ease-in-out;
      -moz-transition: background 0.3s ease-in-out;
      -o-transition: background 0.3s ease-in-out;
      transition: background 0.3s ease-in-out;
      -webkit-backface-visibility: hidden;
      border: 2px solid #FFF;
      cursor: pointer;
      cursor: pointer;
      display: block;
      float: right;
      height: 42px;
      opacity: 1;
      overflow: hidden;
      position: relative;
      text-indent: 100%;
      white-space: nowrap;
      width: 42px;
      z-index: 100; }
      .page-item-list .column-filter .results-filter-header #filter-close:before, .page-item-list .column-filter .results-filter-header #filter-close:after {
        -ms-transition: background 0.3s ease-in-out;
        -webkit-transition: background 0.3s ease-in-out;
        -moz-transition: background 0.3s ease-in-out;
        -o-transition: background 0.3s ease-in-out;
        transition: background 0.3s ease-in-out;
        -webkit-backface-visibility: hidden;
        background: #FFF;
        content: "";
        display: block;
        height: 30px;
        position: absolute;
        top: 4px;
        width: 2px; }
      .page-item-list .column-filter .results-filter-header #filter-close:before {
        left: 18px;
        -webkit-transform: rotate(45deg);
        -moz-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        transform: rotate(45deg); }
      .page-item-list .column-filter .results-filter-header #filter-close:after {
        right: 18px;
        -webkit-transform: rotate(-45deg);
        -moz-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
        transform: rotate(-45deg); }
      .page-item-list .column-filter .results-filter-header #filter-close:hover {
        background: #FFF; }
        .page-item-list .column-filter .results-filter-header #filter-close:hover:before, .page-item-list .column-filter .results-filter-header #filter-close:hover:after {
          background: #000; }
  .page-item-list .column-filter .widget {
    background: #1a1e20;
    color: #FFF;
    margin-bottom: 2em;
    padding: 20px 20px 20px 20px; }
  .page-item-list .column-filter .widget-title {
    color: #efefef;
    line-height: 1;
    padding: 10px 0 30px 0;
    text-align: center;
    text-transform: uppercase; }
    .page-item-list .column-filter .widget-title.border {
      border-bottom: 2px solid #FFF;
      margin-bottom: 15px; }
  .page-item-list .column-filter form .form-element {
    margin-bottom: 20px; }
    .page-item-list .column-filter form .form-element:last-of-type {
      margin-bottom: 0; }
    .page-item-list .column-filter form .form-element.light-background {
      background: #333738;
      margin-left: -20px;
      margin-right: -20px;
      padding: 20px 20px; }
      .page-item-list .column-filter form .form-element.light-background:last-of-type {
        margin-bottom: -20px; }
  .page-item-list .column-filter form select,
  .page-item-list .column-filter form input,
  .page-item-list .column-filter form textarea,
  .page-item-list .column-filter form button {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    border: none;
    color: #000;
    font: inherit;
    line-height: 1; }
    .page-item-list .column-filter form select:focus, .page-item-list .column-filter form select:active,
    .page-item-list .column-filter form input:focus,
    .page-item-list .column-filter form input:active,
    .page-item-list .column-filter form textarea:focus,
    .page-item-list .column-filter form textarea:active,
    .page-item-list .column-filter form button:focus,
    .page-item-list .column-filter form button:active {
      outline: 0; }
  .page-item-list .column-filter form label {
    width: 100%;
    display: block; }
  .page-item-list .column-filter form select {
    position: relative;
    cursor: pointer;
    width: 100%;
    padding: 1em;
    background: #FFF url("../img/ico-select.svg") right 10px center no-repeat; }
  .page-item-list .column-filter form input[type=text],
  .page-item-list .column-filter form input[type=search],
  .page-item-list .column-filter form input[type=tel],
  .page-item-list .column-filter form input[type=password],
  .page-item-list .column-filter form input[type=email],
  .page-item-list .column-filter form input[type=submit],
  .page-item-list .column-filter form input[type=reset],
  .page-item-list .column-filter form button,
  .page-item-list .column-filter form textarea {
    padding: .75em 1em;
    box-sizing: border-box; }
  .page-item-list .column-filter form input[type=checkbox]:not(old),
  .page-item-list .column-filter form input[type=radio]:not(old) {
    font-size: 1em;
    margin: 0;
    opacity: 0;
    padding: 0;
    width: 2em; }
  .page-item-list .column-filter form input[type=checkbox]:not(old) + label,
  .page-item-list .column-filter form input[type=radio]:not(old) + label {
    display: inline-block;
    margin-left: -2em;
    line-height: 1.5em;
    cursor: pointer; }
  .page-item-list .column-filter form input[type=checkbox]:not(old) + label > span,
  .page-item-list .column-filter form input[type=radio]:not(old) + label > span {
    background: #FFF;
    border-radius: 50%;
    border: 0;
    display: inline-block;
    height: 1em;
    margin: 0.25em 0.5em 0.25em 0.25em;
    position: relative;
    vertical-align: bottom;
    width: 1em; }
  .page-item-list .column-filter form input[type=radio]:not(old):checked + label > span:before {
    background: #096475;
    border-radius: 50%;
    content: "";
    display: block;
    height: .75em;
    margin: .125em;
    width: .75em; }
  .page-item-list .column-filter form input[type=checkbox]:not(old):checked + label > span {
    background: #33ccff; }
    .page-item-list .column-filter form input[type=checkbox]:not(old):checked + label > span:before {
      border-radius: 50%;
      color: #1a1e20;
      content: '\f00c';
      display: block;
      font-family: "FontAwesome";
      font-size: .8em;
      height: 1.3em;
      line-height: 1.4em;
      text-align: center;
      width: 1.3em; }
  .page-item-list .column-filter form .range-element {
    position: relative;
    *zoom: 1; }
    .page-item-list .column-filter form .range-element:before, .page-item-list .column-filter form .range-element:after {
      content: "";
      display: table; }
    .page-item-list .column-filter form .range-element:after {
      clear: both; }
    .page-item-list .column-filter form .range-element .input {
      float: left;
      position: relative;
      width: 80%; }
    .page-item-list .column-filter form .range-element .output {
      float: left;
      font-weight: 600;
      line-height: 1;
      position: relative;
      text-align: right;
      width: 20%; }
  .page-item-list .column-filter form input[type=range] {
    -webkit-appearance: none;
    margin: 0;
    width: 100%; }
  .page-item-list .column-filter form input[type=range]:focus {
    outline: 0; }
  .page-item-list .column-filter form input[type=range]::-webkit-slider-runnable-track {
    animate: 0.2s;
    background: #5a5a5a;
    border-radius: 0;
    border: 0px solid #000101;
    cursor: pointer;
    height: 16px;
    width: 100%; }
  .page-item-list .column-filter form input[type=range]::-webkit-slider-thumb {
    -webkit-appearance: none;
    background-color: #FFF;
    border-radius: 0;
    border: 0;
    box-shadow: -6px 0 0 -2px #33ccff, -10px 0 0 -2px #33ccff, -14px 0 0 -2px #33ccff, -18px 0 0 -2px #33ccff, -22px 0 0 -2px #33ccff, -26px 0 0 -2px #33ccff, -30px 0 0 -2px #33ccff, -34px 0 0 -2px #33ccff, -38px 0 0 -2px #33ccff, -42px 0 0 -2px #33ccff, -46px 0 0 -2px #33ccff, -50px 0 0 -2px #33ccff, -54px 0 0 -2px #33ccff, -58px 0 0 -2px #33ccff, -62px 0 0 -2px #33ccff, -66px 0 0 -2px #33ccff, -70px 0 0 -2px #33ccff, -74px 0 0 -2px #33ccff, -78px 0 0 -2px #33ccff, -82px 0 0 -2px #33ccff, -86px 0 0 -2px #33ccff, -90px 0 0 -2px #33ccff, -94px 0 0 -2px #33ccff, -98px 0 0 -2px #33ccff, -102px 0 0 -2px #33ccff, -106px 0 0 -2px #33ccff, -110px 0 0 -2px #33ccff, -114px 0 0 -2px #33ccff, -118px 0 0 -2px #33ccff, -122px 0 0 -2px #33ccff, -126px 0 0 -2px #33ccff, -130px 0 0 -2px #33ccff, -134px 0 0 -2px #33ccff, -138px 0 0 -2px #33ccff, -142px 0 0 -2px #33ccff, -146px 0 0 -2px #33ccff, -150px 0 0 -2px #33ccff, -154px 0 0 -2px #33ccff, -158px 0 0 -2px #33ccff, -162px 0 0 -2px #33ccff, -166px 0 0 -2px #33ccff, -170px 0 0 -2px #33ccff, -174px 0 0 -2px #33ccff, -178px 0 0 -2px #33ccff, -182px 0 0 -2px #33ccff, -186px 0 0 -2px #33ccff, -190px 0 0 -2px #33ccff, -194px 0 0 -2px #33ccff, -198px 0 0 -2px #33ccff, -202px 0 0 -2px #33ccff, -206px 0 0 -2px #33ccff, -210px 0 0 -2px #33ccff, -214px 0 0 -2px #33ccff, -218px 0 0 -2px #33ccff, -222px 0 0 -2px #33ccff, -226px 0 0 -2px #33ccff, -230px 0 0 -2px #33ccff, -234px 0 0 -2px #33ccff, -238px 0 0 -2px #33ccff, -242px 0 0 -2px #33ccff, -246px 0 0 -2px #33ccff, -250px 0 0 -2px #33ccff, -254px 0 0 -2px #33ccff, -258px 0 0 -2px #33ccff, -262px 0 0 -2px #33ccff, -266px 0 0 -2px #33ccff, -270px 0 0 -2px #33ccff, -274px 0 0 -2px #33ccff, -278px 0 0 -2px #33ccff, -282px 0 0 -2px #33ccff, -286px 0 0 -2px #33ccff, -290px 0 0 -2px #33ccff, -294px 0 0 -2px #33ccff, -298px 0 0 -2px #33ccff, -302px 0 0 -2px #33ccff, -306px 0 0 -2px #33ccff, -310px 0 0 -2px #33ccff, -314px 0 0 -2px #33ccff, -318px 0 0 -2px #33ccff, -322px 0 0 -2px #33ccff, -326px 0 0 -2px #33ccff, -330px 0 0 -2px #33ccff, -334px 0 0 -2px #33ccff, -338px 0 0 -2px #33ccff, -342px 0 0 -2px #33ccff, -346px 0 0 -2px #33ccff, -350px 0 0 -2px #33ccff, -354px 0 0 -2px #33ccff, -358px 0 0 -2px #33ccff, -362px 0 0 -2px #33ccff, -366px 0 0 -2px #33ccff, -370px 0 0 -2px #33ccff, -374px 0 0 -2px #33ccff, -378px 0 0 -2px #33ccff, -382px 0 0 -2px #33ccff, -386px 0 0 -2px #33ccff, -390px 0 0 -2px #33ccff, -394px 0 0 -2px #33ccff, -398px 0 0 -2px #33ccff, -402px 0 0 -2px #33ccff, -406px 0 0 -2px #33ccff, -410px 0 0 -2px #33ccff, -414px 0 0 -2px #33ccff, -418px 0 0 -2px #33ccff, -422px 0 0 -2px #33ccff, -426px 0 0 -2px #33ccff, -430px 0 0 -2px #33ccff, -434px 0 0 -2px #33ccff, -438px 0 0 -2px #33ccff, -442px 0 0 -2px #33ccff, -446px 0 0 -2px #33ccff, -450px 0 0 -2px #33ccff, -454px 0 0 -2px #33ccff, -458px 0 0 -2px #33ccff, -462px 0 0 -2px #33ccff, -466px 0 0 -2px #33ccff, -470px 0 0 -2px #33ccff, -474px 0 0 -2px #33ccff, -478px 0 0 -2px #33ccff, -482px 0 0 -2px #33ccff, -486px 0 0 -2px #33ccff, -490px 0 0 -2px #33ccff, -494px 0 0 -2px #33ccff, -498px 0 0 -2px #33ccff, -502px 0 0 -2px #33ccff, -506px 0 0 -2px #33ccff, -510px 0 0 -2px #33ccff, -514px 0 0 -2px #33ccff, -518px 0 0 -2px #33ccff, -522px 0 0 -2px #33ccff, -526px 0 0 -2px #33ccff, -530px 0 0 -2px #33ccff, -534px 0 0 -2px #33ccff, -538px 0 0 -2px #33ccff, -542px 0 0 -2px #33ccff, -546px 0 0 -2px #33ccff, -550px 0 0 -2px #33ccff, -554px 0 0 -2px #33ccff, -558px 0 0 -2px #33ccff, -562px 0 0 -2px #33ccff, -566px 0 0 -2px #33ccff, -570px 0 0 -2px #33ccff, -574px 0 0 -2px #33ccff, -578px 0 0 -2px #33ccff, -582px 0 0 -2px #33ccff, -586px 0 0 -2px #33ccff, -590px 0 0 -2px #33ccff, -594px 0 0 -2px #33ccff, -598px 0 0 -2px #33ccff, -602px 0 0 -2px #33ccff, -606px 0 0 -2px #33ccff;
    cursor: pointer;
    height: 20px;
    margin: -2px 0;
    position: relative;
    width: 8px;
    z-index: 2; }
  .page-item-list .column-filter form input[type=range]:focus::-webkit-slider-runnable-track {
    background: #5a5a5a; }
  .page-item-list .column-filter form input[type=range]::-moz-range-track {
    animate: 0.2s;
    background: #5a5a5a;
    border-radius: 0;
    border: 0px solid #000101;
    box-shadow: 0px 0px 0px #000000, 0px 0px 0px #0d0d0d;
    cursor: pointer;
    height: 16px;
    width: 100%; }
  .page-item-list .column-filter form input[type=range]::-moz-range-thumb {
    -moz-appearance: none;
    background-color: #FFF;
    border-radius: 0;
    border: 0;
    box-shadow: -6px 0 0 -1px #33ccff, -11px 0 0 -1px #33ccff, -16px 0 0 -1px #33ccff, -21px 0 0 -1px #33ccff, -26px 0 0 -1px #33ccff, -31px 0 0 -1px #33ccff, -36px 0 0 -1px #33ccff, -41px 0 0 -1px #33ccff, -46px 0 0 -1px #33ccff, -51px 0 0 -1px #33ccff, -56px 0 0 -1px #33ccff, -61px 0 0 -1px #33ccff, -66px 0 0 -1px #33ccff, -71px 0 0 -1px #33ccff, -76px 0 0 -1px #33ccff, -81px 0 0 -1px #33ccff, -86px 0 0 -1px #33ccff, -91px 0 0 -1px #33ccff, -96px 0 0 -1px #33ccff, -101px 0 0 -1px #33ccff, -106px 0 0 -1px #33ccff, -111px 0 0 -1px #33ccff, -116px 0 0 -1px #33ccff, -121px 0 0 -1px #33ccff, -126px 0 0 -1px #33ccff, -131px 0 0 -1px #33ccff, -136px 0 0 -1px #33ccff, -141px 0 0 -1px #33ccff, -146px 0 0 -1px #33ccff, -151px 0 0 -1px #33ccff, -156px 0 0 -1px #33ccff, -161px 0 0 -1px #33ccff, -166px 0 0 -1px #33ccff, -171px 0 0 -1px #33ccff, -176px 0 0 -1px #33ccff, -181px 0 0 -1px #33ccff, -186px 0 0 -1px #33ccff, -191px 0 0 -1px #33ccff, -196px 0 0 -1px #33ccff, -201px 0 0 -1px #33ccff, -206px 0 0 -1px #33ccff, -211px 0 0 -1px #33ccff, -216px 0 0 -1px #33ccff, -221px 0 0 -1px #33ccff, -226px 0 0 -1px #33ccff, -231px 0 0 -1px #33ccff, -236px 0 0 -1px #33ccff, -241px 0 0 -1px #33ccff, -246px 0 0 -1px #33ccff, -251px 0 0 -1px #33ccff, -256px 0 0 -1px #33ccff, -261px 0 0 -1px #33ccff, -266px 0 0 -1px #33ccff, -271px 0 0 -1px #33ccff, -276px 0 0 -1px #33ccff, -281px 0 0 -1px #33ccff, -286px 0 0 -1px #33ccff, -291px 0 0 -1px #33ccff, -296px 0 0 -1px #33ccff, -301px 0 0 -1px #33ccff, -306px 0 0 -1px #33ccff, -311px 0 0 -1px #33ccff, -316px 0 0 -1px #33ccff, -321px 0 0 -1px #33ccff, -326px 0 0 -1px #33ccff, -331px 0 0 -1px #33ccff, -336px 0 0 -1px #33ccff, -341px 0 0 -1px #33ccff, -346px 0 0 -1px #33ccff, -351px 0 0 -1px #33ccff, -356px 0 0 -1px #33ccff, -361px 0 0 -1px #33ccff, -366px 0 0 -1px #33ccff, -371px 0 0 -1px #33ccff, -376px 0 0 -1px #33ccff, -381px 0 0 -1px #33ccff, -386px 0 0 -1px #33ccff, -391px 0 0 -1px #33ccff, -396px 0 0 -1px #33ccff, -401px 0 0 -1px #33ccff, -406px 0 0 -1px #33ccff, -411px 0 0 -1px #33ccff, -416px 0 0 -1px #33ccff, -421px 0 0 -1px #33ccff, -426px 0 0 -1px #33ccff, -431px 0 0 -1px #33ccff, -436px 0 0 -1px #33ccff, -441px 0 0 -1px #33ccff, -446px 0 0 -1px #33ccff, -451px 0 0 -1px #33ccff, -456px 0 0 -1px #33ccff, -461px 0 0 -1px #33ccff, -466px 0 0 -1px #33ccff, -471px 0 0 -1px #33ccff, -476px 0 0 -1px #33ccff, -481px 0 0 -1px #33ccff, -486px 0 0 -1px #33ccff, -491px 0 0 -1px #33ccff, -496px 0 0 -1px #33ccff, -501px 0 0 -1px #33ccff, -506px 0 0 -1px #33ccff, -511px 0 0 -1px #33ccff, -516px 0 0 -1px #33ccff, -521px 0 0 -1px #33ccff, -526px 0 0 -1px #33ccff, -531px 0 0 -1px #33ccff, -536px 0 0 -1px #33ccff, -541px 0 0 -1px #33ccff, -546px 0 0 -1px #33ccff, -551px 0 0 -1px #33ccff, -556px 0 0 -1px #33ccff, -561px 0 0 -1px #33ccff, -566px 0 0 -1px #33ccff, -571px 0 0 -1px #33ccff, -576px 0 0 -1px #33ccff, -581px 0 0 -1px #33ccff, -586px 0 0 -1px #33ccff, -591px 0 0 -1px #33ccff, -596px 0 0 -1px #33ccff, -601px 0 0 -1px #33ccff, -606px 0 0 -1px #33ccff, -611px 0 0 -1px #33ccff, -616px 0 0 -1px #33ccff, -621px 0 0 -1px #33ccff, -626px 0 0 -1px #33ccff, -631px 0 0 -1px #33ccff, -636px 0 0 -1px #33ccff, -641px 0 0 -1px #33ccff, -646px 0 0 -1px #33ccff, -651px 0 0 -1px #33ccff, -656px 0 0 -1px #33ccff, -661px 0 0 -1px #33ccff, -666px 0 0 -1px #33ccff, -671px 0 0 -1px #33ccff, -676px 0 0 -1px #33ccff, -681px 0 0 -1px #33ccff, -686px 0 0 -1px #33ccff, -691px 0 0 -1px #33ccff, -696px 0 0 -1px #33ccff, -701px 0 0 -1px #33ccff, -706px 0 0 -1px #33ccff, -711px 0 0 -1px #33ccff, -716px 0 0 -1px #33ccff, -721px 0 0 -1px #33ccff, -726px 0 0 -1px #33ccff, -731px 0 0 -1px #33ccff, -736px 0 0 -1px #33ccff, -741px 0 0 -1px #33ccff, -746px 0 0 -1px #33ccff, -751px 0 0 -1px #33ccff, -756px 0 0 -1px #33ccff;
    cursor: pointer;
    height: 20px;
    margin: -2px 0;
    position: relative;
    width: 8px;
    z-index: 2; }
  .page-item-list .column-filter form input[type=range]::-ms-track {
    animate: 0.2s;
    background: transparent;
    border-color: transparent;
    border-width: 39px 0;
    color: transparent;
    cursor: pointer;
    height: 16px;
    width: 100%; }
  .page-item-list .column-filter form input[type=range]::-ms-fill-lower {
    background: #5a5a5a;
    border-radius: 50px;
    border: 0px solid #000101;
    box-shadow: 0px 0px 0px #000000, 0px 0px 0px #0d0d0d; }
  .page-item-list .column-filter form input[type=range]::-ms-fill-upper {
    background: #5a5a5a;
    border-radius: 50px;
    border: 0px solid #000101;
    box-shadow: 0px 0px 0px #000000, 0px 0px 0px #0d0d0d; }
  .page-item-list .column-filter form input[type=range]::-ms-thumb {
    box-shadow: 0px 0px 0px #000000, 0px 0px 0px #0d0d0d;
    border: 0px solid #000000;
    height: 20px;
    width: 39px;
    border-radius: 7px;
    background: #65001c;
    cursor: pointer; }
  .page-item-list .column-filter form input[type=range]:focus::-ms-fill-lower {
    background: #5a5a5a; }
  .page-item-list .column-filter form input[type=range]:focus::-ms-fill-upper {
    background: #5a5a5a; }
  .page-item-list .column-filter form label[for=range] {
    overflow-x: hidden; }
  .page-item-list .column-filter form .search-element {
    position: relative; }
    .page-item-list .column-filter form .search-element input[type=search] {
      background: transparent;
      border: 3px solid #f3f2f2;
      color: #FFF;
      padding-right: 4em;
      width: 100%; }
    .page-item-list .column-filter form .search-element input[type=submit] {
      -ms-transition: background 0.3s, color 0.3s;
      -webkit-transition: background 0.3s, color 0.3s;
      -moz-transition: background 0.3s, color 0.3s;
      -o-transition: background 0.3s, color 0.3s;
      transition: background 0.3s, color 0.3s;
      -webkit-backface-visibility: hidden;
      background: transparent;
      border: 3px solid #f3f2f2;
      bottom: 0;
      color: #FFF;
      font-family: "FontAwesome";
      font-size: 1.2em;
      line-height: .4em;
      padding: 0;
      position: absolute;
      right: 0;
      text-align: center;
      top: 0;
      width: 2.5em; }
      .page-item-list .column-filter form .search-element input[type=submit]:hover {
        background: #f3f2f2;
        color: #1a1e20; }

/* Item Detail Views (Opportunities, Projects)
--------------------------------------------------------------- */
.page-item-detail {
  background: #efefef;
  color: #1a1e20;
  position: relative; }
  .page-item-detail .back-link {
    background: #1a1e20;
    padding: 40px 0; }
    .page-item-detail .back-link a {
      -ms-transition: color 0.3s;
      -webkit-transition: color 0.3s;
      -moz-transition: color 0.3s;
      -o-transition: color 0.3s;
      transition: color 0.3s;
      -webkit-backface-visibility: hidden;
      color: #f3f2f2;
      font-size: 1.125em;
      font-weight: 700;
      letter-spacing: .5px;
      text-decoration: none;
      text-transform: uppercase; }
      .page-item-detail .back-link a i {
        -ms-transition: color 0.3s;
        -webkit-transition: color 0.3s;
        -moz-transition: color 0.3s;
        -o-transition: color 0.3s;
        transition: color 0.3s;
        -webkit-backface-visibility: hidden;
        color: #c2c2c2;
        display: inline-block;
        font-size: 3em;
        margin: -6px 10px 0 0;
        vertical-align: middle; }
      .page-item-detail .back-link a:hover {
        color: #3cc4f2; }
        .page-item-detail .back-link a:hover i {
          color: inherit; }
  .page-item-detail .item-content {
    padding: 50px 0;
    font-size: .8em; }
    @media (max-width: 767px) {
      .page-item-detail .item-content {
        font-size: 1em;
        padding: 2em 0; } }
    .page-item-detail .item-content .container {
      background: #FFF;
      width: 1160px;
      box-shadow: 2px 2px 0 0 #d9d9d9;
      padding: 3em 8em; }
      @media (max-width: 1023px) {
        .page-item-detail .item-content .container {
          padding: 2em; } }
    .page-item-detail .item-content h1.title {
      font-weight: 500;
      letter-spacing: 1px;
      text-align: center;
      margin-bottom: 60px; }
  .page-item-detail .info {
    align-items: center;
    border-bottom: 2px solid #f3f2f2;
    border-top: 2px solid #f3f2f2;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 50px;
    padding: 2em 0; }
    .page-item-detail .info .left {
      width: 60%; }
      @media (max-width: 767px) {
        .page-item-detail .info .left {
          width: 100%;
          margin-bottom: 2em; } }
    .page-item-detail .info .right {
      width: 35%; }
      @media (max-width: 767px) {
        .page-item-detail .info .right {
          width: 100%; } }
    .page-item-detail .info ul {
      padding: 0;
      margin: 0; }
      .page-item-detail .info ul li {
        padding: 0;
        margin: 0; }
        .page-item-detail .info ul li:before {
          display: none; }
        .page-item-detail .info ul li span {
          display: inline-block; }
        .page-item-detail .info ul li span:first-child {
          font-weight: 600; }
    .page-item-detail .info .button {
      -webkit-border-radius: 3px;
      -moz-border-radius: 3px;
      border-radius: 3px;
      -ms-transition: background 0.3s, color 0.3s;
      -webkit-transition: background 0.3s, color 0.3s;
      -moz-transition: background 0.3s, color 0.3s;
      -o-transition: background 0.3s, color 0.3s;
      transition: background 0.3s, color 0.3s;
      -webkit-backface-visibility: hidden;
      background: #33ccff;
      border: 2px solid #33ccff;
      color: #efefef;
      display: block;
      font-size: 1.4em;
      font-weight: 700;
      letter-spacing: .5px;
      line-height: 1;
      padding: 14px 0;
      text-align: center;
      text-decoration: none;
      text-transform: uppercase; }
      .page-item-detail .info .button:hover {
        background: #FFF;
        color: #33ccff; }
  .page-item-detail .main {
    float: left;
    width: 60%; }
    @media (max-width: 767px) {
      .page-item-detail .main {
        width: 100%; } }
    .page-item-detail .main .image {
      margin-bottom: 2em; }
    .page-item-detail .main h1, .page-item-detail .main h2, .page-item-detail .main h3, .page-item-detail .main h4, .page-item-detail .main h5, .page-item-detail .main h6 {
      margin-bottom: 20px; }
  .page-item-detail .sidebar {
    float: right;
    width: 35%; }
    @media (max-width: 767px) {
      .page-item-detail .sidebar {
        width: 100%; } }

/* People Groups (List View)
--------------------------------------------------------------- */
.page-people-group-list {
  background: #FFF; }
  .page-people-group-list .header .map {
    background: #ececec url("../img/world-map.svg") center center no-repeat;
    background-size: 1182px 686px;
    position: relative;
    height: 780px; }
    @media (max-width: 1024px) {
      .page-people-group-list .header .map {
        background-size: 886.5px 514.5px;
        height: 600px; } }
    @media (max-width: 768px) {
      .page-people-group-list .header .map {
        background-size: 591px 343px;
        height: 400px; } }
    @media (max-width: 375px) {
      .page-people-group-list .header .map {
        background-size: 295.5px 171.5px;
        height: 250px; } }
    .page-people-group-list .header .map .points {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%); }
    .page-people-group-list .header .map .point {
      position: absolute;
      background: #FFF;
      border: 2px solid #00bbdd;
      border-radius: 50%;
      color: #000;
      display: block;
      font-size: 1.500em;
      font-weight: 600;
      text-align: center;
      text-decoration: none;
      -ms-transition: background 0.3s, color 0.3s;
      -webkit-transition: background 0.3s, color 0.3s;
      -moz-transition: background 0.3s, color 0.3s;
      -o-transition: background 0.3s, color 0.3s;
      transition: background 0.3s, color 0.3s;
      -webkit-backface-visibility: hidden;
      white-space: nowrap;
      overflow: hidden;
      height: 46px;
      width: 46px;
      line-height: 40px;
      -webkit-font-feature-settings: 'lnum';
      -moz-font-feature-settings: 'lnum';
      -ms-font-feature-settings: 'lnum';
      font-feature-settings: 'lnum'; }
      @media (max-width: 1024px) {
        .page-people-group-list .header .map .point {
          height: 34.5px;
          width: 34.5px;
          line-height: 30px;
          font-size: 1em; } }
      @media (max-width: 768px) {
        .page-people-group-list .header .map .point {
          height: 23px;
          width: 23px;
          line-height: 20px;
          font-size: .8em; } }
      @media (max-width: 375px) {
        .page-people-group-list .header .map .point {
          height: 13.8px;
          width: 13.8px;
          line-height: 12px;
          border: 4px solid #00bbdd;
          font-size: 1em;
          text-indent: 100px; } }
      .page-people-group-list .header .map .point:hover {
        background: #00bbdd;
        color: #FFF; }
    .page-people-group-list .header .map .point-1 {
      left: 0px;
      top: -127px; }
      @media (max-width: 1024px) {
        .page-people-group-list .header .map .point-1 {
          left: 0px;
          top: -95.25px; } }
      @media (max-width: 768px) {
        .page-people-group-list .header .map .point-1 {
          left: 0px;
          top: -63.5px; } }
      @media (max-width: 375px) {
        .page-people-group-list .header .map .point-1 {
          left: 0px;
          top: -31.75px; } }
    .page-people-group-list .header .map .point-2 {
      left: 50px;
      top: -15px; }
      @media (max-width: 1024px) {
        .page-people-group-list .header .map .point-2 {
          left: 37.5px;
          top: -11.25px; } }
      @media (max-width: 768px) {
        .page-people-group-list .header .map .point-2 {
          left: 25px;
          top: -7.5px; } }
      @media (max-width: 375px) {
        .page-people-group-list .header .map .point-2 {
          left: 12.5px;
          top: -3.75px; } }
    .page-people-group-list .header .map .point-3 {
      left: 18px;
      top: 45px; }
      @media (max-width: 1024px) {
        .page-people-group-list .header .map .point-3 {
          left: 13.5px;
          top: 33.75px; } }
      @media (max-width: 768px) {
        .page-people-group-list .header .map .point-3 {
          left: 9px;
          top: 22.5px; } }
      @media (max-width: 375px) {
        .page-people-group-list .header .map .point-3 {
          left: 4.5px;
          top: 11.25px; } }
    .page-people-group-list .header .map .point-4 {
      left: 153px;
      top: -70px; }
      @media (max-width: 1024px) {
        .page-people-group-list .header .map .point-4 {
          left: 114.75px;
          top: -52.5px; } }
      @media (max-width: 768px) {
        .page-people-group-list .header .map .point-4 {
          left: 76.5px;
          top: -35px; } }
      @media (max-width: 375px) {
        .page-people-group-list .header .map .point-4 {
          left: 38.25px;
          top: -17.5px; } }
    .page-people-group-list .header .map .point-5 {
      left: 225px;
      top: -20px; }
      @media (max-width: 1024px) {
        .page-people-group-list .header .map .point-5 {
          left: 168.75px;
          top: -15px; } }
      @media (max-width: 768px) {
        .page-people-group-list .header .map .point-5 {
          left: 112.5px;
          top: -10px; } }
      @media (max-width: 375px) {
        .page-people-group-list .header .map .point-5 {
          left: 56.25px;
          top: -5px; } }
    .page-people-group-list .header .map .point-6 {
      left: 310px;
      top: -70px; }
      @media (max-width: 1024px) {
        .page-people-group-list .header .map .point-6 {
          left: 232.5px;
          top: -52.5px; } }
      @media (max-width: 768px) {
        .page-people-group-list .header .map .point-6 {
          left: 155px;
          top: -35px; } }
      @media (max-width: 375px) {
        .page-people-group-list .header .map .point-6 {
          left: 77.5px;
          top: -17.5px; } }
    .page-people-group-list .header .map .point-7 {
      left: 335px;
      top: 18px; }
      @media (max-width: 1024px) {
        .page-people-group-list .header .map .point-7 {
          left: 251.25px;
          top: 13.5px; } }
      @media (max-width: 768px) {
        .page-people-group-list .header .map .point-7 {
          left: 167.5px;
          top: 9px; } }
      @media (max-width: 375px) {
        .page-people-group-list .header .map .point-7 {
          left: 83.75px;
          top: 4.5px; } }
    .page-people-group-list .header .map .point-8 {
      left: -325px;
      top: 28px; }
      @media (max-width: 1024px) {
        .page-people-group-list .header .map .point-8 {
          left: -243.75px;
          top: 21px; } }
      @media (max-width: 768px) {
        .page-people-group-list .header .map .point-8 {
          left: -162.5px;
          top: 14px; } }
      @media (max-width: 375px) {
        .page-people-group-list .header .map .point-8 {
          left: -81.25px;
          top: 7px; } }
    .page-people-group-list .header .map .point-9 {
      left: -250px;
      top: 170px; }
      @media (max-width: 1024px) {
        .page-people-group-list .header .map .point-9 {
          left: -187.5px;
          top: 127.5px; } }
      @media (max-width: 768px) {
        .page-people-group-list .header .map .point-9 {
          left: -125px;
          top: 85px; } }
      @media (max-width: 375px) {
        .page-people-group-list .header .map .point-9 {
          left: -62.5px;
          top: 42.5px; } }
    .page-people-group-list .header .map .point-9:after {
      content: "*";
      margin: 0 -4px 0 -4px; }
    .page-people-group-list .header .map p {
      position: absolute;
      bottom: 0; }
  .page-people-group-list .data-table {
    position: relative;
    z-index: 1;
    padding: 0 0 110px 0;
    text-align: center; }
    @media (max-width: 1023px) {
      .page-people-group-list .data-table {
        padding: 60px 0; } }
    .page-people-group-list .data-table .rtable td, .page-people-group-list .data-table .rtable th {
      width: 16.66667%; }
    .page-people-group-list .data-table .view-all {
      display: inline-block;
      margin: 60px auto 0 auto;
      text-transform: uppercase;
      font-size: 0.938em;
      text-transform: uppercase;
      letter-spacing: .5px;
      text-decoration: none;
      color: #1a1e20;
      font-weight: 500;
      border-bottom: 3px solid #33ccff; }
  @media (min-width: 768px) {
    .page-people-group-list .image-grid .container {
      width: 100%;
      max-width: 100%; }
    .page-people-group-list .image-grid .row {
      width: 100.5%;
      margin: 0 -.25%; }
    .page-people-group-list .image-grid .image {
      position: relative;
      float: left;
      width: 33.33333%;
      background: #494949;
      position: relative;
      overflow: hidden; }
      .page-people-group-list .image-grid .image:before {
        display: block;
        content: "";
        width: 100%;
        padding-top: 67.97753%; }
      .page-people-group-list .image-grid .image .background {
        bottom: 0;
        left: 0;
        position: absolute;
        right: 0;
        top: 0;
        background-position: center center;
        background-size: cover;
        -ms-transition: all 1s ease-in-out;
        -webkit-transition: all 1s ease-in-out;
        -moz-transition: all 1s ease-in-out;
        -o-transition: all 1s ease-in-out;
        transition: all 1s ease-in-out;
        -webkit-backface-visibility: hidden;
        border: 0;
        display: block;
        opacity: .69;
        z-index: 0; }
      .page-people-group-list .image-grid .image .title {
        -ms-transition: opacity 0.5s;
        -webkit-transition: opacity 0.5s;
        -moz-transition: opacity 0.5s;
        -o-transition: opacity 0.5s;
        transition: opacity 0.5s;
        -webkit-backface-visibility: hidden;
        background: rgba(255, 255, 255, 0.8);
        color: #1e1e1e;
        display: block;
        font-weight: 700;
        left: 50%;
        line-height: 1;
        opacity: 0;
        padding: 20px 15px;
        position: absolute;
        text-transform: uppercase;
        top: 50%;
        transform: translate(-50%, -50%);
        z-index: 1; }
      .page-people-group-list .image-grid .image .border {
        bottom: 0;
        left: 0;
        position: absolute;
        right: 0;
        top: 0;
        -ms-transition: border 0.5s;
        -webkit-transition: border 0.5s;
        -moz-transition: border 0.5s;
        -o-transition: border 0.5s;
        transition: border 0.5s;
        -webkit-backface-visibility: hidden;
        border: 0;
        display: block; }
    .page-people-group-list .image-grid .image:hover .border {
      border: 21px solid #06fbf2; }
    .page-people-group-list .image-grid .image:hover .background {
      opacity: 1;
      -webkit-transform: scale(1.05, 1.05);
      -ms-transform: scale(1.05, 1.05);
      -moz-transform: scale(1.05, 1.05);
      transform: scale(1.05, 1.05); }
    .page-people-group-list .image-grid .image:hover .title {
      opacity: 1; } }
  @media (max-width: 767px) {
    .page-people-group-list .image-grid .row {
      display: block;
      width: 102.77778%;
      margin: 0 -1.38889%;
      *zoom: 1; }
      .page-people-group-list .image-grid .row:before, .page-people-group-list .image-grid .row:after {
        content: "";
        display: table; }
      .page-people-group-list .image-grid .row:after {
        clear: both; }
    .page-people-group-list .image-grid .image {
      display: inline;
      float: left;
      width: 47.22222%;
      margin: 0 1.38889%;
      background: #494949;
      margin-bottom: 2em;
      overflow: hidden;
      position: relative;
      text-decoration: none; }
      .page-people-group-list .image-grid .image .background {
        position: relative;
        position: relative;
        background-position: center center;
        background-size: cover;
        -ms-transition: all 1s ease-in-out;
        -webkit-transition: all 1s ease-in-out;
        -moz-transition: all 1s ease-in-out;
        -o-transition: all 1s ease-in-out;
        transition: all 1s ease-in-out;
        -webkit-backface-visibility: hidden;
        display: block;
        opacity: .69; }
        .page-people-group-list .image-grid .image .background:before {
          display: block;
          content: "";
          width: 100%;
          padding-top: 67.97753%; }
      .page-people-group-list .image-grid .image .title {
        -ms-transition: opacity 0.5s;
        -webkit-transition: opacity 0.5s;
        -moz-transition: opacity 0.5s;
        -o-transition: opacity 0.5s;
        transition: opacity 0.5s;
        -webkit-backface-visibility: hidden;
        background: #FFF;
        color: #1e1e1e;
        display: block;
        font-size: .8em;
        font-weight: 700;
        line-height: 1;
        padding: 10px 0 0 0;
        position: relative;
        text-transform: uppercase; } }
    @media (max-width: 767px) and (max-width: 375px) {
      .page-people-group-list .image-grid .image .title {
        font-size: .7em;
        padding: 5px 0 0 0; } }
  @media (max-width: 767px) {
    .page-people-group-list .image-grid .image:hover .background {
      opacity: 1;
      -webkit-transform: scale(1.05, 1.05);
      -ms-transform: scale(1.05, 1.05);
      -moz-transform: scale(1.05, 1.05);
      transform: scale(1.05, 1.05); }
    .page-people-group-list .image-grid .image:hover .title {
      opacity: 1; } }

/* People Groups (Detail View)
--------------------------------------------------------------- */
.page-people-group-detail {
  background: #FFF; }
  .page-people-group-detail .pg-header {
    position: relative;
    overflow: hidden; }
    .page-people-group-detail .pg-header .container {
      min-height: 770px; }
      @media (max-width: 1024px) {
        .page-people-group-detail .pg-header .container {
          min-height: 0; } }
    .page-people-group-detail .pg-header .background {
      bottom: 0;
      left: 0;
      position: absolute;
      right: 0;
      top: 0;
      background-position: center center;
      background-size: cover;
      background-attachment: fixed; }
      @media (max-width: 1024px) {
        .page-people-group-detail .pg-header .background {
          position: relative;
          top: auto;
          right: auto;
          bottom: auto;
          left: auto;
          background-attachment: scroll;
          padding-top: 55%; } }
    .page-people-group-detail .pg-header .info-box {
      background: rgba(255, 255, 255, 0.9);
      color: #1a1e20;
      padding: 40px;
      position: absolute;
      top: 50%;
      -webkit-transform: translateY(-50%);
      transform: translateY(-50%);
      width: 30%;
      border-bottom: 11px solid #00bbdd; }
      @media (max-width: 1399px) {
        .page-people-group-detail .pg-header .info-box {
          width: 40%; } }
      @media (max-width: 1024px) {
        .page-people-group-detail .pg-header .info-box {
          width: 100%;
          position: relative;
          top: auto;
          transform: none;
          padding: 40px 0;
          border: 0; } }
      .page-people-group-detail .pg-header .info-box .title {
        font-size: 1.313em;
        font-weight: 600;
        letter-spacing: 0.1em;
        line-height: 1;
        margin: 0;
        text-transform: uppercase; }
      .page-people-group-detail .pg-header .info-box .description {
        font-size: 0.875em;
        line-height: 1.5; }
      .page-people-group-detail .pg-header .info-box .actions {
        display: block;
        margin: 0;
        padding: 0;
        display: block;
        width: 102.77778%;
        margin: 0 -1.38889%;
        *zoom: 1; }
        .page-people-group-detail .pg-header .info-box .actions:before, .page-people-group-detail .pg-header .info-box .actions:after {
          content: "";
          display: table; }
        .page-people-group-detail .pg-header .info-box .actions:after {
          clear: both; }
        .page-people-group-detail .pg-header .info-box .actions li {
          display: inline;
          float: left;
          width: 97.22222%;
          margin: 0 1.38889%;
          display: block;
          font-size: 0.750em;
          font-weight: 600;
          letter-spacing: 1px;
          margin-bottom: 20px;
          padding-left: 30px;
          position: relative;
          text-transform: uppercase; }
          .page-people-group-detail .pg-header .info-box .actions li.half {
            display: inline;
            float: left;
            width: 47.22222%;
            margin: 0 1.38889%;
            margin-bottom: 20px; }
            @media (max-width: 375px) {
              .page-people-group-detail .pg-header .info-box .actions li.half {
                display: inline;
                float: left;
                width: 97.22222%;
                margin: 0 1.38889%;
                margin-bottom: 20px; } }
          .page-people-group-detail .pg-header .info-box .actions li img {
            display: inline-block;
            vertical-align: middle;
            position: absolute;
            left: 0; }
          .page-people-group-detail .pg-header .info-box .actions li a {
            color: inherit;
            text-decoration: none; }
      .page-people-group-detail .pg-header .info-box .updates {
        margin-top: 10px; }
        .page-people-group-detail .pg-header .info-box .updates h3 {
          font-size: 0.875em;
          font-weight: 600;
          letter-spacing: 0.1em;
          line-height: 1;
          margin: 0;
          text-transform: uppercase; }
        .page-people-group-detail .pg-header .info-box .updates p {
          font-size: 0.875em;
          line-height: 1.5; }
        .page-people-group-detail .pg-header .info-box .updates form {
          position: relative; }
          .page-people-group-detail .pg-header .info-box .updates form input[type="text"],
          .page-people-group-detail .pg-header .info-box .updates form input[type="email"] {
            -webkit-appearance: none;
            appearance: none;
            background: #363636;
            border: 0;
            color: #FFF;
            font: inherit;
            font-size: 0.75em;
            font-weight: 600;
            letter-spacing: 1px;
            line-height: 1;
            padding: 15px 30% 15px 15px;
            text-transform: uppercase;
            width: 100%; }
          .page-people-group-detail .pg-header .info-box .updates form input[type="submit"] {
            -webkit-appearance: none;
            appearance: none;
            background: #00bbdd;
            border-radius: 0;
            border: 0;
            bottom: 0;
            color: #FFF;
            font-size: 0.875em;
            font-weight: 600;
            letter-spacing: 1px;
            position: absolute;
            right: 0;
            text-transform: uppercase;
            top: 0;
            width: 25%; }
    .page-people-group-detail .pg-header .social {
      position: absolute;
      z-index: 2;
      bottom: 40px;
      right: 40px; }
      .page-people-group-detail .pg-header .social a {
        display: block;
        width: 55px;
        height: 55px;
        line-height: 50px;
        font-size: 1.4em;
        color: #FFF;
        background: #1a1e20;
        border: 2px solid #fff;
        -webkit-border-radius: 50%;
        -moz-border-radius: 50%;
        border-radius: 50%;
        text-align: center;
        margin: 4px;
        -ms-transition: background 0.3s, color 0.3s;
        -webkit-transition: background 0.3s, color 0.3s;
        -moz-transition: background 0.3s, color 0.3s;
        -o-transition: background 0.3s, color 0.3s;
        transition: background 0.3s, color 0.3s;
        -webkit-backface-visibility: hidden; }
        .page-people-group-detail .pg-header .social a i {
          vertical-align: baseline; }
        .page-people-group-detail .pg-header .social a:hover {
          background: #FFF;
          color: #1a1e20; }
      @media (max-width: 1024px) {
        .page-people-group-detail .pg-header .social {
          bottom: 20px;
          right: 20px; }
          .page-people-group-detail .pg-header .social a {
            width: 40px;
            height: 40px;
            line-height: 36px;
            font-size: 1em; } }
      @media (max-width: 767px) {
        .page-people-group-detail .pg-header .social {
          display: none; } }
  .page-people-group-detail .pg-prayer-requests {
    background: #1a1e20;
    color: #FFF;
    padding: 45px 0; }
    .page-people-group-detail .pg-prayer-requests .cycle-arrow {
      display: inline;
      float: left;
      width: 5.55556%;
      margin: 0 1.38889%;
      cursor: pointer;
      height: 60px;
      overflow: hidden;
      position: relative;
      text-indent: 100%;
      white-space: nowrap; }
      @media (max-width: 767px) {
        .page-people-group-detail .pg-prayer-requests .cycle-arrow {
          display: none; } }
      .page-people-group-detail .pg-prayer-requests .cycle-arrow:hover:before, .page-people-group-detail .pg-prayer-requests .cycle-arrow:hover:after {
        background: #FFF; }
      .page-people-group-detail .pg-prayer-requests .cycle-arrow:before, .page-people-group-detail .pg-prayer-requests .cycle-arrow:after {
        -ms-transition: background 0.3s;
        -webkit-transition: background 0.3s;
        -moz-transition: background 0.3s;
        -o-transition: background 0.3s;
        transition: background 0.3s;
        -webkit-backface-visibility: hidden;
        background: #c2c2c2;
        content: "";
        height: 42px;
        position: absolute;
        top: 50%;
        width: 4px; }
      .page-people-group-detail .pg-prayer-requests .cycle-arrow.cycle-prev:before {
        left: 50%;
        -ms-transform: translateY(-34px) rotate(45deg);
        -webkit-transform: translateY(-34px) rotate(45deg);
        transform: translateY(-34px) rotate(45deg); }
      .page-people-group-detail .pg-prayer-requests .cycle-arrow.cycle-prev:after {
        left: 50%;
        -ms-transform: translateY(-7px) rotate(-45deg);
        -webkit-transform: translateY(-7px) rotate(-45deg);
        transform: translateY(-7px) rotate(-45deg); }
      .page-people-group-detail .pg-prayer-requests .cycle-arrow.cycle-next:before {
        right: 50%;
        -ms-transform: translateY(-34px) rotate(-45deg);
        -webkit-transform: translateY(-34px) rotate(-45deg);
        transform: translateY(-34px) rotate(-45deg); }
      .page-people-group-detail .pg-prayer-requests .cycle-arrow.cycle-next:after {
        right: 50%;
        -ms-transform: translateY(-7px) rotate(45deg);
        -webkit-transform: translateY(-7px) rotate(45deg);
        transform: translateY(-7px) rotate(45deg); }
    .page-people-group-detail .pg-prayer-requests .cycle-slideshow {
      display: inline;
      float: left;
      width: 63.88889%;
      margin: 0 1.38889%; }
      @media (max-width: 1399px) {
        .page-people-group-detail .pg-prayer-requests .cycle-slideshow {
          display: inline;
          float: left;
          width: 55.55556%;
          margin: 0 1.38889%; } }
      @media (max-width: 768px) {
        .page-people-group-detail .pg-prayer-requests .cycle-slideshow {
          display: inline;
          float: left;
          width: 47.22222%;
          margin: 0 1.38889%; } }
      @media (max-width: 767px) {
        .page-people-group-detail .pg-prayer-requests .cycle-slideshow {
          display: none; } }
    .page-people-group-detail .pg-prayer-requests .cycle-all {
      display: inline;
      float: left;
      width: 13.88889%;
      margin: 0 1.38889%;
      text-align: center; }
      @media (max-width: 1399px) {
        .page-people-group-detail .pg-prayer-requests .cycle-all {
          display: inline;
          float: left;
          width: 22.22222%;
          margin: 0 1.38889%; } }
      @media (max-width: 768px) {
        .page-people-group-detail .pg-prayer-requests .cycle-all {
          display: inline;
          float: left;
          width: 30.55556%;
          margin: 0 1.38889%; } }
      @media (max-width: 767px) {
        .page-people-group-detail .pg-prayer-requests .cycle-all {
          display: inline;
          float: left;
          width: 97.22222%;
          margin: 0 1.38889%; } }
    .page-people-group-detail .pg-prayer-requests .request {
      width: 100%;
      letter-spacing: 1px;
      line-height: 1.4; }
    .page-people-group-detail .pg-prayer-requests .all {
      display: inline-block;
      border-bottom: 3px solid #00ffff;
      color: #FFF;
      font-size: 0.938em;
      font-weight: 600;
      letter-spacing: 1px;
      line-height: 1.2;
      padding-bottom: 2px;
      text-decoration: none;
      text-transform: uppercase; }
      .page-people-group-detail .pg-prayer-requests .all:before {
        content: "All "; }
      @media (max-width: 767px) {
        .page-people-group-detail .pg-prayer-requests .all:before {
          content: "View "; } }
  .page-people-group-detail .pg-news {
    position: relative;
    display: -webkit-flex;
    display: flex;
    background: #f2f2f2;
    -webkit-flex-flow: row wrap;
    flex-flow: row wrap;
    -webkit-align-items: stretch;
    align-items: stretch;
    min-height: 500px; }
    .page-people-group-detail .pg-news .featured {
      position: relative;
      -webkit-flex: 1 40%;
      flex: 1 40%;
      padding: 50px; }
      @media (max-width: 767px) {
        .page-people-group-detail .pg-news .featured {
          padding: 30px; } }
      .page-people-group-detail .pg-news .featured .title {
        font-size: 0.875em;
        font-weight: 600;
        letter-spacing: 1px;
        text-transform: uppercase; }
      .page-people-group-detail .pg-news .featured ol {
        display: block;
        margin: 0;
        padding: 0;
        counter-reset: count; }
        .page-people-group-detail .pg-news .featured ol li {
          display: block;
          font-size: 1.250em;
          line-height: 1.2;
          padding: 15px 0 15px 45px;
          position: relative;
          min-height: 60px;
          border-bottom: 2px solid #c2c2c2; }
          .page-people-group-detail .pg-news .featured ol li:before {
            background: #FFF;
            border-radius: 50%;
            border: 2px solid #00bbdd;
            content: counter(count);
            counter-increment: count;
            display: block;
            -moz-font-feature-settings: 'lnum';
            -ms-font-feature-settings: 'lnum';
            -webkit-font-feature-settings: 'lnum';
            font-feature-settings: 'lnum';
            font-size: .750em;
            font-weight: 700;
            height: 32px;
            left: 0;
            letter-spacing: 1px;
            line-height: 28px;
            position: absolute;
            text-align: center;
            width: 32px; }
          .page-people-group-detail .pg-news .featured ol li a {
            color: inherit;
            text-decoration: none; }
        @media (max-width: 767px) {
          .page-people-group-detail .pg-news .featured ol li:nth-child(4),
          .page-people-group-detail .pg-news .featured ol li:nth-child(5) {
            display: none; } }
    .page-people-group-detail .pg-news .gallery {
      position: relative;
      -webkit-flex: 1 60%;
      flex: 1 60%; }
      @media (max-width: 767px) {
        .page-people-group-detail .pg-news .gallery {
          -webkit-flex: 1 100%;
          flex: 1 100%;
          min-height: 300px; } }
      .page-people-group-detail .pg-news .gallery .inner-flex {
        height: 100%;
        display: -webkit-flex;
        display: flex;
        -webkit-flex-flow: row wrap;
        flex-flow: row wrap;
        -webkit-align-items: stretch;
        align-items: stretch;
        -webkit-justify-content: flex-start;
        justify-content: flex-start; }
        @media (min-width: 1024px) {
          .page-people-group-detail .pg-news .gallery .inner-flex {
            min-height: 500px; } }
        @media (max-width: 1023px) {
          .page-people-group-detail .pg-news .gallery .inner-flex {
            min-height: 300px; } }
      .page-people-group-detail .pg-news .gallery .image {
        -webkit-flex: 1 0 33.33333%;
        flex: 1 0 33.33333%;
        position: relative;
        overflow: hidden; }
        .page-people-group-detail .pg-news .gallery .image .background {
          bottom: 0;
          left: 0;
          position: absolute;
          right: 0;
          top: 0;
          background-position: center center;
          background-size: cover;
          -ms-transition: all 1s ease-in-out;
          -webkit-transition: all 1s ease-in-out;
          -moz-transition: all 1s ease-in-out;
          -o-transition: all 1s ease-in-out;
          transition: all 1s ease-in-out;
          -webkit-backface-visibility: hidden;
          border: 0;
          display: block;
          opacity: .80;
          z-index: 0; }
        .page-people-group-detail .pg-news .gallery .image .border {
          bottom: 0;
          left: 0;
          position: absolute;
          right: 0;
          top: 0;
          -ms-transition: opacity 0.5s;
          -webkit-transition: opacity 0.5s;
          -moz-transition: opacity 0.5s;
          -o-transition: opacity 0.5s;
          transition: opacity 0.5s;
          -webkit-backface-visibility: hidden;
          border: 10px solid #00bbdd;
          opacity: 0;
          z-index: 2;
          display: block;
          box-shadow: inset 0 0 80px black; }
      .page-people-group-detail .pg-news .gallery .image:hover .border {
        opacity: 1; }
      .page-people-group-detail .pg-news .gallery .image:hover .background {
        opacity: 1;
        -webkit-transform: scale(1.05, 1.05);
        -ms-transform: scale(1.05, 1.05);
        -moz-transform: scale(1.05, 1.05);
        transform: scale(1.05, 1.05); }
  .page-people-group-detail .pg-field-update {
    position: relative;
    padding-bottom: 100px; }
    .page-people-group-detail .pg-field-update.less-padding {
      padding-bottom: 40px; }
    .page-people-group-detail .pg-field-update .container {
      width: 1160px; }
    .page-people-group-detail .pg-field-update .background {
      background: #00bbdd;
      height: 325px;
      position: absolute;
      top: 0;
      width: 100%; }
      @media (max-width: 767px) {
        .page-people-group-detail .pg-field-update .background {
          height: 200px; } }
      .page-people-group-detail .pg-field-update .background .map {
        height: 100%;
        opacity: .5;
        background: url("../img/world-map.svg") center center no-repeat; }
    .page-people-group-detail .pg-field-update article {
      background: #FFF;
      max-width: 890px;
      margin: 0 auto;
      max-height: 600px;
      position: relative;
      overflow: hidden; }
    .page-people-group-detail .pg-field-update .read-more {
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      text-align: center;
      margin: 0;
      padding: 300px 0 0 0;
      background: -moz-linear-gradient(top, rgba(255, 255, 255, 0) 0%, white 80%);
      background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 0%, white 80%);
      background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, white 80%);
      filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00ffffff', endColorstr='#ffffff',GradientType=0 ); }
      .page-people-group-detail .pg-field-update .read-more a {
        background: #000;
        color: #FFF;
        display: inline-block;
        line-height: 1;
        text-transform: uppercase;
        text-decoration: none;
        font-weight: 600;
        font-size: .9em;
        letter-spacing: 1px;
        padding: 18px 20px;
        border-radius: 3px;
        width: 360px;
        max-width: 100%; }
    .page-people-group-detail .pg-field-update header {
      text-align: center; }
      .page-people-group-detail .pg-field-update header h2 {
        font-size: 1em;
        text-transform: uppercase;
        color: #FFF;
        padding: 80px 0; }
        @media (max-width: 767px) {
          .page-people-group-detail .pg-field-update header h2 {
            padding: 40px 0; } }
        .page-people-group-detail .pg-field-update header h2 .text {
          display: inline-block;
          font-size: 1.563em;
          letter-spacing: 1px;
          vertical-align: middle; }
          @media (max-width: 767px) {
            .page-people-group-detail .pg-field-update header h2 .text {
              display: block;
              font-size: 1.3em;
              margin-bottom: 20px; } }
        .page-people-group-detail .pg-field-update header h2 .date {
          background: #FFF;
          border-radius: 3px;
          color: #000;
          display: inline-block;
          margin-left: 40px;
          padding: 5px 15px;
          vertical-align: middle;
          -moz-font-feature-settings: 'lnum';
          -ms-font-feature-settings: 'lnum';
          -webkit-font-feature-settings: 'lnum';
          font-feature-settings: 'lnum'; }
          @media (max-width: 767px) {
            .page-people-group-detail .pg-field-update header h2 .date {
              margin: 0; } }
          .page-people-group-detail .pg-field-update header h2 .date .month {
            display: block;
            font-size: 0.750em;
            font-weight: 600;
            letter-spacing: 2px; }
          .page-people-group-detail .pg-field-update header h2 .date .year {
            color: #33ccff;
            display: block;
            font-size: 1.500em;
            font-weight: 600;
            letter-spacing: 0.1em; }
      .page-people-group-detail .pg-field-update header .featured-image {
        position: relative;
        background-position: center center;
        background-size: cover;
        border: 24px solid #FFF;
        border-bottom: 0; }
        .page-people-group-detail .pg-field-update header .featured-image:before {
          display: block;
          content: "";
          width: 100%;
          padding-top: 43.28224%; }
        @media (max-width: 767px) {
          .page-people-group-detail .pg-field-update header .featured-image {
            border: 10px solid #FFF; } }
      .page-people-group-detail .pg-field-update header h1 {
        font-size: 3.375em;
        max-width: 890px;
        margin: 70px auto;
        line-height: 1.2;
        font-weight: 500;
        color: #1a1e20; }
        @media (max-width: 767px) {
          .page-people-group-detail .pg-field-update header h1 {
            margin: 40px auto;
            font-size: 2.2em;
            text-align: left; } }
  .page-people-group-detail .pg-projects {
    background: #1a1e20;
    color: #FFF;
    padding: 0 0 70px 0; }
    @media (max-width: 767px) {
      .page-people-group-detail .pg-projects {
        padding: 40px 0; } }
    .page-people-group-detail .pg-projects .article-end {
      height: 50px;
      background: #FFF;
      width: 1160px;
      max-width: 94%;
      margin: 0 auto 70px auto; }
      @media (max-width: 767px) {
        .page-people-group-detail .pg-projects .article-end {
          display: none; } }
    .page-people-group-detail .pg-projects .title {
      font-size: 1.438em;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 1px;
      margin-bottom: 30px; }
    .page-people-group-detail .pg-projects .all {
      color: #FFF;
      border-bottom: 2px solid #33ccff;
      float: right;
      font-size: 0.938em;
      font-weight: 600;
      letter-spacing: 1px;
      text-decoration: none;
      text-transform: uppercase; }
    .page-people-group-detail .pg-projects .project {
      display: inline;
      float: left;
      width: 22.22222%;
      margin: 0 1.38889%;
      position: relative;
      color: inherit;
      overflow: hidden; }
      .page-people-group-detail .pg-projects .project:before {
        display: block;
        content: "";
        width: 100%;
        padding-top: 103.125%; }
      @media (max-width: 1023px) {
        .page-people-group-detail .pg-projects .project {
          position: relative;
          display: inline;
          float: left;
          width: 47.22222%;
          margin: 0 1.38889%;
          margin-bottom: 1em; }
          .page-people-group-detail .pg-projects .project:before {
            display: block;
            content: "";
            width: 100%;
            padding-top: 75%; } }
      @media (max-width: 767px) {
        .page-people-group-detail .pg-projects .project {
          position: relative;
          display: inline;
          float: left;
          width: 97.22222%;
          margin: 0 1.38889%;
          margin-bottom: 1em; }
          .page-people-group-detail .pg-projects .project:before {
            display: block;
            content: "";
            width: 100%;
            padding-top: 83.33333%; } }

@media (max-width: 767px) and (orientation: landscape) {
  .page-people-group-detail .pg-projects .project {
    position: relative; }
    .page-people-group-detail .pg-projects .project:before {
      display: block;
      content: "";
      width: 100%;
      padding-top: 100%; } }
      .page-people-group-detail .pg-projects .project .inner {
        display: flex;
        flex-flow: column;
        height: 100%; }
      .page-people-group-detail .pg-projects .project header {
        background: #30383c;
        flex: 0 1 auto;
        padding: 1.5em;
        position: relative;
        z-index: 2; }
        @media (max-width: 768px) {
          .page-people-group-detail .pg-projects .project header {
            font-size: .9em; } }
      .page-people-group-detail .pg-projects .project .p-graphic {
        bottom: auto;
        flex: 1 1 auto;
        left: auto;
        position: relative;
        text-align: center;
        top: auto;
        right: auto; }
        .page-people-group-detail .pg-projects .project .p-graphic .p-background {
          bottom: 0;
          left: 0;
          position: absolute;
          right: 0;
          top: 0;
          background-position: center center;
          background-size: cover;
          -ms-transition: all 1s ease-in-out;
          -webkit-transition: all 1s ease-in-out;
          -moz-transition: all 1s ease-in-out;
          -o-transition: all 1s ease-in-out;
          transition: all 1s ease-in-out;
          -webkit-backface-visibility: hidden;
          background-color: #202020;
          opacity: .85; }
      .page-people-group-detail .pg-projects .project .p-link {
        display: block;
        bottom: 0;
        left: 0;
        position: absolute;
        right: 0;
        top: 0;
        z-index: 5; }
      .page-people-group-detail .pg-projects .project .p-title {
        font-size: 1.250em;
        font-weight: 500;
        line-height: 1.2;
        margin-bottom: 5px; }
      .page-people-group-detail .pg-projects .project .p-location {
        font-size: 0.750em;
        font-weight: 500;
        text-transform: uppercase;
        letter-spacing: 1px; }
      .page-people-group-detail .pg-projects .project .p-goal {
        color: #33ccff; }
      .page-people-group-detail .pg-projects .project:hover .p-background {
        opacity: 1;
        -webkit-transform: scale(1.05, 1.05);
        -ms-transform: scale(1.05, 1.05);
        -moz-transform: scale(1.05, 1.05);
        transform: scale(1.05, 1.05); }
  .page-people-group-detail .pg-opportunities {
    padding: 70px 0;
    background: #ddd; }
    @media (max-width: 767px) {
      .page-people-group-detail .pg-opportunities {
        padding: 40px 0; } }
    .page-people-group-detail .pg-opportunities .title {
      font-size: 1.438em;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 1px;
      margin-bottom: 30px; }
    .page-people-group-detail .pg-opportunities .all {
      color: inherit;
      border-bottom: 2px solid #33ccff;
      float: right;
      font-size: 0.938em;
      font-weight: 600;
      letter-spacing: 1px;
      text-decoration: none;
      text-transform: uppercase; }
    .page-people-group-detail .pg-opportunities .opportunity {
      display: inline;
      float: left;
      width: 22.22222%;
      margin: 0 1.38889%;
      color: inherit;
      overflow: hidden;
      position: relative; }
      @media (max-width: 1023px) {
        .page-people-group-detail .pg-opportunities .opportunity {
          display: inline;
          float: left;
          width: 47.22222%;
          margin: 0 1.38889%;
          margin-bottom: 1em; } }
      @media (max-width: 767px) {
        .page-people-group-detail .pg-opportunities .opportunity {
          display: inline;
          float: left;
          width: 97.22222%;
          margin: 0 1.38889%;
          margin-bottom: 1em; } }
      .page-people-group-detail .pg-opportunities .opportunity header {
        position: relative;
        z-index: 2; }
        @media (max-width: 768px) {
          .page-people-group-detail .pg-opportunities .opportunity header {
            font-size: .9em; } }
      .page-people-group-detail .pg-opportunities .opportunity .o-graphic {
        position: relative;
        overflow: hidden;
        position: relative;
        margin-bottom: 1.5em; }
        .page-people-group-detail .pg-opportunities .opportunity .o-graphic:before {
          display: block;
          content: "";
          width: 100%;
          padding-top: 50%; }
        .page-people-group-detail .pg-opportunities .opportunity .o-graphic .o-background {
          bottom: 0;
          left: 0;
          position: absolute;
          right: 0;
          top: 0;
          background-position: center center;
          background-size: cover;
          -ms-transition: all 1s ease-in-out;
          -webkit-transition: all 1s ease-in-out;
          -moz-transition: all 1s ease-in-out;
          -o-transition: all 1s ease-in-out;
          transition: all 1s ease-in-out;
          -webkit-backface-visibility: hidden;
          background-color: #202020;
          opacity: .85; }
      .page-people-group-detail .pg-opportunities .opportunity .o-link {
        display: block;
        bottom: 0;
        left: 0;
        position: absolute;
        right: 0;
        top: 0;
        z-index: 5; }
      .page-people-group-detail .pg-opportunities .opportunity .o-title {
        font-size: 1.813em;
        font-weight: 500;
        line-height: 1.2;
        margin-bottom: 5px; }
        @media (max-width: 767px) {
          .page-people-group-detail .pg-opportunities .opportunity .o-title {
            font-size: 1.5em; } }
      .page-people-group-detail .pg-opportunities .opportunity .o-location {
        font-size: 0.875em;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 1px; }
      .page-people-group-detail .pg-opportunities .opportunity:hover .o-background {
        opacity: 1;
        -webkit-transform: scale(1.05, 1.05);
        -ms-transform: scale(1.05, 1.05);
        -moz-transform: scale(1.05, 1.05);
        transform: scale(1.05, 1.05); }

.opp_loop {
  background: #FFF;
  box-shadow: 2px 2px 0 0 #d9d9d9;
  color: #1a1e20;
  line-height: 1;
  padding: 1.5em 2em; }

.opp_loop .i-title {
  float: left;
  font-size: 1.31em;
  font-weight: 700;
  line-height: inherit;
  margin-bottom: 20px;
  text-transform: uppercase;
  width: 100%; }

.opp_loop .i-title a {
  text-transform: uppercase;
  text-decoration: none;
  outline: none;
  color: #333333;
  -ms-transition: background 0.3s, color 0.3s;
  -webkit-transition: background 0.3s, color 0.3s;
  -moz-transition: background 0.3s, color 0.3s;
  -o-transition: background 0.3s, color 0.3s;
  transition: background 0.3s, color 0.3s; }

.opp_loop .i-title a:hover {
  color: #00bbdd;
  -ms-transition: background 0.3s, color 0.3s;
  -webkit-transition: background 0.3s, color 0.3s;
  -moz-transition: background 0.3s, color 0.3s;
  -o-transition: background 0.3s, color 0.3s;
  transition: background 0.3s, color 0.3s; }

.opp_loop .i-date:before, .opp_loop .i-location:before {
  content: "";
  display: block;
  height: 33px;
  left: 0;
  position: absolute;
  top: 0;
  width: 33px; }

.opp_loop .i-location:before {
  background: url("../img/ico-map-pin.svg") left no-repeat; }

.opp_loop .i-date:before {
  background: url("../img/ico-calendar.svg") left no-repeat; }

.opp_loop .i-date, .opp_loop .i-location {
  float: left;
  font-size: 0.938em;
  font-weight: 600;
  margin: 0 0 12px 0;
  min-height: 33px;
  padding: 8px 0 0 46px;
  position: relative;
  width: 100%; }

.opp_loop .i-description {
  float: left;
  font-size: 0.875em;
  letter-spacing: .5px;
  line-height: 1.2;
  margin: 1em 0 3.5em 0;
  width: 100%; }

.opp_loop .i-description p {
  margin: 0; }

.opp_loop .i-button {
  -ms-transition: background 0.3s, color 0.3s;
  -webkit-transition: background 0.3s, color 0.3s;
  -moz-transition: background 0.3s, color 0.3s;
  -o-transition: background 0.3s, color 0.3s;
  transition: background 0.3s, color 0.3s;
  -webkit-backface-visibility: hidden;
  background: #33ccff;
  border: 2px solid #33ccff;
  color: #efefef;
  display: block;
  float: left;
  font-size: 1.125em;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 16px;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  width: 100%; }

.opp_loop .i-button:hover {
  background: #FFF;
  color: #33ccff; }

.opp_loop .i-sub-button {
  color: inherit;
  display: block;
  float: left;
  font-size: 0.938em;
  font-weight: 600;
  letter-spacing: 0.1em;
  margin: 10px auto;
  text-align: center;
  text-decoration: none;
  width: 100%; }

/* Prayer List
--------------------------------------------------------------- */
.page-prayer-list {
  background: #FFF; }
  .page-prayer-list .pl-header {
    position: relative;
    background: #1a1e20; }
    .page-prayer-list .pl-header .container {
      color: #FFF;
      font-size: 18em;
      font-weight: 500;
      letter-spacing: .25em;
      position: relative;
      z-index: 1; }
      @media (max-width: 1023px) {
        .page-prayer-list .pl-header .container {
          font-size: 14em; } }
      @media (max-width: 767px) {
        .page-prayer-list .pl-header .container {
          font-size: 10em; } }

@media (max-width: 767px) and (orientation: portrait) {
  .page-prayer-list .pl-header .container {
    font-size: 5em; } }
    .page-prayer-list .pl-header .background {
      z-index: 0;
      bottom: 0;
      left: 0;
      position: absolute;
      right: 0;
      top: 0;
      background-position: center center;
      background-size: cover;
      background-attachment: fixed; }
    .page-prayer-list .pl-header .table {
      height: 630px; }
      .page-prayer-list .pl-header .table .cell {
        padding: 40px 0; }
      @media (max-width: 1024px) {
        .page-prayer-list .pl-header .table {
          height: 500px; } }

@media (max-width: 767px) and (orientation: portrait) {
  .page-prayer-list .pl-header .table {
    height: 300px; } }

@media (max-width: 767px) and (orientation: landscape) {
  .page-prayer-list .pl-header .table {
    height: 250px; } }
    .page-prayer-list .pl-header .social {
      position: absolute;
      z-index: 2;
      bottom: 40px;
      right: 40px; }
      .page-prayer-list .pl-header .social a {
        display: block;
        width: 55px;
        height: 55px;
        line-height: 50px;
        font-size: 1.4em;
        color: #FFF;
        background: #1a1e20;
        border: 2px solid #fff;
        -webkit-border-radius: 50%;
        -moz-border-radius: 50%;
        border-radius: 50%;
        text-align: center;
        margin: 4px;
        -ms-transition: background 0.3s, color 0.3s;
        -webkit-transition: background 0.3s, color 0.3s;
        -moz-transition: background 0.3s, color 0.3s;
        -o-transition: background 0.3s, color 0.3s;
        transition: background 0.3s, color 0.3s;
        -webkit-backface-visibility: hidden; }
        .page-prayer-list .pl-header .social a i {
          vertical-align: baseline; }
        .page-prayer-list .pl-header .social a:hover {
          background: #FFF;
          color: #1a1e20; }
      @media (max-width: 1024px) {
        .page-prayer-list .pl-header .social {
          bottom: 20px;
          right: 20px; }
          .page-prayer-list .pl-header .social a {
            width: 40px;
            height: 40px;
            line-height: 36px;
            font-size: 1em; } }
      @media (max-width: 767px) {
        .page-prayer-list .pl-header .social {
          display: none; } }
  .page-prayer-list .pl-filter {
    background: #cdd1d3;
    padding: 30px 0; }
    .page-prayer-list .pl-filter .container {
      max-width: 1150px; }
    @media (max-width: 1023px) {
      .page-prayer-list .pl-filter {
        -ms-transition: left 0.3s ease-in-out, right 0.3s ease-in-out, opacity 0.3s 0.3s;
        -webkit-transition: left 0.3s ease-in-out, right 0.3s ease-in-out, opacity 0.3s 0.3s;
        -moz-transition: left 0.3s ease-in-out, right 0.3s ease-in-out, opacity 0.3s 0.3s;
        -o-transition: left 0.3s ease-in-out, right 0.3s ease-in-out, opacity 0.3s 0.3s;
        transition: left 0.3s ease-in-out, right 0.3s ease-in-out, opacity 0.3s 0.3s;
        -webkit-backface-visibility: hidden;
        bottom: 0;
        cursor: pointer;
        display: block;
        float: none;
        height: 100vh;
        left: -80vw;
        margin: 0;
        opacity: 0;
        overflow: hidden;
        padding: 0;
        position: fixed;
        top: 0;
        width: 80vw;
        z-index: 1000; }
        .page-prayer-list .pl-filter.active {
          -ms-transition: left 0.3s ease-in-out, right 0.3s ease-in-out;
          -webkit-transition: left 0.3s ease-in-out, right 0.3s ease-in-out;
          -moz-transition: left 0.3s ease-in-out, right 0.3s ease-in-out;
          -o-transition: left 0.3s ease-in-out, right 0.3s ease-in-out;
          transition: left 0.3s ease-in-out, right 0.3s ease-in-out;
          -webkit-backface-visibility: hidden;
          left: 0vw;
          opacity: 1; }
        .page-prayer-list .pl-filter .overflow {
          -webkit-overflow-scrolling: touch;
          max-height: 100%;
          overflow-x: hidden;
          overflow-y: auto;
          position: relative; }
        .page-prayer-list .pl-filter .container {
          max-width: 100%;
          padding: 0 2em 2em 2em; } }
    .page-prayer-list .pl-filter .results-filter-header {
      *zoom: 1;
      display: none;
      padding: 2em 2em 0 2em; }
      .page-prayer-list .pl-filter .results-filter-header:before, .page-prayer-list .pl-filter .results-filter-header:after {
        content: "";
        display: table; }
      .page-prayer-list .pl-filter .results-filter-header:after {
        clear: both; }
      @media (max-width: 1023px) {
        .page-prayer-list .pl-filter .results-filter-header {
          display: block; } }
      .page-prayer-list .pl-filter .results-filter-header #filter-close {
        -ms-transition: background 0.3s ease-in-out;
        -webkit-transition: background 0.3s ease-in-out;
        -moz-transition: background 0.3s ease-in-out;
        -o-transition: background 0.3s ease-in-out;
        transition: background 0.3s ease-in-out;
        -webkit-backface-visibility: hidden;
        border: 2px solid #FFF;
        cursor: pointer;
        cursor: pointer;
        display: block;
        float: right;
        height: 42px;
        opacity: 1;
        overflow: hidden;
        position: relative;
        text-indent: 100%;
        white-space: nowrap;
        width: 42px;
        z-index: 100; }
        .page-prayer-list .pl-filter .results-filter-header #filter-close:before, .page-prayer-list .pl-filter .results-filter-header #filter-close:after {
          -ms-transition: background 0.3s ease-in-out;
          -webkit-transition: background 0.3s ease-in-out;
          -moz-transition: background 0.3s ease-in-out;
          -o-transition: background 0.3s ease-in-out;
          transition: background 0.3s ease-in-out;
          -webkit-backface-visibility: hidden;
          background: #FFF;
          content: "";
          display: block;
          height: 30px;
          position: absolute;
          top: 4px;
          width: 2px; }
        .page-prayer-list .pl-filter .results-filter-header #filter-close:before {
          left: 18px;
          -webkit-transform: rotate(45deg);
          -moz-transform: rotate(45deg);
          -ms-transform: rotate(45deg);
          transform: rotate(45deg); }
        .page-prayer-list .pl-filter .results-filter-header #filter-close:after {
          right: 18px;
          -webkit-transform: rotate(-45deg);
          -moz-transform: rotate(-45deg);
          -ms-transform: rotate(-45deg);
          transform: rotate(-45deg); }
        .page-prayer-list .pl-filter .results-filter-header #filter-close:hover {
          background: #FFF; }
          .page-prayer-list .pl-filter .results-filter-header #filter-close:hover:before, .page-prayer-list .pl-filter .results-filter-header #filter-close:hover:after {
            background: #000; }
    .page-prayer-list .pl-filter .title {
      font-size: 0.750em;
      font-weight: 600;
      letter-spacing: 2px;
      margin-bottom: 15px;
      text-transform: uppercase; }
    .page-prayer-list .pl-filter .form-element {
      display: inline;
      float: left;
      width: 30.55556%;
      margin: 0 1.38889%; }
      @media (max-width: 1023px) {
        .page-prayer-list .pl-filter .form-element {
          display: inline;
          float: left;
          width: 97.22222%;
          margin: 0 1.38889%;
          margin-bottom: 20px; } }
    .page-prayer-list .pl-filter select {
      -webkit-appearance: none;
      -moz-appearance: none;
      appearance: none;
      -webkit-border-radius: 0;
      -moz-border-radius: 0;
      border-radius: 0;
      background: #FFF url("../img/ico-select.svg") right 10px center no-repeat;
      border: 0;
      color: #000;
      cursor: pointer;
      font: inherit;
      line-height: 1;
      padding: 1em;
      width: 100%;
      width: 100%; }
      .page-prayer-list .pl-filter select:focus, .page-prayer-list .pl-filter select:active {
        outline: 0; }
  .page-prayer-list .pl-prayer-list {
    padding: 60px 0; }
    @media (max-width: 1023px) {
      .page-prayer-list .pl-prayer-list {
        padding: 40px 0; } }
    .page-prayer-list .pl-prayer-list .container {
      width: 1150px; }
    .page-prayer-list .pl-prayer-list #filter-trigger {
      background: #1a1e20;
      color: #FFF;
      cursor: pointer;
      display: none;
      font-weight: 700;
      line-height: 1;
      margin-bottom: 2em;
      padding: 1em;
      text-transform: uppercase; }
      @media (max-width: 1023px) {
        .page-prayer-list .pl-prayer-list #filter-trigger {
          display: block; } }
      .page-prayer-list .pl-prayer-list #filter-trigger i {
        display: inline-block;
        font-size: 1.4em;
        margin-right: 10px;
        vertical-align: middle; }

.prayer-request {
  margin-bottom: 60px; }
  .prayer-request .pr-date {
    border-bottom: 2px solid #e8e3e3;
    color: #828282;
    font-size: 0.875em;
    font-weight: 600;
    letter-spacing: 1px;
    line-height: 1;
    padding-bottom: 30px;
    text-transform: uppercase; }
  .prayer-request .pr-content {
    width: 890px;
    max-width: 100%;
    margin: 0 auto;
    padding: 40px 0; }
  .prayer-request .pr-title {
    font-size: 3.375em;
    font-weight: 500;
    letter-spacing: 2px;
    line-height: 1.2;
    padding: 0 0 40px 0;
    text-align: center; }
    @media (max-width: 767px) {
      .prayer-request .pr-title {
        font-size: 2em; } }
  .prayer-request .pr-description {
    text-align: justify;
    font-size: 1.304em; }
    @media (max-width: 767px) {
      .prayer-request .pr-description {
        font-size: 1em; } }
  .prayer-request .pr-link {
    display: block;
    color: #14aadc;
    text-decoration: none; }
  .prayer-request .pr-status {
    border-top: 2px solid #e8e3e3;
    background: #f2f4f4;
    padding: 20px;
    letter-spacing: 1px;
    font-weight: 600; }
    .prayer-request .pr-status .status-icon {
      background: #33ccff;
      border-radius: 50%;
      color: #f2f4f4;
      cursor: pointer;
      display: inline-block;
      font-size: 1.4em;
      height: 34px;
      line-height: 36px;
      text-align: center;
      vertical-align: middle;
      width: 34px; }
      .prayer-request .pr-status .status-icon i {
        margin-left: 2px; }
      .prayer-request .pr-status .status-icon:hover, .prayer-request .pr-status .status-icon.prayed-for {
        color: #006080; }
    .prayer-request .pr-status .status-number {
      color: #33ccff;
      font-size: 0.750em;
      margin-left: 2px; }
    .prayer-request .pr-status .status-text {
      text-transform: uppercase;
      font-size: 0.750em;
      color: #1a1e20; }

/* Vision & Mission
--------------------------------------------------------------- */
.page-vision-mission {
  background: #FFF; }
  .page-vision-mission .vm-header {
    position: relative;
    height: 600px;
    overflow: hidden; }
    @media (max-width: 1023px) {
      .page-vision-mission .vm-header {
        height: 500px; } }
    @media (max-width: 767px) {
      .page-vision-mission .vm-header {
        height: 400px; } }
    @media (max-width: 375px) {
      .page-vision-mission .vm-header {
        height: 200px; } }
    .page-vision-mission .vm-header .h-slider {
      height: 100%;
      z-index: 0; }
    .page-vision-mission .vm-header .h-fade {
      bottom: 0;
      left: 0;
      position: absolute;
      right: 0;
      top: 0;
      background: -moz-linear-gradient(top, transparent 30%, rgba(0, 0, 0, 0.8) 100%);
      background: -webkit-linear-gradient(top, transparent 30%, rgba(0, 0, 0, 0.8) 100%);
      background: linear-gradient(to bottom, transparent 30%, rgba(0, 0, 0, 0.8) 100%);
      filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#a6000000',GradientType=0 );
      z-index: 2; }
    .page-vision-mission .vm-header .h-slider-overlay {
      position: absolute;
      height: 100%;
      text-align: center;
      width: 100%;
      z-index: 3; }
      .page-vision-mission .vm-header .h-slider-overlay img {
        display: block;
        left: 0;
        margin: 0 auto;
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        max-width: 90%; }
    .page-vision-mission .vm-header .h-slider-pager {
      bottom: 60px;
      left: 0;
      margin: 0 auto;
      max-width: 1200px;
      position: absolute;
      right: 0;
      text-align: right;
      width: 90%;
      z-index: 4; }
      @media (max-width: 768px) {
        .page-vision-mission .vm-header .h-slider-pager {
          bottom: 40px; } }
      @media (max-width: 375px) {
        .page-vision-mission .vm-header .h-slider-pager {
          bottom: 20px; } }
      .page-vision-mission .vm-header .h-slider-pager span {
        background: #FFF;
        cursor: pointer;
        display: inline-block;
        height: 15px;
        margin: 0 2px;
        overflow: hidden;
        text-indent: 300%;
        vertical-align: middle;
        white-space: nowrap;
        width: 15px; }
        @media (max-width: 767px) {
          .page-vision-mission .vm-header .h-slider-pager span {
            height: 10px;
            width: 10px; } }
      .page-vision-mission .vm-header .h-slider-pager .cycle-pager-active {
        background: #06fbf2; }
    .page-vision-mission .vm-header .slide {
      width: 100%;
      height: 100%;
      position: relative;
      overflow: hidden;
      display: none; }
      .page-vision-mission .vm-header .slide:first-of-type {
        display: block; }
      .page-vision-mission .vm-header .slide .background {
        bottom: 0;
        left: 0;
        position: absolute;
        right: 0;
        top: 0;
        background-position: center center;
        background-size: cover;
        z-index: -1;
        -ms-transition: all 8s ease-in;
        -webkit-transition: all 8s ease-in;
        -moz-transition: all 8s ease-in;
        -o-transition: all 8s ease-in;
        transition: all 8s ease-in;
        -webkit-backface-visibility: hidden; }
        .page-vision-mission .vm-header .slide .background.zoom {
          -ms-transform: scale(1.5, 1.5);
          /* IE 9 */
          -webkit-transform: scale(1.5, 1.5);
          /* Safari */
          transform: scale(1.5, 1.5); }
  .page-vision-mission .vm-about {
    border-bottom: 10px solid #33ccff;
    padding: 50px 0; }
    @media (max-width: 767px) {
      .page-vision-mission .vm-about {
        padding: 3em 0; } }
    .page-vision-mission .vm-about .container {
      width: 900px; }
    .page-vision-mission .vm-about .a-title {
      font-size: 1.750em;
      font-weight: 600;
      letter-spacing: 1px;
      margin-bottom: 40px;
      text-align: center;
      text-transform: uppercase; }
    .page-vision-mission .vm-about .a-description {
      font-size: 1.304em;
      letter-spacing: 1px; }
      @media (max-width: 767px) {
        .page-vision-mission .vm-about .a-description {
          font-size: 1em; } }
  .page-vision-mission .vm-vision-values {
    align-content: stretch;
    color: #333;
    background: #d1cfcf;
    /*display: flex;*/
    flex-flow: row wrap; }
    .page-vision-mission .vm-vision-values .v-box {
      flex: 0 1 50%;
      padding: 70px 120px; }
      @media (max-width: 1399px) {
        .page-vision-mission .vm-vision-values .v-box {
          padding: 70px; } }
      @media (max-width: 1023px) {
        .page-vision-mission .vm-vision-values .v-box {
          padding: 40px; } }
      @media (max-width: 767px) {
        .page-vision-mission .vm-vision-values .v-box {
          flex: 0 1 100%;
          padding: 40px 20px; } }
      .page-vision-mission .vm-vision-values .v-box.values {
        background: #e3e3e3; }
    .page-vision-mission .vm-vision-values .v-title {
      font-size: 1.313em;
      font-weight: 600;
      letter-spacing: 1px;
      margin-bottom: 40px;
      text-transform: uppercase; }
    .page-vision-mission .vm-vision-values .v-description {
      font-size: 1.125em;
      font-style: italic;
      font-weight: 600;
      letter-spacing: 1px;
      margin-bottom: 60px; }
    .page-vision-mission .vm-vision-values ol {
      display: block;
      margin: 0;
      padding: 0;
      counter-reset: count; }
      .page-vision-mission .vm-vision-values ol li {
        display: block;
        letter-spacing: 1px;
        line-height: 1.4;
        min-height: 60px;
        padding: 0 0 25px 66px;
        position: relative; }
        @media (max-width: 767px) {
          .page-vision-mission .vm-vision-values ol li {
            padding: 0 0 20px 44px; } }
        .page-vision-mission .vm-vision-values ol li a {
          color: inherit;
          text-decoration: none; }
      .page-vision-mission .vm-vision-values ol li:before {
        background: #FFF;
        border-radius: 50%;
        border: 2px solid #00bbdd;
        content: counter(count);
        counter-increment: count;
        display: block;
        -moz-font-feature-settings: 'lnum';
        -ms-font-feature-settings: 'lnum';
        -webkit-font-feature-settings: 'lnum';
        font-feature-settings: 'lnum';
        font-size: 1.500em;
        font-weight: 700;
        height: 46px;
        left: 0;
        letter-spacing: 1px;
        line-height: 38px;
        position: absolute;
        text-align: center;
        width: 46px; }
        @media (max-width: 767px) {
          .page-vision-mission .vm-vision-values ol li:before {
            font-size: 1.200em;
            height: 32px;
            line-height: 26px;
            width: 32px; } }
      @media (max-width: 767px) {
        .page-vision-mission .vm-vision-values ol li:nth-child(4),
        .page-vision-mission .vm-vision-values ol li:nth-child(5) {
          display: none; } }
  .page-vision-mission .vm-president {
    position: relative;
    background: #1a1e20;
    color: #FFF;
    padding: 180px 0; }
    @media (max-width: 1023px) {
      .page-vision-mission .vm-president {
        padding: 120px 0; } }
    @media (max-width: 767px) {
      .page-vision-mission .vm-president {
        padding: 5em 0; } }
    .page-vision-mission .vm-president .fade {
      bottom: 0;
      left: 0;
      position: absolute;
      right: 0;
      top: 0;
      background: -moz-linear-gradient(left, transparent 0%, transparent 50%, rgba(0, 0, 0, 0.75) 100%);
      /* FF3.6-15 */
      background: -webkit-linear-gradient(left, transparent 0%, transparent 50%, rgba(0, 0, 0, 0.75) 100%);
      /* Chrome10-25,Safari5.1-6 */
      background: linear-gradient(to right, transparent 0%, transparent 50%, rgba(0, 0, 0, 0.75) 100%);
      /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
      filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#bf000000',GradientType=1 );
      /* IE6-9 */
      z-index: 3; }
    .page-vision-mission .vm-president .background {
      bottom: 0;
      left: 0;
      position: absolute;
      right: 0;
      top: 0;
      background-position: center center;
      background-size: cover;
      z-index: 2; }
    .page-vision-mission .vm-president .box {
      position: relative;
      float: right;
      width: 100%;
      max-width: 450px;
      z-index: 4; }
      @media (max-width: 1023px) {
        .page-vision-mission .vm-president .box {
          max-width: 350px; } }

@media (max-width: 767px) and (orientation: portrait) {
  .page-vision-mission .vm-president .box {
    max-width: 150px; } }
    .page-vision-mission .vm-president .p-title {
      font-size: 1.313em;
      font-weight: 600;
      letter-spacing: 1px;
      text-transform: uppercase; }
      @media (max-width: 1023px) {
        .page-vision-mission .vm-president .p-title {
          font-size: 1.1em; } }
      .page-vision-mission .vm-president .p-title a {
        color: inherit;
        text-decoration: none; }

@media (max-width: 767px) and (orientation: portrait) {
  .page-vision-mission .vm-president .p-title a {
    line-height: 1.5;
    color: #FFF;
    border-bottom: 3px solid #06fbf2;
    font-size: 0.938em;
    font-weight: 500;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px; } }
    .page-vision-mission .vm-president .p-description {
      font-size: 1.125em;
      color: #e3e3e3;
      letter-spacing: 1px; }
      @media (max-width: 1023px) {
        .page-vision-mission .vm-president .p-description {
          font-size: 1em;
          line-height: 1.2; } }

@media (max-width: 767px) and (orientation: portrait) {
  .page-vision-mission .vm-president .p-description {
    display: none; } }
    .page-vision-mission .vm-president .p-link {
      color: #FFF;
      border-bottom: 3px solid #06fbf2;
      font-size: 0.938em;
      font-weight: 500;
      padding-bottom: 2px;
      text-decoration: none;
      text-transform: uppercase;
      letter-spacing: 1px; }

@media (max-width: 767px) and (orientation: portrait) {
  .page-vision-mission .vm-president .p-link {
    display: none; } }
  .page-vision-mission .vm-videos {
    background: #1a1e20;
    color: #FFF;
    padding: 75px 0 35px 0; }
    @media (max-width: 767px) {
      .page-vision-mission .vm-videos {
        padding: 3em 0 1em 0; } }
    .page-vision-mission .vm-videos .vid {
      display: inline;
      float: left;
      width: 47.22222%;
      margin: 0 1.38889%;
      margin-bottom: 2em; }

@media (max-width: 767px) and (orientation: portrait) {
  .page-vision-mission .vm-videos .vid {
    display: inline;
    float: left;
    width: 97.22222%;
    margin: 0 1.38889%;
    margin-bottom: 2em; } }
  .page-vision-mission .vm-leadership {
    padding: 60px 20px;
    background: #e7e7e7;
    text-align: center; }
    @media (max-width: 767px) {
      .page-vision-mission .vm-leadership {
        padding: 3em 0; } }
    .page-vision-mission .vm-leadership a {
      border-bottom: 3px solid #33ccff;
      color: #1a1e20;
      font-size: 0.938em;
      font-weight: 600;
      letter-spacing: 1px;
      text-decoration: none;
      text-transform: uppercase; }
  .page-vision-mission .vm-facts {
    padding: 90px 0; }
    @media (max-width: 767px) {
      .page-vision-mission .vm-facts {
        padding: 3em 0; } }
    .page-vision-mission .vm-facts .container {
      width: 860px; }
    .page-vision-mission .vm-facts h3 {
      font-size: 1.313em;
      font-weight: 600;
      letter-spacing: 1px;
      margin-bottom: 60px;
      text-align: center;
      text-transform: uppercase; }
    .page-vision-mission .vm-facts .rtable td {
      letter-spacing: 1px; }

/* Video List Component
--------------------------------------------------------------- */
.vid {
  color: inherit;
  text-decoration: none;
  text-align: left; }
  .vid span {
    display: block; }

.vid-cover {
  position: relative;
  cursor: pointer;
  margin-bottom: 15px;
  overflow: hidden;
  position: relative; }
  .vid-cover:before {
    display: block;
    content: "";
    width: 100%;
    padding-top: 56.25%; }

.vid-graphic {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0; }

.vid-fade-linear {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  background: -moz-linear-gradient(top, transparent 0%, transparent 15%, rgba(0, 0, 0, 0.65) 100%);
  background: -webkit-linear-gradient(top, transparent 0%, transparent 15%, rgba(0, 0, 0, 0.65) 100%);
  background: linear-gradient(to bottom, transparent 0%, transparent 15%, rgba(0, 0, 0, 0.65) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#a6000000',GradientType=0 );
  z-index: 2; }

.vid-fade-radial {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  background: -moz-radial-gradient(center, ellipse cover, transparent 0%, transparent 40%, rgba(0, 0, 0, 0.9) 100%);
  background: -webkit-radial-gradient(center, ellipse cover, transparent 0%, transparent 40%, rgba(0, 0, 0, 0.9) 100%);
  background: radial-gradient(ellipse at center, transparent 0%, transparent 40%, rgba(0, 0, 0, 0.9) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#a6000000',GradientType=1 );
  z-index: 3; }

.vid-icon {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  background: url("../img/ico-article-play.svg") center center no-repeat;
  z-index: 4;
  background-size: 15%; }

.vid-image {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  background-position: center center;
  background-size: cover;
  -ms-transition: all 1s ease-in-out;
  -webkit-transition: all 1s ease-in-out;
  -moz-transition: all 1s ease-in-out;
  -o-transition: all 1s ease-in-out;
  transition: all 1s ease-in-out;
  -webkit-backface-visibility: hidden;
  z-index: 1; }

.vid-code {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0; }

.vid-title {
  font-size: 1.250em;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 10px; }
  .vid-title a {
    color: inherit;
    text-decoration: inherit; }

.vid-meta {
  color: #818181;
  font-size: 0.875em;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase; }

.vid-button {
  -ms-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-backface-visibility: hidden;
  border: 2px solid #1a1e20;
  color: #1a1e20;
  cursor: pointer;
  display: inline-block;
  font-size: 0.9em;
  font-weight: 600;
  letter-spacing: 1px;
  line-height: 1;
  margin-top: 1em;
  padding: 8px 30px;
  text-align: center;
  text-decoration: none; }
  .vid-button:hover {
    background: #1a1e20;
    color: #FFF;
    opacity: 1; }
  @media (max-width: 375px) {
    .vid-button {
      width: 100%;
      padding: 15px 30px; } }

.vid-code {
  background: #000; }

.vid:hover .vid-image {
  -webkit-transform: scale(1.05, 1.05);
  -ms-transform: scale(1.05, 1.05);
  -moz-transform: scale(1.05, 1.05);
  transform: scale(1.05, 1.05); }

/* Video Gallery
--------------------------------------------------------------- */
.page-video-gallery {
  background: #FFF; }
  .page-video-gallery .vg-featured-videos {
    background: #1a1e20;
    color: #FFF;
    padding: 60px 0; }
    .page-video-gallery .vg-featured-videos .title {
      font-size: 1.304em;
      font-weight: 600;
      letter-spacing: 1px;
      margin-bottom: 3em;
      text-transform: uppercase; }
    .page-video-gallery .vg-featured-videos #filter-sort {
      -webkit-appearance: none;
      -moz-appearance: none;
      appearance: none;
      background: #FFF url("../img/ico-select-alt.svg") right 10px center no-repeat;
      border-radius: 0;
      border: 0;
      color: #1a1e20;
      cursor: pointer;
      float: right;
      font-size: 0.875em;
      font-weight: 700;
      letter-spacing: .5px;
      line-height: 1;
      margin-bottom: 1em;
      padding: 10px 40px 10px 20px; }
    .page-video-gallery .vg-featured-videos .vid {
      display: inline;
      float: left;
      width: 47.22222%;
      margin: 0 1.38889%;
      margin-bottom: 2em; }
      @media (max-width: 1023px) {
        .page-video-gallery .vg-featured-videos .vid {
          display: inline;
          float: left;
          width: 97.22222%;
          margin: 0 1.38889%;
          margin-bottom: 2em; }
          .page-video-gallery .vg-featured-videos .vid:nth-of-type(2) {
            display: none; } }
  .page-video-gallery .vg-video-list {
    padding: 60px 0; }
    .page-video-gallery .vg-video-list .vid {
      display: inline;
      float: left;
      width: 22.22222%;
      margin: 0 1.38889%;
      margin-bottom: 2em;
      font-size: .9em;
      height: 330px; }
      @media (max-width: 1024px) {
        .page-video-gallery .vg-video-list .vid {
          display: inline;
          float: left;
          width: 30.55556%;
          margin: 0 1.38889%;
          margin-bottom: 2em;
          height: 330px; } }
      @media (max-width: 768px) {
        .page-video-gallery .vg-video-list .vid {
          display: inline;
          float: left;
          width: 47.22222%;
          margin: 0 1.38889%;
          margin-bottom: 2em;
          height: auto; } }

@media (max-width: 767px) and (orientation: portrait) {
  .page-video-gallery .vg-video-list .vid {
    display: inline;
    float: left;
    width: 97.22222%;
    margin: 0 1.38889%;
    margin-bottom: 2em; } }
    .page-video-gallery .vg-video-list hr {
      display: none;
      clear: both;
      width: 100%;
      border: 0;
      margin: 0; }
      @media (min-width: 1024px) {
        .page-video-gallery .vg-video-list hr:nth-of-type(4n) {
          display: block; } }
      @media (max-width: 1024px) {
        .page-video-gallery .vg-video-list hr:nth-of-type(4n) {
          display: none; }
        .page-video-gallery .vg-video-list hr:nth-of-type(3n) {
          display: block; } }
      @media (max-width: 768px) {
        .page-video-gallery .vg-video-list hr:nth-of-type(3n) {
          display: none; }
        .page-video-gallery .vg-video-list hr:nth-of-type(2n) {
          display: block; } }

@media (max-width: 767px) and (orientation: portrait) {
  .page-video-gallery .vg-video-list hr:nth-of-type(2n) {
    display: none; } }

/* Image Gallery
--------------------------------------------------------------- */
.page-image-gallery {
  background: #FFF; }
  .page-image-gallery .vg-featured-images {
    background: #1a1e20;
    color: #FFF;
    padding: 60px 0; }
    .page-image-gallery .vg-featured-images .title {
      font-size: 1.304em;
      font-weight: 600;
      letter-spacing: 1px;
      margin-bottom: 3em;
      text-transform: uppercase; }
    .page-image-gallery .vg-featured-images #filter-sort {
      -webkit-appearance: none;
      -moz-appearance: none;
      appearance: none;
      background: #FFF url("../img/ico-select-alt.svg") right 10px center no-repeat;
      border-radius: 0;
      border: 0;
      color: #1a1e20;
      cursor: pointer;
      float: right;
      font-size: 0.875em;
      font-weight: 700;
      letter-spacing: .5px;
      line-height: 1;
      margin-bottom: 1em;
      padding: 10px 40px 10px 20px; }
    .page-image-gallery .vg-featured-images .vid {
      display: inline;
      float: left;
      width: 47.22222%;
      margin: 0 1.38889%;
      margin-bottom: 2em; }
      @media (max-width: 1023px) {
        .page-image-gallery .vg-featured-images .vid {
          display: inline;
          float: left;
          width: 97.22222%;
          margin: 0 1.38889%;
          margin-bottom: 2em; }
          .page-image-gallery .vg-featured-images .vid:nth-of-type(2) {
            display: none; } }
  .page-image-gallery .vg-image-list {
    padding: 60px 0; }
    .page-image-gallery .vg-image-list .vid {
      text-decoration: none;
      display: inline;
      float: left;
      width: 22.22222%;
      margin: 0 1.38889%;
      margin-bottom: 2em;
      font-size: .9em; }
      @media (max-width: 1024px) {
        .page-image-gallery .vg-image-list .vid {
          display: inline;
          float: left;
          width: 30.55556%;
          margin: 0 1.38889%;
          margin-bottom: 2em; } }
      @media (max-width: 768px) {
        .page-image-gallery .vg-image-list .vid {
          display: inline;
          float: left;
          width: 47.22222%;
          margin: 0 1.38889%;
          margin-bottom: 2em; } }

@media (max-width: 767px) and (orientation: portrait) {
  .page-image-gallery .vg-image-list .vid {
    display: inline;
    float: left;
    width: 97.22222%;
    margin: 0 1.38889%;
    margin-bottom: 2em; } }
    .page-image-gallery .vg-image-list hr {
      display: none;
      clear: both;
      width: 100%;
      border: 0;
      margin: 0; }
      @media (min-width: 1024px) {
        .page-image-gallery .vg-image-list hr:nth-of-type(4n) {
          display: block; } }
      @media (max-width: 1024px) {
        .page-image-gallery .vg-image-list hr:nth-of-type(4n) {
          display: none; }
        .page-image-gallery .vg-image-list hr:nth-of-type(3n) {
          display: block; } }
      @media (max-width: 768px) {
        .page-image-gallery .vg-image-list hr:nth-of-type(3n) {
          display: none; }
        .page-image-gallery .vg-image-list hr:nth-of-type(2n) {
          display: block; } }

@media (max-width: 767px) and (orientation: portrait) {
  .page-image-gallery .vg-image-list hr:nth-of-type(2n) {
    display: none; } }

.page-image-gallery .article-category {
  line-height: 1;
  width: 420px;
  max-width: 100%;
  line-height: 40px;
  display: block;
  padding: 0 20px;
  margin: -20px auto 0 auto;
  background: #33ccff;
  color: #FFF;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis; }

.page-image-gallery .article-category a {
  text-decoration: none;
  color: inherit; }

.page-image-gallery .article-media {
  position: relative;
  background: #1a1e20; }

.page-image-gallery .article-media .container {
  width: 940px; }

.page-image-gallery .article-media .table {
  height: 550px; }

.page-image-gallery .article-media .table .cell {
  padding: 40px 0; }

.page-image-gallery .article-media .background {
  z-index: 0;
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  background-position: center center;
  background-size: cover;
  background-attachment: fixed; }

.page-image-gallery .vid-title:hover, .page-image-gallery .vid-meta:hover {
  text-decoration: none; }

/* Leadership
--------------------------------------------------------------- */
.page-leadership {
  background: #FFF; }
  .page-leadership .container {
    width: 940px; }
  .page-leadership .personnel {
    padding: 110px 0; }
    .page-leadership .personnel .person {
      *zoom: 1;
      margin-bottom: 2em; }
      .page-leadership .personnel .person:before, .page-leadership .personnel .person:after {
        content: "";
        display: table; }
      .page-leadership .personnel .person:after {
        clear: both; }
      .page-leadership .personnel .person .person-image {
        display: inline;
        float: left;
        width: 30.55556%;
        margin: 0 1.38889%; }
        .page-leadership .personnel .person .person-image img {
          width: 100%;
          height: auto; }
      .page-leadership .personnel .person .person-details {
        display: inline;
        float: left;
        width: 57.63889%;
        margin: 0 1.38889%;
        margin-left: 3.47222%; }
        .page-leadership .personnel .person .person-details h4 {
          font-size: 1.625em;
          font-weight: 600;
          letter-spacing: 1px;
          line-height: 1.3; }
        .page-leadership .personnel .person .person-details p {
          font-size: 1.125em;
          letter-spacing: 1px;
          text-align: justify; }
      @media (max-width: 767px) {
        .page-leadership .personnel .person .person-image {
          display: inline;
          float: left;
          width: 97.22222%;
          margin: 0 1.38889%;
          margin-bottom: 1em; }
        .page-leadership .personnel .person .person-details {
          display: inline;
          float: left;
          width: 97.22222%;
          margin: 0 1.38889%; }
          .page-leadership .personnel .person .person-details h4 {
            font-size: 1.2em; }
          .page-leadership .personnel .person .person-details p {
            font-size: 1em;
            text-align: justify; } }

/* Give Online Page Styles
--------------------------------------------------------------- */
.page-give {
  background: #FFF; }
  .page-give .give-header {
    background: #1a1e20;
    height: 550px;
    position: relative; }
    @media (max-width: 1024px) {
      .page-give .give-header {
        height: 400px; } }

@media (max-width: 767px) and (orientation: portrait) {
  .page-give .give-header {
    height: 300px; } }

@media (max-width: 767px) and (orientation: landscape) {
  .page-give .give-header {
    height: 250px; } }
    .page-give .give-header .background {
      bottom: 0;
      left: 0;
      position: absolute;
      right: 0;
      top: 0;
      background-position: center center;
      background-size: cover;
      background-attachment: fixed;
      z-index: 1; }
      @media (max-width: 1024px) {
        .page-give .give-header .background {
          background-attachment: scroll; } }
    .page-give .give-header a {
      display: block;
      bottom: 0;
      left: 0;
      position: absolute;
      right: 0;
      top: 0;
      z-index: 2;
      background: url("../img/ico-article-play.svg") center center no-repeat; }
      @media (max-width: 1023px) {
        .page-give .give-header a {
          background-size: 25% 25%; } }
  .page-give .give-info {
    padding: 80px 0;
    text-align: center; }
    @media (max-width: 767px) {
      .page-give .give-info {
        padding: 3em 0; } }
    .page-give .give-info .container {
      width: 900px; }
    .page-give .give-info .info-title {
      color: #333;
      font-size: 2.813em;
      font-weight: 400;
      letter-spacing: 2px;
      margin-bottom: 1em; }
      @media (max-width: 767px) {
        .page-give .give-info .info-title {
          font-size: 2.4em; } }
    .page-give .give-info .info-description {
      font-size: 1.250em;
      letter-spacing: 1px;
      text-align: justify; }
      @media (max-width: 767px) {
        .page-give .give-info .info-description {
          font-size: 1em; } }
    .page-give .give-info .info-button {
      color: #000;
      display: inline-block;
      font-size: 1.250em;
      font-weight: 600;
      letter-spacing: 1px;
      line-height: 1;
      margin-top: 3em;
      text-decoration: none;
      text-transform: uppercase; }
      @media (max-width: 767px) {
        .page-give .give-info .info-button {
          margin-top: 1em; } }
      .page-give .give-info .info-button i {
        display: block;
        font-size: 2.6em; }
  .page-give .give-options {
    background: #e7e7e7;
    padding: 80px 0; }
    .page-give .give-options .option {
      display: inline;
      float: left;
      width: 47.22222%;
      margin: 0 1.38889%;
      text-align: center; }
      @media (max-width: 767px) {
        .page-give .give-options .option {
          display: inline;
          float: left;
          width: 97.22222%;
          margin: 0 1.38889%;
          margin-bottom: 2em; } }
      .page-give .give-options .option .o-graphic {
        position: relative;
        background: #1a1e20;
        position: relative;
        margin-bottom: 2em; }
        .page-give .give-options .option .o-graphic:before {
          display: block;
          content: "";
          width: 100%;
          padding-top: 61.76471%; }
      .page-give .give-options .option .o-background {
        bottom: 0;
        left: 0;
        position: absolute;
        right: 0;
        top: 0;
        background-position: center center;
        background-size: cover;
        opacity: .7;
        z-index: 0; }
      .page-give .give-options .option .o-title {
        color: #FFF;
        font-size: 1.625em;
        font-weight: 600;
        left: 50%;
        letter-spacing: 1px;
        line-height: 1;
        position: absolute;
        text-transform: uppercase;
        top: 50%;
        transform: translate(-50%, -50%);
        -webkit-transform: translate(-50%, -50%);
        width: 90%;
        z-index: 1; }
        @media (max-width: 1023px) {
          .page-give .give-options .option .o-title {
            font-size: 1.4em; } }
      .page-give .give-options .option .o-description {
        font-size: 1.125em;
        text-align: justify;
        margin-bottom: 2em; }
      .page-give .give-options .option .o-button {
        -ms-transition: background 0.3s, color 0.3s;
        -webkit-transition: background 0.3s, color 0.3s;
        -moz-transition: background 0.3s, color 0.3s;
        -o-transition: background 0.3s, color 0.3s;
        transition: background 0.3s, color 0.3s;
        -webkit-backface-visibility: hidden;
        border: 2px solid #1a1e20;
        color: inherit;
        display: inline-block;
        font-size: 0.938em;
        font-weight: 600;
        letter-spacing: 1px;
        line-height: 1;
        overflow: visible;
        padding: 8px 50px;
        text-align: center;
        text-decoration: none; }
        .page-give .give-options .option .o-button:hover {
          background: #1a1e20;
          color: #e7e7e7; }

/* Give As A Church Page Styles
--------------------------------------------------------------- */
.page-give-church {
  background: #FFF; }
  .page-give-church .give-header {
    background: #1a1e20;
    height: 550px;
    position: relative; }
    @media (max-width: 1024px) {
      .page-give-church .give-header {
        height: 400px; } }

@media (max-width: 767px) and (orientation: portrait) {
  .page-give-church .give-header {
    height: 300px; } }

@media (max-width: 767px) and (orientation: landscape) {
  .page-give-church .give-header {
    height: 250px; } }
    .page-give-church .give-header .background {
      bottom: 0;
      left: 0;
      position: absolute;
      right: 0;
      top: 0;
      background-position: center center;
      background-size: cover;
      background-attachment: fixed;
      opacity: .8;
      z-index: 1; }
      @media (max-width: 1024px) {
        .page-give-church .give-header .background {
          background-attachment: scroll; } }
    .page-give-church .give-header a {
      display: block;
      bottom: 0;
      left: 0;
      position: absolute;
      right: 0;
      top: 0;
      z-index: 2;
      background: url("../img/ico-article-play.svg") center center no-repeat; }
      @media (max-width: 1023px) {
        .page-give-church .give-header a {
          background-size: 25% 25%; } }
  .page-give-church .give-info {
    padding: 80px 0;
    text-align: center; }
    @media (max-width: 767px) {
      .page-give-church .give-info {
        padding: 3em 0; } }
    .page-give-church .give-info .container {
      width: 900px; }
    .page-give-church .give-info .info-title {
      color: #333;
      font-size: 2.813em;
      font-weight: 400;
      letter-spacing: 2px;
      margin-bottom: 1em; }
      @media (max-width: 767px) {
        .page-give-church .give-info .info-title {
          font-size: 2.4em; } }
    .page-give-church .give-info .info-description {
      font-size: 1.250em;
      letter-spacing: 1px;
      text-align: justify; }
      @media (max-width: 767px) {
        .page-give-church .give-info .info-description {
          font-size: 1em; } }
    .page-give-church .give-info .info-button {
      color: #000;
      display: inline-block;
      font-size: 1.250em;
      font-weight: 600;
      letter-spacing: 1px;
      line-height: 1;
      margin-top: 3em;
      text-decoration: none;
      text-transform: uppercase; }
      .page-give-church .give-info .info-button i {
        display: block;
        font-size: 2.6em; }
  .page-give-church .give-articles {
    text-align: center; }
    @media (max-width: 767px) {
      .page-give-church .give-articles {
        padding: 3em 0; } }
    .page-give-church .give-articles .title {
      color: #1a1e20;
      text-align: left; }
    .page-give-church .give-articles .all {
      *zoom: 1;
      color: #1a1e20;
      border-bottom: 2px solid #33ccff;
      display: inline-block;
      font-size: 0.938em;
      font-weight: 600;
      letter-spacing: 1px;
      margin: 2em 0;
      text-decoration: none;
      text-transform: uppercase; }
      .page-give-church .give-articles .all:before, .page-give-church .give-articles .all:after {
        content: "";
        display: table; }
      .page-give-church .give-articles .all:after {
        clear: both; }
      @media (max-width: 767px) {
        .page-give-church .give-articles .all {
          margin: 0 0 3em 0; } }
  .page-give-church .give-videos {
    background: #1a1e20;
    color: #FFF;
    padding: 60px 0;
    text-align: center; }
    @media (max-width: 767px) {
      .page-give-church .give-videos {
        padding: 3em 0; } }
    .page-give-church .give-videos .title {
      font-size: 1.304em;
      font-weight: 600;
      letter-spacing: 1px;
      margin-bottom: 3em;
      text-align: left;
      text-transform: uppercase; }
      @media (max-width: 767px) {
        .page-give-church .give-videos .title {
          margin-bottom: 2em; } }
    .page-give-church .give-videos .all {
      *zoom: 1;
      color: #FFF;
      border-bottom: 2px solid #33ccff;
      display: inline-block;
      font-size: 0.938em;
      font-weight: 600;
      letter-spacing: 1px;
      margin-top: 2em;
      text-decoration: none;
      text-transform: uppercase; }
      .page-give-church .give-videos .all:before, .page-give-church .give-videos .all:after {
        content: "";
        display: table; }
      .page-give-church .give-videos .all:after {
        clear: both; }
    .page-give-church .give-videos .vid {
      display: inline;
      float: left;
      width: 47.22222%;
      margin: 0 1.38889%;
      margin-bottom: 2em; }
      @media (max-width: 1023px) {
        .page-give-church .give-videos .vid {
          display: inline;
          float: left;
          width: 97.22222%;
          margin: 0 1.38889%;
          margin-bottom: 2em; }
          .page-give-church .give-videos .vid:nth-of-type(2) {
            display: none; } }
  .page-give-church .give-resources {
    background: #e7e7e7;
    color: #1a1e20;
    padding: 80px 0; }
    @media (max-width: 767px) {
      .page-give-church .give-resources {
        padding: 2em 0; } }
    .page-give-church .give-resources .title {
      text-transform: uppercase;
      font-size: 1.438em;
      font-weight: 600;
      line-height: 1;
      letter-spacing: 0.1em;
      margin-bottom: 40px; }
      .page-give-church .give-resources .title a {
        text-decoration: none;
        color: inherit; }
    .page-give-church .give-resources ul {
      -moz-column-count: 2;
      -webkit-column-count: 2;
      column-count: 2;
      -moz-column-gap: 40px;
      -webkit-column-gap: 40px;
      column-gap: 40px;
      margin: 0;
      padding: 0; }
      @media (max-width: 767px) {
        .page-give-church .give-resources ul {
          -moz-column-count: 1;
          -webkit-column-count: 1;
          column-count: 1;
          -moz-column-gap: 40px;
          -webkit-column-gap: 40px;
          column-gap: 40px; } }
      .page-give-church .give-resources ul li {
        display: block;
        font-size: 1.250em;
        line-height: 1.2;
        margin: 0;
        min-height: 44px;
        padding: 0 0 10px 50px;
        position: relative; }
        @media (max-width: 767px) {
          .page-give-church .give-resources ul li {
            font-size: 1em;
            padding: 0 0 10px 40px; } }
        .page-give-church .give-resources ul li:before {
          border: 2px solid #1a1e20;
          background: url("../img/ico-resource-arrow.svg") center center no-repeat;
          content: "";
          display: block;
          height: 29px;
          left: 0;
          position: absolute;
          width: 29px; }
          @media (max-width: 767px) {
            .page-give-church .give-resources ul li:before {
              width: 25px;
              height: 25px; } }
        .page-give-church .give-resources ul li a {
          text-decoration: none;
          color: inherit; }

/* Give Now Page Styles
--------------------------------------------------------------- */
.page-give-now {
  background: #FFF;
  padding: 40px 0; }
  .page-give-now .give-options {
    background: #49565c;
    color: #FFF; }
    .page-give-now .give-options .give-option {
      color: inherit;
      display: block;
      line-height: 1;
      position: relative;
      text-decoration: none; }
      .page-give-now .give-options .give-option .title {
        display: block;
        font-size: 1.125em;
        font-weight: 500;
        letter-spacing: 1px; }
        @media (max-width: 1023px) {
          .page-give-now .give-options .give-option .title {
            font-size: 1em; } }
      .page-give-now .give-options .give-option .subtitle {
        display: block;
        color: #a7a7a7;
        font-size: 0.813em;
        line-height: 1.2;
        margin-top: 10px; }
        @media (max-width: 1023px) {
          .page-give-now .give-options .give-option .subtitle {
            display: none; } }
      @media (max-width: 1023px) {
        .page-give-now .give-options .give-option {
          background: #1a1e20;
          border-bottom: 1px solid #2b3438;
          padding: 25px 32px; }
          .page-give-now .give-options .give-option:after {
            content: "\f105";
            display: block;
            font-family: "FontAwesome";
            font-size: 3em;
            position: absolute;
            right: 32px;
            top: 50%;
            transform: translateY(-50%);
            -webkit-transform: translateY(-50%); }
          .page-give-now .give-options .give-option.selected {
            background: #2b3438; } }
    @media (min-width: 1024px) {
      .page-give-now .give-options .give-option.button-fancy {
        background: #1a1e20;
        margin-bottom: 1px;
        padding: 30px 45px; }
        .page-give-now .give-options .give-option.button-fancy:hover, .page-give-now .give-options .give-option.button-fancy.selected {
          background: #2b3438; }
        .page-give-now .give-options .give-option.button-fancy.selected:after {
          border-color: transparent transparent transparent #2b3438;
          border-style: solid;
          border-width: 18px 0 18px 18px;
          content: "";
          display: block;
          height: 0;
          position: absolute;
          right: -18px;
          top: 50%;
          transform: translateY(-50%);
          -webkit-transform: translateY(-50%);
          width: 0; } }
    @media (min-width: 1024px) {
      .page-give-now .give-options .give-option.button {
        background: #33ccff;
        margin: 8px 8px 0 8px;
        padding: 20px 37px; }
        .page-give-now .give-options .give-option.button:nth-last-of-type(1) {
          margin-bottom: 8px; }
        .page-give-now .give-options .give-option.button:after {
          content: "\f105";
          display: block;
          font-family: "FontAwesome";
          font-size: 3em;
          position: absolute;
          right: 14px;
          top: 50%;
          -webkit-transform: translateY(-50%);
          transform: translateY(-50%); }
        .page-give-now .give-options .give-option.button:hover, .page-give-now .give-options .give-option.button.selected {
          background: #2b3438; } }
  .page-give-now .give-action {
    background: #e7e7e7;
    padding: 60px 0; }
    @media (max-width: 1023px) {
      .page-give-now .give-action {
        padding: 3em 0; } }
    @media (max-width: 767px) {
      .page-give-now .give-action {
        padding: 1em 0; } }
    .page-give-now .give-action .container {
      width: 580px; }
    .page-give-now .give-action .title {
      font-size: 1.625em;
      margin-bottom: 1.5em;
      text-align: center; }
  .page-give-now .mobile-sidebar-trigger {
    background: #1a1e20;
    color: #FFF;
    cursor: pointer;
    display: none;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 2em;
    padding: 1em;
    text-transform: uppercase; }
    @media (max-width: 1023px) {
      .page-give-now .mobile-sidebar-trigger {
        display: block; } }
    .page-give-now .mobile-sidebar-trigger i {
      display: inline-block;
      font-size: 1.4em;
      margin-right: 10px;
      vertical-align: middle; }
  .page-give-now .main {
    float: left;
    width: 78%; }
    @media (max-width: 1023px) {
      .page-give-now .main {
        width: 100%; } }
  .page-give-now .mobile-sidebar {
    float: left;
    width: 22%; }
    @media (max-width: 1023px) {
      .page-give-now .mobile-sidebar {
        -ms-transition: left 0.3s ease-in-out, right 0.3s ease-in-out, opacity 0.3s 0.3s;
        -webkit-transition: left 0.3s ease-in-out, right 0.3s ease-in-out, opacity 0.3s 0.3s;
        -moz-transition: left 0.3s ease-in-out, right 0.3s ease-in-out, opacity 0.3s 0.3s;
        -o-transition: left 0.3s ease-in-out, right 0.3s ease-in-out, opacity 0.3s 0.3s;
        transition: left 0.3s ease-in-out, right 0.3s ease-in-out, opacity 0.3s 0.3s;
        -webkit-backface-visibility: hidden;
        background: #1a1e20;
        color: #FFF;
        bottom: 0;
        cursor: pointer;
        display: block;
        float: none;
        height: 100vh;
        left: -80vw;
        margin: 0;
        opacity: 0;
        overflow: hidden;
        position: fixed;
        top: 0;
        width: 80vw;
        z-index: 1000; }
        .page-give-now .mobile-sidebar.active {
          -ms-transition: left 0.3s ease-in-out, right 0.3s ease-in-out;
          -webkit-transition: left 0.3s ease-in-out, right 0.3s ease-in-out;
          -moz-transition: left 0.3s ease-in-out, right 0.3s ease-in-out;
          -o-transition: left 0.3s ease-in-out, right 0.3s ease-in-out;
          transition: left 0.3s ease-in-out, right 0.3s ease-in-out;
          -webkit-backface-visibility: hidden;
          left: 0vw;
          opacity: 1; }
        .page-give-now .mobile-sidebar .overflow {
          -webkit-overflow-scrolling: touch;
          max-height: 100%;
          overflow-x: hidden;
          overflow-y: auto;
          position: relative; } }
  .page-give-now .mobile-sidebar-header {
    *zoom: 1;
    display: none;
    padding: 2em; }
    .page-give-now .mobile-sidebar-header:before, .page-give-now .mobile-sidebar-header:after {
      content: "";
      display: table; }
    .page-give-now .mobile-sidebar-header:after {
      clear: both; }
    @media (max-width: 1023px) {
      .page-give-now .mobile-sidebar-header {
        display: block; } }
    .page-give-now .mobile-sidebar-header #mobile-sidebar-close {
      -ms-transition: background 0.3s ease-in-out;
      -webkit-transition: background 0.3s ease-in-out;
      -moz-transition: background 0.3s ease-in-out;
      -o-transition: background 0.3s ease-in-out;
      transition: background 0.3s ease-in-out;
      -webkit-backface-visibility: hidden;
      border: 2px solid #FFF;
      cursor: pointer;
      cursor: pointer;
      display: block;
      float: right;
      height: 42px;
      opacity: 1;
      overflow: hidden;
      position: relative;
      text-indent: 100%;
      white-space: nowrap;
      width: 42px;
      z-index: 100; }
      .page-give-now .mobile-sidebar-header #mobile-sidebar-close:before, .page-give-now .mobile-sidebar-header #mobile-sidebar-close:after {
        -ms-transition: background 0.3s ease-in-out;
        -webkit-transition: background 0.3s ease-in-out;
        -moz-transition: background 0.3s ease-in-out;
        -o-transition: background 0.3s ease-in-out;
        transition: background 0.3s ease-in-out;
        -webkit-backface-visibility: hidden;
        background: #FFF;
        content: "";
        display: block;
        height: 30px;
        position: absolute;
        top: 4px;
        width: 2px; }
      .page-give-now .mobile-sidebar-header #mobile-sidebar-close:before {
        left: 18px;
        -webkit-transform: rotate(45deg);
        -moz-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        transform: rotate(45deg); }
      .page-give-now .mobile-sidebar-header #mobile-sidebar-close:after {
        right: 18px;
        -webkit-transform: rotate(-45deg);
        -moz-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
        transform: rotate(-45deg); }
      .page-give-now .mobile-sidebar-header #mobile-sidebar-close:hover {
        background: #FFF; }
        .page-give-now .mobile-sidebar-header #mobile-sidebar-close:hover:before, .page-give-now .mobile-sidebar-header #mobile-sidebar-close:hover:after {
          background: #000; }

/* Most Needed Page Styles
--------------------------------------------------------------- */
.page-most-needed {
  background: #FFF; }
  .page-most-needed .mn-header {
    background: #1a1e20;
    color: #FFF;
    padding: 3em 0; }
    @media (max-width: 767px) {
      .page-most-needed .mn-header {
        padding: 3em 0; } }
    .page-most-needed .mn-header .container {
      width: 750px; }
    .page-most-needed .mn-header .info {
      float: left;
      width: 25%; }
      @media (max-width: 767px) {
        .page-most-needed .mn-header .info {
          width: 100%;
          margin-bottom: 1em; } }
      .page-most-needed .mn-header .info .title {
        font-size: 1.125em;
        font-weight: 600;
        margin-bottom: 10px; }
      .page-most-needed .mn-header .info .subtitle {
        font-size: 0.813em;
        line-height: 1.2;
        color: #a7a7a7; }
    .page-most-needed .mn-header .form {
      float: left;
      width: 70%;
      margin-left: 5%; }
      @media (max-width: 767px) {
        .page-most-needed .mn-header .form {
          width: 100%;
          margin: 0; } }
      .page-most-needed .mn-header .form input {
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        -webkit-border-radius: 0;
        -moz-border-radius: 0;
        border-radius: 0;
        border: 2px solid #FFF;
        font: inherit;
        line-height: 50px;
        padding: 0 20px;
        float: left; }
        .page-most-needed .mn-header .form input:focus, .page-most-needed .mn-header .form input:active {
          outline: 0; }
      .page-most-needed .mn-header .form input[type=text],
      .page-most-needed .mn-header .form input[type=number] {
        background: transparent;
        border-right: 0;
        color: #FFF;
        font-size: 1.125em;
        width: 70%; }
        @media (max-width: 767px) {
          .page-most-needed .mn-header .form input[type=text],
          .page-most-needed .mn-header .form input[type=number] {
            width: 100%;
            border: 2px solid #FFF;
            margin-bottom: 1em; } }
      .page-most-needed .mn-header .form input[type=submit] {
        -ms-transition: background 0.3s, color 0.3s;
        -webkit-transition: background 0.3s, color 0.3s;
        -moz-transition: background 0.3s, color 0.3s;
        -o-transition: background 0.3s, color 0.3s;
        transition: background 0.3s, color 0.3s;
        -webkit-backface-visibility: hidden;
        background: #00bbdd;
        color: #FFF;
        font-size: 1.125em;
        font-weight: 600;
        letter-spacing: 1px;
        text-transform: uppercase;
        width: 30%; }
        @media (max-width: 767px) {
          .page-most-needed .mn-header .form input[type=submit] {
            width: 100%; } }
        .page-most-needed .mn-header .form input[type=submit]:hover {
          color: #1a1e20;
          background: #FFF; }
  .page-most-needed .mn-video {
    position: relative;
    background: #2d3234;
    color: #FFF;
    padding: 4em 0; }
    @media (max-width: 767px) {
      .page-most-needed .mn-video {
        padding: 3em 0; } }
    .page-most-needed .mn-video .container {
      width: 870px; }
    .page-most-needed .mn-video .title {
      font-size: 1.304em;
      font-weight: 600;
      letter-spacing: 1px;
      margin-bottom: 3em;
      text-align: center; }
      @media (max-width: 767px) {
        .page-most-needed .mn-video .title {
          margin-bottom: 1em; } }
  .page-most-needed .mn-gallery {
    position: relative;
    *zoom: 1; }
    .page-most-needed .mn-gallery:before, .page-most-needed .mn-gallery:after {
      content: "";
      display: table; }
    .page-most-needed .mn-gallery:after {
      clear: both; }
    .page-most-needed .mn-gallery .image {
      position: relative;
      display: block;
      float: left;
      overflow: hidden;
      position: relative;
      width: 20%; }
      .page-most-needed .mn-gallery .image:before {
        display: block;
        content: "";
        width: 100%;
        padding-top: 51.875%; }
      @media (max-width: 767px) {
        .page-most-needed .mn-gallery .image {
          width: 33.3333333333%; } }
      .page-most-needed .mn-gallery .image .background {
        bottom: 0;
        left: 0;
        position: absolute;
        right: 0;
        top: 0;
        background-position: center center;
        background-size: cover;
        -ms-transition: all 1s ease-in-out;
        -webkit-transition: all 1s ease-in-out;
        -moz-transition: all 1s ease-in-out;
        -o-transition: all 1s ease-in-out;
        transition: all 1s ease-in-out;
        -webkit-backface-visibility: hidden;
        border: 0;
        display: block;
        opacity: 1;
        z-index: 0; }
      .page-most-needed .mn-gallery .image .border {
        bottom: 0;
        left: 0;
        position: absolute;
        right: 0;
        top: 0;
        -ms-transition: opacity 0.5s;
        -webkit-transition: opacity 0.5s;
        -moz-transition: opacity 0.5s;
        -o-transition: opacity 0.5s;
        transition: opacity 0.5s;
        -webkit-backface-visibility: hidden;
        border: 10px solid #00bbdd;
        opacity: 0;
        z-index: 2;
        display: block;
        box-shadow: inset 0 0 80px black; }
    .page-most-needed .mn-gallery .image:hover .border {
      opacity: 1; }
    .page-most-needed .mn-gallery .image:hover .background {
      opacity: 1;
      -webkit-transform: scale(1.05, 1.05);
      -ms-transform: scale(1.05, 1.05);
      -moz-transform: scale(1.05, 1.05);
      transform: scale(1.05, 1.05); }
  .page-most-needed .mn-article {
    padding: 40px 0; }
    @media (max-width: 767px) {
      .page-most-needed .mn-article {
        padding: 0 0 2em 0; } }

/* Training Page Styles
--------------------------------------------------------------- */
.page-training {
  background: #FFF; }
  .page-training .training-header {
    background: #1a1e20;
    height: 550px;
    position: relative; }
    @media (max-width: 1024px) {
      .page-training .training-header {
        height: 400px; } }

@media (max-width: 767px) and (orientation: portrait) {
  .page-training .training-header {
    height: 300px; } }

@media (max-width: 767px) and (orientation: landscape) {
  .page-training .training-header {
    height: 250px; } }
    .page-training .training-header .th-background {
      bottom: 0;
      left: 0;
      position: absolute;
      right: 0;
      top: 0;
      background-position: center center;
      background-size: cover;
      background-attachment: fixed;
      z-index: 0; }
      @media (max-width: 1024px) {
        .page-training .training-header .th-background {
          background-attachment: scroll; } }
    .page-training .training-header .th-fade {
      bottom: 0;
      left: 0;
      position: absolute;
      right: 0;
      top: 0;
      background: -moz-linear-gradient(top, transparent 0%, transparent 5%, rgba(0, 0, 0, 0.52) 100%);
      background: -webkit-linear-gradient(top, transparent 0%, transparent 5%, rgba(0, 0, 0, 0.52) 100%);
      background: linear-gradient(to bottom, transparent 0%, transparent 5%, rgba(0, 0, 0, 0.52) 100%);
      filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#85000000',GradientType=0 );
      z-index: 1; }
    .page-training .training-header .th-title {
      color: #FFF;
      font-size: 2.813em;
      font-weight: 400;
      left: 50%;
      letter-spacing: 1px;
      line-height: 1;
      margin: 0;
      position: absolute;
      text-align: center;
      top: 50%;
      transform: translate(-50%, -50%);
      width: 90%;
      z-index: 2; }
  .page-training .training-info {
    padding: 80px 0;
    text-align: center;
    border-top: 7px solid #3cf; }
    @media (max-width: 767px) {
      .page-training .training-info {
        padding: 2em 0; } }
    .page-training .training-info .container {
      width: 900px; }
    .page-training .training-info .info-description {
      font-size: 1.250em;
      letter-spacing: 1px;
      margin-bottom: 3em;
      text-align: justify; }
      @media (max-width: 767px) {
        .page-training .training-info .info-description {
          font-size: 1em;
          margin-bottom: 2em; } }
    .page-training .training-info .info-button {
      color: #3cf;
      display: inline-block;
      font-size: 1.250em; }
      .page-training .training-info .info-button i {
        font-size: 2.850em; }
  .page-training .training-articles {
    background: #e7e7e7;
    color: #1a1e20;
    padding: 80px 0; }
    @media (max-width: 767px) {
      .page-training .training-articles {
        padding: 2em 0 1em 0; } }
    .page-training .training-articles .title {
      color: inherit; }
  .page-training .training-events {
    background: #FFF;
    color: #1a1e20;
    padding: 80px 0; }
    @media (max-width: 767px) {
      .page-training .training-events {
        padding: 2em 0 1em 0; } }
    .page-training .training-events .title {
      text-transform: uppercase;
      font-size: 1.438em;
      font-weight: 600;
      line-height: 1;
      letter-spacing: 0.1em;
      margin-bottom: 40px; }
      .page-training .training-events .title a {
        text-decoration: none;
        color: inherit; }
    .page-training .training-events .event {
      display: inline;
      float: left;
      width: 22.22222%;
      margin: 0 1.38889%;
      margin-bottom: 2em;
      color: inherit;
      text-decoration: none; }
      .page-training .training-events .event span {
        display: block; }
      @media (max-width: 1024px) {
        .page-training .training-events .event {
          display: inline;
          float: left;
          width: 30.55556%;
          margin: 0 1.38889%;
          margin-bottom: 2em; } }
      @media (max-width: 768px) {
        .page-training .training-events .event {
          display: inline;
          float: left;
          width: 47.22222%;
          margin: 0 1.38889%;
          margin-bottom: 2em; } }
      @media (max-width: 375px) {
        .page-training .training-events .event {
          display: inline;
          float: left;
          width: 97.22222%;
          margin: 0 1.38889%;
          margin-bottom: 2em; } }
    .page-training .training-events .e-image {
      position: relative;
      background-position: center center;
      background-size: cover;
      margin-bottom: 1em; }
      .page-training .training-events .e-image:before {
        display: block;
        content: "";
        width: 100%;
        padding-top: 59.25926%; }
    .page-training .training-events .e-title {
      font-size: 1.125em;
      font-weight: 500;
      line-height: 1.2; }
    .page-training .training-events .e-description {
      font-size: 0.875em;
      line-height: 1.4; }
    .page-training .training-events hr {
      display: none;
      clear: both;
      width: 100%;
      border: 0;
      margin: 0; }
      @media (min-width: 1024px) {
        .page-training .training-events hr:nth-of-type(4n) {
          display: block; } }
      @media (max-width: 1024px) {
        .page-training .training-events hr:nth-of-type(4n) {
          display: none; }
        .page-training .training-events hr:nth-of-type(3n) {
          display: block; } }
      @media (max-width: 768px) {
        .page-training .training-events hr:nth-of-type(3n) {
          display: none; }
        .page-training .training-events hr:nth-of-type(2n) {
          display: block; } }

@media (max-width: 767px) and (orientation: portrait) {
  .page-training .training-events hr:nth-of-type(2n) {
    display: none; } }
  .page-training .training-resources {
    background: #e7e7e7;
    color: #1a1e20;
    padding: 80px 0; }
    @media (max-width: 767px) {
      .page-training .training-resources {
        padding: 2em 0; } }
    .page-training .training-resources .title {
      text-transform: uppercase;
      font-size: 1.438em;
      font-weight: 600;
      line-height: 1;
      letter-spacing: 0.1em;
      margin-bottom: 40px; }
      .page-training .training-resources .title a {
        text-decoration: none;
        color: inherit; }
    .page-training .training-resources ul {
      -moz-column-count: 2;
      -webkit-column-count: 2;
      column-count: 2;
      -moz-column-gap: 40px;
      -webkit-column-gap: 40px;
      column-gap: 40px;
      margin: 0;
      padding: 0; }
      @media (max-width: 767px) {
        .page-training .training-resources ul {
          -moz-column-count: 1;
          -webkit-column-count: 1;
          column-count: 1;
          -moz-column-gap: 40px;
          -webkit-column-gap: 40px;
          column-gap: 40px; } }
      .page-training .training-resources ul li {
        display: block;
        font-size: 1.250em;
        line-height: 1.2;
        margin: 0;
        min-height: 44px;
        padding: 0 0 10px 50px;
        position: relative; }
        @media (max-width: 767px) {
          .page-training .training-resources ul li {
            font-size: 1em;
            padding: 0 0 10px 40px; } }
        .page-training .training-resources ul li:before {
          border: 2px solid #1a1e20;
          background: url("../img/ico-resource-arrow.svg") center center no-repeat;
          content: "";
          display: block;
          height: 29px;
          left: 0;
          position: absolute;
          width: 29px; }
          @media (max-width: 767px) {
            .page-training .training-resources ul li:before {
              width: 25px;
              height: 25px; } }
        .page-training .training-resources ul li a {
          text-decoration: none;
          color: inherit; }

/* Events Page Styles
--------------------------------------------------------------- */
/* Event Component */
.event-item {
  border-color: #1a1e20;
  color: #1a1e20;
  margin-bottom: 4em;
  position: relative;
  text-align: left; }
  .event-item .e-graphic {
    border-width: 2px;
    border-style: solid;
    font-weight: 500;
    left: 0;
    letter-spacing: 2px;
    position: absolute;
    text-align: center;
    text-transform: uppercase;
    top: 14px;
    width: 120px; }
  .event-item .e-month {
    font-size: 1.125em;
    height: 32px; }
  .event-item .e-day {
    font-size: 3.875em;
    border-top-width: 2px;
    border-top-style: solid;
    border-top-color: inherit;
    background: #3cf;
    height: 118px; }
    .event-item .e-day span {
      color: #FFF; }
  .event-item .e-details {
    padding-left: 180px; }
  .event-item .e-title {
    font-size: 2.813em;
    line-height: 1.2; }
    .event-item .e-title a {
      color: inherit;
      text-decoration: none; }
  .event-item .e-date {
    font-size: 1.304em;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase; }
  .event-item .e-description {
    letter-spacing: 1px;
    line-height: 1.4;
    margin-bottom: 1.5em; }
  .event-item .e-button {
    -ms-transition: background 0.3s, color 0.3s;
    -webkit-transition: background 0.3s, color 0.3s;
    -moz-transition: background 0.3s, color 0.3s;
    -o-transition: background 0.3s, color 0.3s;
    transition: background 0.3s, color 0.3s;
    -webkit-backface-visibility: hidden;
    background: #1a1e20;
    border-color: #1a1e20;
    border-style: solid;
    border-width: 2px;
    color: #FFF;
    font-size: 0.938em;
    font-weight: 600;
    letter-spacing: 1px;
    padding: 6px 44px;
    text-decoration: none; }
    .event-item .e-button:hover {
      background: #FFF;
      color: #1a1e20; }
  .event-item.light {
    color: #FFF;
    border-color: #FFF; }
    .event-item.light .e-button {
      background: #FFF;
      border-color: #FFF;
      color: #1a1e20; }
      .event-item.light .e-button:hover {
        background: #1a1e20;
        color: #FFF; }
  @media (max-width: 1024px) {
    .event-item .e-graphic {
      width: 100px; }
    .event-item .e-day {
      font-size: 3.4em;
      height: 100px; }
    .event-item .e-details {
      padding-left: 140px; }
    .event-item .e-title {
      font-size: 2.4em; } }
  @media (max-width: 768px) {
    .event-item .e-title {
      font-size: 2.2em; } }
  @media (max-width: 375px) {
    .event-item .e-graphic {
      width: 30px;
      top: 6px;
      border-width: 1px;
      letter-spacing: 1px; }
    .event-item .e-month {
      font-size: .5em;
      font-weight: 700;
      height: 14px; }
    .event-item .e-day {
      font-size: 1em;
      height: 30px;
      border-width: 1px;
      font-weight: 700; }
    .event-item .e-details {
      padding-left: 50px; }
    .event-item .e-title {
      font-size: 1.2em;
      margin-bottom: 4px; }
    .event-item .e-date {
      font-size: .8em; }
    .event-item .e-description {
      font-size: .7em;
      line-height: 1.2; } }

/* Event Page */
.page-events {
  background: #FFF; }
  .page-events .container {
    width: 1220px;
    z-index: 1; }
  .page-events .events-header {
    background: #000;
    padding: 120px 0;
    position: relative; }
    @media (max-width: 768px) {
      .page-events .events-header {
        padding: 80px 0; } }
    @media (max-width: 375px) {
      .page-events .events-header {
        padding: 40px 0 50px 0; } }
    .page-events .events-header .event-item {
      margin-bottom: 0; }
    .page-events .events-header .eh-background {
      bottom: 0;
      left: 0;
      position: absolute;
      right: 0;
      top: 0;
      background-position: center center;
      background-size: cover;
      background-attachment: fixed;
      opacity: .4;
      z-index: 0; }
      @media (max-width: 1024px) {
        .page-events .events-header .eh-background {
          background-attachment: scroll; } }
  .page-events .events-list {
    padding: 100px 0; }
    @media (max-width: 768px) {
      .page-events .events-list {
        padding: 80px 0; } }
    @media (max-width: 375px) {
      .page-events .events-list {
        padding: 40px 0 0 0; } }

/* Contact Page Styles
--------------------------------------------------------------- */
.page-contact {
  background: #FFF; }
  .page-contact .contact {
    padding: 130px 0; }
    @media (max-width: 768px) {
      .page-contact .contact {
        padding: 40px 0; } }
    .page-contact .contact .container {
      width: 1040px; }
    .page-contact .contact .title {
      font-size: 1.304em;
      font-weight: 600;
      letter-spacing: 1px;
      margin-bottom: 1.2em;
      text-transform: uppercase; }
  .page-contact .contact-form {
    display: inline;
    float: left;
    width: 63.88889%;
    margin: 0 1.38889%;
    margin-left: -98.61111%; }
  .page-contact .contact-info {
    display: inline;
    float: left;
    width: 30.55556%;
    margin: 0 1.38889%;
    margin-left: 68.05556%; }
  @media (max-width: 768px) {
    .page-contact .contact-form {
      display: inline;
      float: left;
      width: 97.22222%;
      margin: 0 1.38889%; }
    .page-contact .contact-info {
      display: inline;
      float: left;
      width: 97.22222%;
      margin: 0 1.38889%; } }
  .page-contact .contact-form form {
    background: #e7e7e7;
    padding: 65px;
    font-size: 1.125em; }
    @media (max-width: 768px) {
      .page-contact .contact-form form {
        padding: 20px;
        font-size: 1em; } }
    .page-contact .contact-form form .form-element {
      margin-bottom: 20px; }
      .page-contact .contact-form form .form-element:last-of-type {
        margin-bottom: 0; }
    .page-contact .contact-form form .note {
      color: #0bd;
      letter-spacing: 1px;
      line-height: 1.2;
      margin-bottom: 1em; }
    .page-contact .contact-form form select,
    .page-contact .contact-form form input,
    .page-contact .contact-form form textarea,
    .page-contact .contact-form form button {
      -webkit-appearance: none;
      -moz-appearance: none;
      appearance: none;
      -webkit-border-radius: 0;
      -moz-border-radius: 0;
      border-radius: 0;
      border: none;
      color: #000;
      font: inherit;
      line-height: 1; }
      .page-contact .contact-form form select:focus, .page-contact .contact-form form select:active,
      .page-contact .contact-form form input:focus,
      .page-contact .contact-form form input:active,
      .page-contact .contact-form form textarea:focus,
      .page-contact .contact-form form textarea:active,
      .page-contact .contact-form form button:focus,
      .page-contact .contact-form form button:active {
        outline: 0; }
    .page-contact .contact-form form label {
      width: 100%;
      display: block; }
    .page-contact .contact-form form select {
      position: relative;
      cursor: pointer;
      min-width: 60%;
      padding: 1em;
      background: #FFF url("../img/ico-select.svg") right 10px center no-repeat; }
      @media (max-width: 768px) {
        .page-contact .contact-form form select {
          width: 100%; } }
    .page-contact .contact-form form input[type=submit] {
      -ms-transition: all 0.3s;
      -webkit-transition: all 0.3s;
      -moz-transition: all 0.3s;
      -o-transition: all 0.3s;
      transition: all 0.3s;
      -webkit-backface-visibility: hidden;
      background: transparent;
      border: 2px solid #1a1e20;
      box-sizing: border-box;
      color: #1a1e20;
      cursor: pointer;
      display: inline-block;
      font-size: 0.9em;
      font-weight: 600;
      letter-spacing: 1px;
      line-height: 1;
      padding: 8px 50px;
      text-align: center; }
      .page-contact .contact-form form input[type=submit]:hover {
        background: #1a1e20;
        color: #FFF;
        opacity: 1; }
      @media (max-width: 375px) {
        .page-contact .contact-form form input[type=submit] {
          width: 100%;
          padding: 15px 30px; } }
    .page-contact .contact-form form input[type=text],
    .page-contact .contact-form form input[type=search],
    .page-contact .contact-form form input[type=tel],
    .page-contact .contact-form form input[type=password],
    .page-contact .contact-form form input[type=email],
    .page-contact .contact-form form input[type=reset],
    .page-contact .contact-form form button,
    .page-contact .contact-form form textarea {
      padding: .75em 1em;
      box-sizing: border-box;
      width: 100%; }
    .page-contact .contact-form form input[type=checkbox]:not(old),
    .page-contact .contact-form form input[type=radio]:not(old) {
      font-size: 1em;
      margin: 0;
      opacity: 0;
      padding: 0;
      width: 2em; }
    .page-contact .contact-form form input[type=checkbox]:not(old) + label,
    .page-contact .contact-form form input[type=radio]:not(old) + label {
      display: inline-block;
      margin-left: -2em;
      line-height: 1.5em;
      cursor: pointer; }
    .page-contact .contact-form form input[type=checkbox]:not(old) + label > span,
    .page-contact .contact-form form input[type=radio]:not(old) + label > span {
      background: #FFF;
      border-radius: 50%;
      border: 0;
      display: inline-block;
      height: 1em;
      margin: 0.25em 0.5em 0.25em 0.25em;
      position: relative;
      vertical-align: bottom;
      width: 1em; }
    .page-contact .contact-form form input[type=radio]:not(old):checked + label > span:before {
      background: #096475;
      border-radius: 50%;
      content: "";
      display: block;
      height: .75em;
      margin: .125em;
      width: .75em; }
    .page-contact .contact-form form input[type=checkbox]:not(old):checked + label > span {
      background: #33ccff; }
      .page-contact .contact-form form input[type=checkbox]:not(old):checked + label > span:before {
        border-radius: 50%;
        color: #1a1e20;
        content: '\f00c';
        display: block;
        font-family: "FontAwesome";
        font-size: .8em;
        height: 1.3em;
        line-height: 1.4em;
        text-align: center;
        width: 1.3em; }

/* Sate of the World Page Styles
--------------------------------------------------------------- */
.page-state-world {
  background: #FFF; }
  .page-state-world .sw-data-table {
    position: relative;
    z-index: 1;
    padding: 0 0 110px 0;
    text-align: center; }
    @media (max-width: 1023px) {
      .page-state-world .sw-data-table {
        padding: 60px 0; } }
    .page-state-world .sw-data-table .rtable td, .page-state-world .sw-data-table .rtable th {
      width: 16.66667%; }
    .page-state-world .sw-data-table .view-all {
      display: inline-block;
      margin: 60px auto 0 auto;
      text-transform: uppercase;
      font-size: 0.938em;
      text-transform: uppercase;
      letter-spacing: .5px;
      text-decoration: none;
      color: #1a1e20;
      font-weight: 500;
      border-bottom: 3px solid #33ccff; }
  .page-state-world .sw-article {
    position: relative;
    padding-bottom: 100px; }
    .page-state-world .sw-article .container {
      width: 1160px; }
    .page-state-world .sw-article .article-image {
      position: relative;
      background-position: center center;
      background-size: cover;
      background-color: #1a1e20;
      background-attachment: fixed;
      height: 550px; }
      @media (max-width: 1024px) {
        .page-state-world .sw-article .article-image {
          height: 400px;
          background-attachment: scroll; } }

@media (max-width: 767px) and (orientation: portrait) {
  .page-state-world .sw-article .article-image {
    height: 300px; } }

@media (max-width: 767px) and (orientation: landscape) {
  .page-state-world .sw-article .article-image {
    height: 250px; } }
    .page-state-world .sw-article article {
      background: #FFF;
      max-width: 890px;
      margin: 0 auto;
      max-height: 600px;
      position: relative;
      overflow: hidden; }
    .page-state-world .sw-article .read-more {
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      text-align: center;
      margin: 0;
      padding: 300px 0 0 0;
      background: -moz-linear-gradient(top, rgba(255, 255, 255, 0) 0%, white 80%);
      background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 0%, white 80%);
      background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, white 80%);
      filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00ffffff', endColorstr='#ffffff',GradientType=0 ); }
      .page-state-world .sw-article .read-more a {
        background: #000;
        color: #FFF;
        display: inline-block;
        line-height: 1;
        text-transform: uppercase;
        text-decoration: none;
        font-weight: 600;
        font-size: .9em;
        letter-spacing: 1px;
        padding: 18px 20px;
        border-radius: 3px;
        width: 360px;
        max-width: 100%; }
    .page-state-world .sw-article .article-title {
      color: #1a1e20;
      font-size: 3.375em;
      font-weight: 500;
      line-height: 1.2;
      margin: 70px auto;
      max-width: 890px;
      text-align: center; }
      @media (max-width: 767px) {
        .page-state-world .sw-article .article-title {
          font-size: 2.2em;
          margin: 40px auto;
          text-align: left; } }

/* Global Cities Initiative Page Styles
--------------------------------------------------------------- */
.page-global-cities {
  background: #FFF; }
  .page-global-cities .gc-header {
    background: #1a1e20;
    color: #FFF;
    height: 700px;
    position: relative;
    text-transform: uppercase; }
    @media (max-width: 1023px) {
      .page-global-cities .gc-header {
        height: 600px; } }
    @media (max-width: 767px) {
      .page-global-cities .gc-header {
        height: 450px; } }
    .page-global-cities .gc-header .container {
      width: 780px;
      z-index: 2; }
      @media (max-width: 779px) {
        .page-global-cities .gc-header .container {
          width: 90%; } }
    .page-global-cities .gc-header .header-background {
      bottom: 0;
      left: 0;
      position: absolute;
      right: 0;
      top: 0;
      background-position: center center;
      background-size: cover;
      background-attachment: fixed;
      opacity: .8;
      z-index: 1; }
      @media (max-width: 1023px) {
        .page-global-cities .gc-header .header-background {
          background-attachment: scroll; } }
    .page-global-cities .gc-header .header-title {
      font-size: 2.813em;
      font-weight: 600;
      letter-spacing: .16em;
      margin-bottom: 40px; }
      @media (max-width: 1023px) {
        .page-global-cities .gc-header .header-title {
          font-size: 2.6em; } }
      @media (max-width: 767px) {
        .page-global-cities .gc-header .header-title {
          font-size: 2em; } }
    .page-global-cities .gc-header .header-description {
      font-size: 1.188em;
      font-weight: 500;
      letter-spacing: 1px;
      margin-bottom: 40px; }
      @media (max-width: 767px) {
        .page-global-cities .gc-header .header-description {
          font-size: 1em;
          line-height: 1.4; } }
    .page-global-cities .gc-header .header-button {
      -ms-transition: color 0.3s, background 0.3s;
      -webkit-transition: color 0.3s, background 0.3s;
      -moz-transition: color 0.3s, background 0.3s;
      -o-transition: color 0.3s, background 0.3s;
      transition: color 0.3s, background 0.3s;
      -webkit-backface-visibility: hidden;
      background: #1a1e20;
      border-radius: 3px;
      color: #FFF;
      display: inline-block;
      font-size: 1.054em;
      font-weight: 600;
      letter-spacing: 1px;
      line-height: 1;
      min-width: 350px;
      padding: 16px;
      text-decoration: none;
      text-transform: uppercase; }
      @media (max-width: 767px) {
        .page-global-cities .gc-header .header-button {
          min-width: 1px;
          width: 100%; } }
      .page-global-cities .gc-header .header-button:hover {
        color: #1a1e20;
        background: #FFF; }
  .page-global-cities .gc-guides {
    padding: 80px 0 0 0;
    text-align: center; }
    @media (max-width: 767px) {
      .page-global-cities .gc-guides {
        padding: 40px 0 0 0; } }
    .page-global-cities .gc-guides .guides-title {
      font-size: 1.625em;
      font-weight: 600;
      letter-spacing: .05em; }
    .page-global-cities .gc-guides .guides-description {
      font-size: 1.250em;
      letter-spacing: .05em;
      width: 660px;
      max-width: 90%;
      margin: 0 auto 80px auto; }
      @media (max-width: 767px) {
        .page-global-cities .gc-guides .guides-description {
          font-size: 1em;
          margin: 0 auto 40px auto; } }
    .page-global-cities .gc-guides .guides-links {
      width: 100.5%;
      margin: 0 -.25%; }
    .page-global-cities .gc-guides .guide-link {
      position: relative;
      background: #1a1e20;
      color: #FFF;
      display: block;
      float: left;
      overflow: hidden;
      text-decoration: none;
      width: 25%; }
      .page-global-cities .gc-guides .guide-link:before {
        display: block;
        content: "";
        width: 100%;
        padding-top: 57.5%; }
      @media (max-width: 1023px) {
        .page-global-cities .gc-guides .guide-link {
          width: 50%; } }
      @media (max-width: 767px) {
        .page-global-cities .gc-guides .guide-link {
          width: 100%; } }
      .page-global-cities .gc-guides .guide-link span {
        display: block; }
      .page-global-cities .gc-guides .guide-link .background {
        bottom: 0;
        left: 0;
        position: absolute;
        right: 0;
        top: 0;
        background-position: center center;
        background-size: cover;
        -ms-transition: all 1s ease-in-out;
        -webkit-transition: all 1s ease-in-out;
        -moz-transition: all 1s ease-in-out;
        -o-transition: all 1s ease-in-out;
        transition: all 1s ease-in-out;
        -webkit-backface-visibility: hidden;
        opacity: .6;
        z-index: 1; }
      .page-global-cities .gc-guides .guide-link .title {
        font-size: 1.250em;
        font-weight: 600;
        left: 50%;
        letter-spacing: .05em;
        position: absolute;
        text-transform: uppercase;
        top: 50%;
        -webkit-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
        width: 100%;
        z-index: 2; }
      .page-global-cities .gc-guides .guide-link .border {
        bottom: 0;
        left: 0;
        position: absolute;
        right: 0;
        top: 0;
        -ms-transition: opacity 0.3s;
        -webkit-transition: opacity 0.3s;
        -moz-transition: opacity 0.3s;
        -o-transition: opacity 0.3s;
        transition: opacity 0.3s;
        -webkit-backface-visibility: hidden;
        border: solid #06fbf2 4px;
        opacity: 0;
        z-index: 3; }
      .page-global-cities .gc-guides .guide-link:hover .border {
        opacity: 1; }
      .page-global-cities .gc-guides .guide-link:hover .background {
        -webkit-transform: scale(1.05, 1.05);
        -ms-transform: scale(1.05, 1.05);
        -moz-transform: scale(1.05, 1.05);
        transform: scale(1.05, 1.05); }
  .page-global-cities .gc-about {
    background: #1a1e20;
    color: #FFF;
    height: 700px;
    position: relative; }
    @media (max-width: 767px) {
      .page-global-cities .gc-about {
        height: 500px; } }
    .page-global-cities .gc-about .container {
      width: 90%;
      z-index: 2; }
    .page-global-cities .gc-about .about-graphic {
      margin-bottom: 40px; }
    .page-global-cities .gc-about .about-background {
      bottom: 0;
      left: 0;
      position: absolute;
      right: 0;
      top: 0;
      background-position: center center;
      background-size: cover;
      background-attachment: fixed;
      opacity: .4;
      z-index: 1; }
      @media (max-width: 1024px) {
        .page-global-cities .gc-about .about-background {
          background-attachment: scroll; } }
    .page-global-cities .gc-about .about-title {
      font-size: 1.625em;
      font-weight: 600;
      letter-spacing: 1px;
      margin-bottom: 10px; }
    .page-global-cities .gc-about .about-description {
      font-size: 1.250em;
      letter-spacing: .5px;
      margin: 0;
      padding: 0; }
      .page-global-cities .gc-about .about-description li {
        display: block; }
  .page-global-cities .gc-next-steps {
    padding: 80px 0;
    text-align: center; }
    @media (max-width: 767px) {
      .page-global-cities .gc-next-steps {
        padding: 40px 0; } }
    .page-global-cities .gc-next-steps .container {
      width: 1010px; }
    .page-global-cities .gc-next-steps .steps-title {
      font-size: 2.813em;
      font-weight: 400;
      letter-spacing: .05em;
      margin-bottom: 40px; }
      @media (max-width: 767px) {
        .page-global-cities .gc-next-steps .steps-title {
          font-size: 2em; } }
    .page-global-cities .gc-next-steps .steps-description {
      font-size: 1.250em;
      letter-spacing: .5px;
      margin: 0 auto 100px auto;
      width: 660px;
      max-width: 90%; }
      @media (max-width: 767px) {
        .page-global-cities .gc-next-steps .steps-description {
          font-size: 1em;
          margin: 0 auto 40px auto; } }
    .page-global-cities .gc-next-steps .steps-list {
      counter-reset: count;
      display: block;
      margin: 0 0 60px 0;
      padding: 0;
      text-align: left; }
      @media (max-width: 767px) {
        .page-global-cities .gc-next-steps .steps-list {
          font-size: .8em;
          margin: 0 0 20px 0; } }
      .page-global-cities .gc-next-steps .steps-list li {
        display: block;
        font-size: 1.250em;
        letter-spacing: 1px;
        line-height: 1.4;
        min-height: 60px;
        padding: 0 0 5px 66px;
        position: relative; }
        @media (max-width: 767px) {
          .page-global-cities .gc-next-steps .steps-list li {
            padding: 0 0 20px 44px; } }
      .page-global-cities .gc-next-steps .steps-list li:before {
        background: #FFF;
        border-radius: 50%;
        border: 2px solid #00bbdd;
        content: counter(count);
        counter-increment: count;
        display: block;
        -moz-font-feature-settings: 'lnum';
        -ms-font-feature-settings: 'lnum';
        -webkit-font-feature-settings: 'lnum';
        font-feature-settings: 'lnum';
        font-size: 1em;
        font-weight: 700;
        height: 46px;
        left: 0;
        letter-spacing: 1px;
        line-height: 40px;
        position: absolute;
        text-align: center;
        width: 46px; }
        @media (max-width: 767px) {
          .page-global-cities .gc-next-steps .steps-list li:before {
            font-size: 1.200em;
            height: 32px;
            line-height: 26px;
            width: 32px; } }
      @media (max-width: 767px) {
        .page-global-cities .gc-next-steps .steps-list li:nth-child(4),
        .page-global-cities .gc-next-steps .steps-list li:nth-child(5) {
          display: none; } }
      .page-global-cities .gc-next-steps .steps-list .item-title {
        display: block;
        font-weight: 600;
        letter-spacing: 1px;
        margin-bottom: 6px;
        text-transform: uppercase; }
    .page-global-cities .gc-next-steps .steps-button {
      -ms-transition: color 0.3s, background 0.3s;
      -webkit-transition: color 0.3s, background 0.3s;
      -moz-transition: color 0.3s, background 0.3s;
      -o-transition: color 0.3s, background 0.3s;
      transition: color 0.3s, background 0.3s;
      -webkit-backface-visibility: hidden;
      background: #1a1e20;
      border-radius: 3px;
      color: #FFF;
      display: inline-block;
      font-size: 1.054em;
      font-weight: 600;
      letter-spacing: 1px;
      line-height: 1;
      min-width: 350px;
      padding: 16px;
      text-decoration: none;
      text-transform: uppercase; }
      @media (max-width: 767px) {
        .page-global-cities .gc-next-steps .steps-button {
          min-width: 1px;
          width: 100%; } }
      .page-global-cities .gc-next-steps .steps-button:hover {
        color: #1a1e20;
        background: #FFF; }
  .page-global-cities .gc-resources {
    background: #1a1e20;
    color: #FFF;
    padding: 0 0 70px 0;
    text-align: center; }
    @media (max-width: 767px) {
      .page-global-cities .gc-resources {
        padding: 40px 0; } }
    .page-global-cities .gc-resources .article-end {
      height: 50px;
      background: #FFF;
      width: 1160px;
      max-width: 94%;
      margin: 0 auto 70px auto; }
      @media (max-width: 767px) {
        .page-global-cities .gc-resources .article-end {
          display: none; } }
    .page-global-cities .gc-resources .title {
      font-size: 1.438em;
      font-weight: 600;
      text-align: left;
      text-transform: uppercase;
      letter-spacing: 1px;
      margin-bottom: 30px; }
    .page-global-cities .gc-resources .all {
      *zoom: 1;
      color: #FFF;
      border-bottom: 2px solid #33ccff;
      display: inline-block;
      font-size: 0.938em;
      font-weight: 600;
      letter-spacing: 1px;
      margin-top: 2em;
      text-decoration: none;
      text-transform: uppercase; }
      .page-global-cities .gc-resources .all:before, .page-global-cities .gc-resources .all:after {
        content: "";
        display: table; }
      .page-global-cities .gc-resources .all:after {
        clear: both; }
    .page-global-cities .gc-resources .project {
      display: inline;
      float: left;
      width: 22.22222%;
      margin: 0 1.38889%;
      position: relative;
      color: inherit;
      margin-bottom: 2em;
      overflow: hidden;
      text-align: left; }
      .page-global-cities .gc-resources .project:before {
        display: block;
        content: "";
        width: 100%;
        padding-top: 103.125%; }
      @media (max-width: 1023px) {
        .page-global-cities .gc-resources .project {
          position: relative;
          display: inline;
          float: left;
          width: 47.22222%;
          margin: 0 1.38889%;
          margin-bottom: 2em; }
          .page-global-cities .gc-resources .project:before {
            display: block;
            content: "";
            width: 100%;
            padding-top: 75%; } }
      @media (max-width: 767px) {
        .page-global-cities .gc-resources .project {
          position: relative;
          display: inline;
          float: left;
          width: 97.22222%;
          margin: 0 1.38889%;
          margin-bottom: 2em; }
          .page-global-cities .gc-resources .project:before {
            display: block;
            content: "";
            width: 100%;
            padding-top: 83.33333%; } }

@media (max-width: 767px) and (orientation: landscape) {
  .page-global-cities .gc-resources .project {
    position: relative; }
    .page-global-cities .gc-resources .project:before {
      display: block;
      content: "";
      width: 100%;
      padding-top: 100%; } }
      .page-global-cities .gc-resources .project .inner {
        display: flex;
        flex-flow: column;
        height: 100%; }
      .page-global-cities .gc-resources .project header {
        background: #30383c;
        flex: 0 1 auto;
        padding: 1.5em;
        position: relative;
        z-index: 2; }
        @media (max-width: 768px) {
          .page-global-cities .gc-resources .project header {
            font-size: .9em; } }
      .page-global-cities .gc-resources .project .p-graphic {
        bottom: auto;
        flex: 1 1 auto;
        left: auto;
        position: relative;
        text-align: center;
        top: auto;
        right: auto; }
        .page-global-cities .gc-resources .project .p-graphic .p-background {
          bottom: 0;
          left: 0;
          position: absolute;
          right: 0;
          top: 0;
          background-position: center center;
          background-size: cover;
          -ms-transition: all 1s ease-in-out;
          -webkit-transition: all 1s ease-in-out;
          -moz-transition: all 1s ease-in-out;
          -o-transition: all 1s ease-in-out;
          transition: all 1s ease-in-out;
          -webkit-backface-visibility: hidden;
          background-color: #202020;
          opacity: .85; }
      .page-global-cities .gc-resources .project .p-link {
        display: block;
        bottom: 0;
        left: 0;
        position: absolute;
        right: 0;
        top: 0;
        z-index: 5; }
      .page-global-cities .gc-resources .project .p-title {
        font-size: 1.250em;
        font-weight: 500;
        line-height: 1.2;
        margin-bottom: 5px; }
      .page-global-cities .gc-resources .project .p-location {
        font-size: 0.750em;
        font-weight: 500;
        text-transform: uppercase;
        letter-spacing: 1px; }
      .page-global-cities .gc-resources .project .p-goal {
        color: #33ccff; }
      .page-global-cities .gc-resources .project:hover .p-background {
        opacity: 1;
        -webkit-transform: scale(1.05, 1.05);
        -ms-transform: scale(1.05, 1.05);
        -moz-transform: scale(1.05, 1.05);
        transform: scale(1.05, 1.05); }

/* LM History Page Styles
--------------------------------------------------------------- */
.page-lottie-moon {
  background: #FFF;
  position: relative; }
  .page-lottie-moon .lm-header {
    position: relative;
    overflow: hidden;
    height: 800px; }
    @media (max-width: 1023px) {
      .page-lottie-moon .lm-header {
        height: 700px; } }
    @media (max-width: 767px) {
      .page-lottie-moon .lm-header {
        padding: 3em 0;
        height: auto; } }
    .page-lottie-moon .lm-header .container {
      position: relative;
      width: 800px;
      z-index: 2;
      padding: 180px 0 0 0; }
      @media (max-width: 1023px) {
        .page-lottie-moon .lm-header .container {
          padding: 100px 0 0 0; } }
      @media (max-width: 767px) {
        .page-lottie-moon .lm-header .container {
          padding: 0; } }
    .page-lottie-moon .lm-header .header-background {
      bottom: 0;
      left: 0;
      position: absolute;
      right: 0;
      top: 0;
      background-color: #d7d7d7;
      background-position: center center;
      background-size: cover;
      background-attachment: fixed;
      z-index: 1; }
      @media (max-width: 1024px) {
        .page-lottie-moon .lm-header .header-background {
          background-attachment: scroll; } }
    .page-lottie-moon .lm-header .header-image {
      display: inline;
      float: left;
      width: 30.55556%;
      margin: 0 1.38889%;
      margin-left: -90.27778%;
      position: relative; }
      @media (max-width: 767px) {
        .page-lottie-moon .lm-header .header-image {
          display: inline;
          float: left;
          width: 97.22222%;
          margin: 0 1.38889%;
          height: 300px; } }
      .page-lottie-moon .lm-header .header-image img {
        position: absolute;
        top: 0; }
    .page-lottie-moon .lm-header .header-text {
      display: inline;
      float: left;
      width: 47.22222%;
      margin: 0 1.38889%;
      margin-left: 43.05556%;
      padding: 120px 0 0 0;
      font-size: 1.304em;
      text-align: justify;
      letter-spacing: 1px; }
      @media (max-width: 1023px) {
        .page-lottie-moon .lm-header .header-text {
          font-size: 1.125em; } }
      @media (max-width: 767px) {
        .page-lottie-moon .lm-header .header-text {
          display: inline;
          float: left;
          width: 97.22222%;
          margin: 0 1.38889%;
          padding: 0; } }
  .page-lottie-moon .lm-gallery {
    border-bottom: 24px solid #1a1e20;
    position: relative;
    *zoom: 1; }
    .page-lottie-moon .lm-gallery:before, .page-lottie-moon .lm-gallery:after {
      content: "";
      display: table; }
    .page-lottie-moon .lm-gallery:after {
      clear: both; }
    .page-lottie-moon .lm-gallery .image {
      position: relative;
      display: block;
      float: left;
      overflow: hidden;
      position: relative;
      width: 16.66667%; }
      .page-lottie-moon .lm-gallery .image:before {
        display: block;
        content: "";
        width: 100%;
        padding-top: 86.84211%; }
      @media (max-width: 767px) {
        .page-lottie-moon .lm-gallery .image {
          width: 33.3333333333%; } }
      .page-lottie-moon .lm-gallery .image .background {
        bottom: 0;
        left: 0;
        position: absolute;
        right: 0;
        top: 0;
        background-position: center center;
        background-size: cover;
        -ms-transition: all 1s ease-in-out;
        -webkit-transition: all 1s ease-in-out;
        -moz-transition: all 1s ease-in-out;
        -o-transition: all 1s ease-in-out;
        transition: all 1s ease-in-out;
        -webkit-backface-visibility: hidden;
        border: 0;
        display: block;
        opacity: 1;
        z-index: 0; }
      .page-lottie-moon .lm-gallery .image .border {
        bottom: 0;
        left: 0;
        position: absolute;
        right: 0;
        top: 0;
        -ms-transition: opacity 0.5s;
        -webkit-transition: opacity 0.5s;
        -moz-transition: opacity 0.5s;
        -o-transition: opacity 0.5s;
        transition: opacity 0.5s;
        -webkit-backface-visibility: hidden;
        border: 10px solid #00bbdd;
        opacity: 0;
        z-index: 2;
        display: block;
        box-shadow: inset 0 0 80px black; }
    .page-lottie-moon .lm-gallery .image:hover .border {
      opacity: 1; }
    .page-lottie-moon .lm-gallery .image:hover .background {
      opacity: 1;
      -webkit-transform: scale(1.05, 1.05);
      -ms-transform: scale(1.05, 1.05);
      -moz-transform: scale(1.05, 1.05);
      transform: scale(1.05, 1.05); }
  .page-lottie-moon .lm-about {
    padding: 125px 0; }
    @media (max-width: 1023px) {
      .page-lottie-moon .lm-about {
        padding: 3em 0; } }
    .page-lottie-moon .lm-about .about-faq {
      display: inline;
      float: left;
      width: 43.05556%;
      margin: 0 1.38889%;
      margin-left: -98.61111%; }
      @media (max-width: 1399px) {
        .page-lottie-moon .lm-about .about-faq {
          display: inline;
          float: left;
          width: 47.22222%;
          margin: 0 1.38889%;
          margin-left: -98.61111%; } }
      @media (max-width: 1023px) {
        .page-lottie-moon .lm-about .about-faq {
          display: inline;
          float: left;
          width: 97.22222%;
          margin: 0 1.38889%; } }
    .page-lottie-moon .lm-about .about-article {
      display: inline;
      float: left;
      width: 43.05556%;
      margin: 0 1.38889%;
      margin-left: 55.55556%; }
      @media (max-width: 1399px) {
        .page-lottie-moon .lm-about .about-article {
          display: inline;
          float: left;
          width: 47.22222%;
          margin: 0 1.38889%;
          margin-left: 51.38889%; } }
      @media (max-width: 1023px) {
        .page-lottie-moon .lm-about .about-article {
          display: inline;
          float: left;
          width: 97.22222%;
          margin: 0 1.38889%;
          margin-bottom: 2em; } }
    .page-lottie-moon .lm-about .article-graphic {
      position: relative;
      position: relative;
      display: block;
      background: #1a1e20; }
      .page-lottie-moon .lm-about .article-graphic:before {
        display: block;
        content: "";
        width: 100%;
        padding-top: 54.23197%; }
      .page-lottie-moon .lm-about .article-graphic .background {
        bottom: 0;
        left: 0;
        position: absolute;
        right: 0;
        top: 0;
        background-position: center center;
        background-size: cover;
        opacity: .33;
        z-index: 1; }
      .page-lottie-moon .lm-about .article-graphic .overlay {
        bottom: 0;
        left: 0;
        position: absolute;
        right: 0;
        top: 0;
        background-position: center center;
        background-repeat: no-repeat;
        background-size: 66%;
        z-index: 2; }
    .page-lottie-moon .lm-about .article-excerpt {
      font-size: 1.125em;
      padding: 1em;
      text-align: justify; }
      @media (max-width: 1023px) {
        .page-lottie-moon .lm-about .article-excerpt {
          padding: 0; } }
      .page-lottie-moon .lm-about .article-excerpt .article-read-more {
        font-weight: 600;
        letter-spacing: .05em;
        margin-left: 10px;
        text-align: left;
        text-transform: uppercase; }
  .page-lottie-moon .lm-quotes {
    background: url("../img/lottie-moon/lm-quotes.jpg") center center no-repeat;
    background-size: cover;
    color: #FFF;
    padding: 190px 0;
    position: relative; }
    @media (max-width: 1399px) {
      .page-lottie-moon .lm-quotes {
        padding: 100px 0; } }
    @media (max-width: 1023px) {
      .page-lottie-moon .lm-quotes {
        padding: 3em 0 4em 0; } }
    .page-lottie-moon .lm-quotes .flex {
      display: flex; }
    .page-lottie-moon .lm-quotes .quote-slider-arrow {
      width: 15%;
      margin: auto;
      cursor: pointer;
      height: 60px;
      overflow: hidden;
      position: relative;
      text-indent: 100%;
      white-space: nowrap; }
      @media (max-width: 1023px) {
        .page-lottie-moon .lm-quotes .quote-slider-arrow {
          display: none; } }
      .page-lottie-moon .lm-quotes .quote-slider-arrow:hover:before, .page-lottie-moon .lm-quotes .quote-slider-arrow:hover:after {
        background: #FFF; }
      .page-lottie-moon .lm-quotes .quote-slider-arrow:before, .page-lottie-moon .lm-quotes .quote-slider-arrow:after {
        -ms-transition: background 0.3s;
        -webkit-transition: background 0.3s;
        -moz-transition: background 0.3s;
        -o-transition: background 0.3s;
        transition: background 0.3s;
        -webkit-backface-visibility: hidden;
        background: #c2c2c2;
        content: "";
        height: 42px;
        position: absolute;
        top: 50%;
        width: 4px; }
      .page-lottie-moon .lm-quotes .quote-slider-arrow.quote-slider-prev:before {
        left: 50%;
        -ms-transform: translateY(-34px) rotate(45deg);
        -webkit-transform: translateY(-34px) rotate(45deg);
        transform: translateY(-34px) rotate(45deg); }
      .page-lottie-moon .lm-quotes .quote-slider-arrow.quote-slider-prev:after {
        left: 50%;
        -ms-transform: translateY(-7px) rotate(-45deg);
        -webkit-transform: translateY(-7px) rotate(-45deg);
        transform: translateY(-7px) rotate(-45deg); }
      .page-lottie-moon .lm-quotes .quote-slider-arrow.quote-slider-next:before {
        right: 50%;
        -ms-transform: translateY(-34px) rotate(-45deg);
        -webkit-transform: translateY(-34px) rotate(-45deg);
        transform: translateY(-34px) rotate(-45deg); }
      .page-lottie-moon .lm-quotes .quote-slider-arrow.quote-slider-next:after {
        right: 50%;
        -ms-transform: translateY(-7px) rotate(45deg);
        -webkit-transform: translateY(-7px) rotate(45deg);
        transform: translateY(-7px) rotate(45deg); }
    .page-lottie-moon .lm-quotes .quote-slider {
      width: 70%;
      margin: auto; }
      @media (max-width: 1023px) {
        .page-lottie-moon .lm-quotes .quote-slider {
          width: 100%; } }
    .page-lottie-moon .lm-quotes .quote-slider-pager {
      position: absolute;
      bottom: 0;
      width: 100%;
      background: #303335;
      *zoom: 1; }
      .page-lottie-moon .lm-quotes .quote-slider-pager:before, .page-lottie-moon .lm-quotes .quote-slider-pager:after {
        content: "";
        display: table; }
      .page-lottie-moon .lm-quotes .quote-slider-pager:after {
        clear: both; }
      .page-lottie-moon .lm-quotes .quote-slider-pager span {
        -ms-transition: background 0.3s;
        -webkit-transition: background 0.3s;
        -moz-transition: background 0.3s;
        -o-transition: background 0.3s;
        transition: background 0.3s;
        -webkit-backface-visibility: hidden;
        background: #317086;
        border-right: 1px solid #303335;
        cursor: pointer;
        display: block;
        float: left;
        height: 26px;
        overflow: hidden;
        text-indent: 100%;
        white-space: nowrap;
        width: 80px; }
        @media (max-width: 767px) {
          .page-lottie-moon .lm-quotes .quote-slider-pager span {
            width: 15%; } }
        .page-lottie-moon .lm-quotes .quote-slider-pager span.cycle-pager-active, .page-lottie-moon .lm-quotes .quote-slider-pager span:hover {
          background: #3cf; }
    .page-lottie-moon .lm-quotes .quote {
      width: 100%;
      text-align: center;
      display: inline-block; }
      .page-lottie-moon .lm-quotes .quote .text {
        font-size: 2.313em;
        font-style: italic;
        font-weight: 300;
        letter-spacing: .04em;
        line-height: 1.2;
        margin-bottom: 30px; }
        @media (max-width: 1024px) {
          .page-lottie-moon .lm-quotes .quote .text {
            font-size: 2em; } }
        @media (max-width: 767px) {
          .page-lottie-moon .lm-quotes .quote .text {
            font-size: 1.4em; } }
      .page-lottie-moon .lm-quotes .quote .name {
        font-size: 1.125em; }
        @media (max-width: 767px) {
          .page-lottie-moon .lm-quotes .quote .name {
            font-size: .9em; } }
  .page-lottie-moon .lm-letters {
    background: url("../img/lottie-moon/lm-letters.jpg") center center no-repeat;
    background-size: cover;
    background-attachment: fixed;
    color: #FFF;
    padding: 230px 0; }
    @media (max-width: 1024px) {
      .page-lottie-moon .lm-letters {
        background-attachment: scroll;
        padding: 100px 0; } }
    @media (max-width: 767px) {
      .page-lottie-moon .lm-letters {
        padding: 0; } }
    .page-lottie-moon .lm-letters .container {
      background: rgba(0, 0, 0, 0.89);
      width: 660px;
      padding: 50px 60px;
      text-align: justify; }
      @media (max-width: 1024px) {
        .page-lottie-moon .lm-letters .container {
          padding: 40px; } }
      @media (max-width: 767px) {
        .page-lottie-moon .lm-letters .container {
          max-width: 100%;
          padding: 3em 10%; } }
  .page-lottie-moon .lm-more {
    padding: 125px 0; }
    @media (max-width: 1024px) {
      .page-lottie-moon .lm-more {
        padding: 100px 0; } }
    @media (max-width: 1023px) {
      .page-lottie-moon .lm-more {
        padding: 3em 0; } }
    .page-lottie-moon .lm-more .col:nth-child(1) {
      display: inline;
      float: left;
      width: 43.05556%;
      margin: 0 1.38889%; }
      @media (max-width: 1399px) {
        .page-lottie-moon .lm-more .col:nth-child(1) {
          display: inline;
          float: left;
          width: 47.22222%;
          margin: 0 1.38889%; } }
      @media (max-width: 1023px) {
        .page-lottie-moon .lm-more .col:nth-child(1) {
          display: inline;
          float: left;
          width: 97.22222%;
          margin: 0 1.38889%; } }
    .page-lottie-moon .lm-more .col:nth-child(2) {
      display: inline;
      float: left;
      width: 43.05556%;
      margin: 0 1.38889%;
      margin-left: 9.72222%; }
      @media (max-width: 1399px) {
        .page-lottie-moon .lm-more .col:nth-child(2) {
          display: inline;
          float: left;
          width: 47.22222%;
          margin: 0 1.38889%; } }
      @media (max-width: 1023px) {
        .page-lottie-moon .lm-more .col:nth-child(2) {
          display: inline;
          float: left;
          width: 97.22222%;
          margin: 0 1.38889%; } }
    .page-lottie-moon .lm-more ul.download-list {
      display: block;
      margin: 0 0 30px 0;
      padding: 0; }
      .page-lottie-moon .lm-more ul.download-list li {
        display: inline-block;
        font-size: 0.875em;
        font-weight: 600;
        letter-spacing: 1px;
        margin-right: 20px;
        text-align: center;
        text-transform: uppercase; }
        @media (max-width: 767px) {
          .page-lottie-moon .lm-more ul.download-list li {
            margin-right: 10px; } }
        .page-lottie-moon .lm-more ul.download-list li:before {
          display: none; }
        .page-lottie-moon .lm-more ul.download-list li a {
          color: inherit; }
        .page-lottie-moon .lm-more ul.download-list li img {
          display: block; }

/* LM Home Page Styles
--------------------------------------------------------------- */
.page-lottie-moon-resources {
  background: #FFF;
  position: relative;
  overflow: hidden; }
  .page-lottie-moon-resources .lmco-header {
    position: relative;
    overflow: hidden;
    background: #303335;
    height: 90vh; }

@media (max-width: 767px) and (orientation: landscape) {
  .page-lottie-moon-resources .lmco-header {
    height: 120vh; } }
    .page-lottie-moon-resources .lmco-header .h-slider {
      height: 100%;
      z-index: 0; }
    .page-lottie-moon-resources .lmco-header .h-slider-overlay {
      position: absolute;
      height: 100%;
      text-align: center;
      width: 100%;
      z-index: 4; }
      .page-lottie-moon-resources .lmco-header .h-slider-overlay .animate {
        display: block;
        left: 0;
        margin: 0 auto;
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-40%);
        max-width: 90%;
        width: 540px; }

@media (max-width: 767px) and (orientation: landscape) {
  .page-lottie-moon-resources .lmco-header .h-slider-overlay .animate {
    width: 300px; } }
        .page-lottie-moon-resources .lmco-header .h-slider-overlay .animate img {
          display: block;
          height: auto;
          opacity: 1;
          -ms-transition: all 0.5s ease-in-out;
          -webkit-transition: all 0.5s ease-in-out;
          -moz-transition: all 0.5s ease-in-out;
          -o-transition: all 0.5s ease-in-out;
          transition: all 0.5s ease-in-out;
          -webkit-backface-visibility: hidden;
          width: 100%; }
        .page-lottie-moon-resources .lmco-header .h-slider-overlay .animate.go img {
          opacity: 0 !important;
          transform: translateY(20px); }
    .page-lottie-moon-resources .lmco-header .h-slider-fade {
      position: absolute;
      height: 50vh;
      text-align: center;
      width: 100%;
      bottom: 0;
      z-index: 3;
      background: -moz-linear-gradient(top, transparent 0%, black 100%);
      background: -webkit-linear-gradient(top, transparent 0%, black 100%);
      background: linear-gradient(to bottom, transparent 0%, black 100%);
      filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#000000',GradientType=0 ); }
    .page-lottie-moon-resources .lmco-header .slide {
      display: none;
      width: 100%;
      height: 100%;
      position: relative;
      overflow: hidden;
      z-index: 2; }
      .page-lottie-moon-resources .lmco-header .slide:first-of-type {
        display: block; }
      .page-lottie-moon-resources .lmco-header .slide .background {
        bottom: 0;
        left: 0;
        position: absolute;
        right: 0;
        top: 0;
        background-position: center center;
        background-size: cover;
        z-index: -1;
        -ms-transition: all 8s;
        -webkit-transition: all 8s;
        -moz-transition: all 8s;
        -o-transition: all 8s;
        transition: all 8s;
        -webkit-backface-visibility: hidden; }
        .page-lottie-moon-resources .lmco-header .slide .background.zoom {
          -ms-transform: scale(1.5, 1.5);
          /* IE 9 */
          -webkit-transform: scale(1.5, 1.5);
          /* Safari */
          transform: scale(1.5, 1.5); }
    .page-lottie-moon-resources .lmco-header .h-slider-pager {
      position: absolute;
      bottom: 0;
      width: 100%;
      background: #303335;
      *zoom: 1;
      z-index: 4; }
      .page-lottie-moon-resources .lmco-header .h-slider-pager:before, .page-lottie-moon-resources .lmco-header .h-slider-pager:after {
        content: "";
        display: table; }
      .page-lottie-moon-resources .lmco-header .h-slider-pager:after {
        clear: both; }
      .page-lottie-moon-resources .lmco-header .h-slider-pager span {
        -ms-transition: background 0.3s;
        -webkit-transition: background 0.3s;
        -moz-transition: background 0.3s;
        -o-transition: background 0.3s;
        transition: background 0.3s;
        -webkit-backface-visibility: hidden;
        background: #33ccff;
        border-right: 1px solid #303335;
        cursor: pointer;
        display: block;
        float: left;
        height: 26px;
        overflow: hidden;
        text-indent: 100%;
        white-space: nowrap;
        width: 80px; }
        @media (max-width: 767px) {
          .page-lottie-moon-resources .lmco-header .h-slider-pager span {
            width: 15%; } }
        .page-lottie-moon-resources .lmco-header .h-slider-pager span.cycle-pager-active, .page-lottie-moon-resources .lmco-header .h-slider-pager span:hover {
          background: #0db19a; }
  .page-lottie-moon-resources .lmco-info {
    padding: 80px 0;
    text-align: center; }
    @media (max-width: 767px) {
      .page-lottie-moon-resources .lmco-info {
        padding: 60px 0; } }
    .page-lottie-moon-resources .lmco-info .container {
      width: 80%;
      max-width: 900px; }
    .page-lottie-moon-resources .lmco-info .info-title {
      color: #333;
      font-size: 2.813em;
      font-weight: 400;
      letter-spacing: 2px;
      margin-bottom: 1em; }
      @media (max-width: 767px) {
        .page-lottie-moon-resources .lmco-info .info-title {
          font-size: 2em; } }
    .page-lottie-moon-resources .lmco-info .info-description {
      font-size: 1.250em;
      letter-spacing: 1px;
      text-align: justify; }
      @media (max-width: 767px) {
        .page-lottie-moon-resources .lmco-info .info-description {
          font-size: 1em; } }
    .page-lottie-moon-resources .lmco-info .info-button {
      -ms-transition: background 0.3s, color 0.3s;
      -webkit-transition: background 0.3s, color 0.3s;
      -moz-transition: background 0.3s, color 0.3s;
      -o-transition: background 0.3s, color 0.3s;
      transition: background 0.3s, color 0.3s;
      -webkit-backface-visibility: hidden;
      border: 2px solid #000;
      color: #000;
      display: inline-block;
      font-size: .9em;
      font-weight: 600;
      letter-spacing: 1px;
      line-height: 1;
      margin-top: 3em;
      padding: 10px 50px;
      text-decoration: none; }
      .page-lottie-moon-resources .lmco-info .info-button:hover {
        background: #000;
        color: #FFF; }
      @media (max-width: 767px) {
        .page-lottie-moon-resources .lmco-info .info-button {
          width: 100%;
          margin-top: 20px; } }
  .page-lottie-moon-resources .lmco-guide {
    position: relative;
    overflow: hidden;
    height: 675px; }
    @media (max-width: 767px) {
      .page-lottie-moon-resources .lmco-guide {
        height: 300px; } }
    .page-lottie-moon-resources .lmco-guide .g-background {
      bottom: 0;
      left: 0;
      position: absolute;
      right: 0;
      top: 0;
      background-position: center center;
      background-size: cover;
      z-index: 1;
      height: 150%;
      top: -40%; }
    .page-lottie-moon-resources .lmco-guide .g-content {
      position: relative;
      z-index: 5;
      height: 100%;
      line-height: 1;
      width: 90%;
      max-width: 1060px;
      margin: 0 auto; }
      .page-lottie-moon-resources .lmco-guide .g-content .cell {
        text-align: left;
        padding-left: 50%; }
        @media (max-width: 767px) {
          .page-lottie-moon-resources .lmco-guide .g-content .cell {
            padding-left: 40%; } }

@media (max-width: 767px) and (orientation: landscape) {
  .page-lottie-moon-resources .lmco-guide .g-content .cell {
    padding-left: 45%; } }
    .page-lottie-moon-resources .lmco-guide .g-title {
      font-size: 2.813em;
      font-weight: 300;
      margin-bottom: 34px; }
      @media (max-width: 767px) {
        .page-lottie-moon-resources .lmco-guide .g-title {
          font-size: 1.8em;
          margin-bottom: 20px; } }
    .page-lottie-moon-resources .lmco-guide .g-description {
      color: #1a1e20;
      font-size: 1.250em;
      line-height: 1.5;
      letter-spacing: 1px;
      margin-bottom: 30px; }
      @media (max-width: 767px) {
        .page-lottie-moon-resources .lmco-guide .g-description {
          font-size: .9em;
          line-height: 1.2;
          letter-spacing: normal;
          margin-bottom: 20px; } }
    .page-lottie-moon-resources .lmco-guide .g-button {
      -ms-transition: border-color 0.3s;
      -webkit-transition: border-color 0.3s;
      -moz-transition: border-color 0.3s;
      -o-transition: border-color 0.3s;
      transition: border-color 0.3s;
      -webkit-backface-visibility: hidden;
      border-bottom: 3px solid #00bbdd;
      color: #1a1e20;
      letter-spacing: 1px;
      padding: 0 0 3px 0;
      text-decoration: none;
      text-transform: uppercase;
      font-weight: 600;
      font-size: 0.938em; }
      .page-lottie-moon-resources .lmco-guide .g-button:hover {
        border-color: #1a1e20; }
  .page-lottie-moon-resources .lmco-week-prayer {
    background: #1a1e20;
    color: #FFF;
    line-height: 1;
    padding: 100px 0;
    position: relative;
    text-align: center; }
    @media (max-width: 767px) {
      .page-lottie-moon-resources .lmco-week-prayer {
        padding: 60px 0; } }
    @media (max-width: 375px) {
      .page-lottie-moon-resources .lmco-week-prayer {
        padding: 60px 5%; } }
    .page-lottie-moon-resources .lmco-week-prayer .p-background {
      opacity: 0.1;
      bottom: 0;
      left: 0;
      position: absolute;
      right: 0;
      top: 0;
      background: url("../img/lottie-moon/lm-lmco-week-prayer.svg") center 45% no-repeat;
      background-size: 62%;
      z-index: 0; }
      @media (max-width: 1023px) {
        .page-lottie-moon-resources .lmco-week-prayer .p-background {
          display: none; } }
    .page-lottie-moon-resources .lmco-week-prayer .p-content {
      position: relative;
      z-index: 1; }
    .page-lottie-moon-resources .lmco-week-prayer .p-title {
      font-size: 2.500em;
      font-weight: 300;
      margin-bottom: 90px; }
      @media (max-width: 767px) {
        .page-lottie-moon-resources .lmco-week-prayer .p-title {
          font-size: 1.8em;
          margin-bottom: 20px; } }
    .page-lottie-moon-resources .lmco-week-prayer .p-day {
      color: inherit;
      display: block;
      float: left;
      position: relative;
      margin-bottom: 60px;
      text-decoration: none;
      width: 12.5%;
      z-index: 1; }
      @media (max-width: 1023px) {
        .page-lottie-moon-resources .lmco-week-prayer .p-day {
          width: 100%;
          line-height: 100px;
          margin: 0; }
          .page-lottie-moon-resources .lmco-week-prayer .p-day:first-of-type .d-line:before {
            height: 52%;
            top: 50%; }
          .page-lottie-moon-resources .lmco-week-prayer .p-day:last-of-type .d-line:before {
            height: 50%; } }

@media (max-width: 767px) and (orientation: landscape) {
  .page-lottie-moon-resources .lmco-week-prayer .p-day {
    line-height: 80px; } }
      @media (max-width: 375px) {
        .page-lottie-moon-resources .lmco-week-prayer .p-day {
          width: 80%;
          float: none;
          margin: 0 auto;
          text-align: left; } }
      .page-lottie-moon-resources .lmco-week-prayer .p-day:hover .d-circle {
        background: #ebebeb;
        transform: scale(1.2, 1.2); }
    .page-lottie-moon-resources .lmco-week-prayer .p-timeline {
      *zoom: 1;
      position: relative;
      margin-bottom: 60px; }
      .page-lottie-moon-resources .lmco-week-prayer .p-timeline:before, .page-lottie-moon-resources .lmco-week-prayer .p-timeline:after {
        content: "";
        display: table; }
      .page-lottie-moon-resources .lmco-week-prayer .p-timeline:after {
        clear: both; }
      @media (max-width: 767px) {
        .page-lottie-moon-resources .lmco-week-prayer .p-timeline {
          margin-bottom: 20px; } }
    .page-lottie-moon-resources .lmco-week-prayer .d-title {
      display: block;
      font-size: 1.125em;
      font-weight: 600;
      text-transform: uppercase; }
      @media (max-width: 1023px) {
        .page-lottie-moon-resources .lmco-week-prayer .d-title {
          display: inline-block;
          width: 70px;
          text-align: left;
          vertical-align: middle; } }
      @media (max-width: 767px) {
        .page-lottie-moon-resources .lmco-week-prayer .d-title {
          width: 50px; } }
    .page-lottie-moon-resources .lmco-week-prayer .d-line {
      display: block;
      position: relative;
      width: 100%;
      height: 74px;
      line-height: 74px;
      text-align: center; }
      @media (max-width: 1023px) {
        .page-lottie-moon-resources .lmco-week-prayer .d-line {
          display: inline-block;
          height: 100%;
          line-height: inherit;
          vertical-align: middle;
          width: 100px; } }
      @media (max-width: 767px) {
        .page-lottie-moon-resources .lmco-week-prayer .d-line {
          width: 60px; } }

@media (max-width: 767px) and (orientation: landscape) {
  .page-lottie-moon-resources .lmco-week-prayer .d-line {
    width: 100px; } }
      .page-lottie-moon-resources .lmco-week-prayer .d-line:before {
        content: "";
        display: block;
        height: 6px;
        width: 100%;
        background: #00bbdd;
        position: absolute;
        top: 50%;
        margin-top: -2px; }
        @media (max-width: 1023px) {
          .page-lottie-moon-resources .lmco-week-prayer .d-line:before {
            width: 6px;
            height: 102%;
            top: 0;
            left: 50%;
            margin: 0 0 0 -3px; } }
      .page-lottie-moon-resources .lmco-week-prayer .d-line .d-circle {
        -ms-transition: all 0.3s;
        -webkit-transition: all 0.3s;
        -moz-transition: all 0.3s;
        -o-transition: all 0.3s;
        transition: all 0.3s;
        -webkit-backface-visibility: hidden;
        background: #1a1e20;
        border-radius: 50%;
        border: 6px solid #00bbdd;
        display: inline-block;
        height: 33px;
        position: relative;
        vertical-align: middle;
        width: 33px; }
    @media (max-width: 1023px) {
      .page-lottie-moon-resources .lmco-week-prayer .d-details {
        display: inline-block;
        text-align: left;
        vertical-align: middle; } }
    @media (max-width: 767px) {
      .page-lottie-moon-resources .lmco-week-prayer .d-details {
        max-width: 150px; } }
    .page-lottie-moon-resources .lmco-week-prayer .d-name {
      display: block;
      font-size: 1.250em;
      margin-bottom: 10px; }
      @media (max-width: 1023px) {
        .page-lottie-moon-resources .lmco-week-prayer .d-name {
          line-height: 1; } }
    .page-lottie-moon-resources .lmco-week-prayer .d-location {
      display: block;
      font-size: 0.875em;
      font-weight: 600;
      text-transform: uppercase;
      font-style: italic; }
      @media (max-width: 1023px) {
        .page-lottie-moon-resources .lmco-week-prayer .d-location {
          line-height: 1; } }
    .page-lottie-moon-resources .lmco-week-prayer .p-button {
      -ms-transition: background 0.3s, color 0.3s;
      -webkit-transition: background 0.3s, color 0.3s;
      -moz-transition: background 0.3s, color 0.3s;
      -o-transition: background 0.3s, color 0.3s;
      transition: background 0.3s, color 0.3s;
      -webkit-backface-visibility: hidden;
      border: 2px solid #00ffff;
      color: #FFF;
      display: inline-block;
      font-size: .9em;
      font-weight: 600;
      letter-spacing: 1px;
      line-height: 1;
      padding: 10px 50px;
      text-decoration: none; }
      .page-lottie-moon-resources .lmco-week-prayer .p-button:hover {
        background: #0ff;
        color: #1a1e20; }
  .page-lottie-moon-resources .lmco-videos {
    color: #1a1e20;
    padding: 90px 0;
    text-align: center; }
    @media (max-width: 767px) {
      .page-lottie-moon-resources .lmco-videos {
        padding: 60px 0 20px 0; } }
    .page-lottie-moon-resources .lmco-videos .container {
      width: 80%; }
    .page-lottie-moon-resources .lmco-videos .title {
      font-size: 1.304em;
      font-weight: 600;
      letter-spacing: 1px;
      margin-bottom: 1em;
      text-align: left;
      text-transform: uppercase; }
      @media (max-width: 767px) {
        .page-lottie-moon-resources .lmco-videos .title {
          font-size: 1.1em;
          margin-bottom: 2em; } }
    .page-lottie-moon-resources .lmco-videos .all {
      float: right;
      color: #1a1e20;
      border-bottom: 2px solid #33ccff;
      display: inline-block;
      font-size: 0.938em;
      font-weight: 600;
      letter-spacing: 1px;
      text-decoration: none;
      text-transform: uppercase; }
    .page-lottie-moon-resources .lmco-videos .vid {
      display: inline;
      float: left;
      width: 47.22222%;
      margin: 0 1.38889%;
      margin-bottom: 2em;
      text-align: center; }

@media (max-width: 767px) and (orientation: portrait) {
  .page-lottie-moon-resources .lmco-videos .vid {
    display: inline;
    float: left;
    width: 97.22222%;
    margin: 0 1.38889%;
    margin-bottom: 40px; } }
  .page-lottie-moon-resources .lmco-products {
    position: relative;
    overflow: hidden;
    padding-top: 46.875%; }
    @media (max-width: 767px) {
      .page-lottie-moon-resources .lmco-products {
        padding-top: 95%; } }

@media (max-width: 767px) and (orientation: landscape) {
  .page-lottie-moon-resources .lmco-products {
    padding-top: 100vh; } }
    .page-lottie-moon-resources .lmco-products .p-background {
      bottom: 0;
      left: 0;
      position: absolute;
      right: 0;
      top: 0;
      background-position: center center;
      background-size: cover;
      height: 140%;
      top: -70%; }

@media (max-width: 375px) and (orientation: portrait) {
  .page-lottie-moon-resources .lmco-products .p-background {
    background-position: 40% 50%; } }
    .page-lottie-moon-resources .lmco-products .p-content {
      bottom: 0;
      left: 0;
      position: absolute;
      right: 0;
      top: 0;
      z-index: 1;
      padding: 0 5%; }
      .page-lottie-moon-resources .lmco-products .p-content .table {
        height: 100%; }
      .page-lottie-moon-resources .lmco-products .p-content .cell {
        text-align: left;
        padding-left: 40%; }

@media (max-width: 767px) and (orientation: portrait) {
  .page-lottie-moon-resources .lmco-products .p-content .cell {
    padding-left: 35%; } }
    .page-lottie-moon-resources .lmco-products .p-title {
      font-size: 2.813em;
      font-weight: 300;
      margin-bottom: 40px; }
      @media (max-width: 767px) {
        .page-lottie-moon-resources .lmco-products .p-title {
          font-size: 1.8em;
          margin-bottom: 20px; } }
    .page-lottie-moon-resources .lmco-products .p-button {
      -ms-transition: color 0.3s, background 0.3s;
      -webkit-transition: color 0.3s, background 0.3s;
      -moz-transition: color 0.3s, background 0.3s;
      -o-transition: color 0.3s, background 0.3s;
      transition: color 0.3s, background 0.3s;
      -webkit-backface-visibility: hidden;
      display: inline-block;
      background: #1a1e20;
      border-radius: 3px;
      color: #FFF;
      display: inline-block;
      font-size: 1.054em;
      font-weight: 600;
      letter-spacing: 1px;
      line-height: 1;
      padding: 16px 60px;
      text-decoration: none;
      text-transform: uppercase; }
      @media (max-width: 767px) {
        .page-lottie-moon-resources .lmco-products .p-button {
          padding: 10px 20px; } }
      .page-lottie-moon-resources .lmco-products .p-button:hover {
        background: #FFF;
        color: #1a1e20; }
  .page-lottie-moon-resources .lmco-history {
    position: relative;
    height: 90vh;
    overflow: hidden;
    background: #141414;
    color: #FFF; }

@media (max-width: 767px) and (orientation: portrait) {
  .page-lottie-moon-resources .lmco-history {
    height: 70vh; } }
    .page-lottie-moon-resources .lmco-history .h-background {
      bottom: 0;
      left: 0;
      position: absolute;
      right: 0;
      top: 0;
      background-position: center center;
      background-size: cover;
      height: 120%;
      opacity: .5;
      top: -30%; }
    .page-lottie-moon-resources .lmco-history .h-content {
      bottom: 0;
      left: 0;
      position: absolute;
      right: 0;
      top: 0;
      z-index: 1;
      padding: 0 10%; }
      .page-lottie-moon-resources .lmco-history .h-content .table {
        height: 100%; }
    .page-lottie-moon-resources .lmco-history .h-title {
      font-size: 3.938em;
      font-weight: 300;
      margin-bottom: 10px; }
      @media (max-width: 767px) {
        .page-lottie-moon-resources .lmco-history .h-title {
          font-size: 1.8em;
          margin-bottom: 20px; } }
    .page-lottie-moon-resources .lmco-history .h-subtitle {
      font-size: 1.125em;
      margin-bottom: 40px; }
      @media (max-width: 767px) {
        .page-lottie-moon-resources .lmco-history .h-subtitle {
          font-size: 1em;
          line-height: 1.2; } }
    .page-lottie-moon-resources .lmco-history .h-button {
      -ms-transition: background 0.3s, color 0.3s;
      -webkit-transition: background 0.3s, color 0.3s;
      -moz-transition: background 0.3s, color 0.3s;
      -o-transition: background 0.3s, color 0.3s;
      transition: background 0.3s, color 0.3s;
      -webkit-backface-visibility: hidden;
      border: 2px solid #00bbdd;
      color: #FFF;
      display: inline-block;
      font-size: .938em;
      font-weight: 600;
      letter-spacing: 1px;
      line-height: 1;
      padding: 10px 50px;
      text-decoration: none; }
      .page-lottie-moon-resources .lmco-history .h-button:hover {
        background: #00bbdd; }

/* LM Video Page Styles
--------------------------------------------------------------- */
.page-lottie-moon-videos {
  position: relative;
  overflow: hidden;
  width: 100%;
  background: #0db19b;
  background: -moz-linear-gradient(left, #0db19b 0%, #13addc 50%, #243e83 100%);
  background: -webkit-linear-gradient(left, #0db19b 0%, #13addc 50%, #243e83 100%);
  background: linear-gradient(to right, #0db19b 0%, #13addc 50%, #243e83 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0db19b', endColorstr='#243e83',GradientType=1 ); }
  .page-lottie-moon-videos .lmv-background {
    position: absolute;
    background: url("../img/lottie-moon/lm-video-bg.svg") no-repeat;
    width: 1497px;
    height: 600%;
    top: 0;
    right: -140px; }
    @media (max-width: 375px) {
      .page-lottie-moon-videos .lmv-background {
        right: -1000px;
        height: 200%; } }
  .page-lottie-moon-videos .lmv-header {
    text-align: center;
    padding: 75px 0;
    color: #FFF;
    line-height: 1; }
    .page-lottie-moon-videos .lmv-header .title {
      margin-bottom: 25px; }
    .page-lottie-moon-videos .lmv-header .subtitle {
      text-transform: uppercase;
      font-size: 1.250em;
      font-weight: 500;
      letter-spacing: 2px; }
  .page-lottie-moon-videos .lmv-top-video {
    position: relative;
    background-color: #000;
    color: #FFF;
    line-height: 1.2;
    overflow: hidden;
    margin-bottom: 60px;
    position: relative;
    width: 100%; }
    .page-lottie-moon-videos .lmv-top-video:before {
      display: block;
      content: "";
      width: 100%;
      padding-top: 36.07143%; }
    @media (max-width: 1023px) {
      .page-lottie-moon-videos .lmv-top-video {
        position: relative; }
        .page-lottie-moon-videos .lmv-top-video:before {
          display: block;
          content: "";
          width: 100%;
          padding-top: 41.66667%; } }
    @media (max-width: 767px) {
      .page-lottie-moon-videos .lmv-top-video {
        position: relative;
        margin-bottom: 40px; }
        .page-lottie-moon-videos .lmv-top-video:before {
          display: block;
          content: "";
          width: 100%;
          padding-top: 62.5%; } }
    @media (max-width: 375px) {
      .page-lottie-moon-videos .lmv-top-video {
        position: relative; }
        .page-lottie-moon-videos .lmv-top-video:before {
          display: block;
          content: "";
          width: 100%;
          padding-top: 100%; } }
    .page-lottie-moon-videos .lmv-top-video .tv-background {
      display: block;
      bottom: 0;
      left: 0;
      position: absolute;
      right: 0;
      top: 0;
      background-position: center center;
      background-size: cover;
      -ms-transition: all 1s;
      -webkit-transition: all 1s;
      -moz-transition: all 1s;
      -o-transition: all 1s;
      transition: all 1s;
      -webkit-backface-visibility: hidden;
      z-index: 0;
      width: 100%; }
      @media (max-width: 1023px) {
        .page-lottie-moon-videos .lmv-top-video .tv-background {
          top: -10%;
          bottom: -30%; } }
      @media (max-width: 375px) {
        .page-lottie-moon-videos .lmv-top-video .tv-background {
          top: -10%;
          bottom: -10%; } }
    .page-lottie-moon-videos .lmv-top-video:hover .tv-background {
      transform: scale(1.05, 1.05); }
    .page-lottie-moon-videos .lmv-top-video .tv-details {
      bottom: 0;
      left: 0;
      position: absolute;
      right: 0;
      top: 0;
      z-index: 1; }
      .page-lottie-moon-videos .lmv-top-video .tv-details .table {
        width: 50%;
        margin: 0 14%; }
        @media (max-width: 767px) {
          .page-lottie-moon-videos .lmv-top-video .tv-details .table {
            width: 80%;
            margin: 0 10%; } }
      .page-lottie-moon-videos .lmv-top-video .tv-details .cell {
        text-align: left; }
    .page-lottie-moon-videos .lmv-top-video .tv-title {
      font-size: 1.875em;
      font-weight: 300;
      letter-spacing: 1px;
      margin-bottom: 10px; }
      @media (max-width: 767px) {
        .page-lottie-moon-videos .lmv-top-video .tv-title {
          font-size: 1.6em;
          line-height: 1.2; } }
    .page-lottie-moon-videos .lmv-top-video .tv-subtitle {
      color: #00bbdd;
      font-weight: 600;
      letter-spacing: 1px;
      margin-bottom: 40px;
      text-transform: uppercase; }
    .page-lottie-moon-videos .lmv-top-video .tv-button {
      color: inherit;
      display: inline-block;
      font-size: 1.125em;
      font-weight: 600;
      letter-spacing: 1px;
      line-height: 45px;
      padding-left: 60px;
      margin-right: 30px;
      text-decoration: none;
      text-transform: uppercase; }
      @media (max-width: 767px) {
        .page-lottie-moon-videos .lmv-top-video .tv-button {
          margin-bottom: 20px; } }
      @media (max-width: 375px) {
        .page-lottie-moon-videos .lmv-top-video .tv-button {
          margin-bottom: 10px; } }
      .page-lottie-moon-videos .lmv-top-video .tv-button span {
        -ms-transition: border 0.3s;
        -webkit-transition: border 0.3s;
        -moz-transition: border 0.3s;
        -o-transition: border 0.3s;
        transition: border 0.3s;
        -webkit-backface-visibility: hidden;
        border-bottom: 3px solid transparent; }
      .page-lottie-moon-videos .lmv-top-video .tv-button:hover span {
        border-color: #FFF; }
      .page-lottie-moon-videos .lmv-top-video .tv-button.play {
        background: url("../img/ico-article-play.svg") no-repeat left;
        background-size: 45px 45px; }
        @media (max-width: 767px) {
          .page-lottie-moon-videos .lmv-top-video .tv-button.play {
            line-height: 30px;
            padding-left: 40px;
            background-size: 30px 30px; } }
      .page-lottie-moon-videos .lmv-top-video .tv-button.download {
        background: url("../img/lottie-moon/lm-ico-download.svg") no-repeat left;
        background-size: 45px 45px; }
        @media (max-width: 767px) {
          .page-lottie-moon-videos .lmv-top-video .tv-button.download {
            line-height: 30px;
            padding-left: 40px;
            background-size: 30px 30px; } }
  .page-lottie-moon-videos .lmv-featured-videos {
    margin-bottom: 60px; }
    .page-lottie-moon-videos .lmv-featured-videos .fv-title {
      color: #FFF;
      font-size: 1.304em;
      font-weight: 600;
      letter-spacing: 1px;
      line-height: 1;
      margin-bottom: 20px; }
    .page-lottie-moon-videos .lmv-featured-videos .video {
      position: relative;
      background: #FFF; }
      .page-lottie-moon-videos .lmv-featured-videos .video:nth-child(even) .v-details {
        margin-left: 50%; }
      .page-lottie-moon-videos .lmv-featured-videos .video:nth-child(even) .v-image {
        left: 0; }
      .page-lottie-moon-videos .lmv-featured-videos .video:nth-child(odd) .v-details {
        margin-right: 50%; }
      .page-lottie-moon-videos .lmv-featured-videos .video:nth-child(odd) .v-image {
        right: 0; }
      .page-lottie-moon-videos .lmv-featured-videos .video .v-image {
        position: absolute;
        top: 0;
        bottom: 0;
        width: 50%;
        background: #000;
        overflow: hidden; }
        @media (max-width: 767px) {
          .page-lottie-moon-videos .lmv-featured-videos .video .v-image {
            width: 100%;
            position: relative;
            position: relative; }
            .page-lottie-moon-videos .lmv-featured-videos .video .v-image:before {
              display: block;
              content: "";
              width: 100%;
              padding-top: 62.5%; } }
        .page-lottie-moon-videos .lmv-featured-videos .video .v-image:hover .v-background {
          transform: scale(1.05, 1.05);
          opacity: 0.5; }
        .page-lottie-moon-videos .lmv-featured-videos .video .v-image .v-background {
          -ms-transition: all 1s;
          -webkit-transition: all 1s;
          -moz-transition: all 1s;
          -o-transition: all 1s;
          transition: all 1s;
          -webkit-backface-visibility: hidden;
          bottom: 0;
          left: 0;
          position: absolute;
          right: 0;
          top: 0;
          background-position: center center;
          background-size: cover;
          z-index: 0; }
        .page-lottie-moon-videos .lmv-featured-videos .video .v-image .v-fade {
          bottom: 0;
          left: 0;
          position: absolute;
          right: 0;
          top: 0;
          box-shadow: inset 0 0 150px 50px rgba(0, 0, 0, 0.8);
          z-index: 1; }
        .page-lottie-moon-videos .lmv-featured-videos .video .v-image .v-play {
          -ms-transition: background 1s;
          -webkit-transition: background 1s;
          -moz-transition: background 1s;
          -o-transition: background 1s;
          transition: background 1s;
          -webkit-backface-visibility: hidden;
          bottom: 0;
          left: 0;
          position: absolute;
          right: 0;
          top: 0;
          background: url("../img/ico-article-play.svg") center center no-repeat;
          background-size: 15%;
          z-index: 2; }
      .page-lottie-moon-videos .lmv-featured-videos .video .v-details {
        min-height: 410px;
        padding: 50px;
        position: relative;
        width: 50%; }
        @media (max-width: 1023px) {
          .page-lottie-moon-videos .lmv-featured-videos .video .v-details {
            padding: 40px;
            min-height: 350px; } }
        @media (max-width: 767px) {
          .page-lottie-moon-videos .lmv-featured-videos .video .v-details {
            width: 100%;
            margin: 0 !important;
            min-height: 0; } }
        .page-lottie-moon-videos .lmv-featured-videos .video .v-details .v-title {
          font-size: 1.304em;
          font-weight: 600;
          letter-spacing: 1px; }
        .page-lottie-moon-videos .lmv-featured-videos .video .v-details .v-description {
          font-size: 1.125em;
          font-weight: 500;
          color: #858585;
          letter-spacing: 1px;
          width: 400px;
          max-width: 100%;
          margin-bottom: 10px; }
          @media (max-width: 1023px) {
            .page-lottie-moon-videos .lmv-featured-videos .video .v-details .v-description {
              line-height: 1.3;
              font-size: 1em; } }
        .page-lottie-moon-videos .lmv-featured-videos .video .v-details .v-button {
          -ms-transition: background 0.3s, color 0.3s;
          -webkit-transition: background 0.3s, color 0.3s;
          -moz-transition: background 0.3s, color 0.3s;
          -o-transition: background 0.3s, color 0.3s;
          transition: background 0.3s, color 0.3s;
          -webkit-backface-visibility: hidden;
          border: 2px solid #1a1e20;
          color: #1a1e20;
          display: inline-block;
          font-size: .938em;
          font-weight: 600;
          letter-spacing: 1px;
          line-height: 1;
          padding: 10px 40px;
          text-decoration: none; }
          .page-lottie-moon-videos .lmv-featured-videos .video .v-details .v-button:hover {
            background: #1a1e20;
            color: #FFF; }
  .page-lottie-moon-videos .lmv-video-blocks {
    margin-bottom: 10px; }
    .page-lottie-moon-videos .lmv-video-blocks .vb-title {
      color: #FFF;
      font-size: 1.304em;
      font-weight: 600;
      letter-spacing: 1px;
      line-height: 1;
      margin-bottom: 20px; }
    .page-lottie-moon-videos .lmv-video-blocks .video {
      position: relative;
      display: inline;
      float: left;
      width: 22.22222%;
      margin: 0 1.38889%;
      margin-bottom: 50px; }
      @media (max-width: 1023px) {
        .page-lottie-moon-videos .lmv-video-blocks .video {
          display: inline;
          float: left;
          width: 30.55556%;
          margin: 0 1.38889%;
          margin-bottom: 50px; } }
      @media (max-width: 767px) {
        .page-lottie-moon-videos .lmv-video-blocks .video {
          display: inline;
          float: left;
          width: 47.22222%;
          margin: 0 1.38889%;
          margin-bottom: 50px; } }

@media (max-width: 375px) and (orientation: portrait) {
  .page-lottie-moon-videos .lmv-video-blocks .video {
    display: inline;
    float: left;
    width: 97.22222%;
    margin: 0 1.38889%;
    margin-bottom: 30px; } }
      .page-lottie-moon-videos .lmv-video-blocks .video .v-image {
        position: relative;
        background: #000;
        margin-bottom: 15px;
        overflow: hidden; }
        .page-lottie-moon-videos .lmv-video-blocks .video .v-image:before {
          display: block;
          content: "";
          width: 100%;
          padding-top: 59.07692%; }
        .page-lottie-moon-videos .lmv-video-blocks .video .v-image:hover .v-background {
          transform: scale(1.05, 1.05);
          opacity: 0.5; }
        .page-lottie-moon-videos .lmv-video-blocks .video .v-image .v-background {
          -ms-transition: all 1s;
          -webkit-transition: all 1s;
          -moz-transition: all 1s;
          -o-transition: all 1s;
          transition: all 1s;
          -webkit-backface-visibility: hidden;
          bottom: 0;
          left: 0;
          position: absolute;
          right: 0;
          top: 0;
          background-position: center center;
          background-size: cover;
          z-index: 0; }
        .page-lottie-moon-videos .lmv-video-blocks .video .v-image .v-fade {
          bottom: 0;
          left: 0;
          position: absolute;
          right: 0;
          top: 0;
          box-shadow: inset 0 0 100px 15px black;
          z-index: 1; }
        .page-lottie-moon-videos .lmv-video-blocks .video .v-image .v-play {
          -ms-transition: background 1s;
          -webkit-transition: background 1s;
          -moz-transition: background 1s;
          -o-transition: background 1s;
          transition: background 1s;
          -webkit-backface-visibility: hidden;
          bottom: 0;
          left: 0;
          position: absolute;
          right: 0;
          top: 0;
          background: url("../img/ico-article-play.svg") center center no-repeat;
          background-size: 15%;
          z-index: 2; }
      .page-lottie-moon-videos .lmv-video-blocks .video .v-details {
        position: relative; }
        .page-lottie-moon-videos .lmv-video-blocks .video .v-details .v-title {
          color: #1a1e20;
          font-size: 1.125em;
          font-weight: 400;
          letter-spacing: 1px;
          line-height: 1.2;
          margin-bottom: 10px; }
        .page-lottie-moon-videos .lmv-video-blocks .video .v-details .v-button {
          -ms-transition: background 0.3s, color 0.3s;
          -webkit-transition: background 0.3s, color 0.3s;
          -moz-transition: background 0.3s, color 0.3s;
          -o-transition: background 0.3s, color 0.3s;
          transition: background 0.3s, color 0.3s;
          -webkit-backface-visibility: hidden;
          border-bottom: 2px solid #FFF;
          color: #FFF;
          display: inline-block;
          font-size: 1.128em;
          font-weight: 600;
          letter-spacing: 1px;
          line-height: 1;
          margin-right: 12px;
          padding-bottom: 4px;
          text-decoration: none; }
          .page-lottie-moon-videos .lmv-video-blocks .video .v-details .v-button:hover {
            color: #FFF; }
        .page-lottie-moon-videos .lmv-video-blocks .video .v-details .v-external-label {
          color: #040404; }
    .page-lottie-moon-videos .lmv-video-blocks hr {
      display: none;
      clear: both;
      width: 100%;
      border: 0; }
    .page-lottie-moon-videos .lmv-video-blocks hr:nth-of-type(4n) {
      display: block; }
    @media (max-width: 1023px) {
      .page-lottie-moon-videos .lmv-video-blocks hr:nth-of-type(4n) {
        display: none; }
      .page-lottie-moon-videos .lmv-video-blocks hr:nth-of-type(3n) {
        display: block; } }
    @media (max-width: 767px) {
      .page-lottie-moon-videos .lmv-video-blocks hr:nth-of-type(3n) {
        display: none; }
      .page-lottie-moon-videos .lmv-video-blocks hr:nth-of-type(2n) {
        display: block; } }

@media (max-width: 375px) and (orientation: portrait) {
  .page-lottie-moon-videos .lmv-video-blocks hr:nth-of-type(2n) {
    display: none; }
  .page-lottie-moon-videos .lmv-video-blocks hr:nth-of-type(1n) {
    display: block; } }

/* LM Week of Prayer Page Styles
--------------------------------------------------------------- */
.page-lottie-moon-week-prayer .lmwp-header {
  background: #0db19b;
  background: -moz-linear-gradient(left, #0db19b 0%, #13addc 50%, #243e83 100%);
  background: -webkit-linear-gradient(left, #0db19b 0%, #13addc 50%, #243e83 100%);
  background: linear-gradient(to right, #0db19b 0%, #13addc 50%, #243e83 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0db19b', endColorstr='#243e83',GradientType=1 );
  text-align: center;
  padding: 75px 5%;
  position: relative;
  color: #FFF;
  line-height: 1;
  overflow: hidden; }
  .page-lottie-moon-week-prayer .lmwp-header .h-background {
    background: url("../img/lottie-moon/lm-lmwp-header-bg.jpg") center center no-repeat;
    background-size: 100%;
    bottom: 0;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 0;
    height: 200%;
    top: -50%; }
    @media (max-width: 1023px) {
      .page-lottie-moon-week-prayer .lmwp-header .h-background {
        background-size: 140%; } }
    @media (max-width: 767px) {
      .page-lottie-moon-week-prayer .lmwp-header .h-background {
        background-size: cover;
        height: 150%; } }
  .page-lottie-moon-week-prayer .lmwp-header .h-title {
    margin-bottom: 25px; }
    .page-lottie-moon-week-prayer .lmwp-header .h-title img {
      width: 380px;
      max-width: 100%; }
  .page-lottie-moon-week-prayer .lmwp-header .h-subtitle {
    font-size: 1.250em;
    font-weight: 500;
    letter-spacing: 2px;
    margin-bottom: 35px;
    text-transform: uppercase; }
  .page-lottie-moon-week-prayer .lmwp-header .h-subtitle-2 {
    color: #1a1e20;
    font-size: 2.581em;
    font-weight: 400; }
    @media (max-width: 767px) {
      .page-lottie-moon-week-prayer .lmwp-header .h-subtitle-2 {
        font-size: 2em; } }

.page-lottie-moon-week-prayer .lmwp-days {
  background: #FFF;
  color: #1a1e20;
  padding: 60px 0;
  /* 
      .day:hover .d-line {
        .d-circle {
          width: 128px;
          margin: 0;
        }

        .d-circle-small {
          background: #1a1e20;
        }
      }
      */ }
  .page-lottie-moon-week-prayer .lmwp-days .container {
    width: 900px; }
  .page-lottie-moon-week-prayer .lmwp-days .day {
    position: relative; }
    .page-lottie-moon-week-prayer .lmwp-days .day .d-label {
      position: absolute;
      display: block;
      font-weight: 600;
      letter-spacing: 1px;
      text-transform: uppercase;
      vertical-align: top;
      width: 90px;
      left: 0;
      padding-top: 50px; }
      @media (max-width: 767px) {
        .page-lottie-moon-week-prayer .lmwp-days .day .d-label {
          font-size: 0.8em;
          width: 50px;
          line-height: 1.2;
          padding-top: 44px; } }
    .page-lottie-moon-week-prayer .lmwp-days .day .d-line {
      display: block;
      position: absolute;
      vertical-align: top;
      width: 200px;
      height: 100%;
      left: 90px; }
      .page-lottie-moon-week-prayer .lmwp-days .day .d-line:before {
        background: #00bbdd;
        content: "";
        display: block;
        left: 60px;
        position: absolute;
        top: 20px;
        height: 120%;
        width: 8px;
        border-radius: 4px; }
      .page-lottie-moon-week-prayer .lmwp-days .day .d-line .d-circle {
        position: relative;
        background-position: center center;
        background-size: cover;
        -ms-transition: all 0.3s ease-in-out;
        -webkit-transition: all 0.3s ease-in-out;
        -moz-transition: all 0.3s ease-in-out;
        -o-transition: all 0.3s ease-in-out;
        transition: all 0.3s ease-in-out;
        -webkit-backface-visibility: hidden;
        border-radius: 50%;
        border: 8px solid #00bbdd;
        margin: 10px 0 0 10px;
        max-width: 100%;
        position: absolute;
        width: 108px;
        z-index: 3;
        transform: scale(0, 0); }
        .page-lottie-moon-week-prayer .lmwp-days .day .d-line .d-circle:before {
          display: block;
          content: "";
          width: 100%;
          padding-top: 100%; }
      .page-lottie-moon-week-prayer .lmwp-days .day .d-line .d-circle-small {
        -ms-transition: all 0.3s;
        -webkit-transition: all 0.3s;
        -moz-transition: all 0.3s;
        -o-transition: all 0.3s;
        transition: all 0.3s;
        -webkit-backface-visibility: hidden;
        position: absolute;
        background: #FFF;
        border-radius: 50%;
        border: 8px solid #00bbdd;
        height: 28px;
        width: 28px;
        top: 50px;
        left: 98px;
        z-index: 1; }
        .page-lottie-moon-week-prayer .lmwp-days .day .d-line .d-circle-small:before {
          -ms-transition: all 0.3s;
          -webkit-transition: all 0.3s;
          -moz-transition: all 0.3s;
          -o-transition: all 0.3s;
          transition: all 0.3s;
          -webkit-backface-visibility: hidden;
          position: absolute;
          content: "";
          display: block;
          height: 8px;
          width: 40px;
          background: #0bd;
          z-index: 0;
          left: -40px;
          top: 2px; }
      @media (max-width: 767px) {
        .page-lottie-moon-week-prayer .lmwp-days .day .d-line {
          left: 50px;
          width: 70px; }
          .page-lottie-moon-week-prayer .lmwp-days .day .d-line:before {
            top: 40px;
            height: 110%;
            left: 32px; }
          .page-lottie-moon-week-prayer .lmwp-days .day .d-line .d-circle {
            width: 70px;
            margin: 30px 0 0 0; }
          .page-lottie-moon-week-prayer .lmwp-days .day .d-line .d-circle-small {
            display: none; } }
    .page-lottie-moon-week-prayer .lmwp-days .day .d-details {
      padding: 42px 100px 50px 290px;
      display: block;
      vertical-align: top; }
      .page-lottie-moon-week-prayer .lmwp-days .day .d-details .d-title {
        font-size: 2.5em;
        font-weight: 400;
        line-height: 1;
        margin-bottom: 10px; }
        .page-lottie-moon-week-prayer .lmwp-days .day .d-details .d-title a {
          color: inherit;
          text-decoration: none; }
      .page-lottie-moon-week-prayer .lmwp-days .day .d-details .d-location {
        color: #5e5e5e;
        font-style: italic;
        font-weight: 600;
        letter-spacing: 1px;
        margin-bottom: 10px;
        text-transform: uppercase; }
      .page-lottie-moon-week-prayer .lmwp-days .day .d-details .d-description {
        -ms-transition: all 1s 0.3s ease-out;
        -webkit-transition: all 1s 0.3s ease-out;
        -moz-transition: all 1s 0.3s ease-out;
        -o-transition: all 1s 0.3s ease-out;
        transition: all 1s 0.3s ease-out;
        -webkit-backface-visibility: hidden;
        color: #858585;
        font-size: 1.125em;
        margin-bottom: 20px;
        opacity: 0;
        transform: translateY(20px); }
        .page-lottie-moon-week-prayer .lmwp-days .day .d-details .d-description p:last-of-type {
          margin: 0; }
      .page-lottie-moon-week-prayer .lmwp-days .day .d-details .d-button {
        -ms-transition: all 1s 0.3s ease-out, color 0.3s, background 0.3s;
        -webkit-transition: all 1s 0.3s ease-out, color 0.3s, background 0.3s;
        -moz-transition: all 1s 0.3s ease-out, color 0.3s, background 0.3s;
        -o-transition: all 1s 0.3s ease-out, color 0.3s, background 0.3s;
        transition: all 1s 0.3s ease-out, color 0.3s, background 0.3s;
        -webkit-backface-visibility: hidden;
        border: 2px solid #1a1e20;
        color: #1a1e20;
        display: inline-block;
        font-size: .938;
        font-weight: 600;
        letter-spacing: 1px;
        line-height: 1;
        padding: 10px 20px;
        text-decoration: none;
        opacity: 0;
        transform: translateY(20px); }
        .page-lottie-moon-week-prayer .lmwp-days .day .d-details .d-button:hover {
          background: #1a1e20;
          color: #FFF; }
      @media (max-width: 1023px) {
        .page-lottie-moon-week-prayer .lmwp-days .day .d-details {
          padding-right: 0; } }
      @media (max-width: 767px) {
        .page-lottie-moon-week-prayer .lmwp-days .day .d-details {
          padding-left: 130px; }
          .page-lottie-moon-week-prayer .lmwp-days .day .d-details .d-title {
            font-size: 1.8em; }
          .page-lottie-moon-week-prayer .lmwp-days .day .d-details .d-description {
            line-height: 1.2;
            font-size: 1em; } }
  .page-lottie-moon-week-prayer .lmwp-days .day:last-of-type .d-line:before {
    display: none; }
  .page-lottie-moon-week-prayer .lmwp-days .day.go .d-circle {
    transform: scale(1, 1);
    opacity: 1; }
  .page-lottie-moon-week-prayer .lmwp-days .day.go .d-circle-small {
    background: #1a1e20;
    left: 138px; }
    .page-lottie-moon-week-prayer .lmwp-days .day.go .d-circle-small:before {
      width: 80px;
      left: -80px; }
  .page-lottie-moon-week-prayer .lmwp-days .day.go .d-description,
  .page-lottie-moon-week-prayer .lmwp-days .day.go .d-button {
    opacity: 1;
    transform: translateY(0); }

/* LM Week of Prayer Single Day Page Styles
--------------------------------------------------------------- */
.page-lottie-moon-prayer-day {
  position: relative;
  background: #FFF;
  overflow: hidden; }
  .page-lottie-moon-prayer-day .lmpd-header {
    position: relative;
    background: #000;
    z-index: 2;
    height: 720px;
    overflow: hidden; }
    @media (max-width: 1024px) {
      .page-lottie-moon-prayer-day .lmpd-header {
        height: 600px; } }
    @media (max-width: 767px) {
      .page-lottie-moon-prayer-day .lmpd-header {
        height: 500px; } }

@media (max-width: 767px) and (orientation: landscape) {
  .page-lottie-moon-prayer-day .lmpd-header {
    height: 300px; } }
    @media (max-width: 375px) {
      .page-lottie-moon-prayer-day .lmpd-header {
        height: 400px; } }
    .page-lottie-moon-prayer-day .lmpd-header .container {
      margin: 0 auto;
      height: 100%;
      position: relative;
      z-index: 5;
      color: #FFF; }
      .page-lottie-moon-prayer-day .lmpd-header .container .title {
        font-size: 3.938em;
        font-weight: 300;
        line-height: 1;
        margin: 0 0 10px 0; }
        @media (max-width: 1024px) {
          .page-lottie-moon-prayer-day .lmpd-header .container .title {
            font-size: 3em; } }
        @media (max-width: 767px) {
          .page-lottie-moon-prayer-day .lmpd-header .container .title {
            font-size: 2em; } }
      .page-lottie-moon-prayer-day .lmpd-header .container .subtitle {
        font-size: 1.125em;
        font-weight: 500;
        font-style: italic; }
      .page-lottie-moon-prayer-day .lmpd-header .container .button-play {
        display: inline-block;
        height: 93px;
        width: 93px;
        overflow: hidden;
        margin-bottom: 40px;
        text-indent: 100%;
        white-space: nowrap;
        vertical-align: top;
        background: url("../img/ico-article-play.svg") center center no-repeat;
        background-size: 100%; }
        @media (max-width: 1024px) {
          .page-lottie-moon-prayer-day .lmpd-header .container .button-play {
            height: 60px;
            width: 60px; } }

@media (max-width: 767px) and (orientation: landscape) {
  .page-lottie-moon-prayer-day .lmpd-header .container .button-play {
    margin-bottom: 20px; } }
      .page-lottie-moon-prayer-day .lmpd-header .container .button-download {
        -ms-transition: all 0.3s;
        -webkit-transition: all 0.3s;
        -moz-transition: all 0.3s;
        -o-transition: all 0.3s;
        transition: all 0.3s;
        -webkit-backface-visibility: hidden;
        border-bottom: 2px solid #00bbdd;
        color: #00bbdd;
        display: inline-block;
        font-size: 1.125em;
        font-weight: 600;
        letter-spacing: 0.5px;
        line-height: 1;
        margin-top: 50px;
        padding: 0 0 2px 0;
        text-align: center;
        text-decoration: none; }
        .page-lottie-moon-prayer-day .lmpd-header .container .button-download:hover {
          border-color: #FFF;
          color: #FFF;
          opacity: 1; }
        @media (max-width: 767px) {
          .page-lottie-moon-prayer-day .lmpd-header .container .button-download {
            margin-top: 30px; } }

@media (max-width: 767px) and (orientation: landscape) {
  .page-lottie-moon-prayer-day .lmpd-header .container .button-download {
    margin-top: 20px; } }
    .page-lottie-moon-prayer-day .lmpd-header .fade {
      bottom: 0;
      left: 0;
      position: absolute;
      right: 0;
      top: 0;
      box-shadow: inset 0 0 250px 50px rgba(0, 0, 0, 0.8);
      z-index: 4; }
      @media (max-width: 767px) {
        .page-lottie-moon-prayer-day .lmpd-header .fade {
          box-shadow: inset 0 0 150px 30px rgba(0, 0, 0, 0.8); } }
    .page-lottie-moon-prayer-day .lmpd-header video {
      position: fixed;
      top: 50%;
      left: 50%;
      min-width: 100%;
      min-height: 100%;
      width: auto;
      height: auto;
      z-index: -10;
      -webkit-transform: translateX(-50%) translateY(-50%);
      transform: translateX(-50%) translateY(-50%);
      background-size: cover;
      transition: 1s opacity;
      opacity: .6; }
    .page-lottie-moon-prayer-day .lmpd-header .mobile-bg {
      display: none;
      bottom: 0;
      left: 0;
      position: absolute;
      right: 0;
      top: 0;
      background-position: center center !important;
      background-size: cover !important;
      z-index: 1;
      opacity: .6; }
    @media all and (max-device-width: 767px) {
      .page-lottie-moon-prayer-day .lmpd-header .vid-bg {
        display: none; }
      .page-lottie-moon-prayer-day .lmpd-header .mobile-bg {
        display: block; } }
    .page-lottie-moon-prayer-day .lmpd-header .background {
      bottom: 0;
      left: 0;
      position: absolute;
      right: 0;
      top: 0;
      background-position: center center !important;
      background-size: cover !important;
      background-attachment: fixed !important;
      z-index: 1;
      opacity: .6; }
      @media screen and (max-width: 1024px) {
        .page-lottie-moon-prayer-day .lmpd-header .background {
          background-attachment: scroll !important; } }
  .page-lottie-moon-prayer-day .lmpd-photos {
    position: relative;
    z-index: 4;
    background: #FFF;
    *zoom: 1; }
    .page-lottie-moon-prayer-day .lmpd-photos:before, .page-lottie-moon-prayer-day .lmpd-photos:after {
      content: "";
      display: table; }
    .page-lottie-moon-prayer-day .lmpd-photos:after {
      clear: both; }
    .page-lottie-moon-prayer-day .lmpd-photos .title {
      color: #333;
      font-size: 2.188em;
      font-weight: 400;
      line-height: 1;
      padding: 60px 0;
      text-align: center; }
      @media (max-width: 767px) {
        .page-lottie-moon-prayer-day .lmpd-photos .title {
          padding: 40px 0; } }
    .page-lottie-moon-prayer-day .lmpd-photos .image {
      position: relative;
      display: block;
      float: left;
      overflow: hidden;
      position: relative;
      width: 20%;
      opacity: 0;
      transform: translateY(100px);
      -ms-transition: all 0.5s ease-in-out;
      -webkit-transition: all 0.5s ease-in-out;
      -moz-transition: all 0.5s ease-in-out;
      -o-transition: all 0.5s ease-in-out;
      transition: all 0.5s ease-in-out;
      -webkit-backface-visibility: hidden; }
      .page-lottie-moon-prayer-day .lmpd-photos .image:before {
        display: block;
        content: "";
        width: 100%;
        padding-top: 51.74825%; }
      @media (max-width: 767px) {
        .page-lottie-moon-prayer-day .lmpd-photos .image {
          width: 33.3333333333%; } }
      .page-lottie-moon-prayer-day .lmpd-photos .image .background {
        bottom: 0;
        left: 0;
        position: absolute;
        right: 0;
        top: 0;
        background-position: center center;
        background-size: cover;
        -ms-transition: all 1s ease-in-out;
        -webkit-transition: all 1s ease-in-out;
        -moz-transition: all 1s ease-in-out;
        -o-transition: all 1s ease-in-out;
        transition: all 1s ease-in-out;
        -webkit-backface-visibility: hidden;
        border: 0;
        display: block;
        opacity: 1;
        z-index: 0; }
      .page-lottie-moon-prayer-day .lmpd-photos .image .border {
        bottom: 0;
        left: 0;
        position: absolute;
        right: 0;
        top: 0;
        -ms-transition: opacity 0.5s;
        -webkit-transition: opacity 0.5s;
        -moz-transition: opacity 0.5s;
        -o-transition: opacity 0.5s;
        transition: opacity 0.5s;
        -webkit-backface-visibility: hidden;
        border: 10px solid #00bbdd;
        opacity: 0;
        z-index: 2;
        display: block;
        box-shadow: inset 0 0 80px black; }
    .page-lottie-moon-prayer-day .lmpd-photos .image:hover .border {
      opacity: 1; }
    .page-lottie-moon-prayer-day .lmpd-photos .image:hover .background {
      opacity: 1;
      -webkit-transform: scale(1.05, 1.05);
      -ms-transform: scale(1.05, 1.05);
      -moz-transform: scale(1.05, 1.05);
      transform: scale(1.05, 1.05); }
    .page-lottie-moon-prayer-day .lmpd-photos .image:nth-child(1) {
      transition-delay: 0.1s; }
    .page-lottie-moon-prayer-day .lmpd-photos .image:nth-child(2) {
      transition-delay: 0.2s; }
    .page-lottie-moon-prayer-day .lmpd-photos .image:nth-child(3) {
      transition-delay: 0.3s; }
    .page-lottie-moon-prayer-day .lmpd-photos .image:nth-child(4) {
      transition-delay: 0.4s; }
    .page-lottie-moon-prayer-day .lmpd-photos .image:nth-child(5) {
      transition-delay: 0.5s; }
    .page-lottie-moon-prayer-day .lmpd-photos .image:nth-child(6) {
      transition-delay: 0.6s; }
    .page-lottie-moon-prayer-day .lmpd-photos .image:nth-child(7) {
      transition-delay: 0.7s; }
    .page-lottie-moon-prayer-day .lmpd-photos .image:nth-child(8) {
      transition-delay: 0.8s; }
    .page-lottie-moon-prayer-day .lmpd-photos .image:nth-child(9) {
      transition-delay: 0.9s; }
    .page-lottie-moon-prayer-day .lmpd-photos .image:nth-child(10) {
      transition-delay: 1.0s; }
    .page-lottie-moon-prayer-day .lmpd-photos .image:nth-child(11) {
      transition-delay: 1.1s; }
    .page-lottie-moon-prayer-day .lmpd-photos .image:nth-child(12) {
      transition-delay: 1.2s; }
    .page-lottie-moon-prayer-day .lmpd-photos .image:nth-child(13) {
      transition-delay: 1.3s; }
    .page-lottie-moon-prayer-day .lmpd-photos .image:nth-child(14) {
      transition-delay: 1.4s; }
    .page-lottie-moon-prayer-day .lmpd-photos .image:nth-child(15) {
      transition-delay: 1.5s; }
    .page-lottie-moon-prayer-day .lmpd-photos .image:nth-child(16) {
      transition-delay: 1.6s; }
    .page-lottie-moon-prayer-day .lmpd-photos .image:nth-child(17) {
      transition-delay: 1.7s; }
    .page-lottie-moon-prayer-day .lmpd-photos .image:nth-child(18) {
      transition-delay: 1.8s; }
    .page-lottie-moon-prayer-day .lmpd-photos .image:nth-child(19) {
      transition-delay: 1.9s; }
    .page-lottie-moon-prayer-day .lmpd-photos .image:nth-child(20) {
      transition-delay: 2.0s; }
    .page-lottie-moon-prayer-day .lmpd-photos .image:nth-child(21) {
      transition-delay: 2.1s; }
    .page-lottie-moon-prayer-day .lmpd-photos .image:nth-child(22) {
      transition-delay: 2.2s; }
    .page-lottie-moon-prayer-day .lmpd-photos .image:nth-child(23) {
      transition-delay: 2.3s; }
    .page-lottie-moon-prayer-day .lmpd-photos .image:nth-child(24) {
      transition-delay: 2.4s; }
    .page-lottie-moon-prayer-day .lmpd-photos .image:nth-child(25) {
      transition-delay: 2.5s; }
    .page-lottie-moon-prayer-day .lmpd-photos .image:nth-child(26) {
      transition-delay: 2.6s; }
    .page-lottie-moon-prayer-day .lmpd-photos .image:nth-child(27) {
      transition-delay: 2.7s; }
    .page-lottie-moon-prayer-day .lmpd-photos .image:nth-child(28) {
      transition-delay: 2.8s; }
    .page-lottie-moon-prayer-day .lmpd-photos .image:nth-child(29) {
      transition-delay: 2.9s; }
    .page-lottie-moon-prayer-day .lmpd-photos .image:nth-child(30) {
      transition-delay: 3.0s; }
    .page-lottie-moon-prayer-day .lmpd-photos.go .image {
      opacity: 1;
      transform: none; }
  .page-lottie-moon-prayer-day .lmpd-content {
    position: relative;
    z-index: 4;
    background: #FFF;
    padding: 0 0 40px 0; }
    .page-lottie-moon-prayer-day .lmpd-content .container {
      width: 890px; }
    .page-lottie-moon-prayer-day .lmpd-content .title {
      color: #333;
      font-size: 2.188em;
      font-weight: 400;
      line-height: 1;
      margin: 0;
      padding: 60px 0;
      text-align: center; }
      @media (max-width: 767px) {
        .page-lottie-moon-prayer-day .lmpd-content .title {
          padding: 40px 0; } }

/* Front Page Styles
--------------------------------------------------------------- */
.page-front {
  background: #FFF; }
  .page-front .header {
    position: relative;
    background: #000;
    z-index: 2;
    height: 945px;
    height: calc(100vh - 158px);
    overflow: hidden; }
    @media (max-width: 1024px) {
      .page-front .header {
        height: 800px; } }
    @media (max-width: 768px) {
      .page-front .header {
        height: 650px; } }

@media (max-width: 767px) and (orientation: landscape) {
  .page-front .header {
    height: 450px; } }
    @media (max-width: 375px) {
      .page-front .header {
        height: 550px; } }
    .page-front .header .container {
      margin: 0 auto;
      height: 100%;
      position: relative;
      z-index: 5;
      color: #FFF; }
      .page-front .header .container .title {
        margin-left: -7px;
        font-size: 5.375em;
        text-transform: uppercase;
        font-weight: 700;
        line-height: .8;
        font-family: "freight-sans-pro", sans-serif; }
        @media (max-width: 1023px) {
          .page-front .header .container .title {
            font-size: 4em; } }
        @media (max-width: 767px) {
          .page-front .header .container .title {
            font-size: 2.5em;
            line-height: 1; } }
      .page-front .header .container .description {
        width: 100%;
        max-width: 750px;
        margin: 0 auto;
        font-size: 1.125em;
        line-height: 1.5; }
        @media (max-width: 767px) {
          .page-front .header .container .description {
            font-size: 1em; } }
        .page-front .header .container .description a {
          color: #FFF;
          text-decoration: none;
          border-bottom: 3px solid #33ccff;
          padding-bottom: 2px;
          transition: color .3s; }
          .page-front .header .container .description a:hover {
            color: #33ccff; }
      .page-front .header .container .arrow {
        display: block;
        width: 41px;
        height: 41px;
        border: 4px solid #FFF;
        border-top: 0;
        border-right: 0;
        margin: 33px auto 0 auto;
        transform: rotate(-45deg);
        -webkit-transform: rotate(-45deg); }
      .page-front .header .container .button {
        -ms-transition: all 0.3s;
        -webkit-transition: all 0.3s;
        -moz-transition: all 0.3s;
        -o-transition: all 0.3s;
        transition: all 0.3s;
        -webkit-backface-visibility: hidden;
        border: 2px solid #FFF;
        color: #FFF;
        cursor: pointer;
        display: inline-block;
        font-size: 0.9em;
        font-weight: 600;
        letter-spacing: 1px;
        line-height: 1;
        padding: 15px 30px;
        margin-top: 20px;
        text-align: center;
        text-decoration: none;
        text-transform: uppercase; }
        .page-front .header .container .button:hover {
          background: #FFF;
          color: #000;
          opacity: 1; }
        @media (max-width: 375px) {
          .page-front .header .container .button {
            width: 100%;
            padding: 15px 30px; } }
    .page-front .header video {
      position: fixed;
      position: absolute;
      top: 50%;
      left: 50%;
      min-width: 100%;
      min-height: 100%;
      width: auto;
      height: auto;
      z-index: -10;
      -webkit-transform: translateX(-50%) translateY(-50%);
      transform: translateX(-50%) translateY(-50%);
      background-size: cover;
      transition: 1s opacity;
      opacity: .6; }
    .page-front .header .mobile-bg {
      display: none;
      bottom: 0;
      left: 0;
      position: absolute;
      right: 0;
      top: 0;
      background-position: center center !important;
      background-size: cover !important;
      z-index: 1;
      opacity: .6; }
    @media all and (max-device-width: 767px) {
      .page-front .header .vid-bg {
        display: none; }
      .page-front .header .mobile-bg {
        display: block; } }
    .page-front .header .background {
      bottom: 0;
      left: 0;
      position: absolute;
      right: 0;
      top: 0;
      background-position: center center !important;
      background-size: cover !important;
      background-attachment: fixed !important;
      z-index: 1;
      opacity: .6; }
      @media screen and (max-width: 1024px) {
        .page-front .header .background {
          background-attachment: scroll !important; } }
  .page-front .posts {
    background: #f3f2f2;
    padding: 4em 0 2em 0; }
    .page-front .posts article {
      display: inline;
      float: left;
      width: 22.22222%;
      margin: 0 1.38889%;
      margin-bottom: 2em; }
      .page-front .posts article:nth-child(1), .page-front .posts article:nth-child(2) {
        display: inline;
        float: left;
        width: 47.22222%;
        margin: 0 1.38889%;
        margin-bottom: 2em;
        position: relative; }
        .page-front .posts article:nth-child(1):before, .page-front .posts article:nth-child(2):before {
          display: block;
          content: "";
          width: 100%;
          padding-top: 79.41176%; }
      @media (max-width: 1023px) {
        .page-front .posts article {
          display: inline;
          float: left;
          width: 30.55556%;
          margin: 0 1.38889%;
          margin-bottom: 2em; }
          .page-front .posts article:nth-child(1), .page-front .posts article:nth-child(2) {
            display: inline;
            float: left;
            width: 30.55556%;
            margin: 0 1.38889%;
            margin-bottom: 2em;
            position: relative; }
            .page-front .posts article:nth-child(1):before, .page-front .posts article:nth-child(2):before {
              display: block;
              content: "";
              width: 100%;
              padding-top: 163.63636%; } }
      @media (max-width: 767px) {
        .page-front .posts article {
          display: inline;
          float: left;
          width: 47.22222%;
          margin: 0 1.38889%;
          margin-bottom: 2em; }
          .page-front .posts article:nth-child(1), .page-front .posts article:nth-child(2) {
            display: inline;
            float: left;
            width: 47.22222%;
            margin: 0 1.38889%;
            margin-bottom: 2em; } }

@media (max-width: 767px) and (orientation: landscape) {
  .page-front .posts article {
    display: inline;
    float: left;
    width: 47.22222%;
    margin: 0 1.38889%;
    margin-bottom: 2em;
    position: relative; }
    .page-front .posts article:before {
      display: block;
      content: "";
      width: 100%;
      padding-top: 100%; }
    .page-front .posts article:nth-child(1), .page-front .posts article:nth-child(2) {
      display: inline;
      float: left;
      width: 47.22222%;
      margin: 0 1.38889%;
      margin-bottom: 2em;
      position: relative; }
      .page-front .posts article:nth-child(1):before, .page-front .posts article:nth-child(2):before {
        display: block;
        content: "";
        width: 100%;
        padding-top: 100%; } }
      @media (max-width: 375px) {
        .page-front .posts article {
          display: inline;
          float: left;
          width: 97.22222%;
          margin: 0 1.38889%;
          margin-bottom: 2em; }
          .page-front .posts article:nth-child(1), .page-front .posts article:nth-child(2) {
            display: inline;
            float: left;
            width: 97.22222%;
            margin: 0 1.38889%;
            margin-bottom: 2em; }
          .page-front .posts article:nth-child(n+5) {
            display: none; } }
  .page-front .videos {
    position: relative;
    height: 630px;
    overflow: hidden;
    background: #303335;
    overflow: hidden; }
    @media (max-width: 1024px) {
      .page-front .videos {
        height: 500px; } }
    @media (max-width: 767px) {
      .page-front .videos {
        height: 400px; } }

@media (max-width: 767px) and (orientation: landscape) {
  .page-front .videos {
    height: 350px; } }
    .page-front .videos .slider {
      height: 100%;
      z-index: 0; }
    .page-front .videos .slider-overlay {
      position: absolute;
      height: 100%;
      text-align: center;
      width: 100%;
      z-index: 3; }
      .page-front .videos .slider-overlay img {
        display: block;
        left: 0;
        margin: 0 auto;
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        -webkit-transform: translateY(-50%);
        max-width: 90%; }
    .page-front .videos .slide {
      display: none;
      width: 100%;
      height: 100%;
      line-height: 1;
      position: relative;
      overflow: hidden;
      z-index: 2;
      background: #1a1e20;
      color: #FFF; }
      @media (max-width: 1023px) {
        .page-front .videos .slide {
          font-size: .8em; } }
      @media (max-width: 767px) {
        .page-front .videos .slide {
          font-size: .7em; } }
      .page-front .videos .slide:first-of-type {
        display: block; }
      .page-front .videos .slide .s-background {
        width: 100%;
        bottom: 0;
        left: 0;
        position: absolute;
        right: 0;
        top: 0;
        background-position: center center;
        background-size: cover;
        /*position: fixed;*/
        position: absolute;
        z-index: -1;
        -ms-transition: all 8s ease-in-out;
        -webkit-transition: all 8s ease-in-out;
        -moz-transition: all 8s ease-in-out;
        -o-transition: all 8s ease-in-out;
        transition: all 8s ease-in-out;
        -webkit-backface-visibility: hidden; }
        @media (max-width: 1024px) {
          .page-front .videos .slide .s-background {
            position: absolute; } }
      .page-front .videos .slide .s-title {
        font-size: 3.000em;
        font-weight: 700;
        line-height: 1;
        text-transform: uppercase;
        margin-bottom: 10px; }
        @media (max-width: 767px) {
          .page-front .videos .slide .s-title {
            font-size: 2.400em; } }
      .page-front .videos .slide .s-subtitle {
        font-size: 1.500em;
        font-weight: 700;
        text-transform: uppercase;
        margin-bottom: 24px; }
      .page-front .videos .slide .s-button {
        display: inline-block;
        height: 93px;
        width: 93px;
        border-radius: 50%;
        background: transparent url("../img/ico-article-play.svg") center center no-repeat;
        -ms-transition: background 0.5s;
        -webkit-transition: background 0.5s;
        -moz-transition: background 0.5s;
        -o-transition: background 0.5s;
        transition: background 0.5s;
        -webkit-backface-visibility: hidden; }
        .page-front .videos .slide .s-button:hover {
          background-color: rgba(0, 0, 0, 0.5); }
        @media (max-width: 767px) {
          .page-front .videos .slide .s-button {
            width: 50px;
            height: 50px;
            background-size: contain; } }
    .page-front .videos .slider-pager {
      *zoom: 1;
      bottom: 80px;
      line-height: 14px;
      padding: 0;
      position: absolute;
      text-align: center;
      width: 100%;
      z-index: 4; }
      .page-front .videos .slider-pager:before, .page-front .videos .slider-pager:after {
        content: "";
        display: table; }
      .page-front .videos .slider-pager:after {
        clear: both; }
      @media (max-width: 1024px) {
        .page-front .videos .slider-pager {
          bottom: 50px; } }
      .page-front .videos .slider-pager span {
        -ms-transition: background 0.3s;
        -webkit-transition: background 0.3s;
        -moz-transition: background 0.3s;
        -o-transition: background 0.3s;
        transition: background 0.3s;
        -webkit-backface-visibility: hidden;
        background: #FFF;
        cursor: pointer;
        display: inline-block;
        height: 14px;
        margin: 0 2px;
        overflow: hidden;
        padding: 0;
        text-indent: 100%;
        vertical-align: top;
        width: 14px; }
        .page-front .videos .slider-pager span.cycle-pager-active, .page-front .videos .slider-pager span:hover {
          background: #3cf; }
    .page-front .videos .slider-arrow {
      display: block;
      position: absolute;
      top: 0;
      bottom: 0;
      width: 10%;
      overflow: hidden;
      z-index: 100;
      text-align: center;
      cursor: pointer; }
      @media (max-width: 1024px) {
        .page-front .videos .slider-arrow {
          width: 15%; } }
      @media (max-width: 767px) {
        .page-front .videos .slider-arrow {
          display: none; } }
      .page-front .videos .slider-arrow span {
        position: absolute;
        display: block;
        width: 41px;
        height: 41px;
        border: 4px solid #FFF;
        top: 50%;
        left: 50%;
        margin-left: 8px; }
      .page-front .videos .slider-arrow.slider-prev {
        left: 0; }
        .page-front .videos .slider-arrow.slider-prev span {
          border-bottom: 0;
          border-right: 0;
          transform: rotate(-45deg) translate(-50%, -50%); }
      .page-front .videos .slider-arrow.slider-next {
        right: 0; }
        .page-front .videos .slider-arrow.slider-next span {
          border-top: 0;
          border-left: 0;
          transform: rotate(-45deg) translate(-50%, -50%);
          -webkit-transform: rotate(-45deg) translate(-50%, -50%); }
  .page-front .opportunities-projects {
    background: #202527;
    color: #FFF;
    padding: 25px 0; }
    @media (max-width: 767px) {
      .page-front .opportunities-projects {
        padding: 40px 0 0 0; } }
    .page-front .opportunities-projects .col {
      display: inline;
      float: left;
      width: 47.22222%;
      margin: 0 1.38889%;
      text-align: center; }
      @media (max-width: 767px) {
        .page-front .opportunities-projects .col {
          display: inline;
          float: left;
          width: 97.22222%;
          margin: 0 1.38889%;
          margin-bottom: 40px; } }

@media (max-width: 767px) and (orientation: landscape) {
  .page-front .opportunities-projects .col {
    display: inline;
    float: left;
    width: 47.22222%;
    margin: 0 1.38889%; } }
    .page-front .opportunities-projects .col-title {
      font-size: 1.438em;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 1px;
      margin-bottom: 30px;
      text-align: left; }
      @media (max-width: 375px) {
        .page-front .opportunities-projects .col-title {
          margin-bottom: 20px;
          text-align: center; } }
    .page-front .opportunities-projects .col-link {
      border-bottom: 2px solid #06fbf2;
      color: #FFF;
      display: inline-block;
      font-size: 0.938em;
      font-weight: 600;
      letter-spacing: 1px;
      margin: 50px auto 0 auto;
      text-decoration: none;
      text-transform: uppercase; }
      @media (max-width: 375px) {
        .page-front .opportunities-projects .col-link {
          margin-top: 20px; } }
    .page-front .opportunities-projects .op-item {
      position: relative;
      color: inherit;
      overflow: hidden;
      text-align: left; }
      .page-front .opportunities-projects .op-item:before {
        display: block;
        content: "";
        width: 100%;
        padding-top: 77.35294%; }
      @media (max-width: 1023px) {
        .page-front .opportunities-projects .op-item {
          position: relative; }
          .page-front .opportunities-projects .op-item:before {
            display: block;
            content: "";
            width: 100%;
            padding-top: 75%; } }
      @media (max-width: 767px) {
        .page-front .opportunities-projects .op-item {
          position: relative; }
          .page-front .opportunities-projects .op-item:before {
            display: block;
            content: "";
            width: 100%;
            padding-top: 100%; } }
      .page-front .opportunities-projects .op-item .inner {
        display: flex;
        flex-flow: column;
        height: 100%; }
      .page-front .opportunities-projects .op-item header {
        background: #30383c;
        flex: 0 1 auto;
        padding: 1.5em;
        position: relative;
        z-index: 2; }
        @media (max-width: 768px) {
          .page-front .opportunities-projects .op-item header {
            font-size: .9em; } }
      .page-front .opportunities-projects .op-item .op-graphic {
        bottom: auto;
        flex: 1 1 auto;
        left: auto;
        position: relative;
        text-align: center;
        top: auto;
        right: auto; }
        .page-front .opportunities-projects .op-item .op-graphic .op-background {
          bottom: 0;
          left: 0;
          position: absolute;
          right: 0;
          top: 0;
          background-position: center center;
          background-size: cover;
          -ms-transition: all 1s ease-in-out;
          -webkit-transition: all 1s ease-in-out;
          -moz-transition: all 1s ease-in-out;
          -o-transition: all 1s ease-in-out;
          transition: all 1s ease-in-out;
          -webkit-backface-visibility: hidden;
          background-color: #202020;
          opacity: .85; }
      .page-front .opportunities-projects .op-item .op-link {
        display: block;
        bottom: 0;
        left: 0;
        position: absolute;
        right: 0;
        top: 0;
        z-index: 5; }
      .page-front .opportunities-projects .op-item .op-title {
        font-size: 1.250em;
        font-weight: 500;
        line-height: 1.2;
        margin-bottom: 5px; }
      .page-front .opportunities-projects .op-item .op-location {
        font-size: 0.750em;
        font-weight: 500;
        text-transform: uppercase;
        letter-spacing: 1px; }
      .page-front .opportunities-projects .op-item .op-goal {
        color: #33ccff; }
      .page-front .opportunities-projects .op-item:hover .op-background {
        opacity: 1;
        -webkit-transform: scale(1.05, 1.05);
        -ms-transform: scale(1.05, 1.05);
        -moz-transform: scale(1.05, 1.05);
        transform: scale(1.05, 1.05); }
  .page-front .posts-mobile {
    background: #f3f2f2;
    padding: 4em 0 2em 0;
    display: none; }
    @media (max-width: 375px) {
      .page-front .posts-mobile {
        display: block; } }
    .page-front .posts-mobile article {
      display: inline;
      float: left;
      width: 97.22222%;
      margin: 0 1.38889%;
      margin-bottom: 2em; }

.card-text {
  border-bottom: 3px solid #06fbf2;
  color: #FFF;
  font-weight: 600;
  letter-spacing: 1px;
  text-decoration: none;
  text-transform: uppercase;
  position: absolute;
  z-index: 2;
  text-align: center;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  -o-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  top: 50%; }

.card-title {
  font-size: 1.438em;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 30px;
  text-align: left; }
  @media (max-width: 375px) {
    .card-title {
      text-align: center; } }

.home .opportunities-projects .container.vc_column_container {
  float: none;
  width: 1440px; }

.global_card_background {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  background-position: center center;
  background-size: cover;
  -ms-transition: all 0.6s ease-in-out;
  -webkit-transition: all 0.6s ease-in-out;
  -moz-transition: all 0.6s ease-in-out;
  -o-transition: all 0.6s ease-in-out;
  transition: all 0.6s ease-in-out;
  -webkit-backface-visibility: hidden;
  opacity: .7;
  z-index: 0; }

.global_card_wrap .vid.image:hover .global_card_background {
  opacity: 1; }

/* General Page (List) Styles
--------------------------------------------------------------- */
/* General Pages (page-general-list.php) */
.page-general-lists article {
  background: #e7e7e7;
  padding: 60px 0; }
  @media (max-width: 767px) {
    .page-general-lists article {
      padding: 40px 0; } }
  .page-general-lists article .article-content {
    background: #FFF;
    width: 1400px;
    max-width: 90%;
    margin: 0 auto; }
    .page-general-lists article .article-content .container {
      width: 1200px; }

.page-general-lists .list-container {
  display: block;
  width: 102.77778%;
  margin: 0 -1.38889%;
  *zoom: 1;
  padding-top: 2em; }
  .page-general-lists .list-container:before, .page-general-lists .list-container:after {
    content: "";
    display: table; }
  .page-general-lists .list-container:after {
    clear: both; }

.page-general-lists .list {
  display: inline;
  float: left;
  width: 22.22222%;
  margin: 0 1.38889%; }
  @media (max-width: 1024px) {
    .page-general-lists .list {
      display: inline;
      float: left;
      width: 30.55556%;
      margin: 0 1.38889%; } }
  @media (max-width: 768px) {
    .page-general-lists .list {
      display: inline;
      float: left;
      width: 47.22222%;
      margin: 0 1.38889%; } }

@media (max-width: 767px) and (orientation: landscape) {
  .page-general-lists .list {
    display: inline;
    float: left;
    width: 97.22222%;
    margin: 0 1.38889%; } }
  @media (max-width: 375px) {
    .page-general-lists .list {
      display: inline;
      float: left;
      width: 97.22222%;
      margin: 0 1.38889%; } }
  .page-general-lists .list h5,
  .page-general-lists .list hr {
    margin: 0 0 20px 0; }

.page-general-lists hr.divider {
  display: none;
  clear: both;
  width: 100%;
  border: 0; }
  .page-general-lists hr.divider:nth-of-type(4n) {
    display: block; }
  @media (max-width: 1024px) {
    .page-general-lists hr.divider:nth-of-type(4n) {
      display: none; }
    .page-general-lists hr.divider:nth-of-type(3n) {
      display: block; } }
  @media (max-width: 768px) {
    .page-general-lists hr.divider:nth-of-type(3n) {
      display: none; }
    .page-general-lists hr.divider:nth-of-type(2n) {
      display: block; } }

@media (max-width: 767px) and (orientation: landscape) {
  .page-general-lists hr.divider:nth-of-type(2n) {
    display: none; } }
  @media (max-width: 375px) {
    .page-general-lists hr.divider:nth-of-type(2n) {
      display: none; } }

/* Miscellaneous Items (Could be broken out into partials)
========================================================================== */
#ajax-loader {
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  -ms-transition: opacity 0.5s;
  -webkit-transition: opacity 0.5s;
  -moz-transition: opacity 0.5s;
  -o-transition: opacity 0.5s;
  transition: opacity 0.5s;
  -webkit-backface-visibility: hidden;
  background: rgba(255, 255, 255, 0.9);
  bottom: 30px;
  color: #00bbdd;
  display: block;
  font-size: 1.2em;
  font-weight: 600;
  height: 60px;
  line-height: 60px;
  opacity: 0;
  padding: 0 20px;
  position: fixed;
  right: 30px;
  text-align: center;
  text-transform: uppercase;
  z-index: 40; }
  #ajax-loader i {
    display: inline-block;
    font-size: 1.6em;
    margin-right: 6px;
    vertical-align: middle; }
  #ajax-loader.show {
    opacity: 1; }

#ajax-trigger {
  clear: both;
  display: block;
  height: 0;
  width: 0; }

.mfp-popup-search.mfp-bg {
  background: #1a1e20;
  opacity: .9; }

.mfp-popup-search .mfp-content {
  margin: 30px auto 0 auto;
  width: 600px;
  max-width: 90%; }

.mfp-popup-search input[type="text"].search {
  color: #fff; }

.mfp-popup-search input[type="text"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: none;
  border: 0;
  border-bottom: 2px solid #FFF;
  color: #FFF;
  color: inherit;
  font-family: "freight-sans-pro", sans-serif;
  font-size: 1.6em;
  font-style: italic;
  outline: 0;
  padding: .5em 40px .5em 0;
  width: 100%; }

.mfp-popup-search input[type="submit"] {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  background: none;
  border: 0;
  bottom: 0;
  color: #FFF;
  font-family: "FontAwesome";
  font-size: 1.6em;
  position: absolute;
  right: 0;
  top: 0; }

.mfp-popup-inline.mfp-bg {
  background: #1a1e20;
  opacity: .9; }

.mfp-popup-inline .mfp-content {
  background: #FFF;
  padding: 40px;
  margin: 30px auto 0 auto;
  width: 800px;
  max-width: 90%;
  font-size: .8em; }

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

.mfp-wrap .mfp-close {
  -ms-transition: background 0.3s ease-in-out;
  -webkit-transition: background 0.3s ease-in-out;
  -moz-transition: background 0.3s ease-in-out;
  -o-transition: background 0.3s ease-in-out;
  transition: background 0.3s ease-in-out;
  -webkit-backface-visibility: hidden;
  border: 2px solid #FFF;
  cursor: pointer;
  cursor: pointer;
  height: 42px;
  opacity: 1;
  overflow: hidden;
  position: fixed;
  right: 30px;
  text-indent: 200%;
  top: 30px;
  white-space: nowrap;
  width: 42px;
  z-index: 100; }
  .mfp-wrap .mfp-close:before, .mfp-wrap .mfp-close:after {
    -ms-transition: background 0.3s ease-in-out;
    -webkit-transition: background 0.3s ease-in-out;
    -moz-transition: background 0.3s ease-in-out;
    -o-transition: background 0.3s ease-in-out;
    transition: background 0.3s ease-in-out;
    -webkit-backface-visibility: hidden;
    background: #FFF;
    content: "";
    display: block;
    height: 30px;
    position: absolute;
    top: 4px;
    width: 2px; }
  .mfp-wrap .mfp-close:before {
    left: 18px;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg); }
  .mfp-wrap .mfp-close:after {
    right: 18px;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg); }
  .mfp-wrap .mfp-close:hover {
    background: #FFF; }
    .mfp-wrap .mfp-close:hover:before, .mfp-wrap .mfp-close:hover:after {
      background: #000; }

.mfp-wrap .mfp-arrow {
  width: 32px; }
  .mfp-wrap .mfp-arrow:before, .mfp-wrap .mfp-arrow:after {
    display: none; }

.mfp-wrap .mfp-arrow-left {
  background: url("../img/mfp-arrow-left.svg") center center no-repeat;
  left: 20px; }
  @media screen and (max-width: 767px) {
    .mfp-wrap .mfp-arrow-left {
      left: 10px; } }

.mfp-wrap .mfp-arrow-right {
  background: url("../img/mfp-arrow-right.svg") center center no-repeat;
  right: 20px; }
  @media screen and (max-width: 767px) {
    .mfp-wrap .mfp-arrow-right {
      right: 10px; } }

.mejs-container,
.mejs-container .mejs-button,
.mejs-container .mejs-button button,
.mejs-container .mejs-controls,
.mejs-container .mejs-controls a,
.mejs-container .mejs-controls div,
.mejs-container .mejs-controls .mejs-time-rail span,
.mejs-container .mejs-controls .mejs-time-rail a,
.mejs-container .mejs-controls a.mejs-horizontal-volume-slider {
  height: 75px !important;
  line-height: 75px !important;
  padding: 0 !important;
  margin: 0 !important;
  vertical-align: middle;
  outline: 0 !important; }

.mejs-container {
  overflow: hidden !important; }

.mejs-controls .mejs-time-rail .mejs-time-current {
  background: #33ccff !important; }

.mejs-container .mejs-controls {
  background: #FFF !important; }

.mejs-container .mejs-controls .mejs-time {
  padding: 0 10px !important;
  font-weight: 600;
  color: #000 !important; }
  .mejs-container .mejs-controls .mejs-time span {
    font-family: "freight-sans-pro", sans-serif !important;
    font-size: 15px !important; }

.mejs-time.mejs-currenttime-container {
  position: absolute;
  left: 75px;
  z-index: 500; }

.mejs-time.mejs-duration-container {
  position: absolute;
  right: 0; }

.mejs-container .mejs-controls .mejs-button.mejs-playpause-button {
  width: 75px !important; }
  .mejs-container .mejs-controls .mejs-button.mejs-playpause-button.mejs-play button {
    width: 75px !important;
    background: #eeeeee url("../img/mejs-play.svg") center center no-repeat; }
  .mejs-container .mejs-controls .mejs-button.mejs-playpause-button.mejs-pause button {
    width: 75px !important;
    background: #eeeeee url("../img/mejs-pause.svg") center center no-repeat; }

.mejs-controls .mejs-time-rail .mejs-time-float {
  display: none !important; }

.mejs-horizontal-volume-slider,
.mejs-horizontal-volume-slider.mejs-mute,
.mejs-horizontal-volume-slider.mejs-mute button,
.mejs-button.mejs-volume-button.mejs-mute button {
  width: 0 !important;
  overflow: hidden; }

.pagination {
  text-align: center; }
  .pagination .page-numbers {
    color: #1a1e20;
    display: inline-block;
    -webkit-font-feature-settings: 'lnum';
    -moz-font-feature-settings: 'lnum';
    -ms-font-feature-settings: 'lnum';
    font-feature-settings: 'lnum';
    font-size: 1.125em;
    font-weight: 700;
    text-decoration: none;
    vertical-align: middle;
    margin: 0 5px; }
  .pagination .next,
  .pagination .prev {
    font-size: 2.6em; }
  .pagination .prev {
    margin-right: 5px; }
  .pagination .next {
    margin-left: 5px; }

@-webkit-keyframes ballPulseDouble {
  0%, 100% {
    -webkit-transform: scale(0);
    transform: scale(0); }
  50% {
    -webkit-transform: scale(1);
    transform: scale(1); } }

@keyframes ballPulseDouble {
  0%, 100% {
    -webkit-transform: scale(0);
    transform: scale(0); }
  50% {
    -webkit-transform: scale(1);
    transform: scale(1); } }

.loader-container {
  /*position: relative;*/
  z-index: 11; }

.loader-container .loader {
  position: absolute;
  top: 50%;
  left: 50%;
  margin: auto; }

.ball-pulse-double .loader {
  width: 100px;
  height: 100px; }

.ball-pulse-double .ball-1, .ball-pulse-double .ball-2 {
  position: absolute;
  top: 25%;
  left: 25%;
  width: 50%;
  height: 50%;
  background-color: #ccc;
  border-radius: 50%;
  -webkit-animation: ballPulseDouble 2s ease-in-out infinite;
  animation: ballPulseDouble 2s ease-in-out infinite;
  opacity: .5; }

.article-title h2 {
  font-size: 60px;
  font-weight: 400;
  margin: 45px 0 25px 0;
  line-height: 1.2; }

.sidebar-left {
  padding: 0 10px;
  text-align: left; }

.sidebar-left p {
  text-align: left;
  font-size: 16.2px;
  line-height: 24.3px; }

.leftsidebar_thirty-seventy .sidebar-left .wpb_content_element p {
  padding: 0; }

.sidebar-main p {
  padding: 0; }

.leftsidebar_thirty-seventy .wpb_content_element {
  margin-bottom: 25px; }

.leftsidebar_thirty-seventy .sidebar-left .wpb_content_element {
  margin: 0; }

.content .vc_btn3-container a, .lmr-videos .vc_btn3-container a {
  border: 2px solid #1a1e20;
  color: #1a1e20 !important;
  display: inline-block;
  font-weight: 600;
  letter-spacing: 1px;
  line-height: 14.4px;
  min-width: 160px;
  padding: 8px 30px;
  text-align: center;
  text-decoration: none;
  text-transform: none;
  background-color: transparent !important;
  font-size: 14.4px; }

.content .vc_btn3-container {
  margin-bottom: 0; }

.content .vc_btn3-container:hover a, .lmr-videos .vc_btn3-container:hover a, .content .vc_btn3-container:focus a, .lmr-videos .vc_btn3-container:focus a {
  color: #fff !important;
  background: #1a1e20 !important;
  border: 2px solid #1a1e20; }

.content .general-page-accordion p {
  padding: 0; }

.content .vc_tta-color-grey.vc_tta-style-classic .vc_tta-panel.vc_active .vc_tta-panel-title > a {
  color: #000; }

.content .vc_tta-color-grey.vc_tta-style-classic .vc_tta-panel.vc_active .vc_tta-panel-title > a:hover {
  color: #000; }

.content .vc_tta.vc_tta-accordion .vc_tta-controls-icon-position-left .vc_tta-controls-icon::before {
  border-color: #000; }

.content .vc_tta.vc_tta-accordion .vc_tta-controls-icon-position-left .vc_tta-controls-icon::after {
  border-color: #000; }

.content .vc_tta.vc_tta-accordion .vc_active .vc_tta-controls-icon-position-left .vc_tta-controls-icon::before {
  border-color: #000; }

.content .vc_tta-color-grey.vc_tta-style-classic .vc_tta-panel .vc_tta-panel-title > a {
  color: #000; }

.general-page-accordion {
  color: black; }

.vc_tta-accordion .vc_tta-panel .vc_tta-panel-heading h4 {
  font-size: 18px; }

.content .vc_tta-color-grey.vc_tta-style-classic .vc_tta-panel .vc_tta-panel-heading {
  border-color: #e7e7e7;
  background-color: #e7e7e7; }

.content .vc_tta.vc_tta-style-classic .vc_tta-panel:not(:last-child) .vc_tta-panel-heading {
  margin-bottom: 3px; }

.content .vc_tta-accordion.vc_tta-color-grey .vc_tta-panel .vc_tta-panel-heading:hover {
  background-color: #79dbfc;
  border-bottom-color: #79dbfc; }

.content .vc_tta-accordion.vc_tta-color-grey .vc_tta-panel.vc_active .vc_tta-panel-heading {
  background-color: #79dbfc;
  border-bottom-color: #79dbfc; }

.content .vc_tta-accordion.vc_tta-color-grey .vc_tta-panel .vc_tta-panel-body {
  background-color: #f6f6f6;
  border-color: #f6f6f6; }

.content .vc_tta-accordion.vc_tta-color-grey .vc_tta-panel .vc_tta-panel-body .wpb_wrapper {
  padding: 10px 30px; }

.content .vc_tta-accordion .vc_tta-panel .vc_tta-panel-body p {
  font-size: 16.2px;
  padding: 0 0 30px 0; }

.opener_first-line h2 {
  font-size: 50px;
  font-weight: 400; }

.quote_center p {
  font-size: 32px;
  letter-spacing: 1px;
  line-height: 1.3;
  text-align: center; }

.vc-page-general h4, .vc-page-general h3 {
  margin-bottom: 5px; }

.vc-page-general .wpb_text_column {
  margin-bottom: 0; }

.page-template-general-page_no-title article.view-detail .article-media .table {
  height: calc(100vh - 300px);
  max-height: 550px; }

@media screen and (max-width: 768px) {
  .opener_first-line h2 {
    font-size: 30px; }
  .quote_center p {
    font-size: 22px; } }

@media (min-width: 1600px) {
  .content-full-page {
    padding: 0 125px; } }

.vc_btn3-container.button a {
  border: 2px solid #06fbf2;
  color: #fff !important;
  display: inline-block;
  font-weight: 600;
  letter-spacing: 1px;
  line-height: 1;
  margin-bottom: 3em;
  min-width: 260px;
  padding: 17px;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  background-color: transparent !important;
  font-size: 16px; }

.vc_btn3-container.button {
  margin-bottom: 0; }

.vc_btn3-container.button:hover a {
  color: #1a1e20 !important;
  background: #06fbf2 !important;
  border: 2px solid #06fbf2; }

button.btn-modal {
  -ms-transition: background 0.3s ease-in-out;
  -webkit-transition: background 0.3s ease-in-out;
  -moz-transition: background 0.3s ease-in-out;
  -o-transition: background 0.3s ease-in-out;
  transition: background 0.3s ease-in-out;
  -webkit-backface-visibility: hidden;
  border: 2px solid #1a1e20 !important;
  color: #ffffff !important;
  font-weight: 600;
  letter-spacing: 1px;
  line-height: 1;
  margin-bottom: 3em;
  min-width: 260px;
  padding: 17px;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  background-color: #1a1e20 !important;
  font-size: 16px;
  border-radius: 0;
  border-color: #1a1e20 !important; }

button.btn-modal:hover {
  -ms-transition: background 0.3s ease-in-out;
  -webkit-transition: background 0.3s ease-in-out;
  -moz-transition: background 0.3s ease-in-out;
  -o-transition: background 0.3s ease-in-out;
  transition: background 0.3s ease-in-out;
  -webkit-backface-visibility: hidden;
  color: #1a1e20 !important;
  background: #ffffff !important;
  border: 2px solid #1a1e20 !important; }

#Line-Above-Footer .footer_line {
  margin-bottom: 6px; }

#Line-Above-Footer .footer_line .vc_sep_holder .vc_sep_line {
  height: 0;
  top: 0; }

.title-full-page {
  margin-bottom: 0; }

.title-full-page h2 {
  font-size: 2.813em;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: #fff; }

.text-full-page {
  margin-bottom: 20px; }

.text-full-page p {
  font-size: 1.250em;
  letter-spacing: 1px;
  text-align: justify;
  color: #fff; }

.full_page_img_sec {
  min-height: calc(100vh - 300px);
  background-position: center;
  background-size: cover; }

.full_page_img_sec .content-full-page {
  padding: 0 50px; }

@media screen and (max-width: 768px) {
  .full_page_img_sec {
    min-height: calc(100vh - 260px); }
  .full_page_img_sec .content-full-page {
    width: 100%;
    padding: 30px; }
  .full_page_img_sec .content-full-page p {
    font-size: 16px;
    line-height: 27px; }
  .full_page_img_sec .content-full-page h2 {
    font-size: 32px; } }

@media screen and (max-width: 414px) {
  .full_page_img_sec {
    min-height: calc(100vh - 135px); }
  .full_page_img_sec .content-full-page {
    padding: 10px; }
  .full_page_img_sec .content-full-page .vc_btn3-container.button {
    width: 100%; }
  .full_page_img_sec .content-full-page .vc_btn3-container.button a {
    font-size: 12px;
    padding: 8px;
    width: 100%; }
  .full_page_img_sec .content-full-page p {
    font-size: 14.4px;
    line-height: 18px; }
  .full_page_img_sec .content-full-page h2 {
    font-size: 20px; } }

.page-training .training-info .container {
  float: none; }

.page-training .training-info .wpb_content_element.wpb_raw_html {
  margin-bottom: 0px; }

.page-training .container {
  width: 1400px;
  float: none; }

.page-training .vc_column_container > .vc_column-inner {
  padding-left: 0;
  padding-right: 0; }

.page-training .vc_row {
  margin-left: 0;
  margin-right: 0;
  width: 102.7777777778%;
  margin: 0 -1.3888888889%; }

.page-training .training-resources .vc_row {
  width: 100%;
  margin: 0; }

.page-training .title p {
  margin-top: 0; }

@media screen and (max-width: 767px) {
  .page-lottie-moon .lm-header {
    padding: 3em 0 !important; } }

.page-lottie-moon .vc_column_container > .vc_column-inner {
  padding-left: 0px;
  padding-right: 0px; }

.page-lottie-moon .vc_row {
  margin-left: 0px;
  margin-right: 0px; }

.page-lottie-moon .header-text p:first-child {
  margin-top: 0; }

.page-lottie-moon .lm-gallery .wpb_content_element {
  margin-bottom: 0; }

.page-lottie-moon .vc_row-has-fill + .vc_row > .vc_column_container > .vc_column-inner {
  padding-top: 0; }

.page-lottie-moon .lm-gallery p {
  margin: 0; }

.page-lottie-moon .container {
  margin: 0 auto;
  max-width: 90%;
  position: relative;
  width: 1400px;
  float: none; }

.page-lottie-moon .lm-about .row {
  display: block;
  width: 102.7777777778%;
  margin: 0 -1.3888888889%;
  position: relative; }

.page-lottie-moon .vc_tta-accordion.vc_tta-color-grey .vc_tta-panel .vc_tta-panel-heading:hover {
  background-color: #79dbfc;
  border-bottom-color: #79dbfc; }

.page-lottie-moon .vc_tta-color-grey.vc_tta-style-classic .vc_tta-panel.vc_active .vc_tta-panel-heading {
  background-color: #79dbfc;
  border-bottom-color: #79dbfc;
  margin-bottom: 2px;
  border-color: #79dbfc; }

.page-lottie-moon .vc_tta-color-grey.vc_tta-style-classic .vc_tta-panel .vc_tta-panel-heading {
  border-color: #e7e7e7;
  background-color: #e7e7e7;
  background: #e7e7e7; }

.page-lottie-moon .vc_tta.vc_general .vc_tta-panel {
  margin-bottom: 2px; }

.page-lottie-moon .vc_tta.vc_general .vc_tta-panel-body {
  border: solid transparent;
  box-sizing: content-box;
  padding: 14px 20px;
  display: none;
  overflow: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  -webkit-transition: padding .2s ease-in-out;
  transition: padding .2s ease-in-out; }

.page-lottie-moon .vc_tta-color-grey.vc_tta-style-classic .vc_tta-panel .vc_tta-panel-body, .page-lottie-moon .vc_tta-color-grey.vc_tta-style-classic .vc_tta-panel .vc_tta-panel-body::after, .page-lottie-moon .vc_tta-color-grey.vc_tta-style-classic .vc_tta-panel .vc_tta-panel-body::before {
  border-color: none;
  font-size: 0.9em;
  margin: 0px 0px 2px;
  background: #f6f6f6;
  padding: 30px 50px;
  line-height: 1.2;
  border-color: #f6f6f6; }

.page-lottie-moon .general-page-accordion p {
  padding: 0;
  line-height: 1.5;
  padding-bottom: 1em; }

.page-lottie-moon .vc_tta-color-grey.vc_tta-style-classic .vc_tta-panel.vc_active .vc_tta-panel-title > a {
  color: #000; }

.page-lottie-moon .vc_tta-color-grey.vc_tta-style-classic .vc_tta-panel.vc_active .vc_tta-panel-title > a:hover {
  color: #000; }

.page-lottie-moon .vc_tta.vc_tta-accordion .vc_tta-controls-icon-position-left .vc_tta-controls-icon::before {
  border-color: #000; }

.page-lottie-moon .vc_tta.vc_tta-accordion .vc_tta-controls-icon-position-left .vc_tta-controls-icon::after {
  border-color: #000; }

.page-lottie-moon .vc_tta.vc_tta-accordion .vc_active .vc_tta-controls-icon-position-left .vc_tta-controls-icon::before {
  border-color: #000; }

.page-lottie-moon .vc_tta-color-grey.vc_tta-style-classic .vc_tta-panel .vc_tta-panel-title > a {
  color: #000;
  font-weight: 600; }

.page-lottie-moon .lm-about .wpb_wrapper .about-article p {
  margin: 0; }

.page-lottie-moon .lm-quotes .slick-track .wpb_text_column.wpb_content_element {
  width: 70%;
  margin: auto; }

.page-lottie-moon .ult-carousel-wrapper {
  margin-bottom: 0;
  padding-bottom: 0; }

.page-lottie-moon .vc_row-has-fill > .vc_column_container > .vc_column-inner {
  padding-top: 0; }

.page-lottie-moon .slick-prev {
  z-index: 2;
  left: 5%; }

.page-lottie-moon .slick-next {
  right: 5%; }

@media (max-width: 1023px) {
  .page-lottie-moon .lm-quotes .slick-next, .page-lottie-moon .lm-quotes .slick-prev {
    display: none !important; }
  .page-lottie-moon .lm-quotes .slick-track .wpb_text_column.wpb_content_element {
    width: 100%; } }

.page-lottie-moon .lm-quotes .quote-slider-pager {
  padding: 0;
  left: 0;
  margin: 26px 0; }

.page-lottie-moon .lm-quotes .slick-dots li {
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
  -webkit-backface-visibility: hidden;
  background: #317086;
  border-right: 1px solid #303335;
  cursor: pointer;
  display: block;
  float: left;
  height: 26px;
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
  width: 80px;
  margin: 0; }

.page-lottie-moon .lm-quotes .slick-dots li.slick-active {
  background: #3cf; }

.page-lottie-moon-resources .lmr-info .info-title h3 {
  color: #333;
  font-size: 45px;
  font-weight: 400;
  letter-spacing: 2px; }

.page-lottie-moon-resources .lmr-info {
  padding: 50px; }

.page-lottie-moon-resources .lmr-info .wpb_wrapper {
  max-width: 900px;
  margin: 0 auto; }

.page-lottie-moon-resources .lmr-videos {
  padding: 0 50px; }

.page-lottie-moon-resources .lmr-videos {
  max-width: 1425px;
  margin: 0 auto; }

.page-lottie-moon-resources .lmr-videos .all a {
  text-decoration: none;
  color: #1a1e20; }

.lmr-videos .vc_btn3-container a {
  min-width: 75px; }

.page-lottie-moon-resources .lmr-featured-images.vc_row.wpb_row {
  padding-bottom: 160px;
  padding-top: 15px; }

.page-lottie-moon-resources .lmr-featured-images .ult-carousel-wrapper button {
  z-index: 1; }

.page-lottie-moon-resources .container.vc-lmr-featured-images {
  max-width: 100%; }

.page-lottie-moon-resources .lmr-featured-resources.vc_row {
  padding-top: 20px; }

.page-lottie-moon-resources .lmr-featured-resources .container,
.page-lottie-moon-resources .recommended-reading .container {
  margin: 0 auto;
  float: none;
  width: 1440px; }

.page-lottie-moon-resources .recommended-reading {
  padding-top: 70px; }

.page-lottie-moon-resources .recommended-reading .container .title {
  color: #000; }

.vm-president.no-background {
  background: none; }

.page-vision-mission .vm-president .p-title a {
  font-size: 21px;
  font-weight: 600;
  letter-spacing: 1px; }

.vc_custom_1470853945657 {
  margin-top: -75px;
  background-size: 100%; }

.no_margin_top p {
  margin-top: 0; }

.page-vision-mission .vm-facts .rtable td {
  width: 50%;
  border-top: 2px solid #e7e7e7; }

.page-vision-mission .vm-facts .rtable table {
  margin: 0 auto; }

.page-vision-mission .vm-videos .container {
  width: 1440px;
  max-width: 90%;
  float: none;
  margin: 0 auto; }

.page-vision-mission.president-background {
  background-repeat: no-repeat;
  background-position: center center; }

/*together aside a church template*/
.page-give-church .container {
  float: none;
  width: 1400px; }

.page-give-church .vc_column_container > .vc_column-inner {
  padding-left: 0px;
  padding-right: 0px; }

.page-give-church .vc_row {
  margin-left: 0px;
  margin-right: 0px;
  width: 102.7777777778%;
  margin: 0 -1.3888888889%; }

.page-give-church .wpb_content_element {
  margin-bottom: 0px; }

.page-give-church .give-info .wpb_wrapper p {
  margin-bottom: 1em; }

.page-give-church .title {
  margin-bottom: 40px; }

.page-give-church .title p {
  margin-top: 0; }

.page-give-church .give-videos .row {
  margin: 0; }

.page-give-church .give-resources .vc_row {
  width: 100%;
  margin: 0; }

/*together give online template*/
.page-give .container {
  float: none;
  width: 1400px; }

.page-give .vc_column_container > .vc_column-inner {
  padding-left: 0px;
  padding-right: 0px; }

.page-give .vc_row {
  margin-left: 0px;
  margin-right: 0px;
  width: 102.7777777778%;
  margin: 0 -1.3888888889%; }

.page-give .wpb_content_element {
  margin-bottom: 0px; }

.page-give .give-info .wpb_wrapper p {
  margin-bottom: 0; }

.page-give .content .vc_btn3-container a, .lmr-videos .vc_btn3-container {
  display: inline-block; }

.content .vc_btn3-container a, .lmr-videos .vc_btn3-container a.size-lg {
  -webkit-transition: background 0.3s, color 0.3s;
  transition: background 0.3s, color 0.3s;
  -webkit-backface-visibility: hidden;
  border: 2px solid #1a1e20;
  color: inherit;
  display: inline-block;
  font-size: 0.938em;
  font-weight: 600;
  letter-spacing: 1px;
  line-height: 1;
  overflow: visible;
  padding: 8px 50px;
  text-align: center;
  text-decoration: none; }

.page-give .give-options .option .o-graphic:before {
  background-color: #1a1e20;
  opacity: .3; }

.page-give .content p {
  font-size: 1em;
  text-align: justify;
  margin-bottom: 2em;
  padding: 0; }

.page-global-cities .gc-guides.vc_row {
  padding-top: 45px; }

.guides-links.vc_column_container {
  display: none; }

.gc-about.table {
  margin: 0 auto; }

.gc-about.table .container.vc_row {
  float: none;
  margin: 0 auto; }

.gc-about.table .cell.vc-cell:first-child {
  padding: 7% 0;
  position: static; }

.gc-about.table .container.vc_row .about-graphic {
  max-width: 800px;
  height: auto;
  width: 100%; }

.gc-about.table .container.vc_row .about-title {
  font-size: 1.39em; }

.gc-about.table .container.vc_row .about-title h3 {
  font-weight: 600; }

.gc-about.table .container.vc_row .about-description ul {
  padding-left: 0;
  -webkit-padding-start: 0; }

.gc-about.table .cell .vc_column-inner .about-background {
  opacity: 1; }

.gc-about.table .cell .vc_column-inner .about-background .vc_column-inner {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  background-position: center center;
  background-size: cover;
  background-attachment: fixed;
  opacity: .4;
  z-index: 1; }

.gc-next-steps .container {
  float: none; }

#Next_Steps.gc-next-steps .steps-title h3 {
  font-weight: 400; }

#Next_Steps.gc-next-steps .steps-list li h3 {
  font-weight: 600; }

#Next_Steps.gc-next-steps .steps-list li p {
  margin-top: 10px; }

#Next_Steps.gc-next-steps .steps-list li {
  padding-bottom: 45px; }

#Next_Steps.gc-next-steps .vc-steps-button .button {
  background-color: #1a1e20;
  color: #ffffff;
  padding: 16px;
  min-width: 350px;
  border-radius: 3px;
  font-size: 1.054em;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1;
  border: none;
  text-decoration: none; }

#Next_Steps.gc-next-steps .vc-steps-button .button:hover {
  color: #1a1e20 !important;
  background: #FFF !important; }

@media (max-width: 767px) {
  #Next_Steps.gc-next-steps .vc-steps-button .button {
    min-width: 1px;
    width: 100%; } }

.vc_row.wpb_row.vc_row-fluid.mn-gallery.popup-gallery {
  margin: 0; }

.page-most-needed article.view-detail.mn-article {
  padding: 0 0 40px; }

article.view-detail.mn-article .container.vc_column_container {
  float: none; }

/*article.view-detail.mn-article .container.vc_column_container p {
    padding-bottom: 0;
}
article.view-detail.mn-article .container.vc_column_container .quote_center p {
    padding-bottom: 35px;
}*/
article.view-detail.mn-article .container.vc_column_container .article-title h2 {
  text-align: center; }

article.view-detail.mn-article .container.vc_column_container .quote_center {
  width: 60%;
  margin: 0 auto; }

@media (max-width: 767px) {
  article.view-detail.mn-article .container.vc_column_container .quote_center {
    width: 75%; } }

.report_content.content .vc_btn3-container a {
  padding: 10px 30px;
  font-size: 16.2px; }

.page-video-gallery .vg-featured-videos .vid-button {
  border: 2px solid #fff;
  color: #fff; }

.page-video-gallery .vg-featured-videos .vid-button:hover {
  background-color: #fff;
  color: #1a1e20; }

.page-video-gallery .container.vc_column_container {
  float: none;
  width: 1440px; }

.tiny-vid-wrap a {
  color: inherit;
  text-decoration: none;
  text-align: left; }

.tiny-vid-wrap {
  min-height: 315px; }

.txtal-center {
  text-align: center; }

.page-id-3154 .mfp-content {
  background: none; }

.page-front.postshortcode article .article-title {
  font-size: 1.250em;
  font-weight: 500;
  line-height: 1.2;
  margin: 5px 0; }

.page-front.postshortcode article .article-meta {
  display: block;
  margin-bottom: 15px;
  text-align: left; }

.page-front.postshortcode .posts article {
  display: inline;
  float: left;
  width: 22.22222%;
  margin: 0 1.38889%;
  margin-bottom: 2em; }
  .page-front.postshortcode .posts article:nth-child(1), .page-front.postshortcode .posts article:nth-child(2) {
    display: inline;
    float: left;
    width: 22.22222%;
    margin: 0 1.38889%;
    margin-bottom: 2em;
    position: relative; }
    .page-front.postshortcode .posts article:nth-child(1):before, .page-front.postshortcode .posts article:nth-child(2):before {
      display: block;
      content: "";
      width: 100%;
      padding-top: 163.63636%; }
  @media (max-width: 1023px) {
    .page-front.postshortcode .posts article {
      display: inline;
      float: left;
      width: 30.55556%;
      margin: 0 1.38889%;
      margin-bottom: 2em; }
      .page-front.postshortcode .posts article:nth-child(1), .page-front.postshortcode .posts article:nth-child(2) {
        display: inline;
        float: left;
        width: 30.55556%;
        margin: 0 1.38889%;
        margin-bottom: 2em;
        position: relative; }
        .page-front.postshortcode .posts article:nth-child(1):before, .page-front.postshortcode .posts article:nth-child(2):before {
          display: block;
          content: "";
          width: 100%;
          padding-top: 163.63636%; } }
  @media (max-width: 767px) {
    .page-front.postshortcode .posts article {
      display: inline;
      float: left;
      width: 47.22222%;
      margin: 0 1.38889%;
      margin-bottom: 2em; }
      .page-front.postshortcode .posts article:nth-child(1), .page-front.postshortcode .posts article:nth-child(2) {
        display: inline;
        float: left;
        width: 47.22222%;
        margin: 0 1.38889%;
        margin-bottom: 2em; } }

@media (max-width: 767px) and (orientation: landscape) {
  .page-front.postshortcode .posts article {
    display: inline;
    float: left;
    width: 47.22222%;
    margin: 0 1.38889%;
    margin-bottom: 2em;
    position: relative; }
    .page-front.postshortcode .posts article:before {
      display: block;
      content: "";
      width: 100%;
      padding-top: 100%; }
    .page-front.postshortcode .posts article:nth-child(1), .page-front.postshortcode .posts article:nth-child(2) {
      display: inline;
      float: left;
      width: 47.22222%;
      margin: 0 1.38889%;
      margin-bottom: 2em;
      position: relative; }
      .page-front.postshortcode .posts article:nth-child(1):before, .page-front.postshortcode .posts article:nth-child(2):before {
        display: block;
        content: "";
        width: 100%;
        padding-top: 100%; } }
  @media (max-width: 375px) {
    .page-front.postshortcode .posts article {
      display: inline;
      float: left;
      width: 97.22222%;
      margin: 0 1.38889%;
      margin-bottom: 2em; }
      .page-front.postshortcode .posts article:nth-child(1), .page-front.postshortcode .posts article:nth-child(2) {
        display: inline;
        float: left;
        width: 97.22222%;
        margin: 0 1.38889%;
        margin-bottom: 2em; }
      .page-front.postshortcode .posts article:nth-child(n+5) {
        display: inline; } }

.page-global-cities.gstarted .container {
  width: 1200px; }

.gs-header-background {
  opacity: 0.8; }

.page-global-cities .page-content-top {
  width: 100%; }

/*Events Page*/
.page-events .events-list {
  padding: 100px 0 0 0; }

.page-people-group-detail .pg-header .info-box iframe {
  width: 100%;
  height: 76px;
  box-sizing: border-box;
  outline: 0;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: none;
  display: block;
  margin-top: 0em;
  position: relative;
  border: none; }

.page-people-group-detail .pg-header .info-box {
  padding: 40px 40px 10px; }

.iframeform.note {
  color: #0bd;
  font-size: 1.125em;
  letter-spacing: 1px;
  line-height: 1.2;
  margin-bottom: 1em; }

.iframegiveform {
  border: none;
  width: 100%;
  margin: 0;
  display: block;
  margin-top: 0em;
  box-sizing: border-box;
  outline: 0;
  height: 540px; }

.iframecontactformwrapper {
  border: none;
  width: 100%;
  margin: 0;
  display: block;
  margin-top: 0em;
  box-sizing: border-box;
  outline: 0;
  height: 690px;
  background: #e7e7e7;
  padding: 65px;
  font-size: 1.125em; }

.iframecontactform {
  border: none;
  width: 100%;
  margin: 0;
  display: block;
  margin-top: 0em;
  box-sizing: border-box;
  outline: 0;
  height: 690px; }

#OpportunityApplyForm, #PrayerSignUpForm {
  max-width: 600px;
  margin: auto; }

.iframeapplyoppform, .iframeprayersignupform, .iframe_hubspot_shortcode {
  border: none;
  width: 100%;
  margin: 0;
  display: block;
  margin-top: 0em;
  box-sizing: border-box;
  outline: 0;
  height: 80vh;
  max-height: 690px;
  background-color: #e7e7e7;
  padding: 20px; }

.iframe_hubspot_shortcode.article-submission-post {
  height: 800px; }

.gstarted .iframe_hubspot_shortcode {
  height: 820px;
  max-height: none; }

.iframe_hubspot_shortcode {
  margin: 50px auto; }

.giveform_wrapper {
  padding: 0 15px; }

h2.article-title.event-title {
  font-size: 3.750em;
  text-align: center;
  font-weight: 400;
  line-height: 1.2;
  color: #fff;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  left: 50%; }

.e-date.date-detail-pg {
  font-size: 1.75em;
  text-align: center;
  font-weight: 400;
  padding: 0;
  line-height: 1.2;
  color: #fff;
  position: absolute;
  top: 67%;
  margin: 0 auto;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  left: 50%; }

.page-template-tpl-project-detail .page-item-detail .item-content h1.title {
  font-size: 3em; }

