@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;
}
/* Magnific Popup CSS */
.mfp-bg {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1042;
  overflow: hidden;
  position: fixed;
  background: #0b0b0b;
  opacity: 0.8;
  filter: alpha(opacity=80); }

.mfp-wrap {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1043;
  position: fixed;
  outline: none !important;
  -webkit-backface-visibility: hidden; }

.mfp-container {
  text-align: center;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  padding: 0 8px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

.mfp-container:before {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle; }

.mfp-align-top .mfp-container:before {
  display: none; }

.mfp-content {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin: 0 auto;
  text-align: left;
  z-index: 1045; }

.mfp-inline-holder .mfp-content, .mfp-ajax-holder .mfp-content {
  width: 100%;
  cursor: auto; }

.mfp-ajax-cur {
  cursor: progress; }

.mfp-zoom-out-cur, .mfp-zoom-out-cur .mfp-image-holder .mfp-close {
  cursor: -moz-zoom-out;
  cursor: -webkit-zoom-out;
  cursor: zoom-out; }

.mfp-zoom {
  cursor: pointer;
  cursor: -webkit-zoom-in;
  cursor: -moz-zoom-in;
  cursor: zoom-in; }

.mfp-auto-cursor .mfp-content {
  cursor: auto; }

.mfp-close, .mfp-arrow, .mfp-preloader, .mfp-counter {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none; }

.mfp-loading.mfp-figure {
  display: none; }

.mfp-hide {
  display: none !important; }

.mfp-preloader {
  color: #CCC;
  position: absolute;
  top: 50%;
  width: auto;
  text-align: center;
  margin-top: -0.8em;
  left: 8px;
  right: 8px;
  z-index: 1044; }
  .mfp-preloader a {
    color: #CCC; }
    .mfp-preloader a:hover {
      color: #FFF; }

.mfp-s-ready .mfp-preloader {
  display: none; }

.mfp-s-error .mfp-content {
  display: none; }

button.mfp-close, button.mfp-arrow {
  overflow: visible;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
  display: block;
  outline: none;
  padding: 0;
  z-index: 1046;
  -webkit-box-shadow: none;
  box-shadow: none; }
button::-moz-focus-inner {
  padding: 0;
  border: 0; }

.mfp-close {
  width: 44px;
  height: 44px;
  line-height: 44px;
  position: absolute;
  right: 0;
  top: 0;
  text-decoration: none;
  text-align: center;
  opacity: 0.65;
  filter: alpha(opacity=65);
  padding: 0 0 18px 10px;
  color: #FFF;
  font-style: normal;
  font-size: 28px;
  font-family: Arial, Baskerville, monospace; }
  .mfp-close:hover, .mfp-close:focus {
    opacity: 1;
    filter: alpha(opacity=100); }
  .mfp-close:active {
    top: 1px; }

.mfp-close-btn-in .mfp-close {
  color: #333; }

.mfp-image-holder .mfp-close, .mfp-iframe-holder .mfp-close {
  color: #FFF;
  right: -6px;
  text-align: right;
  padding-right: 6px;
  width: 100%; }

.mfp-counter {
  position: absolute;
  top: 0;
  right: 0;
  color: #CCC;
  font-size: 12px;
  line-height: 18px;
  white-space: nowrap; }

.mfp-arrow {
  position: absolute;
  opacity: 0.65;
  filter: alpha(opacity=65);
  margin: 0;
  top: 50%;
  margin-top: -55px;
  padding: 0;
  width: 90px;
  height: 110px;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0); }
  .mfp-arrow:active {
    margin-top: -54px; }
  .mfp-arrow:hover, .mfp-arrow:focus {
    opacity: 1;
    filter: alpha(opacity=100); }
  .mfp-arrow:before, .mfp-arrow:after, .mfp-arrow .mfp-b, .mfp-arrow .mfp-a {
    content: '';
    display: block;
    width: 0;
    height: 0;
    position: absolute;
    left: 0;
    top: 0;
    margin-top: 35px;
    margin-left: 35px;
    border: medium inset transparent; }
  .mfp-arrow:after, .mfp-arrow .mfp-a {
    border-top-width: 13px;
    border-bottom-width: 13px;
    top: 8px; }
  .mfp-arrow:before, .mfp-arrow .mfp-b {
    border-top-width: 21px;
    border-bottom-width: 21px;
    opacity: 0.7; }

.mfp-arrow-left {
  left: 0; }
  .mfp-arrow-left:after, .mfp-arrow-left .mfp-a {
    border-right: 17px solid #FFF;
    margin-left: 31px; }
  .mfp-arrow-left:before, .mfp-arrow-left .mfp-b {
    margin-left: 25px;
    border-right: 27px solid #3F3F3F; }

.mfp-arrow-right {
  right: 0; }
  .mfp-arrow-right:after, .mfp-arrow-right .mfp-a {
    border-left: 17px solid #FFF;
    margin-left: 39px; }
  .mfp-arrow-right:before, .mfp-arrow-right .mfp-b {
    border-left: 27px solid #3F3F3F; }

.mfp-iframe-holder {
  padding-top: 40px;
  padding-bottom: 40px; }
  .mfp-iframe-holder .mfp-content {
    line-height: 0;
    width: 100%;
    max-width: 900px; }
  .mfp-iframe-holder .mfp-close {
    top: -40px; }

.mfp-iframe-scaler {
  width: 100%;
  height: 0;
  overflow: hidden;
  padding-top: 56.25%; }
  .mfp-iframe-scaler iframe {
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
    background: #000; }

/* Main image in popup */
img.mfp-img {
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
  line-height: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding: 40px 0 40px;
  margin: 0 auto; }

/* The shadow behind the image */
.mfp-figure {
  line-height: 0; }
  .mfp-figure:after {
    content: '';
    position: absolute;
    left: 0;
    top: 40px;
    bottom: 40px;
    display: block;
    right: 0;
    width: auto;
    height: auto;
    z-index: -1;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
    background: #444; }
  .mfp-figure small {
    color: #BDBDBD;
    display: block;
    font-size: 12px;
    line-height: 14px; }
  .mfp-figure figure {
    margin: 0; }

.mfp-bottom-bar {
  margin-top: -36px;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  cursor: auto; }

.mfp-title {
  text-align: left;
  line-height: 18px;
  color: #F3F3F3;
  word-wrap: break-word;
  padding-right: 36px; }

.mfp-image-holder .mfp-content {
  max-width: 100%; }

.mfp-gallery .mfp-image-holder .mfp-figure {
  cursor: pointer; }

@media screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px) {
  /**
       * Remove all paddings around the image on small screen
       */
  .mfp-img-mobile .mfp-image-holder {
    padding-left: 0;
    padding-right: 0; }
  .mfp-img-mobile img.mfp-img {
    padding: 0; }
  .mfp-img-mobile .mfp-figure:after {
    top: 0;
    bottom: 0; }
  .mfp-img-mobile .mfp-figure small {
    display: inline;
    margin-left: 5px; }
  .mfp-img-mobile .mfp-bottom-bar {
    background: rgba(0, 0, 0, 0.6);
    bottom: 0;
    margin: 0;
    top: auto;
    padding: 3px 5px;
    position: fixed;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box; }
    .mfp-img-mobile .mfp-bottom-bar:empty {
      padding: 0; }
  .mfp-img-mobile .mfp-counter {
    right: 5px;
    top: 3px; }
  .mfp-img-mobile .mfp-close {
    top: 0;
    right: 0;
    width: 35px;
    height: 35px;
    line-height: 35px;
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    text-align: center;
    padding: 0; }
 }

@media all and (max-width: 900px) {
  .mfp-arrow {
    -webkit-transform: scale(0.75);
    transform: scale(0.75); }

  .mfp-arrow-left {
    -webkit-transform-origin: 0;
    transform-origin: 0; }

  .mfp-arrow-right {
    -webkit-transform-origin: 100%;
    transform-origin: 100%; }

  .mfp-container {
    padding-left: 6px;
    padding-right: 6px; }
 }

.mfp-ie7 .mfp-img {
  padding: 0; }
.mfp-ie7 .mfp-bottom-bar {
  width: 600px;
  left: 50%;
  margin-left: -300px;
  margin-top: 5px;
  padding-bottom: 5px; }
.mfp-ie7 .mfp-container {
  padding: 0; }
.mfp-ie7 .mfp-content {
  padding-top: 44px; }
.mfp-ie7 .mfp-close {
  top: 0;
  right: 0;
  padding-top: 0; }
/*
Template Name: Primax
Description: HTML5 / CSS3 Multi Page
Version: 1.0
Author: Cloud Software Solution Ltd.
*/

:root {
	--jj-first: #6d0202;
	--jj-second: #ff99c3;
	--jj-third: #ff83b6;
	--jj-forth: #28313d;
}

body {
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    background: #f7f7f7;
    color: #6d6d6d;
    -webkit-font-smoothing: antialiased !important;
}


/* ------------------------------------------------
TYPOGRAPHY
--------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
    margin: 0 0 15px;
    color: #202020;
    font-family: "Roboto", sans-serif;
}

h1 {
    font-size: 42px;
    font-weight: 900;
    line-height: 46px;
}

h2 {
    font-size: 28px;
    font-weight: 700;
    line-height: 34px;
}

h3 {
    font-size: 20px;
    line-height: 22px;
    font-weight: 700;
}



/* --------------------------------------
LINK STYLE
------------------------------------------*/
a {
    color           : #ff83b6;
    text-decoration : none;
    transition      : all 0.3s ease 0s;
}

a,
a:active,
a:focus,
a:active {
    text-decoration : none !important;
    outline         : none
}



a:hover,
a:focus {
    color           : #e89b04;
    text-decoration : none !important;
}


/* --------------------------------------------------
GENERAL
----------------------------------------------------- */
img {
    width: 100%;
}

hr {
    border-top: 1px solid #e3e3e3;
}
/* ------------------------------------------------------------------
GLOBAL BUTTON STYLE
--------------------------------------------------------------------- */

/*btn-primary*/
.btn-primary {
    color: #fff;
    background-color: #ff83b6;
    border-color: #fba90a;
}

.btn-primary:hover, 
.btn-primary:focus, 
.btn-primary.focus, 
.btn-primary:active, 
.btn-primary.active, 
.open>.dropdown-toggle.btn-primary {
	color: #e89b04;
	background: transparent;
	border: 2px solid #e0e0e0;
}


/*btn-success*/
.btn-success {
    background-color: #00a651;
}

.btn-success:hover,
.btn-success.active {
    color: #00a651;
}

/*btn-default*/
.btn-default {
    color: #fff;
    background-color: #535353;
}


/*common style for all btn*/
.btn {
    border: 2px solid transparent;
    padding: 6px 13px;
    border-radius: 2px;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.btn-primary:hover, 
.btn-success:hover, 
.btn-primary.active, 
.btn-success.active {
    background: transparent;
    border: 2px solid #e0e0e0;
}

.btn-link {
    color: #ff83b6;
}
.btn-link:hover{
    color: #e89b04;
}

.btn:focus, 
.btn:active:focus, 
.btn.active:focus, 
.btn.focus, 
.btn:active.focus, 
.btn.active.focus {
	outline: none;
}



/* --------------------------------------------------
LIST STYLE
----------------------------------------------------- */
ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

/*List check-square*/
ul.check-square li{
    display: list-item;
    position: relative;
    line-height: 36px;
    padding-left: 25px;
}

ul.check-square li::before{
    content: "\f14a";
    font-family: FontAwesome;
    font-size: 15px;
    position: absolute;
    left: 0;
    top: 0;
}

/*List check-square-o*/
ul.check-square-o li{
    display: list-item;
    position: relative;
    line-height: 36px;
    padding-left: 25px;
}

ul.check-square-o li::before{
    content: "\f046";
    font-family: FontAwesome;
    font-size: 15px;
    position: absolute;
    left: 0;
    top: 0;
}

/*List check*/
ul.check li{
    display: list-item;
    position: relative;
    line-height: 36px;
    padding-left: 25px;
}

ul.check li::before{
    content: "\f00c";
    font-family: FontAwesome;
    font-size: 15px;
    position: absolute;
    left: 0;
    top: 0;
}

/*List check-circle*/
ul.check-circle li{
    display: list-item;
    position: relative;
    line-height: 36px;
    padding-left: 25px;
}

ul.check-circle li::before{
    content: "\f058";
    font-family: FontAwesome;
    font-size: 15px;
    position: absolute;
    left: 0;
    top: 0;
}




/* ----------------------------------------------------------------
Blockquote Style
-------------------------------------------------------------------*/
blockquote {
    padding: 40px 30px;
    border: 2px solid #e3e3e3;
    border-radius: 3px;
    font-size: 18px;
    line-height: 28px;
    color: #202020;
    font-style: italic;
    position: relative;
}

blockquote::before {
    font-family: FontAwesome;
    content: "\f10e" !important;
    position: absolute;
    top: -14px;
    left: 26px;
    font-size: 36px;
    color: #ff83b6;
}

/* ----------------------------------------------------------------
Form Style
-------------------------------------------------------------------*/
.form-control {
    height: 46px;
    border: 2px solid #e3e3e3;
    border-radius: 2px;
    box-shadow: none;
}

.form-control:focus {
    border-color: #ff83b6;
    box-shadow: none;
}

.input-group {
    margin-bottom: 30px;
    font-weight: 500;
}

.input-group-addon {
    color: #e3e3e3;
    background-color: transparent;
    border: 2px solid #e3e3e3;
    border-right: 0;
    font-size: 18px;
}


/* --------------------------------------------------
Alert
----------------------------------------------------- */
.alert {
    padding: 10px 15px;
    border-radius: 0;
}


/* --------------------------------------------------
PAGE HEADER
----------------------------------------------------- */
.page-header-wrapper{
    padding-top: 120px;
}

@media(min-width:767px) { 
    .page-header-wrapper{
        min-height: 350px;
    }
}

.page-header {
    padding-bottom: 0;
    margin: 0;
    border-bottom: 0;
}
.page-header h1 {
    color: #fff;
    background: url('../img/title-border.png') no-repeat;
    background-position: 2px 5px;
    padding-top: 15px;
    margin: 0;
}


/* --------------------------------------------------
BREADCRUMB
----------------------------------------------------- */
.breadcrumb {
    padding: 7px 0 0;
    background-color: transparent;
}
.breadcrumb>.active {
    color: #fff;
}


/* --------------------------------------------------
SECTION TITLE
----------------------------------------------------- */
.section-title {
    color: #ff83b6;
    position: relative;
    margin: 0 0 40px 0;
    padding-bottom: 15px;
}

.section-title::before,
.section-title::after {
    content: "";
    position: absolute;
    height: 4px;
    left: 0;
    bottom: 0;
    background: #000;
    opacity: 0.3;
}

.section-title::before {
    width: 50px;
}

.section-title::after {
    width: 100px;
}


/* ------------------------------------------------------------------
GLOBAL MARGIN
--------------------------------------------------------------------- */
.margin-bottom-60 {
    margin-bottom: 60px;
}


/* ------------------------------------------------------------------
NAVIGATION
--------------------------------------------------------------------- */
@media(min-width:767px) {
    .navbar {
        padding: 20px 0;
	padding-top: 0;
        border-bottom: 0;
		
	/*background: -webkit-linear-gradient(top, #800000, rgba(128, 0, 0, 0)); /*Safari 5.1-6
        background: -o-linear-gradient(top, #800000, rgba(128, 0, 0, 0)); /*Opera 11.1-12
        background: -moz-linear-gradient(top, #800000, rgba(128, 0, 0, 0)); /*Fx 3.6-15
        background: linear-gradient(to bottom, #800000, rgba(128, 0, 0, 0)); /*Standard
        -webkit-transition: background .5s ease-in-out,padding .5s ease-in-out;
        -moz-transition: background .5s ease-in-out,padding .5s ease-in-out;
        transition: background .5s ease-in-out,padding .5s ease-in-out;*/

	background: #28313d;
    }

    #second-nav .container{
	background: #6d0202;
	border-radius: 0px 0px 15px 15px;
    }

    /*for IE9 fallback background color*/
    .no-csstransitions .navbar-default {
        background: rgba(109, 2, 2,.8);
    }

    .top-nav-collapse {
        padding: 5px 0px;
        background: rgba(109, 2, 2,.8);
    }
}

@media(max-width:767px) {
    .navbar-default {
        background: rgba(109, 2, 2,.8);
        border-color: rgba(109, 2, 2,.8);
    }
}


.navbar-default .navbar-nav>li>a {
    color: #fff;
    text-transform: capitalize;
    font-size: 14px;
    line-height: 24px;
    font-weight: 500;
}

.navbar-default .navbar-nav>li>a:hover, 
.navbar-default .navbar-nav>li>a:focus {
    color: #ff83b6;
    background-color: transparent;
}

.navbar-default .navbar-nav>.active>a, 
.navbar-default .navbar-nav>.active>a:hover, 
.navbar-default .navbar-nav>.active>a:focus,
.navbar-default .navbar-nav>.open>a, 
.navbar-default .navbar-nav>.open>a:hover, 
.navbar-default .navbar-nav>.open>a:focus {
    color: #ff83b6;
    background-color: transparent;
}



/*RESPONSIVE TOGGLE BUTTON*/
.navbar-default .navbar-toggle {
    border: 2px solid #e0e0e0;
    border-radius: 2px;
    padding: 7px;
    -webkit-transition: all 300ms;
    -moz-transition: all 300ms;
    -o-transition: all 300ms;
    transition: all 300ms;
}

.navbar-default .navbar-toggle:hover, 
.navbar-default .navbar-toggle:focus {
    background-color: #ff83b6;
    border: 2px solid transparent;
}

.navbar-default .navbar-toggle .icon-bar {
    background-color: #fff;
    width: 20px;
}

/*Logo*/
h1.logo {
    margin: 0;
    padding: 0;
}


.content-wrapper {
    position: relative;
    top: -120px;
    border: 3px solid #e3e3e3;
    border-radius: 5px;
    background: #fff;
    z-index: 100;
}


/* ------------------------------------------------------------------
INTRO SECTION
--------------------------------------------------------------------- */
.intro-wrapper {
    padding: 20px 15px;
}


.intro-wrapper h2{
    line-height: 23px;
    margin-bottom: 35px;
}
.intro-wrapper h3{
    font-weight: 700;
}
.intro-wrapper p{
    margin-bottom: 40px;
}

/* ------------------------------------------------------------------
SERVICE WRAPPER
--------------------------------------------------------------------- */
.service-wrapper {
    background: #43525a;
    padding: 60px;
}
.service-wrapper .section-title {
    margin-bottom: 0;
}
.service-wrapper .media {
    margin-top: 70px;
}

.service-wrapper .media-heading {
    margin-bottom: 15px;
    font-weight: 400;
}
.service-wrapper .media-heading a{
    color: #fff;
}
.service-wrapper .media-body{
    color: #949ea3;
}

.service-wrapper .media-heading a:hover{
    color: #ff83b6;
}


.service-wrapper .icon {
    display: inline-block;
    margin: 5px 20px 0 0;
    width: 100px;
    height: 100px;
    line-height: 100px;
    text-align: center;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    -ms-border-radius: 2px;
    border-radius: 2px;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    transition: all 0.5s;
}
.service-wrapper .icon:before {
    font-size: 50px;
    margin-left: 0;
    color: #fff;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    transition: all 0.5s;
}
.service-wrapper .icon:hover:before {
    color: #000;
}
.service-wrapper .icon.bg1 {
    background: #dbb078;
}
.service-wrapper .icon.bg2 {
    background: #cfa3a3;
}
.service-wrapper .icon.bg3 {
    background: #7da484;
}
.service-wrapper .icon.bg4 {
    background: #9897c1;
}
.service-wrapper .icon:hover {
    background: #fff;
}



/* ------------------------------------------------------------------
ADVANTAGES WRAPPER
--------------------------------------------------------------------- */
.advantages-wrapper {
    padding: 60px;
    background: #000000 url('../img/bg/quadrangle-parallax.jpg') no-repeat center center;
    background-size: cover;
}

.advantages-wrapper.skills {
    background: #000000 url('../img/skillstab.jpg') no-repeat center center;
    background-size: cover;
}
.advantages-wrapper.capabilities {
    background: #000000 url('../img/capabilitiestab.jpg') no-repeat center center;
    background-size: cover;
}



/*CSS TAB*/
.nav-tabs {
    border-bottom: 0;
    background: rgba(255, 255, 255, 0.1);
    display: inline-block;
    padding: 5px 7px;
    border-radius: 3px;
}

.nav-tabs > li > a {
    padding: 8px 20px;
    line-height: normal;
    border: 0;
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    border-radius: 3px;
}

.nav-tabs > li.active > a {
    border: 0;
    color: #fff;
    margin-bottom: 0;
}


.nav-tabs > li > a:hover,
.nav-tabs > li.active > a, 
.nav-tabs > li.active > a:hover, 
.nav-tabs > li.active > a:focus {
    color: #ffffff;
    background: #ff83b6;
    border: 0;
}


.tab-content {
    padding: 0;
    margin: 70px 0 0;
    color: #fff;
}
.tab-content h3{
    font-weight: 700;
    color: #fff;
}

.css-tab .media-left img {
    margin-right: 20px;
    border-radius: 4px;
    width: inherit;
}
.css-tab .media-heading {
    margin-bottom: 15px;
}



/*SKILL CHART*/
.chart {
    position: relative;
    margin-bottom: 15px;
}
.percent {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -15px;
    margin-left: -34px;
    font-size: 36px;
    line-height: 30px;
    font-weight: 700;
}

.percent:after {
    content: '%';
}


.our-progress p {
    font-size: 18px;
    font-weight: 700;
}



/* ------------------------------------------------------------------
HANDOVER WRAPPER
--------------------------------------------------------------------- */
.handover-wrapper {
    background-color: #5d564b;
    color: #fff;
    padding: 60px 0 60px 60px;
}
.handover-wrapper .item {
    margin-bottom: 40px;
}
.handover-project h3 {
    color: #fff;
    font-weight: 500;
}
.handover-project ul {
    margin-bottom: 40px;
}



/* ------------------------------------------------------------------
TESTIMONIAL WRAPPER
--------------------------------------------------------------------- */
.testimonial-wrapper {
    background-color: #000;
    color: #fff;
    padding: 60px 0 0 60px;   
}

.testimonial-wrapper .section-title::before,
.testimonial-wrapper .section-title::after {
    background: #fff;
    opacity: 0.5;
}

.testimonial-wrapper .client-testimonial {
    padding: 50px 0 0 50px;
    position: relative;
    font-size: 24px;
    line-height: 36px;
    font-weight: 300;
    margin: 0;
}

.client-testimonial .client-name,
.client-testimonial .client-org{
    font-size: 14px;
    margin-top: 20px;
}
.client-testimonial .client-org{
    font-style: italic;
}
.client-testimonial .client-name::before {
    content: '\2014 \00A0';   
}


.testimonial-wrapper .client-testimonial::before {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../img/qoute.png') no-repeat;
}



/* CAROUSEL INDICATORS
--------------------------------------------------------------------- */

.handover-wrapper .carousel-indicators {
    left: 0;
    bottom: -20px;
    margin-left: -25%;
}

.handover-wrapper .carousel-indicators li {
    background-color: rgba(0, 0, 0, 0.5);
    border: 1px solid transparent;
}



.testimonial-wrapper .carousel-indicators {
    left: 0;
    bottom: 40px;
    margin-left: -25%;
}
.handover-wrapper .carousel-indicators li,
.testimonial-wrapper .carousel-indicators li {
    width: 22px;
    height: 7px;
    margin: 0 5px 0 0;
    border-radius: 1em;
}

.handover-wrapper .carousel-indicators .active,
.testimonial-wrapper .carousel-indicators .active {
    width: 22px;
    height: 7px;
    margin: 0 5px 0 0;
    background-color: #ff83b6;
    border: 1px solid #ff83b6;
}

.testimonial-wrapper .carousel-indicators li {
    background-color: rgba(255, 255, 255, 0.5);
    border: 1px solid transparent;
}





/* ------------------------------------------------------------------
TRUSTED CLIENT WRAPPER
--------------------------------------------------------------------- */
.trusted-client-wrapper {
    padding: 60px;
    background: #f7f7f7;
}
.trusted-client-wrapper .section-title {
    color: #202020;
}

ul.partner-logo {
    margin-top: 40px;
    display: inline-block;
    text-align: center;
}
ul.partner-logo li{
    display: inline-block;
    margin: 0 30px 30px;
}




/* ------------------------------------------------------------------
SUBSCRIPTION PLANS WRAPPER
--------------------------------------------------------------------- */
.subscription-wrapper {
    padding: 60px;
}
.pricing-sub {
    font-size: 20px;
    line-height: 30px;
    font-weight: 400;
    color: #797979;
    margin-bottom: 60px;
}
.subscription-wrapper .panel {
    border: 2px solid transparent;
    border-radius: 3px;
    box-shadow: none;
    border-color: #e0e0e0;
}

.subscription-wrapper .panel-default>.panel-heading {
    background-color: #f5f5f5;
}

.panel.featured-price {
    border-color: #00AEEF;
}
.subscription-wrapper .panel-default>.panel-heading {
    color: inherit;
}
.subscription-wrapper .panel-heading {
    border-bottom: 2px solid transparent;
    border-color: #e0e0e0;
    padding: 40px 35px 35px;
}
.subscription-wrapper .panel-heading h2{
    font-size: 24px;
    line-height: 30px;
    color: #202020;
    font-weight: 700;
}
.subscription-wrapper .panel-heading h2 small {
    display: block;
    color: #202020;
    font-weight: 700;
}
.subscription-wrapper .panel-body {
    padding: 30px 35px;
}
.price {
    display: block;
    font-size: 30px;
    line-height: 30px;
    font-weight: 700;
    margin: 30px 0;
    color: #ff83b6;
}
.price small {
    font-size: 14px;
    color: #b7b7b7;
    font-weight: 400;
}
.pricing-btn span {
    color: #00a651;
    margin-left: 8px;
    font-size: 12px;
}


/* ------------------------------------------------------------------
SUPPORT WRAPPER
--------------------------------------------------------------------- */
.support-wrapper {
    background: url('../img/support-bg.jpg') no-repeat center center;
    background-size: cover;
    padding: 60px;
    color: #fff;
}

.support-wrapper h2 {
    font-size: 36px;
    line-height: 30px;
    margin-bottom: 25px;
    color: #fff;
}

.support-wrapper a.btn {
    margin-top: 30px;
    text-transform: uppercase;
    font-size: 18px;
    font-weight: 700;
    padding: 14px 24px;
}



/* ------------------------------------------------------------------
FOOTER WIDGET WRAPPER
--------------------------------------------------------------------- */
.footer-widget-wrapper {
    padding: 60px 0;
    background-color: #262827;
    color: #7a7e83;
	border-top: 6px solid #555;
}

.subcsribe-text {
    position: relative;
    margin-bottom: 45px;
}

.subcsribe-text::after{
    content: "";
    position: absolute;
    background: #ff83b6;
    width: 60px;
    height: 2px;
    left: 0;
    bottom: -10px;
}


.footer-widget h3 {
    color: #fff;
    line-height: 30px;
    font-weight: 500;
}
.footer-widget form {
    margin-top: 30px;
}

.footer-widget .form-group input[type="email"]{
    width: 49%;
    float: left;
    background: #000000;
    border: none;
    border-radius: 2px;
    font-size: 18px;
    font-weight: 400;
    height: 46px;
    box-shadow: none;
}

.footer-widget .btn{
    padding: 0 12px;
    font-size: 18px;
    line-height: 30px;
    font-weight: 500;
    height: 46px;
}
.footer-widget .btn:hover{
    background-color: #fff;
}


.footer-widget ul {}
.footer-widget ul li {
    line-height: 34px;
}
.footer-widget ul li a{
    color: #7a7e83;
}
.footer-widget ul li a:hover{
    color: #e89b04;
}



/* ------------------------------------------------------------------
FOOTER WRAPPER
--------------------------------------------------------------------- */
.footer-wrapper {
    padding: 40px 0;
    background: #2d2f2e;
	border-top: 2px solid #555;
}
.copyright p{
    margin: 0;
}





/* ------------------------------------------------------------------
SOCIAL LINK
--------------------------------------------------------------------- */
.social-link {
    margin-top: 40px;
}
.social-link ul{}
.social-link ul li{
    display: inline-block;
    margin: 0 2px 0 0;
}
.social-link ul li a i{
    width: 34px;
    height: 34px;
    line-height: 34px;
    color: #fff;
    text-align: center;
    border-radius: 2px;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}

.social-link ul li a i:hover {
    background: #fff !important;
}
.social-link ul li a i.fa-rss {
    background: #ffac00;
}
.social-link ul li a i.fa-rss:hover {
    color: #ffac00;
}
.social-link ul li a i.fa-facebook {
    background: #375ca8;
}
.social-link ul li a i.fa-facebook:hover {
    color: #375ca8;
}
.social-link ul li a i.fa-twitter {
    background: #2da5c8;
}
.social-link ul li a i.fa-twitter:hover {
    color: #2da5c8;
}
.social-link ul li a i.fa-google-plus {
    background: #da3113;
}
.social-link ul li a i.fa-google-plus:hover {
    color: #da3113;
}
.social-link ul li a i.fa-youtube {
    background: #c61c1f;
}
.social-link ul li a i.fa-youtube:hover {
    color: #c61c1f;
}
.social-link ul li a i.fa-pinterest {
    background: #b42069;
}
.social-link ul li a i.fa-pinterest:hover {
    color: #b42069;
}
.social-link ul li a i.fa-linkedin {
    background: #0036e7;
}
.social-link ul li a i.fa-linkedin:hover {
    color: #0036e7;
}
.social-link ul li a i.fa-flickr {
    background: #e21777;
}
.social-link ul li a i.fa-flickr:hover {
    color: #e21777;
}


/* ----------------------------------------------------------------
ABOUT US PAGE
-------------------------------------------------------------------*/

.about-us-wrapper {
    padding: 60px;
}
.about-us-wrapper h2{
    margin-bottom: 22px;
}
.about-us-wrapper p,
.team-wrapper p {
    margin-bottom: 30px;
}
.about-us-wrapper em{
    font-size: 18px;
    line-height: 30px;
}

.abt-slider-intro {
    padding-right: 60px;
}
.abt-slider-intro p{
    font-size: 16px;
    line-height: 30px;
    margin-top: 30px;
}

/*about-us-slider-carousel-control position*/
.about-us-slider-wrapper .carousel-control {
    top: 85%;
    width: 40px;
    height: 40px;
    text-shadow: none;
}
.about-us-slider-wrapper .carousel-control.right, 
.about-us-slider-wrapper .carousel-control.left {
    background-image: none;
}
.about-us-slider-wrapper .carousel-control.right{
    right: 44%;
}
.about-us-slider-wrapper .carousel-control.left{
    left: 50%;
}
.about-us-slider-wrapper .carousel-control i:before{
    font-size: 24px;
    line-height: 40px;
    color: #6d6d6d;
}


.team-wrapper {
    padding: 60px;
}
.team-wrapper .section-title{
    color : #202020;
}
.css-team {
    margin-bottom: 30px;
}

.css-team  figure{
    margin-bottom: 50px;
}

.css-team-avatar{
    position: relative;
    overflow: hidden;
    padding: 4px;
    margin: 0 0 10px;
    background: #f4f4f4;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
}

.css-team-avatar img{
    width: 100%;
    height: auto;
}
.css-team .readmore{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    text-align: center;
    color: #fff;
}

.css-team .readmore i{
    display: block;
    margin-top: 45%;
    height: 50px;
}

.css-team .readmore i:before{
    font-size: 0;
}
.css-team-avatar:hover .readmore i:before{
    font-size: 50px;
}
.css-overlay{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(252, 187, 60, 0.8);
    display: inline-block;
    opacity: 0;
}
.css-team-avatar:hover .readmore i:before,
.css-overlay{
    -webkit-transition: all 0.2s;
    -moz-transition: all 0.2s;
    -ms-transition: all 0.2s;
    -o-transition: all 0.2s;
    transition: all 0.2s;
}
.css-team-avatar:hover .css-overlay{
    opacity: 1;
}

.css-team-info {
    text-align: center;
}

.css-team-heading{
    font-size: 18px;
    line-height: 24px;
    text-transform: uppercase;
}
.css-team-heading small{
    font-weight: 500;
    font-size: 14px;
    color: #6d6d6d;
    text-transform: capitalize;
}


ul.joblist-link {}
ul.joblist-link li{
    margin-bottom: 8px;
}
ul.joblist-link li a{
    display: inline-block;
    color: #202020;
    border-bottom: 2px solid #e3e3e3;
}
ul.joblist-link li a:hover{
    color: #e89b04;
}

.joblist-btn {
    font-size: 14px;
    font-weight: 500;
    padding: 3px 12px;
    margin-top: 10px;
}


.download-box-wrapper {
    background: url('../img/about-bottom.jpg') no-repeat center center;
    background-size: cover;
    padding: 60px;
}
.download-box {}
.download-box ul{}
.download-box ul li{
    padding: 0 10px 0 0;
    width: 32.8%;
}
.download-box ul li a {
    display: block;
    padding: 30px 20px;
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 3px;
    color: #fff;
    position: relative;
    overflow: hidden;
    min-height: 100px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}
.download-box ul li a:hover {
    box-shadow: 0 0 0 3px #000;
}

.download-box ul li a span {
    display: block;
    font-size: 12px;
    font-weight: 400;
}


.download-box ul li:nth-child(1) a {
    background: #2389e7;
}
.download-box ul li:nth-child(2) a {
    background: #f3b308;
}
.download-box ul li:nth-child(3) a {
    background: #ba5656;
}



.download-box ul li a::before {
    content: "\e012";
    font-family: Flaticon;
    position: absolute;
    top: 0;
    right: 10px;
    font-size: 100px;
    line-height: 50px;
    color: #fff;
    opacity: 0.2;
    -moz-opacity: 0.2;
    filter: alpha(opacity=20);
}


/* ----------------------------------------------------------------
ABOUT ME PAGE
-------------------------------------------------------------------*/
.info-in-short {}
.info-in-short img{
    width: 100%;
}
.member-info {
    background: #f5f5f5;
    padding: 20px 25px;
    font-size: 16px;
    line-height: 34px;
    margin-bottom: 30px;
}
.info-address {
    background: #f5f5f5;
    padding: 30px;
}
.info-address address {
    line-height: 22px;
}



/* ----------------------------------------------------------------
BLOG PAGE
-------------------------------------------------------------------*/
.inner-content {
    padding: 60px;
}
.blog-post-wrapper {
    padding: 0 0 60px;
    margin: 0 0 60px;
    border-bottom: 2px solid #e3e3e3;
}
.entry-header {}

/*For Sticky Post*/
.sticky .entry-header {
    padding-left: 60px;
    position: relative;
}
.sticky .entry-header:before {
    content: "\f0f6";
    font-family: FontAwesome;
    position: absolute;
    top: 0;
    left: 0;
    font-size: 40px;
    line-height: 60px;
}

.blog-post-wrapper .entry-meta {
    font-weight: 700;
    color: #b9b9b9;
    margin-bottom: 3px;
}
.blog-post-wrapper .entry-meta ul{}
.blog-post-wrapper .entry-meta ul li{
    position: relative;
    padding-left: 12px;
}
.blog-post-wrapper .entry-meta ul li:first-child{
    padding-left: 5px;
}
.blog-post-wrapper .entry-meta ul li:first-child::before{
    display: none;
}
.blog-post-wrapper .entry-meta ul li::before{
    content: "\f111";
    font-family: fontawesome;
    position: absolute;
    top: 0;
    left: 0;
    font-size: 6px;
    color: #e3e3e3;
}
.blog-post-wrapper .entry-meta ul li a{
    color: #b9b9b9;
}

.blog-post-wrapper h2.entry-title {
    margin-bottom: 25px;
}
.blog-post-wrapper .entry-title a{
    color: #202020;
}
.blog-post-wrapper .the-author a,
.blog-post-wrapper .the-category a,
.blog-post-wrapper .entry-meta ul li a:hover,
.blog-post-wrapper .entry-title a:hover{
    color: #ff83b6 !important;
}

.blog-post-wrapper .post-thumbnail {
    margin: 30px 0 40px;
}


/*blog-post-carousel*/
#blog-post-carousel .carousel-control {
    color: #fff;
    text-shadow: none;
    filter: alpha(opacity=10);
    opacity: 1;
}

#blog-post-carousel .carousel-control:hover, 
#blog-post-carousel .carousel-control:focus {
    color: #ff83b6;
    filter: alpha(opacity=100);
    opacity: 1;
}

#blog-post-carousel .carousel-control.left,
#blog-post-carousel .carousel-control.right {
    background-image: none;
    width: 40px;
    height: 40px;
    line-height: 40px;
    top: 50%;
    margin-top: -20px;
}

#blog-post-carousel .carousel-control.right {
    right: 20px;
}
#blog-post-carousel .carousel-control.left {
    left: 20px;
}

.carousel-control i::before {
    font-size: 28px;
}

.blog-post-wrapper blockquote {
    margin: 60px 0;
}

.blog-post-wrapper iframe {
    width: 100%;
    margin: 25px 0 40px;
}
.blog-post-wrapper .video-post iframe {
    height: 323px;
    border: 0;
}
.blog-post-wrapper .audio-post iframe {
    height: 150px;
    border: 0;
}


/* ----------------------------------------------------------------
SINGLE BLOG
-------------------------------------------------------------------*/
.blog-post-wrapper.single-article {
    padding: 0 0 40px;
    margin: 0 0 40px;
    border-bottom: 1px solid #e3e3e3;
}

.about-author .media img {
    height: 100px;
    width: 100px;
    margin-right: 20px;
}
.comments-wrapper {
    margin-top: 40px;
}
.comments-wrapper ul.media-list {
    margin-bottom: 60px;
}
.comments-wrapper .media-list li{
    border: 2px solid #f0f0f0;
    padding: 30px;
    border-radius: 3px;
}

.comments-wrapper .media-left, 
.comments-wrapper .media>.pull-left {
    padding-right: 20px;
}

.comments-wrapper .media img {
    width: 80px;
    height: 80px;
    border-radius: 3px;
}

.media-body span.comment-author,
.media-body span.comment-date {
    font-size: 12px;
    margin-right: 10px;
    color: #999;
}
.media-body span.comment-author i,
.media-body span.comment-date i {
    margin-right: 5px;
}

.media-body span.comments-buttons {
    font-size: 12px;
    margin-top: 5px;
}


/*PAGINATION*/
.pagination-wrap {
    width: 100%;
    position: relative;
}
.pagination>li>a, 
.pagination>li>span {
    width: 40px;
    height: 40px;
    border: 0;
    padding: 0;
    margin-left: 0;
    font-size: 16px;
    line-height: 38px;
    font-weight: 500;
    color: #6d6d6d;
    background-color: transparent;
}
.pagination>.active>a, 
.pagination>.active>span, 
.pagination>.active>a:hover, 
.pagination>.active>span:hover, 
.pagination>.active>a:focus, 
.pagination>.active>span:focus {
    color: #ff83b6;
    background-color: transparent;
    border-color: transparent;
}

.pagination>li>a:hover, 
.pagination>li>span:hover, 
.pagination>li>a:focus, 
.pagination>li>span:focus {
    color: #ff83b6;
    background-color: transparent;
    border-color: transparent;
}

.pagination li:first-child {
    position: absolute;
    left: 0;
}
.pagination li:last-child {
    position: absolute;
    right: 0;
}
.pagination li:last-child a, 
.pagination li:first-child a {
    border: 2px solid #e3e3e3;
    color: #e3e3e3;
    font-weight: 400;
}
.pagination > li:first-child > a, 
.pagination > li:first-child > span {
    border-bottom-left-radius: 0;
    border-top-left-radius: 0;
}
.pagination > li:last-child > a, 
.pagination > li:last-child > span {
    border-bottom-right-radius: 0;
    border-top-right-radius: 0;
}

.pagination > li:first-child > a:hover, 
.pagination > li:first-child > span:hover,
.pagination > li:last-child > a:hover, 
.pagination > li:last-child > span:hover {
    color: #ff83b6;
    background-color: transparent;
    border-color: #ff83b6;
}

.pagination-wrap .counter {
    color: #cacaca;
}

/*PAGER*/
.pager li a{
    border: 2px solid #e3e3e3;
    color: #e3e3e3;
    background: transparent;
    border-radius: 0;
    padding: 0;
    width: 40px;
    height: 40px;
    line-height: 36px;
}
.pager li>a:hover, 
.pager li>a:focus {
    background-color: #ff83b6;
    color: #fff;
    border: 2px solid transparent;
}

.pager li a.previous {
    float: left;
}
.pager li a.next {
    float: right;
}


/*BLOG SIDEBAR*/

.sidebar-wrapper {}
.sidebar-wrapper .widget{
    margin-bottom: 40px;
    border: 2px solid #e3e3e3;
    border-radius: 2px;
}

.widget .widget-title{
    font-size: 14px;
    line-height: 30px;
    font-weight: 400;
    border-bottom: 1px solid #e3e3e3;
    padding: 10px 15px;
    margin-bottom: 15px;
}
.sidebar-wrapper .widget ul {
    padding: 0 15px;
}
.sidebar-wrapper .widget ul li{
    padding: 10px 0px;
    border-bottom: 1px solid #f1f1f1;
}
.sidebar-wrapper .widget ul li:first-child{
    padding-top: 0;
}
.sidebar-wrapper .widget ul li:last-child{
    border-bottom: 0;
}
.sidebar-wrapper .widget ul li:before {
    content: "\e001";
    font-family: Flaticon;
    display: inline-block;
    margin-right: 7px;
    font-size: 10px;
    color: #212121;
}

.sidebar-wrapper .widget ul li a {
    color: #6d6d6d;
}
.sidebar-wrapper .widget ul li a:hover {
    color: #ff83b6;
}

.sidebar-wrapper .widget.widget_search{
    border: 0;
}
.widget_search form {
    position: relative;
}
.widget_search form button i{
    color: #e3e3e3;
}
.widget_search form button:hover i{
    color: #ff83b6;
}
.widget_search form button:focus {
    outline: none;
}
.widget_search form [type="submit"] {
    position: absolute;
    right: 0;
    top: 2px;
    width: 40px;
    height: 42px;
    border: none;
    border-left: 1px solid #e3e3e3;
    box-shadow: none;
    background: transparent;
}


.sidebar-tab ul li{}


.widget.widget_tag_cloud ul {
    padding-bottom: 15px;
}
.widget.widget_tag_cloud ul li{
    display: inline-block;
    border-bottom: 0;
    padding: 5px 0;
    margin-right: 15px;
}

.widget.widget_tag_cloud ul li a{
    padding: 3px 0;
    border-bottom: 1px dashed transparent;
}
.widget.widget_tag_cloud ul li a:hover {
    border-bottom: 1px dashed #6d6d6d;
}
.sidebar-wrapper .sidebar-tab ul li:before,
.widget.widget_tag_cloud ul li:before  {
    display: none;
}


/*Sidebar Tab*/
.sidebar-tab .nav-tabs > li > a {
    font-size: 14px;
    font-weight: 400;
    padding: 8px 10px;
    border: 0;
}

.sidebar-tab .nav-tabs {
    border-bottom: 1px solid #e3e3e3;
    border-radius: 0;
}
.sidebar-tab ul.nav-tabs li {
    border-bottom: 0;
}

.sidebar-tab .tab-content {
    margin: 15px 0 0;
}
.sidebar-tab .nav-tabs li:first-child a:after{
    content: "|";
    position: absolute;
    right: 0;
    color: #e3e3e3;
}

.sidebar-tab .nav-tabs > li > a:hover, 
.sidebar-tab .nav-tabs > li.active > a, 
.sidebar-tab .nav-tabs > li.active > a:hover, 
.sidebar-tab .nav-tabs > li.active > a:focus {
    background: transparent;
    color: #e3e3e3;
    border: 0;
}



/* ----------------------------------------------------------------
PORTFOLIO PAGE
-------------------------------------------------------------------*/
#filter {
    overflow: hidden;
    margin: 15px 0 30px;
}

