/*
 * animate.css
 */

/*!
Animate.css - http://daneden.me/animate
Licensed under the MIT license - http://opensource.org/licenses/MIT

Copyright (c) 2015 Daniel Eden
*/

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

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

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

.timeline_animated.bounceIn,
.timeline_animated.bounceOut {
  -webkit-animation-duration: .75s;
  animation-duration: .75s;
}

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

@-webkit-keyframes bounce {
  0%, 20%, 53%, 80%, 100% {
    -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 {
  0%, 20%, 53%, 80%, 100% {
    -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 {
  0%, 50%, 100% {
    opacity: 1;
  }

  25%, 75% {
    opacity: 0;
  }
}

@keyframes flash {
  0%, 50%, 100% {
    opacity: 1;
  }

  25%, 75% {
    opacity: 0;
  }
}

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

@-webkit-keyframes pulse {
  0% {
    -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);
  }

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

@keyframes pulse {
  0% {
    -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);
  }

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

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

@-webkit-keyframes rubberBand {
  0% {
  	opacity: 1;
    -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);
  }

  100% {
  	opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@keyframes rubberBand {
  0% {
  	opacity: 1;
    -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);
  }

  100% {
  	opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

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

@-webkit-keyframes shake {
  0%, 100% {
    -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 {
  0%, 100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

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

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

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

@-webkit-keyframes swing {
  20% {
  	opacity: 1;
    -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);
  }

  100% {
  	opacity: 1;
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}

@keyframes swing {
  20% {
  	opacity: 1;
    -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);
  }

  100% {
  	opacity: 1;
    -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 {
  0% {
    -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);
  }

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

@keyframes tada {
  0% {
    -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);
  }

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

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

@-webkit-keyframes wobble {
  0% {
    -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);
  }

  100% {
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes wobble {
  0% {
    -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);
  }

  100% {
    -webkit-transform: none;
    transform: none;
  }
}

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

@-webkit-keyframes jello {
  11.1% {
    -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)
  }
  100% {
    -webkit-transform: none;
            transform: none
  }
}

@keyframes jello {
  11.1% {
    -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)
  }
  100% {
    -webkit-transform: none;
            transform: none
  }
}



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

            transform-origin: center
}

@-webkit-keyframes bounceIn {
  0%, 20%, 40%, 60%, 80%, 100% {
    -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);
  }

  100% {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@keyframes bounceIn {
  0%, 20%, 40%, 60%, 80%, 100% {
    -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);
  }

  100% {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

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

@-webkit-keyframes bounceInDown {
  0%, 60%, 75%, 90%, 100% {
    -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);
  }

  100% {
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes bounceInDown {
  0%, 60%, 75%, 90%, 100% {
    -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);
  }

  100% {
    -webkit-transform: none;
    transform: none;
  }
}

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

@-webkit-keyframes bounceInLeft {
  0%, 60%, 75%, 90%, 100% {
    -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);
  }

  100% {
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

@keyframes bounceInLeft {
  0%, 60%, 75%, 90%, 100% {
    -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);
  }

  100% {
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

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

@-webkit-keyframes bounceInRight {
  0%, 60%, 75%, 90%, 100% {
    -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);
  }

  100% {
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

@keyframes bounceInRight {
  0%, 60%, 75%, 90%, 100% {
    -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);
  }

  100% {
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

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

@-webkit-keyframes bounceInUp {
  0%, 60%, 75%, 90%, 100% {
    -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, -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);
  }

  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

@keyframes bounceInUp {
  0%, 60%, 75%, 90%, 100% {
    -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, -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);
  }

  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

.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);
  }

  100% {
    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);
  }

  100% {
    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);
  }

  100% {
    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);
  }

  100% {
    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);
  }

  100% {
    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);
  }

  100% {
    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);
  }

  100% {
    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);
  }

  100% {
    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);
  }

  100% {
    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);
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}

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

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

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

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

  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

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

  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

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

@-webkit-keyframes fadeInDownBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInDownBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

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

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

  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

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

  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

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

@-webkit-keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

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

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

  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

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

  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

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

@-webkit-keyframes fadeInRightBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInRightBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

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

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

  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

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

  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

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

@-webkit-keyframes fadeInUpBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInUpBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

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

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

  100% {
    opacity: 0;
  }
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

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

@-webkit-keyframes fadeOutDown {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}

@keyframes fadeOutDown {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}

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

@-webkit-keyframes fadeOutDownBig {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}

@keyframes fadeOutDownBig {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}

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

@-webkit-keyframes fadeOutLeft {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}

@keyframes fadeOutLeft {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}

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

@-webkit-keyframes fadeOutLeftBig {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}

@keyframes fadeOutLeftBig {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}

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

@-webkit-keyframes fadeOutRight {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}

@keyframes fadeOutRight {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}

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

@-webkit-keyframes fadeOutRightBig {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}

@keyframes fadeOutRightBig {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}

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

@-webkit-keyframes fadeOutUp {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}

@keyframes fadeOutUp {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}

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

@-webkit-keyframes fadeOutUpBig {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}

@keyframes fadeOutUpBig {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}

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

@-webkit-keyframes flip {
  0% {
  	opacity: 1;
    -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;
  }

  100% {
  	opacity: 1;
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}

@keyframes flip {
  0% {
  	opacity: 1;
    -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;
  }

  100% {
  	opacity: 1;
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}

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

@-webkit-keyframes flipInX {
  0% {
    -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);
  }

  100% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
    opacity: 1;
  }
}

@keyframes flipInX {
  0% {
    -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);
  }

  100% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
    opacity: 1;
  }
}

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

@-webkit-keyframes flipInY {
  0% {
    -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: 1;
  }

  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);
  }

  100% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
    opacity: 1;
  }
}

@keyframes flipInY {
  0% {
    -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: 1;
  }

  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);
  }

  100% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
    opacity: 1;
  }
}

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

@-webkit-keyframes flipOutX {
  0% {
    -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;
  }

  100% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 1;
  }
}

@keyframes flipOutX {
  0% {
    -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;
  }

  100% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 1;
  }
}

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

@-webkit-keyframes flipOutY {
  0% {
    -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;
  }

  100% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}

