/*ANIMATE.CSS*/
@charset "UTF-8";
/*!
Animate.css - http://daneden.me/animate
Licensed under the MIT license - http://opensource.org/licenses/MIT

Copyright (c) 2014 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;
}

@-webkit-keyframes bounce {
  0%, 20%, 53%, 80%, 100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
            transition-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-transition-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
            transition-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-transition-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
            transition-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    -webkit-transform: translate3d(0, -15px, 0);
            transform: translate3d(0, -15px, 0);
  }

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

@keyframes bounce {
  0%, 20%, 53%, 80%, 100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
            transition-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-transition-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
            transition-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-transition-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
            transition-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;
      -ms-transform-origin: center bottom;
          transform-origin: center bottom;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@-webkit-keyframes wobble {
  0% {
    -webkit-transform: none;
            transform: none;
  }

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

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

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

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

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

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

@keyframes wobble {
  0% {
    -webkit-transform: none;
            transform: none;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.bounceIn {
  -webkit-animation-name: bounceIn;
          animation-name: bounceIn;
  -webkit-animation-duration: .75s;
          animation-duration: .75s;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.bounceOut {
  -webkit-animation-name: bounceOut;
          animation-name: bounceOut;
  -webkit-animation-duration: .75s;
          animation-duration: .75s;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  100% {
    -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 {
  0% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
            transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-transition-timing-function: ease-in;
            transition-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-transition-timing-function: ease-in;
            transition-timing-function: ease-in;
  }

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

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

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

@keyframes flipInX {
  0% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
            transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-transition-timing-function: ease-in;
            transition-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-transition-timing-function: ease-in;
            transition-timing-function: ease-in;
  }

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

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

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

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

@-webkit-keyframes flipInY {
  0% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
            transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-transition-timing-function: ease-in;
            transition-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-transition-timing-function: ease-in;
            transition-timing-function: ease-in;
  }

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

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

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

@keyframes flipInY {
  0% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
            transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-transition-timing-function: ease-in;
            transition-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-transition-timing-function: ease-in;
            transition-timing-function: ease-in;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  50% {
    opacity: 1;
  }
}

@keyframes zoomIn {
  0% {
    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 {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
            transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
            animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  100% {
    opacity: 0;
  }
}

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

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

  100% {
    opacity: 0;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  100% {
    visibility: hidden;
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
}

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

  100% {
    visibility: hidden;
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
}

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

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

  100% {
    visibility: hidden;
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}

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

  100% {
    visibility: hidden;
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}

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

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

  100% {
    visibility: hidden;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
}

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

  100% {
    visibility: hidden;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
}

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

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

  100% {
    visibility: hidden;
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
}

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

  100% {
    visibility: hidden;
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
}

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

/*PARALLAX LAYERS*/

.parallax{
        background-position: center center;
        background-repeat: no-repeat;
        background-size: cover;
        background-attachment: fixed !important;
}

/*this class will be activated on mobile devices in order to switch off the parallax effect*/
.parallax-off, .no-parallax {
    background-attachment:scroll !important;
    background-size:cover !important;
}


/*MAIN.CSS*/
/*-------------------------------------------------------------------------------------------------------------------------------*/
/*This is main CSS file that contains custom style rules used in this template*/
/*-------------------------------------------------------------------------------------------------------------------------------*/
/* Template Name: ADRIA.*/
/* Version: 1.0 Initial Release*/
/* Build Date: 02nd Sep 2014*/
/* Author: Designova.*/
/* Website: http://www.designova.net */
/* Copyright: (C) 2014 */
/*-------------------------------------------------------------------------------------------------------------------------------*/


/*--------------------------------------------------------*/
/* TABLE OF CONTENTS: */
/*--------------------------------------------------------*/
/* 01 - LAYOUT INITIALIZATION & COLOR PRESETS */
/* 02 - HEADER, INTRO & NAVIGATION */
/* 03 - COMMON ELEMENTS & TYPOGRAPHY */
/* 04 - PAGES & SECTIONS SETUP*/
/* 05 - FOOTER*/


/*-------------------------------------------------------------------------------------------------------------------------------*/
/* 01 - LAYOUT INITIALIZATION & COLOR PRESETS */
/*-------------------------------------------------------------------------------------------------------------------------------*/

html,body{
  overflow-x:hidden !important; 
    margin: 0px;
    padding: 0px;
}
body
{
  font-weight:300;
}
a, a:hover, a:focus{
  text-decoration: none;
}
a:focus { 
      outline: none; 
}
.animated{
  visibility: hidden;
}
.ease{
  -webkit-transition: all .4s ease-in-out;
     -moz-transition: all .4s ease-in-out;
    -ms-transition: all .4s ease-in-out;
     -o-transition: all .4s ease-in-out;
      transition: all .4s ease-in-out;
}
.ease:hover{
  -webkit-transition: all .4s ease-in-out;
     -moz-transition: all .4s ease-in-out;
    -ms-transition: all .4s ease-in-out;
     -o-transition: all .4s ease-in-out;
      transition: all .4s ease-in-out;
}
.text-center > .img-responsive{
  display: block;
  display: inline-block;
}
p{
  color: #777;
  font-weight:300;
  font-size: 14px;
  line-height:21px;
}
h1,h2,h3,h4,h5,h6{
  margin-top: 0;
  font-weight: normal;
}

@media (min-width: 1024px) and (max-width: 5000px) {
  .container{
    max-width: 1000px;
  }
}
/*Common Spacing and Padding*/

.page-section{
  padding: 140px 0;
}
.separator-section{
  padding: 100px 0;
}
.add-top{
  margin-top: 120px;
}
.add-bottom{
  margin-bottom: 120px;
}
.add-top-half{
  margin-top: 60px;
}
.add-bottom-half{
  margin-bottom: 60px;
}
.add-top-quarter{
  margin-top: 30px;
}
.pad-top{
  padding-top: 120px;
}
.pad-bottom{
  padding-bottom: 120px;
}
.pad-top-half{
  padding-top: 60px;
}
.pad-bottom-half{
  padding-bottom: 60px;
}
.pad{
  padding-left: 20px;
  padding-right: 20px;
}
.remove-top{
  margin-top: 0;
}
.remove-bottom{
  margin-bottom: 0;
}
.remove-pad-top{
  padding-top: 0;
}
.remove-pad-bottom{
  padding-bottom: 0;
}

.mob-center > .img-responsive{
  display: inline-block;
}
.no-gutter{
  margin-left: -15px !important;
}
.no-pad{
  padding: 0 !important;
}
.valign{
  position: relative;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}
.align-inline{
  display: inline-block;
}
.absolute-overlay{
  position: absolute;
  top: 0;
  left: 0;
}
.poster-img{
  background:url(../images/poster.jpg) center center no-repeat !important;
  background-size: cover !important;
}

/*-------------------------------------------------------------------------------------------------------------------------------*/
/* 02 - HEADER, INTRO & NAVIGATION */
/*-------------------------------------------------------------------------------------------------------------------------------*/