#filter li {
    float: left;
    margin-bottom: 10px;
}

#filter li a {
    background: transparent;
    border: 2px solid #e3e3e3;
    border-radius: 3px;
    color: #6d6d6d;
    display: block;
    margin: 0 5px 0 0;
    padding: 3px 10px;
    cursor: pointer;
}
#filter li a:hover,
#filter li a.active {
    background: #ff83b6;
    border: 2px solid transparent;
    color: #fff;
}
.portfolio-item {
    margin-bottom: 30px;
    min-height: 200px;
}

/*Portfolio Four Column Page*/
.four-column .portfolio-item {
    min-height: 150px;
}



/*portfolio hover effect*/
.single-portfolio {
    position: relative;
    overflow: hidden;
}
.single-portfolio::before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: rgba(0,0,0,0.6);
}

.portfolio-links {
    width: 100%;
    height: auto;
    position: absolute;
    top: 0px;
    left: 0px;
    margin-top: -18%;
}
.single-portfolio:hover .portfolio-links{
    top: 50%;
}
.single-portfolio::before,
.portfolio-links {
    opacity: 0;
    filter: alpha(opacity=0);
    -webkit-transition: all 300ms;
    -moz-transition: all 300ms;
    -o-transition: all 300ms;
    transition: all 300ms;
}
.single-portfolio:hover::before,
.single-portfolio:hover .portfolio-links{
    opacity: 1;
    filter: alpha(opacity=100);
}


