@charset "UTF-8";

/*!
 * animate.css -http://daneden.me/animate
 * Version - 3.5.1
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2016 Daniel Eden
 */

.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

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

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

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

@-webkit-keyframes bounce {
  from, 20%, 53%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
  }

  40%, 43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
  }

  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    -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.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
  }

  40%, 43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
  }

  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    -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(.95, 1.05, 1);
    transform: scale3d(.95, 1.05, 1);
  }

  75% {
    -webkit-transform: scale3d(1.05, .95, 1);
    transform: scale3d(1.05, .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(.95, 1.05, 1);
    transform: scale3d(.95, 1.05, 1);
  }

  75% {
    -webkit-transform: scale3d(1.05, .95, 1);
    transform: scale3d(1.05, .95, 1);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

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

@-webkit-keyframes shake {
  from, to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }

  20%, 40%, 60%, 80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}

@keyframes shake {
  from, to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }

  20%, 40%, 60%, 80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}

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

@-webkit-keyframes headShake {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  6.5% {
    -webkit-transform: translateX(-6px) rotateY(-9deg);
    transform: translateX(-6px) rotateY(-9deg);
  }

  18.5% {
    -webkit-transform: translateX(5px) rotateY(7deg);
    transform: translateX(5px) rotateY(7deg);
  }

  31.5% {
    -webkit-transform: translateX(-3px) rotateY(-5deg);
    transform: translateX(-3px) rotateY(-5deg);
  }

  43.5% {
    -webkit-transform: translateX(2px) rotateY(3deg);
    transform: translateX(2px) rotateY(3deg);
  }

  50% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes headShake {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  6.5% {
    -webkit-transform: translateX(-6px) rotateY(-9deg);
    transform: translateX(-6px) rotateY(-9deg);
  }

  18.5% {
    -webkit-transform: translateX(5px) rotateY(7deg);
    transform: translateX(5px) rotateY(7deg);
  }

  31.5% {
    -webkit-transform: translateX(-3px) rotateY(-5deg);
    transform: translateX(-3px) rotateY(-5deg);
  }

  43.5% {
    -webkit-transform: translateX(2px) rotateY(3deg);
    transform: translateX(2px) rotateY(3deg);
  }

  50% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

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

@-webkit-keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
  }

  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg);
  }

  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }

  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg);
  }

  to {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}

@keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
  }

  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg);
  }

  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }

  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg);
  }

  to {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}

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

