/*
Theme Name: apla
Author: Nice Touch
Author URI: http://nicetouch.co/
Description: A clean custom theme for Aids Project Los Angeles
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: apla
Tags:

apla is based on Underscores http://underscores.me/, (C) 2012-2016 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal http://necolas.github.com/normalize.css/
*/
/* Colors 
---------*/
.bg--black {
  background-color: #282828; }

.bg--blue {
  background-color: #15467A; }

.bg--light-blue {
  background-color: #486DB2; }

.bg--charcoal {
  background-color: #4D4D4D; }

.bg--orange {
  background-color: #EDA01D; }

.bg--gold {
  background-color: #FCB71F; }

.bg--green {
  background-color: #9DBF3B; }

.bg--grey {
  background-color: #F4F5F7; }

.bg--pewter {
  background-color: #808080; }

.bg--silver {
  background-color: #E3E5EA; }

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

.color--black {
  color: #282828; }
  .color--black > a:not(:hover) {
    color: #282828 !important; }

.color--blue {
  color: #15467A; }
  .color--blue > a:not(:hover) {
    color: #15467A !important; }

.color--light-blue {
  color: #486DB2; }
  .color--light-blue > a:not(:hover) {
    color: #486DB2 !important; }

.color--charcoal {
  color: #4D4D4D; }
  .color--charcoal > a:not(:hover) {
    color: #4D4D4D !important; }

.color--gold {
  color: #FCB71F; }
  .color--gold > a:not(:hover) {
    color: #FCB71F !important; }

.color--green {
  color: #9DBF3B; }
  .color--green > a:not(:hover) {
    color: #9DBF3B !important; }

.color--pewter {
  color: #808080; }
  .color--pewter > a:not(:hover) {
    color: #808080 !important; }

.color--silver {
  color: #E3E5EA; }
  .color--silver > a:not(:hover) {
    color: #E3E5EA !important; }

.color--white {
  color: #FFFFFF; }
  .color--white > a:not(:hover) {
    color: #FFFFFF !important; }

.site__content .bg--left {
  background-position-x: left; }
.site__content .bg--center {
  background-position-x: center; }
.site__content .bg--right {
  background-position-x: right; }

/* Fonts
--------*/
/*!
 * animate.css -http://daneden.me/animate
 * Version - 3.5.1
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2016 Daniel Eden
 */
.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both; }

.animated.infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite; }

.animated.hinge {
  -webkit-animation-duration: 2s;
  animation-duration: 2s; }

.animated.flipOutX,
.animated.flipOutY,
.animated.bounceIn,
.animated.bounceOut {
  -webkit-animation-duration: .75s;
  animation-duration: .75s; }

@-webkit-keyframes bounce {
  from, 20%, 53%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); }
  40%, 43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0); }
  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0); }
  90% {
    -webkit-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0); } }
@keyframes bounce {
  from, 20%, 53%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); }
  40%, 43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0); }
  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0); }
  90% {
    -webkit-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0); } }
.bounce {
  -webkit-animation-name: bounce;
  animation-name: bounce;
  -webkit-transform-origin: center bottom;
  transform-origin: center bottom; }

@-webkit-keyframes flash {
  from, 50%, to {
    opacity: 1; }
  25%, 75% {
    opacity: 0; } }
@keyframes flash {
  from, 50%, to {
    opacity: 1; }
  25%, 75% {
    opacity: 0; } }
.flash {
  -webkit-animation-name: flash;
  animation-name: flash; }

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); }
  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05); }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); } }
@keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); }
  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05); }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); } }
.pulse {
  -webkit-animation-name: pulse;
  animation-name: pulse; }

@-webkit-keyframes rubberBand {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); }
  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1); }
  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1); }
  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1); }
  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1); }
  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1); }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); } }
@keyframes rubberBand {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); }
  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1); }
  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1); }
  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1); }
  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1); }
  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1); }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); } }
.rubberBand {
  -webkit-animation-name: rubberBand;
  animation-name: rubberBand; }

@-webkit-keyframes shake {
  from, to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0); }
  20%, 40%, 60%, 80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0); } }
@keyframes shake {
  from, to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0); }
  20%, 40%, 60%, 80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0); } }
.shake {
  -webkit-animation-name: shake;
  animation-name: shake; }

@-webkit-keyframes headShake {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0); }
  6.5% {
    -webkit-transform: translateX(-6px) rotateY(-9deg);
    transform: translateX(-6px) rotateY(-9deg); }
  18.5% {
    -webkit-transform: translateX(5px) rotateY(7deg);
    transform: translateX(5px) rotateY(7deg); }
  31.5% {
    -webkit-transform: translateX(-3px) rotateY(-5deg);
    transform: translateX(-3px) rotateY(-5deg); }
  43.5% {
    -webkit-transform: translateX(2px) rotateY(3deg);
    transform: translateX(2px) rotateY(3deg); }
  50% {
    -webkit-transform: translateX(0);
    transform: translateX(0); } }
@keyframes headShake {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0); }
  6.5% {
    -webkit-transform: translateX(-6px) rotateY(-9deg);
    transform: translateX(-6px) rotateY(-9deg); }
  18.5% {
    -webkit-transform: translateX(5px) rotateY(7deg);
    transform: translateX(5px) rotateY(7deg); }
  31.5% {
    -webkit-transform: translateX(-3px) rotateY(-5deg);
    transform: translateX(-3px) rotateY(-5deg); }
  43.5% {
    -webkit-transform: translateX(2px) rotateY(3deg);
    transform: translateX(2px) rotateY(3deg); }
  50% {
    -webkit-transform: translateX(0);
    transform: translateX(0); } }
.headShake {
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-name: headShake;
  animation-name: headShake; }

@-webkit-keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg); }
  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg); }
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg); }
  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg); }
  to {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg); } }
@keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg); }
  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg); }
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg); }
  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg); }
  to {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg); } }
.swing {
  -webkit-transform-origin: top center;
  transform-origin: top center;
  -webkit-animation-name: swing;
  animation-name: swing; }

@-webkit-keyframes tada {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); }
  10%, 20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg); }
  30%, 50%, 70%, 90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg); }
  40%, 60%, 80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg); }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); } }
@keyframes tada {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); }
  10%, 20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg); }
  30%, 50%, 70%, 90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg); }
  40%, 60%, 80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg); }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); } }
.tada {
  -webkit-animation-name: tada;
  animation-name: tada; }

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes wobble {
  from {
    -webkit-transform: none;
    transform: none; }
  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg); }
  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg); }
  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg); }
  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg); }
  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg); }
  to {
    -webkit-transform: none;
    transform: none; } }
@keyframes wobble {
  from {
    -webkit-transform: none;
    transform: none; }
  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg); }
  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg); }
  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg); }
  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg); }
  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg); }
  to {
    -webkit-transform: none;
    transform: none; } }
.wobble {
  -webkit-animation-name: wobble;
  animation-name: wobble; }

@-webkit-keyframes jello {
  from, 11.1%, to {
    -webkit-transform: none;
    transform: none; }
  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg); }
  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg); }
  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg); }
  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg); }
  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg); }
  77.7% {
    -webkit-transform: skewX(0.39063deg) skewY(0.39063deg);
    transform: skewX(0.39063deg) skewY(0.39063deg); }
  88.8% {
    -webkit-transform: skewX(-0.19531deg) skewY(-0.19531deg);
    transform: skewX(-0.19531deg) skewY(-0.19531deg); } }
@keyframes jello {
  from, 11.1%, to {
    -webkit-transform: none;
    transform: none; }
  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg); }
  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg); }
  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg); }
  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg); }
  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg); }
  77.7% {
    -webkit-transform: skewX(0.39063deg) skewY(0.39063deg);
    transform: skewX(0.39063deg) skewY(0.39063deg); }
  88.8% {
    -webkit-transform: skewX(-0.19531deg) skewY(-0.19531deg);
    transform: skewX(-0.19531deg) skewY(-0.19531deg); } }
.jello {
  -webkit-animation-name: jello;
  animation-name: jello;
  -webkit-transform-origin: center;
  transform-origin: center; }

@-webkit-keyframes bounceIn {
  from, 20%, 40%, 60%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3); }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1); }
  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9); }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03); }
  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97); }
  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); } }
@keyframes bounceIn {
  from, 20%, 40%, 60%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3); }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1); }
  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9); }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03); }
  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97); }
  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); } }
.bounceIn {
  -webkit-animation-name: bounceIn;
  animation-name: bounceIn; }

@-webkit-keyframes bounceInDown {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0); }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0); }
  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0); }
  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0); }
  to {
    -webkit-transform: none;
    transform: none; } }
@keyframes bounceInDown {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0); }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0); }
  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0); }
  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0); }
  to {
    -webkit-transform: none;
    transform: none; } }
.bounceInDown {
  -webkit-animation-name: bounceInDown;
  animation-name: bounceInDown; }

@-webkit-keyframes bounceInLeft {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
    transform: translate3d(-3000px, 0, 0); }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0); }
  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0); }
  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0); }
  to {
    -webkit-transform: none;
    transform: none; } }
@keyframes bounceInLeft {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
    transform: translate3d(-3000px, 0, 0); }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0); }
  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0); }
  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0); }
  to {
    -webkit-transform: none;
    transform: none; } }
.bounceInLeft {
  -webkit-animation-name: bounceInLeft;
  animation-name: bounceInLeft; }

@-webkit-keyframes bounceInRight {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  from {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
    transform: translate3d(3000px, 0, 0); }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
    transform: translate3d(-25px, 0, 0); }
  75% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0); }
  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
    transform: translate3d(-5px, 0, 0); }
  to {
    -webkit-transform: none;
    transform: none; } }
@keyframes bounceInRight {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  from {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
    transform: translate3d(3000px, 0, 0); }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
    transform: translate3d(-25px, 0, 0); }
  75% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0); }
  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
    transform: translate3d(-5px, 0, 0); }
  to {
    -webkit-transform: none;
    transform: none; } }
.bounceInRight {
  -webkit-animation-name: bounceInRight;
  animation-name: bounceInRight; }

@-webkit-keyframes bounceInUp {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
    transform: translate3d(0, 3000px, 0); }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0); }
  75% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0); }
  90% {
    -webkit-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0); }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }
@keyframes bounceInUp {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
    transform: translate3d(0, 3000px, 0); }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0); }
  75% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0); }
  90% {
    -webkit-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0); }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }
.bounceInUp {
  -webkit-animation-name: bounceInUp;
  animation-name: bounceInUp; }

@-webkit-keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9); }
  50%, 55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1); }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3); } }
@keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9); }
  50%, 55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1); }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3); } }
.bounceOut {
  -webkit-animation-name: bounceOut;
  animation-name: bounceOut; }

@-webkit-keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0); }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0); }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0); } }
@keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0); }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0); }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0); } }
.bounceOutDown {
  -webkit-animation-name: bounceOutDown;
  animation-name: bounceOutDown; }

@-webkit-keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0);
    transform: translate3d(20px, 0, 0); }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0); } }
@keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0);
    transform: translate3d(20px, 0, 0); }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0); } }
.bounceOutLeft {
  -webkit-animation-name: bounceOutLeft;
  animation-name: bounceOutLeft; }

@-webkit-keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0);
    transform: translate3d(-20px, 0, 0); }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0); } }
@keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0);
    transform: translate3d(-20px, 0, 0); }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0); } }
.bounceOutRight {
  -webkit-animation-name: bounceOutRight;
  animation-name: bounceOutRight; }

@-webkit-keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0); }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0); }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0); } }
@keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0); }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0); }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0); } }
.bounceOutUp {
  -webkit-animation-name: bounceOutUp;
  animation-name: bounceOutUp; }

@-webkit-keyframes fadeIn {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }
@keyframes fadeIn {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }
.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn; }

@-webkit-keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0); }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }
@keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0); }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }
.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown; }

@-webkit-keyframes fadeInDownBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0); }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }
@keyframes fadeInDownBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0); }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }
.fadeInDownBig {
  -webkit-animation-name: fadeInDownBig;
  animation-name: fadeInDownBig; }

@-webkit-keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0); }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }
@keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0); }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }
.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft; }

@-webkit-keyframes fadeInLeftBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0); }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }
@keyframes fadeInLeftBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0); }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }
.fadeInLeftBig {
  -webkit-animation-name: fadeInLeftBig;
  animation-name: fadeInLeftBig; }

@-webkit-keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0); }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }
@keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0); }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }
.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight; }

@-webkit-keyframes fadeInRightBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0); }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }
@keyframes fadeInRightBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0); }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }
.fadeInRightBig {
  -webkit-animation-name: fadeInRightBig;
  animation-name: fadeInRightBig; }

@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0); }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }
@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0); }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }
.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp; }

@-webkit-keyframes fadeInUpBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0); }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }
@keyframes fadeInUpBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0); }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }
.fadeInUpBig {
  -webkit-animation-name: fadeInUpBig;
  animation-name: fadeInUpBig; }

@-webkit-keyframes fadeOut {
  from {
    opacity: 1; }
  to {
    opacity: 0; } }
@keyframes fadeOut {
  from {
    opacity: 1; }
  to {
    opacity: 0; } }
.fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut; }

@-webkit-keyframes fadeOutDown {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0); } }
@keyframes fadeOutDown {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0); } }
.fadeOutDown {
  -webkit-animation-name: fadeOutDown;
  animation-name: fadeOutDown; }

@-webkit-keyframes fadeOutDownBig {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0); } }
@keyframes fadeOutDownBig {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0); } }
.fadeOutDownBig {
  -webkit-animation-name: fadeOutDownBig;
  animation-name: fadeOutDownBig; }

@-webkit-keyframes fadeOutLeft {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0); } }
@keyframes fadeOutLeft {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0); } }
.fadeOutLeft {
  -webkit-animation-name: fadeOutLeft;
  animation-name: fadeOutLeft; }

@-webkit-keyframes fadeOutLeftBig {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0); } }
@keyframes fadeOutLeftBig {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0); } }
.fadeOutLeftBig {
  -webkit-animation-name: fadeOutLeftBig;
  animation-name: fadeOutLeftBig; }

@-webkit-keyframes fadeOutRight {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0); } }
@keyframes fadeOutRight {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0); } }
.fadeOutRight {
  -webkit-animation-name: fadeOutRight;
  animation-name: fadeOutRight; }

@-webkit-keyframes fadeOutRightBig {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0); } }
@keyframes fadeOutRightBig {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0); } }
.fadeOutRightBig {
  -webkit-animation-name: fadeOutRightBig;
  animation-name: fadeOutRightBig; }

@-webkit-keyframes fadeOutUp {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0); } }
@keyframes fadeOutUp {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0); } }
.fadeOutUp {
  -webkit-animation-name: fadeOutUp;
  animation-name: fadeOutUp; }