.portfolio-links>a {
    width: 40px;
    height: 40px;
    line-height: 36px;
    display: inline-block;
    text-align: center;
    font-size: 18px;
    border: 2px solid rgba(255,255,255,.3);
    color: #fff;
    border-radius: 10px;
}
.portfolio-links>a:hover {
    background: rgba(255,255,255,.3);
    color: #ff83b6;
    border: 2px solid transparent;
}

/*Portfolio Single Page*/
.portfolio-content {}
.portfolio-content img{
    margin-bottom: 30px;
}
.portfolio-info p {
    margin-bottom: 15px;
}
.portfolio-info .title,
.portfolio-info .block-title {
    font-size: 18px;
    line-height: 22px;
    font-weight: 500;
    color: #202020;
    display: block;
}

.portfolio-info .block-title {
    margin: 30px 0;
}
.related-project h2 {
    font-size: 20px;
    line-height: 22px;
    font-weight: 500;
    margin-bottom: 30px;
}

.related-work-carousel .item{
  margin: 3px;
}
.related-work-carousel .item img{
  display: block;
  width: 100%;
  height: auto;
}


.related-project .owl-theme .owl-controls .owl-page span {
    width: 22px;
    height: 7px;
    margin: 0 5px 0 0;
    filter: Alpha(Opacity=100);
    opacity: 1;
}

