@charset "UTF-8";
/*!
Theme Name: gbl toolbox
Theme URI: http://www.globulebleu.com
Author: globulebleu
Author URI: http://www.globulebleu.com
Description: gbl toolbox
Version: 3.5.1
!*/
/*!
 * 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,
.owl-item {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.animated.infinite,
.owl-item.infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}
.animated.hinge,
.owl-item.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.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  40%,
  43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
  }
  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0);
  }
}
@keyframes bounce {
  from,
  20%,
  53%,
  80%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  40%,
  43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
  }
  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0);
  }
}
.bounce {
  -webkit-animation-name: bounce;
  animation-name: bounce;
  -webkit-transform-origin: center bottom;
  transform-origin: center bottom;
}
@-webkit-keyframes flash {
  from,
  50%,
  to {
    opacity: 1;
  }
  25%,
  75% {
    opacity: 0;
  }
}
@keyframes flash {
  from,
  50%,
  to {
    opacity: 1;
  }
  25%,
  75% {
    opacity: 0;
  }
}
.flash {
  -webkit-animation-name: flash;
  animation-name: flash;
}
/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.pulse {
  -webkit-animation-name: pulse;
  animation-name: pulse;
}
@-webkit-keyframes rubberBand {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes rubberBand {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.rubberBand {
  -webkit-animation-name: rubberBand;
  animation-name: rubberBand;
}
@-webkit-keyframes shake {
  from,
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  10%,
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  20%,
  40%,
  60%,
  80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}
@keyframes shake {
  from,
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  10%,
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  20%,
  40%,
  60%,
  80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}
.shake {
  -webkit-animation-name: shake;
  animation-name: shake;
}
@-webkit-keyframes 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(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }
  40%,
  60%,
  80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes tada {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  10%,
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }
  40%,
  60%,
  80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.tada {
  -webkit-animation-name: tada;
  animation-name: tada;
}
/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes wobble {
  from {
    -webkit-transform: none;
    transform: none;
  }
  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }
  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }
  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }
  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }
  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }
  to {
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes wobble {
  from {
    -webkit-transform: none;
    transform: none;
  }
  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }
  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }
  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }
  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }
  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }
  to {
    -webkit-transform: none;
    transform: none;
  }
}
.wobble {
  -webkit-animation-name: wobble;
  animation-name: wobble;
}
@-webkit-keyframes jello {
  from,
  11.1%,
  to {
    -webkit-transform: none;
    transform: none;
  }
  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }
  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg);
  }
  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }
  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }
  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }
  77.7% {
    -webkit-transform: skewX(0.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.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes bounceIn {
  from,
  20%,
  40%,
  60%,
  80%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.bounceIn {
  -webkit-animation-name: bounceIn;
  animation-name: bounceIn;
}
@-webkit-keyframes bounceInDown {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0);
  }
  to {
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes bounceInDown {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0);
  }
  to {
    -webkit-transform: none;
    transform: none;
  }
}
.bounceInDown {
  -webkit-animation-name: bounceInDown;
  animation-name: bounceInDown;
}
@-webkit-keyframes bounceInLeft {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
    transform: translate3d(-3000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0);
  }
  to {
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes bounceInLeft {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
    transform: translate3d(-3000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0);
  }
  to {
    -webkit-transform: none;
    transform: none;
  }
}
.bounceInLeft {
  -webkit-animation-name: bounceInLeft;
  animation-name: bounceInLeft;
}
@-webkit-keyframes bounceInRight {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
    transform: translate3d(3000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
    transform: translate3d(-25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
    transform: translate3d(-5px, 0, 0);
  }
  to {
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes bounceInRight {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
    transform: translate3d(3000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
    transform: translate3d(-25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
    transform: translate3d(-5px, 0, 0);
  }
  to {
    -webkit-transform: none;
    transform: none;
  }
}
.bounceInRight {
  -webkit-animation-name: bounceInRight;
  animation-name: bounceInRight;
}
@-webkit-keyframes bounceInUp {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
    transform: translate3d(0, 3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes bounceInUp {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
    transform: translate3d(0, 3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.bounceInUp {
  -webkit-animation-name: bounceInUp;
  animation-name: bounceInUp;
}
@-webkit-keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  50%,
  55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
@keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  50%,
  55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
.bounceOut {
  -webkit-animation-name: bounceOut;
  animation-name: bounceOut;
}
@-webkit-keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  40%,
  45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
@keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  40%,
  45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
.bounceOutDown {
  -webkit-animation-name: bounceOutDown;
  animation-name: bounceOutDown;
}
@-webkit-keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0);
    transform: translate3d(20px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
@keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0);
    transform: translate3d(20px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
.bounceOutLeft {
  -webkit-animation-name: bounceOutLeft;
  animation-name: bounceOutLeft;
}
@-webkit-keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0);
    transform: translate3d(-20px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
@keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0);
    transform: translate3d(-20px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
.bounceOutRight {
  -webkit-animation-name: bounceOutRight;
  animation-name: bounceOutRight;
}
@-webkit-keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  40%,
  45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
@keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  40%,
  45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
.bounceOutUp {
  -webkit-animation-name: bounceOutUp;
  animation-name: bounceOutUp;
}
@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}
@-webkit-keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}
@-webkit-keyframes fadeInDownBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInDownBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInDownBig {
  -webkit-animation-name: fadeInDownBig;
  animation-name: fadeInDownBig;
}
@-webkit-keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}
@-webkit-keyframes fadeInLeftBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInLeftBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInLeftBig {
  -webkit-animation-name: fadeInLeftBig;
  animation-name: fadeInLeftBig;
}
@-webkit-keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}
@-webkit-keyframes fadeInRightBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInRightBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInRightBig {
  -webkit-animation-name: fadeInRightBig;
  animation-name: fadeInRightBig;
}
@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}
@-webkit-keyframes fadeInUpBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInUpBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInUpBig {
  -webkit-animation-name: fadeInUpBig;
  animation-name: fadeInUpBig;
}
@-webkit-keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}
@-webkit-keyframes fadeOutDown {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
@keyframes fadeOutDown {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
.fadeOutDown {
  -webkit-animation-name: fadeOutDown;
  animation-name: fadeOutDown;
}
@-webkit-keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
@keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
.fadeOutDownBig {
  -webkit-animation-name: fadeOutDownBig;
  animation-name: fadeOutDownBig;
}
@-webkit-keyframes fadeOutLeft {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
@keyframes fadeOutLeft {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
.fadeOutLeft {
  -webkit-animation-name: fadeOutLeft;
  animation-name: fadeOutLeft;
}
@-webkit-keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
@keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
.fadeOutLeftBig {
  -webkit-animation-name: fadeOutLeftBig;
  animation-name: fadeOutLeftBig;
}
@-webkit-keyframes fadeOutRight {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
@keyframes fadeOutRight {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
.fadeOutRight {
  -webkit-animation-name: fadeOutRight;
  animation-name: fadeOutRight;
}
@-webkit-keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
@keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
.fadeOutRightBig {
  -webkit-animation-name: fadeOutRightBig;
  animation-name: fadeOutRightBig;
}
@-webkit-keyframes fadeOutUp {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
@keyframes fadeOutUp {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
.fadeOutUp {
  -webkit-animation-name: fadeOutUp;
  animation-name: fadeOutUp;
}
@-webkit-keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
@keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
.fadeOutUpBig {
  -webkit-animation-name: fadeOutUpBig;
  animation-name: fadeOutUpBig;
}
@-webkit-keyframes flip {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  40% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  50% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}
@keyframes flip {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  40% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  50% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}
.animated.flip {
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
  -webkit-animation-name: flip;
  animation-name: flip;
}
@-webkit-keyframes flipInX {
  from {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
@keyframes flipInX {
  from {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
.flipInX {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInX;
  animation-name: flipInX;
}
@-webkit-keyframes flipInY {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
@keyframes flipInY {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
.flipInY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInY;
  animation-name: flipInY;
}
@-webkit-keyframes flipOutX {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}
@keyframes flipOutX {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}
.flipOutX {
  -webkit-animation-name: flipOutX;
  animation-name: flipOutX;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
}
@-webkit-keyframes flipOutY {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}
@keyframes flipOutY {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}
.flipOutY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipOutY;
  animation-name: flipOutY;
}
@-webkit-keyframes lightSpeedIn {
  from {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
    opacity: 1;
  }
  to {
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
@keyframes lightSpeedIn {
  from {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
    opacity: 1;
  }
  to {
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
.lightSpeedIn {
  -webkit-animation-name: lightSpeedIn;
  animation-name: lightSpeedIn;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}
@-webkit-keyframes lightSpeedOut {
  from {
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}
@keyframes lightSpeedOut {
  from {
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}
.lightSpeedOut {
  -webkit-animation-name: lightSpeedOut;
  animation-name: lightSpeedOut;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
}
@-webkit-keyframes rotateIn {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
@keyframes rotateIn {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
.rotateIn {
  -webkit-animation-name: rotateIn;
  animation-name: rotateIn;
}
@-webkit-keyframes rotateInDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
@keyframes rotateInDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
.rotateInDownLeft {
  -webkit-animation-name: rotateInDownLeft;
  animation-name: rotateInDownLeft;
}
@-webkit-keyframes rotateInDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
@keyframes rotateInDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
.rotateInDownRight {
  -webkit-animation-name: rotateInDownRight;
  animation-name: rotateInDownRight;
}
@-webkit-keyframes rotateInUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
@keyframes rotateInUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
.rotateInUpLeft {
  -webkit-animation-name: rotateInUpLeft;
  animation-name: rotateInUpLeft;
}
@-webkit-keyframes rotateInUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
@keyframes rotateInUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
.rotateInUpRight {
  -webkit-animation-name: rotateInUpRight;
  animation-name: rotateInUpRight;
}
@-webkit-keyframes rotateOut {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}
@keyframes rotateOut {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}
.rotateOut {
  -webkit-animation-name: rotateOut;
  animation-name: rotateOut;
}
@-webkit-keyframes rotateOutDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}
@keyframes rotateOutDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}
.rotateOutDownLeft {
  -webkit-animation-name: rotateOutDownLeft;
  animation-name: rotateOutDownLeft;
}
@-webkit-keyframes rotateOutDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
@keyframes rotateOutDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
.rotateOutDownRight {
  -webkit-animation-name: rotateOutDownRight;
  animation-name: rotateOutDownRight;
}
@-webkit-keyframes rotateOutUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
@keyframes rotateOutUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
.rotateOutUpLeft {
  -webkit-animation-name: rotateOutUpLeft;
  animation-name: rotateOutUpLeft;
}
@-webkit-keyframes rotateOutUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}
@keyframes rotateOutUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}
.rotateOutUpRight {
  -webkit-animation-name: rotateOutUpRight;
  animation-name: rotateOutUpRight;
}
@-webkit-keyframes hinge {
  0% {
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  20%,
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 80deg);
    transform: rotate3d(0, 0, 1, 80deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  40%,
  80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
    transform: rotate3d(0, 0, 1, 60deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}
@keyframes hinge {
  0% {
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  20%,
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 80deg);
    transform: rotate3d(0, 0, 1, 80deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  40%,
  80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
    transform: rotate3d(0, 0, 1, 60deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}
.hinge {
  -webkit-animation-name: hinge;
  animation-name: hinge;
}
/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes rollIn {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes rollIn {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.rollIn {
  -webkit-animation-name: rollIn;
  animation-name: rollIn;
}
/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes rollOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}
@keyframes rollOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}
.rollOut {
  -webkit-animation-name: rollOut;
  animation-name: rollOut;
}
@-webkit-keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
@keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
.zoomIn {
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn;
}
@-webkit-keyframes zoomInDown {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInDown {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInDown {
  -webkit-animation-name: zoomInDown;
  animation-name: zoomInDown;
}
@-webkit-keyframes zoomInLeft {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInLeft {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInLeft {
  -webkit-animation-name: zoomInLeft;
  animation-name: zoomInLeft;
}
@-webkit-keyframes zoomInRight {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInRight {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInRight {
  -webkit-animation-name: zoomInRight;
  animation-name: zoomInRight;
}
@-webkit-keyframes zoomInUp {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInUp {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInUp {
  -webkit-animation-name: zoomInUp;
  animation-name: zoomInUp;
}
@-webkit-keyframes zoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}
@keyframes zoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}
.zoomOut {
  -webkit-animation-name: zoomOut;
  animation-name: zoomOut;
}
@-webkit-keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomOutDown {
  -webkit-animation-name: zoomOutDown;
  animation-name: zoomOutDown;
}
@-webkit-keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    -webkit-transform-origin: left center;
    transform-origin: left center;
  }
}
@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    -webkit-transform-origin: left center;
    transform-origin: left center;
  }
}
.zoomOutLeft {
  -webkit-animation-name: zoomOutLeft;
  animation-name: zoomOutLeft;
}
@-webkit-keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
    transform: scale(0.1) translate3d(2000px, 0, 0);
    -webkit-transform-origin: right center;
    transform-origin: right center;
  }
}
@keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
    transform: scale(0.1) translate3d(2000px, 0, 0);
    -webkit-transform-origin: right center;
    transform-origin: right center;
  }
}
.zoomOutRight {
  -webkit-animation-name: zoomOutRight;
  animation-name: zoomOutRight;
}
@-webkit-keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomOutUp {
  -webkit-animation-name: zoomOutUp;
  animation-name: zoomOutUp;
}
@-webkit-keyframes slideInDown {
  from {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInDown {
  from {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.slideInDown {
  -webkit-animation-name: slideInDown;
  animation-name: slideInDown;
}
@-webkit-keyframes slideInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.slideInLeft {
  -webkit-animation-name: slideInLeft;
  animation-name: slideInLeft;
}
@-webkit-keyframes slideInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.slideInRight {
  -webkit-animation-name: slideInRight;
  animation-name: slideInRight;
}
@-webkit-keyframes slideInUp {
  from {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInUp {
  from {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.slideInUp {
  -webkit-animation-name: slideInUp;
  animation-name: slideInUp;
}
@-webkit-keyframes slideOutDown {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
@keyframes slideOutDown {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
.slideOutDown {
  -webkit-animation-name: slideOutDown;
  animation-name: slideOutDown;
}
@-webkit-keyframes slideOutLeft {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
@keyframes slideOutLeft {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
.slideOutLeft {
  -webkit-animation-name: slideOutLeft;
  animation-name: slideOutLeft;
}
@-webkit-keyframes slideOutRight {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
@keyframes slideOutRight {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
.slideOutRight {
  -webkit-animation-name: slideOutRight;
  animation-name: slideOutRight;
}
@-webkit-keyframes slideOutUp {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
@keyframes slideOutUp {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
.slideOutUp {
  -webkit-animation-name: slideOutUp;
  animation-name: slideOutUp;
}
.clearfix,
.container,
.container-fluid,
.row,
.nav,
.listing__news,
.page__error404 {
  *zoom: 1;
}
.clearfix:before,
.clearfix:after,
.container:before,
.container:after,
.container-fluid:before,
.container-fluid:after,
.row:before,
.row:after,
.nav:before,
.nav:after,
.listing__news:before,
.listing__news:after,
.page__error404:before,
.page__error404:after {
  content: " ";
  display: table;
}
.clearfix:after,
.container:after,
.container-fluid:after,
.row:after,
.nav:after,
.listing__news:after,
.page__error404:after {
  clear: both;
}
.clearfix:before,
.clearfix:after,
.container:before,
.container:after,
.container-fluid:before,
.container-fluid:after,
.row:before,
.row:after,
.nav:before,
.nav:after,
.listing__news:before,
.listing__news:after,
.page__error404:before,
.page__error404:after {
  content: " ";
  display: table;
}
.clearfix:after,
.container:after,
.container-fluid:after,
.row:after,
.nav:after,
.listing__news:after,
.page__error404:after {
  clear: both;
}
.center-block {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.pull-right {
  float: right !important;
}
.pull-left {
  float: left !important;
}
.hide {
  display: none !important;
}
.show {
  display: block !important;
}
.invisible {
  visibility: hidden;
}
.text-hide {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
}
.hidden {
  display: none !important;
  visibility: hidden !important;
}
.affix {
  position: fixed;
}
@-ms-viewport {
  width: device-width;
}
.visible-xs,
.visible-sm,
.visible-md,
.visible-lg {
  display: none !important;
}
.visible-xs-block,
.visible-xs-inline,
.visible-xs-inline-block,
.visible-sm-block,
.visible-sm-inline,
.visible-sm-inline-block,
.visible-md-block,
.visible-md-inline,
.visible-md-inline-block,
.visible-lg-block,
.visible-lg-inline,
.visible-lg-inline-block {
  display: none !important;
}
@media (max-width: 767px) {
  .visible-xs {
    display: block !important;
  }
  table.visible-xs {
    display: table;
  }
  tr.visible-xs {
    display: table-row !important;
  }
  th.visible-xs,
  td.visible-xs {
    display: table-cell !important;
  }
}
@media (max-width: 767px) {
  .visible-xs-block {
    display: block !important;
  }
}
@media (max-width: 767px) {
  .visible-xs-inline {
    display: inline !important;
  }
}
@media (max-width: 767px) {
  .visible-xs-inline-block {
    display: inline-block !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm {
    display: block !important;
  }
  table.visible-sm {
    display: table;
  }
  tr.visible-sm {
    display: table-row !important;
  }
  th.visible-sm,
  td.visible-sm {
    display: table-cell !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm-block {
    display: block !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm-inline {
    display: inline !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm-inline-block {
    display: inline-block !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md {
    display: block !important;
  }
  table.visible-md {
    display: table;
  }
  tr.visible-md {
    display: table-row !important;
  }
  th.visible-md,
  td.visible-md {
    display: table-cell !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md-block {
    display: block !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md-inline {
    display: inline !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md-inline-block {
    display: inline-block !important;
  }
}
@media (min-width: 1200px) {
  .visible-lg {
    display: block !important;
  }
  table.visible-lg {
    display: table;
  }
  tr.visible-lg {
    display: table-row !important;
  }
  th.visible-lg,
  td.visible-lg {
    display: table-cell !important;
  }
}
@media (min-width: 1200px) {
  .visible-lg-block {
    display: block !important;
  }
}
@media (min-width: 1200px) {
  .visible-lg-inline {
    display: inline !important;
  }
}
@media (min-width: 1200px) {
  .visible-lg-inline-block {
    display: inline-block !important;
  }
}
@media (max-width: 767px) {
  .hidden-xs {
    display: none !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .hidden-sm {
    display: none !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .hidden-md {
    display: none !important;
  }
}
@media (min-width: 1200px) {
  .hidden-lg {
    display: none !important;
  }
}
.visible-print {
  display: none !important;
}
@media print {
  .visible-print {
    display: block !important;
  }
  table.visible-print {
    display: table;
  }
  tr.visible-print {
    display: table-row !important;
  }
  th.visible-print,
  td.visible-print {
    display: table-cell !important;
  }
}
.visible-print-block {
  display: none !important;
}
@media print {
  .visible-print-block {
    display: block !important;
  }
}
.visible-print-inline {
  display: none !important;
}
@media print {
  .visible-print-inline {
    display: inline !important;
  }
}
.visible-print-inline-block {
  display: none !important;
}
@media print {
  .visible-print-inline-block {
    display: inline-block !important;
  }
}
@media print {
  .hidden-print {
    display: none !important;
  }
}
figure img {
  max-width: 100% !important;
  display: block;
}
/*! normalize.css v3.0.2 | MIT License | git.io/normalize */
html {
  font-family: sans-serif;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}