@-webkit-keyframes tada {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  10%, 20% {
    -webkit-transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(.9, .9, .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(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(.9, .9, .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.390625deg) skewY(0.390625deg);
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }

  88.8% {
    -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}

@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.390625deg) skewY(0.390625deg);
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }

  88.8% {
    -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}

.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.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  0% {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3);
  }

  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }

  40% {
    -webkit-transform: scale3d(.9, .9, .9);
    transform: scale3d(.9, .9, .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(.97, .97, .97);
    transform: scale3d(.97, .97, .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.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  0% {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3);
  }

  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }

  40% {
    -webkit-transform: scale3d(.9, .9, .9);
    transform: scale3d(.9, .9, .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(.97, .97, .97);
    transform: scale3d(.97, .97, .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.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  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.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  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.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  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.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  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.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  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.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  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.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  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.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  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(.9, .9, .9);
    transform: scale3d(.9, .9, .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(.3, .3, .3);
    transform: scale3d(.3, .3, .3);
  }
}

@keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(.9, .9, .9);
    transform: scale3d(.9, .9, .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(.3, .3, .3);
    transform: scale3d(.3, .3, .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(.95, .95, .95);
    transform: perspective(400px) scale3d(.95, .95, .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(.95, .95, .95);
    transform: perspective(400px) scale3d(.95, .95, .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(.3, .3, .3);
    transform: scale3d(.3, .3, .3);
  }

  50% {
    opacity: 1;
  }
}

@keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3);
  }

  50% {
    opacity: 1;
  }
}

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

@-webkit-keyframes zoomInDown {
  from {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
    transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

@keyframes zoomInDown {
  from {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
    transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

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

@-webkit-keyframes zoomInLeft {
  from {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
    transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
    transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

@keyframes zoomInLeft {
  from {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
    transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
    transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

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

@-webkit-keyframes zoomInRight {
  from {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
    transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
    transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

@keyframes zoomInRight {
  from {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
    transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
    transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

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

@-webkit-keyframes zoomInUp {
  from {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
    transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

@keyframes zoomInUp {
  from {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
    transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

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

@-webkit-keyframes zoomOut {
  from {
    opacity: 1;
  }

  50% {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3);
  }

  to {
    opacity: 0;
  }
}

@keyframes zoomOut {
  from {
    opacity: 1;
  }

  50% {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3);
  }

  to {
    opacity: 0;
  }
}

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

@-webkit-keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  to {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
    transform: scale3d(.1, .1, .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.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

@keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  to {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
    transform: scale3d(.1, .1, .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.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

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

@-webkit-keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
    transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: scale(.1) translate3d(-2000px, 0, 0);
    transform: scale(.1) translate3d(-2000px, 0, 0);
    -webkit-transform-origin: left center;
    transform-origin: left center;
  }
}

@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
    transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: scale(.1) translate3d(-2000px, 0, 0);
    transform: scale(.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(.475, .475, .475) translate3d(-42px, 0, 0);
    transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: scale(.1) translate3d(2000px, 0, 0);
    transform: scale(.1) translate3d(2000px, 0, 0);
    -webkit-transform-origin: right center;
    transform-origin: right center;
  }
}

@keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
    transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: scale(.1) translate3d(2000px, 0, 0);
    transform: scale(.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(.475, .475, .475) translate3d(0, 60px, 0);
    transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  to {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
    transform: scale3d(.1, .1, .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.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

@keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  to {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
    transform: scale3d(.1, .1, .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.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 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;
}
/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;

}

ol, ul {
	list-style: none;
}
/* == BUTTONS SIZES ======== */ /* == BUTTONS SICOLORS ======== */ /* == BUTTONS SIZES ======== */ /* ==
BUTTONS SICOLORS ======== */ /* HEADINGS */ /* line 29, ../scss/style.scss */ h1 {
  font-family: 'Lato', sans-serif;
}
/* line 29, ../scss/style.scss */ h2 {
  font-family: 'Lato', sans-serif;
}
/* line 29, ../scss/style.scss */ h3 {
  font-family: 'Lato', sans-serif;
}
/* line 29, ../scss/style.scss */ h4 {
  font-family: 'Lato', sans-serif;
}
/* line 29, ../scss/style.scss */ h5 {
  font-family: 'Lato', sans-serif;
}
/* line 29, ../scss/style.scss */ h6 {
  font-family: 'Lato', sans-serif;
}
/* line 29, ../scss/style.scss */ div h1 {
  color: #026cb3;
}
/* line 29, ../scss/style.scss */ div h2 {
  color: #026cb3;
}
/* line 29, ../scss/style.scss */ div h3 {
  color: #026cb3;
}
/* line 29, ../scss/style.scss */ div h4 {
  color: #026cb3;
}
/* line 29, ../scss/style.scss */ div h5 {
  color: #026cb3;
}
/* line 29, ../scss/style.scss */ div h6 {
  color: #333;
}
/* line 29, ../scss/style.scss */ .sweet h1 {
  color: red;
}
/* line 29, ../scss/style.scss */ .sweet h2 {
  color: red;
}
/* line 29, ../scss/style.scss */ .sweet h3 {
  color: red;
}
/* line 29, ../scss/style.scss */ .sweet h4 {
  color: #2baadf;
}
/* line 29, ../scss/style.scss */ .sweet h5 {
  color: #2baadf;
}
/* line 29, ../scss/style.scss */ .sweet h6 {
  color: #2baadf;
}
/* -------------------------------------------------------------- general style
------------------------------------------------------------------ */ /* COMMON */ /* line 59,
../scss/style.scss */ body {
  font-family: "Lato", sans-serif;
  background-color: #fff;
}
/* ====== SANS CODE HACK NAVIGATION ========== */ /* line 65, ../scss/style.scss */ .sc-editing a {
  color: #000;
  max-height: 21px;
  padding-top: 2px;
  margin: 0 5px;
}
/* line 71, ../scss/style.scss */ .sc-editing a:hover {
  color: #fff !important;
}
/* line 74, ../scss/style.scss */ .sc-handle:hover {
  background-color: #000 !important;
  height: 21px!important;
  color: #fff!important;
  font-size: 11px;
}
/* line 80, ../scss/style.scss */ .sc-handle {
  color: #000 !important;
  height: 21px!important;
  font-size: 11px !important;
  border-radius: 2px!important;
}
/* line 87, ../scss/style.scss */ .btn-danger {
  color: #fff !important;
  height: 21px!important;
  font-size: 11px !important;
  border-radius: 2px!important;
}
/* line 93, ../scss/style.scss */ .btn-xs {
  color: #000 !important;
  height: 21px!important;
  font-size: 11px !important;
  border-radius: 2px!important;
}
/* line 99, ../scss/style.scss */ .sc-component-toggle-btn:hover, .btn-danger:hover {
  height: 21px!important;
  font-size: 11px;
}
/* line 103, ../scss/style.scss */ .sc-component-toggle-btn {
  color: #fff !important;
  height: 21px!important;
  font-size: 11px !important;
  border-radius: 2px!important;
}
/* line 110, ../scss/style.scss */ .navbar {
  min-height: 42px!important;
}
/* ====== END SANS CODE HACK NAVIGATION ========== */ /* ========== SUB MENU ============= */ /* line 116,
../scss/style.scss */
#sub-nav {
  margin-top: -42px;
  height: 42px;
  margin-bottom: 20px;
  margin-left: 0px;
}
/* line 122, ../scss/style.scss */ .sub-menus ul li {
  display: inline;
  padding: 0 5px 0 0;
  margin: 0;
}
/* line 127, ../scss/style.scss */ .sub-menu {
  margin-left: 0px;
}
/* line 131, ../scss/style.scss */
#sub-nav .sub-menu {
  margin-left: -40px;
}
/* line 134, ../scss/style.scss */ .sub-menu > li > a {
  font-size: 15px;
  font-weight: bold;
  margin-right: 3px;
  text-transform: uppercase;
  padding: 14px 14px 12px 14px;
  color: #fff;
  height: 47px;
  -webkit-border-radius: 10px 10px 0 0;
  -moz-border-radius: 10px 10px 0 0;
  border-radius: 10px 10px 0 0;
  background-color: #2baadf;
  -webkit-box-shadow: inset 1px 2px rgba(255, 255, 255, 0.2);
  -moz-box-shadow: inset 1px 2px rgba(255, 255, 255, 0.2);
  box-shadow: inset 1px 2px rgba(255, 255, 255, 0.2);
  background-image: -webkit-linear-gradient(bottom, rgba(43, 50, 58, 0.36), rgba(43, 50, 58, 0));
  background-image: -moz-linear-gradient(bottom, rgba(43, 50, 58, 0.36), rgba(43, 50, 58, 0));
  background-image: -o-linear-gradient(bottom, rgba(43, 50, 58, 0.36), rgba(43, 50, 58, 0));
  background-image: linear-gradient(to top, rgba(43, 50, 58, 0.36), rgba(43, 50, 58, 0));
}
/* line 155, ../scss/style.scss */ .sub-menu > li > a:hover {
  color: #202022;
  text-decoration: none;
}
/* line 160, ../scss/style.scss */ .sub-menu > .active > a, .sub-menu > .active > a:hover, .sub-menu > .active
> a:focus {
  background: #fff;
  color: #2baadf;
}
/* line 165, ../scss/style.scss */ .navbar-inverse {
  max-height: none;
  /* max-height: 42px; MOBILE MENU PROBLEM */
  border: none !important;
  border-radius: 0px 0px 0px 0px;
  -moz-border-radius: 0px 0px 0px 0px;
  -webkit-border-radius: 0px 0px 0px 0px;
}
/* line 174, ../scss/style.scss */
#bg-banner img {
  min-height: 142px;
  left: 0;
  z-index: 0;
}
/* line 179, ../scss/style.scss */
#bg-banner {
  min-height: 142px;
  margin: 0;
  z-index: 0;
  background-color: transparent;
  background-repeat: no-repeat;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}
/* line 190, ../scss/style.scss */ .Lato-Light {
  font-weight: 300 !important;
}
/* line 193, ../scss/style.scss */ h1, h2, h3, h4, h5, h6 {
  font-family: "Lato", sans-serif;
}
/* line 196, ../scss/style.scss */ h1 {
  font-size: 38px;
  letter-spacing: 1px;
  font-weight: 300;
  color: #2baadf !important;
  line-height: 48px;
  padding: 3px 5px 8px 0;
}
/* line 205, ../scss/style.scss */ h2 {
  font-size: 28px;
  font-weight: 300;
  color: #026cb3 !important;
  line-height: 28px;
  padding: 2px 5px 10px 0;
}
/* line 212, ../scss/style.scss */ h3 {
  font-size: 18px;
  font-weight: 400;
  color: #026cb3 !important;
  padding: 3px 5px 8px 0;
}
/* line 218, ../scss/style.scss */ h4 {
  font-size: 14px;
  font-weight: 400;
  padding: 2px 5px 10px 0;
}
/* line 223, ../scss/style.scss */ h5 {
  font-size: 12px;
  font-weight: 400;
  padding: 2px 5px 8px 0;
}
/* line 229, ../scss/style.scss */ h6 {
  font-size: 11px;
  font-weight: 400;
  text-transform: uppercase;
  padding: 4px 5px 2px 0;
}
/* line 236, ../scss/style.scss */ hr {
  border: 0;
  border-bottom: 0px;
  border-top: 1px solid rgba(0, 0, 0, 0.2);
}
/* line 241, ../scss/style.scss */ span, p, label, li, input, select, button {
  font-family: "Lato", sans-serif;
}
/* line 244, ../scss/style.scss */ .btn {
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
/* line 251, ../scss/style.scss */ input, select, textarea {
  /*border-radius:0 !important;*/
}
/* ============ BUTTON COLORS =============== */ /* line 256, ../scss/style.scss */ .btn-blue, .btn-primary {
  background-color: #026cb3;
  -webkit-box-shadow: 1px 2px 2px rgba(0, 0, 0, 0.2), inset 1px 2px rgba(255, 255, 255, 0.2);
  -moz-box-shadow: 1px 2px 2px rgba(0, 0, 0, 0.2), inset 1px 2px rgba(255, 255, 255, 0.2);
  box-shadow: 1px 2px 2px rgba(0, 0, 0, 0.2), inset 1px 2px rgba(255, 255, 255, 0.2);
  background-image: -webkit-linear-gradient(bottom, rgba(43, 50, 58, 0.36), rgba(43, 50, 58, 0));
  background-image: -moz-linear-gradient(bottom, rgba(43, 50, 58, 0.36), rgba(43, 50, 58, 0));
  background-image: -o-linear-gradient(bottom, rgba(43, 50, 58, 0.36), rgba(43, 50, 58, 0));
  background-image: linear-gradient(to top, rgba(43, 50, 58, 0.36), rgba(43, 50, 58, 0));
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
/* line 271, ../scss/style.scss */ .btn-gold {
  background-color: #d9b945;
  -webkit-box-shadow: 1px 2px 2px rgba(0, 0, 0, 0.2), inset 1px 2px rgba(255, 255, 255, 0.2);
  -moz-box-shadow: 1px 2px 2px rgba(0, 0, 0, 0.2), inset 1px 2px rgba(255, 255, 255, 0.2);
  box-shadow: 1px 2px 2px rgba(0, 0, 0, 0.2), inset 1px 2px rgba(255, 255, 255, 0.2);
  background-image: -webkit-linear-gradient(bottom, rgba(43, 50, 58, 0.36), rgba(43, 50, 58, 0));
  background-image: -moz-linear-gradient(bottom, rgba(43, 50, 58, 0.36), rgba(43, 50, 58, 0));
  background-image: -o-linear-gradient(bottom, rgba(43, 50, 58, 0.36), rgba(43, 50, 58, 0));
  background-image: linear-gradient(to top, rgba(43, 50, 58, 0.36), rgba(43, 50, 58, 0));
}
/* line 281, ../scss/style.scss */ .btn-orange {
  background-color: #ff8235;
  -webkit-box-shadow: 1px 2px 2px rgba(0, 0, 0, 0.2), inset 1px 2px rgba(255, 255, 255, 0.2);
  -moz-box-shadow: 1px 2px 2px rgba(0, 0, 0, 0.2), inset 1px 2px rgba(255, 255, 255, 0.2);
  box-shadow: 1px 2px 2px rgba(0, 0, 0, 0.2), inset 1px 2px rgba(255, 255, 255, 0.2);
  background-image: -webkit-linear-gradient(bottom, rgba(43, 50, 58, 0.36), rgba(43, 50, 58, 0));
  background-image: -moz-linear-gradient(bottom, rgba(43, 50, 58, 0.36), rgba(43, 50, 58, 0));
  background-image: -o-linear-gradient(bottom, rgba(43, 50, 58, 0.36), rgba(43, 50, 58, 0));
  background-image: linear-gradient(to top, rgba(43, 50, 58, 0.36), rgba(43, 50, 58, 0));
}
/* line 291, ../scss/style.scss */ .btn-yellow {
  background-color: #ffc028;
  -webkit-box-shadow: 1px 2px 2px rgba(0, 0, 0, 0.2), inset 1px 2px rgba(255, 255, 255, 0.2);
  -moz-box-shadow: 1px 2px 2px rgba(0, 0, 0, 0.2), inset 1px 2px rgba(255, 255, 255, 0.2);
  box-shadow: 1px 2px 2px rgba(0, 0, 0, 0.2), inset 1px 2px rgba(255, 255, 255, 0.2);
  background-image: -webkit-linear-gradient(bottom, rgba(43, 50, 58, 0.36), rgba(43, 50, 58, 0));
  background-image: -moz-linear-gradient(bottom, rgba(43, 50, 58, 0.36), rgba(43, 50, 58, 0));
  background-image: -o-linear-gradient(bottom, rgba(43, 50, 58, 0.36), rgba(43, 50, 58, 0));
  background-image: linear-gradient(to top, rgba(43, 50, 58, 0.36), rgba(43, 50, 58, 0));
}
/* line 301, ../scss/style.scss */ .btn-red {
  background-color: #c41425;
  -webkit-box-shadow: 1px 2px 2px rgba(0, 0, 0, 0.2), inset 1px 2px rgba(255, 255, 255, 0.2);
  -moz-box-shadow: 1px 2px 2px rgba(0, 0, 0, 0.2), inset 1px 2px rgba(255, 255, 255, 0.2);
  box-shadow: 1px 2px 2px rgba(0, 0, 0, 0.2), inset 1px 2px rgba(255, 255, 255, 0.2);
  background-image: -webkit-linear-gradient(bottom, rgba(43, 50, 58, 0.36), rgba(43, 50, 58, 0));
  background-image: -moz-linear-gradient(bottom, rgba(43, 50, 58, 0.36), rgba(43, 50, 58, 0));
  background-image: -o-linear-gradient(bottom, rgba(43, 50, 58, 0.36), rgba(43, 50, 58, 0));
  background-image: linear-gradient(to top, rgba(43, 50, 58, 0.36), rgba(43, 50, 58, 0));
}
/* line 311, ../scss/style.scss */ .btn-navy {
  background-color: #12495f;
  -webkit-box-shadow: 1px 2px 2px rgba(0, 0, 0, 0.2), inset 1px 2px rgba(255, 255, 255, 0.2);
  -moz-box-shadow: 1px 2px 2px rgba(0, 0, 0, 0.2), inset 1px 2px rgba(255, 255, 255, 0.2);
  box-shadow: 1px 2px 2px rgba(0, 0, 0, 0.2), inset 1px 2px rgba(255, 255, 255, 0.2);
  background-image: -webkit-linear-gradient(bottom, rgba(43, 50, 58, 0.36), rgba(43, 50, 58, 0));
  background-image: -moz-linear-gradient(bottom, rgba(43, 50, 58, 0.36), rgba(43, 50, 58, 0));
  background-image: -o-linear-gradient(bottom, rgba(43, 50, 58, 0.36), rgba(43, 50, 58, 0));
  background-image: linear-gradient(to top, rgba(43, 50, 58, 0.36), rgba(43, 50, 58, 0));
}
/* line 321, ../scss/style.scss */ .btn-secondary {
  color: #202022 !important;
  background-color: #f68a21;
  -webkit-box-shadow: 1px 2px 2px rgba(0, 0, 0, 0.2), inset 1px 2px rgba(255, 255, 255, 0.2);
  -moz-box-shadow: 1px 2px 2px rgba(0, 0, 0, 0.2), inset 1px 2px rgba(255, 255, 255, 0.2);
  box-shadow: 1px 2px 2px rgba(0, 0, 0, 0.2), inset 1px 2px rgba(255, 255, 255, 0.2);
  background-image: -webkit-linear-gradient(bottom, rgba(43, 50, 58, 0.36), rgba(43, 50, 58, 0));
  background-image: -moz-linear-gradient(bottom, rgba(43, 50, 58, 0.36), rgba(43, 50, 58, 0));
  background-image: -o-linear-gradient(bottom, rgba(43, 50, 58, 0.36), rgba(43, 50, 58, 0));
  background-image: linear-gradient(to top, rgba(43, 50, 58, 0.36), rgba(43, 50, 58, 0));
}
/* line 332, ../scss/style.scss */ .btn:hover {
  background: transparent;
  background-color: #202022;
  color: #fff;
  text-shadow: none;
  text-decoration: none;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
/* line 344, ../scss/style.scss */ .btn-secondary:hover {
  color: #fff !important;
}
/* ============ BUTTON SIZE =============== */ /* line 349, ../scss/style.scss */ .btn-large {
  border: none;
  color: #fff;
  text-transform: uppercase;
  font-size: 17px;
  text-shadow: none;
  height: 45px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
}
/* line 360, ../scss/style.scss */ .btn-default {
  border: none;
  color: #fff;
  text-transform: uppercase;
  font-size: 15px;
  text-shadow: none;
  height: 34px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
}
/* line 371, ../scss/style.scss */ .btn-small {
  border: none;
  color: #fff;
  text-transform: uppercase;
  font-size: 13px;
  text-shadow: none;
  height: 30px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}
/* line 382, ../scss/style.scss */ .btn-extra-small {
  border: none;
  color: #fff;
  text-transform: uppercase;
  font-size: 11px;
  text-shadow: none;
  padding-top: 3px;
  height: 22px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}
/* ============ NAVIGATION MAIN */ /* line 395, ../scss/style.scss */ .navbar-inverse .navbar-nav > li >
a:hover, .navbar-inverse .navbar-nav > li > a:focus {
  color: #202022;
}
/* line 399, ../scss/style.scss */ .navbar-inverse .navbar-collapse, .navbar-inverse .navbar-form {
  border: none;
  margin-left: -15px;
}
/* line 403, ../scss/style.scss */
#content_1 > .nav li:first-child {
  display: none;
}
/* line 406, ../scss/style.scss */ .navbar {
  margin-bottom: 0 !important;
}
/* line 409, ../scss/style.scss */ .navbar .nav > li:first-child > a {
  margin-left: 15px;
  border-right: solid 1px #fff;
  display: block;
  text-indent: -9999px !important;
  background-color: transparent;
  background-image: url("../img/home-icon.png");
  background-repeat: no-repeat;
  background-size: 19px 14px;
  background-position: 1px 15px;
  width: 35px;
}
/* line 422, ../scss/style.scss */ .navbar .nav > li:first-child > a:hover {
  display: block;
  text-indent: -9999px !important;
  background-color: transparent;
  background-image: url("../img/home-icon-black.png");
  background-repeat: no-repeat;
  background-size: 19px 14px;
  background-position: 1px 15px;
  width: 35px;
}
/* line 432, ../scss/style.scss */ .nav li:last-child {
  border-right: none;
}
/* line 435, ../scss/style.scss */
#nav, .nav-blue {
  background-color: #2baadf;
  -webkit-box-shadow: 1px 2px 2px rgba(0, 0, 0, 0.2), inset 1px 2px rgba(255, 255, 255, 0.2);
  -moz-box-shadow: 1px 2px 2px rgba(0, 0, 0, 0.2), inset 1px 2px rgba(255, 255, 255, 0.2);
  box-shadow: 1px 2px 2px rgba(0, 0, 0, 0.2), inset 1px 2px rgba(255, 255, 255, 0.2);
  background-image: -webkit-linear-gradient(bottom, rgba(43, 50, 58, 0.36), rgba(43, 50, 58, 0));
  background-image: -moz-linear-gradient(bottom, rgba(43, 50, 58, 0.36), rgba(43, 50, 58, 0));
  background-image: -o-linear-gradient(bottom, rgba(43, 50, 58, 0.36), rgba(43, 50, 58, 0));
  background-image: linear-gradient(to top, rgba(43, 50, 58, 0.36), rgba(43, 50, 58, 0));
}
/* line 445, ../scss/style.scss */ .navbar-inner, .navbar-inner-blue {
  padding-left: 0;
  background: transparent;
  background-color: transparent;
  border: none;
  box-shadow: none;
}
/* line 452, ../scss/style.scss */ .navbar .nav {
  /*margin-left: -15px;*/
}
/* line 455, ../scss/style.scss */ .navbar .nav > li > a {
  text-transform: uppercase;
  font-size: 17px;
  font-family: "Lato", sans-serif;
  padding: 12px 15px 10px;
  color: #fff;
  text-decoration: none;
  text-shadow: none;
  border-right: solid 1px #fff;
}
/* line 465, ../scss/style.scss */ .navbar .nav > .active > a, .navbar .nav > .active > a:hover, .navbar .nav
> .active > a:focus {
  text-transform: uppercase;
  font-size: 17px;
  font-family: "Lato", sans-serif;
  background-color: #d6dfe2;
  background-image: -webkit-linear-gradient(bottom, rgba(43, 50, 58, 0.36), rgba(43, 50, 58, 0));
  background-image: -moz-linear-gradient(bottom, rgba(43, 50, 58, 0.36), rgba(43, 50, 58, 0));
  background-image: -o-linear-gradient(bottom, rgba(43, 50, 58, 0.36), rgba(43, 50, 58, 0));
  background-image: linear-gradient(to top, rgba(43, 50, 58, 0.36), rgba(43, 50, 58, 0));
  text-shadow: none;
  color: #202022;
  border-right: none;
  border-left: none;
  margin-left: -1px;
}
/* line 480, ../scss/style.scss */
#brand {
  min-height: 110px;
}
/* line 484, ../scss/style.scss */
#logo img {
  /*padding-top: 15px;*/
}
/* line 487, ../scss/style.scss */
#top-menu {
  position: relative;
}
/* line 492, ../scss/style.scss */
#top-menu > div {
  position: absolute;
  z-index: 10;
  right: 0;
  top: -10px;
}
/* line 498, ../scss/style.scss */
#top-menu .nav-top {
  list-style: none;
}
/* line 502, ../scss/style.scss */ .header-menu > ul > li {
  display: inline;
  float: left;
}
/* line 506, ../scss/style.scss */ .top-buttons a {
  font-size: 15px;
  text-transform: uppercase;
  padding: 10px 14px 0 14px;
  color: #fff;
  font-weight: bold;
  display: block;
  height: 42px;
  -webkit-border-radius: 0 0 10px 10px;
  -moz-border-radius: 0 0 10px 10px;
  border-radius: 0 0 10px 10px;
  background-color: #2babdc;
  -webkit-box-shadow: 1px 2px 2px rgba(0, 0, 0, 0.2), inset 1px 2px rgba(255, 255, 255, 0.2);
  -moz-box-shadow: 1px 2px 2px rgba(0, 0, 0, 0.2), inset 1px 2px rgba(255, 255, 255, 0.2);
  box-shadow: 1px 2px 2px rgba(0, 0, 0, 0.2), inset 1px 2px rgba(255, 255, 255, 0.2);
  background-image: -webkit-linear-gradient(bottom, rgba(43, 50, 58, 0.36), rgba(43, 50, 58, 0));
  background-image: -moz-linear-gradient(bottom, rgba(43, 50, 58, 0.36), rgba(43, 50, 58, 0));
  background-image: -o-linear-gradient(bottom, rgba(43, 50, 58, 0.36), rgba(43, 50, 58, 0));
  background-image: linear-gradient(to top, rgba(43, 50, 58, 0.36), rgba(43, 50, 58, 0));
  margin-left: 5px;
}
/* line 527, ../scss/style.scss */ .top-buttons a:hover {
  text-decoration: none;
  color: #202022;
}
/* line 531, ../scss/style.scss */ .btn-login a {
  font-size: 15px;
  text-transform: uppercase;
  padding: 10px 14px 0 14px;
  color: #202022;
  font-weight: bold;
  display: block;
  height: 42px;
  -webkit-border-radius: 0 0 10px 10px;
  -moz-border-radius: 0 0 10px 10px;
  border-radius: 0 0 10px 10px;
  background-color: #d6dfe2;
  -webkit-box-shadow: 1px 2px 2px rgba(0, 0, 0, 0.2), inset 1px 2px rgba(255, 255, 255, 0.2);
  -moz-box-shadow: 1px 2px 2px rgba(0, 0, 0, 0.2), inset 1px 2px rgba(255, 255, 255, 0.2);
  box-shadow: 1px 2px 2px rgba(0, 0, 0, 0.2), inset 1px 2px rgba(255, 255, 255, 0.2);
  background-image: -webkit-linear-gradient(bottom, rgba(43, 50, 58, 0.36), rgba(43, 50, 58, 0));
  background-image: -moz-linear-gradient(bottom, rgba(43, 50, 58, 0.36), rgba(43, 50, 58, 0));
  background-image: -o-linear-gradient(bottom, rgba(43, 50, 58, 0.36), rgba(43, 50, 58, 0));
  background-image: linear-gradient(to top, rgba(43, 50, 58, 0.36), rgba(43, 50, 58, 0));
  margin-left: 5px;
}
/* line 552, ../scss/style.scss */ .btn-login a:hover {
  text-decoration: none;
  color: #fff;
}
/* line 556, ../scss/style.scss */ .header-phone strong, .header-phone i {
  font-size: 30px!important;
  font-weight: 100!important;
}

.header-phone i {
  color: #2baadf;
}

/* line 561, ../scss/style.scss */ .top-buttons .header-phone {
  background-color: transparent;
  background-image: url("../img/icon-phone-blue.png");
  background-repeat: no-repeat;
  background-size: 23px 25px;
  background-position: 10px 23px;
  margin-top: 51px;
  margin-right: -2px;
  margin-left: 30px;
  padding: 5px 0 10px 35px;
  font-size: 38px;
}
/* line 573, ../scss/style.scss */
#footer_copyright {
  color: #fff;
  background-color: #202022;
  height: 80px;
}
/* line 578, ../scss/style.scss */
#footer_links {
  background-color: #d6dfe2;
}
/* line 581, ../scss/style.scss */
#footer_links h5 {
  border-bottom: solid 1px #026cb3;
  text-transform: uppercase;
  color: #026cb3;
  margin-bottom: 18px;
  font-weight: bold;
}
/* line 588, ../scss/style.scss */
#footer_copyright .col-md-6, #footer_copyright .col-md-4, #footer_copyright .col-md-8 {
  margin-top: 20px;
}
/* line 591, ../scss/style.scss */
#footer_links .btn-default {
  padding-left: 40px;
  padding-right: 40px;
}
/* line 596, ../scss/style.scss */
#footer_links .span2, #footer_links .span3, #footer_links .span4, #footer_links .span5, #footer_links .span6 {
  padding-top: 18px;
  padding-bottom: 10px;
}
/* line 600, ../scss/style.scss */
#footer_links .fa {
  font-size: 17px;
  color: #1d7396;
  padding-right: 3px;
  line-height: 24px;
}
/* line 606, ../scss/style.scss */
#footer_links .span2 .fa {
  padding-left: 3px;
}
/* line 610, ../scss/style.scss */
#footer_links p {
  font-size: 16px;
  line-height: 24px;
}
/* line 614, ../scss/style.scss */
#footer_links ul {
  margin-top: -6px;
  margin-bottom: 5px;
}
/* line 618, ../scss/style.scss */
#footer_links .testimonial-author {
  font-weight: bold;
  font-size: 12px;
  line-height: 13px;
}
/* line 623, ../scss/style.scss */ .form-actions {
  padding: 15px 20px 16px 0;
  margin-top: 20px;
  margin-bottom: 20px;
  background-color: transparent;
  border: none;
}
/* line 630, ../scss/style.scss */ .form-inline {
  margin-top: 30px;
}
/* =============== LIST AWESOME STYLE ======*/ /* line 636, ../scss/style.scss */
#content ul {
  list-style-type: none;
  margin-left: 24px;
}
/* line 641, ../scss/style.scss */
#content li:before {
  font-family: 'FontAwesome';
  content: '\F0A9';
  margin: 4px 8px 0 -24px;
  color: #026cb3;
  line-height: 26px;
  font-size: 18px;
}
/* line 652, ../scss/style.scss */
#footer_links ul {
  list-style-type: none;
}
/* line 656, ../scss/style.scss */
#footer_links li:before {
  font-family: 'FontAwesome';
  content: '\F068';
  margin: 0 5px 0 -30px;
  color: #47494b;
  font-size: 8px;
}
/* line 665, ../scss/style.scss */ .navbar-inverse .navbar-toggle {
  border-color: #fff!important;
  margin-top: 4px!important;
}
/* HIDE SUB-MENU IN NORMAL VIEW ========*/ /* line 671, ../scss/style.scss */ .navbar-nav > li >
.dropdown-menu {
  /* display: none; */
}
/* line 674, ../scss/style.scss */
#nav .open > .dropdown-menu {
  display: none;
}
/* line 677, ../scss/style.scss */
#nav .navbar-nav .caret {
  display: none;
}
/* END HIDE SUB-MENU IN NORMAL VIEW ========*/ /* =============== MEDIA MOBILES PROPERTIES
==================*/ @media (max-width: 1199px) {
  /* line 685, ../scss/style.scss */
  h1 {
    font-size: 38px;
    line-height: 40px;
  }
  /* line 689, ../scss/style.scss */
  .navbar .nav > li > a {
    font-size: 16px;
  }
  /* line 693, ../scss/style.scss */
  .sub-menu > li > a {
    font-size: 16px;
  }
  /* line 696, ../scss/style.scss */
  #sub-nav {
    margin-top: -32px;
  }
}
@media (max-width: 979px) {
  /* line 701, ../scss/style.scss */
  .col-md-2 {
    width: 50%;
    float: left;
  }
  /* line 705, ../scss/style.scss */
  h1 {
    font-size: 32px;
    line-height: 34px;
  }
  /* line 709, ../scss/style.scss */
  .navbar-nav > li > a {
    font-size: 15px!important;
    padding-left: 10px !important;
    padding-left: 10px !important;
  }
  /* line 715, ../scss/style.scss */
  .sub-menu > li > a {
    font-size: 12px;
  }
  /* line 718, ../scss/style.scss */
  .sub-menu {
    margin-right: 2px;
  }
  /* line 721, ../scss/style.scss */
  #sub-nav {
    margin-top: -30px;
  }
  /* line 724, ../scss/style.scss */
  .top-buttons .header-phone {
    margin-top: 62px;
    margin-left: 30px;
    padding: 5px 0 10px 35px;
    font-size: 28px;
    background-size: 22px 23px;
    background-position: 12px 15px;
  }
}
@media (min-width: 768px) {
  /* line 735, ../scss/style.scss */
  .container > .navbar-header, .container-fluid > .navbar-header, .container > .navbar-collapse,
.container-fluid > .navbar-collapse {
    margin-left: -12px;
  }
  /* line 738, ../scss/style.scss */
  .sub-menu > li > a {
    margin-right: 0 !important;
  }
}
@media (max-width: 768px) {
  /* line 743, ../scss/style.scss */
  #bg-banner {
    display: none;
  }
  /* line 746, ../scss/style.scss */
  #sub-nav {
    margin-bottom: -25px !important;
  }
  /* line 750, ../scss/style.scss */
  h1 {
    margin-bottom: -15px;
    margin-top: 0;
  }
  /* line 754, ../scss/style.scss */
  .sub-menu > li > a {
    font-size: 13px;
    padding: 14px 10px!important;
    margin-right: 0;
  }
  /* line 759, ../scss/style.scss */
  #sub-nav {
    margin-top: -32px;
  }
  /* line 762, ../scss/style.scss */
  .top-buttons .header-phone {
    margin-top: 61px;
    margin-left: 30px;
    padding: 5px 0 10px 35px;
    font-size: 30px;
  }
  /* line 769, ../scss/style.scss */
  .top-buttons .header-phone {
    background-size: 23px 25px;
    background-position: 7px 14px;
  }
  /* line 773, ../scss/style.scss */
  .sub-menu {
    display: none;
  }
  /* ================= MOBILE MENU ============== */
  /* line 778, ../scss/style.scss */
  .navbar-nav .open .dropdown-menu {
    border-radius: 0;
    margin-top: -25px;
    background-color: #2c80a6!important;
    border-bottom: solid 1px #5db6db!important;
    margin-bottom: -5px;
  }
  /* line 785, ../scss/style.scss */
  .navbar-inverse .navbar-nav .open .dropdown-menu .divider {
    margin-top: 10px;
  }
  /* line 788, ../scss/style.scss */
  .navbar-inverse .navbar-nav .open .dropdown-menu > li > a {
    /*border-top: solid 1px #5db6db;*/
    text-transform: uppercase;
    color: #fff!important;
    line-height: 40px;
    padding-top: 0;
    padding-bottom: 0;
  }
  /* line 796, ../scss/style.scss */
  .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:hover {
    color: #202022!important;
    background-color: #8cd5f3;
  }
  /* line 800, ../scss/style.scss */
  .navbar-collapse {
    max-height: none!important;
  }
  /* line 803, ../scss/style.scss */
  .navbar-nav .caret {
    display: inline-block;
    visibility: visible;
  }
  /* line 807, ../scss/style.scss */
  #nav .open > .dropdown-menu {
    display: block;
  }
  /* line 810, ../scss/style.scss */
  .navbar .nav > li:first-child > a {
    border: 0;
    border-shadow: none;
  }
  /* line 814, ../scss/style.scss */
  .navbar .nav > li:first-child > a:hover {
    background-color: transparent !important;
  }
  /* line 817, ../scss/style.scss */
  .navbar-inverse .navbar-nav .open .dropdown-menu > li:first-child > a {
    /*display: none;*/
  }
  /* ================= MOBILE MENU ============== */
}
@media screen and (min-device-width: 641px) and (max-device-width: 767px) {
  /* line 825, ../scss/style.scss */
  .top-buttons .header-phone {
    margin-top: 61px;
    margin-left: 30px;
    padding: 5px 0 10px 31px;
    font-size: 14px!important;
  }
  /* line 832, ../scss/style.scss */
  .sub-menu {
    display: none;
  }
}
@media (max-width: 599px) {
  /* line 838, ../scss/style.scss */
  #bg-banner {
    display: none;
  }
  /* line 841, ../scss/style.scss */
  #sub-nav {
    margin-bottom: -25px !important;
  }
  /* ================= MOBILE MENU ============== */
  /* line 845, ../scss/style.scss */
  .navbar-nav .open .dropdown-menu, .navbar-nav .active .dropdown-menu {
    border-radius: 0;
    margin-top: 0px;
    background-image: linear-gradient(to top, #054f83, #026cb3);
    /*background-color: #054f83!important;*/
    border-bottom: solid 1px #054f83!important;
    margin-bottom: -5px;
  }
  /* line 852, ../scss/style.scss */
  .navbar-inverse .navbar-nav .open .dropdown-menu .divider {
    margin-top: 10px;
    background-color: #e5e5e5;
  }
  /* line 855, ../scss/style.scss */
  .navbar-inverse .navbar-nav .open .dropdown-menu > li > a {
    /*border-top: solid 1px #5db6db;*/
    text-transform: capitalize;
    color: #fff!important;
    line-height: 40px;
    padding-top: 0;
    padding-bottom: 0;
  }
  /* line 863, ../scss/style.scss */
  .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:hover {
    color: #202022!important;
    background-color: #8cd5f3;
  }
  /* line 867, ../scss/style.scss */
  .navbar-collapse {
    max-height: none!important;
  }
  /* line 870, ../scss/style.scss */
  .navbar-nav .caret {
    display: inline-block;
    visibility: visible;
  }
  /* line 874, ../scss/style.scss */
  #nav .open > .dropdown-menu {
    display: block;
  }
  /* line 877, ../scss/style.scss */
  .navbar .nav > li:first-child > a {
    border: 0;
    border-shadow: none;
  }
  /* line 881, ../scss/style.scss */
  .navbar .nav > li:first-child > a:hover {
    background-color: transparent !important;
  }
  /* line 884, ../scss/style.scss */
  .navbar-inverse .navbar-nav .open .dropdown-menu > li:first-child > a {
    /*display: none;*/
  }
  /* ================= MOBILE MENU ============== */
  /* line 893, ../scss/style.scss */
  .sub-menu {
    display: none;
  }
  /* line 896, ../scss/style.scss */
  .btn-login a {
    font-size: 12px;
    padding: 6px 12px 0 12px;
    height: 30px;
  }
  /* line 901, ../scss/style.scss */
  .top-buttons a {
    font-size: 12px;
    padding: 6px 12px 0 12px;
    height: 30px!important;
  }
  /* line 907, ../scss/style.scss */
  #top-menu > div {
    right: 15px;
  }
  /* line 910, ../scss/style.scss */
  .top-buttons .header-phone {
    margin-top: 12px;
    float: right;
    margin-right: 0px;
    padding: 5px 0 10px 35px;
    font-size: 22px;
    background-size: 21px 22px;
    background-position: 14px 17px;
  }
  /* line 920, ../scss/style.scss */
  #logo img {
    /*width: 220px;*/
  }
  /* line 923, ../scss/style.scss */
  h1 {
    font-size: 20px!important;
    line-height: 28px!important;
  }
}
@media (max-width: 767px) {
  /* line 929, ../scss/style.scss */
  .navbar .nav > li > a {
    border-right: none;
    border-bottom: solid 1px #2586b1;
    height: 50px;
    background-color: #259acb;
  }
  /* line 935, ../scss/style.scss */
  .navbar .nav > li > a:hover {

  }
  /* line 939, ../scss/style.scss */
  .navbar .nav {
    margin-top: 1px!important;
    margin-bottom: 1px!important;
  }
  /* line 944, ../scss/style.scss */
  h1 {
    font-size: 26px!important;
    line-height: 28px!important;
    margin: 8px 0 1px 0!important;
  }
  /* line 949, ../scss/style.scss */
  h3 {
    margin: 0px 0 0px 0!important;
  }
  /* line 952, ../scss/style.scss */
  #sub-nav {
    margin-top: 0px;
    width: 100%;
    margin-bottom: 0;
  }
  /* line 958, ../scss/style.scss */
  .navbar .nav > li:first-child > a {
    border-right: none;
  }
}
@media (max-width: 480px) {
  /* line 965, ../scss/style.scss */
  .navbar .nav > li:first-child > a {
    margin: 0;
    border-right: none;
    width: 100%!important;
    background-position: 11px 17px!important;
  }
  /* line 971, ../scss/style.scss */
  .btn-login a {
    font-size: 12px;
    padding: 8px 22px 0 22px;
    height: 34px;
  }
  /* line 976, ../scss/style.scss */
  .top-buttons a {
    font-size: 12px;
    padding: 8px 22px 0 22px;
    height: 34px!important;
  }
  /* line 981, ../scss/style.scss */
  .header-menu {
    /*position: absolute;*/
    /*margin-top: 10px;*/
    /*left: 20px;*/
    /*right: auto;*/
  }
  /* line 987, ../scss/style.scss */
  #top-menu > div {
    width: 100%;
  }

  /* line 994, ../scss/style.scss */
  #brand .span4 {
    width: 100%;
    text-align: center;
  }
  /* line 999, ../scss/style.scss */
  #brand {
    /*height: 178px;*/
    text-align: center;
  }
  /* line 1003, ../scss/style.scss */
  #logo img {
    /*width: 280px!important;*/
    /*height: auto;*/
    /*margin-top: 32px;*/
  }
  /* line 1009, ../scss/style.scss */
  .sub-menu > li > a {
    font-size: 11px;
    padding: 12px 8px!important;
    margin-right: 0;
  }
  /* line 1014, ../scss/style.scss */
  #sub-nav {
    margin-top: 0px;
    width: 100%;
  }
  /* line 1018, ../scss/style.scss */
  #sub-nav .sub-menu {
    width: 100%;
  }
  /* line 1021, ../scss/style.scss */
  .col-md-3 {
    text-align: center;
  }
  /* line 1024, ../scss/style.scss */
  h1 {
    font-size: 26px!important;
    line-height: 28px!important;
    margin: 8px 0 1px 0!important;
  }
  /* line 1029, ../scss/style.scss */
  h2 {
    font-size: 22px!important;
    line-height: 24px!important;
    margin: 0!important;
  }
  /* line 1035, ../scss/style.scss */
  h3 {
    margin: 2px 0 1px 0!important;
  }
}
@media only screen and (min-width: 320px) and (max-width: 480px) {
  /* line 1041, ../scss/style.scss */
  .navbar-toggle {
    margin-bottom: 4px!important;
  }
  /* line 1047, ../scss/style.scss */
  #content_1 .navbar .nav > li:first-child > a {
    display: none!important;
  }
  /* line 1051, ../scss/style.scss */
  .navbar .nav > li > a {
    color: #fff!important;
    background: #27a5d7;
    background: -moz-linear-gradient(top, #27a5d7 0%, #f02f17 0%, #267da0 0%, #e73827 0%, #27a5d7 0%, #2b81a5
100%);
    background: -webkit-gradient(left top, left bottom, color-stop(0%, #27a5d7), color-stop(0%, #f02f17),
color-stop(0%, #267da0), color-stop(0%, #e73827), color-stop(0%, #27a5d7), color-stop(100%, #2b81a5));
    background: -webkit-linear-gradient(top, #27a5d7 0%, #f02f17 0%, #267da0 0%, #e73827 0%, #27a5d7 0%,
#2b81a5 100%);
    background: -o-linear-gradient(top, #27a5d7 0%, #f02f17 0%, #267da0 0%, #e73827 0%, #27a5d7 0%, #2b81a5
100%);
    background: -ms-linear-gradient(top, #27a5d7 0%, #f02f17 0%, #267da0 0%, #e73827 0%, #27a5d7 0%, #2b81a5
100%);
    background: linear-gradient(to bottom, #27a5d7 0%, #f02f17 0%, #267da0 0%, #e73827 0%, #27a5d7 0%, #2b81a5
100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#27a5d7', endColorstr='#2b81a5',
GradientType=0 );
    height: 49px;
  }
  /* ====== ACTIVE BUTTON MOBILE VIEW =======*/
  /* line 1067, ../scss/style.scss */
  .navbar .nav > .active > a, .navbar .nav > .active > a:hover, .navbar .nav > .active > a:focus {
    color: #202022 !important;
    background: #27a5d7;
    background: -moz-linear-gradient(top, #27a5d7 0%, #f02f17 0%, #267da0 0%, #e73827 0%, #27a5d7 0%, #2b81a5
100%);
    background: -webkit-gradient(left top, left bottom, color-stop(0%, #27a5d7), color-stop(0%, #f02f17),
color-stop(0%, #267da0), color-stop(0%, #e73827), color-stop(0%, #27a5d7), color-stop(100%, #2b81a5));
    background: -webkit-linear-gradient(top, #27a5d7 0%, #f02f17 0%, #267da0 0%, #e73827 0%, #27a5d7 0%,
#2b81a5 100%);
    background: -o-linear-gradient(top, #27a5d7 0%, #f02f17 0%, #267da0 0%, #e73827 0%, #27a5d7 0%, #2b81a5
100%);
    background: -ms-linear-gradient(top, #27a5d7 0%, #f02f17 0%, #267da0 0%, #e73827 0%, #27a5d7 0%, #2b81a5
100%);
    background: linear-gradient(to bottom, #27a5d7 0%, #f02f17 0%, #267da0 0%, #e73827 0%, #27a5d7 0%, #2b81a5
100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#27a5d7', endColorstr='#2b81a5',
GradientType=0 );
    height: 49px;
  }
  /* =============== BLUE GRADIENT BACKGROUND BUTTONS ==========*/
  /* line 1086, ../scss/style.scss */
  .bs-navbar-collapse {
    background: #27a5d7;
    background: -moz-linear-gradient(top, #27a5d7 0%, #f02f17 0%, #267da0 0%, #e73827 0%, #27a5d7 0%, #2b81a5
100%);
    background: -webkit-gradient(left top, left bottom, color-stop(0%, #27a5d7), color-stop(0%, #f02f17),
color-stop(0%, #267da0), color-stop(0%, #e73827), color-stop(0%, #27a5d7), color-stop(100%, #2b81a5));
    background: -webkit-linear-gradient(top, #27a5d7 0%, #f02f17 0%, #267da0 0%, #e73827 0%, #27a5d7 0%,
#2b81a5 100%);
    background: -o-linear-gradient(top, #27a5d7 0%, #f02f17 0%, #267da0 0%, #e73827 0%, #27a5d7 0%, #2b81a5
100%);
    background: -ms-linear-gradient(top, #27a5d7 0%, #f02f17 0%, #267da0 0%, #e73827 0%, #27a5d7 0%, #2b81a5
100%);
    background: linear-gradient(to bottom, #27a5d7 0%, #f02f17 0%, #267da0 0%, #e73827 0%, #27a5d7 0%, #2b81a5
100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#27a5d7', endColorstr='#2b81a5',
GradientType=0 );
  }
  /* line 1097, ../scss/style.scss */
  .header-phone strong {
    font-size: 26px!important;
  }
  /* line 1100, ../scss/style.scss */
  #top-menu .header-phone {
    left: 9px;
    position: relative;
    margin-top: 138px;
    font-size: 28px!important;
    text-align: center;
    width: 100%;
    background-size: 21px 22px;
    background-position: 34px 16px;
  }
  /* line 1110, ../scss/style.scss */
  #footer_links .col-md-3 {
    text-align: left;
  }
}
@media only screen and (max-width: 767px) {
  /* styles */
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  /* styles */
  #footer_copyright p {
    line-height: 0px;
  }
}
@media only screen and (min-width: 992px) {
  /* styles */
  #footer_copyright p {
    line-height: 40px;
  }
}
@media only screen and (max-width: 991px) {
  /* styles */
}
@media only screen and (min-width: 992px) {
  /* styles */
}


#sub-nav ul{
    list-style: none;
   /* margin: -11px!important;*/
    padding: 0;
}
#sub-nav ul > li > a {
    background-image: linear-gradient(to top, #054f83, #026cb3);
    color: #fff!important;
}

#nav ul > li > a {
    color: #fff!important;
}

#nav .nav > .active > a,
#nav .nav > .active > a:hover,
#nav .nav > .active > a:focus {
    background-color: #d6dfe2 !important;
    color: #000!important;
}

.header-menu ul li a {
    background-image: linear-gradient(to top, #054f83, #026cb3);
    color: #fff!important;
  text-transform: capitalize;
}

#nav, .nav-blue {
    background-image: linear-gradient(to top, #054f83, #026cb3);
}

#sub-nav li.active > a, #sub-nav li.active > a:hover, #sub-nav li.active > a:focus {
    background: #FFF none repeat scroll 0% 0%;
    color: #026cb3!important;
}

div h1 {
    color: #026cb3!important;
}

a {
    color: #026cb3!important;
}

#nav .navbar-nav>li>a{
  text-transform: none;
}

#nav .navbar-nav > li > a:hover{
  background-color: #111;
  color: #fff;
}
#nav .navbar-nav li:first-child a:hover {
  /*background-color: transparent !important;*/
}

#nav .open > .dropdown-menu{
  display: block!important;
}