.standard-header{
  height: 80px;
  background:transparent;
  width: 100%;
    z-index: 100;
    box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
  background:#132544;
}
.standard-header-top{
  position: fixed;
  opacity: 0;
  top: 0;
}
.standard-header-bottom{
  position: fixed;
  display: block;
  bottom: 0;
  -webkit-transition: all .8s linear;
     -moz-transition: all .8s linear;
    -ms-transition: all .8s linear;
     -o-transition: all .8s linear;
      transition: all .8s linear;
}
.standard-nav {
    float: right;
    list-style: none outside none;
    margin: 25px 0 0;
    padding: 0;
}
.standard-nav li {
    display: inline-block;
    float: left;
    margin-left: 10px;
}
.standard-nav li > a {
  border-bottom: 2px solid transparent;
    padding: 5px;
    font-weight: 300;
    font-size: 12px;
    letter-spacing: 2px;
    line-height: 26px;
    text-transform: uppercase;
  color:#fff;
}
.standard-nav li > a.highlighted{
  border-bottom: 2px solid;
    padding: 5px;
}
.standard-nav li > a:hover {
  color:#dfb47d;
}
.main-logo{
  margin-top: 20px;
}
.foot-bot {
  height: 75px;
    width: 100%;
    background: #9C8055;
}
.foot-social{
  margin: 0;
  padding: 0;
  list-style: none;
}
.foot-social li{
  display: inline-block;
  margin: 0 5px;
}
.foot-social li a{
  color:#fff;
  opacity:.8
}
.foot-social li a:hover {opacity:1; color:#dfb47d;}
.mastfoot .credits{
  margin-top: 20px;
  font-size: 14px;
  line-height: 21px;
}
.vid-logo {width:300px;}
/*-------------------------------------------------------------------------------------------------------------------------------*/
/* 03 - COMMON ELEMENTS & TYPOGRAPHY */
/*-------------------------------------------------------------------------------------------------------------------------------*/
.main-title{
  font-size: 36px;
  line-height: 43px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 4px;
}
.main-heading{
  margin-bottom: 40px;
}
.main-heading>span{
  font-size: 12px;
  line-height: 19px;
  font-weight: 200;
  text-transform: uppercase;
  letter-spacing: 4px;
  border-top:solid 2px;
  border-bottom:solid 2px;
  border-left:none;
  border-right:none;
  padding: 7px 0px 5px 4px;
}
.super-promo-text{
  font-size: 24px;
  line-height: 31px;
  font-weight: 600;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 4px;
}
.promo-text{
  font-size: 16px;
  line-height: 23px;
}

/*Mouse Icon Animated*/

/*mouse scroll indicator icon*/
.intro .mouse-icon-wrap{
  width: 100%;
  text-align: center;
  margin-top: 370px;
  position: absolute;
}
.intro .mouse-icon {
    background: none repeat scroll 0 0 rgba(0, 0, 0, 0);
    border: 3px solid;
    border-radius: 25px;
    bottom: 120px;
    height: 50px;
    left: 0;
    margin: 0 auto;
    position: absolute;
    right: 0;
    width: 30px;
    cursor: pointer;
  -webkit-transition: all .3s linear;
     -moz-transition: all .3s linear;
    -ms-transition: all .3s linear;
     -o-transition: all .3s linear;
      transition: all .3s linear;
}

.intro .mouse-icon:hover{
  opacity: 0.3 !important;
  -webkit-transition: all .3s linear;
     -moz-transition: all .3s linear;
    -ms-transition: all .3s linear;
     -o-transition: all .3s linear;
      transition: all .3s linear;
}
.intro .mouse-icon .wheel {
    -webkit-animation: 1.7s ease 0s normal none infinite magic-mouse-icon;
    -moz-animation: 1.7s ease 0s normal none infinite magic-mouse-icon;
    -o-animation: 1.7s ease 0s normal none infinite magic-mouse-icon;
    animation: 1.7s ease 0s normal none infinite magic-mouse-icon;
    border-radius: 50%;
    height: 12px;
    left: 0;
    margin-left: auto;
    margin-right: auto;
    margin-top: 6px;
    right: 0;
    width: 6px;
}
@-moz-keyframes magic-mouse-icon {
  0% {
      margin-top: 6px;
      opacity: 0;
  }
  30% {
      opacity: 1;
  }
  100% {
      margin-top: 18px;
      opacity: 0;
  }
}
@-webkit-keyframes magic-mouse-icon {
  0% {
      margin-top: 6px;
      opacity: 0;
  }
  30% {
      opacity: 1;
  }
  100% {
      margin-top: 18px;
      opacity: 0;
  }
}
@-o-keyframes magic-mouse-icon {
  0% {
      margin-top: 6px;
      opacity: 0;
  }
  30% {
      opacity: 1;
  }
  100% {
      margin-top: 18px;
      opacity: 0;
  }
}
@keyframes magic-mouse-icon {
  0% {
      margin-top: 6px;
      opacity: 0;
  }
  30% {
      opacity: 1;
  }
  100% {
      margin-top: 18px;
      opacity: 0;
  }
}


.arrows {
    font-size: 0;
    margin-top: 35px;
}
.arrows .arrow {
    color: #FFFFFF !important;
    cursor: pointer;
    display: inline-block;
    font-size: 14px;
    line-height: 1;
    position: relative;
}
.arrows .arrow.left {
    margin-right: 12px;
}
.arrows .arrow i.fa {
    color: inherit;
    padding: 5px;
    transition: all 0.15s ease 0s;
}
.arrows .arrow i.fa:hover {
    color: #46CAD7 !important;
}


/*Buttons*/
.btn-adria{
  border-radius: 0px;
  text-decoration: none;
  padding: 15px 20px;
  font-size: 12px;
  line-height: 19px;
  text-transform: uppercase;
  letter-spacing: 1px;
  -webkit-transition: all .4s ease-in-out;
     -moz-transition: all .4s ease-in-out;
    -ms-transition: all .4s ease-in-out;
     -o-transition: all .4s ease-in-out;
      transition: all .4s ease-in-out;
}
.btn-adria-big{
  border-radius: 0px;
  text-decoration: none;
  padding: 15px 20px;
  font-size: 18px;
  line-height: 25px;
  text-transform: uppercase;
  letter-spacing: 1px;
  -webkit-transition: all .4s ease-in-out;
     -moz-transition: all .4s ease-in-out;
    -ms-transition: all .4s ease-in-out;
     -o-transition: all .4s ease-in-out;
      transition: all .4s ease-in-out;
}
.btn-adria:hover{
  -webkit-transition: all .4s ease-in-out;
     -moz-transition: all .4s ease-in-out;
    -ms-transition: all .4s ease-in-out;
     -o-transition: all .4s ease-in-out;
      transition: all .4s ease-in-out;
}
.btn-adria-white{
  border:solid 1px #fff;
  background: transparent;
  color: #fff;
}
.btn-adria-white:hover{
  border:solid 1px #fff;
  background: #fff;
  color: #000;
}

.btn-adria-dark{
  border:solid 2px #000;
  background: transparent;
  color: #000;
}
.btn-adria-dark:hover{
  border:solid 2px #000;
  background: #000;
  color: #fff;
}

.btn-adria-color{
  background: transparent;
  border:solid 2px;
}
.btn-adria-color:hover{
  color: #fff;
}

/*-------------------------------------------------------------------------------------------------------------------------------*/
/* 04 - PAGES & SECTIONS SETUP */
/*-------------------------------------------------------------------------------------------------------------------------------*/

/*ABOUT*/
.about-bg{
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}
.about-content{
  padding: 100px 0;
}
.about-content p{
}
.welcome-text{
  font-size: 36px;
  line-height: 48px;
  font-weight: 200;
  text-transform: uppercase;
  letter-spacing: 6px;
}
.welcome-text-sub{
  border-top: solid 2px;
  border-bottom: solid 2px;
  padding: 20px 0;
  font-size: 16px;
  line-height: 23px;
  font-style: italic;
}

/*TEAM*/
.team-stage{
  padding: 30px;
  padding-bottom: 0;
  text-align: center;
}
.team .owl-theme .owl-controls{
  margin: 0;
}
.team-stage h3{
  font-size: 14px;
  line-height: 21px;
  font-weight: 200;
  text-transform: uppercase;
  letter-spacing: 4px;
  margin-bottom: 0;
  margin-top: 0px;
  padding: 10px;
}
.team-stage h6{
  font-size: 14px;
  line-height: 21px;
  font-weight: 200;
  font-style: italic;
  padding: 10px;
}

.clients-carousel .owl-prev{
  margin-top: -10px !important;
}
.team-carousel .owl-next{
  background: transparent url(../images/next-dark.png) no-repeat center center !important;
}
.team-carousel .owl-prev{
  background: transparent url(../images/prev-dark.png) no-repeat center center !important;
}

.feature-icon i {
    display: block;
    float: left;
    font-size: 50px;
    margin-bottom: 50px;
    margin-right: 20px;
    margin-top: -10px;
}
.feature-icon h4 {
  font-weight: normal;
}
.feature-heading{
  margin-bottom: 30px;
}
.feature-heading>span{
  font-size: 14px;
  line-height: 21px;
  font-weight: 200;
  text-transform: uppercase;
  letter-spacing: 4px;
  border:solid 2px;
  padding: 7px 5px 5px 9px;
}
.features-slider p{
  font-size: 12px;
  line-height: 19px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.features-slider-triggers{
  margin-top: 20px;
}
.features-slider-triggers img{
  width: 70px;
  height: 70px;
  padding: 5px;
}
.features-slider-triggers a{
  opacity: 0.2;
  -webkit-transition: all .4s ease-in-out;
     -moz-transition: all .4s ease-in-out;
    -ms-transition: all .4s ease-in-out;
     -o-transition: all .4s ease-in-out;
      transition: all .4s ease-in-out;
}
.features-slider-triggers a:hover{
  opacity: 1;
  -webkit-transition: all .4s ease-in-out;
     -moz-transition: all .4s ease-in-out;
    -ms-transition: all .4s ease-in-out;
     -o-transition: all .4s ease-in-out;
      transition: all .4s ease-in-out;
}
.features-triggered{
  opacity: 1 !important;
  -webkit-transition: all .4s ease-in-out;
     -moz-transition: all .4s ease-in-out;
    -ms-transition: all .4s ease-in-out;
     -o-transition: all .4s ease-in-out;
      transition: all .4s ease-in-out;

}
.testimonial-text{
  font-size: 24px;
  line-height: 31px;
  font-weight: 200;
}
#service-details-carousel {padding:65px 0; background:#9F8151;}
.mi-slider nav {
  max-width:none;
  background:#9F8151;
  border-color:#102445;
}
.mi-slider nav a {
  color:#fff;
}
.mi-slider nav a:hover, .mi-slider nav a.mi-selected {color:#102445;}
/*offerings*/


/*CLIENTS*/

.client-list{
  list-style: none;
  padding: 0;
}
.client-list li{
  display: inline-block;
  padding-left: 20px;
  padding-right: 20px;
  padding-bottom: 10px;
  border-bottom:solid 8px;
  -webkit-transition: all .4s ease-in-out;
     -moz-transition: all .4s ease-in-out;
    -ms-transition: all .4s ease-in-out;
     -o-transition: all .4s ease-in-out;
      transition: all .4s ease-in-out;
}
.client-list li:hover{
  border-bottom:solid 8px;
  -webkit-transition: all .4s ease-in-out;
     -moz-transition: all .4s ease-in-out;
    -ms-transition: all .4s ease-in-out;
     -o-transition: all .4s ease-in-out;
      transition: all .4s ease-in-out;
}


/*PROMO*/
.promo-bg{
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}
.promo-inner{
  padding: 140px 120px 120px 120px;
}
.promo h1{
  font-size: 36px;
  line-height: 43px;
  font-weight: 200;
}
.promo h3{
  margin-top: 20px;
  padding-top: 20px;
    font-size: 14px;
    font-weight: 200;
    letter-spacing: 4px;
    line-height: 21px;
    border-top: solid 1px;
    text-transform: uppercase;
}

/*PRICING*/
#ws .price {
    border: 8px solid;
    margin: 10px;
    padding-bottom: 40px;
    padding-top: 40px;
    text-align: center;
  -webkit-transition: all .4s ease-in-out;
     -moz-transition: all .4s ease-in-out;
    -ms-transition: all .4s ease-in-out;
     -o-transition: all .4s ease-in-out;
      transition: all .4s ease-in-out;
}
#ws .price:hover {
  -webkit-transition: all .4s ease-in-out;
     -moz-transition: all .4s ease-in-out;
    -ms-transition: all .4s ease-in-out;
     -o-transition: all .4s ease-in-out;
      transition: all .4s ease-in-out;
}
#ws .price h1 {
    font-size: 64px;
    line-height: 71px;
    font-weight: 200;
}
#ws .price h5 {
    font-size: 14px;
    line-height: 21px;
    font-weight: 200;
    padding: 10px;
}
#ws .price h6 {
    font-size: 16px;
    font-weight: 200;
    font-style: italic;
}
#ws .price p {
    font-size: 14px;
    line-height: 28px;
}
#ws .price-specs{
  border-top: solid 2px;
  border-bottom: solid 2px;
  padding: 20px 0;
  margin: 20px 0;
}