@-webkit-keyframes fadeOutUpBig {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0); } }
@keyframes fadeOutUpBig {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0); } }
.fadeOutUpBig {
  -webkit-animation-name: fadeOutUpBig;
  animation-name: fadeOutUpBig; }

@-webkit-keyframes flip {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out; }
  40% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out; }
  50% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in; }
  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in; }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in; } }
@keyframes flip {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out; }
  40% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out; }
  50% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in; }
  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in; }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in; } }
.animated.flip {
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
  -webkit-animation-name: flip;
  animation-name: flip; }

@-webkit-keyframes flipInX {
  from {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0; }
  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in; }
  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1; }
  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg); }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px); } }
@keyframes flipInX {
  from {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0; }
  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in; }
  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1; }
  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg); }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px); } }
.flipInX {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInX;
  animation-name: flipInX; }

@-webkit-keyframes flipInY {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0; }
  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in; }
  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1; }
  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg); }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px); } }
@keyframes flipInY {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0; }
  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in; }
  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1; }
  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg); }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px); } }
.flipInY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInY;
  animation-name: flipInY; }

@-webkit-keyframes flipOutX {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px); }
  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1; }
  to {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0; } }
@keyframes flipOutX {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px); }
  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1; }
  to {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0; } }
.flipOutX {
  -webkit-animation-name: flipOutX;
  animation-name: flipOutX;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important; }

@-webkit-keyframes flipOutY {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px); }
  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1; }
  to {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0; } }
@keyframes flipOutY {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px); }
  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1; }
  to {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0; } }
.flipOutY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipOutY;
  animation-name: flipOutY; }

@-webkit-keyframes lightSpeedIn {
  from {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0; }
  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1; }
  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
    opacity: 1; }
  to {
    -webkit-transform: none;
    transform: none;
    opacity: 1; } }
@keyframes lightSpeedIn {
  from {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0; }
  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1; }
  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
    opacity: 1; }
  to {
    -webkit-transform: none;
    transform: none;
    opacity: 1; } }
.lightSpeedIn {
  -webkit-animation-name: lightSpeedIn;
  animation-name: lightSpeedIn;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out; }

@-webkit-keyframes lightSpeedOut {
  from {
    opacity: 1; }
  to {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0; } }
@keyframes lightSpeedOut {
  from {
    opacity: 1; }
  to {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0; } }
.lightSpeedOut {
  -webkit-animation-name: lightSpeedOut;
  animation-name: lightSpeedOut;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in; }

@-webkit-keyframes rotateIn {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0; }
  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: none;
    transform: none;
    opacity: 1; } }
@keyframes rotateIn {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0; }
  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: none;
    transform: none;
    opacity: 1; } }
.rotateIn {
  -webkit-animation-name: rotateIn;
  animation-name: rotateIn; }

@-webkit-keyframes rotateInDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0; }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1; } }
@keyframes rotateInDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0; }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1; } }
.rotateInDownLeft {
  -webkit-animation-name: rotateInDownLeft;
  animation-name: rotateInDownLeft; }

@-webkit-keyframes rotateInDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0; }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1; } }
@keyframes rotateInDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0; }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1; } }
.rotateInDownRight {
  -webkit-animation-name: rotateInDownRight;
  animation-name: rotateInDownRight; }

@-webkit-keyframes rotateInUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0; }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1; } }
@keyframes rotateInUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0; }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1; } }
.rotateInUpLeft {
  -webkit-animation-name: rotateInUpLeft;
  animation-name: rotateInUpLeft; }

@-webkit-keyframes rotateInUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0; }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1; } }
@keyframes rotateInUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0; }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1; } }
.rotateInUpRight {
  -webkit-animation-name: rotateInUpRight;
  animation-name: rotateInUpRight; }

@-webkit-keyframes rotateOut {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    opacity: 1; }
  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0; } }
@keyframes rotateOut {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    opacity: 1; }
  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0; } }
.rotateOut {
  -webkit-animation-name: rotateOut;
  animation-name: rotateOut; }

@-webkit-keyframes rotateOutDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1; }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0; } }
@keyframes rotateOutDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1; }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0; } }
.rotateOutDownLeft {
  -webkit-animation-name: rotateOutDownLeft;
  animation-name: rotateOutDownLeft; }

@-webkit-keyframes rotateOutDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1; }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0; } }
@keyframes rotateOutDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1; }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0; } }
.rotateOutDownRight {
  -webkit-animation-name: rotateOutDownRight;
  animation-name: rotateOutDownRight; }

@-webkit-keyframes rotateOutUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1; }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0; } }
@keyframes rotateOutUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1; }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0; } }
.rotateOutUpLeft {
  -webkit-animation-name: rotateOutUpLeft;
  animation-name: rotateOutUpLeft; }

@-webkit-keyframes rotateOutUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1; }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0; } }
@keyframes rotateOutUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1; }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0; } }
.rotateOutUpRight {
  -webkit-animation-name: rotateOutUpRight;
  animation-name: rotateOutUpRight; }

@-webkit-keyframes hinge {
  0% {
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out; }
  20%, 60% {
    -webkit-transform: rotate3d(0, 0, 1, 80deg);
    transform: rotate3d(0, 0, 1, 80deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out; }
  40%, 80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
    transform: rotate3d(0, 0, 1, 60deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1; }
  to {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0; } }
@keyframes hinge {
  0% {
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out; }
  20%, 60% {
    -webkit-transform: rotate3d(0, 0, 1, 80deg);
    transform: rotate3d(0, 0, 1, 80deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out; }
  40%, 80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
    transform: rotate3d(0, 0, 1, 60deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1; }
  to {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0; } }
.hinge {
  -webkit-animation-name: hinge;
  animation-name: hinge; }

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes rollIn {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg); }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }
@keyframes rollIn {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg); }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }
.rollIn {
  -webkit-animation-name: rollIn;
  animation-name: rollIn; }

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes rollOut {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg); } }
@keyframes rollOut {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg); } }
.rollOut {
  -webkit-animation-name: rollOut;
  animation-name: rollOut; }

@-webkit-keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3); }
  50% {
    opacity: 1; } }
@keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3); }
  50% {
    opacity: 1; } }
.zoomIn {
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn; }

@-webkit-keyframes zoomInDown {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }
@keyframes zoomInDown {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }
.zoomInDown {
  -webkit-animation-name: zoomInDown;
  animation-name: zoomInDown; }

@-webkit-keyframes zoomInLeft {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }
@keyframes zoomInLeft {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }
.zoomInLeft {
  -webkit-animation-name: zoomInLeft;
  animation-name: zoomInLeft; }

@-webkit-keyframes zoomInRight {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }
@keyframes zoomInRight {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }
.zoomInRight {
  -webkit-animation-name: zoomInRight;
  animation-name: zoomInRight; }

@-webkit-keyframes zoomInUp {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }
@keyframes zoomInUp {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }
.zoomInUp {
  -webkit-animation-name: zoomInUp;
  animation-name: zoomInUp; }

@-webkit-keyframes zoomOut {
  from {
    opacity: 1; }
  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3); }
  to {
    opacity: 0; } }
@keyframes zoomOut {
  from {
    opacity: 1; }
  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3); }
  to {
    opacity: 0; } }
.zoomOut {
  -webkit-animation-name: zoomOut;
  animation-name: zoomOut; }

@-webkit-keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }
@keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }
.zoomOutDown {
  -webkit-animation-name: zoomOutDown;
  animation-name: zoomOutDown; }

@-webkit-keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0); }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    -webkit-transform-origin: left center;
    transform-origin: left center; } }
@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0); }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    -webkit-transform-origin: left center;
    transform-origin: left center; } }
.zoomOutLeft {
  -webkit-animation-name: zoomOutLeft;
  animation-name: zoomOutLeft; }

@-webkit-keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0); }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
    transform: scale(0.1) translate3d(2000px, 0, 0);
    -webkit-transform-origin: right center;
    transform-origin: right center; } }
@keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0); }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
    transform: scale(0.1) translate3d(2000px, 0, 0);
    -webkit-transform-origin: right center;
    transform-origin: right center; } }
.zoomOutRight {
  -webkit-animation-name: zoomOutRight;
  animation-name: zoomOutRight; }

@-webkit-keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }
@keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }
.zoomOutUp {
  -webkit-animation-name: zoomOutUp;
  animation-name: zoomOutUp; }

@-webkit-keyframes slideInDown {
  from {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible; }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }
@keyframes slideInDown {
  from {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible; }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }
.slideInDown {
  -webkit-animation-name: slideInDown;
  animation-name: slideInDown; }

@-webkit-keyframes slideInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible; }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }
@keyframes slideInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible; }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }
.slideInLeft {
  -webkit-animation-name: slideInLeft;
  animation-name: slideInLeft; }

@-webkit-keyframes slideInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible; }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }
@keyframes slideInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible; }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }
.slideInRight {
  -webkit-animation-name: slideInRight;
  animation-name: slideInRight; }

@-webkit-keyframes slideInUp {
  from {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible; }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }
@keyframes slideInUp {
  from {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible; }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }
.slideInUp {
  -webkit-animation-name: slideInUp;
  animation-name: slideInUp; }

@-webkit-keyframes slideOutDown {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0); } }
@keyframes slideOutDown {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0); } }
.slideOutDown {
  -webkit-animation-name: slideOutDown;
  animation-name: slideOutDown; }

@-webkit-keyframes slideOutLeft {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0); } }
@keyframes slideOutLeft {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0); } }
.slideOutLeft {
  -webkit-animation-name: slideOutLeft;
  animation-name: slideOutLeft; }

@-webkit-keyframes slideOutRight {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0); } }
@keyframes slideOutRight {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0); } }
.slideOutRight {
  -webkit-animation-name: slideOutRight;
  animation-name: slideOutRight; }

@-webkit-keyframes slideOutUp {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0); } }
@keyframes slideOutUp {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0); } }
.slideOutUp {
  -webkit-animation-name: slideOutUp;
  animation-name: slideOutUp; }

/*--------------------------------------------------------------
# Normalize
--------------------------------------------------------------*/
html {
  color: #4D4D4D;
  font-family: 'Titillium Web', sans-serif;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  box-sizing: border-box; }

*, *:before, *:after {
  box-sizing: inherit; }

body {
  margin: 0; }

article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
menu,
nav,
section,
summary {
  display: block; }

audio,
canvas,
progress,
video {
  display: inline-block;
  vertical-align: baseline; }

audio:not([controls]) {
  display: none;
  height: 0; }

[hidden],
template {
  display: none; }

a {
  text-decoration: none;
  background-color: transparent; }

a:active,
a:hover {
  outline: 0; }

abbr[title] {
  border-bottom: 1px dotted; }

b,
strong {
  font-weight: bold; }

dfn {
  font-style: italic; }

h1 {
  font-size: 2em;
  margin: 0.67em 0; }

mark {
  background: #ff0;
  color: #000; }

small {
  font-size: 80%; }

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline; }

sup {
  top: -0.5em; }

sub {
  bottom: -0.25em; }

img {
  border: 0; }

svg:not(:root) {
  overflow: hidden; }

figure {
  margin: 1em 40px; }

hr {
  height: 0; }

pre {
  overflow: auto; }

code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em; }

button,
input,
optgroup,
select,
textarea {
  color: inherit;
  font: inherit;
  margin: 0; }

button {
  overflow: visible; }

button,
select {
  text-transform: none; }

button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  cursor: pointer; }

button[disabled],
html input[disabled] {
  cursor: default; }

button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0; }

input {
  line-height: normal; }

input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  padding: 0; }

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto; }

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none; }

fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em; }

legend {
  border: 0;
  padding: 0; }

textarea {
  overflow: auto; }

optgroup {
  font-weight: bold; }

table {
  border-collapse: collapse;
  border-spacing: 0; }

td,
th {
  padding: 0; }

.skip-link {
  display: none; }

/* Mixins
---------*/
.vertical-parent {
  -webkit-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  transform-style: preserve-3d; }
  .vertical-parent .vertical-center {
    position: relative;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%); }

@media (min-width: 768px) {
  .half {
    width: 44.44444%;
    float: left;
    margin-right: 11.11111%; }
    .half:nth-of-type(2) {
      float: right;
      margin-right: 0; } }

@media (min-width: 768px) {
  .third {
    width: 28.57143%;
    float: left;
    margin-right: 7.14286%; }
    .third:nth-of-type(3) {
      float: right;
      margin-right: 0; } }

@media (min-width: 768px) {
  .last {
    float: right;
    margin-right: 0; } }

.wrapper--1440px {
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto; }
  .wrapper--1440px:after {
    content: " ";
    display: block;
    clear: both; }

.breakout {
  margin-left: calc(-50vw + 50%) !important;
  margin-right: calc(-50vw + 50%) !important; }

.site__content h1 {
  font-size: 1.5em;
  font-weight: 600;
  line-height: 1.15;
  margin: 0; }
  @media (min-width: 768px) {
    .site__content h1 {
      font-size: 3.5em; } }
.site__content h2 {
  font-size: 1.4em;
  font-weight: 700;
  margin-top: 0; }
  @media (min-width: 768px) {
    .site__content h2 {
      font-size: 2.9em; } }
.site__content h3 {
  font-size: 1em;
  font-weight: 300;
  margin-top: 0; }
  @media (min-width: 768px) {
    .site__content h3 {
      font-size: 1.8em; } }
.site__content h4 {
  font-size: 1em;
  margin-top: 0;
  font-weight: 700; }
  @media (min-width: 768px) {
    .site__content h4 {
      font-size: 1.5em; } }
.site__content h5 {
  font-size: 1em;
  margin-top: 0;
  font-weight: 400; }
  @media (min-width: 768px) {
    .site__content h5 {
      font-size: 1.125em; } }
.site__content h6 {
  margin-top: 0;
  font-size: 0.9em;
  letter-spacing: 1px; }
.site__content p {
  margin-top: 0; }
  .site__content p:last-child {
    margin-bottom: 0; }
.site__content li {
  list-style-type: square; }
.site__content .wysiwyg h1 {
  margin-bottom: 0.2em; }
.site__content .wysiwyg h2 {
  margin-bottom: 0.2em; }
.site__content .wysiwyg h3 {
  margin-bottom: 0.5em;
  font-size: 1.3em; }
  @media (min-width: 768px) {
    .site__content .wysiwyg h3 {
      font-size: 1.8em; } }
.site__content .wysiwyg h4 {
  font-size: 1.4em;
  line-height: 1.2;
  letter-spacing: 0.06em;
  margin-bottom: 0.6em; }
  @media (min-width: 768px) {
    .site__content .wysiwyg h4 {
      font-size: 1.5em; } }
