@charset "UTF-8";

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  to {
    opacity: 0;
  }
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

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

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

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

@keyframes fadeOutDown {
  from {
    opacity: 1;
  }

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

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

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

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

@keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }

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

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

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

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

@keyframes fadeOutLeft {
  from {
    opacity: 1;
  }

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

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

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

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

@keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }

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

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

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

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

@keyframes fadeOutRight {
  from {
    opacity: 1;
  }

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

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

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

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

@keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }

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

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

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

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

@keyframes fadeOutUp {
  from {
    opacity: 1;
  }

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

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

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

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

@keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@keyframes lightSpeedOut {
  from {
    opacity: 1;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@keyframes rollOut {
  from {
    opacity: 1;
  }

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

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

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

  50% {
    opacity: 1;
  }
}

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

  50% {
    opacity: 1;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  to {
    opacity: 0;
  }
}

@keyframes zoomOut {
  from {
    opacity: 1;
  }

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

  to {
    opacity: 0;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/***************** Bouton **************/

.presentation-button-container {
    width: 100%;
    text-align: center;
}

.presentation-button {
    font-family: 'Lato', sans-serif;
    display: inline-block;
    padding: 16px 40px;
    background-color: #00a7bd;
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1px;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.presentation-button:hover {
    background-color: #dc8c17;
    color: #ffffff; /* le texte reste blanc */
    transform: translateY(-2px);
}

/***************** PROJET **************/

.presentation-section {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 80px 20px;
    background: linear-gradient(180deg, #f9f9f9, #ffffff);
}

.presentation-hero {
    max-width: 900px;
    text-align: center;
    animation: fadeUp 1.2s ease-out;
}

.presentation-title {
    font-family: 'Lato', sans-serif;
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    color: #111;
    margin-bottom: 20px;
}

.presentation-subtitle {
    font-family: 'Lato', sans-serif;
    font-size: 20px;
    font-weight: 300;
    color: #555;
    margin-bottom: 40px;
}

.presentation-button {
    font-family: 'Lato', sans-serif;
    display: inline-block;
    padding: 16px 42px;
    background-color: #00a7bd;
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1px;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.35s ease;
}

.presentation-button:hover {
    background-color: #dc8c17;
    transform: translateY(-3px);
}

/* Animation douce d’apparition */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(25px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/***************** PHOTOS ELEMENTS **************/

.apple-gallery {
    display: flex; 
    justify-content: center; 
    gap: 60px; /* espace plus large entre images */
    max-width: 1400px; 
    margin: 0px auto; 
    flex-wrap: wrap; 
}

.apple-image {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    box-shadow: 0 30px 60px rgba(0,0,0,0.12);
    transform: translateY(0);
    transition: transform 0.6s ease, box-shadow 0.6s ease;
}

.apple-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease; 
}

/* Effet au survol plus subtil */
.apple-image:hover {
    transform: translateY(-6px) scale(1.03); /* déplacement plus léger */
    box-shadow: 0 35px 70px rgba(0,0,0,0.16);
}

.apple-image:hover img {
    transform: scale(1.05); /* zoom plus doux */
}

/* Animation d’apparition */
.apple-image {
    animation: floatIn 1s ease forwards;
    opacity: 0;
}

.apple-image:nth-child(1) { animation-delay: 0.1s; }
.apple-image:nth-child(2) { animation-delay: 0.2s; }
.apple-image:nth-child(3) { animation-delay: 0.3s; }
.apple-image:nth-child(4) { animation-delay: 0.4s; }

@keyframes floatIn {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/***************** gouttes d'eau **************/

.water-button-container {
    width: 100%;
    text-align: center;
    margin-top: 50px;
    position: relative;
}

.water-button {
    font-family: 'Lato', sans-serif;
    display: inline-block;
    padding: 16px 40px;
    background-color: #00a7bd; 
    color: #ffffff; 
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1px;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    position: relative;
    z-index: 2;
}

.water-button:hover {
    background-color: #dc8c17; /* fond devient orange */
    color: #ffffff; /* texte reste blanc */
    transform: translateY(-2px);
}

/* Style des gouttes */
.drop {
    position: absolute;
    width: 8px;
    height: 8px;
    background-color: #00a7bd;
    border-radius: 50%;
    opacity: 0;
    pointer-events: none;
    z-index: 1;
}

/* Animation des gouttes (splash) */
.water-button-container:hover .drop1 { animation: splash1 0.8s forwards; }
.water-button-container:hover .drop2 { animation: splash2 0.8s forwards; animation-delay: 0.1s; }
.water-button-container:hover .drop3 { animation: splash3 0.8s forwards; animation-delay: 0.2s; }
.water-button-container:hover .drop4 { animation: splash4 0.8s forwards; animation-delay: 0.1s; }
.water-button-container:hover .drop5 { animation: splash5 0.8s forwards; animation-delay: 0.2s; }
.water-button-container:hover .drop6 { animation: splash6 0.8s forwards; animation-delay: 0.3s; }

/* Différentes trajectoires de splash */
@keyframes splash1 {
    0% { transform: translate(0,0) scale(1); opacity:1; }
    100% { transform: translate(-20px,-40px) scale(0.7); opacity:0; }
}
@keyframes splash2 {
    0% { transform: translate(0,0) scale(1); opacity:1; }
    100% { transform: translate(15px,-35px) scale(0.8); opacity:0; }
}
@keyframes splash3 {
    0% { transform: translate(0,0) scale(1); opacity:1; }
    100% { transform: translate(-25px,-25px) scale(0.6); opacity:0; }
}
@keyframes splash4 {
    0% { transform: translate(0,0) scale(1); opacity:1; }
    100% { transform: translate(20px,-30px) scale(0.7); opacity:0; }
}
@keyframes splash5 {
    0% { transform: translate(0,0) scale(1); opacity:1; }
    100% { transform: translate(-15px,-50px) scale(0.6); opacity:0; }
}
@keyframes splash6 {
    0% { transform: translate(0,0) scale(1); opacity:1; }
    100% { transform: translate(10px,-45px) scale(0.7); opacity:0; }
}

/***************** écoles **************/

/* ===== Section globale ===== */
.beneficiary-schools-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    text-align: center;
}

/* ===== Titre avec animation subtile ===== */
.beneficiary-schools-title {
    font-family: 'Lato', sans-serif;
    font-weight: 900;
    font-size: 36px;
    background: linear-gradient(90deg, #00a7bd, #00d4ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 40px;
    display: inline-block;
    letter-spacing: 1px;
    animation: floatTitle 3s ease-in-out infinite;
}

@keyframes floatTitle {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-5px); }
}

/* ===== Grille des écoles ===== */
.beneficiary-schools-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 60px;
}

/* ===== Carte école ===== */
.beneficiary-school-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    width: 380px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.1);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.beneficiary-school-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.15);
}

/* ===== Image ===== */
.beneficiary-school-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.beneficiary-school-card:hover .beneficiary-school-image img {
    transform: scale(1.05);
}

/* ===== Infos école ===== */
.beneficiary-school-info {
    padding: 25px 20px;
    text-align: center;
}

.beneficiary-school-info h3 {
    font-family: 'Lato', sans-serif;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #dc8c17;
}

.beneficiary-school-info p {
    font-family: 'Lato', sans-serif;
    font-size: 18px;
    color: #666;
    margin: 0;
}

/* ===== Bouton ===== */
.beneficiary-schools-button {
    margin-top: 40px;
}

.btn-discover-schools {
    display: inline-block;
    padding: 14px 40px;
    background-color: #00a7bd;
    color: #fff;
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    font-size: 16px;
    border-radius: 4px;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-discover-schools:hover {
    background-color: #dc8c17;
    transform: translateY(-2px);
}


/***************** participez ! **************/

/* =====================
   SECTION DONATE
   ===================== */
.donate-section {
    background: #dc8c19d9; /* orange */
    padding: 80px 20px;
}

.donate-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: flex-start;
}

/* =====================
   TEXTE
   ===================== */
.donate-text {
    flex: 1 1 500px;
    animation: fadeInLeft 1s ease forwards;
    /* Texte normal aligné à gauche */
}

/* TITRE uniquement centré */
.donate-title {
    font-family: 'Lato', sans-serif;
    font-weight: 900;
    font-size: 36px;
    color: #ffffff;
    margin-bottom: 25px;
    text-align: center;
    display: block;
}

.donate-description {
    font-family: 'Lato', sans-serif;
    font-size: 18px;
    color: #555;
    margin-bottom: 30px;
}

.donate-list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.donate-list li {
    position: relative;
    font-size: 18px;
    color: #555;
    padding-left: 35px;
    margin-bottom: 15px;
    font-weight: 600;
    transition: transform 0.3s ease, color 0.3s ease;
}

.donate-list li::before {
    content: '💧'; /* petite goutte pour rappeler l'eau */
    position: absolute;
    left: 0;
    top: 0;
    font-size: 22px;
}

.donate-list li:hover {
    color: #00a7bd;
    transform: translateX(5px);
}

/* =====================
   BOUTON
   ===================== */
.btn-donate {
    display: inline-block;
    margin: 0 auto; /* centre horizontalement */
    padding: 15px 30px;
    background: linear-gradient(90deg, #00a7bd, #00d4ff);
    color: #fff;
    font-weight: 700;
    font-size: 18px;
    border-radius: 12px;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin: 30px auto 0 auto; /* CENTRÉ */
}

.btn-donate:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 167, 189, 0.4);
}

/* CENTRER LE BOUTON */
.btn-wrapper {
    text-align: center;
    margin-top: 30px;
}


/* =====================
   IMAGES
   ===================== */
.donate-images {
    flex: 1 1 400px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    animation: fadeInRight 1s ease forwards;
}

.donate-img {
    width: 100%;
    max-height: 240px; /* limite la hauteur de chaque image */
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.4s ease;
}

.donate-img:hover {
    transform: scale(1.03);
}

/* =====================
   ANIMATIONS
   ===================== */
@keyframes fadeInLeft {
    0% { opacity: 0; transform: translateX(-30px); }
    100% { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInRight {
    0% { opacity: 0; transform: translateX(30px); }
    100% { opacity: 1; transform: translateX(0); }
}

/* =====================
   RESPONSIVE
   ===================== */
@media (max-width: 900px) {
    .donate-container {
        flex-direction: column-reverse;
    }

    .donate-text, .donate-images {
        flex: 1 1 100%;
    }

    .donate-title {
        font-size: 30px;
    }

    .donate-img {
        max-height: 200px;
    }
}

/***************** Contact **************/

/* ===============================
   SECTION CONTACT – VERSION PREMIUM
   =============================== */

.contact-section {
    padding: 100px 20px;
}

/* Carte principale */
.contact-card {
    max-width: 1200px;
    margin: 0 auto;
    background: rgba(255,255,255,0.97);
    border-radius: 40px;
    padding: 70px;
    display: flex;
    align-items: center;
    gap: 70px;
    box-shadow: 0 40px 100px rgba(0,167,189,0.18);
}

/* TEXTE */
.contact-content {
    flex: 1;
}

.contact-title {
    font-family: 'Lato', sans-serif;
    font-weight: 900;
    font-size: 42px;
    line-height: 1.15;
    margin-bottom: 25px;
    background: linear-gradient(90deg, #00a7bd, #00d4ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
}

.contact-description {
    font-size: 18px;
    line-height: 1.7;
    color: #333;
    margin-bottom: 18px;
}

/* Texte de confiance */
.contact-trust {
    margin-top: 14px;
    font-size: 15px;
    color: #666;
}

.contact-trust strong {
    color: #00a7bd;
    font-weight: 800;
}

/* BOUTON */
.contact-button-wrapper {
    margin-top: 35px;
}

.btn-contact {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 48px;
    background: linear-gradient(90deg, #00a7bd, #00d4ff);
    color: #fff;
    font-weight: 800;
    font-size: 16px;
    border-radius: 50px;
    text-decoration: none;
    letter-spacing: 0.5px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,167,189,0.4);
    animation: pulse 2.8s infinite;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

/* vague lumineuse */
.btn-contact::after {
    content: '';
    position: absolute;
    top: 0;
    left: -120%;
    width: 120%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255,255,255,0.6), transparent);
    animation: shine 3.5s infinite;
}

/* hover */
.btn-contact:hover {
    transform: translateY(-6px) scale(1.05);
    box-shadow: 0 30px 70px rgba(0,167,189,0.6);
}

/* ANIMATIONS */
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(0,167,189,0.5); }
    70% { box-shadow: 0 0 0 20px rgba(0,167,189,0); }
    100% { box-shadow: 0 0 0 0 rgba(0,167,189,0); }
}

@keyframes shine {
    0% { left: -120%; }
    60% { left: 120%; }
    100% { left: 120%; }
}

/* IMAGE */
.contact-image-container {
    flex: 1;
    display: flex;
    justify-content: center;
}

.contact-image {
    width: 100%;
    max-width: 420px;
    border-radius: 30px;
    object-fit: cover;
    box-shadow: 0 40px 90px rgba(0,0,0,0.25);
    transition: transform 0.6s ease, box-shadow 0.6s ease;
}

.contact-image:hover {
    transform: translateY(-12px) scale(1.05);
    box-shadow: 0 60px 120px rgba(0,167,189,0.45);
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .contact-card {
        flex-direction: column-reverse;
        padding: 40px 25px;
        text-align: center;
        gap: 40px;
    }

    .contact-title {
        font-size: 32px;
    }
}


/*********************************** MENU LE PROJET ***************************************/

.big-buttons-section {
    padding: 120px 20px;
    background: #f6fafc;
}

.big-buttons-container {
    max-width: 1700px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1.3fr);
    gap: 70px;
    row-gap: 120px;
}