.owl-theme .owl-controls .owl-page.active span, 
.owl-theme .owl-controls.clickable .owl-page:hover span {
    background: #ff83b6;
}



/* ----------------------------------------------------------------
CONTACT US PAGE
-------------------------------------------------------------------*/
.contact-us-wrapper {
    padding: 60px;
}
.contact-us-wrapper h2 {
    font-size: 18px;
    line-height: 24px;
    margin: 0;
}
.mini-contact {
    margin-bottom: 80px;
}
.mini-contact h2 {
    margin-bottom: 20px;
}
.mini-contact a {
    color: #202020;
    font-size: 15px;
    font-style: italic;
    font-weight: 700;
    margin-top: 25px;
    display: block;
}
.mini-contact a:hover {
    color: #ff83b6;
}

.map-wrapper {
    margin-bottom: 60px;
}
.map-canvas {
    height     : 290px;
}


.directions-wrapper {
    margin-bottom: 60px;
}
.contact-directions {
    margin-bottom: 20px;
}

.contact-us-form h2 {
    margin-bottom: 20px;
}

.input-group.text-area {
	margin-left: -3px;
}

.contact-us-form .btn {
    padding: 10px 50px;
    text-transform: uppercase;
    font-weight: 500;
}


/* ----------------------------------------------------------------
Job Page
-------------------------------------------------------------------*/
.job-page-wrapper {
    padding: 60px;
}
.job-page-wrapper h2{
    margin-bottom: 25px;
}
.job-details dl {
    margin-bottom: 40px;
}
.job-details dl dt {
    font-weight: 500;
    display: inline-block;
    border-bottom: 2px solid #eee;
    padding-bottom: 10px;
    margin-bottom: 15px;
}
.job-details dl dd {
    padding-left: 20px;
    margin-bottom: 10px;
    position: relative;
}
.job-details dl dd::before {
    font-family: FontAwesome;
    content: "\f192";
    font-size: 10px;
    color: #ff83b6;
    position: absolute;
    top: 3.5px;
    left: 0;
}