@keyframes flipOutY {
  0% {
    -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;
  }

  100% {
    -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 {
  0% {
    -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;
  }

  100% {
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

@keyframes lightSpeedIn {
  0% {
    -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;
  }

  100% {
    -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 {
  0% {
    opacity: 1;
  }

  100% {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}

@keyframes lightSpeedOut {
  0% {
    opacity: 1;
  }

  100% {
    -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 {
  0% {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

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

  100% {
    -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 {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

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

  100% {
    -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 {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

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

  100% {
    -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 {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

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

  100% {
    -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 {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

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

  100% {
    -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 {
  0% {
    -webkit-transform-origin: center;
    transform-origin: center;
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}

@keyframes rotateOut {
  0% {
    -webkit-transform-origin: center;
    transform-origin: center;
    opacity: 1;
  }

  100% {
    -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 {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }

  100% {
    -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 {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }

  100% {
    -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 {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }

  100% {
    -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 {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }

  100% {
    -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 {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }

  100% {
    -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 {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }

  100% {
    -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 {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }

  100% {
    -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 {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }

  100% {
    -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;
  }

  100% {
    -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;
  }

  100% {
    -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 {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

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

  100% {
    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 {
  0% {
    opacity: 1;
  }

  100% {
    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 {
  0% {
    opacity: 1;
  }

  100% {
    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 {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3);
  }

  100% {
    opacity: 1;
  }
}

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

  100% {
    opacity: 1;
  }
}

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

@-webkit-keyframes zoomInDown {
  0% {
    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);
  }

  100% {
    opacity: 1;
  }
}

@keyframes zoomInDown {
  0% {
    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);
  }

  100% {
    opacity: 1;
  }

}

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

@-webkit-keyframes zoomInLeft {
  0% {
    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 {
  0% {
    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 {
  0% {
    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 {
  0% {
    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 {
  0% {
    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 {
  0% {
    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 {
  0% {
    opacity: 1;
  }

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

  100% {
    opacity: 0;
  }
}

@keyframes zoomOut {
  0% {
    opacity: 1;
  }

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

  100% {
    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);
  }

  100% {
    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);
  }

  100% {
    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);
  }

  100% {
    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);
  }

  100% {
    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);
  }

  100% {
    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);
  }

  100% {
    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);
  }

  100% {
    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);
  }

  100% {
    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 {
  0% {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }

  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

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

  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

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

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

  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

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

  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

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

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

  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

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

  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

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

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

  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

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

  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

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

@-webkit-keyframes slideOutDown {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  100% {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}

@keyframes slideOutDown {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  100% {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}

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

@-webkit-keyframes slideOutLeft {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  100% {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}

@keyframes slideOutLeft {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  100% {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}

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

@-webkit-keyframes slideOutRight {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  100% {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}

@keyframes slideOutRight {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  100% {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}

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

@-webkit-keyframes slideOutUp {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  100% {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}

@keyframes slideOutUp {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  100% {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}

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


:root{--easing-ease:cubic-bezier(0.25,0.1,0.25,1);--easing-ease-in:cubic-bezier(0.42,0,1,1);--easing-ease-out:cubic-bezier(0,0,0.58,1);--easing-ease-in-out:cubic-bezier(0.42,0,0.58,1);--easing-ease-in-quad:cubic-bezier(0.55,0.085,0.68,0.53);--easing-ease-out-quad:cubic-bezier(0.25,0.46,0.45,0.94);--easing-ease-in-out-quad:cubic-bezier(0.455,0.03,0.515,0.955);--easing-ease-in-cubic:cubic-bezier(0.55,0.055,0.675,0.19);--easing-ease-out-cubic:cubic-bezier(0.215,0.61,0.355,1);--easing-ease-in-out-cubic:cubic-bezier(0.645,0.045,0.355,1);--easing-ease-in-quart:cubic-bezier(0.895,0.03,0.685,0.22);--easing-ease-out-quart:cubic-bezier(0.165,0.84,0.44,1);--easing-ease-in-out-quart:cubic-bezier(0.77,0,0.175,1);--easing-ease-in-quint:cubic-bezier(0.755,0.05,0.855,0.06);--easing-ease-out-quint:cubic-bezier(0.23,1,0.32,1);--easing-ease-in-out-quint:cubic-bezier(0.86,0,0.07,1);--easing-ease-in-sine:cubic-bezier(0.47,0,0.745,0.715);--easing-ease-out-sine:cubic-bezier(0.39,0.575,0.565,1);--easing-ease-in-out-sine:cubic-bezier(0.45,0.05,0.55,0.95);--easing-ease-in-expo:cubic-bezier(0.95,0.05,0.795,0.035);--easing-ease-out-expo:cubic-bezier(0.19,1,0.22,1);--easing-ease-in-out-expo:cubic-bezier(1,0,0,1);--easing-ease-in-circ:cubic-bezier(0.6,0.04,0.98,0.335);--easing-ease-out-circ:cubic-bezier(0.075,0.82,0.165,1);--easing-ease-in-out-circ:cubic-bezier(0.785,0.135,0.15,0.86);--easing-ease-in-back:cubic-bezier(0.6,-0.28,0.735,0.045);--easing-ease-out-back:cubic-bezier(0.175,0.885,0.32,1.275);--easing-ease-in-out-back:cubic-bezier(0.68,-0.55,0.265,1.55)}.squeezebox{--sb-gutter:0;--sb-border-color:#000;--sb-border-size:1px;--sb-header-size-sm:2.5rem;--sb-header-size-md:2.5rem;--sb-header-size-lg:2.5rem;--sb-header-text:#000;--sb-header-text-hover:#000;--sb-header-bg:transparent;--sb-header-bg-hover:#f0f0f0;--sb-header-padding:1rem 1rem;--sb-icon-color:#000;--sb-icon-size:2rem;--sb-icon-flip:translateX(-50%) rotateX(180deg);--sb-icon-rotate:translateX(-50%) rotate(180deg);--sb-icon-animation:var(--sb-icon-flip);--sb-content-padding:1rem;--sb-content-background:transparent;--sb-easing:var(--easing-ease-in-out-expo);--sb-ease-time:600ms;list-style:none;margin:0;padding:0;display:grid;gap:var(--sb-gutter,0)}.sb-item{overflow:hidden;background-color:var(--sb-content-background,transparent);transition:height var(--sb-ease-time,300ms) var(--sb-easing,ease-out),border-color var(--sb-ease-time,300ms) var(--sb-easing,ease-out),border-radius var(--sb-ease-time,300ms) var(--sb-easing,ease-out);border-style:solid;border-color:var(--sb-border-color,transparent);border-width:var(--sb-border-size,0)}.sb-item > *{margin:0}.sb-content{display:none;opacity:0;padding:var(--sb-content-padding,1rem);transition:opacity var(--sb-ease-time,300ms) var(--sb-easing,linear)}.sb-header{display:flex;justify-content:space-between;align-items:center;flex-wrap:nowrap;background:var(--sb-content-background,transparent);padding:0;margin:0;font-family:inherit;text-align:left;width:100%;cursor:pointer;transition:background-color 250ms linear,color 250ms linear,border-radius var(--sb-ease-time,300ms) var(--sb-easing,ease-out),border-color var(--sb-ease-time,300ms) ease;border-style:solid;border-color:var(--sb-border-color,transparent);border-width:var(--sb-border-size,0);background-color:var(--sb-header-bg,transparent);font-size:var(--sb-header-size-sm,2rem);color:var(--sb-header-text,#000);padding:var(--sb-header-padding,0.5rem 1rem);padding-right:0}@media screen and (min-width:640px){.sb-header{font-size:var(--sb-header-size-md,2rem)}}@media screen and (min-width:1024px){.sb-header{font-size:var(--sb-header-size-lg,2.5rem)}}.sb-header svg{height:auto;width:var(--sb-icon-size,2rem);color:var(--sb-icon-color,var(--sb-header-color,#000));transition:transform 250ms ease-out;transform:translateX(100%)}.sb-header:hover{color:var(--sb-header-text-hover,#000);background-color:var(--sb-header-bg-hover,#f0f0f0)}.sb-header:hover svg{transform:translateX(-50%)}.sb-open > .sb-content{display:block;opacity:1}.sb-open .sb-header svg{transition:transform var(--sb-ease-time,300ms) var(--sb-easing,ease-out);transform:var(--sb-icon-animation,translateX(-50%))}.style-on-open .sb-open .sb-header{color:var(--sb-header-text-hover,#000);background:var(--sb-header-bg-hover,#f0f0f0)}



















:root{--light-gray:rgba(239, 239, 239, 1.00);--medium-gray:rgba(208, 208, 208, 1.00);--dark-gray:rgba(83, 83, 83, 1.00);--black:rgba(0, 0, 0, 1.00);--black-color:var(--black);--white:rgba(254, 254, 254, 1.00);--white-color:var(--white);--primary:rgba(0, 102, 136, 1.00);--secondary:rgba(141, 100, 65, 1.00);--success:rgba(67, 172, 106, 1.00);--warning:rgba(240, 138, 36, 1.00);--alert:rgba(240, 65, 36, 1.00);--primary-contrast:rgba(255, 255, 255, 1.00);--secondary-contrast:rgba(255, 255, 255, 1.00);--success-contrast:rgba(254, 254, 254, 1.00);--warning-contrast:rgba(254, 254, 254, 1.00);--alert-contrast:rgba(254, 254, 254, 1.00);--primary-dark:rgba(0, 72, 106, 1.00);--secondary-dark:rgba(111, 70, 35, 1.00);--success-dark:rgba(37, 142, 76, 1.00);--warning-dark:rgba(210, 108, 6, 1.00);--alert-dark:rgba(210, 35, 6, 1.00);--header-color:rgba(0, 0, 0, 1.00);--subheader-color:rgba(138, 138, 138, 1.00);--small-color:rgba(202, 202, 202, 1.00);--text-color:rgba(0, 0, 0, 1.00);--link-color:rgba(0, 102, 136, 1.00);--link-color-hover:rgba(0, 102, 136, 1.00);--selection-background:var(--primary);--selection-text:var(--primary-contrast);--link-decoration:none;--link-decoration-hover:none;--overlay-color:rgba(0, 0, 0, 0.40);--radius:7px;--small-gutter:2.5rem;--medium-gutter:2.5rem;--large-gutter:2.5rem;--site-width:calc(1360rem/16);}::selection{background:var(--selection-background);color:var(--selection-text)}.alt{--header-color:rgba(255, 255, 255, 1.00);--subheader-color:rgba(255, 255, 255, 1.00);--small-color:rgba(255, 255, 255, 1.00);--text-color:rgba(255, 255, 255, 1.00);--link-color:rgba(0, 102, 136, 1.00);--link-color-hover:rgba(0, 102, 136, 1.00);--link-decoration:none;--link-decoration-hover:none}.grid-container{max-width:var(--site-width)}.radius{border-radius:var(--radius)}body{font-size:calc(20rem/16)}h1,.h1{font-size:calc(24rem/16)}h2,.h2{font-size:calc(20rem/16)}h3,.h3{font-size:calc(19rem/16)}h4,.h4{font-size:calc(18rem/16)}h5,.h5{font-size:calc(17rem/16)}h6,.h6{font-size:calc(16rem/16)}small{font-size:40%}.button{font-size:calc(15rem/16)}.button.tiny{font-size:calc(12rem/16)}.button.small{font-size:calc(14rem/16)}.button.large{font-size:calc(18rem/16)}@media only screen and (min-width:40em){body{font-size:calc(20rem/16)}h1,.h1{font-size:calc(48rem/16)}h2,.h2{font-size:calc(40rem/16)}h3,.h3{font-size:calc(31rem/16)}h4,.h4{font-size:calc(25rem/16)}h5,.h5{font-size:calc(20rem/16)}h6,.h6{font-size:calc(16rem/16)}small{font-size:30%}}@media only screen and (min-width:64em){body{font-size:calc(20rem/16)}h1,.h1{font-size:calc(48rem/16)}h2,.h2{font-size:calc(40rem/16)}h3,.h3{font-size:calc(31rem/16)}h4,.h4{font-size:calc(25rem/16)}h5,.h5{font-size:calc(20rem/16)}h6,.h6{font-size:calc(16rem/16)}small{font-size:30%}}a{color:var(--link-color);-webkit-text-decoration:var(--link-decoration);text-decoration:var(--link-decoration)}a:hover,a:focus{color:var(--link-color-hover);-webkit-text-decoration:var(--link-decoration-hover);text-decoration:var(--link-decoration-hover)}.menu a{color:var(--menu-link-color);background:var(--menu-bg-color)}.menu a:hover{color:var(--menu-link-color-hover)}h1,h2,h3,h4,h5,h6{color:var(--header-color)}small{color:var(--small-color)}.subheader{color:var(--subheader-color)}.text ul,.text ol{list-style-position:outside}.text>ul,.text>ol,.text .mez>div>ul,.text .mez>div>ol{margin-left:1.25rem}.text ul{list-style-type:disc}.text ul ul,.text ol ul{list-style-type:circle}.text ol{list-style-type:decimal}.text ol ol,.text ul ol{list-style-type:lower-alpha}.radius,.radius:before,.radius:after{border-radius:calc(7rem/16)}body{}
/*!* Font Awesome Pro 5.14.0 by @fontawesome - https://fontawesome.com* License - https://fontawesome.com/license (Commercial License)*/@font-face{font-family:'Font Awesome 5 Brands';font-style:normal;font-weight:400;font-display:block;src:url("../../rw_common/plugins/stacks/fa5-fonts/fa-brands-400.eot");src:url("../../rw_common/plugins/stacks/fa5-fonts/fa-brands-400.eot?#iefix") format("embedded-opentype"),url("../../rw_common/plugins/stacks/fa5-fonts/fa-brands-400.woff2") format("woff2"),url("../../rw_common/plugins/stacks/fa5-fonts/fa-brands-400.woff") format("woff"),url("../../rw_common/plugins/stacks/fa5-fonts/fa-brands-400.ttf") format("truetype"),url("../../rw_common/plugins/stacks/fa5-fonts/fa-brands-400.svg#fontawesome") format("svg")}.fab{font-family:'Font Awesome 5 Brands';font-weight:400}@font-face{font-family:'Font Awesome 5 Pro';font-style:normal;font-weight:300;font-display:block;src:url("../../rw_common/plugins/stacks/fa5-fonts/fa-light-300.eot");src:url("../../rw_common/plugins/stacks/fa5-fonts/fa-light-300.eot?#iefix") format("embedded-opentype"),url("../../rw_common/plugins/stacks/fa5-fonts/fa-light-300.woff2") format("woff2"),url("../../rw_common/plugins/stacks/fa5-fonts/fa-light-300.woff") format("woff"),url("../../rw_common/plugins/stacks/fa5-fonts/fa-light-300.ttf") format("truetype"),url("../../rw_common/plugins/stacks/fa5-fonts/fa-light-300.svg#fontawesome") format("svg")}.fal{font-family:'Font Awesome 5 Pro';font-weight:300}@font-face{font-family:'Font Awesome 5 Pro';font-style:normal;font-weight:900;font-display:block;src:url("../../rw_common/plugins/stacks/fa5-fonts/fa-solid-900.eot");src:url("../../rw_common/plugins/stacks/fa5-fonts/fa-solid-900.eot?#iefix") format("embedded-opentype"),url("../../rw_common/plugins/stacks/fa5-fonts/fa-solid-900.woff2") format("woff2"),url("../../rw_common/plugins/stacks/fa5-fonts/fa-solid-900.woff") format("woff"),url("../../rw_common/plugins/stacks/fa5-fonts/fa-solid-900.ttf") format("truetype"),url("../../rw_common/plugins/stacks/fa5-fonts/fa-solid-900.svg#fontawesome") format("svg")}.fa,.fas{font-family:'Font Awesome 5 Pro';font-weight:900} .main-menu a:after, .ico-arrow:after,.label:before, .accordion-title:before, .quote-solid-before, .quote-solid-after, .ico-angle-down>a:after, .overlay-color:before, is-accordion-submenu-parent>a::after{font-family:'Font Awesome 5 Pro' !important;font-weight:900} 



:root{--my-primary:rgba(104, 144, 179, 1.00)}
:root{--my-primary-dark:rgba(7, 64, 128, 1.00)}
:root{--my-primary-text:rgba(255, 255, 255, 1.00)}
:root{--my-primary-contrast:rgba(255, 255, 255, 1.00)}
:root{--my-primary-light:rgba(241, 239, 252, 1.00)}

:root{--my-secondary:rgba(254, 205, 84, 1.00)}
:root{--my-secondary-dark:rgba(222, 180, 74, 1.00)}
:root{--my-secondary-text:rgba(26, 26, 26, 1.00)}
:root{--my-secondary-contrast:rgba(26, 26, 26, 1.00)}
:root{--my-secondary-light:rgba(233, 227, 212, 1.00)}

:root{--my-white:rgba(255, 255, 255, 1.00)}
:root{--my-almost-white:rgba(249, 249, 249, 1.00)}
:root{--my-light-gray:rgba(230, 230, 230, 1.00)}
:root{--my-medium-gray:rgba(178, 178, 178, 1.00)}
:root{--my-dark-gray:rgba(83, 83, 83, 1.00)}
:root{--my-almost-black:rgba(38, 38, 38, 1.00)}
:root{--my-black:rgba(17, 17, 17, 1.00)}
:root{--my-transparent:rgba(255, 255, 255, 0.00)}

:root{--my-alert:rgba(233, 41, 28, 1.00)}
:root{--my-warning:rgba(234, 105, 84, 1.00)}
:root{--my-success:rgba(119, 207, 157, 1.00)}
:root{--my-dark-overlay:rgba(0, 0, 0, 0.20)}
:root{--my-light-overlay:rgba(255, 255, 255, 0.20)}

:root{--my-text-link:rgba(124, 99, 243, 1.00)}
:root{--my-text-link-hover:rgba(107, 86, 210, 1.00)}
:root{--my-text-link-alt:rgba(255, 255, 255, 1.00)}
:root{--my-text-link-alt-hover:rgba(255, 255, 255, 0.50)}



:root{--primary:var(--my-primary) ;}
:root{--primary-dark:var(--my-primary-dark) ;}
:root{--primary-contrast:var(--my-primary-text) ;}

:root{--secondary:var(--my-secondary) ;}
:root{--secondary-dark:var(--my-secondary-dark) ;}
:root{--secondary-contrast:var(--my-secondary-text) ;}

:root{--white:var(--my-white) ;}
:root{--light-gray:var(--my-light-gray) ;}
:root{--medium-gray:var(--my-medium-gray) ;}
:root{--dark-gray:var(--my-dark-gray) ;}
:root{--black:var(--my-black) ;}

:root{--alert:var(--my-alert) ;}
:root{--warning:var(--my-warning) ;}
:root{--success:var(--my-success) ;}
:root{--overlay:var(--my-dark-overlay) ;}




.title{--header-color:var(--my-almost-black) ;}
.title{--subheader-color:var(--my-medium-gray) ;}
.title{--small-color:var(--my-light-gray) ;}
.title{--text-color:var(--my-black) ;}
.title{--link-color:var(--my-text-link) ;}
.title{--link-color-hover:var(--my-text-link-hover) ;}
.title{--link-decoration:var(--my-text-link) ;}
.title{--link-decoration:var(--my-text-link-hover) ;}

.alt .title{--header-color:var(--my-white) ;}
.alt .title{--subheader-color:var(--my-medium-gray) ;}
.alt .title{--small-color:var(--my-dark-gray) ;}
.alt .title{--text-color:var(--my-white) ;}
.alt .title{--link-color:var(--my-text-link) ;}
.alt .title{--link-color-hover:var(--my-text-link-hover) ;}
.alt .title{--link-decoration:var(--my-text-link) ;}
.alt .title{--link-decoration:var(--my-text-link-hover) ;}

.title.primary{--header-color:var(--my-primary) ;}
.title.secondary{--header-color:var(--my-secondary) ;}

.title.white{--header-color:var(--my-white) ;}
.alt .title.white{--header-color:var(--my-black) ;}
.title.light-gray{--header-color:var(--my-light-gray) ;}
.alt .title.light-gray{--header-color:var(--my-dark-gray) ;}
.title.medium-gray{--header-color:var(--my-medium-gray) ;}
.alt .title.medium-gray{--header-color:var(--my-medium-gray) ;}
.title.dark-gray{--header-color:var(--my-dark-gray) ;}
.alt .title.dark-gray{--header-color:var(--my-light-gray) ;}
.title.black{--header-color:var(--my-black) ;}
.alt .title.black{--header-color:var(--my-white) ;}


.description{--text-color:var(--my-almost-black) ;}
.description{--link-color:var(--my-text-link) ;}
.description{--link-color-hover:var(--my-text-link-hover) ;}
.description{--link-decoration:var(--my-text-link) ;}
.description{--link-decoration:var(--my-text-link-hover) ;}

.alt .description{--text-color:var(--my-white) ;}
.alt .description{--link-color:var(--my-text-link-alt) ;}
.alt .description{--link-color-hover:var(--my-text-link-alt-hover) ;}
.alt .description{--link-decoration:var(--my-text-link-alt) ;}
.alt .description{--link-decoration:var(--my-text-link-alt-hover) ;}

.description.primary{--text-color:var(--my-primary) ;}
.alt .description.primary{--text-color:var(--my-primary) ;}
.description.secondary{--text-color:var(--my-secondary) ;}
.alt .description.secondary{--text-color:var(--my-secondary) ;}

.description.white{--text-color:var(--my-white) ;}
.alt .description.white{--text-color:var(--my-black) ;}
.description.light-gray{--text-color:var(--my-light-gray) ;}
.alt .description.light-gray{--text-color:var(--my-dark-gray) ;}
.description.medium-gray{--text-color:var(--my-medium-gray) ;}
.alt .description.medium-gray{--text-color:var(--my-medium-gray) ;}
.description.dark-gray{--text-color:var(--my-dark-gray) ;}
.alt .description.dark-gray{--text-color:var(--my-light-gray) ;}
.description.black{--text-color:var(--my-black) ;}
.alt .description.black{--text-color:var(--my-white) ;}


.bg-primary{background-color:var(--my-primary) !important;background-position:center center !important;background-origin:padding-box !important;background-blend-mode:normal !important;background-attachment:scroll   !important;background-clip:border-box !important;}@media (hover:none) and (pointer:coarse){.bg-primary{background-attachment:scroll!important}}
.bg-primary-dark{background-color:var(--my-primary-dark) !important;background-position:center center !important;background-origin:padding-box !important;background-blend-mode:normal !important;background-attachment:scroll   !important;background-clip:border-box !important;}@media (hover:none) and (pointer:coarse){.bg-primary-dark{background-attachment:scroll!important}}
.bg-primary-text{background-color:var(--my-primary-text) !important;background-position:center center !important;background-origin:padding-box !important;background-blend-mode:normal !important;background-attachment:scroll   !important;background-clip:border-box !important;}@media (hover:none) and (pointer:coarse){.bg-primary-text{background-attachment:scroll!important}}
.bg-primary-light{background-color:var(--my-primary-light) !important;background-position:center center !important;background-origin:padding-box !important;background-blend-mode:normal !important;background-attachment:scroll   !important;background-clip:border-box !important;}@media (hover:none) and (pointer:coarse){.bg-primary-light{background-attachment:scroll!important}}

.bg-secondary{background-color:var(--my-secondary) !important;background-position:center center !important;background-origin:padding-box !important;background-blend-mode:normal !important;background-attachment:scroll   !important;background-clip:border-box !important;}@media (hover:none) and (pointer:coarse){.bg-secondary{background-attachment:scroll!important}}
.bg-secondary-dark{background-color:var(--my-secondary-dark) !important;background-position:center center !important;background-origin:padding-box !important;background-blend-mode:normal !important;background-attachment:scroll   !important;background-clip:border-box !important;}@media (hover:none) and (pointer:coarse){.bg-secondary-dark{background-attachment:scroll!important}}
.bg-secondary-text{background-color:var(--my-secondary-text) !important;background-position:center center !important;background-origin:padding-box !important;background-blend-mode:normal !important;background-attachment:scroll   !important;background-clip:border-box !important;}@media (hover:none) and (pointer:coarse){.bg-secondary-text{background-attachment:scroll!important}}
.bg-secondary-light{background-color:var(--my-secondary-light) !important;background-position:center center !important;background-origin:padding-box !important;background-blend-mode:normal !important;background-attachment:scroll   !important;background-clip:border-box !important;}@media (hover:none) and (pointer:coarse){.bg-secondary-light{background-attachment:scroll!important}}

.bg-white{background-color:var(--my-white) !important;background-position:center center !important;background-origin:padding-box !important;background-blend-mode:normal !important;background-attachment:scroll   !important;background-clip:border-box !important;}@media (hover:none) and (pointer:coarse){.bg-white{background-attachment:scroll!important}}
.bg-almost-white{background-color:var(--my-almost-white) !important;background-position:center center !important;background-origin:padding-box !important;background-blend-mode:normal !important;background-attachment:scroll   !important;background-clip:border-box !important;}@media (hover:none) and (pointer:coarse){.bg-almost-white{background-attachment:scroll!important}}
.bg-light-gray{background-color:var(--my-light-gray) !important;background-position:center center !important;background-origin:padding-box !important;background-blend-mode:normal !important;background-attachment:scroll   !important;background-clip:border-box !important;}@media (hover:none) and (pointer:coarse){.bg-light-gray{background-attachment:scroll!important}}
.bg-medium-gray{background-color:var(--my-medium-gray) !important;background-position:center center !important;background-origin:padding-box !important;background-blend-mode:normal !important;background-attachment:scroll   !important;background-clip:border-box !important;}@media (hover:none) and (pointer:coarse){.bg-medium-gray{background-attachment:scroll!important}}
.bg-dark-gray{background-color:var(--my-dark-gray) !important;background-position:center center !important;background-origin:padding-box !important;background-blend-mode:normal !important;background-attachment:scroll   !important;background-clip:border-box !important;}@media (hover:none) and (pointer:coarse){.bg-dark-gray{background-attachment:scroll!important}}
.bg-almost-black{background-color:var(--my-almost-black) !important;background-position:center center !important;background-origin:padding-box !important;background-blend-mode:normal !important;background-attachment:scroll   !important;background-clip:border-box !important;}@media (hover:none) and (pointer:coarse){.bg-almost-black{background-attachment:scroll!important}}
.bg-black{background-color:var(--my-black) !important;background-position:center center !important;background-origin:padding-box !important;background-blend-mode:normal !important;background-attachment:scroll   !important;background-clip:border-box !important;}@media (hover:none) and (pointer:coarse){.bg-black{background-attachment:scroll!important}}

.bg-alert{background-color:var(--my-alert) !important;background-position:center center !important;background-origin:padding-box !important;background-blend-mode:normal !important;background-attachment:scroll   !important;background-clip:border-box !important;}@media (hover:none) and (pointer:coarse){.bg-alert{background-attachment:scroll!important}}
.bg-warning{background-color:var(--my-warning) !important;background-position:center center !important;background-origin:padding-box !important;background-blend-mode:normal !important;background-attachment:scroll   !important;background-clip:border-box !important;}@media (hover:none) and (pointer:coarse){.bg-warning{background-attachment:scroll!important}}
.bg-success{background-color:var(--my-success) !important;background-position:center center !important;background-origin:padding-box !important;background-blend-mode:normal !important;background-attachment:scroll   !important;background-clip:border-box !important;}@media (hover:none) and (pointer:coarse){.bg-success{background-attachment:scroll!important}}
.bg-dark-overlay{position:relative;z-index:1}.bg-dark-overlay:before{content:"";position:absolute;top:0;bottom:0;left:0;right:0;z-index:-1;opacity:0.05 ;background-color:var(--my-black) ;}
.alt .bg-dark-overlay{position:relative;z-index:1}.alt .bg-dark-overlay:before{content:"";position:absolute;top:0;bottom:0;left:0;right:0;z-index:-1;opacity:0.10 ;background-color:var(--my-white) ;}
.bg-light-overlay{position:relative;z-index:1}.bg-light-overlay:before{content:"";position:absolute;top:0;bottom:0;left:0;right:0;z-index:-1;opacity:0.20 ;background-color:var(--my-white) ;}
.alt .bg-light-overlay{position:relative;z-index:1}.alt .bg-light-overlay:before{content:"";position:absolute;top:0;bottom:0;left:0;right:0;z-index:-1;opacity:0.20 ;background-color:var(--my-black) ;}
.bg-dark-gradient{position:relative;z-index:0}.bg-dark-gradient:before{content:"";position:absolute;top:0;bottom:0;left:0;right:0;z-index:-1;opacity:0.60 ; background-image: linear-gradient(0deg, #000000 0%, #00000000 40%); }
.bg-light-gradient{position:relative;z-index:0}.bg-light-gradient:before{content:"";position:absolute;top:0;bottom:0;left:0;right:0;z-index:-1;opacity:0.60 ; background-image: linear-gradient(0deg, #ffffff 0%, #ffffff00 40%); }
.bg-black-top-gradient{position:relative;z-index:0}.bg-black-top-gradient:before{content:"";position:absolute;top:0;bottom:0;left:0;right:0;z-index:-1;opacity:0.80 ; background-image: linear-gradient(0deg, #ffffff00 -40%, var(--my-black) 100%); }




  h1,.h1, h2,.h2, h3,.h3, h4,.h4, h5,.h5, h6,.h6,     .title{font-family:"Poppins",serif }

            .description{font-family:"Poppins",sans-serif }

            .btn-main, .tabs, .accordion-title{font-family:"Poppins",sans-serif }





            .title{font-weight:600 ;}
h1.title, h2.title{margin-top:0.00px ;margin-right:0.00px ;margin-bottom:20.00px ;margin-left:0.00px ;}@media only screen and (min-width:40em){h1.title, h2.title{margin-top:0.00px ;margin-right:0.00px ;margin-bottom:32.00px ;margin-left:0.00px }}@media only screen and (min-width:64em){h1.title, h2.title{margin-top:0.00px ;margin-right:0.00px ;margin-bottom:48.00px ;margin-left:0.00px }}
h3.title, h4.title, h5.title, h6.title{margin-top:0.00px ;margin-right:0.00px ;margin-bottom:16.00px ;margin-left:0.00px ;}@media only screen and (min-width:40em){h3.title, h4.title, h5.title, h6.title{margin-top:0.00px ;margin-right:0.00px ;margin-bottom:18.00px ;margin-left:0.00px }}@media only screen and (min-width:64em){h3.title, h4.title, h5.title, h6.title{margin-top:0.00px ;margin-right:0.00px ;margin-bottom:20.00px ;margin-left:0.00px }}

            .description{font-size:calc(20rem/16) ;font-weight:400 ;}@media only screen and (min-width:40em) {            .description{font-size:calc(20rem/16) ;line-height:1.30 }}@media only screen and (min-width:64em) {            .description{font-size:calc(20rem/16) ;line-height:1.30 }}
            .description.tiniest, .description.tiniest span, .tiniest .description, .tiniest .description span{font-size:calc(12rem/16) ;}@media only screen and (min-width:40em) {            .description.tiniest, .description.tiniest span, .tiniest .description, .tiniest .description span{font-size:calc(12rem/16) ;line-height:1.10 }}@media only screen and (min-width:64em) {            .description.tiniest, .description.tiniest span, .tiniest .description, .tiniest .description span{font-size:calc(12rem/16) ;line-height:1.10 }}
            .description.tiny, .description.tiny span, .tiny .description, .tiny .description span{font-size:calc(14rem/16) ;}@media only screen and (min-width:40em) {            .description.tiny, .description.tiny span, .tiny .description, .tiny .description span{font-size:calc(14rem/16) ;line-height:1.10 }}@media only screen and (min-width:64em) {            .description.tiny, .description.tiny span, .tiny .description, .tiny .description span{font-size:calc(14rem/16) ;line-height:1.10 }}
            .description.smallest, .description.smallest span, .smallest .description, .smallest .description span{font-size:calc(16rem/16) ;}@media only screen and (min-width:40em) {            .description.smallest, .description.smallest span, .smallest .description, .smallest .description span{font-size:calc(16rem/16) ;line-height:1.10 }}@media only screen and (min-width:64em) {            .description.smallest, .description.smallest span, .smallest .description, .smallest .description span{font-size:calc(16rem/16) ;line-height:1.10 }}
            .description.smaller, .description.smaller span, .smaller .description, .smaller .description span{font-size:calc(18rem/16) ;}@media only screen and (min-width:40em) {            .description.smaller, .description.smaller span, .smaller .description, .smaller .description span{font-size:calc(18rem/16) ;line-height:1.10 }}@media only screen and (min-width:64em) {            .description.smaller, .description.smaller span, .smaller .description, .smaller .description span{font-size:calc(18rem/16) ;line-height:1.10 }}
            .description.bigger, .description.bigger span, .bigger .description, .bigger .description span{font-size:calc(22rem/16) !important;}@media only screen and (min-width:40em) {            .description.bigger, .description.bigger span, .bigger .description, .bigger .description span{font-size:calc(22rem/16) !important;line-height:1.10 !important}}@media only screen and (min-width:64em) {            .description.bigger, .description.bigger span, .bigger .description, .bigger .description span{font-size:calc(22rem/16) !important;line-height:1.10 !important}}
            .description.biggest, .description.biggest span, .biggest .description, .biggest .description span{font-size:calc(25rem/16) !important;}@media only screen and (min-width:40em) {            .description.biggest, .description.biggest span, .biggest .description, .biggest .description span{font-size:calc(25rem/16) !important;line-height:1.10 !important}}@media only screen and (min-width:64em) {            .description.biggest, .description.biggest span, .biggest .description, .biggest .description span{font-size:calc(25rem/16) !important;line-height:1.10 !important}}



.description a{position:relative;white-space:normal}.description a:before{content:"";position:absolute;bottom:0px;left:0;width:calc(100% - 0rem / 8);margin:0 calc(0rem / 16);height:2px;background:currentcolor;transform:scaleX(0.00);transform-origin:left  ;transition:transform 250ms ease-in;}.description a:hover:before{transform:scaleX(1.00);transform-origin:left  }
.description a:before{transition:all 150ms ease 0ms }


            .button,.button.tiny{font-size:calc(12rem/16) ;font-weight:600 ;}@media only screen and (min-width:40em) {            .button,.button.tiny{font-size:calc(12rem/16) ;line-height:1.50 }}@media only screen and (min-width:64em) {            .button,.button.tiny{font-size:calc(12rem/16) ;line-height:1.50 }}
            .button,.button.small{font-size:calc(14rem/16) ;font-weight:600 ;}@media only screen and (min-width:40em) {            .button,.button.small{font-size:calc(14rem/16) ;line-height:1.50 }}@media only screen and (min-width:64em) {            .button,.button.small{font-size:calc(14rem/16) ;line-height:1.50 }}
            .button,.button.medium{font-size:calc(15rem/16) ;font-weight:600 ;}@media only screen and (min-width:40em) {            .button,.button.medium{font-size:calc(15rem/16) ;line-height:1.50 }}@media only screen and (min-width:64em) {            .button,.button.medium{font-size:calc(15rem/16) ;line-height:1.50 }}
            .button,.button.large{font-size:calc(18rem/16) ;font-weight:600 ;}@media only screen and (min-width:40em) {            .button,.button.large{font-size:calc(18rem/16) ;line-height:1.50 }}@media only screen and (min-width:64em) {            .button,.button.large{font-size:calc(18rem/16) ;line-height:1.50 }}

.button.medium{padding-top:12.00px ;padding-right:20.00px ;padding-bottom:12.00px ;padding-left:20.00px ;}@media only screen and (min-width:40em){.button.medium{padding-top:12.00px ;padding-right:20.00px ;padding-bottom:12.00px ;padding-left:20.00px }}@media only screen and (min-width:64em){.button.medium{padding-top:12.00px ;padding-right:20.00px ;padding-bottom:12.00px ;padding-left:20.00px }}
.button.large{padding-top:13.00px ;padding-right:24.00px ;padding-bottom:13.00px ;padding-left:24.00px ;}@media only screen and (min-width:40em){.button.large{padding-top:13.00px ;padding-right:24.00px ;padding-bottom:13.00px ;padding-left:24.00px }}@media only screen and (min-width:64em){.button.large{padding-top:13.00px ;padding-right:24.00px ;padding-bottom:13.00px ;padding-left:24.00px }}
.button.extra-pad{padding-top:13.00px ;padding-right:24.00px ;padding-bottom:13.00px ;padding-left:24.00px ;}@media only screen and (min-width:40em){.button.extra-pad{padding-top:20.00px ;padding-right:32.00px ;padding-bottom:20.00px ;padding-left:32.00px }}@media only screen and (min-width:64em){.button.extra-pad{padding-top:20.00px ;padding-right:32.00px ;padding-bottom:20.00px ;padding-left:32.00px }}

.pad-y{padding-top:32.00px ;padding-right:0.00px ;padding-bottom:32.00px ;padding-left:0.00px ;}@media only screen and (min-width:40em){.pad-y{padding-top:48.00px ;padding-right:0.00px ;padding-bottom:48.00px ;padding-left:0.00px }}@media only screen and (min-width:64em){.pad-y{padding-top:64.00px ;padding-right:0.00px ;padding-bottom:64.00px ;padding-left:0.00px }}
.pad-y-single{padding-top:64.00px ;padding-right:0.00px ;padding-bottom:64.00px ;padding-left:0.00px ;}@media only screen and (min-width:40em){.pad-y-single{padding-top:96.00px ;padding-right:0.00px ;padding-bottom:96.00px ;padding-left:0.00px }}@media only screen and (min-width:64em){.pad-y-single{padding-top:128.00px ;padding-right:0.00px ;padding-bottom:128.00px ;padding-left:0.00px }}
.pad-t{padding-top:32.00px ;padding-right:0.00px ;padding-bottom:0.00px ;padding-left:0.00px ;}@media only screen and (min-width:40em){.pad-t{padding-top:48.00px ;padding-right:0.00px ;padding-bottom:0.00px ;padding-left:0.00px }}@media only screen and (min-width:64em){.pad-t{padding-top:64.00px ;padding-right:0.00px ;padding-bottom:0.00px ;padding-left:0.00px }}
.pad-b{padding-top:0.00px ;padding-right:0.00px ;padding-bottom:32.00px ;padding-left:0.00px ;}@media only screen and (min-width:40em){.pad-b{padding-top:0.00px ;padding-right:0.00px ;padding-bottom:48.00px ;padding-left:0.00px }}@media only screen and (min-width:64em){.pad-b{padding-top:0.00px ;padding-right:0.00px ;padding-bottom:64.00px ;padding-left:0.00px }}


.bord{border-color:rgba(0, 0, 0, 0.08) ;border-width:1px ;border-style:solid ;}
.bord-t{border-color:rgba(0, 0, 0, 0.08) ;border-top-width:1px ;border-top-style:solid ;}
.bord-b{border-color:rgba(0, 0, 0, 0.08) ;border-bottom-width:1px ;border-bottom-style:solid ;}

.alt .bord{border-color:rgba(255, 255, 255, 0.15) ;border-width:1px ;border-style:solid ;}
.alt .bord-t{border-color:rgba(255, 255, 255, 0.15) ;border-top-width:1px ;border-top-style:solid ;}
.alt .bord-b{border-color:rgba(255, 255, 255, 0.15) ;border-bottom-width:1px ;border-bottom-style:solid ;}


hr{border-color:rgba(0, 0, 0, 0.10) ;border-bottom-width:1px ;border-bottom-style:solid ;}
.alt hr{border-color:rgba(255, 255, 255, 0.15) ;border-bottom-width:1px ;border-bottom-style:solid ;}

.grid-divider{border-color:rgba(0, 0, 0, 0.10) ;border-right-width:1px ;border-right-style:solid ;}
.alt .grid-divider{border-color:rgba(255, 255, 255, 0.15) ;border-right-width:1px ;border-right-style:solid ;}

            .tabs-title > a{font-size:calc(16rem/16) ;}@media only screen and (min-width:40em) {            .tabs-title > a{font-size:calc(20rem/16) }}@media only screen and (min-width:64em) {            .tabs-title > a{font-size:calc(20rem/16) }}

            .accordion-title{font-size:calc(18rem/16) ;}@media only screen and (min-width:40em) {            .accordion-title{font-size:calc(20rem/16) }}@media only screen and (min-width:64em) {            .accordion-title{font-size:calc(20rem/16) }}

.bg-round{border-radius:500px ;}
.radius-t{border-radius:5px 5px 0px 0px ;}
.sm-round{border-radius:10px ;}
.radius-b{border-radius:0px 0px 5px 5px ;}










.scale-up:hover

{
    transform-origin: 50% 50% ;
    transform-style: flat ;
    transform :
        
        
        translateZ(0)
        
        
        scale3d(1.07, 1.07, 1.00)
        
        
        
        ;
}

.scale-up{transition:all 300ms ease 0ms }







.scale-down:hover

{
    transform-origin: 50% 50% ;
    transform-style: flat ;
    transform :
        
        
        translateZ(0)
        
        
        scale3d(0.93, 0.93, 1.00)
        
        
        
        ;
}

.scale-down{transition:all 300ms ease 0ms }







.move-up:hover

{
    transform-origin: 50% 50% ;
    transform-style: flat ;
    transform :
        
        
        translate3d(0px, -10px, 0px)
        
        
        
        
        ;
}

.move-up{transition:all 300ms ease 0ms }







.move-down:hover

{
    transform-origin: 50% 50% ;
    transform-style: flat ;
    transform :
        
        
        translate3d(0px, 10px, 0px)
        
        
        
        
        ;
}

.move-down{transition:all 300ms ease 0ms }







.rot-360:hover

{
    transform-origin: 50% 50% ;
    transform-style: flat ;
    transform :
        
        
        translateZ(0)
        
        
        
        rotateX(0deg) rotateY(0deg) rotateZ(360deg)
        
        
        ;
}

.rot-360{transition:all 500ms ease 0ms }







.rot-180:hover

{
    transform-origin: 50% 50% ;
    transform-style: flat ;
    transform :
        
        
        translateZ(0)
        
        
        
        rotateX(0deg) rotateY(0deg) rotateZ(180deg)
        
        
        ;
}

.rot-180{transition:all 300ms ease 0ms }


.shadow{box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.10);}
.shadow:hover{box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.10);}
.shadow{transition:all 300ms ease 0ms }

.sm-shadow{box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.10);}
.sm-shadow:hover{box-shadow: 0px 3px 12px 0px rgba(0, 0, 0, 0.10);}
.sm-shadow{transition:all 300ms ease 0ms }

.lg-shadow{box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.10);}
.lg-shadow:hover{box-shadow: 0px 18px 48px 0px rgba(0, 0, 0, 0.10);}
.lg-shadow{transition:all 300ms ease 0ms }

.real-shadow{box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.10);}
.real-shadow{transition:all 300ms ease 0ms }





.nav-menu{background-color:var(--white) ;background-position:center center ;background-origin:padding-box ;background-blend-mode:normal ;background-attachment:scroll   ;background-clip:border-box ;}@media (hover:none) and (pointer:coarse){.nav-menu{background-attachment:scroll!important}}


@media screen and (min-width: 64em){.main-menu a, .main-menu .is-dropdown-submenu-parent>a {--menu-bg-color:var(--my-transparent) ;}}
@media screen and (min-width: 64em){.main-menu a, .main-menu .is-dropdown-submenu-parent>a {--menu-link-color:var(--my-almost-black) ;}}
@media screen and (min-width: 64em){.main-menu a, .main-menu .is-dropdown-submenu-parent>a {--menu-caret-color:var(--my-almost-black) ;}}

@media screen and (min-width: 64em){.main-menu a:hover, 
.main-menu .is-dropdown-submenu-parent>a:hover {--menu-bg-color:var(--my-almost-white) ;}}
@media screen and (min-width: 64em){.main-menu a:hover{--menu-link-color-hover:var(--primary) ;}}
@media screen and (min-width: 64em){.main-menu .is-dropdown-submenu-parent>a:hover {--menu-link-color-hover:var(--primary) ;}}
@media screen and (min-width: 64em){.main-menu a:hover, 
.main-menu .is-dropdown-submenu-parent>a:hover {--menu-caret-color:var(--primary) ;}}

@media screen and (min-width: 64em){.main-menu .active>a{--menu-bg-color:var(--my-transparent) !important;}}
@media screen and (min-width: 64em){.main-menu .active>a{--menu-link-color:var(--primary) !important;}}
@media screen and (min-width: 64em){.main-menu .active>a{--menu-caret-color:var(--primary) !important;}}

@media screen and (min-width: 64em){.main-menu .active>a:hover{--menu-bg-color:var(--my-transparent) !important;}}
@media screen and (min-width: 64em){.main-menu .active>a:hover{--menu-link-color-hover:var(--primary-dark) !important;}}
@media screen and (min-width: 64em){.main-menu .active>a:hover{--menu-caret-color:var(--primary-dark) !important;}}


@media screen and (min-width: 64em){.main-menu .highlighted-item-light a{--menu-bg-color:var(--my-primary-light) !important;}}
@media screen and (min-width: 64em){.main-menu .highlighted-item-light a{--menu-link-color:var(--primary) !important;}}
@media screen and (min-width: 64em){.main-menu .highlighted-item-light a{--menu-caret-color:var(--primary) !important;}}

@media screen and (min-width: 64em){.main-menu .highlighted-item-dark a{--menu-bg-color:var(--primary) !important;}}
@media screen and (min-width: 64em){.main-menu .highlighted-item-dark a{--menu-link-color:var(--white) !important;}}
@media screen and (min-width: 64em){.main-menu .highlighted-item-dark a{--menu-caret-color:var(--white) !important;}}


@media screen and (min-width: 64em){.main-menu .highlighted-item-light a:hover{--menu-bg-color:var(--primary) !important;}}
@media screen and (min-width: 64em){.main-menu .highlighted-item-light a{--menu-link-color-hover:var(--white) !important;}}
@media screen and (min-width: 64em){.main-menu .highlighted-item-light-dropdown-submenu-parent>a:hover{--menu-link-color:var(--white) !important;}}
@media screen and (min-width: 64em){.main-menu .highlighted-item-light-dropdown-submenu-parent>a:hover{--menu-caret-color:var(--white) !important;}}

@media screen and (min-width: 64em){.main-menu .highlighted-item-dark a:hover{--menu-bg-color:var(--primary-dark) !important;}}
@media screen and (min-width: 64em){.main-menu .highlighted-item-dark a{--menu-link-color-hover:var(--white) !important;}}
@media screen and (min-width: 64em){.main-menu .highlighted-item-dark-dropdown-submenu-parent>a:hover{--menu-link-color:var(--white) !important;}}
@media screen and (min-width: 64em){.main-menu .highlighted-item-dark-dropdown-submenu-parent>a:hover{--menu-caret-color:var(--white) !important;}}

@media screen and (min-width: 64em){.main-menu li.is-dropdown-submenu-parent.is-active>a{--menu-bg-color:var(--my-almost-white) !important;}}
@media screen and (min-width: 64em){.main-menu li.is-dropdown-submenu-parent.is-active>a{--menu-link-color:var(--primary) ;}}
@media screen and (min-width: 64em){.main-menu li.is-accordion-submenu-parent[aria-expanded="true"]>a{--menu-caret-color:var(--primary) ;}}


@media screen and (min-width: 64em){.is-dropdown-submenu-parent.is-active .submenu a{--menu-bg-color:var(--my-transparent) ;}}
@media screen and (min-width: 64em){.is-dropdown-submenu-parent.is-active .submenu a{--menu-link-color:var(--dark-gray) ;}}
@media screen and (min-width: 64em){.is-dropdown-submenu-parent.is-active .submenu a{--menu-caret-color:var(--dark-gray) ;}}

@media screen and (min-width: 64em){.is-dropdown-submenu-parent.is-active .submenu a:hover, .submenu a:hover{--menu-bg-color:var(--my-transparent) !important;}}
@media screen and (min-width: 64em){.is-dropdown-submenu-parent.is-active .submenu a{--menu-link-color-hover:var(--black) !important;}}
@media screen and (min-width: 64em){.is-dropdown-submenu-parent.is-active .submenu a:hover{--menu-caret-color:var(--black) ;}}

@media screen and (min-width: 64em){.is-dropdown-submenu-parent.is-active .submenu .active>a{--menu-bg-color:var(--my-transparent) !important;}}
@media screen and (min-width: 64em){.is-dropdown-submenu-parent.is-active .submenu .active>a{--menu-link-color:var(--primary) !important;}}
@media screen and (min-width: 64em){.is-dropdown-submenu-parent.is-active .submenu .active>a:hover{--menu-caret-color:var(--primary) !important;}}

@media screen and (min-width: 64em){.is-dropdown-submenu-parent.is-active .submenu .active>a:hover{--menu-bg-color:var(--my-transparent) !important;}}
@media screen and (min-width: 64em){.is-dropdown-submenu-parent.is-active .submenu .active>a{--menu-link-color-hover:var(--primary-dark) !important;}}
@media screen and (min-width: 64em){.is-dropdown-submenu-parent.is-active .submenu .active>a:hover{--menu-caret-color:var(--primary-dark) !important;}}

@media screen and (min-width: 64em){.is-dropdown-submenu-parent.is-active .submenu .main-menu .menu-text{--menu-text-color:var(--my-medium-gray) !important;}}



@media screen and (max-width: 63.9375em){.side-menu .main-menu a{--menu-bg-color:var(--my-transparent) !important;}}
@media screen and (max-width: 63.9375em){.side-menu .main-menu a{--menu-link-color:var(--my-almost-black) !important;}}
@media screen and (max-width: 63.9375em){.side-menu .main-menu a{--menu-caret-color:var(--my-almost-black) !important;}}

@media screen and (max-width: 63.9375em){.side-menu .main-menu a:hover{--menu-bg-color:var(--my-almost-white) !important;}}
@media screen and (max-width: 63.9375em){.side-menu .main-menu a{--menu-link-color-hover:var(--primary) !important;}}
@media screen and (max-width: 63.9375em){.side-menu .main-menu a:hover{--menu-caret-color:var(--primary) !important;}}

@media screen and (max-width: 63.9375em){.side-menu .main-menu .active>a{--menu-bg-color:var(--my-transparent) !important;}}
@media screen and (max-width: 63.9375em){.side-menu .main-menu .active>a{--menu-link-color:var(--primary) !important;}}
@media screen and (max-width: 63.9375em){.side-menu .main-menu .active>a{--menu-caret-color:var(--primary) !important;}}

@media screen and (max-width: 63.9375em){.side-menu .main-menu .active>a:hover{--menu-bg-color:var(--my-transparent) !important;}}
@media screen and (max-width: 63.9375em){.side-menu .main-menu .active>a:hover{--menu-link-color:var(--black) !important;}}
@media screen and (max-width: 63.9375em){.side-menu .main-menu .active>a:hover{--menu-caret-color:var(--black) !important;}}

@media screen and (max-width: 63.9375em){.side-menu .main-menu .highlighted-item a{--menu-bg-color:var(--my-secondary-light) !important;}}
@media screen and (max-width: 63.9375em){.side-menu .main-menu .highlighted-item a{--menu-link-color:var(--primary) !important;}}
@media screen and (max-width: 63.9375em){.side-menu .main-menu .highlighted-item a{--menu-caret-color:var(--primary) !important;}}

@media screen and (max-width: 63.9375em){.side-menu .main-menu .highlighted-item a:hover{--menu-bg-color:var(--secondary) !important;}}
@media screen and (max-width: 63.9375em){.side-menu .main-menu .highlighted-item a{--menu-link-color-hover:var(--primary-dark) !important;}}
@media screen and (max-width: 63.9375em){.side-menu .main-menu .highlighted-item.is-dropdown-submenu-parent>a:hover{--menu-link-color:var(--primary-dark) !important;}}
@media screen and (max-width: 63.9375em){.side-menu .main-menu .highlighted-item.is-dropdown-submenu-parent>a:hover{--menu-caret-color:var(--primary-dark) !important;}}

@media screen and (max-width: 63.9375em){.side-menu .main-menu .last-item a{--menu-bg-color:var(--secondary) !important;}}
@media screen and (max-width: 63.9375em){.side-menu .main-menu .last-item a{--menu-link-color:var(--primary) !important;}}
@media screen and (max-width: 63.9375em){.side-menu .main-menu .last-item a{--menu-caret-color:var(--primary) !important;}}

@media screen and (max-width: 63.9375em){.side-menu .main-menu .last-item a:hover{--menu-bg-color:var(--secondary-dark) !important;}}
@media screen and (max-width: 63.9375em){.side-menu .main-menu .last-item a{--menu-link-color-hover:var(--primary-dark) !important;}}
@media screen and (max-width: 63.9375em){.side-menu .main-menu .last-item.is-dropdown-submenu-parent>a:hover{--menu-link-color:var(--primary-dark) !important;}}
@media screen and (max-width: 63.9375em){.side-menu .main-menu .last-item.is-dropdown-submenu-parent>a:hover{--menu-caret-color:var(--primary-dark) !important;}}

@media screen and (max-width: 63.9375em){.side-menu .main-menu .menu-text{--menu-text-color:var(--my-medium-gray) !important;}}

@media screen and (max-width: 63.9375em){#side-menu{background-color:var(--white) ;background-position:center center ;background-origin:padding-box ;background-blend-mode:normal ;background-attachment:scroll   ;background-clip:border-box ;}}@media (hover:none) and (pointer:coarse){#side-menu{background-attachment:scroll!important}}
.js-off-canvas-overlay{position:relative;z-index:0}@media screen and (max-width: 63.9375em){.js-off-canvas-overlay:before{content:"";position:absolute;top:0;bottom:0;left:0;right:0;z-index:-1;opacity:0.75 ;background-color:var(--my-black) ;}}


@media screen and (max-width: 63.9375em){.side-menu .submenu .main-menu a{--menu-bg-color:var(--my-transparent) !important;}}
@media screen and (max-width: 63.9375em){.side-menu .submenu .main-menu a{--menu-link-color:var(--my-almost-black) !important;}}
@media screen and (max-width: 63.9375em){.side-menu .submenu .main-menu a{--menu-caret-color:var(--my-almost-black) !important;}}

@media screen and (max-width: 63.9375em){.side-menu .submenu .main-menu a:hover{--menu-bg-color:var(--my-almost-white) !important;}}
@media screen and (max-width: 63.9375em){.side-menu .submenu .main-menu a{--menu-link-color-hover:var(--primary) !important;}}
@media screen and (max-width: 63.9375em){.side-menu .submenu .main-menu a:hover{--menu-caret-color:var(--primary) !important;}}

@media screen and (max-width: 63.9375em){.side-menu .submenu .main-menu li.active>a{--menu-bg-color:var(--my-secondary-light) !important;}}
@media screen and (max-width: 63.9375em){.side-menu .submenu .main-menu li.active>a{--menu-link-color:var(--primary) !important;}}
@media screen and (max-width: 63.9375em){.side-menu .submenu .main-menu li.active>a{--menu-caret-color:var(--primary) !important;}}

@media screen and (max-width: 63.9375em){.side-menu .submenu .main-menu li.active>a:hover{--menu-bg-color:var(--my-secondary-light) !important;}}
@media screen and (max-width: 63.9375em){.side-menu .submenu .main-menu li.active>a{--menu-link-color-hover:var(--primary) !important;}}
@media screen and (max-width: 63.9375em){.side-menu .submenu .main-menu li.active>a:hover{--menu-caret-color:var(--primary) !important;}}

@media screen and (max-width: 63.9375em){.side-menu .submenu .main-menu a:hover{--menu-bg-color:var(--my-almost-white) !important;}}
@media screen and (max-width: 63.9375em){.side-menu .is-accordion-submenu-parent[aria-expanded=true]>a{--menu-link-color:var(--primary) !important;}}
@media screen and (max-width: 63.9375em){.side-menu .main-menu a:hover{--menu-caret-color:var(--primary) !important;}}



.nav-menu{position:fixed    ;z-index:999 ;top:0px ;bottom:unset ;left:unset ;right:unset ;}
.nav-menu{width:100% ;}  
.nav-menu{padding-top:1rem ;padding-right:0.75rem ;padding-bottom:1rem ;padding-left:0.75rem ;}  
.nav-menu{border-color:var(--light-gray) ;border-bottom-width:1px ;border-bottom-style:solid ;}
.nav-menu{transition:all 500ms ease 0ms }








.nav-menu.toggled

{
    transform-origin: 50% 50% ;
    transform-style: flat ;
    transform :
        
        
        translate3d(0%, -100%, 0px)
        
        
        
        
        ;
}



            .main-menu{font-family:"Poppins",sans-serif }
            .main-menu{font-size:calc(20rem/16) ;font-weight:400 ;}@media only screen and (min-width:40em) {            .main-menu{font-size:calc(20rem/16) ;line-height:1.50 }}@media only screen and (min-width:64em) {            .main-menu{font-size:calc(15rem/16) ;line-height:1.50 }}
@media screen and (min-width: 64em){.main-menu .is-dropdown-submenu-parent>a{padding-top:0.75rem ;padding-right:1.5rem ;padding-bottom:0.75rem ;padding-left:0.75rem ;}}  
@media screen and (min-width: 64em){.main-menu a{padding-top:0.75rem ;padding-right:0.75rem ;padding-bottom:0.75rem ;padding-left:0.75rem ;}}  
@media screen and (min-width: 64em){.main-menu a{margin-top:0.25rem ;margin-right:0.0625rem ;margin-bottom:0.25rem ;margin-left:0.0625rem ;}}  
.main-menu a{border-radius:7px ;}

@media screen and (min-width: 64em){.main-menu .is-dropdown-submenu-parent>a:after{border:unset !important}}
@media screen and (min-width: 64em){.main-menu .is-dropdown-submenu-parent>a:after{position: absolute   ;z-index:1 ;top:45% ;bottom:unset ;left:unset ;right:unset ;transform:translateY(-50%) ;}}
@media screen and (min-width: 64em){.main-menu .is-dropdown-submenu-parent>a:after{width:0.5rem !important;}}  
@media screen and (min-width: 64em){.main-menu .is-dropdown-submenu-parent>a:after{height:1rem !important;}}  
@media screen and (min-width: 64em){.main-menu .is-dropdown-submenu-parent>a:after{background-position:center center !important;background-origin:padding-box !important;background-blend-mode:normal !important;background-attachment:scroll   !important;background-clip:border-box !important; background-image: url("data:image/svg+xml,%3Csvg id='Livello_1' data-name='Livello 1' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 16'%3E%3Cpath d='m1,15c-.26,0-.51-.1-.71-.29-.39-.39-.39-1.02,0-1.41l5.29-5.29L.29,2.71C-.1,2.32-.1,1.68.29,1.29s1.02-.39,1.41,0l6,6c.39.39.39,1.02,0,1.41L1.71,14.71c-.2.2-.45.29-.71.29Z'/%3E%3C/svg%3E"); }}@media (hover:none) and (pointer:coarse){.main-menu .is-dropdown-submenu-parent>a{background-attachment:scroll!important}}


@media screen and (min-width: 64em) {





.main-menu .is-dropdown-submenu-parent>a:after

{
    transform-origin: 50% 50% ;
    transform-style: flat ;
    transform :
        
        
        translate3d(-4px, -2px, 0px)
        
        
        scale3d(0.70, 0.70, 0.70)
        
        
        rotateX(0deg) rotateY(0deg) rotateZ(90deg)
        
        
        ;
}

}



@media screen and (min-width: 64em) {






.main-menu .is-dropdown-submenu-parent.is-active>a:after, 
.main-menu li.is-dropdown-submenu-parent.is.active a:after

{
    transform-origin: 50% 50% ;
    transform-style: flat ;
    transform :
        
        
        translate3d(-4px, -2px, 0px)
        
        
        scale3d(0.70, 0.70, 0.70)
        
        
        rotateX(0deg) rotateY(0deg) rotateZ(270deg)
        
        
        ;
}

}

@media screen and (min-width: 64em){.main-menu .is-dropdown-submenu-parent>a:after{transition:all 200ms ease 0ms }}

            .main-menu .highlighted-item-light, .main-menu .highlighted-item-dark{font-weight:500 ;}

.main-menu a{transition:all 150ms ease 0ms }


            .submenu a{font-size:calc(20rem/16) !important;font-weight:400 !important;}@media only screen and (min-width:40em) {            .submenu a{font-size:calc(20rem/16) !important;line-height:1.50 !important}}@media only screen and (min-width:64em) {            .submenu a{font-size:calc(16rem/16) !important;line-height:1.50 !important}}
@media screen and (min-width: 64em){.submenu a{padding-top:0.5rem !important;padding-right:0.25rem !important;padding-bottom:0.5rem !important;padding-left:0.25rem !important;}}  
@media screen and (min-width: 64em){.submenu a{margin:0 ;}}  
@media screen and (min-width: 64em){.submenu a{border:unset !important}}
@media screen and (min-width: 64em){.submenu a{border-radius:0px ;}}

@media screen and (min-width: 64em){.submenu a{position:relative;white-space:normal}.submenu a:before{content:"";position:absolute;bottom:0px;left:0;width:calc(100% - 4rem / 8);margin:0 calc(4rem / 16);height:3px;background:currentcolor;transform:scaleX(0.00);transform-origin:left  ;transition:transform 250ms ease-in;background-color:var(--primary) ;}.submenu a:hover:before{transform:scaleX(0.20);transform-origin:left  }}

@media screen and (min-width: 64em){.submenu .is-dropdown-submenu-parent>a:after{border:unset !important}}
@media screen and (min-width: 64em){.submenu .is-dropdown-submenu-parent>a:after{position: absolute   ;z-index:1 ;top:50% ;bottom:unset ;left:unset ;right:16% ;transform:translateY(-50%) ;}}


@media screen and (min-width: 64em) {





.submenu .is-dropdown-submenu-parent>a:after

{
    transform-origin: 50% 50% ;
    transform-style: flat ;
    transform :
        
        
        translate3d(18px, -2px, 0px)
        
        
        scale3d(0.70, 0.70, 0.70)
        
        
        rotateX(0deg) rotateY(0deg) rotateZ(90deg)
        
        
        ;
}

}



@media screen and (min-width: 64em) {





.submenu .is-dropdown-submenu-parent.is-active>a:after, 
.submenu li.is-dropdown-submenu-parent.is.active a:after

{
    transform-origin: 50% 50% ;
    transform-style: flat ;
    transform :
        
        
        translate3d(18px, -2px, 0px)
        
        
        scale3d(0.70, 0.70, 0.70)
        
        
        rotateX(0deg) rotateY(0deg) rotateZ(270deg)
        
        
        ;
}

}

@media screen and (min-width: 64em){.submenu .is-dropdown-submenu-parent>a:after{transition:all 200ms ease 0ms }}

            .is-dropdown-submenu-parent.is-active .submenu .active>a{font-size:calc(20rem/16) !important;font-weight:600 !important;}@media only screen and (min-width:40em) {            .is-dropdown-submenu-parent.is-active .submenu .active>a{font-size:calc(20rem/16) !important;line-height:1.50 !important}}@media only screen and (min-width:64em) {            .is-dropdown-submenu-parent.is-active .submenu .active>a{font-size:calc(16rem/16) !important;line-height:1.50 !important}}

      h5,.h5,      .submenu .menu-text{font-size:calc(14rem/16) !important;font-weight:500 !important;}@media only screen and (min-width:40em) {      h5,.h5,      .submenu .menu-text{font-size:calc(14rem/16) !important;line-height:1.10 !important}}@media only screen and (min-width:64em) {      h5,.h5,      .submenu .menu-text{font-size:calc(14rem/16) !important;line-height:1.10 !important}}
@media screen and (min-width: 64em){.submenu .menu-text{padding-top:0.5rem !important;padding-right:0.5rem !important;padding-bottom:0.5rem !important;padding-left:0.5rem !important;}}  



@media screen and (min-width: 64em){.is-dropdown-submenu{width:auto ;min-width:220.00px ;max-width:100.00% ;}}  
@media screen and (min-width: 64em){.is-dropdown-submenu{background-color:var(--white) ;background-position:center center ;background-origin:padding-box ;background-blend-mode:normal ;background-attachment:scroll   ;background-clip:border-box ;}}@media (hover:none) and (pointer:coarse){.is-dropdown-submenu{background-attachment:scroll!important}}
@media screen and (min-width: 64em){.is-dropdown-submenu{padding:1.25rem !important;}}  
.is-dropdown-submenu{border-radius:5px ;}
@media screen and (min-width: 64em){.is-dropdown-submenu{border:unset }}
.is-dropdown-submenu{pointer-events:none }
@media screen and (min-width: 64em){.is-dropdown-submenu{box-shadow: 0px 15px 30px 0px rgba(0, 0, 0, 0.30);}}
@media screen and (min-width: 64em){body.loaded .is-dropdown-submenu{display:unset }}
@media screen and (min-width: 64em){.is-dropdown-submenu{opacity:0.00 }}

.is-active > .is-dropdown-submenu{pointer-events:auto !important}
@media screen and (min-width: 64em){.is-active > .is-dropdown-submenu{opacity:1.00 }}

@media screen and (min-width: 64em){.is-dropdown-submenu{transition:all 500ms ease 0ms }}




@media screen and (min-width: 64em) {





.is-dropdown-submenu

{
    transform-origin: 50% 100% ;
    transform-style: flat ;
    transform :
        
        
        translate3d(0px, 48px, 0px)
        
        
        scale3d(1.10, 1.10, 1.10)
        
        
        
        ;
}

}



@media screen and (min-width: 64em) {





.is-active > .is-dropdown-submenu

{
    transform-origin: 50% 50% ;
    transform-style: flat ;
    transform :
        
        
        translate3d(0px, 30px, 0px)
        
        
        scale3d(1.00, 1.00, 1.00)
        
        
        
        ;
}

}



@media screen and (min-width: 64em){input#input_search{height:50.00px !important;}}@media only screen and (min-width:40em){input#input_search{height:50.00px !important}}@media only screen and (min-width:64em){input#input_search{height:38.00px !important}}
@media screen and (min-width: 64em){input#input_search{padding-left:1.25rem !important;}}  
@media screen and (min-width: 64em){.naked{background-color:var(--my-transparent) ;background-position:center center ;background-origin:padding-box ;background-blend-mode:normal ;background-attachment:scroll   ;background-clip:border-box ;}}@media (hover:none) and (pointer:coarse){.naked{background-attachment:scroll!important}}
@media screen and (min-width: 64em){.naked{border-width:0px ;border-style:none ;}}
@media screen and (min-width: 64em){.naked{box-shadow:unset }}
@media screen and (min-width: 64em){.naked{color:var(--primary) ;}}
            .naked{font-size:calc(15rem/16) !important;font-weight:400 !important;}@media only screen and (min-width:40em) {            .naked{font-size:calc(15rem/16) !important;line-height:1.50 !important}}@media only screen and (min-width:64em) {            .naked{font-size:calc(15rem/16) !important;line-height:1.50 !important}}

@media screen and (min-width: 64em){.naked:focus{background-color:var(--my-primary-light) ;background-position:center center ;background-origin:padding-box ;background-blend-mode:normal ;background-attachment:scroll   ;background-clip:border-box ;}}@media (hover:none) and (pointer:coarse){.naked{background-attachment:scroll!important}}
@media screen and (min-width: 64em){.naked:focus{border-width:0px ;border-style:none ;}}
@media screen and (min-width: 64em){.naked:focus{box-shadow:unset }}



.js-off-canvas-overlay{z-index:9999 }
@media screen and (min-width: 64em){#side-menu + .js-off-canvas-overlay{display:none !important}} 

#side-menu{ overflow-x :hidden }
#side-menu{z-index:99999 !important}

#side-menu{transition:all 500ms ease 0ms !important}

@media screen and (max-width: 63.9375em){.side-menu .is-drilldown{width:100% !important;min-width:100.00% !important;max-width:100.00% !important;}}  

@media screen and (max-width: 63.9375em){.side-menu .main-menu a{padding-top:1.25rem ;padding-right:0.75rem ;padding-bottom:1.25rem ;padding-left:0.75rem ;}}  
@media screen and (max-width: 63.9375em){.side-menu .main-menu li{margin-right:0 ;margin-left:0 ;}}  
@media screen and (max-width: 63.9375em){.side-menu .accordion-menu .nested.is-accordion-submenu{margin-top:1.25rem ;margin-left:0 ;}}  
@media screen and (max-width: 63.9375em){.side-menu .main-menu a{border-color:var(--my-light-gray) ;border-bottom-width:1px ;border-bottom-style:solid ;}}

@media screen and (max-width: 63.9375em){.side-menu .main-menu .is-drilldown-submenu-parent:not(.has-submenu-toggle)>a:after, .side-menu .main-menu .is-drilldown-submenu-parent.has-submenu-toggle button:after{border:unset !important}}
@media screen and (max-width: 63.9375em){.side-menu .main-menu .is-drilldown-submenu-parent>a:after, .side-menu .main-menu .is-drilldown-submenu-parent.has-submenu-toggle button:after{background-position:center center !important;background-origin:padding-box !important;background-blend-mode:normal !important;background-attachment:scroll   !important;background-clip:border-box !important; background-image: url("data:image/svg+xml,%3Csvg id='Livello_1' data-name='Livello 1' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 16'%3E%3Cpath d='m1,15c-.26,0-.51-.1-.71-.29-.39-.39-.39-1.02,0-1.41l5.29-5.29L.29,2.71C-.1,2.32-.1,1.68.29,1.29s1.02-.39,1.41,0l6,6c.39.39.39,1.02,0,1.41L1.71,14.71c-.2.2-.45.29-.71.29Z'/%3E%3C/svg%3E"); }}@media (hover:none) and (pointer:coarse){.side-menu .main-menu .is-drilldown-submenu-parent>a:after, .side-menu .main-menu .is-drilldown-submenu-parent.has-submenu-toggle button:after{background-attachment:scroll!important}}
@media screen and (max-width: 63.9375em){.side-menu .main-menu .is-drilldown-submenu-parent>a:after, .side-menu .main-menu .is-drilldown-submenu-parent.has-submenu-toggle button:after{width:0.5rem !important;}}  
@media screen and (max-width: 63.9375em){.side-menu .main-menu .is-drilldown-submenu-parent>a:after, .side-menu .main-menu .is-drilldown-submenu-parent.has-submenu-toggle button:after{height:1rem !important;}}  


@media screen and (max-width: 63.9375em){.side-menu .main-menu .is-drilldown-submenu a{padding-top:0.75rem !important;padding-bottom:0.75rem !important;}}  

@media screen and (max-width: 63.9375em){.side-menu .main-menu .submenu .menu-text{padding-top:0.5rem !important;padding-bottom:0.5rem !important;}}  


@media screen and (max-width: 63.9375em){.side-menu input#input_search{padding-left:1.25rem !important;}}  
@media screen and (max-width: 63.9375em){.side-menu .naked{background-color:var(--my-transparent) ;background-position:center center ;background-origin:padding-box ;background-blend-mode:normal ;background-attachment:scroll   ;background-clip:border-box ;}}@media (hover:none) and (pointer:coarse){.side-menu .naked{background-attachment:scroll!important}}
@media screen and (max-width: 63.9375em){.side-menu .naked{border-width:0px ;border-style:none ;}}
@media screen and (max-width: 63.9375em){.side-menu .naked{box-shadow:unset }}
@media screen and (max-width: 63.9375em){.side-menu .naked{color:var(--my-dark-gray) ;}}

@media screen and (max-width: 63.9375em){.side-menu .naked:focus{background-color:var(--my-transparent) ;background-position:center center ;background-origin:padding-box ;background-blend-mode:normal ;background-attachment:scroll   ;background-clip:border-box ;}}@media (hover:none) and (pointer:coarse){.side-menu .naked{background-attachment:scroll!important}}
@media screen and (max-width: 63.9375em){.side-menu .naked:focus{border-width:0px ;border-style:none ;}}
@media screen and (max-width: 63.9375em){.side-menu .naked:focus{box-shadow:unset }}
.stacks_in_36364_468{--offcanvas-size-small:300px;--offcanvas-size-medium:300px;--offcanvas-size-large:0px;}

.stacks_in_36364_481{line-height:0}.stacks_in_36364_481 svg{display:inline-block;max-width:100px;height:auto;}.stacks_in_36364_481.full-width svg{width:100%;height:auto}


.stacks_in_36364_514 > .grid-divider-wrapper > .grid-divider{height:calc(100% - 2rem)}

.stacks_in_36364_518{line-height:0}.stacks_in_36364_518 svg{display:inline-block;max-width:100px;height:auto;}.stacks_in_36364_518.full-width svg{width:100%;height:auto}





.hero-banner{background-image:url('../index_files/bgimage-558-BBA.jpg') !important;background-repeat:no-repeat    !important;background-position:center center !important;background-origin:padding-box !important;background-blend-mode:normal !important;background-attachment:scroll   !important;background-clip:border-box !important; background-size:  cover !important; }@media (hover:none) and (pointer:coarse){.hero-banner{background-attachment:scroll!important}}
.hero-banner{padding-top:96.00px !important;padding-right:20.00px !important;padding-bottom:96.00px !important;padding-left:20.00px !important;}@media only screen and (min-width:40em){.hero-banner{padding-top:128.00px !important;padding-right:32.00px !important;padding-bottom:128.00px !important;padding-left:32.00px !important}}@media only screen and (min-width:64em){.hero-banner{padding-top:200.00px !important;padding-right:32.00px !important;padding-bottom:150.00px !important;padding-left:32.00px !important}}

.squeezebox.stacks_in_36392{--sb-header-size-sm:calc(18rem / 16);--sb-header-size-md:calc(24rem / 16);--sb-header-size-lg:calc(24rem / 16);--sb-header-padding:calc(16rem / 16) calc(16rem / 16);--sb-header-text:rgba(34, 34, 34, 1.00);--sb-header-text-hover:rgba(34, 34, 34, 1.00);--sb-header-bg:rgba(84, 121, 160, 0.50);--sb-header-bg-hover:rgba(225, 225, 225, 1.00);--sb-icon-color:rgba(0, 150, 255, 1.00);--sb-icon-size:calc(32rem / 16);--sb-icon-animation:var(--sb-icon-flip);--sb-content-padding:calc(16rem / 16) calc(16rem / 16);--sb-content-background:transparent;--sb-content-background:rgba(247, 247, 247, 1.00);--sb-easing:var(--easing-ease-in-out-cubic,ease-in-out);--sb-ease-time:400ms;--sb-gutter:calc(10rem / 16);--sb-border-color:rgba(0, 0, 0, 0.40);--sb-border-size:none;--sb-radius:calc(5rem / 16);--sb-border-size:0}.squeezebox.stacks_in_36392{--sb-border-size:1px}   .squeezebox.stacks_in_36392 .sb-item{border-radius:var(--sb-radius)}     .squeezebox.stacks_in_36392 .sb-header{border:none}  



#elevator-to-top{--elevator-width:50px;--elevator-height:50px;--elevator-color:rgba(0, 0, 0, 1.00);--elevator-radius:5px;--elevator-fill:rgba(255, 255, 255, 1.00);--elevator-border-color:rgba(255, 255, 255, 1.00);--elevator-border-width:0px;--elevator-icon-width:24px;--elevator-shadow:0 0 10px rgba(0,0,0,0.5);-webkit-appearance:none;appearance:none;display:none;overflow:hidden;justify-content:center;align-items:center;padding:0;margin:0;cursor:pointer;transition:all 200ms ease-in-out;position:fixed;bottom:10px;right:10px;z-index:9999;width:var(--elevator-width);height:var(--elevator-height);border-color:var(--elevator-border-color);border-width:var(--elevator-border-width);border-style:solid;background-color:var(--elevator-color);color:var(--elevator-fill);box-shadow:var(--elevator-shadow);border-radius:var(--elevator-radius)}#elevator-to-top svg{width:var(--elevator-icon-width);fill:var(--elevator-fill)}#elevator-to-top:active,#elevator-to-top:focus{outline:none}#elevator-to-top:hover{scale:1.05}
#stacks_in_35953 *, #stacks_in_35953 *:after, #stacks_in_35953 *:before {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box; }

#stacks_in_35953 .stacks-button.add {
	-webkit-box-sizing: content-box;
	-moz-box-sizing: content-box;
	box-sizing: content-box;
}


/* Clearfix hack by Nicolas Gallagher: http://nicolasgallagher.com/micro-clearfix-hack/ */
#stacks_in_35953 .clearfix:before,
#stacks_in_35953 .clearfix:after {
	content: " "; display: table;
}

#stacks_in_35953 .clearfix:after { clear: both; }

#stacks_in_35953  {
}

#stacks_in_35953 .timeline_item {
	position: relative;
}

#stacks_in_35953 ul.cbp_tmtimeline {
	margin: 0;
}

#stacks_in_35953 a,
#stacks_in_35953 a:visited {
	color: #FFFFFF;
	text-decoration: none;
}

#stacks_in_35953 a:hover,
#stacks_in_35953 a:active {
	color: #FFFFFF;
}

#stacks_in_35953 .main {
	width: 95%;
	max-width: 69em;
	margin: 0 auto;
	padding-top: 5px;
	padding-bottom: 5px;
}

#stacks_in_35953 .cbp_tmtimeline {
	margin: 30px 0 0 0;
	padding: 0;
	list-style: none;
	position: relative;
}

#stacks_in_35953 .cbp_tmtimeline li {
	margin: 0;
}

/* The line */
#stacks_in_35953 .cbp_tmtimeline:before {
	content: '';
	position: absolute;
	top: 1px;
	bottom: 0;
	width: 10px;
	
	border-radius: 5px;
	
	

	
		left: 20%;
	
	
	
	
	
	

	margin-left: -10px;
}

/* The date/time */
#stacks_in_35953 .cbp_tmtimeline li .cbp_tmtime {
	display: block;
	
		width: 25%;
	
	
	
	
	
	
	padding-right: 100px;
	position: absolute;
	margin: 0;
}

#stacks_in_35953 .cbp_tmtimeline li .cbp_tmtime span {
	display: block;
	text-align: right;
}

#stacks_in_35953 .cbp_tmtimeline li .cbp_tmtime span.small_label {
	font-size: 14px;
	line-height: 1.2;
	white-space: normal;
	
}

#stacks_in_35953 .cbp_tmtimeline li .cbp_tmtime span.large_label {
	font-size: 28px;
	line-height: 1.2;
	letter-spacing: -1px;
	white-space: normal;
	
	overflow: hidden;
}

/* Right content */
#stacks_in_35953 .cbp_tmtimeline li .cbp_tmlabel {
	
		margin: 0 0 15px 25%;
	
	
	
	
	
	
	
	padding: 2em;
	position: relative;
	border-radius: 5px;
}

#stacks_in_35953 .cbp_tmtimeline li .cbp_tmlabel h3.timeline_label {
	margin-top: 0px;
	padding: 0 0 10px 0;
	line-height: 1;
	border-bottom: 1px solid rgba(255,255,255,0.3);
	
}

#stacks_in_35953 .timeline_content {
	margin-top: 20px;
}


/* The triangle */
#stacks_in_35953 .cbp_tmtimeline li .cbp_tmlabel:after {
	right: 100%;
	border: solid transparent;
	content: " ";
	height: 0;
	width: 0;
	position: absolute;
	pointer-events: none;
	
	border-width: 10px;
	top: 15px;
}


/* The icons */
#stacks_in_35953 .cbp_tmtimeline li .cbp_tmicon {
	width: 40px;
	height: 40px;
	speak: none;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	font-size: 1.4em;
	line-height: 40px;
	-webkit-font-smoothing: antialiased;
	position: absolute;
	
	border-radius: 50%;
	text-align: center;
	top: 8px;

	
		left: 20%;
	
	
	
	
	
	

	margin: 0 0 0 -25px;

	
}

#stacks_in_35953 .cbp_tmtimeline li .cbp_tmicon i {
	height: 39px;
	line-height: 39px;
}



	#stacks_in_35953 .cbp_tmtime {
		display: block;
	}

	





/********************************************/
/* Color Presets                            */
/********************************************/


/* TESLA PRESET START */

/* TESLA PRESET END */



/* SUBTLE GREYS PRESET START */


/* Links */
#stacks_in_35953 a,
#stacks_in_35953 a:visited {
	color: #5D6268;
}

#stacks_in_35953 a:hover,
#stacks_in_35953 a:active {
	color: #8B939C;
}

/* The Line */
#stacks_in_35953 .cbp_tmtimeline:before {
	background: #ECEEF2;
}

/* Labels */
#stacks_in_35953 .cbp_tmtimeline li .cbp_tmtime span.small_label {
	color: #8B939C;
}

#stacks_in_35953 .cbp_tmtimeline li .cbp_tmtime span.large_label {
	color: #5D6268;
}

/* Bubble & Point */
#stacks_in_35953 .cbp_tmtimeline li .cbp_tmlabel {
	background: #ECEEF2;
	color: #8B939C;
}

#stacks_in_35953 .cbp_tmtimeline li .cbp_tmlabel:after {
	border-right-color: #ECEEF2;
}

/* Bubble Label */
#stacks_in_35953 .cbp_tmtimeline li .cbp_tmlabel h3.timeline_label {
	color: #5D6268;
	border-bottom: 1px solid #A3A4AF;
}

/* The Icon */
#stacks_in_35953 .cbp_tmtimeline li .cbp_tmicon {
	color: #fff !important;
	background: #8B939C;
	box-shadow: 0 0 0 8px #ECEEF2; /* Border of icon */
}

/* SUBTLE GREYS PRESET END */



/* FEATHER PRESET START */

/* FEATHER PRESET END */



/* NAVIGATOR PRESET START */

/* NAVIGATOR PRESET END */



/* RUBY PRESET START */

/* RUBY PRESET END */



/* GUN METAL PRESET START */

/* GUN METAL PRESET END */



/* EARTHY PRESET START */

/* EARTHY PRESET END */



/* CONTRASTY GREYS PRESET START */

/* CONTRASTY GREYS PRESET END */



/* HOTH PRESET START */

/* HOTH PRESET END */



/* ATLANTIS PRESET START */

/* ATLANTIS PRESET END */


/* PLUM PRESET START */

/* PLUM PRESET END */



/* ABSTRACT PRESET START */

/* ABSTRACT PRESET END */



/* HIVE PRESET START */

/* HIVE PRESET END */



/* WARMTH PRESET START */

/* WARMTH PRESET END */



/* PRETTY PURPLE PRESET START */

/* PRETTY PURPLE PRESET END */





/* Media Queries */
@media screen and (max-width: 65.375em) {

	#stacks_in_35953 .cbp_tmtimeline li .cbp_tmtime span.large_label {
		font-size: 24px;
		line-height: 1.2;
	}
}

@media screen and (max-width: 47.2em) {
	#stacks_in_35953 .cbp_tmtimeline:before {
		display: none;
	}

	#stacks_in_35953 .cbp_tmtimeline li .cbp_tmtime {
		width: 100%;
		position: relative;
		padding: 0 0 20px 0;
	}

	#stacks_in_35953 .cbp_tmtimeline li .cbp_tmtime span {
		text-align: left;
	}

	#stacks_in_35953 .cbp_tmtimeline li .cbp_tmlabel {
		margin: 75px 0 30px 0;
		padding: 1em;
	}

	#stacks_in_35953 .cbp_tmtimeline li .cbp_tmlabel:after {
		display: none;
	}

	#stacks_in_35953 .cbp_tmtimeline li .cbp_tmtime span.large_label {
		font-size: 22px;
		line-height: 1.3;
	}


	

	#stacks_in_35953 .cbp_tmtimeline li .cbp_tmlabel {
		margin: 0px 0 30px 0;
	}

	#stacks_in_35953 .cbp_tmtimeline li .cbp_tmicon {
		position: relative;
		float: right;
		left: auto;
		margin: -55px 5px 0 0px;
		top: 0;
	}

	


}








	#stacks_in_35954 .cbp_tmlabel h3.timeline_label {
		display: block;
	}






	#stacks_in_36357 .cbp_tmlabel h3.timeline_label {
		display: block;
	}






	#stacks_in_36350 .cbp_tmlabel h3.timeline_label {
		display: block;
	}







	#stacks_in_35961 .cbp_tmlabel h3.timeline_label {
		display: block;
	}







	#stacks_in_35968 .cbp_tmlabel h3.timeline_label {
		display: block;
	}







	#stacks_in_35975 .cbp_tmlabel h3.timeline_label {
		display: block;
	}








	#stacks_in_35985 .cbp_tmlabel h3.timeline_label {
		/* The !important is necessary to keep themes from forcing the hed tag to be visible */
		display: none !important;
	}

	#stacks_in_35985 .timeline_content {
		margin-top: 0px;
	}








	#stacks_in_35992 .cbp_tmlabel h3.timeline_label {
		display: block;
	}







	#stacks_in_35999 .cbp_tmlabel h3.timeline_label {
		display: block;
	}







	#stacks_in_36006 .cbp_tmlabel h3.timeline_label {
		display: block;
	}







	#stacks_in_36018 .cbp_tmlabel h3.timeline_label {
		display: block;
	}







	#stacks_in_36013 .cbp_tmlabel h3.timeline_label {
		display: block;
	}







	#stacks_in_36025 .cbp_tmlabel h3.timeline_label {
		/* The !important is necessary to keep themes from forcing the hed tag to be visible */
		display: none !important;
	}

	#stacks_in_36025 .timeline_content {
		margin-top: 0px;
	}








	#stacks_in_36032 .cbp_tmlabel h3.timeline_label {
		/* The !important is necessary to keep themes from forcing the hed tag to be visible */
		display: none !important;
	}

	#stacks_in_36032 .timeline_content {
		margin-top: 0px;
	}