#nav .level-1 > li > a {
  color: #fff !important;
}

.dropdown-menu > li {

}

#sub-nav .dropdown-menu{
  background-color: #d6dfe2!important;
  border-radius: 0px;
}

#sub-nav .dropdown-menu li a{
  background-color: transparent;
  background-image: none;
  color: #000!important;
  width: 100%;
  box-shadow: none;
  font-size: 13px;
  height: 42px;
}

#sub-nav .dropdown-menu li a:hover{
  /*background-image: linear-gradient(to top, #054f83, #026cb3)!important;*/
  color: #fff!important;
  border-radius: 0px!important;
}

#sub-nav .dropdown-menu li{
  width: 100%;
}

.btn-group > .btn{
  height: 42px;
  text-transform: none;
  font-weight: 600;
}

#nav .caret{
  border-top-color: #fff;
  border-bottom-color: #fff;
  display: inline-block!important;
}

.navbar-nav>li>.dropdown-menu{
  background-color: #d6dfe2;
  border-radius: 0px;
}

.navbar-inverse .nav li.dropdown.open>.dropdown-toggle .caret, .navbar-inverse .nav li.dropdown.active>.dropdown-toggle .caret, .navbar-inverse .nav li.dropdown.open.active>.dropdown-toggle .caret{
  /*border-top-color: #111 !important;*/
  border-top-color: #fff !important;
  border-bottom-color: #fff !important;
}