/* ----------------------------------------------------------------
Clients Page
-------------------------------------------------------------------*/
.our-clients-wrapper {
    padding: 60px;
}

.our-clients-wrapper .media {
    border-bottom: 1px solid #e3e3e3;
    padding-bottom: 20px;
    margin-bottom: 60px;
}
.our-clients-wrapper .media:last-of-type{
    border-bottom: 0;
    margin-bottom: 0;
}
.our-clients-wrapper .media img {
   min-width: 121px;
}
.our-clients-wrapper .media-left, 
.our-clients-wrapper .media>.pull-left {
    padding-right: 60px;
}
.our-clients-wrapper h2.media-heading {
    font-size: 22px;
    line-height: 28px;
    margin-bottom: 0;
}
.our-clients-wrapper .media-body span{
    font-weight: 700;
    color: #b4b4b4;
    display: block;
    margin-bottom: 10px;
}


/* ----------------------------------------------------------------
FAQ Page
-------------------------------------------------------------------*/
.faq-wrapper {
    padding: 60px;
}


/* ----------------------------------------------------------------
Accordion/Collaps Style
-------------------------------------------------------------------*/
.panel {
  border: 2px solid #e3e3e3;
  box-shadow: none;
}
.panel-default>.panel-heading {
    background-color: #fff;
}

.panel .panel-heading-link {
    position: relative;
}
.panel-title {
    font-size: 18px;
    line-height: 20px;
}
.panel .panel-heading-link a:after {
    font-family: 'FontAwesome';
    content: "\f107";
    font-size: 20px;
    font-weight: 700;
    color: #e89b04;
    width: 40px;
    height: 37px;
    line-height: 37px;
    text-align: center;
    position: absolute;
    top: 0;
    right: 0;
}
.panel .panel-heading-link a.collapsed:after {
content: "\f105";
}




/* ----------------------------------------------------------------
Typography Page
-------------------------------------------------------------------*/
.typography-page-wrapper {
    padding: 60px;
}
.typography-page-wrapper .section-title{
    color: #202020;
}

.typography-page-wrapper .jumbotron {
    background-color: #222121;
    padding-left: 15px;
    border-radius: 3px;
}
.typography-page-wrapper .jumbotron h1{
    font-size: 42px;
}
.typography-page-wrapper ul li:before {
    color :#ff83b6;;
}

.typography-page-tab {
    padding: 20px;
    border: 2px solid #e3e3e3;
    border-radius: 3px;
}

.typography-page-tab ul.nav-tabs {
    background: #f2f2f2;
    width: 100%;
}
.typography-page-tab ul.nav-tabs li > a {
    color: #000;
}
.typography-page-tab ul.nav-tabs li > a:hover, 
.typography-page-tab ul.nav-tabs li.active > a {
    color: #fff;
}
.typography-page-tab .tab-content {
    color: #6d6d6d;
    margin: 15px 0 0;
}

.typography-page-chart {
	background: #181717;
	padding: 30px;
}

/* ----------------------------------------------------------------
Offcanvas Style
-------------------------------------------------------------------*/
.hippo-offcanvas-container{
	background: #27272C;
}
.hippo-offcanvas-pusher::after{
	z-index: 1200;
}
.offcanvas-menu{
	left: -1000px;
}
#off-canvas-close-btn{
	padding: 0px 20px;
	background: rgba(0, 0, 0, 0.3);
	color: #fff;
	height: 62px;
	text-shadow: none;
	opacity: 1;
}
#off-canvas-close-btn:hover,
#off-canvas-close-btn:focus{
	color: #ff83b6;
	outline: none;
}
.offcanvas-menu  h3{
	text-transform: uppercase;
	color: #fff;
	font-weight: 500;
	background: rgba(0, 0, 0, 0.25);
	padding: 1em 1em 1em 1.2em;
}

.offcanvas-menu ul li a {
	display: block;
	padding: 1em 1em 1em 1.2em;
	color: #fff;
	text-transform: uppercase;
	letter-spacing: 1px;
	font-size: 16px;
	font-weight: 500;
	box-shadow: inset 0 -1px rgba(0, 0, 0, 0.2);
}

.offcanvas-menu ul li li a {
    font-size   : 12px;
    font-weight : 400;
    padding-left: 30px;
}

.offcanvas-menu ul li:first-child a {

}