/*FEATURED*/
.featured img{
  margin-top: 15px;
}

/*PORTFOLIO*/
.cbp-l-caption-title{
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 14px;
  line-height: 21px;
}

/*NEWS*/
.news-post-list{
  padding: 80px 0;
}
.news-post-list h1{
    font-size: 18px;
    line-height: 25px;
    font-weight: 200;
    text-transform: uppercase;
    letter-spacing: 4px;
}
.news-subline{
  width: 30%;
  height: 2px;
  margin-bottom: 15px;
  display: inline-block;
}
.news-post-list-wrap{
  text-align: center;
  -webkit-transition: all .4s ease-in-out;
     -moz-transition: all .4s ease-in-out;
    -ms-transition: all .4s ease-in-out;
     -o-transition: all .4s ease-in-out;
      transition: all .4s ease-in-out;
}

.news-post-list-wrap:hover{
  border-top: solid 10px;
  border-bottom: solid 10px;
  -webkit-transition: all .4s ease-in-out;
     -moz-transition: all .4s ease-in-out;
    -ms-transition: all .4s ease-in-out;
     -o-transition: all .4s ease-in-out;
      transition: all .4s ease-in-out;
}
.news-more{
  padding-top: 80px;
    font-size: 14px;
    font-weight: 200;
    letter-spacing: 4px;
    line-height: 21px;
    text-transform: uppercase;
}

/*CALL TO ACTION*/
.call-to-action{
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}


/*CONTACT*/

.contact{
}
.contact-form{
}
/*contact form*/

.email-wrap{
  padding-top: 20px;
}
.contact-mail{
  font-size: 18px;
  line-height: 25px;font-weight:300;
}
.contact-form-wrap{
}
.contact-item{
  padding: 40px;
}
input, select, textarea {
    background: transparent;
    border: none;
    border-bottom: 1px solid;
    border-radius: 0px;
    box-shadow: none;
    font-size: 14px;
    font-weight: 300;
    line-height: 25px;
    height: 40px;
  margin-bottom:10px;
    padding: 10px 0;
    width: 100%;
  -webkit-transition: all .8s linear;
     -moz-transition: all .8s linear;
    -ms-transition: all .8s linear;
     -o-transition: all .8s linear;
      transition: all .8s linear;
}
input:focus, textarea:focus {
  -webkit-transition: all .8s linear;
     -moz-transition: all .8s linear;
    -ms-transition: all .8s linear;
     -o-transition: all .8s linear;
      transition: all .8s linear;
}
textarea {
    background: transparent;
    border: none ;
    border-bottom: 1px solid;
    border-radius: 0px;
    box-shadow: none;
    font-size: 14px;
    font-weight: 300;
    line-height: 25px;
    margin-top: 0;
    padding: 10px 0;
    resize: none;
    width: 100%;
  -webkit-transition: all .8s linear;
     -moz-transition: all .8s linear;
    -ms-transition: all .8s linear;
     -o-transition: all .8s linear;
      transition: all .8s linear;
}
input.send_message {
    cursor: pointer;
    float: left;
    font-size: 12px;
    font-weight: 400;
    margin: 0;
    width: 120px;
}
input.send_message:hover {
}
.btn-wrap{
  margin-top: 30px;
}
.space-left{
  margin-left: 1%;
}