.navbar .nav>li>.dropdown-menu:after, .navbar .nav>li>.dropdown-menu:before{
  display: none!important;
}

#nav .level-1 > li > a{
  height: 35px;
  line-height: 35px;
  padding: 0 14px;
}
#nav .level-1 > li > a:hover{
  /*background-image: linear-gradient(to top, #054f83, #026cb3);*/
  background-color: #111 !important;
  color: #fff!important;
  display: block;
  /*box-shadow: inset 1px 2px rgba(255,255,255,.2);*/
}


#sub-nav .btn-group>.btn:first-child {
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
#sub-nav .btn-group > .btn+.dropdown-toggle {
  border-top-right-radius: 10px;
  border-bottom-right-radius: 0px;
}
#sub-nav .btn-group>.btn:first-child:not(:last-child):not(.dropdown-toggle) {
  border-top-left-radius: 10px;
  border-top-right-radius: 0;
}

#sub-nav ul>li>a{
  text-transform: none;
}
#nav .navbar-toggle {
  color: #fff !important;
  font-size: 16px;
  font-weight: bold;
}

@media (max-width: 767px) {
  .navbar-inverse .navbar-nav>.open > a:hover {
    background-color: #000 !important;
  }

  #nav .navbar-nav>li>a {
    padding-top: 12px;
  }

  .navbar-toggle {
    margin-top: 30px;
    border: 1px solid #054f83;
    background-image: linear-gradient(to top, #054f83, #026cb3);

  }

  .navbar-toggle .icon-bar{
    color: #fff;
    height: 3px;
    width: 20px;
  }

  .navbar-brand{
    padding: 15px 5px;
    height: 100%;
  }

  #footer_links{
    display: none;
  }

  #footer_copyright p{
    line-height: 18px;
  }
}