.offcanvas-menu ul li a:hover,
.offcanvas-menu ul li.active a {
    background : rgba(0, 0, 0, 0.2);
    box-shadow : inset 0 -1px rgba(0, 0, 0, 0);
    color      : #ff83b6;
}








/* ------------------------------------------------------------------
BACK TO TOP
--------------------------------------------------------------------- */
#toTop{
    position: fixed;
    bottom: 30px;
    right: 20px;
    padding: 5px 10px;
    cursor: pointer;
    display: none;
    z-index: 9999;
}



/* ------------------------------------------------------------------
DROPDOWN CSS
---------------------------------------------------------------------*/


.dropdown-menu {
    border: 0;
    border-radius: 0;
    position: relative;
    display: block;
    float: none;
    width:100%;
    box-shadow: none;
    background: rgba(0,0,0,.8);
}

.nav.navbar-nav li ul.dropdown-menu li a{
    padding        : 7px 20px;
    font-size      : 13px;
    color          : #fff;
    line-height    : 20px; 
    text-transform : capitalize;
 }

.nav.navbar-nav li ul.dropdown-menu li a:hover,
.nav.navbar-nav li ul.dropdown-menu li a:focus{
    background  : transparent; 
    color       : #ff83b6
  }


.dropdown-menu>.active>a, 
.dropdown-menu>.active>a:hover, 
.dropdown-menu>.active>a:focus {
    color: #ff83b6 !important;
    background-color: transparent;

}



/* Menu hover */

/* 2nd label menu */

li.dropdown > .submenu-wrapper {
    position       : absolute;
    display        : block;
    left           : 0;
    z-index        : 999;
    pointer-events : none;

    top            : 38px; /* Will change on theme specific */
}


/** IE pointer events */

li.dropdown > .submenu-wrapper.no-pointer-events{
    display        : none;
}

li.dropdown > .submenu-wrapper > .submenu-inner {
    margin-top: 16px;
    opacity            : 0;
    filter: alpha(opacity=0); /* For IE8 and earlier */

    -webkit-transform  : translateY(-100%);
    -moz-transform     : translateY(-100%);
    -ms-transform      : translateY(-100%);
    -o-transform       : translateY(-100%);
    transform          : translateY(-100%);

    /* Will change on theme specific */

    min-width          : 200px;

    /* Will change on theme specific */

    /*
    ease-in-out, 
    easeOutBack   = cubic-bezier(0.175, 0.885, 0.32, 1.275)
    easeInOutCirc = cubic-bezier(0.785, 0.135, 0.15, 0.86)
    easeInOutBack = cubic-bezier(0.68, -0.55, 0.265, 1.55)
    */

    -webkit-transition : all 300ms cubic-bezier(0.785, 0.135, 0.15, 0.86);
    -moz-transition    : all 300ms cubic-bezier(0.785, 0.135, 0.15, 0.86);
    -ms-transition     : all 300ms cubic-bezier(0.785, 0.135, 0.15, 0.86);
    -o-transition      : all 300ms cubic-bezier(0.785, 0.135, 0.15, 0.86);
    transition         : all 300ms cubic-bezier(0.785, 0.135, 0.15, 0.86);
}

/*for IE9*/
.ie9 li.dropdown > .submenu-wrapper > .submenu-inner {
    margin-top: 34px;
}

/*for IE9*/
.ie9 .top-nav-collapse li.dropdown > .submenu-wrapper > .submenu-inner {
    margin-top: 14px;
}



li.dropdown:hover > .submenu-wrapper {
    pointer-events : auto;
}


li.dropdown:hover > .submenu-wrapper.no-pointer-events{

    display        : block;
    
}

li.dropdown:hover > .submenu-wrapper > .submenu-inner {
    opacity           : 1;
    filter: alpha(opacity=100); /* For IE8 and earlier */
    -webkit-transform : translateY(0);
    -moz-transform    : translateY(0);
    -ms-transform     : translateY(0);
    -o-transform      : translateY(0);
    transform         : translateY(0);


}

li.dropdown.menu-animating > .submenu-wrapper {
    overflow : hidden;
}

/* 3rd label menu */

li.dropdown > .submenu-sub-wrapper {
    position       : absolute;
    left           : 100%;
    top            : 0;
    display        : block;
    z-index        : 1000;
    width          : 100%;
    pointer-events : none;
}

li.dropdown > .submenu-sub-wrapper > .submenu-sub-inner {

    opacity            : 0;
    filter: alpha(opacity=0); /* For IE8 and earlier */

    -webkit-transform  : translateX(-100%);
    -moz-transform     : translateX(-100%);
    -ms-transform      : translateX(-100%);
    -o-transform       : translateX(-100%);
    transform          : translateX(-100%);

    /*
    ease-in-out, 
    easeOutBack   = cubic-bezier(0.175, 0.885, 0.32, 1.275)
    easeInOutCirc = cubic-bezier(0.785, 0.135, 0.15, 0.86)
    easeInOutBack = cubic-bezier(0.68, -0.55, 0.265, 1.55)
    */

    -webkit-transition : all 300ms cubic-bezier(0.785, 0.135, 0.15, 0.86);
    -moz-transition    : all 300ms cubic-bezier(0.785, 0.135, 0.15, 0.86);
    -ms-transition     : all 300ms cubic-bezier(0.785, 0.135, 0.15, 0.86);
    -o-transition      : all 300ms cubic-bezier(0.785, 0.135, 0.15, 0.86);
    transition         : all 300ms cubic-bezier(0.785, 0.135, 0.15, 0.86);
}

li.dropdown:hover > .submenu-sub-wrapper {
    pointer-events : auto;
}

li.dropdown:hover > .submenu-sub-wrapper > .submenu-sub-inner {
    opacity           : 1;
    filter: alpha(opacity=100); /* For IE8 and earlier */
    -webkit-transform : translateX(0);
    -moz-transform    : translateX(0);
    -ms-transform     : translateX(0);
    -o-transform      : translateX(0);
    transform         : translateX(0);
}

li.dropdown.menu-animating > .submenu-sub-wrapper {
    overflow : hidden;
}




/*-------------------------------------
 *  HERO SLIDER
 *-------------------------------------*/

.hero-slide .container {
    position  : absolute;
    left      : 0;
    right     : 0;
    top       : 50%;
    transform : translateY(-50%);
    }

.hero-slide .carousel-caption {
    position    : relative;
    right       : 0;
    left        : 0;
    text-align  : left;
    text-shadow : none;
    width : 80%;
    }

.hero-slide .carousel-caption small {
    font-size       : 13px;
    color           : rgba(255,255,255,.5);
    font-weight     : 500;
    animation-delay : 1s;
    }

.hero-slide .carousel-caption .phone {
    font-size               : 30px;
    color                   : #ff83b6;
    -webkit-animation-delay : 100ms;
    animation-delay         : 100ms;
    }

.hero-slide .carousel-caption h1 {
    font-size               : 56px;
    line-height             : 1;
    font-weight             : bold;
    text-transform          : capitalize;
    margin                  : 30px 0 20px;
    -webkit-animation-delay : 150ms;
    animation-delay         : 150ms;
    color: #fff;
    }

.hero-slide .carousel-caption .lead {
    font-size               : 24px;
    color                   : #fff;
    font-weight             : normal;
    margin-bottom           : 30px;
    -webkit-animation-delay : 200ms;
    animation-delay         : 200ms;
    }

.hero-slide .carousel-caption .btn {
    -webkit-animation-delay : 250ms;
    animation-delay         : 250ms;
    }

/* Slider Controller */
.hero-slide .carousel-control.left,
.hero-slide .carousel-control.right {
    font-size   : 30px;
    width       : 30px;
    height      : 100px;
    line-height : 100px;
    top         : 50%;
    background  : #000000;
    cursor      : pointer;
    border      : 0;
    text-shadow : none;
    transform   : translateY(-50%);
    }

.hero-slide .carousel-control.left {
    left : -100%;
    }

.hero-slide .carousel-control.right {
    right : -100%;
    }

.hero-slide:hover .left {
    left : 0;
    }

.hero-slide:hover .right {
    right : 0;
    }

/* Slider Indicator*/
.hero-slide .carousel-indicators li {
    border  : 2px solid rgba(0, 0, 0, .5);
    opacity : .5;
    }

.hero-slide .carousel-indicators li.active {
    border-color     : #ff5722;
    background-color : #ff5722;
    opacity          : 1;
    }


/* ---------------------------------------------- /*
 * Preloader
/* ---------------------------------------------- */

#preloader {
    background: #FFF;
    bottom: 0;
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 9999;
}

#status,
.status-mes {
    background-image: url(../img/preloader1.gif);
    background-position: center;
    background-repeat: no-repeat;
    height: 200px;
    left: 50%;
    margin: -100px 0 0 -100px;
    position: absolute;
    top: 50%;
    width: 200px;
}

.status-mes {
    background: none;
    left: 0;
    margin: 0;
    text-align: center;
    top: 65%;
}


/* ---------------------------------------------- /*
 * Mine
/* ---------------------------------------------- */
#second-nav{
	margin-bottom: 0px;;
}
.top-bar .contact-details li {
    display: inline-block;
}
#school-name {
    font-family: Castellar;
    font-weight: bold;
    font-size: 1.1em;
}
.top-bar .contact-details li a {
    font-size: 12px;
    display: block;
    line-height: 32px;
	color: #fff;
	font-weight: bold;
}
.top-bar .contact-details marquee {
	color: #fff;
	font-weight: bold;
}
.special-black{
	color: #ff83b6;
	font-weight: bold;
}
.top-bar {
    background-color: #6d0202;
    border-bottom: none;
	margin-bottom: 0px;
	padding-top: 5px;
	padding-bottom: 5px;
}
.top-bar .contact-details .before-top-li a:before {
    position: relative;
    content: "|";
    font-size: 13px;
    margin: 0 3px;
    top: -1px;
    color: #bbb;
}

@media (max-width: 767px){
	#school-logo{
		margin-top: inherit;
	}
	.page-header-wrapper .page-header h1{
		display: none;
	}
}
@media screen and (min-width: 479px) and (max-width: 767px){
	.hero-slide .carousel-caption h1{
		font-size: 42px;
	}
	.hero-slide .carousel-caption .lead{
		font-size: 21px;
	}
}
@media (min-width: 768px){
	#second-nav{
		border: none !important;
		border-radius: 0px 0px 4px 4px;
	}
	#school-logo{
		margin-top: -25px;
	}
	.hide-less-md, .hide-smallest{
		display: inline-block  !important;
	}
}
@media (max-width: 767px){
	.hide-less-md, .hide-smallest{
		display: none !important;
	}
}
@media (max-width: 478px){
	.small-hide{
		display: none !important;
	}
	.hero-slide .carousel-caption h1{
		font-size: 25px;
	}
	.hero-slide .carousel-caption .lead{
		font-size: 16px;
	}
	#content-container{
		padding-left: 0px;
		padding-right: 0px;
	}
	.gap-right, .pull-right-margin, .pull-left-margin{
		width: 100% !important;
	}
	
}
.footer-widget{
	background: url(../img/map.png) center bottom no-repeat;
}
.footer-span{
	font-weight: bold;
	font-size: 1.1em;
}
.small-bottom-margin {
    margin-bottom: 10px;
}
.big-bottom-margin{
	margin-bottom: 32px;
}
.gap-right{
	margin-right: 10px;
}
.small-margin-bottom{
	margin-bottom: 12px !important;
}