.alert{
  margin-top: 0px;
  border-radius: 0px;
  padding: 5px;
  -webkit-transition: all .8s linear;
     -moz-transition: all .8s linear;
    -ms-transition: all .8s linear;
     -o-transition: all .8s linear;
      transition: all .8s linear;
}
.alert > p{
  text-shadow:none;
  font-size: 14px;
  line-height: 21px; font-weight:300;
}

.address-wrap h3{
    font-size: 14px;
    font-weight: 200;
    letter-spacing: 4px;
    line-height: 21px;
    text-transform: uppercase;
}

.email-wrap{
    font-size: 24px;
    font-weight: 600;
    line-height: 31px;
    margin-top: 10px;
    margin-bottom: 20px;
    padding: 0;
}

/*SINGLE PROJECT PAGE*/

.single-project{
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}
.single-project h1{
  font-size: 48px;
  line-height: 55px;
  font-weight: 200;
}
.single-project h1 > strong{
  font-size: 48px;
  line-height: 55px;
  font-weight: 200;
}
.single-project h3{
  margin-bottom: 30px;
}
.single-project h3>span{
  font-size: 32px;
  line-height: 39px;
  font-weight: 200;
  text-transform: uppercase;
  letter-spacing: 4px;
  border:solid 2px;
  padding: 7px 5px 5px 11px;
}
.single-project h5{
  margin-top: 30px;
}
.single-project h5>span{
  font-size: 12px;
  line-height: 19px;
  font-weight: 200;
  text-transform: uppercase;
  letter-spacing: 4px;
  border:solid 2px;
  padding: 7px 5px 5px 11px;
}
.explore-link{
  margin-top: 25px;
  margin-left: 45px;
  margin-right: 45px;
}
.explore-link a{
  font-size: 18px;
  line-height: 25px;
  font-weight: 200;
  font-style: italic;
}
.explore-link a:before{
  content: '';
  height: 1px;
  width: 30px;
  background: #000;
  display: inline-block;
  position: absolute;
  bottom: 12px;
  margin-left: -40px;
}
.explore-link a:after{
  content: '';
  height: 1px;
  width: 30px;
  background: #000;
  display: inline-block;
  position: absolute;
  bottom: 12px;
  margin-left: 10px;
}
.single-project-carousel-item{
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
.single-project .owl-wrapper-outer{
  height: 100% !important;
}
.single-project-carousel .owl-next{
  background: transparent url(../images/next-dark.png) no-repeat center center !important;
}
.single-project-carousel .owl-prev{
  background: transparent url(../images/prev-dark.png) no-repeat center center !important;
}
.project-subline{
  width: 30%;
  height: 2px;
  margin-bottom: 25px;
  display: inline-block;
}

/*MISC*/

.video-caption h3{
  margin-bottom: 30px;
}
.video-caption h3>span{
  font-size: 24px;
  line-height: 31px;
  font-weight: 200;
  text-transform: uppercase;
  letter-spacing: 4px;
  border:solid 2px;
  padding: 7px 5px 5px 11px;
}

/*MAIN-BG.CSS*/
/*-------------------------------------------------------------------------------------------------------------------------------*/
/*This is main CSS file that intializes BG Images used in this template*/
/*-------------------------------------------------------------------------------------------------------------------------------*/
/* Template Name: ADRIA.*/
/* Author: Designova.*/
/* Website: http://www.designova.net */
/* Copyright: (C) 2014 */
/*-------------------------------------------------------------------------------------------------------------------------------*/


/*--------------------------------------------------------------*/
/* INTRO / HOME VARIANTS */
/*--------------------------------------------------------------*/

/*INTRO-01*/
.featured-thumb-01{
  background-image: url('http://placehold.it/500x330');
}
.featured-thumb-02{
  background-image: url('http://placehold.it/500x330');
}
.featured-thumb-03{
  background-image: url('http://placehold.it/500x330');
}
.featured-thumb-04{
  background-image: url('http://placehold.it/500x330');
}
/*INTRO-02*/
.intro-02{
  background-image: url('http://placehold.it/1500x1050');
}
/*INTRO-03*/
.intro-03{
  background-image: url('http://placehold.it/1500x1050');
}
/*INTRO-04*/
.intro-04{
  background-image: url('http://placehold.it/1500x1050');
}
/*INTRO-05*/
.intro-05-carousel-item-01{
  background-image: url('http://placehold.it/1500x1050');
}
.intro-05-carousel-item-02{
  background-image: url('http://placehold.it/1500x1050');
}
.intro-05-carousel-item-03{
  background-image: url('http://placehold.it/1500x1050');
}
.intro-05-carousel-item-04{
  background-image: url('http://placehold.it/1500x1050');
}
/*INTRO-06*/
.wallpaper-panel{
  background-image: url('http://placehold.it/1500x1050');
}

/*--------------------------------------------------------------*/
/* PAGES AND SECTIONS */
/*--------------------------------------------------------------*/

.promo-bg{
  background-image: url('http://placehold.it/1500x1050');
}
/*SINGLE PROJECT PAGE demo*/
.single-project-carousel-item-01{
  background-image: url('http://placehold.it/1500x1050');
}
.single-project-carousel-item-02{
  background-image: url('http://placehold.it/1500x1050');
}

/*--------------------------------------------------------------*/
/* MISC ELEMENTS */
/*--------------------------------------------------------------*/

.inn-bg {
  background:#131F33;
}

/*MAIN-RESPONSIVE.CSS*/
/*-------------------------------------------------------------------------------------------------------------------------------*/
/*This is main CSS file that contains custom style rules used in this template*/
/*-------------------------------------------------------------------------------------------------------------------------------*/
/* Template Name: ADRIA */
/* Author: Designova.*/
/* Website: http://www.designova.net */
/* Copyright: (C) 2014 */
/*-------------------------------------------------------------------------------------------------------------------------------*/

/*==========================*/
/*ALL DEVICE OPTIMIZATION*/
/*===========================*/


/*Huge Displays*/
@media (min-width: 3000px) {
}

/*Projector Screens and Ver Large Monitors*/
@media (min-width: 2561px) {
}

/*iMac 27, HD Screens and Large Monitors*/
@media (min-width: 1921px) and (max-width: 2560px) {

}

/*Large Widescreen Monitors*/
@media (max-width: 1920px) {
}

/*Medium Widescreen Monitors*/
@media (max-width: 1680px) {
}

/*Large Widescreen Laptops*/
@media (max-width: 1440px) {
}

/*Common Widescreen Laptops*/
@media (max-width: 1366px) {
}


/*Very Large Tablets and Medium Laptops*/
@media (max-width: 1280px) {
}

/*Notebooks and Small Laptops*/
@media (max-width: 1199px) {
  .standard-header{
    display: none;
  }
}

/*iPad Landscape Mode and Large Tablets */
@media (max-width: 1024px) {
  .standard-header{
    display: none;
  }
}

/*Small Desktop and Very Small Notebook */
@media (max-width: 990px) {
  
  .container{
      max-width: 950px;
      padding-left:20px;
      padding-right:20px;
  }
  .add-top-half{
    padding-top: 35px;
  }
  .add-bottom-half{
    padding-bottom: 35px;
  }
  .mob-center{
    text-align: center;
  }
  .mob-add-top{
    margin-top: 30px;
  }
  .mob-add-bottom{
    margin-bottom:30px;
  }
  .btn{
    width: 100%;
  }
  .page-section, .separator-section{
    padding: 70px 0;
  }
  img.img-responsive{
    display: inline-block;
  }
  .standard-header{
    display: none;
  }
  #ws .price h1{
    font-size: 42px;
    line-height: 49px;
  }
  .caption-panel h1,.intro-01 .text-rotator span, .intro-02 h1 > strong, 
  .intro-03 h2, .intro-04 h1 > strong, .intro-05 h1, .promo h1, .single-project h1{
    font-size: 34px;
    line-height: 41px;
  }
  .welcome-text, .main-title, .video-caption h3>span {
    font-size: 22px;
    line-height: 29px;
  }
  .explore-link a, .promo-text, .feature-heading > span, .testimonial-text,
  .team-stage h3, .cbp-l-caption-title, .news-post-list h1{
    font-size: 20px;
    line-height: 27px;
  }
  .caption-panel h3 > span, .intro-03 h6 > span, 
  .intro-03 h5, .intro-05 h3 > span, .main-heading > span, 
  .welcome-text-sub, .team-stage h6, .address-wrap h3, .single-project h5 > span,
  .cbp-l-filters-alignCenter .cbp-filter-item {
    font-size: 20px;
    line-height: 27px;
    font-weight: 200;
    letter-spacing: 2px;
  }
  .featured-thumb a{
    font-size: 20px;
    line-height: 27px;
    letter-spacing: 0;
  }
  .intro-03 h2 {
    margin-top: 50px;
  }
  .intro-03 h5 {
    margin-top: 50px;
  }
  .main-heading > span {
    letter-spacing: 0px;
  }
  .mi-slider nav{
    top: 150px;
  }
  .features-inner, .promo-inner{
    padding: 100px 40px;
    text-align: center;
  }
  .feature-icon i{
    display: inline-block;
    float: none;
    margin-top: 30px;
    margin-right: 0;
    margin-bottom: 5px;
  }
  .cbp-l-caption-title, .cbp-l-caption-desc{
    text-align: center;
  }
  .explore-link{
    text-align: center;
  }
  .contact-item{
    padding: 10px;
  }
}

