@charset "UTF-8";
/* CSS RESET */
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code,
small, strong, em, del, ins, b, i, a,
dl, dt, dd, fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th,
article, aside, figure, footer, header, hgroup, menu, nav, section, menu,
time, mark, audio, video										{ margin:0; padding:0; border:0; outline:0; font-size:100%; vertical-align:baseline; background:transparent; list-style: none; }
article, aside, figure, footer, header, hgroup, nav, section	{ display:block; }
/*!
 * animate.css -https://daneden.me/animate
 * Version - 3.5.1
 * Licensed under the MIT license - https://opensource.org/licenses/MIT
 *
 * Copyright (c) 2016 Daniel Eden
 */

@font-face {
  font-family: 'BebasNeue-Regular';
  src: local('BebasNeue-Regular'), local('BebasNeue-Regular'), url(BebasNeue-Regular.woff2) format('woff2'),url(BebasNeue-Regular.woff) format('woff');
  }

@font-face {
  font-family: 'AGENCYR';
  src: local('AGENCYR'), local('AGENCYR'), url(AGENCYR.woff2) format('woff2'),url(AGENCYR.woff) format('woff');
}


@font-face {
    font-family: 'FontAwesome';
    src: url('fontawesome-webfont.woff2') format('woff2'),
        url('fontawesome-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

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

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

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

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

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

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

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

  90% {
    -webkit-transform: translate3d(0,-4px,0);
    transform: translate3d(0,-4px,0);
  }
}

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

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

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

  90% {
    -webkit-transform: translate3d(0,-4px,0);
    transform: translate3d(0,-4px,0);
  }
}

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

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

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

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

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

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

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

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

  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }

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

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

  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }

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

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

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

  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }

  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }

  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }

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

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

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

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

  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }

  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }

  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  10%, 20% {
    -webkit-transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
  }

  30%, 50%, 70%, 90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }

  40%, 60%, 80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }

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

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

  10%, 20% {
    -webkit-transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
  }

  30%, 50%, 70%, 90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }

  40%, 60%, 80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }

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

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

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-webkit-keyframes wobble {
  from {
    -webkit-transform: none;
    transform: none;
  }

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

  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }

  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }

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

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

  to {
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes wobble {
  from {
    -webkit-transform: none;
    transform: none;
  }

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

  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }

  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }

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

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

  to {
    -webkit-transform: none;
    transform: none;
  }
}

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

@-webkit-keyframes jello {
  from, 11.1%, to {
    -webkit-transform: none;
    transform: none;
  }

  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }

  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg);
  }

  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }

  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }

  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }

  77.7% {
    -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }

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

@keyframes jello {
  from, 11.1%, to {
    -webkit-transform: none;
    transform: none;
  }

  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }

  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg);
  }

  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }

  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }

  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }

  77.7% {
    -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }

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

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

@-webkit-keyframes bounceIn {
  from, 20%, 40%, 60%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

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

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

  40% {
    -webkit-transform: scale3d(.9, .9, .9);
    transform: scale3d(.9, .9, .9);
  }

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

  80% {
    -webkit-transform: scale3d(.97, .97, .97);
    transform: scale3d(.97, .97, .97);
  }

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

@keyframes bounceIn {
  from, 20%, 40%, 60%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

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

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

  40% {
    -webkit-transform: scale3d(.9, .9, .9);
    transform: scale3d(.9, .9, .9);
  }

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

  80% {
    -webkit-transform: scale3d(.97, .97, .97);
    transform: scale3d(.97, .97, .97);
  }

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

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

@-webkit-keyframes bounceInDown {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

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

  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0);
  }

  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }

  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0);
  }

  to {
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes bounceInDown {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

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

  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0);
  }

  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }

  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0);
  }

  to {
    -webkit-transform: none;
    transform: none;
  }
}

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

@-webkit-keyframes bounceInLeft {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

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

  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0);
  }

  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }

  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0);
  }

  to {
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes bounceInLeft {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

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

  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0);
  }

  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }

  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0);
  }

  to {
    -webkit-transform: none;
    transform: none;
  }
}

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

@-webkit-keyframes bounceInRight {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  from {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
    transform: translate3d(3000px, 0, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
    transform: translate3d(-25px, 0, 0);
  }

  75% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }

  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
    transform: translate3d(-5px, 0, 0);
  }

  to {
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes bounceInRight {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  from {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
    transform: translate3d(3000px, 0, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
    transform: translate3d(-25px, 0, 0);
  }

  75% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }

  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
    transform: translate3d(-5px, 0, 0);
  }

  to {
    -webkit-transform: none;
    transform: none;
  }
}

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

@-webkit-keyframes bounceInUp {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
    transform: translate3d(0, 3000px, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }

  75% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }

  90% {
    -webkit-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0);
  }

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

@keyframes bounceInUp {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
    transform: translate3d(0, 3000px, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }

  75% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }

  90% {
    -webkit-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0);
  }

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

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

@-webkit-keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(.9, .9, .9);
    transform: scale3d(.9, .9, .9);
  }

  50%, 55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }

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

@keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(.9, .9, .9);
    transform: scale3d(.9, .9, .9);
  }

  50%, 55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }

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

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

@-webkit-keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }

  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }

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

@keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }

  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }

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

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

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

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

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

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

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

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

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

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

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

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

@-webkit-keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }

  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }

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

@keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }

  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }

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

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

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

  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

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

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

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

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

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

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

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

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

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

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

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

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

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

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

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

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

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

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

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

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

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

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

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

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

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

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

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

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

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

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

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

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

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

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

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

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

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

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

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

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

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

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

  to {
    opacity: 0;
  }
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

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

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

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

@keyframes fadeOutDown {
  from {
    opacity: 1;
  }

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

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

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

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

@keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }

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

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

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

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

@keyframes fadeOutLeft {
  from {
    opacity: 1;
  }

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

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

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

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

@keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }

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

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

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

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

@keyframes fadeOutRight {
  from {
    opacity: 1;
  }

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

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

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

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

@keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }

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

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

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

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

@keyframes fadeOutUp {
  from {
    opacity: 1;
  }

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

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

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

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

@keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }

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

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

@-webkit-keyframes flip {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  40% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  50% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  80% {
    -webkit-transform: perspective(400px) scale3d(.95, .95, .95);
    transform: perspective(400px) scale3d(.95, .95, .95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}

@keyframes flip {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  40% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  50% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  80% {
    -webkit-transform: perspective(400px) scale3d(.95, .95, .95);
    transform: perspective(400px) scale3d(.95, .95, .95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}

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

@-webkit-keyframes flipInX {
  from {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

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

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

  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}

@keyframes flipInX {
  from {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

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

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

  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}

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

@-webkit-keyframes flipInY {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

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

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

  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}

@keyframes flipInY {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

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

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

  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}

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

@-webkit-keyframes flipOutX {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }

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

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

@keyframes flipOutX {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }

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

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

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

@-webkit-keyframes flipOutY {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }

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

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

@keyframes flipOutY {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }

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

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

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

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

  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
    opacity: 1;
  }

  to {
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

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

  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
    opacity: 1;
  }

  to {
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

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

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

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

@keyframes lightSpeedOut {
  from {
    opacity: 1;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@-webkit-keyframes rotateOutDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }

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

@keyframes rotateOutDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }

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

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

@-webkit-keyframes rotateOutDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }

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

@keyframes rotateOutDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }

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

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

@-webkit-keyframes rotateOutUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }

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

@keyframes rotateOutUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }

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

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

@-webkit-keyframes rotateOutUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }

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

@keyframes rotateOutUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }

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

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