.facilities-section-wrapper{
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6));
	width: 100%;
	height: 100%;
	margin: 0px;
	padding: 40px 20px;
}
.advantages-wrapper{
	padding: 0px !important;
}

.facilities-section-wrapper .special-message p{
	font-size: 1.3em;
	color: #fff;
}


.image-wrapper .portfolio-item{
	margin: 0px;
}

.image-wrapper{
	padding-top: 3px;
	padding-left: 4px;
	padding-right: 4px;
	padding-bottom: 3px;
}

.image-wrapper .portfolio-links, .single-portfolio .portfolio-links {
	font-weight: bold;
	color: #fff;
}

.man-team-wrapper{
	padding-top: 30px;
	padding-bottom: 40px;
}

.man-team-wrapper .section-title, .success-wrapper .section-title{
    color: #000;
	margin: 0;
}

.success-wrapper{
	margin-top: 40px;
}

.man-team-wrapper .section-title::before, .man-team-wrapper .section-title::after , .depts-wrapper .section-title::before, .depts-wrapper .section-title::after,
.success-wrapper .section-title::after, .success-wrapper .section-title::before{
    display: none !important;
}

.man-team-wrapper .team-member, .man-team-page-wrapper .team-member{
    margin-bottom: 40px;
}
.man-team-wrapper .team-member, .man-team-page-wrapper .team-member {
    padding: 3px;
    position: relative;
}
.man-team-wrapper .team-member.modern .member-photo, .man-team-page-wrapper .team-member.modern .member-photo {
    position: relative;
    padding: 0px;
    border: none;
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -o-border-radius: 0;
}
.man-team-wrapper .team-member .member-photo, .man-team-page-wrapper .team-member .member-photo {
    padding: 3px;
    border: 1px solid #eee;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -o-border-radius: 3px;
    position: relative;
    transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
} 
.man-team-page-wrapper .team-member .member-photo {
	margin-bottom: 40px;
}
.man-team-page-wrapper .progress-label {
    font-size: 11px;
    line-height: 2em;
    font-weight: bold;
}
.man-team-page-wrapper .team-member.modern .progress {
    height: 3px;
    border-width: 2px;
    margin-bottom: 6px;
}
.man-team-page-wrapper .progress {
    overflow: visible;
    height: 18px;
    margin-bottom: 10px;
    background-color: #f9f9f9;
    border-radius: 0px;
    -webkit-box-shadow: none;
    box-shadow: none;
}
.man-team-page-wrapper .progress .progress-bar.progress-bar-primary {
    background-color: rgba(128, 0, 0,1);
}
.man-team-page-wrapper .team-member.modern .member-info {
    padding: 14px 0;
	background: #fff;
}
.man-team-page-wrapper  p {
    
	font-weight: 300;
	color: #666;
    font-size: 13px;
    font-family: 'Open Sans', sans-serif;
    line-height: 22px;
    margin: 0 !important;
}
.man-team-wrapper .team-member .member-photo .member-name, .man-team-page-wrapper .team-member .member-photo .member-name {
    position: absolute;
    bottom: 2px;
    right: 5px;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    padding: 2px;
    border-radius: 2px;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    -o-border-radius: 2px;
    background-color: #444;
    z-index: 9994;
}
.man-team-wrapper .team-member .member-photo .member-name span {
   
}
.man-team-wrapper .team-member .member-photo .member-name span, .man-team-page-wrapper .team-member .member-photo .member-name span  {
    position: absolute;
    top: 90%;
    right: 0;
    color: #fff;
    font-size: 13px;
    font-weight: 300;
    padding: 1px 10px;
    border-radius: 2px;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    -o-border-radius: 2px;
	 background-color: rgba(109, 2, 2,.8);
}
.man-team-wrapper .team-member.modern:hover .member-photo:after, .man-team-page-wrapper .team-member.modern:hover .member-photo:after {
    opacity: 0.5;
    width: 100%;
    height: 100%;
}
.man-team-wrapper  .team-member.modern .member-photo:after {
    
}
.man-team-wrapper .team-member.modern .member-photo:after, .man-team-page-wrapper .team-member.modern .member-photo:after {
    content: "";
    display: block;
    width: 100%;
    height: calc(100% + 1px);
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 9993;
    transition: all 0.6s ease-in-out;
    -moz-transition: all 0.6s ease-in-out;
    -webkit-transition: all 0.6s ease-in-out;
    -o-transition: all 0.6s ease-in-out;
	background-color: rgba(109, 2, 2,.8);
}

.figures-wrapper {
    padding: 0px;
    background: #000000 url('../img/bg/dance-group-parallax1.jpg') no-repeat center center;
    background-size: cover;
	
}
.figures-section-wrapper{
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6));
	width: 100%;
	height: 100%;
	margin: 0px;
	padding: 64px 30px;
}
.facts-figures-margin {
    margin-bottom: 50px;
}
.counter-item {
    position: relative;
    text-align: center;
}
.timer {
    color: rgba(128, 0, 0,1);
	font-size: 48px;
    font-weight: 800;
    text-transform: uppercase;
    text-align: center;
    line-height: 80px;
}
.counter-item h5 {
    text-align: center;
    margin-bottom: 0px;
    color: #fff;
    text-transform: uppercase;
}

.depts-wrapper {
	padding: 0px;
	padding-bottom: 40px;
    background: url(../img/patterns/12.jpg) fixed repeat;
    color: #fff;
}
.depts-wrapper .section-title{
	margin: 0px;
    padding: 50px 0 60px 0;
}
.depts-wrapper .owl-controls .owl-buttons div i {
    color: #666;
	font-size: 1.2em;
	font-weight: bold;
	transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -webkit-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
}

/* ---------------------------------------------- /*
 * Management Team Page
/* ---------------------------------------------- */
.man-team-page-wrapper{
	padding: 40px 30px 0 30px;
}
.staff-profile-1, .board, .bg-board-inner, .bg-board-inner-policy{
	padding: 40px 30px;
}
.action-box-margin {
    margin-bottom: 30px;
}
.gap-right {
    margin-right: 12px;
}
.history-staff-container{
	margin-bottom: 25px;
}
.bg-board{
	margin: 0px;
	border: none;
	padding: 0px;
    background: #000000 url(../img/bg/library-parallax.jpg) no-repeat center center;
    background-size: cover;
}
.bg-board-policy{
	margin: 0px;
	border: none;
	padding: 0px;
    background: url(../img/patterns/12.jpg) fixed repeat;
}
.bg-board-inner{
	background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6));
	width: 100%;
	height: 100%;
	color: #fff;
	font-weight: bold;
}
.bg-board-inner-policy{
	width: 100%;
	height: 100%;
	color: #fff;
	font-weight: bold;
}
.bg-board-inner ol, .bg-board-inner-policy ol, .normal-ol-list-1{
	list-style: decimal inside;
	
}
.inner-group, .inner-group-2 {
    list-style: disc inside;
}
.inner-group > li, .inner-group-2 > li {
    display: list-item !important;
    text-align: justify;
    font-family: Times New Roman;
    font-size: 1.2em;
    font-style: italic;
    padding: 8px 15px;
    border: none;
}
.bg-board-inner li, .bg-board-inner-policy li, .normal-ol-list-1 li{
	background-color: transparent;
}
.bg-board-inner ol .outer-li, .bg-board-inner-policy ol li, .normal-ol-list-1 li{
    display: list-item !important;
    text-align: left;
    font-family: Times New Roman;
    font-size: 1.2em;
    font-style: italic;
    padding: 8px 8px;
    border: none;
}
.bg-board-inner p, .bg-board-inner-policy p{
	font-size: 1.2em;
}
.pull-right-margin{
	margin-left: 12px;
}
.pull-left-margin{
	margin-right: 12px;
}


.white{
	color: #fff !important;
}
a.white:hover, a.white:focus, a.white:active{
	color: #ff83b6 !important;
}
/* ---------------------------------------------- /*
 * Cornerstone deco
/* ---------------------------------------------- */
.cornerstone-wrapper {
	background: url(../img/patterns/12.jpg) fixed repeat;
    color: #fff;
    padding: 20px 0 0 0;
}
.cornerstone-titles{
	font-weight: bold;
	color: #ff83b6;
	margin-left: 14px;
	margin-bottom: 8px;
}
.classic-cornerstone{
	padding: 14px 24px;
	border-radius: 40px 0 40px 0;
	-webkit-border-radius: 40px 0 40px 0;
    -moz-border-radius: 40px 0 40px 0;
    -o-border-radius: 40px 0 40px 0;
	border: 1px solid #e8e8e8;
	box-shadow: 0 0 20px rgba(250,250,250,.6) inset;
	-o-box-shadow: 0 0 20px rgba(250,250,250,.6) inset;
	-moz-box-shadow: 0 0 20px rgba(250,250,250,.6) inset;
  	-webkit-box-shadow: 0 0 20px rgba(250,250,250,.6) inset;
}
.cornerstone-wrapper .section-title{
	margin-left: 20px;
	margin-bottom: 20px;
}
.cornerstone-wrapper .classic-cornerstone p {
    font-family: Colonna MT;
    font-size: 1.4em;
    font-style: italic;
	margin-bottom: 10px;
}
.cornerstone-wrapper .owl-controls .owl-pagination {
    position: absolute;
    top: -35px;
    right: 2px;
}


/*************** Call To Action ***************/

.call-action-boxed {
	padding: 30px 40px;
}

.call-action.no-descripton h2.primary {
	margin-top: 4px;
}

.call-action h2.primary {
	font-weight: 500;
}

.call-action h2.primary strong {
	font-weight: 700;
}

.call-action p {
	font-size: 14px;
	margin-bottom: 0;
}

.call-action h2 + p {
	margin-top: 4px;
}

.call-action .button-side {
	float: right;
}

.call-action-style1 {
	border: 1px solid #e8e8e8;
	box-shadow: 0 0 25px rgba(0,0,0,.04) inset;
	-o-box-shadow: 0 0 25px rgba(0,0,0,.04) inset;
	-moz-box-shadow: 0 0 25px rgba(0,0,0,.04) inset;
  	-webkit-box-shadow: 0 0 25px rgba(0,0,0,.04) inset;
}

