@charset "UTF-8";
/* ==========================================================================


Theme Name: Project
Theme URI: 
Author: Project
Description: Project WordPress theme.
Version: 1.0
   
   1. Reset
   2. Base styles: opinionated defaults
   3. Variables
   4. Mixins
   5. Fonts
   6. Custom styles
   7. Browser Fixes
   8. Responsive
   
   */
/* ==========================================================================
   0. Vendor
   ========================================================================== */
/*
Animate.css - http://daneden.me/animate
Licensed under the MIT license - http://opensource.org/licenses/MIT

Copyright (c) 2015 Daniel Eden
*/
.animated {
  -webkit-animation-duration: .5s;
  animation-duration: .5s;
  -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.bounceIn,
.animated.bounceOut {
  -webkit-animation-duration: .75s;
  animation-duration: .75s; }

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

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

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

.bounce {
  -webkit-animation-name: bounce;
  animation-name: bounce;
  -webkit-transform-origin: center bottom;
  transform-origin: center bottom; }

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

@keyframes flash {
  from, 50%, to {
    opacity: 1; }
  25%, 75% {
    opacity: 0; } }

.flash {
  -webkit-animation-name: flash;
  animation-name: flash; }

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

@keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); }
  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05); }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); } }

.pulse {
  -webkit-animation-name: pulse;
  animation-name: pulse; }

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

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

.rubberBand {
  -webkit-animation-name: rubberBand;
  animation-name: rubberBand; }

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

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

.shake {
  -webkit-animation-name: shake;
  animation-name: shake; }

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

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

.swing {
  -webkit-transform-origin: top center;
  transform-origin: top center;
  -webkit-animation-name: swing;
  animation-name: swing; }

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

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

.tada {
  -webkit-animation-name: tada;
  animation-name: tada; }

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

@keyframes wobble {
  from {
    -webkit-transform: none;
    transform: none; }
  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg); }
  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg); }
  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg); }
  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg); }
  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg); }
  to {
    -webkit-transform: none;
    transform: none; } }

.wobble {
  -webkit-animation-name: wobble;
  animation-name: wobble; }

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

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

.jello {
  -webkit-animation-name: jello;
  animation-name: jello;
  -webkit-transform-origin: center;
  transform-origin: center; }

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

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

.bounceIn {
  -webkit-animation-name: bounceIn;
  animation-name: bounceIn; }

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

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

.bounceInDown {
  -webkit-animation-name: bounceInDown;
  animation-name: bounceInDown; }

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

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

.bounceInLeft {
  -webkit-animation-name: bounceInLeft;
  animation-name: bounceInLeft; }

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

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

.bounceInRight {
  -webkit-animation-name: bounceInRight;
  animation-name: bounceInRight; }

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

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

.bounceInUp {
  -webkit-animation-name: bounceInUp;
  animation-name: bounceInUp; }

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

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

.bounceOut {
  -webkit-animation-name: bounceOut;
  animation-name: bounceOut; }

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

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

.bounceOutDown {
  -webkit-animation-name: bounceOutDown;
  animation-name: bounceOutDown; }

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

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

.bounceOutLeft {
  -webkit-animation-name: bounceOutLeft;
  animation-name: bounceOutLeft; }

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

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

.bounceOutRight {
  -webkit-animation-name: bounceOutRight;
  animation-name: bounceOutRight; }

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

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

.bounceOutUp {
  -webkit-animation-name: bounceOutUp;
  animation-name: bounceOutUp; }

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

@keyframes fadeIn {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }

.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn; }

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

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

.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown; }

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

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

.fadeInDownBig {
  -webkit-animation-name: fadeInDownBig;
  animation-name: fadeInDownBig; }

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

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

.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft; }

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

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

.fadeInLeftBig {
  -webkit-animation-name: fadeInLeftBig;
  animation-name: fadeInLeftBig; }

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

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

.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight; }

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

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

.fadeInRightBig {
  -webkit-animation-name: fadeInRightBig;
  animation-name: fadeInRightBig; }

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

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

.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp; }

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

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

.fadeInUpBig {
  -webkit-animation-name: fadeInUpBig;
  animation-name: fadeInUpBig; }

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

@keyframes fadeOut {
  from {
    opacity: 1; }
  to {
    opacity: 0; } }

.fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut; }

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

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

.fadeOutDown {
  -webkit-animation-name: fadeOutDown;
  animation-name: fadeOutDown; }

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

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

.fadeOutDownBig {
  -webkit-animation-name: fadeOutDownBig;
  animation-name: fadeOutDownBig; }

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

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

.fadeOutLeft {
  -webkit-animation-name: fadeOutLeft;
  animation-name: fadeOutLeft; }

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

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

.fadeOutLeftBig {
  -webkit-animation-name: fadeOutLeftBig;
  animation-name: fadeOutLeftBig; }

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

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

.fadeOutRight {
  -webkit-animation-name: fadeOutRight;
  animation-name: fadeOutRight; }

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

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

.fadeOutRightBig {
  -webkit-animation-name: fadeOutRightBig;
  animation-name: fadeOutRightBig; }

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

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

.fadeOutUp {
  -webkit-animation-name: fadeOutUp;
  animation-name: fadeOutUp; }

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

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

.fadeOutUpBig {
  -webkit-animation-name: fadeOutUpBig;
  animation-name: fadeOutUpBig; }

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

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

.animated.flip {
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
  -webkit-animation-name: flip;
  animation-name: flip; }

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

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

.flipInX {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInX;
  animation-name: flipInX; }

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

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

.flipInY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInY;
  animation-name: flipInY; }

@-webkit-keyframes flipOutX {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px); }
  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1; }
  to {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0; } }

@keyframes flipOutX {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px); }
  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1; }
  to {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0; } }

.flipOutX {
  -webkit-animation-name: flipOutX;
  animation-name: flipOutX;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important; }

@-webkit-keyframes flipOutY {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px); }
  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1; }
  to {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0; } }

@keyframes flipOutY {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px); }
  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1; }
  to {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0; } }

.flipOutY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipOutY;
  animation-name: flipOutY; }

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

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

.lightSpeedIn {
  -webkit-animation-name: lightSpeedIn;
  animation-name: lightSpeedIn;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out; }

@-webkit-keyframes lightSpeedOut {
  from {
    opacity: 1; }
  to {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0; } }

@keyframes lightSpeedOut {
  from {
    opacity: 1; }
  to {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0; } }

.lightSpeedOut {
  -webkit-animation-name: lightSpeedOut;
  animation-name: lightSpeedOut;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in; }

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

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

.rotateIn {
  -webkit-animation-name: rotateIn;
  animation-name: rotateIn; }

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

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

.rotateInDownLeft {
  -webkit-animation-name: rotateInDownLeft;
  animation-name: rotateInDownLeft; }

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

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

.rotateInDownRight {
  -webkit-animation-name: rotateInDownRight;
  animation-name: rotateInDownRight; }

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

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

.rotateInUpLeft {
  -webkit-animation-name: rotateInUpLeft;
  animation-name: rotateInUpLeft; }

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

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

.rotateInUpRight {
  -webkit-animation-name: rotateInUpRight;
  animation-name: rotateInUpRight; }

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

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

.rotateOut {
  -webkit-animation-name: rotateOut;
  animation-name: rotateOut; }

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

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

.rotateOutDownLeft {
  -webkit-animation-name: rotateOutDownLeft;
  animation-name: rotateOutDownLeft; }

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

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

.rotateOutDownRight {
  -webkit-animation-name: rotateOutDownRight;
  animation-name: rotateOutDownRight; }

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

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

.rotateOutUpLeft {
  -webkit-animation-name: rotateOutUpLeft;
  animation-name: rotateOutUpLeft; }

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

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

.rotateOutUpRight {
  -webkit-animation-name: rotateOutUpRight;
  animation-name: rotateOutUpRight; }

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

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

.hinge {
  -webkit-animation-name: hinge;
  animation-name: hinge; }

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

@keyframes rollIn {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg); }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }

.rollIn {
  -webkit-animation-name: rollIn;
  animation-name: rollIn; }

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

@keyframes rollOut {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg); } }

.rollOut {
  -webkit-animation-name: rollOut;
  animation-name: rollOut; }

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

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

.zoomIn {
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn; }

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

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

.zoomInDown {
  -webkit-animation-name: zoomInDown;
  animation-name: zoomInDown; }

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

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