.site__content .wysiwyg h5 {
  margin-bottom: 0.9em;
  font-size: 1.1em; }
  @media (min-width: 768px) {
    .site__content .wysiwyg h5 {
      font-size: 1.25em; } }
.site__content .wysiwyg h6 {
  margin-bottom: 0.8em; }
.site__content .wysiwyg a {
  font-size: 1em;
  font-weight: 700;
  margin-top: 0;
  color: #282828; }
.site__content .wysiwyg ul {
  margin-top: 0; }
.site__content .wysiwyg .button {
  border: 1px solid rgba(157, 191, 59, 0);
  margin-top: 0.5em; }
  .site__content .wysiwyg .button a {
    color: #FFFFFF !important; }
  @media (min-width: 768px) {
    .site__content .wysiwyg .button:hover {
      color: #9DBF3B !important;
      border-color: #9dbf3b; }
      .site__content .wysiwyg .button:hover a {
        color: #9DBF3B !important; } }

.mm-menu,
.mm-panels,
.mm-panels > .mm-panel {
  margin: 0;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 0;
  box-sizing: border-box; }

.mm-btn,
.mm-menu {
  box-sizing: border-box; }

.mm-listview a,
.mm-listview a:hover,
.mm-navbar a,
.mm-navbar a:hover {
  text-decoration: none; }

.mm-hidden {
  display: none !important; }

.mm-menu,
.mm-panels > .mm-panel:not(.mm-hidden) {
  display: block; }

.mm-wrapper {
  overflow-x: hidden;
  position: relative; }

.mm-menu {
  padding: 0;
  position: absolute; }

.mm-panels,
.mm-panels > .mm-panel {
  background: inherit;
  border-color: inherit;
  position: absolute; }

.mm-btn,
.mm-panel.mm-highest {
  z-index: 1; }

.mm-panels {
  overflow: hidden; }

.mm-panel {
  -webkit-transition: -webkit-transform .4s ease;
  transition: -webkit-transform .4s ease;
  transition: transform .4s ease;
  transition: transform .4s ease, -webkit-transform .4s ease;
  -webkit-transform: translate3d(100%, 0, 0);
  transform: translate3d(100%, 0, 0); }

.mm-panel.mm-opened {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0); }

.mm-panel.mm-subopened {
  -webkit-transform: translate3d(-30%, 0, 0);
  transform: translate3d(-30%, 0, 0); }

.mm-panels > .mm-panel {
  -webkit-overflow-scrolling: touch;
  overflow: scroll;
  overflow-x: hidden;
  overflow-y: auto;
  padding: 0 20px; }

.mm-listview .mm-divider,
.mm-listview > li > a,
.mm-listview > li > span,
.mm-navbar .mm-title {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden; }

.mm-panels > .mm-panel.mm-hasnavbar {
  padding-top: 40px; }

.mm-panels > .mm-panel:after,
.mm-panels > .mm-panel:before {
  content: '';
  display: block;
  height: 20px; }

.mm-vertical .mm-panel {
  -webkit-transform: none !important;
  -ms-transform: none !important;
  transform: none !important; }

.mm-listview .mm-vertical .mm-panel,
.mm-vertical .mm-listview .mm-panel {
  display: none;
  padding: 10px 0 10px 10px; }

.mm-listview .mm-vertical .mm-panel .mm-listview > li:last-child:after,
.mm-vertical .mm-listview .mm-panel .mm-listview > li:last-child:after {
  border-color: transparent; }

.mm-vertical li.mm-opened > .mm-panel,
li.mm-vertical.mm-opened > .mm-panel {
  display: block; }

.mm-listview > li.mm-vertical > .mm-next,
.mm-vertical .mm-listview > li > .mm-next {
  height: 40px;
  bottom: auto; }

.mm-listview > li.mm-vertical > .mm-next:after,
.mm-vertical .mm-listview > li > .mm-next:after {
  top: 16px;
  bottom: auto; }

.mm-listview > li.mm-vertical.mm-opened > .mm-next:after,
.mm-vertical .mm-listview > li.mm-opened > .mm-next:after {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  right: 19px; }

.mm-btn {
  width: 40px;
  height: 40px;
  position: absolute;
  top: 0; }

.mm-clear:after,
.mm-clear:before,
.mm-close:after,
.mm-close:before {
  content: '';
  border: 2px solid transparent;
  display: block;
  width: 5px;
  height: 5px;
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg); }

.mm-clear:before,
.mm-close:before {
  border-right: none;
  border-bottom: none;
  right: 18px; }

.mm-clear:after,
.mm-close:after {
  border-left: none;
  border-top: none;
  right: 25px; }

.mm-arrow:after,
.mm-next:after,
.mm-prev:before {
  content: '';
  border: 2px solid transparent;
  display: block;
  width: 8px;
  height: 8px;
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg); }

.mm-prev:before {
  border-right: none;
  border-bottom: none;
  left: 23px; }

.mm-arrow:after,
.mm-next:after {
  border-top: none;
  border-left: none;
  right: 23px; }

.mm-navbar {
  border-bottom: 1px solid;
  border-color: inherit;
  text-align: center;
  line-height: 20px;
  height: 40px;
  padding: 0 40px;
  margin: 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0; }

.mm-navbar > * {
  display: block;
  padding: 10px 0; }

.mm-navbar .mm-btn:first-child {
  padding-left: 20px;
  left: 0; }

.mm-navbar .mm-btn:last-child {
  text-align: right;
  padding-right: 20px;
  right: 0; }

.mm-panel .mm-navbar {
  display: none; }

.mm-panel.mm-hasnavbar .mm-navbar {
  display: block; }

.mm-listview,
.mm-listview > li {
  list-style: none;
  display: block;
  padding: 0;
  margin: 0; }

.mm-listview {
  font: inherit;
  font-size: 14px;
  line-height: 20px; }

.mm-listview > li {
  position: relative; }

.mm-listview > li,
.mm-listview > li .mm-next,
.mm-listview > li .mm-next:before,
.mm-listview > li:after {
  border-color: inherit; }

.mm-listview > li > a,
.mm-listview > li > span {
  color: inherit;
  display: block;
  padding: 10px 10px 10px 20px;
  margin: 0; }

.mm-listview > li > a.mm-arrow,
.mm-listview > li > span.mm-arrow {
  padding-right: 50px; }

.mm-listview > li:not(.mm-divider):after {
  content: '';
  border-bottom-width: 1px;
  border-bottom-style: solid;
  display: block;
  position: absolute;
  right: 0;
  bottom: 0;
  left: 20px; }

.mm-listview .mm-next {
  background: rgba(3, 2, 1, 0);
  width: 50px;
  padding: 0;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 2; }

.mm-listview .mm-next:before {
  content: '';
  border-left-width: 1px;
  border-left-style: solid;
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0; }

.mm-listview .mm-next + a,
.mm-listview .mm-next + span {
  margin-right: 50px; }

.mm-listview .mm-next.mm-fullsubopen {
  width: 100%; }

.mm-listview .mm-next.mm-fullsubopen:before {
  border-left: none; }

.mm-listview .mm-next.mm-fullsubopen + a,
.mm-listview .mm-next.mm-fullsubopen + span {
  padding-right: 50px;
  margin-right: 0; }

.mm-panels > .mm-panel > .mm-listview {
  margin: 20px -20px; }

.mm-panels > .mm-panel > .mm-listview:first-child,
.mm-panels > .mm-panel > .mm-navbar + .mm-listview {
  margin-top: -20px; }

.mm-listview .mm-inset {
  list-style: disc inside;
  padding: 0 10px 15px 40px;
  margin: 0; }

.mm-listview .mm-inset > li {
  padding: 5px 0; }

.mm-listview .mm-divider {
  font-size: 10px;
  text-transform: uppercase;
  text-indent: 20px;
  line-height: 25px; }

.mm-listview .mm-spacer {
  padding-top: 40px; }

.mm-listview .mm-spacer > .mm-next {
  top: 40px; }

.mm-listview .mm-spacer.mm-divider {
  padding-top: 25px; }

.mm-menu {
  background: #f3f3f3;
  border-color: rgba(0, 0, 0, 0.1);
  color: rgba(0, 0, 0, 0.7); }

.mm-menu .mm-navbar a,
.mm-menu .mm-navbar > * {
  color: rgba(0, 0, 0, 0.3); }

.mm-menu .mm-btn:after,
.mm-menu .mm-btn:before {
  border-color: rgba(0, 0, 0, 0.3); }

.mm-menu .mm-listview {
  border-color: rgba(0, 0, 0, 0.1); }

.mm-menu .mm-listview > li .mm-arrow:after,
.mm-menu .mm-listview > li .mm-next:after {
  border-color: rgba(0, 0, 0, 0.3); }

.mm-menu .mm-listview > li a:not(.mm-next) {
  -webkit-tap-highlight-color: rgba(255, 255, 255, 0.5);
  tap-highlight-color: rgba(255, 255, 255, 0.5); }

.mm-menu .mm-listview > li.mm-selected > a:not(.mm-next),
.mm-menu .mm-listview > li.mm-selected > span {
  background: rgba(255, 255, 255, 0.5); }

.mm-menu .mm-divider,
.mm-menu .mm-listview > li.mm-opened.mm-vertical > .mm-panel,
.mm-menu .mm-listview > li.mm-opened.mm-vertical > a.mm-next,
.mm-menu.mm-vertical .mm-listview > li.mm-opened > .mm-panel,
.mm-menu.mm-vertical .mm-listview > li.mm-opened > a.mm-next {
  background: rgba(0, 0, 0, 0.05); }

.mm-page {
  box-sizing: border-box;
  position: relative; }

.mm-slideout {
  -webkit-transition: -webkit-transform .4s ease;
  transition: -webkit-transform .4s ease;
  transition: transform .4s ease;
  transition: transform .4s ease, -webkit-transform .4s ease;
  z-index: 1; }

html.mm-opened {
  overflow-x: hidden;
  position: relative; }

html.mm-blocking,
html.mm-blocking body {
  overflow: hidden; }

html.mm-background .mm-page {
  background: inherit; }

#mm-blocker {
  background: rgba(3, 2, 1, 0);
  display: none;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2; }

html.mm-blocking #mm-blocker {
  display: block; }

.mm-menu.mm-offcanvas {
  z-index: 0;
  display: none;
  position: fixed;
  width: 80%;
  min-width: 140px;
  max-width: 440px; }

.mm-menu.mm-offcanvas.mm-current {
  display: block; }

html.mm-opening .mm-slideout {
  -webkit-transform: translate3d(80%, 0, 0);
  transform: translate3d(80%, 0, 0); }

@media all and (max-width: 175px) {
  html.mm-opening .mm-slideout {
    -webkit-transform: translate3d(140px, 0, 0);
    transform: translate3d(140px, 0, 0); } }
@media all and (min-width: 550px) {
  html.mm-opening .mm-slideout {
    -webkit-transform: translate3d(440px, 0, 0);
    transform: translate3d(440px, 0, 0); } }
.nav__container {
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 9000; }
  @media (min-width: 768px) and (max-width: 1000px) {
    .nav__container {
      font-size: 0.85em; } }