@-webkit-keyframes hinge {
  0% {
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  20%, 60% {
    -webkit-transform: rotate3d(0, 0, 1, 80deg);
    transform: rotate3d(0, 0, 1, 80deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  40%, 80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
    transform: rotate3d(0, 0, 1, 60deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }

  to {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}

@keyframes hinge {
  0% {
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  20%, 60% {
    -webkit-transform: rotate3d(0, 0, 1, 80deg);
    transform: rotate3d(0, 0, 1, 80deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  40%, 80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
    transform: rotate3d(0, 0, 1, 60deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }

  to {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}

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

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

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

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

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

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

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

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

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

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

@keyframes rollOut {
  from {
    opacity: 1;
  }

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

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

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

  50% {
    opacity: 1;
  }
}

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

  50% {
    opacity: 1;
  }
}

.nozoom { -webkit-animation-name: none!important;
  animation-name:none!important }
.zoomIn {
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  to {
    opacity: 0;
  }
}

@keyframes zoomOut {
  from {
    opacity: 1;
  }

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

  to {
    opacity: 0;
  }
}

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

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

  to {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
    transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

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

  to {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
    transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

  to {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
    transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

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

  to {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
    transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

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

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

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

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

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

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

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

  }

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

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


    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.slideOutUp {
  -webkit-animation-name: slideOutUp;
  animation-name: slideOutUp;
}
.delay-quarter{-webkit-animation-delay:0.5s;animation-delay:0.5s}.delay-half{-webkit-animation-delay:0.75s;animation-delay:0.75s}.delay-three-quarter{-webkit-animation-delay:1s;animation-delay:1s}.delay-one{-webkit-animation-delay:1.25s;animation-delay:1.25s}.delay-one-quarter{-webkit-animation-delay:1.5s;animation-delay:1.5s}.delay-one-half{-webkit-animation-delay:1.75s;animation-delay:1.75s}.delay-two{-webkit-animation-delay:2.25s;animation-delay:2.25s}.delay-two-half{-webkit-animation-delay:2.75s;animation-delay:2.75s}

html {height:100%; background:#fafafa; }
body {	color:#000; height:100%; line-height: 24px; font:300 24px 'AGENCYR',Arial,Helvetica; -webkit-font-smoothing:antialiased; }

span.glyphicon-chevron-left,
span.glyphicon-chevron-right,
a.carousel-control span { border:none!important}
a{color:#31b2b6; text-decoration:none; transition:color 0.5s ease-in-out;}
a:hover{color:#43af68;}
.btn,a,.btn:hover,a:hover {
-webkit-transition: all 0.3s ease-in-out;
-moz-transition: all 0.3s ease-in-out;
-ms-transition: all 0.3s ease-in-out;
-o-transition: all 0.3s ease-in-out;
transition: all 0.3s ease-in-out;
outline: none !important;
}
h1,h2,h3,h4{margin: 0;line-height: 1em;}
h1{font:300 30px 'BebasNeue-Regular',Arial,Helvetica; padding-top:0px; margin: 15px 0px 35px 0px; font-weight:normal;    color:#31b2b6; letter-spacing:2px;  }
h2{font:300 25px 'BebasNeue-Regular',Arial,Helvetica;  font-weight:normal;  color:#2b4386; letter-spacing:2px; margin-bottom:20px; }
h3{font:300 20px 'BebasNeue-Regular',Arial,Helvetica;margin:14px 0 10px 0; font-weight:normal;   color:#31b2b6; }
h4{font:300 18px 'BebasNeue-Regular',Arial,Helvetica;margin-bottom: 1em; text-transform:uppercase; }
h4 i{margin-right: 0.5em;}
h5 {font:300 30px 'BebasNeue-Regular',Arial,Helvetica; padding-top:0px; margin: 15px 0px 15px 0px; font-weight:normal; font-style:italic;  color:#31b2b6; letter-spacing:2px;  }
p{}
.row {padding-bottom: 100px; }
.bck {  }
.spacer{padding: 2em 0 0 0 ;}
.spacer2{padding: 2em 0;}
.margin_20 { margin-top:20px!important; }
.shadow {text-shadow: 2px 2px 5px #000; }

.btn-default{color: #ccc;border: 1px solid #aaa;}
.btn-default:hover,.btn-default:active{background: rgba(0,0,0,0.8);}
.btn-primary{color: #fff;background:#f3c024;width: 100%;outline: none;}
.btn-primary:hover,.btn-primary:active,.btn-primary:focus{background:#416376;box-shadow: none;}

.check { transform: scale(1.5); padding:0px 20px!important;}

.overflow { overflow:visible!important}
.relative { position:relative; }
.center { text-align:center; }
.right { text-align:right;}
.left { text-align:left;}
.top-left { position:absolute; top:10px; left:10px}
.top-right { position:absolute; top:10px; right:10px}
.bottom-left { position:absolute; bottom:10px; left:10px}
.bottom-right { position:absolute; bottom:10px; right:10px}

.grey { background-color:#fcfaf6; }
.border-grey { border:2px solid #fcfaf6; }
.border-grey_over:hover { background-color:#fcfaf6; cursor:pointer;}

.margin_btm_10 {margin-bottom:10px!important;}
.margin_btm_20 {margin-bottom:20px!important;}
.margin_btm_30 {margin-bottom:30px!important;}
.margin_btm_40 {margin-bottom:40px!important;}
.margin_btm_50 {margin-bottom:50px!important;}
.margin_btm_60 {margin-bottom:60px!important;}
.margin_btm_70 {margin-bottom:70px!important;}
.margin_btm_80 {margin-bottom:80px!important;}

.margin_top_10 {margin-top:10px!important;}
.margin_top_20 {margin-top:20px!important;}
.margin_top_30 {margin-top:30px!important;}
.margin_top_40 {margin-top:40px!important;}
.margin_top_50 {margin-top:50px!important;}
.margin_top_80 {margin-top:80px!important;}

.margin_5_lr { margin-left:10px!important; margin-left:10px!important;}
.margin_10_left { margin-left:20px!important;}
.margin_10_right { margin-right:20px!important;}
.margin_right_10 { margin-right:10px;}

.padding_60 {padding:60px!important;}
.padding_50 {padding:50px!important;}
.padding_40 {padding:40px!important;}
.padding_20 {padding:20px!important;}
.padding_10 {padding:10px!important;}
.padding_5 {padding:5px!important;}

.padding_btm_80 {padding-bottom:80px!important;}
.padding_btm_60 {padding-bottom:60px!important;}
.padding_btm_40 {padding-bottom:40px!important;}
.padding_btm_20 {padding-bottom:20px!important;}
.padding_btm_10 {padding-bottom:10px!important;}
.padding_btm_5 {padding-bottom:5px!important;}

.padding_top_80 {padding-top:80px!important;}
.padding_top_60 {padding-top:60px!important;}
.padding_top_50 {padding-top:50px!important;}
.padding_top_40 {padding-top:40px!important;}
.padding_top_25 {padding-top:25px!important;}
.padding_top_20 {padding-top:20px!important;}
.padding_top_10 {padding-top:10px!important;}
.padding_top_5 {padding-top:5px!important;}
.padding_top_0 {padding-top:0px!important;}

.padding_top_btm_10 { padding-top:10px; padding-bottom:10px;}

.padding_lr_120 { padding-left:120px!important; padding-right:120px!important}
.padding_lr_100 { padding-left:100px!important; padding-right:100px!important}
.padding_lr_80 { padding-left:80px!important; padding-right:80px!important}
.padding_lr_60 { padding-left:60px!important; padding-right:60px!important}
.padding_lr_40 { padding-left:40px!important; padding-right:40px!important}
.padding_lr_15 {padding-left:15px!important; padding-right:15px!important}

.padding_l_5 {padding-left:5px!important;}
.padding_r_5 {padding-right:5px!important}
.padding_l_15 {padding-left:15px!important;}
.padding_l_30 {padding-left:30px!important;}
.padding_r_15 {padding-right:15px!important}

iframe { max-width:100%!important;}
figure { padding:20px; padding-top:0px; position:relative}
figure img { max-width:100%!important; margin:0px 30px 30px 30px; border:1px solid #000; }

figure a img {  padding:5px; background:#FFF; box-shadow:3px 3px 3px 2px #c2c2c2; border:1px solid #bababa; transition:opacity ease-in-out 0.5s; margin-bottom:3px; }
figure a img:hover { opacity:0.5; background:#ea5b0c; }

.vid_container {position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%;}
.video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

h3.intro {
  font-size:50px;
  overflow: hidden;
  line-height: 75px;
  color: #F7CA05;
  text-shadow: 0 2px 10px rgba(0,0,0,0.4),0 -2px 2px #fff;
  letter-spacing: 3px;
  text-align:center;
}

h3.intro:hover {
  animation: glitch .3s linear infinite;
  cursor: pointer;
}



@keyframes glitch {
  0% {
    transform: translate(0);
  }
  20% {
    transform: translate(-2px, 2px);
  }
  40% {
    transform: translate(-2px, -2px);
  }
  60% {
    transform: translate(2px, 2px);
  }
  80% {
    transform: translate(2px, -2px);
  }
  100% {
    transform: translate(0);
  }
}

.align_justify { text-align:justify!important;}
.no_pad_lr {padding-left:0px; padding-right:0px}

.border { border:1px solid #000; }

.float_left { float:left; }
.float_right { float:right; }
#top_info { color:#FFF; position:absolute; top:0px; right:0px;}
#top_info a { color:#31b2b6; }
#top_info a:hover { color:#FFF; }
#info_contact { font-size:17px; margin-top:10px; text-align:left; }
#info_contact a { color:#000; font-size:17px; font-weight:normal; }
#info_contact a:hover { text-decoration:underline; }

.abs_btm {  position:absolute; bottom:0px; width:calc(100% - 40px);  }
.align_btm { position:relative; overflow:auto; }
.align_btm_footer { position:relative; overflow:auto; width:100%; }
.align_btm div {position:relative; color:#31b2b6; position:absolute; bottom:0px; font-size:17px; line-height:20px; font-family:'Myriad'; vertical-align: bottom; }
.white {color:#FFF!important;}

.bottom {bottom:0px; position:absolute;}
img {max-width:100%;}
.full { width:100%; overflow:auto; position:relative; margin-top:100px;}

.z-index_1 { position:relative; z-index:1;}
.input_c { padding:10px 15px; margin-bottom:10px; border-radius:2px; border:1px solid #31b2b6; }
.float_img_right { float:right; }

.usp { border:1px solid #c2c2c2; margin:20px 0px; padding:10px;}
.usp_ul { list-style:none!important; margin:0px; padding:0px; margin-top:20px;}
.usp_ul li { list-style:none; }

.border-shadow { box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19); }
/* top info */
.float-left { float:left;  }
.float-right { float:left;text-align:right; }
.mobile_full { padding-top:0px!important; height:auto; margin-top:0px!important; }
/* header */
#header { background:#fff; }
div#fixed {position:fixed; top:0px; z-index:100; width:100% }
div#top { position:relative; padding-top:0px;  padding-bottom:0px; background:#FFF; overflow:auto; }
div.nav { text-align:left;  }
#div_logo {  margin-top:40px;  text-align:left;   }

.gradient { height:350px; background: rgb(70,175,104); background: linear-gradient(90deg, rgba(70,175,104,1) 0%, rgba(56,177,182,1) 68%, rgba(56,177,182,1) 100%); }
.gradient_sm { height:150px; background: rgb(70,175,104); background: linear-gradient(90deg, rgba(70,175,104,1) 0%, rgba(56,177,182,1) 68%, rgba(56,177,182,1) 100%); }



.black { color:#000!important; }
.green{ color:#48bb03!important;}
.orange { color:#31b2b6!important;}

div#menu {  padding:10px 0px; z-index:100; position:relative; transition: 0.2s ease-in-out padding; }
#ul_menu { list-style:none; padding:0px 0px 0px 0px; vertical-align: bottom;  z-index:101; }
#ul_menu li { margin:0px 0px 0px 0px; display:inline-block; font-family: 'BebasNeue-Regular',Arial,Helvetica; text-align:center; padding:3px 10px 10px 0px; position:relative; }

#ul_menu li a.blue_btn { background-color:#31b2b6; color:#FFF }
#ul_menu li a.blue_btn:hover { background-color:#000; color:#FFF }

#ul_menu li:hover { cursor:pointer; }
#ul_menu li:first-child { padding-left:0px!important;}
#ul_menu li:last-child { padding-right:0px!important;}
#ul_menu li a { color:#31b2b6; font-family: 'BebasNeue-Regular',Arial,Helvetica!important; padding:4px 16px 4px 0px; font-size:29px; text-transform:uppercase; text-decoration:none; }
#ul_menu li a:hover { color:#43af68;  }
#ul_menu li a.selected {  color:#43af68;}
#ul_menu li ul                   { display: none; position: absolute; left:0px; top:40px; margin:0px; padding:3px 0px 5px 10px; }
#ul_menu li ul li                { float:left; background-color:#FFF; border-radius:3px; border:none!important; list-style: none; padding: 10px 5px 10px 10px; width: 200px; margin:0px; color:#40748e; border: none; text-align:left; }
#ul_menu li ul li:hover          { background-color:#31b2b6; border-radius:3px;}
#ul_menu li ul li a              { color:#000; font-size:15px; border:none!important; padding:2px 5px; margin: 0px; letter-spacing:1px; }
#ul_menu li ul li:hover a        { color:#FFF; text-decoration: underline; padding:2px 5px; }
#ul_menu li:hover ul             { display:block; }

.menu_item { color:#FFF; font-family: 'BebasNeue-Regular'; line-height:48px!important; font-size:24px; }
.menu_item:hover { color:#FFF; }

/* transition top */
.f-menu div#menu { padding:5px 0px!important; }
.f-menu img#logo_pic { max-height:100px!important; }

.btn_top { background-color:#fcc429; position:absolute; width:150px; height:60px; border:3px solid #FFF; border-right:none; z-index:10000; right:2px; top:100px; padding:15px 5px 10px 15px; border-top-left-radius:25px 50%; border-bottom-left-radius:25px 50% ; color:#000; font-family: 'BebasNeue-Regular'; font-style:italic; }
.btn_top:hover { background-color:#fde6a8; cursor:pointer; }
.link_txt { margin-top: 70px; padding-top:15px; }
.link_txt2 { font-size: 17px; margin-top: 140px; padding-top:10px; }
.link_txt2 a {color:#000;}
.link_txt2 a:hover {color:#31b2b6; text-decoration:none; }
.back_blue { background-color:#e0f2d7; }
.back_1 { background:url('/img/bck_intro_1.png') no-repeat left; z-index:2;}
.back_2  { position:absolute; bottom:0px; right:0px; z-index:2;}

img { max-width:100%;  }
.strong_blue strong { color:#03374e; font-weight:bold; }

.contact_info { color:#FFF; line-height:27px; padding-top:20px; }
.contact_info a { color:#FFF;} 
.personeel { padding:10px;}

.add_recensie { width:100%; text-align:center; margin-top:30px;}
.recensie_ { margin-top:60px;}
.recensie_ .item { color:#FFF!important; padding:20px; }

.footer_img img { margin-right:20px;}


.nomargin { margin:0px!important; } 
.nopadding { padding:0px!important; }
.no-scroll { overflow: hidden;}

.back_green { background-color:#e0f2d7; }

/* juicer */
h1.referral { display:none!important} 
.juicer-ad { display:none!important}
.juicer-feed .j-paginate:hover{ background:#31b2b6!important; color:#FFF!important;} 
.juicer-feed .j-paginate{ border:2px solid #31b2b6!important; border-radius:4px; color:#31b2b6!important;}

/* nieuws */
h3.nieuws { font-size:35px; border-bottom:1px solid #31b2b6; }
ul.nieuws { list-style:none; margin:0px; padding:0px; overflow:auto;}
li.nieuws_li {padding:5px; border-radius:5px;}
li.nieuws_li:hover { background-color:#e6e6e6; cursor:pointer;}
li.nieuws_li:hover img { opacity:0.6; }
img.img_nieuws {border:1px solid #000; border-radius:5px;}
li.li_50percent { width:50%; float:left; }

/* diensten */
ul#diensten { padding:0px; margin:0px; overflow:auto; }
#diensten li { position:relative; margin:5px; border-radius:5px; padding:15px; min-height:200px; background-color: #003252; text-align:center; transition:background 0.5s ease-in-out; color:#FFF; width:calc(25% - 10px); float:left; list-style:none;}
#diensten li:hover { background-color: #001a2b; }
#diensten li a { color:#FFF; text-decoration:none; }
.hover_cursor:hover {cursor:pointer;}

 /* personeel */ 
 
 div.personeel  { width: 440px;margin: 0px 10px 10px 0px; float:left; }
 img.img_personeel { float:left; width:200px; padding-right: 10px; vertical-align: middle; }
 div.clearall { clear:both; width:100%; margin:30px 0px; }
 div.per_cont { overflow:auto; width:100%}

/* main */
.space { margin: 0em 0px 4em 0px!important;}
#slider {margin-top:0px; position:relative; overflow:hidden; }
.slide_txt { width:100%; text-align:center; position:absolute; bottom:0px; background-color:rgba(255,255,255,0.6); padding:10px;}
.slide_txt_cnt2 {  font-size: 2em; color:#FFF; line-height:1.9em; padding:15px; text-shadow: 0px 0px 5px #000; font-family: 'BebasNeue-Regular';}
.slide_txt_cnt {  font-size: 1.2em; color:#FFF; line-height:1.5em; padding:7px 5px; font-family: 'BebasNeue-Regular';}
.slide_txt_cnt a { border:1px solid #31b2b6; border-radius:2px; background-color:#31b2b6; padding:7px 10px; color:#FFF;}
.slide_txt_cnt a:hover { background-color:#759372;}
.next_btn { top:50%; right:5px; }
.prev_btn { top:50%; left:5px; }
.info { padding:20px 35px;}
#top,
article { color:#232323;  -ms-overflow-style: none; }
#top::-webkit-scrollbar,
article::-webkit-scrollbar { display: none;}

.bck_white { background-color:#FFF; }

.img_right { float:right; margin:0px 0px 5px 5px;}

.hr-line { padding:30px 0px; }
.ratings .br-widget             { height: 52px; }
.ratings .br-widget a           { display: block; width: 35px; height: 35px; float: left; margin: 1px; text-decoration: none; font-size: 16px; font-weight: normal;line-height: 2.2; text-align: center; color: #b6b6b6!important; }
.br-theme-fontawesome-stars .br-widget { height: 28px; white-space: nowrap; }
.br-theme-fontawesome-stars .br-widget a { font: normal normal normal 20px/1 FontAwesome; text-rendering: auto;-webkit-font-smoothing: antialiased; text-decoration: none; margin-right: 2px;}
.br-theme-fontawesome-stars .br-widget a:after {  content: '\f005';  color: #d2d2d2;}
.br-theme-fontawesome-stars .br-widget a.br-active:after { color: #31b2b6;}
.br-theme-fontawesome-stars .br-widget a.br-selected:after { color: #31b2b6;}
.br-theme-fontawesome-stars .br-widget .br-current-rating { display: none;}
.br-theme-fontawesome-stars .br-readonly a {  cursor: default;}
@media print {
  .br-theme-fontawesome-stars .br-widget a:after { content: '\f006';color: #31b2b6;}
  .br-theme-fontawesome-stars .br-widget a.br-active:after,
  .br-theme-fontawesome-stars .br-widget a.br-selected:after { content: '\f005'; color: #31b2b6;}
}
.sterren_black { color:#31b2b6;}
/* contact form */
#contact_form { display:none;}
.mobile_phone { display:none; }

 /* faq */
 div.faq_titel        { background:#e0f2d7; color:#31b2b6; position:relative; width:calc(100% - 5px); padding:5px 10px; margin-bottom: 5px; }
 .top_right { position:absolute; top:3px; right:3px;}
 .float-right { float:right;}
 div.faq_titel:hover  { background-color:#31b2b6; cursor: pointer; color:#FFF; }
 div.faq_titel:hover .faq { color:#FFF;}
 div.faq_titel a      { text-decoration: none; color:#FFF; }
 div.faq_hide             { display: none; overflow:auto; width:95%;  padding:5px 10px; margin-bottom: 40px; }
  
.boekhoud { background-color:#003252; border-radius:5px; margin-top:80px; padding:10px; margin-bottom:40px; color:#FFF; transition: background-color 0.5s ease-in-out; }
.boekhoud:hover { cursor:pointer; background-color:#044874;}
.boekhoud img { border-radius:5px; margin-bottom:10px; }
.boekhoud a { color:#FFF; }
.boekhouda:hover { text-decoration:underline}

a.black_link { color:#000!important;}

/* Tipsy */
.tipsy 					{ padding: 5px; font-size: 18px; position: absolute; top: 0px; z-index: 100000;  }
 .tipsy-inner 				{ top: 0px!important;  padding: 15px 15px 15px 15px; background-color:#31b2b6; color: #FFF; line-height:20px; max-width: 500px; text-align: left; border-radius: 3px; -moz-border-radius:3px; -webkit-border-radius:3px; }
 .tipsy-arrow 				{ position: absolute; background: url('../img/tipsy.gif') no-repeat top left; width: 9px; height: 5px; }
 .tipsy-w .tipsy-arrow 		{ top: 50%; margin-top: -4px; left: 0; width: 5px; height: 9px; }
 
 .tipsy-s .tipsy-arrow 		{ top: 97.5%; right: 50%; margin-bottom: -10px; width: 9px; height: 9px;  }
 .tipsy-n .tipsy-arrow 		{ top: 0px; right: 50%; margin-bottom: -10px; width: 9px; height: 9px;  }

 /* Verkeersboetes */
 div.disclaimer_block				{ font-size:10px; line-height:normal; } 
 div.disclaimer_block strong		{ font-weight:bold; color:#0f1d37; }
 div.orange_block					{ width:100%; padding:15px; }
 div.color_6    { border: 5px solid #ffe4b7; }
 div.color_5    { border: 5px solid #ffe4b7; }
 div.color_4    { border: 5px solid #fed086; }
 div.color_3    { border: 5px solid #ffb648; }
 div.color_2    { border: 5px solid #ff9f19; }
 div.color_1    { border: 5px solid #e17a1a; } 
 .arrow-down    { width:100%; width: 0; height: 0; border-left: 304px solid transparent; border-right: 304px solid transparent; margin-bottom:20px; }
 div.arr_color_6    { border-top: 35px solid #ffe4b7; }
 div.arr_color_5    { border-top: 35px solid #ffe4b7; }
 div.arr_color_4    { border-top: 35px solid #fed086; }
 div.arr_color_3    { border-top: 35px solid #ffb648; }
 div.arr_color_2    { border-top: 35px solid #ff9f19; }
 div.arr_color_1    { border-top: 35px solid #e17a1a; } 
 
 div.orange_block:first-of-type           { margin-top: 20px; }
 div.orange_block span.steps		{ font-size:18px; color:#0f1d37; font-weight:bold;  width:100%; }
 div.orange_block a					{ color:#0f1d37; text-decoration: underline; }
 div.orange_block a:hover			{ color:#e17a1a; }
 a#terug							{ float:right; color:#0f1d37; text-decoration:underline; font-weight: normal; }
 a#terug:hover						{ float:right; color:#e17a1a; text-decoration:none; }

#popup_signature { width:100%; height:100%; background:rgba(0,0,0,0.6); position:fixed; overflow:auto;  top:0px; left:0px; z-index:10002; }
.hide_popup { display:none;  }
#popup_inside { width: 800px; background:#FFF; border:1px solid #000; overflow:auto; position:absolute; top:0px; padding:30px; margin:0px auto; }
#close_pop2 { position:absolute; top:5px; right:5px;}

/* footer */
.footer { font-size: 25px; color:#000;}
#footer { background:#000; width:100%; font-size: 25px; color:#FFF; line-height:27px; position:relative; z-index:1; overflow:auto; padding:20px 0px 10px 0px; margin:0px 0px 0px 0px; }
#footer span { margin:0px 5px; }
#footer a { color:#FFF; text-decoration:none; }
#footer a:hover { text-decoration:underline; color:#FFF; }
.marg_left { margin-left:40px; }
.footer_small { font-size:10px;  }
.footer_small a { font-size:10px;}
.thumb_img { width:100px; margin-right:10px;}
.thumb_img:hover { opacity:0.7;}

.footer_copy { color:#fb8f97; padding-top:50px; font-size:12px; margin:0px auto; width:1000px;}
.footer_copy a { color:#fb8f97!important; font-size:12px;}
#fj { position:absolute; bottom:5px; right:5px; font-size:10px; color:#31b2b6; text-decoration:none; }
#fj:hover { color:#000; }

.full { width:100%; padding:0px; margin:0px;}
.center { text-align:center; }
.right {text-align:right; }

.naam { display:none; }

.border { border:1px solid #000;}

.pics_fotoboek				{ width:100%;overflow:auto; margin-top:20px;}
 .pics_fotoboek ul				{ width:100%; overflow:auto; list-style:none; margin:0px; padding:0px; }
 .pics_fotoboek li				{ float:left; width:calc(25% - 30px); color:#FFF; margin:0px 15px 15px 0px;}
 .pics_fotoboek li img			{ max-width:100%;  transition:0.5s ease-in-out opacity;}
 .pics_fotoboek li img:hover {   opacity:0.7;} 

 .float_right { float:right;}
 .float_left {float:left;}

a.trcr { display:none!important}

input,
select,
textarea { margin:5px 0px; padding:10px 15px; border:1px solid #31b2b6; border-radius:4px; }
textarea.standard { width:450px; height:150px; }
input.standard { width:450px; }
.txtarea { height:100px;}

.input_c_sm { width:30px} 

.standard_btn { width:300px;}
.standard_btn,
.btn { background-color:#31b2b6; border:#31b2b6 1px solid; padding:15px 25px; color:#FFF!important; border-radius:4px; font-family: 'BebasNeue-Regular'; font-size:25px; line-height:25px; }
.standard_btn:hover,
.btn:hover {  background-color:#43af68;}


.btn_whatsapp { word-break:keep-all; display:inline-block; background-color:#37b50b; margin-right:10px; margin-bottom:10px; border:#37b50b 1px solid; padding:15px 25px; color:#FFF!important; border-radius:4px; font-family: 'BebasNeue-Regular'; font-size:25px; line-height:25px; }
.btn_whatsapp:hover{
    color:#000!important; background-color:#227505;
   
}
.btn_orange { word-break:keep-all; display:inline-block; background-color:#31b2b6; margin-right:10px; margin-bottom:10px; border:#31b2b6 1px solid; padding:15px 25px; color:#FFF!important; border-radius:4px; font-family: 'BebasNeue-Regular'; font-size:25px; line-height:25px; }
.btn_orange:hover{
    background-color:#43af68;
}

/*
.standard_btn:after,
.btn:after {
   font-family: "FontAwesome";
   content: "\f0d9";
   display: inline-block;
   padding-right: 3px;
   vertical-align: middle;
   color: #31b2b6;
}
*/
.text ul li:before {    
    font-family: 'FontAwesome';
    content: '\f0a9';
    margin:0 5px 0 -15px;
    color: #FFF;
}
.text ul li { list-style:none; }

img.zoom:hover {animation:scale 3s ease-in-out; }
.ref_ .item img:hover{ animation:scale 3s ease-in-out;}
/* personeel */
.grid-sizer,
.grid-item { width: 33%; }
/* 2 columns */
.grid-item--width2 { width: 66%; }

@keyframes scale {
        0% {
            transform: scale(1.0);
            -webkit-transform: scale(1.0);
        }
        50% {
            transform: scale(1.1);
            -webkit-transform: scale(1.1);
        }
        100% {
            transform: scale(1.0);
            -webkit-transform: scale(1.0);
        }
    }
.centercenter { object-position: 50% 50%;}
.image-fit{
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:
    50% 50%;
} 



img.full_img { position:absolute; top:0px; width:100%; z-index:0;}
img.scale_img { animation:scale 15s linear infinite; }

.img_div { width:calc(49% - 10px); margin-right:10px; display:inline-block; }
img.img_hover { transition:opacity 0.5s ease-in-out;  margin-bottom:0px; max-width:100%;}
img.img_hover:hover { cursor:pointer; opacity:0.6}

div.inner-h1   { margin:0px auto; text-align:left; padding:0px ;  }
 div.inner-h1 h1  {text-align:left; display:table-cell; font-size:20px; line-height:35px; font-weight:normal; padding:0px 4px; color:#31b2b6; text-transform: uppercase; letter-spacing:8px; }
 div.line               { min-height:30px; width:100%; margin:20px 0px; }
 div.intro              { margin-bottom:50px; }

input.true						{ border:1px solid #0F0; }
 input.false					{ border:1px solid #F00; }
 select.true					{ border:1px solid #0F0; background-color:#9bffb5!important; }
 select.false					{ border:1px solid #F00; background-color:#ff9b9b!important; }
 textarea.true					{ border:1px solid #0F0; }
 textarea.false					{ border:1px solid #F00; }

/* Popup */
 #backgroundPopup			{ display:none; position:fixed; _position:absolute; height:100%; width:100%; top:0; left:0; background:#ffffff; z-index:100000; }
 #popupContact				{ display:none; position:fixed; _position:absolute; width:calc(600px - 48px); background:#FFFFFF; color:#000; border:4px solid #31b2b6; z-index:100001; text-align:left; padding:15px; font-size:17px; }
 #popupContact h1			{ font:300 2em 'Neo Sans',Arial,Helvetica;margin-bottom: 20px 0px 10px 0px; color:#31b2b6; letter-spacing:2px; }
 #popupContact h2			{ font:300 1.7em 'Neo Sans',Arial,Helvetica; font-weight:normal; color:#000; font-weight:bold; text-align:center;}
 #popupContact h3			{ font:300 1.2em 'Neo Sans',Arial,Helvetica;margin:14px 0 10px 0; color:#31b2b6; }
 #popupContact img          { max-width:100%;}	
 #popupContactClose			{ font-size:12px; line-height:14px; right:4px; top:4px; position:absolute; color:#31b2b6; font-weight:700; display:block; cursor:pointer; }

div.block_blue { background-color: #c2c5ce; padding:20px; max-width:calc(100% - 40px); }
div.block_blue:hover { background-color: #9ca0ae; cursor: pointer; }

div#slider { position:relative!important; }
/*------------------------------------*\
    $CAROUSELS
\*------------------------------------*/

.hero-carousel, .hero-carousel .item {
  height: 200px; }
  @media (min-width: 768px) and (max-width: 991px) {
    .hero-carousel, .hero-carousel .item {
      height: 600px; } }
  @media (min-width: 992px) {
    .hero-carousel, .hero-carousel .item {
      height: 600px; } }

body.boxed .hero-carousel .flex-direction-nav .flex-prev {
  left: 0; }
body.boxed .hero-carousel .flex-direction-nav .flex-next {
  right: 0; }
.height_min {height: 170px;}
.hero-carousel {
  position: relative;
  min-height: 170px;
  top: 0px;
  margin-bottom: 0px;
  margin-top:0px;
  
   }
   .hero-carousel .item {
    display: none;    
    position:relative;
    width:100%;
    left:0px;
    padding-top: 150px; }
    
   .container2 {min-height: 370px; position: relative; text-align:center;}
   @media (min-width: 992px) {
  .hero-carousel .item {
    display: none;    
    position:relative;
    width:100%;
    left:0px;
    padding-top: 91px; }
    }
  .hero-carousel .slides {
    margin: 0;
    margin-top: 0px;
    padding: 0;
    overflow: hidden;
    *zoom: 1; }
  .hero-carousel p {
    margin: 0; }
  .hero-carousel .big, .hero-carousel .carousel-blur .normal, .carousel-blur .hero-carousel .normal, .hero-carousel .carousel-image .normal, .carousel-image .hero-carousel .normal {
    font-family: "BebasNeue-Regular";
    font-weight: 500;
    margin: 0; }
  .hero-carousel .normal {
    font-family: "BebasNeue-Regular"; }
  .hero-carousel .flex-direction-nav {
    position: absolute;
    list-style: none;
    padding: 0;
    margin: 0;
    top: 0;
    left: 50%;
    height: 100%;
    width: 480px;
    margin-left: -240px;
    overflow: visible;
    display: none; }
    @media (min-width: 992px) and (max-width: 1199px) {
      .hero-carousel .flex-direction-nav {
        display: block;
        width: 992px;
        margin-left: -496px; } }
    @media (min-width: 1200px) {
      .hero-carousel .flex-direction-nav {
        display: block;
        width: 1200px;
        margin-left: -600px; } }
    .hero-carousel .flex-direction-nav .flex-next, .hero-carousel .flex-direction-nav .flex-prev {
      top: 50%;
      position: absolute;
      text-decoration: none;
      z-index: 999; }
  .hero-carousel .flex-control-paging {
    position: absolute;
    padding: 0;
    margin: 0;
    left: 50%;
    width: 60%;
    margin-left: -30%;
    text-align: center;
    list-style: none;
    z-index: 999; }
    .hero-carousel .flex-control-paging li {
      display: inline-block;
      margin: 2px; }
  .hero-carousel:before {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -15px;
    margin-left: -15px;
    font-size: 30px;
    line-height: 30px;
    text-align: center;
    vertical-align: middle;
    display: inline-block;
    color: white;
    -moz-animation: spin 4s infinite linear;
    -o-animation: spin 4s infinite linear;
    -webkit-animation: spin 4s infinite linear;
    animation: spin 4s infinite linear;
    font-family: FontAwesome;
    font-weight: normal;
    font-style: normal;
    text-decoration: inherit;
    -webkit-font-smoothing: antialiased;
    *margin-right: .3em;
    content: "\f110";
    -webkit-transition: opacity 300ms;
    -moz-transition: opacity 300ms;
    -o-transition: opacity 300ms;
    transition: opacity 300ms; }
  .hero-carousel.fade-loading:before {
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
    opacity: 0; }

.lt-ie9 .hero-carousel.fade-loading:before {
  display: none; }

.carousel-blur .item {
  text-align: center; 
  }
.carousel-blur .big, .carousel-blur .normal {
  color: white;
  margin-top: 34px;
  font-size: 30px;
  line-height: 40px; }
  @media (min-width: 768px) and (max-width: 991px) {
    .carousel-blur .big, .carousel-blur .normal {
      margin-top: 52px;
      font-size: 48px;
      line-height: 60px; } }
  @media (min-width: 992px) {
    .carousel-blur .big, .carousel-blur .normal {
      margin-top: 50px;
      font-size: 50px;
      line-height: 65px; } }
.carousel-blur .normal {
  font-weight: 300;
  margin: 0;
  margin-top: 27px;
  font-size: 18px;
  line-height: 22px; }
  @media (min-width: 768px) and (max-width: 991px) {
    .carousel-blur .normal {
      margin-top: 36px;
      font-size: 24px;
      line-height: 30px; } }
  @media (min-width: 992px) {
    .carousel-blur .normal {
      margin-top: 45px;
      font-size: 30px;
      line-height: 37px; } }
.carousel-blur .btn.btn-lg {
  margin-top: 50px;
  margin-bottom: 95px;
  font-size: 20px;
  padding: 12px 40px;
  font-weight: 700;
  text-transform: uppercase;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.4); }
  @media (min-width: 768px) {
    .carousel-blur .btn.btn-lg {
      margin-top: 50px;
      margin-bottom: 95px; } }

.hero-carousel.carousel-blur-arrows:hover .flex-direction-nav .flex-next, .hero-carousel.carousel-blur-arrows:hover .flex-direction-nav .flex-prev {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  opacity: 1; }

.carousel-blur-arrows .flex-direction-nav .flex-next, .carousel-blur-arrows .flex-direction-nav .flex-prev {
  margin-top: 25px;
  color: white;
  border: 2px solid white;
  text-align: center;
  vertical-align: middle;
  line-height: 40px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=15);
  opacity: 0.15;
  -webkit-transition: opacity 300ms;
  -moz-transition: opacity 300ms;
  -o-transition: opacity 300ms;
  transition: opacity 300ms; }
  .carousel-blur-arrows .flex-direction-nav .flex-next:before, .carousel-blur-arrows .flex-direction-nav .flex-prev:before {
    font-family: FontAwesome;
    font-weight: normal;
    font-style: normal;
    text-decoration: inherit;
    -webkit-font-smoothing: antialiased;
    *margin-right: .3em;
    content: "\f054";
    position: relative;
    top: -1px;
    font-size: 20px; }
.carousel-blur-arrows .flex-direction-nav .flex-prev {
  left: -30px; }
  @media (min-width: 992px) and (max-width: 1199px) {
    .carousel-blur-arrows .flex-direction-nav .flex-prev {
      left: 0px; } }
  .carousel-blur-arrows .flex-direction-nav .flex-prev:before {
    content: "\f053";
    margin-left: -2px; }
.carousel-blur-arrows .flex-direction-nav .flex-next {
  right: -30px; }
  @media (min-width: 992px) and (max-width: 1199px) {
    .carousel-blur-arrows .flex-direction-nav .flex-next {
      right: 0px; } }
  .carousel-blur-arrows .flex-direction-nav .flex-next:before {
    content: "\f054";
    margin-right: -2px; }

.carousel-blur-pagination .flex-control-paging {
  bottom: 18px;
  height: 20px; }
  .carousel-blur-pagination .flex-control-paging a {
    display: inline-block;
    cursor: pointer;
    color: transparent;
    position: relative;
    background-color: transparent;
    border: 2px solid transparent;
    text-indent: -9999px;
    width: 18px;
    height: 18px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%; }
    .carousel-blur-pagination .flex-control-paging a:before {
      content: '';
      text-indent: -9999px;
      display: block;
      text-indent: -9999px;
      position: absolute;
      top: 50%;
      left: 50%;
      margin-left: -3px;
      margin-top: -3px;
      background-color: white;
      width: 6px;
      height: 6px;
      -webkit-border-radius: 50%;
      -moz-border-radius: 50%;
      border-radius: 50%; }
    .carousel-blur-pagination .flex-control-paging a:hover, .carousel-blur-pagination .flex-control-paging a.flex-active {
      border-color: white; }

.carousel-contrast .big, .carousel-contrast .carousel-blur .normal, .carousel-blur .carousel-contrast .normal, .carousel-contrast .carousel-image .normal, .carousel-image .carousel-contrast .normal {
  color: white;
  margin-top: 50px;
  margin-bottom: 10px;
  font-size: 28px;
  line-height: 35px; }
  @media (min-width: 768px) and (max-width: 991px) {
    .carousel-contrast .big, .carousel-contrast .carousel-blur .normal, .carousel-blur .carousel-contrast .normal, .carousel-contrast .carousel-image .normal, .carousel-image .carousel-contrast .normal {
      margin-top: 68px;
      font-size: 38px;
      line-height: 47px; } }
  @media (min-width: 992px) {
    .carousel-contrast .big, .carousel-contrast .carousel-blur .normal, .carousel-blur .carousel-contrast .normal, .carousel-contrast .carousel-image .normal, .carousel-image .carousel-contrast .normal {
      margin-top: 85px;
      font-size: 48px;
      line-height: 60px; } }
  .carousel-contrast .big span, .carousel-contrast .carousel-blur .normal span, .carousel-blur .carousel-contrast .normal span, .carousel-contrast .carousel-image .normal span, .carousel-image .carousel-contrast .normal span {
    padding: 15px 30px;
    display: inline-block;
    background-color: black;
    background-color: rgba(0, 0, 0, 0.6); }
.carousel-contrast .normal {
  color: #FFF;
  font-family: "BebasNeue-Regular";
  font-weight: 300;
  margin: 0;
  padding: 15px 30px;
  display: inline-block;
  font-size: 18px;
  line-height: 22px;
  background-color: black;
  background-color: rgba(0, 0, 0, 0.6); }
  @media (min-width: 768px) and (max-width: 991px) {
    .carousel-contrast .normal {
      font-size: 20px;
      line-height: 30px; } }
  @media (min-width: 992px) {
    .carousel-contrast .normal {
      font-size: 24px;
      line-height: 37px; } }
.carousel-contrast .btn.btn-lg {
  margin-top: 30px;
  margin-bottom: 95px;
  font-size: 22px;
  padding: 12px 40px;
  font-weight: 700;
  text-transform: uppercase;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.4); }

.hero-carousel.carousel-contrast-arrows:hover .flex-direction-nav .flex-next, .hero-carousel.carousel-contrast-arrows:hover .flex-direction-nav .flex-prev {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  opacity: 1; }

.carousel-contrast-arrows .flex-direction-nav .flex-next, .carousel-contrast-arrows .flex-direction-nav .flex-prev {
  margin-top: 32px;
  color: white;
  line-height: 26px;
  width: 26px;
  height: 26px;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=25);
  opacity: 0.25;
  -webkit-transition: opacity 300ms;
  -moz-transition: opacity 300ms;
  -o-transition: opacity 300ms;
  transition: opacity 300ms; }
  .carousel-contrast-arrows .flex-direction-nav .flex-next:before, .carousel-contrast-arrows .flex-direction-nav .flex-prev:before {
    font-family: FontAwesome;
    font-weight: normal;
    font-style: normal;
    text-decoration: inherit;
    -webkit-font-smoothing: antialiased;
    *margin-right: .3em;
    content: "\f054";
    font-size: 26px; }
.carousel-contrast-arrows .flex-direction-nav .flex-prev {
  left: -30px; }
  @media (min-width: 992px) and (max-width: 1199px) {
    .carousel-contrast-arrows .flex-direction-nav .flex-prev {
      left: 0px; } }
  .carousel-contrast-arrows .flex-direction-nav .flex-prev:before {
    content: "\f053"; }
.carousel-contrast-arrows .flex-direction-nav .flex-next {
  right: -30px; }
  @media (min-width: 992px) and (max-width: 1199px) {
    .carousel-contrast-arrows .flex-direction-nav .flex-next {
      right: 0px; } }
  .carousel-contrast-arrows .flex-direction-nav .flex-next:before {
    content: "\f054"; }

.carousel-contrast-pagination .flex-control-paging {
  bottom: -9px;
  height: 20px; }
  .carousel-contrast-pagination .flex-control-paging a {
    display: inline-block;
    cursor: pointer;
    text-indent: -9999px;
    background-color: #9ca4af;
    border: 4px solid white;
    width: 18px;
    height: 18px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%; }
    .carousel-contrast-pagination .flex-control-paging a:hover, .carousel-contrast-pagination .flex-control-paging a.flex-active {
      background-color: #ff0101; }

.carousel-image .big, .carousel-image .normal {
  color: white;
  margin-top: 0px;
  font-size: 18px;
  line-height: 25px;
  text-shadow: #041c47 2px 2px 3px;
   }
  @media (min-width: 768px) and (max-width: 991px) {
    .carousel-image .big, .carousel-image .normal {
      margin-top: 72px;
      font-size: 38px;
      line-height: 60px; } }
  @media (min-width: 992px) {
    .carousel-image .big, .carousel-image .normal {
      margin-top: 90px;
      font-size: 50px;
      line-height: 75px; } }
.carousel-image .normal {
  font-weight: 300;
  margin: 0;
  margin-top: 24px;
  font-size: 18px;
  line-height: 22px; }
  @media (min-width: 768px) and (max-width: 991px) {
    .carousel-image .normal {
      margin-top: 32px;
      font-size: 24px;
      line-height: 30px; } }
  @media (min-width: 992px) {
    .carousel-image .normal {
      margin-top: 40px;
      font-size: 30px;
      line-height: 37px; } }
.carousel-image .btn.btn-lg {
  margin-top: 50px;
  margin-bottom: 95px;
  font-size: 22px;
  padding: 12px 40px;
  font-weight: 500;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.4); }

.hero-carousel.carousel-image-arrows:hover .flex-direction-nav .flex-next, .hero-carousel.carousel-image-arrows:hover .flex-direction-nav .flex-prev {
  background-color: white;
  background-color: rgba(255, 255, 255, 0.2); }

.lt-ie9 .carousel-image-arrows .flex-direction-nav .flex-next, .lt-ie9 .carousel-image-arrows .flex-direction-nav .flex-prev {
  background-color: transparent;
  border: 1px solid white; }
.lt-ie9 .carousel-image-arrows .flex-direction-nav .flex-next {
  border-right: none; }
.lt-ie9 .carousel-image-arrows .flex-direction-nav .flex-prev {
  border-left: none; }

.carousel-image-arrows .flex-direction-nav {
  top: 0;
  left: 0;
  display: none;
  width: 100%;
  height: 100%; }
  @media (min-width: 992px) and (max-width: 1199px) {
    .carousel-image-arrows .flex-direction-nav {
      display: block;
      margin-left: 0;
      width: 100%;
      height: 100%; } }
  @media (min-width: 1200px) {
    .carousel-image-arrows .flex-direction-nav {
      display: block;
      margin-left: 0;
      width: 100%;
      height: 100%; } }
  .carousel-image-arrows .flex-direction-nav .flex-next, .carousel-image-arrows .flex-direction-nav .flex-prev {
    margin-top: 20px;
    color: white;
    text-align: center;
    vertical-align: middle;
    line-height: 50px;
    background-color: white;
    background-color: rgba(255, 255, 255, 0.1);
    width: 50px;
    height: 50px;
    -webkit-transition: background-color 300ms;
    -moz-transition: background-color 300ms;
    -o-transition: background-color 300ms;
    transition: background-color 300ms; }
    .carousel-image-arrows .flex-direction-nav .flex-next:before, .carousel-image-arrows .flex-direction-nav .flex-prev:before {
      font-family: FontAwesome;
      font-weight: normal;
      font-style: normal;
      text-decoration: inherit;
      -webkit-font-smoothing: antialiased;
      *margin-right: .3em;
      content: "\f054";
      position: relative;
      font-size: 20px; }
  .carousel-image-arrows .flex-direction-nav .flex-prev {
    left: 0;
    -moz-border-radius-topright: 5px;
    -webkit-border-top-right-radius: 5px;
    border-top-right-radius: 5px;
    -moz-border-radius-bottomright: 5px;
    -webkit-border-bottom-right-radius: 5px;
    border-bottom-right-radius: 5px; }
    .carousel-image-arrows .flex-direction-nav .flex-prev:before {
      content: "\f053";
      margin-left: -2px; }
  .carousel-image-arrows .flex-direction-nav .flex-next {
    right: 0;
    -moz-border-radius-topleft: 5px;
    -webkit-border-top-left-radius: 5px;
    border-top-left-radius: 5px;
    -moz-border-radius-bottomleft: 5px;
    -webkit-border-bottom-left-radius: 5px;
    border-bottom-left-radius: 5px; }
    .carousel-image-arrows .flex-direction-nav .flex-next:before {
      content: "\f054";
      margin-right: -2px; }

.carousel-image-pagination .flex-control-paging {
  bottom: 30px;
  height: 12px; }
  .carousel-image-pagination .flex-control-paging li {
    margin: 0 4px;
    width: 12px;
    height: 12px; }
  .carousel-image-pagination .flex-control-paging a {
    display: inline-block;
    cursor: pointer;
    text-indent: -9999px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    width: 12px;
    height: 12px;
    background-color: white;
    background-color: rgba(255, 255, 255, 0.8); }
    .carousel-image-pagination .flex-control-paging a:hover, .carousel-image-pagination .flex-control-paging a.flex-active {
      background-color: #31b2b6;
    }

.slicknav_btn { position: relative; display: block; vertical-align: middle; float: right; padding: 0.438em 0.625em 0.438em 0.625em; line-height: 1.125em; cursor: pointer; z-index: 10000; }
.slicknav_menu  .slicknav_menutxt { display: block; line-height: 1.188em; float: left; }
.slicknav_menu .slicknav_icon { float: left; margin: 0.188em 0 0 0.438em; }
.slicknav_menu .slicknav_no-text { margin: 0 }
.slicknav_menu .slicknav_icon-bar { display: block; width: 1.125em; height: 0.125em; -webkit-border-radius: 1px; -moz-border-radius: 1px; border-radius: 1px; -webkit-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25); -moz-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25); box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25); }
.slicknav_btn .slicknav_icon-bar + .slicknav_icon-bar { margin-top: 0.188em }
.slicknav_nav { clear: both }
.slicknav_nav ul,
.slicknav_nav li { display: block }
.slicknav_nav .slicknav_arrow { font-size: 0.8em; margin: 0 0 0 0.2em; }
.slicknav_nav .slicknav_item { cursor: pointer; }
.slicknav_nav .slicknav_row { display: block; }
.slicknav_nav a { display: block }
.slicknav_nav .slicknav_item a,
.slicknav_nav .slicknav_parent-link a { display: inline }
.slicknav_menu:before,
.slicknav_menu:after { content: " "; display: table; }
.slicknav_menu:after { clear: both }
/* IE6/7 support */
.slicknav_menu { *zoom: 1 }

/* 
    User Default Style
    Change the following styles to modify the appearance of the menu.
*/

.slicknav_menu {
    font-size:16px;
}
/* Button */
.slicknav_btn {
    margin: 5px 5px 6px;
    text-decoration:none;   
    border-radius: 0px;  
    background-color: #31b2b6;
}
/* Button Text */
.slicknav_menu  .slicknav_menutxt {
    color: #FFF;
    font-size:20px;
    font-weight: bold;
}
/* Button Lines */
.slicknav_menu .slicknav_icon-bar {
  background-color: #FFF;
}
.slicknav_menu {
    background:#31b2b6;
    padding:5px;
}
.slicknav_nav {
    background-color:#31b2b6;
    color:#000;
    margin:0;
    padding:0;
    font-size:0.875em;
}
.slicknav_nav, .slicknav_nav ul {
    list-style: none;
    overflow:hidden;
}
.slicknav_nav ul {
    padding:0;
    margin:0 0 0 5px;
}
.slicknav_nav .slicknav_row {
    padding:5px 10px;
    margin:2px 5px;
}
.slicknav_nav a{
    padding:5px 5px;
    margin:2px 5px;
    font-size:20px;
    text-decoration:none;
    color:#FFF;
}
.slicknav_nav .slicknav_item a,
.slicknav_nav .slicknav_parent-link a {
    padding:0;
    margin:0;
}
.slicknav_nav .slicknav_row:hover {
    
    border-radius: 0px;
    background:#a2b5bc;
    color:#FFF;
}
.slicknav_nav a:hover{
    
    border-radius: 0px;
    background:#a2b5bc;
    color:#FFF;
}
.slicknav_nav .slicknav_txtnode {
     margin-left:15px;   
}
.slicknav_menu {
	display:none;
}

.parallax {
    /* The image used */
    /* Full height */
    height: 400px; 

    /* Create the parallax scrolling effect */
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover!important;
}
.Main__Container-sc-1n4ud0o-0 a:last-child { display:none!important}

.black { color:#000!important; }
.gold { color:#31b2b6!important; }
.gold_over:hover { color:#31b2b6!important; }
.blue {color:#31b2b6!important;}
.blue_over:hover {color:#31b2b6!important;}

.owl-dot { border:none!important; background:transparent; }
.owl-dot span { background:#b0945c!important }
.active span { background:#0c3d64!important }

.img_33 { width:calc(33% - 2px); border:1px solid #302977;}
.img_33:hover { opacity:0.7; border:1px solid #000; cursor:pointer; }
.text-right { text-align: right;}
.padding_info { width:100%; padding:10px 15px 10px 0px!important; }
.gototop{position: fixed;bottom: 20px; right: 20px;background: rgba(0,0,0,0.5);padding: 10px;color: #fff; z-index:1000;}
.gototop i{line-height: 0.5em;}
.ui-datepicker table th span { color:#000!important}

.contact_div input,
.contact_div textarea { width:500px;}

.recensie_bck { background:#6ec1e4; color:#FFF; }
.recensie_bck h1 { color:#FFF; }

.eten_tabel { width:500px; }
.eten_tabel tr:hover { background:#c2c2c2 }

.j-loading {
    border: 4px solid #31b2b6!important;
}

.mobile-only { display:none!important; margin:0px; padding:0px; }
iframe { max-width:100%!important;}

@media (max-width: 1600px){
    #ul_menu li a { font-family: 'BebasNeue-Regular',Arial,Helvetica!important; font-size:27px; font-weight:normal; padding:3px; text-decoration:none; }

    
}


@media (max-width: 1440px){
    #ul_menu li a { font-family: 'BebasNeue-Regular',Arial,Helvetica!important; font-size:22px; font-weight:normal; padding:3px; text-decoration:none; }
    #div_logo { width:auto;}
    #diensten li { margin:5px; border-radius:5px; padding:15px; background-color: #003252; text-align:center; transition:background 0.5s ease-in-out; color:#FFF; width:calc(33% - 10px); float:left; list-style:none;}
    
    
}



@media (max-width: 1200px) {
    #ul_menu li a { font-family: 'BebasNeue-Regular',Arial,Helvetica!important; font-size:20px; font-weight:normal; padding:3px; text-decoration:none; }
     .info {padding:20px 5px}
}

@media (max-width: 1024px) {
    .js #menu { display:none; } 	
	.js .slicknav_menu { display:block; }
    #header span {margin:0px 40px;}
	body {	color:#000; height:100%; background-size:cover;  line-height: 35px;  -webkit-font-smoothing:antialiased; }
    .float-left { width:100%; text-align:center; margin-bottom:10px;}
    .float-right { width:100%; text-align:center;}
    .img_33 { width:50%;}
    #header { font-size: 15px; height:auto; }
    .space { margin: 0em 0px 4em 0px!important;}
    .mobile_hspace { padding-top:20px;}
    div#top { height:auto; position:relative; background:#FFF; overflow:auto; padding-top:0px;}
    .abs_btm {  position:relative!important; width:100%; padding:0px!important; margin:0px!important; overflow:auto; }
    #div_logo { margin-top:10px;}
    #info_contact { width:100%; text-align:center; margin-top:20px;  margin-bottom:10px;}
    .mob_link_header { font-size:24px; }
    .spacer { margin:0px 5px;}
    .full_img { position:absolute; right:0px!important;}
    
    
    
    input,
    select,
    textarea { max-width:100%!important; }
    .mob_img_right { float:right; text-align:right}
    .mob_left { text-align:left!important;}
    
    h1{font:300 28px 'BebasNeue-Regular',Arial,Helvetica; padding-top:0px; margin: 15px 0px 15px 0px; font-weight:normal;  color:#31b2b6; letter-spacing:2px;  }
    h2{font:300 23px 'BebasNeue-Regular',Arial,Helvetica;  font-weight:normal;  letter-spacing:2px; margin-bottom:20px; }
    h3{font:300 18px 'BebasNeue-Regular',Arial,Helvetica;margin:14px 0 10px 0; font-weight:normal; color:#31b2b6; }
    h4{font:300 1.5em 'BebasNeue-Regular',Arial,Helvetica;margin-bottom: 1em;}
    h4 i{margin-right: 0.5em;}
    h5.binnenkijken {font:16px 'BebasNeue-Regular',Arial,Helvetica;  padding:15px 0px; margin: 0px; font-weight:normal; font-style:italic!important;  color:#31b2b6; letter-spacing:1px;  }
    
    .logo { padding:10px;}
    .full { position:relative; display:block; overflow:hidden; padding-top:0px; }
    .mobile_full { padding-top:0px; width:100%; padding-left:0px; }
    .mobile_phone { display:block; }
    .no-mobile {display:none!important;}
    .row { padding-bottom:0px;}
    img.img_hover { transition:opacity 0.5s ease-in-out; margin-top:0px; margin-bottom:80px;}
    #home_a { display:none; }
   table td { display:block; }
   
   .eten_tabel { width:100%; }
    .eten_tabel tr td { display:inline; padding:3px;}
    .eten_tabel tr td { text-align:right!important }
    
    figure img { max-width:100%!important; margin:0px 0px 20px 0px; border:1px solid #000; }
    
    #footer { padding-top:0px;}
    
    .contact_div input,
    .contact_div textarea { width:95%;}
    
    .slide_txt { width:100%; text-align:center; }
    .slide_txt_cnt2 {  font-size: 1.1em; color:#FFF; line-height:1.3em; padding:10px; text-shadow: 0px 0px 5px #000; font-family: 'BebasNeue-Regular';}
    .slide_txt_cnt {  font-size: 0.8em; color:#FFF; line-height:1em; padding:10px; font-family: 'BebasNeue-Regular';}
    .slide_txt_cnt a { border:1px solid #b3d0b0; border-radius:2px; background-color:#b3d0b0; padding:7px 10px; color:#FFF;}
    .slide_txt_cnt a:hover { background-color:#31b2b6;}
    .next_btn { top:50%; right:5px; padding:0px; font-size:10px!important; }
    .prev_btn { top:50%; left:5px;  padding:0px; font-size:10px!important;}
    .owl-next, .owl-prev { padding:10px!important;}
    .fa-3x { font-size:1em;}
    
    .mobile_center { text-align:center; width:100%; }
   
    .padding_info { padding:10px!important;}
   
    .white { color:#FFF!important} 
    .mob_center { text-align:center!important }
    .mob_left { text-align:left!important }
    .pad_mob_lr { padding-left: 10px!important; padding-right: 10px!important;}
    
    .item { padding-top:0px;}
    .gototop { display:none; }
    .no-mobile { display:none; }
    .mobile-only { display:block!important; visibility:visible!important; }
    
    .delay-one,
    .delay-one-half,
    .delay-two{-webkit-animation-delay:0s;animation-delay:0s}
    img { max-width:100%}
    .owl-nav { display:none!important;}
    #backgroundPopup			{ display:none!important; }
    #popupContact  { max-width:calc(100% - 5%); position:absolute; }
    iframe {max-width:100%}
    
    #popup_inside { width: 100%; }
    
    .left_box { min-height:10px!important; height:auto!important}
    
    .menu_item { display:none; }
    
    .btn_top { background-color:#fcc429; position:absolute; font-size: 15px; width:120px; height:50px; border:2px solid #FFF; border-right:none; z-index:10000; right:0px; top:30px; padding:15px 5px 10px 15px; border-top-left-radius:25px 50%; border-bottom-left-radius:25px 50% ; color:#000; font-family: 'BebasNeue-Regular'; font-style:italic; }
    .btn_top:hover { background-color:#fde6a8; cursor:pointer; }
    .link_txt { font-size: 15px; margin-top: 70px; padding-top:6px; }
    .link_txt2 { font-size: 15px; margin-top: 140px; padding-top:6px; }
    .link_txt2 a {color:#000;}
    .link_txt2 a:hover {color:#31b2b6; text-decoration:none; }
    
    
    .float_img_right { float:none; width:calc(100vw - 30px)!important; display:block; padding-bottom:30px; text-align:left!important; }
    
    .delay-half,
    .delay-one,
    .delay-one-half,
    .delay-two,
    .delay-two-half{-webkit-animation-delay:0s;animation-delay:0s}
    
    .standard_btn { max-width:100%}
    .standard_btn,
    .btn { background-color:#31b2b6; border:#31b2b6 1px solid;  text-transform:uppercase; color:#31b2b6; border-radius:4px; font-family: 'BebasNeue-Regular'; font-size:18px; }

    
    .pics_fotoboek li				{ float:left; width:calc(100% - 30px); color:#FFF; margin:0px 15px 15px 0px;}
    .padding_btm_80 {padding-bottom:20px!important;}
    .padding_btm_60 {padding-bottom:20px!important;}
    .padding_btm_40 {padding-bottom:20px!important;}
    .padding_btm_20 {padding-bottom:20px!important;}
    .padding_btm_10 {padding-bottom:10px!important;}
    .padding_btm_5 {padding-bottom:5px!important;}
    
    .padding_top_80 {padding-top:20px!important;}
    .padding_top_60 {padding-top:20px!important;}
    .padding_top_50 {padding-top:20px!important;}
    .padding_top_40 {padding-top:20px!important;}
    .padding_top_25 {padding-top:20px!important;}
    .padding_top_20 {padding-top:20px!important;}
    .padding_top_10 {padding-top:10px!important;}
    
    .margin_btm_10 {margin-bottom:10px!important;}
    .margin_btm_20 {margin-bottom:20px!important;}
    .margin_btm_30 {margin-bottom:20px!important;}
    .margin_btm_40 {margin-bottom:20px!important;}
    .margin_btm_50 {margin-bottom:20px!important;}
    .margin_btm_60 {margin-bottom:20px!important;}
    .margin_btm_70 {margin-bottom:20px!important;}
    .margin_btm_80 {margin-bottom:20px!important;}
    
    .margin_top_10 {margin-top:10px!important;}
    .margin_top_20 {margin-top:20px!important;}
    .margin_top_30 {margin-top:20px!important;}
    .margin_top_40 {margin-top:20px!important;}
    .margin_top_50 {margin-top:20px!important;}
    .margin_top_80 {margin-top:20px!important;}
    
    .margin_5_lr { margin-left:10px!important; margin-left:10px!important;}
    .margin_10_left { margin-left:10px!important;}
    .margin_10_right { margin-right:10px!important;}
    .margin_right_10 { margin-right:10px;}
    .padding_l_30 { padding-left:10px; }
    
    .bck_white { background-color:#FFF; padding:10px; }
    
    .padding_60 {padding:10px!important;}
    .padding_50 {padding:10px!important;}
    .padding_40 {padding:10px!important;}
    .padding_20 {padding:10px!important;}
    .padding_10 {padding:10px!important;}
    .padding_5 {padding:5px!important;}
    
    .mob_line_height { height:40px!important; display:block;}
     
     
    .padding_mob_top_20 { padding-top:20px; }
    .padding_mob_top_40 { padding-top:40px; }
    
    .padding_mob_btm_20 { padding-bottom:20px; }
    .padding_mob_btm_40 { padding-bottom:40px; }    
    .no_pad__mob_lr {padding-left:0px!important; padding-right:0px!important}
    
    #callbook a { font-size:15px!important;}
    [class^=callbook-icona-],[class*=" callbook-icona-"]{font-family:'FontAwesome';speak:none;font-style:normal;font-weight:400;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.callbook-icona-calendario:before{content:"\f073"}.callbook-icona-busta-lettera:before{content:"\f003"}.callbook-icona-telefono:before{content:"\f095"}.callbook-icona-gallery:before{content:"\e90d"}.callbook-icona-offerte:before{content:"\e936"}.callbook-icona-acquista:before{content:"\e93a"}.callbook-icona-mappa-localita:before{content:"\e947"}.callbook-icona-info:before{content:"\ea0c"}#callbook{background:none repeat scroll 0 0 #fff;bottom:0;height:48px;left:0;position:fixed;display:none;right:0;z-index:100;-webkit-box-shadow:0 2px 15px 0 #333;-moz-box-shadow:0 2px 15px 0 #333;box-shadow:0 2px 15px 0 #333}#callbook>a{z-index:300;float:left;height:48px;line-height:50px;text-align:center;width:50%;text-decoration:none;font-size:1.2em;text-transform:capitalize}.actioncall{box-sizing:border-box;padding-right:20px}.actionbook{box-sizing:border-box;padding-left:20px}.callbook_logo{background-size:100%;bottom:-24px;height:72px!important;left:50%;margin-left:-23px;position:absolute;width:72px!important;z-index:2}#callbook>a>span.callbook-align{text-transform:uppercase}.callbook_under{background:#fff;bottom:-15px;height:78px;left:50%;margin-left:-39px;position:absolute;width:78px;border-radius:5000px;-webkit-border-radius:5000px;z-index:1;-webkit-box-shadow:0 2px 15px 0 #333;-moz-box-shadow:0 2px 15px 0 #333;box-shadow:0 2px 15px 0 #333}.callbook-icona-telefono,.callbook-icona-gallery,.callbook-icona-offerte,.callbook-icona-acquista,.callbook-icona-mappa-localit,.callbook-icona-info,.callbook-icona-calendario{font-size:25px}.callbook-icona-busta-lettera{font-size:46px!important;vertical-align:middle;padding-right:5px}.cb_powered a{display:none}@media only screen and (min-device-width:320px) and (max-device-width:736px){#callbook{display:inline!important}.cb_powered a{bottom:0;position:fixed;z-index:300;font-size:10px;display:inline!important;background-color:#fff;width:100%;text-align:center;height:20px;padding-top:5px;color:#000}.cb_powered a:hover{color:#ec7a5c!important;text-decoration:none}.actioncall{box-sizing:border-box;padding-right:35px}.actionbook{box-sizing:border-box;padding-left:38px}m:0;position:fixed;z-index:300;font-size:10px;display:inline!important;background-color:#fff;width:100%;text-align:center;height:20px;padding-top:5px;color:#000}.cb_powered a:hover{color:#ec7a5c!important;text-decoration:none}.actioncall{box-sizing:border-box;padding-right:35px}.actionbook{box-sizing:border-box;padding-left:38px}
}
@media (max-width: 990px) {
    #info_contact div { width:100%; text-align:center; margin-bottom:10px;}
}

@media (max-width: 400px) {    
    
}