body {
  margin: 0;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block;
}
audio,
canvas,
progress,
video {
  display: inline-block;
  vertical-align: baseline;
}
audio:not([controls]) {
  display: none;
  height: 0;
}
[hidden],
template {
  display: none;
}
a {
  background-color: transparent;
}
a:active,
a:hover {
  outline: 0;
}
abbr[title] {
  border-bottom: 1px dotted;
}
b,
strong {
  font-weight: bold;
}
dfn {
  font-style: italic;
}
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}
mark {
  background: #ff0;
  color: #000;
}
small {
  font-size: 80%;
}
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sup {
  top: -0.5em;
}
sub {
  bottom: -0.25em;
}
img {
  border: 0;
}
svg:not(:root) {
  overflow: hidden;
}
figure {
  margin: 1em 40px;
}
hr {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
}
pre {
  overflow: auto;
}
code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}
button,
input,
optgroup,
select,
textarea {
  color: inherit;
  font: inherit;
  margin: 0;
}
button {
  overflow: visible;
}
button,
select {
  text-transform: none;
}
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  cursor: pointer;
}
button[disabled],
html input[disabled] {
  cursor: default;
}
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}
input {
  line-height: normal;
}
input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  padding: 0;
}
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto;
}
input[type="search"] {
  -webkit-appearance: textfield;
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}
legend {
  border: 0;
  padding: 0;
}
textarea {
  overflow: auto;
}
optgroup {
  font-weight: bold;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
td,
th {
  padding: 0;
}
.container {
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px;
}
@media (min-width: 768px) {
  .container {
    width: 750px;
  }
}
@media (min-width: 992px) {
  .container {
    width: 970px;
  }
}
@media (min-width: 1200px) {
  .container {
    width: 1170px;
  }
}
.container-fluid {
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px;
}
.row {
  margin-left: -15px;
  margin-right: -15px;
}
.col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12 {
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
}
.col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12 {
  float: left;
}
.col-xs-12 {
  width: 100%;
}
.col-xs-11 {
  width: 91.66666667%;
}
.col-xs-10 {
  width: 83.33333333%;
}
.col-xs-9 {
  width: 75%;
}
.col-xs-8 {
  width: 66.66666667%;
}
.col-xs-7 {
  width: 58.33333333%;
}
.col-xs-6 {
  width: 50%;
}
.col-xs-5 {
  width: 41.66666667%;
}
.col-xs-4 {
  width: 33.33333333%;
}
.col-xs-3 {
  width: 25%;
}
.col-xs-2 {
  width: 16.66666667%;
}
.col-xs-1 {
  width: 8.33333333%;
}
.col-xs-pull-12 {
  right: 100%;
}
.col-xs-pull-11 {
  right: 91.66666667%;
}
.col-xs-pull-10 {
  right: 83.33333333%;
}
.col-xs-pull-9 {
  right: 75%;
}
.col-xs-pull-8 {
  right: 66.66666667%;
}
.col-xs-pull-7 {
  right: 58.33333333%;
}
.col-xs-pull-6 {
  right: 50%;
}
.col-xs-pull-5 {
  right: 41.66666667%;
}
.col-xs-pull-4 {
  right: 33.33333333%;
}
.col-xs-pull-3 {
  right: 25%;
}
.col-xs-pull-2 {
  right: 16.66666667%;
}
.col-xs-pull-1 {
  right: 8.33333333%;
}
.col-xs-pull-0 {
  right: auto;
}
.col-xs-push-12 {
  left: 100%;
}
.col-xs-push-11 {
  left: 91.66666667%;
}
.col-xs-push-10 {
  left: 83.33333333%;
}
.col-xs-push-9 {
  left: 75%;
}
.col-xs-push-8 {
  left: 66.66666667%;
}
.col-xs-push-7 {
  left: 58.33333333%;
}
.col-xs-push-6 {
  left: 50%;
}
.col-xs-push-5 {
  left: 41.66666667%;
}
.col-xs-push-4 {
  left: 33.33333333%;
}
.col-xs-push-3 {
  left: 25%;
}
.col-xs-push-2 {
  left: 16.66666667%;
}
.col-xs-push-1 {
  left: 8.33333333%;
}
.col-xs-push-0 {
  left: auto;
}
.col-xs-offset-12 {
  margin-left: 100%;
}
.col-xs-offset-11 {
  margin-left: 91.66666667%;
}
.col-xs-offset-10 {
  margin-left: 83.33333333%;
}
.col-xs-offset-9 {
  margin-left: 75%;
}
.col-xs-offset-8 {
  margin-left: 66.66666667%;
}
.col-xs-offset-7 {
  margin-left: 58.33333333%;
}
.col-xs-offset-6 {
  margin-left: 50%;
}
.col-xs-offset-5 {
  margin-left: 41.66666667%;
}
.col-xs-offset-4 {
  margin-left: 33.33333333%;
}
.col-xs-offset-3 {
  margin-left: 25%;
}
.col-xs-offset-2 {
  margin-left: 16.66666667%;
}
.col-xs-offset-1 {
  margin-left: 8.33333333%;
}
.col-xs-offset-0 {
  margin-left: 0%;
}
@media (min-width: 768px) {
  .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12 {
    float: left;
  }
  .col-sm-12 {
    width: 100%;
  }
  .col-sm-11 {
    width: 91.66666667%;
  }
  .col-sm-10 {
    width: 83.33333333%;
  }
  .col-sm-9 {
    width: 75%;
  }
  .col-sm-8 {
    width: 66.66666667%;
  }
  .col-sm-7 {
    width: 58.33333333%;
  }
  .col-sm-6 {
    width: 50%;
  }
  .col-sm-5 {
    width: 41.66666667%;
  }
  .col-sm-4 {
    width: 33.33333333%;
  }
  .col-sm-3 {
    width: 25%;
  }
  .col-sm-2 {
    width: 16.66666667%;
  }
  .col-sm-1 {
    width: 8.33333333%;
  }
  .col-sm-pull-12 {
    right: 100%;
  }
  .col-sm-pull-11 {
    right: 91.66666667%;
  }
  .col-sm-pull-10 {
    right: 83.33333333%;
  }
  .col-sm-pull-9 {
    right: 75%;
  }
  .col-sm-pull-8 {
    right: 66.66666667%;
  }
  .col-sm-pull-7 {
    right: 58.33333333%;
  }
  .col-sm-pull-6 {
    right: 50%;
  }
  .col-sm-pull-5 {
    right: 41.66666667%;
  }
  .col-sm-pull-4 {
    right: 33.33333333%;
  }
  .col-sm-pull-3 {
    right: 25%;
  }
  .col-sm-pull-2 {
    right: 16.66666667%;
  }
  .col-sm-pull-1 {
    right: 8.33333333%;
  }
  .col-sm-pull-0 {
    right: auto;
  }
  .col-sm-push-12 {
    left: 100%;
  }
  .col-sm-push-11 {
    left: 91.66666667%;
  }
  .col-sm-push-10 {
    left: 83.33333333%;
  }
  .col-sm-push-9 {
    left: 75%;
  }
  .col-sm-push-8 {
    left: 66.66666667%;
  }
  .col-sm-push-7 {
    left: 58.33333333%;
  }
  .col-sm-push-6 {
    left: 50%;
  }
  .col-sm-push-5 {
    left: 41.66666667%;
  }
  .col-sm-push-4 {
    left: 33.33333333%;
  }
  .col-sm-push-3 {
    left: 25%;
  }
  .col-sm-push-2 {
    left: 16.66666667%;
  }
  .col-sm-push-1 {
    left: 8.33333333%;
  }
  .col-sm-push-0 {
    left: auto;
  }
  .col-sm-offset-12 {
    margin-left: 100%;
  }
  .col-sm-offset-11 {
    margin-left: 91.66666667%;
  }
  .col-sm-offset-10 {
    margin-left: 83.33333333%;
  }
  .col-sm-offset-9 {
    margin-left: 75%;
  }
  .col-sm-offset-8 {
    margin-left: 66.66666667%;
  }
  .col-sm-offset-7 {
    margin-left: 58.33333333%;
  }
  .col-sm-offset-6 {
    margin-left: 50%;
  }
  .col-sm-offset-5 {
    margin-left: 41.66666667%;
  }
  .col-sm-offset-4 {
    margin-left: 33.33333333%;
  }
  .col-sm-offset-3 {
    margin-left: 25%;
  }
  .col-sm-offset-2 {
    margin-left: 16.66666667%;
  }
  .col-sm-offset-1 {
    margin-left: 8.33333333%;
  }
  .col-sm-offset-0 {
    margin-left: 0%;
  }
}
@media (min-width: 992px) {
  .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12 {
    float: left;
  }
  .col-md-12 {
    width: 100%;
  }
  .col-md-11 {
    width: 91.66666667%;
  }
  .col-md-10 {
    width: 83.33333333%;
  }
  .col-md-9 {
    width: 75%;
  }
  .col-md-8 {
    width: 66.66666667%;
  }
  .col-md-7 {
    width: 58.33333333%;
  }
  .col-md-6 {
    width: 50%;
  }
  .col-md-5 {
    width: 41.66666667%;
  }
  .col-md-4 {
    width: 33.33333333%;
  }
  .col-md-3 {
    width: 25%;
  }
  .col-md-2 {
    width: 16.66666667%;
  }
  .col-md-1 {
    width: 8.33333333%;
  }
  .col-md-pull-12 {
    right: 100%;
  }
  .col-md-pull-11 {
    right: 91.66666667%;
  }
  .col-md-pull-10 {
    right: 83.33333333%;
  }
  .col-md-pull-9 {
    right: 75%;
  }
  .col-md-pull-8 {
    right: 66.66666667%;
  }
  .col-md-pull-7 {
    right: 58.33333333%;
  }
  .col-md-pull-6 {
    right: 50%;
  }
  .col-md-pull-5 {
    right: 41.66666667%;
  }
  .col-md-pull-4 {
    right: 33.33333333%;
  }
  .col-md-pull-3 {
    right: 25%;
  }
  .col-md-pull-2 {
    right: 16.66666667%;
  }
  .col-md-pull-1 {
    right: 8.33333333%;
  }
  .col-md-pull-0 {
    right: auto;
  }
  .col-md-push-12 {
    left: 100%;
  }
  .col-md-push-11 {
    left: 91.66666667%;
  }
  .col-md-push-10 {
    left: 83.33333333%;
  }
  .col-md-push-9 {
    left: 75%;
  }
  .col-md-push-8 {
    left: 66.66666667%;
  }
  .col-md-push-7 {
    left: 58.33333333%;
  }
  .col-md-push-6 {
    left: 50%;
  }
  .col-md-push-5 {
    left: 41.66666667%;
  }
  .col-md-push-4 {
    left: 33.33333333%;
  }
  .col-md-push-3 {
    left: 25%;
  }
  .col-md-push-2 {
    left: 16.66666667%;
  }
  .col-md-push-1 {
    left: 8.33333333%;
  }
  .col-md-push-0 {
    left: auto;
  }
  .col-md-offset-12 {
    margin-left: 100%;
  }
  .col-md-offset-11 {
    margin-left: 91.66666667%;
  }
  .col-md-offset-10 {
    margin-left: 83.33333333%;
  }
  .col-md-offset-9 {
    margin-left: 75%;
  }
  .col-md-offset-8 {
    margin-left: 66.66666667%;
  }
  .col-md-offset-7 {
    margin-left: 58.33333333%;
  }
  .col-md-offset-6 {
    margin-left: 50%;
  }
  .col-md-offset-5 {
    margin-left: 41.66666667%;
  }
  .col-md-offset-4 {
    margin-left: 33.33333333%;
  }
  .col-md-offset-3 {
    margin-left: 25%;
  }
  .col-md-offset-2 {
    margin-left: 16.66666667%;
  }
  .col-md-offset-1 {
    margin-left: 8.33333333%;
  }
  .col-md-offset-0 {
    margin-left: 0%;
  }
}
@media (min-width: 1200px) {
  .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12 {
    float: left;
  }
  .col-lg-12 {
    width: 100%;
  }
  .col-lg-11 {
    width: 91.66666667%;
  }
  .col-lg-10 {
    width: 83.33333333%;
  }
  .col-lg-9 {
    width: 75%;
  }
  .col-lg-8 {
    width: 66.66666667%;
  }
  .col-lg-7 {
    width: 58.33333333%;
  }
  .col-lg-6 {
    width: 50%;
  }
  .col-lg-5 {
    width: 41.66666667%;
  }
  .col-lg-4 {
    width: 33.33333333%;
  }
  .col-lg-3 {
    width: 25%;
  }
  .col-lg-2 {
    width: 16.66666667%;
  }
  .col-lg-1 {
    width: 8.33333333%;
  }
  .col-lg-pull-12 {
    right: 100%;
  }
  .col-lg-pull-11 {
    right: 91.66666667%;
  }
  .col-lg-pull-10 {
    right: 83.33333333%;
  }
  .col-lg-pull-9 {
    right: 75%;
  }
  .col-lg-pull-8 {
    right: 66.66666667%;
  }
  .col-lg-pull-7 {
    right: 58.33333333%;
  }
  .col-lg-pull-6 {
    right: 50%;
  }
  .col-lg-pull-5 {
    right: 41.66666667%;
  }
  .col-lg-pull-4 {
    right: 33.33333333%;
  }
  .col-lg-pull-3 {
    right: 25%;
  }
  .col-lg-pull-2 {
    right: 16.66666667%;
  }
  .col-lg-pull-1 {
    right: 8.33333333%;
  }
  .col-lg-pull-0 {
    right: auto;
  }
  .col-lg-push-12 {
    left: 100%;
  }
  .col-lg-push-11 {
    left: 91.66666667%;
  }
  .col-lg-push-10 {
    left: 83.33333333%;
  }
  .col-lg-push-9 {
    left: 75%;
  }
  .col-lg-push-8 {
    left: 66.66666667%;
  }
  .col-lg-push-7 {
    left: 58.33333333%;
  }
  .col-lg-push-6 {
    left: 50%;
  }
  .col-lg-push-5 {
    left: 41.66666667%;
  }
  .col-lg-push-4 {
    left: 33.33333333%;
  }
  .col-lg-push-3 {
    left: 25%;
  }
  .col-lg-push-2 {
    left: 16.66666667%;
  }
  .col-lg-push-1 {
    left: 8.33333333%;
  }
  .col-lg-push-0 {
    left: auto;
  }
  .col-lg-offset-12 {
    margin-left: 100%;
  }
  .col-lg-offset-11 {
    margin-left: 91.66666667%;
  }
  .col-lg-offset-10 {
    margin-left: 83.33333333%;
  }
  .col-lg-offset-9 {
    margin-left: 75%;
  }
  .col-lg-offset-8 {
    margin-left: 66.66666667%;
  }
  .col-lg-offset-7 {
    margin-left: 58.33333333%;
  }
  .col-lg-offset-6 {
    margin-left: 50%;
  }
  .col-lg-offset-5 {
    margin-left: 41.66666667%;
  }
  .col-lg-offset-4 {
    margin-left: 33.33333333%;
  }
  .col-lg-offset-3 {
    margin-left: 25%;
  }
  .col-lg-offset-2 {
    margin-left: 16.66666667%;
  }
  .col-lg-offset-1 {
    margin-left: 8.33333333%;
  }
  .col-lg-offset-0 {
    margin-left: 0%;
  }
}
/*
* Bootstrap components - LOAD ONLY WHAT YOU NEED !
*/
.fade {
  opacity: 0;
  -o-transition: opacity 0.15s linear;
  -webkit-transition: opacity 0.15s linear;
  transition: opacity 0.15s linear;
}
.fade.in {
  opacity: 1;
}
.collapse {
  display: none;
  visibility: hidden;
}
.collapse.in {
  display: block;
  visibility: visible;
}
tr.collapse.in {
  display: table-row;
}
tbody.collapse.in {
  display: table-row-group;
}
.collapsing {
  position: relative;
  height: 0;
  overflow: hidden;
  transition: all 250ms ease;
}
.nav {
  margin-bottom: 0;
  padding-left: 0;
  list-style: none;
}
.nav > li {
  position: relative;
  display: block;
}
.nav > li > a {
  position: relative;
  display: block;
  padding: 10px 15px;
}
.nav > li > a:hover,
.nav > li > a:focus {
  text-decoration: none;
  background-color: #eeeeee;
}
.nav > li.disabled > a {
  color: #777777;
}
.nav > li.disabled > a:hover,
.nav > li.disabled > a:focus {
  color: #777777;
  text-decoration: none;
  background-color: transparent;
  cursor: not-allowed;
}
.nav .open > a,
.nav .open > a:hover,
.nav .open > a:focus {
  background-color: #eeeeee;
  border-color: #428bca;
}
.nav .nav-divider {
  height: 1px;
  margin: 10px 0;
  overflow: hidden;
  background-color: #e5e5e5;
}
.nav > li > a > img {
  max-width: none;
}
.nav-tabs {
  border-bottom: 1px solid #dddddd;
}
.nav-tabs > li {
  float: left;
  margin-bottom: -1px;
}
.nav-tabs > li > a {
  margin-right: 2px;
  line-height: 1.42857143;
  border: 1px solid transparent;
  border-radius: 4px 4px 0 0;
}
.nav-tabs > li > a:hover {
  border-color: #eeeeee #eeeeee #dddddd;
}
.nav-tabs > li.active > a,
.nav-tabs > li.active > a:hover,
.nav-tabs > li.active > a:focus {
  color: #555555;
  background-color: #ffffff;
  border: 1px solid #dddddd;
  border-bottom-color: transparent;
  cursor: default;
}
.nav-tabs.nav-justified {
  width: 100%;
  border-bottom: 0;
}
.nav-tabs.nav-justified > li {
  float: none;
}
.nav-tabs.nav-justified > li > a {
  text-align: center;
  margin-bottom: 5px;
}
.nav-tabs.nav-justified > .dropdown .dropdown-menu {
  top: auto;
  left: auto;
}
@media (min-width: 768px) {
  .nav-tabs.nav-justified > li {
    display: table-cell;
    width: 1%;
  }
  .nav-tabs.nav-justified > li > a {
    margin-bottom: 0;
  }
}
.nav-tabs.nav-justified > li > a {
  margin-right: 0;
  border-radius: 4px;
}
.nav-tabs.nav-justified > .active > a,
.nav-tabs.nav-justified > .active > a:hover,
.nav-tabs.nav-justified > .active > a:focus {
  border: 1px solid #dddddd;
}
@media (min-width: 768px) {
  .nav-tabs.nav-justified > li > a {
    border-bottom: 1px solid #dddddd;
    border-radius: 4px 4px 0 0;
  }
  .nav-tabs.nav-justified > .active > a,
  .nav-tabs.nav-justified > .active > a:hover,
  .nav-tabs.nav-justified > .active > a:focus {
    border-bottom-color: #ffffff;
  }
}
.nav-pills > li {
  float: left;
}
.nav-pills > li > a {
  border-radius: 4px;
}
.nav-pills > li + li {
  margin-left: 2px;
}
.nav-pills > li.active > a,
.nav-pills > li.active > a:hover,
.nav-pills > li.active > a:focus {
  color: #ffffff;
  background-color: #428bca;
}
.nav-stacked > li {
  float: none;
}
.nav-stacked > li + li {
  margin-top: 2px;
  margin-left: 0;
}
.nav-justified {
  width: 100%;
}
.nav-justified > li {
  float: none;
}
.nav-justified > li > a {
  text-align: center;
  margin-bottom: 5px;
}
.nav-justified > .dropdown .dropdown-menu {
  top: auto;
  left: auto;
}
@media (min-width: 768px) {
  .nav-justified > li {
    display: table-cell;
    width: 1%;
  }
  .nav-justified > li > a {
    margin-bottom: 0;
  }
}
.nav-tabs-justified {
  border-bottom: 0;
}
.nav-tabs-justified > li > a {
  margin-right: 0;
  border-radius: 4px;
}
.nav-tabs-justified > .active > a,
.nav-tabs-justified > .active > a:hover,
.nav-tabs-justified > .active > a:focus {
  border: 1px solid #dddddd;
}
@media (min-width: 768px) {
  .nav-tabs-justified > li > a {
    border-bottom: 1px solid #dddddd;
    border-radius: 4px 4px 0 0;
  }
  .nav-tabs-justified > .active > a,
  .nav-tabs-justified > .active > a:hover,
  .nav-tabs-justified > .active > a:focus {
    border-bottom-color: #ffffff;
  }
}
.tab-content > .tab-pane {
  display: none;
  visibility: hidden;
}
.tab-content > .active {
  display: block;
  visibility: visible;
}
.nav-tabs .dropdown-menu {
  margin-top: -1px;
  -webkit-border-top-left-radius: 0;
  -moz-border-top-left-radius: 0;
  border-top-left-radius: 0;
  -webkit-border-top-right-radius: 0;
  -moz-border-top-right-radius: 0;
  border-top-right-radius: 0;
}
/* Mixins for px to em */
.space-invaders {
  padding-top: 3.125em;
  padding-bottom: 3.125em;
}
@media (min-width: 768px) {
  .space-invaders {
    padding-top: 3.125em;
    padding-bottom: 3.125em;
  }
}
@media (min-width: 992px) {
  .space-invaders {
    padding-top: 4.375em;
    padding-bottom: 4.375em;
  }
}
@media (min-width: 1200px) {
  .space-invaders {
    padding-top: 6.25em;
    padding-bottom: 6.25em;
  }
}
.embed-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 100%;
  height: auto;
}
.embed-container iframe,
.embed-container object,
.embed-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.made-by-gbl {
  -o-transition: none;
  -webkit-transition: none;
  transition: none;
  float: right;
  display: block;
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
  background: transparent url(img/layout/made-by-globule-bleu.png) 0 0px no-repeat;
  width: 48px;
  height: 17px;
}
.made-by-gbl:hover {
  background-position: 0 -17px;
}
.reset-ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
a {
  color: #a5cf4c;
  text-decoration: none;
  -o-transition: all 250ms ease-in-out;
  -webkit-transition: all 250ms ease-in-out;
  transition: all 250ms ease-in-out;
}
a:hover,
a:focus {
  color: #b9da74;
}
::-moz-selection {
  background: #2a6496;
  color: #333333;
  text-shadow: none;
}
::selection {
  background: #2a6496;
  color: #333333;
  text-shadow: none;
}
* {
  box-sizing: border-box;
}
html {
  font-size: 16px;
  line-height: 1.5;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
body {
  margin: 0;
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  color: #454545;
  background-color: #ffffff;
  overflow-x: hidden;
}
strong,
b {
  font-weight: 700;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 .5em 0;
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
}
p {
  margin: 0 0 1em;
}
button {
  background: transparent;
  display: inline-block;
  border: none;
  outline: none;
}
button[title] {
  background-color: black;
}
figure {
  margin: 0;
}
.btn {
  background: transparent;
  z-index: 2;
  color: #454545;
  border: none;
  font-size: 12px;
  display: inline-block;
  vertical-align: middle;
  text-transform: uppercase;
  position: relative;
  -webkit-transition: color 0.3s;
  -moz-transition: color 0.3s;
  transition: color 0.3s;
  font-weight: 700;
}
.btn:after {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 13px;
  height: 7px;
  margin-left: 1em;
  background: url('img/layout/sprite.png') 0 0 no-repeat;
}
.btn:hover,
.btn:focus {
  color: #a5cf4c;
}
.btn:hover:after,
.btn:focus:after {
  background-position: 0 -7px;
}
.tab-content > .tab-pane {
  display: none;
  visibility: hidden;
}
.tab-content > .active {
  display: block;
  visibility: visible;
}
#primary article ul li {
  list-style: none;
  position: relative;
  padding: 0 0 0 1em;
}
#primary article ul li:before {
  content: '/ ';
  color: #a5cf4c;
  position: absolute;
  top: 0;
  left: 0;
}
#primary article ul li li:before {
  content: '– ';
  color: #454545;
}
#primary article .nav-pills > li:before {
  display: none;
}
#primary article li.tab-pane:before {
  display: none;
}
#primary article li.tab-pane ul li:before {
  display: inline;
  content: '/ ';
  color: #a5cf4c;
}
#primary article li.tab-pane ul li li:before {
  display: inline;
  content: '– ';
  color: #454545;
}
#primary article ul.sitempaMenu {
  padding: 0;
}
#primary article ul.sitempaMenu li:before {
  display: none;
}
#primary article ul.sitempaMenu li a {
  color: #454545;
}
#primary article ul.sitempaMenu > li {
  margin: 0 0 1em;
}
#primary article ul.sitempaMenu > li > a {
  font-weight: 700;
  text-transform: uppercase;
}
#primary article ul.sitempaMenu > li > a:hover {
  color: #a5cf4c;
}
#primary article ul.sitempaMenu .sub-menu {
  padding: 0;
  margin: 0 0 3em;
}
#primary article ul.sitempaMenu .sub-menu a:hover {
  color: #a5cf4c;
}
#header-main {
  padding: 1em;
  *zoom: 1;
}
#header-main:before,
#header-main:after {
  content: " ";
  display: table;
}
#header-main:after {
  clear: both;
}
#header-main:before,
#header-main:after {
  content: " ";
  display: table;
}
#header-main:after {
  clear: both;
}
#header-main:before,
#header-main:after {
  content: " ";
  display: table;
}
#header-main:after {
  clear: both;
}
#header-main:before,
#header-main:after {
  content: " ";
  display: table;
}
#header-main:after {
  clear: both;
}
@media (min-width: 1200px) {
  #header-main {
    padding: 3em;
  }
}
@media (min-width: 1400px) {
  #header-main {
    padding: 1.875em 6.25em;
  }
}
@media (min-width: 1900px) {
  #header-main {
    padding: 1.875em 12.5em;
  }
}
#branding {
  float: left;
  padding: 1em;
  width: 100%;
}
@media (min-width: 540px) {
  #branding {
    width: 400px;
    padding-top: 0.5em;
  }
}
@media (min-width: 768px) {
  #branding {
    width: 450px;
  }
}
@media (min-width: 1200px) {
  #branding {
    padding-top: 0.4em;
  }
}
@media (min-width: 1300px) {
  .home #branding {
    width: 360px;
  }
}
@media (min-width: 1530px) {
  .home #branding {
    width: 470px;
  }
}
.home #branding .logo {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
  background: url('img/layout/logo-home.jpg') 0 0 no-repeat;
  background-size: contain;
}
@media (min-width: 992px) {
  .home #branding .logo {
    margin-bottom: 20px;
  }
}
.home #branding a {
  display: block;
  width: 100%;
  height: 50px;
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
  white-space: nowrap;
  overflow: hidden;
  background: transparent url('img/layout/logo.svg') 0 0 no-repeat;
  -webkit-background-size: contain;
  -moz-background-size: contain;
  -o-background-size: contain;
  background-size: contain;
  padding: 0;
}
@media (min-width: 540px) {
  .home #branding a {
    display: block;
    width: 100%;
    height: 60px;
    font: 0/0 a;
    color: transparent;
    text-shadow: none;
    background-color: transparent;
    border: 0;
    white-space: nowrap;
    overflow: hidden;
    background: transparent url('img/layout/logo.svg') 0 0 no-repeat;
    -webkit-background-size: contain;
    -moz-background-size: contain;
    -o-background-size: contain;
    background-size: contain;
    padding: 0;
    background: url('img/layout/logo-home.svg') 0 0 no-repeat;
  }
}
@media (min-width: 768px) {
  .home #branding a {
    display: block;
    width: 100%;
    height: 70px;
    font: 0/0 a;
    color: transparent;
    text-shadow: none;
    background-color: transparent;
    border: 0;
    white-space: nowrap;
    overflow: hidden;
    background: transparent url('img/layout/logo.svg') 0 0 no-repeat;
    -webkit-background-size: contain;
    -moz-background-size: contain;
    -o-background-size: contain;
    background-size: contain;
    padding: 0;
    background: url('img/layout/logo-home.svg') 0 0 no-repeat;
  }
}
@media (min-width: 1200px) {
  .home #branding a {
    display: block;
    width: 100%;
    height: 35px;
    font: 0/0 a;
    color: transparent;
    text-shadow: none;
    background-color: transparent;
    border: 0;
    white-space: nowrap;
    overflow: hidden;
    background: transparent url('img/layout/logo.svg') 0 0 no-repeat;
    -webkit-background-size: contain;
    -moz-background-size: contain;
    -o-background-size: contain;
    background-size: contain;
    padding: 0;
    background: url('img/layout/logo-home.svg') 0 0 no-repeat;
  }
}
@media (min-width: 1300px) {
  .home #branding a {
    display: block;
    width: 100%;
    height: 55px;
    font: 0/0 a;
    color: transparent;
    text-shadow: none;
    background-color: transparent;
    border: 0;
    white-space: nowrap;
    overflow: hidden;
    background: transparent url('img/layout/logo.svg') 0 0 no-repeat;
    -webkit-background-size: contain;
    -moz-background-size: contain;
    -o-background-size: contain;
    background-size: contain;
    padding: 0;
    background: url('img/layout/logo-home.svg') 0 0 no-repeat;
  }
}
@media (min-width: 1440px) {
  .home #branding a {
    display: block;
    width: 100%;
    height: 60px;
    font: 0/0 a;
    color: transparent;
    text-shadow: none;
    background-color: transparent;
    border: 0;
    white-space: nowrap;
    overflow: hidden;
    background: transparent url('img/layout/logo.svg') 0 0 no-repeat;
    -webkit-background-size: contain;
    -moz-background-size: contain;
    -o-background-size: contain;
    background-size: contain;
    padding: 0;
    background: url('img/layout/logo-home.svg') 0 0 no-repeat;
  }
}
@media (min-width: 1530px) {
  .home #branding a {
    display: block;
    width: 100%;
    height: 70px;
    font: 0/0 a;
    color: transparent;
    text-shadow: none;
    background-color: transparent;
    border: 0;
    white-space: nowrap;
    overflow: hidden;
    background: transparent url('img/layout/logo.svg') 0 0 no-repeat;
    -webkit-background-size: contain;
    -moz-background-size: contain;
    -o-background-size: contain;
    background-size: contain;
    padding: 0;
    background: url('img/layout/logo-home.svg') 0 0 no-repeat;
  }
}
#branding h1 {
  display: none;
}
#branding a {
  display: block;
  width: 220px;
  height: 28px;
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
  white-space: nowrap;
  overflow: hidden;
  background: transparent url('img/layout/logo.svg') 0 0 no-repeat;
  -webkit-background-size: contain;
  -moz-background-size: contain;
  -o-background-size: contain;
  background-size: contain;
  padding: 0;
}
@media (max-width: 991px) {
  .nav-desktop {
    display: none;
  }
}
.header__search {
  position: relative;
  float: right;
  display: inline-block;
  width: 35px;
  height: 35px;
  padding-top: 10px;
  vertical-align: middle;
}
@media (max-width: 991px) {
  .header__search {
    margin-right: 1em;
  }
}
.header__search .search-field {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  z-index: 2;
  width: 35px;
  font-size: 0.8125em;
  border: 0;
  background-color: transparent;
  -o-transition: all 250ms ease-in-out;
  -webkit-transition: all 250ms ease-in-out;
  transition: all 250ms ease-in-out;
  cursor: pointer;
}
.header__search .search-field::-webkit-input-placeholder {
  /* WebKit, Blink, Edge */
  color: transparent;
}
.header__search .search-field:-moz-placeholder {
  /* Mozilla Firefox 4 to 18 */
  color: transparent;
  opacity: 0;
}
.header__search .search-field::-moz-placeholder {
  /* Mozilla Firefox 19+ */
  color: transparent;
  opacity: 0;
}
.header__search .search-field:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: transparent;
}
@media (min-width: 768px) {
  .header__search .search-field {
    left: auto;
    right: 0;
  }
}
.header__search .active .search-field {
  width: 200px;
  padding-left: .66666666667em;
  background-color: #f8f8f8;
}
.header__search .active .search-field:focus {
  outline: none !important;
  border: 1px solid #f8f8f8;
}
.header__search .active .search-field::-webkit-input-placeholder {
  /* WebKit, Blink, Edge */
  color: #454545;
}
.header__search .active .search-field:-moz-placeholder {
  /* Mozilla Firefox 4 to 18 */
  color: #454545;
  opacity: 1;
}
.header__search .active .search-field::-moz-placeholder {
  /* Mozilla Firefox 19+ */
  color: #454545;
  opacity: 1;
}
.header__search .active .search-field:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #454545;
}
.header__search .search-submit {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
  display: block;
  width: 19px;
  height: 18px;
  margin: 0 0 0 7px;
  background: url('img/layout/sprite.png') -32px 0 no-repeat;
}
.onlineService {
  padding-top: 0.625em;
  width: 18px;
  height: 18px;
  display: block;
  float: right;
}
.onlineService a {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
  background: transparent url('img/layout/padlock.svg') 0 0 no-repeat;
  width: 18px;
  height: 18px;
  display: block;
}
.no-svg .onlineService a {
  background-image: url('img/trigger.png');
}
@media (max-width: 1199px) {
  #access {
    width: 100%;
    overflow: hidden;
    margin: 0 auto 0;
    padding: 0.5em 0;
  }
}
@media (min-width: 1200px) {
  #access {
    float: right;
    width: auto;
  }
  #access .main-nav {
    float: right;
    padding-right: 1.875em;
  }
}
@media (max-width: 1199px) {
  #access.open {
    padding-bottom: 1.25em;
    border-bottom: 2px solid #a5cf4c;
  }
}
@media (min-width: 1200px) {
  #access.open .second-nav {
    filter: alpha(opacity=100);
    opacity: 1;
    filter: alpha(opacity= 100 );
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
    -o-transition: all 250ms ease-in-out;
    -webkit-transition: all 250ms ease-in-out;
    transition: all 250ms ease-in-out;
  }
}
@media (min-width: 1200px) {
  #access.open .second-nav {
    width: 300px;
  }
}
#access ul {
  list-style: none;
  margin: 0;
  padding: 0;
  clear: both;
}
@media (min-width: 1200px) {
  #access ul {
    padding: 0;
    clear: inherit;
  }
}
#access .main-nav .menu > li:first-child > a {
  cursor: default;
}
#access .main-nav .menu > li:first-child > a:hover {
  color: #454545;
}
@media (max-width: 1199px) {
  #access li {
    text-align: center;
  }
}
@media (min-width: 1200px) {
  #access li {
    float: left;
    position: relative;
  }
}
#access a {
  position: relative;
  display: block;
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  font-size: 0.875em;
  padding: 1em;
  margin: 0;
  color: #454545;
  text-transform: uppercase;
}
@media (max-width: 1199px) {
  #access a {
    line-height: 2em;
  }
}
@media (min-width: 1200px) {
  #access a {
    padding: .625em 1.785714285714286em;
  }
  #access a:hover {
    color: #a5cf4c;
  }
}
@media (min-width: 1200px) and (max-width: 1199px) {
  #access a {
    padding: .625em 1.3em;
  }
}
#access li.current-menu-item > a:after {
  content: "";
  position: absolute;
  bottom: .625em;
  left: 50%;
  margin-left: -7px;
  width: 14px;
  height: 1px;
  background-color: #a5cf4c;
}
@media (min-width: 1200px) {
  #access li.current-menu-item > a:after {
    bottom: .25em;
  }
}
@media (max-width: 1199px) {
  #access ul ul {
    margin-top: -15px;
  }
}
@media (min-width: 1200px) {
  #access ul ul {
    display: none;
    float: left;
    position: absolute;
    top: 2em;
    left: 0;
    z-index: 99999;
    padding: .5em 0;
    background-color: #f8f8f8;
  }
}
#access ul ul li.current-menu-item a {
  color: #a5cf4c;
}
#access ul ul li.current-menu-item a:after {
  display: none;
}
#access ul ul a {
  line-height: 1.3;
  padding: .75em 2em;
  height: auto;
  text-transform: none;
  font-weight: 400;
}
@media (min-width: 1200px) {
  #access ul ul a {
    width: 12em;
  }
}
@media (min-width: 1200px) {
  #access ul li:hover > ul {
    display: block;
  }
}
#access.close {
  display: none;
}
@media (min-width: 1200px) {
  #access.close {
    display: block;
  }
}
#access-trigger {
  float: right;
  display: inline-block;
  width: 20px;
  height: 17px;
  text-indent: -9999em;
  background-image: url('img/trigger.svg?v=7');
  background-repeat: no-repeat;
  background-position: 0 0;
  margin: 10px 0 0;
  -moz-background-size: 20px 17px;
  background-size: 20px 17px;
}
.no-svg #access-trigger {
  background-image: url('img/trigger.png');
}
@media (min-width: 1200px) {
  #access-trigger {
    display: none;
  }
}
#footer-main {
  padding: 1.25em;
  background-color: #454545;
  color: #fff;
}
@media (min-width: 768px) {
  #footer-main {
    *zoom: 1;
  }
  #footer-main:before,
  #footer-main:after {
    content: " ";
    display: table;
  }
  #footer-main:after {
    clear: both;
  }
  #footer-main:before,
  #footer-main:after {
    content: " ";
    display: table;
  }
  #footer-main:after {
    clear: both;
  }
  #footer-main:before,
  #footer-main:after {
    content: " ";
    display: table;
  }
  #footer-main:after {
    clear: both;
  }
  #footer-main:before,
  #footer-main:after {
    content: " ";
    display: table;
  }
  #footer-main:after {
    clear: both;
  }
}
@media (min-width: 992px) {
  #footer-main {
    padding: 1.25em 6.25em;
  }
}
@media (min-width: 1900px) {
  #footer-main {
    padding: 1.25em 12.5em;
  }
}
@media (min-width: 768px) {
  #colophon {
    float: left;
    width: calc(100% -100px);
    width: -moz-calc(100% -100px);
    width: -webkit-calc(100% -100px);
    width: -o-calc(100% -100px);
  }
  #colophon p {
    margin-bottom: 0;
  }
}
.credit {
  display: inline-block;
  vertical-align: middle;
  font-size: 0.75em;
  color: #cdcdcd;
}
.credit a {
  color: #fff;
}
.copyright {
  display: inline-block;
  vertical-align: middle;
  float: right;
  padding-top: 6px;
}
@media (min-width: 991px) {
  .copyright {
    float: none;
  }
}
.copyright a {
  -o-transition: none;
  -webkit-transition: none;
  transition: none;
  float: right;
  display: block;
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
  background: transparent url(img/layout/made-by-globule-bleu.png) 0 0px no-repeat;
  width: 48px;
  height: 17px;
}
.copyright a:hover {
  background-position: 0 -17px;
}
.footer-social {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.footer-social li {
  display: inline-block;
  margin-left: .625em;
  vertical-align: middle;
}
.footer-social .footer-social__links {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
  display: block;
  width: 19px;
  height: 15px;
}
.footer-social .is-linkedin {
  background: url('img/layout/sprite.png') -13px -28px no-repeat;
}
.footer-social .is-linkedin:hover,
.footer-social .is-linkedin:focus {
  background-position: -13px -43px;
}
.footer-social .is-twitter {
  background: url('img/layout/sprite.png') -32px -28px no-repeat;
}
.footer-social .is-twitter:hover,
.footer-social .is-twitter:focus {
  background-position: -32px -43px;
}
@media (min-width: 768px) {
  .footer-social {
    float: right;
    width: 70px;
  }
}
#slide {
  padding: 1em;
  display: block;
  overflow: hidden;
}
#slide .owl-nav {
  display: none;
}
#slide .item {
  display: none;
}
#slide .owl-item .item {
  display: block;
}
#slide p {
  margin-top: 1em;
  font-size: 1.625em;
  font-weight: 300;
  font-family: 'Roboto', sans-serif;
  line-height: 1.2;
}
#slide .btn:before {
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  margin: 1em 0;
  background-color: #a5cf4c;
}
@media (min-width: 768px) {
  #slide {
    padding: 3.125em 0;
  }
  #slide .item {
    *zoom: 1;
  }
  #slide .item:before,
  #slide .item:after {
    content: " ";
    display: table;
  }
  #slide .item:after {
    clear: both;
  }
  #slide .item:before,
  #slide .item:after {
    content: " ";
    display: table;
  }
  #slide .item:after {
    clear: both;
  }
  #slide .item:before,
  #slide .item:after {
    content: " ";
    display: table;
  }
  #slide .item:after {
    clear: both;
  }
  #slide .item:before,
  #slide .item:after {
    content: " ";
    display: table;
  }
  #slide .item:after {
    clear: both;
  }
  #slide figure {
    float: left;
    width: 50%;
  }
  #slide figure img {
    margin-left: auto;
  }
  #slide p,
  #slide .btn {
    float: right;
    padding: 0 50px 0 30px;
    width: 50%;
  }
  #slide h2 {
    margin-top: 5em;
  }
}
@media (min-width: 992px) {
  #slide {
    padding: .625em 0 1.25em;
  }
  #slide p {
    margin-top: 6em;
  }
  #slide figure {
    width: 55%;
  }
  #slide p,
  #slide .btn {
    width: 45%;
  }
}
@media (min-width: 1200px) {
  #slide p,
  #slide .btn {
    padding: 0 160px 0 30px;
  }
}
@media (min-width: 1900px) {
  #slide p,
  #slide .btn {
    padding: 0 400px 0 30px;
  }
}
@media (min-height: 900px) {
  #slide {
    padding: 1.875em 0 3.125em;
  }
}
.villeAdresse {
  text-align: center;
  margin: 2em 0;
  text-transform: uppercase;
  font-size: 1.25em;
}
.scroll-btn {
  position: relative;
  z-index: 4;
  width: 100%;
  height: 81px;
  background: url('img/layout/scroll.png') top center no-repeat;
  margin-bottom: -4em;
}
.bottom-home {
  padding: 2.1875em 1em 3.125em;
}
.bottom-home h2 {
  font-size: 1.75em;
  font-weight: 300;
}
@media (min-width: 768px) {
  .bottom-home {
    *zoom: 1;
  }
  .bottom-home:before,
  .bottom-home:after {
    content: " ";
    display: table;
  }
  .bottom-home:after {
    clear: both;
  }
  .bottom-home:before,
  .bottom-home:after {
    content: " ";
    display: table;
  }
  .bottom-home:after {
    clear: both;
  }
  .bottom-home:before,
  .bottom-home:after {
    content: " ";
    display: table;
  }
  .bottom-home:after {
    clear: both;
  }
  .bottom-home:before,
  .bottom-home:after {
    content: " ";
    display: table;
  }
  .bottom-home:after {
    clear: both;
  }
}
@media (min-width: 992px) {
  .bottom-home {
    padding: 3.125em 1em 4.375em;
  }
}
.people__bottom h2 {
  color: #a28fad;
}
.people__bottom .btn {
  color: #a28fad;
}
@media (max-width: 767px) {
  .people__bottom {
    padding-bottom: 3.125em;
    margin-bottom: 3.125em;
    border-bottom: 1px solid #dadada;
  }
}
@media (min-width: 768px) {
  .people__bottom {
    float: left;
    padding: 0 1.875em 0 1.25em;
    width: 50%;
    border-right: 1px solid #dadada;
  }
}
@media (min-width: 992px) {
  .people__bottom {
    padding: 0 6.25em 0 5.3125em;
  }
}
@media (min-width: 1900px) {
  .people__bottom {
    padding: 0 12.5em 0 10.625em;
  }
}
.news__bottom {
  padding: 4.375em 1em 2.1875em;
  background: url('img/layout/pattern.jpg') 0 0 repeat;
  border-bottom: 1px solid #dadada;
}
.news__bottom h2 {
  font-size: 1.75em;
  font-weight: 300;
}
.news__bottom h2 a {
  color: #9ec1bd;
}
.news__bottom h3 {
  font-size: 1.125em;
}
.news__bottom .read-more-excerpt {
  background: transparent;
  z-index: 2;
  color: #9ec1bd;
  border: none;
  font-size: 12px;
  display: inline-block;
  vertical-align: middle;
  text-transform: uppercase;
  position: relative;
  -webkit-transition: color 0.3s;
  -moz-transition: color 0.3s;
  transition: color 0.3s;
  font-weight: 700;
  margin-top: 1em;
  display: block;
}
.news__bottom .read-more-excerpt:after {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 13px;
  height: 7px;
  margin-left: 1em;
  background: url('img/layout/sprite.png') 0 0 no-repeat;
}
.news__bottom .read-more-excerpt:hover,
.news__bottom .read-more-excerpt:focus {
  color: #7fada8;
}
.news__bottom .read-more-excerpt:hover:after,
.news__bottom .read-more-excerpt:focus:after {
  background-position: 0 -7px;
}
.news__bottom .read-more-excerpt:after {
  background-position: 0 -21px;
}
.news__bottom .read-more-excerpt:hover:after,
.news__bottom .read-more-excerpt:focus:after {
  background-position: 0 -21px;
}
@media (min-width: 768px) {
  .news__bottom {
    padding: 4.375em 1.25em 2.1875em 1em;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    flex-flow: row wrap;
  }
  .news__bottom h2 {
    margin-left: 20px;
    flex: 1 0 100%;
  }
}
@media (min-width: 992px) {
  .news__bottom {
    padding: 6.25em 5.3125em 3.125em 80px;
  }
}
@media (min-width: 1200px) {
  .news__bottom {
    padding: 6.25em 5.3125em 3.125em 50px;
  }
  .news__bottom h2 {
    margin-left: 50px;
  }
}
@media (min-width: 1900px) {
  .news__bottom {
    padding: 6.25em 10.625em 3.125em 135px;
  }
}
.news__list .place {
  margin-bottom: 5px;
  font-size: 14px;
  color: #9ec1bd;
}
.news__list .place .placeWrapper {
  position: relative;
  left: -4px;
}
@media (min-width: 768px) {
  .news__list {
    width: 33.333333333333%;
    padding: 0 20px;
    border-right: 1px solid #dadada;
  }
  .news__list:last-child {
    border-right: 0;
  }
}
@media (min-width: 1200px) {
  .news__list {
    padding: 0 50px;
  }
}
.newsletter__bottom h3 {
  color: #a5cf4c;
  font-weight: 300;
  font-size: 1.75em;
}
@media (min-width: 768px) {
  .newsletter__bottom {
    padding: 0 1.25em 0 1.875em;
    float: right;
    width: 50%;
  }
}
@media (min-width: 992px) {
  .newsletter__bottom {
    padding: 0 5.3125em 0 6.25em;
  }
}
@media (min-width: 1900px) {
  .newsletter__bottom {
    padding: 0 10.625em 0 12.5em;
  }
}
.mailerlite-form {
  position: relative;
  width: 300px;
}
.mailerlite-form input[type="email"] {
  width: 100%;
  height: 40px;
  padding-left: 15px;
  font-size: 14px;
  outline: none;
}
.mailerlite-form .mailerlite-subscribe-submit {
  background-color: #a5cf4c;
  text-transform: uppercase;
  font-weight: 400;
  color: #fff;
  border: 0;
  padding: 11px 15px;
  font-size: 13px;
  position: absolute;
  bottom: 0;
  right: 0;
}
.inner__header {
  padding: 1.875em 1em;
}
.inner__header figure img {
  margin: 0 auto;
}
.inner__header h1 {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 1.875em;
  line-height: 1;
  font-weight: 300;
}
@media (min-width: 768px) {
  .inner__header {
    *zoom: 1;
    position: relative;
    padding: 1.875em;
  }
  .inner__header:before,
  .inner__header:after {
    content: " ";
    display: table;
  }
  .inner__header:after {
    clear: both;
  }
  .inner__header:before,
  .inner__header:after {
    content: " ";
    display: table;
  }
  .inner__header:after {
    clear: both;
  }
  .inner__header:before,
  .inner__header:after {
    content: " ";
    display: table;
  }
  .inner__header:after {
    clear: both;
  }
  .inner__header:before,
  .inner__header:after {
    content: " ";
    display: table;
  }
  .inner__header:after {
    clear: both;
  }
  .inner__header figure {
    float: left;
    width: 40%;
  }
  .inner__header figure img {
    margin-right: 0;
  }
}
@media (min-width: 992px) {
  .inner__header {
    padding: 1.875em 6.25em;
  }
}
@media (min-width: 1600px) {
  .inner__header {
    padding: 1.875em 12.5em;
  }
}
.inner__header--right {
  padding-top: 3.125em;
}
@media (min-width: 768px) {
  .inner__header--right {
    float: right;
    width: 60%;
  }
}
@media (min-width: 1400px) {
  .inner__header--right {
    padding: 6.25em 6.25em 0 3.125em;
  }
}
.section-inner {
  padding-top: 3.125em;
  padding-bottom: 3.125em;
  padding-left: 1em;
  padding-right: 1em;
}
@media (min-width: 768px) {
  .section-inner {
    padding-top: 3.125em;
    padding-bottom: 3.125em;
  }
}
@media (min-width: 992px) {
  .section-inner {
    padding-top: 4.375em;
    padding-bottom: 4.375em;
  }
}
@media (min-width: 1200px) {
  .section-inner {
    padding-top: 6.25em;
    padding-bottom: 6.25em;
  }
}
.section-inner:nth-child(odd) {
  background-color: #f8f8f8;
}
.section-inner:nth-child(4n) {
  background-image: url('img/layout/pattern.jpg');
  background-repeat: repeat;
  background-position: 0 0;
}
.section-inner h2 {
  color: #a5cf4c;
  font-weight: 800;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.section-inner ul {
  margin: 0;
  padding: 0 0 0 1em;
}
.section-inner ul > li {
  list-style-image: url('img/layout/list-style2.png');
}
.section-inner ul > li ul > li {
  list-style-image: url('img/layout/list-style-tiret.png');
}
.section-inner li {
  margin-bottom: .625em;
}
@media (min-width: 768px) {
  .section-inner {
    padding-left: 3.125em;
    padding-right: 3.125em;
  }
}
@media (min-width: 992px) {
  .section-inner {
    padding-left: 6.25em;
    padding-right: 6.25em;
  }
}
@media (min-width: 1600px) {
  .section-inner {
    padding-left: 12.5em;
    padding-right: 12.5em;
  }
}
@media (min-width: 992px) {
  .title-columns {
    *zoom: 1;
  }
  .title-columns:before,
  .title-columns:after {
    content: " ";
    display: table;
  }
  .title-columns:after {
    clear: both;
  }
  .title-columns:before,
  .title-columns:after {
    content: " ";
    display: table;
  }
  .title-columns:after {
    clear: both;
  }
  .title-columns:before,
  .title-columns:after {
    content: " ";
    display: table;
  }
  .title-columns:after {
    clear: both;
  }
  .title-columns:before,
  .title-columns:after {
    content: " ";
    display: table;
  }
  .title-columns:after {
    clear: both;
  }
  .title-columns .title-left {
    float: left;
    padding-right: 1.875em;
    width: 25%;
  }
  .title-columns .text-middle {
    float: left;
    padding-left: 1em;
    padding-right: 1em;
    width: 37%;
  }
  .title-columns .text-middle.block-half {
    width: 50%;
  }
  .title-columns .text-right {
    float: right;
    padding-left: 1.875em;
    width: 37%;
  }
  .title-columns .text-right.block-half {
    width: 50%;
  }
}
@media (min-width: 1400px) {
  .title-columns .title-left {
    padding-right: 5em;
  }
  .title-columns .text-middle {
    padding-left: 2.5em;
    padding-right: 2.5em;
  }
  .title-columns .text-right {
    padding-left: 5em;
  }
}
.text-center {
  text-align: center;
}
.text-center .text {
  max-width: 650px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .image-text {
    *zoom: 1;
  }
  .image-text:before,
  .image-text:after {
    content: " ";
    display: table;
  }
  .image-text:after {
    clear: both;
  }
  .image-text:before,
  .image-text:after {
    content: " ";
    display: table;
  }
  .image-text:after {
    clear: both;
  }
  .image-text:before,
  .image-text:after {
    content: " ";
    display: table;
  }
  .image-text:after {
    clear: both;
  }
  .image-text:before,
  .image-text:after {
    content: " ";
    display: table;
  }
  .image-text:after {
    clear: both;
  }
  .image-text .text {
    float: right;
    width: 60%;
  }
}
@media (min-width: 992px) {
  .image-text .text {
    float: right;
    width: 70%;
    padding-top: 1.875em;
    *zoom: 1;
  }
  .image-text .text:before,
  .image-text .text:after {
    content: " ";
    display: table;
  }
  .image-text .text:after {
    clear: both;
  }
  .image-text .text:before,
  .image-text .text:after {
    content: " ";
    display: table;
  }
  .image-text .text:after {
    clear: both;
  }
  .image-text .text:before,
  .image-text .text:after {
    content: " ";
    display: table;
  }
  .image-text .text:after {
    clear: both;
  }
  .image-text .text:before,
  .image-text .text:after {
    content: " ";
    display: table;
  }
  .image-text .text:after {
    clear: both;
  }
  .image-text .text .left {
    float: left;
    padding-right: 1.875em;
    width: 50%;
  }
  .image-text .text .right {
    float: right;
    padding-left: 1.875em;
    width: 50%;
  }
  .image-text .text.no-title {
    padding-top: 0;
  }
}
@media (min-width: 1200px) {
  .image-text {
    padding-left: 12.5em;
    padding-right: 12.5em;
  }
  .image-text h2 {
    position: relative;
    z-index: 2;
    padding: .25em 1em;
  }
}
@media (min-width: 1400px) {
  .image-text .text .left {
    padding-right: 5em;
  }
  .image-text .text .right {
    padding-left: 5em;
  }
}
@media (min-width: 1600px) {
  .image-text {
    padding-left: 18.75em;
    padding-right: 18.75em;
  }
}
.bloc-image {
  /* background-color: #fff; */
}
@media (max-width: 767px) {
  .bloc-image {
    margin: 1.875em 0;
  }
}
@media (min-width: 768px) {
  .image-left {
    float: left;
    width: 40%;
  }
}
@media (min-width: 992px) {
  .image-left {
    float: left;
    padding-right: 3.125em;
    width: 30%;
  }
}
@media (min-width: 1200px) {
  .image-left {
    padding-right: 5em;
  }
  .image-left.no-title {
    margin-top: 0;
  }
}
.inner__quote {
  max-width: 450px;
  padding-top: 2em;
  position: relative;
  z-index: 2;
  margin: 2em 0 0;
}
.inner__quote:before {
  content: "";
  display: block;
  position: absolute;
  top: 1em;
  left: -0.625em;
  width: 48px;
  height: 38px;
  background: url('img/layout/sprite.png') 0 -58px no-repeat;
  z-index: -1;
}
.inner__quote p {
  font-style: italic;
  font-size: 1.375em;
  line-height: 1.6;
  color: rgba(69, 69, 69, 0.8);
  margin-bottom: 0;
}
.inner__quote em {
  display: inline-block;
  font-style: normal;
  color: rgba(69, 69, 69, 0.8);
  font-size: 0.63636364em;
  font-weight: 300;
}
.inner__quote em:before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 60px;
  height: 1px;
  margin-right: 1.5em;
  background-color: #dadada;
}
@media (min-width: 768px) {
  .inner__quote {
    padding: 1.25em;
    max-width: 480px;
    background-color: rgba(255, 255, 255, 0.5);
  }
  .inner__quote:before {
    top: .3125em;
  }
  .inner__quote p {
    font-size: 1.275em;
  }
}
.quote__author {
  text-align: right;
}
h2 {
  position: relative;
}
.number-title {
  color: #454545;
  opacity: 0.1;
  font-size: 1.5625em;
  font-size: 100px;
  font-weight: normal;
  display: block;
}
.text-center .number-title {
  margin: 0 auto 15px;
}
.people__list {
  padding: 1.875em 1.25em;
}
.people__list:nth-child(even) {
  background-color: #f8f8f8;
}
.people__list:nth-child(even) .people__head {
  background-color: #fff;
}
.people__list figure img {
  display: block;
  width: 100%;
  height: auto;
}
.people__list h2 {
  margin-bottom: 0;
  line-height: 1.3;
}
@media (min-width: 992px) {
  .people__list {
    padding: 3.125em;
  }
}
@media (min-width: 1400px) {
  .people__list {
    padding-left: 6.25em;
    padding-right: 6.25em;
  }
}
.people__head {
  background-color: #f8f8f8;
}
@media (min-width: 768px) {
  .people__head {
    *zoom: 1;
  }
  .people__head:before,
  .people__head:after {
    content: " ";
    display: table;
  }
  .people__head:after {
    clear: both;
  }
  .people__head:before,
  .people__head:after {
    content: " ";
    display: table;
  }
  .people__head:after {
    clear: both;
  }
  .people__head:before,
  .people__head:after {
    content: " ";
    display: table;
  }
  .people__head:after {
    clear: both;
  }
  .people__head:before,
  .people__head:after {
    content: " ";
    display: table;
  }
  .people__head:after {
    clear: both;
  }
}
.people__info {
  padding: 1.25em;
}
.people__info > p > em {
  color: #929292;
}
.people__info p {
  margin-bottom: 0;
}
.people__info .left {
  margin-bottom: 1em;
  margin-top: 1em;
}
.people__info .right {
  margin-bottom: 1em;
}
@media (min-width: 992px) {
  .people__info .right {
    margin-top: 1em;
  }
}
@media (min-width: 768px) {
  .people__info {
    float: right;
    padding-left: 1.25em;
    width: 50%;
  }
}
@media (min-width: 992px) {
  .people__info {
    *zoom: 1;
  }
  .people__info:before,
  .people__info:after {
    content: " ";
    display: table;
  }
  .people__info:after {
    clear: both;
  }
  .people__info:before,
  .people__info:after {
    content: " ";
    display: table;
  }
  .people__info:after {
    clear: both;
  }
  .people__info:before,
  .people__info:after {
    content: " ";
    display: table;
  }
  .people__info:after {
    clear: both;
  }
  .people__info:before,
  .people__info:after {
    content: " ";
    display: table;
  }
  .people__info:after {
    clear: both;
  }
  .people__info .left {
    float: left;
    padding-right: 1.875em;
    width: 50%;
  }
  .people__info .right {
    float: right;
    padding-left: 1.875em;
    border-left: 1px solid #dadada;
    width: 50%;
  }
}
@media (min-width: 1200px) {
  .people__info .left {
    width: 40%;
  }
  .people__info .right {
    width: 60%;
  }
}
@media (max-width: 767px) {
  .people__picture {
    margin-bottom: 1em;
  }
}
@media (min-width: 768px) {
  .people__picture {
    float: left;
    width: 50%;
  }
}
@media (min-width: 768px) {
  .people__content {
    padding-top: 1.25em;
  }
}
@media (min-width: 992px) {
  .people__content {
    -webkit-columns: 2;
    /* Chrome, Safari, Opera */
    -moz-columns: 2;
    /* Firefox */
    columns: 2;
    -webkit-column-gap: 3.125em;
    /* Chrome, Safari, Opera */
    -moz-column-gap: 3.125em;
    /* Firefox */
    column-gap: 3.125em;
    padding-top: 1.875em;
  }
}
/*********************** TABS *************/
@media (min-width: 992px) {
  .people__list {
    padding: 0;
    margin: 3.125em;
    -webkit-box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    display: flex;
  }
}
@media (min-width: 1400px) {
  .people__list {
    max-width: 1300px;
    margin: 3.125em auto;
  }
}
.people__list #peopleTab {
  margin: 0;
  padding: 0;
  list-style-type: none;
  padding-bottom: 1em;
  overflow: hidden;
  border-bottom: 1px solid #dfdfdf;
}
@media (min-width: 992px) {
  .people__list #peopleTab {
    border-bottom: 0;
    width: 35%;
    padding-bottom: 0;
  }
}
@media (min-width: 1200px) {
  .people__list #peopleTab {
    width: 30%;
  }
}
@media (min-width: 1400px) {
  .people__list #peopleTab {
    width: 25%;
  }
}
.people__list #peopleTab li {
  *zoom: 1;
  float: left;
  margin: 0.5em;
}
.people__list #peopleTab li:before,
.people__list #peopleTab li:after {
  content: " ";
  display: table;
}
.people__list #peopleTab li:after {
  clear: both;
}
.people__list #peopleTab li:before,
.people__list #peopleTab li:after {
  content: " ";
  display: table;
}
.people__list #peopleTab li:after {
  clear: both;
}
.people__list #peopleTab li:before,
.people__list #peopleTab li:after {
  content: " ";
  display: table;
}
.people__list #peopleTab li:after {
  clear: both;
}
.people__list #peopleTab li:before,
.people__list #peopleTab li:after {
  content: " ";
  display: table;
}
.people__list #peopleTab li:after {
  clear: both;
}
.people__list #peopleTab li:nth-child(4n+1) {
  margin-left: 0;
}
@media (min-width: 992px) {
  .people__list #peopleTab li {
    padding: 15px 30px;
    border-bottom: 1px solid #dfdfdf;
    border-right: 1px solid #dfdfdf;
    float: none;
    background-color: #f8f8f8;
    margin: 0;
  }
  .people__list #peopleTab li.active {
    background-color: #fff;
    border-right: 0;
    position: relative;
  }
  .people__list #peopleTab li.active:before {
    content: "";
    display: block;
    position: absolute;
    width: 3px;
    height: 100%;
    top: 0;
    bottom: 0;
    left: 0;
    background-color: #a5cf4c;
  }
}
.people__list #peopleTab li a {
  display: flex;
  align-items: center;
}
.people__list #peopleTab li a figure {
  display: none;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
}
@media (min-width: 992px) {
  .people__list #peopleTab li a figure {
    float: left;
    width: 46px;
    height: 46px;
  }
}
.people__list #peopleTab li a figure img {
  position: absolute;
  width: 100%;
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
}
.people__list #peopleTab li a h4 {
  display: none;
  font-family: 'Roboto', sans-serif;
}
@media (min-width: 992px) {
  .people__list #peopleTab li a h4 {
    display: block;
    float: right;
    margin-left: 1em;
    margin-bottom: 0;
  }
}
@media (min-width: 992px) {
  .people__list .tab-content {
    width: 65%;
  }
}
@media (min-width: 1200px) {
  .people__list .tab-content {
    width: 70%;
  }
}
@media (min-width: 1400px) {
  .people__list .tab-content {
    width: 75%;
  }
}
.people__list .tab-content .tab-pane {
  position: relative;
}
@media (min-width: 992px) {
  .people__list .tab-content .tab-pane {
    height: 100%;
  }
}
.people__list .tab-content .tab-pane .contentPeople {
  padding-top: 1.5em;
}
@media (min-width: 768px) {
  .people__list .tab-content .tab-pane .contentPeople {
    width: 50%;
    margin: 0 auto;
    margin-bottom: 1em;
    overflow: hidden;
  }
}
@media (min-width: 992px) {
  .people__list .tab-content .tab-pane .contentPeople {
    width: 90%;
    height: 100%;
  }
}
.people__list .tab-content .tab-pane .contentPeople figure {
  width: 200px;
  height: 200px;
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.5);
  -moz-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.5);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.5);
  overflow: hidden;
  position: relative;
  margin: 0 auto;
}
.people__list .tab-content .tab-pane .contentPeople figure img {
  position: absolute;
  width: 100%;
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
}
.people__list .tab-content .tab-pane .contentPeople h4 {
  font-size: 1.25em;
  text-align: center;
  margin-top: 30px;
  margin-bottom: 0;
  font-family: 'Roboto', sans-serif;
}
@media (min-width: 992px) {
  .people__list .tab-content .tab-pane .contentPeople h4 {
    font-size: 1.5em;
  }
}
@media (min-width: 768px) {
  .people__list .tab-content .tab-pane .contentPeople .figNamePeople {
    float: left;
    width: 55%;
    margin-right: 10%;
  }
}
@media (min-width: 992px) {
  .people__list .tab-content .tab-pane .contentPeople .figNamePeople {
    width: 40%;
    margin-right: 5%;
  }
}
@media (min-width: 1200px) {
  .people__list .tab-content .tab-pane .contentPeople .figNamePeople {
    width: 30%;
    margin-right: 0;
  }
}
.people__list .tab-content .tab-pane .contentPeople .figNamePeople > p {
  text-align: center;
  color: #afafaf;
}
@media (min-width: 992px) {
  .people__list .tab-content .tab-pane .contentPeople .figNamePeople > p {
    margin-bottom: 2em;
  }
}
@media (min-width: 768px) {
  .people__list .tab-content .tab-pane .contentPeople .infosPeople {
    float: left;
    width: 35%;
  }
}
@media (min-width: 992px) {
  .people__list .tab-content .tab-pane .contentPeople .infosPeople {
    float: left;
    width: 55%;
  }
}
@media (min-width: 1200px) {
  .people__list .tab-content .tab-pane .contentPeople .infosPeople {
    width: 65%;
  }
}
@media (min-width: 1200px) {
  .people__list .tab-content .tab-pane .contentPeople .infosPeople {
    max-width: 600px;
    margin: 0 auto;
    margin-bottom: 2em;
  }
}
@media (min-width: 992px) {
  .people__list .tab-content .tab-pane .contentPeople .mailLink,
  .people__list .tab-content .tab-pane .contentPeople .phoneLang {
    overflow: hidden;
  }
}
.people__list .tab-content .tab-pane .contentPeople .mailLink p,
.people__list .tab-content .tab-pane .contentPeople .phoneLang p {
  text-transform: uppercase;
  color: #454545;
  opacity: 0.7;
  font-size: 0.8125em;
}
@media (min-width: 1200px) {
  .people__list .tab-content .tab-pane .contentPeople .mailLink p,
  .people__list .tab-content .tab-pane .contentPeople .phoneLang p {
    width: 50%;
    float: left;
    margin-left: 15%;
    margin-bottom: 2.5em;
  }
  .people__list .tab-content .tab-pane .contentPeople .mailLink p:last-child,
  .people__list .tab-content .tab-pane .contentPeople .phoneLang p:last-child {
    width: 35%;
    margin-left: 0;
  }
}
.people__list .tab-content .tab-pane .contentPeople .mailLink p span,
.people__list .tab-content .tab-pane .contentPeople .phoneLang p span,
.people__list .tab-content .tab-pane .contentPeople .mailLink p tel,
.people__list .tab-content .tab-pane .contentPeople .phoneLang p tel {
  display: block;
  text-transform: none;
  font-size: 1.25em;
}
.people__list .tab-content .tab-pane .contentPeople .expertises {
  overflow: hidden;
}
.people__list .tab-content .tab-pane .contentPeople .expertises p {
  color: #454545;
  opacity: 0.7;
  font-size: 0.8125em;
}
@media (min-width: 1200px) {
  .people__list .tab-content .tab-pane .contentPeople .expertises p {
    width: 50%;
    float: left;
    margin-left: 15%;
    margin-bottom: 2.5em;
  }
}
.people__list .tab-content .tab-pane .contentPeople .expertises p strong {
  text-transform: uppercase;
  font-weight: normal;
  display: block;
}
.people__list .tab-content .tab-pane .contentPeople .expertises p a {
  display: block;
  font-size: 16.25px;
}
.people__list .tab-content .tab-pane .contentPeople .btnDetail {
  display: none;
  position: relative;
}
@media (min-width: 768px) {
  .people__list .tab-content .tab-pane .contentPeople .btnDetail {
    display: block;
  }
}
@media (min-width: 992px) {
  .people__list .tab-content .tab-pane .contentPeople .btnDetail {
    margin-left: 15%;
  }
}
.people__list .tab-content .tab-pane .contentPeople .btnDetail:after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 1px;
  left: 0;
  top: 10px;
  background-color: #a5cf4c;
}
.people__list .tab-content .tab-pane .contentPeople .btnDetail button.openDetails {
  background: transparent;
  z-index: 2;
  color: #a5cf4c;
  border: none;
  font-size: 12px;
  display: inline-block;
  vertical-align: middle;
  position: relative;
  -webkit-transition: color 0.3s;
  -moz-transition: color 0.3s;
  transition: color 0.3s;
  font-weight: 700;
  text-align: right;
  float: right;
  text-transform: uppercase;
  background-color: #ffffff;
  padding-left: 20px;
}
.people__list .tab-content .tab-pane .contentPeople .btnDetail button.openDetails:after {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 13px;
  height: 7px;
  margin-left: 1em;
  background: url('img/layout/sprite.png') 0 0 no-repeat;
}
.people__list .tab-content .tab-pane .contentPeople .btnDetail button.openDetails:hover,
.people__list .tab-content .tab-pane .contentPeople .btnDetail button.openDetails:focus {
  color: #a5cf4c;
}
.people__list .tab-content .tab-pane .contentPeople .btnDetail button.openDetails:hover:after,
.people__list .tab-content .tab-pane .contentPeople .btnDetail button.openDetails:focus:after {
  background-position: 0 -7px;
}
.people__list .tab-content .tab-pane .contentPeople .btnDetail button.openDetails:hover {
  color: #b9da74;
}
.people__list .tab-content .tab-pane .contentPeople .btnDetail button.openDetails:after {
  background-position: 0 -7px;
}
.people__list .tab-content .tab-pane .contentDetails {
  display: none;
  z-index: 200;
}
@media (min-width: 768px) {
  .people__list .tab-content .tab-pane .contentDetails {
    display: block;
    position: absolute;
    top: 20em;
    overflow-y: scroll;
    max-height: 320px;
    height: 0px;
    background-color: #ffffff;
    -o-transition: all 250ms ease-in-out;
    -webkit-transition: all 250ms ease-in-out;
    transition: all 250ms ease-in-out;
    padding: 1em;
    opacity: 0;
  }
  .people__list .tab-content .tab-pane .contentDetails.open {
    height: 300px;
    opacity: 1;
  }
  .people__list .tab-content .tab-pane .contentDetails ::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    background-color: #F5F5F5;
  }
  .people__list .tab-content .tab-pane .contentDetails ::-webkit-scrollbar {
    width: 12px;
    background-color: #F5F5F5;
  }
  .people__list .tab-content .tab-pane .contentDetails ::-webkit-scrollbar-thumb {
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    background-color: #555;
  }
  .people__list .tab-content .tab-pane .contentDetails .closeDetails {
    position: relative;
    float: right;
    width: 15px;
    height: 15px;
  }
  .people__list .tab-content .tab-pane .contentDetails .closeDetails span {
    width: 15px;
    height: 15px;
  }
  .people__list .tab-content .tab-pane .contentDetails .closeDetails span:after,
  .people__list .tab-content .tab-pane .contentDetails .closeDetails span:before {
    position: absolute;
    background: #454545;
    content: "";
    width: 15px;
    height: 1px;
    left: 0;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
  .people__list .tab-content .tab-pane .contentDetails .closeDetails span:before {
    width: 15px;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  .people__list .tab-content .tab-pane .contentDetails .textDetail {
    margin-top: 2em;
  }
}
@media (min-width: 992px) {
  .people__list .tab-content .tab-pane .contentDetails {
    top: 0;
    margin: 0 1em;
  }
  .people__list .tab-content .tab-pane .contentDetails.open {
    height: 95%;
    max-height: 95%;
    opacity: 1;
    margin-top: 1em;
  }
  .people__list .tab-content .tab-pane .contentDetails .textDetail {
    padding: 0 4em;
  }
}
.filtersWrapper {
  text-align: center;
  padding-top: 0;
  padding-bottom: 1em;
}
.filtersWrapper select {
  height: 40px;
  padding-left: 15px;
  font-size: 14px;
  outline: none;
  width: 100%;
}
@media (min-width: 768px) {
  .filtersWrapper select {
    width: 48%;
  }
}
.filtersWrapper select + select {
  margin-top: 10px;
}
@media (min-width: 768px) {
  .filtersWrapper select + select {
    margin: 0 0 0 2%;
  }
}
.single-people {
  /* article.news-single{
		margin-top: 2em;
		margin-bottom: 2em;
	
		aside{
			margin-bottom: 2em;
			figure{
				width: 200px;
				height: 200px;
				// border-radius: 50%;
				// border: 5px solid @txt-light-gray;
				.box-shadow(0 5px 10px rgba(0,0,0,.5));
				overflow: hidden;
				position: relative;
				margin: 0 auto;
	
				img{
					position: absolute;
					width: 100%;
					top: 50%;
					left: 50%;
					.transform(translateX(-50%),translateY(-50%));
				}
			}
		}
	
		header{
			margin-bottom: 2em;
			h1{
				font-size: 24px;
				margin-bottom: 0;
			}
			p{
				text-align: center;
				color: #afafaf;
			}
		}
	
		.e-content{
	
			a{
				color: @green;
			}
			.contentPeople{
				.infosPeople{
					@media (min-width: @screen-md){
						max-width: 400px;
						margin: 0 auto;
					}
	
					@media (min-width: @screen-lg){
						max-width: 600px;
					}
				}
	
				.mailLink, .phoneLang{
	
					@media (min-width: @screen-md){
						overflow: hidden;
					}
	
					p{
						text-transform: uppercase;
						color: @txt;
						opacity: 0.7;
						.pxem(13px);
	
						@media (min-width: @screen-md){
							width: 50%;
							float: left;
							margin-left: 15%;
							margin-bottom: 2.5em;
	
							&:last-child{
								width: 35%;
								margin-left: 0;
							}
						}
	
						span, tel{
							display: block;
							text-transform: none;
							.pxem(20px);
						}
					}
				}
	
				.contentDetails{
					margin-top: 2em;
				}
			}
		}
	} */
}
.single-people figure img {
  display: block;
  width: 100%;
  height: auto;
}
.single-people article {
  padding: 1em;
  *zoom: 1;
}
.single-people article:before,
.single-people article:after {
  content: " ";
  display: table;
}
.single-people article:after {
  clear: both;
}
.single-people article:before,
.single-people article:after {
  content: " ";
  display: table;
}
.single-people article:after {
  clear: both;
}
.single-people article:before,
.single-people article:after {
  content: " ";
  display: table;
}
.single-people article:after {
  clear: both;
}
.single-people article:before,
.single-people article:after {
  content: " ";
  display: table;
}
.single-people article:after {
  clear: both;
}
@media (min-width: 1200px) {
  .single-people article {
    padding: 3em;
  }
}
@media (min-width: 1400px) {
  .single-people article {
    padding: 1.875em 6.25em;
  }
}
@media (min-width: 1900px) {
  .single-people article {
    padding: 1.875em 12.5em;
  }
}
.single-people article > header {
  *zoom: 1;
}
.single-people article > header:before,
.single-people article > header:after {
  content: " ";
  display: table;
}
.single-people article > header:after {
  clear: both;
}
.single-people article > header:before,
.single-people article > header:after {
  content: " ";
  display: table;
}
.single-people article > header:after {
  clear: both;
}
.single-people article > header:before,
.single-people article > header:after {
  content: " ";
  display: table;
}
.single-people article > header:after {
  clear: both;
}
.single-people article > header:before,
.single-people article > header:after {
  content: " ";
  display: table;
}
.single-people article > header:after {
  clear: both;
}
@media (min-width: 768px) {
  .single-people article > header figure {
    width: 10%;
    float: left;
  }
}
@media (min-width: 768px) {
  .single-people article > header > div {
    width: 85%;
    float: right;
  }
}
.single-people article > header .p-name {
  margin: 0;
  color: #a5cf4c;
  font-weight: 300;
}
.single-people article > header .p-function {
  color: #afafaf;
  font-size: 130%;
}
.single-people article > header b {
  text-transform: uppercase;
  font-weight: 300;
  color: #7d7d7d;
}
.single-people article > header span {
  display: block;
  font-weight: 300;
}
.single-people article > header span a {
  font-weight: 300;
}
.single-people article > header ul {
  margin: 0;
  padding: 0;
}
.single-people article > header ul li {
  margin: 0 0 1em;
  padding: 0;
  list-style: none;
  vertical-align: top;
}
.single-people article > header ul li:before {
  display: none;
}
@media (min-width: 768px) {
  .single-people article > header ul li {
    width: 49%;
    display: inline-block;
  }
}
@media (min-width: 992px) {
  .single-people article > header ul li {
    width: 24%;
  }
}
.single-people .nav {
  border-bottom: 1px solid #a5cf4c;
}
.single-people .nav > li > a {
  padding: 10px 20px;
  position: relative;
  top: 1px;
  text-transform: uppercase;
  color: #454545;
  border-radius: 0px;
}
.single-people .nav > li > a:hover {
  background-color: #a5cf4c;
  color: white;
}
.single-people .nav-pills > li.active > a,
.single-people .nav-pills > li.active > a:hover,
.single-people .nav-pills > li.active > a:focus {
  background-color: transparent;
  border: 1px solid #a5cf4c;
  border-bottom-color: white;
  font-weight: 700;
  color: #454545;
  border-radius: 0px;
}
.single-people .tab-content {
  margin: 2em 0 0;
  padding: 0 1.5em;
}
#people-list {
  width: 100%;
  /* margin: 0 1.875em;
	
	@media(min-width: @screen-md) {
		margin: 0 6.25em;	
	}
	
	@media(min-width: 1600px) {
		margin: 0 12.5em;
	} */
}
#people-list figure img {
  display: block;
  width: 100%;
  height: auto;
}
#people-list th,
#people-list td {
  text-align: left;
  padding: 1em;
}
#people-list tr:nth-child(odd) {
  background-color: #f8f8f8;
}
#people-list th {
  background-color: #f8f8f8;
  text-transform: uppercase;
}
#people-list .pic {
  width: 120px;
}
#people-list .pic figure {
  width: 80px;
  float: none;
}
@media (min-width: 992px) {
  #people-list .pic figure {
    width: 100px;
  }
}
#people-list .name a {
  font-weight: 700;
}
#people-list a.dl-vcard:after {
  content: url('img/dl-vcard.png');
  margin: 0 0 0 0.75em;
  position: relative;
  top: 5px;
}
/*
* 	Owl Carousel Owl Demo Theme 
*	v1.3.3
*/
.owl-theme .owl-dots,
.owl-theme .owl-controls {
  margin-top: 10px;
  text-align: center;
}
@media (min-width: 768px) {
  .owl-theme .owl-dots,
  .owl-theme .owl-controls {
    text-align: right;
    padding-right: 3.125em;
  }
}
@media (min-width: 1200px) {
  .owl-theme .owl-dots,
  .owl-theme .owl-controls {
    padding-right: 6.25em;
    margin-top: 0;
  }
}
@media (min-width: 1900px) {
  .owl-theme .owl-dots,
  .owl-theme .owl-controls {
    padding-right: 12.5em;
  }
}
/* Styling Next and Prev buttons */
.owl-theme .owl-dots .owl-buttons div,
.owl-theme .owl-controls .owl-buttons div {
  color: #FFF;
  display: inline-block;
  zoom: 1;
  *display: inline;
  /*IE7 life-saver */
  margin: 5px;
  padding: 3px 10px;
  font-size: 12px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  border-radius: 30px;
  background: #869791;
  filter: alpha(opacity=50);
  opacity: 0.5;
  filter: alpha(opacity= 50 );
}
/* Clickable class fix problem with hover on touch devices */
/* Use it for non-touch hover action */
.owl-theme .owl-dots.clickable .owl-buttons div:hover,
.owl-theme .owl-controls.clickable .owl-buttons div:hover {
  filter: alpha(opacity=100);
  opacity: 1;
  filter: alpha(opacity= 100 );
}
/* Styling Pagination*/
.owl-theme .owl-dots .owl-dot,
.owl-theme .owl-controls .owl-page {
  display: inline-block;
  zoom: 1;
  *display: inline;
  /*IE7 life-saver */
}
.owl-theme .owl-dots .owl-dot span,
.owl-theme .owl-controls .owl-page span {
  display: block;
  width: 20px;
  height: 3px;
  background-color: rgba(69, 69, 69, 0.4);
  margin: 5px 7px;
}
.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots.clickable .owl-dot:hover span .owl-theme .owl-controls .owl-page.active span,
.owl-theme .owl-controls.clickable .owl-page:hover span {
  background-color: #a5cf4c;
}
/* If PaginationNumbers is true */
.owl-theme .owl-dots .owl-dot span.owl-numbers,
.owl-theme .owl-controls .owl-page span.owl-numbers {
  height: auto;
  width: auto;
  color: #FFF;
  padding: 2px 10px;
  font-size: 12px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  border-radius: 30px;
}
/* preloading images */
.owl-item.loading {
  min-height: 150px;
  background: url(AjaxLoader.gif) no-repeat center center;
}
/* 
 * 	Core Owl Carousel CSS File
 *	v1.3.3
 */