/*Medium Tablets */
@media (max-width: 800px) {
  
  .container{
      max-width: 760px;
      padding-left:20px;
      padding-right:20px;
  }
  .add-top-half{
    padding-top: 35px;
  }
  .add-bottom-half{
    padding-bottom: 35px;
  }
  .mob-center{
    text-align: center;
  }
  .mob-add-top{
    margin-top: 30px;
  }
  .mob-add-bottom{
    margin-bottom:30px;
  }
  .btn{
    width: 100%;
  }
  .page-section, .separator-section{
    padding: 70px 0;
  }
  img.img-responsive{
    display: inline-block;
  }
  .standard-header{
    display: none;
  }
  #ws .price h1{
    font-size: 42px;
    line-height: 49px;
  }
  .caption-panel h1,.intro-01 .text-rotator span, .intro-02 h1 > strong, 
  .intro-03 h2, .intro-04 h1 > strong, .intro-05 h1, .promo h1, .single-project h1{
    font-size: 34px;
    line-height: 41px;
  }
  .welcome-text, .main-title, .video-caption h3>span {
    font-size: 22px;
    line-height: 29px;
  }
  .explore-link a, .promo-text, .feature-heading > span, .testimonial-text,
  .team-stage h3, .cbp-l-caption-title, .news-post-list h1{
    font-size: 20px;
    line-height: 27px;
  }
  .caption-panel h3 > span, .intro-03 h6 > span, 
  .intro-03 h5, .intro-05 h3 > span, .main-heading > span, 
  .welcome-text-sub, .team-stage h6, .address-wrap h3, .single-project h5 > span,
  .cbp-l-filters-alignCenter .cbp-filter-item {
    font-size: 20px;
    line-height: 27px;
    font-weight: 200;
    letter-spacing: 2px;
  }
  .featured-thumb a{
    font-size: 20px;
    line-height: 27px;
    letter-spacing: 0;
  }
  .intro-03 h2 {
    margin-top: 50px;
  }
  .intro-03 h5 {
    margin-top: 50px;
  }
  .main-heading > span {
    letter-spacing: 0px;
  }
  .mi-slider nav{
    top: 150px;
  }
  .features-inner, .promo-inner{
    padding: 100px 40px;
    text-align: center;
  }
  .feature-icon i{
    display: inline-block;
    float: none;
    margin-top: 30px;
    margin-right: 0;
    margin-bottom: 5px;
  }
  .cbp-l-caption-title, .cbp-l-caption-desc{
    text-align: center;
  }
  .explore-link{
    text-align: center;
  }
  .contact-item{
    padding: 10px;
  }
}


/*iPad Portrait Mode, iPad Mini and Small Tablets */
@media (max-width: 768px) {
  
  .container{
      max-width: 728px;
      padding-left:20px;
      padding-right:20px;
  }
  .add-top-half{
    padding-top: 35px;
  }
  .add-bottom-half{
    padding-bottom: 35px;
  }
  .mob-center{
    text-align: center;
  }
  .mob-add-top{
    margin-top: 30px;
  }
  .mob-add-bottom{
    margin-bottom:30px;
  }
  .btn{
    width: 100%;
  }
  .page-section, .separator-section{
    padding: 70px 0;
  }
  img.img-responsive{
    display: inline-block;
  }
  .standard-header{
    display: none;
  }
  #ws .price h1{
    font-size: 42px;
    line-height: 49px;
  }
  .caption-panel h1,.intro-01 .text-rotator span, .intro-02 h1 > strong, 
  .intro-03 h2, .intro-04 h1 > strong, .intro-05 h1, .promo h1, .single-project h1{
    font-size: 34px;
    line-height: 41px;
  }
  .welcome-text, .main-title, .video-caption h3>span {
    font-size: 22px;
    line-height: 29px;
  }
  .explore-link a, .promo-text, .feature-heading > span, .testimonial-text,
  .team-stage h3, .cbp-l-caption-title, .news-post-list h1{
    font-size: 20px;
    line-height: 27px;
  }
  .caption-panel h3 > span, .intro-03 h6 > span, 
  .intro-03 h5, .intro-05 h3 > span, .main-heading > span, 
  .welcome-text-sub, .team-stage h6, .address-wrap h3, .single-project h5 > span,
  .cbp-l-filters-alignCenter .cbp-filter-item {
    font-size: 20px;
    line-height: 27px;
    font-weight: 200;
    letter-spacing: 2px;
  }
  .featured-thumb a{
    font-size: 20px;
    line-height: 27px;
    letter-spacing: 0;
  }
  .intro-03 h2 {
    margin-top: 50px;
  }
  .intro-03 h5 {
    margin-top: 50px;
  }
  .main-heading > span {
    letter-spacing: 0px;
  }
  .mi-slider nav{
    top: 150px;
  }
  .features-inner, .promo-inner{
    padding: 100px 40px;
    text-align: center;
  }
  .feature-icon i{
    display: inline-block;
    float: none;
    margin-top: 30px;
    margin-right: 0;
    margin-bottom: 5px;
  }
  .cbp-l-caption-title, .cbp-l-caption-desc{
    text-align: center;
  }
  .explore-link{
    text-align: center;
  }
  .contact-item{
    padding: 10px;
  }
}

/*iPhone 6Plus Landscape Mode*/
@media screen and (max-width: 736px) {
  
  .container{
      max-width: 696px;
      padding-left:20px;
      padding-right:20px;
  }
  .add-top-half{
    padding-top: 15px;
  }
  .add-bottom-half{
    padding-bottom: 15px;
  }
  .mob-center{
    text-align: center;
  }
  .mob-add-top{
    margin-top: 30px;
  }
  .mob-add-bottom{
    margin-bottom:30px;
  }
  .btn{
    width: 100%;
  }
  .page-section, .separator-section{
    padding: 70px 0;
  }
  img.img-responsive{
    display: inline-block;
  }
  .standard-header{
    display: none;
  }
  #ws .price h1{
    font-size: 38px;
    line-height: 45px;
  }
  .caption-panel h1,.intro-01 .text-rotator span, .intro-02 h1 > strong, 
  .intro-03 h2, .intro-04 h1 > strong, .intro-05 h1, .promo h1, .single-project h1{
    font-size: 30px;
    line-height: 37px;
  }
  .welcome-text, .main-title, .video-caption h3>span {
    font-size: 18px;
    line-height: 25px;
  }
  .explore-link a, .promo-text, .feature-heading > span, .testimonial-text,
  .team-stage h3, .cbp-l-caption-title, .news-post-list h1{
    font-size: 16px;
    line-height: 23px;
  }
  .caption-panel h3 > span, .intro-03 h6 > span, 
  .intro-03 h5, .intro-05 h3 > span, .main-heading > span, 
  .welcome-text-sub, .team-stage h6, .address-wrap h3, .single-project h5 > span,
  .cbp-l-filters-alignCenter .cbp-filter-item {
    font-size: 14px;
    line-height: 21px;
    font-weight: 200;
    letter-spacing: 2px;
  }
  .featured-thumb a{
    font-size: 14px;
    line-height: 21px;
    letter-spacing: 0;
  }
  .intro-03 h2 {
    margin-top: 50px;
  }
  .intro-03 h5 {
    margin-top: 50px;
  }
  .main-heading > span {
    letter-spacing: 0px;
  }
  .mi-slider nav{
    top: 150px;
  }
  .features-inner, .promo-inner{
    padding: 70px 40px;
    text-align: center;
  }
  .feature-icon i{
    display: inline-block;
    float: none;
    margin-top: 30px;
    margin-right: 0;
    margin-bottom: 5px;
  }
  .cbp-l-caption-title, .cbp-l-caption-desc{
    text-align: center;
  }
  .explore-link{
    text-align: center;
  }
  .contact-item{
    padding: 10px;
  }
}