#stacks_in_36041 .cbp_tmlabel {
	background: #AFCEE3 !important;
	color: #FFFFFF !important;
}

#stacks_in_36041 .cbp_tmlabel:after {
	border-right-color: #AFCEE3 !important;
}

@media screen and (max-width: 47.2em) {
	#stacks_in_36041 .cbp_tmlabel:after {
		display: none;
	}
}

#stacks_in_36041 .cbp_tmlabel h3.timeline_label { 
	color: #FFFFFF !important;
}

#stacks_in_36041 .cbp_tmicon {
	color: #FFFFFF !important;
	background: #FB0207 !important;
	box-shadow: 0 0 0 8px #AFDCF8 !important; /* Border of icon */
}

	@media screen and (max-width: 47.2em) {

		#stacks_in_36041 .cbp_tmlabel:after {
			border-bottom-color: #AFCEE3 !important;
		}

	}





	#stacks_in_36041 .cbp_tmlabel h3.timeline_label {
		display: block;
	}






	#stacks_in_36046 .cbp_tmlabel h3.timeline_label {
		/* The !important is necessary to keep themes from forcing the hed tag to be visible */
		display: none !important;
	}

	#stacks_in_36046 .timeline_content {
		margin-top: 0px;
	}







	#stacks_in_36051 .cbp_tmlabel h3.timeline_label {
		/* The !important is necessary to keep themes from forcing the hed tag to be visible */
		display: none !important;
	}

	#stacks_in_36051 .timeline_content {
		margin-top: 0px;
	}







	#stacks_in_36056 .cbp_tmlabel h3.timeline_label {
		/* The !important is necessary to keep themes from forcing the hed tag to be visible */
		display: none !important;
	}

	#stacks_in_36056 .timeline_content {
		margin-top: 0px;
	}








	#stacks_in_36065 .cbp_tmlabel h3.timeline_label {
		/* The !important is necessary to keep themes from forcing the hed tag to be visible */
		display: none !important;
	}

	#stacks_in_36065 .timeline_content {
		margin-top: 0px;
	}








	#stacks_in_36072 .cbp_tmlabel h3.timeline_label {
		/* The !important is necessary to keep themes from forcing the hed tag to be visible */
		display: none !important;
	}

	#stacks_in_36072 .timeline_content {
		margin-top: 0px;
	}








	#stacks_in_36079 .cbp_tmlabel h3.timeline_label {
		/* The !important is necessary to keep themes from forcing the hed tag to be visible */
		display: none !important;
	}

	#stacks_in_36079 .timeline_content {
		margin-top: 0px;
	}







	#stacks_in_36084 .cbp_tmlabel h3.timeline_label {
		/* The !important is necessary to keep themes from forcing the hed tag to be visible */
		display: none !important;
	}

	#stacks_in_36084 .timeline_content {
		margin-top: 0px;
	}








	#stacks_in_36091 .cbp_tmlabel h3.timeline_label {
		/* The !important is necessary to keep themes from forcing the hed tag to be visible */
		display: none !important;
	}

	#stacks_in_36091 .timeline_content {
		margin-top: 0px;
	}







	#stacks_in_36096 .cbp_tmlabel h3.timeline_label {
		/* The !important is necessary to keep themes from forcing the hed tag to be visible */
		display: none !important;
	}

	#stacks_in_36096 .timeline_content {
		margin-top: 0px;
	}







	#stacks_in_36101 .cbp_tmlabel h3.timeline_label {
		display: block;
	}







	#stacks_in_36106 .cbp_tmlabel h3.timeline_label {
		/* The !important is necessary to keep themes from forcing the hed tag to be visible */
		display: none !important;
	}

	#stacks_in_36106 .timeline_content {
		margin-top: 0px;
	}







	#stacks_in_36111 .cbp_tmlabel h3.timeline_label {
		/* The !important is necessary to keep themes from forcing the hed tag to be visible */
		display: none !important;
	}

	#stacks_in_36111 .timeline_content {
		margin-top: 0px;
	}








	#stacks_in_36118 .cbp_tmlabel h3.timeline_label {
		/* The !important is necessary to keep themes from forcing the hed tag to be visible */
		display: none !important;
	}

	#stacks_in_36118 .timeline_content {
		margin-top: 0px;
	}







	#stacks_in_36123 .cbp_tmlabel h3.timeline_label {
		/* The !important is necessary to keep themes from forcing the hed tag to be visible */
		display: none !important;
	}

	#stacks_in_36123 .timeline_content {
		margin-top: 0px;
	}







	#stacks_in_36128 .cbp_tmlabel h3.timeline_label {
		/* The !important is necessary to keep themes from forcing the hed tag to be visible */
		display: none !important;
	}

	#stacks_in_36128 .timeline_content {
		margin-top: 0px;
	}







	#stacks_in_36133 .cbp_tmlabel h3.timeline_label {
		/* The !important is necessary to keep themes from forcing the hed tag to be visible */
		display: none !important;
	}

	#stacks_in_36133 .timeline_content {
		margin-top: 0px;
	}







	#stacks_in_36138 .cbp_tmlabel h3.timeline_label {
		/* The !important is necessary to keep themes from forcing the hed tag to be visible */
		display: none !important;
	}

	#stacks_in_36138 .timeline_content {
		margin-top: 0px;
	}







	#stacks_in_36143 .cbp_tmlabel h3.timeline_label {
		/* The !important is necessary to keep themes from forcing the hed tag to be visible */
		display: none !important;
	}

	#stacks_in_36143 .timeline_content {
		margin-top: 0px;
	}







	#stacks_in_36148 .cbp_tmlabel h3.timeline_label {
		display: block;
	}







	#stacks_in_36153 .cbp_tmlabel h3.timeline_label {
		/* The !important is necessary to keep themes from forcing the hed tag to be visible */
		display: none !important;
	}

	#stacks_in_36153 .timeline_content {
		margin-top: 0px;
	}







	#stacks_in_36158 .cbp_tmlabel h3.timeline_label {
		/* The !important is necessary to keep themes from forcing the hed tag to be visible */
		display: none !important;
	}

	#stacks_in_36158 .timeline_content {
		margin-top: 0px;
	}








	#stacks_in_36165 .cbp_tmlabel h3.timeline_label {
		/* The !important is necessary to keep themes from forcing the hed tag to be visible */
		display: none !important;
	}

	#stacks_in_36165 .timeline_content {
		margin-top: 0px;
	}







	#stacks_in_36170 .cbp_tmlabel h3.timeline_label {
		/* The !important is necessary to keep themes from forcing the hed tag to be visible */
		display: none !important;
	}

	#stacks_in_36170 .timeline_content {
		margin-top: 0px;
	}







	#stacks_in_36175 .cbp_tmlabel h3.timeline_label {
		/* The !important is necessary to keep themes from forcing the hed tag to be visible */
		display: none !important;
	}

	#stacks_in_36175 .timeline_content {
		margin-top: 0px;
	}







	#stacks_in_36180 .cbp_tmlabel h3.timeline_label {
		/* The !important is necessary to keep themes from forcing the hed tag to be visible */
		display: none !important;
	}

	#stacks_in_36180 .timeline_content {
		margin-top: 0px;
	}







	#stacks_in_36185 .cbp_tmlabel h3.timeline_label {
		/* The !important is necessary to keep themes from forcing the hed tag to be visible */
		display: none !important;
	}

	#stacks_in_36185 .timeline_content {
		margin-top: 0px;
	}







	#stacks_in_36190 .cbp_tmlabel h3.timeline_label {
		/* The !important is necessary to keep themes from forcing the hed tag to be visible */
		display: none !important;
	}

	#stacks_in_36190 .timeline_content {
		margin-top: 0px;
	}








	#stacks_in_36197 .cbp_tmlabel h3.timeline_label {
		/* The !important is necessary to keep themes from forcing the hed tag to be visible */
		display: none !important;
	}

	#stacks_in_36197 .timeline_content {
		margin-top: 0px;
	}







	#stacks_in_36202 .cbp_tmlabel h3.timeline_label {
		/* The !important is necessary to keep themes from forcing the hed tag to be visible */
		display: none !important;
	}

	#stacks_in_36202 .timeline_content {
		margin-top: 0px;
	}








	#stacks_in_36209 .cbp_tmlabel h3.timeline_label {
		/* The !important is necessary to keep themes from forcing the hed tag to be visible */
		display: none !important;
	}

	#stacks_in_36209 .timeline_content {
		margin-top: 0px;
	}








	#stacks_in_36216 .cbp_tmlabel h3.timeline_label {
		/* The !important is necessary to keep themes from forcing the hed tag to be visible */
		display: none !important;
	}

	#stacks_in_36216 .timeline_content {
		margin-top: 0px;
	}





