/*
	Theme Name: Tarremah
	Description: A Custom Theme for Tarremah Steiner School 
	Version: 1.0.0
	Author: Futago
	Author URI: http://futago.com.au
	Tags: Custom, HTML5, CSS3, Responsive, Mobile Friendly

	License: MIT
	License URI: http://opensource.org/licenses/mit-license.php
*/
/*------------------------------------*	Z-index Guide
\*------------------------------------*/
/*------------------------------------*	IMPORTS
\*------------------------------------*/
/*!
 * 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
 */
@import 'https://fonts.googleapis.com/css?family=Roboto+Slab:400,700';
@import 'https://fonts.googleapis.com/css?family=Maitree:400,500,700';
.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;
  -ms-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;
  -ms-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.39062deg) skewY(0.39062deg);
    transform: skewX(0.39062deg) skewY(0.39062deg); }
  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.39062deg) skewY(0.39062deg);
    transform: skewX(0.39062deg) skewY(0.39062deg); }
  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;
  -ms-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.scss settings
   ========================================================================== */
/**
 * Includes legacy browser support IE6/7
 *
 * Set to false if you want to drop support for IE6 and IE7
 */
/* Base
   ========================================================================== */
/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS and IE text size adjust after device orientation change,
 *    without disabling user zoom.
 * 3. Corrects text resizing oddly in IE 6/7 when body `font-size` is set using
 *  `em` units.
 */
html {
  font-family: sans-serif;
  /* 1 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */ }

/**
 * Remove default margin.
 */
body {
  margin: 0; }

/* HTML5 display definitions
   ========================================================================== */
/**
 * Correct `block` display not defined for any HTML5 element in IE 8/9.
 * Correct `block` display not defined for `details` or `summary` in IE 10/11
 * and Firefox.
 * Correct `block` display not defined for `main` in IE 11.
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block; }

/**
 * 1. Correct `inline-block` display not defined in IE 6/7/8/9 and Firefox 3.
 * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
 */
audio,
canvas,
progress,
video {
  display: inline-block;
  /* 1 */
  vertical-align: baseline;
  /* 2 */ }

/**
 * Prevents modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */
audio:not([controls]) {
  display: none;
  height: 0; }

/**
 * Address `[hidden]` styling not present in IE 8/9/10.
 * Hide the `template` element in IE 8/9/10/11, Safari, and Firefox < 22.
 */
[hidden],
template {
  display: none; }

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

/**
 * Improve readability of focused elements when they are also in an
 * active/hover state.
 */
a:active, a:hover {
  outline: 0; }

/* Text-level semantics
   ========================================================================== */
/**
 * Address styling not present in IE 8/9/10/11, Safari, and Chrome.
 */
abbr[title] {
  border-bottom: 1px dotted; }

/**
 * Address style set to `bolder` in Firefox 4+, Safari, and Chrome.
 */
b,
strong {
  font-weight: bold; }

/**
 * Address styling not present in Safari and Chrome.
 */
dfn {
  font-style: italic; }

/**
 * Address variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari, and Chrome.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0; }

/**
 * Addresses styling not present in IE 8/9.
 */
mark {
  background: #ff0;
  color: #000; }

/**
 * Address inconsistent and variable font size in all browsers.
 */
small {
  font-size: 80%; }

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

sup {
  top: -0.5em; }

sub {
  bottom: -0.25em; }

/* Embedded content
   ========================================================================== */
/**
 * 1. Remove border when inside `a` element in IE 8/9/10.
 * 2. Improves image quality when scaled in IE 7.
 */
img {
  border: 0; }

/**
 * Correct overflow not hidden in IE 9/10/11.
 */
svg:not(:root) {
  overflow: hidden; }

/* Grouping content
   ========================================================================== */
/**
 * Address margin not present in IE 8/9 and Safari.
 */
figure {
  margin: 1em 40px; }

/**
 * Address differences between Firefox and other browsers.
 */
hr {
  box-sizing: content-box;
  height: 0; }

/**
 * Contain overflow in all browsers.
 */
pre {
  overflow: auto; }

/**
 * Address odd `em`-unit font size rendering in all browsers.
 * Correct font family set oddly in IE 6, Safari 4/5, and Chrome.
 */
code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em; }

/* Forms
   ========================================================================== */
/**
 * Known limitation: by default, Chrome and Safari on OS X allow very limited
 * styling of `select`, unless a `border` property is set.
 */
/**
 * 1. Correct color not being inherited.
 *  Known issue: affects color of disabled elements.
 * 2. Correct font properties not being inherited.
 * 3. Address margins set differently in Firefox 4+, Safari, and Chrome.
 * 4. Improves appearance and consistency in all browsers.
 */
button,
input,
optgroup,
select,
textarea {
  color: inherit;
  /* 1 */
  font: inherit;
  /* 2 */
  margin: 0;
  /* 3 */ }

/**
 * Address `overflow` set to `hidden` in IE 8/9/10/11.
 */
button {
  overflow: visible; }

/**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.
 * Correct `select` style inheritance in Firefox.
 */
button,
select {
  text-transform: none; }

/**
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *  and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *  `input` and others.
 * 4. Removes inner spacing in IE 7 without affecting normal text inputs.
 *  Known issue: inner spacing remains in IE 6.
 */
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  /* 2 */
  cursor: pointer;
  /* 3 */ }

/**
 * Re-set default cursor for disabled elements.
 */
button[disabled],
html input[disabled] {
  cursor: default; }

/**
 * Remove inner padding and border in Firefox 4+.
 */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0; }

/**
 * Address Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */
input {
  line-height: normal; }

/**
 * 1. Address box sizing set to `content-box` in IE 8/9/10.
 * 2. Remove excess padding in IE 8/9/10.
 *  Known issue: excess padding remains in IE 6.
 */
input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */ }

/**
 * Fix the cursor style for Chrome's increment/decrement buttons. For certain
 * `font-size` values of the `input`, it causes the cursor style of the
 * decrement button to change from `default` to `text`.
 */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto; }

/**
 * 1. Address `appearance` set to `searchfield` in Safari and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari and Chrome.
 */
input[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  box-sizing: content-box;
  /* 2 */ }

/**
 * Remove inner padding and search cancel button in Safari and Chrome on OS X.
 * Safari (but not Chrome) clips the cancel button when the search input has
 * padding (and `textfield` appearance).
 */
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none; }

/**
 * Define consistent border, margin, and padding.
 */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em; }

/**
 * 1. Correct `color` not being inherited in IE 8/9/10/11.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 * 3. Corrects text not wrapping in Firefox 3.
 * 4. Corrects alignment displayed oddly in IE 6/7.
 */
legend {
  border: 0;
  /* 1 */
  padding: 0;
  /* 2 */ }

/**
 * Remove default vertical scrollbar in IE 8/9/10/11.
 */
textarea {
  overflow: auto; }

/**
 * Don't inherit the `font-weight` (applied by a rule above).
 * NOTE: the default cannot safely be changed in Chrome and Safari on OS X.
 */
optgroup {
  font-weight: bold; }

/* Tables
   ========================================================================== */
/**
 * Remove most spacing between table cells.
 */
table {
  border-collapse: collapse;
  border-spacing: 0; }

td,
th {
  padding: 0; }

/* Changing Susy default global settings */
/* Makes border-box properties */
*, *:before, *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box; }

/*------------------------------------*	WORDPRESS CORE
\*------------------------------------*/
.alignnone {
  margin: 5px 20px 20px 0; }

.aligncenter,
div.aligncenter {
  display: block;
  margin: 5px auto 5px auto; }

.alignright {
  float: right;
  margin: 5px 0 20px 20px; }

.alignleft {
  float: left;
  margin: 5px 20px 20px 0; }

a img.alignright {
  float: right;
  margin: 5px 0 20px 20px; }

a img.alignnone {
  margin: 5px 20px 20px 0; }

a img.alignleft {
  float: left;
  margin: 5px 20px 20px 0; }

a img.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto; }

.wp-caption {
  background: #FFF;
  border: 1px solid #F0F0F0;
  max-width: 96%;
  padding: 5px 3px 10px;
  text-align: center; }

.wp-caption.alignnone {
  margin: 5px 20px 20px 0; }

.wp-caption.alignleft {
  margin: 5px 20px 20px 0; }

.wp-caption.alignright {
  margin: 5px 0 20px 20px; }