/*iPhone 6 Landscape Mode*/
@media screen and (max-width: 667px) {
  
  .container{
      max-width: 627px;
      padding-left:20px;
      padding-right:20px;
  }
  .add-top-half{
    padding-top: 15px;
  }
  .add-bottom-half{
    padding-bottom: 15px;
  }
  .mob-center{
    text-align: center;
  }
  .mob-add-top{
    margin-top: 30px;
  }
  .mob-add-bottom{
    margin-bottom:30px;
  }
  .btn{
    width: 100%;
  }
  .page-section, .separator-section{
    padding: 70px 0;
  }
  img.img-responsive{
    display: inline-block;
  }
  .standard-header{
    display: none;
  }
  #ws .price h1{
    font-size: 38px;
    line-height: 45px;
  }
  .caption-panel h1,.intro-01 .text-rotator span, .intro-02 h1 > strong, 
  .intro-03 h2, .intro-04 h1 > strong, .intro-05 h1, .promo h1, .single-project h1{
    font-size: 30px;
    line-height: 37px;
  }
  .welcome-text, .main-title, .video-caption h3>span {
    font-size: 18px;
    line-height: 25px;
  }
  .explore-link a, .promo-text, .feature-heading > span, .testimonial-text,
  .team-stage h3, .cbp-l-caption-title, .news-post-list h1{
    font-size: 16px;
    line-height: 23px;
  }
  .caption-panel h3 > span, .intro-03 h6 > span, 
  .intro-03 h5, .intro-05 h3 > span, .main-heading > span, 
  .welcome-text-sub, .team-stage h6, .address-wrap h3, .single-project h5 > span,
  .cbp-l-filters-alignCenter .cbp-filter-item {
    font-size: 14px;
    line-height: 21px;
    font-weight: 200;
    letter-spacing: 2px;
  }
  .featured-thumb a{
    font-size: 14px;
    line-height: 21px;
    letter-spacing: 0;
  }
  .intro-03 h2 {
    margin-top: 50px;
  }
  .intro-03 h5 {
    margin-top: 50px;
  }
  .main-heading > span {
    letter-spacing: 0px;
  }
  .mi-slider nav{
    top: 150px;
  }
  .features-inner, .promo-inner{
    padding: 70px 40px;
    text-align: center;
  }
  .feature-icon i{
    display: inline-block;
    float: none;
    margin-top: 30px;
    margin-right: 0;
    margin-bottom: 5px;
  }
  .cbp-l-caption-title, .cbp-l-caption-desc{
    text-align: center;
  }
  .explore-link{
    text-align: center;
  }
  .contact-item{
    padding: 10px;
  }
}

/*Medium Smart Phones v2*/
@media screen and (max-width: 640px) {
  
  .container{
      max-width: 600px;
      padding-left:20px;
      padding-right:20px;
  }
  .add-top-half{
    padding-top: 15px;
  }
  .add-bottom-half{
    padding-bottom: 15px;
  }
  .mob-center{
    text-align: center;
  }
  .mob-add-top{
    margin-top: 30px;
  }
  .mob-add-bottom{
    margin-bottom:30px;
  }
  .btn{
    width: 100%;
  }
  .page-section, .separator-section{
    padding: 70px 0;
  }
  img.img-responsive{
    display: inline-block;
  }
  .standard-header{
    display: none;
  }
  #ws .price h1{
    font-size: 38px;
    line-height: 45px;
  }
  .caption-panel h1,.intro-01 .text-rotator span, .intro-02 h1 > strong, 
  .intro-03 h2, .intro-04 h1 > strong, .intro-05 h1, .promo h1, .single-project h1{
    font-size: 30px;
    line-height: 37px;
  }
  .welcome-text, .main-title, .video-caption h3>span {
    font-size: 18px;
    line-height: 25px;
  }
  .explore-link a, .promo-text, .feature-heading > span, .testimonial-text,
  .team-stage h3, .cbp-l-caption-title, .news-post-list h1{
    font-size: 16px;
    line-height: 23px;
  }
  .caption-panel h3 > span, .intro-03 h6 > span, 
  .intro-03 h5, .intro-05 h3 > span, .main-heading > span, 
  .welcome-text-sub, .team-stage h6, .address-wrap h3, .single-project h5 > span,
  .cbp-l-filters-alignCenter .cbp-filter-item {
    font-size: 14px;
    line-height: 21px;
    font-weight: 200;
    letter-spacing: 2px;
  }
  .featured-thumb a{
    font-size: 14px;
    line-height: 21px;
    letter-spacing: 0;
  }
  .intro-03 h2 {
    margin-top: 50px;
  }
  .intro-03 h5 {
    margin-top: 50px;
  }
  .main-heading > span {
    letter-spacing: 0px;
  }
  .mi-slider nav{
    top: 150px;
  }
  .features-inner, .promo-inner{
    padding: 70px 40px;
    text-align: center;
  }
  .feature-icon i{
    display: inline-block;
    float: none;
    margin-top: 30px;
    margin-right: 0;
    margin-bottom: 5px;
  }
  .cbp-l-caption-title, .cbp-l-caption-desc{
    text-align: center;
  }
  .explore-link{
    text-align: center;
  }
  .contact-item{
    padding: 10px;
  }
}
  

/*Google Nexus and Other Large Smart Phones v1*/
@media screen and (max-width: 600px)  {
  
  .container{
      max-width: 560px;
      padding-left: 20px;
      padding-right: 20px;
  }
  .add-top-half{
    padding-top: 15px;
  }
  .add-bottom-half{
    padding-bottom: 15px;
  }
  .mob-center{
    text-align: center;
  }
  .mob-add-top{
    margin-top: 30px;
  }
  .mob-add-bottom{
    margin-bottom:30px;
  }
  .btn{
    width: 100%;
  }
  .page-section, .separator-section{
    padding: 70px 0;
  }
  img.img-responsive{
    display: inline-block;
  }
  .standard-header{
    display: none;
  }
  #ws .price h1{
    font-size: 38px;
    line-height: 45px;
  }
  .caption-panel h1,.intro-01 .text-rotator span, .intro-02 h1 > strong, 
  .intro-03 h2, .intro-04 h1 > strong, .intro-05 h1, .promo h1, .single-project h1{
    font-size: 30px;
    line-height: 37px;
  }
  .welcome-text, .main-title, .video-caption h3>span {
    font-size: 18px;
    line-height: 25px;
  }
  .explore-link a, .promo-text, .feature-heading > span, .testimonial-text,
  .team-stage h3, .cbp-l-caption-title, .news-post-list h1{
    font-size: 16px;
    line-height: 23px;
  }
  .caption-panel h3 > span, .intro-03 h6 > span, 
  .intro-03 h5, .intro-05 h3 > span, .main-heading > span, 
  .welcome-text-sub, .team-stage h6, .address-wrap h3, .single-project h5 > span,
  .cbp-l-filters-alignCenter .cbp-filter-item {
    font-size: 14px;
    line-height: 21px;
    font-weight: 200;
    letter-spacing: 2px;
  }
  .featured-thumb a{
    font-size: 14px;
    line-height: 21px;
    letter-spacing: 0;
  }
  .intro-03 h2 {
    margin-top: 50px;
  }
  .intro-03 h5 {
    margin-top: 50px;
  }
  .main-heading > span {
    letter-spacing: 0px;
  }
  .mi-slider nav{
    top: 150px;
  }
  .features-inner, .promo-inner{
    padding: 70px 40px;
    text-align: center;
  }
  .feature-icon i{
    display: inline-block;
    float: none;
    margin-top: 30px;
    margin-right: 0;
    margin-bottom: 5px;
  }
  .cbp-l-caption-title, .cbp-l-caption-desc{
    text-align: center;
  }
  .explore-link{
    text-align: center;
  }
  .contact-item{
    padding: 10px;
  }
}
  