/* clearfix */
.owl-carousel .owl-wrapper:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}
/* display none until init */
.owl-carousel {
  display: none;
  position: relative;
  width: 100%;
  -ms-touch-action: pan-y;
}
.owl-carousel .owl-wrapper {
  display: none;
  position: relative;
  -webkit-transform: translate3d(0px, 0px, 0px);
  -moz-transform: translate3d(0px, 0px, 0px);
  -ms-transform: translate3d(0px, 0px, 0px);
  transform: translate3d(0px, 0px, 0px);
}
.owl-carousel .owl-stage-outer,
.owl-carousel .owl-wrapper-outer {
  overflow: hidden;
  position: relative;
  width: 100%;
}
.owl-carousel .owl-stage-outer.autoHeight,
.owl-carousel .owl-wrapper-outer.autoHeight {
  -o-transition: height 500ms ease-in-out;
  -webkit-transition: height 500ms ease-in-out;
  transition: height 500ms ease-in-out;
}
.owl-carousel .owl-item {
  float: left;
}
.owl-dots .owl-dot,
.owl-dots .owl-buttons div,
.owl-controls .owl-page,
.owl-controls .owl-buttons div {
  cursor: pointer;
}
.owl-dots,
.owl-page {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
/* mouse grab icon */
.grabbing {
  cursor: url(grabbing.png) 8 8, move;
}
/* fix */
.owl-carousel .owl-wrapper,
.owl-carousel .owl-item {
  -moz-backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.news-single {
  max-width: 650px;
  margin: 0 auto;
  padding-left: 1em;
  padding-right: 1em;
}
@media (min-width: 768px) {
  .news-single {
    padding-top: 1.875em;
    padding-bottom: 3.125em;
  }
}
.news-single .p-name {
  text-align: center;
  letter-spacing: 2px;
  line-height: 1.3;
  font-weight: 300;
}
.news-single .dt-published:before {
  width: 50px;
}
.news-single .back-news {
  z-index: 2;
  color: #9ec1bd;
  font-size: 12px;
  display: inline-block;
  vertical-align: middle;
  text-transform: uppercase;
  position: relative;
  -o-transition: all 250ms ease-in-out;
  -webkit-transition: all 250ms ease-in-out;
  transition: all 250ms ease-in-out;
  font-weight: 700;
}
.news-single .back-news:before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 13px;
  height: 7px;
  margin-right: 1em;
  background: url('img/layout/sprite.png') -13px -21px no-repeat;
}
.news-single .back-news:hover,
.news-single .back-news:focus {
  color: #7fada8;
}
.news-single .next-link {
  margin-top: 5px;
  background: transparent;
  z-index: 2;
  color: #9ec1bd;
  border: none;
  font-size: 12px;
  display: inline-block;
  vertical-align: middle;
  text-transform: uppercase;
  position: relative;
  -webkit-transition: color 0.3s;
  -moz-transition: color 0.3s;
  transition: color 0.3s;
  font-weight: 700;
  float: right;
}
.news-single .next-link:after {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 13px;
  height: 7px;
  margin-left: 1em;
  background: url('img/layout/sprite.png') 0 0 no-repeat;
}
.news-single .next-link:hover,
.news-single .next-link:focus {
  color: #7fada8;
}
.news-single .next-link:hover:after,
.news-single .next-link:focus:after {
  background-position: 0 -7px;
}
.news-single .next-link:after {
  background-position: 0 -21px;
}
.news-single .next-link:hover:after,
.news-single .next-link:focus:after {
  background-position: 0 -21px;
}
.news-single .at-icon-wrapper,
.news-single .at-icon {
  width: 34px !important;
  height: 34px !important;
}
.ico-time {
  display: inline-block;
  vertical-align: middle;
  width: 16px;
  height: 16px;
  margin-right: .625em;
  background: url('img/layout/sprite.png') -51px -58px no-repeat;
}
.single__head {
  text-align: center;
  padding-bottom: 1.875em;
}
.e-content a {
  color: #9ec1bd;
}
.e-content a:hover {
  color: #7fada8;
}
.e-content h3 {
  text-transform: uppercase;
  font-size: 1.5em;
}
@media (min-width: 768px) {
  .e-content {
    *zoom: 1;
  }
  .e-content:before,
  .e-content:after {
    content: " ";
    display: table;
  }
  .e-content:after {
    clear: both;
  }
  .e-content:before,
  .e-content:after {
    content: " ";
    display: table;
  }
  .e-content:after {
    clear: both;
  }
  .e-content:before,
  .e-content:after {
    content: " ";
    display: table;
  }
  .e-content:after {
    clear: both;
  }
  .e-content:before,
  .e-content:after {
    content: " ";
    display: table;
  }
  .e-content:after {
    clear: both;
  }
}
.e-content img {
  max-width: 100%;
  height: auto;
  display: block;
}
.e-content img.aligncenter {
  margin: 0 auto;
}
.dt-published {
  /*  display: inline-block;
   margin-bottom: .5em;
   vertical-align: middle;
   color: @blue;
   .pxem(14px);
   font-weight: 700;
   font-family: @font-title; */
}
.dt-published:before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 30px;
  height: 1px;
  margin: 0 .5em 0 0;
  background-color: #9ec1bd;
}
.u-photo {
  margin-left: 0;
  margin-right: 0;
}
@media (min-width: 768px) {
  .u-photo {
    float: left;
    width: 40%;
    margin-right: 2em;
  }
  .u-photo img {
    margin-left: auto;
  }
}
.infowrapper {
  display: inline-block;
  margin-bottom: .5em;
  vertical-align: middle;
  color: #9ec1bd;
}
.infowrapper .start_date_Wrapper,
.infowrapper .end_date_Wrapper {
  display: inline-block;
  width: auto;
}
.infowrapper .start_date_Wrapper {
  /* &:before{
        .sprite(-51px -75px);
        content: '';
        display: inline-block;
        position: relative;
        height: 16px;
        width: 18px;
        margin: 0 .5em 0 0;
      } */
}
.infowrapper .start_date_Wrapper:before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 30px;
  height: 1px;
  margin: 0 .5em 0 0;
  background-color: #9ec1bd;
}
.infowrapper .end_date_Wrapper {
  /* &:before{
        position: relative;
        display: inline-block;
        height: 3px;
        width: 3px;
        border-radius: 100%;
        background-color: @blue;
        margin-right: 5px;
        margin-top: 5px;
        text-align: center;
        content: '';
      } */
}
.infowrapper .placeWrapper:before {
  /* position: relative;
        display: inline-block;
        height: 3px;
        width: 3px;
        border-radius: 100%;
        background-color: @blue;
        margin-right: 5px;
        margin-top: 5px;
        text-align: center; */
  content: ',';
  position: relative;
  left: -5px;
}
.listing__news {
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px;
  padding-top: 2em;
  padding-bottom: 2em;
  text-align: center;
}
@media (min-width: 768px) {
  .listing__news {
    width: 750px;
  }
}
@media (min-width: 992px) {
  .listing__news {
    width: 970px;
  }
}
@media (min-width: 1200px) {
  .listing__news {
    width: 1170px;
  }
}
.listing__news .links {
  color: #9ec1bd;
  display: inline-block;
  margin: 0.5em 0 0;
}
.listing__news .assistive-text {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
}
.listing__news .entry-content > a {
  display: block;
  margin-bottom: 5px;
  text-transform: capitalize;
  font-size: 15px;
  color: #9ec1bd;
}
.listing__news > h1 {
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 2em;
}
.listing__news .hentry {
  padding: 2em 0;
}
.listing__news .hentry header > a {
  display: block;
}
@media (max-width: 767px) {
  .listing__news .hentry {
    border-bottom: 1px solid #dadada;
  }
}
@media (min-width: 768px) {
  .listing__news .hentry {
    float: left;
    padding: 0 2em;
    width: 50%;
    border-right: 1px solid #dadada;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .listing__news .hentry:nth-child(odd) {
    border-right: 0;
  }
  .listing__news .hentry:nth-child(even) {
    clear: left;
  }
}
@media (min-width: 992px) {
  .listing__news .hentry {
    width: 33.33333333%;
    padding-top: 2em;
    padding-bottom: 2em;
  }
  .listing__news .hentry:nth-child(4),
  .listing__news .hentry:nth-child(7),
  .listing__news .hentry:nth-child(10),
  .listing__news .hentry:nth-child(13),
  .listing__news .hentry:nth-child(16) {
    border-right: 0;
  }
  .listing__news .hentry:nth-child(5),
  .listing__news .hentry:nth-child(8),
  .listing__news .hentry:nth-child(11),
  .listing__news .hentry:nth-child(14),
  .listing__news .hentry:nth-child(17),
  .listing__news .hentry:nth-child(20),
  .listing__news .hentry:nth-child(23),
  .listing__news .hentry:nth-child(26),
  .listing__news .hentry:nth-child(29),
  .listing__news .hentry:nth-child(32),
  .listing__news .hentry:nth-child(35),
  .listing__news .hentry:nth-child(38),
  .listing__news .hentry:nth-child(41),
  .listing__news .hentry:nth-child(44) {
    clear: left;
  }
}
.listing__news .entry-title {
  font-size: 1.125em;
  line-height: 1.5;
  margin: 0.5em 0;
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
}
.listing__news .entry-title a {
  color: #454545;
}
.listing__news #nav-above ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
  margin-bottom: 1.875em;
}
.listing__news #nav-above a {
  display: block;
  color: #454545;
  background-color: #ebebeb;
  -webkit-border-radius: 100px;
  -moz-border-radius: 100px;
  border-radius: 100px;
  text-transform: uppercase;
  font-size: 0.875em;
  font-weight: 700;
  padding: .5em 1.5em;
}
.listing__news #nav-above a:hover,
.listing__news #nav-above a:focus,
.listing__news #nav-above a.active {
  background-color: #a5cf4c;
  color: #fff;
}
@media (max-width: 767px) {
  .listing__news #nav-above li {
    margin-bottom: .625em;
  }
}
@media (min-width: 768px) {
  .listing__news #nav-above li {
    display: inline-block;
    vertical-align: middle;
    margin: 0 .625em;
  }
}
.listing__news .custom-pagination {
  padding-left: 0;
  margin: 22px 0;
  text-align: center;
  font-size: 0;
}
.listing__news .custom-pagination > a,
.listing__news .custom-pagination > span {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  padding: 6px 12px;
  line-height: 1.42857143;
  text-decoration: none;
  color: #8e8e8e;
  background-color: #ffffff;
  border: 1px solid #dddddd;
  margin-left: -1px;
  font-size: 12px;
}
.listing__news .custom-pagination > a:hover,
.listing__news .custom-pagination > span:hover,
.listing__news .custom-pagination > a:focus,
.listing__news .custom-pagination > span:focus {
  color: #fff;
  background-color: #a5cf4c;
  border-color: #a5cf4c;
}
.listing__news .custom-pagination > a.current,
.listing__news .custom-pagination > span.current,
.listing__news .custom-pagination > a.current:hover,
.listing__news .custom-pagination > span.current:hover,
.listing__news .custom-pagination > a.current:focus,
.listing__news .custom-pagination > span.current:focus {
  z-index: 2;
  color: #fff;
  background-color: #a5cf4c;
  border-color: #a5cf4c;
  cursor: default;
}
@media (min-width: 768px) {
  .listing__news .custom-pagination {
    clear: both;
  }
}
.addthis_counter.addthis_bubble_style {
  display: none !important;
}
.error404 #content {
  background: url('img/layout/pattern.jpg') 0 0 repeat;
}
.page__error404 {
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px;
  padding-top: 3.125em;
  padding-bottom: 3.125em;
  text-align: center;
}
@media (min-width: 768px) {
  .page__error404 {
    width: 750px;
  }
}
@media (min-width: 992px) {
  .page__error404 {
    width: 970px;
  }
}
@media (min-width: 1200px) {
  .page__error404 {
    width: 1170px;
  }
}
.page__error404 .entry-title {
  color: #a5cf4c;
  font-size: 9.375em;
  line-height: 1;
  margin: 0;
}
.page__error404 .entry-title:after {
  content: "";
  display: block;
  width: 20px;
  height: 2px;
  margin: .1em auto;
  background-color: #454545;
}
.page__error404 .entry-content {
  padding-top: 1.25em;
}
.page__error404 .entry-content p {
  font-style: italic;
  font-size: 1.125em;
}
.page__error404 .search-form {
  max-width: 450px;
  margin: 3.125em auto 0;
}
.page__error404 .search-field {
  width: calc(100% - 200px);
  width: -moz-calc(100% - 200px);
  width: -webkit-calc(100% - 200px);
  width: -o-calc(100% - 200px);
}
.page__error404 .search-submit {
  background-color: #a5cf4c;
  color: #fff;
  text-transform: uppercase;
  padding: .7em 1em;
  border: 0;
  letter-spacing: 1px;
  font-weight: 700;
  margin-left: -0.3em;
}
input[type="text"],
input[type="mail"],
input[type="password"],
input[type="search"] {
  border: 1px solid #dadada;
  height: 40px;
  width: 100%;
  padding-left: 1em;
}
.search-no-results .page-header,
.search-results .page-header {
  background-color: #a5cf4c;
  color: #fff;
  padding: 1.25em 1.25em;
  text-align: center;
}
.search-no-results .page-header h1,
.search-results .page-header h1 {
  margin-bottom: 0;
  font-size: 1.625em;
  font-weight: 400;
}
.search-no-results .page-header h1 span,
.search-results .page-header h1 span {
  font-weight: 700;
}
.search-no-results .assistive-text,
.search-results .assistive-text {
  display: none;
}
.search-no-results #content,
.search-results #content {
  padding: 1em;
}
.search-no-results #content .search-field,
.search-results #content .search-field {
  height: 30px;
  display: inline-block;
  vertical-align: middle;
  padding-left: 1em;
}
.search-no-results #content .search-submit,
.search-results #content .search-submit {
  display: inline-block;
  vertical-align: middle;
  color: #fff;
  padding: .6em 1em;
  text-transform: uppercase;
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  letter-spacing: 1px;
  border: 0;
  background-color: #a5cf4c;
  -o-transition: all 250ms ease-in-out;
  -webkit-transition: all 250ms ease-in-out;
  transition: all 250ms ease-in-out;
}
.search-no-results #content .search-submit:hover,
.search-results #content .search-submit:hover,
.search-no-results #content .search-submit:focus,
.search-results #content .search-submit:focus {
  background-color: #b9da74;
}
@media (min-width: 768px) {
  .search-no-results #content,
  .search-results #content {
    margin-right: auto;
    margin-left: auto;
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media (min-width: 768px) and (min-width: 768px) {
  .search-no-results #content,
  .search-results #content {
    width: 750px;
  }
}
@media (min-width: 768px) and (min-width: 992px) {
  .search-no-results #content,
  .search-results #content {
    width: 970px;
  }
}
@media (min-width: 768px) and (min-width: 1200px) {
  .search-no-results #content,
  .search-results #content {
    width: 1170px;
  }
}
@media (min-width: 992px) {
  .search-no-results #content,
  .search-results #content {
    padding: 0 10em 3em;
  }
}
@media (min-width: 1200px) {
  .search-no-results #content,
  .search-results #content {
    padding: 3em 10em;
  }
}
.search-no-results .hentry,
.search-results .hentry {
  padding: 1.875em;
}
.search-no-results .hentry:nth-child(even),
.search-results .hentry:nth-child(even) {
  background-color: #f8f8f8;
}
.search-no-results .hentry .entry-title,
.search-results .hentry .entry-title {
  font-size: 1.5em;
  margin-bottom: 0;
  text-transform: none;
}
.search-no-results .hentry .entry-title a,
.search-results .hentry .entry-title a {
  color: #454545;
}
.search-no-results .hentry .entry-title a:hover,
.search-results .hentry .entry-title a:hover {
  color: #a5cf4c;
}
.search-no-results #content {
  text-align: center;
}
/*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */
@media print {
  *,
  *:before,
  *:after {
    background: transparent !important;
    color: #000 !important;
    box-shadow: none !important;
    text-shadow: none !important;
  }
  a,
  a:visited {
    text-decoration: underline;
  }
  a[href]:after {
    content: " (" attr(href) ")";
  }
  abbr[title]:after {
    content: " (" attr(title) ")";
  }
  a[href^="#"]:after,
  a[href^="javascript:"]:after {
    content: "";
  }
  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }
  thead {
    display: table-header-group;
  }
  tr,
  img {
    page-break-inside: avoid;
  }
  img {
    max-width: 100% !important;
  }
  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }
  h2,
  h3 {
    page-break-after: avoid;
  }
  select {
    background: #fff !important;
  }
  .navbar {
    display: none;
  }
  .btn > .caret,
  .dropup > .btn > .caret {
    border-top-color: #000 !important;
  }
  .label {
    border: 1px solid #000;
  }
  .table {
    border-collapse: collapse !important;
  }
  .table td,
  .table th {
    background-color: #fff !important;
  }
  .table-bordered th,
  .table-bordered td {
    border: 1px solid #ddd !important;
  }
}
/* .animated  {
  -webkit-animation-duration : 3s  ;
  animation-duration : 3s  ;

  -webkit-animation-delay : 500ms  ;
  animation-delay : 500ms  ;
}

.animate-out {
  -webkit-animation-delay : 0ms  ;
  animation-delay : 0ms  ;
} */
/*# sourceMappingURL=style.css.map */