#stacks_in_36223 .cbp_tmlabel {
	background: #AFCEE3 !important;
	color: #FFFFFF !important;
}

#stacks_in_36223 .cbp_tmlabel:after {
	border-right-color: #AFCEE3 !important;
}

@media screen and (max-width: 47.2em) {
	#stacks_in_36223 .cbp_tmlabel:after {
		display: none;
	}
}

#stacks_in_36223 .cbp_tmlabel h3.timeline_label { 
	color: #FFFFFF !important;
}

#stacks_in_36223 .cbp_tmicon {
	color: #FFFFFF !important;
	background: #FB0207 !important;
	box-shadow: 0 0 0 8px #AFDCF8 !important; /* Border of icon */
}

	@media screen and (max-width: 47.2em) {

		#stacks_in_36223 .cbp_tmlabel:after {
			border-bottom-color: #AFCEE3 !important;
		}

	}





	#stacks_in_36223 .cbp_tmlabel h3.timeline_label {
		/* The !important is necessary to keep themes from forcing the hed tag to be visible */
		display: none !important;
	}

	#stacks_in_36223 .timeline_content {
		margin-top: 0px;
	}







	#stacks_in_36228 .cbp_tmlabel h3.timeline_label {
		/* The !important is necessary to keep themes from forcing the hed tag to be visible */
		display: none !important;
	}

	#stacks_in_36228 .timeline_content {
		margin-top: 0px;
	}








	#stacks_in_36235 .cbp_tmlabel h3.timeline_label {
		/* The !important is necessary to keep themes from forcing the hed tag to be visible */
		display: none !important;
	}

	#stacks_in_36235 .timeline_content {
		margin-top: 0px;
	}







	#stacks_in_36240 .cbp_tmlabel h3.timeline_label {
		/* The !important is necessary to keep themes from forcing the hed tag to be visible */
		display: none !important;
	}

	#stacks_in_36240 .timeline_content {
		margin-top: 0px;
	}








	#stacks_in_36247 .cbp_tmlabel h3.timeline_label {
		/* The !important is necessary to keep themes from forcing the hed tag to be visible */
		display: none !important;
	}

	#stacks_in_36247 .timeline_content {
		margin-top: 0px;
	}








	#stacks_in_36254 .cbp_tmlabel h3.timeline_label {
		/* The !important is necessary to keep themes from forcing the hed tag to be visible */
		display: none !important;
	}

	#stacks_in_36254 .timeline_content {
		margin-top: 0px;
	}







	#stacks_in_36259 .cbp_tmlabel h3.timeline_label {
		/* The !important is necessary to keep themes from forcing the hed tag to be visible */
		display: none !important;
	}

	#stacks_in_36259 .timeline_content {
		margin-top: 0px;
	}








	#stacks_in_36266 .cbp_tmlabel h3.timeline_label {
		/* The !important is necessary to keep themes from forcing the hed tag to be visible */
		display: none !important;
	}

	#stacks_in_36266 .timeline_content {
		margin-top: 0px;
	}








	#stacks_in_36273 .cbp_tmlabel h3.timeline_label {
		/* The !important is necessary to keep themes from forcing the hed tag to be visible */
		display: none !important;
	}

	#stacks_in_36273 .timeline_content {
		margin-top: 0px;
	}








	#stacks_in_36280 .cbp_tmlabel h3.timeline_label {
		/* The !important is necessary to keep themes from forcing the hed tag to be visible */
		display: none !important;
	}

	#stacks_in_36280 .timeline_content {
		margin-top: 0px;
	}