.zoomInLeft {
  -webkit-animation-name: zoomInLeft;
  animation-name: zoomInLeft; }

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

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

.zoomInRight {
  -webkit-animation-name: zoomInRight;
  animation-name: zoomInRight; }

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

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

.zoomInUp {
  -webkit-animation-name: zoomInUp;
  animation-name: zoomInUp; }

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

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

.zoomOut {
  -webkit-animation-name: zoomOut;
  animation-name: zoomOut; }

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

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

.zoomOutDown {
  -webkit-animation-name: zoomOutDown;
  animation-name: zoomOutDown; }

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

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

.zoomOutLeft {
  -webkit-animation-name: zoomOutLeft;
  animation-name: zoomOutLeft; }

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

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

.zoomOutRight {
  -webkit-animation-name: zoomOutRight;
  animation-name: zoomOutRight; }

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

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

.zoomOutUp {
  -webkit-animation-name: zoomOutUp;
  animation-name: zoomOutUp; }

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

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

.slideInDown {
  -webkit-animation-name: slideInDown;
  animation-name: slideInDown; }

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

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

.slideInLeft {
  -webkit-animation-name: slideInLeft;
  animation-name: slideInLeft; }

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

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

.slideInRight {
  -webkit-animation-name: slideInRight;
  animation-name: slideInRight; }

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

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

.slideInUp {
  -webkit-animation-name: slideInUp;
  animation-name: slideInUp; }

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

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

.slideOutDown {
  -webkit-animation-name: slideOutDown;
  animation-name: slideOutDown; }

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

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

.slideOutLeft {
  -webkit-animation-name: slideOutLeft;
  animation-name: slideOutLeft; }

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

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

.slideOutRight {
  -webkit-animation-name: slideOutRight;
  animation-name: slideOutRight; }

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

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

.slideOutUp {
  -webkit-animation-name: slideOutUp;
  animation-name: slideOutUp; }

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent; }

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0; }
  .slick-list:focus {
    outline: none; }
  .slick-list.dragging {
    cursor: pointer;
    cursor: hand; }

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0); }

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto; }
  .slick-track:before, .slick-track:after {
    content: "";
    display: table; }
  .slick-track:after {
    clear: both; }
  .slick-loading .slick-track {
    visibility: hidden; }

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none; }
  [dir="rtl"] .slick-slide {
    float: right; }
  .slick-slide img {
    display: block; }
  .slick-slide.slick-loading img {
    display: none; }
  .slick-slide.dragging img {
    pointer-events: none; }
  .slick-initialized .slick-slide {
    display: block; }
  .slick-loading .slick-slide {
    visibility: hidden; }
  .slick-vertical .slick-slide {
    display: block;
    height: auto;
    border: 1px solid transparent; }

.slick-arrow.slick-hidden {
  display: none; }

/*======================================
  Selectric v1.13.0
======================================*/
.selectric-wrapper {
  position: relative;
  cursor: pointer; }

.selectric-responsive {
  width: 100%; }

.selectric {
  border: 1px solid #DDD;
  border-radius: 0px;
  background: #F8F8F8;
  position: relative;
  overflow: hidden; }

.selectric .label {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin: 0 38px 0 10px;
  font-size: 12px;
  line-height: 38px;
  color: #444;
  height: 38px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }

.selectric .button {
  display: block;
  position: absolute;
  right: 0;
  top: 0;
  width: 38px;
  height: 38px;
  line-height: 38px;
  background-color: #F8f8f8;
  color: #BBB;
  text-align: center;
  font: 0/0 a;
  *font: 20px/38px Lucida Sans Unicode, Arial Unicode MS, Arial; }

.selectric .button:after {
  content: " ";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 0;
  height: 0;
  border: 4px solid transparent;
  border-top-color: #BBB;
  border-bottom: none; }