.wp-caption img {
  border: 0 none;
  height: auto;
  margin: 0;
  max-width: 98.5%;
  padding: 0;
  width: auto; }

.wp-caption .wp-caption-text,
.gallery-caption {
  font-size: 11px;
  line-height: 17px;
  margin: 0;
  padding: 0 4px 5px; }

/*------------------------------------*	MAIN
\*------------------------------------*/
/* global box-sizing */
*,
*:after,
*:before {
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
  text-rendering: optimizeLegibility; }

/* clear */
.clear:before,
.clear:after {
  content: ' ';
  display: table; }

.clear:after {
  clear: both; }

.clear {
  *zoom: 1; }

img {
  max-width: 100%;
  vertical-align: bottom; }

a {
  color: #444;
  text-decoration: none; }

a:hover {
  color: #444; }

a:focus {
  outline: 0; }

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

input:focus {
  outline: 0;
  border: 1px solid #04A4CC; }

body {
  overflow-x: hidden; }

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

body,
button,
input,
select,
textarea {
  color: #333333;
  font-family: "Roboto Slab", serif;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5; }

h1, h2, h3, h4, h5, h6 {
  clear: both;
  font-family: "Maitree", serif; }
  h1.heading--white, h2.heading--white, h3.heading--white, h4.heading--white, h5.heading--white, h6.heading--white {
    color: #ffffff; }
  h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
    text-decoration: underline;
    color: #ba0018; }
    h1 a:hover, h2 a:hover, h3 a:hover, h4 a:hover, h5 a:hover, h6 a:hover {
      color: #0076BD; }

h1 {
  font-size: 50px;
  font-size: 3.125rem;
  line-height: 1; }

h2 {
  font-size: 36px;
  font-size: 2.25rem;
  line-height: 1.2; }

h3 {
  font-size: 27px;
  font-size: 1.6875rem;
  line-height: 1.2; }

h4 {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.333; }

dfn, cite, em, i {
  font-style: normal; }

b, strong {
  font-weight: 700; }

blockquote {
  margin: 0 1.5em; }

address {
  margin: 0 0 1.5em; }

pre {
  background: #eee;
  font-family: "Courier 10 Pitch", Courier, monospace;
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 1.6;
  margin-bottom: 1.6em;
  max-width: 100%;
  overflow: auto;
  padding: 1.6em; }

code, kbd, tt, var {
  font-family: Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
  font-size: 15px;
  font-size: 0.9375rem; }

abbr, acronym {
  border-bottom: 1px dotted #666;
  cursor: help; }

mark, ins {
  background: #fff9c0;
  text-decoration: none; }

big {
  font-size: 20px;
  font-size: 1.25rem; }

small {
  font-size: 12.8px;
  font-size: 0.8rem; }
  small strong a {
    color: #ba0018; }

.copy--white {
  color: #ffffff; }

ul li {
  list-style: none; }
  ul li:before {
    content: '';
    display: inline-block;
    height: 1em;
    width: 1em;
    background-image: url("img/list-marker.png");
    background-size: 1em 1em;
    margin-right: 0.5em;
    position: relative;
    top: 0.15em; }

button,
input[type="button"],
input[type="reset"],
input[type="submit"],
.btn {
  font-family: "Maitree", serif;
  font-weight: 700;
  font-size: 13px;
  font-size: 0.8125rem;
  display: inline-block;
  min-width: 160px;
  height: 3.125rem;
  padding: 0rem 1rem;
  cursor: pointer;
  border: none;
  background: #4A90E2;
  color: white;
  border-radius: 100px; }
  button:hover,
  input[type="button"]:hover,
  input[type="reset"]:hover,
  input[type="submit"]:hover,
  .btn:hover {
    color: white;
    background: #2275d7; }
  button:disabled, button.disabled,
  input[type="button"]:disabled,
  input[type="button"].disabled,
  input[type="reset"]:disabled,
  input[type="reset"].disabled,
  input[type="submit"]:disabled,
  input[type="submit"].disabled,
  .btn:disabled,
  .btn.disabled {
    background-color: #a2c6f0;
    cursor: default; }

.btn {
  font-family: "Maitree", serif;
  font-weight: 700;
  font-size: 13px;
  font-size: 0.8125rem;
  display: inline-block;
  min-width: 160px;
  height: 3.125rem;
  padding: 1rem 1rem;
  cursor: pointer;
  border: none;
  background: #4A90E2;
  color: white;
  border-radius: 100px;
  padding-top: 1rem;
  text-align: center; }
  .btn:hover {
    color: white;
    background: #2275d7; }
  .btn--square {
    font-family: "Maitree", serif;
    font-weight: 700;
    font-size: 13px;
    font-size: 0.8125rem;
    display: inline-block;
    min-width: 160px;
    height: 3.125rem;
    padding: 1rem 1rem;
    cursor: pointer;
    border: none;
    background: #005A96;
    color: white;
    border-radius: 0; }
    .btn--square:hover {
      color: white;
      background: #003b63; }
  .btn--white {
    font-family: "Maitree", serif;
    font-weight: 700;
    font-size: 13px;
    font-size: 0.8125rem;
    display: inline-block;
    min-width: 160px;
    height: 3.125rem;
    padding: 1rem 1rem;
    cursor: pointer;
    border: none;
    background: #ffffff;
    color: #052F8F;
    border-radius: 100px; }
    .btn--white:hover {
      color: #052F8F;
      background: #e6e6e6; }
  .btn--red {
    font-family: "Maitree", serif;
    font-weight: 700;
    font-size: 13px;
    font-size: 0.8125rem;
    display: inline-block;
    min-width: 160px;
    height: 3.125rem;
    padding: 1rem 1rem;
    cursor: pointer;
    border: none;
    background: #ba0018;
    color: #ffffff;
    border-radius: 100px; }
    .btn--red:hover {
      color: white;
      background: #870011; }

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
input[type="range"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="color"],
textarea {
  font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
  font-size: 14px;
  font-size: 0.875rem;
  background: #FFFFFF;
  border: 1px solid #979797;
  box-shadow: inset 0px 1px 3px 0px rgba(0, 0, 0, 0.5);
  border-radius: 3px;
  width: 100%;
  padding: 0.2rem; }
  input[type="text"]:focus,
  input[type="email"]:focus,
  input[type="url"]:focus,
  input[type="password"]:focus,
  input[type="search"]:focus,
  input[type="number"]:focus,
  input[type="tel"]:focus,
  input[type="range"]:focus,
  input[type="date"]:focus,
  input[type="month"]:focus,
  input[type="week"]:focus,
  input[type="time"]:focus,
  input[type="datetime"]:focus,
  input[type="datetime-local"]:focus,
  input[type="color"]:focus,
  textarea:focus {
    border: 1px solid #4A90E2;
    box-shadow: 0px 0px 2px 0px rgba(73, 143, 225, 0.7); }
  input[type="text"]:disabled,
  input[type="email"]:disabled,
  input[type="url"]:disabled,
  input[type="password"]:disabled,
  input[type="search"]:disabled,
  input[type="number"]:disabled,
  input[type="tel"]:disabled,
  input[type="range"]:disabled,
  input[type="date"]:disabled,
  input[type="month"]:disabled,
  input[type="week"]:disabled,
  input[type="time"]:disabled,
  input[type="datetime"]:disabled,
  input[type="datetime-local"]:disabled,
  input[type="color"]:disabled,
  textarea:disabled {
    background-color: #CDCDCD; }
  input[type="text"].error,
  input[type="email"].error,
  input[type="url"].error,
  input[type="password"].error,
  input[type="search"].error,
  input[type="number"].error,
  input[type="tel"].error,
  input[type="range"].error,
  input[type="date"].error,
  input[type="month"].error,
  input[type="week"].error,
  input[type="time"].error,
  input[type="datetime"].error,
  input[type="datetime-local"].error,
  input[type="color"].error,
  textarea.error {
    border: 1px solid #D0021B;
    box-shadow: 0px 0px 2px 0px rgba(208, 1, 27, 0.7); }

select {
  background-image: linear-gradient(-180deg, #F2F2F2 0%, #D4D4D4 100%);
  border: 1px solid #979797;
  box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.2), inset 0px 2px 0px 0px #FFFFFF;
  border-radius: 3px;
  width: 100%; }

textarea {
  background: #FFFFFF;
  border: 1px solid #979797;
  box-shadow: inset 0px 1px 3px 0px rgba(0, 0, 0, 0.5);
  border-radius: 3px; }

a {
  color: #0076BD; }
  a:hover, a:focus, a:active {
    color: #0066a4; }
  a:focus {
    outline: thin dotted; }
  a:hover, a:active {
    outline: 0; }

.title-bar {
  position: relative;
  width: 416px;
  height: 106px;
  color: white;
  background: transparent url("img/home_brush@0,5x.png") no-repeat no-repeat;
  background-size: 416px 106px;
  transition: background 400ms, width 400ms, height 400ms; }
  @media (min-width: 60.063em) {
    .title-bar {
      width: 733px;
      height: 187px;
      background-image: url("img/home_brush.png");
      background-size: 733px 187px; } }
  .title-bar__bird {
    position: absolute;
    top: 25px;
    left: 115px;
    width: 95px;
    height: 22px;
    transition: width 400ms, height 400ms; }
    @media (min-width: 60.063em) {
      .title-bar__bird {
        top: 44px;
        left: 202px;
        width: 168px;
        height: 38px; } }
  .title-bar__title {
    position: absolute;
    top: 54px;
    left: 115px;
    width: 233px;
    height: 18px;
    transition: width 400ms, height 400ms; }
    @media (min-width: 60.063em) {
      .title-bar__title {
        top: 95px;
        left: 202px;
        width: 410px;
        height: 30px; } }
  .title-bar__site-title {
    margin: 0; }
  .title-bar__page-title {
    font-family: "Maitree", serif;
    line-height: 1;
    position: absolute;
    top: 50%;
    left: 115px;
    min-width: 274px;
    max-width: 460px;
    margin: 0;
    color: #ffffff;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    transition: top 400ms, left 400ms, font-size 400ms;
    font-size: 28.8px;
    font-size: 1.8rem; }
    .title-bar__page-title a {
      color: #ffffff; }
    @media (min-width: 60.063em) {
      .title-bar__page-title {
        font-size: 44.8px;
        font-size: 2.8rem;
        top: 50%;
        left: 205px; } }

.mobile-nav {
  font-family: "Maitree", serif;
  font-weight: 500;
  position: absolute;
  bottom: 15px;
  width: 100%;
  padding: 0;
  content: "";
  display: table;
  table-layout: fixed;
  font-size: 16px;
  font-size: 1rem; }
  @media (min-width: 40.063em) {
    .mobile-nav {
      display: none; } }
  .mobile-nav ul {
    margin: 0;
    padding: 0; }
  .mobile-nav > ul {
    width: 100%;
    z-index: 500;
    position: relative; }
    .mobile-nav > ul li {
      text-align: center;
      height: 28px;
      width: 20%;
      float: left;
      padding-left: 3.40909%;
      padding-right: 3.40909%; }
      .mobile-nav > ul li:hover:after {
        display: block;
        width: 100%;
        height: 4px;
        content: '';
        background: transparent url("img/menu_underline.png") center center no-repeat;
        background-size: 54px 4px; }
      .mobile-nav > ul li:before {
        content: none; }
      .mobile-nav > ul li.mobile-menu-trigger-button, .mobile-nav > ul li.home {
        font: 0/0 a;
        display: block;
        cursor: pointer;
        text-indent: -9999;
        color: transparent;
        border: 0;
        background-color: transparent;
        text-shadow: none; }
        .mobile-nav > ul li.mobile-menu-trigger-button:hover:after, .mobile-nav > ul li.home:hover:after {
          display: none; }
      .mobile-nav > ul li.home {
        height: 26px;
        background: transparent url("img/icon_home.svg") no-repeat center right; }
        .mobile-nav > ul li.home:hover:after {
          display: none; }
        .mobile-nav > ul li.home a {
          padding-right: 0; }
      .mobile-nav > ul li.mobile-menu-trigger-button {
        height: 26px;
        background: transparent url("img/hamburger.svg") no-repeat center center;
        background-size: 30px 26px; }
      .mobile-nav > ul li a {
        display: block;
        height: 100%;
        color: #ffffff; }
  .mobile-nav .sub-menu {
    display: none;
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 100%;
    padding-bottom: 61px;
    background-color: #ba0018;
    z-index: -1; }
    .mobile-nav .sub-menu li {
      font-family: "Maitree", serif;
      font-weight: 500;
      display: block;
      float: none;
      width: 100%;
      padding: 0;
      height: auto;
      color: #ffffff;
      background: #ba0018 url("img/menu_underline--mobile.png") 0 bottom no-repeat;
      background-size: 100% 4px;
      font-size: 16px;
      font-size: 1rem; }
      .mobile-nav .sub-menu li:hover {
        background-color: #6e000e; }
        .mobile-nav .sub-menu li:hover:after {
          display: none; }
      .mobile-nav .sub-menu li a {
        padding: 1rem 0; }
    .mobile-nav .sub-menu ul {
      display: none; }
  .mobile-nav li.menu-item-has-children:hover .sub-menu {
    display: block; }
  .mobile-nav .mobile-menu-trigger-button .sub-menu li {
    position: relative; }
    .mobile-nav .mobile-menu-trigger-button .sub-menu li:after {
      content: '>';
      position: absolute;
      right: 20px;
      top: 50%;
      -webkit-transform: translate(0, -50%);
      -ms-transform: translate(0, -50%);
      transform: translate(0, -50%); }
    .mobile-nav .mobile-menu-trigger-button .sub-menu li ul {
      left: 100%;
      transition: left 200ms;
      bottom: 0;
      position: fixed;
      z-index: 100; }
      .mobile-nav .mobile-menu-trigger-button .sub-menu li ul li:after {
        content: none; }
      .mobile-nav .mobile-menu-trigger-button .sub-menu li ul.active {
        left: 0;
        transition: left 200ms; }

.no-svg .home {
  background-image: url("img/icon_home.png"); }

.no-svg .mobile-menu-trigger-button {
  background-image: url("img/hamburger.png"); }

.desktop-nav {
  font-family: "Maitree", serif;
  font-weight: 500;
  position: absolute;
  bottom: 0;
  display: none;
  width: 100%;
  padding: 0 0 15px;
  font-size: 18px;
  font-size: 1.125rem; }
  @media (min-width: 40.063em) {
    .desktop-nav {
      display: block;
      font-size: 16px;
      font-size: 1rem;
      line-height: 1;
      content: "";
      display: table;
      table-layout: fixed;
      padding-bottom: 7px; } }
  @media (min-width: 60.063em) {
    .desktop-nav {
      font-size: 16.8px;
      font-size: 1.05rem;
      line-height: 1; } }
  .desktop-nav ul {
    margin: 0;
    padding: 0; }
  .desktop-nav > ul {
    width: 100%;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex; }
    .desktop-nav > ul li {
      height: calc(1.5em + 4px);
      text-align: center;
      width: 20%;
      float: left; }
      .desktop-nav > ul li:hover:after {
        display: block;
        width: 100%;
        height: 4px;
        content: '';
        background: transparent url("img/menu_underline.png") center center no-repeat;
        background-size: 54px 4px; }
      .desktop-nav > ul li:before {
        content: none; }
      .desktop-nav > ul li a {
        display: block;
        padding: 0 1rem;
        color: #ffffff; }
      .desktop-nav > ul li .sub-menu {
        position: absolute;
        bottom: 0;
        display: none;
        padding-bottom: 63px;
        background-color: #ba0018;
        z-index: -1;
        width: 20%; }
        .desktop-nav > ul li .sub-menu.active {
          display: block; }
        .desktop-nav > ul li .sub-menu li {
          font-family: "Maitree", serif;
          font-weight: 500;
          display: block;
          float: none;
          width: 100%;
          height: auto;
          padding: 0;
          color: #ffffff;
          background: #ba0018 url("img/menu_underline--mobile.png") 0 bottom no-repeat;
          background-color: #ba0018;
          background-size: 100% 4px;
          font-size: 16px;
          font-size: 1rem; }
          .desktop-nav > ul li .sub-menu li:hover {
            background-color: #6e000e; }
            .desktop-nav > ul li .sub-menu li:hover:after {
              display: none; }
          .desktop-nav > ul li .sub-menu li a {
            padding: 1rem 0; }
      .desktop-nav > ul li.menu-item-has-children:hover .sub-menu {
        display: block; }
  .desktop-nav .menu-item-has-children:hover {
    display: block; }
    .desktop-nav .menu-item-has-children:hover .sub-menu {
      display: block; }

.contact-info-sticky {
  display: block;
  background: transparent url("img/contact-info-brush.png") 0 0 no-repeat;
  background-size: 72px 282px;
  width: 72px;
  height: 282px;
  padding-top: 223px;
  z-index: 800;
  position: relative;
  transition: all 400ms;
  overflow: hidden; }
  @media (min-width: 40.063em) {
    .contact-info-sticky {
      width: 87px;
      height: 341px;
      padding-top: 273px;
      background-size: auto; } }
  .contact-info-sticky--no-bg {
    background: none; }
  .contact-info-sticky__icon {
    display: block;
    position: relative;
    left: 23px;
    margin-bottom: 20px; }
    @media (min-width: 40.063em) {
      .contact-info-sticky__icon {
        left: 31px; } }
    .contact-info-sticky__icon:focus {
      outline: none; }
    .contact-info-sticky__icon.active {
      display: block;
      width: 32px;
      height: 32px;
      background: transparent url("img/icon_close.svg") left top no-repeat;
      transition: all 400ms; }
      .contact-info-sticky__icon.active img {
        display: none; }

.no-svg .contact-info-sticky__icon.active {
  background-image: url("img/icon_close.png"); }

.contact-info-horizontal {
  visibility: hidden;
  transition: all 1000ms;
  opacity: 0;
  content: "";
  display: table;
  table-layout: fixed; }
  .contact-info-horizontal.visible {
    visibility: visible;
    opacity: 1; }
  .contact-info-horizontal__icon {
    float: left; }
    .contact-info-horizontal__icon:focus {
      outline: none; }
  .contact-info-horizontal__phone {
    margin-right: 25px; }
    @media (min-width: 60.063em) {
      .contact-info-horizontal__phone {
        margin-right: 30px; } }
    @media (min-width: 1280px) {
      .contact-info-horizontal__phone {
        margin-right: 35px; } }

.header-video {
  position: relative;
  display: block;
  overflow: hidden;
  width: 100%;
  max-height: 100vh;
  cursor: pointer;
  min-height: 500px; }
  .header-video video {
    object-fit: cover;
    width: 100%; }
    @media (max-width: 960px) {
      .header-video video {
        height: 100%;
        width: auto;
        position: absolute;
        top: 50%;
        left: 50%;
        -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%); } }
  .header-video__img {
    width: 100%;
    max-width: none;
    height: auto; }
  .header-video__play-icon {
    position: absolute;
    z-index: 100;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%); }
  .header-video__quote-container {
    position: absolute;
    bottom: 0;
    padding: 100px 25px 150px;
    width: 100%;
    text-align: center;
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#000000+0,000000+100&0+0,1+70 */
    background: -moz-linear-gradient(top, transparent 0%, black 70%, black 100%);
    /* FF3.6-15 */
    background: -webkit-linear-gradient(top, transparent 0%, black 70%, black 100%);
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, transparent 0%, black 70%, black 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#000000',GradientType=0 );
    /* IE6-9 */ }
  .header-video__quote-wrapper {
    color: #ffffff;
    width: 100%;
    float: left;
    margin-left: 0;
    margin-right: 0; }
    @media (min-width: 40.063em) {
      .header-video__quote-wrapper {
        width: 50%;
        float: left;
        margin-left: 25%;
        margin-right: -100%;
        padding-left: 1.42045%;
        padding-right: 1.42045%; } }
  .header-video__quote-text {
    margin: 0;
    font-size: 16px;
    font-size: 1rem; }
    @media (min-width: 40.063em) {
      .header-video__quote-text {
        font-size: 28px;
        font-size: 1.75rem; } }
    @media (min-width: 60.063em) {
      .header-video__quote-text {
        font-size: 36px;
        font-size: 2.25rem; } }
    @media (min-width: 60.063em) {
      article.page .header-video__quote-text {
        font-size: 28.8px;
        font-size: 1.8rem; } }

.header-image {
  position: relative;
  display: block;
  width: 100%;
  min-height: 105vh;
  max-height: 110vh;
  overflow: hidden; }
  .header-image__img {
    width: 100%;
    height: auto;
    max-width: none;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%); }
    .header-image__img.taller {
      height: auto;
      width: 100%; }
    .header-image__img.wider {
      width: auto;
      height: 100%; }
    .header-image__img.equal {
      width: 100%;
      height: 100%; }
  .header-image__quote-container {
    position: absolute;
    bottom: 0;
    padding: 100px 25px 150px;
    width: 100%;
    text-align: center;
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#000000+0,000000+100&0+0,1+70 */
    background: -moz-linear-gradient(top, transparent 0%, black 70%, black 100%);
    /* FF3.6-15 */
    background: -webkit-linear-gradient(top, transparent 0%, black 70%, black 100%);
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, transparent 0%, black 70%, black 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#000000',GradientType=0 );
    /* IE6-9 */ }
  .header-image__quote-wrapper {
    color: #ffffff;
    width: 100%;
    float: left;
    margin-left: 0;
    margin-right: 0; }
    @media (min-width: 40.063em) {
      .header-image__quote-wrapper {
        width: 50%;
        float: left;
        margin-left: 25%;
        margin-right: -100%;
        padding-left: 1.42045%;
        padding-right: 1.42045%; } }
  .header-image__quote-text {
    margin: 0;
    font-size: 16px;
    font-size: 1rem; }
    @media (min-width: 40.063em) {
      .header-image__quote-text {
        font-size: 28px;
        font-size: 1.75rem; } }
    @media (min-width: 60.063em) {
      .header-image__quote-text {
        font-size: 36px;
        font-size: 2.25rem; } }
    @media (min-width: 60.063em) {
      article.page .header-image__quote-text {
        font-size: 28.8px;
        font-size: 1.8rem; } }
  .header-image__down-arrow {
    display: none;
    position: absolute;
    bottom: 180px;
    right: 50px;
    -webkit-animation-delay: 3s;
    animation-delay: 3s;
    -webkit-animation-iteration-count: 1;
    animation-iteration-count: 1; }
    @media (min-width: 40.063em) {
      .header-image__down-arrow {
        display: block; } }
    .header-image__down-arrow img {
      width: 75px; }

.article {
  width: 100%; }
  .article__header {
    margin-bottom: 2.92398%; }
    .article__header a {
      min-height: 0;
      height: 235px;
      overflow: hidden; }
      .article__header a img {
        max-width: none;
        position: absolute;
        top: 50%;
        left: 50%;
        -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%); }
        .article__header a img.taller {
          height: auto;
          width: 100%; }
        .article__header a img.wider {
          width: auto;
          height: 100%; }
        .article__header a img.equal {
          width: 100%;
          height: 100%; }
  .article__main {
    top: 0; }
  .article__subtitle, .article__title {
    margin: 0;
    font-weight: 400; }
  .article__subtitle {
    font-size: 27px;
    font-size: 1.6875rem;
    text-transform: uppercase; }
  .article__title {
    font-size: 36px;
    font-size: 2.25rem;
    text-transform: lowercase; }
  .article#article--thehands .article__subtitle, .article#article--thehands .article__title {
    color: #ba0018; }
  .article#article--theheart .article__subtitle, .article#article--theheart .article__title {
    color: #8A235C; }
  .article#article--thehead .article__subtitle, .article#article--thehead .article__title {
    color: #56408A; }

.instagram-slide, .fts-instagram-wrapper {
  position: relative;
  height: calc(100vw - 80px) !important;
  transition: background 800ms 400ms, -webkit-filter 400ms, -webkit-transform 400ms;
  transition: background 800ms 400ms, filter 400ms, transform 400ms;
  transition: background 800ms 400ms, filter 400ms, transform 400ms, -webkit-filter 400ms, -webkit-transform 400ms;
  -webkit-transform: scale(0.8);
  -ms-transform: scale(0.8);
  transform: scale(0.8);
  color: #ffffff;
  border-radius: 50%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  /*grayscale for background image

    -webkit-filter: grayscale(1);
    -webkit-filter: grayscale(100%);
       -moz-filter: grayscale(100%);
            filter: gray;
            filter: grayscale(100%);
            filter: url('data:image/svg+xml;utf8,<svg version=\'1.1\' xmlns=\'http://www.w3.org/2000/svg\' height=\'0\'><filter id=\'greyscale\'><feColorMatrix type=\'matrix\' values=\'0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0\' /></filter></svg>#greyscale');
    */ }
  @media (min-width: 40.063em) {
    .instagram-slide, .fts-instagram-wrapper {
      height: 33.3333vw !important; } }
  .instagram-slide.slick-center, .fts-instagram-wrapper.slick-center {
    z-index: 100;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    /*
        background-color: red;
        grayscale for background image

        -webkit-filter: grayscale(10);
        -webkit-filter: grayscale(0%);
           -moz-filter: grayscale(0%);
                filter: gray;
                filter: grayscale(0%);
                filter: none;
        background-blend-mode: multiply;*/ }
  .instagram-slide__content, .fts-instagram-wrapper__content {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%); }
  .instagram-slide__favs-comments-container, .fts-instagram-wrapper__favs-comments-container {
    position: relative;
    width: 50%;
    text-align: center;
    margin: 0 auto; }
    .instagram-slide__favs-comments-container p, .fts-instagram-wrapper__favs-comments-container p {
      display: inline-block;
      margin-top: 0;
      font-size: 18px;
      font-size: 1.125rem; }
      .instagram-slide__favs-comments-container p:before, .fts-instagram-wrapper__favs-comments-container p:before {
        display: block;
        width: 16px;
        height: 15px;
        content: ''; }
  .instagram-slide__favs, .fts-instagram-wrapper__favs {
    margin-right: 35px; }
    @media (min-width: 40.063em) {
      .instagram-slide__favs, .fts-instagram-wrapper__favs {
        margin-right: 10px; } }
    @media (min-width: 60.063em) {
      .instagram-slide__favs, .fts-instagram-wrapper__favs {
        margin-right: 35px; } }
    .instagram-slide__favs:before, .fts-instagram-wrapper__favs:before {
      background-image: url("img/icon_heart.svg"); }
  .instagram-slide__comments:before, .fts-instagram-wrapper__comments:before {
    background-image: url("img/icon_comments.svg"); }
  .instagram-slide__hash-tags, .fts-instagram-wrapper__hash-tags {
    position: relative;
    display: block;
    width: 100%;
    padding: 0;
    margin: 0;
    text-align: center; }
    .instagram-slide__hash-tags li:before, .fts-instagram-wrapper__hash-tags li:before {
      content: none; }
  .instagram-slide__hash-tag, .fts-instagram-wrapper__hash-tag {
    display: inline; }
  .instagram-slide .fts-insta-likes-comments-grab-popup, .fts-instagram-wrapper .fts-insta-likes-comments-grab-popup {
    position: absolute;
    top: calc(50% + 100px);
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 100;
    width: 100%;
    text-align: center; }
    .instagram-slide .fts-insta-likes-comments-grab-popup .slicker-instaG-backg-link, .fts-instagram-wrapper .fts-insta-likes-comments-grab-popup .slicker-instaG-backg-link {
      display: none; }
    .instagram-slide .fts-insta-likes-comments-grab-popup .slicker-date, .fts-instagram-wrapper .fts-insta-likes-comments-grab-popup .slicker-date {
      display: none; }
    .instagram-slide .fts-insta-likes-comments-grab-popup ul, .fts-instagram-wrapper .fts-insta-likes-comments-grab-popup ul {
      padding: 0;
      position: initial; }
      .instagram-slide .fts-insta-likes-comments-grab-popup ul li, .fts-instagram-wrapper .fts-insta-likes-comments-grab-popup ul li {
        font-size: 18px !important; }
        .instagram-slide .fts-insta-likes-comments-grab-popup ul li:before, .fts-instagram-wrapper .fts-insta-likes-comments-grab-popup ul li:before {
          background-image: none; }
      .instagram-slide .fts-insta-likes-comments-grab-popup ul .fts-comment-instagram::before, .fts-instagram-wrapper .fts-insta-likes-comments-grab-popup ul .fts-comment-instagram::before {
        font-size: inherit !important; }

.no-svg .instagram-slide__favs:before {
  background-image: url("img/icon_heart.png"); }

.no-svg .instagram-slide__comments:before {
  background-image: url("img/icon_comments.png"); }

.bubble-slider.slick-initialized {
  z-index: 200; }
  .bubble-slider.slick-initialized .slick-list {
    overflow: visible; }

.bubble-slider__slide {
  position: relative;
  margin: 0 45px; }
  @media (min-width: 60.063em) {
    .bubble-slider__slide {
      margin: 0 40px; } }
  @media (min-width: 60.063em) {
    .bubble-slider__slide {
      margin: 0 80px; } }

.bubble-slider__images-container {
  position: relative;
  max-width: 650px;
  margin: 0 auto; }

.bubble-slider__title--bubble {
  display: none; }
  @media (min-width: 40.063em) {
    .bubble-slider__title--bubble {
      position: absolute;
      top: -10px;
      left: -98px;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      width: 39.96101%;
      max-width: 225px;
      height: 39.96101%;
      max-height: 225px;
      transition: opacity 400ms;
      opacity: 0;
      border: 8px solid #ffffff;
      border-radius: 50%;
      background-color: rgba(138, 35, 92, 0.8);
      -webkit-justify-content: center;
      -ms-flex-pack: center;
      justify-content: center;
      -webkit-align-items: center;
      -ms-flex-align: center;
      align-items: center; } }
  .bubble-slider__title--bubble h3 {
    font-weight: 400;
    max-width: 90%;
    text-align: center;
    color: #ffffff; }
    @media (min-width: 40.063em) {
      .bubble-slider__title--bubble h3 {
        font-size: 21.6px;
        font-size: 1.35rem; } }

.bubble-slider__featured-image {
  width: 100%;
  max-width: 525px;
  height: 100%;
  border-radius: 50%;
  margin: 0 auto; }
  @media (max-height: 800px) {
    .bubble-slider__featured-image {
      max-width: 400px; } }

.bubble-slider__secondary-image-1 {
  position: absolute;
  top: 50px;
  right: -87px;
  display: none !important;
  width: 31.38402%;
  max-width: 195px;
  transition: all 300ms ease;
  opacity: 0;
  border: 8px solid #ffffff;
  border-radius: 50%; }
  @media (min-width: 60.063em) {
    .bubble-slider__secondary-image-1 {
      display: block !important; } }

.bubble-slider__secondary-image-2 {
  position: absolute;
  right: 0;
  bottom: 0;
  display: none !important;
  width: 31.38402%;
  max-width: 175px;
  transition: all 300ms ease;
  opacity: 0;
  border: 13px solid #ffffff;
  border-radius: 50%; }
  @media (min-width: 60.063em) {
    .bubble-slider__secondary-image-2 {
      display: block !important; } }

.bubble-slider__slide.slick-current .bubble-slider__title--bubble,
.bubble-slider__slide.slick-current .bubble-slider__secondary-image-1,
.bubble-slider__slide.slick-current .bubble-slider__secondary-image-2 {
  opacity: 1; }

.bubble-slider__slide.slick-current .bubble-slider__title--bubble {
  transition-delay: 200ms; }

.bubble-slider__slide.slick-current .bubble-slider__secondary-image-1 {
  transition-delay: 400ms; }

.bubble-slider__slide.slick-current .bubble-slider__secondary-image-2 {
  transition-delay: 800ms; }

.bubble-slider .slick-arrow {
  position: absolute;
  z-index: 200;
  top: 100%;
  height: 43px;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%); }
  .bubble-slider .slick-arrow:hover {
    cursor: pointer; }
  .bubble-slider .slick-arrow.slick-prev {
    left: 10px; }
    @media (min-width: 60.063em) {
      .bubble-slider .slick-arrow.slick-prev {
        left: 195px; } }
  .bubble-slider .slick-arrow.slick-next {
    right: 10px; }
    @media (min-width: 60.063em) {
      .bubble-slider .slick-arrow.slick-next {
        right: 195px; } }

.bubble-slider_bg.slick-initialized {
  display: none; }
  @media (min-width: 40.063em) {
    .bubble-slider_bg.slick-initialized {
      z-index: 100;
      display: block; }
      .bubble-slider_bg.slick-initialized .bubble-slider_bg__slide img {
        width: 100%; } }
  @media (min-width: 60.063em) {
    .bubble-slider_bg.slick-initialized {
      z-index: 100; } }
  .bubble-slider_bg.slick-initialized .slick-list {
    overflow: visible; }

.bubble-copy-slider__slide:focus {
  outline: none; }

.bubble-copy-slider__copy {
  text-align: center; }

.bubble-copy-slider__subtitle {
  margin-bottom: .7em;
  opacity: .6;
  color: #CE3218;
  font-size: 36px;
  font-size: 2.25rem; }
  .bubble-copy-slider__subtitle:hover {
    cursor: pointer; }

.bubble-copy-slider__title {
  font-weight: 400;
  margin: 0;
  opacity: 0;
  color: #CE3218;
  font-size: 36px;
  font-size: 2.25rem; }

.bubble-copy-slider__content {
  opacity: 0; }

.bubble-copy-slider__cta {
  display: block;
  max-width: 200px;
  margin: 0 auto;
  opacity: 0; }

.bubble-copy-slider__slide.slick-current .bubble-copy-slider__subtitle {
  transition: all 400ms;
  transition-delay: 200ms;
  opacity: 1;
  color: #8A235C; }

.bubble-copy-slider__slide.slick-current .bubble-copy-slider__title {
  transition: all 400ms;
  transition-delay: 250ms;
  opacity: 1;
  color: #8A235C; }

.bubble-copy-slider__slide.slick-current .bubble-copy-slider__content {
  transition: all 400ms;
  transition-delay: 300ms;
  opacity: 1; }

.bubble-copy-slider__slide.slick-current .bubble-copy-slider__cta {
  transition: all 400ms;
  transition-delay: 400ms;
  opacity: 1; }

.footer {
  min-height: 400px;
  background-color: #ba0018;
  background: url("img/footer-bg.png") center center no-repeat;
  background-size: cover;
  position: relative;
  z-index: 10;
  margin-top: 200px;
  margin-top: 229px;
  padding-bottom: 95px; }
  @media (min-width: 60.063em) {
    .footer {
      margin-top: 0; } }
  .footer__content {
    padding: 0 2.92398%;
    max-width: 1024px;
    margin-left: auto;
    margin-right: auto; }
    .footer__content:after {
      content: " ";
      display: block;
      clear: both; }
    @media calc {
      .footer__content {
        padding: 0 0; } }
  .footer img {
    vertical-align: top; }
  @media (min-width: 60.063em) {
    .footer:before {
      content: '';
      position: absolute;
      top: -200px;
      width: 100%;
      height: 200px;
      left: 0;
      background: url("img/pre-footer-fade.png") repeat-x left top transparent; }
      .home .footer:before {
        content: none; } }
  .footer .facebook-feed {
    overflow: hidden;
    width: 100%;
    float: left;
    margin-left: 0;
    margin-right: 0;
    z-index: 100;
    position: relative; }
    @media (min-width: 60.063em) {
      .footer .facebook-feed {
        margin-top: 0;
        padding: 0;
        width: 48.53801%;
        float: right;
        margin-right: 0; } }
    .footer .facebook-feed__content {
      padding: 0 2.92398%; }
    .footer .facebook-feed__title {
      font-weight: 400; }
    .footer .facebook-feed .fts-jal-fb-header {
      display: none; }
    .footer .facebook-feed .fts-likes-shares-etc-wrap a, .footer .facebook-feed .fts-simple-fb-wrapper, .footer .facebook-feed .fts-jal-fb-post-time {
      color: #ffffff; }
    .footer .facebook-feed .fts-jal-fb-user-name {
      color: #ffffff; }
      .footer .facebook-feed .fts-jal-fb-user-name a {
        color: #FEE934; }
    .footer .facebook-feed .fts-album-photos-wrap {
      display: none; }
    .footer .facebook-feed .fts-powered-by-text {
      display: none !important; }
  .footer .contact-details {
    margin-bottom: 2.92398%;
    width: 100%;
    float: left;
    margin-left: 0;
    margin-right: 0; }
    @media (min-width: 60.063em) {
      .footer .contact-details {
        padding: 0;
        width: 31.38402%;
        float: left;
        margin-right: 2.92398%; } }
    .footer .contact-details__title {
      font-weight: 400; }
    .footer .contact-details__phone, .footer .contact-details__email {
      display: block;
      color: #ffffff; }
      .footer .contact-details__phone:before, .footer .contact-details__email:before {
        margin-right: 1em; }
    .footer .contact-details__phone:before {
      position: relative;
      display: inline-block;
      width: 18px;
      height: 18px;
      content: '';
      background-image: url("img/icon_phone_small.svg");
      background-size: 18px 18px; }
    .footer .contact-details__email:before {
      position: relative;
      display: inline-block;
      width: 21px;
      height: 18px;
      content: '';
      background-image: url("img/icon_email_small.svg");
      background-size: 21px 18px; }
  .footer .social-media-links {
    margin-bottom: 2.92398%;
    text-align: center;
    width: 100%;
    float: left;
    padding-left: 2.84091%;
    padding-right: 2.84091%; }
    @media (min-width: 60.063em) {
      .footer .social-media-links {
        margin-top: 2.25rem;
        padding: 0;
        text-align: left;
        width: 14.23002%;
        float: left;
        margin-right: 2.92398%; } }
    .footer .social-media-links img {
      margin-right: 10px; }

.no-svg .contact-details__phone {
  background-image: url("img/icon_email_small.png"); }

.no-svg .contact-details__email {
  background-image: url("img/icon_email_small.png"); }

.header {
  position: absolute;
  width: 100%; }
  .header .title-bar {
    top: 12px;
    left: -98px;
    z-index: 600;
    background-position-x: -30px; }
    @media (min-width: 40.063em) {
      .header .title-bar {
        background-position-x: 0; } }
    @media (min-width: 60.063em) {
      .header .title-bar {
        top: 15px;
        left: -167px; } }
  .header .contact-info-sticky {
    position: absolute;
    top: -200px;
    right: 2.92398%;
    display: block; }
    @media (min-width: 40.063em) {
      .header .contact-info-sticky {
        top: -240px;
        right: 36px; } }
    .header .contact-info-sticky.opened {
      position: fixed; }
  .header .main-nav__bird {
    display: none; }
    @media (min-width: 60.063em) {
      .header .main-nav__bird {
        position: fixed;
        z-index: 600;
        bottom: 20px;
        left: 35px;
        display: block;
        visibility: hidden;
        width: 150px;
        height: 25px;
        transition: all 1000ms;
        opacity: 0; }
        .header .main-nav__bird.visible, .header .main-nav__bird.sub-page-visible {
          visibility: visible;
          opacity: 1; } }
  .header .main-nav__text {
    display: none; }
    @media (min-width: 60.063em) {
      .header .main-nav__text {
        position: fixed;
        z-index: 600;
        bottom: 2px;
        left: 96px;
        color: white;
        font-size: 12px;
        display: block;
        visibility: hidden;
        transition: all 1000ms;
        opacity: 0; }
        .header .main-nav__text.visible, .header .main-nav__text.sub-page-visible {
          visibility: visible;
          opacity: 1; } }
  .header .contact-info-horizontal {
    display: none; }
    @media (min-width: 40.063em) {
      .header .contact-info-horizontal {
        display: block;
        position: fixed;
        z-index: 600;
        bottom: 15px;
        right: 2.92398%; } }
    @media (min-width: 700px) {
      .header .contact-info-horizontal {
        right: 70px; } }
  .header .menu-wrapper {
    position: fixed;
    z-index: 400;
    bottom: 0;
    width: 100%;
    height: 95px;
    background: transparent url("img/red_nav_brush_350.png") center bottom no-repeat;
    background-size: 100% 100%; }
    @media (min-width: 350px) {
      .header .menu-wrapper {
        background-image: url("img/red_nav_brush_700.png"); } }
    @media (min-width: 700px) {
      .header .menu-wrapper {
        background-image: url("img/red_nav_brush_1280.png"); } }
    @media (min-width: 1280px) {
      .header .menu-wrapper {
        background-image: url("img/red_nav_brush_1900.png"); } }
    @media (min-width: 40.063em) {
      .header .menu-wrapper .desktop-nav {
        width: 74.26901%;
        float: left; } }
    @media (min-width: 60.063em) {
      .header .menu-wrapper .desktop-nav {
        width: 65.69201%;
        float: left;
        margin-left: 17.154%;
        margin-right: -100%; } }

/*
main {
    top: -138px;
    position: relative;
    @include susy-breakpoint($susy-bp-large) {
        top: -219px;
    }
}
*/
.take-over-menu {
  position: fixed;
  z-index: 700;
  left: -10000px;
  width: 100%;
  height: 100%;
  opacity: 0.0;
  transition: left 0s linear 500ms, opacity 500ms linear;
  background-color: #052f8f; }
  .take-over-menu.opened {
    left: 0;
    opacity: 1.0;
    transition: opacity 500ms; }
  .take-over-menu__container {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%); }
    @media (min-width: 60.063em) {
      .take-over-menu__container {
        max-width: 1024px;
        margin-left: auto;
        margin-right: auto; }
        .take-over-menu__container:after {
          content: " ";
          display: block;
          clear: both; } }
  .take-over-menu__content {
    color: #ffffff;
    width: 100%;
    float: left;
    padding-left: 2.84091%;
    padding-right: 2.84091%; }
    @media (min-width: 40.063em) {
      .take-over-menu__content {
        width: 82.846%;
        float: left;
        margin-left: 8.577%;
        margin-right: -100%; } }
    .take-over-menu__content a {
      color: #ffffff;
      text-decoration: underline; }
  .take-over-menu__slider .slick-arrow {
    position: absolute;
    top: 50%;
    height: 50px;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%); }
    @media (min-width: 40.063em) {
      .take-over-menu__slider .slick-arrow {
        height: 75px; } }
    @media (min-width: 60.063em) {
      .take-over-menu__slider .slick-arrow {
        height: 103px; } }
    .take-over-menu__slider .slick-arrow:hover {
      cursor: pointer; }
    .take-over-menu__slider .slick-arrow.slick-prev {
      left: calc(-41px - .5em); }
      @media (min-width: 60.063em) {
        .take-over-menu__slider .slick-arrow.slick-prev {
          left: calc(-55px - 1em); } }
    .take-over-menu__slider .slick-arrow.slick-next {
      right: calc(-41px - .5em); }
      @media (min-width: 60.063em) {
        .take-over-menu__slider .slick-arrow.slick-next {
          right: calc(-55px - 1em); } }

.page-header {
  position: relative;
  width: 100%;
  margin-bottom: -50px; }
  .page-header__fade {
    position: absolute;
    bottom: 0;
    height: 168px;
    width: 100%; }

.round-image-quote {
  position: relative;
  max-width: 1024px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 2.92398%; }
  .round-image-quote:after {
    content: " ";
    display: block;
    clear: both; }
  @media calc {
    .round-image-quote {
      padding: 0; } }
  .round-image-quote__image-wrapper {
    position: relative;
    width: 64.65863%;
    margin: 0 auto;
    transition: all 200ms; }
    .round-image-quote__image-wrapper:before {
      display: block;
      width: 100%;
      padding-top: 100%;
      content: ''; }
    .round-image-quote__image-wrapper > .content {
      position: absolute;
      top: 0;
      right: 0;
      bottom: 0;
      left: 0; }
    @media (min-width: 40.063em) {
      .round-image-quote__image-wrapper {
        width: 46.98795%;
        max-width: 300px; } }
    @media (min-width: 60.063em) {
      .round-image-quote__image-wrapper {
        width: 22.80702%;
        float: left;
        margin-right: 2.92398%;
        padding: 0; } }
  .round-image-quote__image {
    border-radius: 50%; }
  .round-image-quote__quote-wrapper {
    width: 82.32932%;
    margin: 0 auto;
    position: relative;
    transition: all 200ms;
    text-align: center; }
    @media (min-width: 40.063em) {
      .round-image-quote__quote-wrapper {
        width: 82.32932%; } }
    @media (min-width: 60.063em) {
      .round-image-quote__quote-wrapper {
        width: 74.26901%;
        float: right;
        margin-right: 0;
        text-align: left; } }
  .round-image-quote__quote-text {
    transition: all 200ms;
    line-height: 1.2; }
    @media (min-width: 60.063em) {
      .round-image-quote__quote-text {
        position: absolute;
        top: 50%;
        left: 0;
        -webkit-transform: translate(0, -50%);
        -ms-transform: translate(0, -50%);
        transform: translate(0, -50%); } }
  .round-image-quote__quote {
    font-size: 24px;
    font-size: 1.5rem;
    margin-left: 0;
    margin-right: 1rem;
    color: #052F8F; }
    @media (min-width: 60.063em) {
      .round-image-quote__quote {
        font-size: 32px;
        font-size: 2rem; } }
  .round-image-quote__author {
    font-size: 18px;
    font-size: 1.125rem; }

.article-section {
  position: relative;
  width: 100%;
  margin-top: -86px;
  padding-bottom: 168px;
  background-color: #F3F4E8; }
  .article-section__top-fade {
    width: 100%;
    height: 116px;
    margin-top: 2.92398%; }
  .article-section__container {
    max-width: 1024px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 2.92398%; }
    .article-section__container:after {
      content: " ";
      display: block;
      clear: both; }
    @media calc {
      .article-section__container {
        padding: 0; } }
  .article-section__title {
    color: #ba0018;
    margin-top: 0;
    font-size: 30px;
    font-size: 1.875rem;
    font-weight: 400;
    max-width: 1024px;
    margin-left: auto;
    margin-right: auto;
    text-align: left; }
    .article-section__title:after {
      content: " ";
      display: block;
      clear: both; }
    .article-section__title strong {
      font-size: 48px;
      font-size: 3rem;
      font-weight: 400; }
    @media (min-width: 40.063em) {
      .article-section__title {
        font-size: 50px;
        font-size: 3.125rem; }
        .article-section__title strong {
          font-size: 80px;
          font-size: 5rem;
          margin-left: 1em;
          display: block;
          text-align: left; } }
  .article-section__cta {
    content: "";
    display: table;
    table-layout: fixed;
    margin: 2.92398% auto; }
  .article-section__bottom-fade {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 168px;
    content: "";
    display: table;
    table-layout: fixed; }
  .article-section__columns-wrapper {
    content: "";
    display: table;
    table-layout: fixed;
    max-width: 1024px;
    margin-left: auto;
    margin-right: auto; }
    .article-section__columns-wrapper:after {
      content: " ";
      display: block;
      clear: both; }
  .article-section__column {
    margin-bottom: 2.92398%; }
  .article-section--three-columns .article-section__column {
    content: "";
    display: table;
    table-layout: fixed;
    width: 100%;
    float: left;
    margin-left: 0;
    margin-right: 0; }
    @media (min-width: 40.063em) {
      .article-section--three-columns .article-section__column {
        width: 31.38402%;
        float: left;
        margin-right: 2.92398%; }
        .article-section--three-columns .article-section__column:nth-of-type(3n) {
          width: 31.38402%;
          float: right;
          margin-right: 0; } }

.instagram-widget__title {
  font-weight: 400;
  margin: 0;
  text-align: center;
  color: #ba0018;
  font-size: 40px;
  font-size: 2.5rem;
  max-width: 1024px;
  margin-left: auto;
  margin-right: auto; }
  .instagram-widget__title:after {
    content: " ";
    display: block;
    clear: both; }
  @media (min-width: 40.063em) {
    .instagram-widget__title {
      font-size: 50px;
      font-size: 3.125rem; } }
  .instagram-widget__title strong {
    font-weight: 400;
    display: block;
    font-size: 64px;
    font-size: 4rem; }
    @media (min-width: 40.063em) {
      .instagram-widget__title strong {
        font-size: 80px;
        font-size: 5rem; } }

.instagram-widget__description {
  color: #2C2C2C;
  text-align: center;
  font-size: 18px;
  font-size: 1.125rem;
  margin: 0; }

.instagram-widget__red-line {
  display: block;
  margin: 0 auto 10px; }

.instagram-widget__slider, .instagram-widget .fts-instagram-inline-block-centered {
  width: 100%;
  position: relative; }
  .instagram-widget__slider .slick-arrow, .instagram-widget .fts-instagram-inline-block-centered .slick-arrow {
    position: absolute;
    top: 50%;
    height: 43px;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    z-index: 200; }
    .instagram-widget__slider .slick-arrow:hover, .instagram-widget .fts-instagram-inline-block-centered .slick-arrow:hover {
      cursor: pointer; }
    .instagram-widget__slider .slick-arrow.slick-prev, .instagram-widget .fts-instagram-inline-block-centered .slick-arrow.slick-prev {
      left: 10px; }
      @media (min-width: 40.063em) {
        .instagram-widget__slider .slick-arrow.slick-prev, .instagram-widget .fts-instagram-inline-block-centered .slick-arrow.slick-prev {
          left: 2.92398%; } }
    .instagram-widget__slider .slick-arrow.slick-next, .instagram-widget .fts-instagram-inline-block-centered .slick-arrow.slick-next {
      right: 10px; }
      @media (min-width: 40.063em) {
        .instagram-widget__slider .slick-arrow.slick-next, .instagram-widget .fts-instagram-inline-block-centered .slick-arrow.slick-next {
          right: 2.92398%; } }

.bubble-slider-section {
  position: relative;
  display: block;
  overflow-x: hidden;
  width: 100%;
  margin-top: -86px;
  padding-top: 2.92398%;
  padding-bottom: 168px;
  background-color: #F3F4E8; }
  @media (min-width: 40.063em) {
    .bubble-slider-section {
      display: block; } }
  .bubble-slider-section > div {
    opacity: 0; }
    .bubble-slider-section > div.slick-initialized {
      transition: opacity 400ms;
      opacity: 1; }
  .bubble-slider-section__top-fade {
    display: block;
    width: 100%;
    height: 116px;
    margin-top: 2.92398%; }
  .bubble-slider-section__bottom-fade {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 168px;
    content: "";
    display: table;
    table-layout: fixed; }

.page-template-default main {
  overflow: hidden; }

@media (min-width: 60.063em) {
  article.page {
    padding-bottom: 200px; } }

article.page .page-content {
  position: relative;
  padding-left: 20px;
  padding-right: 20px; }
  @media (min-width: 60.063em) {
    article.page .page-content {
      padding-left: 0;
      padding-right: 0; } }
  article.page .page-content .inner {
    max-width: 849px;
    margin: 0 auto; }
    article.page .page-content .inner h1 {
      color: #ba0018;
      font-weight: normal; }
    article.page .page-content .inner h2 {
      color: #052F8F;
      font-weight: normal; }
    article.page .page-content .inner blockquote {
      font-size: 16px;
      font-size: 1rem;
      line-height: 1.2;
      text-align: center;
      color: #595959;
      padding: 80px 0;
      position: relative;
      width: 85%;
      margin-left: auto;
      margin-right: auto; }
      article.page .page-content .inner blockquote p:nth-child(1) {
        font-size: 22.4px;
        font-size: 1.4rem;
        color: gray; }
      article.page .page-content .inner blockquote:before, article.page .page-content .inner blockquote:after {
        content: url("img/yellow-line.svg");
        left: 50%;
        position: absolute;
        width: 50%;
        -webkit-transform: translate(-50%, 0);
        -ms-transform: translate(-50%, 0);
        transform: translate(-50%, 0); }
      article.page .page-content .inner blockquote:before {
        top: 40px; }
      article.page .page-content .inner blockquote:after {
        bottom: 40px; }
    article.page .page-content .inner iframe {
      max-width: 100%; }
  article.page .page-content a {
    text-decoration: underline; }
  article.page .page-content img.size-page-top, article.page .page-content img.size-full-width {
    width: 101vw;
    max-width: 101vw;
    position: relative;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    transform: translate(-50%, 0); }
  article.page .page-content .wp-caption {
    border: 0 none;
    text-align: left; }

@media (min-width: 60.063em) {
  article.page.splodges .page-header:after {
    content: url("img/themes/splodges/splodges-1.png");
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 100; }
  article.page.splodges .page-content:before {
    content: url("img/themes/splodges/splodges-2.png");
    position: absolute;
    top: 300px;
    right: 0;
    z-index: -1; }
  article.page.splodges .page-content:after {
    content: url("img/themes/splodges/splodges-3.png");
    position: absolute;
    top: 1200px;
    left: 0; }
  article.page.splodges .page-content .full-width-container:before {
    content: url("img/themes/splodges/splodges-4.png");
    right: 0;
    position: absolute;
    z-index: 9;
    -webkit-transform: translate(0, 190px);
    -ms-transform: translate(0, 190px);
    transform: translate(0, 190px); }
  article.page.mono-pencils:before {
    content: url("img/themes/pencils_mono/pencils-m-1.png");
    position: absolute;
    right: 0;
    top: calc(101vh + 20px);
    z-index: 10; }
  article.page.mono-pencils:after {
    content: url("img/themes/pencils_mono/pencils-m-2.png");
    position: absolute;
    left: 0;
    top: calc(101vh + 350px);
    z-index: 10; }
  article.page.mono-pencils .page-content .full-width-container {
    position: relative;
    margin-top: 150px; }
    article.page.mono-pencils .page-content .full-width-container:before {
      content: '';
      background-image: url("img/themes/pencils_mono/pencils-m-3.png");
      height: 150px;
      top: -140px;
      left: 50%;
      -webkit-transform: translate(-50%, 0);
      -ms-transform: translate(-50%, 0);
      transform: translate(-50%, 0);
      background-size: cover;
      position: absolute;
      width: 101vw;
      z-index: 9; }
    article.page.mono-pencils .page-content .full-width-container img {
      position: relative;
      z-index: 10; }
  article.page.mono-pencils .page-content:after {
    content: url("img/themes/pencils_mono/pencils-m-4.png");
    position: absolute;
    left: 0;
    top: 1650px;
    z-index: -1; }
  article.page.bright-pencils:before {
    content: url("img/themes/pencils_colour/pencils-c-1.png");
    position: absolute;
    left: 0;
    top: calc(101vh + 20px);
    z-index: 10; }
  article.page.bright-pencils:after {
    content: url("img/themes/pencils_colour/pencils-c-2.png");
    position: absolute;
    right: 0;
    top: calc(101vh + 350px);
    z-index: -1; }
  article.page.bright-pencils .page-content .full-width-container {
    margin-top: 100px;
    position: relative; }
    article.page.bright-pencils .page-content .full-width-container:before {
      content: url("img/themes/pencils_colour/pencils-c-3.png");
      position: absolute;
      left: calc(-50vw + 425px);
      z-index: 11;
      top: -38px; }
    article.page.bright-pencils .page-content .full-width-container:after {
      content: url("img/themes/pencils_colour/pencils-c-4.png");
      position: absolute;
      right: calc(-50vw + 425px);
      bottom: -72px;
      z-index: 9; }
    article.page.bright-pencils .page-content .full-width-container img {
      position: relative;
      z-index: 10; }
  article.page.bright-pencils .page-content:after {
    content: url("img/themes/pencils_colour/pencils-c-5.png");
    position: absolute;
    left: 0;
    top: 1650px;
    z-index: -1; }
  article.page.mandala-mono:before {
    content: url("img/themes/mandalas_mono/mandalas-m-1.png");
    position: absolute;
    right: 0;
    top: 101vh; }
  article.page.mandala-mono:after {
    content: url("img/themes/mandalas_mono/mandalas-m-4.png");
    position: absolute;
    left: 0;
    top: calc(101vh + 1100px); }
  article.page.mandala-mono .page-content .full-width-container {
    margin-top: 100px;
    position: relative; }
    article.page.mandala-mono .page-content .full-width-container:before {
      content: url("img/themes/mandalas_mono/mandalas-m-2.png");
      position: absolute;
      left: calc(-50vw + 425px);
      z-index: 11;
      top: -60px; }
  article.page.mandala-colour:before {
    content: url("img/themes/mandalas_colour/mandala-c-1.png");
    position: absolute;
    right: 0;
    top: 101vh; }
  article.page.mandala-colour:after {
    content: url("img/themes/mandalas_colour/mandala-c-2.png");
    position: absolute;
    left: 0;
    top: calc(101vh + 430px);
    z-index: -1; }
  article.page.mandala-colour .page-content:before {
    content: url("img/themes/mandalas_colour/mandala-c-4.png");
    position: absolute;
    left: 0;
    top: 1500px;
    z-index: -1; }
  article.page.mandala-colour .page-content .full-width-container:before {
    content: url("img/themes/mandalas_colour/mandala-c-3.png");
    right: 0;
    position: absolute;
    z-index: -1;
    -webkit-transform: translate(0, 190px);
    -ms-transform: translate(0, 190px);
    transform: translate(0, 190px); } }

.error404 .page-content .inner {
  padding-top: 300px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 300px; }

::-moz-selection {
  background: #04A4CC;
  color: #FFF;
  text-shadow: none; }

::selection {
  background: #04A4CC;
  color: #FFF;
  text-shadow: none; }

::-webkit-selection {
  background: #04A4CC;
  color: #FFF;
  text-shadow: none; }

::-moz-selection {
  background: #04A4CC;
  color: #FFF;
  text-shadow: none; }