#stacks_in_36287 .cbp_tmlabel {
	background: #AFCEE3 !important;
	color: #FFFFFF !important;
}

#stacks_in_36287 .cbp_tmlabel:after {
	border-right-color: #AFCEE3 !important;
}

@media screen and (max-width: 47.2em) {
	#stacks_in_36287 .cbp_tmlabel:after {
		display: none;
	}
}

#stacks_in_36287 .cbp_tmlabel h3.timeline_label { 
	color: #FFFFFF !important;
}

#stacks_in_36287 .cbp_tmicon {
	color: #FFFFFF !important;
	background: #FB0207 !important;
	box-shadow: 0 0 0 8px #AFDCF8 !important; /* Border of icon */
}

	@media screen and (max-width: 47.2em) {

		#stacks_in_36287 .cbp_tmlabel:after {
			border-bottom-color: #AFCEE3 !important;
		}

	}





	#stacks_in_36287 .cbp_tmlabel h3.timeline_label {
		display: block;
	}







	#stacks_in_36292 .cbp_tmlabel h3.timeline_label {
		/* The !important is necessary to keep themes from forcing the hed tag to be visible */
		display: none !important;
	}

	#stacks_in_36292 .timeline_content {
		margin-top: 0px;
	}




#stacks_in_36297 .cbp_tmlabel {
	background: #AFCEE3 !important;
	color: #FFFFFF !important;
}