/* Décalage nid d’abeille */
.big-btn:nth-child(even) {
    margin-top: 100px;
}

/* Lien */
.big-btn {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* HEXAGONE LARGE */
.big-btn-media {
    position: relative;
    width: 100%;
    height: 320px;
    border-radius: 0;
    background-size: cover;
    background-position: center;
    overflow: hidden;

    clip-path: polygon(
        25% 0%,     /* haut gauche */
        75% 0%,     /* haut droite */
        100% 50%,   /* droite */
        75% 100%,   /* bas droite */
        25% 100%,   /* bas gauche */
        0% 50%      /* gauche */
    );

    transition: transform 0.6s ease, box-shadow 0.6s ease;
}


/* Bordure lumineuse */
.big-btn-media::before {
    content: "";
    position: absolute;
    inset: 0;
    clip-path: inherit;
    border: 2px solid rgba(0,167,189,0.5);
    z-index: 2;
    pointer-events: none;
    transition: all 0.4s ease;
}

/* Overlay */
.big-btn-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0);
    transition: background 0.5s ease;
    z-index: 1;
}

/* FLÈCHE CENTRÉE */
.big-btn-arrow {
    position: absolute;
    inset: 0;
    margin: auto;
    width: 70px;
    height: 70px;
    background: rgba(255,255,255,0.95);
    color: #111;
    font-size: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0.6);
    transition: all 0.45s ease;
    backdrop-filter: blur(6px);
    z-index: 3;
}