#logo {
  float: left;
  padding: 30px 0;
}

@media (max-width: 489px) {
  .header-menu {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  #logo {
    float: none;
  }
}

@media (min-width: 768px) {
  #nav .level-1 > li > a {
    color: #026cb3!important
  }

  ul.nav li.dropdown:hover > ul.dropdown-menu {
    display: block;
  }

}

.btn-submit{
  text-transform: capitalize;
}

.btn-group button a{
  color: #fff!important;
}

.btn-group button.active {
  background: #FFF none repeat scroll 0% 0%;
  border: none;
  box-shadow: none;
}

.btn-group button.active > a, .btn-group button.active > .caret {
  color: #026cb3!important;
}

#sub-nav ul li {
  margin: 0 5px 0 0;
}

/* additional button styles to match with tiny mcs css*/
.large_blue_button{
  background-color: #026cb3;
  box-shadow: 1px 2px 2px rgba(0, 0, 0, 0.2), inset 1px 2px rgba(255, 255, 255, 0.2);
  background-image: linear-gradient(to top, rgba(43, 50, 58, 0.36), rgba(43, 50, 58, 0));
  transition: all 0.2s ease-in-out;
  border: none;
  color: #fff!important;
  font-size: 17px;
  text-shadow: none;
  height: 45px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
  padding: 9px 16px;
  display: inline-block;
  font-weight: 400;
  line-height: 1.42857143;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  cursor: pointer;
  -webkit-user-select: none;
  text-transform: none;
  margin-bottom: 5px;
}

.large_blue_button a, .default_blue_button a, .small_blue_button a, .xs_blue_button a{
  color: #fff!important;
}

.large_blue_button:hover, .default_blue_button:hover, .small_blue_button:hover, .xs_blue_button:hover{
  background: transparent;
  background-color: #202022;
  color: #fff!important;
  text-shadow: none;
  text-decoration: none;
  text-transform: none;
  margin-bottom: 5px;
}

.default_blue_button{
  display: inline-block;
  text-transform: none;
  padding: 6px 12px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.42857143;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  margin-bottom: 5px;
  cursor: pointer;
  -webkit-user-select: none;
  border: none;
  color: #fff!important;
  font-size: 15px;
  text-shadow: none;
  height: 34px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  background-color: #026cb3;
  box-shadow: 1px 2px 2px rgba(0, 0, 0, 0.2), inset 1px 2px rgba(255, 255, 255, 0.2);
  background-image: linear-gradient(to top, rgba(43, 50, 58, 0.36), rgba(43, 50, 58, 0));
  transition: all 0.2s ease-in-out;
}

.small_blue_button{
  display: inline-block;
  text-transform: none;
  padding: 6px 12px;
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 5px;
  line-height: 1.42857143;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  cursor: pointer;
  -webkit-user-select: none;
  border: none;
  color: #fff!important;
  font-size: 13px;
  text-shadow: none;
  height: 30px;
  border-radius: 4px;
  background-color: #026cb3;
  box-shadow: 1px 2px 2px rgba(0, 0, 0, 0.2), inset 1px 2px rgba(255, 255, 255, 0.2);
  background-image: linear-gradient(to top, rgba(43, 50, 58, 0.36), rgba(43, 50, 58, 0));
  transition: all 0.2s ease-in-out;
}

.xs_blue_button{
  border: none;
  text-transform: none;
  color: #fff!important;
  font-size: 11px;
  text-shadow: none;
  padding-top: 3px;
  margin-bottom: 5px;
  height: 22px;
  border-radius: 3px;
  display: inline-block;
  font-weight: 400;
  line-height: 1.42857143;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  cursor: pointer;
  padding: 4px 8px;
  -webkit-user-select: none;
  background-color: #026cb3;
  box-shadow: 1px 2px 2px rgba(0, 0, 0, 0.2), inset 1px 2px rgba(255, 255, 255, 0.2);
  background-image: linear-gradient(to top, rgba(43, 50, 58, 0.36), rgba(43, 50, 58, 0));
  transition: all 0.2s ease-in-out;
}

.large_orange_button{
  text-transform: none;
  background-color: #026cb3;
  box-shadow: 1px 2px 2px rgba(0, 0, 0, 0.2), inset 1px 2px rgba(255, 255, 255, 0.2);
  background-image: linear-gradient(to top, rgba(43, 50, 58, 0.36), rgba(43, 50, 58, 0));
  transition: all 0.2s ease-in-out;
  border: none;
  color: #fff!important;
  margin-bottom: 5px;
  background-color: #f68a21;
  font-size: 17px;
  text-shadow: none;
  height: 45px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
  padding: 9px 16px;
  display: inline-block;
  font-weight: 400;
  line-height: 1.42857143;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  cursor: pointer;
  -webkit-user-select: none;
}

.large_orange_button:hover, .default_orange_button:hover, .small_orange_button:hover, .xs_orange_button:hover{
  background: transparent;
  margin-bottom: 5px;
  text-transform: none;
  background-color: #202022;
  color: #fff!important;
  text-shadow: none;
  text-decoration: none;
}

.default_orange_button{
  display: inline-block;
  text-transform: none;
  padding: 6px 12px;
  font-size: 14px;
  margin-bottom: 5px;
  font-weight: 400;
  line-height: 1.42857143;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  cursor: pointer;
  -webkit-user-select: none;
  border: none;
  color: #fff!important;
  font-size: 15px;
  text-shadow: none;
  height: 34px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  background-color: #f68a21;
  box-shadow: 1px 2px 2px rgba(0, 0, 0, 0.2), inset 1px 2px rgba(255, 255, 255, 0.2);
  background-image: linear-gradient(to top, rgba(43, 50, 58, 0.36), rgba(43, 50, 58, 0));
  transition: all 0.2s ease-in-out;
}

.small_orange_button{
  display: inline-block;
  text-transform: none;
  padding: 6px 12px;
  font-size: 14px;
  margin-bottom: 5px;
  font-weight: 400;
  line-height: 1.42857143;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  cursor: pointer;
  -webkit-user-select: none;
  border: none;
  color: #fff!important;
  font-size: 13px;
  text-shadow: none;
  height: 30px;
  border-radius: 4px;
  background-color: #f68a21;
  box-shadow: 1px 2px 2px rgba(0, 0, 0, 0.2), inset 1px 2px rgba(255, 255, 255, 0.2);
  background-image: linear-gradient(to top, rgba(43, 50, 58, 0.36), rgba(43, 50, 58, 0));
  transition: all 0.2s ease-in-out;
}