#stacks_in_36297 .cbp_tmlabel:after {
	border-right-color: #AFCEE3 !important;
}

@media screen and (max-width: 47.2em) {
	#stacks_in_36297 .cbp_tmlabel:after {
		display: none;
	}
}

#stacks_in_36297 .cbp_tmlabel h3.timeline_label { 
	color: #FFFFFF !important;
}

#stacks_in_36297 .cbp_tmicon {
	color: #FFFFFF !important;
	background: #FB0207 !important;
	box-shadow: 0 0 0 8px #AFDCF8 !important; /* Border of icon */
}

	@media screen and (max-width: 47.2em) {

		#stacks_in_36297 .cbp_tmlabel:after {
			border-bottom-color: #AFCEE3 !important;
		}

	}





	#stacks_in_36297 .cbp_tmlabel h3.timeline_label {
		display: block;
	}







	#stacks_in_36304 .cbp_tmlabel h3.timeline_label {
		/* The !important is necessary to keep themes from forcing the hed tag to be visible */
		display: none !important;
	}

	#stacks_in_36304 .timeline_content {
		margin-top: 0px;
	}








	#stacks_in_36313 .cbp_tmlabel h3.timeline_label {
		/* The !important is necessary to keep themes from forcing the hed tag to be visible */
		display: none !important;
	}

	#stacks_in_36313 .timeline_content {
		margin-top: 0px;
	}