/* Hover */
.big-btn:hover .big-btn-media {
    transform: translateY(-16px) scale(1.05);
    box-shadow: 0 60px 120px rgba(0,0,0,0.35);
}

.big-btn:hover .big-btn-media::before {
    border-color: #00a7bd;
    box-shadow: 0 0 40px rgba(0,167,189,0.7);
}

.big-btn:hover .big-btn-overlay {
    background: rgba(0,0,0,0.3);
}

.big-btn:hover .big-btn-arrow {
    opacity: 1;
    transform: scale(1);
}

/* Titres */
.big-btn h3 {
    margin-top: 30px;
    font-family: 'Lato', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #00a7bd;
    text-align: center;
}

/* Responsive */
@media (max-width: 1100px) {
    .big-buttons-container {
        grid-template-columns: repeat(2, 1fr);
    }
    .big-btn:nth-child(even) {
        margin-top: 0;
    }
}

@media (max-width: 600px) {
    .big-buttons-container {
        grid-template-columns: 1fr;
    }
    .big-btn-media {
        height: 320px;
    }
}


/*********************************** THEMATIQUES ***************************************/

/* ===============================
   SECTION VISION – STYLE MANIFESTE
   =============================== */

.vision-section {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 80px 40px;   /* marges réduites */
    background: linear-gradient(180deg, #f9f9f9, #ffffff);
}

/* Zone large et aérée */
.vision-hero {
    max-width: 1100px;
    text-align: center;
    animation: fadeUp 1.1s ease-out;
}

/* Texte principal (manifeste) */
.vision-title {
    font-family: 'Lato', sans-serif;
    font-size: 22px;
    font-weight: 400;           /* plus léger, plus premium */
    line-height: 1.7;
    color: #1a1a1a;
    margin-bottom: 40px;
    letter-spacing: 0.2px;
}

/* Phrase signature */
.vision-subtitle {
    font-family: 'Lato', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #00a7bd;
    letter-spacing: 0.5px;
}

/* Animation douce d’apparition */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 900px) {
    .vision-section {
        padding: 60px 20px;
    }

    .vision-title {
        font-size: 18px;
        line-height: 1.6;
    }

    .vision-subtitle {
        font-size: 18px;
    }
}

/*********************************** PICTOS ***************************************/

/* ===============================
   SECTION EN UN CLIN D’ŒIL
   =============================== */

