/* Minification failed. Returning unminified contents.
(4739,9): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(4828,26): run-time error CSS1039: Token not allowed after unary operator: '-block-margin'
(4829,29): run-time error CSS1039: Token not allowed after unary operator: '-block-margin'
(4833,26): run-time error CSS1039: Token not allowed after unary operator: '-block-margin'
(4834,29): run-time error CSS1039: Token not allowed after unary operator: '-block-margin'
(4838,26): run-time error CSS1039: Token not allowed after unary operator: '-block-margin'
(4839,29): run-time error CSS1039: Token not allowed after unary operator: '-block-margin'
(4853,30): run-time error CSS1039: Token not allowed after unary operator: '-block-margin'
(5186,9): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(5275,30): run-time error CSS1039: Token not allowed after unary operator: '-block-margin'
(5276,33): run-time error CSS1039: Token not allowed after unary operator: '-block-margin'
(5280,26): run-time error CSS1039: Token not allowed after unary operator: '-block-margin'
(5281,29): run-time error CSS1039: Token not allowed after unary operator: '-block-margin'
(5285,26): run-time error CSS1039: Token not allowed after unary operator: '-block-margin'
(5286,29): run-time error CSS1039: Token not allowed after unary operator: '-block-margin'
(5300,34): run-time error CSS1039: Token not allowed after unary operator: '-block-margin'
(5624,9): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(5713,30): run-time error CSS1039: Token not allowed after unary operator: '-block-margin'
(5714,33): run-time error CSS1039: Token not allowed after unary operator: '-block-margin'
(5718,26): run-time error CSS1039: Token not allowed after unary operator: '-block-margin'
(5719,29): run-time error CSS1039: Token not allowed after unary operator: '-block-margin'
(5723,26): run-time error CSS1039: Token not allowed after unary operator: '-block-margin'
(5724,29): run-time error CSS1039: Token not allowed after unary operator: '-block-margin'
(5738,34): run-time error CSS1039: Token not allowed after unary operator: '-block-margin'
 */
@charset "UTF-8";

/*!
 * animate.css -http://daneden.me/animate
 * Version - 3.5.1
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2016 Daniel Eden
 */

.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.animated.infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

.animated.hinge {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
}

.animated.flipOutX,
.animated.flipOutY,
.animated.bounceIn,
.animated.bounceOut {
  -webkit-animation-duration: .75s;
  animation-duration: .75s;
}

@-webkit-keyframes bounce {
  from, 20%, 53%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
  }

  40%, 43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
  }

  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
  }

  90% {
    -webkit-transform: translate3d(0,-4px,0);
    transform: translate3d(0,-4px,0);
  }
}

@keyframes bounce {
  from, 20%, 53%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
  }

  40%, 43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
  }

  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
  }

  90% {
    -webkit-transform: translate3d(0,-4px,0);
    transform: translate3d(0,-4px,0);
  }
}

.bounce {
  -webkit-animation-name: bounce;
  animation-name: bounce;
  -webkit-transform-origin: center bottom;
  transform-origin: center bottom;
}

@-webkit-keyframes flash {
  from, 50%, to {
    opacity: 1;
  }

  25%, 75% {
    opacity: 0;
  }
}

@keyframes flash {
  from, 50%, to {
    opacity: 1;
  }

  25%, 75% {
    opacity: 0;
  }
}

.flash {
  -webkit-animation-name: flash;
  animation-name: flash;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-webkit-keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

.pulse {
  -webkit-animation-name: pulse;
  animation-name: pulse;
}

@-webkit-keyframes rubberBand {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }

  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }

  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }

  65% {
    -webkit-transform: scale3d(.95, 1.05, 1);
    transform: scale3d(.95, 1.05, 1);
  }

  75% {
    -webkit-transform: scale3d(1.05, .95, 1);
    transform: scale3d(1.05, .95, 1);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@keyframes rubberBand {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }

  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }

  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }

  65% {
    -webkit-transform: scale3d(.95, 1.05, 1);
    transform: scale3d(.95, 1.05, 1);
  }

  75% {
    -webkit-transform: scale3d(1.05, .95, 1);
    transform: scale3d(1.05, .95, 1);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

.rubberBand {
  -webkit-animation-name: rubberBand;
  animation-name: rubberBand;
}

@-webkit-keyframes shake {
  from, to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }

  20%, 40%, 60%, 80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}

@keyframes shake {
  from, to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }

  20%, 40%, 60%, 80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}

.shake {
  -webkit-animation-name: shake;
  animation-name: shake;
}

@-webkit-keyframes headShake {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  6.5% {
    -webkit-transform: translateX(-6px) rotateY(-9deg);
    transform: translateX(-6px) rotateY(-9deg);
  }

  18.5% {
    -webkit-transform: translateX(5px) rotateY(7deg);
    transform: translateX(5px) rotateY(7deg);
  }

  31.5% {
    -webkit-transform: translateX(-3px) rotateY(-5deg);
    transform: translateX(-3px) rotateY(-5deg);
  }

  43.5% {
    -webkit-transform: translateX(2px) rotateY(3deg);
    transform: translateX(2px) rotateY(3deg);
  }

  50% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes headShake {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  6.5% {
    -webkit-transform: translateX(-6px) rotateY(-9deg);
    transform: translateX(-6px) rotateY(-9deg);
  }

  18.5% {
    -webkit-transform: translateX(5px) rotateY(7deg);
    transform: translateX(5px) rotateY(7deg);
  }

  31.5% {
    -webkit-transform: translateX(-3px) rotateY(-5deg);
    transform: translateX(-3px) rotateY(-5deg);
  }

  43.5% {
    -webkit-transform: translateX(2px) rotateY(3deg);
    transform: translateX(2px) rotateY(3deg);
  }

  50% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

.headShake {
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-name: headShake;
  animation-name: headShake;
}

@-webkit-keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
  }

  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg);
  }

  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }

  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg);
  }

  to {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}

@keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
  }

  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg);
  }

  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }

  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg);
  }

  to {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}

.swing {
  -webkit-transform-origin: top center;
  transform-origin: top center;
  -webkit-animation-name: swing;
  animation-name: swing;
}

@-webkit-keyframes tada {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  10%, 20% {
    -webkit-transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
  }

  30%, 50%, 70%, 90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }

  40%, 60%, 80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@keyframes tada {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  10%, 20% {
    -webkit-transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
  }

  30%, 50%, 70%, 90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }

  40%, 60%, 80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

.tada {
  -webkit-animation-name: tada;
  animation-name: tada;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-webkit-keyframes wobble {
  from {
    -webkit-transform: none;
    transform: none;
  }

  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }

  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }

  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }

  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }

  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }

  to {
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes wobble {
  from {
    -webkit-transform: none;
    transform: none;
  }

  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }

  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }

  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }

  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }

  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }

  to {
    -webkit-transform: none;
    transform: none;
  }
}

.wobble {
  -webkit-animation-name: wobble;
  animation-name: wobble;
}

@-webkit-keyframes jello {
  from, 11.1%, to {
    -webkit-transform: none;
    transform: none;
  }

  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }

  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg);
  }

  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }

  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }

  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }

  77.7% {
    -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }

  88.8% {
    -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}

@keyframes jello {
  from, 11.1%, to {
    -webkit-transform: none;
    transform: none;
  }

  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }

  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg);
  }

  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }

  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }

  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }

  77.7% {
    -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }

  88.8% {
    -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}

.jello {
  -webkit-animation-name: jello;
  animation-name: jello;
  -webkit-transform-origin: center;
  transform-origin: center;
}

@-webkit-keyframes bounceIn {
  from, 20%, 40%, 60%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  0% {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3);
  }

  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }

  40% {
    -webkit-transform: scale3d(.9, .9, .9);
    transform: scale3d(.9, .9, .9);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }

  80% {
    -webkit-transform: scale3d(.97, .97, .97);
    transform: scale3d(.97, .97, .97);
  }

  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@keyframes bounceIn {
  from, 20%, 40%, 60%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  0% {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3);
  }

  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }

  40% {
    -webkit-transform: scale3d(.9, .9, .9);
    transform: scale3d(.9, .9, .9);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }

  80% {
    -webkit-transform: scale3d(.97, .97, .97);
    transform: scale3d(.97, .97, .97);
  }

  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

.bounceIn {
  -webkit-animation-name: bounceIn;
  animation-name: bounceIn;
}

@-webkit-keyframes bounceInDown {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0);
  }

  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }

  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0);
  }

  to {
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes bounceInDown {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0);
  }

  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }

  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0);
  }

  to {
    -webkit-transform: none;
    transform: none;
  }
}

.bounceInDown {
  -webkit-animation-name: bounceInDown;
  animation-name: bounceInDown;
}

@-webkit-keyframes bounceInLeft {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
    transform: translate3d(-3000px, 0, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0);
  }

  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }

  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0);
  }

  to {
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes bounceInLeft {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
    transform: translate3d(-3000px, 0, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0);
  }

  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }

  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0);
  }

  to {
    -webkit-transform: none;
    transform: none;
  }
}

.bounceInLeft {
  -webkit-animation-name: bounceInLeft;
  animation-name: bounceInLeft;
}