#stacks_in_36320 .cbp_tmlabel {
	background: #AFCEE3 !important;
	color: #FFFFFF !important;
}

#stacks_in_36320 .cbp_tmlabel:after {
	border-right-color: #AFCEE3 !important;
}

@media screen and (max-width: 47.2em) {
	#stacks_in_36320 .cbp_tmlabel:after {
		display: none;
	}
}

#stacks_in_36320 .cbp_tmlabel h3.timeline_label { 
	color: #FFFFFF !important;
}

#stacks_in_36320 .cbp_tmicon {
	color: #FFFFFF !important;
	background: #FB0207 !important;
	box-shadow: 0 0 0 8px #AFDCF8 !important; /* Border of icon */
}

	@media screen and (max-width: 47.2em) {

		#stacks_in_36320 .cbp_tmlabel:after {
			border-bottom-color: #AFCEE3 !important;
		}

	}





	#stacks_in_36320 .cbp_tmlabel h3.timeline_label {
		display: block;
	}






	#stacks_in_36325 .cbp_tmlabel h3.timeline_label {
		/* The !important is necessary to keep themes from forcing the hed tag to be visible */
		display: none !important;
	}

	#stacks_in_36325 .timeline_content {
		margin-top: 0px;
	}







	#stacks_in_36330 .cbp_tmlabel h3.timeline_label {
		/* The !important is necessary to keep themes from forcing the hed tag to be visible */
		display: none !important;
	}

	#stacks_in_36330 .timeline_content {
		margin-top: 0px;
	}







	#stacks_in_36335 .cbp_tmlabel h3.timeline_label {
		/* The !important is necessary to keep themes from forcing the hed tag to be visible */
		display: none !important;
	}

	#stacks_in_36335 .timeline_content {
		margin-top: 0px;
	}