.glance-section {
    padding: 50px 0px;
    background: linear-gradient(180deg, #ffffff, #f7fbfc);
    text-align: center;
}

/* Header */
.glance-header {
    max-width: 900px;
    margin: 0 auto 50px;
}

.glance-title {
    font-family: 'Lato', sans-serif;
    font-size: 42px;
    font-weight: 300;
    letter-spacing: 2px;
    margin-bottom: 12px;
    color: #111;
}

.glance-title strong {
    font-weight: 900;
    background: linear-gradient(90deg, #00a7bd, #00d4ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.glance-subtitle {
    font-family: 'Lato', sans-serif;
    font-size: 18px;
    color: #555;
    margin-bottom: 0;
}

/* Grille */
.glance-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Carte individuelle */
.glance-item {
    background: #ffffff;
    border-radius: 24px;
    padding: 30px 25px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.06);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.glance-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 25px 60px rgba(0,167,189,0.15);
}

/* Icône - PNG */
.glance-icon img {
    width: 150px;
    height: 208px;
    object-fit: contain;
    margin-bottom: 16px;
    transition: transform 0.4s ease;
}

.glance-icon img:hover {
    transform: scale(1.05);
}

/* Texte */
.glance-item p {
    font-family: 'Lato', sans-serif;
    font-size: 18px;
    line-height: 1.6;
    color: #333;
}

/* Responsive */
@media (max-width: 900px) {
    .glance-section {
        padding: 40px 20px;
    }

    .glance-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .glance-title {
        font-size: 32px;
    }

    .glance-subtitle {
        font-size: 16px;
    }

    .glance-icon img {
        width: 150px;
        height: 208px;
    }
}


/*********************************** POINTS ***************************************/

.transmission-list {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

/* Carte */
.transmission-card {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  padding: 2.5rem;
  max-width: 950px;
  background: linear-gradient(135deg, #f6fdfb, #ffffff);
  border-radius: 28px;
  box-shadow: 0 12px 35px rgba(0,0,0,0.08);
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

/* Animation active */
.transmission-card.active {
  opacity: 1;
  transform: translateY(0);
}

/* Image ronde (zone large) */
.transmission-media {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 6px solid #dc8c18;
  background: #fff;
}

.transmission-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Contenu */
.transmission-content {
  flex: 1;
}

.transmission-content h3 {
  color: #00a7bd;
  font-size: 1.45rem;
  margin-bottom: 0.8rem;
}

.transmission-content p {
  font-size: 18px;
  line-height: 1.6;
  color: #444;
}

/* Zone PNG / Picto */
.transmission-picto {
  width: 90px;
  height: 90px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.transmission-picto img {
  max-width: 100%;
  max-height: 100%;
}

/* Quinconce */
.transmission-card:nth-child(odd) {
  margin-right: auto;
}

.transmission-card:nth-child(even) {
  margin-left: auto;
  flex-direction: row-reverse;
}

.transmission-card:nth-child(even) .transmission-content {
  text-align: right;
}

/* Mobile */
@media (max-width: 768px) {
  .transmission-card,
  .transmission-card:nth-child(even) {
    flex-direction: column;
    text-align: center;
    margin: 0 auto;
  }

  .transmission-card:nth-child(even) .transmission-content {
    text-align: center;
  }
}


/*********************************** DEF AQUAPONIE ***************************************/

.aqua-block {
    max-width: 760px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* TITRE */
.aqua-title {
    font-family: 'Lato', Arial, sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #111;
    margin-bottom: 16px;
}

/* TEXTE */
.aqua-text {
    font-family: 'Lato', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: #333;
    margin-bottom: 20px;
}

/* INTRO LISTE */
.aqua-intro {
    font-family: 'Lato', Arial, sans-serif;
    font-size: 16px;
    color: #444;
    margin-bottom: 12px;
    font-style: italic;
}

/* LISTE */
.aqua-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
}

.aqua-list li {
    position: relative;
    padding-left: 32px;
    margin-bottom: 12px;
    font-family: 'Lato', Arial, sans-serif;
    font-size: 16px;
    color: #333;
}

/* Icône check moderne */
.aqua-list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 0;
    color: #00a7bd;
    font-weight: 700;
}

/* BOUTON */
.aqua-button {
    display: inline-block;
    padding: 12px 28px;
    background: linear-gradient(90deg, #00a7bd, #00d4ff);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-family: 'Lato', Arial, sans-serif;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: all 0.35s ease;
    box-shadow: 0 8px 24px rgba(0,167,189,0.25);
}

/* Effet Apple-like au survol */
.aqua-button:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 14px 40px rgba(0,167,189,0.45);
    background: linear-gradient(90deg, #00d4ff, #00a7bd);
}

/*********************************** RETOUR AU MENU ***************************************/

/* ===============================
   BLOC NAVIGATION BAS DE PAGE - STYLE ALTERNATIF
   =============================== */

.footer-nav-modern-alt {
    background: #f8f9fa; /* gris très clair, moderne et doux */
    padding: 40px 20px;
    display: flex;
    justify-content: center;
}

.footer-nav-alt-container {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    max-width: 900px;
}

/* BOUTONS MODERNES ALTERNATIF */
.footer-nav-alt-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 26px;
    background: #ffffff;
    color: #00a7bd;
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    border: 2px solid #00a7bd;
    border-radius: 8px;
    position: relative;
    transition: all 0.35s ease;
}

/* Ajouter une flèche dynamique au survol */
.footer-nav-alt-button::after {
    content: "→";
    margin-left: 6px;
    opacity: 0;
    transform: translateX(-6px);
    transition: all 0.3s ease;
}

.footer-nav-alt-button:hover::after {
    opacity: 1;
    transform: translateX(0);
}

/* Effet sur le bouton au survol */
.footer-nav-alt-button:hover {
    background: #00a7bd;
    color: #ffffff;
    box-shadow: 0 8px 20px rgba(0,167,189,0.3);
    transform: translateY(-2px);
}

/* RESPONSIVE */
@media (max-width: 600px) {
    .footer-nav-alt-container {
        flex-direction: column;
        gap: 12px;
    }

    .footer-nav-alt-button {
        width: 100%;
        justify-content: center;
    }
}

/*********************************** ACTEURS PRINCIPAUX ***************************************/

/* ===============================
   SECTION ACTEURS PRINCIPAUX
   =============================== */
.actors-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

/* CARTE D’ACTEUR */
.actor-card {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    flex-wrap: wrap;
    animation: fadeUp 1s ease-out;
}

.actor-card.reverse {
    flex-direction: row-reverse;
}

.actor-image {
    flex: 1 1 400px;
}

.actor-image img {
    width: 100%;
    border-radius: 20px;
    object-fit: cover;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    transition: transform 0.5s ease;
}

.actor-image img:hover {
    transform: scale(1.03);
}

.actor-content {
    flex: 1 1 600px;
}

.actor-title {
    font-family: 'Lato', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #00a7bd;
    margin-bottom: 20px;
}

.actor-description {
    font-family: 'Lato', sans-serif;
    font-size: 18px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 20px;
}

.actor-content h3 {
    font-family: 'Lato', sans-serif;
    font-size: 20px;
    color: #dc8c17;
    margin-top: 20px;
    margin-bottom: 10px;
}

/* BOUTON SITE */
.actor-button {
    display: inline-block;
    padding: 14px 32px;
    background: linear-gradient(90deg, #00a7bd, #00d4ff);
    color: #fff;
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    font-size: 14px;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-bottom: 30px;
}

.actor-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,167,189,0.4);
}

/* GALERIE D’IMAGES */
.actor-gallery {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.actor-gallery img {
    width: calc(33.333% - 10px);
    border-radius: 12px;
    object-fit: cover;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.actor-gallery img:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 35px rgba(0,167,189,0.25);
}

/* ANIMATION DOUCE */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(25px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .actor-card, .actor-card.reverse {
        flex-direction: column;
    }

    .actor-gallery img {
        width: 100%;
    }

    .actor-title {
        font-size: 24px;
    }

    .actor-content h3 {
        font-size: 18px;
    }
}


/*********************************** AQUAPONIE PAGE ACCUEIL ***************************************/

/* ===============================
   SECTION AQUAPONIE - MODERNE
   =============================== */
.aquaponie-section {
    background: #f9f9f9;
    padding: 80px 20px;
    display: flex;
    justify-content: center;
}

.aquaponie-container {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 1200px;
    gap: 50px;
    flex-wrap: wrap;
}

.aquaponie-text {
    flex: 1 1 500px;
    text-align: center;
}

.aquaponie-title {
    font-family: 'Lato', sans-serif;
    font-size: 36px;
    font-weight: 900;
    background: linear-gradient(90deg, #00a7bd, #00d4ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
}

.aquaponie-description {
    font-family: 'Lato', sans-serif;
    font-size: 18px;
    color: #333;
    line-height: 1.6;
    margin-bottom: 30px;
}

.aquaponie-button-wrapper {
    text-align: center;
}

.aquaponie-button {
    display: inline-block;
    padding: 16px 36px;
    background: linear-gradient(90deg, #00a7bd, #00d4ff);
    color: #fff;
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    font-size: 18px;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.35s ease;
    box-shadow: 0 8px 20px rgba(0,167,189,0.25);
}

.aquaponie-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 30px rgba(0,167,189,0.4);
}

/* IMAGE */
.aquaponie-image-container {
    flex: 1 1 600px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.aquaponie-image {
    width: 100%;
    max-width: 600px;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    object-fit: cover;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .aquaponie-container {
        flex-direction: column-reverse;
        gap: 30px;
    }

    .aquaponie-text {
        text-align: center;
    }

    .aquaponie-image {
        max-width: 100%;
    }

    .aquaponie-title {
        font-size: 30px;
    }

    .aquaponie-description {
        font-size: 16px;
    }
}

/*********************************** PROGRAMME ***************************************/

/* ===============================
   SECTION PROGRAMME
   =============================== */
.program-section {
    padding: 100px 20px;
    background: linear-gradient(180deg, #ffffff, #f6fafc);
    text-align: center;
    position: relative;
}

.program-intro {
    max-width: 900px;
    margin: 0 auto 60px;
    animation: fadeInUp 1s ease forwards;
}

.program-title {
    font-family: 'Lato', sans-serif;
    font-size: 42px;
    font-weight: 900;
    color: #00a7bd;
    margin-bottom: 20px;
}

.program-description {
    font-family: 'Lato', sans-serif;
    font-size: 18px;
    color: #555;
    line-height: 1.6;
}

/* Frise chronologique */
.program-timeline {
    max-width: 1200px;
    margin: 0 auto 60px;
    position: relative;
    animation: fadeIn 1.2s ease forwards;
}

.timeline-image {
    position: relative;
}

.timeline-image img {
    width: 100%;
    border-radius: 20px;
    object-fit: cover;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

/* Phases */
.phase {
    position: absolute;
    top: -40px;
    font-weight: 700;
    font-size: 18px;
    padding: 10px 18px;
    border-radius: 12px;
    color: #fff;
    background-color: #dc8c18;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    border: 2px solid rgba(255,255,255,0.6);
}

.phase-1 {
    left: 20%;
}

.phase-2 {
    right: 20%;
}

/* Pays */
.marker {
    position: absolute;
    font-weight: 700;
    font-size: 16px;
    padding: 10px 18px;
    border-radius: 12px;
    color: #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.fr-marker {
    top: 70px;
    left: -100px; /* France à gauche */
    background-color: #d32f2f;
}

.gu-marker {
    bottom: 30px;
    right: -120px; /* Guatemala à droite */
    background-color: #1976d2;
}

/* BOUTON PLAQUETTE */
.program-button-wrapper {
    margin-top: 40px;
    text-align: center;
}

.program-button {
    display: inline-block;
    padding: 16px 36px;
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: #fff;
    text-decoration: none;
    border-radius: 12px;
    background-color: #00a7bd; /* bleu de base */
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(0,167,189,0.3);
}

.program-button:hover {
    background-color: #dc8c18; /* orange au survol */
    transform: translateY(-3px) scale(1.05); /* petite animation pulse */
    box-shadow: 0 12px 25px rgba(220,140,24,0.4);
}

/* Animations */
@keyframes fadeInUp {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}

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

/* Responsive */
@media (max-width: 900px) {
    .program-title {
        font-size: 32px;
    }

    .program-description {
        font-size: 16px;
    }

    .phase {
        font-size: 12px;
        padding: 8px 14px;
    }

    .marker {
        font-size: 12px;
        padding: 8px 12px;
    }

    .fr-marker {
        left: 0;
    }

    .gu-marker {
        right: 0;
    }

    .program-button {
        width: 80%;
        font-size: 14px;
        padding: 14px 28px;
    }
}

/*********************************** MENU ECOLES ***************************************/

/* ===============================
   SECTION HEXAGONES PROJET - CHEVAUCHEMENT
   =============================== */
.project-hex-section {
    padding: 100px 20px;
    background: #f6fafc;
    text-align: center;
}

.project-hex-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 1700px;
    margin: 0 auto;
    gap: 40px;
    position: relative;
}

/* BOUTON HEXAGONE */
.project-btn {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 400px; /* largeur optimisée */
    position: relative;
    z-index: 1;
}

/* HEXAGONE MEDIA */
.project-btn-media {
    position: relative;
    width: 400px;
    aspect-ratio: 1.30 / 1.10; /* plus large que haut pour belle proportion */
    clip-path: polygon(
        25% 0%, 75% 0%, 
        100% 50%, 75% 100%, 
        25% 100%, 0% 50%
    ); /* hexagone à 6 côtés */
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

/* VOILE SOMBRE AU HOVER */
.project-btn-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0);
    transition: background 0.5s ease;
}

/* FLECHE AU CENTRE */
.project-btn-arrow {
    position: absolute;
    font-size: 30px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

/* HOVER EFFECT */
.project-btn:hover .project-btn-media {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 40px 80px rgba(0,167,189,0.25);
}

.project-btn:hover .project-btn-overlay {
    background: rgba(0,0,0,0.25);
}

.project-btn:hover .project-btn-arrow {
    opacity: 1;
    transform: scale(1);
}

/* TITRE SOUS L'HEXAGONE */
.project-btn h3 {
    margin-top: 20px;
    font-family: 'Lato', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #00a7bd;
    text-align: center;
}

/* CHEVAUCHEMENT */
.project-btn:nth-child(odd) {
    margin-top: 0;
}

.project-btn:nth-child(even) {
    margin-top: 50px; /* léger décalage vertical pour quinconce */
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .project-hex-container {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .project-btn {
        width: 90%;
    }

    .project-btn-media {
        width: 100%;
        aspect-ratio: 1.2 / 1;
    }

    .project-btn h3 {
        font-size: 18px;
    }

    .project-btn-arrow {
        font-size: 26px;
    }

    .project-btn:nth-child(even) {
        margin-top: 0; /* plus de quinconce sur mobile */
    }
}
/*********************************** ECOLE GOUNOD ***************************************/

/* ===============================
   SECTION ÉCOLE CHARLES GOUNOD
   =============================== */
.school-section {
    padding: 100px 20px;
    background: linear-gradient(180deg, #ffffff, #f6fafc);
}

/* Header */
.school-header {
    max-width: 900px;
    margin: 0 auto 60px;
    text-align: center;
    animation: fadeInUp 1s ease forwards;
}

.school-image {
    width: 100%;
    max-width: 900px;
    border-radius: 24px;
    object-fit: cover;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    margin-bottom: 30px;
    transition: transform 0.5s ease;
}

.school-image:hover {
    transform: scale(1.03);
}

.school-title {
    font-family: 'Lato', sans-serif;
    font-size: 42px;
    font-weight: 900;
    color: #00a7bd;
    margin-bottom: 12px;
}

.school-subtitle {
    font-family: 'Lato', sans-serif;
    font-size: 18px;
    color: #555;
    line-height: 1.6;
}

/* Étapes */
.school-progress {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

/* Étape individuelle */
.school-step {
    display: flex;
    gap: 40px;
    align-items: center;
    flex-wrap: wrap;
    animation: fadeIn 1s ease forwards;
}

.school-step.reverse {
    flex-direction: row-reverse;
}

/* Images et vidéo */
.school-step-image {
    flex: 1 1 500px;
}

.school-step-image img,
.school-step-image iframe {
    width: 100%;
    height: 350px;
    border-radius: 16px;
    box-shadow: 0 10px 35px rgba(0,0,0,0.15);
    object-fit: cover;
}

/* Vidéo responsive */
.video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 30%; /* 16:9 ratio */
    height: 0;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Texte */
.school-step-text {
    flex: 1 1 500px;
}

.school-step-text h2 {
    font-family: 'Lato', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #dc8c18;
    margin-bottom: 16px;
}

.school-step-text p {
    font-family: 'Lato', sans-serif;
    font-size: 18px;
    line-height: 1.6;
    color: #333;
}

/* Animations */
@keyframes fadeInUp {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}

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

/* Responsive */
@media (max-width: 900px) {
    .school-header {
        padding: 0 10px;
    }

    .school-title {
        font-size: 32px;
    }

    .school-subtitle {
        font-size: 16px;
    }

    .school-step,
    .school-step.reverse {
        flex-direction: column;
        text-align: center;
    }

    .school-step-image img,
    .school-step-image iframe {
        height: auto;
        max-width: 100%;
    }
}

/*********************************** ECOLE SAINTE MARIE ***************************************/
/* ===============================
   BOUTONS
   =============================== */
.school-button, .future-button {
    display: inline-block;
    padding: 14px 36px;
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: #fff;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.school-button {
    background: linear-gradient(90deg, #00a7bd, #00d4ff);
}

.school-button:hover {
    background: linear-gradient(90deg, #dc8c18, #ff9800);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,167,189,0.4);
}

.future-button {
    background: linear-gradient(90deg, #00a7bd, #0095b0);
}

.future-button:hover {
    background: linear-gradient(90deg, #dc8c18, #ff9800);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,167,189,0.4);
}

/* ===============================
   TIMELINE ÉCOLE
   =============================== */
.school-timeline-section {
    width: 100%;
    max-width: 1150px;
    margin: 60px auto;
    padding: 40px 20px;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.07);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease;
}

.school-timeline-section.visible {
    opacity: 1;
    transform: translateY(0);
}

.school-timeline-title {
    text-align: center;
    font-size: 28px;
    margin-bottom: 50px;
    font-weight: 700;
    color: #00a7bd;
}

.school-timeline-track {
    display: flex;
    justify-content: space-between;
    position: relative;
    padding: 0 20px;
}

.school-timeline-track::before {
    content: "";
    position: absolute;
    top: 28px;
    left: 20px;
    right: 20px;
    height: 4px;
    background: linear-gradient(to right, #bfecef, #00a7bd);
    border-radius: 2px;
}

.school-timeline-step {
    text-align: center;
    width: 150px;
    position: relative;
}

.school-timeline-dot {
    width: 46px;
    height: 46px;
    border: 3px solid #00a7bd;
    color: #00a7bd;
    font-weight: 700;
    border-radius: 50%;
    background: white;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    transition: transform 0.4s ease;
}

.school-step-current .school-timeline-dot {
    border-color: #dc8c18;
    color: #dc8c18;
    animation: pulseDot 1.2s infinite;
}

@keyframes pulseDot {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.3); }
}

.school-timeline-text {
    margin-top: 30px;
    font-weight: 700; 
    font-size: 0.95rem;
    color: #333;
}

/* ===============================
   FUTURE ANNOUNCEMENT
   =============================== */
.future-title-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
}

.future-title {
    font-size: 28px;
    font-weight: 700;
    color: #dc8c18;
    flex: 1;
}

.future-announcement {
    background: #00a7bd;
    color: white;
    padding: 20px 24px;
    border-radius: 16px;
    font-weight: 700;
    font-size: 16px;
    flex-shrink: 0;
    max-width: 300px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0,167,189,0.3);
}

/* ===============================
   ANIMATION AU SCROLL
   =============================== */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease-out;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 900px) {
    .school-timeline-track {
        overflow-x: auto;
        padding-bottom: 20px;
    }

    .future-title-wrapper {
        flex-direction: column;
        align-items: center;
    }

    .future-announcement {
        max-width: 100%;
    }
}

/* ===============================
   BLOC PROJET FUTUR
   =============================== */
.project-block {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    padding: 40px 30px;
    max-width: 900px;
    margin: 40px auto;
    text-align: center;
}

.project-title {
    font-size: 28px;
    font-weight: 700;
    color: #dc8c18;
    margin-bottom: 20px;
}

.project-description {
    font-size: 18px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 30px;
}

.project-button {
    display: inline-block;
    padding: 14px 36px;
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: #fff;
    background: linear-gradient(90deg, #00a7bd, #0095b0);
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.project-button:hover {
    background: linear-gradient(90deg, #dc8c18, #ff9800);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,167,189,0.4);
}

/* ===============================
   BLOC REUNION
   =============================== */
.meeting-block {
    background: #00a7bd;
    color: #fff;
    border-radius: 20px;
    padding: 25px 30px;
    font-size: 18px;
    font-weight: 700;
    max-width: 500px;
    margin: 30px auto;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0,167,189,0.3);
}

/* ===============================
   ANIMATION AU SCROLL
   =============================== */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease-out;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 900px) {
    .project-block, .meeting-block {
        padding: 30px 20px;
        max-width: 100%;
    }

    .project-title {
        font-size: 24px;
    }

    .project-description {
        font-size: 16px;
    }

    .meeting-block {
        font-size: 16px;
    }
}


/*********************************** CONTRIBUER ***************************************/

.support-section {
    padding: 120px 20px;
    background: linear-gradient(180deg, #fff, #fff3e6);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 80px;
}

/* Header */
.support-header {
    max-width: 900px;
    text-align: center;
}

.support-title {
    font-family: 'Lato', sans-serif;
    font-size: 48px;
    font-weight: 900;
    color: #dc8c18;
    margin-bottom: 20px;
}

.support-subtitle {
    font-size: 20px;
    line-height: 1.6;
    color: #333;
}

/* Phase */
.support-phase {
    max-width: 1200px;
    width: 100%;
    text-align: center;
}

.phase-title {
    font-size: 34px;
    color: #00a7bd;
    font-weight: 800;
    margin-bottom: 10px;
}

.phase-description {
    font-size: 18px;
    color: #555;
    margin-bottom: 40px;
}

/* Cartes */
.phase-cards {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

.phase-card {
    background: linear-gradient(135deg, #dc8c18, #ffb84d);
    width: 220px;
    height: 260px;
    border-radius: 26px;
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-weight: 700;
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
    transition: all 0.4s ease;
}

.phase-card:hover {
    transform: translateY(-10px) scale(1.03);
}

/* Icônes */
.card-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 18px;
    animation: floatIcon 4s ease-in-out infinite;
}

.card-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Texte carte */
.phase-card p {
    font-size: 16px;
    line-height: 1.3;
    text-align: center;
}

/* Animation flottante */
@keyframes floatIcon {
    0% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
    100% { transform: translateY(0); }
}

/* Contact */
.support-contact {
    text-align: center;
    font-size: 18px;
    line-height: 1.6;
}

.support-contact h2 {
    color: #dc8c18;
    margin-bottom: 10px;
}

/* Bouton */
.support-button {
    padding: 18px 50px;
    background: #00a7bd;
    color: #fff;
    font-weight: 900;
    font-size: 20px;
    border-radius: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.support-button:hover {
    background: #dc8c18;
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

/* Mobile */
@media (max-width: 1000px) {
    .phase-cards {
        flex-wrap: wrap;
        justify-content: center;
    }

    .phase-card {
        width: 260px;
    }
}

/*********************************** REALISER LE PROJET ***************************************/

:root {
    --ccds-blue: #00abb9;
    --ccds-orange: #d98c2c;
    --ccds-dark: #0f2a33;
    --ccds-light: #f7fbfc;
    --ccds-white: #ffffff;
}

/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* BASE */
body {
    font-family: 'Poppins', sans-serif;
    background: var(--ccds-light);
    color: var(--ccds-dark);
    line-height: 1.7;
}

/* HERO */
.ccds-hero-section {
    background: linear-gradient(135deg, var(--ccds-blue), #008c97);
    color: white;
    padding: 110px 20px;
    text-align: center;
}

.ccds-hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 25px;
}

.ccds-hero-highlight {
    color: var(--ccds-orange);
}

.ccds-hero-text {
    max-width: 820px;
    margin: 0 auto 45px;
    font-size: 1.1rem;
}

/* BUTTONS - UNIFORMISATION */
.ccds-btn-primary,
.ccds-btn-secondary,
.ccds-btn-orange-outline {
    display: inline-block;
    padding: 14px 34px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

/* Bouton principal - orange stable */
.ccds-btn-primary {
    background: var(--ccds-orange);
    color: white;
}
.ccds-btn-primary:hover {
    background: var(--ccds-orange);
    color: white;
    transform: none;
    box-shadow: none;
}

/* Bouton secondaire - bleu avec hover léger */
.ccds-btn-secondary {
    background: var(--ccds-blue);
    color: white;
}
.ccds-btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

/* Bouton écoles embarquées - orange avec texte blanc et hover léger */
.ccds-btn-orange-outline {
    background: var(--ccds-orange);
    color: white;
}
.ccds-btn-orange-outline:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

/* TIMELINE */
.ccds-timeline-section {
    background: white;
    padding: 90px 20px 110px;
}

.ccds-timeline-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 80px;
}

.ccds-timeline-track {
    max-width: 1150px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    position: relative;
}

.ccds-timeline-track::before {
    content: "";
    position: absolute;
    top: 36px;
    left: 40px;
    right: 40px;
    height: 3px;
    background: linear-gradient(to right, #bfecef, var(--ccds-blue));
}

.ccds-timeline-step {
    width: 150px;
    text-align: center;
    position: relative;
}

.ccds-timeline-dot {
    width: 46px;
    height: 46px;
    background: white;
    border: 3px solid var(--ccds-blue);
    color: var(--ccds-blue);
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    z-index: 2;
    position: relative;
}

.ccds-step-final .ccds-timeline-dot {
    border-color: var(--ccds-orange);
    color: var(--ccds-orange);
}

.ccds-step-active .ccds-timeline-dot {
    box-shadow: 0 0 8px rgba(217,140,44,0.25);
}

.ccds-timeline-text {
    margin-top: 32px;
    font-size: 0.95rem;
    font-weight: 700; /* Titres sous la timeline en gras */
}

/* DETAILS */
.ccds-details-section {
    background: var(--ccds-light);
    padding: 90px 20px;
}

.ccds-details-title {
    text-align: center;
    font-size: 2.4rem;
    margin-bottom: 60px;
}

.ccds-details-box {
    max-width: 820px;
    padding: 24px 28px;
    border-radius: 16px;
    background: white;
    box-shadow: 0 8px 22px rgba(0,0,0,0.06);
    margin: 18px auto;
}

.ccds-left-box {
    transform: translateX(-50px);
}

.ccds-right-box {
    transform: translateX(50px);
}

.ccds-details-subtitle {
    color: var(--ccds-blue);
    margin-bottom: 8px;
    font-size: 1.3rem;
}

.ccds-highlight-box .ccds-details-subtitle {
    color: var(--ccds-orange);
}

.ccds-details-text {
    line-height: 1.7;
}

/* CTA */
.ccds-cta-section {
    background: #f2f9fb;
    padding: 90px 20px;
    text-align: center;
}

.ccds-cta-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.ccds-cta-text {
    max-width: 680px;
    margin: auto;
}

.ccds-cta-buttons {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* CONTACT */
.ccds-contact-section {
    background: var(--ccds-blue);
    color: white;
    padding: 90px 20px;
    text-align: center;
}

.ccds-contact-title {
    font-size: 2.3rem;
    margin-bottom: 15px;
}

.ccds-contact-text {
    margin-bottom: 35px;
}

/* FOOTER */
.ccds-footer-section {
    background: #008c97;
    color: white;
    text-align: center;
    padding: 20px;
    font-size: 0.85rem;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .ccds-timeline-track {
        overflow-x: auto;
        padding-bottom: 30px;
    }

    .ccds-left-box,
    .ccds-right-box {
        transform: none;
    }
}

@media (max-width: 600px) {
    .ccds-hero-title {
        font-size: 2.2rem;
    }

    .ccds-timeline-title,
    .ccds-details-title,
    .ccds-cta-title {
        font-size: 2rem;
    }
}


/*********************************** PARTENAIRES ***************************************/

/* ===============================
   PARTENAIRES AVEC HEXAGONES DÉCOR
   =============================== */

.partners-section {
    font-family: 'Lato', sans-serif;
    background: linear-gradient(180deg, #ffffff, #f6fafc);
    color: #333;
    padding: 80px 20px;
    position: relative;
    overflow: hidden; /* pour les hexagones décoratifs */
}

/* HERO */
.partners-hero {
    text-align: center;
    margin-bottom: 60px;
}

.partners-hero p {
    font-size: 20px;
    max-width: 900px;
    margin: auto;
    line-height: 1.6;
}

/* GRID PARTENAIRES */
.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: auto;
    z-index: 2;
    position: relative;
}

/* CARTE PARTENAIRE */
.partner-card {
    background: white;
    border-radius: 20px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.partner-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 35px 80px rgba(0,167,189,0.25);
}

/* LOGO ROND */
.partner-logo {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.partner-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.partner-logo:hover {
    transform: scale(1.05);
}

/* NOM ET DESCRIPTION */
.partner-card h3 {
    font-size: 22px;
    color: #dc8c18;
    margin-bottom: 10px;
}

.partner-card p {
    font-size: 16px;
    line-height: 1.5;
    color: #333;
}

/* HEXAGONES DÉCORATIFS */
.partners-decor {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.decor-hex {
    position: absolute;
    width: 120px;
    aspect-ratio: 1.154;
    clip-path: polygon(
        25% 0%, 75% 0%, 
        100% 50%, 75% 100%, 
        25% 100%, 0% 50%
    );
    opacity: 0.08;
    transition: transform 1.5s ease-in-out;
}

/* Couleurs et positions */
.hex1 { top: 10%; left: 5%; background: #00a7bd; }
.hex2 { top: 30%; right: 10%; background: #dc8c18; }
.hex3 { bottom: 15%; left: 20%; background: #00d4ff; }
.hex4 { top: 60%; left: 60%; background: #00a7bd; }
.hex5 { bottom: 5%; right: 25%; background: #dc8c18; }

/* Animation légère */
.decor-hex {
    animation: floatHex 6s ease-in-out infinite alternate;
}

@keyframes floatHex {
    0% { transform: translateY(0) rotate(0deg); }
    100% { transform: translateY(-20px) rotate(10deg); }
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .partner-card h3 {
        font-size: 20px;
    }
    
    .partner-card p {
        font-size: 14px;
    }

    .partner-logo {
        width: 140px;
        height: 140px;
    }
}