.selectric-focus .selectric {
  border-color: #aaaaaa; }

.selectric-hover .selectric {
  border-color: #c4c4c4; }

.selectric-hover .selectric .button {
  color: #a2a2a2; }

.selectric-hover .selectric .button:after {
  border-top-color: #a2a2a2; }

.selectric-open {
  z-index: 9999; }

.selectric-open .selectric {
  border-color: #c4c4c4; }

.selectric-open .selectric-items {
  display: block; }

.selectric-disabled {
  filter: alpha(opacity=50);
  opacity: 0.5;
  cursor: default;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }

.selectric-hide-select {
  position: relative;
  overflow: hidden;
  width: 0;
  height: 0; }

.selectric-hide-select select {
  position: absolute;
  left: -100%; }

.selectric-hide-select.selectric-is-native {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 10; }

.selectric-hide-select.selectric-is-native select {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  border: none;
  z-index: 1;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  opacity: 0; }

.selectric-input {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  margin: 0 !important;
  padding: 0 !important;
  width: 1px !important;
  height: 1px !important;
  outline: none !important;
  border: none !important;
  *font: 0/0 a !important;
  background: none !important; }

.selectric-temp-show {
  position: absolute !important;
  visibility: hidden !important;
  display: block !important; }

/* Items box */
.selectric-items {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #F8F8F8;
  border: 1px solid #c4c4c4;
  z-index: -1;
  -webkit-box-shadow: 0 0 10px -6px;
          box-shadow: 0 0 10px -6px; }

.selectric-items .selectric-scroll {
  height: 100%;
  overflow: auto; }

.selectric-above .selectric-items {
  top: auto;
  bottom: 100%; }

.selectric-items ul, .selectric-items li {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 12px;
  line-height: 20px;
  min-height: 20px; }

.selectric-items li {
  display: block;
  padding: 10px;
  color: #666;
  cursor: pointer; }

.selectric-items li.selected {
  background: #E0E0E0;
  color: #444; }

.selectric-items li.highlighted {
  background: #D0D0D0;
  color: #444; }

.selectric-items li:hover {
  background: #D5D5D5;
  color: #444; }

.selectric-items .disabled {
  filter: alpha(opacity=50);
  opacity: 0.5;
  cursor: default !important;
  background: none !important;
  color: #666 !important;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }

.selectric-items .selectric-group .selectric-group-label {
  font-weight: bold;
  padding-left: 10px;
  cursor: default;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background: none;
  color: #444; }

.selectric-items .selectric-group.disabled li {
  filter: alpha(opacity=100);
  opacity: 1; }

.selectric-items .selectric-group li {
  padding-left: 25px; }

/*==========================================================================
   1. Reset
   ========================================================================== */
/*! normalize.css v3.0.1 | MIT License | git.io/normalize */
/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS text size adjust after orientation change, without disabling
 *    user zoom.
 */
html {
  font-family: sans-serif;
  /* 1 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */ }

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

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

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

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

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

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

/**
 * Improve readability when focused and also mouse hovered in all browsers.
 */
a:active,
a:hover {
  outline: 0; }

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

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

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

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

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

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

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

sup {
  top: -0.5em; }

sub {
  bottom: -0.25em; }

/* Embedded content
========================================================================== */
/**
 * Remove border when inside `a` element in IE 8/9/10.
 */
img {
  border: 0; }

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

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

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

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

/**
 * Address odd `em`-unit font size rendering in all browsers.
 */
code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em; }

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

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

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

/**
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *    `input` and others.
 */
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  /* 2 */
  cursor: pointer;
  /* 3 */ }

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

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

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

/**
 * It's recommended that you don't attempt to style these elements.
 * Firefox's implementation doesn't respect box-sizing, padding, or width.
 *
 * 1. Address box sizing set to `content-box` in IE 8/9/10.
 * 2. Remove excess padding in IE 8/9/10.
 */
input[type="checkbox"],
input[type="radio"] {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */ }

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

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

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

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

/**
 * 1. Correct `color` not being inherited in IE 8/9/10/11.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 */
legend {
  border: 0;
  /* 1 */
  padding: 0;
  /* 2 */ }

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

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

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

td,
th {
  padding: 0; }

/* ==========================================================================
   2. Base Styles
   ========================================================================== */
html {
  font-size: 10px; }

body {
  font-size: 1.8rem;
  overflow-x: hidden;
  line-height: inherit; }

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box; }

ul {
  padding: 0;
  margin: 0; }

li {
  list-style-type: none; }

figure {
  margin: 0; }

a {
  color: black; }
  a:hover {
    text-decoration: none;
    color: #666; }

/**************************************************************
Responsive Rem mixin

//If design needs to be scaled up from a small design (if design is smaller than 1920px)
//Site is designed at 1600px
//1 rem = 10px at 1600px
//1 rem = 7.5px at 1200px

Usage: html {
    @include remscale;
}

 */
/***************************************************************/
html {
  font-size: 10px; }
  @media (max-width: 1280px) {
    html {
      font-size: 0.78125vw; } }
  @media (max-width: 767px) {
    html {
      font-size: 10px; } }

/* ==========================================================================
   3. Variables
   ========================================================================== */
/* ==========================================================================
   4. Mixins
   ========================================================================== */
/**************************************************************
-> Usage: @include aspect-ratio(16, 9);
**************************************************************/
/**************************************************************
-> Usage: @include fluid-type(650px, 1600px, 16px, 32px);
**************************************************************/
/**************************************************************
-> Usage: width:get-vw(100px);
**************************************************************/
/* ==========================================================================
   5. Fonts
   ========================================================================== */
@font-face {
  font-family: 'Avenir LT Std';
  src: url("../fonts/AvenirLTStd-Black.woff2") format("woff2"), url("../fonts/AvenirLTStd-Black.woff") format("woff");
  font-weight: 900;
  font-style: normal;
  font-display: swap; }

@font-face {
  font-family: 'Avenir LT Std';
  src: url("../fonts/AvenirLTStd-Roman.woff2") format("woff2"), url("../fonts/AvenirLTStd-Roman.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap; }

body {
  color: #000;
  font-size: 16px;
  font-size: clamp(13px, 1.6rem, 16px);
  font-family: 'Avenir LT Std'; }

p {
  line-height: calc(21/16);
  margin-top: 0;
  margin-bottom: 0.8em; }

h1, h2, h3, h4, h5, h6 {
  line-height: 1em;
  letter-spacing: 0;
  margin: 0 0 0.5em 0;
  font-weight: 900; }

h1, h2 {
  font-size: 4.1rem; }
  @media (max-width: 380px) {
    h1, h2 {
      font-size: 11vw; } }

h3 {
  font-size: 2.1rem; }

/* ==========================================================================
   6. Custom Styles
   ========================================================================== */
.ratio-image {
  overflow: hidden;
  display: block;
  margin: 0;
  position: relative; }
  .ratio-image::before {
    display: block;
    content: "";
    width: 100%;
    padding-top: 50%; }
  .ratio-image > .content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0; }
  .ratio-image img {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    display: block;
    width: 100%; }
    .ratio-image img.height-100 {
      height: 100%;
      width: auto;
      max-width: 1000%; }

@media (min-width: 768px) {
  .container {
    max-width: 1475px;
    padding: 0 20px; } }

.cover-link {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  font-size: 0;
  color: transparent; }

@-webkit-keyframes linkHover {
  0% {
    width: 0; }
  40% {
    width: 0; }
  100% {
    width: 100%; } }

@keyframes linkHover {
  0% {
    width: 0; }
  40% {
    width: 0; }
  100% {
    width: 100%; } }

@-webkit-keyframes animationLeft {
  0% {
    left: 3rem; }
  90% {
    left: 3rem; }
  100% {
    left: -2.2rem; } }

@keyframes animationLeft {
  0% {
    left: 3rem; }
  90% {
    left: 3rem; }
  100% {
    left: -2.2rem; } }

body {
  overflow-x: hidden;
  width: 100vw;
  max-width: 100vw;
  min-width: 100vw; }

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

button:focus,
input:focus {
  outline: 0; }

a {
  color: grey; }

.section__inner {
  width: 100vw;
  overflow-x: hidden; }

.container {
  padding-left: 3.5rem;
  padding-right: 3.5rem;
  border-top: 0;
  border-bottom: 0;
  max-width: 112rem;
  width: 100%;
  margin: 0 auto; }

.row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between; }
  .row > div {
    -webkit-box-sizing: border-box;
            box-sizing: border-box; }

.grid-row {
  display: grid;
  width: 100%; }

.row.align-items-center {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; }

iframe {
  border: 0; }

.browser-update-message {
  text-align: center;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.8);
  z-index: 999; }
  .browser-update-message a {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%); }

.main {
  min-height: 60vh; }

@media (max-width: 991px) {
  .hide-mobile {
    display: none; } }

@media (min-width: 992px) {
  .hide-desktop {
    display: none; } }

.icon {
  width: 3rem; }

.image-zoom {
  overflow: hidden;
  display: block; }

.image-zoom figure,
.image-zoom > a {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out; }
  .image-zoom figure:hover,
  .image-zoom > a:hover {
    -webkit-transform: scale(1.1);
            transform: scale(1.1); }

::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #303538; }

::-moz-placeholder {
  /* Firefox 19+ */
  color: #303538; }

:-ms-input-placeholder {
  /* IE 10+ */
  color: #303538; }

:-moz-placeholder {
  /* Firefox 18- */
  color: #303538; }

.main > p, .main > ul, .main > ol, .main > h1, .main > h2, .main > h3, .main > h4, .main > h5, .main > h6, .main > section.iframe {
  padding-left: 2rem;
  padding-right: 2rem;
  max-width: 1280px;
  margin: 0 auto;
  margin-bottom: 1em;
  margin-top: 1em; }

.main > h3 {
  margin-top: 8rem; }

.main > > ul li {
  list-style-type: disc; }

a:focus {
  outline: none; }

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

.breadcrumbs {
  padding-bottom: 3rem; }

.bg-blue {
  background: #1748A1;
  color: #fff; }

.cen {
  text-align: center; }

.text-style strong {
  color: #1748A1; }

.text-style h1, .text-style h2, .text-style h3 {
  color: #1748A1; }

.text-style ul li {
  margin-bottom: 1em;
  position: relative;
  padding-left: 2rem; }
  @media (max-width: 767px) {
    .text-style ul li {
      margin-bottom: 2rem; } }
  .text-style ul li:before {
    content: '';
    width: 11px;
    height: 15px;
    background: url(../images/list-smile.svg) no-repeat center center;
    background-size: 100% auto;
    display: inline-block;
    position: Absolute;
    top: 0.2rem;
    left: 0; }

.intro-text {
  color: #1748A1;
  font-size: 2.1rem; }

.wysiwyg {
  margin-bottom: 5rem; }

#main__top + .wysiwyg {
  padding-top: 14rem; }

.btn {
  background: #1748A1;
  color: #fff;
  text-decoration: none;
  height: 3.8rem;
  line-height: 3.8rem;
  font-weight: 900;
  text-align: center;
  display: inline-block;
  border-radius: 1.9rem;
  padding: 0 2.3rem; }
  .btn:hover {
    background: #3f6fbb;
    color: #fff; }

.masthead {
  padding-top: 6.2rem;
  padding-bottom: 6.2rem;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 999;
  background: transparent; }
  @media (max-width: 767px) {
    .masthead {
      padding: 3.6rem 0;
      background: #1748A1; } }
  .masthead__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding-left: 4.5rem; }
    @media (max-width: 767px) {
      .masthead__inner {
        padding-left: 3.5rem; } }
  .masthead__logo {
    width: 16.38rem;
    height: 3.25rem; }
    @media (max-width: 767px) {
      .masthead__logo {
        background: url(../images/logo--white.svg) no-repeat center center;
        background-size: 100% auto;
        width: 16.38rem;
        height: 3.25rem; } }
    .masthead__logo img {
      width: 100%; }
      @media (max-width: 767px) {
        .masthead__logo img {
          opacity: 0; } }

.home .masthead {
  background: transparent; }

.home .masthead__logo {
  opacity: 0;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s; }
  @media (max-width: 767px) {
    .home .masthead__logo img {
      width: 100%; } }

/*.header-full .masthead {
  background:transparent;
  padding:6.2rem 0;
  @media (max-width:$md-down) {
    padding:3.8rem 0;
  }
}*/
/*.home.page-is-scrolled {

  .masthead__logo {
    opacity:1;
  }
  .home-hero {
    max-height:0;
  }
  .home-hero__animation {
    transform:translate(-50vw, -30vh);
    max-width:15rem;
  }
}*/
.main-nav--open .masthead__logo,
.home.header-full.main-nav--open .masthead__logo,
.home.page-is-scrolled.main-nav--open .masthead__logo {
  z-index: 9999;
  background: url(../images/logo--white.svg) no-repeat center center;
  background-size: 100% auto;
  width: 16.38rem;
  height: 3.25rem;
  opacity: 1; }
  .main-nav--open .masthead__logo img,
  .home.header-full.main-nav--open .masthead__logo img,
  .home.page-is-scrolled.main-nav--open .masthead__logo img {
    opacity: 0 !important; }

.masthead__mastnav {
  color: #fff;
  padding: 8rem 0; }
  .masthead__mastnav .mastnav__bg {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 59.2rem;
    height: 56.6rem;
    z-index: -1;
    overflow: hidden; }
    @media (max-width: 767px) {
      .masthead__mastnav .mastnav__bg {
        height: 30vh;
        display: none; } }
    .masthead__mastnav .mastnav__bg:before {
      content: '';
      position: absolute;
      width: 144.4rem;
      height: 134.9rem;
      background: url(../images/footer-bg.svg) no-repeat left top;
      background-size: 100% auto;
      bottom: -78.5rem;
      right: -64.7rem; }
      @media (max-width: 767px) {
        .masthead__mastnav .mastnav__bg:before {
          bottom: -108rem; } }
  .masthead__mastnav__inner {
    margin: 0 1.5rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding-left: 3rem;
    border-left: 1px solid #fff; }
    @media (max-width: 767px) {
      .masthead__mastnav__inner {
        display: block;
        margin: 2rem 0 0 0rem; } }
    .masthead__mastnav__inner > ul {
      width: 26.5rem; }
  .masthead__mastnav a {
    color: #fff;
    text-decoration: none; }
    .masthead__mastnav a:hover {
      text-decoration: underline; }
  .masthead__mastnav ul {
    padding-top: 1rem;
    font-size: 1.9rem;
    font-size: 2.1rem; }
    .masthead__mastnav ul li {
      margin-bottom: 0.8em; }
  .masthead__mastnav__contact {
    padding-left: 3rem;
    padding-top: 1rem;
    padding-bottom: 0.5em;
    border-left: 1px solid #fff;
    font-size: 1.5rem;
    font-size: 1.7rem; }
    @media (max-width: 767px) {
      .masthead__mastnav__contact {
        border: none;
        padding-left: 0; } }
    .masthead__mastnav__contact__title {
      margin-bottom: 0.2em; }
    .masthead__mastnav__contact__item {
      margin-bottom: 0.4rem;
      display: block; }
    .masthead__mastnav__contact ul {
      font-size: 1.5rem;
      font-size: 1.7rem;
      padding-top: 2rem; }
      .masthead__mastnav__contact ul li {
        margin-bottom: 0.4rem; }

.masthead__toggle {
  width: 30px;
  height: 22px;
  position: relative;
  top: -20px;
  right: -30px;
  font-size: 0;
  display: block;
  cursor: pointer;
  z-index: 9999; }
  @media (max-width: 1090px) {
    .masthead__toggle {
      right: 0px; } }
  @media (max-width: 767px) {
    .masthead__toggle {
      top: 0.4rem; } }
  .masthead__toggle .line {
    width: 100%;
    height: 3px;
    background: #1748A1;
    display: block;
    position: absolute;
    top: 10px;
    opacity: 1;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out; }
    @media (max-width: 767px) {
      .masthead__toggle .line {
        background: #fff; } }
  .masthead__toggle:after, .masthead__toggle:before {
    content: '';
    width: 100%;
    height: 3px;
    background: #1748A1;
    display: block;
    position: absolute;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out; }
    @media (max-width: 767px) {
      .masthead__toggle:after, .masthead__toggle:before {
        background: #fff; } }
  .masthead__toggle:before {
    top: 0; }
  .masthead__toggle:after {
    bottom: 0; }
  .masthead__toggle.active {
    position: fixed;
    top: 40px;
    right: calc((100vw - 1090px)/2); }
    @media (max-width: 1200px) {
      .masthead__toggle.active {
        right: 30px; } }
    .masthead__toggle.active span {
      opacity: 0; }
    .masthead__toggle.active:after, .masthead__toggle.active:before {
      position: absolute;
      top: 50%;
      -webkit-transform: translate(0, -50%);
              transform: translate(0, -50%);
      -webkit-transform: rotate(45deg);
              transform: rotate(45deg);
      background: #fff; }
    .masthead__toggle.active:before {
      -webkit-transform: rotate(-45deg);
              transform: rotate(-45deg); }

.home:not(.header-is-fixed) .masthead__toggle:before, .home:not(.header-is-fixed) .masthead__toggle:after {
  background: #1748A1; }

.home:not(.header-is-fixed) .masthead__toggle .line {
  background: #1748A1; }

.home.main-nav--open .masthead__toggle:before, .home.main-nav--open .masthead__toggle:after {
  background: #fff; }

.home.main-nav--open .masthead__toggle .line {
  background: #fff; }

.masthead__mastnav {
  display: none; }

.main-nav--open .masthead__mastnav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #1748A1;
  z-index: 11;
  position: fixed;
  top: 0rem;
  left: 0;
  width: 100%;
  height: calc(100vh);
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch; }
  @media (max-width: 767px) {
    .main-nav--open .masthead__mastnav {
      -webkit-box-align: start;
          -ms-flex-align: start;
              align-items: flex-start; } }

.main-nav--open {
  position: fixed; }
  .main-nav--open:before {
    background: #1748A1;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 2; }

.mastfoot {
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 6.5rem;
  padding-bottom: 8rem;
  padding-bottom: 5.5rem; }
  .mastfoot a {
    color: #fff; }
  .mastfoot__bg {
    position: absolute;
    right: -78.4rem;
    top: 6.5rem;
    z-index: -1; }
    @media (max-width: 767px) {
      .mastfoot__bg {
        top: auto;
        bottom: -89.7rem;
        right: -82rem; } }
    @media (max-width: 767px) {
      .mastfoot__bg svg {
        width: 144.4rem;
        height: 134.9rem; } }
  .mastfoot__row-1__col-1 {
    width: 50%; }
    @media (max-width: 767px) {
      .mastfoot__row-1__col-1 {
        width: 100%; } }
  .mastfoot__row-1__col-2 {
    width: 50%; }
    @media (max-width: 767px) {
      .mastfoot__row-1__col-2 {
        width: 100%; } }
  .mastfoot__form {
    max-width: 30.8rem;
    min-height: 45rem; }
  .mastfoot__social {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end; }
    @media (max-width: 767px) {
      .mastfoot__social {
        -webkit-box-pack: start;
            -ms-flex-pack: start;
                justify-content: flex-start;
        margin-top: 2rem;
        margin-bottom: 4rem; } }
    .mastfoot__social li {
      margin-left: 1.1rem; }
      @media (max-width: 767px) {
        .mastfoot__social li {
          margin-left: 0;
          margin-right: 1.1rem; } }
      .mastfoot__social li a {
        width: 28px;
        display: block; }
        .mastfoot__social li a img {
          width: 100%;
          max-height: 28px; }
    .mastfoot__social__link__text {
      width: 0;
      height: 0;
      overflow: hidden;
      opacity: 0; }
  .mastfoot__row-2 {
    margin-top: 2rem; }
  .mastfoot__nav {
    margin-bottom: 60px; }
    .mastfoot__nav a {
      text-decoration: none; }
    .mastfoot__nav li {
      margin-bottom: 1em; }
  .mastfoot__text {
    font-size: 14px; }
  .mastfoot__logos {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; }
    @media (max-width: 500px) {
      .mastfoot__logos {
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
        -webkit-box-pack: start;
            -ms-flex-pack: start;
                justify-content: flex-start;
        margin-bottom: 3rem; } }
    .mastfoot__logos img {
      max-height: 7rem;
      margin-left: 1rem;
      width: auto; }
      @media (max-width: 500px) {
        .mastfoot__logos img {
          margin: 0 1rem 0 0;
          max-height: 5rem; } }
      .mastfoot__logos img:first-child {
        max-height: 5rem; }
        @media (max-width: 500px) {
          .mastfoot__logos img:first-child {
            max-height: 3rem; } }

.pagination {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  clear: both;
  width: 100%;
  padding: 2rem 0 8rem 0; }
  .pagination .screen-reader-text {
    display: none; }
  .pagination .nav-links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    font-weight: 700;
    color: grey; }
    .pagination .nav-links a, .pagination .nav-links span {
      height: 3rem;
      line-height: 3rem;
      width: 3rem;
      display: block;
      text-align: center;
      padding: 0 1rem;
      margin: 0 0.5rem;
      border-radius: 100%; }
    .pagination .nav-links a {
      position: relative; }
      .pagination .nav-links a:hover {
        color: black; }
    .pagination .nav-links .page-numbers {
      position: relative;
      background: #f4f4f4; }
    .pagination .nav-links .page-numbers.current {
      color: #fff; }
    .pagination .nav-links .dots {
      color: grey; }
    .pagination .nav-links .dots + .page-numbers {
      display: none; }
    .pagination .nav-links a.next, .pagination .nav-links a.prev, .pagination .nav-links .current:before {
      padding: 0;
      display: block;
      text-align: left;
      background: transparent; }
    .pagination .nav-links a.prev.page-numbers {
      text-indent: -9999px;
      background: transparent; }
      .pagination .nav-links a.prev.page-numbers:before {
        opacity: 1;
        left: 0; }
    .pagination .nav-links .page-numbers:first-child:before {
      content: 'Prev';
      position: Absolute;
      left: -4.5rem;
      top: 0;
      opacity: 0.5;
      text-indent: 0; }
    .pagination .nav-links .page-numbers + .current:before {
      display: none; }
    .pagination .nav-links span.page-numbers:last-child:after {
      content: 'Next';
      background-size: auto 1.6rem;
      content: '';
      width: 2rem;
      height: 2rem;
      display: block;
      left: 100%;
      margin-left: 0.5rem;
      position: absolute;
      top: 0;
      opacity: 0.5; }

body .gform_wrapper.gravity-theme .gform_fields {
  grid-row-gap: 1.5rem; }

body .gform_wrapper.gravity-theme .gfield {
  margin-top: -2.2rem; }

body .gform_wrapper.gravity-theme .gfield_label {
  max-height: 0;
  overflow: hidden;
  margin: 0; }

body .gform_wrapper.gravity-theme input[type=text], body .gform_wrapper.gravity-theme input[type=email] {
  height: 3.6rem;
  line-height: 3.6rem;
  padding: 0 1.8rem;
  border-radius: 1.8rem;
  border: none;
  background: #fff;
  color: #000; }

body .gform_wrapper.gravity-theme .gfield textarea.large {
  border-radius: 1.8rem;
  border: none;
  background: #fff;
  padding: 1rem 1.8rem;
  height: 18.9rem;
  color: #000; }

body .gform_wrapper.gravity-theme .gform_footer {
  margin-top: 1rem;
  padding-top: 0; }

body .gform_wrapper.gravity-theme .gform_footer input[type=submit] {
  background: #3F6FBB;
  color: #fff;
  border: none;
  width: 100%;
  margin-bottom: 3rem;
  height: 3.6rem;
  line-height: 3.6rem;
  border-radius: 1.8rem;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  text-align: left;
  padding-left: 1.8rem; }
  body .gform_wrapper.gravity-theme .gform_footer input[type=submit]:hover {
    background: #fff;
    color: #3F6FBB; }

body .gform_wrapper.gravity-theme div.validation_error,
body .gform_wrapper.gravity-theme .validation_message,
body .gform_wrapper.gravity-theme .gfield_error .gfield_label,
body .gform_wrapper.gravity-theme .gform_validation_errors,
body .gform_wrapper.gravity-theme .gform_submission_error {
  color: crimson;
  border-color: crimson;
  border-radius: 0; }

.gform_confirmation_message {
  text-align: center; }

.share-buttons {
  height: 2.2rem;
  position: relative;
  width: 10rem; }
  .share-buttons span {
    line-height: 2.5rem;
    height: 2.5rem;
    top: -0.2rem;
    position: relative;
    margin-left: 1rem;
    cursor: pointer; }
  .share-buttons__share {
    width: 2.2rem;
    margin-bottom: 1rem;
    cursor: pointer; }
  .share-buttons ul {
    max-width: 0;
    overflow: hidden;
    position: absolute;
    top: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    right: 2rem;
    margin-top: 1rem;
    margin-left: 0rem;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    top: 0%;
    left: 80%;
    margin-right: 1rem;
    margin-top: -0.5rem; }
  .share-buttons--expanded ul {
    width: 15rem;
    max-width: 90rem;
    margin-left: 2rem; }
  .share-buttons li {
    width: 3rem;
    margin-left: 1.5rem;
    font-size: 0;
    color: transparent;
    display: block; }
  .share-buttons a {
    width: 3rem;
    height: 3rem;
    display: block;
    color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    border-radius: 50%; }
    .share-buttons a svg {
      fill: #fff;
      height: 1.8rem; }

.home-hero {
  width: 100vw;
  max-width: 100vw;
  min-height: 100vh;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  position: relative; }
  .home-hero__animation {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    top: 40%;
    -webkit-transition: all 1s ease-in-out;
    transition: all 1s ease-in-out;
    width: 100%; }
    .home-hero__animation #animation-container {
      max-width: 81.5rem;
      margin-left: 3rem;
      position: relative;
      left: 3rem;
      left: 50%;
      -webkit-transform: translateX(-50%);
              transform: translateX(-50%);
      -webkit-transition: all 0.5s ease-in-out;
      transition: all 0.5s ease-in-out; }
      @media (max-width: 767px) {
        .home-hero__animation #animation-container {
          margin-left: 0; } }
  .home-hero__strapline {
    color: #1748A1;
    margin-top: 3rem;
    position: relative;
    right: -50vw;
    opacity: 0;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out; }
    .home-hero__strapline h2 {
      font-size: 3.6rem;
      font-weight: 400;
      text-align: center; }

.home {
  padding-top: 0; }

.animation-finished .home-hero__strapline {
  right: 0;
  opacity: 1; }

.move-logo .home-hero {
  min-height: 0; }

.move-logo .home-hero__animation {
  top: 0;
  left: 0;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0); }
  .move-logo .home-hero__animation #animation-container {
    margin: 0;
    left: 0;
    -webkit-transform: translateX(0);
            transform: translateX(0);
    margin-left: -2.2rem;
    max-width: 22rem; }
    @media (max-width: 767px) {
      .move-logo .home-hero__animation #animation-container {
        top: 0; } }

.move-logo .home-hero__strapline {
  opacity: 0; }

@media (max-width: 767px) {
  .home-hero .text-and-image {
    padding-top: 14.4rem; } }

.home-hero .text-and-image .text-and-image__left {
  position: relative;
  left: -100vw;
  -webkit-transition: all 1s ease-in-out;
  transition: all 1s ease-in-out; }

.home-hero .text-and-image .text-and-image__right {
  position: relative;
  right: -100vw;
  -webkit-transition: all 1s ease-in-out;
  transition: all 1s ease-in-out; }

.move-logo .home-hero .text-and-image .text-and-image__left {
  left: 0; }

.move-logo .home-hero .text-and-image .text-and-image__right {
  right: 0; }

.text-image-2col.layout-1 {
  padding-bottom: 7rem;
  padding-top: 17rem; }
  .text-image-2col.layout-1 .container {
    position: relative; }
    @media (max-width: 767px) {
      .text-image-2col.layout-1 .container {
        padding: 0 3rem; } }
  .text-image-2col.layout-1 .text-image-2col__circle {
    position: absolute;
    right: -101rem;
    top: -25.3rem;
    z-index: -1;
    width: 155.9rem;
    height: 155.9rem;
    background: url(../images/blue-circle.svg) no-repeat center center;
    background-size: auto 100%; }
    @media (min-width: 1300px) {
      .text-image-2col.layout-1 .text-image-2col__circle {
        top: -45rem;
        right: -145rem;
        width: 200rem;
        height: 200rem; } }
    @media (max-width: 767px) {
      .text-image-2col.layout-1 .text-image-2col__circle {
        display: none; } }
  .text-image-2col.layout-1 .text-image-2col__mobilecircle {
    display: none;
    width: 155.9rem;
    height: 155.9rem;
    width: 100vw;
    background: url(../images/blue-circle.svg) no-repeat 25% 0;
    background-size: auto 155.9rem;
    position: Absolute;
    z-index: -1;
    top: 2.3rem;
    left: -3rem; }
    @media (max-width: 767px) {
      .text-image-2col.layout-1 .text-image-2col__mobilecircle {
        display: block; } }
    @media (max-width: 390px) {
      .text-image-2col.layout-1 .text-image-2col__mobilecircle {
        left: -20rem; } }
  .text-image-2col.layout-1 .row {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between; }
  .text-image-2col.layout-1 .text-image-2col__left {
    width: 48.1rem; }
    .text-image-2col.layout-1 .text-image-2col__left .text-image-2col__left__image {
      margin-bottom: 7.3rem; }
      @media (max-width: 767px) {
        .text-image-2col.layout-1 .text-image-2col__left .text-image-2col__left__image {
          margin-bottom: 6.3rem; } }
  .text-image-2col.layout-1 .text-image-2col__right {
    width: 100%;
    max-width: 45.8rem;
    position: relative;
    z-index: 1;
    color: #fff;
    left: 6rem; }
    @media (max-width: 767px) {
      .text-image-2col.layout-1 .text-image-2col__right {
        left: 0;
        margin-left: auto;
        margin-right: auto;
        margin-top: 12.6rem; } }
    .text-image-2col.layout-1 .text-image-2col__right .text-image-2col__inner {
      width: 43.8rem;
      max-width: 100%; }
    .text-image-2col.layout-1 .text-image-2col__right .text-image-2col__right__text {
      max-width: 39.1rem; }
      @media (max-width: 767px) {
        .text-image-2col.layout-1 .text-image-2col__right .text-image-2col__right__text {
          max-width: 33.1rem; } }
    .text-image-2col.layout-1 .text-image-2col__right h3 {
      font-size: 2.6rem;
      line-height: calc(36/26); }
      @media (max-width: 767px) {
        .text-image-2col.layout-1 .text-image-2col__right h3 {
          font-size: 2rem;
          line-height: calc(24/18); } }
    .text-image-2col.layout-1 .text-image-2col__right .text-image-2col__right__image img {
      margin-top: -11rem;
      margin-left: -16rem;
      margin-bottom: 5.2rem; }
      @media (max-width: 767px) {
        .text-image-2col.layout-1 .text-image-2col__right .text-image-2col__right__image img {
          margin-top: 0;
          margin-left: 0;
          max-width: 33.4rem;
          margin: 0 auto;
          margin-bottom: 7rem;
          display: block; } }
    .text-image-2col.layout-1 .text-image-2col__right ul li {
      margin-bottom: 1em;
      font-size: 2.1rem;
      position: relative; }
      @media (max-width: 767px) {
        .text-image-2col.layout-1 .text-image-2col__right ul li {
          font-size: 1.5rem; } }
      .text-image-2col.layout-1 .text-image-2col__right ul li:before {
        content: '';
        width: 2.7rem;
        height: 2.7rem;
        background: url(../images/list-tick.svg) no-repeat center center;
        background-size: 100% auto;
        display: block;
        position: absolute;
        left: -4.6rem;
        top: 0; }
        @media (max-width: 767px) {
          .text-image-2col.layout-1 .text-image-2col__right ul li:before {
            width: 1.8rem;
            height: 1.8rem;
            left: -3rem; } }
  .text-image-2col.layout-1 .text-image-2col__testimonial {
    font-size: 2.7rem;
    padding-left: 0;
    margin: 0;
    position: relative;
    left: 2rem; }
    @media (max-width: 767px) {
      .text-image-2col.layout-1 .text-image-2col__testimonial {
        left: 0; } }
    @media (max-width: 380px) {
      .text-image-2col.layout-1 .text-image-2col__testimonial {
        font-size: 2rem; } }
    .text-image-2col.layout-1 .text-image-2col__testimonial p:first-of-type:before {
      content: '“'; }
    .text-image-2col.layout-1 .text-image-2col__testimonial p:last-of-type:After {
      content: '”'; }
  .text-image-2col.layout-1 .text-image-2col__name {
    font-weight: 900;
    font-size: 1.9rem;
    position: relative;
    left: 2rem; }
    @media (max-width: 767px) {
      .text-image-2col.layout-1 .text-image-2col__name {
        left: 0; } }
    .text-image-2col.layout-1 .text-image-2col__name__image {
      float: left;
      width: 9rem;
      margin-right: 1rem; }
      @media (max-width: 767px) {
        .text-image-2col.layout-1 .text-image-2col__name__image {
          width: 6rem; } }
  .text-image-2col.layout-1 .text-image-2col.circle-left .text-image-2col__left {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2; }

.page-id-39 .text-image-2col.layout-1 {
  padding-top: 16.4rem;
  padding-bottom: 12rem; }
  .page-id-39 .text-image-2col.layout-1 .text-image-2col__circle {
    top: -16.4rem;
    right: -82.8rem;
    width: 141.7rem;
    height: 141.7rem; }
    @media (min-width: 1300px) {
      .page-id-39 .text-image-2col.layout-1 .text-image-2col__circle {
        top: -37rem;
        right: -138rem;
        width: 200rem;
        height: 200rem; } }
  .page-id-39 .text-image-2col.layout-1 .text-image-2col__mobilecircle {
    top: 5.5rem;
    bottom: auto;
    left: -3rem;
    width: 100vw;
    height: 85rem;
    background-size: 85rem auto;
    background-position: 5% 0; }
  .page-id-39 .text-image-2col.layout-1 .text-image-2col__left {
    max-width: 44rem; }
  .page-id-39 .text-image-2col.layout-1 .text-image-2col__left__image {
    margin-bottom: 3rem; }
  .page-id-39 .text-image-2col.layout-1 .text-image-2col__right__image img {
    margin-left: -43%;
    margin-top: -17%;
    margin-bottom: 8.3rem;
    max-width: 32.2rem; }
    @media (max-width: 767px) {
      .page-id-39 .text-image-2col.layout-1 .text-image-2col__right__image img {
        width: 22.2rem;
        margin-left: 0;
        margin-top: 0;
        margin-bottom: 6rem; } }
  .page-id-39 .text-image-2col.layout-1 .text-image-2col__right__text {
    padding-left: 4rem; }
    @media (max-width: 767px) {
      .page-id-39 .text-image-2col.layout-1 .text-image-2col__right__text {
        padding-left: 2.5rem; } }

.page-id-54 .text-image-2col.layout-1 {
  padding-top: 15.4rem; }
  .page-id-54 .text-image-2col.layout-1 .text-image-2col__circle {
    width: 173.6rem;
    height: 173.6rem;
    top: -23.1rem;
    right: -119rem;
    right: -123rem; }
    @media (min-width: 1300px) {
      .page-id-54 .text-image-2col.layout-1 .text-image-2col__circle {
        top: -45rem;
        right: -145rem;
        width: 200rem;
        height: 200rem; } }
  .page-id-54 .text-image-2col.layout-1 .text-image-2col__left {
    width: 53.1rem; }
    .page-id-54 .text-image-2col.layout-1 .text-image-2col__left .intro-text {
      margin-right: -2rem;
      display: block; }
      @media (max-width: 767px) {
        .page-id-54 .text-image-2col.layout-1 .text-image-2col__left .intro-text {
          margin-right: 0; } }
  .page-id-54 .text-image-2col.layout-1 .text-image-2col__left__image {
    margin-bottom: 6.8rem; }
    @media (max-width: 767px) {
      .page-id-54 .text-image-2col.layout-1 .text-image-2col__left__image {
        margin-bottom: 5.4rem; } }
    @media (max-width: 767px) {
      .page-id-54 .text-image-2col.layout-1 .text-image-2col__left__image img {
        margin: 0 auto;
        display: block;
        width: 18.7rem; } }
  .page-id-54 .text-image-2col.layout-1 .text-image-2col__right__image img {
    margin-top: -22%;
    margin-left: -29%; }
    @media (max-width: 767px) {
      .page-id-54 .text-image-2col.layout-1 .text-image-2col__right__image img {
        margin-top: 0;
        margin-left: 0; } }

.page-id-61 .text-image-2col.layout-1 .text-image-2col__circle {
  top: -29.3rem;
  right: -113rem;
  width: 165.6rem;
  height: 165.6rem; }
  @media (min-width: 1300px) {
    .page-id-61 .text-image-2col.layout-1 .text-image-2col__circle {
      top: -45rem;
      right: -145rem;
      width: 200rem;
      height: 200rem; } }

.page-id-61 .text-image-2col.layout-1 .text-image-2col__left {
  width: 53.1rem; }

.page-id-61 .text-image-2col.layout-1 .text-image-2col__right__image img {
  margin-left: -20%; }
  @media (max-width: 767px) {
    .page-id-61 .text-image-2col.layout-1 .text-image-2col__right__image img {
      margin-left: 0;
      margin-top: 0; } }

.text-image-2col.layout-2 {
  padding-top: 14.5rem; }
  @media (max-width: 767px) {
    .text-image-2col.layout-2 {
      padding-top: 10.4rem; } }
  .text-image-2col.layout-2 .container {
    position: relative; }
    @media (max-width: 767px) {
      .text-image-2col.layout-2 .container {
        padding: 0 3rem;
        position: Static; } }
  .text-image-2col.layout-2 .text-image-2col__circle {
    position: absolute;
    z-index: -1;
    background: url(../images/blue-circle.svg) no-repeat center center;
    background-size: auto 100%;
    top: -58.2rem;
    right: -81.1rem;
    width: 141.7rem;
    height: 141.7rem; }
    @media (max-width: 1000px) {
      .text-image-2col.layout-2 .text-image-2col__circle {
        top: -45rem; } }
    @media (max-width: 950px) {
      .text-image-2col.layout-2 .text-image-2col__circle {
        top: -36rem;
        right: -92rem; } }
    @media (max-width: 767px) {
      .text-image-2col.layout-2 .text-image-2col__circle {
        display: none; } }
  .text-image-2col.layout-2 .text-image-2col__mobilecircle {
    display: none;
    width: 155.9rem;
    height: 155.9rem;
    background: url(../images/blue-circle.svg) no-repeat center center;
    background-size: auto 100%;
    position: Absolute;
    z-index: -1;
    top: auto;
    bottom: 0; }
    @media (max-width: 767px) {
      .text-image-2col.layout-2 .text-image-2col__mobilecircle {
        display: block;
        background-size: 155.9rem auto;
        width: calc(100% + 6rem);
        left: -3rem; } }
  .text-image-2col.layout-2 .text-image-2col__left {
    width: 46.7rem; }
    @media (max-width: 950px) {
      .text-image-2col.layout-2 .text-image-2col__left {
        width: 55%; } }
    @media (max-width: 767px) {
      .text-image-2col.layout-2 .text-image-2col__left {
        -webkit-box-ordinal-group: 3;
            -ms-flex-order: 2;
                order: 2;
        width: 100%;
        margin-top: 2rem; } }
  .text-image-2col.layout-2 .text-image-2col__right {
    max-width: 100%;
    width: 38.4rem;
    left: 0;
    color: #fff;
    position: relative; }
    @media (max-width: 767px) {
      .text-image-2col.layout-2 .text-image-2col__right {
        padding-top: 9.6rem;
        margin-top: 0;
        padding-bottom: 22.7rem;
        width: 100%; } }
    .text-image-2col.layout-2 .text-image-2col__right__image img {
      margin: 0;
      margin-bottom: 5rem; }
  .text-image-2col.layout-2 .text-image-2col__testimonial {
    font-size: 2.7rem;
    padding-left: 0;
    margin: 0; }
    .text-image-2col.layout-2 .text-image-2col__testimonial p:first-of-type:before {
      content: '“'; }
    .text-image-2col.layout-2 .text-image-2col__testimonial p:last-of-type:After {
      content: '”'; }
  .text-image-2col.layout-2 .text-image-2col__name {
    font-weight: 900;
    font-size: 1.9rem; }
    .text-image-2col.layout-2 .text-image-2col__name__image {
      float: left;
      width: 9rem;
      margin-right: 1rem; }
      @media (max-width: 767px) {
        .text-image-2col.layout-2 .text-image-2col__name__image {
          width: 6rem; } }
  .text-image-2col.layout-2.circle-left {
    padding-bottom: 6rem;
    padding-top: 0; }
    @media (max-width: 767px) {
      .text-image-2col.layout-2.circle-left {
        background-position: 30% 0; } }
    .text-image-2col.layout-2.circle-left .text-image-2col__circle {
      right: auto;
      left: -86.9rem;
      top: 0; }
      @media (max-width: 950px) {
        .text-image-2col.layout-2.circle-left .text-image-2col__circle {
          left: -96rem; } }
    .text-image-2col.layout-2.circle-left .text-image-2col__left {
      -webkit-box-ordinal-group: 3;
          -ms-flex-order: 2;
              order: 2; }
      @media (max-width: 767px) {
        .text-image-2col.layout-2.circle-left .text-image-2col__left {
          -webkit-box-ordinal-group: 1;
              -ms-flex-order: 0;
                  order: 0; } }
    .text-image-2col.layout-2.circle-left .text-image-2col__mobilecircle {
      top: 0;
      width: calc(100% + 6rem);
      left: -3rem; }
    .text-image-2col.layout-2.circle-left .text-image-2col__right {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      -webkit-box-pack: end;
          -ms-flex-pack: end;
              justify-content: flex-end;
      width: 40.6rem; }
      @media (max-width: 767px) {
        .text-image-2col.layout-2.circle-left .text-image-2col__right {
          padding-top: 17rem;
          padding-bottom: 0;
          position: relative;
          width: 100%; } }
      .text-image-2col.layout-2.circle-left .text-image-2col__right__inner {
        width: 100%; }
        @media (max-width: 1090px) {
          .text-image-2col.layout-2.circle-left .text-image-2col__right__inner {
            width: 34rem; } }

.text-image-2col.layout-3 {
  padding-top: 15rem;
  padding-bottom: 0rem; }
  .text-image-2col.layout-3 .container {
    position: relative; }
    @media (max-width: 767px) {
      .text-image-2col.layout-3 .container {
        padding: 0 3rem; } }
  .text-image-2col.layout-3 .text-image-2col__circle {
    position: absolute;
    z-index: -1;
    background: url(../images/blue-circle.svg) no-repeat center center;
    background-size: auto 100%;
    top: -43.2rem;
    right: -76.7rem;
    width: 141.7rem;
    height: 141.7rem; }
    @media (min-width: 1300px) {
      .text-image-2col.layout-3 .text-image-2col__circle {
        top: -84rem;
        right: -138rem;
        width: 200rem;
        height: 200rem; } }
    @media (max-width: 767px) {
      .text-image-2col.layout-3 .text-image-2col__circle {
        display: none; } }
  .text-image-2col.layout-3 .text-image-2col__mobilecircle {
    display: none; }
  .text-image-2col.layout-3 .text-image-2col__left {
    max-width: 39.6rem; }
    @media (max-width: 767px) {
      .text-image-2col.layout-3 .text-image-2col__left {
        max-width: 100%;
        width: 100%; } }
  .text-image-2col.layout-3 .text-image-2col__left__image {
    margin-bottom: 3.5rem; }
  .text-image-2col.layout-3 .text-image-2col__right {
    width: 100%;
    max-width: 45.8rem;
    z-index: 1;
    color: #fff;
    left: 6rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    position: relative; }
    @media (max-width: 767px) {
      .text-image-2col.layout-3 .text-image-2col__right {
        display: none; } }
  .text-image-2col.layout-3 .text-image-2col__testimonial {
    font-size: 2.4rem; }
  .text-image-2col.layout-3 .text-image-2col__name {
    margin-left: 3rem; }
    .text-image-2col.layout-3 .text-image-2col__name__image {
      float: left;
      width: 9rem;
      margin-right: 1rem; }
      @media (max-width: 767px) {
        .text-image-2col.layout-3 .text-image-2col__name__image {
          width: 6rem; } }

@media (max-width: 767px) {
  .text-and-image {
    max-width: 100vw;
    overflow-x: hidden; } }

@media (max-width: 575px) {
  .text-and-image {
    padding-top: 14.7rem; } }

.text-and-image__left {
  width: 37.8rem;
  width: 44.3%;
  padding-left: calc((100vw - 104rem)/2);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  z-index: 1; }
  @media (max-width: 767px) {
    .text-and-image__left {
      width: 100%;
      padding: 0 3.5rem; } }

.text-and-image__text {
  margin-bottom: 0.8rem;
  max-width: 37.8rem;
  margin-top: -17rem; }
  @media (max-width: 1100px) {
    .text-and-image__text {
      margin-top: 0; } }
  @media (max-width: 767px) {
    .text-and-image__text {
      margin-bottom: 2.4rem; } }
  .text-and-image__text h1 {
    font-size: 4.9rem; }
  .text-and-image__text h3 {
    font-size: 2.5rem; }
  .text-and-image__text p {
    font-size: 1.9rem; }

.text-and-image .btn {
  position: relative;
  z-index: 1; }

.text-and-image__right {
  width: 55.7%; }
  @media (max-width: 767px) {
    .text-and-image__right {
      width: 100%;
      margin-top: -1.9rem;
      z-index: 0;
      position: relative;
      padding-left: 2rem; } }
  .text-and-image__right img {
    width: 100%; }

.webinars {
  margin-top: 5.7rem;
  padding-bottom: 3.4rem;
  max-width: 100vw;
  overflow: hidden; }
  .webinars .row {
    margin-left: -2.8rem;
    margin-right: -2.8rem;
    width: auto; }
    @media (max-width: 991px) {
      .webinars .row {
        display: block;
        max-width: 70rem;
        margin-left: auto;
        margin-right: auto; } }
    @media (max-width: 575px) {
      .webinars .row {
        width: 27rem;
        min-width: 0;
        margin-left: 0;
        margin-right: 0; } }
  .webinars .slick-list {
    overflow: visible;
    margin-left: -2.5rem; }
  .webinars__item {
    padding: 0 2.8rem;
    margin-bottom: 4.6rem;
    width: 50%; }
    @media (max-width: 991px) {
      .webinars__item {
        margin-bottom: 3rem;
        width: 100%;
        display: block;
        padding: 0 1.3rem; } }
    .webinars__item__inner {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      border-radius: 2rem;
      overflow: hidden;
      background: #fff;
      border: 1px solid #000; }
      @media (max-width: 575px) {
        .webinars__item__inner {
          display: block;
          height: auto !important; } }
    .webinars__item__face {
      margin: 1.6rem 0 0 1.6rem; }
      @media (max-width: 767px) {
        .webinars__item__face {
          margin-bottom: 1.9rem; } }
      @media (max-width: 767px) {
        .webinars__item__face svg {
          width: 6.6rem; } }
    .webinars__item__time-wrap {
      padding: 0.7rem 0.8rem; }
      @media (max-width: 767px) {
        .webinars__item__time-wrap {
          padding-top: 0;
          padding-left: 1.9rem;
          padding-bottom: 2.3rem; } }
    .webinars__item__time {
      padding-left: 3.3rem;
      position: relative; }
      @media (max-width: 575px) {
        .webinars__item__time {
          width: 20rem; } }
      .webinars__item__time:first-of-type {
        border-bottom: 1px solid #fff;
        padding-bottom: 0.9rem;
        margin-bottom: 0.9rem; }
        @media (max-width: 767px) {
          .webinars__item__time:first-of-type {
            padding-bottom: 1rem;
            margin-bottom: 1rem; } }
      .webinars__item__time svg {
        position: absolute;
        left: 0;
        top: 0;
        width: 2.2rem; }
        @media (max-width: 767px) {
          .webinars__item__time svg {
            width: 2.4rem; } }
    .webinars__item__left {
      width: 39%;
      color: #fff;
      font-size: 11px;
      font-size: 13px;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between; }
      @media (max-width: 575px) {
        .webinars__item__left {
          width: 100%; } }
      .webinars__item__left h4 {
        text-transform: uppercase;
        font-size: 10px;
        font-size: 12px; }
        @media (max-width: 767px) {
          .webinars__item__left h4 {
            font-size: 1.2rem; } }
    .webinars__item__right {
      width: 61%;
      padding: 1.5rem 1.5rem 0.5rem 1.5rem; }
      @media (max-width: 575px) {
        .webinars__item__right {
          width: 100%; } }
      .webinars__item__right h3 {
        line-height: 1.2em; }
        @media (max-width: 767px) {
          .webinars__item__right h3 {
            max-width: 8em;
            font-size: 2.4rem; } }
      .webinars__item__right p {
        font-size: 11px;
        font-size: 14px; }
        @media (max-width: 767px) {
          .webinars__item__right p {
            font-size: 13px; } }
  .webinars__item:last-of-type .webinars__item__inner {
    height: auto !important; }
  .webinars__quote-wrap {
    position: relative;
    color: #fff;
    padding-top: 23.7rem;
    display: none; }
    .webinars__quote-wrap:before, .webinars__quote-wrap:after {
      content: " ";
      display: table; }
    .webinars__quote-wrap:after {
      clear: both; }
    @media (max-width: 767px) {
      .webinars__quote-wrap {
        display: block;
        padding-left: 3rem;
        padding-right: 3rem;
        margin-top: -10rem; } }
    .webinars__quote-wrap__circle {
      width: 126.3rem;
      height: 126.3rem;
      background: url(../images/blue-circle.svg) no-repeat center center;
      background-size: 126.3rem auto;
      width: 100vw;
      height: 126.3rem;
      position: absolute;
      top: 0;
      right: -38rem;
      right: 0;
      z-index: -1; }
  .webinars .webinars__name:before, .webinars .webinars__name:after {
    content: " ";
    display: table; }
  .webinars .webinars__name:after {
    clear: both; }
  .webinars__testimonial {
    font-size: 2.7rem;
    font-size: 2.4rem;
    padding-left: 0;
    margin: 0; }
    .webinars__testimonial p:first-of-type:before {
      content: '“'; }
    .webinars__testimonial p:last-of-type:After {
      content: '”'; }
    .webinars__testimonial__name__image {
      float: left;
      width: 9rem;
      margin-right: 1rem; }
      @media (max-width: 767px) {
        .webinars__testimonial__name__image {
          width: 6rem; } }

.what-we-offer {
  margin-bottom: 3.7rem; }
  @media (orientation: portrait) {
    .what-we-offer {
      opacity: 1 !important; } }
  @media (max-width: 767px) {
    .what-we-offer {
      margin-top: 3.9rem;
      margin-bottom: 0; } }
  .what-we-offer__heading {
    color: #1748A1;
    margin-bottom: 5.4rem; }
    @media (max-width: 767px) {
      .what-we-offer__heading {
        text-align: center; } }
  .what-we-offer .row {
    margin: 0 -1rem;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center; }
  .what-we-offer__item {
    width: 20%;
    padding: 0 1rem;
    margin-bottom: 2rem; }
    @media (max-width: 1090px) {
      .what-we-offer__item {
        width: 33%; } }
    @media (orientation: portrait) {
      .what-we-offer__item {
        opacity: 1 !important; } }
    @media (max-width: 767px) {
      .what-we-offer__item {
        width: 50%; } }
    @media (max-width: 575px) {
      .what-we-offer__item {
        width: 100%;
        margin-bottom: 8.3rem; } }
    .what-we-offer__item__image-wrap {
      margin-bottom: 3rem; }
    .what-we-offer__item__image {
      width: auto;
      margin-bottom: 2rem; }
      .what-we-offer__item__image img {
        margin: 0 auto;
        display: block; }
    .what-we-offer__item__text {
      font-size: 12px;
      font-size: 15px;
      margin-bottom: 2rem;
      max-width: 18.5rem; }
      @media (max-width: 767px) {
        .what-we-offer__item__text {
          font-size: 1.6rem;
          max-width: 100%;
          margin-left: auto;
          margin-right: auto;
          margin-bottom: 3rem; } }
  @media (max-width: 767px) {
    .what-we-offer .btn-wrap {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center; } }
  @media (max-width: 767px) {
    .what-we-offer .btn {
      height: 4.3rem;
      line-height: 4.3rem;
      border-radius: 4.3rem;
      font-size: 2rem;
      padding: 0 3.2rem; } }

.home .what-we-offer .what-we-offer__item--2 .what-we-offer__item__image2 {
  margin-top: -3rem; }

.error404 .main {
  padding-top: 13.5rem; }
  @media (min-width: 992px) {
    .error404 .main {
      padding-top: 24.3rem; } }

/*==========================================================================
   7. Browser Fixes
   ========================================================================== */
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  /* IE10+ CSS styles go here */ }

/* Safari 10.1+ (alternate method) */
@media screen and (-webkit-min-device-pixel-ratio: 2), screen and (min-resolution: 2dppx) {
  body {
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased; } }

/* ie9 */
/* ie8  */
/* ie7 */

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