@-webkit-keyframes bounceInRight {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  from {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
    transform: translate3d(3000px, 0, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
    transform: translate3d(-25px, 0, 0);
  }

  75% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }

  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
    transform: translate3d(-5px, 0, 0);
  }

  to {
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes bounceInRight {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  from {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
    transform: translate3d(3000px, 0, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
    transform: translate3d(-25px, 0, 0);
  }

  75% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }

  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
    transform: translate3d(-5px, 0, 0);
  }

  to {
    -webkit-transform: none;
    transform: none;
  }
}

.bounceInRight {
  -webkit-animation-name: bounceInRight;
  animation-name: bounceInRight;
}

@-webkit-keyframes bounceInUp {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
    transform: translate3d(0, 3000px, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }

  75% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }

  90% {
    -webkit-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes bounceInUp {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
    transform: translate3d(0, 3000px, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }

  75% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }

  90% {
    -webkit-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.bounceInUp {
  -webkit-animation-name: bounceInUp;
  animation-name: bounceInUp;
}

@-webkit-keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(.9, .9, .9);
    transform: scale3d(.9, .9, .9);
  }

  50%, 55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }

  to {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3);
  }
}

@keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(.9, .9, .9);
    transform: scale3d(.9, .9, .9);
  }

  50%, 55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }

  to {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3);
  }
}

.bounceOut {
  -webkit-animation-name: bounceOut;
  animation-name: bounceOut;
}

@-webkit-keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }

  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}

@keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }

  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}

.bounceOutDown {
  -webkit-animation-name: bounceOutDown;
  animation-name: bounceOutDown;
}

@-webkit-keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0);
    transform: translate3d(20px, 0, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}

@keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0);
    transform: translate3d(20px, 0, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}

.bounceOutLeft {
  -webkit-animation-name: bounceOutLeft;
  animation-name: bounceOutLeft;
}

@-webkit-keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0);
    transform: translate3d(-20px, 0, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}

@keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0);
    transform: translate3d(-20px, 0, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}

.bounceOutRight {
  -webkit-animation-name: bounceOutRight;
  animation-name: bounceOutRight;
}

@-webkit-keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }

  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}

@keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }

  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}

.bounceOutUp {
  -webkit-animation-name: bounceOutUp;
  animation-name: bounceOutUp;
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

@-webkit-keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}

@-webkit-keyframes fadeInDownBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInDownBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.fadeInDownBig {
  -webkit-animation-name: fadeInDownBig;
  animation-name: fadeInDownBig;
}

@-webkit-keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}

@-webkit-keyframes fadeInLeftBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInLeftBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.fadeInLeftBig {
  -webkit-animation-name: fadeInLeftBig;
  animation-name: fadeInLeftBig;
}

@-webkit-keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}

@-webkit-keyframes fadeInRightBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInRightBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.fadeInRightBig {
  -webkit-animation-name: fadeInRightBig;
  animation-name: fadeInRightBig;
}

@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

@-webkit-keyframes fadeInUpBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInUpBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.fadeInUpBig {
  -webkit-animation-name: fadeInUpBig;
  animation-name: fadeInUpBig;
}

@-webkit-keyframes fadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

.fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}

@-webkit-keyframes fadeOutDown {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}

@keyframes fadeOutDown {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}

.fadeOutDown {
  -webkit-animation-name: fadeOutDown;
  animation-name: fadeOutDown;
}

@-webkit-keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}

@keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}

.fadeOutDownBig {
  -webkit-animation-name: fadeOutDownBig;
  animation-name: fadeOutDownBig;
}

@-webkit-keyframes fadeOutLeft {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}

@keyframes fadeOutLeft {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}

.fadeOutLeft {
  -webkit-animation-name: fadeOutLeft;
  animation-name: fadeOutLeft;
}

@-webkit-keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}

@keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}

.fadeOutLeftBig {
  -webkit-animation-name: fadeOutLeftBig;
  animation-name: fadeOutLeftBig;
}

@-webkit-keyframes fadeOutRight {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}

@keyframes fadeOutRight {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}

.fadeOutRight {
  -webkit-animation-name: fadeOutRight;
  animation-name: fadeOutRight;
}

@-webkit-keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}

@keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}

.fadeOutRightBig {
  -webkit-animation-name: fadeOutRightBig;
  animation-name: fadeOutRightBig;
}

@-webkit-keyframes fadeOutUp {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}

@keyframes fadeOutUp {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}

.fadeOutUp {
  -webkit-animation-name: fadeOutUp;
  animation-name: fadeOutUp;
}

@-webkit-keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}

@keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}

.fadeOutUpBig {
  -webkit-animation-name: fadeOutUpBig;
  animation-name: fadeOutUpBig;
}

@-webkit-keyframes flip {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  40% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  50% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  80% {
    -webkit-transform: perspective(400px) scale3d(.95, .95, .95);
    transform: perspective(400px) scale3d(.95, .95, .95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}

@keyframes flip {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  40% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  50% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  80% {
    -webkit-transform: perspective(400px) scale3d(.95, .95, .95);
    transform: perspective(400px) scale3d(.95, .95, .95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}

.animated.flip {
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
  -webkit-animation-name: flip;
  animation-name: flip;
}

@-webkit-keyframes flipInX {
  from {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }

  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}

@keyframes flipInX {
  from {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }

  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}

.flipInX {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInX;
  animation-name: flipInX;
}

@-webkit-keyframes flipInY {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }

  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}

@keyframes flipInY {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }

  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}

.flipInY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInY;
  animation-name: flipInY;
}

@-webkit-keyframes flipOutX {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }

  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }

  to {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}

@keyframes flipOutX {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }

  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }

  to {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}

.flipOutX {
  -webkit-animation-name: flipOutX;
  animation-name: flipOutX;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
}

@-webkit-keyframes flipOutY {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }

  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }

  to {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}

@keyframes flipOutY {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }

  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }

  to {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}

.flipOutY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipOutY;
  animation-name: flipOutY;
}

@-webkit-keyframes lightSpeedIn {
  from {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }

  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
    opacity: 1;
  }

  to {
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

@keyframes lightSpeedIn {
  from {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }

  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
    opacity: 1;
  }

  to {
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

.lightSpeedIn {
  -webkit-animation-name: lightSpeedIn;
  animation-name: lightSpeedIn;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}

@-webkit-keyframes lightSpeedOut {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}

@keyframes lightSpeedOut {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}

.lightSpeedOut {
  -webkit-animation-name: lightSpeedOut;
  animation-name: lightSpeedOut;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
}

@-webkit-keyframes rotateIn {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }

  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

@keyframes rotateIn {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }

  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

.rotateIn {
  -webkit-animation-name: rotateIn;
  animation-name: rotateIn;
}

@-webkit-keyframes rotateInDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }

  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

@keyframes rotateInDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }

  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

.rotateInDownLeft {
  -webkit-animation-name: rotateInDownLeft;
  animation-name: rotateInDownLeft;
}

@-webkit-keyframes rotateInDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }

  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

@keyframes rotateInDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }

  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

.rotateInDownRight {
  -webkit-animation-name: rotateInDownRight;
  animation-name: rotateInDownRight;
}

@-webkit-keyframes rotateInUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }

  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

@keyframes rotateInUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }

  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

.rotateInUpLeft {
  -webkit-animation-name: rotateInUpLeft;
  animation-name: rotateInUpLeft;
}

@-webkit-keyframes rotateInUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }

  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

@keyframes rotateInUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }

  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

.rotateInUpRight {
  -webkit-animation-name: rotateInUpRight;
  animation-name: rotateInUpRight;
}

@-webkit-keyframes rotateOut {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    opacity: 1;
  }

  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}

@keyframes rotateOut {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    opacity: 1;
  }

  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}

.rotateOut {
  -webkit-animation-name: rotateOut;
  animation-name: rotateOut;
}

@-webkit-keyframes rotateOutDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }

  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}

@keyframes rotateOutDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }

  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}

.rotateOutDownLeft {
  -webkit-animation-name: rotateOutDownLeft;
  animation-name: rotateOutDownLeft;
}

@-webkit-keyframes rotateOutDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }

  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}

@keyframes rotateOutDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }

  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}

.rotateOutDownRight {
  -webkit-animation-name: rotateOutDownRight;
  animation-name: rotateOutDownRight;
}

@-webkit-keyframes rotateOutUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }

  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}

@keyframes rotateOutUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }

  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}

.rotateOutUpLeft {
  -webkit-animation-name: rotateOutUpLeft;
  animation-name: rotateOutUpLeft;
}

@-webkit-keyframes rotateOutUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }

  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}

@keyframes rotateOutUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }

  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}

.rotateOutUpRight {
  -webkit-animation-name: rotateOutUpRight;
  animation-name: rotateOutUpRight;
}