/*iPhone Landscape Mode and Mediium Smart Phones*/
@media screen and (max-width: 480px) {
  
  .container{
      max-width: 440px;
      padding-left: 20px;
      padding-right: 20px;
  }
  .add-top-half{
    padding-top: 15px;
  }
  .add-bottom-half{
    padding-bottom: 15px;
  }
  .mob-center{
    text-align: center;
  }
  .mob-add-top{
    margin-top: 30px;
  }
  .mob-add-bottom{
    margin-bottom:30px;
  }
  .btn{
    width: 100%;
  }
  .page-section, .separator-section{
    padding: 70px 0;
  }
  img.img-responsive{
    display: inline-block;
  }
  .standard-header{
    display: none;
  }
  #ws .price h1{
    font-size: 36px;
    line-height: 43px;
  }
  .caption-panel h1,.intro-01 .text-rotator span, .intro-02 h1 > strong, 
  .intro-03 h2, .intro-04 h1 > strong, .intro-05 h1, .promo h1, .single-project h1{
    font-size: 28px;
    line-height: 33px;
  }
  .welcome-text, .main-title, .video-caption h3>span {
    font-size: 16px;
    line-height: 23px;
  }
  .explore-link a, .promo-text, .feature-heading > span, .testimonial-text,
  .team-stage h3, .cbp-l-caption-title, .news-post-list h1{
    font-size: 14px;
    line-height: 21px;
  }
  .caption-panel h3 > span, .intro-03 h6 > span, 
  .intro-03 h5, .intro-05 h3 > span, .main-heading > span, 
  .welcome-text-sub, .team-stage h6, .address-wrap h3, .single-project h5 > span,
  .cbp-l-filters-alignCenter .cbp-filter-item {
    font-size: 12px;
    line-height: 19px;
    font-weight: 200;
    letter-spacing: 2px;
  }
  .featured-thumb a{
    font-size: 12px;
    line-height: 19px;
    letter-spacing: 0;
  }
  .intro-03 h2 {
    margin-top: 50px;
  }
  .intro-03 h5 {
    margin-top: 50px;
  }
  .main-heading > span {
    letter-spacing: 0px;
  }
  .mi-slider ul li{
    width: 70%;
  }
  .features-inner, .promo-inner{
    padding: 70px 40px;
    text-align: center;
  }
  .feature-icon i{
    display: inline-block;
    float: none;
    margin-top: 30px;
    margin-right: 0;
    margin-bottom: 5px;
  }
  .cbp-l-caption-title, .cbp-l-caption-desc{
    text-align: center;
  }
  .explore-link{
    text-align: center;
  }
  .contact-item{
    padding: 10px;
  }
}


/*iPhone 6Plus Portrait Mode*/
@media screen and (max-width: 414px) {
  
  .container{
      max-width: 374px;
      padding-left: 20px;
      padding-right: 20px;
  }
  .add-top-half{
    padding-top: 15px;
  }
  .add-bottom-half{
    padding-bottom: 15px;
  }
  .mob-center{
    text-align: center;
  }
  .mob-add-top{
    margin-top: 30px;
  }
  .mob-add-bottom{
    margin-bottom:30px;
  }
  .btn{
    width: 100%;
  }
  .page-section, .separator-section{
    padding: 70px 0;
  }
  img.img-responsive{
    display: inline-block;
  }
  .standard-header{
    display: none;
  }
  #ws .price h1{
    font-size: 36px;
    line-height: 43px;
  }
  .caption-panel h1,.intro-01 .text-rotator span, .intro-02 h1 > strong, 
  .intro-03 h2, .intro-04 h1 > strong, .intro-05 h1, .promo h1, .single-project h1{
    font-size: 28px;
    line-height: 33px;
  }
  .welcome-text, .main-title, .video-caption h3>span {
    font-size: 16px;
    line-height: 23px;
  }
  .explore-link a, .promo-text, .feature-heading > span, .testimonial-text,
  .team-stage h3, .cbp-l-caption-title, .news-post-list h1{
    font-size: 14px;
    line-height: 21px;
  }
  .caption-panel h3 > span, .intro-03 h6 > span, 
  .intro-03 h5, .intro-05 h3 > span, .main-heading > span, 
  .welcome-text-sub, .team-stage h6, .address-wrap h3, .single-project h5 > span,
  .cbp-l-filters-alignCenter .cbp-filter-item {
    font-size: 12px;
    line-height: 19px;
    font-weight: 200;
    letter-spacing: 2px;
  }
  .featured-thumb a{
    font-size: 12px;
    line-height: 19px;
    letter-spacing: 0;
  }
  .intro-03 h2 {
    margin-top: 50px;
  }
  .intro-03 h5 {
    margin-top: 50px;
  }
  .main-heading > span {
    letter-spacing: 0px;
  }
  .mi-slider ul li{
    width: 70%;
  }
  .features-inner, .promo-inner{
    padding: 70px 40px;
    text-align: center;
  }
  .feature-icon i{
    display: inline-block;
    float: none;
    margin-top: 30px;
    margin-right: 0;
    margin-bottom: 5px;
  }
  .cbp-l-caption-title, .cbp-l-caption-desc{
    text-align: center;
  }
  .explore-link{
    text-align: center;
  }
  .contact-item{
    padding: 10px;
  }

}


/*iPhone 6 Portrait Mode*/
@media screen and (max-width: 375px) {
  
  .container{
      max-width: 335px;
      padding-left: 20px;
      padding-right: 20px;
  }
  .add-top-half{
    padding-top: 15px;
  }
  .add-bottom-half{
    padding-bottom: 15px;
  }
  .mob-center{
    text-align: center;
  }
  .mob-add-top{
    margin-top: 30px;
  }
  .mob-add-bottom{
    margin-bottom:30px;
  }
  .btn{
    width: 100%;
  }
  .page-section, .separator-section{
    padding: 70px 0;
  }
  img.img-responsive{
    display: inline-block;
  }
  .standard-header{
    display: none;
  }
  #ws .price h1{
    font-size: 32px;
    line-height: 39px;
  }
  .caption-panel h1,.intro-01 .text-rotator span, .intro-02 h1 > strong, 
  .intro-03 h2, .intro-04 h1 > strong, .intro-05 h1, .promo h1, .single-project h1{
    font-size: 24px;
    line-height: 31px;
  }
  .welcome-text, .main-title, .video-caption h3>span {
    font-size: 14px;
    line-height: 21px;
  }
  .explore-link a, .promo-text, .feature-heading > span, .testimonial-text,
  .team-stage h3, .cbp-l-caption-title, .news-post-list h1{
    font-size: 12px;
    line-height: 19px;
  }
  .caption-panel h3 > span, .intro-03 h6 > span, 
  .intro-03 h5, .intro-05 h3 > span, .main-heading > span, 
  .welcome-text-sub, .team-stage h6, .address-wrap h3, .single-project h5 > span,
  .cbp-l-filters-alignCenter .cbp-filter-item {
    font-size: 10px;
    line-height: 17px;
    font-weight: 200;
    letter-spacing: 2px;
  }
  .featured-thumb a{
    font-size: 9px;
    line-height: 16px;
    letter-spacing: 0;
  }
  .intro-03 h2 {
    margin-top: 50px;
  }
  .intro-03 h5 {
    margin-top: 50px;
  }
  .main-heading > span {
    letter-spacing: 0px;
  }
  .mi-slider ul li{
    width: 70%;
  }
  .features-inner, .promo-inner{
    padding: 70px 40px;
    text-align: center;
  }
  .feature-icon i{
    display: inline-block;
    float: none;
    margin-top: 30px;
    margin-right: 0;
    margin-bottom: 5px;
  }
  .cbp-l-caption-title, .cbp-l-caption-desc{
    text-align: center;
  }
  .explore-link{
    text-align: center;
  }
  .contact-item{
    padding: 10px;
  }

}