.footer{background-color:var(--my-primary) ;background-position:center center ;background-origin:padding-box ;background-blend-mode:normal ;background-attachment:scroll   ;background-clip:border-box ;}@media (hover:none) and (pointer:coarse){.footer{background-attachment:scroll!important}}
.alt .footer{background-color:var(--my-almost-black) ;background-position:center center ;background-origin:padding-box ;background-blend-mode:normal ;background-attachment:scroll   ;background-clip:border-box ;}@media (hover:none) and (pointer:coarse){.alt .footer{background-attachment:scroll!important}}


.footer .main-menu .menu-text{--menu-text-color:var(--my-black) ;}

.footer .main-menu a{--menu-bg-color:var(--my-transparent) ;}
.footer .main-menu a{--menu-link-color:var(--my-medium-grey) ;}

.footer .main-menu a:hover{--menu-bg-color:var(--my-transparant) ;}
.footer .main-menu a:hover{--menu-link-color-hover:var(--my-almost-white) ;}

.footer .main-menu .active a{--menu-bg-color:var(--my-transparent) !important;}
.footer .main-menu .active a{--menu-link-color:var(--my-black) !important;}

.footer .main-menu.social a{--menu-link-color:var(--my-almost-black) ;}

.footer .main-menu.social a:hover{--menu-link-color-hover:var(--my-medium-grey) ;}


.alt .footer .main-menu .menu-text{--menu-text-color:var(--my-white) ;}

.alt .footer .main-menu a{--menu-bg-color:var(--my-transparent) ;}
.alt .footer .main-menu a{--menu-link-color:var(--my-medium-gray) ;}

.alt .footer .main-menu a:hover{--menu-bg-color:var(--my-transparent) ;}
.alt .footer .main-menu a:hover{--menu-link-color-hover:var(--my-primary) ;}

.alt .footer .main-menu .active a{--menu-bg-color:var(--my-transparent) !important;}
.alt .footer .main-menu .active a{--menu-link-color:var(--my-white) !important;}

.alt .footer .main-menu.social a{--menu-link-color:var(--my-almost-white) ;}

.alt .footer .main-menu.social a:hover{--menu-link-color-hover:var(--my-medium-gray) ;}


.footer .form-wrapper{position:relative;z-index:1}.footer .form-wrapper:before{content:"";position:absolute;top:0;bottom:0;left:0;right:0;z-index:-1;opacity:1.00 ;background-color:var(--my-white) ;}
.alt .footer .form-wrapper{position:relative;z-index:1}.alt .footer .form-wrapper:before{content:"";position:absolute;top:0;bottom:0;left:0;right:0;z-index:-1;opacity:1.00 ;background-color:var(--my-black) ;}

.footer .naked{background-color:var(--my-transparent) ;background-position:center center ;background-origin:padding-box ;background-blend-mode:normal ;background-attachment:scroll   ;background-clip:border-box ;}@media (hover:none) and (pointer:coarse){.footer .naked{background-attachment:scroll!important}}
.footer .naked{color:var(--my-dark-gray) ;}
.alt .footer .naked{color:var(--my-medium-gray) ;}
.footer .naked.is-invalid-input{color:var(--my-alert) ;}

.footer .naked:focus{background-color:var(--my-transparent) ;background-position:center center ;background-origin:padding-box ;background-blend-mode:normal ;background-attachment:scroll   ;background-clip:border-box ;}@media (hover:none) and (pointer:coarse){.footer .naked{background-attachment:scroll!important}}


.footer{padding-top:2.5rem ;padding-right:2.5rem ;padding-bottom:1rem ;padding-left:2.5rem ;} @media only screen and (min-width:40em){.footer{padding-top:3rem ;padding-right:3rem ;padding-bottom:1.25rem ;padding-left:3rem ;}}@media only screen and (min-width:64em){.footer{padding-top:4rem ;padding-right:4rem ;padding-bottom:1.25rem ;padding-left:4rem ;}} 


            .footer .main-menu{font-family:"Poppins",sans-serif }

            .footer .main-menu .menu-text{font-size:calc(20rem/16) ;font-weight:700 ;}@media only screen and (min-width:40em) {            .footer .main-menu .menu-text{font-size:calc(18rem/16) ;line-height:1.50 }}@media only screen and (min-width:64em) {            .footer .main-menu .menu-text{font-size:calc(18rem/16) ;line-height:1.50 }}
.footer .main-menu .menu-text{padding-top:0 ;padding-right:0 ;padding-bottom:1.25rem ;padding-left:0 ;}  
.footer .main-menu .menu-text{margin:0 ;}  

            .footer .main-menu{font-size:calc(14rem/16) ;font-weight:400 ;}@media only screen and (min-width:40em) {            .footer .main-menu{font-size:calc(14rem/16) ;line-height:1.50 }}@media only screen and (min-width:64em) {            .footer .main-menu{font-size:calc(14rem/16) ;line-height:1.50 }}
.footer .main-menu a{padding-top:0.5rem ;padding-right:0 ;padding-bottom:0.5rem ;padding-left:0 ;} @media only screen and (min-width:40em){.footer .main-menu a{}}@media only screen and (min-width:64em){.footer .main-menu a{}} 
.footer .main-menu a{margin:0 ;}  

            .footer .main-menu.social{font-size:calc(18rem/16) ;font-weight:400 ;}@media only screen and (min-width:40em) {            .footer .main-menu.social{font-size:calc(18rem/16) ;line-height:1.50 }}@media only screen and (min-width:64em) {            .footer .main-menu.social{font-size:calc(18rem/16) ;line-height:1.50 }}


.footer .form-wrapper{padding-top:0.5rem ;padding-right:0.75rem ;padding-bottom:0.5rem ;padding-left:0.75rem ;}  
.footer .form-wrapper{border-radius:10px 10px 10px 10px ;}
.footer .form-wrapper{border-color:var(--my-light-gray) ;border-width:1px ;border-style:solid ;}
.alt .footer .form-wrapper{border-color:var(--my-dark-gray) ;border-width:1px ;border-style:solid ;}

            .footer .naked{font-size:calc(16rem/16) ;}@media only screen and (min-width:40em) {            .footer .naked{font-size:calc(16rem/16) ;line-height:1.50 }}@media only screen and (min-width:64em) {            .footer .naked{font-size:calc(16rem/16) ;line-height:1.50 }}
.naked{box-shadow:unset }
.footer .naked{border:unset }

.footer .naked:focus{border:unset }
.naked:focus{box-shadow:unset }

.stacks_in_36362_6 > .grid-divider-wrapper > .grid-divider{height:calc(100% - 2rem)}

.stacks_in_36362_10 > .grid-divider-wrapper > .grid-divider{height:calc(100% - 2rem)}

.stacks_in_36362_753 img{width:100%;max-width:200px}




.stacks_in_36362_88 > .grid-divider-wrapper > .grid-divider{height:calc(100% - 2rem)}