@-webkit-keyframes hinge {
  0% {
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  20%, 60% {
    -webkit-transform: rotate3d(0, 0, 1, 80deg);
    transform: rotate3d(0, 0, 1, 80deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  40%, 80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
    transform: rotate3d(0, 0, 1, 60deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }

  to {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}

@keyframes hinge {
  0% {
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  20%, 60% {
    -webkit-transform: rotate3d(0, 0, 1, 80deg);
    transform: rotate3d(0, 0, 1, 80deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  40%, 80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
    transform: rotate3d(0, 0, 1, 60deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }

  to {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}

.hinge {
  -webkit-animation-name: hinge;
  animation-name: hinge;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-webkit-keyframes rollIn {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes rollIn {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.rollIn {
  -webkit-animation-name: rollIn;
  animation-name: rollIn;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-webkit-keyframes rollOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}

@keyframes rollOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}

.rollOut {
  -webkit-animation-name: rollOut;
  animation-name: rollOut;
}

@-webkit-keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3);
  }

  50% {
    opacity: 1;
  }
}

@keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3);
  }

  50% {
    opacity: 1;
  }
}

.zoomIn {
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn;
}

@-webkit-keyframes zoomInDown {
  from {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
    transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

@keyframes zoomInDown {
  from {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
    transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

.zoomInDown {
  -webkit-animation-name: zoomInDown;
  animation-name: zoomInDown;
}

@-webkit-keyframes zoomInLeft {
  from {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
    transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
    transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

@keyframes zoomInLeft {
  from {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
    transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
    transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

.zoomInLeft {
  -webkit-animation-name: zoomInLeft;
  animation-name: zoomInLeft;
}

@-webkit-keyframes zoomInRight {
  from {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
    transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
    transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

@keyframes zoomInRight {
  from {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
    transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
    transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

.zoomInRight {
  -webkit-animation-name: zoomInRight;
  animation-name: zoomInRight;
}

@-webkit-keyframes zoomInUp {
  from {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
    transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

@keyframes zoomInUp {
  from {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
    transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

.zoomInUp {
  -webkit-animation-name: zoomInUp;
  animation-name: zoomInUp;
}

@-webkit-keyframes zoomOut {
  from {
    opacity: 1;
  }

  50% {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3);
  }

  to {
    opacity: 0;
  }
}

@keyframes zoomOut {
  from {
    opacity: 1;
  }

  50% {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3);
  }

  to {
    opacity: 0;
  }
}

.zoomOut {
  -webkit-animation-name: zoomOut;
  animation-name: zoomOut;
}

@-webkit-keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  to {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
    transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

@keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  to {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
    transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

.zoomOutDown {
  -webkit-animation-name: zoomOutDown;
  animation-name: zoomOutDown;
}

@-webkit-keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
    transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: scale(.1) translate3d(-2000px, 0, 0);
    transform: scale(.1) translate3d(-2000px, 0, 0);
    -webkit-transform-origin: left center;
    transform-origin: left center;
  }
}

@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
    transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: scale(.1) translate3d(-2000px, 0, 0);
    transform: scale(.1) translate3d(-2000px, 0, 0);
    -webkit-transform-origin: left center;
    transform-origin: left center;
  }
}

.zoomOutLeft {
  -webkit-animation-name: zoomOutLeft;
  animation-name: zoomOutLeft;
}

@-webkit-keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
    transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: scale(.1) translate3d(2000px, 0, 0);
    transform: scale(.1) translate3d(2000px, 0, 0);
    -webkit-transform-origin: right center;
    transform-origin: right center;
  }
}

@keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
    transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: scale(.1) translate3d(2000px, 0, 0);
    transform: scale(.1) translate3d(2000px, 0, 0);
    -webkit-transform-origin: right center;
    transform-origin: right center;
  }
}

.zoomOutRight {
  -webkit-animation-name: zoomOutRight;
  animation-name: zoomOutRight;
}

@-webkit-keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  to {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
    transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

@keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  to {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
    transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

.zoomOutUp {
  -webkit-animation-name: zoomOutUp;
  animation-name: zoomOutUp;
}

@-webkit-keyframes slideInDown {
  from {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes slideInDown {
  from {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.slideInDown {
  -webkit-animation-name: slideInDown;
  animation-name: slideInDown;
}

@-webkit-keyframes slideInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes slideInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.slideInLeft {
  -webkit-animation-name: slideInLeft;
  animation-name: slideInLeft;
}

@-webkit-keyframes slideInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes slideInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.slideInRight {
  -webkit-animation-name: slideInRight;
  animation-name: slideInRight;
}

@-webkit-keyframes slideInUp {
  from {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes slideInUp {
  from {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.slideInUp {
  -webkit-animation-name: slideInUp;
  animation-name: slideInUp;
}

@-webkit-keyframes slideOutDown {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}

@keyframes slideOutDown {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}

.slideOutDown {
  -webkit-animation-name: slideOutDown;
  animation-name: slideOutDown;
}

@-webkit-keyframes slideOutLeft {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}

@keyframes slideOutLeft {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}

.slideOutLeft {
  -webkit-animation-name: slideOutLeft;
  animation-name: slideOutLeft;
}

@-webkit-keyframes slideOutRight {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}

@keyframes slideOutRight {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}

.slideOutRight {
  -webkit-animation-name: slideOutRight;
  animation-name: slideOutRight;
}

@-webkit-keyframes slideOutUp {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}

@keyframes slideOutUp {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}

.slideOutUp {
  -webkit-animation-name: slideOutUp;
  animation-name: slideOutUp;
}

@font-face {
    font-family: 'FilsonProBold';
    src: url('/Content/fonts/FilsonProBold/FilsonProBold.eot');
    src: local('☺'), url('/Content/fonts/FilsonProBold/FilsonProBold.woff') format('woff'), url('/Content/fonts/FilsonProBold/FilsonProBold.ttf') format('truetype'), url('/Content/fonts/FilsonProBold/FilsonProBold.svg') format('svg');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'FilsonProLight';
    src: url('/Content/fonts/FilsonProLight/FilsonProLight.eot');
    src: local('☺'), url('/Content/fonts/FilsonProLight/FilsonProLight.woff') format('woff'), url('/Content/fonts/FilsonProLight/FilsonProLight.ttf') format('truetype'), url('/Content/fonts/FilsonProLight/FilsonProLight.svg') format('svg');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'MontserratBold';
    src: url('/Content/fonts/MontserratBold/MontserratBold.eot');
    src: local('☺'), url('/Content/fonts/MontserratBold/MontserratBold.woff') format('woff'), url('/Content/fonts/MontserratBold/MontserratBold.ttf') format('truetype'), url('/Content/fonts/MontserratBold/MontserratBold.svg') format('svg');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'ABCFavoritBold';
    src: url('/Content/fonts/ABCFavorit/ABCFavoritExtended-Bold.woff2') format('woff2'), url('ABCFavoritExtended-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'ABCFavoritNormal';
    src: url('/Content/fonts/ABCFavorit/ABCFavoritExtended-Light.woff2') format('woff2'), url('ABCFavoritExtended-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}
/***********************************************************************************
 1. body start
***********************************************************************************/
body {
    font-family: 'ABCFavoritNormal', 'FilsonProLight', Arial;
    font-size: 15px;
    line-height: 1.42857143;
    color: #000;
    background-color: #fff;
}

a[href^="mailto:"] {
    color: #000;
    text-decoration:unset;
}

a[href^="mailto:"]:hover {
    color: #000;
    text-decoration: underline;
}

a[href^="mailto:"]:focus {
    color: #000;
    text-decoration: underline;
}

.container-fluid {
    padding-left: 20px;
    padding-right: 20px;
    margin: 0;
}

.row {
    padding: 0;
    margin-left: 0;
    margin-right: 0;
}

.foto-tekst {
    position: absolute;
    width:100%;
    top: 16px;
    height: 100px;
    background-color: transparent;
    padding: 10px;
    color: #fff;
    font-size:24px;
}

#preloader {
    position: absolute;
    margin: 0;
    position: absolute;
    left: 50%;
    margin-left:-50px;
    top: 50%;
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 100px;
    height: 100px;
    z-index: 100;
}

.videotext {
    position: absolute;
    z-index: 10;
}

.vert-center-text {
    font-family: 'ABCFavoritNormal', 'FilsonProLight', Arial;
    position: absolute;
    /* top: 35%; */
    left: 0;
    right: 0;
    text-align: center;
    width: auto;
    margin: auto auto;
    max-width: 800px;
    vertical-align: middle;
    /* bottom: 0*/
    height: auto;
    max-height: 100%;
    transform: translateY(-50%);
    top: 50%;
}

.vert-center-container {
    position: relative;
}

.vert-center-text h2,
.vert-center-text h3,
.vert-center-text .text,
.vert-center-text .intro {
    padding-left: 0!important;
    padding-right: 0!important;
}

.arrowmobile {
    display: none !important;
}

.mobileicons {
    display: none;
}

/********** kleuren ***************************************************************/

.lichtblauw {
    color: #00ffff;
}

.bg_lichtblauw {
    background-color: #00ffff;
}

.paars {
    color:#a280e1;
}

.bg_paars {
    background-color: #a280e1;
}

/********** Start typografie  *****************************************************/
/* h1, h2, h3{margin: 0} */
h1 {
    font-family: 'ABCFavoritBold','FilsonProBold', Arial;
    font-size: 120px;
}

    h1.bold {
        font-family: 'ABCFavoritBold','FilsonProBold', Arial;
        font-size: 120px;
    }
    h1.light {
        font-family: 'ABCFavoritNormal','FilsonProLight', Arial;
        font-size: 120px;
    }

h2 {
    font-family: 'ABCFavoritNormal','FilsonProLight', Arial;
    font-size: 68px;
}


    h2.bold {
        font-family: 'ABCFavoritBold','FilsonProBold', Arial;
        font-size: 68px;
    }

    h2.light {
        font-family: 'ABCFavoritNormal','FilsonProLight', Arial;
        font-size: 68px;
    }

h3 {
    font-family: 'ABCFavoritBold','FilsonProBold', Arial;
    font-size: 46px;
}



    h3.bold {
        font-family: 'ABCFavoritBold','FilsonProBold', Arial;
        font-size: 46px;
    }

    h3.light {
        font-family: 'ABCFavoritNormal','FilsonProLight', Arial;
        font-size: 46px;
    }


.intro {
    font-family: 'ABCFavoritNormal','FilsonProLight', Arial;
    font-size: 26px;
}

.text {
    font-family: 'ABCFavoritNormal','FilsonProLight', Arial;
    /* font-size: 16px; */
    font-size: 21px;
}

    .text strong {
        font-family: 'ABCFavoritBold','FilsonProBold', Arial;
    }

.wit {
    color: #fff !important;
}


/********** Hyperlinks  ***********************************************************/

a {
    color: #00ffff;
    text-decoration: none;
    cursor: pointer;
}

    a:hover, a:focus {
        color: #a280e1;
        text-decoration: none;
    }

    a.link_footer {
        color: transparent;
        text-decoration: none;
        cursor: pointer;
    }

        a.link_footer:hover, a.link_footer:focus {
            color: #a280e1;
            text-decoration: none;
        }


.link_footer {
    color: #000;
    text-decoration: none;
    cursor: pointer;

    font-size: 16px;

    border-radius: 60px;
    background-color: #00ffff;
    padding: 0.5em 0.5em;
}

    .link_footer:hover {
        color: #000;
        background-color: #a280e1;
    }
    
div.footer-icon.link_footer {
    font-size: 16px;

    height: 28px;
    width: 28px;

    padding: 0;

    display: inline-flex;
    justify-content: center;
    align-items: center;
}


.link_footer_arrow {
    color: #fff;
    text-decoration: none;
    cursor: pointer;
    font-size: 16px;
    border-radius: 0;
    background-color: #000;
    padding: 0.5em 0.6em;
    border:1px solid #fff;
}

    .link_footer_arrow:hover {
        color: #000;
        border: 1px solid #00ffff;
        background-color: #00ffff;
    }

.link {
    color: #000;
    /* background: url(/Content/img/btn_arrow.png) no-repeat bottom left; */
    /* height:68px; */
    /* min-width: 200px; */
    cursor:pointer;
}

.link-arrow {
    background: url('/Content/img/btn_arrow.png') no-repeat bottom left;
    min-width: 111px;
    height: 33px;
}

.link_label {
    font-family: 'ABCFavoritNormal','FilsonProLight', Arial;
    font-size: 16px;
    padding: 6px 20px 6px 20px;
    color: #000;
    background-color: transparent;
    cursor: pointer;
    border: 1px solid #000;
    display: initial;
}
.link_label_white {
    color: white;
    background-color: transparent;
    border: 1px solid white;
}

    .link_label_white:hover {
        color: black;
        background-color: white;
        border: 1px solid transparent;
    }
.link_label_black {
    color: black;
    background-color: transparent;
    border: 1px solid black;
}

    .link_label_black:hover {
        color: white;
        border: 1px solid transparent;
        background-color: black;
    }

.mailto a{
color:#fff !important;
}

    .mailto a:hover {
        color: #fff !important;
        text-decoration: underline !important;
    }

/********** Page styling  ***********************************************************/
* {
    padding: 0;
    margin: 0;
}

body {
    max-width: 100%;
    overflow-x: hidden;
}

.container {
    margin: 0 auto;
    /* disable live */
    /* max-width: 1920px; */
    max-width: min(1600px, 100%);
}

.row {
    width: 100%;
    align-items: center;
    display: flex;
}

/********** Header styling  ***********************************************************/

.header {
    width: 100%;
    height: 800px;
    border: 20px solid #fff;
    padding-left: 0;
    padding-right: 0;
    /* background: url(/Content/img/header_1.jpg) no-repeat center center fixed; */
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

.header_menu {
    float: right;
    width: 320px;
    height: 160px;
    font-family: 'ABCFavoritBold','FilsonProBold', Arial;
    line-height: 160px;
    vertical-align: middle;
    color: #fff;
    text-align: right;
    padding-right: 20px;
    word-spacing: 10px;
}

.header_menu_mobile {
    display:none;
}

.header_text {
    position: absolute;
    top: 280px;
    left: 160px;
    color: #fff;
}

    .header_text h1 {
        margin: 0;
        /* margin-bottom:40px; */
        font-size:106px;
        color:#fff;
    }

.header_text p {
    color: white;
}

    .header_text .text {
        max-width: 800px;
    }

.logo_top {
    position: absolute;
    z-index: 30;
    top: 85px;
    left: 160px;
    width: 320px;
    height: 160px;
}

.logo, .woordmerk {
    float: left;
    max-width:200px;
}

.invert {
    filter: invert(100%);
}

.menu.invert:hover {
    filter: invert(78%) sepia(65%) saturate(3758%) hue-rotate(354deg) brightness(92%) contrast(86%);
}

.header_lichtblauw {
    background-color: #00ffff;
}

.menu {
float:right;
width:160px;
height:160px;
background-color:#000;
background: url(/Content/img/menu.png) no-repeat center top;
cursor:pointer;
}

    .menu:hover {
        background: url(/Content/img/menu_hover.png) no-repeat center top;
    }

.gordijn {
    position: absolute;
    z-index: 10;
    width: 100%;
    border-top: 20px solid #fff;
    border-left: 20px solid #fff;
    border-right: 20px solid #fff;
    min-height: 800px;
    display: none;
}

.gordijn_close {
    float: right;
    width: 160px;
    height: 160px;
    background: url(/Content/img/menu_close.png) no-repeat center top;
    cursor: pointer;
}

    .gordijn_close:hover {
        background: url(/Content/img/menu_close_hover.png) no-repeat center top;
        transform: rotate(90deg);
        transition: transform 0.5s;
    }


.gordijn_content {
    position: absolute;
    left: 320px;
    top: 240px;
    width: 80%;
}


.submenu {
    float:left;
    width:40%;
}

    .submenu a {
        font-family: 'ABCFavoritNormal','FilsonProLight', Arial;
        font-size: 26px;
        color: #000;
        line-height: 46px;
    }

    .submenu a:hover {
        font-weight: bold;
    }

    .submenu .active {
        color: #fff;
        font-weight:bold;
    }


.gordijn_text {
    float: left;
    margin-top: -20px;
    width: 50%;
    font-family: 'ABCFavoritNormal','FilsonProLight', Arial;
    font-size: 18px;
}


.gordijn h1 {
    /* font-family: 'ABCFavoritBold','FilsonProBold', Arial; */
    font-size: 68px;
}

.gordijn h2 {
    /* font-family: 'ABCFavoritNormal','FilsonProLight', Arial; */
    font-size: 46px;
}

.gordijn .link {
    float: left;
    text-align: left;
    margin-right: 80px;
    align-items: flex-end;
}

.gordijn .link {
    /*background: url(/Content/img/btn_arrow.png) no-repeat bottom left;*/
}

.gordijn .link_label {
    /* background-color: #fff;*/
}

/********** Body styling  ***********************************************************/


.margin-bottom-min50 {
    margin-bottom: -50px;
}

.row > .block {
     width: 50%; 
}

.block_img-right > video {
    max-width: min(800px, 100%);
    margin-right: 0;
}
.block_img-left > video {
    max-width: min(800px, 100%);
    margin-left: 0;
}

.block.text.full-width-text, .block.vert-center-container {
    width: 100%;
}

.block.text.full-width-text {
    max-width: 1170px;
    margin-left: auto;
    margin-right: auto;
}

.row > .block_text {
    /*padding-top: 40px;
    padding-bottom: 40px;*/
    margin: 40px 0;
}


.full-width-text {
    padding:60px;
}

.full-width-video {
    width: 100%!important;
}

.block-left {
    text-align: right;
}

.block-right {
    text-align: left;
}
.block-center {
    text-align: center;
}
.block_text-left {
    text-align: right;
}

.block_text-right {
    text-align: left;
}

    .block_text-right h3,
    .block_text-right h2,
    .block_text-right .intro,
    .block_text-right .text {
        padding-left: 80px;
        padding-right: 80px;
        width: 100%;
        max-width: 620px;
        margin: 0 auto 0 0;
        max-width: 620px;
    }


.block_text-center h3,
.block_text-center h2,
.block_text-center .intro,
.block_text-center .text {
    padding-left: 80px;
    padding-right: 80px;
}

.block_text-left h3,
.block_text-left h2,
.block_text-left .intro,
.block_text-left .text 
{
    padding-left: 80px;
    padding-right: 80px;
    width: 100%;
    max-width: 620px;
    margin: 0 auto 0 0;
}

.block_text-left .link,
.block_text-right .link {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
}

.block_text-left .link {
    float: right;
    text-align:left;
    margin-right: 80px;
    align-items: flex-end;
}

.block_text-left .link {
    /* background: url(/Content/img/btn_arrow.png) no-repeat bottom right;*/
}

.block_text-right .link {
    margin-left:80px;
    align-items: flex-start;
}

.block img {
    max-width: 100%;
    height: auto;
}

.block_full_width_image img {
    width: 100%;
}

.block_full_width_image div.block {
    width: 100%;
}

.block_img-right {
    text-align: right;
}

.block_text_inner{
max-width: 800px;
}

.block_text-left .block_text_inner {
    margin: 0 0 0 auto;
    float: right;
}

.block_text-right .block_text_inner {
    float: left;
}

.block_contact_text-left .block_text_inner {
    margin: 0 0 0 auto;
    float: right;
}

.block_contact_text-right .block_text_inner {
    float: left;
}

#content > div:nth-last-child(1) > .block {
    max-width: 1170px;
    margin-left: auto;
    margin-right: auto;
}

#footer {
    background-color: #000;
    min-height: 400px;
    color: #fff;
    text-align: center;
    padding: 20px 0 20px 0;
    border-right: 20px solid #fff;
    border-left: 20px solid #fff;
    border-bottom: 20px solid #fff;
    line-height: 24px;
}

.footer-col-1 {
    padding: 0 0 0 120px;
}
.footer-col-2 {
    
}
.footer-col-3 {
    padding: 0 120px 0 0
}



    #footer h1 {
        font-size: 26px;
    }

.footer-icon {
    margin: 8px;
}


.logo_footer {
/*max-width:100px;*/
margin-right:40px;
margin-top:6px;
}

/********** Error messages  ***********************************************************/
.field-validation-error {
    color: red;
}

    .img-responsive.mobile { display: none; }

.row_block {
    /*padding-top: 5px !important;*/
    /* padding-bottom: 5px !important; */
}


.block_contact {
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: space-between;
    padding: 50px 0;

}
.block_contact_text-left {
    text-align: right;
    padding-right: 45px;

}
.block_contact_text-right {
    text-align: left;
    padding-left: 45px;
}

.block_contact_image img {
    max-width: 200px; border-radius: 50%;
}

.block_contact_text {
    width: 35%;
}

video {
    display: block;
    max-width: 100%;
    margin: 0 auto;
    
    -webkit-box-sizing: unset;
    -moz-box-sizing: unset;
    box-sizing: unset;

}
/* Large Devices, Wide Screens */
@media screen and (max-width : 1200px) {
}

/* Medium Devices*/
@media screen and (max-width : 1024px) {

    .foto-tekst {
        position: absolute;
        width:100%;
        top: 10px;
        height: 100px;
        background-color: transparent;
        padding: 5px;
        color: #fff;
        font-size:14px;
    }

    .header_text {
        position: absolute;
        top: 380px;
        left: 160px;
        color: #fff;
        font-size: 16px;
        padding-right: 40px;
    }

        .header_text h1 {
            margin-bottom: 20px;
            font-size: 46px;
            line-height:46px;
            color: #fff;
        }

    .gordijn_content {
        position: absolute;
        left: 140px;
        top: 240px;
        width: 80%;
    }

    .gordijn_text {
        margin-top: 0;
        float: left;
    }

    .gordijn h1 {
        font-family: 'ABCFavoritBold','FilsonProBold', Arial;
        font-size: 46px;
    }

    .gordijn h2 {
        font-family: 'ABCFavoritBold','FilsonProBold', Arial;
        font-size: 32px;
    }

    h1, h2, h3 {
        margin: 0;
    }

    h1 {
        font-size: 68px;
        line-height: 72px;
    }

    h2 {
        font-size: 32px !important;
        line-height: 48px;
    }

    h3 {
        font-size: 32px !important;
    }

    .intro {
        font-size: 16px;
    }

    .text {
         font-size: 16px;
    }

    #footer {
        padding: 40px 0 40px 0;
    }

    .footer-col-1 {
        padding: 0 0 0 20px;
    }

    .footer-col-2 table {
        height: 40px;
    }

    .footer-col-3 {
        padding: 0 20px 0 0
    }

    .block.full-width-text,
    .block .vert-center-text {
        max-width: 960px;
    }
}

/* Medium Devices*/
@media only screen and (min-device-width : 768px) and (max-device-width : 1024px) and (orientation : portrait) {

    .header_text {
        position: absolute;
top:400px;
        left: 160px;
    }

    /*.footer-col-1 table {
width:400px !important;
margin:0 auto;
    }*/



    #footer {
        min-height: 160px;
        padding: 40px 0 40px 0;
    }

        #footer .pull-right {
            float: none !important;
        }

    .pull-right table {


        text-align:left !important;
    }

    .logo_footer {
        width: 60px;
        margin-right: 20px;
    }

    .footer-col-1 {
        padding: 0 0 0 0;
    }

    .footer-col-2 table {
        height: 40px;
    }

    .footer-col-3 {
        padding: 0 20px 0 0
    }

    .footer_text {
        display: none;
    }

    .mobileadres {
        padding-left: 20px !important;
    }

    .desktopicons {
        display: none;
    }

    .mobileicons {
        display: block;
        margin-left: 10px;
    }

    .arrowmobile {
        display: block !important;
    }

    .link_footer-arrow_mobile {
        display: none;
    }

    .block.full-width-text,
    .block .vert-center-text {
        max-width: 720px;
    }

}

    /* Small Devices, Tablets */
    @media screen and (max-width : 667px) {

        h1, h2, h3 {
            margin: 0;
        }

            h1, h1.bold, h1.light {
                font-size: 32px;
                line-height: 40px;
            }

            h2, h2.bold, h2.light {
                font-size: 24px;
                line-height: 30px;
            }

            h3, h3.bold, h3.light {
                font-size: 24px;
                line-height: 30px;
            }

                h1.bold, h2.bold, h3.bold {
                    font-weight: bold;
                }


        .header {
            min-height: 500px;
            height: auto;
        }

        .vert-center-text {
            /*top:15% !important;*/
            font-size:12px;
        }

        .woordmerk {
            display: none;
        }

        .logo_top {
            position: absolute;
            top: 20px;
            left: 50%;
            margin-left: -60px;
            width: 80px;
            height: 80px;
        }

            .logo_top img {
                width: 120px;
            }

        .menu {
            float: right;
            width: 80px;
            height: 80px;
            background-color: #000;
            background: url(/Content/img/menu-small.png) no-repeat center top;
            cursor: pointer;
        }

            .menu:hover {
                background: url(/Content/img/menu_hover_small.png) no-repeat center top;
            }

        .header_menu {
            display: none;
        }

        .header_menu_mobile {
            padding: 20px;
            text-align: center;
            display: block;
            float: right;
            color: #fff;
        }


        .header_text {
            position: absolute;
            /*top: 120px;*/
            bottom: 120px;
            left: 40px;
            color: #fff;
            font-size: 14px;
            padding-right: 40px;
        }

            .header_text h1 {
                margin-bottom: 0px;
                font-size: 32px;
line-height:32px;
                color: #fff;
            }

        .gordijn {
            /*min-height:760px;*/
            min-height:400px;
            height:auto;
        }

        .gordijn_close {
            float: right;
            width: 80px;
            height: 80px;
            background: url(/Content/img/menu_close_small.png) no-repeat center top;
            cursor: pointer;
        }

            .gordijn_close:hover {
                background: url(/Content/img/menu_close_hover_small.png) no-repeat center top;
                transform: rotate(90deg);
                transition: transform 0.5s;
            }

        .gordijn_content {
            position: absolute;
            left: 40px;
            top: 80px;
            width: 80%;
        }

        .submenu {
            float: left;
            width: 100%;
            margin-bottom: 80px;
        }

            .submenu a {
                font-family: 'ABCFavoritNormal','FilsonProLight', Arial, sans-serif;
                font-size: 22px;
                color: #000;
                line-height: 30px;
            }

            .submenu .active {
                color: #000;
                font-weight: bold;
            }

        .gordijn_text {
            float: left;
            margin-top: -40px;
            width: 100%;
        }

        .gordijn h1 {
            font-family: 'ABCFavoritBold','FilsonProBold', Arial, sans-serif;
            font-size: 32px;
        }

        .gordijn h2 {
            font-family: 'ABCFavoritNormal','FilsonProLight', Arial, sans-serif;
            font-size: 24px;
        }

        .gordijn .link {
            float: left;
            text-align: left;
            margin-right: 40px;
            align-items: flex-end;
        }
        
         div.container-fluid > div.row.row-left.row_block > div.block.block_text.block_text-left > div > a > div {
             margin-top: 1em!important;
             margin-bottom: 0!important;
         }

        .block.full-width-text,
        .block .vert-center-text {
            padding-left: 20px;
            padding-right: 20px;
        }

        div.container-fluid:last-of-type p.intro {
            margin-bottom: 0;
        }
        
        .gordijn .link { /*background: url(/Content/img/btn_arrow.png) no-repeat bottom left;*/
        }

        .gordijn .link_label { /*background-color: #fff;*/
        }

        h1, h2, h3 {
            margin: 0;
        }

        h1 {
            font-size: 68px;
            line-height: 72px;
        }

        h2 {
            font-size: 32px;
            line-height: 48px;
        }

        h3 {
            font-size: 16px;
        }

        .intro {
            font-size: 16px;
        }

        .text {
            font-size: 12px;
        }

        .row > .block_text {
            padding-top: 0;
            margin-bottom: 0;
        }

        .block_text-right h3, .block_text-right h2, .block_text-right .intro, .block_text-right .text {
            padding-left: 20px;
            padding-right: 20px;
            width: 100%;
            margin: 0 auto 0 0;
        }

        .block_text-left h3,
        .block_text-left h2,
        .block_text-left .intro,
        .block_text-left ul,
        .block_text-left .text {
            padding-right: 20px;
            padding-left: 20px;
        }

        .block_text-center h3,
        .block_text-center h2,
        .block_text-center .intro,
        .block_text-center ul,
        .block_text-center .text {
            padding-right: 20px;
            padding-left: 20px;
        }

        .link {
            min-width: 0;
        }

        .block_text-right .link {
            margin-left: 20px;
        }

        .block_text-left .link {
            /*background: url(/Content/img/btn_arrow.png) no-repeat bottom left;*/
            float: left;
            margin-left: 20px;
        }

        .block_text-left .link_label {
            float: left;
        }

        .copyright {
            display: none;
        }

        .mailto {
            /*display: none;*/
        }

        #footer {
            min-height: 160px;
            padding: 40px 0 40px 0;
        }

        .footer_text {
            display: none;
        }

        #footer .row {
            flex-direction: unset;
        }

        .block img {
            width: 100%;
        }

        .header {
            margin-bottom: 0 !important;
        }

        .container-fluid > .row_block {
            padding-bottom: 0 !important;
        }

            .container-fluid > .row_block ~ .row_block {
                padding-bottom: 0 !important;
            }

        #footer .pull-right {
            float: none !important;
        }

        .logo_footer {
            width: 60px;
            margin-right: 20px;
        }

        .footer-col-1 {
            padding: 0;
        }

        .footer-col-2 table {
            height: 40px;
        }

        .footer-col-3 {
            padding: 0 20px 0 0
        }

        .footer_text {
            display: none;
        }

        .mobileadres {
            padding-left: 220px !important;
        }

        .desktopicons {
            display: none;
        }

        .mobileicons {
            display: block;
            margin-left: 176px;
        }

        .img-responsive {
            display: none;
        }

            .img-responsive.mobile {
                display: block;
            }



        .block_contact {
            padding: 35px 15px;
            flex-direction: column;
            align-items: center;
            align-content: flex-start;
        }

        .block_contact_text-left {
            padding-right: 0;
            text-align: left;
        }

        .block_contact_text-right {
            padding-left: 0;
            padding-top: 15px;
        }

        .block_contact_text_title {
            text-align: center;
            padding-top: 20px;
        }

        .block_contact_text {
            max-width: 100%;
        }

        .arrowmobile {
            display: block !important;
        }

        .link_footer-arrow_mobile {
            display: none;
        }

        .fa-arrow-left, .fa-arrow-right {
            /*  display: none;*/
        }
        
        .grid-sizer,
        .grid-item {
            width: 100% !important;
        }
    }

    /* Extra Small Devices, Phones */
@media screen and (max-width : 480px) {
    :root {
        --block-margin: 2em;
    }
    
    p {
        margin: 0;
    }
    
    h1, h2, h3 {
        margin: 0;
    }

        h1, h1.bold, h1.light {
            font-size: 32px;
            line-height: 40px;
        }

        h2, h2.bold, h2.light {
            font-size: 24px;
            line-height: 30px;
        }

        h3, h3.bold, h3.light {
            font-size: 24px;
            line-height: 30px;
        }

            h1.bold, h2.bold, h3.bold {
                font-weight: bold;
            }

    .vert-center-text {
        font-size: 12px;
        /* top: 10%; */
        /* transform: none; */
    }

    .grid-sizer,
    .grid-item {
        width: 100% !important;
    }

    .intro {
        font-size: 16px;
    }

    .text {
        font-size: 12px;
    }

    .full-width-text {
        padding-top: 0;
        padding-bottom: 0;
    }

    .row {
        margin: 0;
        max-width: 100%;
        font-size: 12px;
    }

        .row .block {
            flex: 0 0 100%;
            width: 100% !important;
        }

        .row .block h3, .row .block h2, .row .block .intro, .row .block .text {
            padding-left: 20px;
            padding-right: 20px;
            width: 100%;
            margin: 0 auto 0 0;
        }

    .container {
        margin: 0 20px;
    }

    .block {
        text-align: left;
    }
    
    body > div.container-fluid > div.row.row_block:first-of-type > div.block:first-of-type {
        margin-top: 0;
    }

    .row {
        flex-direction: column;
    }
    
    .row > .block {
        margin-top: var(--block-margin);
        margin-bottom: var(--block-margin);
    }

    .row_block_full-width {
        margin-top: var(--block-margin);
        margin-bottom: var(--block-margin);
    }
    
    .row > .block.full-width-text {
        margin-top: var(--block-margin);
        margin-bottom: var(--block-margin);
    }
    
    .row > .block .link:last-child {
        margin-top: 0!important;
    }

    #content > div:nth-last-child(1) {
        /* Ensures last block sticks to footer */
        margin-bottom: 0;
    }
    
    #content > div:nth-last-child(1) > .block {
        /* Ensures last block sticks to footer */
        padding-bottom: var(--block-margin);
        padding-top: 0;
        width: 100%;
    }

    .row-left {
        flex-direction: column-reverse;
    }

    .woordmerk {
        display: none;
    }

    .logo_top {
        display: inline-block;
        position: relative;
        top: 20px;
        /*left: calc(50% - 60px);*/
        left: 28px;
        margin: 0;
        width: 80px;
        height: 80px;
    }

        .logo_top img {
            width: 120px;
        }

    .menu {
        display: inline-block;
        float: right;
        width: 80px;
        height: 80px;
        background-color: #000;
        background: url(/Content/img/menu-small.png) no-repeat center top;
        cursor: pointer;
    }

        .menu:hover {
            background: url(/Content/img/menu_hover_small.png) no-repeat center top;
        }

    .header_menu {
        display: none;
    }

    .header_menu_mobile {
        padding: 20px;
        text-align: center;
        display: block;
        float: right;
        color: #fff;
    }

    .header_text {
        position: absolute;
        bottom: 20px;
        left: 20px;
        top: unset;
        color: #fff;
        font-size: 14px;
        padding-right: 20px;
    }

        .header_text h1 {
            margin-bottom: 0;
            font-size: 32px;
line-height:32px;
            color: #fff;
        }

    .gordijn_close {
        float: right;
        width: 80px;
        height: 80px;
        background: url(/Content/img/menu_close_small.png) no-repeat center top;
        cursor: pointer;
    }

        .gordijn_close:hover {
            background: url(/Content/img/menu_close_hover_small.png) no-repeat center top;
            transform: rotate(90deg);
            transition: transform 0.5s;
        }

    .gordijn_content {
        position: absolute;
        left: 30px;
        top: 80px;
        width: 80%;
    }

    .submenu {
        float: left;
        width: 100%;
        padding-bottom: 40px;
    }

    .gordijn_text {
        float: left;
        margin-top: -40px;
        width: 100%;
        font-family: 'FilsonProLight', Arial, sans-serif;
        font-size: 14px;
    }

    .gordijn h1 {
        font-family: 'FilsonProBold', Arial, sans-serif;
        font-size: 32px;
    }

    .gordijn h2 {
        font-family: 'FilsonProLight', Arial, sans-serif;
        font-size: 22px;
        line-height: 30px;
    }

    .gordijn .link {
        float: left;
        text-align: left;
        margin-right: 0;
        align-items: flex-end;
    }

    .gordijn .link {
        /*background: url(/Content/img/btn_arrow.png) no-repeat bottom left;*/
    }

    .gordijn .link_label {
        /*background-color: #fff;*/
    }
    
    .link_label {
        display: inline-block;
        font-size: 13px;
        overflow-wrap: break-word;
        text-align: center;
    }

    .header {
        position: relative;
        max-height: 600px;
    }

    .row > .block_text {
        padding-top: 0;
    }

    .block_text-right h3, .block_text-right h2, .block_text-right .intro, .block_text-right .text
    {
        padding-left: 20px;
        padding-right: 20px;
        width: 100%;
        margin: 0 auto 0 0;
    }
    
    .block_text-left h3,
    .block_text-left h2,
    .block_text-left .intro,
    .block_text-left .link,
    .block_text-left .text {
        padding-right: 20px;
        padding-left: 20px;
        margin: 0 0 0 auto;
    }
    
    .row_block_full-width h3,
    .row_block_full-width h2,
    .row_block_full-width .intro,
    .row_block_full-width .link,
    .row_block_full-width .text {
        padding-right: 20px;
        padding-left: 20px;
    }

    .block_text > .block_text_inner {
        display: flex;
        flex-direction: column;
        width: 100%;
    }

    .block_text > .block_text_inner a:last-of-type {
        margin-top: 2em;
    }

    .link {
        min-width: 0;
        margin-bottom: 0!important;
    }
    
    .intro {
        margin-bottom: 0!important;
    }
    
    .block_text-left .link {
        /*background: url(/Content/img/btn_arrow.png) no-repeat bottom left;*/
    }
    
    .block_text-left .link {
        float: left;
    }
    
    .block_text-left .link_label {
        float: left;
    }
    
    .copyright {
        display: none;
    }

    .mailto {
        /*display: none;*/
    }

    #footer {
        min-height: 160px;
        padding: 40px 0 40px 0;
    }
    
    #footer .row {
        font-size: 15px!important;
    }

    #footer .pull-right {
        float: none !important;
    }

    .logo_footer {
        width: 60px;
        margin-right: 20px;
    }
    
    .footer-col-1 {
        padding: 0 0 0 0;
    }
    
    .footer-col-2 table {
        height: 0;
    line-height:0;
    }
    
    .footer-col-3 {
        padding: 0 20px 0 0
    }
    
    .footer_text {
        display: none;
    }
    
    .mobileadres {
        padding-left: 20px !important;
    }
    
    .desktopicons {
        display: none;
    }
    
    .mobileicons {
        display: block;
        margin-left: 10px;
    }

    .img-responsive {
        display: none;
    }

    .img-responsive.mobile {
        display: block;
    }

    .block_contact {
        padding: 35px 15px;
        flex-direction: column;
        align-items: center;
        align-content: flex-start;
    }
    
    .block_contact_text-left {
        padding-right: 0;
        text-align: left;
    }
    
    .block_contact_text-right {
        padding-left: 0;
        padding-top: 15px;
    }
    
    .block_contact_text_title {
        text-align: center;
        padding-top: 20px;
    }
    
    .block_contact_text {
        max-width: 100%;
    }
    
    .arrowmobile {
        display: block !important;
    }

    .fa-arrow-left, .fa-arrow-right {
        /*display:none;*/
    }
    
    div.footer-icon.link_footer {
        font-size: 16px;
        
        height: 28px;
        width: 28px;
        
        padding: 0;
        
        display: inline-flex;
        justify-content: center;
        align-items: center;
    }
    
    .link_footer-arrow_mobile {
        display: none;
    }
}

/* Custom, iPhone Retina, Galaxy S8 */
@media screen and (max-width : 360px) {
    .gordijn {
        /*min-height: 950px;*/
min-height:400px;
    }
}

/*iPhone 6, 7, & 8 in portrait*/
@media only screen and (min-device-width : 375px) and (max-device-width : 667px) and (orientation : portrait) {
    :root {
        --block-margin: 2em;
    }

    p {
        margin: 0;
    }

    h1, h2, h3 {
        margin: 0;
    }

        h1, h1.bold, h1.light {
            font-size: 32px;
            line-height: 40px;
        }

        h2, h2.bold, h2.light {
            font-size: 24px;
            line-height: 30px;
        }

        h3, h3.bold, h3.light {
            font-size: 24px;
            line-height: 30px;
        }

            h1.bold, h2.bold, h3.bold {
                font-weight: bold;
            }

    .vert-center-text {
        font-size: 12px;
        /* top: 10%; */
        /* transform: none; */
    }

    .grid-sizer,
    .grid-item {
        width: 100% !important;
    }

    .intro {
        font-size: 16px;
    }

    .text {
        font-size: 15px;
    }

    .full-width-text {
        padding-top: 0;
        padding-bottom: 0;
    }

    .row {
        margin: 0;
        max-width: 100%;
        font-size: 12px;
    }

        .row .block {
            flex: 0 0 100%;
            width: 100% !important;
        }

            .row .block h3, .row .block h2, .row .block .intro, .row .block .text {
                padding-left: 20px;
                padding-right: 20px;
                width: 100%;
                margin: 0 auto 0 0;
            }

    .container {
        margin: 0 20px;
    }

    .block {
        text-align: left;
    }

    body > div.container-fluid > div.row.row_block:first-of-type > div.block:first-of-type {
        margin-top: 0;
    }

    .row {
        flex-direction: column;
    }

        .row > .block {
            margin-top: var(--block-margin);
            margin-bottom: var(--block-margin);
        }

    .row_block_full-width {
        margin-top: var(--block-margin);
        margin-bottom: var(--block-margin);
    }

    .row > .block.full-width-text {
        margin-top: var(--block-margin);
        margin-bottom: var(--block-margin);
    }

    .row > .block .link:last-child {
        margin-top: 0 !important;
    }

    #content > div:nth-last-child(1) {
        /* Ensures last block sticks to footer */
        margin-bottom: 0;
    }

        #content > div:nth-last-child(1) > .block {
            /* Ensures last block sticks to footer */
            padding-bottom: var(--block-margin);
            padding-top: 0;
            width: 100%;
        }

    .row-left {
        flex-direction: column-reverse;
    }

    .woordmerk {
        display: none;
    }

    .logo_top {
        display: inline-block;
        position: relative;
        top: 20px;
        left: calc(50% - 60px);
        margin: 0;
        width: 80px;
        height: 80px;
    }

        .logo_top img {
            width: 120px;
        }

    .menu {
        display: inline-block;
        float: right;
        width: 80px;
        height: 80px;
        background-color: #000;
        background: url(/Content/img/menu-small.png) no-repeat center top;
        cursor: pointer;
    }

        .menu:hover {
            background: url(/Content/img/menu_hover_small.png) no-repeat center top;
        }

    .header_menu {
        display: none;
    }

    .header_menu_mobile {
        padding: 20px;
        text-align: center;
        display: block;
        float: right;
        color: #fff;
    }

    .header_text {
        position: absolute;
        bottom: 30px;
        left: 20px;
        top: unset;
        color: #fff;
        font-size: 14px;
        padding-right: 20px;
    }

        .header_text h1 {
            margin-bottom: 0;
            font-size: 32px;
            line-height: 32px;
            color: #fff;
        }

    .gordijn_close {
        float: right;
        width: 80px;
        height: 80px;
        background: url(/Content/img/menu_close_small.png) no-repeat center top;
        cursor: pointer;
    }

        .gordijn_close:hover {
            background: url(/Content/img/menu_close_hover_small.png) no-repeat center top;
            transform: rotate(90deg);
            transition: transform 0.5s;
        }

    .gordijn_content {
        position: absolute;
        left: 30px;
        top: 80px;
        width: 80%;
    }

    .submenu {
        float: left;
        width: 100%;
        padding-bottom: 40px;
    }

    .gordijn_text {
        float: left;
        margin-top: -40px;
        width: 100%;
        font-family: 'FilsonProLight', Arial, sans-serif;
        font-size: 14px;
    }

    .gordijn h1 {
        font-family: 'FilsonProBold', Arial, sans-serif;
        font-size: 32px;
    }

    .gordijn h2 {
        font-family: 'FilsonProLight', Arial, sans-serif;
        font-size: 22px;
        line-height: 30px;
    }

        .gordijn h2.bold {
            font-family: 'FilsonProBold', Arial, sans-serif;
        }

    .gordijn .link {
        float: left;
        text-align: left;
        margin-right: 0;
        align-items: flex-end;
    }

    .gordijn .link {
        /*background: url(/Content/img/btn_arrow.png) no-repeat bottom left;*/
    }

    .gordijn .link_label {
        /*background-color: #fff;*/
    }

    .link_label {
        display: inline-block;
        font-size: 13px;
        overflow-wrap: break-word;
        text-align: center;
    }

    .header {
        position: relative;
        max-height: 600px;
    }

    .row > .block_text {
        padding-top: 0;
    }

    .block_text-right h3, .block_text-right h2, .block_text-right .intro, .block_text-right .text {
        padding-left: 20px;
        padding-right: 20px;
        width: 100%;
        margin: 0 auto 0 0;
    }

    .block_text-left h3,
    .block_text-left h2,
    .block_text-left .intro,
    .block_text-left .link,
    .block_text-left .text {
        padding-right: 20px;
        padding-left: 20px;
        margin: 0 0 0 auto;
    }

    .row_block_full-width h3,
    .row_block_full-width h2,
    .row_block_full-width .intro,
    .row_block_full-width .link,
    .row_block_full-width .text {
        padding-right: 20px;
        padding-left: 20px;
    }

    .block_text > .block_text_inner {
        display: flex;
        flex-direction: column;
        width: 100%;
    }

        .block_text > .block_text_inner a:last-of-type {
            margin-top: 2em;
        }

    .link {
        min-width: 0;
        margin-bottom: 0 !important;
    }

    .intro {
        margin-bottom: 0 !important;
    }

    .block_text-left .link {
        /*background: url(/Content/img/btn_arrow.png) no-repeat bottom left;*/
    }

    .block_text-left .link {
        float: left;
    }

    .block_text-left .link_label {
        float: left;
    }

    .copyright {
        display: none;
    }

    .mailto {
        /*display: none;*/
    }

    #footer {
        min-height: 160px;
        padding: 40px 0 40px 0;
    }

        #footer .row {
            font-size: 15px !important;
        }

        #footer .pull-right {
            float: none !important;
        }

    .logo_footer {
        width: 60px;
        margin-right: 20px;
    }

    .footer-col-1 {
        padding: 0 0 0 0;
    }

    .footer-col-2 table {
        height: 0;
        line-height: 0;
    }

    .footer-col-3 {
        padding: 0 20px 0 0
    }

    .footer_text {
        display: none;
    }

    .mobileadres {
        padding-left: 20px !important;
    }

    .desktopicons {
        display: none;
    }

    .mobileicons {
        display: block;
        margin-left: 10px;
    }

    .img-responsive {
        display: none;
    }

        .img-responsive.mobile {
            display: block;
        }

    .block_contact {
        padding: 35px 15px;
        flex-direction: column;
        align-items: center;
        align-content: flex-start;
    }

    .block_contact_text-left {
        padding-right: 0;
        text-align: left;
    }

    .block_contact_text-right {
        padding-left: 0;
        padding-top: 15px;
    }

    .block_contact_text_title {
        text-align: center;
        padding-top: 20px;
    }

    .block_contact_text {
        max-width: 100%;
    }

    .arrowmobile {
        display: block !important;
    }

    .fa-arrow-left, .fa-arrow-right {
        /*display:none;*/
    }

    div.footer-icon.link_footer {
        font-size: 16px;
        height: 28px;
        width: 28px;
        padding: 0;
        display: inline-flex;
        justify-content: center;
        align-items: center;
    }

    .link_footer-arrow_mobile {
        display: none;
    }
}

@media only screen and (min-device-width : 375px) and (max-device-width : 812px) and (-webkit-device-pixel-ratio : 3) {

    :root {
        --block-margin: 2em;
    }

    p {
        margin: 0;
    }

    h1, h2, h3 {
        margin: 0;
    }

        h1, h1.bold, h1.light {
            font-size: 32px;
            line-height: 40px;
        }

        h2, h2.bold, h2.light {
            font-size: 24px;
            line-height: 30px;
        }

        h3, h3.bold, h3.light {
            font-size: 24px;
            line-height: 30px;
        }

            h1.bold, h2.bold, h3.bold {
                font-weight: bold;
            }

    .vert-center-text {
        font-size: 12px;
        /* top: 10%; */
        /* transform: none; */
    }

    .grid-sizer,
    .grid-item {
        width: 100% !important;
    }

    .intro {
        font-size: 16px;
    }

    .text {
        font-size: 15px;
    }

    .full-width-text {
        padding-top: 0;
        padding-bottom: 0;
    }

    .row {
        margin: 0;
        max-width: 100%;
        font-size: 12px;
    }

        .row .block {
            flex: 0 0 100%;
            width: 100% !important;
        }

            .row .block h3, .row .block h2, .row .block .intro, .row .block .text {
                padding-left: 20px;
                padding-right: 20px;
                width: 100%;
                margin: 0 auto 0 0;
            }

    .container {
        margin: 0 20px;
    }

    .block {
        text-align: left;
    }

    body > div.container-fluid > div.row.row_block:first-of-type > div.block:first-of-type {
        margin-top: 0;
    }

    .row {
        flex-direction: column;
    }

        .row > .block {
            margin-top: var(--block-margin);
            margin-bottom: var(--block-margin);
        }

    .row_block_full-width {
        margin-top: var(--block-margin);
        margin-bottom: var(--block-margin);
    }

    .row > .block.full-width-text {
        margin-top: var(--block-margin);
        margin-bottom: var(--block-margin);
    }

    .row > .block .link:last-child {
        margin-top: 0 !important;
    }

    #content > div:nth-last-child(1) {
        /* Ensures last block sticks to footer */
        margin-bottom: 0;
    }

        #content > div:nth-last-child(1) > .block {
            /* Ensures last block sticks to footer */
            padding-bottom: var(--block-margin);
            padding-top: 0;
            width: 100%;
        }

    .row-left {
        flex-direction: column-reverse;
    }

    .woordmerk {
        display: none;
    }

    .logo_top {
        display: inline-block;
        position: relative;
        top: 20px;
        left: calc(50% - 60px);
        margin: 0;
        width: 80px;
        height: 80px;
    }

        .logo_top img {
            width: 120px;
        }

    .menu {
        display: inline-block;
        float: right;
        width: 80px;
        height: 80px;
        background-color: #000;
        background: url(/Content/img/menu-small.png) no-repeat center top;
        cursor: pointer;
    }

        .menu:hover {
            background: url(/Content/img/menu_hover_small.png) no-repeat center top;
        }

    .header_menu {
        display: none;
    }

    .header_menu_mobile {
        padding: 20px;
        text-align: center;
        display: block;
        float: right;
        color: #fff;
    }

    .header_text {
        position: absolute;
        bottom: 30px;
        left: 20px;
        top: unset;
        color: #fff;
        font-size: 14px;
        padding-right: 20px;
    }

        .header_text h1 {
            margin-bottom: 0;
            font-size: 32px;
line-height:32px;
            color: #fff;
        }

    .gordijn_close {
        float: right;
        width: 80px;
        height: 80px;
        background: url(/Content/img/menu_close_small.png) no-repeat center top;
        cursor: pointer;
    }

        .gordijn_close:hover {
            background: url(/Content/img/menu_close_hover_small.png) no-repeat center top;
            transform: rotate(90deg);
            transition: transform 0.5s;
        }

    .gordijn_content {
        position: absolute;
        left: 30px;
        top: 80px;
        width: 80%;
    }

    .submenu {
        float: left;
        width: 100%;
        padding-bottom: 40px;
    }

    .gordijn_text {
        float: left;
        margin-top: -40px;
        width: 100%;
        font-family: 'FilsonProLight', Arial, sans-serif;
        font-size: 14px;
    }

    .gordijn h1 {
        font-family: 'FilsonProBold', Arial, sans-serif;
        font-size: 32px;
    }

    .gordijn h2 {
        font-family: 'FilsonProLight', Arial, sans-serif;
        font-size: 22px;
        line-height: 30px;
    }

    .gordijn .link {
        float: left;
        text-align: left;
        margin-right: 0;
        align-items: flex-end;
    }

    .gordijn .link {
        /*background: url(/Content/img/btn_arrow.png) no-repeat bottom left;*/
    }

    .gordijn .link_label {
        /*background-color: #fff;*/
    }

    .link_label {
        display: inline-block;
        font-size: 13px;
        overflow-wrap: break-word;
        text-align: center;
    }

    .header {
        position: relative;
        max-height: 600px;
    }

    .row > .block_text {
        padding-top: 0;
    }

    .block_text-right h3, .block_text-right h2, .block_text-right .intro, .block_text-right .text {
        padding-left: 20px;
        padding-right: 20px;
        width: 100%;
        margin: 0 auto 0 0;
    }

    .block_text-left h3,
    .block_text-left h2,
    .block_text-left .intro,
    .block_text-left .link,
    .block_text-left .text {
        padding-right: 20px;
        padding-left: 20px;
        margin: 0 0 0 auto;
    }

    .row_block_full-width h3,
    .row_block_full-width h2,
    .row_block_full-width .intro,
    .row_block_full-width .link,
    .row_block_full-width .text {
        padding-right: 20px;
        padding-left: 20px;
    }

    .block_text > .block_text_inner {
        display: flex;
        flex-direction: column;
        width: 100%;
    }

        .block_text > .block_text_inner a:last-of-type {
            margin-top: 2em;
        }

    .link {
        min-width: 0;
        margin-bottom: 0 !important;
    }

    .intro {
        margin-bottom: 0 !important;
    }

    .block_text-left .link {
        /*background: url(/Content/img/btn_arrow.png) no-repeat bottom left;*/
    }

    .block_text-left .link {
        float: left;
    }

    .block_text-left .link_label {
        float: left;
    }

    .copyright {
        display: none;
    }

    .mailto {
        /*display: none;*/
    }

    #footer {
        min-height: 160px;
        padding: 40px 0 40px 0;
    }

        #footer .row {
            font-size: 15px !important;
        }

        #footer .pull-right {
            float: none !important;
        }

    .logo_footer {
        width: 60px;
        margin-right: 20px;
    }

    .footer-col-1 {
        padding: 0 0 0 0;
    }

    .footer-col-2 table {
        height: 0;
        line-height: 0;
    }

    .footer-col-3 {
        padding: 0 20px 0 0
    }

    .footer_text {
        display: none;
    }

    .mobileadres {
        padding-left: 20px !important;
    }

    .desktopicons {
        display: none;
    }

    .mobileicons {
        display: block;
        margin-left: 10px;
    }

    .img-responsive {
        display: none;
    }

        .img-responsive.mobile {
            display: block;
        }

    .block_contact {
        padding: 35px 15px;
        flex-direction: column;
        align-items: center;
        align-content: flex-start;
    }

    .block_contact_text-left {
        padding-right: 0;
        text-align: left;
    }

    .block_contact_text-right {
        padding-left: 0;
        padding-top: 15px;
    }

    .block_contact_text_title {
        text-align: center;
        padding-top: 20px;
    }

    .block_contact_text {
        max-width: 100%;
    }

    .arrowmobile {
        display: block !important;
    }

    .fa-arrow-left, .fa-arrow-right {
        /*display:none;*/
    }

    div.footer-icon.link_footer {
        font-size: 16px;
        height: 28px;
        width: 28px;
        padding: 0;
        display: inline-flex;
        justify-content: center;
        align-items: center;
    }

    .link_footer-arrow_mobile {
        display: none;
    }


}