/*Other Major Small Smart Phones*/
@media screen and (max-width: 360px) {
  
  .container{
      max-width: 320px;
      padding-left: 20px;
      padding-right: 20px;
  }
  .add-top-half{
    padding-top: 15px;
  }
  .add-bottom-half{
    padding-bottom: 15px;
  }
  .mob-center{
    text-align: center;
  }
  .mob-add-top{
    margin-top: 30px;
  }
  .mob-add-bottom{
    margin-bottom:30px;
  }
  .btn{
    width: 100%;
  }
  .page-section, .separator-section{
    padding: 70px 0;
  }
  img.img-responsive{
    display: inline-block;
  }
  .standard-header{
    display: none;
  }
  #ws .price h1{
    font-size: 32px;
    line-height: 39px;
  }
  .caption-panel h1,.intro-01 .text-rotator span, .intro-02 h1 > strong, 
  .intro-03 h2, .intro-04 h1 > strong, .intro-05 h1, .promo h1, .single-project h1{
    font-size: 24px;
    line-height: 31px;
  }
  .welcome-text, .main-title, .video-caption h3>span {
    font-size: 14px;
    line-height: 21px;
  }
  .explore-link a, .promo-text, .feature-heading > span, .testimonial-text,
  .team-stage h3, .cbp-l-caption-title, .news-post-list h1{
    font-size: 12px;
    line-height: 19px;
  }
  .caption-panel h3 > span, .intro-03 h6 > span, 
  .intro-03 h5, .intro-05 h3 > span, .main-heading > span, 
  .welcome-text-sub, .team-stage h6, .address-wrap h3, .single-project h5 > span,
  .cbp-l-filters-alignCenter .cbp-filter-item {
    font-size: 10px;
    line-height: 17px;
    font-weight: 200;
    letter-spacing: 2px;
  }
  .featured-thumb a{
    font-size: 9px;
    line-height: 16px;
    letter-spacing: 0;
  }
  .intro-03 h2 {
    margin-top: 50px;
  }
  .intro-03 h5 {
    margin-top: 50px;
  }
  .main-heading > span {
    letter-spacing: 0px;
  }
  .mi-slider ul li{
    width: 70%;
  }
  .features-inner, .promo-inner{
    padding: 70px 40px;
    text-align: center;
  }
  .feature-icon i{
    display: inline-block;
    float: none;
    margin-top: 30px;
    margin-right: 0;
    margin-bottom: 5px;
  }
  .cbp-l-caption-title, .cbp-l-caption-desc{
    text-align: center;
  }
  .explore-link{
    text-align: center;
  }
  .contact-item{
    padding: 10px;
  }

}

/*iPhone (5S, 5, 4S and 4) Portrait Mode and Very Small Mobile Phones*/
@media screen and (max-width: 320px) {
  
  .container{
      max-width: 280px;
      padding-left: 20px;
      padding-right: 20px;
  }
  .add-top-half{
    padding-top: 15px;
  }
  .add-bottom-half{
    padding-bottom: 15px;
  }
  .mob-center{
    text-align: center;
  }
  .mob-add-top{
    margin-top: 30px;
  }
  .mob-add-bottom{
    margin-bottom:30px;
  }
  .btn{
    width: 100%;
  }
  .page-section, .separator-section{
    padding: 70px 0;
  }
  img.img-responsive{
    display: inline-block;
  }
  .standard-header{
    display: none;
  }
  #ws .price h1{
    font-size: 32px;
    line-height: 39px;
  }
  .caption-panel h1,.intro-01 .text-rotator span, .intro-02 h1 > strong, 
  .intro-03 h2, .intro-04 h1 > strong, .intro-05 h1, .promo h1, .single-project h1{
    font-size: 24px;
    line-height: 31px;
  }
  .welcome-text, .main-title, .video-caption h3>span {
    font-size: 14px;
    line-height: 21px;
  }
  .explore-link a, .promo-text, .feature-heading > span, .testimonial-text,
  .team-stage h3, .cbp-l-caption-title, .news-post-list h1{
    font-size: 12px;
    line-height: 19px;
  }
  .caption-panel h3 > span, .intro-03 h6 > span, 
  .intro-03 h5, .intro-05 h3 > span, .main-heading > span, 
  .welcome-text-sub, .team-stage h6, .address-wrap h3, .single-project h5 > span,
  .cbp-l-filters-alignCenter .cbp-filter-item {
    font-size: 10px;
    line-height: 17px;
    font-weight: 200;
    letter-spacing: 2px;
  }
  .featured-thumb a{
    font-size: 9px;
    line-height: 16px;
    letter-spacing: 0;
  }
  .intro-03 h2 {
    margin-top: 50px;
  }
  .intro-03 h5 {
    margin-top: 50px;
  }
  .main-heading > span {
    letter-spacing: 0px;
  }
  .mi-slider ul li{
    width: 70%;
  }
  .features-inner, .promo-inner{
    padding: 70px 40px;
    text-align: center;
  }
  .feature-icon i{
    display: inline-block;
    float: none;
    margin-top: 30px;
    margin-right: 0;
    margin-bottom: 5px;
  }
  .cbp-l-caption-title, .cbp-l-caption-desc{
    text-align: center;
  }
  .explore-link{
    text-align: center;
  }
  .contact-item{
    padding: 10px;
  }

}



.color {color:#9F8151;}

/*
.circle {
  height:260px;
  width:260px;
  border:4px solid #fff;
  border-radius:260px;
  display:block;
  margin:auto;
}*/
.circle-box {height:400px;} /*temp height. content should set this*/
footer form {margin-top:20px;}
.ginput_container,
.form-field {
  width: 50%;
    float: left;
    box-sizing: border-box;
  padding:0 5px;
}
.ginput_container input,
.form-field input {
  background:#fff!important;
  padding-left:10px!important;
  height:40px!important;
}
footer form .btn-inn#gform_submit_button_1 {
  height:40px;
  background:none;
  border-radius:0px;
  text-transform:uppercase;
  border:1px solid #fff;
  color:#A1814C;
  font-weight:600;
  margin-right:5px;
  margin-top:0px;
  float:right;
  -webkit-transition: all .4s ease-in-out;
    -moz-transition: all .4s ease-in-out;
    -ms-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
    width:auto;
}
footer form .btn-inn#gform_submit_button_1:hover {
  background:#A1814C;
  color:#111F34;
  border-color:#A1814C;
}
footer p,
footer p a,
footer h4 {
  color:#A1814C;
  line-height:1.3em;
}
footer h4 {
    font-weight:bold;
}
footer .foot-social ul {
  padding:40px 5px 0;
}
footer .foot-social ul li {
    font-size:12px;
}
footer .gform_wrapper li {
    display: inline;
}

footer .gform_footer {
    height: 5em;
}
footer .gform_wrapper ul {
    height: auto;
}