.xs_orange_button{
  text-transform: none;
  border: none;
  color: #fff!important;
  font-size: 11px;
  margin-bottom: 5px;
  text-shadow: none;
  padding-top: 3px;
  height: 22px;
  border-radius: 3px;
  display: inline-block;
  font-weight: 400;
  line-height: 1.42857143;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  cursor: pointer;
  padding: 4px 8px;
  -webkit-user-select: none;
  background-color: #f68a21;
  box-shadow: 1px 2px 2px rgba(0, 0, 0, 0.2), inset 1px 2px rgba(255, 255, 255, 0.2);
  background-image: linear-gradient(to top, rgba(43, 50, 58, 0.36), rgba(43, 50, 58, 0));
  transition: all 0.2s ease-in-out;
}

.large_orange_button a, .default_orange_button a, .small_orange_button a, .xs_orange_button a{
  color: #fff!important;
}

.form .btn-primary{
  text-transform: none;
}

.accordion .accordion-inner ul {
  margin-left: 0 !important;
}

.accordion .accordion-inner ul li::before {
  margin-left: 0 !important;
}

.pagination li:before, .extra-slideshow li:before {
  content: none !important;
  margin: 0 !important;
}

.blog-item .continue-reading {
  padding: 0 10%;
}

a.skip-main {
  left:-999px;
  position:absolute;
  top:auto;
  width:1px;
  height:1px;
  overflow:hidden;
  z-index:-999;
  text-decoration: none;
}
a.skip-main:focus, a.skip-main:active {
  top: auto;
  left:0;
  width: auto;
  height: auto;
  overflow:auto;
  z-index:999;
  margin: 10px;
  background-color: #026cb3;
  box-shadow: 1px 2px 2px rgba(0, 0, 0, 0.2), inset 1px 2px rgba(255, 255, 255, 0.2);
  background-image: linear-gradient(to top, rgba(43, 50, 58, 0.36), rgba(43, 50, 58, 0));
  transition: all 0.2s ease-in-out;
  border: none;
  color: #fff!important;
  font-size: 17px;
  text-shadow: none;
  border-radius: 6px;
  padding: 9px 16px;
  display: inline-block;
  font-weight: 400;
  line-height: 1.42857143;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  cursor: pointer;
}

.flexslider ul {
  margin: 0 !important;
}

.flexslider .flex-direction-nav a {
  background: url(../img/bg_direction_nav.png) no-repeat 0 0;
  width: 40px !important;
  height: 40px !important;
}

.flexslider .flex-direction-nav a:hover {
  opacity: 0.5 !important;
}

.flexslider .flex-direction-nav .flex-next {
  background-position: 100% 0;
  right: 5px;
}