.nav {
  background-color: #FFFFFF; }

.nav--primary {
  height: 4em;
  /*benefits scroll to js */
  padding: 1.5em 2em 1em 2em;
  display: none; }
  @media (min-width: 768px) {
    .nav--primary {
      font-size: 1.1em;
      height: 6em; } }

/* Small Nav */
.nav--small {
  background-color: #E3E5EA;
  font-size: 1.1em;
  height: 2.5em;
  overflow: hidden;
  padding: 0 2em;
  position: relative;
  z-index: 9999;
  display: none; }
  @media (max-width: 768px) {
    .nav--small {
      height: 0 !important; } }

.icon-insert a {
  font-weight: 700;
  padding-left: 1.1rem !important;
  background-image: url(img/person-icon.png);
  background-position: left;
  background-repeat: no-repeat; }

.nav--small .nav__links {
  display: inline-block;
  float: left; }
  .nav--small .nav__links ul {
    list-style: none;
    margin: 0;
    padding: 0; }
  .nav--small .nav__links li {
    display: inline-block;
    float: left; }
    .nav--small .nav__links li:first-of-type a {
      padding-left: 0; }
  .nav--small .nav__links a {
    color: #4D4D4D;
    display: inline-block;
    font-size: 0.9em;
    margin-right: 1em;
    padding: 0.5rem; }
    .nav--small .nav__links a:visited {
      color: #4D4D4D; }

.nav--small .nav__social {
  display: inline-block;
  float: right;
  padding-right: 0.5em;
  padding-top: 0.5em; }

.nav--small .nav__social--icon {
  display: inline-block;
  width: 1.2em;
  margin-left: 1em; }
  .nav--small .nav__social--icon img {
    width: 100%; }

/* Scrolling Nav */
.wrapper--scroll-nav {
  display: inline-block;
  position: relative;
  width: 100%;
  text-align: center; }

.wrapper--scroll-nav .wrapper__toggle {
  cursor: pointer;
  height: 2.4em;
  padding: 0.7em 2em 0.5em;
  margin-bottom: -0.2em;
  position: relative;
  z-index: 15; }
  @media (min-width: 768px) {
    .wrapper--scroll-nav .wrapper__toggle {
      display: none; } }

.scroll-nav {
  display: inline-block;
  width: 100%; }
  @media (max-width: 768px) {
    .scroll-nav {
      position: absolute;
      left: 0;
      right: 0;
      top: 2em;
      transform: matrix(1, 0, 0, 1, 0, -30);
      text-align: left;
      padding: 0 8vw 1.4em;
      z-index: 10; }
      .scroll-nav.hide {
        display: none;
        visibility: hidden; } }
  @media (min-width: 768px) {
    .scroll-nav {
      position: relative;
      text-align: center;
      padding: 1em;
      transform: matrix(1, 0, 0, 1, 0, 0) !important; } }

.scroll-nav .scroll-nav__anchor {
  display: block;
  color: #FFFFFF;
  font-size: 1.35em;
  font-weight: 700;
  letter-spacing: 1px;
  padding-bottom: 0.4em; }
  @media (min-width: 768px) {
    .scroll-nav .scroll-nav__anchor {
      display: inline-block;
      font-size: 1.15em;
      padding-bottom: 0; } }
  .scroll-nav .scroll-nav__anchor:last-of-type {
    padding-bottom: 0; }
  .scroll-nav .scroll-nav__anchor:hover {
    color: #FCB71F; }

.scroll-nav .scroll-nav__pipe {
  display: none; }
  @media (min-width: 768px) {
    .scroll-nav .scroll-nav__pipe {
      display: inline-block;
      color: #FFFFFF;
      font-size: 0.85em;
      padding: 0 0.5em;
      vertical-align: text-top; }
      .scroll-nav .scroll-nav__pipe:last-of-type {
        display: none; } }

/* Super Nav */
.nav--super {
  display: inline-block;
  width: 100%;
  position: absolute;
  right: 0;
  left: 0;
  bottom: 4em;
  overflow: hidden;
  padding: 2em 4em;
  background-color: #E3E5EA;
  border-top: 4.05em solid #FFFFFF;
  background-clip: padding-box;
  z-index: -1; }

.nav__quadrant {
  width: 44.44444%;
  float: left;
  margin-right: 11.11111%;
  height: 19em; }

.nav__quadrant--right {
  float: right;
  margin-right: 0; }

.nav__list {
  display: inline-block;
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%; }
  .nav__list a {
    color: #4D4D4D;
    font-weight: 400;
    letter-spacing: 0.02em;
    line-height: 2; }
  .nav__list .current-menu-item a {
    font-weight: 700; }
  .nav__list .description {
    border-left: 1px solid #4D4D4D;
    font-size: 0.8em;
    font-style: italic;
    font-weight: 300;
    line-height: 1;
    margin-left: 0.5em;
    padding-left: 0.5em; }

.nav--primary .nav__list {
  display: inline-block;
  float: right;
  margin-top: 0.5em;
  width: auto; }
  .nav--primary .nav__list a {
    margin: 0 1em;
    padding: 0.25em 0em;
    position: relative;
    z-index: 9999; }
    .nav--primary .nav__list a:hover, .nav--primary .nav__list a.nav-opened {
      border-bottom: 6px solid #FCB71F; }
  .nav--primary .nav__list .menu-item {
    display: block;
    float: left;
    position: relative; }
    .nav--primary .nav__list .menu-item .sub-menu {
      position: absolute;
      left: 0;
      bottom: 2em;
      z-index: 8000;
      visibility: hidden;
      opacity: 0;
      padding: 1em;
      border-top: 4.05em solid #FFFFFF;
      background-color: #EDEEEF;
      background-clip: padding-box; }
      .nav--primary .nav__list .menu-item .sub-menu .menu-item {
        display: block;
        width: 20em; }
      .nav--super .nav--primary .nav__list .menu-item .sub-menu {
        padding: 0; }
    .nav--primary .nav__list .menu-item.super-nav-parent {
      position: inherit; }
    .nav--primary .nav__list .menu-item:last-child .sub-menu, .nav--primary .nav__list .menu-item:nth-last-child(2) .sub-menu {
      left: inherit;
      right: 0; }
    .nav--primary .nav__list .menu-item:hover .sub-menu a:hover {
      border-bottom: 0;
      font-weight: 700; }

.nav--super .nav__list {
  width: 100%; }
  .nav--super .nav__list .menu-item {
    float: none; }
  .nav--super .nav__list a {
    margin: 0;
    padding: 0.25em 0em;
    position: relative;
    z-index: 9999; }
    .nav--super .nav__list a:hover {
      border-bottom: none;
      font-weight: 700; }

.nav__list--two-column {
  -webkit-column-count: 2;
  /* Chrome, Safari, Opera */
  -moz-column-count: 2;
  /* Firefox */
  column-count: 2; }

.nav__headline {
  border-bottom: 2px solid;
  font-size: 2.3em;
  font-weight: 600;
  line-height: 1.8;
  margin-top: 0;
  margin-bottom: 0.5em; }

.nav__logo {
  display: inline-block;
  max-width: 13em;
  position: relative;
  z-index: 9999; }
  .nav__logo img {
    max-width: 100%; }

.nav__close {
  background-color: transparent;
  border: none;
  bottom: 2em;
  cursor: pointer;
  position: absolute;
  right: 2em;
  width: 6em;
  -webkit-appearance: none; }
  .nav__close img {
    max-width: 100%; }
  .nav__close :focus {
    outline: 0; }

/* Super Nav height adjustment
------------------------------*/
@media screen and (max-height: 900px) {
  .nav--super {
    font-size: 0.9em; }
    .nav--super .nav__list a {
      line-height: 1.7; }

  .nav__headline {
    font-size: 2em;
    line-height: 1.5; }

  .nav__quadrant {
    height: 15em; } }
/* Mobile navigation - MMenu
----------------------------*/
@media (min-width: 1080px) {
  #mobile-nav-trigger {
    display: none; }

  .mobile-logo-holder {
    display: none; }

  .nav--mobile {
    display: none; } }
@media (min-width: 1080px) {
  #top-nav,
  #primary-nav {
    display: block; } }
.mobile-logo-holder {
  position: relative;
  background-color: #FFFFFF; }

.nav__logo--mobile {
  margin: 1em 0 0.5em 1em; }

.mmenu-open {
  float: right;
  padding: 1em;
  margin: 1em 1em 0 0; }

.mmenu-close {
  position: absolute;
  top: 1em;
  right: 1em;
  padding: 1em; }

.mm-menu {
  color: #4D4D4D;
  background-color: #FFFFFF;
  border-color: transparent;
  /* Super Nav navbars */ }
  .mm-menu.mm-opened {
    z-index: 100; }
  .mm-menu .mm-panels {
    margin-top: 5em;
    background-color: #EEEFF2; }
  .mm-menu .mm-navbar {
    text-align: left;
    background-color: #E3E5EA; }
    .mm-menu .mm-navbar .mm-prev {
      display: inline-block;
      position: relative;
      float: left;
      padding-top: 12px;
      padding-left: 0; }
      .mm-menu .mm-navbar .mm-prev:before {
        display: inline-block;
        content: '';
        position: relative;
        background-image: url(img/double-back.png);
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center center;
        height: 15px;
        width: 15px;
        border: none;
        transform: none; }
    .mm-menu .mm-navbar .mm-title {
      display: inline-block;
      color: #4D4D4D;
      font-weight: 700;
      padding-left: 0.6em; }
  .mm-menu #menu-mobile-nav {
    background-color: #E3E5EA;
    padding-top: 15px; }
    .mm-menu #menu-mobile-nav .mm-navbar {
      display: none; }
  .mm-menu #mm-1 .mm-navbar {
    background-color: #FCB71F; }
    .mm-menu #mm-1 .mm-navbar .mm-prev:before {
      background-image: url(img/double-back-white.png); }
    .mm-menu #mm-1 .mm-navbar .mm-title {
      color: #FFFFFF; }
  .mm-menu #mm-2 .mm-navbar {
    background-color: #15467A; }
    .mm-menu #mm-2 .mm-navbar .mm-prev:before {
      background-image: url(img/double-back-white.png); }
    .mm-menu #mm-2 .mm-navbar .mm-title {
      color: #FFFFFF; }
  .mm-menu #mm-3 .mm-navbar {
    background-color: #486DB2; }
    .mm-menu #mm-3 .mm-navbar .mm-prev:before {
      background-image: url(img/double-back-white.png); }
    .mm-menu #mm-3 .mm-navbar .mm-title {
      color: #FFFFFF; }
  .mm-menu #mm-4 .mm-navbar {
    background-color: #9DBF3B; }
    .mm-menu #mm-4 .mm-navbar .mm-prev:before {
      background-image: url(img/double-back-white.png); }
    .mm-menu #mm-4 .mm-navbar .mm-title {
      color: #FFFFFF; }
  .mm-menu .sub-menu {
    padding-top: 16px; }
  .mm-menu #mm-0 .sub-menu {
    padding-top: 0; }
  .mm-menu .mm-listview {
    font-size: 16px;
    /* Super Nav Panel */ }
    .mm-menu .mm-listview li {
      border: none; }
      .mm-menu .mm-listview li:after {
        border: none; }
      .mm-menu .mm-listview li a:not(.mm-next) {
        display: inline-block;
        padding: 5px 10px 5px 10vw;
        margin: 0; }
    .mm-menu .mm-listview .mm-next {
      width: 100%; }
      .mm-menu .mm-listview .mm-next:after {
        display: none; }
      .mm-menu .mm-listview .mm-next:before {
        border: none; }
    .mm-menu .mm-listview .menu-item-has-children a:not(.mm-next):after {
      display: inline-block;
      content: '';
      position: relative;
      vertical-align: middle;
      background-image: url(img/double-arrow.png);
      background-repeat: no-repeat;
      background-position: center center;
      height: 16px;
      width: 16px;
      margin-left: 16px; }
    .mm-menu .mm-listview .mm-selected a {
      background: inherit !important;
      font-weight: 700; }
    .mm-menu .mm-listview .mmenu-bold {
      font-weight: 700; }
    .mm-menu .mm-listview .mmenu-bold-last {
      font-weight: 700;
      border-bottom: 1px solid black;
      margin: 0 15% 0.8em 10vw;
      padding-bottom: 1em;
      border-left: #E3E5EA; }
      .mm-menu .mm-listview .mmenu-bold-last a:not(.mm-next) {
        padding-left: 0; }
    .mm-menu .mm-listview .super a:not(.mm-next) {
      display: inline-block;
      padding: 30px 0px 15px 0;
      margin-left: 10vw;
      border-bottom: 1px solid;
      width: 85%;
      font-weight: 700; }
    .mm-menu .mm-listview .super:after {
      position: absolute;
      right: 0px;
      left: 90%;
      bottom: 22px; }
    .mm-menu .mm-listview .gold a:not(.mm-next) {
      color: #FCB71F;
      border-color: #FCB71F; }
      .mm-menu .mm-listview .gold a:not(.mm-next):after {
        background-image: url(img/double-arrow-gold.png); }
    .mm-menu .mm-listview .blue a:not(.mm-next) {
      color: #15467A;
      border-color: #15467A; }
      .mm-menu .mm-listview .blue a:not(.mm-next):after {
        background-image: url(img/double-arrow-blue.png); }
    .mm-menu .mm-listview .light-blue a:not(.mm-next) {
      color: #486DB2;
      border-color: #486DB2; }
      .mm-menu .mm-listview .light-blue a:not(.mm-next):after {
        background-image: url(img/double-arrow-light-blue.png); }
    .mm-menu .mm-listview .green a:not(.mm-next) {
      color: #9DBF3B;
      border-color: #9DBF3B; }
      .mm-menu .mm-listview .green a:not(.mm-next):after {
        background-image: url(img/double-arrow-green.png); }

#menu-long-beach-mobile-nav .mm-listview {
  margin-top: -10px !important; }

.button {
  display: inline-block;
  cursor: pointer;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 1.5em;
  padding: 0.75em 1.5em; }
  @media (min-width: 768px) {
    .button.bg--silver:hover {
      color: #FFFFFF;
      background-color: #808080; }
    .button.color--charcoal:hover {
      color: #FFFFFF;
      background-color: #4D4D4D; }
    .button.bg--gold:hover {
      color: #FCB71F;
      background-color: #FFFFFF; }
    .button.bg--green:hover {
      color: #9DBF3B;
      background-color: #FFFFFF; } }

.hero {
  position: relative; }

/* Regular Hero Image 
---------------------*/
.hero--image {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  height: 20em; }
  @media (min-width: 768px) {
    .hero--image {
      height: 30em; } }

.hero--huge-image {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  height: 32vw; }

/* Micro Site Hero Text
---------------------*/
.hero__text-div {
  text-align: center;
  padding: 2em 0; }
  @media (min-width: 768px) {
    .hero__text-div {
      padding: 3em 0; } }

.hero__text-div .hero__text {
  font-size: 1.7em; }
  @media (min-width: 480px) and (max-width: 768px) {
    .hero__text-div .hero__text {
      font-size: 2.2em; } }
  @media (min-width: 768px) {
    .hero__text-div .hero__text {
      font-size: 3.5em; } }

/* Partial Width Hero & logo 
----------------------------*/
.wrapper--hero {
  display: inline-block;
  position: relative;
  width: 100%;
  margin-bottom: 1.5em; }
  @media (min-width: 768px) {
    .wrapper--hero {
      margin-bottom: 3em; } }
  .wrapper--hero.no-margin {
    margin: 0; }

.hero--partial {
  height: 50vw; }
  @media (min-width: 768px) {
    .hero--partial {
      width: 60%;
      float: left;
      height: 30em; } }

.hero--div {
  text-align: center;
  padding: 1em; }
  @media (min-width: 768px) {
    .hero--div {
      width: 40%;
      float: left;
      float: right;
      margin-right: 0;
      height: 30em;
      padding: 0 2em;
      margin-bottom: 0; } }

@media (min-width: 768px) {
  .hero__wrapper {
    position: relative;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%); } }

@media (min-width: 768px) {
  .hero--div .hero__text {
    line-height: 1.5em; } }

.hero--div .hero__logo {
  max-height: 4em; }

/* Joined Image Slider
----------------------*/
.hero__slide {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 0 0;
  height: 60vh;
  min-height: 40em; }
  @media (max-width: 768px) {
    .hero__slide {
      background-position: center center;
      height: 20em;
      min-height: 20em; } }
  @media (max-width: 480px) {
    .hero__slide {
      height: 16em;
      min-height: 16em; } }

.hero__text-wrap {
  width: 100%; }
  @media (min-width: 768px) {
    .hero__text-wrap {
      position: absolute;
      right: 0;
      bottom: 4em;
      left: 0; } }

.hero__text.owl-carousel.owl-loaded {
  position: relative; }

@media (min-width: 768px) {
  .hero__text .owl-item {
    min-height: 25em; } }

.hero__slide-text {
  background-color: rgba(255, 255, 255, 0.9);
  position: relative;
  padding: 1.5em 2.25em 0; }
  @media (min-width: 768px) {
    .hero__slide-text {
      padding: 1.5em 3em;
      margin-left: 6em;
      width: 48em;
      position: absolute;
      bottom: 2em; } }

.hero__paragraph {
  padding-bottom: 2em; }

.owl-prev {
  display: none; }
  @media (min-width: 768px) {
    .owl-prev {
      display: block;
      bottom: 1.5em;
      cursor: pointer;
      right: 7em;
      padding: 0.8em;
      position: absolute;
      width: 3em;
      z-index: 9999; } }

.owl-next {
  display: none; }
  @media (min-width: 768px) {
    .owl-next {
      display: block;
      bottom: 1.5em;
      cursor: pointer;
      right: 1em;
      padding: 0.8em;
      position: absolute;
      width: 3em;
      z-index: 9999; } }

.hero .owl-dots {
  margin: 0 auto;
  padding: 0.75em 0;
  text-align: center; }
  @media (min-width: 768px) {
    .hero .owl-dots {
      display: none; } }
  .hero .owl-dots .owl-dot {
    display: inline-block;
    zoom: 1;
    *display: inline; }
  .hero .owl-dots .owl-dot span {
    height: 0.6em;
    width: 0.6em;
    margin: 0.25em 0.5em;
    background: #808080;
    display: block;
    border-radius: 50%; }
  .hero .owl-dots .owl-dot.active span, .hero .owl-dots .owl-dot:hover span {
    background: #EDA01D; }

.hero__background .owl-dots {
  display: none; }

/* Optimist Hero
----------------*/
.hero__holder {
  display: inline-block;
  width: 100%; }
  @media (min-width: 768px) {
    .hero__holder {
      padding-bottom: 3em; } }

.hero__holder .hero__edition {
  display: inline-block;
  color: #FCB71F;
  border-top: solid 2px #FCB71F;
  text-align: right;
  font-weight: 700;
  letter-spacing: 1px;
  padding-top: 0.3rem;
  padding-left: 2.5em;
  margin-top: 1.5em; }
  @media (min-width: 768px) {
    .hero__holder .hero__edition {
      display: block;
      float: left;
      width: 22%;
      font-size: 1.5em;
      margin-top: 1.3rem;
      padding-left: 0; } }

.hero__holder .hero__title {
  padding: 1.5em 2.5em 1em; }
  @media (min-width: 768px) {
    .hero__holder .hero__title {
      float: right;
      width: 78%;
      padding: 0 2em 0 7em; } }

.hero__title .hero__headline {
  font-size: 2.5em; }
  @media (min-width: 768px) {
    .hero__title .hero__headline {
      font-size: 3.5em; } }

.hero__label {
  font-size: 1.5em;
  font-weight: 700;
  letter-spacing: 1px;
  text-align: center;
  padding: 0.5rem 0;
  display: inline-block;
  min-width: 100%; }
  @media (min-width: 480px) and (max-width: 768px) {
    .hero__label {
      padding: 0.75rem 4rem 0.75rem 2.75rem;
      min-width: 13em;
      text-align: left; } }
  @media (min-width: 768px) {
    .hero__label {
      font-size: 1.75em;
      padding: 0.75rem 4rem 0.75rem 2.75rem;
      min-width: 13em;
      text-align: left; } }

.hero__content {
  padding: 1.5em 2.5em 1em; }
  @media (min-width: 768px) {
    .hero__content {
      position: relative;
      background-color: #fff;
      margin: -10em 12% 2.5em;
      padding: 2.25em 3.5em 0.5em; } }
  @media (min-width: 1440px) {
    .hero__content {
      max-width: 60em;
      margin-right: auto;
      margin-left: auto; } }

.hero__content .hero__headline {
  margin-bottom: 0.5rem; }
  @media (min-width: 768px) {
    .hero__content .hero__headline {
      margin-bottom: 1.25rem; } }

/* In The Loop Hero
----------------*/
.hero__blurb {
  max-width: 56.25rem; }
  @media (min-width: 768px) {
    .hero__blurb p {
      font-size: 1.1em; } }

/* Home Page Events Slider */
.slider {
  position: relative; }

.slider__slide {
  display: none; }
  @media (min-width: 768px) {
    .slider__slide {
      display: block;
      height: 34em;
      background-size: cover;
      background-repeat: no-repeat;
      background-position: center center; } }

@media (max-width: 768px) {
  .slider__text {
    background-color: #E3E5EA; } }

@media (min-width: 768px) {
  .slider__text--wrap {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    text-align: right; } }

.slider__slide--text {
  padding: 1em; }
  @media (min-width: 768px) {
    .slider__slide--text {
      background-color: rgba(255, 255, 255, 0.85);
      display: inline-block;
      height: 34em;
      padding: 2.5em 3em 3em 3em;
      position: relative;
      right: 8em;
      text-align: left;
      width: 32em; } }

.slider__slide-title {
  line-height: 1;
  margin-bottom: 0.1em; }

.slider__paragraph {
  padding-bottom: 2em; }

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

@media (max-width: 768px) {
  .slider__button {
    width: 100%;
    max-width: 16em; } }

.slider .owl-dots {
  margin: 0 auto;
  padding: 0.75em 0;
  text-align: center; }
  @media (min-width: 768px) {
    .slider .owl-dots {
      position: absolute;
      right: 23em;
      top: 0.5em; } }
  .slider .owl-dots .owl-dot {
    display: inline-block;
    zoom: 1;
    *display: inline; }
  .slider .owl-dots .owl-dot span {
    height: 0.6em;
    width: 0.6em;
    margin: 0.25em 0.5em;
    background: #808080;
    display: block;
    border-radius: 50%; }
  .slider .owl-dots .owl-dot.active span, .slider .owl-dots .owl-dot:hover span {
    background: #EDA01D; }

.slider__background .owl-dots {
  display: none; }

/* Event Page Slider */
.event-slider {
  padding: 2.5em 0 2em; }
  @media (min-width: 768px) {
    .event-slider {
      padding: 3em 0 3em; } }

.event-slider .owl-carousel:before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  border-left: 3px solid #FFF;
  z-index: 500; }
.event-slider .owl-carousel:after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border-right: 3px solid #FFF;
  z-index: 500; }

.event-slider__slide {
  position: relative;
  padding: 0 2.5em;
  border-right: 1px solid #9DBF3B;
  border-left: 1px solid #9DBF3B; }
  @media (min-width: 768px) {
    .event-slider__slide {
      padding: 0 3.5vw; } }
  @media (min-width: 768px) and (max-width: 1000px) {
    .event-slider__slide {
      padding: 0 2.5em; } }

.event-slider__height-wrap {
  padding-bottom: 6.5em; }

.event-slider__img {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  height: 12em; }

.event-slider .event-slider__event-title {
  font-size: 2.25em;
  line-height: 1.25em;
  margin-bottom: 0.2em; }

.event-slider .event-slider__sub-header {
  margin-top: 0.25em;
  margin-bottom: 1.2em; }

.event-slider__button-wrap {
  position: absolute;
  bottom: 2em;
  left: 0;
  right: 0;
  padding: 0 2.5em; }
  @media (min-width: 768px) {
    .event-slider__button-wrap {
      padding: 0 3.5vw; } }
  @media (min-width: 768px) and (max-width: 1000px) {
    .event-slider__button-wrap {
      padding: 0 2.5em; } }

.event-slider .event-slider__button {
  border: 1px solid rgba(252, 183, 31, 0); }
  @media (min-width: 768px) {
    .event-slider .event-slider__button:hover {
      border-color: #fcb71f; } }

.event-slider .event-slider__next, .event-slider .event-slider__prev {
  position: absolute;
  margin: 0 0.5em;
  cursor: pointer;
  z-index: 9999; }
  @media (min-width: 768px) {
    .event-slider .event-slider__next, .event-slider .event-slider__prev {
      margin: 0 0.5vw; } }
  @media (min-width: 768px) and (max-width: 1000px) {
    .event-slider .event-slider__next, .event-slider .event-slider__prev {
      margin: 0 0.5em; } }
  .event-slider .event-slider__next img, .event-slider .event-slider__prev img {
    height: 3em; }

.event-slider__prev, sponsor-slider__prev {
  left: 0; }

.event-slider__next, .sponsor-slider__next {
  right: 0; }

.sponsor-slider .sponsor-slider__owl {
  padding: 1.5em 2.5em; }
  @media (min-width: 768px) {
    .sponsor-slider .sponsor-slider__owl {
      padding: 2em 4em; } }

.sponsor-slider .owl-carousel .owl-item {
  height: 162px;
  -webkit-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  transform-style: preserve-3d; }

.sponsor-slider .sponsor-slider__link {
  display: inline-block;
  width: 100%;
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%); }

.sponsor-slider .sponsor-slider__img {
  width: auto !important;
  margin: 0 auto;
  max-width: 100%;
  position: relative; }

.sponsor-slider .sponsor-slider__prev, .sponsor-slider .sponsor-slider__next {
  position: absolute;
  margin: 0 0.5em;
  cursor: pointer;
  z-index: 9999; }
  @media (min-width: 768px) {
    .sponsor-slider .sponsor-slider__prev, .sponsor-slider .sponsor-slider__next {
      margin: 0 1.5vw; } }
  .sponsor-slider .sponsor-slider__prev img, .sponsor-slider .sponsor-slider__next img {
    height: 3em; }

.block {
  display: inline-block;
  width: 100%;
  padding: 0 8vw 1.6em; }
  @media (min-width: 768px) {
    .block {
      max-width: 1440px;
      margin-left: auto;
      margin-right: auto;
      padding: 0 4em 3em; }
      .block:after {
        content: " ";
        display: block;
        clear: both; } }

.block__image {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center; }
  @media (max-width: 480px) {
    .block__image {
      height: 12.5em !important; } }
  @media (min-width: 480px) and (max-width: 768px) {
    .block__image {
      height: 25em !important; } }

.block__label {
  font-size: 1.5em;
  font-weight: 700;
  letter-spacing: 1px;
  text-align: center;
  padding: 0.5rem 0;
  display: inline-block;
  min-width: 100%; }
  @media (min-width: 480px) and (max-width: 768px) {
    .block__label {
      padding: 0.75rem 4rem 0.75rem 2.75rem;
      min-width: 13em;
      text-align: left; } }
  @media (min-width: 768px) {
    .block__label {
      font-size: 1.75em;
      padding: 0.75rem 4rem 0.75rem 2.75rem;
      min-width: 13em;
      text-align: left; } }

.block--leading-text .block__headline {
  font-weight: 600;
  margin-bottom: 0.2em; }

@media (min-width: 768px) {
  .block--leading-text .block__paragraph {
    font-size: 1.750em;
    font-weight: 300;
    max-width: 40em; } }

.block--icon-left {
  padding-bottom: 3em; }
  @media (min-width: 768px) {
    .block--icon-left {
      -webkit-transform-style: preserve-3d;
      -moz-transform-style: preserve-3d;
      transform-style: preserve-3d;
      height: 16em;
      padding-bottom: 3em; } }

.block__icon-wrapper {
  padding-top: 2em;
  padding-bottom: 2em;
  text-align: center; }
  @media (min-width: 768px) {
    .block__icon-wrapper {
      position: relative;
      top: 50%;
      -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
      transform: translateY(-50%);
      width: 40.67797%;
      float: left;
      margin-right: 1.69492%; } }

.block__icon {
  display: block;
  margin: 0 auto;
  max-width: 3em; }

.block__icon-text {
  line-height: 1;
  text-align: center; }

@media (min-width: 768px) {
  .block__text-wrapper--right {
    position: relative;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 57.62712%;
    float: left;
    margin-right: 1.69492%;
    float: right;
    margin-right: 0; } }

@media (max-width: 480px) {
  .block--icon-left .block__text-wrapper--right h4 {
    font-size: 1.2em; } }

.block--embed {
  padding: 3em 7vw;
  margin-bottom: 1.5em; }
  @media (min-width: 768px) {
    .block--embed {
      margin-bottom: 3em; } }

.embed__headline {
  padding-bottom: 0.25em; }

.block--embed iframe {
  background-color: #fff; }

.block--image-headlines-split {
  padding-right: 0;
  padding-left: 0; }

.block--image-headlines-split .block__text {
  padding: 1.4em 8vw; }
  @media (min-width: 768px) {
    .block--image-headlines-split .block__text {
      width: 45%;
      float: left;
      padding: 4em 4em;
      min-height: 24em; }
      .block--image-headlines-split .block__text.right {
        float: right;
        margin-right: 0; } }

@media (min-width: 768px) {
  .block--image-headlines-split .block__text--portrait {
    width: 65%;
    float: left; } }
@media (min-width: 768px) and (max-width: 1440px) {
  .block--image-headlines-split .block__text--portrait {
    min-height: 30vw; } }
@media (min-width: 1440px) {
  .block--image-headlines-split .block__text--portrait {
    min-height: 27em; } }

.block--image-headlines-split .block__headline {
  font-weight: 600;
  margin-bottom: 0.4em;
  line-height: 1em; }

.block--image-headlines-split .block__sub-headline {
  font-weight: 700;
  margin: 0; }

@media (min-width: 768px) {
  .block--image-headlines-split .block__image {
    width: 55%;
    float: left; }
    .block--image-headlines-split .block__image.right {
      float: right;
      margin-right: 0; } }

@media (max-width: 768px) {
  .block--image-headlines-split .block__image--portrait {
    height: 100vw !important; } }
@media (min-width: 768px) {
  .block--image-headlines-split .block__image--portrait {
    background-position: top center;
    width: 35%;
    float: left; } }

.block--image-headlines-split .block__headline--micro-site {
  margin-bottom: 0.1em; }

.block--image-headlines-split .block__sub-headline--micro-site {
  margin-bottom: 1em; }

.block--image-headlines-split .block__large-text {
  margin-top: 1em; }
  @media (min-width: 768px) {
    .block--image-headlines-split .block__large-text {
      margin-top: 1.25em; }
      .block--image-headlines-split .block__large-text p {
        font-size: 1.75em;
        font-weight: 300; } }

.block--single-column-text .block__paragraph {
  font-weight: 400; }
  @media (min-width: 768px) {
    .block--single-column-text .block__paragraph {
      max-width: 50em; } }

.block--two-column-text .block__paragraph--two-column {
  font-weight: 400; }
  @media (min-width: 768px) {
    .block--two-column-text .block__paragraph--two-column {
      display: inline-block;
      -webkit-column-count: 2;
      /* Chrome, Safari, Opera */
      -moz-column-count: 2;
      /* Firefox */
      column-count: 2;
      overflow: hidden;
      -webkit-column-gap: 4em;
      -moz-column-gap: 4em;
      column-gap: 4em;
      -webkit-column-width: 20em;
      column-width: 20em; } }

.block--download-block {
  text-align: center;
  padding-top: 0.75em;
  padding-bottom: 0em;
  margin-bottom: 1.4em; }
  @media (min-width: 768px) {
    .block--download-block {
      padding: 2em 4em 1.5em;
      margin-bottom: 3em;
      height: 20.5em; } }

@media (min-width: 768px) {
  .block--download-block .block__text {
    width: 50%;
    float: left;
    height: 17em; } }

@media (min-width: 768px) {
  .block--download-block .block__text-wrap {
    position: relative;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%); } }

.block--download-block .block__headline {
  font-size: 1.5em;
  font-weight: 700; }
  @media (min-width: 768px) {
    .block--download-block .block__headline {
      font-size: 1.8em; } }

@media (min-width: 768px) {
  .block--download-block .block__wrapper {
    width: 50%;
    float: left;
    float: right;
    margin-right: 0;
    position: relative;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%); } }

.block--download-block .block__a-box {
  display: inline-block;
  font-size: 0.9em;
  margin-bottom: 1.5em; }
  @media (min-width: 768px) {
    .block--download-block .block__a-box {
      font-size: 1em;
      width: 50%;
      float: left; }
      .block--download-block .block__a-box:last-child {
        float: right;
        margin-right: 0; } }

.block--download-block .block__img {
  display: none; }
  @media (min-width: 768px) {
    .block--download-block .block__img {
      display: inline-block;
      max-height: 12em;
      width: auto; } }

.block--download-block .button--download {
  display: block;
  font-size: 1em;
  font-weight: 700;
  letter-spacing: 1px;
  color: #FFFFFF;
  border: 1px solid #FFFFFF;
  border-radius: 25px;
  margin: 0 2.2em 0;
  padding: 0.75em 2.7em; }
  @media (min-width: 768px) {
    .block--download-block .button--download {
      margin: 1.1em auto 0;
      width: 10em;
      max-width: 80%;
      padding: 0.75em 0; } }

.block--bordered-content {
  margin-top: 0.5em; }
  @media (min-width: 768px) {
    .block--bordered-content {
      padding: 0 6em 4em;
      margin-top: 1em; } }

.block--bordered-content .block__wrapper {
  position: relative; }
  @media (min-width: 768px) {
    .block--bordered-content .block__wrapper {
      display: inline-block;
      width: 100%;
      border: 2px solid #FCB71F;
      border-radius: 31px;
      padding: 2em 0.5em; } }

.block--bordered-content .block__headline {
  font-size: 1.5em;
  font-weight: 700;
  margin-bottom: 0.2em; }
  @media (min-width: 768px) {
    .block--bordered-content .block__headline {
      position: absolute;
      top: -0.8em;
      padding: 0 0.5em;
      margin-left: 1.5em; } }

.block--bordered-content .block__paragraph--wysiwyg {
  margin-bottom: 1em; }
  .block--bordered-content .block__paragraph--wysiwyg:last-child {
    margin-bottom: 0; }
  @media (min-width: 768px) {
    .block--bordered-content .block__paragraph--wysiwyg {
      width: 50%;
      float: left;
      padding: 0 1.4em;
      margin-bottom: 0; }
      .block--bordered-content .block__paragraph--wysiwyg:nth-of-type(2) {
        float: right;
        margin-right: 0; } }

.block--bordered-content-single {
  margin-top: 0.5em; }
  @media (min-width: 768px) {
    .block--bordered-content-single {
      padding: 0 6em 4em;
      margin-top: 1em; } }

.block--bordered-content-single .block__wrapper {
  position: relative; }
  @media (min-width: 768px) {
    .block--bordered-content-single .block__wrapper {
      display: inline-block;
      width: 100%;
      border: 2px solid #FCB71F;
      border-radius: 31px;
      padding: 2em 0.5em; } }

.block--bordered-content-single .block__headline {
  font-size: 1.5em;
  font-weight: 700;
  margin-bottom: 0.2em; }
  @media (min-width: 768px) {
    .block--bordered-content-single .block__headline {
      position: absolute;
      top: -0.8em;
      padding: 0 0.5em;
      margin-left: 1.5em; } }

@media (min-width: 768px) {
  .block--bordered-content-single .block__paragraph--wysiwyg {
    text-align: center;
    max-width: 40.5em;
    padding: 0 1.4em;
    margin: 0 auto; } }

.block--split-paragraphs .block__paragraph--wysiwyg {
  margin-bottom: 1em; }
  .block--split-paragraphs .block__paragraph--wysiwyg:last-child {
    margin-bottom: 0; }
  @media (min-width: 768px) {
    .block--split-paragraphs .block__paragraph--wysiwyg {
      width: 50%;
      float: left;
      padding: 0 2.8em 0 0;
      margin-bottom: 0; }
      .block--split-paragraphs .block__paragraph--wysiwyg:last-child {
        float: right;
        margin-right: 0;
        padding-right: 0; } }

.block--silver-block {
  padding-top: 1.4em;
  padding-bottom: 1.4em;
  margin-bottom: 1.4em; }
  @media (min-width: 768px) {
    .block--silver-block {
      padding-top: 2.5em;
      padding-bottom: 2.5em;
      margin-bottom: 3em; } }

.block--silver-block .block__paragraph--wysiwyg h3 {
  font-size: 1.4em;
  font-weight: 600;
  margin-top: 1em;
  margin-bottom: 0.5em; }
  @media (min-width: 768px) {
    .block--silver-block .block__paragraph--wysiwyg h3 {
      font-size: 1.8em;
      max-width: 21em; } }
  .block--silver-block .block__paragraph--wysiwyg h3:first-child {
    margin-top: 0; }
.block--silver-block .block__paragraph--wysiwyg p {
  max-width: 50em; }

.block--donation iframe {
  width: 100%;
  height: 100%;
  min-height: 68em; }

.block--signup {
  padding-top: 2em; }
  .block--signup iframe {
    width: 100%;
    height: 100%;
    min-height: 113em; }
  @media (max-width: 480px) {
    .block--signup {
      padding-left: 4vw;
      padding-right: 4vw; }
      .block--signup iframe {
        min-height: 115em; } }

.block__micro-site-press {
  padding: 0 0 1em; }
  @media (min-width: 768px) {
    .block__micro-site-press {
      padding: 0 0 2em; } }

.block__micro-site-press .micro-site-press__date {
  display: inline-block;
  border-bottom: 2px solid #FCB71F;
  padding-left: 5%;
  padding-bottom: 0.5em;
  margin-bottom: 1.25em; }
  @media (min-width: 768px) {
    .block__micro-site-press .micro-site-press__date {
      font-size: 1.15em;
      padding-left: 7%;
      margin-bottom: 2.25em; } }

.block__micro-site-press .micro-site-press__content {
  padding: 0 5% 1.5em; }
  @media (min-width: 768px) {
    .block__micro-site-press .micro-site-press__content {
      padding: 0 11% 3em; } }

.block--item-blocks {
  padding: 0; }
  @media (min-width: 768px) {
    .block--item-blocks {
      padding-bottom: 3em; } }

.block--item-blocks .block__wrapper {
  display: inline-block;
  width: 100%;
  padding-right: 0;
  padding-left: 0; }
  @media (min-width: 768px) {
    .block--item-blocks .block__wrapper {
      padding: 3.5em 4em 4em; } }

.block--item-blocks .block__headline {
  padding: 1.4em 8vw 0.3em; }
  @media (min-width: 768px) {
    .block--item-blocks .block__headline {
      padding: 0; } }

@media (min-width: 768px) {
  .block--item-blocks .block__item {
    width: 50%;
    float: left;
    padding: 2.5em 1.5em 0; }
    .block--item-blocks .block__item:nth-of-type(2) {
      float: right; }
    .block--item-blocks .block__item:nth-of-type(-n+2) {
      padding-top: 0; } }

@media (min-width: 768px) {
  .block--item-blocks .block__image {
    height: 20em; } }

.block--item-blocks .block__text-box {
  padding: 1.4em 6vw; }
  @media (min-width: 768px) {
    .block--item-blocks .block__text-box {
      position: relative;
      padding: 1.5em 2.5em 2em; } }

.block--item-blocks .block__sub-headline {
  font-size: 1.6em;
  font-weight: 600;
  margin-bottom: 0.7rem; }
  @media (min-width: 768px) {
    .block--item-blocks .block__sub-headline {
      font-size: 1.8em; } }

.block--item-blocks .block__paragraph {
  margin-bottom: 1.4em; }
  @media (min-width: 768px) {
    .block--item-blocks .block__paragraph {
      margin-bottom: 1.8em; } }

.block--item-blocks .block__link {
  font-weight: 600;
  color: #282828; }
  .block--item-blocks .block__link:hover {
    color: #486DB2; }
  @media (min-width: 768px) {
    .block--item-blocks .block__link {
      position: absolute;
      bottom: 2em; } }

.block--item-blocks .block__date {
  margin: 0em 0 0.3em; }

.section {
  display: inline-block;
  width: 100%;
  padding: 0 8vw 1.4em; }
  @media (min-width: 768px) {
    .section {
      padding: 3em 4em;
      margin-top: -3em; } }
  .section:focus {
    outline: none; }

.section p img.alignleft {
  float: left; }
.section p img.alignright {
  float: right; }

.section__image {
  display: none; }
  @media (min-width: 768px) {
    .section__image {
      display: block;
      height: 17.8em;
      background-size: cover;
      background-repeat: no-repeat;
      background-position: center center; } }

.section .section__headline {
  font-size: 1.4em;
  font-weight: 700;
  margin-bottom: 0.6em;
  letter-spacing: 2px; }
  @media (min-width: 768px) {
    .section .section__headline {
      font-size: 1.5em; } }

@media (min-width: 768px) {
  .section .section__paragraph--two-column {
    display: inline-block;
    -webkit-column-count: 2;
    /* Chrome, Safari, Opera */
    -moz-column-count: 2;
    /* Firefox */
    column-count: 2;
    overflow: hidden;
    -webkit-column-gap: 4em;
    -moz-column-gap: 4em;
    column-gap: 4em;
    -webkit-column-width: 20em;
    column-width: 20em; } }

@media (min-width: 768px) {
  .section--full-width {
    max-width: 58em; } }

.section--separator {
  padding: 0 0 1.4em; }
  @media (min-width: 768px) {
    .section--separator {
      max-width: 1440px;
      margin-left: auto;
      margin-right: auto;
      padding: 3em 0; }
      .section--separator:after {
        content: " ";
        display: block;
        clear: both; } }

.section--separator .section__text {
  text-align: center;
  padding: 1.4em 0; }
  @media (min-width: 768px) {
    .section--separator .section__text {
      width: 50%;
      float: left;
      height: 17.8em;
      padding: 0; }
      .section--separator .section__text.right {
        float: right;
        margin-right: 0; } }

.section--separator .section__headline {
  color: #FFFFFF; }
  @media (min-width: 768px) {
    .section--separator .section__headline {
      position: relative;
      top: 50%;
      -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
      transform: translateY(-50%);
      font-size: 3.2em;
      font-weight: 600; } }

@media (min-width: 768px) {
  .section--separator .section__image {
    width: 50%;
    float: left; }
    .section--separator .section__image.right {
      float: right;
      margin-right: 0; } }

.hr--section {
  display: none; }
  @media (min-width: 768px) {
    .hr--section {
      display: block;
      border-color: #9DBF3B;
      width: 17em;
      margin: 0em 4em; }
      .hr--section:last-of-type {
        display: none; } }

.section--split .section__paragraph {
  margin-bottom: 1em; }
  .section--split .section__paragraph:last-child {
    margin-bottom: 0; }
  @media (min-width: 768px) {
    .section--split .section__paragraph {
      width: 50%;
      float: left;
      padding: 0 2.8em 0 0;
      margin-bottom: 0; }
      .section--split .section__paragraph:nth-of-type(2) {
        float: right;
        margin-right: 0;
        padding-right: 0; } }

.sitemap {
  background-color: #4D4D4D;
  padding: 4em 6em;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto; }
  .sitemap:after {
    content: " ";
    display: block;
    clear: both; }

.sitemap--micro-site {
  padding: 3em;
  margin-top: 0; }

.sitemap__column {
  width: 100%; }

.sitemap__menu {
  list-style: none;
  margin: 0;
  padding: 0; }
  .sitemap__menu a {
    color: #FFFFFF;
    font-size: 1.1em;
    letter-spacing: 0.01em;
    line-height: 2;
    text-decoration: none;
    text-transform: none; }
    .sitemap__menu a:visited {
      color: #FFFFFF; }

.sitemap__logo {
  margin-bottom: 0.5em; }

.sitemap__logo--micro-site {
  max-width: 100%;
  width: 16em; }

.sitemap__title {
  color: #FFFFFF;
  font-size: 1.4em;
  font-weight: 700;
  margin: 0.3em 0 0.2em; }

.sitemap--micro-site .sitemap__title {
  margin: 0; }

.sitemap__link--contact {
  color: #FCB71F;
  display: inline-block;
  font-size: 1.1em;
  line-height: 1.1;
  margin-bottom: 0.2em; }
  .sitemap__link--contact:visited {
    color: #FCB71F; }

.sitemap__social {
  margin-top: 2em; }

.sitemap--micro-site .sitemap__social {
  margin-top: 0.8em; }
  @media (min-width: 768px) {
    .sitemap--micro-site .sitemap__social {
      margin-top: 0.25em; } }

.sitemap__social--icon {
  display: inline-block;
  margin-right: 1em; }
  .sitemap__social--icon:last-child {
    margin-right: 0; }

@media (min-width: 768px) {
  .sitemap--micro-site .sitemap__social--icon {
    margin-right: 0.75em; } }
.sitemap--micro-site .sitemap__social--icon:last-child {
  margin-right: 0; }
.sitemap--micro-site .sitemap__social--icon img {
  width: 1.5em; }

.sitemap__home-link {
  font-size: 1.1em; }
  .sitemap__home-link img {
    margin-right: 1.25em; }

@media (min-width: 768px) {
  .sitemap__column {
    width: 25%;
    float: left; }
    .sitemap__column:last-child {
      float: right;
      margin-right: 0; }

  .sitemap__column--double {
    width: 50%;
    float: left;
    float: right;
    margin-right: 0;
    padding-left: 10vw; }

  .sitemap--micro-site .sitemap__column--double {
    padding-left: 0; }

  .sitemap__sub-column {
    width: 50%;
    float: left;
    padding-right: 5%; }
    .sitemap__sub-column:last-child {
      float: right;
      margin-right: 0;
      padding-right: 0; } }
@media (max-width: 768px) {
  .sitemap {
    margin-top: 1em;
    padding: 3em 2em; }

  .sitemap--micro-site {
    margin-top: 0; }

  .sitemap br {
    display: none; }

  .sitemap__column--double {
    text-align: center;
    margin-bottom: 2em; }

  .sitemap--micro-site .sitemap__column--double {
    margin-bottom: 1em; }

  .sitemap__link--contact {
    display: block; }

  .sitemap__social {
    display: inline-block;
    width: 100%;
    padding: 0 2em;
    max-width: 20em; }

  .sitemap__social--icon {
    width: 16.12903%;
    float: left;
    margin-right: 4.83871%; }
    .sitemap__social--icon:last-child {
      float: right;
      margin-right: 0; }

  .sitemap__social--icon img {
    width: 100%; } }
.footer {
  position: relative;
  display: inline-block;
  width: 100%;
  background-color: #FFFFFF;
  padding: 1em 2.5em; }
  @media (min-width: 768px) {
    .footer {
      padding: 1em 4em; } }

.footer__link-wrapper {
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0.5em; }
  .footer__link-wrapper:after {
    content: " ";
    display: block;
    clear: both; }
  @media (min-width: 768px) {
    .footer__link-wrapper {
      margin-bottom: 1em; } }

.footer__link {
  color: #4D4D4D;
  display: inline-block;
  float: left;
  font-style: italic;
  font-weight: 600;
  padding: 0 0 0.75em; }
  @media (min-width: 768px) {
    .footer__link {
      padding: 0.5em 0;
      margin-right: 1em; } }
  .footer__link:visited {
    color: #4D4D4D; }

.footer__link--show-mobile {
  display: none; }

.footer__link--right {
  float: right;
  margin-right: 0; }

.footer__paragraph {
  float: left;
  font-style: italic;
  font-weight: 400;
  font-size: 0.8em;
  max-width: 40em; }
  .footer__paragraph p {
    margin-top: 0; }

.footer__paragraph--right {
  float: right; }
  @media (min-width: 768px) {
    .footer__paragraph--right {
      position: absolute;
      bottom: 1.6rem;
      right: 4rem; } }
  .footer__paragraph--right a {
    color: #4D4D4D; }

.micro-site__footer {
  display: none; }

@media (max-width: 768px) {
  .footer__link {
    width: 100%; }

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

  .footer__link--show-mobile {
    display: inline-block; }

  .footer__link--show-desktop {
    display: none; } }
html.popup-opened {
  overflow: hidden; }
  html.popup-opened body {
    overflow: hidden; }

.modal {
  background-color: rgba(0, 0, 0, 0.75);
  bottom: 0;
  left: 0;
  position: fixed;
  right: 0;
  opacity: 0;
  top: 0;
  z-index: -1000; }

/* Temporary Popup
--------------------------*/
.t-popup {
  position: fixed;
  z-index: -100;
  top: 6em;
  left: 0;
  right: 0;
  display: block;
  font-size: 15px;
  max-width: 800px;
  min-width: 100px;
  margin: 0 auto;
  padding: 5px;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 10px;
  box-shadow: 0 2px 40px rgba(0, 0, 0, 0.3);
  transform: scale(0);
  overflow: auto;
  box-sizing: border-box; }
  @media (max-width: 768px) {
    .t-popup {
      max-width: 90%;
      top: 0; } }

.t-popup__scrim {
  position: fixed;
  z-index: -100;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: auto;
  background: rgba(0, 0, 0, 0.5);
  padding: 0;
  opacity: 0;
  visibility: hidden;
  display: block; }

#fade-1, #fade-2, #fade-3, #fade-4 {
  opacity: 0;
  transform: matrix(1, 0, 0, 1, 0, 40);
  visibility: hidden; }

.t-popup__close {
  position: absolute;
  top: 0.5em;
  right: 0.5em;
  width: 30px;
  height: 30px;
  text-decoration: none;
  opacity: .9;
  z-index: 10;
  background: transparent url(img/closepop.png) no-repeat; }

.t-popup__inner {
  position: relative;
  z-index: 1;
  height: 100%;
  background: #F2F2F2;
  margin: 0px auto;
  max-height: 100vh;
  border-radius: 6px; }

.t-popup__wrapper {
  position: relative;
  z-index: 1;
  overflow: hidden;
  height: 100%; }

.t-popup__image {
  position: relative;
  width: 100%;
  z-index: -1;
  height: 15em;
  background: transparent url(img/holiday-news.jpg) no-repeat;
  background-position: center center;
  background-size: cover; }
  @media (min-width: 768px) {
    .t-popup__image {
      position: absolute;
      top: 0;
      bottom: 0;
      left: 0;
      right: auto;
      height: 100%;
      width: 40%;
      max-height: none; } }
  @media (max-width: 768px) {
    .t-popup__image {
      height: 13em; } }

.t-popup__text {
  display: inline-block;
  position: relative;
  z-index: 10;
  height: 100%;
  width: 100%;
  background-color: #e2ebf6;
  margin: 0;
  padding: 3em 3em 2em 3em;
  box-sizing: border-box; }
  @media (min-width: 768px) {
    .t-popup__text {
      width: 60%;
      margin: 0 0 0 40%; } }
  @media (max-width: 480px) {
    .t-popup__text {
      padding: 1em 2em 2em 2em; } }

.t-popup__content {
  overflow: auto;
  height: 100%; }
  .t-popup__content form {
    padding-left: 0.1em; }
  .t-popup__content label {
    display: inline-block;
    font-weight: 700;
    margin-right: 1em;
    padding-bottom: 0.3em; }
    @media (max-width: 768px) {
      .t-popup__content label {
        margin-right: 0.5em;
        padding-bottom: 0.6em; } }
  .t-popup__content input {
    margin-right: 0.2em; }
  .t-popup__content #btnSubmit {
    display: block;
    background-color: #d42426;
    border: none;
    border-radius: 1.5em;
    box-shadow: none;
    color: #fff;
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin: 1.5em auto 0 auto;
    padding: 0.6em 1em;
    text-transform: uppercase; }

/* temporary popup */
.wpmui-popup .wdpu-close {
  top: 0.5em !important;
  right: 0.5em !important; }

.wpmui-popup .wdpu-image {
  display: flex !important;
  justify-content: center;
  align-items: center; }
  @media (min-width: 768px) {
    .wpmui-popup .wdpu-image {
      flex-direction: column; } }
  .wpmui-popup .wdpu-image img {
    margin-left: 0 !important;
    margin-top: 0 !important; }

.wpmui-popup .wdpu-text {
  background-color: #e2ebf6 !important;
  padding: 3em 3em 2em 3em !important; }

.wdpu-content form {
  padding-left: 0.1em; }
.wdpu-content input {
  margin-right: 0.2em; }
.wdpu-content label {
  display: inline-block;
  font-weight: 700;
  margin-right: 1em;
  padding-bottom: 0.3em; }
.wdpu-content #btnSubmit {
  background-color: #d42426;
  border: none;
  border-radius: 1.5em;
  box-shadow: none;
  color: #fff;
  display: block;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 1px;
  margin: 1.5em auto 0 auto;
  padding: 0.6em 1em;
  text-transform: uppercase; }

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

.post .post__date {
  display: inline-block;
  border-bottom: 2px solid #FCB71F;
  padding-left: 5%;
  padding-bottom: 0.5em;
  margin-bottom: 1.25em; }
  @media (min-width: 768px) {
    .post .post__date {
      font-size: 1.15em;
      padding-left: 7%;
      margin-bottom: 2.25em; } }

.post .post__content {
  padding: 0 5% 1.5em; }
  @media (min-width: 768px) {
    .post .post__content {
      padding: 0 11% 5em; } }

.post .post__featured-image {
  height: 51vw;
  margin-bottom: 2em;
  max-width: 50em;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center; }
  @media (min-width: 768px) {
    .post .post__featured-image {
      height: 32.5em;
      margin: 0 auto 3em; } }

@media (min-width: 768px) {
  .post .post__text {
    padding: 0 2em; } }

@media (min-width: 768px) {
  .post .post__paragraph {
    max-width: 50em; } }

.post .post__name {
  margin-bottom: 1.2em; }

.post .post__title {
  font-size: 1.3em;
  line-height: 1.4em;
  font-weight: 700;
  text-align: center;
  margin: 0 auto; }
  @media (min-width: 768px) {
    .post .post__title {
      font-size: 1.4em;
      max-width: 40rem; } }

.post .post__subtitle {
  font-size: 1.2em;
  font-weight: 300;
  text-align: center;
  margin: 0 auto 1rem; }
  @media (min-width: 768px) {
    .post .post__subtitle {
      max-width: 40rem; } }

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

.post .post__small-text {
  font-size: 0.9em; }

.recent-news {
  display: inline-block;
  width: 100%;
  padding: 1.5em 10% 1.5em; }
  @media (min-width: 768px) {
    .recent-news {
      padding: 0;
      margin: 5em 0 -1px; } }

.recent-news .recent-news__headline {
  font-weight: 700;
  margin-bottom: 1em; }
  @media (min-width: 768px) {
    .recent-news .recent-news__headline {
      font-size: 1.2em;
      margin: 3em 5% 2em; } }

.recent-news .recent-news__post {
  margin-bottom: 2em; }
  .recent-news .recent-news__post:last-child {
    margin-bottom: 0; }
  @media (min-width: 768px) {
    .recent-news .recent-news__post {
      margin-bottom: 0;
      padding: 0 5% 0.5em;
      width: 33.33333%;
      float: left; }
      .recent-news .recent-news__post:nth-of-type(3) {
        float: right;
        margin-right: 0; } }

.recent-news .recent-news__featured-image {
  height: 11em;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center; }
  @media (min-width: 480px) and (max-width: 768px) {
    .recent-news .recent-news__featured-image {
      height: 13em; } }

.recent-news .recent-news__featured-image--default {
  background-position: right center; }

.recent-news .recent-news__title {
  font-size: 1.1em;
  font-weight: 700;
  margin: 0.75em 0 0.4em; }
  @media (min-width: 768px) {
    .recent-news .recent-news__title {
      font-size: 1.1em;
      margin: 1em 0 0.7em; } }

@media (min-width: 768px) {
  .recent-news .wrapper--m-center {
    text-align: right;
    clear: both; } }

.recent-news .recent-news__button {
  font-size: 0.9em;
  text-transform: none;
  letter-spacing: 0px;
  padding: 0.2em 2.25em;
  border: 1px solid #9DBF3B; }
  @media (min-width: 768px) {
    .recent-news .recent-news__button {
      margin: 3.5em 5%; } }

.news-leading-text {
  display: inline-block;
  width: 100%;
  padding: 1.4em 8vw; }
  @media (min-width: 768px) {
    .news-leading-text {
      padding: 3em 4em; } }

@media (min-width: 768px) {
  .news-leading-text .news-leading-text__paragraph {
    max-width: 50em; } }
.news-leading-text .news-leading-text__paragraph p {
  font-size: 1.1em; }
  @media (min-width: 768px) {
    .news-leading-text .news-leading-text__paragraph p {
      font-size: 1.2em; } }

.news-archive {
  display: inline-block;
  width: 100%;
  padding: 1.6em 8vw 0.4em;
  text-align: center; }
  @media (min-width: 768px) {
    .news-archive {
      padding: 3em 4em; } }

.news-archive .news-archive__archive {
  text-align: left;
  display: none;
  visibility: hidden;
  opacity: 0;
  transform: matrix(0, 0, 0, 0, 0, 0); }

.news-archive .news-archive__headline {
  margin-bottom: 0.6em;
  font-size: 1.2em;
  font-weight: 600; }
  @media (min-width: 768px) {
    .news-archive .news-archive__headline {
      font-size: 1.8em; } }

.news-archive .news-archive__posts {
  margin-bottom: 0.5em; }
  @media (min-width: 768px) {
    .news-archive .news-archive__posts {
      font-size: 1.1em; } }

.news-archive .news-archive__link:hover {
  color: #486DB2; }

.events-gallery {
  display: none;
  padding: 1.2em 8vw 2em; }
  @media (min-width: 768px) {
    .events-gallery {
      padding: 1.5em 4em 2.5em; } }

.events-gallery .events-gallery__headline {
  font-size: 1.8em;
  margin-bottom: 0.5em; }
  @media (min-width: 768px) {
    .events-gallery .events-gallery__headline {
      font-size: 2.9em; } }

.events-gallery .events-gallery__img {
  height: 15em;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  margin-bottom: 2em; }
  @media (min-width: 768px) {
    .events-gallery .events-gallery__img {
      height: 20em;
      margin-bottom: 2.5em; } }

@media (max-width: 480px) {
  .single-optimist_post .hero--image {
    height: 16em; } }

.optimist {
  padding: 1.25em 2.75em 1.5em;
  margin-bottom: 1.75em; }

.optimist .optimist__headline {
  font-weight: 600;
  margin-bottom: 0;
  font-size: 1.1em; }

.single-in_the_loop_post .wrapper--hero {
  margin-bottom: 0; }
.single-in_the_loop_post .hero__label {
  padding-bottom: 1rem; }

.in-the-loop {
  position: relative; }
  @media (min-width: 768px) {
    .in-the-loop {
      display: inline-block;
      width: 100%; } }
  .in-the-loop:nth-of-type(odd) {
    background-color: #E3E5EA; }
  .in-the-loop:first-of-type {
    color: #FFFFFF;
    background-color: #486DB2; }
  .in-the-loop:nth-of-type(n+2) .in-the-loop__headline {
    color: #486DB2; }

.in-the-loop .in-the-loop__number {
  position: absolute;
  top: 2.25rem;
  left: 0;
  height: 2.5rem;
  width: 2.5rem;
  font-size: 1.5em;
  font-weight: 600;
  padding: 0.05rem 0 0 0.8rem; }
  @media (min-width: 768px) {
    .in-the-loop .in-the-loop__number {
      top: 3.5rem;
      height: 3.5rem;
      width: 3.5rem;
      font-size: 1.9em;
      padding: 0.3rem 0 0 1.1rem; } }

.in-the-loop .in-the-loop__headline {
  font-weight: 600; }

@media (min-width: 768px) {
  .in-the-loop .in-the-loop__text p {
    font-size: 1.1em; } }

.in-the-loop--image .in-the-loop__image {
  height: 65vw;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat; }
  @media (min-width: 480px) and (max-width: 768px) {
    .in-the-loop--image .in-the-loop__image {
      height: 50vw; } }
  @media (min-width: 768px) {
    .in-the-loop--image .in-the-loop__image {
      width: 45%;
      float: left;
      float: right;
      margin-right: 0;
      height: 34.1vw; } }
  @media (min-width: 1440px) {
    .in-the-loop--image .in-the-loop__image {
      height: 30.2em; } }

.in-the-loop--image .in-the-loop__text {
  position: relative;
  padding: 2em 7% 2em 4em; }
  @media (min-width: 768px) {
    .in-the-loop--image .in-the-loop__text {
      width: 55%;
      float: left;
      padding: 2.5em 3.5% 3em 6.5em; } }

.in-the-loop--text {
  padding: 2em 7% 2em 4em; }
  @media (min-width: 768px) {
    .in-the-loop--text {
      padding: 0; } }

@media (min-width: 768px) {
  .in-the-loop--text .in-the-loop__headline-wrapper {
    width: 45%;
    float: left;
    padding: 3em 3.5% 3em 6.5em; } }

@media (min-width: 768px) {
  .in-the-loop--text .in-the-loop__text {
    width: 55%;
    float: left;
    float: right;
    margin-right: 0;
    padding: 3em 3.5% 3em; } }

section {
  margin-top: -6px;
  position: relative; }

.site__content {
  padding-top: 5em;
  background-color: #FFFFFF; }
  @media (min-width: 1080px) {
    .site__content {
      padding-top: 9.5em; } }

.site__content--unpad {
  padding-top: 0; }

@media (min-width: 1080px) {
  .site__content--micro-site {
    padding-top: 6.6em; } }

@media (max-width: 768px) {
  .wrapper--m-center {
    text-align: center; } }

.cta {
  display: inline-block;
  width: 100%;
  padding: 1.5em 2em 2em;
  background-color: #9DBF3B; }
  @media (min-width: 768px) {
    .cta {
      padding: 2em 10%;
      background-color: #E3E5EA; } }

@media (min-width: 768px) {
  .cta .cta__text {
    width: 60%;
    float: left; } }

.cta .cta__headline {
  font-weight: 700;
  line-height: 1;
  color: #FFFFFF;
  margin: 0.5em 0; }
  @media (min-width: 768px) {
    .cta .cta__headline {
      color: #282828; } }

.cta .cta__paragraph {
  font-size: 1.125em;
  line-height: 1.7;
  color: #FFFFFF;
  margin: 0.5em 0; }
  @media (min-width: 768px) {
    .cta .cta__paragraph {
      max-width: 26em;
      color: #4D4D4D; } }

.cta .cta__button-wrapper {
  margin-top: 1em;
  text-align: center; }
  @media (min-width: 768px) {
    .cta .cta__button-wrapper {
      width: 40%;
      float: left;
      float: right;
      margin-right: 0;
      margin-top: 2em; } }

.cta .cta__button {
  padding: 0.75em 2.75em;
  border: 1px solid #FFFFFF; }
  @media (max-width: 768px) {
    .cta .cta__button {
      width: 100%;
      max-width: 16em; } }
  @media (min-width: 768px) {
    .cta .cta__button {
      background-color: #FCB71F;
      border: none; }
      .cta .cta__button:hover {
        color: #FCB71F;
        background-color: #FFFFFF; } }

.services {
  padding: 1em 2em 1.5em; }
  @media (min-width: 768px) {
    .services {
      display: inline-block;
      width: 100%;
      text-align: center;
      padding: 4em 0; } }

.services .services__cta {
  margin-bottom: 1.5em;
  position: relative; }
  .services .services__cta:last-child {
    margin-bottom: 0; }
  @media (min-width: 768px) {
    .services .services__cta {
      width: 33.33333%;
      float: left;
      padding: 0 2em 5em;
      margin-bottom: 0; }
      .services .services__cta:nth-of-type(2) {
        border-left: 1px solid #FCB71F; }
      .services .services__cta:nth-of-type(3) {
        border-left: 1px solid #FCB71F;
        float: right;
        margin-right: 0; } }

.services .services__icon {
  display: none; }
  @media (min-width: 768px) {
    .services .services__icon {
      display: inline-block; } }

.services .services__headline {
  line-height: 1;
  font-weight: 700;
  margin-bottom: 0.2em;
  margin-top: 0.5em; }
  @media (min-width: 768px) {
    .services .services__headline {
      font-size: 1.8em; } }

.services .services__paragraph {
  font-size: 1.125em;
  margin-bottom: 1em;
  margin-top: 0; }
  @media (min-width: 768px) {
    .services .services__paragraph {
      margin-bottom: 2.5em; } }

@media (min-width: 768px) {
  .services__button-wrapper {
    bottom: 1em;
    left: 0;
    position: absolute;
    right: 0; } }

.services .services__button {
  border: 1px solid rgba(157, 191, 59, 0); }
  @media (max-width: 768px) {
    .services .services__button {
      padding: 0.75em 2.5em;
      width: 100%;
      max-width: 16em; } }
  @media (min-width: 768px) {
    .services .services__button:hover {
      border-color: #9dbf3b; } }

.subscribe {
  display: inline-block;
  width: 100%;
  padding: 1em 2em; }
  @media (min-width: 768px) {			/* Added this to style subscribe block -- RM */
    .subscribe {
      margin-top: -6px;
      padding: 1.75em 4em 1.75em 4em; } }

/* Commented out original .subscribe media queries -- RM */

/*
@media (min-width: 768px) {
    .subscribe {
      padding: 0; } }

@media (min-width: 768px) {
  .subscribe .subscribe__text {
    width: 55%;
    float: left;
    height: 14em;
    padding: 0 6%; } }

@media (min-width: 768px) {
  .subscribe .subscribe__text-wrap {
    position: relative;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%); } }
*/

.subscribe .subscribe__headline {
  font-size: 1.8em;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 0.2em; }

.subscribe .subscribe__paragraph p {
  font-size: 1.2em; }

/*
@media (min-width: 768px) {
  .subscribe .subscribe__content {
    width: 45%;
    float: left;
    float: right;
    margin-right: 0;
    padding: 3.5em 6% 0em; } }
*/
.subscribe .subscribe__content iframe {
  height: inherit;
  max-width: 100%; }

.news {
  display: inline-block;
  width: 100%;
  padding: 1.25em 0 2.5em; }
  @media (min-width: 768px) {
    .news {
      margin-top: -6px;
      padding: 1.75em 0 2.5em 4em; } }

@media (min-width: 768px) {
  .news .news__primary {
    width: 50%;
    float: left;
    max-width: 60em;
    padding-right: 5%; } }

.news .news__headline {
  letter-spacing: 1px;
  margin-bottom: 0.75em;
  padding-left: 2em; }
  @media (min-width: 768px) {
    .news .news__headline {
      padding-left: 0;
      margin-bottom: 0.5em; } }

.news .news__image {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  height: 11em;
  width: 85%;
  margin: 0 auto; }
  @media (min-width: 480px) and (max-width: 768px) {
    .news .news__image {
      height: 13em; } }
  @media (min-width: 768px) {
    .news .news__image {
      height: 15em;
      min-width: 20em;
      width: 75%;
      margin: 0; } }

.news .news__post {
  padding: 1.25em 2.5em 0; }
  @media (min-width: 768px) {
    .news .news__post {
      padding: 0; } }

.news .news__date-primary {
  border-bottom: 1px solid #FCB71F;
  margin-bottom: 0.5em;
  padding-bottom: 0.4em; }
  @media (min-width: 768px) {
    .news .news__date-primary {
      font-size: 1.1em;
      padding: 0.8em 0 0.4em;
      margin-bottom: 0.2em; } }

.news .news__date-secondary {
  margin-bottom: 0.8em; }
  @media (min-width: 768px) {
    .news .news__date-secondary {
      font-size: 1.1em; } }

.news .news__title {
  font-size: 1.4em;
  font-weight: 700;
  margin-bottom: 0.5em; }
  @media (min-width: 768px) {
    .news .news__title {
      font-size: 1.9em;
      line-height: 1.1em;
      margin-bottom: 0.3em;
      margin-top: 0.3em; } }

@media (min-width: 768px) {
  .news .news__title--secondary {
    font-size: 1.6em;
    line-height: 1.2em;
    margin-bottom: 0.1em; } }

.news .news__paragraph {
  font-style: italic; }
  @media (min-width: 768px) {
    .news .news__paragraph {
      font-size: 1.1em; } }

.news .news__button {
  margin-top: 1.5em; }
  @media (max-width: 768px) {
    .news .news__button {
      width: 100%;
      max-width: 17em; } }
  @media (min-width: 768px) {
    .news .news__button {
      margin-top: 1.5em;
      padding: 0.75em 4.5em; } }

.news .news__secondary {
  display: none; }
  @media (min-width: 768px) {
    .news .news__secondary {
      width: 50%;
      float: left;
      float: right;
      margin-right: 0;
      display: block;
      padding-left: 5%;
      padding-top: 2.5em; } }

@media (min-width: 768px) {
  .news .news__posts {
    padding-left: 1.5em;
    padding-right: 5%; } }

.news .news__read-more {
  font-size: 1.1em;
  font-weight: 700;
  letter-spacing: 1px; }

.news .news__hr {
  border-color: #9DBF3B;
  margin: 1.5em 0 1.25em; }
  .news .news__hr:last-of-type {
    display: none; }

.split-info {
  display: inline-block;
  width: 100%; }
  @media (min-width: 768px) {
    .split-info {
      margin: -6px 0; } }

.split-info .split-info__text {
  padding: 1em 2em 1.5em; }
  @media (min-width: 768px) {
    .split-info .split-info__text {
      width: 50%;
      float: left;
      padding: 2.5em 1em 3.5em 6%; } }

.split-info .split-info__headline {
  font-weight: 600;
  margin-bottom: 0.3em; }

.split-info .split-info__paragraph {
  font-size: 1.1em; }
  @media (min-width: 768px) {
    .split-info .split-info__paragraph {
      font-size: 1.5em;
      margin-bottom: 1.5em; } }

@media (max-width: 768px) {
  .split-info .split-info__button {
    width: 100%;
    max-width: 16em; } }

.split-info .split-info__image {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center; }
  @media (max-width: 480px) {
    .split-info .split-info__image {
      height: 12.5em !important; } }
  @media (min-width: 480px) and (max-width: 768px) {
    .split-info .split-info__image {
      height: 25em !important; } }
  @media (min-width: 768px) {
    .split-info .split-info__image {
      width: 50%;
      float: left;
      float: right;
      margin-right: 0; } }

.locations {
  text-align: center;
  padding: 1.5em 1em; }
  @media (min-width: 768px) {
    .locations {
      padding: 2em 8% 3em; } }
  @media (min-width: 768px) and (max-width: 1000px) {
    .locations {
      padding: 2em 6% 3em; } }

.locations .locations__icon {
  display: none; }
  @media (min-width: 768px) {
    .locations .locations__icon {
      display: inline-block; } }

.locations .locations__headline {
  text-align: left;
  margin-left: 0.5rem; }
  @media (min-width: 768px) {
    .locations .locations__headline {
      text-align: center;
      margin: 0; } }

.locations .locations__holder {
  position: relative;
  text-align: left;
  z-index: 10;
  background-color: #E3E5EA; }
  @media (min-width: 768px) {
    .locations .locations__holder {
      display: inline-block;
      width: 100%;
      margin-top: -6px; } }

.locations .location__wrapper {
  margin-left: 0.5em;
  margin-bottom: 1em; }
  @media (min-width: 768px) {
    .locations .location__wrapper {
      width: 32.25806%;
      float: left;
      margin-right: 1.6129%;
      margin: 2.5em 0 0 0; }
      .locations .location__wrapper:nth-of-type(3n) {
        float: right;
        margin-right: 0; } }

.locations .location__name {
  margin: 0; }
  @media (max-width: 768px) {
    .locations .location__name {
      font-size: 1.2em; } }
  @media (min-width: 768px) and (max-width: 1000px) {
    .locations .location__name {
      font-size: 1.25em; } }

.locations .location__info p {
  font-size: 1.125em;
  margin: 0; }

.locations .location__hours {
  display: inline-block;
  font-size: 1.125em;
  font-weight: 700;
  letter-spacing: 1px;
  margin-top: 0.2em;
  padding-bottom: 0.2em; }
  @media (min-width: 768px) {
    .locations .location__hours {
      margin-top: 0.5em; } }
  .locations .location__hours.active {
    border-bottom: 2px solid #FCB71F; }

.locations .location__icon {
  margin: 0em 0.5em -0.35em 0; }

@media (max-width: 768px) {
  .locations .location__spacer {
    position: relative; } }

.locations .location__hours-div {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  width: 100%;
  left: 0;
  background-color: white;
  margin-top: 1.5em;
  padding: 1em 1.5em;
  z-index: 0; }
  @media (min-width: 768px) {
    .locations .location__hours-div {
      width: 92%;
      margin-top: 3em;
      padding: 2.5em 3em; } }

.locations .location__hours-info {
  margin-bottom: 1em; }
  .locations .location__hours-info:last-child {
    margin-bottom: 0; }
  @media (min-width: 768px) {
    .locations .location__hours-info {
      width: 50%;
      float: left;
      padding: 0 2.8em 0 0;
      margin-bottom: 0; }
      .locations .location__hours-info:last-child {
        float: right;
        margin-right: 0;
        padding-right: 0; } }

.locations .locations__button {
  font-size: 1.1em;
  letter-spacing: 1px;
  padding: 0.55em 1.5em;
  border: 1px solid #4D4D4D;
  margin-top: 2em; }
  @media (max-width: 768px) {
    .locations .locations__button {
      width: 100%;
      max-width: 16em;
      padding: 0.55em 1.4em;
      margin-top: 1rem; } }

/* 404 css tweaks */
.error-404 {
  padding: 6em 3em; }
  @media (min-width: 768px) {
    .error-404 {
      padding: 10em 5em; } }

.error-404 .page-title {
  font-size: 2em;
  margin-bottom: 0.25em; }
  @media (min-width: 768px) {
    .error-404 .page-title {
      font-size: 3.5em; } }

.error-404 .page-content {
  font-size: 1.1em; }

/* Dirty hack for jump-link with fixed header */
#view-events {
  padding-bottom: 6.6em;
  margin-top: -6.6em; }

/*Long Beach Home page unique bit */
.full-width-section__image {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  height: 22em; }
  @media (min-width: 480px) and (max-width: 768px) {
    .full-width-section__image {
      height: 36em; } }
  @media (min-width: 768px) {
    .full-width-section__image {
      height: 48vw; } }
  @media (min-width: 768px) and (max-width: 1000px) {
    .full-width-section__image {
      height: 60vw; } }

/* Engaging Networks forms
--------------------------*/
.en__submit {
  margin-top: 1em; }

.en__submit button {
  background-color: #9DBF3B;
  border-radius: 2em;
  border: none;
  color: #fff;
  font-family: 'Titillium Web', sans-serif;
  padding: 1em 3em;
  cursor: pointer;
  text-transform: uppercase;
  font-size: 1.2em;
  font-weight: 600;
  letter-spacing: 0.05em; }

.en__submit button:hover {
  background-position: 0 -40px;
  background-color: #DFDFDF;
  border-color: #AFAFAF;
  color: #000000;
  cursor: pointer;
  text-decoration: none; }

.en__field__element {
  width: 90%; }

.en__component--copyblock {
  font-weight: 600; }

.en__field__label {
  color: #4D4D4D;
  font-family: 'Titillium Web', sans-serif;
  font-size: 1.2em;
  font-weight: 600;
  line-height: 1.15; }

.en__component .en__field__input--text {
  border-radius: 2px;
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
  border: 1px solid #CCCCCC;
  width: 100%; }

.en__component .en__field__label--item {
  padding: 0.15em 1em 0 0.15em; }

.en__field__element--splitselect .en__field__item {
  margin-right: 0.5em; }

@media only screen and (max-width: 767px) {
  .col_1, .col_2, .col3 {
    width: 100%;
    padding-left: 2%;
    padding-right: 2%; }

  .ea-form-wrapper .ea-field-grouping {
    margin-left: 0;
    margin-bottom: 0.5em; }

  .ea-form-wrapper form {
    max-width: 84%;
    margin: 0 8%;
    padding: 2em !important; }

  .en__field__element {
    width: 100%; }

  .en__submit {
    text-align: center; }

  /* Home page style pass */
  .services,
  .split-info .split-info__text {
    padding: 2em 2em 3em; }

  .services .services__headline {
    font-size: 1.5em; }

  .cta .cta__headline {
    font-size: 1.5em; }

  .home .slider__slide {
    display: block;
    height: 48vw;
    background-size: cover;
    background-position: center center; }

  .slider__slide--text {
    padding: 2em; }

  .subscribe .subscribe__headline {
    margin-top: 0.4em; } }

/*# sourceMappingURL=style.css.map */
