@charset "utf-8";
/* CSS Document */

@-webkit-keyframes bounce {
  from,
  20%,
  53%,
  80%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  40%,
  43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
  }

  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
  }

  90% {
    -webkit-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0);
  }
}

@keyframes bounce {
  from,
  20%,
  53%,
  80%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  40%,
  43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
  }

  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
  }

  90% {
    -webkit-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0);
  }
}

.bounce {
  -webkit-animation-name: bounce;
  animation-name: bounce;
  -webkit-transform-origin: center bottom;
  transform-origin: center bottom;
}

@-webkit-keyframes flash {
  from,
  50%,
  to {
    opacity: 1;
  }

  25%,
  75% {
    opacity: 0;
  }
}

@keyframes flash {
  from,
  50%,
  to {
    opacity: 1;
  }

  25%,
  75% {
    opacity: 0;
  }
}

.flash {
  -webkit-animation-name: flash;
  animation-name: flash;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-webkit-keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

.pulse {
  -webkit-animation-name: pulse;
  animation-name: pulse;
}

@-webkit-keyframes rubberBand {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }

  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }

  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }

  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }

  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@keyframes rubberBand {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }

  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }

  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }

  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }

  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

.rubberBand {
  -webkit-animation-name: rubberBand;
  animation-name: rubberBand;
}

@-webkit-keyframes shake {
  from,
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  10%,
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }

  20%,
  40%,
  60%,
  80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}

@keyframes shake {
  from,
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  10%,
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }

  20%,
  40%,
  60%,
  80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}

.shake {
  -webkit-animation-name: shake;
  animation-name: shake;
}

@-webkit-keyframes headShake {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  6.5% {
    -webkit-transform: translateX(-6px) rotateY(-9deg);
    transform: translateX(-6px) rotateY(-9deg);
  }

  18.5% {
    -webkit-transform: translateX(5px) rotateY(7deg);
    transform: translateX(5px) rotateY(7deg);
  }

  31.5% {
    -webkit-transform: translateX(-3px) rotateY(-5deg);
    transform: translateX(-3px) rotateY(-5deg);
  }

  43.5% {
    -webkit-transform: translateX(2px) rotateY(3deg);
    transform: translateX(2px) rotateY(3deg);
  }

  50% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes headShake {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  6.5% {
    -webkit-transform: translateX(-6px) rotateY(-9deg);
    transform: translateX(-6px) rotateY(-9deg);
  }

  18.5% {
    -webkit-transform: translateX(5px) rotateY(7deg);
    transform: translateX(5px) rotateY(7deg);
  }

  31.5% {
    -webkit-transform: translateX(-3px) rotateY(-5deg);
    transform: translateX(-3px) rotateY(-5deg);
  }

  43.5% {
    -webkit-transform: translateX(2px) rotateY(3deg);
    transform: translateX(2px) rotateY(3deg);
  }

  50% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

.headShake {
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-name: headShake;
  animation-name: headShake;
}

@-webkit-keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
  }

  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg);
  }

  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }

  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg);
  }

  to {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}

@keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
  }

  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg);
  }

  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }

  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg);
  }

  to {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}

.swing {
  -webkit-transform-origin: top center;
  transform-origin: top center;
  -webkit-animation-name: swing;
  animation-name: swing;
}

@-webkit-keyframes tada {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  10%,
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }

  30%,
  50%,
  70%,
  90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }

  40%,
  60%,
  80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@keyframes tada {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  10%,
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }

  30%,
  50%,
  70%,
  90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }

  40%,
  60%,
  80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

.tada {
  -webkit-animation-name: tada;
  animation-name: tada;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-webkit-keyframes wobble {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }

  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }

  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }

  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }

  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes wobble {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }

  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }

  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }

  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }

  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.wobble {
  -webkit-animation-name: wobble;
  animation-name: wobble;
}

@-webkit-keyframes jello {
  from,
  11.1%,
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }

  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg);
  }

  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }

  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }

  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }

  77.7% {
    -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }

  88.8% {
    -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}

@keyframes jello {
  from,
  11.1%,
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }

  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg);
  }

  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }

  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }

  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }

  77.7% {
    -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }

  88.8% {
    -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}

.jello {
  -webkit-animation-name: jello;
  animation-name: jello;
  -webkit-transform-origin: center;
  transform-origin: center;
}

@-webkit-keyframes heartBeat {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  14% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }

  28% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  42% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }

  70% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes heartBeat {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  14% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }

  28% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  42% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }

  70% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

.heartBeat {
  -webkit-animation-name: heartBeat;
  animation-name: heartBeat;
  -webkit-animation-duration: 1.3s;
  animation-duration: 1.3s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
}

@-webkit-keyframes bounceIn {
  from,
  20%,
  40%,
  60%,
  80%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }

  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }

  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }

  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }

  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@keyframes bounceIn {
  from,
  20%,
  40%,
  60%,
  80%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }

  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }

  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }

  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }

  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

.bounceIn {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-name: bounceIn;
  animation-name: bounceIn;
}

@-webkit-keyframes bounceInDown {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0);
  }

  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }

  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes bounceInDown {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0);
  }

  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }

  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.bounceInDown {
  -webkit-animation-name: bounceInDown;
  animation-name: bounceInDown;
}

@-webkit-keyframes bounceInLeft {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
    transform: translate3d(-3000px, 0, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0);
  }

  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }

  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes bounceInLeft {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
    transform: translate3d(-3000px, 0, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0);
  }

  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }

  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.bounceInLeft {
  -webkit-animation-name: bounceInLeft;
  animation-name: bounceInLeft;
}

@-webkit-keyframes bounceInRight {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  from {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
    transform: translate3d(3000px, 0, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
    transform: translate3d(-25px, 0, 0);
  }

  75% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }

  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
    transform: translate3d(-5px, 0, 0);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes bounceInRight {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  from {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
    transform: translate3d(3000px, 0, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
    transform: translate3d(-25px, 0, 0);
  }

  75% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }

  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
    transform: translate3d(-5px, 0, 0);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.bounceInRight {
  -webkit-animation-name: bounceInRight;
  animation-name: bounceInRight;
}

@-webkit-keyframes bounceInUp {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
    transform: translate3d(0, 3000px, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }

  75% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }

  90% {
    -webkit-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes bounceInUp {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
    transform: translate3d(0, 3000px, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }

  75% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }

  90% {
    -webkit-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.bounceInUp {
  -webkit-animation-name: bounceInUp;
  animation-name: bounceInUp;
}

@-webkit-keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }

  50%,
  55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }

  to {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
}

@keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }

  50%,
  55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }

  to {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
}

.bounceOut {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-name: bounceOut;
  animation-name: bounceOut;
}

@-webkit-keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }

  40%,
  45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}

@keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }

  40%,
  45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}

.bounceOutDown {
  -webkit-animation-name: bounceOutDown;
  animation-name: bounceOutDown;
}

@-webkit-keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0);
    transform: translate3d(20px, 0, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}

@keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0);
    transform: translate3d(20px, 0, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}

.bounceOutLeft {
  -webkit-animation-name: bounceOutLeft;
  animation-name: bounceOutLeft;
}

@-webkit-keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0);
    transform: translate3d(-20px, 0, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}

@keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0);
    transform: translate3d(-20px, 0, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}

.bounceOutRight {
  -webkit-animation-name: bounceOutRight;
  animation-name: bounceOutRight;
}

@-webkit-keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }

  40%,
  45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}

@keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }

  40%,
  45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}

.bounceOutUp {
  -webkit-animation-name: bounceOutUp;
  animation-name: bounceOutUp;
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

@-webkit-keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}

@-webkit-keyframes fadeInDownBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInDownBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.fadeInDownBig {
  -webkit-animation-name: fadeInDownBig;
  animation-name: fadeInDownBig;
}

@-webkit-keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}

@-webkit-keyframes fadeInLeftBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInLeftBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.fadeInLeftBig {
  -webkit-animation-name: fadeInLeftBig;
  animation-name: fadeInLeftBig;
}

@-webkit-keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}

@-webkit-keyframes fadeInRightBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInRightBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.fadeInRightBig {
  -webkit-animation-name: fadeInRightBig;
  animation-name: fadeInRightBig;
}

@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

@-webkit-keyframes fadeInUpBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInUpBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.fadeInUpBig {
  -webkit-animation-name: fadeInUpBig;
  animation-name: fadeInUpBig;
}

@-webkit-keyframes fadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

.fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}

@-webkit-keyframes fadeOutDown {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}

@keyframes fadeOutDown {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}

.fadeOutDown {
  -webkit-animation-name: fadeOutDown;
  animation-name: fadeOutDown;
}

@-webkit-keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}

@keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}

.fadeOutDownBig {
  -webkit-animation-name: fadeOutDownBig;
  animation-name: fadeOutDownBig;
}

@-webkit-keyframes fadeOutLeft {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}

@keyframes fadeOutLeft {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}

.fadeOutLeft {
  -webkit-animation-name: fadeOutLeft;
  animation-name: fadeOutLeft;
}

@-webkit-keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}

@keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}

.fadeOutLeftBig {
  -webkit-animation-name: fadeOutLeftBig;
  animation-name: fadeOutLeftBig;
}

@-webkit-keyframes fadeOutRight {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}

@keyframes fadeOutRight {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}

.fadeOutRight {
  -webkit-animation-name: fadeOutRight;
  animation-name: fadeOutRight;
}

@-webkit-keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}

@keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}

.fadeOutRightBig {
  -webkit-animation-name: fadeOutRightBig;
  animation-name: fadeOutRightBig;
}

@-webkit-keyframes fadeOutUp {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}

@keyframes fadeOutUp {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}

.fadeOutUp {
  -webkit-animation-name: fadeOutUp;
  animation-name: fadeOutUp;
}

@-webkit-keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}

@keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}

.fadeOutUpBig {
  -webkit-animation-name: fadeOutUpBig;
  animation-name: fadeOutUpBig;
}

@-webkit-keyframes flip {
  from {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0)
    rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  40% {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px)
    rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) scale3d(1, 1, 1) 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) scale3d(1, 1, 1) translate3d(0, 0, 150px)
    rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px)
    rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0)
    rotate3d(0, 1, 0, 0deg);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0)
    rotate3d(0, 1, 0, 0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  to {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0)
    rotate3d(0, 1, 0, 0deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}

@keyframes flip {
  from {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0)
    rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  40% {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px)
    rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) scale3d(1, 1, 1) 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) scale3d(1, 1, 1) translate3d(0, 0, 150px)
    rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px)
    rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0)
    rotate3d(0, 1, 0, 0deg);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0)
    rotate3d(0, 1, 0, 0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  to {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0)
    rotate3d(0, 1, 0, 0deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}

.animated.flip {
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
  -webkit-animation-name: flip;
  animation-name: flip;
}

@-webkit-keyframes flipInX {
  from {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }

  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}

@keyframes flipInX {
  from {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }

  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}

.flipInX {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInX;
  animation-name: flipInX;
}

@-webkit-keyframes flipInY {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }

  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}

@keyframes flipInY {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }

  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}

.flipInY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInY;
  animation-name: flipInY;
}

@-webkit-keyframes flipOutX {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }

  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }

  to {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}

@keyframes flipOutX {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }

  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }

  to {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}

.flipOutX {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-name: flipOutX;
  animation-name: flipOutX;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
}

@-webkit-keyframes flipOutY {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }

  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }

  to {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}

@keyframes flipOutY {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }

  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }

  to {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}

.flipOutY {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipOutY;
  animation-name: flipOutY;
}

@-webkit-keyframes lightSpeedIn {
  from {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }

  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes lightSpeedIn {
  from {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }

  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.lightSpeedIn {
  -webkit-animation-name: lightSpeedIn;
  animation-name: lightSpeedIn;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}

@-webkit-keyframes lightSpeedOut {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}

@keyframes lightSpeedOut {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}

.lightSpeedOut {
  -webkit-animation-name: lightSpeedOut;
  animation-name: lightSpeedOut;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
}

@-webkit-keyframes rotateIn {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }

  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

@keyframes rotateIn {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }

  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

.rotateIn {
  -webkit-animation-name: rotateIn;
  animation-name: rotateIn;
}

@-webkit-keyframes rotateInDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }

  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

@keyframes rotateInDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }

  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

.rotateInDownLeft {
  -webkit-animation-name: rotateInDownLeft;
  animation-name: rotateInDownLeft;
}

@-webkit-keyframes rotateInDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }

  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

@keyframes rotateInDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }

  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

.rotateInDownRight {
  -webkit-animation-name: rotateInDownRight;
  animation-name: rotateInDownRight;
}

@-webkit-keyframes rotateInUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }

  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

@keyframes rotateInUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }

  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

.rotateInUpLeft {
  -webkit-animation-name: rotateInUpLeft;
  animation-name: rotateInUpLeft;
}

@-webkit-keyframes rotateInUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }

  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

@keyframes rotateInUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }

  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

.rotateInUpRight {
  -webkit-animation-name: rotateInUpRight;
  animation-name: rotateInUpRight;
}

@-webkit-keyframes rotateOut {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    opacity: 1;
  }

  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}

@keyframes rotateOut {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    opacity: 1;
  }

  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}

.rotateOut {
  -webkit-animation-name: rotateOut;
  animation-name: rotateOut;
}

@-webkit-keyframes rotateOutDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }

  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}

@keyframes rotateOutDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }

  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}

.rotateOutDownLeft {
  -webkit-animation-name: rotateOutDownLeft;
  animation-name: rotateOutDownLeft;
}

@-webkit-keyframes rotateOutDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }

  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}

@keyframes rotateOutDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }

  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}

.rotateOutDownRight {
  -webkit-animation-name: rotateOutDownRight;
  animation-name: rotateOutDownRight;
}

@-webkit-keyframes rotateOutUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }

  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}

@keyframes rotateOutUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }

  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}

.rotateOutUpLeft {
  -webkit-animation-name: rotateOutUpLeft;
  animation-name: rotateOutUpLeft;
}

@-webkit-keyframes rotateOutUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }

  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}

@keyframes rotateOutUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }

  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}

.rotateOutUpRight {
  -webkit-animation-name: rotateOutUpRight;
  animation-name: rotateOutUpRight;
}