.call-action-style2 {
	background: #f2f2f2;
}

.call-action-style3 {
	background: #444;
}

.call-action-style3 h2.primary {
	color: #fff;
}

.call-action-style3 p {
	color: #bbb;
}


/* ---------------------------------------------- /*
 * Results Page
/* ---------------------------------------------- */
#result-form-div{
	margin-left: 10px;
}
.lab{
	width: 60px;
	float: left;
	clear: left;
}
#res-form .all, #contact-form .all{
	margin-bottom: 10px;
}
.input-right{
	float: left;
}
#sch, #tm, #ps, #nm, #em{
	width: 170px;
}
#session-1, #session-2, #reset, #sub{
	width: 82px;
}
#reset, #sub{
	margin-left: 12px;
	margin-right: 12px;
}
#res-form .slash, #contact-form .slash{
	margin-left: 3px;
	margin-right: 3px;
}

#contact-row ul{
	list-style-type: none;
}
#contact-row ul li, #resu p {
	overflow-wrap: break-word !important;
}
#msg{
	min-width: 190px;
	min-height: 160px;
	float: left;
	clear: left;
	margin-left: 5px;
}
#sub{
	background-color: #378948;
	color: #fff;
}
#loading {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,.9);
	z-index: 99999999999;
	display:none;
}

#powered-image{margin-bottom: 30px !important;}


.spinner {
	position: absolute;
	width: 80px;
	height: 80px;
	top: 50%;
	left: 50%;
	margin-left: -40px;
	margin-top: -40px;
	-webkit-animation: rotatee 2.0s infinite linear;
	animation: rotatee 2.0s infinite linear;
}

.dot1, .dot2 {
	width: 60%;
	height: 60%;
	display: inline-block;
	position: absolute;
	top: 0;
	border-radius: 100%;
	-webkit-animation: bouncee 2.0s infinite ease-in-out;
	animation: bouncee 2.0s infinite ease-in-out;
	background-color: #dc0e17;
}

.dot2 {
	top: auto;
	bottom: 0px;
	-webkit-animation-delay: -1.0s;
	animation-delay: -1.0s;
}
@-webkit-keyframes rotatee { 100% { -webkit-transform: rotate(360deg) }}
@keyframes rotatee {
	100% {
		transform: rotate(360deg);
        -webkit-transform: rotate(360deg);
    }
}

@-webkit-keyframes bouncee {
	0%, 100% { -webkit-transform: scale(0.0) }
	50% { -webkit-transform: scale(1.0) }
}

@keyframes bouncee {
	0%, 100% {
		transform: scale(0.0);
        -webkit-transform: scale(0.0);
    } 50% {
        transform: scale(1.0);
        -webkit-transform: scale(1.0);
      }
}


/* ---------------------------------------------- /*
 * Gallery Page
/* ---------------------------------------------- */
.portfolio-item .portfolio-links{
	text-align: center;
}


/* ---------------------------------------------- /*
 * Contact Page
/* ---------------------------------------------- */

.btn-primary.disabled, .btn-primary[disabled], fieldset[disabled] .btn-primary, .btn-primary.disabled:hover, .btn-primary[disabled]:hover, 
fieldset[disabled] .btn-primary:hover, .btn-primary.disabled:focus, .btn-primary[disabled]:focus, fieldset[disabled] .btn-primary:focus, 
.btn-primary.disabled.focus, .btn-primary[disabled].focus, fieldset[disabled] .btn-primary.focus, .btn-primary.disabled:active, 
.btn-primary[disabled]:active, fieldset[disabled] .btn-primary:active, .btn-primary.disabled.active, .btn-primary[disabled].active, 
fieldset[disabled] .btn-primary.active {
    background-color: #d9534f;
    border: none;
}
.my-contact i.fa{
	color: rgba(128, 0, 0, 1);
}
.extra-margin-bottom{
	margin-bottom: 40px;
}

#exTab2 .nav-tabs {
	padding: 0px;
	margin-bottom: -6px!important;
}

#exTab2 .nav-tabs li a{
	background-color: #6d0202!important;
	border-radius: 10px 10px 0px 0px;
}

#exTab2 .nav-tabs li a:hover, #exTab2 .nav-tabs li a:focus{
	color: #ff83b6!important;
}

#exTab2 .nav-tabs li.active a{
	background-color: white!important;
	color: #ff83b6!important;
	border-left: 1px solid #ddd;
	border-right: 1px solid #ddd;
	border-top: 3px solid #6d0202!important;
	border-radius: 10px 10px 0px 0px;
}

#exTab2 .tab-content {
	border: 1px solid #ddd;
	padding: 16px;
	margin-top: -2px!important;
	border-radius: 0px 10px 10px 10px;
}

#exTab2 .tab-content h1, #exTab2 .tab-content h2, #exTab2 .tab-content h3, #exTab2 .tab-content h4, #exTab2 .tab-content h5, #exTab2 .tab-content h6{
	color: #202020;
}

#exTab2 .tab-content p{
	color: #6d6d6d;
}

.name-handwriting{
	font-weight: bold;
	font-family: "Brush Script MT", cursive;
}

.activities-row{
	padding: 0 30px;
}
/* Extra small devices (phones, less than 768px) */
@media (max-width : 766px) {
/*Homepage*/

.content-wrapper {
	top: 0;
	margin-bottom: 60px;
}

.intro-wrapper {
	background: #fff;
}



/*less padding for extra small devices*/
.intro-wrapper,
.service-wrapper,
.advantages-wrapper,
.handover-wrapper,
.testimonial-wrapper,
.trusted-client-wrapper,
.subscription-wrapper,
.support-wrapper,
.about-us-wrapper,
.team-wrapper,
.job-page-wrapper,
.faq-wrapper,
.contact-us-wrapper {
	padding: 60px 20px;
}

/*advantages-wrapper*/
.experiance-tab-content,
.our-progress,
.capability-tab-content,
.handover-work-thumb {
	margin-bottom: 30px;
}

/*service-wrapper*/
.media-left, 
.media-right, 
.media-body {
	display: block;
	margin-bottom: 20px;
}
/*Handover-wrapper*/
.handover-work-thumb {
	margin-bottom: 30px;
}
.handover-wrapper .carousel-indicators {
	margin-left: inherit;
	width: 100%;
}

/*testimonial-wrapper*/
.testimonial-wrapper .carousel-indicators {
	right: 0;
	left: inherit;
	bottom: 20px;
	width: 100%;
}
.testimonial-wrapper .client-testimonial {
	padding: 0 0 0 50px;
	font-size: 16px;
	line-height: 30px;

}
/*footer-wrapper*/
.social-link {
	margin-bottom: 60px;
}

/*support-wrapper*/
.support-wrapper a.btn {
	padding: 14px 12px;
}


/*About Us Page*/
.about-us-slider-wrapper {
	padding: 0 20px;
}
.about-us-slider-wrapper .carousel-control.left {
	left: 80%;
}
.about-us-slider-wrapper .carousel-control.right {
	right: -22px;
}

.download-box-wrapper {
	padding: 60px 30px;
}
.download-box ul li {
	width: 100%;
	margin-bottom: 15px;
}


/*Blog Page*/
.inner-content {
	padding: 60px 20px;
}


.pagination-wrap {
	margin-bottom: 40px;
}

/*Blog Single Page*/
.comments-wrapper .media-left, 
.comments-wrapper .media-right, 
.comments-wrapper .media-body {
	display: block;
}

.comments-wrapper form {
	margin-bottom: 40px;
}


/*Contact Page*/
.input-group.text-area {
	margin-left: inherit;
}


/*Typograpgy Page*/
.typography-page-wrapper {
	padding: 60px 20px;
}
.typography-page-wrapper .button-style,
.typography-page-wrapper .tab-style {
	margin-bottom: 30px;
}


}

/* Landscape Mobile */
@media only screen and (min-width : 480px) and (max-width : 767px) {

/*service-wrapper*/
.media-left, 
.media-right, 
.media-body {
	display: table-cell;
	margin-bottom: 0;
}


/*About Us Page*/
.about-us-slider-wrapper .carousel-control.left {
	left: 84%;
}
.about-us-slider-wrapper .carousel-control.right {
	right: 0;
}
.download-box-wrapper {
	padding: 60px;
}



/*Blog Single Page*/
.comments-wrapper .media-left, 
.comments-wrapper .media-right, 
.comments-wrapper .media-body {
	display: block;
}


}


/* Small devices (tablets, 768px and up) */
@media (min-width : 768px) and (max-width : 991px) {

/*Homepage*/

.intro-wrapper {
	background: #fff;
}


.our-progress {
	display: block;
}

.our-progress,
.capability-tab-content,
.handover-work-thumb {
	margin-bottom: 30px;
}

.handover-wrapper .carousel-indicators {
	margin-left: inherit;
	width: 100%;
}

/*testimonial-wrapper*/
.testimonial-wrapper .carousel-indicators {
	right: 0;
	left: inherit;
	bottom: 20px;
	width: 100%;
}
.testimonial-wrapper .client-testimonial {
	padding: 0 0 0 50px;
	font-size: 16px;
	line-height: 30px;

}

/*footer-wrapper*/
.social-link {
	margin-bottom: 60px;
}



/*About Us Page*/
.about-us-slider-wrapper {
	padding: 0 60px;
}
.about-us-slider-wrapper .carousel-control.left {
	left: 88%;
}
.about-us-slider-wrapper .carousel-control.right {
	right: 0;
}


/*Blog Single Page*/
.comments-wrapper .media-left, 
.comments-wrapper .media-right, 
.comments-wrapper .media-body {
	display: block;
}

/*Contact Page*/
.input-group.text-area {
	margin-left: inherit;
}



/*Typograpgy Page*/
.typography-page-wrapper .button-style,
.typography-page-wrapper .tab-style {
	margin-bottom: 30px;
}

}



/* Medium devices (desktops, 992px and up) */
@media (min-width : 992px) and (max-width : 1199px) {

/*Homepage*/
/*testimonial-wrapper*/
.testimonial-wrapper .carousel-indicators {
	right: 0;
	left: inherit;
	bottom: 20px;
	width: 100%;
}
.testimonial-wrapper .client-testimonial {
	padding: 20px 0 0 50px;

}


/*About Us Page*/
.about-us-slider-wrapper .carousel-control.left {
	left: 45%;
}
.about-us-slider-wrapper .carousel-control.right {
	right: 48%;
}


/*Four Column Portfolio Page*/
.four-column .portfolio-item {
    min-height: 120px;
}

.download-box ul li a {
	font-size: 18px;
}



}


/* Large devices (large desktops, 1200px and up) */
@media (min-width : 1200px) and (max-width : 1280px) {


}