.flexslider .flex-control-paging li a {
  width: 16px;
  height: 16px;
}
/* --------------------------------

Primary style

-------------------------------- */
*, *::after, *::before {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

html {
    font-size: 62.5%;
}

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


/* --------------------------------

Main Components

-------------------------------- */
.cd-header {
    height: 100px;
    line-height: 170px;
    position: relative;
}
.cd-header h1 {
    text-align: center;
    color: #FFFFFF;
    font-size: 2.2rem;
}
.cd-pricing-switcher label {
    position: relative;
    z-index: 1;
    display: inline-block;
    float: left;
    width: 90px;
    height: 40px;
    line-height: 40px;
    cursor: pointer;
    font-size: 1.4rem;
    color: #000;
    text-align: center;
}
.cd-pricing-switcher .cd-switch {
    /* floating background */
    position: absolute;
    top: 2px;
    left: 2px;
    height: 42px;
    width: 90px;
    background-color: #026cb3;
    border-radius: 50em;
    -webkit-transition: -webkit-transform 0.5s;
    -moz-transition: -moz-transform 0.5s;
    transition: transform 0.5s;
}

hr {
    display: block;
}



.btndiv{
    text-align: center;
    margin: 15px 0px;
}

.footer_right{
    color: #026cb3;
    font-weight: 700;
    text-align: center;
}

.footer_left{
    text-align: center;
}
.cd-pricing-switcher input[type="radio"]:checked + label + .cd-switch,
.cd-pricing-switcher input[type="radio"]:checked + label:nth-of-type(n) + .cd-switch {
    /* use label:nth-of-type(n) to fix a bug on safari with multiple adjacent-sibling selectors*/
    -webkit-transform: translateX(90px);
    -moz-transform: translateX(90px);
    -ms-transform: translateX(90px);
    -o-transform: translateX(90px);
    transform: translateX(90px);
}

@media only screen and (min-width: 768px) {
    .cd-header {
        height: 160px;
        line-height: 280px;
    }
    .cd-header h1 {
        font-size: 3.6rem;
        font-weight: 300;
    }

    hr {
        display: block;
        border-width: 2px;
    }

    .enqBtn{
        width: 100%;
        text-transform: capitalize;
    }

    .footer_right{
        color: #026cb3;
        font-weight: 700;
        text-align: right;
    }

    .footer_left{
        text-align: left;
    }
}

.cd-pricing-container {
    width: 100%;
    max-width: 1170px;
    /*margin: 4em auto;*/
}
@media only screen and (min-width: 768px) {
    .cd-pricing-container {
        /*margin: 6em auto;*/
    }
    .cd-pricing-container.cd-full-width {
        width: 100%;
        max-width: none;
    }

    .cd-pricing-switcher label {
        width: 155px;
    }

    .cd-pricing-switcher .cd-switch {
        width: 155px;
    }

    .cd-pricing-switcher input[type="radio"]:checked + label + .cd-switch,
    .cd-pricing-switcher input[type="radio"]:checked + label:nth-of-type(n) + .cd-switch {
        /* use label:nth-of-type(n) to fix a bug on safari with multiple adjacent-sibling selectors*/
        -webkit-transform: translateX(90px);
        -moz-transform: translateX(90px);
        -ms-transform: translateX(90px);
        -o-transform: translateX(90px);
        transform: translateX(155px);
    }
}


.cd-pricing-switcher .fieldset {
    display: inline-block;
    position: relative;
    padding: 2px;
    border-radius: 50em;
    width: 100%;
    background-color: #d6dfe2;
    box-shadow: 1px 2px 2px rgba(0, 0, 0, 0.2), inset 1px 2px rgba(255, 255, 255, 0.2);
}
.cd-pricing-switcher input[type="radio"] {
    position: absolute;
    opacity: 0;
}



.no-js .cd-pricing-switcher {
    display: none;
}

.cd-pricing-list {
    margin: 2em 0 0;
}
.cd-pricing-list > li {
    position: relative;
    margin-bottom: 1em;
}
@media only screen and (min-width: 768px) {
    .cd-pricing-list {
        margin: 4em 0em;
    }
    .cd-pricing-list:after {
        content: "";
        display: table;
        clear: both;
    }
    .cd-pricing-list > li {
        width: 33.3333333333%;
        float: left;
    }
    .cd-has-margins .cd-pricing-list > li {
        width: 32.3333333333%;
        float: left;
        margin-right: 1.5%;
    }
    .cd-has-margins .cd-pricing-list > li:last-of-type {
        margin-right: 0;
    }

    .cd-pricing-wrapper {
        /* this is the item that rotates */
        position: relative;
    }

    .cd-pricing-wrapper > li {
        background-color: #FFFFFF;
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
        /* Firefox bug - 3D CSS transform, jagged edges */
        /* outline: 1px solid transparent;*/
        background-color: #d6dfe2;
        box-shadow: 1px 2px 2px rgba(0, 0, 0, 0.2), inset 1px 2px rgba(255, 255, 255, 0.2);
        min-height: 161px;
        margin-right: 25px;
        width: 100%;
        padding: 10px 10px;
    }


    .cd-pricing-wrapper {
        /* this is the item that rotates */
        position: relative;
    }
}

.cd-pricing-wrapper {
    /* this is the item that rotates */
    position: relative;
    margin: -27px 33px 0px 33px;
}
.touch .cd-pricing-wrapper {
    /* fix a bug on IOS8 - rotating elements dissapear*/
    -webkit-perspective: 2000px;
    -moz-perspective: 2000px;
    perspective: 2000px;
}
.cd-pricing-wrapper.is-switched .is-visible {
    /* totate the tables - anticlockwise rotation */
    -webkit-transform: rotateY(180deg);
    -moz-transform: rotateY(180deg);
    -ms-transform: rotateY(180deg);
    -o-transform: rotateY(180deg);
    transform: rotateY(180deg);
    -webkit-animation: cd-rotate 0.5s;
    -moz-animation: cd-rotate 0.5s;
    animation: cd-rotate 0.5s;
}
.cd-pricing-wrapper.is-switched .is-hidden {
    /* totate the tables - anticlockwise rotation */
    -webkit-transform: rotateY(0);
    -moz-transform: rotateY(0);
    -ms-transform: rotateY(0);
    -o-transform: rotateY(0);
    transform: rotateY(0);
    -webkit-animation: cd-rotate-inverse 0.5s;
    -moz-animation: cd-rotate-inverse 0.5s;
    animation: cd-rotate-inverse 0.5s;
    opacity: 0;
}
.cd-pricing-wrapper.is-switched .is-selected {
    opacity: 1;
}
.cd-pricing-wrapper.is-switched.reverse-animation .is-visible {
    /* invert rotation direction - clockwise rotation */
    -webkit-transform: rotateY(-180deg);
    -moz-transform: rotateY(-180deg);
    -ms-transform: rotateY(-180deg);
    -o-transform: rotateY(-180deg);
    transform: rotateY(-180deg);
    -webkit-animation: cd-rotate-back 0.5s;
    -moz-animation: cd-rotate-back 0.5s;
    animation: cd-rotate-back 0.5s;
}
.cd-pricing-wrapper.is-switched.reverse-animation .is-hidden {
    /* invert rotation direction - clockwise rotation */
    -webkit-transform: rotateY(0);
    -moz-transform: rotateY(0);
    -ms-transform: rotateY(0);
    -o-transform: rotateY(0);
    transform: rotateY(0);
    -webkit-animation: cd-rotate-inverse-back 0.5s;
    -moz-animation: cd-rotate-inverse-back 0.5s;
    animation: cd-rotate-inverse-back 0.5s;
    opacity: 0;
}
.cd-pricing-wrapper.is-switched.reverse-animation .is-selected {
    opacity: 1;
}
.cd-pricing-wrapper > li {
    background-color: #FFFFFF;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    /* Firefox bug - 3D CSS transform, jagged edges */
   /* outline: 1px solid transparent;*/
    background-color: #d6dfe2;
    min-height: 115px;
    margin-right: 25px;
    width: 100%;
    padding: 10px 10px;
    text-align: center;
}
.cd-pricing-wrapper > li::after {
    /* subtle gradient layer on the right - to indicate it's possible to scroll */
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 50px;
    pointer-events: none;
   /* background: -webkit-linear-gradient( right , #FFFFFF, rgba(255, 255, 255, 0));
    background: linear-gradient(to left, #FFFFFF, rgba(255, 255, 255, 0));*/
}
.cd-pricing-wrapper > li.is-ended::after {
    /* class added in jQuery - remove the gradient layer when it's no longer possible to scroll */
    display: none;
}

.cd-pricing-wrapper .is-hidden {
    /* the hidden items, right behind the front one */
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 1;
    -webkit-transform: rotateY(180deg);
    -moz-transform: rotateY(180deg);
    -ms-transform: rotateY(180deg);
    -o-transform: rotateY(180deg);
    transform: rotateY(180deg);
    margin-right: 20px;
}
.cd-pricing-wrapper .is-selected {
    /* the next item that will be visible */
    z-index: 3 !important;
}
@media only screen and (min-width: 768px) {
    .cd-pricing-wrapper > li::before {
        /* separator between pricing tables - visible when number of tables > 3 */
        content: '';
        position: absolute;
        z-index: 6;
        left: -1px;
        top: 50%;
        bottom: auto;
        -webkit-transform: translateY(-50%);
        -moz-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        -o-transform: translateY(-50%);
        transform: translateY(-50%);
        height: 50%;
        width: 1px;
        background-color: #b1d6e8;
    }
    .cd-pricing-wrapper > li::after {
        /* hide gradient layer */
        display: none;
    }
    .cd-popular .cd-pricing-wrapper > li {
        box-shadow: inset 0 0 0 3px #e97d68;
    }
    .cd-has-margins .cd-pricing-wrapper > li, .cd-has-margins .cd-popular .cd-pricing-wrapper > li {
        box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
    }
    .cd-secondary-theme .cd-pricing-wrapper > li {
        background: #3aa0d1;
        background: -webkit-linear-gradient( bottom , #3aa0d1, #3ad2d1);
        background: linear-gradient(to top, #3aa0d1, #3ad2d1);
    }
    .cd-secondary-theme .cd-popular .cd-pricing-wrapper > li {
        background: #e97d68;
        background: -webkit-linear-gradient( bottom , #e97d68, #e99b68);
        background: linear-gradient(to top, #e97d68, #e99b68);
        box-shadow: none;
    }
    :nth-of-type(1) > .cd-pricing-wrapper > li::before {
        /* hide table separator for the first table */
        display: none;
    }
    .cd-has-margins .cd-pricing-wrapper > li {
        border-radius: 4px 4px 6px 6px;
    }
    .cd-has-margins .cd-pricing-wrapper > li::before {
        display: none;
    }

    .cd-currency, .cd-value {
        font-size: 5rem;
        font-weight: 700;
    }

    .cd-pricing-wrapper > li {
        background-color: #FFFFFF;
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
        /* Firefox bug - 3D CSS transform, jagged edges */
        /* outline: 1px solid transparent;*/
        background-color: #d6dfe2;
        min-height: 170px;
        margin-right: 25px;
        width: 100%;
        padding: 10px 10px;
        text-align: center;
    }
}
@media only screen and (min-width: 1500px) {
    .cd-full-width .cd-pricing-wrapper > li {
        padding: 2.5em 0;
    }
}

.no-js .cd-pricing-wrapper .is-hidden {
    position: relative;
    -webkit-transform: rotateY(0);
    -moz-transform: rotateY(0);
    -ms-transform: rotateY(0);
    -o-transform: rotateY(0);
    transform: rotateY(0);
    margin-top: 1em;
}

@media only screen and (min-width: 768px) {
    .cd-popular .cd-pricing-wrapper > li::before {
        /* hide table separator for .cd-popular table */
        display: none;
    }

    .cd-popular + li .cd-pricing-wrapper > li::before {
        /* hide table separator for tables following .cd-popular table */
        display: none;
    }

    .cd-pricing-header {
        position: relative;
        z-index: 1;
        height: 80px;
        padding: 1em;
        pointer-events: none;
        background-color: #3aa0d1;
        color: #FFFFFF;
    }
}
.cd-pricing-header h2 {
    margin-bottom: 3px;
    font-weight: 600;
    font-size: 2rem;
}
.cd-popular .cd-pricing-header {
    background-color: #e97d68;
}
@media only screen and (min-width: 768px) {
    .cd-pricing-header {
        height: auto;
        padding: 1.9em 0.9em 1.6em;
        pointer-events: auto;
        text-align: center;
        color: #173d50;
        background-color: transparent;
    }
    .cd-popular .cd-pricing-header {
        color: #e97d68;
        background-color: transparent;
    }
    .cd-secondary-theme .cd-pricing-header {
        color: #FFFFFF;
    }
    .cd-pricing-header h2 {
        font-size: 18px;
        letter-spacing: 2px;
        color: #2baadf;
        min-height: 32px;
        font-weight: 700;
    }

    .cd-currency, .cd-value {
        font-size: 2rem;
        font-weight: 500;
    }
}

.cd-currency, .cd-value {
    font-size: 3rem;
    font-weight: 500;
}

.cd-duration {
    font-weight: 700;
    font-size: 1.3rem;
}
.cd-popular .cd-duration {
    color: #f3b6ab;
}
.cd-duration::before {
    content: '/';
    margin-right: 2px;
}

#plandetails{
    background-color: #d6dfe2;
    border-radius: 20px;
    margin: 10px;
    box-shadow: 1px 2px 2px rgba(0, 0, 0, 0.2), inset 1px 2px rgba(255, 255, 255, 0.2);
}

.cd-value-main {
    font-size: 4rem;
    font-weight: normal;
    color: #000;
}

@media only screen and (min-width: 768px) {
    .cd-value-main {
        font-size: 4rem;
        font-weight: normal;
        color: #000;
    }

    #plandetails{
        background-color: transparent;
        border-radius: 0px;
        box-shadow: none;
    }
    .cd-currency, .cd-duration {
        color: rgba(23, 61, 80, 0.4);
    }
    .cd-popular .cd-currency, .cd-popular .cd-duration {
        color: #e97d68;
    }
    .cd-secondary-theme .cd-currency, .cd-secondary-theme .cd-duration {
        color: #2e80a7;
    }
    .cd-secondary-theme .cd-popular .cd-currency, .cd-secondary-theme .cd-popular .cd-duration {
        color: #ba6453;
    }

    .cd-currency {
        display: inline-block;
        margin-top: 10px;
        vertical-align: top;
        font-size: 2rem;
        font-weight: 700;
    }

    .cd-duration {
        font-size: 1.4rem;
        color: #000;
    }
}
.cd-pricing-body {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}
.is-switched .cd-pricing-body {
    /* fix a bug on Chrome Android */
    overflow: hidden;
}
@media only screen and (min-width: 768px) {
    .cd-pricing-body {
        overflow-x: visible;
    }
}

.cd-pricing-features {
    width: 600px;
}
.cd-pricing-features:after {
    content: "";
    display: table;
    clear: both;
}
.cd-pricing-features li {
    width: 100px;
    float: left;
    padding: 1.6em 1em;
    font-size: 1.4rem;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.cd-pricing-features em {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
}
@media only screen and (min-width: 768px) {
    .cd-pricing-features {
        width: auto;
    }
    .cd-pricing-features li {
        float: none;
        width: auto;
        padding: 1em;
    }
    .cd-popular .cd-pricing-features li {
        margin: 0 3px;
    }
    .cd-pricing-features li:nth-of-type(2n+1) {
        background-color: rgba(23, 61, 80, 0.06);
    }
    .cd-pricing-features em {
        display: inline-block;
        margin-bottom: 0;
    }
    .cd-has-margins .cd-popular .cd-pricing-features li, .cd-secondary-theme .cd-popular .cd-pricing-features li {
        margin: 0;
    }
    .cd-secondary-theme .cd-pricing-features li {
        color: #FFFFFF;
    }
    .cd-secondary-theme .cd-pricing-features li:nth-of-type(2n+1) {
        background-color: transparent;
    }
}

.cd-pricing-footer {
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    /* on mobile it covers the .cd-pricing-header */
    height: 80px;
    width: 100%;
}
.cd-pricing-footer::after {
    /* right arrow visible on mobile */
    content: '';
    position: absolute;
    right: 1em;
    top: 50%;
    bottom: auto;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    height: 20px;
    width: 20px;
    background: url(../img/cd-icon-small-arrow.svg);
}
@media only screen and (min-width: 768px) {
    .cd-pricing-footer {
        position: relative;
        height: auto;
        padding: 1.8em 0;
        text-align: center;
    }
    .cd-pricing-footer::after {
        /* hide arrow */
        display: none;
    }
    .cd-has-margins .cd-pricing-footer {
        padding-bottom: 0;
    }
}

.cd-select {
    position: relative;
    z-index: 1;
    display: block;
    height: 100%;
    /* hide button text on mobile */
    overflow: hidden;
    text-indent: 100%;
    white-space: nowrap;
    color: transparent;
}
@media only screen and (min-width: 768px) {
    .cd-select {
        position: static;
        display: inline-block;
        height: auto;
        padding: 1.3em 3em;
        color: #FFFFFF;
        border-radius: 2px;
        background-color: #0c1f28;
        font-size: 1.4rem;
        text-indent: 0;
        letter-spacing: 2px;
    }
    .no-touch .cd-select:hover {
        background-color: #112e3c;
    }
    .cd-popular .cd-select {
        background-color: #e97d68;
    }
    .no-touch .cd-popular .cd-select:hover {
        background-color: #ec907e;
    }
    .cd-secondary-theme .cd-popular .cd-select {
        background-color: #0c1f28;
    }
    .no-touch .cd-secondary-theme .cd-popular .cd-select:hover {
        background-color: #112e3c;
    }
    .cd-has-margins .cd-select {
        display: block;
        padding: 1.7em 0;
        border-radius: 0 0 4px 4px;
    }

    .plan_subtitle{
        font-size: 12px;
        text-align: right;
    }
    #groups > li {
        padding-left: 0px;
        margin-right: 15px;
        margin-top: 15px;
        min-height: 70px;
        text-align: center;
        vertical-align: middle;
        padding: 22px;
        border-radius: 20px;
    }

}

/* --------------------------------

xkeyframes

-------------------------------- */
@-webkit-keyframes cd-rotate {
    0% {
        -webkit-transform: perspective(2000px) rotateY(0);
    }
    70% {
        /* this creates the bounce effect */
        -webkit-transform: perspective(2000px) rotateY(200deg);
    }
    100% {
        -webkit-transform: perspective(2000px) rotateY(180deg);
    }
}
@-moz-keyframes cd-rotate {
    0% {
        -moz-transform: perspective(2000px) rotateY(0);
    }
    70% {
        /* this creates the bounce effect */
        -moz-transform: perspective(2000px) rotateY(200deg);
    }
    100% {
        -moz-transform: perspective(2000px) rotateY(180deg);
    }
}
@keyframes cd-rotate {
    0% {
        -webkit-transform: perspective(2000px) rotateY(0);
        -moz-transform: perspective(2000px) rotateY(0);
        -ms-transform: perspective(2000px) rotateY(0);
        -o-transform: perspective(2000px) rotateY(0);
        transform: perspective(2000px) rotateY(0);
    }
    70% {
        /* this creates the bounce effect */
        -webkit-transform: perspective(2000px) rotateY(200deg);
        -moz-transform: perspective(2000px) rotateY(200deg);
        -ms-transform: perspective(2000px) rotateY(200deg);
        -o-transform: perspective(2000px) rotateY(200deg);
        transform: perspective(2000px) rotateY(200deg);
    }
    100% {
        -webkit-transform: perspective(2000px) rotateY(180deg);
        -moz-transform: perspective(2000px) rotateY(180deg);
        -ms-transform: perspective(2000px) rotateY(180deg);
        -o-transform: perspective(2000px) rotateY(180deg);
        transform: perspective(2000px) rotateY(180deg);
    }
}
@-webkit-keyframes cd-rotate-inverse {
    0% {
        -webkit-transform: perspective(2000px) rotateY(-180deg);
    }
    70% {
        /* this creates the bounce effect */
        -webkit-transform: perspective(2000px) rotateY(20deg);
    }
    100% {
        -webkit-transform: perspective(2000px) rotateY(0);
    }
}
@-moz-keyframes cd-rotate-inverse {
    0% {
        -moz-transform: perspective(2000px) rotateY(-180deg);
    }
    70% {
        /* this creates the bounce effect */
        -moz-transform: perspective(2000px) rotateY(20deg);
    }
    100% {
        -moz-transform: perspective(2000px) rotateY(0);
    }
}
@keyframes cd-rotate-inverse {
    0% {
        -webkit-transform: perspective(2000px) rotateY(-180deg);
        -moz-transform: perspective(2000px) rotateY(-180deg);
        -ms-transform: perspective(2000px) rotateY(-180deg);
        -o-transform: perspective(2000px) rotateY(-180deg);
        transform: perspective(2000px) rotateY(-180deg);
    }
    70% {
        /* this creates the bounce effect */
        -webkit-transform: perspective(2000px) rotateY(20deg);
        -moz-transform: perspective(2000px) rotateY(20deg);
        -ms-transform: perspective(2000px) rotateY(20deg);
        -o-transform: perspective(2000px) rotateY(20deg);
        transform: perspective(2000px) rotateY(20deg);
    }
    100% {
        -webkit-transform: perspective(2000px) rotateY(0);
        -moz-transform: perspective(2000px) rotateY(0);
        -ms-transform: perspective(2000px) rotateY(0);
        -o-transform: perspective(2000px) rotateY(0);
        transform: perspective(2000px) rotateY(0);
    }
}
@-webkit-keyframes cd-rotate-back {
    0% {
        -webkit-transform: perspective(2000px) rotateY(0);
    }
    70% {
        /* this creates the bounce effect */
        -webkit-transform: perspective(2000px) rotateY(-200deg);
    }
    100% {
        -webkit-transform: perspective(2000px) rotateY(-180deg);
    }
}
@-moz-keyframes cd-rotate-back {
    0% {
        -moz-transform: perspective(2000px) rotateY(0);
    }
    70% {
        /* this creates the bounce effect */
        -moz-transform: perspective(2000px) rotateY(-200deg);
    }
    100% {
        -moz-transform: perspective(2000px) rotateY(-180deg);
    }
}
@keyframes cd-rotate-back {
    0% {
        -webkit-transform: perspective(2000px) rotateY(0);
        -moz-transform: perspective(2000px) rotateY(0);
        -ms-transform: perspective(2000px) rotateY(0);
        -o-transform: perspective(2000px) rotateY(0);
        transform: perspective(2000px) rotateY(0);
    }
    70% {
        /* this creates the bounce effect */
        -webkit-transform: perspective(2000px) rotateY(-200deg);
        -moz-transform: perspective(2000px) rotateY(-200deg);
        -ms-transform: perspective(2000px) rotateY(-200deg);
        -o-transform: perspective(2000px) rotateY(-200deg);
        transform: perspective(2000px) rotateY(-200deg);
    }
    100% {
        -webkit-transform: perspective(2000px) rotateY(-180deg);
        -moz-transform: perspective(2000px) rotateY(-180deg);
        -ms-transform: perspective(2000px) rotateY(-180deg);
        -o-transform: perspective(2000px) rotateY(-180deg);
        transform: perspective(2000px) rotateY(-180deg);
    }
}
@-webkit-keyframes cd-rotate-inverse-back {
    0% {
        -webkit-transform: perspective(2000px) rotateY(180deg);
    }
    70% {
        /* this creates the bounce effect */
        -webkit-transform: perspective(2000px) rotateY(-20deg);
    }
    100% {
        -webkit-transform: perspective(2000px) rotateY(0);
    }
}
@-moz-keyframes cd-rotate-inverse-back {
    0% {
        -moz-transform: perspective(2000px) rotateY(180deg);
    }
    70% {
        /* this creates the bounce effect */
        -moz-transform: perspective(2000px) rotateY(-20deg);
    }
    100% {
        -moz-transform: perspective(2000px) rotateY(0);
    }
}
@keyframes cd-rotate-inverse-back {
    0% {
        -webkit-transform: perspective(2000px) rotateY(180deg);
        -moz-transform: perspective(2000px) rotateY(180deg);
        -ms-transform: perspective(2000px) rotateY(180deg);
        -o-transform: perspective(2000px) rotateY(180deg);
        transform: perspective(2000px) rotateY(180deg);
    }
    70% {
        /* this creates the bounce effect */
        -webkit-transform: perspective(2000px) rotateY(-20deg);
        -moz-transform: perspective(2000px) rotateY(-20deg);
        -ms-transform: perspective(2000px) rotateY(-20deg);
        -o-transform: perspective(2000px) rotateY(-20deg);
        transform: perspective(2000px) rotateY(-20deg);
    }
    100% {
        -webkit-transform: perspective(2000px) rotateY(0);
        -moz-transform: perspective(2000px) rotateY(0);
        -ms-transform: perspective(2000px) rotateY(0);
        -o-transform: perspective(2000px) rotateY(0);
        transform: perspective(2000px) rotateY(0);
    }
}



.plan_subtitle{
    font-size: 12px;
}

.group_title{
    /*font-family: "Lato", sans-serif;*/
    /*font-weight: 500;*/
    font-size: 20px;
    color: #000;
    /*margin: 0 0 3px 15px;*/

}

#groups > li{
    padding-left: 0px;
    margin-right: 6px;
    margin-top: 15px;
    /* min-height: 60px; */
    text-align: center;
    vertical-align: middle;
    padding: 23px;
    border-radius: 20px;
}

.plan_title{
    font-weight: 500;
}

.title{
    margin: 15px 0px 10px 0px;
}

.plan_details{
    margin: 20px 20px;
    display: flex;
}

.plan_details > div{
    align-self: flex-end;
}

.plan_desc{
    text-align: center;
    font-size: 16px;
}

.planfooterdetails{
    margin-top: 40px;
}

.fieldset input[type=radio]:checked + label {
    color: #fff;
}










/*************************************************
 * Price switcher by Tiago Matos
*************************************************/
/* Price container */
.price-container {
    margin-top: 20px;
}

    .price-container .row {
       /* margin-left: 0;*/
    }
    .price-container ul {
        margin-left: 0 !important;
    }
    .price-container .nav-tabs {
        border: none;
        margin-bottom: 10px;
    }

    .price-container .nav-tabs li:before {
        content: none !important;
    }
    .price-container > .nav-tabs li {
        margin-right: 20px;
    }
    .price-container > .nav-tabs a {
        font-size: 17px; color: #202022 !important;
        border: none;
        padding: 20px 60px;
        background-color: #d6dfe2;
        -webkit-box-shadow: 1px 2px 2px rgba(0, 0, 0, 0.2), inset 1px 2px rgba(255, 255, 255, 0.2);
        -moz-box-shadow: 1px 2px 2px rgba(0, 0, 0, 0.2), inset 1px 2px rgba(255, 255, 255, 0.2);
        box-shadow: 1px 2px 2px rgba(0, 0, 0, 0.2), inset 1px 2px rgba(255, 255, 255, 0.2);
        background-image: -webkit-linear-gradient(to top, #ababad, #eeeaeb);
        background-image: -moz-linear-gradient(to top, #ababad, #eeeaeb);
        background-image: -o-linear-gradient(to top, #ababad, #eeeaeb);
        background-image: linear-gradient(to top, #ababad, #eeeaeb);
        -webkit-transition: all 0.2s ease-in-out;
        -moz-transition: all 0.2s ease-in-out;
        -o-transition: all 0.2s ease-in-out;
        -ms-transition: all 0.2s ease-in-out;
        transition: all 0.2s ease-in-out;
        border-radius: 20px;
    }
    .price-container > .nav-tabs a:hover {
        color: #fff !important;
        background: #202022;
    }
    .price-container > .nav-tabs > li.active > a,
    .price-container > .nav-tabs > li.active > a:focus,
    .price-container > .nav-tabs > li.active > a:hover {
        color: #fff !important;
        border: none;
        background-color: #2baadf;
        -webkit-box-shadow: 1px 2px 2px rgba(0, 0, 0, 0.2), inset 1px 2px rgba(255, 255, 255, 0.2);
        -moz-box-shadow: 1px 2px 2px rgba(0, 0, 0, 0.2), inset 1px 2px rgba(255, 255, 255, 0.2);
        box-shadow: 1px 2px 2px rgba(0, 0, 0, 0.2), inset 1px 2px rgba(255, 255, 255, 0.2);
        background-image: -webkit-linear-gradient(to top, #054f83, #026cb3);
        background-image: -moz-linear-gradient(to top, #054f83, #026cb3);
        background-image: -o-linear-gradient(to top, #054f83, #026cb3);
        background-image: linear-gradient(to top, #054f83, #026cb3);
    }

/* Price Switcher */
.price-switcher-container {
    position: relative;
}
    .price-switcher-container > .nav-tabs {
        display: table;
        width: 100%;
        table-layout: fixed;
    }
    .price-switcher-container > .nav-tabs > li {
        float: none;
        display: table-cell;
    }
    .price-switcher-container > .nav-tabs > li > a {
        text-align: center;
    }
    .price-switcher-container > .nav-tabs > .item {
        width: 100%;
    }


.price-switcher-container .nav-tabs {
    background-color: #efebea;
    -webkit-box-shadow: 0px 1px 0px 0px rgba(155,153,155,1);
    -moz-box-shadow: 0px 1px 0px 0px rgba(155,153,155,1);
    box-shadow: 0px 1px 0px 0px rgba(155,153,155,1);
    border-radius: 50em;
    padding: 2px 0 3px 3px;
}
.price-switcher-container .nav-tabs a {
    font-weight: bold; color: #353535 !important; text-align: center;
    /*width: 268px;*/
    padding: 10px;
    border: none;
}
.price-switcher-container  .nav-tabs a:hover {
    background: none;
}
.price-switcher-container  .nav-tabs > li.active > a,
.price-switcher-container  .nav-tabs > li.active > a:focus,
.price-switcher-container  .nav-tabs > li.active > a:hover {
    color: #fff !important;
    background: none;
    border: none;
}
.price-switcher-container .nav-tabs > li.active > a:before {
    position: absolute;
    left: 10px;
    font-family: FontAwesome;
    content: '\f104';
}
.price-switcher-container .nav-tabs > li:first-child.active > a:before {
    content: '';
}
.price-switcher-container .nav-tabs > li.active > a:after {
    position: absolute;
    right: 10px;
    font-family: FontAwesome;
    content: '\f105';
}
.price-switcher-container .nav-tabs > li:last-child.active > a:after {
    content: '';
}
.price-marker {
    position: absolute;
    /*width: 268px;*/
    border: none;
    margin: 2px 0 0 3px; padding: 20px 10px;
    background: #026cb3;
    border-radius: 50px;
    transition: all 0.2s;
    background-image: -webkit-linear-gradient(to top, #054f83, #026cb3);
    background-image: -moz-linear-gradient(to top, #054f83, #026cb3);
    background-image: -o-linear-gradient(to top, #054f83, #026cb3);
    background-image: linear-gradient(to top, #054f83, #026cb3);
}
.price-plan-details {
    text-align: center;
    border-radius: 20px;
    margin: 0; padding: 20px;
    background: #efebea;
    box-shadow: 1px 2px 2px rgba(0, 0, 0, 0.2), inset 1px 2px rgba(255, 255, 255, 0.2);
}
.price-plan-details .btn-blue {
    color: #fff !important;
    margin-top: 60px;
}
.price-plan-details .btn-secondary {
    color: #fff !important;
    margin-top: 34px;
}
.price-plan-details-value {
    font-family: 'Lato', sans-serif; letter-spacing: -6px;
    font-size: 73px; font-weight: 700; color: #3766ab;
}
.price-plan-details-duration {
    font-family: 'Lato', sans-serif; letter-spacing: -2px;
    font-size: 40px; font-weight: 400;
    margin-left: 15px;
}
.price-plan-details-description {
    font-size: 16px;
    margin: 0;
}
.price-box {
    display: flex; align-items: center; flex-direction: column; justify-content: center;
    width: 85%; height: 200px;
    text-align: center;
    margin: 10px auto;
    background-color: #efebea;
    border-bottom: 1px solid #9a9a9a;
}
.price-box .name {
    font-size: 18px; font-weight: 700; color: #3863a7; letter-spacing: -1px;
    min-height: 32px;
}
.price-box .price {
    font-size: 27px; color: #173d50;
    font-weight: 500;
}
.price-plan-label {
    font-size: 20px; color: #000;
    margin: 0 0 3px 0;
}
.price-plan-description {
    font-size: 11px; text-align: right;
    margin: 0 10px 3px 0;
}

@media (max-width: 587px) {
    .price-switcher-container .nav-tabs {
       /* background: none;
        box-shadow: none*/
        background-color: #efebea;
        -webkit-box-shadow: 0px 1px 0px 0px rgba(155,153,155,1);
        -moz-box-shadow: 0px 1px 0px 0px rgba(155,153,155,1);
        box-shadow: 0px 1px 0px 0px rgba(155,153,155,1);
        border-radius: 50em;
        padding: 2px 0 3px 3px;
    }
    /*.price-switcher-container .nav-tabs li,
    .price-switcher-container .nav-tabs a,
    .price-marker {
        width: 100%;
    }*/
    .price-switcher-container .nav-tabs > li.active > a:after,
    .price-switcher-container .nav-tabs > li.active > a:before {
        content: none
    }

    .price-box{
        width: 85%;
    }
}
@media (max-width: 436px) {
    .price-container > .nav-tabs {
        display: table;
        width: 100%;
        table-layout: fixed;
    }
    .price-container > .nav-tabs > li {
        float: none;
        display: table-cell;
        padding-right: 10px;
    }
    .price-container > .nav-tabs > li > a {
        text-align: center;
    }
    .price-container > .nav-tabs > .item {
        width: 100%;
    }

    .price-container > .nav-tabs a {
        /*width: 100%;*/
        padding: 20px;
    }
}

@media(min-width: 768px) {
    .price-container {
        width: 80%;
        margin: 0 auto;
    }
    .price-plan-details {
        margin-bottom: 20px; padding: 0px;
        background: #fff;
        box-shadow: none;
    }
    .group_title {
        float: left;
        width: 80px;
        text-align: right;
        margin-top: 15px; margin-right: 15px;
    }
    .price-plan-label {
        float: left;
        width: 80px;
        text-align: right;
        margin-top: 8px; margin-right: 15px;
    }
    .price-switcher-container > .nav-tabs {
        float: left;
        width: calc(100% - 95px);
    }

    .price-box{
        width: 100%;
    }

    .price-container .row {
         margin-left: 0;
    }
}

.modal-title{
    font-size: 22px;
    font-weight: bold;
    text-align: center;
}