@-webkit-keyframes hinge {
  0% {
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  20%,
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 80deg);
    transform: rotate3d(0, 0, 1, 80deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  40%,
  80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
    transform: rotate3d(0, 0, 1, 60deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }

  to {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}

@keyframes hinge {
  0% {
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  20%,
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 80deg);
    transform: rotate3d(0, 0, 1, 80deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  40%,
  80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
    transform: rotate3d(0, 0, 1, 60deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }

  to {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}

.hinge {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-name: hinge;
  animation-name: hinge;
}

@-webkit-keyframes jackInTheBox {
  from {
    opacity: 0;
    -webkit-transform: scale(0.1) rotate(30deg);
    transform: scale(0.1) rotate(30deg);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
  }

  50% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }

  70% {
    -webkit-transform: rotate(3deg);
    transform: rotate(3deg);
  }

  to {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes jackInTheBox {
  from {
    opacity: 0;
    -webkit-transform: scale(0.1) rotate(30deg);
    transform: scale(0.1) rotate(30deg);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
  }

  50% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }

  70% {
    -webkit-transform: rotate(3deg);
    transform: rotate(3deg);
  }

  to {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

.jackInTheBox {
  -webkit-animation-name: jackInTheBox;
  animation-name: jackInTheBox;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-webkit-keyframes rollIn {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes rollIn {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.rollIn {
  -webkit-animation-name: rollIn;
  animation-name: rollIn;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-webkit-keyframes rollOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}

@keyframes rollOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}

.rollOut {
  -webkit-animation-name: rollOut;
  animation-name: rollOut;
}

@-webkit-keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }

  50% {
    opacity: 1;
  }
}

@keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }

  50% {
    opacity: 1;
  }
}

.zoomIn {
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn;
}

@-webkit-keyframes zoomInDown {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

@keyframes zoomInDown {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

.zoomInDown {
  -webkit-animation-name: zoomInDown;
  animation-name: zoomInDown;
}

@-webkit-keyframes zoomInLeft {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

@keyframes zoomInLeft {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

.zoomInLeft {
  -webkit-animation-name: zoomInLeft;
  animation-name: zoomInLeft;
}

@-webkit-keyframes zoomInRight {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

@keyframes zoomInRight {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

.zoomInRight {
  -webkit-animation-name: zoomInRight;
  animation-name: zoomInRight;
}

@-webkit-keyframes zoomInUp {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

@keyframes zoomInUp {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

.zoomInUp {
  -webkit-animation-name: zoomInUp;
  animation-name: zoomInUp;
}

@-webkit-keyframes zoomOut {
  from {
    opacity: 1;
  }

  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }

  to {
    opacity: 0;
  }
}

@keyframes zoomOut {
  from {
    opacity: 1;
  }

  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }

  to {
    opacity: 0;
  }
}

.zoomOut {
  -webkit-animation-name: zoomOut;
  animation-name: zoomOut;
}

@-webkit-keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

@keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

.zoomOutDown {
  -webkit-animation-name: zoomOutDown;
  animation-name: zoomOutDown;
}

@-webkit-keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    -webkit-transform-origin: left center;
    transform-origin: left center;
  }
}

@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    -webkit-transform-origin: left center;
    transform-origin: left center;
  }
}

.zoomOutLeft {
  -webkit-animation-name: zoomOutLeft;
  animation-name: zoomOutLeft;
}

@-webkit-keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
    transform: scale(0.1) translate3d(2000px, 0, 0);
    -webkit-transform-origin: right center;
    transform-origin: right center;
  }
}

@keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
    transform: scale(0.1) translate3d(2000px, 0, 0);
    -webkit-transform-origin: right center;
    transform-origin: right center;
  }
}

.zoomOutRight {
  -webkit-animation-name: zoomOutRight;
  animation-name: zoomOutRight;
}

@-webkit-keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

@keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

.zoomOutUp {
  -webkit-animation-name: zoomOutUp;
  animation-name: zoomOutUp;
}

@-webkit-keyframes slideInDown {
  from {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes slideInDown {
  from {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.slideInDown {
  -webkit-animation-name: slideInDown;
  animation-name: slideInDown;
}

@-webkit-keyframes slideInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes slideInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.slideInLeft {
  -webkit-animation-name: slideInLeft;
  animation-name: slideInLeft;
}

@-webkit-keyframes slideInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes slideInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.slideInRight {
  -webkit-animation-name: slideInRight;
  animation-name: slideInRight;
}

@-webkit-keyframes slideInUp {
  from {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes slideInUp {
  from {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.slideInUp {
  -webkit-animation-name: slideInUp;
  animation-name: slideInUp;
}

@-webkit-keyframes slideOutDown {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}

@keyframes slideOutDown {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}

.slideOutDown {
  -webkit-animation-name: slideOutDown;
  animation-name: slideOutDown;
}

@-webkit-keyframes slideOutLeft {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}

@keyframes slideOutLeft {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}

.slideOutLeft {
  -webkit-animation-name: slideOutLeft;
  animation-name: slideOutLeft;
}

@-webkit-keyframes slideOutRight {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}

@keyframes slideOutRight {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}

.slideOutRight {
  -webkit-animation-name: slideOutRight;
  animation-name: slideOutRight;
}

@-webkit-keyframes slideOutUp {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}

@keyframes slideOutUp {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}

.slideOutUp {
  -webkit-animation-name: slideOutUp;
  animation-name: slideOutUp;
}

.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.delay-05s {
  -webkit-animation-delay: .5s;
  animation-delay: .5s;
}

.animated.delay-1s {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}

.animated.delay-2s {
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
}

.animated.delay-3s {
  -webkit-animation-delay: 3s;
  animation-delay: 3s;
}

.animated.delay-4s {
  -webkit-animation-delay: 4s;
  animation-delay: 4s;
}

.animated.delay-5s {
  -webkit-animation-delay: 5s;
  animation-delay: 5s;
}

.animated.fast {
  -webkit-animation-duration: 800ms;
  animation-duration: 800ms;
}

.animated.faster {
  -webkit-animation-duration: 500ms;
  animation-duration: 500ms;
}

.animated.slow {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
}

.animated.slower {
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
}

@media (prefers-reduced-motion) {
  .animated {
    -webkit-animation: unset !important;
    animation: unset !important;
    -webkit-transition: none !important;
    transition: none !important;
  }
}
.wrapper{
  width:100%;

  margin:30px auto;
}
.st-accordion{
  width:100%;
  min-width:270px;
  margin: 0 auto;
}
.st-accordion ul li{
  height: 40px;
  border-bottom: 1px solid #c7deef;
  border-top:1px solid #fff;
  overflow: hidden;
}
.st-accordion ul li:first-child{
  border-top:none;
}
.st-accordion ul li > a{
  font-size: 120%;
  text-transform: uppercase;
  display: block;
  position: relative;
  line-height: 40px;
  outline:none;
  -webkit-transition:  color 0.2s ease-in-out;
  -moz-transition:  color 0.2s ease-in-out;
  -o-transition:  color 0.2s ease-in-out;
  -ms-transition:  color 0.2s ease-in-out;
  transition:  color 0.2s ease-in-out;
  color:#2790B0;
}
.st-accordion ul li > a span{
  background: transparent url(../img/down.png) no-repeat center center;
  text-indent:-9000px;
  width: 26px;
  height: 14px;
  position: absolute;
  top: 50%;
  right: -26px;
  margin-top: -7px;
  opacity:0;
  -webkit-transition:  all 0.2s ease-in-out;
  -moz-transition:  all 0.2s ease-in-out;
  -o-transition:  all 0.2s ease-in-out;
  -ms-transition:  all 0.2s ease-in-out;
  transition:  all 0.2s ease-in-out;
}
.st-accordion ul li > a:hover{
  color: #003060;
  text-decoration:none;
}
.st-accordion ul li > a:hover span{
  opacity:1;
  right: 10px;
}
.st-accordion ul li.st-open > a{
  color: #1693eb;
}
.st-accordion ul li.st-open > a span{
  -webkit-transform:rotate(180deg);
  -moz-transform:rotate(180deg);
  transform:rotate(180deg);
  right:10px;
  opacity:1;
}
.st-content{
  padding: 5px 0px 30px 0px;
}
.st-content p{
  font-size: 100%;


}
.st-content img{
  width:125px;
  border-right:1px solid #fff;
  border-bottom:1px solid #fff;
}
@media screen and (max-width: 320px){
  .st-accordion ul li > a{
    font-size:36px;
  }
}

/*
"VERSO" v 1.0
premium template
by http://www.sitediscount.ru
02.2013
*/


/*

###################### -=[ TABLE OF CONTENTS ]=- ##########################

        GLOBAL .........................45
        HEADER .........................63
        TOP BANNER INDEX & 404 page ....65
        PAGE HEADER ....................96
        BREADCRUMP.....................138
        NEADHEAD.......................164
        PORTFOLIO......................284
        SOCIAL LINIKS ON TOP...........372
        NAVIGATION MENU & DROPDOWNS....431
        MARKETING SECTION..............942
        TOP SLIDER....................1051
        PORTFOLIO & CLIENTS ROTATOR...1101
        FEATURES <P>..................1177
        BLOG & BLOG CATEGORIES........1196
        PINTEREST STYLE BLOG..........1655
        PROJECTS ITEMS,FILTERS,
        & ISOTOPE ....................1826
        SINGL PROJECT.................1990
        RESPONSIVE VIDEO..............2022
        CUSTOM FONT SIZES.............2039
        SCROLL TO TOP.................2092
        CUSTOM BUTTON ................2124
        CUSTOM LINES..................2193
        CUSTOM TITLES.................2312
        CUSTOM WORD COLORS............2336
        SITEMAP.......................2348
        404 page......................2395
        FOOTER .......................2432
        RESPONSIVE MAP................2523
        CUSTOM STYLE <hr/> ...........2554
        @MEDIA .......................2595
*/


/***************************** GLOBAL ********************************/

body {
  font-family: 'Microsoft JhengHei', sans-serif;
}

.main-wrapper {
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
  min-height: 100%;
  min-width: 100%;
  overflow: hidden;
  width: 100%;
}


/************************** HEADER *************************************/


/************** TOP BANNER INDEX & 404 ************/

.action-banner-bg {
  background: #6393C1 url(../img/banner1.jpg) top center repeat;
  background-size: contain;
  box-shadow: 0px 5px 12px rgba(50, 50, 50, 0.35) inset;
  height: 100%;
  left: 0;
  -moz-box-shadow: 0px 5px 12px rgba(50, 50, 50, 0.35) inset;
  position: absolute;
  top: 0;
  -webkit-box-shadow: 0px 5px 12px rgba(50, 50, 50, 0.35) inset;
  width: 100%;
  z-index: -1000;
}

.action-banner-bg-top {
  background: url(../img/pixel.png) top left repeat;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  z-index: -999;
}

.action-banner-bg img {
  height: 100%;
  width: 100%;
}


/********************************* PAGE HEADER *************************************/

.page-header {
  background: #6393C1 url(../img/banner2-2.jpg) center 52% no-repeat;
  background-size: 100%;
  margin: 0px 0 30px;
  margin-left: auto;
  margin-right: auto;

  padding-left: 20px;
}

.page-header h1 {
  color: #fff;
  display: block;
  text-shadow: 0 1px 4px #000000;
}

.page-header h1 small,
.page-header h2 small,
.page-header h3 small,
.page-header h4 small,
.page-header h5 small,
.page-header h6 small {
  color: #fff;
}

.pixel-bg {
  background: transparent url(../img/pixel.png) top left repeat;
}

.shine {
  background: url(../img/header-shine.png) top left no-repeat;
  display: block;
  height: 100%;
  padding-bottom: 20px;
  padding-top: 120px;
  width: 100%;
}

.the-icons li {
  display: block;
  float: none;
  width: 100%;
}


/********************************* END PAGE HEADER *************************************/


/********************************** BREADCRUMP ******************************************/

.breadcrumb {
  background: #6393C1;
  border-bottom: 1px dotted #fff;
  border-radius: 0px;
  border-top: 1px dotted #fff;
  color: #fff;
  display: inline-block;
  font-size: 90%;
  list-style: none;
  margin: 5px 0 0px;
  -moz-border-radius: 0px;
  padding: 3px 10px 3px 10px;
  text-shadow: none;
  -webkit-border-radius: 0px;
}

.breadcrumb a,
.breadcrumb li.active {
  color: #fff;
  text-shadow: 0 1px 0 #333;
}


/*****************************   END  BREADCRUMP ******************************************/


/************************ NEADHEAD (like jumbotron masthead in bootstrap) ***********/

.needhead {
  color: #fff;
  height: 650px;
  margin-bottom: 0;
  margin-top: -40px;
  overflow: hidden;
  padding: 40px 0 0px;
  text-align: left;
}

.needhead h1 {
  background: rgba(0, 0, 0, 0.5);
  border-left: 4px solid #6393C1;
  color: #fff;
  font-size: 3em;
  line-height: 1.1em;
  margin: 50px 0px 0px 40px;
  padding: 5px 10px;
  text-shadow: 0 1px 4px #000000;
  text-transform: uppercase;
}

.needhead h1 span.top {
  display: inline-block;
  padding: 5px 10px 5px;
}

.needhead h1 span.bottom {
  display: inline-block;
  margin-top: 5px;
  padding: 5px 10px;
}

.needhead p {
  background: rgba(0, 0, 0, 0.5);
  border-left: 4px solid #6393C1;
  color: #fff;
  display: inline-block;
  font-size: 140%;
  font-weight: normal;
  line-height: 1.4em;
  margin: 3px 0px 0px 40px;
  padding: 5px 10px;
  text-shadow: 0 1px 1px #000000;
}

.banner-to-right {
  text-align: right;
}

.needhead p.medium {
  font-size: 120%;
}

.needhead span.link-more {
  color: #fff;
  display: inline-block;
  margin: 5px 0px 0px 40px;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  -transition: 0.3s;
  -webkit-transition: 0.3s;
}

.needhead span.link-more a,
.needhead span.link-more a:hover {
  color: #fff;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  text-decoration: none;
  text-shadow: 0 1px 1px #000000;
  transition: 0.3s;
  -webkit-transition: 0.3s;
}

.needhead span.link-more a span.main-link {
  background: rgba(0, 0, 0, 0.8);
  border: 4px solid #fff;
  box-sizing: border-box;
  display: inline-block;
  -moz-box-sizing: border-box;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  -webkit-transition: 0.3s;
  padding: 15px;
  transition: 0.3s;
}

.needhead span.link-more a span.arrow {
  background: rgba(0, 0, 0, 0.8);
  border: 4px solid #fff;
  color: #fff;
  display: inline-block;
  margin: 0px 0px 0px 0px;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  padding: 15px;
  transition: 0.3s;
  -webkit-transition: 0.3s;
}

.needhead span.link-more:hover a span.arrow,
.needhead span.link-more:hover a span.main-link {
  background: rgba(0, 0, 0, 0.9);
  box-sizing: border-box;
  moz-box-sizing: border-box;
}

.needhead span.link-more:hover a span.main-link {
  box-sizing: border-box;
  moz-box-sizing: border-box;
}




/******************************** PORTFOLIO *****************************************/

.margin-left .thumbnail {
  margin-left: 0px;
}

.thumbnail {
  border: none;
  border-radius: 0px;
  box-shadow: none;
  display: block;
  line-height: 0px;
  -moz-border-radius: 0px;
  -moz-box-shadow: none;
  -moz-transition: all 0.2s ease-in-out;
  o-transition: all 0.2s ease-in-out;
  padding: 0px;
  transition: all 0.2s ease-in-out;
  -webkit-border-radius: 0px;
  -webkit-box-shadow: none;
  -webkit-transition: all 0.2s ease-in-out;
}

.caption {
  background: #f2f2f2;
}

.transit-to-top {
  height: 60px;
  overflow: hidden;
  width: 100%;
}

.transit-to-top h4,
.transit-to-top h3 {
  font-size: 100%;
  moz-transition: all 0.3s ease-in-out;
  o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
}

.p-title {
  display: block;
  height: 40px;
}

.thumbnail:hover h4,
.thumbnail:hover h3 {
  margin-top: -50px;
}

p.caption-descr {
  font-size: 80%;
  line-height: 13px;
  text-align: justify;
  word-wrap: break-word;
}

.thumbnail:hover p.caption-descr a {
  text-decoration: none;
}

p.caption-descr a {
  float: left;
  font-size: 80%;
}

#portfolio p.caption-descr a {
  float: left;
  font-size: 100%;
}

.thumbnails li:first-child {
  margin-left: 0px;
}

.folio-title {
  background: #fafafa;
  border-bottom: 1px solid #6393C1;
  display: inline-block;
  font-size: 140%;
  line-height: 34px;
  margin: 0px 0px 20px 0px;
  padding: 10px;
  text-transform: uppercase;
}


/*********************** END PORTFOLIO ******************************************/


/************************ SOCIAL LINIKS ON TOP ************************/

.top-soc {
  background: rgba(250, 250, 250, 0.2);
  display: block;
  left: 0px;
  position: absolute;
  text-align: left;
  top: 140px;
  width: 100%;
  z-index: 900;
}

.social-top {
  display: block;
  float: left;
  margin: 0px;
  margin-left: 10px;
  padding: 0px;
  padding-left: 30px;
  padding-right: 30px;
}

.social-top li {
  background: rgba(0, 0, 0, 0.3);
  border-right: #dedede;
  display: block;
  float: left;
  height: 30px;
  list-style: none;
  margin-right: 1px;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  padding-top: 10px;
  text-align: center;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  width: 40px;
}

.social-top li:hover {
  background: #6393C1;
}

.social-top li:first-child {
  border-left: rgba(250, 250, 250, 1);
}

.social-top li a {
  color: #fff;
}

.social-top li a:hover {
  color: #dedede;
  text-decoration: none;
}


/************************ END SOCIAL LINIKS ON TOP ************************/


/****************************** NAVIGATION BAR *********************************/

.navbar-inner {
  /*background: rgba(250, 250, 250, 1);*/
  background: url(../img/headbg.jpg);
  /*background-color: none;
    background-image: none;
    background-repeat: none;
*/    border: none;
  border-radius: 0px;
  box-shadow: none;
  filter: none;
  -moz-border-radius: 0px;
  -moz-box-shadow: none;
  -webkit-border-radius: 0px;
  -webkit-box-shadow: none;
}

.navbar .brand {
  max-height: 60px;
}

.navbar .brand span {
  font-size: 200%;
  padding-top: 30px;
  padding-left: 10px;
  display: inline-block;
  color: #6393C1;
  font-weight: bold;
}

.nav-reaction {
  background: #fff;
  border-top: 4px solid #6393C1;
  box-shadow: 0px 5px 12px rgba(50, 50, 50, 0.35);
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
  min-width: 100%;
  -moz-box-shadow: 0px 5px 12px rgba(50, 50, 50, 0.35);
  position: relative;
  -webkit-box-shadow: 0px 5px 12px rgba(50, 50, 50, 0.35);
  width: 100%;
  z-index: 1000;
}

.da-slide h2 {
  border-left: 4px solid #6393C1;
}

.needhead .da-slide p {
  border-left: 4px solid #6393C1;
}

.navbar .nav {
  display: block!important;
  float: right!important;
  left: 0!important;
  margin: 0px 0px 0 0!important;
  position: relative!important;
}

.navbar .brand img {
  max-height: 70px;
  width: auto;
}

.navbar .nav>li>a {
  background: none;
  float: none;
  font-weight: 600;
  moz-transition: all 0.3s ease-in-out;
  ms-transition: all 0.3s ease-in-out;
  o-transition: all 0.3s ease-in-out;
  padding: 50px 15px 30px 15px;
  text-shadow: none;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
}

.navbar .nav>.active>a,
.navbar .nav>.active>a:hover,
.navbar .nav>.active>a:focus {
  /*background: #6393C1;
    background-color: none;*/
  box-shadow: none;
  -moz-box-shadow: none;
  text-decoration: none;
  -webkit-box-shadow: none;
  background: #6393c1; /* Old browsers */
  background: -moz-linear-gradient(top, #6393c1 0%, #cfe7fa 100%); /* FF3.6-15 */
  background: -webkit-linear-gradient(top, #6393c1 0%,#cfe7fa 100%); /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, #6393c1 0%,#cfe7fa 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#6393c1', endColorstr='#cfe7fa',GradientType=0 );
}

.navbar .nav li.dropdown.open>.dropdown-toggle,
.navbar .nav li.dropdown.active>.dropdown-toggle,
.navbar .nav li.dropdown.open.active>.dropdown-toggle {
  background: none;
  background-color: none;
  color: #6393C1;
}

.nav-reaction .dropdown-menu li {
  width: 100%;
}

.nav-reaction .dropdown-menu.pull-right {
  left: auto;
  right: 0;
}

.nav-reaction .dropdown-menu .divider {
  background-color: #e5e5e5;
  border-bottom: 1px solid #ffffff;
  height: 1px;
  margin: -5px 0 5px;
  margin: 9px 1px;
  overflow: hidden;
  width: 100%;
}

.nav-reaction .dropdown-menu a {
  border-bottom: 1px dotted #dedede;
  /*clear: both;*/
  color: #333;
  /*display: block;*/
  font-weight: normal;
  line-height: 2;
  padding-left: 0px;
  text-align: left;
  text-shadow: none;
  white-space: nowrap;
}

.nav-reaction .dropdown-menu li:hover,
.nav-reaction .dropdown-menu li:focus {
  color: #6393C1;
  text-decoration: none;
}

.nav-reaction .dropdown-menu .active>a,
.nav-reaction .dropdown-menu .active>a:hover {
  background-color: #ffffff;
  color: #232323;
  filter: none;
  text-decoration: none;
}

.nav-reaction .active {}

.nav-reaction .dropdown-menu li:last-child a {
  border-bottom: none;
}

.navbar .nav>li.active>a {
  box-sizing: border-box;
  color: #fff;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
}

.navbar .nav>li>a:hover {
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
}

.nav-pills .sfHover>a {}

.nav-tabs>li>a {
  border: 1px solid transparent;
  border-radius: 4px 4px 0 0;
  line-height: 20px;
  -moz-border-radius: 4px 4px 0 0;
  padding-bottom: 8px;
  padding-top: 8px;
  -webkit-border-radius: 4px 4px 0 0;
}

.nav-tabs>li>a,
.nav-pills>li>a {
  line-height: 14px;
  margin-right: 2px;
  padding-left: 12px;
  padding-right: 12px;
}

.nav-tabs>li>a:hover {
  border-color: #eeeeee #eeeeee #dddddd;
}

.nav-tabs>.active>a,
.nav-tabs>.active>a:hover {
  background-color: none;
  border: 1px solid #ddd;
  border-bottom-color: transparent;
  color: #555555;
  cursor: default;
}

.nav-pills>li>a {
  border-radius: 5px;
  margin-bottom: 2px;
  margin-top: 2px;
  -moz-border-radius: 5px;
  padding-bottom: 8px;
  padding-top: 8px;
  -webkit-border-radius: 5px;
}

.nav-pills>.active>a,
.nav-pills>.active>a:hover {
  background-color: none;
  color: #ffffff;
}

.nav>li>a:hover {
  background-color: none;
  text-decoration: none;
}


.nav-reaction .dropdown-menu {
  background-clip: padding-box;
  background-color: white;
  border-bottom: 4px solid #6393C1;
  border-bottom-width: 2px;
  border-radius: 0px;
  border-right-width: 2px;
  border-top: 4px solid #6393C1;
  box-shadow: 0px -7px 5px rgba(50, 50, 50, 0.33);
  color: #333;
  display: none;
  line-height: 2;
  list-style: none;
  margin: 0;
  min-width: 160px;
  -moz-background-clip: padding;
  -moz-border-radius: 0px;
  -moz-box-shadow: 0px -7px 5px rgba(50, 50, 50, 0.33);
  padding: 0;
  padding: 3px 12px;
  position: absolute;
  right: 0px;
  top: 100%;
  -webkit-background-clip: padding-box;
  -webkit-border-radius: 0px;
  -webkit-box-shadow: 0px -7px 5px rgba(50, 50, 50, 0.33);
  z-index: 1010;
}

.dropdown-menu {
  background-clip: padding-box;
  background-color: white;
  border-bottom: 4px solid #6393C1;
  border-bottom-width: 2px;
  border-radius: 0px;
  border-right-width: 2px;
  border-top: 4px solid #6393C1;
  box-shadow: 0px -7px 5px rgba(50, 50, 50, 0.33);
  color: #333;
  display: none;
  float: left;
  line-height: 2;
  list-style: none;
  margin: 0;
  min-width: 160px;
  -moz-background-clip: padding;
  -moz-border-radius: 0px;
  -moz-box-shadow: 0px -7px 5px rgba(50, 50, 50, 0.33);
  padding: 0;
  padding: 3px 12px;
  position: absolute;
  top: 90%;
  -webkit-background-clip: padding-box;
  -webkit-border-radius: 0px;
  -webkit-box-shadow: 0px -7px 5px rgba(50, 50, 50, 0.33);
  z-index: 1000;
}

.navbar .nav>li>a {
  color: #6393C1;
  font-weight: 400;
  text-shadow: none;
  text-transform: uppercase;
}

.navbar .nav>li>a:hover,
.navbar .nav>li>a:hover,
.navbar .nav>.sfHover>a {
  background: #6393c1; /* Old browsers */
  background: -moz-linear-gradient(top, #6393c1 0%, #cfe7fa 100%); /* FF3.6-15 */
  background: -webkit-linear-gradient(top, #6393c1 0%,#cfe7fa 100%); /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, #6393c1 0%,#cfe7fa 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#6393c1', endColorstr='#cfe7fa',GradientType=0 );
  color: #fff;
  text-shadow: none;
}

.sfHover {
  text-shadow: none;
}

.navbar .nav>li>.dropdown-menu a:hover {
  background: none;
  color: #6393C1;
}

.navbar .nav>li>.dropdown-menu:before {
  border-bottom: #6393C1;
  border-bottom-color: rgba(0, 0, 0, 0.2);
  border-left: 5px solid transparent;
  border-left: none;
  border-right: 5px solid transparent;
  border-right: none;
  border-top: 5px solid #6393C1;
  content: '';
  display: inline-block;
  left: 85%;
  position: absolute;
  top: 0px;
}

.navbar .nav>li>.dropdown-menu:after {
  border-bottom: 0px;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  content: '';
  display: inline-block;
  left: 85%;
  position: absolute;
  top: 0px;
}

.navbar-fixed-bottom .nav>li>.dropdown-menu:before {
  border-bottom: 0;
  border-top: 7px solid #ccc;
  border-top-color: rgba(0, 0, 0, 0.2);
  bottom: -7px;
  top: auto;
}

.navbar-fixed-bottom .nav>li>.dropdown-menu:after {
  border-bottom: 0;
  border-top: 6px solid #ffffff;
  bottom: -6px;
  top: auto;
}

.navbar .nav li.dropdown>a:hover .caret,
.navbar .nav li.sfHover a.dropdown-toggle .caret {
  border-bottom-color: #fff;
  border-top-color: #fff;
}

.navbar .nav li.dropdown.open>.dropdown-toggle,
.navbar .nav li.dropdown.active>.dropdown-toggle,
.navbar .nav li.dropdown.open.active>.dropdown-toggle {
  background: #6393c1; /* Old browsers */
  background: -moz-linear-gradient(top, #6393c1 48%, #cfe7fa 100%); /* FF3.6-15 */
  background: -webkit-linear-gradient(top, #6393c1 48%,#cfe7fa 100%); /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, #6393c1 48%,#cfe7fa 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#6393c1', endColorstr='#cfe7fa',GradientType=0 );
  color: #fff;
}

.navbar .nav li.dropdown>.dropdown-toggle .caret {
  border-bottom-color: #6393C1;
  border-top-color: #6393C1;
}

.navbar .nav li.dropdown.open>.dropdown-toggle .caret,
.navbar .nav li.dropdown.active>.dropdown-toggle .caret,
.navbar .nav li.dropdown.open.active>.dropdown-toggle .caret {
  border-bottom-color: #fff;
  border-top-color: #fff;
}

.navbar .pull-right>li>.dropdown-menu,
.navbar .nav>li>.dropdown-menu.pull-right {
  left: auto;
  right: 0;
}

.navbar .pull-right>li>.dropdown-menu:before,
.navbar .nav>li>.dropdown-menu.pull-right:before {
  left: auto;
  right: 12px;
}

.navbar .pull-right>li>.dropdown-menu:after,
.navbar .nav>li>.dropdown-menu.pull-right:after {
  left: auto;
  right: 13px;
}

.navbar .pull-right>li>.dropdown-menu .dropdown-menu,
.navbar .nav>li>.dropdown-menu.pull-right .dropdown-menu {
  border-radius: 6px 0 6px 6px;
  left: auto;
  margin-left: 0;
  margin-right: -1px;
  -moz-border-radius: 6px 0 6px 6px;
  right: 100%;
  -webkit-border-radius: 6px 0 6px 6px;
}

.dropdown-submenu>ul {
  background: #fff;
  background-clip: padding-box;
  background-color: white;
  border-bottom: 4px solid #6393C1;
  border-bottom-width: 2px;
  border-radius: 0px;
  border-right-width: 2px;
  border-top: 4px solid #6393C1;
  box-shadow: 0px -7px 5px rgba(50, 50, 50, 0.33);
  color: #333;
  float: left;
  left: 100%;
  line-height: 2;
  list-style: none;
  margin: 0;
  min-width: 160px;
  -moz-background-clip: padding;
  -moz-border-radius: 0px;
  -moz-box-shadow: 0px -7px 5px rgba(50, 50, 50, 0.33);
  padding: 0;
  padding: 3px 12px;
  position: absolute;
  top: 0%;
  -webkit-background-clip: padding-box;
  -webkit-border-radius: 0px;
  -webkit-box-shadow: 0px -7px 5px rgba(50, 50, 50, 0.33);
  z-index: 1000;
}

.navbar .nav>li:last-child .dropdown-submenu>ul {
  background: #fff;
  background-clip: padding-box;
  background-color: white;
  border-bottom: 4px solid #6393C1;
  border-bottom-width: 2px;
  border-radius: 0px;
  border-right-width: 2px;
  border-top: 4px solid #6393C1;
  box-shadow: 0px -7px 5px rgba(50, 50, 50, 0.33);
  color: #333;
  float: left;
  left: -120%;
  line-height: 2;
  list-style: none;
  margin: 0;
  min-width: 160px;
  -moz-background-clip: padding;
  -moz-border-radius: 0px;
  -moz-box-shadow: 0px -7px 5px rgba(50, 50, 50, 0.33);
  padding: 0;
  padding: 3px 12px;
  position: absolute;
  top: 0%;
  -webkit-background-clip: padding-box;
  -webkit-border-radius: 0px;
  -webkit-box-shadow: 0px -7px 5px rgba(50, 50, 50, 0.33);
  z-index: 1000;
}

.dropdown-submenu .sfHover>a:hover {
  background: none;
  background-color: none;
  color: #6393C1;
}

.navbar .nav .sfHover>a li.dropdown .shHover>a {
  background: none;
  background-color: none;
  color: #6393C1;
}

.dropdown-submenu:hover>a {
  background: none;
  background-image: none;
  background-repeat: none;
  color: #6393C1;
  filter: none;
  text-decoration: none;
}

.dropdown-submenu>a:after {
  border-color: transparent;
  border-left-color: #cccccc;
  border-style: solid;
  border-width: 5px 0 5px 5px;
  content: " ";
  display: inline-block;
  position: absolute;
  height: 0;
  right: 15px;
  top: 8px;
  width: 10%;
  margin-left: 2px;
}

.dropdown-submenu>a {
  float: left;
  display: block;
  position: relative;
  padding: 3px 20px;
  width: 88%;
}

.dropdown-submenu:hover>a:after {
  border-left-color: #6393C1;
}

.dropdown-menu li>a:hover,
.dropdown-menu li>a:focus {
  background: none;
  background-color: none;
  background-image: none;
  background-repeat: repeat-x;
  color: #0081c2;
  filter: none;
  text-decoration: none;
}

.dropdown-menu .active>a,
.dropdown-menu .active>a:hover {
  background: none;
  background-color: none;
  background-image: none;
  background-repeat: repeat-x;
  color: #0081c2;
  filter: none;
  outline: 0;
  text-decoration: none;
}


/****************************** MARKETING SECTION ***************************************/

.marketing {
  color: #5a5a5a;
  text-align: center;
}

.marketing h1 {
  font-size: 60px;
  font-weight: 200;
  letter-spacing: -1px;
  line-height: 1;
  margin: 60px 0 10px;
}

.marketing h2 {
  font-weight: 200;
  margin-bottom: 20px;
}

.marketing .marketing-byline {
  margin-top: 20px;
}

.marketing .marketing-byline span {
  color: #6393C1;
}

.marketing .marketing-byline {
  color: #999;
  font-size: 140%;
  font-weight: 300;
  line-height: 25px;
  margin-bottom: 30px;
  margin-top: 20px;
  text-transform: uppercase;
}

.marketing img {
  display: block;
  margin: 0 auto 0px;
}

.textleft {
  text-align: left;
}

.services {
  list-style: none;
  margin-left: 0;
}

.services li {
  line-height: 30px;
}

.bordertop {
  border-top: 1px solid #EEE;
  margin-top: 20px;
  padding-top: 20px;
}

.well {
  background-color: #fff;
  border-bottom: 1px solid #ccc;
  border-left: 4px solid #6393C1;
  border-radius: 0px;
  border-right: 1px solid #ccc;
  border-top: 1px solid #ccc;
  box-shadow: 0px 5px 12px rgba(50, 50, 50, 0.15);
  margin-bottom: 20px;
  min-height: 20px;
  -moz-border-radius: 0px;
  -moz-box-shadow: 0px 5px 12px rgba(50, 50, 50, 0.15);
  padding: 19px;
  position: relative;
  -webkit-border-radius: 0px;
  -webkit-box-shadow: 0px 5px 12px rgba(50, 50, 50, 0.15);
}

.well:before {
  border-bottom: 9px solid transparent;
  border-left: 9px solid #6393C1;
  border-top: 9px solid transparent;
  content: '';
  display: inline-block;
  left: 0px;
  position: absolute;
  top: 40%;
}

p.land {
  font-size: 140%;
  line-height: 28px;
  margin-bottom: 20px;
  margin-top: 20px;
  text-transform: uppercase;
}

.border-left-color {
  border-right: 1px solid #6393C1;
  margin-right: 10px;
  padding-right: 35px;
}

.margin-left {
  padding-left: 20px;
}


/****************************** TOP SLIDER INDEX PAGE ******************************/

#banner-pagination ul {
  list-style: none;
  margin: 20px 0 0 0;
}

#banner-pagination ul li {
  display: inline;
  text-align: center;
  width: 25px;
}

.banner_rotator .slides {
  height: 100%;
  min-height: 100%;
}

.banner_rotator .slide {
  display: block;
  display: none;
  float: left;
  height: 100%;
  min-height: 100%;
}

.banner-item .container {
  margin-left: auto;
  margin-right: auto;
  margin-top: 0px;
  position: relative;
}

.banner-img {
  margin-top: 40px;
  vertical-align: baseline;
}


/****************************** PRELOADER **************************/

.js div#preloader {
  background: #333 url(../img/loading_page.gif) no-repeat center center;
  height: 100%;
  left: 0;
  overflow: visible;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
}


/*************************** PORTFOLIO & CLIENTS ROTATOR*********************/

.flex-direction-nav .flex-prev {
  right: 32px;
}

.flex-direction-nav a {
  cursor: pointer;
  display: block;
  height: 30px;
  margin: 0px 0 0;
  position: absolute;
  text-indent: -9999px;
  top: -60px;
  -webkit-transition: all .2s ease;
  width: 30px;
  z-index: 10;
}

.portfolio-controls {
  position: relative;
}

.flex-direction-nav a {
  background: #6393C1 url(../img/bg_direction_nav.png) no-repeat 0 0;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
}

.flex-direction-nav li.a.flex-prev {
  color: #fff;
  content: "<"
}

.flex-direction-nav a.flex-next {
  color: #fff;
  content: ">"
}

.clients_rotator_widget_wrap .overl {
  background: rgba(250, 250, 250, 0.6);
  box-shadow: inset 0px 0px 20px rgba(50, 50, 50, 0.3);
  display: block;
  filter: alpha(opacity=30);
  height: 105px;
  left: 0px;
  min-height: 105px;
  -moz-box-shadow: inset 0px 0px 20px rgba(50, 50, 50, 0.3);
  -moz-transition: all 0.6s ease-in-out;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";
  opacity: 0.3;
  o-transition: all 0.6s ease-in-out;
  position: absolute;
  top: 0px;
  transition: all 0.6s ease-in-out;
  -webkit-box-shadow: inset 0px 0px 20px rgba(50, 50, 50, 0.3);
  -webkit-transition: all 0.6s ease-in-out;
  width: 100%;
}

.clients_rotator_widget_wrap li {
  position: relative;
}

.clients_rotator_widget_wrap li.slide {
  margin-left: 30px;
}

.clients_rotator_widget_wrap li.slide:first-child {
  margin-left: 0px;
}


/*************************** END PORTFOLIO & CLIENTS ROTATOR*********************/


/************************** FEATURES <P> ********************************/

p.features {
  border-bottom: 4px solid #fefefe;
  font-size: 90%;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  padding-bottom: 15px;
  text-align: justify;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
}

p.features:hover {
  border-bottom: 4px solid #6393C1;
  padding-bottom: 12px;
}


/*********************************** BLOG & BLOG CATEGORIES **********************************/

.blog {
  padding-top: 30px;
}

.blog-post p.cat-blog {
  margin-top: 0px;
}

.date-blog {
  font-size: 300%;
  font-weight: 600;
}

.meta-blog {
  border-bottom: 1px solid #dedede;
  border-top: 1px solid #dedede;
  display: inline-block;
  margin: 3px 0px;
  padding: 3px 0px;
  width: 100%;
}

.label {
  border-radius: 1px;
  -moz-border-radius: 1px;
  -webkit-border-radius: 1px;
}

.label-xl,
.badge-xl {
  background: #6393C1 url(../img/header-shine.png) top left no-repeat;
  background-size: 100% 100%;
  color: #ffffff;
  display: inline-block;
  font-size: 11.844px;
  font-weight: bold;
  line-height: 14px;
  padding: 21px 8px;
  position: relative;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  vertical-align: baseline;
  white-space: nowrap;
}

.label-l,
.badge-l {
  background: #6393C1 url(../img/header-shine.png) top left no-repeat;
  background-size: 100% 100%;
  color: #ffffff;
  display: inline-block;
  font-size: 11.844px;
  font-weight: bold;
  line-height: 14px;
  padding: 15px 5px;
  position: relative;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  vertical-align: baseline;
  white-space: nowrap;
}

.label-xl:after,
.label-l:after {
  border-bottom: 9px solid transparent;
  border-left: 9px solid #6393C1;
  border-top: 9px solid transparent;
  content: '';
  display: inline-block;
  position: absolute;
  right: -9px;
  top: 40%;
}

.toggle-img {
  display: inline-block;
  margin-bottom: 15px;
  margin-top: 5px;
  min-width: 100%;
  -moz-transition: all 1.8s ease-in-out;
  -o-transition: all 1.8s ease-in-out;
  overflow: hidden;
  position: relative;
  transition: all 1.8s ease-in-out;
  -webkit-transition: all 1.8s ease-in-out;
  width: 100%;
}

.toggle-img img {
  height: auto;
  left: 0%;
  min-width: 100%;
  -moz-transition: all 1.8s ease-in-out;
  -o-transition: all 1.8s ease-in-out;
  transition: all 1.8s ease-in-out;
  -webkit-transition: all 1.8s ease-in-out;
  width: 100%;
}

.toggle-img:hover img {
  -moz-transform: scale(2);
  -ms-transform: scale(2);
  -o-transform: scale(2);
  transform: scale(2);
  -webkit-transform: scale(2);
}

.blog-post p {
  margin: 20px 0;
  text-align: justify;
}

.thumbnail>img {
  margin: none;
  width: 100%;
}

.blog {
  margin-bottom: 4em;
}

#single div {}

.blog:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.blog h2 {
  font-size: 2em;
  /*margin: 0 !important;*/
}

.blog h2 a {
  color: #2f2f2f;
  font-style: normal;
  font-weight: 400;
}

.blog h2 a:hover {
  color: #2f2f2f;
  text-decoration: none;
}

.blog h3 {}

.blog h4 {}

.blog blockquote p {
  border-left: 0px;
  color: #2f2f2f;
  display: inline-block;
  font-size: 110%;
  line-height: 1.6em;
  margin: 10px 0px 10px;
  padding-left: 15px;
}

blockquote p:before {
  color: #6393C1;
  content: open-quote;
  font-size: 4em;
  line-height: .1em;
  margin-right: .25em;
  text-shadow: -1px -1px 0px #333, 1px 1px 2px #fff;
  vertical-align: -.4em;
}

blockquote p:after {
  color: #6393C1;
  content: close-quote;
  font-size: 4em;
  line-height: .1em;
  margin-left: .25em;
  margin-top: 1.5em;
  text-shadow: -1px -1px 0px #333, 1px 1px 2px #fff;
  vertical-align: -.7em;
}

.blog blockquote .author {
  color: #757575;
}

.blog code,
.blog pre {
  color: #484848;
  font-size: .9em;
}

.blog pre {
  background: #F5F4F4;
  border-radius: .5em;
  -moz-border-radius: .5em;
  -ms-border-radius: .5em;
  o-border-radius: .5em;
  padding: 1em;
  -webkit-border-radius: .5em;
}

.blog .video-container {
  height: 0;
  overflow: hidden;
  padding-bottom: 56.25%;
  padding-top: 30px;
  position: relative;
}

.blog .video-container iframe,
.blog .video-container object,
.blogl .video-container embed {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

.blog aside .blog-post-type h3 {
  display: block;
  height: 94px;
  margin: 1.3em auto 0;
  text-indent: -9999px;
  width: 91px;
}

.blog aside .blog-post-type h3.div {}

.blog aside .blog-post-type h3.link {}

.blog aside .blog-post-type h3.video {}

.blog aside .blog-post-type h3.image {}

.blog:hover aside .blog-post-type h3 {
  background-position: 0 -94px;
}

.blog aside .blog-post-date {
  margin: 2em 0 1em 0;
  text-align: center;
}

.blog aside .blog-post-comments {
  text-align: center;
}

.blog aside .blog-post-comments a {
  color: #757575;
  font-style: normal;
  font-weight: 400;
}

.blog aside .blog-post-comments a:hover {
  color: #d8c431;
  text-decoration: none;
}

img.post-image {
  float: left;
  height: auto;
  margin: 10px 15px 20px 0px;
  max-width: 340px;
  overflow: hidden;
  width: 340px;
}

img.post-image-full {
  float: none;
  height: auto;
  margin: 10px 0px 20px 0px;
  max-width: 100%;
  width: 100%;
}

.blog .blog-post-tags {
  margin-top: 3px;
}

.blog .blog-post-tags ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.blog .blog-post-tags li a {
  background-color: #f5f4f4;
  border: 1px solid #d0d0d0;
  color: #757575;
  float: left;
  font-size: .6em;
  font-style: normal;
  font-weight: 400;
  margin: 0 .5em .5em 0;
  padding: .2em .8em;
  position: relative;
  text-transform: uppercase;
}

.blog .blog-post-tags li a:hover {
  background: #6393C1;
  border: 1px solid #6393C1;
  color: #fff;
  text-decoration: none;
}

.blog aside h4 {
  font-size: 1.2em;
  margin: 0;
}

.blog aside p {
  font-size: .9em;
  margin: 0;
}

.blog .social {
  margin: 1em 0 0 0;
}

.blog .sharing a:hover {
  color: #d8c431;
  text-decoration: none;
}

.blog aside {
  line-height: 1.4em;
}

.blog .blog-post img {}

.blog .blog-post .wp-caption {
  background: none;
  border: none;
}

.blog .blog-post .wp-caption-text {
  padding: .5em;
}

.blog .blog-post .alignleft {
  margin: 1em 1em 1em 0;
}

.blog .blog-post .alignright {
  margin: 1em 0 1em 1em;
}

.blog .post-meta ul {
  font-weight: 400;
  list-style: none !important;
  margin: 0 !important;
  margin: 0 .5em .5em 0;
  padding: .2em .8em;
  padding-left: 0 !important;
  position: relative;
  text-transform: uppercase;
}

.blog .post-meta ul li {
  float: left;
  font-size: 0.8em;
  margin-right: 1em;
}

.blog .nav-tabs {
  margin-bottom: 0px !important;
}

.blog .tab-pane {
  background: white;
  border: 1px solid #DFDFDF;
  border-top: 0px;
  padding: 15px;
  padding-bottom: 1px;
}

.blog .nav-pills li.active a,
.blog .nav-pills li a:hover {
  background-color: #6393C1 !important;
  color: #fff;
}

.blog_cat {
  padding-top: 0px;
}

.blog .indexMeta {
  border-bottom: 1px solid #d0d0d0 !important;
  border-top: 1px solid #d0d0d0 !important;
  clear: both;
  margin-bottom: 40px;
  padding: 20px !important;
  padding-bottom: 40px !important;
  position: relative;
}

.blog .indexMeta h2 {
  width: 600px;
}

.blog .indexMeta .dd_buttons {
  border-left: 1px solid #d9d9d9;
  padding-left: 10px;
  position: absolute;
  right: 10px;
  top: 15px;
  width: 112px;
}

.blog .indexMeta .dd_button {
  float: right;
  height: 25px;
  margin: 3px 0px;
  overflow: hidden;
  width: 110px;
}

.nav-tabs>.active>a {
  border-left: 3px solid #6393C1;
}

.box-blog {
  background: #fff;
  border: 1px solid #dedede;
  box-shadow: 0 1px 3px rgba(34, 25, 25, 0.4);
  margin-bottom: 20px;
  -moz-box-shadow: 0 1px 2px rgba(34, 25, 25, 0.4);
  -webkit-box-shadow: 0 1px 3px rgba(34, 25, 25, 0.4);
}

.widget-archive>li a:hover {
  /*border-left: 10px solid #6393C1;*/
  text-decoration: none;
  color: #6393C1;
}

.widget-archive>li a {
  border-left: 1px solid #6393C1;
  color: #333300;
  display: block;
  font-size: 90%;
  margin: 0 0 0 55px;
  -moz-transition: all 0.25s ease-in-out;
  -ms-transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s;
  padding: 5px 0 3px 10px;
  transition: all 0.25s ease-in-out;
  -webkit-transition: all 0.25s ease-in-out;
}

.widget-archive>li {
  list-style: none;
}

.blog-post {
  margin-bottom: 40px;
  padding-bottom: 10px;
  border-bottom: 1px solid #ccc;
}


/************************************** PINTEREST STYLE BLOG **************************/

.pint-blog .thumbnail {
  margin: 10px;
}

.pint-blog {
  background: #fff;
  border: 1px solid #dedede;
  border-radius: 2px;
  box-shadow: 0 1px 3px rgba(34, 25, 25, 0.4);
  box-sizing: border-box;
  float: left;
  margin-bottom: 20px;
  max-width: 100%;
  -moz-border-radius: 2px;
  -moz-box-shadow: 0 1px 2px rgba(34, 25, 25, 0.4);
  -moz-box-sizing: border-box;
  padding: 0px;
  -webkit-border-radius: 2px;
  -webkit-box-shadow: 0 1px 3px rgba(34, 25, 25, 0.4);
  -webkit-box-sizing: border-box;
}

.pint-blog .single-title {
  font-size: 100%;
  margin: 5px 10px 3px 10px;
  text-transform: uppercase;
}

.pint-blog .meta {
  font-size: 80%;
  margin: 4px 10px;
}

.pint-blog p {
  display: inline-block;
  font-size: 80%;
  padding: 10px;
  position: relative;
  text-align: justify;
}

.pint-blog p span.plus {
  background: rgba(250, 250, 250, 1);
  bottom: 0px;
  box-shadow: 0px -8px 7px rgba(50, 50, 50, 0.32);
  filter: alpha(opacity=50);
  left: 0px;
  -moz-box-shadow: 0px -8px 7px rgba(50, 50, 50, 0.32);
  -moz-transition: all 0.3s ease-in-out;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
  opacity: 0;
  -o-transition: all 0.3s ease-in-out;
  padding: 7px 0px;
  position: absolute;
  text-align: center;
  transition: all 0.3s ease-in-out;
  -webkit-box-shadow: 0px -8px 7px rgba(50, 50, 50, 0.32);
  -webkit-transition: all 0.3s ease-in-out;
  width: 100%;
}

.pint-blog p span.plus a:hover,
.pint-blog p span.plus a:hover i {
  color: #003060;
  text-decoration: none;
}

.pint-blog:hover p span.plus {
  bottom: 0px;
  filter: alpha(opacity=100);
  left: 0px;
  ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
  opacity: 1;
  position: absolute;
  width: 100%;
}




/************************************** FILTERS FOR PINTEREST *****************************************/

#filters .dropdown-menu {}

.blog-line .line-proj .proj {
  margin-bottom: -5px;
}

#filters .dropdown-menu:before {
  border-bottom: #6393C1;
  border-bottom-color: rgba(0, 0, 0, 0.2);
  border-left: 7px solid transparent;
  border-left: none;
  border-right: 7px solid transparent;
  border-right: none;
  border-top: 7px solid #6393C1;
  content: '';
  display: inline-block;
  left: 45%;
  position: absolute;
  top: 0px;
}

ul#filters,
#filters-blog {
  display: inline-block;
  float: left;
  list-style: none;
  margin: 0px 3px 0px;
  padding: 0px;
}

ul#filters>li,
#filters-blog a {
  float: left;
  list-style: none;
  margin: 0px 3px;
}

#filters .dropdown-menu:after {
  border-bottom: 0px;
  border-left: 9px solid transparent;
  border-right: 9px solid transparent;
  content: '';
  display: inline-block;
  left: 45%;
  position: absolute;
  top: 0px;
}

#filters .dropdown-menu li a {
  background: #ffffff;
  color: #333;
  display: inline-block;
  float: left;
  font-size: 100%;
  font-weight: 200;
  line-height: 16px;
  padding: 5px 8px;
  text-align: left;
  text-decoration: none;
  text-shadow: none;
  vertical-align: baseline;
  white-space: nowrap;
}

#filters .dropdown-menu li a:hover {
  color: #6393C1;
}

.banner_rotator {
  display: block;
  height: 450px;
  margin-left: auto;
  margin-right: auto;
  max-width: 1350px;
  padding-top: 50px;
}

.show-case-item {
  float: left;
}

.flex-control-nav {
  bottom: 15px;
  position: absolute;
  text-align: center;
  width: 100%;
  width: auto;
}


/************************************  PROJECTS ITEMS & ISOTOPE & FILTERS ****************/

#filters a,
#filters-blog a {
  background: #6393C1;
  color: #fff;
  color: #ffffff;
  display: inline-block;
  font-size: 120%;
  font-weight: normal;
  line-height: 16px;
  padding: 5px 8px;
  text-decoration: none;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  vertical-align: baseline;
  white-space: nowrap;
}

#filters a:hover,
#filters-blog a:hover {
  background: #003060;
}

#filters a.active,
#filters-blog a.active {
  background: #003060;
}

.project-item-overlay .inner ul li a.proj-btn:hover {
  background: #003060;
}

.project-item-overlay .inner ul li a.proj-btn {
  background: #6393C1;
  border-radius: 0px;
  box-shadow: 26px 26px 22px rgba(50, 50, 50, 0.42);
  color: #fff;
  color: black !important;
  cursor: pointer;
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  margin: 3px;
  -moz-border-radius: 0px;
  -moz-box-shadow: 26px 26px 22px rgba(50, 50, 50, 0.42);
  -moz-transition: all 0.2s ease-in-out;
  -moz-transition: background-color 0.1s ease-out, color 0.1s ease-out;
  -o-transition: all 0.2s ease-in-out;
  -o-transition: background-color 0.1s ease-out, color 0.1s ease-out;
  padding: 10px;
  transition: all 0.2s ease-in-out;
  transition: background-color 0.1s ease-out, color 0.1s ease-out;
  -webkit-box-shadow: 26px 26px 22px rgba(50, 50, 50, 0.42);
  -webkit-transition: all 0.2s ease-in-out;
  -webkit-transition: background-color 0.1s ease-out, color 0.1s ease-out;
}

.project-item-overlay .inner ul li a.proj-btn [class^="fa-icon-"].fa-icon-large,
li [class*=" fa-icon-"].fa-icon-large {
  color: #fff;
}

.project-item-overlay .inner ul li a.detail-link {
  color: #CCC !important;
  display: block;
  margin-top: 5px;
  -moz-transition: color 0.1s ease-out;
  -o-transition: color 0.1s ease-out;
  text-transform: lowercase;
  transition: color 0.1s ease-out;
  -webkit-transition: color 0.1s ease-out;
}

.project-item-image-container .project-item-overlay .inner ul li a:hover,
.project-item-image-container .project-item-overlay .inner ul li a:active {
  color: #6393C1;
  outline: 0;
}

.project-item-image-container .project-item-overlay .inner ul li a:hover {
  color: #6393C1;
  text-decoration: none;
}

.project-item-image-container .project-item-overlay .inner ul li a {
  color: #0085BD;
  text-decoration: none;
}

.project-item {
  margin-bottom: 30px;
}

.project-item-overlay .inner ul {
  list-style: none;
  margin-left: 0px;
}

.project-item-overlay {
  background: rgba(250, 250, 250, 0.8);
  display: block;
  filter: alpha(opacity=0);
  height: 100%;
  left: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  opacity: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

.project-item-overlay .inner {
  display: block;
  position: relative;
  text-align: center;
  top: 30%;
  width: 100%;
}

.project-item-overlay:hover,
.slide:hover .project-item-overlay {
  -moz-transition: 0.3s ease-out;
  opacity: 1;
  -o-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
  -webkit-transition: 0.3s ease-out;
}

.project-item-image-container {
  border: none;
  cursor: pointer;
  height: 100%;
  position: relative;
  width: 100%;
}

.project-item-image-container:hover,
.project-item :hover .project-item-image-container {
  filter: alpha(opacity=100);
  -moz-transition: background-color 0.2s ease-out, color 0.1s ease-out;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  opacity: 1;
  -o-transition: background-color 0.2s ease-out, color 0.1s ease-out;
  transition: background-color 0.2s ease-out, color 0.1s ease-out;
  -webkit-transition: background-color 0.2s ease-out, color 0.1s ease-out;
}

.project-item-image-container>img {
  width: 100%!important;
}

.isotope .isotope-item {
  -moz-transition-property: -moz-transform, opacity;
  -ms-transition-property: -moz-transform, opacity;
  -o-transition-property: top, left, opacity;
  transition-property: transform, opacity;
  -webkit-transition-property: -webkit-transform, opacity;
}

.isotope-item {
  -moz-transition-duration: 0.8s;
  -ms-transition-duration: 0.8s;
  -o-transition-duration: 0.8s;
  transition-duration: 0.8s;
  -webkit-transition-duration: 0.8s;
  z-index: 2;
}


/************************************ END FILTERS ISOTOPE & PROJECTS ITEMS ****************/


/******************************* SINGL PROJECT **********************************/

.large-sl {
  position: relative;
}

.slides,
.flex-control-nav,
.flex-direction-nav {
  list-style: none;
  margin: 0;
  padding: 0;
}

.portfolio-controls-single {
  display: inline-block;
  position: absolute;
  right: 0px;
  top: 60px;
}

.flex-viewport {
  min-height: 100%;
}


/******************************** TESTIMONIALS ********************************/

.testimonials .slide {
  margin-left: 30px;
}

.testimonials .slide:first-child {
  margin-left: 0px;
}


/**************************************** RESPONSIVE VIDEO **************************************/

video {
  min-width: 100%;
  height: auto;
  width: 100%;
}

.container-video {
  width: 100%;
  min-width: 100%;
  position: relative;
  padding: 0;
  height: 100%;
}

.vendor {
  margin-bottom: 2em;
}

.side_bar .vendor .container-video video,
.side_bar .vendor .container-video iframe {
  min-width: 100%;
  width: 100%;
  height: auto;
}


/************************ CUSTOM FONT SIZES *********************************/

.big-text {
  font-size: 120%;
  line-height: 1em;
}

.big-text ul li {
  margin: 10px 0px;
}

.large-text {
  font-size: 200%;
  line-height: 1em;
}

.xlarge-text {
  font-size: 300%;
  line-height: 1.2em;
}

.xxlarge-text {
  font-size: 400%;
  line-height: 1.4em;
}

.xxxlarge-text {
  font-size: 500%;
  line-height: 1.5em;
}

.xxxxlarge-text {
  font-size: 600%;
  line-height: 1.7em;
}

.floats-l>ul {
  float: left;
  width: 40%;
}

.fa-icon-xxlarge {
  font-size: 400%;
}

.fa-icon-xlarge {
  font-size: 300%;
}

.fa-icon-large {
  font-size: 200%;
}


/**************************** TO TOP (badge to scroll to top)**************/

#toTop {
  background: #355c84 url(../img/totop.png) top left no-repeat;
}

#toTop:hover {
  background: #0085BD url(../img/totop.png) top left no-repeat;
  box-shadow: 6px 6px 4px rgba(50, 50, 50, 0.22);
  -moz-box-shadow: 6px 6px 4px rgba(50, 50, 50, 0.22);
  -webkit-box-shadow: 6px 6px 4px rgba(50, 50, 50, 0.22);
}

#toTop {
  border: none;
  bottom: 60px;
  display: none;
  height: 51px;
  overflow: hidden;
  position: fixed;
  /*right: 13px;*/
  text-decoration: none;
  text-indent: 100%;
  width: 51px;
  z-index: 100;
}

#toTop:active,
#toTop:focus {
  outline: none;
}


/**************************** END TO TOP ********************************************/


/*************************** CUSTOM BUTTON **************************************/

.btn-action {
  background-color: hsl(106, 42%, 43%) !important;
  background-image: -khtml-gradient(linear, left top, left bottom, from(#559b3f), to(#559b3f));
  background-image: linear-gradient(#559b3f, #559b3f);
  background-image: -moz-linear-gradient(top, #559b3f, #559b3f);
  background-image: -ms-linear-gradient(top, #559b3f, #559b3f);
  background-image: -o-linear-gradient(top, #559b3f, #559b3f);
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #559b3f), color-stop(100%, #559b3f));
  background-image: -webkit-linear-gradient(top, #559b3f, #559b3f);
  background-repeat: repeat-x;
  border-radius:0px;
  color: #fff !important;
  color: #fff;
  display: inline-block;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#559b3f", endColorstr="#559b3f");
  font-size: 15px;
  font-style: normal;
  font-weight: normal;
  line-height: 30px;
  -moz-border-radius: 0px;
  -ms-border-radius: 0px;
  -o-border-radius: 0px;
  overflow: visible;
  /*padding: 5px;*/
  text-decoration: none;
  text-shadow: 0 1px 0 #a9db3c;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.00);
  text-transform: uppercase;
  -webkit-border-radius: 0px;
  -webkit-font-smoothing: antialiased;
}

.btn-action:hover {
  background-color: hsl(102, 52%, 43%) !important;
  background-image: -khtml-gradient(linear, left top, left bottom, from(#56a634), to(#56a634));
  background-image: linear-gradient(#56a634, #56a634);
  background-image: -moz-linear-gradient(top, #56a634, #56a634);
  background-image: -ms-linear-gradient(top, #56a634, #56a634);
  background-image: -o-linear-gradient(top, #56a634, #56a634);
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #56a634), color-stop(100%, #56a634));
  background-image: -webkit-linear-gradient(top, #56a634, #56a634);
  background-repeat: repeat-x;
  border-color: #56a634 #56a634 hsl(102, 52%, 43%);
  color: #fff !important;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#56a634", endColorstr="#56a634");
  text-decoration: none;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.00);
  -webkit-font-smoothing: antialiased;
}

.btn-action:active {
  background-color: hsl(94, 50%, 34%) !important;
  background-image: -khtml-gradient(linear, left top, left bottom, from(#50822b), to(#50822b));
  background-image: linear-gradient(#50822b, #50822b);
  background-image: -moz-linear-gradient(top, #50822b, #50822b);
  background-image: -ms-linear-gradient(top, #50822b, #50822b);
  background-image: -o-linear-gradient(top, #50822b, #50822b);
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #50822b), color-stop(100%, #50822b));
  background-image: -webkit-linear-gradient(top, #50822b, #50822b);
  background-repeat: repeat-x;
  border-color: #50822b #50822b hsl(94, 50%, 34%);
  color: #fff !important;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#50822b", endColorstr="#50822b");
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.00);
  -webkit-font-smoothing: antialiased;
}


/********************************* CUSTOM LINES ******************************************/

.line {
  border-bottom: 1px solid #6393C1;
  display: block;
  margin: 40px 0px 30px;
  padding-bottom: 10px;
}

.line span {
  border-bottom: 10px solid #6393C1;
  padding: 0px 10px 8px 10px;
  position: relative;
}

.line span:before {
  border-left: 9px solid transparent;
  border-right: 9px solid transparent;
  border-top: 9px solid #6393C1;
  bottom: -19px;
  content: '';
  display: inline-block;
  left: 45%;
  position: absolute;
}

.line-proj {
  border-bottom: 1px solid #6393C1;
  display: block;
  margin: 40px 0px 30px;
  padding-bottom: 0px;
}

.line-proj .proj {
  border-bottom: 10px solid #6393C1;
  display: inline-block;
  padding: 0px 0px 5px 0px;
  position: relative;
}

.blog-filter .proj {
  border-bottom: 10px solid #6393C1;
  display: inline-block;
  padding: 0px;
  position: relative;
}

.line-proj .proj:before {
  border-left: 9px solid transparent;
  border-right: 9px solid transparent;
  border-top: 9px solid #6393C1;
  bottom: -19px;
  content: '';
  display: inline-block;
  left: 45%;
  position: absolute;
}

.line2 {
  border-bottom: 1px solid #6393C1;
  display: block;
  margin: 10px 0px 30px;
  padding-bottom: 3px;
}

.line2 span {
  border-bottom: 6px solid #6393C1;
  padding: 0px 10px 10px 10px;
  position: relative;
}

.line2 span:before {
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid #6393C1;
  bottom: -12px;
  content: '';
  display: inline-block;
  left: 45%;
  position: absolute;
}

.line3 {
  border-bottom: 1px solid #6393C1;
  display: block;
  margin: 0px 0px 15px;
  padding-bottom: 3px;
}

.line3 span {
  border-bottom: 5px solid #6393C1;
  padding: 0px 10px 3px 10px;
  position: relative;
}

.line3 span:before {
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid #6393C1;
  bottom: -8px;
  content: '';
  display: inline-block;
  left: 45%;
  position: absolute;
}

.center {
  text-align: center;
}

.middle-line {
  border-bottom: 1px dashed #ccc;
}

.middle-line span {
  background: #fff;
  display: inline-block;
}


/******************************* CUSTOM TITLES ***********************************/

h3.features-title {
  font-size: 120%;
  text-transform: uppercase;
}

.standart-h2title {
  font-size: 140%;
  line-heigh: 24px;
  text-transform: uppercase;
}

.standart-h3title {
  font-size: 120%;
  text-transform: uppercase;
}

.standart-h4title {
  font-size: 100%;
  text-transform: uppercase;
}



/***************************** CUSTOM WORD COLORS *******************************************/

.main-color,
.firstword {
  color: #6393C1;
}

.red {
  color: red;
}




/***************************** SITEMAP ***********************************/

ul.sitemap {
  display: inline-block;
  list-style: none;
  margin-bottom: 30px;
  margin-top: 0px;
}

ul.sitemap li {
  font-size: 140%;
  list-style: none;
  margin: 15px 0px;
  padding-left: 18px;
  position: relative;
}

ul.sitemap li a {
  border-left: 4px solid #dedede;
  color: #fff;
  -moz-transition: all 0.25s ease-in-out;
  -ms-transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  padding: 12px;
  text-decoration: none;
  transition: all 0.25s ease-in-out;
  -webkit-transition: all 0.25s ease-in-out;
}

ul.sitemap li a:hover {
  background: #005580;
  box-shadow: 2px 2px 0px rgba(50, 50, 50, 0.5);
  margin-left: -3px;
  margin-top: -3px;
  -moz-box-shadow: 2px 2px 0px rgba(50, 50, 50, 0.5);
  text-decoration: none;
  -webkit-box-shadow: 2px 2px 0px rgba(50, 50, 50, 0.5);
}

ul.sitemap li a {
  background: #6393C1;
  padding: 5px;
}

ul.sitemap li>ul>li {
  font-size: 90%;
}


/************************************ 404 page ****************************************/

.marginpage {
  margin-left: 0px;
  margin-top: 0px;
  position: relative;
}

.needhead h1.error-title {
  font-size: 700%;
  font-weight: 700;
  line-height: 100%;
  margin-top: 80px;
}


/************************************ INPUTS *************************************/

.input-large,
input[type="text"].input-large {
  float: left;
  height: 20px;
  padding: 12px 30px;
  width: 50%;
}

select,
textarea,
input[type="text"],
input[type="password"],
input[type="datetime"],
input[type="datetime-local"],
input[type="date"],
input[type="month"],
input[type="time"],
input[type="week"],
input[type="number"],
input[type="email"],
input[type="url"],
input[type="search"],
input[type="tel"],
input[type="color"],
.uneditable-input {
  border-radius: 1px;
  color: #555555;
  display: inline-block;
  font-size: 12px;
  height: 30px;
  line-height: 28px;
  -moz-border-radius: 1px;
  padding: 4px 6px;
  vertical-align: middle;
  -webkit-border-radius: 1px;
}




/****************************** FOOTER ELEMENTS *******************************/

.footer {
  margin-top: 70px;
  border-top: 1px solid #e5e5e5;
  background: #222 url(../img/bg_footer.png);
  padding: 30px 0 0 0;
  color: #919191;
}

footer .copyright {
  border-bottom: 0px;
  font-size: 0.8em;
  margin-bottom: 20px;
}

.footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer.nomargintop {
  margin-top: 0px;
}

.twitter-bottom {
  background-color: #222;
  border-bottom: none;
  border-left: 4px solid #6393C1;
  border-radius: 0px;
  border-right: none;
  border-top: none;
  box-shadow: 0px 5px 12px rgba(0, 0, 0, 0.65);
  margin-bottom: 40px;
  min-height: 20px;
  -moz-border-radius: 0px;
  -moz-box-shadow: 0px 5px 12px rgba(0, 0, 0, 0.65);
  padding: 19px;
  position: relative;
  -webkit-border-radius: 0px;
  -webkit-box-shadow: 0px 5px 12px rgba(0, 0, 0, 0.65);
}

.twitter-bottom:before {
  border-bottom: 9px solid transparent;
  border-right: 9px solid #6393C1;
  border-top: 9px solid transparent;
  content: '';
  display: inline-block;
  left: -10px;
  position: absolute;
  top: 5%;
}

.twitter-bottom a {
  border-bottom: 1px dotted;
}

.twitter-bottom a:hover {
  text-decoration: none;
}

.footer-links li a {
  padding-left: 10px;
  color: #6393C1;
}

.footer address {
  padding-left: 10px;
}

.footer .socialIcons {
  padding-left: 10px;
}

.twitter-sign {
  display: inline-block;
  margin: 5px 5px 10px auto;
  text-align: center;
  width: 100%;
}

.caption ul.socialIcons {
  display: block;
  float: none;
  width: 100%;
}

.phone-info {
  display: inline-block;
  margin: 3px 0px;
  width: 100%;
}


/****************************** end FOOTER *******************************/


/************************** RESPONSIVE MAP *****************************************/

#map {
  display: block;
  height: 250px;
  width: 100%;
}



/******************************* LANDING PAGE *************************************/

#landing-form {
  background-color: #fefefe;
  border: 1px solid #AAAAAA;
  border-radius: 4px;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.15);
  color: #666;
  font-size: 120%;
  line-height: 24px;
  margin: 10px 20px 0 20px;
  margin-bottom: 20px;
  min-height: 20px;
  min-width: 290px;
  -moz-border-radius: 4px;
  -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.15);
  padding: 19px;
  text-shadow: none;
  -webkit-border-radius: 4px;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.15);
}


/************************* Faded out custom style <hr/> ****************************/

hr.half {
  height: 1px;
  margin: 40px 0;
  background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0), rgba(0, 0, 0, .1), rgba(0, 0, 0, 0));
  background-image: -moz-linear-gradient(left, rgba(0, 0, 0, 0), rgba(0, 0, 0, .1), rgba(0, 0, 0, 0));
  background-image: -ms-linear-gradient(left, rgba(0, 0, 0, 0), rgba(0, 0, 0, .1), rgba(0, 0, 0, 0));
  background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0), rgba(0, 0, 0, .1), rgba(0, 0, 0, 0));
  border: 0;
}

hr.half1 {
  height: 1px;
  margin: 20px 0;
  background-image: -webkit-linear-gradient(left, rgba(255, 255, 255, 0), rgba(255, 255, 255, .1), rgba(255, 255, 255, 0));
  background-image: -moz-linear-gradient(left, rgba(255, 255, 255, 0), rgba(255, 255, 255, .1), rgba(255, 255, 255, 0));
  background-image: -ms-linear-gradient(left, rgba(255, 255, 255, 0), rgba(255, 255, 255, .1), rgba(255, 255, 255, 0));
  background-image: -o-linear-gradient(left, rgba(255, 255, 255, 0), rgba(255, 255, 255, .1), rgba(255, 255, 255, 0));
  border: 0;
}

hr.half2 {
  margin: 0 0 40px 0;
}

.copyhr {
  background-image: -webkit-linear-gradient(left, rgba(255, 255, 255, 0), rgba(255, 255, 255, .8), rgba(255, 255, 255, 0));
  background-image: -moz-linear-gradient(left, rgba(255, 255, 255, 0), rgba(255, 255, 255, .8), rgba(255, 255, 255, 0));
  background-image: -ms-linear-gradient(left, rgba(255, 255, 255, 0), rgba(255, 255, 255, .8), rgba(255, 255, 255, 0));
  background-image: -o-linear-gradient(left, rgba(255, 255, 255, 0), rgba(255, 255, 255, .8), rgba(255, 255, 255, 0));
  margin-bottom: 20px !important;
}


/*********************** PLUS STYLES *********************************/

#main-nav select {
  display: none;
}

.headertop {
  position: relative;
}

textarea.span8,
textarea.span12 {
  min-height: 120px;
  height: 120px;
}


/**************************************** @MEDIA *********************************/

@media (min-width: 1200px) {
  .thumbnails>li:first-child {
    margin-left: 0px;
  }
}

@media (max-width: 980px) and (min-width: 768px) {
  body>.navbar-fixed-top .brand {
    float: right;
    margin-left: 0;
    padding-left: 10px;
    padding-right: 10px;
  }
  .nav-reaction.nav-collapse .nav>li>a,
  .nav-collapse .dropdown-menu a {
    padding: 0;
  }
  .navbar .nav>li>a {
    font-size: 85%;
    padding-left: 7px;
    padding-right: 7px;
  }
  .pint-blog p {
    line-height: 16px;
  }
  .pull-right {
    float: none;
  }
  .main-nav .nav>li:hover a {
    background: #6393C1;
    color: #fff;
    text-shadow: none;
  }
  .nav-reaction .dropdown-menu {
    position: absolute;
  }
  .needhead h1 {
    font-size: 2em;
  }
  .needhead p.medium {
    font-size: 90%;
  }
  .banner-img {
    margin-top: 40px;
  }
  .banner-item .container {
    margin-top: 0px;
  }
  .banner_rotator {
    height: 300px;
  }
  .needhead {
    height: 500px;
  }

}

@media (max-width: 979px) {
  .nav-collapse .nav {
    float: left;
    margin: 0 0 10px;
  }
  .nav-collapse .nav>li {
    float: left;
  }
  .nav-collapse,
  .nav-collapse.collapse {
    overflow: hidden;
    height: 0;
    float: right;
    clear: none;
  }
  .nav-collapse .nav>li>a {
    margin-bottom: 0px;
  }
  .navbar .nav>li.active a:hover {}
}

@media (min-width: 768px) and (max-width: 980px) {
  /* Remove any padding from the body */
  body {
    padding-top: 0;
  }

  .needhead h1 {
    font-size: 3em;
  }
  .needhead p,
  .needhead .btn {
    font-size: 18px;
  }
  .nav-collapse,
  .nav-collapse.collapse {
    height: auto !important;
    overflow: visible !important;
  }
}

@media (max-width: 767px) {
  body {
    padding-left: 0px;
    padding-right: 0px;
  }
  .line span {
    border-bottom: 0;
    padding: 0px 10px 8px 10px;
    position: relative;
  }
  .needhead h1.error-title {
    font-size: 300%;
    font-weight: 700;
    line-height: 100%;
    margin-top: 60px;
  }
  .navbar-inner {
    min-height: 40px;
    padding-left: 0px;
    padding-right: 0px;
  }
  .navbar-static-top {
    margin-left: 0px;
    margin-right: 0px;
  }
  .banner-item .container {
    padding-right: 55px;
  }
  .needhead h1 {
    font-size: 2em;
  }
  .needhead p.medium {
    font-size: 90%;
  }
  .banner_rotator {
    height: 300px;
  }
  .needhead {
    height: 500px;
  }
  .line span:before {
    border-left: 9px solid transparent;
    border-right: 9px solid transparent;
    border-top: 0px;
    bottom: -19px;
    content: '';
    display: inline-block;
    left: 45%;
    position: absolute;
  }
  .toggle-img img {
    top: 0%;
  }
  ul#filters>li,
  #filters-blog a,
  #filters a {
    font-size: 70%;
  }
  .banner-to-right {
    text-align: center;
  }
  .pull-right {
    float: none;
  }
  .navbar .brand {
    float: none;
    text-align: center;
  }
  .btn-action {
    font-size: 125%;
  }
  .navbar .nav>li>a:hover,
  .navbar .nav>li>a:hover,
  .navbar .nav .sfHover>a {
    background: #6393C1;
    color: #fff;
    text-shadow: none;
  }
  .label-xl,
  .badge-xl {
    background: #6393C1 url(../img/header-shine.png) top left no-repeat;
    background-size: 100% 100%;
    color: #ffffff;
    display: inline-block;
    font-size: 11.844px;
    font-weight: bold;
    line-height: 14px;
    margin-bottom: 15px;
    padding: 21px 8px;
    position: relative;
    text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
    vertical-align: baseline;
    white-space: nowrap;
  }
  .label-l,
  .badge-l {
    background: #6393C1 url(../img/header-shine.png) top left no-repeat;
    background-size: 100% 100%;
    color: #ffffff;
    display: inline-block;
    font-size: 11.844px;
    font-weight: bold;
    line-height: 14px;
    margin-bottom: 15px;
    padding: 15px 5px;
    position: relative;
    text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
    vertical-align: baseline;
    white-space: nowrap;
  }
  .label-xl:before,
  .label-l:before {
    border-left: 9px solid transparent;
    border-right: 9px solid transparent;
    border-top: 9px solid #6393C1;
    bottom: -9px;
    content: '';
    display: inline-block;
    left: 47%;
    position: absolute;
  }
  .label-xl:after,
  .label-l:after {
    border-left: 0;
    border-right: 0;
    border-top: 0;
    bottom: -9px;
    content: '';
    display: inline-block;
    left: 47%;
    position: absolute;
  }
  .blog p img,
  .blog p img.pull-right {
    float: none;
    margin: 0px 0px 10px 0px;
    padding-left: 0px;
    width: 100%;
  }
  .twitter-bottom {
    background-color: #222;
    border-bottom: none;
    border-left: 0px;
    border-radius: 0px;
    border-right: none;
    border-top: 4px solid #6393C1;
    box-shadow: 0px 5px 12px rgba(0, 0, 0, 0.65);
    margin-bottom: 40px;
    min-height: 20px;
    -moz-border-radius: 0px;
    -moz-box-shadow: 0px 5px 12px rgba(0, 0, 0, 0.65);
    padding: 19px;
    position: relative;
    -webkit-border-radius: 0px;
    -webkit-box-shadow: 0px 5px 12px rgba(0, 0, 0, 0.65);
  }
  .twitter-bottom:before {
    border-left: 9px solid transparent;
    border-right: 9px solid transparent;
    border-top: 9px solid #6393C1;
    content: '';
    display: inline-block;
    left: 47%;
    position: absolute;
    top: 0px;
  }
  .thumbnails>li {
    float: none;
    margin-left: 20;
  }
  body {
    padding-left: 0px;
    padding-right: 0px;
    padding: 0px;
  }
  .container,
  .navbar .container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .headertop {
    position: relative;
  }
  #main-nav select {
    display: inline-block;
    width: 90% !important;
    margin-left: 5%;
  }

  #main-nav ul {
    display: none;
  }
  #main-nav select {
    display: inline-block;
    width: 90% !important;
    margin-left: 5%;
  }
  #main-nav {
    position: relative;
    right: auto;
    top: auto;
    width: 100%;
    z-index: 6;
  }
  * Remove any padding from the body */ body {
                                          padding-top: 0;
                                        }
  /* Widen needhead and social buttons to fill body padding */
  .headertop {

    /*margin-top: -20px;*/
    /* Offset bottom margin on .navbar */
    margin-right: -20px;
    margin-left: -20px;
  }
  .needhead h1 {
    font-size: 2.5em;
  }
  .needhead p,
  .needhead .btn {
    font-size: 16px;
  }
  .marketing .span4 {
    margin-bottom: 40px;
  }
  /* Unfloat the back to top link in footer */
  .footer {
    margin-left: -20px;
    margin-right: -20px;
    padding-left: 20px;
    padding-right: 20px;
  }


  #main-nav {
    float: right;
  }
}

@media (max-width: 480px) {
  /* Remove padding above headertop */
  body {
    padding-top: 0;
  }
  /* Change up some type stuff */
  h2 small {
    display: block;
  }
  /* Downsize the headertops */
  .headertop .btn {
    display: block;
    margin: 0 auto;
  }
  .needhead h1 {
    font-size: 2em;
  }
  .needhead p,
  .needhead .btn {
    font-size: 14px;
  }
  /* center align subhead text like the needhead */
  .subhead h1,
  .subhead p {
    text-align: center;
  }
  /* Marketing on home */
  .marketing h1 {
    font-size: 40px;
  }
  /* Do our best to make tables project in narrow viewports */
  table code {
    white-space: normal;
    word-wrap: break-word;
    word-break: break-all;
  }
  /* Modal example */
  .modal-example .modal {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
  }
  /* Unfloat the back to top in footer to prevent odd text wrapping */
  .footer .pull-right {
    float: none;
  }
  .navbar .btn-navbar {
    margin-top: 50px;
  }
  #project-filter {
    float: left;
  }
  .blog .indexMeta h2 {
    width: 200px;
    font-size: 20px !important;
  }
}


/*ADD*/

.navbar .brand {
  padding: 20px 20px 10px;
}

.navbar .brand img {
  max-height: 70px;
}

.navbar .nav>li>a {
  font-size: 16px;
  letter-spacing: 2px;
}

.footer {
  background: #c5deea url(../img/footerbg.jpg);
}

.sp-btn {
  background: #6393C1;
  padding: 15px 13px;
  width: 70px;
  display: inline-block;
  margin-top: 20px;
  color: #fff;
}

a.sp-btn:hover {
  text-decoration: none;
  /*background: #5ca5d0;*/
  color: #fff;
  transition: ease-in-out 0.3s;
  box-shadow: 2px 2px 5px rgba(50, 50, 50, 0.4);
}

.text-center {
  text-align: center !important;
}

.da-arrows span:after {
  background: transparent url(../img/bg_direction_nav.png) no-repeat 0 0;
}

.transit-to-top {
  height: 53px;
}

.thumbnail:hover h4, .thumbnail:hover h3 {
  margin-top: -58px;
}

p.caption-descr {
  line-height: 35px;
}

.sp1 {
  height: 42px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.news-table-5 {
  width: 5%;
}

.news-table-80 {
  width: 80%;
}

.news-table-15 {
  width: 15%;
}

.line3 span {
  padding: 0px 10px 7px 10px;
}

.standart-h4title {
  font-size: 19px;
}

.line3 {
  padding-bottom: 9px;
}

.footer {
  font-size: 16px;
  color: #f5f5f5;
}

ul.footer-links li {
  line-height: 26px;
  display: inline-block;
  background: rgba(52, 93, 132, 0.7);
  padding: 10px;
  margin: 5px;
  border-radius: 5px;
}

.needhead {
  height: 600px;
}

.b1-bg {
  background: url(../img/banner1-2.jpg) no-repeat;
  background-size: 100%;
  -webkit-animation: ease-in-out 1s; /* Safari */
  animation: ease-in-out 1s;

}

.b2-bg {
  background: url(../img/banner2-2.jpg) no-repeat;
  background-size: 100%;
  -webkit-animation: ease-in-out 1s; /* Safari */
  animation: ease-in-out 1s;
}

.b3-bg {
  background: url(../img/banner3-2.jpg) no-repeat;
  background-size: 100%;
  background-position: 100% 45%;
  -webkit-animation: ease-in-out 1s; /* Safari */
  animation: ease-in-out 1s;
}

.da-slider {
  width: 100%;
  min-width: 100%;
  height: 600px;
  margin: auto;
}

.line3 span:before {
  border-top: 5px solid #345d84;
}

.line3 {
  border-bottom: 1px solid #345d84;
}

.line3 span {
  border-bottom: 5px solid #345d84;
}

.footer-links li a {
  color: #f5f5f5;
  padding-left: 0;
  margin: 6px 8px;
}

.marketing a {
  color: #294a54;
}

.marketing a:hover {
  text-decoration: none;
}

.sp2 {
  font-size: 21px;
  margin: 22px 0;
}

.date-blog {
  line-height: 29px;
}

.sp3 {
  height: 86px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.sp4 {
  height: 80px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}



/*timeline*/

@media (min-width: 992px) {
  .about-timeline-section {
    margin-bottom: 50px;
  }

  .timeline-date {
    margin-bottom: 70px;
  }
}

.about-timeline {
  position: relative;
  padding: 0 0 30px;
  margin-bottom: 20px;
}

.timeline-date {
  background-color: #009688;
}

.timeline-date {
  padding: 0 10px;
  border-radius: 18px;
  font: 700 16px/30px 'Raleway', Verdana, sans-serif;
  letter-spacing: 1px;
  color: #fff;
  max-width: 90px;
  text-align: center;
  letter-spacing: 1px;
  position: relative;
  z-index: 5;
  margin-bottom: 50px;
}

.center-block {
  display: block;
  margin-right: auto;
  margin-left: auto;
}

.about-timeline-section {
  margin-bottom: 20px;
  padding: 0 15px 20px;
  border-bottom: 1px solid #eaeaea;
  background-color: transparent;
  position: relative;
  z-index: 5;
}

.timeline-section-date {
  font: 600 12px/26px 'Open Sans', Verdana, sans-serif;
  letter-spacing: 0.3px;
  display: block;
  padding: 0 12px;
  position: absolute;
  left: 100%;
  margin-left: 18px;
  top: 50%;
  margin-top: -13px;
  background-color: #eaeaea;
  white-space: nowrap;
  transition: all 0.4s ease;
  -webkit-transition: all 0.4s ease;
  visibility: hidden;
  opacity: 0;
  transform: translateX(30px);
  -webkit-transform: translateX(30px);
  border-radius: 6px;
}

.about-timeline-section:after {
  content: '';
  position: absolute;
  right: -20px;
  top: 50%;
  margin-top: -10px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 16px 10px 0;
  border-color: transparent #eaeaea transparent transparent;
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
}

.about-timeline:after {
  content: '';
  display: block;
  width: 4px;
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  background-color: #eaeaea;
  z-index: 1;
  margin-left: -2px;
}

.about-timeline .offset6 {
  text-align: right;
}

.about-timeline-section:hover::after, .about-timeline-section:hover .timeline-section-date {
  visibility: visible;
  opacity: 1;
  transform: translateX(0);
  -webkit-transform: translateX(0);
}

.offset6 > .about-timeline-section .timeline-section-date {
  left: auto;
  right: 100%;
  margin-left: 0;
  margin-right: -19px;
  transform: translateX(-30px);
  -webkit-transform: translateX(-30px);
}

.offset6 > .about-timeline-section:after {
  right: auto;
  left: -12px;
  border-width: 10px 0 10px 16px;
  border-color: transparent transparent transparent #eaeaea;
}

.about-timeline-section .row {
  margin-left: -1px;
  margin-right: -1px;
}

.bg {
  background: url(../img/bg3.jpg) no-repeat;
  background-size: 100%;
  background-position: bottom;
  margin-bottom: -70px;
  margin-top: -30px;
}

.sp5 {
  margin-bottom: 30px;
}

.pagination ul > .disabled > a, .pagination ul > .disabled > a:hover {
  color: #999999;
  background-color: #f5f5f5;
  cursor: default;
}

.sp6 {
  margin-top: 50px;
}

.sp7 {
  margin-bottom: 25px;
}

.st-content img {
  width: 180px;
}
.st-content p img {
  width: initial;
}

hr.sp_hr {
  border-top: 1px solid #ccc;
}

.sp8 {
  color: #2f62a5;
  font-size: 22px;
}

.thumbnail.sp_team_img {
  width: 100%;
  height: 230px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  overflow: hidden;
  background: #f5f5f587;
}

.sp_card {
  background: #f7f7f7;
  padding: 6px 15px;
  border-radius: 6px;
  box-shadow: 2px 2px 3px #ddd;
  margin-bottom: 12px;
}

.sp-btn2 {
  background: #6393C1;
  font-size: 16px;
  padding: 8px 12px;
  margin: 5px;
  color: #fff;
  box-shadow: 4px 5px 5px #ddd;
  border-radius: 5px;
}

.sp-btn2-2 {
  background: #e89393;
}

.sp-btn2:hover {
  box-shadow: 2px 2px 2px #bbb;
  color: #fff;
}

a.sp-btn2 {
  text-decoration: none;
}

.sp9 {
  margin-top: 20px;
  margin-bottom: 10px;
}

.sp10 {
  position: relative;
  top: 21%;
}

.sp11 {
  position: relative;
  top: 21%;
}

.sp_card h4 {
  color: #557e98;
}

.sp12 {
  margin: 0;
}

.widget-archive>li a {
  font-size: 18px;
  padding: 15px 0 3px 10px;
}

.navbar .nav li.dropdown.open>.dropdown-toggle, .navbar .nav li.dropdown.active>.dropdown-toggle, .navbar .nav li.dropdown.open.active>.dropdown-toggle {
  text-shadow: 2px 2px 3px #222222;
}

.line2 span {
  font-size: 24px;
}

a {
  color: #0d4da2;
  text-decoration: none;
}

/*.about-timeline-section img {
    width: 50%;
}*/

.timeline-date {
  margin-bottom: 0;
}

#rev_slider_wrapper {
  height: 580px !important;
}

#rev_slider {
  height: 580px !important;
}

.breadcrumb {
  background: #6393c100;
  border-bottom: none;
  border-radius: 0px;
  border-top: none;
}

.nl1 {
  padding-bottom: 25px;
}

.footer a:hover {
  text-decoration: none;
}

ul.footer-links li:hover {
  background: rgb(52, 93, 132);
}

.ba1 p {
  font-size: 13px;
}

.ba2 {
  width: 300px;
  display: inline-flex;
}

.ba3 {
  color: #0c4fa5;
  font-size: 16px;
}

.fa-icon-phone:before, .fa-icon-hospital:before {
  font-size: 20px;
}

/*.rev_slider > .item {
    position: relative;
    display: none;
    -webkit-transition: 0.6s ease-in-out left;
    -moz-transition: 0.6s ease-in-out left;
    -o-transition: 0.6s ease-in-out left;
    transition: 0.6s ease-in-out left;
}*/

/*ADD-789*/

.w100 {
  width: 100%;
}

.span4.hidden-xs {
  display: block;
}

.span4.hidden-sm {
  display: block;
}

.span4.hidden-md {
  display: none;
}

.trtc {
  text-align: right;
}

.tltc {
  text-align: left;
}

/*slide*/

.rev_slider_wrapper{
  position:relative;
  z-index: 0;
}


.rev_slider{
  position:relative;
  overflow:visible;
}

.entry-content .rev_slider a,
.rev_slider a { box-shadow: none; }

.tp-overflow-hidden {   overflow:hidden !important;}
.group_ov_hidden    {   overflow:hidden}

.tp-simpleresponsive img,
.rev_slider img{
  max-width:none !important;
  -moz-transition: none;
  -webkit-transition: none;
  -o-transition: none;
  transition: none;
  margin:0px;
  padding:0px;
  border-width:0px;
  border:none;
}

.rev_slider .no-slides-text{
  font-weight:bold;
  text-align:center;
  padding-top:80px;
}

.rev_slider >ul,
.rev_slider_wrapper >ul,
.tp-revslider-mainul >li,
.rev_slider >ul >li,
.rev_slider >ul >li:before,
.tp-revslider-mainul >li:before,
.tp-simpleresponsive >ul,
.tp-simpleresponsive >ul >li,
.tp-simpleresponsive >ul >li:before,
.tp-revslider-mainul >li,
.tp-simpleresponsive >ul >li{
  list-style:none !important;
  position:absolute;
  margin:0px !important;
  padding:0px !important;
  overflow-x: visible;
  overflow-y: visible;
  list-style-type: none !important;
  background-image:none;
  background-position:0px 0px;
  text-indent: 0em;
  top:0px;left:0px;
}


.tp-revslider-mainul >li,
.rev_slider >ul >li,
.rev_slider >ul >li:before,
.tp-revslider-mainul >li:before,
.tp-simpleresponsive >ul >li,
.tp-simpleresponsive >ul >li:before,
.tp-revslider-mainul >li,
.tp-simpleresponsive >ul >li {
  visibility:hidden;
}

.tp-revslider-slidesli,
.tp-revslider-mainul    {
  padding:0 !important;
  margin:0 !important;
  list-style:none !important;
}

.rev_slider li.tp-revslider-slidesli {
  position: absolute !important;
}


.tp-caption .rs-untoggled-content { display:block;}
.tp-caption .rs-toggled-content { display:none;}

.rs-toggle-content-active.tp-caption .rs-toggled-content { display:block;}
.rs-toggle-content-active.tp-caption .rs-untoggled-content { display:none;}

.rev_slider .tp-caption,
.rev_slider .caption    {
  position:relative;
  visibility:hidden;
  white-space: nowrap;
  display: block;
}


.rev_slider .tp-mask-wrap .tp-caption,
.rev_slider .tp-mask-wrap *:last-child,
.wpb_text_column .rev_slider .tp-mask-wrap .tp-caption,
.wpb_text_column .rev_slider .tp-mask-wrap *:last-child{
  margin-bottom:0;

}

.tp-svg-layer svg { width:100%; height:100%;position: relative;vertical-align: top}


/* CAROUSEL FUNCTIONS */
.tp-carousel-wrapper {
  cursor:url(openhand.cur), move;
}
.tp-carousel-wrapper.dragged {
  cursor:url(closedhand.cur), move;
}

/* ADDED FOR SLIDELINK MANAGEMENT */
.tp-caption {
  z-index:1
}

.tp_inner_padding {
  box-sizing:border-box;
  -webkit-box-sizing:border-box;
  -moz-box-sizing:border-box;
  max-height:none !important;
}


.tp-caption {
  -moz-user-select: none;
  -khtml-user-select: none;
  -webkit-user-select: none;
  -o-user-select: none;
  position:absolute;
  -webkit-font-smoothing: antialiased !important;
}

.tp-caption.tp-layer-selectable {
  -moz-user-select: all;
  -khtml-user-select: all;
  -webkit-user-select: all;
  -o-user-select: all;
}

.tp-forcenotvisible,
.tp-hide-revslider,
.tp-caption.tp-hidden-caption,
.tp-parallax-wrap.tp-hidden-caption {
  visibility:hidden !important;
  display:none !important
}

.rev_slider embed,
.rev_slider iframe,
.rev_slider object,
.rev_slider audio,
.rev_slider video {
  max-width: none !important
}

.tp-element-background  {   position:absolute; top:0px;left:0px; width:100%;height:100%;z-index:0;}

/***********************************************************
    -   ZONES / GOUP / ROW / COLUMN LAYERS AND HELPERS  -
***********************************************************/
.rev_row_zone                   {   position:absolute; width:100%;left:0px; box-sizing: border-box;min-height:50px; font-size:0px;}

.rev_row_zone_top               {   top:0px;}
.rev_row_zone_middle            {   top:50%; -webit-transform:translateY(-50%);transform:translateY(-50%);}
.rev_row_zone_bottom            {   bottom:0px;}

.rev_column .tp-parallax-wrap  { vertical-align: top }

.rev_slider .tp-caption.rev_row     {
  display:table;
  position:relative;
  width:100% !important;
  table-layout: fixed;
  box-sizing: border-box;
  vertical-align: top;
  height:auto !important;
  font-size:0px;
}

.rev_column {
  display: table-cell;
  position: relative;
  vertical-align: top;
  height: auto;
  box-sizing: border-box;
  font-size:0px;
}

.rev_column_inner {
  box-sizing: border-box;
  display: block;
  position: relative;
  width:100% !important;
  height:auto !important;
  white-space: normal !important;
}

.rev_column_bg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: 0;
  box-sizing: border-box;
  background-clip: content-box;
  border: 0px solid transparent;
}



.rev_column_inner .tp-parallax-wrap,
.rev_column_inner .tp-loop-wrap,
.rev_column_inner .tp-mask-wrap             {   text-align: inherit; }
.rev_column_inner .tp-mask-wrap             {   display: inline-block;}


.rev_column_inner .tp-parallax-wrap .tp-loop-wrap,
.rev_column_inner .tp-parallax-wrap .tp-mask-wrap,
.rev_column_inner .tp-parallax-wrap { position: relative !important; left:auto !important; top:auto !important; line-height: 0px;}

.rev_column_inner .tp-parallax-wrap .tp-loop-wrap,
.rev_column_inner .tp-parallax-wrap .tp-mask-wrap,
.rev_column_inner .tp-parallax-wrap,
.rev_column_inner .rev_layer_in_column { vertical-align: top; }

.rev_break_columns { display: block !important }
.rev_break_columns .tp-parallax-wrap.rev_column  { display:block !important; width:100% !important; }


/**********************************************
    -   FULLSCREEN AND FULLWIDHT CONTAINERS -
**********************************************/
.rev_slider_wrapper {   width:100%;}

.fullscreen-container {
  position:relative;
  padding:0;
}


.fullwidthbanner-container{
  position:relative;
  padding:0;
  overflow:hidden;
}

.fullwidthbanner-container .fullwidthabanner{
  width:100%;
  position:relative;
}



/*********************************
    -   SPECIAL TP CAPTIONS -
**********************************/

.tp-static-layers               {
  position:absolute; z-index:101; top:0px;left:0px;
  /*pointer-events:none;*/

}


.tp-caption .frontcorner        {
  width: 0;
  height: 0;
  border-left: 40px solid transparent;
  border-right: 0px solid transparent;
  border-top: 40px solid #00A8FF;
  position: absolute;left:-40px;top:0px;
}

.tp-caption .backcorner     {
  width: 0;
  height: 0;
  border-left: 0px solid transparent;
  border-right: 40px solid transparent;
  border-bottom: 40px solid #00A8FF;
  position: absolute;right:0px;top:0px;
}

.tp-caption .frontcornertop     {
  width: 0;
  height: 0;
  border-left: 40px solid transparent;
  border-right: 0px solid transparent;
  border-bottom: 40px solid #00A8FF;
  position: absolute;left:-40px;top:0px;
}

.tp-caption .backcornertop      {
  width: 0;
  height: 0;
  border-left: 0px solid transparent;
  border-right: 40px solid transparent;
  border-top: 40px solid #00A8FF;
  position: absolute;right:0px;top:0px;
}

.tp-layer-inner-rotation {
  position: relative !important;
}


/***********************************************
    -   SPECIAL ALTERNATIVE IMAGE SETTINGS  -
***********************************************/

img.tp-slider-alternative-image {
  width:100%; height:auto;
}


/******************************
    -   IE8 HACKS   -
*******************************/
.noFilterClass {
  filter:none !important;
}


/********************************
    -   FULLSCREEN VIDEO    -
*********************************/

.rs-background-video-layer      {   position: absolute;top:0px;left:0px; width:100%;height:100%;visibility: hidden;z-index: 0;}

.tp-caption.coverscreenvideo    {   width:100%;height:100%;top:0px;left:0px;position:absolute;}
.caption.fullscreenvideo,
.tp-caption.fullscreenvideo     {   left:0px; top:0px; position:absolute;width:100%;height:100%}

.caption.fullscreenvideo iframe,
.caption.fullscreenvideo audio,
.caption.fullscreenvideo video,
.tp-caption.fullscreenvideo iframe,
.tp-caption.fullscreenvideo iframe audio,
.tp-caption.fullscreenvideo iframe video    { width:100% !important; height:100% !important; display: none}

.fullcoveredvideo audio,
.fullscreenvideo audio
.fullcoveredvideo video,
.fullscreenvideo video              {   background: #000}

.fullcoveredvideo .tp-poster        {   background-position: center center;background-size: cover;width:100%;height:100%;top:0px;left:0px}


.videoisplaying .html5vid .tp-poster    {   display: none}

.tp-video-play-button                   {
  background:#000;
  background:rgba(0,0,0,0.3);
  border-radius:5px;-moz-border-radius:5px;-webkit-border-radius:5px;
  position: absolute;
  top: 50%;
  left: 50%;
  color: #FFF;
  z-index: 3;
  margin-top: -25px;
  margin-left: -25px;
  line-height: 50px !important;
  text-align: center;
  cursor: pointer;
  width: 50px;
  height:50px;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  display: inline-block;
  vertical-align: top;
  z-index: 4;
  opacity: 0;
  -webkit-transition:opacity 300ms ease-out !important;
  -moz-transition:opacity 300ms ease-out !important;
  -o-transition:opacity 300ms ease-out !important;
  transition:opacity 300ms ease-out !important;
}

.tp-hiddenaudio,
.tp-audio-html5 .tp-video-play-button { display:none !important;}
.tp-caption .html5vid                   {   width:100% !important; height:100% !important;}
.tp-video-play-button i                 {   width:50px;height:50px; display:inline-block; text-align: center; vertical-align: top; line-height: 50px !important; font-size: 40px !important;}
.tp-caption:hover .tp-video-play-button {   opacity: 1;}
.tp-caption .tp-revstop                 {   display:none; border-left:5px solid #fff !important; border-right:5px solid #fff !important;margin-top:15px !important;line-height: 20px !important;vertical-align: top; font-size:25px !important;}
.videoisplaying .revicon-right-dir      {   display:none}
.videoisplaying .tp-revstop             {   display:inline-block}

.videoisplaying  .tp-video-play-button          {   display:none}
.tp-caption:hover .tp-video-play-button         {   display:block}

.fullcoveredvideo .tp-video-play-button         {   display:none !important}


.fullscreenvideo .fullscreenvideo audio         {   object-fit:contain !important;}
.fullscreenvideo .fullscreenvideo video         {   object-fit:contain !important;}

.fullscreenvideo .fullcoveredvideo audio        {   object-fit:cover !important;}
.fullscreenvideo .fullcoveredvideo video        {   object-fit:cover !important;}

.tp-video-controls {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 5px;
  opacity: 0;
  -webkit-transition: opacity .3s;
  -moz-transition: opacity .3s;
  -o-transition: opacity .3s;
  -ms-transition: opacity .3s;
  transition: opacity .3s;
  background-image: linear-gradient(to bottom, rgb(0,0,0) 13%, rgb(50,50,50) 100%);
  background-image: -o-linear-gradient(bottom, rgb(0,0,0) 13%, rgb(50,50,50) 100%);
  background-image: -moz-linear-gradient(bottom, rgb(0,0,0) 13%, rgb(50,50,50) 100%);
  background-image: -webkit-linear-gradient(bottom, rgb(0,0,0) 13%, rgb(50,50,50) 100%);
  background-image: -ms-linear-gradient(bottom, rgb(0,0,0) 13%, rgb(50,50,50) 100%);
  background-image: -webkit-gradient(linear,left bottom,left top,color-stop(0.13, rgb(0,0,0)),color-stop(1, rgb(50,50,50)));
  display:table;max-width:100%; overflow:hidden;box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;
}

.tp-caption:hover .tp-video-controls {  opacity: .9;}

.tp-video-button {
  background: rgba(0,0,0,.5);
  border: 0;
  color: #EEE;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -o-border-radius: 3px;
  border-radius: 3px;
  cursor:pointer;
  line-height:12px;
  font-size:12px;
  color:#fff;
  padding:0px;
  margin:0px;
  outline: none;
}
.tp-video-button:hover              {   cursor: pointer;}


.tp-video-button-wrap,
.tp-video-seek-bar-wrap,
.tp-video-vol-bar-wrap              {   padding:0px 5px;display:table-cell; vertical-align: middle;}

.tp-video-seek-bar-wrap             {   width:80%}
.tp-video-vol-bar-wrap              {   width:20%}

.tp-volume-bar,
.tp-seek-bar                        {   width:100%; cursor: pointer;  outline:none; line-height:12px;margin:0; padding:0;}


.rs-fullvideo-cover                 {   width:100%;height:100%;top:0px;left:0px;position: absolute; background:transparent;z-index:5;}


.rs-background-video-layer video::-webkit-media-controls { display:none !important;}
.rs-background-video-layer audio::-webkit-media-controls { display:none !important;}

.rs-background-video-layer video::-webkit-media-controls-start-playback-button {
  display: none !important;
}

.tp-audio-html5 .tp-video-controls {    opacity: 1 !important; visibility: visible !important}

.disabled_lc .tp-video-play-button { display:none !important; }
.disabled_lc .tp-video-play-button { display:none !important; }

/********************************
    -   DOTTED OVERLAYS -
*********************************/
.tp-dottedoverlay                       {   background-repeat:repeat;width:100%;height:100%;position:absolute;top:0px;left:0px;z-index:3}
.tp-dottedoverlay.twoxtwo               {   background:url(../assets/gridtile.png)}
.tp-dottedoverlay.twoxtwowhite          {   background:url(../assets/gridtile_white.png)}
.tp-dottedoverlay.threexthree           {   background:url(../assets/gridtile_3x3.png)}
.tp-dottedoverlay.threexthreewhite      {   background:url(../assets/gridtile_3x3_white.png)}


/******************************
    -   SHADOWS     -
******************************/

.tp-shadowcover {   width:100%;height:100%;top:0px;left:0px;background: #fff;position: absolute; z-index: -1;}
.tp-shadow1 {
  -webkit-box-shadow: 0 10px 6px -6px rgba(0,0,0,0.8);
  -moz-box-shadow: 0 10px 6px -6px rgba(0,0,0,0.8);
  box-shadow: 0 10px 6px -6px rgba(0,0,0,0.8);
}

.tp-shadow2:before, .tp-shadow2:after,
.tp-shadow3:before, .tp-shadow4:after
{
  z-index: -2;
  position: absolute;
  content: "";
  bottom: 10px;
  left: 10px;
  width: 50%;
  top: 85%;
  max-width:300px;
  background: transparent;
  -webkit-box-shadow: 0 15px 10px rgba(0,0,0,0.8);
  -moz-box-shadow: 0 15px 10px rgba(0,0,0,0.8);
  box-shadow: 0 15px 10px rgba(0,0,0,0.8);
  -webkit-transform: rotate(-3deg);
  -moz-transform: rotate(-3deg);
  -o-transform: rotate(-3deg);
  -ms-transform: rotate(-3deg);
  transform: rotate(-3deg);
}

.tp-shadow2:after,
.tp-shadow4:after
{
  -webkit-transform: rotate(3deg);
  -moz-transform: rotate(3deg);
  -o-transform: rotate(3deg);
  -ms-transform: rotate(3deg);
  transform: rotate(3deg);
  right: 10px;
  left: auto;
}

.tp-shadow5
{
  position:relative;
  -webkit-box-shadow:0 1px 4px rgba(0, 0, 0, 0.3), 0 0 40px rgba(0, 0, 0, 0.1) inset;
  -moz-box-shadow:0 1px 4px rgba(0, 0, 0, 0.3), 0 0 40px rgba(0, 0, 0, 0.1) inset;
  box-shadow:0 1px 4px rgba(0, 0, 0, 0.3), 0 0 40px rgba(0, 0, 0, 0.1) inset;
}
.tp-shadow5:before, .tp-shadow5:after
{
  content:"";
  position:absolute;
  z-index:-2;
  -webkit-box-shadow:0 0 25px 0px rgba(0,0,0,0.6);
  -moz-box-shadow:0 0 25px 0px  rgba(0,0,0,0.6);
  box-shadow:0 0 25px 0px  rgba(0,0,0,0.6);
  top:30%;
  bottom:0;
  left:20px;
  right:20px;
  -moz-border-radius:100px / 20px;
  border-radius:100px / 20px;
}

.tp-bannertimer                             {   visibility: hidden; width:100%; height:5px; /*background:url(../assets/timer.png);*/ background: #fff; background: rgba(0,0,0,0.15); position:absolute; z-index:200; top:0px}
.tp-bannertimer.tp-bottom                   {   top:auto; bottom:0px !important;height:5px}


/*********************************************
-   BASIC SETTINGS FOR THE BANNER   -
***********************************************/

.tp-simpleresponsive img {
  -moz-user-select: none;
  -khtml-user-select: none;
  -webkit-user-select: none;
  -o-user-select: none;
}

.tp-caption img {
  background: transparent;
  -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#00FFFFFF,endColorstr=#00FFFFFF)";
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#00FFFFFF,endColorstr=#00FFFFFF);
  zoom: 1;
}



/*  CAPTION SLIDELINK   **/
.caption.slidelink a div,
.tp-caption.slidelink a div {   width:3000px; height:1500px;  background:url(../assets/coloredbg.png) repeat}
.tp-caption.slidelink a span{   background:url(../assets/coloredbg.png) repeat}
.tp-shape { width:100%;height:100%;}

.tparrows                       {   cursor:pointer; background:#000; background:rgba(0,0,0,0.5); width:40px;height:40px;position:absolute; display:block; z-index:1000; }
.tparrows:hover                 {   background:#000;}
.tparrows:before                {   font-family: "revicons"; font-size:15px; color:#fff; display:block; line-height: 40px; text-align: center;}
.tparrows.tp-leftarrow:before   {   content: '\e824'; }
.tparrows.tp-rightarrow:before  {   content: '\e825'; }

.ares.tparrows {
  cursor:pointer;
  background:#fff;
  min-width:60px;
  min-height:60px;
  position:absolute;
  display:block;
  z-index:100;
  border-radius:50%;
}
.ares.tparrows:hover {
}
.ares.tparrows:before {
  font-family: "revicons";
  font-size:25px;
  color:#aaa;
  display:block;
  line-height: 60px;
  text-align: center;
  -webkit-transition: color 0.3s;
  -moz-transition: color 0.3s;
  transition: color 0.3s;
  z-index:2;
  position:relative;
}
.ares.tparrows.tp-leftarrow:before {
  content: "\e81f";
}
.ares.tparrows.tp-rightarrow:before {
  content: "\e81e";
}
.ares.tparrows:hover:before {
  color:#000;
}
.ares .tp-title-wrap {
  position:absolute;
  z-index:1;
  display:inline-block;
  background:#fff;
  min-height:60px;
  line-height:60px;
  top:0px;
  margin-left:30px;
  border-radius:0px 30px 30px 0px;
  overflow:hidden;
  -webkit-transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transform:scaleX(0);
  -webkit-transform:scaleX(0);
  transform-origin:0% 50%;
  -webkit-transform-origin:0% 50%;
}
.ares.tp-rightarrow .tp-title-wrap {
  right:0px;
  margin-right:30px;margin-left:0px;
  -webkit-transform-origin:100% 50%;
  border-radius:30px 0px 0px 30px;
}
.ares.tparrows:hover .tp-title-wrap {
  transform:scaleX(1) scaleY(1);
  -webkit-transform:scaleX(1) scaleY(1);
}
.ares .tp-arr-titleholder {
  position:relative;
  -webkit-transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transform:translateX(200px);
  text-transform:uppercase;
  color:#000;
  font-weight:400;
  font-size:14px;
  line-height:60px;
  white-space:nowrap;
  padding:0px 20px;
  margin-left:10px;
  opacity:0;
}

.ares.tp-rightarrow .tp-arr-titleholder {
  transform:translateX(-200px);
  margin-left:0px; margin-right:10px;
}

.ares.tparrows:hover .tp-arr-titleholder {
  transform:translateX(0px);
  -webkit-transform:translateX(0px);
  transition-delay: 0.1s;
  opacity:1;
}

/* BULLETS */
.ares.tp-bullets {
}
.ares.tp-bullets:before {
  content:" ";
  position:absolute;
  width:100%;
  height:100%;
  background:transparent;
  padding:10px;
  margin-left:-10px;margin-top:-10px;
  box-sizing:content-box;
}
.ares .tp-bullet {
  width:13px;
  height:13px;
  position:absolute;
  background:#e5e5e5;
  border-radius:50%;
  cursor: pointer;
  box-sizing:content-box;
}
.ares .tp-bullet:hover,
.ares .tp-bullet.selected {
  background:#fff;
}
.ares .tp-bullet-title {
  position:absolute;
  color:#888;
  font-size:12px;
  padding:0px 10px;
  font-weight:600;
  right:27px;
  top:-4px;
  background:#fff;
  background:rgba(255,255,255,0.75);
  visibility:hidden;
  transform:translateX(-20px);
  -webkit-transform:translateX(-20px);
  transition:transform 0.3s;
  -webkit-transition:transform 0.3s;
  line-height:20px;
  white-space:nowrap;
}

.ares .tp-bullet-title:after {
  width: 0px;
  height: 0px;
  border-style: solid;
  border-width: 10px 0 10px 10px;
  border-color: transparent transparent transparent rgba(255,255,255,0.75);
  content:" ";
  position:absolute;
  right:-10px;
  top:0px;
}

.ares .tp-bullet:hover .tp-bullet-title{
  visibility:visible;
  transform:translateX(0px);
  -webkit-transform:translateX(0px);
}

.ares .tp-bullet.selected:hover .tp-bullet-title {
  background:#fff;
}
.ares .tp-bullet.selected:hover .tp-bullet-title:after {
  border-color:transparent transparent transparent #fff;
}
.ares.tp-bullets:hover .tp-bullet-title {
  visibility:hidden;
}
.ares.tp-bullets:hover .tp-bullet:hover .tp-bullet-title {
  visibility:visible;
}

/* TABS */
.ares .tp-tab {
  opacity:1;
  padding:10px;
  box-sizing:border-box;
  font-family: "Roboto", sans-serif;
  border-bottom: 1px solid #e5e5e5;
}
.ares .tp-tab-image
{
  width:60px;
  height:60px; max-height:100%; max-width:100%;
  position:relative;
  display:inline-block;
  float:left;

}
.ares .tp-tab-content
{
  background:rgba(0,0,0,0);
  position:relative;
  padding:15px 15px 15px 85px;
  left:0px;
  overflow:hidden;
  margin-top:-15px;
  box-sizing:border-box;
  color:#333;
  display: inline-block;
  width:100%;
  height:100%;
  position:absolute; }
.ares .tp-tab-date
{
  display:block;
  color: #aaa;
  font-weight:500;
  font-size:12px;
  margin-bottom:0px;
}
.ares .tp-tab-title
{
  display:block;
  text-align:left;
  color:#333;
  font-size:14px;
  font-weight:500;
  text-transform:none;
  line-height:17px;
}
.ares .tp-tab:hover,
.ares .tp-tab.selected {
  background:#eee;
}

.ares .tp-tab-mask {
}

/* MEDIA QUERIES */
@media only screen and (max-width: 960px) {

}
@media only screen and (max-width: 768px) {

}

/*-----------------------------------------------------------------------------

- Revolution Slider 5.0 Navigatin Skin Style  -

 CUSTOM SKIN

author:  ThemePunch
email:      info@themepunch.com
website:    http://www.themepunch.com
-----------------------------------------------------------------------------*/
/* ARROWS */
.custom.tparrows {
  cursor:pointer;
  background:#000;
  background:rgba(0,0,0,0.5);
  width:40px;
  height:40px;
  position:absolute;
  display:block;
  z-index:10000;
}
.custom.tparrows:hover {
  background:#000;
}
.custom.tparrows:before {
  font-family: "revicons";
  font-size:15px;
  color:#fff;
  display:block;
  line-height: 40px;
  text-align: center;
}
.custom.tparrows.tp-leftarrow:before {
  content: "\e824";
}
.custom.tparrows.tp-rightarrow:before {
  content: "\e825";
}



/* BULLETS */
.custom.tp-bullets {
}
.custom.tp-bullets:before {
  content:" ";
  position:absolute;
  width:100%;
  height:100%;
  background:transparent;
  padding:10px;
  margin-left:-10px;margin-top:-10px;
  box-sizing:content-box;
}
.custom .tp-bullet {
  width:12px;
  height:12px;
  position:absolute;
  background:#aaa;
  background:rgba(125,125,125,0.5);
  cursor: pointer;
  box-sizing:content-box;
}
.custom .tp-bullet:hover,
.custom .tp-bullet.selected {
  background:rgb(125,125,125);
}
.custom .tp-bullet-image {
}
.custom .tp-bullet-title {
}


/* THUMBS */


/* TABS */


/*-----------------------------------------------------------------------------

- Revolution Slider 5.0 Navigatin Skin Style  -

 DIONE SKIN

author:  ThemePunch
email:      info@themepunch.com
website:    http://www.themepunch.com
-----------------------------------------------------------------------------*/
/* ARROWS */
.dione.tparrows {
  height:100%;
  width:100px;
  background:transparent;
  background:rgba(0,0,0,0);
  line-height:100%;
  transition:all 0.3s;
  -webkit-transition:all 0.3s;
}

.dione.tparrows:hover {
  background:rgba(0,0,0,0.45);
}
.dione .tp-arr-imgwrapper {
  width:100px;
  left:0px;
  position:absolute;
  height:100%;
  top:0px;
  overflow:hidden;
}
.dione.tp-rightarrow .tp-arr-imgwrapper {
  left:auto;
  right:0px;
}

.dione .tp-arr-imgholder {
  background-position:center center;
  background-size:cover;
  width:100px;
  height:100%;
  top:0px;
  visibility:hidden;
  transform:translateX(-50px);
  -webkit-transform:translateX(-50px);
  transition:all 0.3s;
  -webkit-transition:all 0.3s;
  opacity:0;
  left:0px;
}

.dione.tparrows.tp-rightarrow .tp-arr-imgholder {
  right:0px;
  left:auto;
  transform:translateX(50px);
  -webkit-transform:translateX(50px);
}

.dione.tparrows:before {
  position:absolute;
  line-height:30px;
  margin-left:-22px;
  top:50%;
  left:50%;
  font-size:30px;
  margin-top:-15px;
  transition:all 0.3s;
  -webkit-transition:all 0.3s;
}

.dione.tparrows.tp-rightarrow:before {
  margin-left:6px;
}

.dione.tparrows:hover:before {
  transform:translateX(-20px);
  -webkit-transform:translateX(-20px);
  opacity:0;
}

.dione.tparrows.tp-rightarrow:hover:before {
  transform:translateX(20px);
  -webkit-transform:translateX(20px);
}

.dione.tparrows:hover .tp-arr-imgholder {
  transform:translateX(0px);
  -webkit-transform:translateX(0px);
  opacity:1;
  visibility:visible;
}



/* BULLETS */
.dione .tp-bullet {
  opacity:1;
  width:50px;
  height:50px;
  padding:3px;
  background:#000;
  background-color:rgba(0,0,0,0.25);
  margin:0px;
  box-sizing:border-box;
  transition:all 0.3s;
  -webkit-transition:all 0.3s;

}

.dione .tp-bullet-image {
  display:block;
  box-sizing:border-box;
  position:relative;
  -webkit-box-shadow: inset 5px 5px 10px 0px rgba(0,0,0,0.25);
  -moz-box-shadow: inset 5px 5px 10px 0px rgba(0,0,0,0.25);
  box-shadow: inset 5px 5px 10px 0px rgba(0,0,0,0.25);
  width:44px;
  height:44px;
  background-size:cover;
  background-position:center center;
}
.dione .tp-bullet-title {
  position:absolute;
  bottom:65px;
  display:inline-block;
  left:50%;
  background:#000;
  background:rgba(0,0,0,0.75);
  color:#fff;
  padding:10px 30px;
  border-radius:4px;
  -webkit-border-radius:4px;
  opacity:0;
  transition:all 0.3s;
  -webkit-transition:all 0.3s;
  transform: translateZ(0.001px) translateX(-50%) translateY(14px);
  transform-origin:50% 100%;
  -webkit-transform: translateZ(0.001px) translateX(-50%) translateY(14px);
  -webkit-transform-origin:50% 100%;
  opacity:0;
  white-space:nowrap;
}

.dione .tp-bullet:hover .tp-bullet-title {
  transform:rotateX(0deg) translateX(-50%);
  -webkit-transform:rotateX(0deg) translateX(-50%);
  opacity:1;
}

.dione .tp-bullet.selected,
.dione .tp-bullet:hover  {

  background: rgba(255,255,255,1);
  background: -moz-linear-gradient(top, rgba(255,255,255,1) 0%, rgba(119,119,119,1) 100%);
  background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(255,255,255,1)), color-stop(100%, rgba(119,119,119,1)));
  background: -webkit-linear-gradient(top, rgba(255,255,255,1) 0%, rgba(119,119,119,1) 100%);
  background: -o-linear-gradient(top, rgba(255,255,255,1) 0%, rgba(119,119,119,1) 100%);
  background: -ms-linear-gradient(top, rgba(255,255,255,1) 0%, rgba(119,119,119,1) 100%);
  background: linear-gradient(to bottom, rgba(255,255,255,1) 0%, rgba(119,119,119,1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#ffffff", endColorstr="#777777", GradientType=0 );

}
.dione .tp-bullet-title:after {
  content:" ";
  position:absolute;
  left:50%;
  margin-left:-8px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 8px 8px 0 8px;
  border-color: rgba(0,0,0,0.75) transparent transparent transparent;
  bottom:-8px;
}


/*-----------------------------------------------------------------------------

- Revolution Slider 5.0 Navigatin Skin Style  -

 ERINYEN SKIN

author:  ThemePunch
email:      info@themepunch.com
website:    http://www.themepunch.com
-----------------------------------------------------------------------------*/
/* ARROWS */
.erinyen.tparrows {
  cursor:pointer;
  background:#000;
  background:rgba(0,0,0,0.5);
  min-width:70px;
  min-height:70px;
  position:absolute;
  display:block;
  z-index:1000;
  border-radius:35px;
}

.erinyen.tparrows:before {
  font-family: "revicons";
  font-size:20px;
  color:#fff;
  display:block;
  line-height: 70px;
  text-align: center;
  z-index:2;
  position:relative;
}
.erinyen.tparrows.tp-leftarrow:before {
  content: "\e824";
}
.erinyen.tparrows.tp-rightarrow:before {
  content: "\e825";
}

.erinyen .tp-title-wrap {
  position:absolute;
  z-index:1;
  display:inline-block;
  background:#000;
  background:rgba(0,0,0,0.5);
  min-height:70px;
  line-height:70px;
  top:0px;
  margin-left:0px;
  border-radius:35px;
  overflow:hidden;
  transition: opacity 0.3s;
  -webkit-transition:opacity 0.3s;
  -moz-transition:opacity 0.3s;
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  transform: scale(0);
  visibility:hidden;
  opacity:0;
}

.erinyen.tparrows:hover .tp-title-wrap{
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  transform: scale(1);
  opacity:1;
  visibility:visible;
}

.erinyen.tp-rightarrow .tp-title-wrap {
  right:0px;
  margin-right:0px;margin-left:0px;
  -webkit-transform-origin:100% 50%;
  border-radius:35px;
  padding-right:20px;
  padding-left:10px;
}


.erinyen.tp-leftarrow .tp-title-wrap {
  padding-left:20px;
  padding-right:10px;
}

.erinyen .tp-arr-titleholder {
  letter-spacing: 3px;
  position:relative;
  -webkit-transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transform:translateX(200px);
  text-transform:uppercase;
  color:#fff;
  font-weight:600;
  font-size:13px;
  line-height:70px;
  white-space:nowrap;
  padding:0px 20px;
  margin-left:11px;
  opacity:0;
}

.erinyen .tp-arr-imgholder {
  width:100%;
  height:100%;
  position:absolute;
  top:0px;
  left:0px;
  background-position:center center;
  background-size:cover;
}
.erinyen .tp-arr-img-over {
  width:100%;
  height:100%;
  position:absolute;
  top:0px;
  left:0px;
  background:#000;
  background:rgba(0,0,0,0.5);
}
.erinyen.tp-rightarrow .tp-arr-titleholder {
  transform:translateX(-200px);
  margin-left:0px; margin-right:11px;
}

.erinyen.tparrows:hover .tp-arr-titleholder {
  transform:translateX(0px);
  -webkit-transform:translateX(0px);
  transition-delay: 0.1s;
  opacity:1;
}

/* BULLETS */
.erinyen.tp-bullets {
}
.erinyen.tp-bullets:before {
  content:" ";
  position:absolute;
  width:100%;
  height:100%;
  background: #555555; /* old browsers */
  background: -moz-linear-gradient(top,  #555555 0%, #222222 100%); /* ff3.6+ */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#555555), color-stop(100%,#222222)); /* chrome,safari4+ */
  background: -webkit-linear-gradient(top,  #555555 0%,#222222 100%); /* chrome10+,safari5.1+ */
  background: -o-linear-gradient(top,  #555555 0%,#222222 100%); /* opera 11.10+ */
  background: -ms-linear-gradient(top,  #555555 0%,#222222 100%); /* ie10+ */
  background: linear-gradient(to bottom,  #555555 0%,#222222 100%); /* w3c */
  filter: progid:dximagetransform.microsoft.gradient( startcolorstr="#555555", endcolorstr="#222222",gradienttype=0 ); /* ie6-9 */
  padding:10px 15px;
  margin-left:-15px;margin-top:-10px;
  box-sizing:content-box;
  border-radius:10px;
  box-shadow:0px 0px 2px 1px rgba(33,33,33,0.3);
}
.erinyen .tp-bullet {
  width:13px;
  height:13px;
  position:absolute;
  background:#111;
  border-radius:50%;
  cursor: pointer;
  box-sizing:content-box;
}
.erinyen .tp-bullet:hover,
.erinyen .tp-bullet.selected {
  background: #e5e5e5; /* old browsers */
  background: -moz-linear-gradient(top,  #e5e5e5 0%, #999999 100%); /* ff3.6+ */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#e5e5e5), color-stop(100%,#999999)); /* chrome,safari4+ */
  background: -webkit-linear-gradient(top,  #e5e5e5 0%,#999999 100%); /* chrome10+,safari5.1+ */
  background: -o-linear-gradient(top,  #e5e5e5 0%,#999999 100%); /* opera 11.10+ */
  background: -ms-linear-gradient(top,  #e5e5e5 0%,#999999 100%); /* ie10+ */
  background: linear-gradient(to bottom,  #e5e5e5 0%,#999999 100%); /* w3c */
  filter: progid:dximagetransform.microsoft.gradient( startcolorstr="#e5e5e5", endcolorstr="#999999",gradienttype=0 ); /* ie6-9 */
  border:1px solid #555;
  width:12px;height:12px;
}
.erinyen .tp-bullet-image {
}
.erinyen .tp-bullet-title {
}


/* THUMBS */
.erinyen .tp-thumb {
  opacity:1
}

.erinyen .tp-thumb-over {
  background:#000;
  background:rgba(0,0,0,0.25);
  width:100%;
  height:100%;
  position:absolute;
  top:0px;
  left:0px;
  z-index:1;
  -webkit-transition:all 0.3s;
  transition:all 0.3s;
}

.erinyen .tp-thumb-more:before {
  font-family: "revicons";
  font-size:12px;
  color:#aaa;
  color:rgba(255,255,255,0.75);
  display:block;
  line-height: 12px;
  text-align: left;
  z-index:2;
  position:absolute;
  top:20px;
  right:20px;
  z-index:2;
}
.erinyen .tp-thumb-more:before {
  content: "\e825";
}

.erinyen .tp-thumb-title {
  font-family:"Raleway";
  letter-spacing:1px;
  font-size:12px;
  color:#fff;
  display:block;
  line-height: 15px;
  text-align: left;
  z-index:2;
  position:absolute;
  top:0px;
  left:0px;
  z-index:2;
  padding:20px 35px 20px 20px;
  width:100%;
  height:100%;
  box-sizing:border-box;
  transition:all 0.3s;
  -webkit-transition:all 0.3s;
  font-weight:500;
}

.erinyen .tp-thumb.selected .tp-thumb-more:before,
.erinyen .tp-thumb:hover .tp-thumb-more:before {
  color:#aaa;

}

.erinyen .tp-thumb.selected .tp-thumb-over,
.erinyen .tp-thumb:hover .tp-thumb-over {
  background:#fff;
}
.erinyen .tp-thumb.selected .tp-thumb-title,
.erinyen .tp-thumb:hover .tp-thumb-title {
  color:#000;

}


/* TABS */
.erinyen .tp-tab-title {
  color:#a8d8ee;
  font-size:13px;
  font-weight:700;
  text-transform:uppercase;
  font-family:"Roboto Slab"
  margin-bottom:5px;
}

.erinyen .tp-tab-desc {
  font-size:18px;
  font-weight:400;
  color:#fff;
  line-height:25px;
  font-family:"Roboto Slab";
}


/*-----------------------------------------------------------------------------

- Revolution Slider 5.0 Navigatin Skin Style  -

 GYGES SKIN

author:  ThemePunch
email:      info@themepunch.com
website:    http://www.themepunch.com
-----------------------------------------------------------------------------*/
/* ARROWS */


/* BULLETS */
.gyges.tp-bullets {
}
.gyges.tp-bullets:before {
  content:" ";
  position:absolute;
  width:100%;
  height:100%;
  background: #777777; /* Old browsers */
  background: -moz-linear-gradient(top,  #777777 0%, #666666 100%);
  background: -webkit-gradient(linear, left top, left bottom,
  color-stop(0%,#777777), color-stop(100%,#666666));
  background: -webkit-linear-gradient(top,  #777777 0%,#666666 100%);
  background: -o-linear-gradient(top,  #777777 0%,#666666 100%);
  background: -ms-linear-gradient(top,  #777777 0%,#666666 100%);
  background: linear-gradient(to bottom,  #777777 0%,#666666 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#777777",
  endColorstr="#666666",GradientType=0 );
  padding:10px;
  margin-left:-10px;margin-top:-10px;
  box-sizing:content-box;
  border-radius:10px;
}
.gyges .tp-bullet {
  width:12px;
  height:12px;
  position:absolute;
  background:#333;
  border:3px solid #444;
  border-radius:50%;
  cursor: pointer;
  box-sizing:content-box;
}
.gyges .tp-bullet:hover,
.gyges .tp-bullet.selected {
  background: #ffffff; /* Old browsers */
  background: -moz-linear-gradient(top,  #ffffff 0%, #e1e1e1 100%); /* FF3.6+ */
  background: -webkit-gradient(linear, left top, left bottom,
  color-stop(0%,#ffffff), color-stop(100%,#e1e1e1)); /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(top,  #ffffff 0%,#e1e1e1 100%); /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(top,  #ffffff 0%,#e1e1e1 100%); /* Opera 11.10+ */
  background: -ms-linear-gradient(top,  #ffffff 0%,#e1e1e1 100%); /* IE10+ */
  background: linear-gradient(to bottom,  #ffffff 0%,#e1e1e1 100%); /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#ffffff",
  endColorstr="#e1e1e1",GradientType=0 ); /* IE6-9 */

}
.gyges .tp-bullet-image {
}
.gyges .tp-bullet-title {
}


/* THUMBS */
.gyges .tp-thumb {
  opacity:1
}
.gyges .tp-thumb-img-wrap {
  padding:3px;
  background:#000;
  background-color:rgba(0,0,0,0.25);
  display:inline-block;

  width:100%;
  height:100%;
  position:relative;
  margin:0px;
  box-sizing:border-box;
  transition:all 0.3s;
  -webkit-transition:all 0.3s;
}
.gyges .tp-thumb-image {
  padding:3px;
  display:block;
  box-sizing:border-box;
  position:relative;
  -webkit-box-shadow: inset 5px 5px 10px 0px rgba(0,0,0,0.25);
  -moz-box-shadow: inset 5px 5px 10px 0px rgba(0,0,0,0.25);
  box-shadow: inset 5px 5px 10px 0px rgba(0,0,0,0.25);
}
.gyges .tp-thumb-title {
  position:absolute;
  bottom:100%;
  display:inline-block;
  left:50%;
  background:rgba(255,255,255,0.8);
  padding:10px 30px;
  border-radius:4px;
  -webkit-border-radius:4px;
  margin-bottom:20px;
  opacity:0;
  transition:all 0.3s;
  -webkit-transition:all 0.3s;
  transform: translateZ(0.001px) translateX(-50%) translateY(14px);
  transform-origin:50% 100%;
  -webkit-transform: translateZ(0.001px) translateX(-50%) translateY(14px);
  -webkit-transform-origin:50% 100%;
  white-space:nowrap;
}
.gyges .tp-thumb:hover .tp-thumb-title {
  transform:rotateX(0deg) translateX(-50%);
  -webkit-transform:rotateX(0deg) translateX(-50%);
  opacity:1;
}

.gyges .tp-thumb:hover .tp-thumb-img-wrap,
.gyges .tp-thumb.selected .tp-thumb-img-wrap {

  background: rgba(255,255,255,1);
  background: -moz-linear-gradient(top, rgba(255,255,255,1) 0%, rgba(119,119,119,1) 100%);
  background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(255,255,255,1)), color-stop(100%, rgba(119,119,119,1)));
  background: -webkit-linear-gradient(top, rgba(255,255,255,1) 0%, rgba(119,119,119,1) 100%);
  background: -o-linear-gradient(top, rgba(255,255,255,1) 0%, rgba(119,119,119,1) 100%);
  background: -ms-linear-gradient(top, rgba(255,255,255,1) 0%, rgba(119,119,119,1) 100%);
  background: linear-gradient(to bottom, rgba(255,255,255,1) 0%, rgba(119,119,119,1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#ffffff", endColorstr="#777777", GradientType=0 );
}
.gyges .tp-thumb-title:after {
  content:" ";
  position:absolute;
  left:50%;
  margin-left:-8px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 8px 8px 0 8px;
  border-color: rgba(255,255,255,0.8) transparent transparent transparent;
  bottom:-8px;
}


/* TABS */
.gyges .tp-tab {
  opacity:1;
  padding:10px;
  box-sizing:border-box;
  font-family: "Roboto", sans-serif;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}
.gyges .tp-tab-image
{
  width:60px;
  height:60px; max-height:100%; max-width:100%;
  position:relative;
  display:inline-block;
  float:left;

}
.gyges .tp-tab-content
{
  background:rgba(0,0,0,0);
  position:relative;
  padding:15px 15px 15px 85px;
  left:0px;
  overflow:hidden;
  margin-top:-15px;
  box-sizing:border-box;
  color:#333;
  display: inline-block;
  width:100%;
  height:100%;
  position:absolute; }
.gyges .tp-tab-date
{
  display:block;
  color: rgba(255,255,255,0.25);
  font-weight:500;
  font-size:12px;
  margin-bottom:0px;
}
.gyges .tp-tab-title
{
  display:block;
  text-align:left;
  color:#fff;
  font-size:14px;
  font-weight:500;
  text-transform:none;
  line-height:17px;
}
.gyges .tp-tab:hover,
.gyges .tp-tab.selected {
  background:rgba(0,0,0,0.5);
}

.gyges .tp-tab-mask {
}

/* MEDIA QUERIES */
@media only screen and (max-width: 960px) {

}
@media only screen and (max-width: 768px) {

}

/*-----------------------------------------------------------------------------

- Revolution Slider 5.0 Navigatin Skin Style  -

 HADES SKIN

author:  ThemePunch
email:      info@themepunch.com
website:    http://www.themepunch.com
-----------------------------------------------------------------------------*/
/* ARROWS */
.hades.tparrows {
  cursor:pointer;
  background:#000;
  background:rgba(0,0,0,0.15);
  width:100px;
  height:100px;
  position:absolute;
  display:block;
  z-index:1000;
}

.hades.tparrows:before {
  font-family: "revicons";
  font-size:30px;
  color:#fff;
  display:block;
  line-height: 100px;
  text-align: center;
  transition: background 0.3s, color 0.3s;
}
.hades.tparrows.tp-leftarrow:before {
  content: "\e824";
}
.hades.tparrows.tp-rightarrow:before {
  content: "\e825";
}

.hades.tparrows:hover:before {
  color:#aaa;
  background:#fff;
  background:rgba(255,255,255,1);
}
.hades .tp-arr-allwrapper {
  position:absolute;
  left:100%;
  top:0px;
  background:#888;
  width:100px;height:100px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -ms-filter: "progid:dximagetransform.microsoft.alpha(opacity=0)";
  filter: alpha(opacity=0);
  -moz-opacity: 0.0;
  -khtml-opacity: 0.0;
  opacity: 0.0;
  -webkit-transform: rotatey(-90deg);
  transform: rotatey(-90deg);
  -webkit-transform-origin: 0% 50%;
  transform-origin: 0% 50%;
}
.hades.tp-rightarrow .tp-arr-allwrapper {
  left:auto;
  right:100%;
  -webkit-transform-origin: 100% 50%;
  transform-origin: 100% 50%;
  -webkit-transform: rotatey(90deg);
  transform: rotatey(90deg);
}

.hades:hover .tp-arr-allwrapper {
  -ms-filter: "progid:dximagetransform.microsoft.alpha(opacity=100)";
  filter: alpha(opacity=100);
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1;
  -webkit-transform: rotatey(0deg);
  transform: rotatey(0deg);

}

.hades .tp-arr-iwrapper {
}
.hades .tp-arr-imgholder {
  background-size:cover;
  position:absolute;
  top:0px;left:0px;
  width:100%;height:100%;
}
.hades .tp-arr-titleholder {
}
.hades .tp-arr-subtitleholder {
}


/* BULLETS */
.hades.tp-bullets {
}
.hades.tp-bullets:before {
  content:" ";
  position:absolute;
  width:100%;
  height:100%;
  background:transparent;
  padding:10px;
  margin-left:-10px;margin-top:-10px;
  box-sizing:content-box;
}
.hades .tp-bullet {
  width:3px;
  height:3px;
  position:absolute;
  background:#888;
  cursor: pointer;
  border:5px solid #fff;
  box-sizing:content-box;
  box-shadow:0px 0px 3px 1px rgba(0,0,0,0.2);
  -webkit-perspective:400;
  perspective:400;
  -webkit-transform:translatez(0.01px);
  transform:translatez(0.01px);
}
.hades .tp-bullet:hover,
.hades .tp-bullet.selected {
  background:#555;

}

.hades .tp-bullet-image {
  position:absolute;top:-80px; left:-60px;width:120px;height:60px;
  background-position:center center;
  background-size:cover;
  visibility:hidden;
  opacity:0;
  transition:all 0.3s;
  -webkit-transform-style:flat;
  transform-style:flat;
  perspective:600;
  -webkit-perspective:600;
  transform: rotatex(-90deg);
  -webkit-transform: rotatex(-90deg);
  box-shadow:0px 0px 3px 1px rgba(0,0,0,0.2);
  transform-origin:50% 100%;
  -webkit-transform-origin:50% 100%;


}
.hades .tp-bullet:hover .tp-bullet-image {
  display:block;
  opacity:1;
  transform: rotatex(0deg);
  -webkit-transform: rotatex(0deg);
  visibility:visible;
}
.hades .tp-bullet-title {
}


/* THUMBS */
.hades .tp-thumb {
  opacity:1
}
.hades .tp-thumb-img-wrap {
  border-radius:50%;
  padding:3px;
  display:inline-block;
  background:#000;
  background-color:rgba(0,0,0,0.25);
  width:100%;
  height:100%;
  position:relative;
  margin:0px;
  box-sizing:border-box;
  transition:all 0.3s;
  -webkit-transition:all 0.3s;
}
.hades .tp-thumb-image {
  padding:3px;
  border-radius:50%;
  display:block;
  box-sizing:border-box;
  position:relative;
  -webkit-box-shadow: inset 5px 5px 10px 0px rgba(0,0,0,0.25);
  -moz-box-shadow: inset 5px 5px 10px 0px rgba(0,0,0,0.25);
  box-shadow: inset 5px 5px 10px 0px rgba(0,0,0,0.25);
}


.hades .tp-thumb:hover .tp-thumb-img-wrap,
.hades .tp-thumb.selected .tp-thumb-img-wrap {

  background: rgba(255,255,255,1);
  background: -moz-linear-gradient(top, rgba(255,255,255,1) 0%, rgba(119,119,119,1) 100%);
  background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(255,255,255,1)), color-stop(100%, rgba(119,119,119,1)));
  background: -webkit-linear-gradient(top, rgba(255,255,255,1) 0%, rgba(119,119,119,1) 100%);
  background: -o-linear-gradient(top, rgba(255,255,255,1) 0%, rgba(119,119,119,1) 100%);
  background: -ms-linear-gradient(top, rgba(255,255,255,1) 0%, rgba(119,119,119,1) 100%);
  background: linear-gradient(to bottom, rgba(255,255,255,1) 0%, rgba(119,119,119,1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#ffffff", endColorstr="#777777", GradientType=0 );

}
.hades .tp-thumb-title:after {
  content:" ";
  position:absolute;
  left:50%;
  margin-left:-8px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 8px 8px 0 8px;
  border-color: rgba(0,0,0,0.75) transparent transparent transparent;
  bottom:-8px;
}


/* TABS */
.hades .tp-tab {
  opacity:1;
}

.hades .tp-tab-title
{
  display:block;
  color:#333;
  font-weight:600;
  font-size:18px;
  text-align:center;
  line-height:25px;
}
.hades .tp-tab-price
{
  display:block;
  text-align:center;
  color:#999;
  font-size:16px;
  margin-top:10px;
  line-height:20px
}

.hades .tp-tab-button {
  display:inline-block;
  margin-top:15px;
  text-align:center;
  padding:5px 15px;
  color:#fff;
  font-size:14px;
  background:#219bd7;
  border-radius:4px;
  font-weight:400;
}
.hades .tp-tab-inner {
  text-align:center;
}



/*-----------------------------------------------------------------------------

- Revolution Slider 5.0 Navigatin Skin Style  -

 HEBE SKIN

author:  ThemePunch
email:      info@themepunch.com
website:    http://www.themepunch.com
-----------------------------------------------------------------------------*/
/* ARROWS */
.hebe.tparrows {
  cursor:pointer;
  background:#fff;
  min-width:70px;
  min-height:70px;
  position:absolute;
  display:block;
  z-index:1000;
}
.hebe.tparrows:hover {
}
.hebe.tparrows:before {
  font-family: "revicons";
  font-size:30px;
  color:#aaa;
  display:block;
  line-height: 70px;
  text-align: center;
  -webkit-transition: color 0.3s;
  -moz-transition: color 0.3s;
  transition: color 0.3s;
  z-index:2;
  position:relative;
  background:#fff;
  min-width:70px;
  min-height:70px;
}
.hebe.tparrows.tp-leftarrow:before {
  content: "\e824";
}
.hebe.tparrows.tp-rightarrow:before {
  content: "\e825";
}
.hebe.tparrows:hover:before {
  color:#000;
}
.hebe .tp-title-wrap {
  position:absolute;
  z-index:0;
  display:inline-block;
  background:#000;
  background:rgba(0,0,0,0.75);
  min-height:60px;
  line-height:60px;
  top:-10px;
  margin-left:0px;
  -webkit-transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transform:scaleX(0);
  -webkit-transform:scaleX(0);
  transform-origin:0% 50%;
  -webkit-transform-origin:0% 50%;
}
.hebe.tp-rightarrow .tp-title-wrap {
  right:0px;
  -webkit-transform-origin:100% 50%;
}
.hebe.tparrows:hover .tp-title-wrap {
  transform:scaleX(1);
  -webkit-transform:scaleX(1);
}
.hebe .tp-arr-titleholder {
  position:relative;
  text-transform:uppercase;
  color:#fff;
  font-weight:600;
  font-size:12px;
  line-height:90px;
  white-space:nowrap;
  padding:0px 20px 0px 90px;
}

.hebe.tp-rightarrow .tp-arr-titleholder {
  margin-left:0px;
  padding:0px 90px 0px 20px;
}

.hebe.tparrows:hover .tp-arr-titleholder {
  transform:translateX(0px);
  -webkit-transform:translateX(0px);
  transition-delay: 0.1s;
  opacity:1;
}

.hebe .tp-arr-imgholder{
  width:90px;
  height:90px;
  position:absolute;
  left:100%;
  display:block;
  background-size:cover;
  background-position:center center;
  top:0px; right:-90px;
}
.hebe.tp-rightarrow .tp-arr-imgholder{
  right:auto;left:-90px;
}

/* BULLETS */
.hebe.tp-bullets {
}
.hebe.tp-bullets:before {
  content:" ";
  position:absolute;
  width:100%;
  height:100%;
  background:transparent;
  padding:10px;
  margin-left:-10px;margin-top:-10px;
  box-sizing:content-box;
}

.hebe .tp-bullet {
  width:3px;
  height:3px;
  position:absolute;
  background:#fff;
  cursor: pointer;
  border:5px solid #222;
  border-radius:50%;
  box-sizing:content-box;
  -webkit-perspective:400;
  perspective:400;
  -webkit-transform:translateZ(0.01px);
  transform:translateZ(0.01px);
  transition:all 0.3s;
}
.hebe .tp-bullet:hover,
.hebe .tp-bullet.selected {
  background:#222;
  border-color:#fff;
}

.hebe .tp-bullet-image {
  position:absolute;
  top:-90px; left:-40px;
  width:70px;
  height:70px;
  background-position:center center;
  background-size:cover;
  visibility:hidden;
  opacity:0;
  transition:all 0.3s;
  -webkit-transform-style:flat;
  transform-style:flat;
  perspective:600;
  -webkit-perspective:600;
  transform: scale(0);
  -webkit-transform: scale(0);
  transform-origin:50% 100%;
  -webkit-transform-origin:50% 100%;
  border-radius:6px;


}
.hebe .tp-bullet:hover .tp-bullet-image {
  display:block;
  opacity:1;
  transform: scale(1);
  -webkit-transform: scale(1);
  visibility:visible;
}
.hebe .tp-bullet-title {
}


/* TABS */
.hebe .tp-tab-title {
  color:#a8d8ee;
  font-size:13px;
  font-weight:700;
  text-transform:uppercase;
  font-family:"Roboto Slab"
  margin-bottom:5px;
}

.hebe .tp-tab-desc {
  font-size:18px;
  font-weight:400;
  color:#fff;
  line-height:25px;
  font-family:"Roboto Slab";
}


/*-----------------------------------------------------------------------------

- Revolution Slider 5.0 Navigatin Skin Style  -

 HEPHAISTOS SKIN

author:  ThemePunch
email:      info@themepunch.com
website:    http://www.themepunch.com
-----------------------------------------------------------------------------*/
/* ARROWS */
.hephaistos.tparrows {
  cursor:pointer;
  background:#000;
  background:rgba(0,0,0,0.5);
  width:40px;
  height:40px;
  position:absolute;
  display:block;
  z-index:1000;
  border-radius:50%;
}
.hephaistos.tparrows:hover {
  background:#000;
}
.hephaistos.tparrows:before {
  font-family: "revicons";
  font-size:18px;
  color:#fff;
  display:block;
  line-height: 40px;
  text-align: center;
}
.hephaistos.tparrows.tp-leftarrow:before {
  content: "\e82c";
  margin-left:-2px;

}
.hephaistos.tparrows.tp-rightarrow:before {
  content: "\e82d";
  margin-right:-2px;
}



/* BULLETS */
.hephaistos.tp-bullets {
}
.hephaistos.tp-bullets:before {
  content:" ";
  position:absolute;
  width:100%;
  height:100%;
  background:transparent;
  padding:10px;
  margin-left:-10px;margin-top:-10px;
  box-sizing:content-box;
}
.hephaistos .tp-bullet {
  width:12px;
  height:12px;
  position:absolute;
  background:#999;
  border:3px solid #f5f5f5;
  border-radius:50%;
  cursor: pointer;
  box-sizing:content-box;
  box-shadow: 0px 0px 2px 1px rgba(130,130,130, 0.3);

}
.hephaistos .tp-bullet:hover,
.hephaistos .tp-bullet.selected {
  background:#fff;
  border-color:#000;
}
.hephaistos .tp-bullet-image {
}
.hephaistos .tp-bullet-title {
}


/*-----------------------------------------------------------------------------

- Revolution Slider 5.0 Navigatin Skin Style  -

 HERMES SKIN

author:  ThemePunch
email:      info@themepunch.com
website:    http://www.themepunch.com
-----------------------------------------------------------------------------*/
/* ARROWS */
.hermes.tparrows {
  cursor:pointer;
  background:#000;
  background:rgba(0,0,0,0.5);
  width:30px;
  height:110px;
  position:absolute;
  display:block;
  z-index:1000;
}

.hermes.tparrows:before {
  font-family: "revicons";
  font-size:15px;
  color:#fff;
  display:block;
  line-height: 110px;
  text-align: center;
  transform:translateX(0px);
  -webkit-transform:translateX(0px);
  transition:all 0.3s;
  -webkit-transition:all 0.3s;
}
.hermes.tparrows.tp-leftarrow:before {
  content: "◁"
}
.hermes.tparrows.tp-rightarrow:before {
  content: "▷";
}
.hermes.tparrows.tp-leftarrow:hover:before {
  transform:translateX(-20px);
  -webkit-transform:translateX(-20px);
  opacity:0;
}
.hermes.tparrows.tp-rightarrow:hover:before {
  transform:translateX(20px);
  -webkit-transform:translateX(20px);
  opacity:0;
}

.hermes .tp-arr-allwrapper {
  overflow:hidden;
  position:absolute;
  width:180px;
  height:140px;
  top:0px;
  left:0px;
  visibility:hidden;
  -webkit-transition: -webkit-transform 0.3s 0.3s;
  transition: transform 0.3s 0.3s;
  -webkit-perspective: 1000px;
  perspective: 1000px;
}
.tp-arr-imgholder, .tp-videoposter, .tp-thumb-image, .tp-tab-image {
  background-position: center center;
  background-size: cover;
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0px;
  left: 0px;
}
.hermes.tp-rightarrow .tp-arr-allwrapper {
  right:0px;left:auto;
}
.hermes.tparrows:hover .tp-arr-allwrapper {
  visibility:visible;
}
.hermes .tp-arr-imgholder {
  width:180px;position:absolute;
  left:0px;top:0px;height:110px;
  transform:translateX(-180px);
  -webkit-transform:translateX(-180px);
  transition:all 0.3s;
  transition-delay:0.3s;
}
.hermes.tp-rightarrow .tp-arr-imgholder{
  transform:translateX(180px);
  -webkit-transform:translateX(180px);
}

.hermes.tparrows:hover .tp-arr-imgholder {
  transform:translateX(0px);
  -webkit-transform:translateX(0px);
}
.hermes .tp-arr-titleholder {
  top:110px;
  width:180px;
  text-align:left;
  display:block;
  padding:0px 10px;
  line-height:30px; background:#000;
  background:rgba(0,0,0,0.75);color:#fff;
  font-weight:600; position:absolute;
  font-size:12px;
  white-space:nowrap;
  letter-spacing:1px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-transform: rotateX(-90deg);
  transform: rotateX(-90deg);
  -webkit-transform-origin: 50% 0;
  transform-origin: 50% 0;
  box-sizing:border-box;

}
.hermes.tparrows:hover .tp-arr-titleholder {
  -webkit-transition-delay: 0.6s;
  transition-delay: 0.6s;
  -webkit-transform: rotateX(0deg);
  transform: rotateX(0deg);
}


/* BULLETS */
.hermes.tp-bullets {
}

.hermes .tp-bullet {
  overflow:hidden;
  border-radius:50%;
  width:16px;
  height:16px;
  background-color: rgba(0, 0, 0, 0);
  box-shadow: inset 0 0 0 2px #FFF;
  -webkit-transition: background 0.3s ease;
  transition: background 0.3s ease;
  position:absolute;
}

.hermes .tp-bullet:hover {
  background-color: rgba(0, 0, 0, 0.2);
}
.hermes .tp-bullet:after {
  content: ' ';
  position: absolute;
  bottom: 0;
  height: 0;
  left: 0;
  width: 100%;
  background-color: #FFF;
  box-shadow: 0 0 1px #FFF;
  -webkit-transition: height 0.3s ease;
  transition: height 0.3s ease;
}
.hermes .tp-bullet.selected:after {
  height:100%;
}


/* TABS */
.hermes .tp-tab {
  opacity:1;
  padding-right:10px;
  box-sizing:border-box;
}
.hermes .tp-tab-image
{
  width:100%;
  height:60%;
  position:relative;
}
.hermes .tp-tab-content
{
  background:rgb(54,54,54);
  position:absolute;
  padding:20px 20px 20px 30px;
  box-sizing:border-box;
  color:#fff;
  display:block;
  width:100%;
  min-height:40%;
  bottom:0px;
  left:-10px;
}
.hermes .tp-tab-date
{
  display:block;
  color:#888;
  font-weight:600;
  font-size:12px;
  margin-bottom:10px;
}
.hermes .tp-tab-title
{
  display:block;
  color:#fff;
  font-size:16px;
  font-weight:800;
  text-transform:uppercase;
  line-height:19px;
}

.hermes .tp-tab.selected .tp-tab-title:after {
  width: 0px;
  height: 0px;
  border-style: solid;
  border-width: 30px 0 30px 10px;
  border-color: transparent transparent transparent rgb(54,54,54);
  content:" ";
  position:absolute;
  right:-9px;
  bottom:50%;
  margin-bottom:-30px;
}
.hermes .tp-tab-mask {
  padding-right:10px !important;
}

/* MEDIA QUERIES */
@media only screen and (max-width: 960px) {
  .hermes .tp-tab .tp-tab-title {font-size:14px;line-height:16px;}
  .hermes .tp-tab-date { font-size:11px; line-height:13px;margin-bottom:10px;}
  .hermes .tp-tab-content { padding:15px 15px 15px 25px;}
}
@media only screen and (max-width: 768px) {
  .hermes .tp-tab .tp-tab-title {font-size:12px;line-height:14px;}
  .hermes .tp-tab-date {font-size:10px; line-height:12px;margin-bottom:5px;}
  .hermes .tp-tab-content {padding:10px 10px 10px 20px;}
}

/*-----------------------------------------------------------------------------

- Revolution Slider 5.0 Navigatin Skin Style  -

 HESPERIDEN SKIN

author:  ThemePunch
email:      info@themepunch.com
website:    http://www.themepunch.com
-----------------------------------------------------------------------------*/
/* ARROWS */
.hesperiden.tparrows {
  cursor:pointer;
  background:#000;
  background:rgba(0,0,0,0.5);
  width:40px;
  height:40px;
  position:absolute;
  display:block;
  z-index:1000;
  border-radius: 50%;
}
.hesperiden.tparrows:hover {
  background:#000;
}
.hesperiden.tparrows:before {
  font-family: "revicons";
  font-size:20px;
  color:#fff;
  display:block;
  line-height: 40px;
  text-align: center;
}
.hesperiden.tparrows.tp-leftarrow:before {
  content: "\e82c";
  margin-left:-3px;
}
.hesperiden.tparrows.tp-rightarrow:before {
  content: "\e82d";
  margin-right:-3px;
}

/* BULLETS */
.hesperiden.tp-bullets {
}
.hesperiden.tp-bullets:before {
  content:" ";
  position:absolute;
  width:100%;
  height:100%;
  background:transparent;
  padding:10px;
  margin-left:-10px;margin-top:-10px;
  box-sizing:content-box;
  border-radius:8px;

}
.hesperiden .tp-bullet {
  width:12px;
  height:12px;
  position:absolute;
  background: #999999; /* old browsers */
  background: -moz-linear-gradient(top,  #999999 0%, #e1e1e1 100%); /* ff3.6+ */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#999999),
  color-stop(100%,#e1e1e1)); /* chrome,safari4+ */
  background: -webkit-linear-gradient(top,  #999999 0%,#e1e1e1 100%); /* chrome10+,safari5.1+ */
  background: -o-linear-gradient(top,  #999999 0%,#e1e1e1 100%); /* opera 11.10+ */
  background: -ms-linear-gradient(top,  #999999 0%,#e1e1e1 100%); /* ie10+ */
  background: linear-gradient(to bottom,  #999999 0%,#e1e1e1 100%); /* w3c */
  filter: progid:dximagetransform.microsoft.gradient(
          startcolorstr="#999999", endcolorstr="#e1e1e1",gradienttype=0 ); /* ie6-9 */
  border:3px solid #e5e5e5;
  border-radius:50%;
  cursor: pointer;
  box-sizing:content-box;
}
.hesperiden .tp-bullet:hover,
.hesperiden .tp-bullet.selected {
  background:#666;
}
.hesperiden .tp-bullet-image {
}
.hesperiden .tp-bullet-title {
}


/* THUMBS */
.hesperiden .tp-thumb {
  opacity:1;
  -webkit-perspective: 600px;
  perspective: 600px;
}
.hesperiden .tp-thumb .tp-thumb-title {
  font-size:12px;
  position:absolute;
  margin-top:-10px;
  color:#fff;
  display:block;
  z-index:10000;
  background-color:#000;
  padding:5px 10px;
  bottom:0px;
  left:0px;
  width:100%;
  box-sizing:border-box;
  text-align:center;
  overflow:hidden;
  white-space:nowrap;
  transition:all 0.3s;
  -webkit-transition:all 0.3s;
  transform:rotatex(90deg) translatez(0.001px);
  transform-origin:50% 100%;
  -webkit-transform:rotatex(90deg) translatez(0.001px);
  -webkit-transform-origin:50% 100%;
  opacity:0;
}
.hesperiden .tp-thumb:hover .tp-thumb-title {
  transform:rotatex(0deg);
  -webkit-transform:rotatex(0deg);
  opacity:1;
}

/* TABS */
.hesperiden .tp-tab {
  opacity:1;
  padding:10px;
  box-sizing:border-box;
  font-family: "Roboto", sans-serif;
  border-bottom: 1px solid #e5e5e5;
}
.hesperiden .tp-tab-image
{
  width:60px;
  height:60px; max-height:100%; max-width:100%;
  position:relative;
  display:inline-block;
  float:left;

}
.hesperiden .tp-tab-content
{
  background:rgba(0,0,0,0);
  position:relative;
  padding:15px 15px 15px 85px;
  left:0px;
  overflow:hidden;
  margin-top:-15px;
  box-sizing:border-box;
  color:#333;
  display: inline-block;
  width:100%;
  height:100%;
  position:absolute; }
.hesperiden .tp-tab-date
{
  display:block;
  color: #aaa;
  font-weight:500;
  font-size:12px;
  margin-bottom:0px;
}
.hesperiden .tp-tab-title
{
  display:block;
  text-align:left;
  color:#333;
  font-size:14px;
  font-weight:500;
  text-transform:none;
  line-height:17px;
}
.hesperiden .tp-tab:hover,
.hesperiden .tp-tab.selected {
  background:#eee;
}

.hesperiden .tp-tab-mask {
}

/* MEDIA QUERIES */
@media only screen and (max-width: 960px) {

}
@media only screen and (max-width: 768px) {

}

/*-----------------------------------------------------------------------------

- Revolution Slider 5.0 Navigatin Skin Style  -

 METIS SKIN

author:  ThemePunch
email:      info@themepunch.com
website:    http://www.themepunch.com
-----------------------------------------------------------------------------*/
/* ARROWS */
.metis.tparrows {
  background:#fff;
  padding:10px;
  transition:all 0.3s;
  -webkit-transition:all 0.3s;
  width:60px;
  height:60px;
  box-sizing:border-box;
}

.metis.tparrows:hover {
  background:#fff;
  background:rgba(255,255,255,0.75);
}

.metis.tparrows:before {
  color:#000;
  transition:all 0.3s;
  -webkit-transition:all 0.3s;
}

.metis.tparrows:hover:before {
  transform:scale(1.5);
}


/* BULLETS */
.metis .tp-bullet {
  opacity:1;
  width:50px;
  height:50px;
  padding:3px;
  background:#000;
  background-color:rgba(0,0,0,0.25);
  margin:0px;
  box-sizing:border-box;
  transition:all 0.3s;
  -webkit-transition:all 0.3s;
  border-radius:50%;
}

.metis .tp-bullet-image {

  border-radius:50%;
  display:block;
  box-sizing:border-box;
  position:relative;
  -webkit-box-shadow: inset 5px 5px 10px 0px rgba(0,0,0,0.25);
  -moz-box-shadow: inset 5px 5px 10px 0px rgba(0,0,0,0.25);
  box-shadow: inset 5px 5px 10px 0px rgba(0,0,0,0.25);
  width:44px;
  height:44px;
  background-size:cover;
  background-position:center center;
}
.metis .tp-bullet-title {
  position:absolute;
  bottom:65px;
  display:inline-block;
  left:50%;
  background:#000;
  background:rgba(0,0,0,0.75);
  color:#fff;
  padding:10px 30px;
  border-radius:4px;
  -webkit-border-radius:4px;
  opacity:0;
  transition:all 0.3s;
  -webkit-transition:all 0.3s;
  transform: translateZ(0.001px) translateX(-50%) translateY(14px);
  transform-origin:50% 100%;
  -webkit-transform: translateZ(0.001px) translateX(-50%) translateY(14px);
  -webkit-transform-origin:50% 100%;
  opacity:0;
  white-space:nowrap;
}

.metis .tp-bullet:hover .tp-bullet-title {
  transform:rotateX(0deg) translateX(-50%);
  -webkit-transform:rotateX(0deg) translateX(-50%);
  opacity:1;
}

.metis .tp-bullet.selected,
.metis .tp-bullet:hover  {

  background: rgba(255,255,255,1);
  background: -moz-linear-gradient(top, rgba(255,255,255,1) 0%, rgba(119,119,119,1) 100%);
  background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(255,255,255,1)), color-stop(100%, rgba(119,119,119,1)));
  background: -webkit-linear-gradient(top, rgba(255,255,255,1) 0%, rgba(119,119,119,1) 100%);
  background: -o-linear-gradient(top, rgba(255,255,255,1) 0%, rgba(119,119,119,1) 100%);
  background: -ms-linear-gradient(top, rgba(255,255,255,1) 0%, rgba(119,119,119,1) 100%);
  background: linear-gradient(to bottom, rgba(255,255,255,1) 0%, rgba(119,119,119,1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#ffffff", endColorstr="#777777", GradientType=0 );

}
.metis .tp-bullet-title:after {
  content:" ";
  position:absolute;
  left:50%;
  margin-left:-8px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 8px 8px 0 8px;
  border-color: rgba(0,0,0,0.75) transparent transparent transparent;
  bottom:-8px;
}

.metis .tp-tab-number {
  color: #fff;
  font-size: 40px;
  line-height: 30px;
  font-weight: 400;
  font-family: "Playfair Display";
  width: 50px;
  margin-right: 17px;
  display: inline-block;
  float: left;
}
.metis .tp-tab-mask {
  padding-left: 20px;
  left: 0px;
  max-width: 90px !important;
  transition: 0.4s padding-left, 0.4s left, 0.4s max-width;
}
.metis:hover .tp-tab-mask {
  padding-left: 0px;
  left: 50px;
  max-width: 500px !important;
}
.metis .tp-tab-divider {
  border-right: 1px solid transparent;
  height: 30px;
  width: 1px;
  margin-top: 5px;
  display: inline-block;
  float: left;
}
.metis .tp-tab-title {
  color: #fff;
  font-size: 20px;
  line-height: 20px;
  font-weight: 400;
  font-family: "Playfair Display";
  position: relative;
  padding-top: 10px;
  padding-left: 30px;
  display: inline-block;
  transform: translateX(-100%);
  transition: 0.4s all;
}
.metis .tp-tab-title-mask {
  position: absolute;
  overflow: hidden;
  left: 67px;
}
.metis:hover .tp-tab-title {
  transform: translateX(0);
}
.metis .tp-tab {
  opacity: 0.15;
  transition: 0.4s all;
}
.metis .tp-tab:hover,
.metis .tp-tab.selected {
  opacity: 1;
}
.metis .tp-tab.selected .tp-tab-divider {
  border-right: 1px solid #cdb083;
}
.metis.tp-tabs {
  max-width: 118px !important;
  padding-left: 50px;
}
.metis.tp-tabs:before {
  content: " ";
  height: 100%;
  width: 88px;
  background: rgba(0, 0, 0, 0.15);
  border-right: 1px solid rgba(255, 255, 255, 0.10);
  left: 0px;
  top: 0px;
  position: absolute;
  transition: 0.4s all;
}
.metis.tp-tabs:hover:before {
  width: 118px;
}
@media (max-width: 499px) {
  .metis.tp-tabs:before {
    background: rgba(0, 0, 0, 0.75);
  }
}

/*-----------------------------------------------------------------------------

- Revolution Slider 5.0 Navigatin Skin Style  -

 PERSEPHONE SKIN

author:  ThemePunch
email:      info@themepunch.com
website:    http://www.themepunch.com
-----------------------------------------------------------------------------*/
/* ARROWS */
.persephone.tparrows {
  cursor:pointer;
  background:#aaa;
  background:rgba(200,200,200,0.5);
  width:40px;
  height:40px;
  position:absolute;
  display:block;
  z-index:100;
  border:1px solid #f5f5f5;
}
.persephone.tparrows:hover {
  background:#333;
}
.persephone.tparrows:before {
  font-family: "revicons";
  font-size:15px;
  color:#fff;
  display:block;
  line-height: 40px;
  text-align: center;
}
.persephone.tparrows.tp-leftarrow:before {
  content: "\e824";
}
.persephone.tparrows.tp-rightarrow:before {
  content: "\e825";
}

/* BULLETS */
.persephone.tp-bullets {
}
.persephone.tp-bullets:before {
  content:" ";
  position:absolute;
  width:100%;
  height:100%;
  background:#transparent;
  padding:10px;
  margin-left:-10px;margin-top:-10px;
  box-sizing:content-box;
}
.persephone .tp-bullet {
  width:12px;
  height:12px;
  position:absolute;
  background:#aaa;
  border:1px solid #e5e5e5;
  cursor: pointer;
  box-sizing:content-box;
}
.persephone .tp-bullet:hover,
.persephone .tp-bullet.selected {
  background:#222;
}
.persephone .tp-bullet-image {
}
.persephone .tp-bullet-title {
}


/*-----------------------------------------------------------------------------

- Revolution Slider 5.0 Navigatin Skin Style  -

 URANUS SKIN

author:  ThemePunch
email:      info@themepunch.com
website:    http://www.themepunch.com
-----------------------------------------------------------------------------*/
/* ARROWS */
.uranus.tparrows {
  width:50px;
  height:50px;
  background:transparent;
}
.uranus.tparrows:before {
  width:50px;
  height:50px;
  line-height:50px;
  font-size:40px;
  transition:all 0.3s;
  -webkit-transition:all 0.3s;
}

.uranus.tparrows:hover:before {
  opacity:0.75;
}

/* BULLETS */
.uranus .tp-bullet{
  border-radius: 50%;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0);
  -webkit-transition: box-shadow 0.3s ease;
  transition: box-shadow 0.3s ease;
  background:transparent;
}
.uranus .tp-bullet.selected,
.uranus .tp-bullet:hover {
  box-shadow: 0 0 0 2px #FFF;
  border:none;
  border-radius: 50%;

  background:transparent;
}



.uranus .tp-bullet-inner {
  background-color: rgba(255, 255, 255, 0.7);
  -webkit-transition: background-color 0.3s ease, -webkit-transform 0.3s ease;
  transition: background-color 0.3s ease, transform 0.3s ease;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  outline: none;
  border-radius: 50%;
  background-color: #FFF;
  background-color: rgba(255, 255, 255, 0.3);
  text-indent: -999em;
  cursor: pointer;
  position: absolute;
}

.uranus .tp-bullet.selected .tp-bullet-inner,
.uranus .tp-bullet:hover .tp-bullet-inner{
  transform: scale(0.4);
  -webkit-transform: scale(0.4);
  background-color:#fff;
}

/*-----------------------------------------------------------------------------

- Revolution Slider 5.0 Navigatin Skin Style  -

 ZEUS SKIN

author:  ThemePunch
email:      info@themepunch.com
website:    http://www.themepunch.com
-----------------------------------------------------------------------------*/
/* ARROWS */
.zeus.tparrows {
  cursor:pointer;
  min-width:70px;
  min-height:70px;
  position:absolute;
  display:block;
  z-index:100;
  border-radius:35px;
  overflow:hidden;
  background:rgba(0,0,0,0.10);
}

.zeus.tparrows:before {
  font-family: "revicons";
  font-size:20px;
  color:#fff;
  display:block;
  line-height: 70px;
  text-align: center;
  z-index:2;
  position:relative;
}
.zeus.tparrows.tp-leftarrow:before {
  content: "\e824";
}
.zeus.tparrows.tp-rightarrow:before {
  content: "\e825";
}

.zeus .tp-title-wrap {
  background:#000;
  background:rgba(0,0,0,0.5);
  width:100%;
  height:100%;
  top:0px;
  left:0px;
  position:absolute;
  opacity:0;
  transform:scale(0);
  -webkit-transform:scale(0);
  transition: all 0.3s;
  -webkit-transition:all 0.3s;
  -moz-transition:all 0.3s;
  border-radius:50%;
}
.zeus .tp-arr-imgholder {
  width:100%;
  height:100%;
  position:absolute;
  top:0px;
  left:0px;
  background-position:center center;
  background-size:cover;
  border-radius:50%;
  transform:translateX(-100%);
  -webkit-transform:translateX(-100%);
  transition: all 0.3s;
  -webkit-transition:all 0.3s;
  -moz-transition:all 0.3s;

}
.zeus.tp-rightarrow .tp-arr-imgholder {
  transform:translateX(100%);
  -webkit-transform:translateX(100%);
}
.zeus.tparrows:hover .tp-arr-imgholder {
  transform:translateX(0);
  -webkit-transform:translateX(0);
  opacity:1;
}

.zeus.tparrows:hover .tp-title-wrap {
  transform:scale(1);
  -webkit-transform:scale(1);
  opacity:1;
}


@media screen and (max-width: 425px) {

  body .hidden-xs {
    display: none !important;
  }

  body .hidden-sm {
    display: block !important;
  }

  body .hidden-md {
    display: block;
  }

  body .hidden-lg {
    display: block;
  }

  body .trtc,
  body .tltc {
    text-align: center;
  }

  body .webeditor img,
  body .webeditor table {
    max-width: 100%;
  }

  body .footer .span4 {
    margin-bottom: 30px;
  }

  body .about-timeline-section {
    background-color: white;
  }

  body .about-timeline-section h3 {
    font-size: 20px;
  }

  body .sp-btn2 {
    display: inline-block;
  }

  body .toggle-img img {
    top: 0%;
  }

  body .st-accordion ul li > a {
    font-size: 18px;
  }

  body #rev_slider_wrapper {
    height: 100px !important;
  }

  body .footer {
    background-size: cover;
  }

  body #sync2.owl-carousel {
    display: none;
  }

  body .sp14 {
    font-size: 10px;
  }

  /*body #sync1 .item {
        width: 200px;
    }*/

  /*.owl-carousel.owl-drag .owl-item.active {
        width: 23px !important;
    }*/

  /*body .owl-carousel.owl-drag .owl-item.active.center {
        width: 50% !important;
    }*/

  body #sync1 .item {
    /*padding: 126px 0px 40px 0px;*/
    margin: 0px -32px;
    width: 200px;
  }
  body .page-header {
    background: #6393C1 url(../img/banner2-2.jpg) center 52% no-repeat;
    background-size: cover;
  }

  body .sp2 {
    font-size: 16px;
    margin: 22px 0;
  }

  /*body #sync1 .active .item {
        right: -20px;
        position: relative;
        z-index: -99;
    }*/

  #sync1 .active .item {
    opacity: 0;
  }

}

@media (width: 375px) {
  body #sync1 .item {
    padding: 107px 0px 40px 0px;
    margin: 0px -28px;
    width: 175px;
  }
}

@media (max-width: 320px) {
  body #sync1 .item {
    /*padding: 126px 0px 40px 0px;*/
    margin: 0px -32px;
    width: 165px;
  }
}

/*123qwe*/


@media (max-width: 768px) and (orientation: landscape) {}

/*123lsqwe*/


@media (min-width: 415px) and (max-width: 768px) {

  body .hidden-xs {
    display: block;
  }

  body .hidden-sm {
    display: none !important;
  }

  body .hidden-md {
    display: block;
  }

  body .hidden-xs.s {
    display: none;
  }

  body .hidden-md.s {
    display: block;
  }

  body .webeditor img,
  body .webeditor table {
    max-width: 100%;
  }

  body .navbar .brand img {
    width: 235px;
    position: relative;
    top: 27px;
  }

  body .row-fluid .span4 {
    width: 30.5%;
    width: 30.5%;
  }

  body .sp2 {
    font-size: 20px;
    line-height: 24px;
  }

  body .about-timeline-section:after {
    right: -13px;
  }

  body .timeline-section-date {
    margin-left: 12px;
  }

  body .offset6 > .about-timeline-section:after {
    left: -8px;
  }

  body .offset6 > .about-timeline-section .timeline-section-date {
    margin-right: -22px;
  }

  body .sp10, .sp11 {
    position: relative;
    top: 0;
  }

  body .toggle-img img {
    top: -50%;
  }

  body #rev_slider_wrapper {
    height: 245px !important;
  }

  body .sp14 {
    font-size: 10px;
  }

  body #sync2.owl-carousel {
    width: 100%;
    margin: auto;
  }

  body .footer {
    background-size: cover;
  }

  body ul.footer-links li {
    padding: 10px 8px;
  }

}

/*123pad*/


@media (max-width: 1024px) and (orientation: landscape) {}

/*123lspad*/


@media (min-width: 769px) and (max-width: 1034px) {

  body .hidden-md {
    display: none !important;
  }

  body .row-fluid .span4 {
    width: 30.5%;
    width: 30.5%;
  }

  body .navbar .brand img {
    width: 360px;
    position: relative;
    top: 6px;
  }

  body .about-timeline-section:after {
    right: -17px;
  }

  body .timeline-section-date {
    margin-left: 17px;
  }

  body .offset6 > .about-timeline-section:after {
    left: -8px;
  }

  body .offset6 > .about-timeline-section .timeline-section-date {
    margin-right: -22px;
  }

  body .toggle-img img {
    top: -50%;
  }

  body #rev_slider_wrapper {
    height: 330px !important;
  }

  body .sp14 {
    font-size: 16px;
  }

}

/*12310*/


@media (min-width: 1035px) and (max-width: 1291px) {

  .hidden-md {
    display: none !important;
  }

  .hidden-lg {
    display: none;
  }
}

/*12312*/


@media (min-width: 1292px) and (max-width: 1377px) {

  .hidden-md {
    display: none !important;
  }

  .hidden-lg {
    display: none;
  }
}

/*12313*/


@media (min-width: 1378px) and (max-width: 1451px) {

  .hidden-md {
    display: none;
  }

  .hidden-lg {
    display: none !important;
  }

  body #rev_slider_wrapper {
    height: 462px !important;
  }

  body .sp14 {
    font-size: 18px;
  }
}

/*12314*/


@media (min-width: 1452px) and (max-width: 1691px) {}

/*12316*/


@media screen and (max-width: 320px) {}

/*123i5*/


@media (min-width: 321px) and (max-width: 375px) {}

/*123i6*/


@media (min-width: 376px) and (max-width: 414px) {}

/*123i6s*/

#sync1 .item {
  background: transparent;
  padding: 80px 0px 40px 0px;
  margin: 5px;
  color: #6faeff;
  border-radius: 3px;
  text-align: center;
  transform: scale(.7);
  transition: .6s ease;
  -webkit-filter: blur(3px); /* Safari 6.0 - 9.0 */
  filter: blur(3px);
  opacity: .5;
}
#sync2 .item {
  padding: 0 0px;
  margin: 5px;
  color: #39aac7;
  text-align: center;
  cursor: pointer;
}
#sync2 .item h1 {
  font-size: 18px;
  font-family: 'Lobster', cursive;
  letter-spacing: 2px;
  font-weight: 100;
}
#sync2 .current .item {
  background: transparent;
  border-bottom: 2px solid;
}
.owl-theme .owl-nav {
  /*default owl-theme theme reset .disabled:hover links */
}
.owl-theme .owl-nav [class*='owl-'] {
  transition: all 0.3s ease;
}
.owl-theme .owl-nav [class*='owl-'].disabled:hover {
  background-color: #D6D6D6;
}
#sync1.owl-theme {
  position: relative;
}
#sync1.owl-theme .owl-next,
#sync1.owl-theme .owl-prev {
  width: 36px;
  height: 40px;
  margin-top: -20px;
  position: absolute;
  top: 50%;
}
#sync1.owl-theme .owl-prev {
  left: 10px;
}
#sync1.owl-theme .owl-next {
  right: 10px;
  color: aliceblue;
  -webkit-text-fill-color: aliceblue;
  -webkit-text-stroke: aliceblue;
  padding: 3px 5px;
}

#sync1.owl-theme .owl-item.active.center{
  transform: scale(1.8);
}

.active {

}
#sync1 .active.center .item {
  -webkit-filter: blur(0); /* Safari 6.0 - 9.0 */
  filter: blur(0);
  opacity: 1;
}
#sync1 .active.center .item  img {
  border-style: outset;
  border: 5px outset;
}
.sp13 {
  font-family: 'Lobster', cursive;
  float: left;
  display: inline-block;
  left: -8px;
  border-radius: 0px 5px 5px 5px;
  top: 73px;
  letter-spacing: 2px;
  position: absolute;
  box-shadow: 5px 4px 1px rgba(2, 1, 29, 0.11);
  font-size: 27px;
  padding: 8px 10px;
  line-height: 1;
  color: #fff;
  text-shadow: 3px 3px 2px rgba(0,0,0,.3);
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#bffff6+0,33a7c6+100 */
  background: #bffff6; /* Old browsers */
  background: -moz-linear-gradient(left, #bffff6 0%, #33a7c6 100%); /* FF3.6-15 */
  background: -webkit-linear-gradient(left, #6bdfea 0%,#24b593 100%); /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to right, #6bdfea 0%,#24b593 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#bffff6', endColorstr='#33a7c6',GradientType=1 ); /* IE6-9 */
}
#sync2.owl-carousel {
  width: 70%;
  margin: auto;
}
.sp14 {
  font-family: "微軟正黑體", "Microsoft JhengHei";
  float: left;
  display: inline-block;
  right: 2px;
  border-radius: 5px;
  bottom: 50px;
  text-align: right;
  letter-spacing: 2px;
  position: absolute;
  box-shadow: 5px 4px 1px rgba(2, 1, 29, 0.11);
  font-size: 23px;
  padding: 4px 10px;
  line-height: 1.3;
  color: #fff;
  text-shadow: 3px 3px 2px rgba(0,0,0,.3);
  background: rgba(0,0,0,.3);
}

.form-search input.set-sear-w{
  background-color: #f6f6f6;
  margin-right: 55px;
  width: 180px;

}

.marginpage.mobile{
  position: relative;
  margin: 0 15px;
}
.form-search input.set-sear-w.mobile{
  background-color: #f6f6f6;
  /*width: 90%;*/
  height: 22px;
  margin-bottom: 20px;
  width: calc(100% - 75px);
}

.set-search.mobile{
  position: absolute;
  top:40px;
  right: 0;
  z-index: 5;
  margin: 0;
  font-size: 13px;
  padding: 0 15px;
}



.set-search{
  position: absolute;
  top:0;
  right: 0;
  z-index: 5;
  /*border-left: 1px solid #333;*/
  /*padding-left: 5px;*/
  /*margin-left: 5px;*/
  margin: 0;

}

.navbar .btn.set-search{
  margin-top: 0;
}


@media(min-width: 280px) and (max-width: 768px){
  select option:last-child{
    display: none;
  }
}

/*1080422add*/

h2.sp3.standart-h3title {
    margin-top: 10px;
    line-height: 24px;
    font-size: 18px
}

.sp3 {
    height: 48px;
}

.span12.yu1 {
    margin-left: 0;
}

.label-xl, .badge-xl {
    padding: 10px 8px;
}

.blog-post p.cat-blog {
    margin: 27px 0;
}

.sp4 {
    height: 22px;
    -webkit-line-clamp: 1;
}

.shine {
    padding-bottom: 120px;
}

.navbar .nav>li>a:hover, .navbar .nav>li>a:hover, .navbar .nav>.sfHover>a {
    background: none;
    color: #205384;
}

.navbar .nav li.dropdown>a:hover .caret {
    border-bottom-color: #205384;
    border-top-color: #205384;
}

.yu2 {
    margin-top: 50px;
}

/*1080422*/
.active { color:#6393C1 !important;font-weight: 800 !important; }

/*1080430-start*/

#rev_slider_wrapper {
    height: 660px !important;
}

#rev_slider {
    height: 660px !important;
}

.bn1 .tp-bgimg.defaultimg {
    background-position: center 55% !important;
}

.bn2 .tp-bgimg.defaultimg {
    background-position: center bottom !important;
}

.bn3 .tp-bgimg.defaultimg {
    background-size: 100% !important;
    background-position: center center !important;
}

@media screen and (max-width: 425px) {

    body #rev_slider_wrapper {
        height: 210px !important;
    }

    body #rev_slider {
        height: 210px !important;
    }

    body .bn3 .tp-bgimg.defaultimg, body .bn1 .tp-bgimg.defaultimg, body .bn2 .tp-bgimg.defaultimg {
        background-position: center top !important;
    }

    body .ba2 {
        width: 300px;
         display: initial; 
    }

    body footer .row-fluid .span4 {
         width: 100%; 
    }

    body .navbar .brand img {
        top: -4px;
    }

    body footer .span4.hidden-md {
        display: block !important;
    }
}

@media (width: 320px) {

    body #rev_slider_wrapper {
        height: 155px !important;
    }

}

@media (max-width: 768px) and (min-width: 426px) {

    body #rev_slider_wrapper {
        height: 410px !important;
    }

    body .bn3 .tp-bgimg.defaultimg, body .bn1 .tp-bgimg.defaultimg, body .bn2 .tp-bgimg.defaultimg {
        background-position: center top !important;
    }

    body #rev_slider {
        height: 410px !important;
    }
}

@media (max-width: 1034px) and (min-width: 769px) {
    body #rev_slider_wrapper {
        height: 485px !important;
    }

    body .bn1 .tp-bgimg.defaultimg {
        background-position: center top !important;
    }

    body .bn2 .tp-bgimg.defaultimg {
        background-position: center -410% !important;
    }

    body .bn3 .tp-bgimg.defaultimg {
        background-position: center top !important;
    }

    body #rev_slider {
        height: 485px !important;
    }

}

@media (min-width: 1378px) and (max-width: 1451px) {

    body #rev_slider_wrapper {
        height: 650px !important;
    }

}

@media (max-width: 767px) {
    .footer {
        margin-left: 0px;
        margin-right: 0px;
        padding-left: 20px;
        padding-right: 20px;
    }
}

@media (max-width: 767px) {
    .headertop {
        /* margin-top: -20px; */
        margin-right:0px;
        margin-left:0px;
    }
}

/*1080430-end*/