
.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.animated.infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}
.animated.hinge {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
}
@-webkit-keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  60% {
    -webkit-transform: translateY(-15px);
    transform: translateY(-15px);
  }
}
@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(-30px);
    -ms-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  60% {
    -webkit-transform: translateY(-15px);
    -ms-transform: translateY(-15px);
    transform: translateY(-15px);
  }
}
.bounce {
  -webkit-animation-name: bounce;
  animation-name: bounce;
}
@-webkit-keyframes flash {
  0%,
  50%,
  100% {
    opacity: 1;
  }
  25%,
  75% {
    opacity: 0;
  }
}
@keyframes flash {
  0%,
  50%,
  100% {
    opacity: 1;
  }
  25%,
  75% {
    opacity: 0;
  }
}
.flash {
  -webkit-animation-name: flash;
  animation-name: flash;
}
/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes pulse {
  0% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
  }
  100% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
}
.pulse {
  -webkit-animation-name: pulse;
  animation-name: pulse;
}
@-webkit-keyframes rubberBand {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  30% {
    -webkit-transform: scaleX(1.25) scaleY(0.75);
    transform: scaleX(1.25) scaleY(0.75);
  }
  40% {
    -webkit-transform: scaleX(0.75) scaleY(1.25);
    transform: scaleX(0.75) scaleY(1.25);
  }
  60% {
    -webkit-transform: scaleX(1.15) scaleY(0.85);
    transform: scaleX(1.15) scaleY(0.85);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes rubberBand {
  0% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
  30% {
    -webkit-transform: scaleX(1.25) scaleY(0.75);
    -ms-transform: scaleX(1.25) scaleY(0.75);
    transform: scaleX(1.25) scaleY(0.75);
  }
  40% {
    -webkit-transform: scaleX(0.75) scaleY(1.25);
    -ms-transform: scaleX(0.75) scaleY(1.25);
    transform: scaleX(0.75) scaleY(1.25);
  }
  60% {
    -webkit-transform: scaleX(1.15) scaleY(0.85);
    -ms-transform: scaleX(1.15) scaleY(0.85);
    transform: scaleX(1.15) scaleY(0.85);
  }
  100% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
}
.rubberBand {
  -webkit-animation-name: rubberBand;
  animation-name: rubberBand;
}
@-webkit-keyframes shake {
  0%,
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  10%,
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: translateX(-10px);
    transform: translateX(-10px);
  }
  20%,
  40%,
  60%,
  80% {
    -webkit-transform: translateX(10px);
    transform: translateX(10px);
  }
}
@keyframes shake {
  0%,
  100% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
  10%,
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: translateX(-10px);
    -ms-transform: translateX(-10px);
    transform: translateX(-10px);
  }
  20%,
  40%,
  60%,
  80% {
    -webkit-transform: translateX(10px);
    -ms-transform: translateX(10px);
    transform: translateX(10px);
  }
}
.shake {
  -webkit-animation-name: shake;
  animation-name: shake;
}
@-webkit-keyframes swing {
  20% {
    -webkit-transform: rotate(15deg);
    transform: rotate(15deg);
  }
  40% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }
  60% {
    -webkit-transform: rotate(5deg);
    transform: rotate(5deg);
  }
  80% {
    -webkit-transform: rotate(-5deg);
    transform: rotate(-5deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}
@keyframes swing {
  20% {
    -webkit-transform: rotate(15deg);
    -ms-transform: rotate(15deg);
    transform: rotate(15deg);
  }
  40% {
    -webkit-transform: rotate(-10deg);
    -ms-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }
  60% {
    -webkit-transform: rotate(5deg);
    -ms-transform: rotate(5deg);
    transform: rotate(5deg);
  }
  80% {
    -webkit-transform: rotate(-5deg);
    -ms-transform: rotate(-5deg);
    transform: rotate(-5deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}
.swing {
  -webkit-transform-origin: top center;
  -ms-transform-origin: top center;
  transform-origin: top center;
  -webkit-animation-name: swing;
  animation-name: swing;
}
@-webkit-keyframes tada {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  10%,
  20% {
    -webkit-transform: scale(0.9) rotate(-3deg);
    transform: scale(0.9) rotate(-3deg);
  }
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: scale(1.1) rotate(3deg);
    transform: scale(1.1) rotate(3deg);
  }
  40%,
  60%,
  80% {
    -webkit-transform: scale(1.1) rotate(-3deg);
    transform: scale(1.1) rotate(-3deg);
  }
  100% {
    -webkit-transform: scale(1) rotate(0);
    transform: scale(1) rotate(0);
  }
}
@keyframes tada {
  0% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
  10%,
  20% {
    -webkit-transform: scale(0.9) rotate(-3deg);
    -ms-transform: scale(0.9) rotate(-3deg);
    transform: scale(0.9) rotate(-3deg);
  }
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: scale(1.1) rotate(3deg);
    -ms-transform: scale(1.1) rotate(3deg);
    transform: scale(1.1) rotate(3deg);
  }
  40%,
  60%,
  80% {
    -webkit-transform: scale(1.1) rotate(-3deg);
    -ms-transform: scale(1.1) rotate(-3deg);
    transform: scale(1.1) rotate(-3deg);
  }
  100% {
    -webkit-transform: scale(1) rotate(0);
    -ms-transform: scale(1) rotate(0);
    transform: scale(1) rotate(0);
  }
}
.tada {
  -webkit-animation-name: tada;
  animation-name: tada;
}
/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes wobble {
  0% {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }
  15% {
    -webkit-transform: translateX(-25%) rotate(-5deg);
    transform: translateX(-25%) rotate(-5deg);
  }
  30% {
    -webkit-transform: translateX(20%) rotate(3deg);
    transform: translateX(20%) rotate(3deg);
  }
  45% {
    -webkit-transform: translateX(-15%) rotate(-3deg);
    transform: translateX(-15%) rotate(-3deg);
  }
  60% {
    -webkit-transform: translateX(10%) rotate(2deg);
    transform: translateX(10%) rotate(2deg);
  }
  75% {
    -webkit-transform: translateX(-5%) rotate(-1deg);
    transform: translateX(-5%) rotate(-1deg);
  }
  100% {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }
}
@keyframes wobble {
  0% {
    -webkit-transform: translateX(0%);
    -ms-transform: translateX(0%);
    transform: translateX(0%);
  }
  15% {
    -webkit-transform: translateX(-25%) rotate(-5deg);
    -ms-transform: translateX(-25%) rotate(-5deg);
    transform: translateX(-25%) rotate(-5deg);
  }
  30% {
    -webkit-transform: translateX(20%) rotate(3deg);
    -ms-transform: translateX(20%) rotate(3deg);
    transform: translateX(20%) rotate(3deg);
  }
  45% {
    -webkit-transform: translateX(-15%) rotate(-3deg);
    -ms-transform: translateX(-15%) rotate(-3deg);
    transform: translateX(-15%) rotate(-3deg);
  }
  60% {
    -webkit-transform: translateX(10%) rotate(2deg);
    -ms-transform: translateX(10%) rotate(2deg);
    transform: translateX(10%) rotate(2deg);
  }
  75% {
    -webkit-transform: translateX(-5%) rotate(-1deg);
    -ms-transform: translateX(-5%) rotate(-1deg);
    transform: translateX(-5%) rotate(-1deg);
  }
  100% {
    -webkit-transform: translateX(0%);
    -ms-transform: translateX(0%);
    transform: translateX(0%);
  }
}
.wobble {
  -webkit-animation-name: wobble;
  animation-name: wobble;
}
@-webkit-keyframes bounceIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.3);
    transform: scale(0.3);
  }
  50% {
    opacity: 1;
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
  }
  70% {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes bounceIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.3);
    -ms-transform: scale(0.3);
    transform: scale(0.3);
  }
  50% {
    opacity: 1;
    -webkit-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05);
  }
  70% {
    -webkit-transform: scale(0.9);
    -ms-transform: scale(0.9);
    transform: scale(0.9);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
}
.bounceIn {
  -webkit-animation-name: bounceIn;
  animation-name: bounceIn;
}
@-webkit-keyframes bounceInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateY(30px);
    transform: translateY(30px);
  }
  80% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes bounceInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    -ms-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateY(30px);
    -ms-transform: translateY(30px);
    transform: translateY(30px);
  }
  80% {
    -webkit-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    transform: translateY(-10px);
  }
  100% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}
.bounceInDown {
  -webkit-animation-name: bounceInDown;
  animation-name: bounceInDown;
}
@-webkit-keyframes bounceInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
  }
  80% {
    -webkit-transform: translateX(-10px);
    transform: translateX(-10px);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes bounceInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    -ms-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateX(30px);
    -ms-transform: translateX(30px);
    transform: translateX(30px);
  }
  80% {
    -webkit-transform: translateX(-10px);
    -ms-transform: translateX(-10px);
    transform: translateX(-10px);
  }
  100% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}
.bounceInLeft {
  -webkit-animation-name: bounceInLeft;
  animation-name: bounceInLeft;
}
@-webkit-keyframes bounceInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateX(-30px);
    transform: translateX(-30px);
  }
  80% {
    -webkit-transform: translateX(10px);
    transform: translateX(10px);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes bounceInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    -ms-transform: translateX(2000px);
    transform: translateX(2000px);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateX(-30px);
    -ms-transform: translateX(-30px);
    transform: translateX(-30px);
  }
  80% {
    -webkit-transform: translateX(10px);
    -ms-transform: translateX(10px);
    transform: translateX(10px);
  }
  100% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}
.bounceInRight {
  -webkit-animation-name: bounceInRight;
  animation-name: bounceInRight;
}
@-webkit-keyframes bounceInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    transform: translateY(2000px);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  80% {
    -webkit-transform: translateY(10px);
    transform: translateY(10px);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes bounceInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    -ms-transform: translateY(2000px);
    transform: translateY(2000px);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateY(-30px);
    -ms-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  80% {
    -webkit-transform: translateY(10px);
    -ms-transform: translateY(10px);
    transform: translateY(10px);
  }
  100% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}
.bounceInUp {
  -webkit-animation-name: bounceInUp;
  animation-name: bounceInUp;
}
@-webkit-keyframes bounceOut {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  25% {
    -webkit-transform: scale(0.95);
    transform: scale(0.95);
  }
  50% {
    opacity: 1;
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(0.3);
    transform: scale(0.3);
  }
}
@keyframes bounceOut {
  0% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
  25% {
    -webkit-transform: scale(0.95);
    -ms-transform: scale(0.95);
    transform: scale(0.95);
  }
  50% {
    opacity: 1;
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(0.3);
    -ms-transform: scale(0.3);
    transform: scale(0.3);
  }
}
.bounceOut {
  -webkit-animation-name: bounceOut;
  animation-name: bounceOut;
}
@-webkit-keyframes bounceOutDown {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  20% {
    opacity: 1;
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    transform: translateY(2000px);
  }
}
@keyframes bounceOutDown {
  0% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
  20% {
    opacity: 1;
    -webkit-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    transform: translateY(-20px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    -ms-transform: translateY(2000px);
    transform: translateY(2000px);
  }
}
.bounceOutDown {
  -webkit-animation-name: bounceOutDown;
  animation-name: bounceOutDown;
}
@-webkit-keyframes bounceOutLeft {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  20% {
    opacity: 1;
    -webkit-transform: translateX(20px);
    transform: translateX(20px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
}
@keyframes bounceOutLeft {
  0% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
  20% {
    opacity: 1;
    -webkit-transform: translateX(20px);
    -ms-transform: translateX(20px);
    transform: translateX(20px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    -ms-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
}
.bounceOutLeft {
  -webkit-animation-name: bounceOutLeft;
  animation-name: bounceOutLeft;
}
@-webkit-keyframes bounceOutRight {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  20% {
    opacity: 1;
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px);
  }
}
@keyframes bounceOutRight {
  0% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
  20% {
    opacity: 1;
    -webkit-transform: translateX(-20px);
    -ms-transform: translateX(-20px);
    transform: translateX(-20px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    -ms-transform: translateX(2000px);
    transform: translateX(2000px);
  }
}
.bounceOutRight {
  -webkit-animation-name: bounceOutRight;
  animation-name: bounceOutRight;
}
@-webkit-keyframes bounceOutUp {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  20% {
    opacity: 1;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
}
@keyframes bounceOutUp {
  0% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
  20% {
    opacity: 1;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    -ms-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
}
.bounceOutUp {
  -webkit-animation-name: bounceOutUp;
  animation-name: bounceOutUp;
}
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}
@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}
.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}
@-webkit-keyframes fadeInDownBig {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes fadeInDownBig {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    -ms-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}
.fadeInDownBig {
  -webkit-animation-name: fadeInDownBig;
  animation-name: fadeInDownBig;
}
@-webkit-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    -ms-transform: translateX(-20px);
    transform: translateX(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}
.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}
@-webkit-keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    -ms-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}
.fadeInLeftBig {
  -webkit-animation-name: fadeInLeftBig;
  animation-name: fadeInLeftBig;
}
@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    transform: translateX(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    -ms-transform: translateX(20px);
    transform: translateX(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}
.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}
@-webkit-keyframes fadeInRightBig {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes fadeInRightBig {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    -ms-transform: translateX(2000px);
    transform: translateX(2000px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}
.fadeInRightBig {
  -webkit-animation-name: fadeInRightBig;
  animation-name: fadeInRightBig;
}
@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}
.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}
@-webkit-keyframes fadeInUpBig {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    transform: translateY(2000px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes fadeInUpBig {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    -ms-transform: translateY(2000px);
    transform: translateY(2000px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}
.fadeInUpBig {
  -webkit-animation-name: fadeInUpBig;
  animation-name: fadeInUpBig;
}
@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}
@-webkit-keyframes fadeOutDown {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }
}
@keyframes fadeOutDown {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
  }
}
.fadeOutDown {
  -webkit-animation-name: fadeOutDown;
  animation-name: fadeOutDown;
}
@-webkit-keyframes fadeOutDownBig {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    transform: translateY(2000px);
  }
}
@keyframes fadeOutDownBig {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    -ms-transform: translateY(2000px);
    transform: translateY(2000px);
  }
}
.fadeOutDownBig {
  -webkit-animation-name: fadeOutDownBig;
  animation-name: fadeOutDownBig;
}
@-webkit-keyframes fadeOutLeft {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px);
  }
}
@keyframes fadeOutLeft {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    -ms-transform: translateX(-20px);
    transform: translateX(-20px);
  }
}
.fadeOutLeft {
  -webkit-animation-name: fadeOutLeft;
  animation-name: fadeOutLeft;
}
@-webkit-keyframes fadeOutLeftBig {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
}
@keyframes fadeOutLeftBig {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    -ms-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
}
.fadeOutLeftBig {
  -webkit-animation-name: fadeOutLeftBig;
  animation-name: fadeOutLeftBig;
}
@-webkit-keyframes fadeOutRight {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    transform: translateX(20px);
  }
}
@keyframes fadeOutRight {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    -ms-transform: translateX(20px);
    transform: translateX(20px);
  }
}
.fadeOutRight {
  -webkit-animation-name: fadeOutRight;
  animation-name: fadeOutRight;
}
@-webkit-keyframes fadeOutRightBig {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px);
  }
}
@keyframes fadeOutRightBig {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    -ms-transform: translateX(2000px);
    transform: translateX(2000px);
  }
}
.fadeOutRightBig {
  -webkit-animation-name: fadeOutRightBig;
  animation-name: fadeOutRightBig;
}
@-webkit-keyframes fadeOutUp {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }
}
@keyframes fadeOutUp {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    transform: translateY(-20px);
  }
}
.fadeOutUp {
  -webkit-animation-name: fadeOutUp;
  animation-name: fadeOutUp;
}
@-webkit-keyframes fadeOutUpBig {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
}
@keyframes fadeOutUpBig {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    -ms-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
}
.fadeOutUpBig {
  -webkit-animation-name: fadeOutUpBig;
  animation-name: fadeOutUpBig;
}
@-webkit-keyframes flip {
  0% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
    transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  40% {
    -webkit-transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
    transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  50% {
    -webkit-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  80% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(0.95);
    transform: perspective(400px) translateZ(0) rotateY(360deg) scale(0.95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  100% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
    transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}
@keyframes flip {
  0% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
    -ms-transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
    transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  40% {
    -webkit-transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
    -ms-transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
    transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  50% {
    -webkit-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    -ms-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  80% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(0.95);
    -ms-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(0.95);
    transform: perspective(400px) translateZ(0) rotateY(360deg) scale(0.95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  100% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
    -ms-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
    transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}
.animated.flip {
  -webkit-backface-visibility: visible;
  -ms-backface-visibility: visible;
  backface-visibility: visible;
  -webkit-animation-name: flip;
  animation-name: flip;
}
@-webkit-keyframes flipInX {
  0% {
    -webkit-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotateX(-10deg);
    transform: perspective(400px) rotateX(-10deg);
  }
  70% {
    -webkit-transform: perspective(400px) rotateX(10deg);
    transform: perspective(400px) rotateX(10deg);
  }
  100% {
    -webkit-transform: perspective(400px) rotateX(0deg);
    transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }
}
@keyframes flipInX {
  0% {
    -webkit-transform: perspective(400px) rotateX(90deg);
    -ms-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotateX(-10deg);
    -ms-transform: perspective(400px) rotateX(-10deg);
    transform: perspective(400px) rotateX(-10deg);
  }
  70% {
    -webkit-transform: perspective(400px) rotateX(10deg);
    -ms-transform: perspective(400px) rotateX(10deg);
    transform: perspective(400px) rotateX(10deg);
  }
  100% {
    -webkit-transform: perspective(400px) rotateX(0deg);
    -ms-transform: perspective(400px) rotateX(0deg);
    transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }
}
.flipInX {
  -webkit-backface-visibility: visible !important;
  -ms-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInX;
  animation-name: flipInX;
}
@-webkit-keyframes flipInY {
  0% {
    -webkit-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotateY(-10deg);
    transform: perspective(400px) rotateY(-10deg);
  }
  70% {
    -webkit-transform: perspective(400px) rotateY(10deg);
    transform: perspective(400px) rotateY(10deg);
  }
  100% {
    -webkit-transform: perspective(400px) rotateY(0deg);
    transform: perspective(400px) rotateY(0deg);
    opacity: 1;
  }
}
@keyframes flipInY {
  0% {
    -webkit-transform: perspective(400px) rotateY(90deg);
    -ms-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotateY(-10deg);
    -ms-transform: perspective(400px) rotateY(-10deg);
    transform: perspective(400px) rotateY(-10deg);
  }
  70% {
    -webkit-transform: perspective(400px) rotateY(10deg);
    -ms-transform: perspective(400px) rotateY(10deg);
    transform: perspective(400px) rotateY(10deg);
  }
  100% {
    -webkit-transform: perspective(400px) rotateY(0deg);
    -ms-transform: perspective(400px) rotateY(0deg);
    transform: perspective(400px) rotateY(0deg);
    opacity: 1;
  }
}
.flipInY {
  -webkit-backface-visibility: visible !important;
  -ms-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInY;
  animation-name: flipInY;
}
@-webkit-keyframes flipOutX {
  0% {
    -webkit-transform: perspective(400px) rotateX(0deg);
    transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
}
@keyframes flipOutX {
  0% {
    -webkit-transform: perspective(400px) rotateX(0deg);
    -ms-transform: perspective(400px) rotateX(0deg);
    transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: perspective(400px) rotateX(90deg);
    -ms-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
}
.flipOutX {
  -webkit-animation-name: flipOutX;
  animation-name: flipOutX;
  -webkit-backface-visibility: visible !important;
  -ms-backface-visibility: visible !important;
  backface-visibility: visible !important;
}
@-webkit-keyframes flipOutY {
  0% {
    -webkit-transform: perspective(400px) rotateY(0deg);
    transform: perspective(400px) rotateY(0deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
}
@keyframes flipOutY {
  0% {
    -webkit-transform: perspective(400px) rotateY(0deg);
    -ms-transform: perspective(400px) rotateY(0deg);
    transform: perspective(400px) rotateY(0deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: perspective(400px) rotateY(90deg);
    -ms-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
}
.flipOutY {
  -webkit-backface-visibility: visible !important;
  -ms-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipOutY;
  animation-name: flipOutY;
}
@-webkit-keyframes lightSpeedIn {
  0% {
    -webkit-transform: translateX(100%) skewX(-30deg);
    transform: translateX(100%) skewX(-30deg);
    opacity: 0;
  }
  60% {
    -webkit-transform: translateX(-20%) skewX(30deg);
    transform: translateX(-20%) skewX(30deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: translateX(0%) skewX(-15deg);
    transform: translateX(0%) skewX(-15deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(0%) skewX(0deg);
    transform: translateX(0%) skewX(0deg);
    opacity: 1;
  }
}
@keyframes lightSpeedIn {
  0% {
    -webkit-transform: translateX(100%) skewX(-30deg);
    -ms-transform: translateX(100%) skewX(-30deg);
    transform: translateX(100%) skewX(-30deg);
    opacity: 0;
  }
  60% {
    -webkit-transform: translateX(-20%) skewX(30deg);
    -ms-transform: translateX(-20%) skewX(30deg);
    transform: translateX(-20%) skewX(30deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: translateX(0%) skewX(-15deg);
    -ms-transform: translateX(0%) skewX(-15deg);
    transform: translateX(0%) skewX(-15deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(0%) skewX(0deg);
    -ms-transform: translateX(0%) skewX(0deg);
    transform: translateX(0%) skewX(0deg);
    opacity: 1;
  }
}
.lightSpeedIn {
  -webkit-animation-name: lightSpeedIn;
  animation-name: lightSpeedIn;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}
@-webkit-keyframes lightSpeedOut {
  0% {
    -webkit-transform: translateX(0%) skewX(0deg);
    transform: translateX(0%) skewX(0deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(100%) skewX(-30deg);
    transform: translateX(100%) skewX(-30deg);
    opacity: 0;
  }
}
@keyframes lightSpeedOut {
  0% {
    -webkit-transform: translateX(0%) skewX(0deg);
    -ms-transform: translateX(0%) skewX(0deg);
    transform: translateX(0%) skewX(0deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(100%) skewX(-30deg);
    -ms-transform: translateX(100%) skewX(-30deg);
    transform: translateX(100%) skewX(-30deg);
    opacity: 0;
  }
}
.lightSpeedOut {
  -webkit-animation-name: lightSpeedOut;
  animation-name: lightSpeedOut;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
}
@-webkit-keyframes rotateIn {
  0% {
    -webkit-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(-200deg);
    transform: rotate(-200deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}
@keyframes rotateIn {
  0% {
    -webkit-transform-origin: center center;
    -ms-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(-200deg);
    -ms-transform: rotate(-200deg);
    transform: rotate(-200deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: center center;
    -ms-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}
.rotateIn {
  -webkit-animation-name: rotateIn;
  animation-name: rotateIn;
}
@-webkit-keyframes rotateInDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}
@keyframes rotateInDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}
.rotateInDownLeft {
  -webkit-animation-name: rotateInDownLeft;
  animation-name: rotateInDownLeft;
}
@-webkit-keyframes rotateInDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}
@keyframes rotateInDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}
.rotateInDownRight {
  -webkit-animation-name: rotateInDownRight;
  animation-name: rotateInDownRight;
}
@-webkit-keyframes rotateInUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}
@keyframes rotateInUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}
.rotateInUpLeft {
  -webkit-animation-name: rotateInUpLeft;
  animation-name: rotateInUpLeft;
}
@-webkit-keyframes rotateInUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}
@keyframes rotateInUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}
.rotateInUpRight {
  -webkit-animation-name: rotateInUpRight;
  animation-name: rotateInUpRight;
}
@-webkit-keyframes rotateOut {
  0% {
    -webkit-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(200deg);
    transform: rotate(200deg);
    opacity: 0;
  }
}
@keyframes rotateOut {
  0% {
    -webkit-transform-origin: center center;
    -ms-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: center center;
    -ms-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(200deg);
    -ms-transform: rotate(200deg);
    transform: rotate(200deg);
    opacity: 0;
  }
}
.rotateOut {
  -webkit-animation-name: rotateOut;
  animation-name: rotateOut;
}
@-webkit-keyframes rotateOutDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }
}
@keyframes rotateOutDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }
}
.rotateOutDownLeft {
  -webkit-animation-name: rotateOutDownLeft;
  animation-name: rotateOutDownLeft;
}
@-webkit-keyframes rotateOutDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }
}
@keyframes rotateOutDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }
}
.rotateOutDownRight {
  -webkit-animation-name: rotateOutDownRight;
  animation-name: rotateOutDownRight;
}
@-webkit-keyframes rotateOutUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }
}
@keyframes rotateOutUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }
}
.rotateOutUpLeft {
  -webkit-animation-name: rotateOutUpLeft;
  animation-name: rotateOutUpLeft;
}
@-webkit-keyframes rotateOutUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }
}
@keyframes rotateOutUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }
}
.rotateOutUpRight {
  -webkit-animation-name: rotateOutUpRight;
  animation-name: rotateOutUpRight;
}
@-webkit-keyframes slideInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes slideInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    -ms-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
  100% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}
.slideInDown {
  -webkit-animation-name: slideInDown;
  animation-name: slideInDown;
}
@-webkit-keyframes slideInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes slideInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    -ms-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
  100% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}
.slideInLeft {
  -webkit-animation-name: slideInLeft;
  animation-name: slideInLeft;
}
@-webkit-keyframes slideInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes slideInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    -ms-transform: translateX(2000px);
    transform: translateX(2000px);
  }
  100% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}
.slideInRight {
  -webkit-animation-name: slideInRight;
  animation-name: slideInRight;
}
@-webkit-keyframes slideOutLeft {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
}
@keyframes slideOutLeft {
  0% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    -ms-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
}
.slideOutLeft {
  -webkit-animation-name: slideOutLeft;
  animation-name: slideOutLeft;
}
@-webkit-keyframes slideOutRight {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px);
  }
}
@keyframes slideOutRight {
  0% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    -ms-transform: translateX(2000px);
    transform: translateX(2000px);
  }
}
.slideOutRight {
  -webkit-animation-name: slideOutRight;
  animation-name: slideOutRight;
}
@-webkit-keyframes slideOutUp {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
}
@keyframes slideOutUp {
  0% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    -ms-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
}
.slideOutUp {
  -webkit-animation-name: slideOutUp;
  animation-name: slideOutUp;
}
@-webkit-keyframes slideInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    transform: translateY(2000px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes slideInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    -ms-transform: translateY(2000px);
    transform: translateY(2000px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}
.slideInUp {
  -webkit-animation-name: slideInUp;
  animation-name: slideInUp;
}
@-webkit-keyframes slideOutDown {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    transform: translateY(2000px);
  }
}
@keyframes slideOutDown {
  0% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    -ms-transform: translateY(2000px);
    transform: translateY(2000px);
  }
}
.slideOutDown {
  -webkit-animation-name: slideOutDown;
  animation-name: slideOutDown;
}
@-webkit-keyframes hinge {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(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: rotate(80deg);
    transform: rotate(80deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  40% {
    -webkit-transform: rotate(60deg);
    transform: rotate(60deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  80% {
    -webkit-transform: rotate(60deg) translateY(0);
    transform: rotate(60deg) translateY(0);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }
  100% {
    -webkit-transform: translateY(700px);
    transform: translateY(700px);
    opacity: 0;
  }
}
@keyframes hinge {
  0% {
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    -webkit-transform-origin: top left;
    -ms-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: rotate(80deg);
    -ms-transform: rotate(80deg);
    transform: rotate(80deg);
    -webkit-transform-origin: top left;
    -ms-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  40% {
    -webkit-transform: rotate(60deg);
    -ms-transform: rotate(60deg);
    transform: rotate(60deg);
    -webkit-transform-origin: top left;
    -ms-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  80% {
    -webkit-transform: rotate(60deg) translateY(0);
    -ms-transform: rotate(60deg) translateY(0);
    transform: rotate(60deg) translateY(0);
    -webkit-transform-origin: top left;
    -ms-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }
  100% {
    -webkit-transform: translateY(700px);
    -ms-transform: translateY(700px);
    transform: translateY(700px);
    opacity: 0;
  }
}
.hinge {
  -webkit-animation-name: hinge;
  animation-name: hinge;
}
/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes rollIn {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-100%) rotate(-120deg);
    transform: translateX(-100%) rotate(-120deg);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0px) rotate(0deg);
    transform: translateX(0px) rotate(0deg);
  }
}
@keyframes rollIn {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-100%) rotate(-120deg);
    -ms-transform: translateX(-100%) rotate(-120deg);
    transform: translateX(-100%) rotate(-120deg);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0px) rotate(0deg);
    -ms-transform: translateX(0px) rotate(0deg);
    transform: translateX(0px) rotate(0deg);
  }
}
.rollIn {
  -webkit-animation-name: rollIn;
  animation-name: rollIn;
}
/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes rollOut {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0px) rotate(0deg);
    transform: translateX(0px) rotate(0deg);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(100%) rotate(120deg);
    transform: translateX(100%) rotate(120deg);
  }
}
@keyframes rollOut {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0px) rotate(0deg);
    -ms-transform: translateX(0px) rotate(0deg);
    transform: translateX(0px) rotate(0deg);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(100%) rotate(120deg);
    -ms-transform: translateX(100%) rotate(120deg);
    transform: translateX(100%) rotate(120deg);
  }
}
.rollOut {
  -webkit-animation-name: rollOut;
  animation-name: rollOut;
}
@-webkit-keyframes zoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.3);
    transform: scale(0.3);
  }
  50% {
    opacity: 1;
  }
}
@keyframes zoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.3);
    -ms-transform: scale(0.3);
    transform: scale(0.3);
  }
  50% {
    opacity: 1;
  }
}
.zoomIn {
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn;
}
@-webkit-keyframes zoomInDown {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.1) translateY(-2000px);
    transform: scale(0.1) translateY(-2000px);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  60% {
    opacity: 1;
    -webkit-transform: scale(0.475) translateY(60px);
    transform: scale(0.475) translateY(60px);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
}
@keyframes zoomInDown {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.1) translateY(-2000px);
    -ms-transform: scale(0.1) translateY(-2000px);
    transform: scale(0.1) translateY(-2000px);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  60% {
    opacity: 1;
    -webkit-transform: scale(0.475) translateY(60px);
    -ms-transform: scale(0.475) translateY(60px);
    transform: scale(0.475) translateY(60px);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
}
.zoomInDown {
  -webkit-animation-name: zoomInDown;
  animation-name: zoomInDown;
}
@-webkit-keyframes zoomInLeft {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.1) translateX(-2000px);
    transform: scale(0.1) translateX(-2000px);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  60% {
    opacity: 1;
    -webkit-transform: scale(0.475) translateX(48px);
    transform: scale(0.475) translateX(48px);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
}
@keyframes zoomInLeft {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.1) translateX(-2000px);
    -ms-transform: scale(0.1) translateX(-2000px);
    transform: scale(0.1) translateX(-2000px);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  60% {
    opacity: 1;
    -webkit-transform: scale(0.475) translateX(48px);
    -ms-transform: scale(0.475) translateX(48px);
    transform: scale(0.475) translateX(48px);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
}
.zoomInLeft {
  -webkit-animation-name: zoomInLeft;
  animation-name: zoomInLeft;
}
@-webkit-keyframes zoomInRight {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.1) translateX(2000px);
    transform: scale(0.1) translateX(2000px);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  60% {
    opacity: 1;
    -webkit-transform: scale(0.475) translateX(-48px);
    transform: scale(0.475) translateX(-48px);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
}
@keyframes zoomInRight {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.1) translateX(2000px);
    -ms-transform: scale(0.1) translateX(2000px);
    transform: scale(0.1) translateX(2000px);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  60% {
    opacity: 1;
    -webkit-transform: scale(0.475) translateX(-48px);
    -ms-transform: scale(0.475) translateX(-48px);
    transform: scale(0.475) translateX(-48px);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
}
.zoomInRight {
  -webkit-animation-name: zoomInRight;
  animation-name: zoomInRight;
}
@-webkit-keyframes zoomInUp {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.1) translateY(2000px);
    transform: scale(0.1) translateY(2000px);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  60% {
    opacity: 1;
    -webkit-transform: scale(0.475) translateY(-60px);
    transform: scale(0.475) translateY(-60px);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
}
@keyframes zoomInUp {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.1) translateY(2000px);
    -ms-transform: scale(0.1) translateY(2000px);
    transform: scale(0.1) translateY(2000px);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  60% {
    opacity: 1;
    -webkit-transform: scale(0.475) translateY(-60px);
    -ms-transform: scale(0.475) translateY(-60px);
    transform: scale(0.475) translateY(-60px);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
}
.zoomInUp {
  -webkit-animation-name: zoomInUp;
  animation-name: zoomInUp;
}
@-webkit-keyframes zoomOut {
  0% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  50% {
    opacity: 0;
    -webkit-transform: scale(0.3);
    transform: scale(0.3);
  }
  100% {
    opacity: 0;
  }
}
@keyframes zoomOut {
  0% {
    opacity: 1;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
  50% {
    opacity: 0;
    -webkit-transform: scale(0.3);
    -ms-transform: scale(0.3);
    transform: scale(0.3);
  }
  100% {
    opacity: 0;
  }
}
.zoomOut {
  -webkit-animation-name: zoomOut;
  animation-name: zoomOut;
}
@-webkit-keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale(0.475) translateY(-60px);
    transform: scale(0.475) translateY(-60px);
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(0.1) translateY(2000px);
    transform: scale(0.1) translateY(2000px);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
  }
}
@keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale(0.475) translateY(-60px);
    -ms-transform: scale(0.475) translateY(-60px);
    transform: scale(0.475) translateY(-60px);
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(0.1) translateY(2000px);
    -ms-transform: scale(0.1) translateY(2000px);
    transform: scale(0.1) translateY(2000px);
    -webkit-transform-origin: center bottom;
    -ms-transform-origin: center bottom;
    transform-origin: center bottom;
  }
}
.zoomOutDown {
  -webkit-animation-name: zoomOutDown;
  animation-name: zoomOutDown;
}
@-webkit-keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale(0.475) translateX(42px);
    transform: scale(0.475) translateX(42px);
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(0.1) translateX(-2000px);
    transform: scale(0.1) translateX(-2000px);
    -webkit-transform-origin: left center;
    transform-origin: left center;
  }
}
@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale(0.475) translateX(42px);
    -ms-transform: scale(0.475) translateX(42px);
    transform: scale(0.475) translateX(42px);
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(0.1) translateX(-2000px);
    -ms-transform: scale(0.1) translateX(-2000px);
    transform: scale(0.1) translateX(-2000px);
    -webkit-transform-origin: left center;
    -ms-transform-origin: left center;
    transform-origin: left center;
  }
}
.zoomOutLeft {
  -webkit-animation-name: zoomOutLeft;
  animation-name: zoomOutLeft;
}
@-webkit-keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale(0.475) translateX(-42px);
    transform: scale(0.475) translateX(-42px);
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(0.1) translateX(2000px);
    transform: scale(0.1) translateX(2000px);
    -webkit-transform-origin: right center;
    transform-origin: right center;
  }
}
@keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale(0.475) translateX(-42px);
    -ms-transform: scale(0.475) translateX(-42px);
    transform: scale(0.475) translateX(-42px);
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(0.1) translateX(2000px);
    -ms-transform: scale(0.1) translateX(2000px);
    transform: scale(0.1) translateX(2000px);
    -webkit-transform-origin: right center;
    -ms-transform-origin: right center;
    transform-origin: right center;
  }
}
.zoomOutRight {
  -webkit-animation-name: zoomOutRight;
  animation-name: zoomOutRight;
}
@-webkit-keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale(0.475) translateY(60px);
    transform: scale(0.475) translateY(60px);
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(0.1) translateY(-2000px);
    transform: scale(0.1) translateY(-2000px);
    -webkit-transform-origin: center top;
    transform-origin: center top;
  }
}
@keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale(0.475) translateY(60px);
    -ms-transform: scale(0.475) translateY(60px);
    transform: scale(0.475) translateY(60px);
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(0.1) translateY(-2000px);
    -ms-transform: scale(0.1) translateY(-2000px);
    transform: scale(0.1) translateY(-2000px);
    -webkit-transform-origin: center top;
    -ms-transform-origin: center top;
    transform-origin: center top;
  }
}
.zoomOutUp {
  -webkit-animation-name: zoomOutUp;
  animation-name: zoomOutUp;
}
/*
 * Nivo Lightbox v1.2.0
 * http://dev7studios.com/nivo-lightbox
 *
 * Copyright 2013, Dev7studios
 * Free to use and abuse under the MIT license.
 * http://www.opensource.org/licenses/mit-license.php
 */
.nivo-lightbox-overlay {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99998;
  width: 100%;
  height: 100%;
  overflow: hidden;
  visibility: hidden;
  opacity: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.nivo-lightbox-overlay.nivo-lightbox-open {
  visibility: visible;
  opacity: 1;
}
.nivo-lightbox-wrap {
  position: absolute;
  top: 10%;
  bottom: 10%;
  left: 10%;
  right: 10%;
}
.nivo-lightbox-content {
  width: 100%;
  height: 100%;
}
.nivo-lightbox-title-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 99999;
  text-align: center;
}
.nivo-lightbox-nav {
  display: none;
}
.nivo-lightbox-prev {
  position: absolute;
  top: 50%;
  left: 0;
}
.nivo-lightbox-next {
  position: absolute;
  top: 50%;
  right: 0;
}
.nivo-lightbox-close {
  position: absolute;
  top: 2%;
  right: 2%;
}
.nivo-lightbox-image {
  text-align: center;
}
.nivo-lightbox-image img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  vertical-align: middle;
}
.nivo-lightbox-content iframe {
  width: 100%;
  height: 100%;
}
.nivo-lightbox-inline,
.nivo-lightbox-ajax {
  max-height: 100%;
  overflow: auto;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  /* https://bugzilla.mozilla.org/show_bug.cgi?id=308801 */
}
.nivo-lightbox-error {
  display: table;
  text-align: center;
  width: 100%;
  height: 100%;
  color: #fff;
  text-shadow: 0 1px 1px #000;
}
.nivo-lightbox-error p {
  display: table-cell;
  vertical-align: middle;
}
/* Effects
 **********************************************/
.nivo-lightbox-notouch .nivo-lightbox-effect-fade,
.nivo-lightbox-notouch .nivo-lightbox-effect-fadeScale,
.nivo-lightbox-notouch .nivo-lightbox-effect-slideLeft,
.nivo-lightbox-notouch .nivo-lightbox-effect-slideRight,
.nivo-lightbox-notouch .nivo-lightbox-effect-slideUp,
.nivo-lightbox-notouch .nivo-lightbox-effect-slideDown,
.nivo-lightbox-notouch .nivo-lightbox-effect-fall {
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
/* fadeScale */
.nivo-lightbox-effect-fadeScale .nivo-lightbox-wrap {
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-transform: scale(0.7);
  -moz-transform: scale(0.7);
  -ms-transform: scale(0.7);
  transform: scale(0.7);
}
.nivo-lightbox-effect-fadeScale.nivo-lightbox-open .nivo-lightbox-wrap {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}
/* slideLeft / slideRight / slideUp / slideDown */
.nivo-lightbox-effect-slideLeft .nivo-lightbox-wrap,
.nivo-lightbox-effect-slideRight .nivo-lightbox-wrap,
.nivo-lightbox-effect-slideUp .nivo-lightbox-wrap,
.nivo-lightbox-effect-slideDown .nivo-lightbox-wrap {
  -webkit-transition: all 0.3s cubic-bezier(0.25, 0.5, 0.5, 0.9);
  -moz-transition: all 0.3s cubic-bezier(0.25, 0.5, 0.5, 0.9);
  -ms-transition: all 0.3s cubic-bezier(0.25, 0.5, 0.5, 0.9);
  -o-transition: all 0.3s cubic-bezier(0.25, 0.5, 0.5, 0.9);
  transition: all 0.3s cubic-bezier(0.25, 0.5, 0.5, 0.9);
}
.nivo-lightbox-effect-slideLeft .nivo-lightbox-wrap {
  -webkit-transform: translateX(-10%);
  -moz-transform: translateX(-10%);
  -ms-transform: translateX(-10%);
  transform: translateX(-10%);
}
.nivo-lightbox-effect-slideRight .nivo-lightbox-wrap {
  -webkit-transform: translateX(10%);
  -moz-transform: translateX(10%);
  -ms-transform: translateX(10%);
  transform: translateX(10%);
}
.nivo-lightbox-effect-slideLeft.nivo-lightbox-open .nivo-lightbox-wrap,
.nivo-lightbox-effect-slideRight.nivo-lightbox-open .nivo-lightbox-wrap {
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
}
.nivo-lightbox-effect-slideDown .nivo-lightbox-wrap {
  -webkit-transform: translateY(-10%);
  -moz-transform: translateY(-10%);
  -ms-transform: translateY(-10%);
  transform: translateY(-10%);
}
.nivo-lightbox-effect-slideUp .nivo-lightbox-wrap {
  -webkit-transform: translateY(10%);
  -moz-transform: translateY(10%);
  -ms-transform: translateY(10%);
  transform: translateY(10%);
}
.nivo-lightbox-effect-slideUp.nivo-lightbox-open .nivo-lightbox-wrap,
.nivo-lightbox-effect-slideDown.nivo-lightbox-open .nivo-lightbox-wrap {
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}
/* fall */
.nivo-lightbox-body-effect-fall .nivo-lightbox-effect-fall {
  -webkit-perspective: 1000px;
  -moz-perspective: 1000px;
  perspective: 1000px;
}
.nivo-lightbox-effect-fall .nivo-lightbox-wrap {
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  -webkit-transform: translateZ(300px);
  -moz-transform: translateZ(300px);
  -ms-transform: translateZ(300px);
  transform: translateZ(300px);
}
.nivo-lightbox-effect-fall.nivo-lightbox-open .nivo-lightbox-wrap {
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
}
/* Wordpress default styles
----------------------------------------------------------*/
.nofly:after {
    content: "";
    height: 0;
    line-height: 0;
    display: block;
    clear: both;
    visibility: hidden;
}

.nofly {
    zoom: 1;
}
.alignnone {
  margin: 0;
}
.aligncenter,
div.aligncenter,
.aligncenter img {
  display: block;
  margin: 1em auto;
}
.alignright {
  float: right;
  margin: 5px 0 20px 20px;
}
.alignleft {
  float: left;
  margin: 5px 20px 20px 0;
}
.wp-caption {
  background-color: transparent;
  border: 1px solid #2b2b2b;
  padding: 5px;
  max-width: 100%;
  text-align: center;
}
.wp-caption img {
  display: block;
  margin: 0;
  max-width: 100%;
  height: auto;
}
.wp-caption-text {
  font-size: 12px;
  margin: 0;
  padding: 5px 0 0;
}
.gallery-caption {
  display: block;
}
.bypostauthor {
  display: block;
}
.sticky {
  display: block;
}
/* Body
----------------------------------------------------------*/
* {
  box-sizing: border-box;
}
body {
  color: #bbbbbb;
  font-size: 14px;
  font-weight: 400;
  font-style: normal;
  font-family: 'Microsoft Yahei', Arial, Helvetica, sans-serif;
  line-height: 1.6;
  background: #010711;
  word-wrap: break-word;
  -ms-word-wrap: break-word;
  overflow-x: auto;
}
/* Typography
----------------------------------------------------------*/
a {
  font-family: 'Microsoft Yahei', Arial, Helvetica, sans-serif;
  transition: 0.5s;
  color: #47a6db;
  text-decoration: none;
}
a:hover {
  color: #333333;
  text-decoration: none;
}
a img {
  border: none;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  color: #bbbbbb;
  font-weight: 400;
  font-style: normal;
  line-height: 1.2;
}
h1 {
  font-size: 40px;
}
h2 {
  font-size: 32px;
}
h3 {
  font-size: 24px;
}
h4 {
  font-size: 18px;
}
h5 {
  font-size: 14px;
}
h6 {
  font-size: 12px;
}
input, textarea, select{ outline:none;}
input:focus, textarea:focus,select:focus{ border:1px solid #ee5032}
/* Elements
----------------------------------------------------------*/
img {
  max-width: 100%;
  height: auto;
}
input[type=text],
textarea {
  border: 1px solid #555555;
  background: #ffffff;
}
blockquote {
  font-style: italic;
  border-left: #47a6db;
  margin-left: 30px;
  margin-right: 30px;
  padding: 20px;
}
/* Wrapper
----------------------------------------------------------*/
#wrap {
  width: 100%;
  margin: 0;
  padding: 0;
}
/* Clearfix
----------------------------------------------------------*/
.clearfix {
  zoom: 1;
}
.clearfix:before,
.clearfix:after {
  content: "";
  display: table;
}
.clearfix:after {
  clear: both;
}
/* Tabs
----------------------------------------------------------*/
@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-moz-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.tabs .tabs-nav {
  margin: 0;
  padding: 0;
  overflow: hidden;
  list-style-type: none;
}
.tabs .tabs-nav li {
  float: left;
}
.tabs .tabs-nav a {
  display: block;
}
.tabs .tabs-panel {
  clear: both;
  display: none;
}
.tabs .tabs-panel.active {
  animation: fadeIn 1 1s ease;
  display: block;
}
.social-icons a {
  display: inline-block;
  background-color: #47a6db;
  color: #cccccc;
  margin-right: 10px;
  border-radius: 50%;
  font-size: 20px;
  text-shadow: none;
  color: #111;
  width: 48px;
  height: 48px;
  line-height: 48px;
  text-align: center;
}
.social-icons a:hover {
  background-color: #111111;
  color: #ffffff;
}
.backtotop {
  position: fixed;
  bottom: 10px;
  right: 10px;
  z-index: 10000;
  background-color: #bdbdbd;
  border-radius: 50%;
  font-size: 20px;
  text-shadow: none;
  color: #888888;
  width: 48px;
  height: 48px;
  line-height: 48px;
  text-align: center;
}
.backtotop:hover {
  background-color: #ffffff;
  color: #555555;
}
.btn-primary {
  padding: 6px 12px;
  background-color: #47a6db;
  transition: all 0.5s;
  color: #ffffff;
  border-radius: 4px;
  border: none;
}
.btn-primary:hover {
  background-color: #333333;
}
.btn-secondary {
  padding: 6px 12px;
  background-color: #333333;
  transition: all 0.5s;
  color: #ffffff;
  border-radius: 4px;
  border: none;
}
.btn-secondary:hover {
  background-color: #47a6db;
}
/* Preloader
----------------------------------------------------------*/
#loader {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: #ffffff;
  z-index: 9999999999;
  opacity: 1;
}
.loader {
  position: absolute;
  width: 100px;
  height: 100px;
  margin: 0 auto;
  top: 50%;
  left: 0px;
  margin-top: -60px;
  right: 0px;
  background: url(../img/loader.gif) no-repeat center;
}
/*
 * Nivo Lightbox Default Theme v1.0
 * http://dev7studios.com/nivo-lightbox
 *
 * Copyright 2013, Dev7studios
 * Free to use and abuse under the MIT license.
 * http://www.opensource.org/licenses/mit-license.php
 */
.nivo-lightbox-theme-default.nivo-lightbox-overlay {
  background: #666;
  background: rgba(0, 0, 0, 0.85);
}
.nivo-lightbox-theme-default .nivo-lightbox-content.nivo-lightbox-loading {
  background: url(../img/loader.gif) no-repeat 50% 50%;
}
.nivo-lightbox-theme-default .nivo-lightbox-nav {
  top: 10%;
  width: 8%;
  height: 80%;
  text-indent: -9999px;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  opacity: 0.5;
}
.nivo-lightbox-theme-default .nivo-lightbox-nav:hover {
  opacity: 1;
  background-color: rgba(0, 0, 0, 0.5);
}
.nivo-lightbox-theme-default .nivo-lightbox-prev {
  border-radius: 0 3px 3px 0;
}
.nivo-lightbox-theme-default .nivo-lightbox-next {
  border-radius: 3px 0 0 3px;
}
.nivo-lightbox-theme-default .nivo-lightbox-close {
  display: block;
  width: 40px;
  height: 40px;
  font-size: 0;
  opacity: 0.5;
}
.nivo-lightbox-theme-default .nivo-lightbox-close:before {
  content: "\f00d";
  font-family: FontAwesome;
  line-height: 1;
  font-size: 40px;
  display: block;
}
.nivo-lightbox-theme-default .nivo-lightbox-close:hover {
  opacity: 1;
}
.nivo-lightbox-theme-default .nivo-lightbox-title-wrap {
  bottom: -7%;
}
.nivo-lightbox-theme-default .nivo-lightbox-title {
  font-style: normal;
  font-weight: normal;
  background: #000;
  color: #fff;
  padding: 7px 15px;
  border-radius: 30px;
}
.nivo-lightbox-theme-default .nivo-lightbox-image img {
  background: #fff;
  -webkit-box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.4);
  -moz-box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.4);
  box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.4);
}
.nivo-lightbox-theme-default .nivo-lightbox-ajax,
.nivo-lightbox-theme-default .nivo-lightbox-inline {
  background: #fff;
  padding: 40px;
  -webkit-box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.4);
  -moz-box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.4);
  box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.4);
}
@media (-webkit-min-device-pixel-ratio: 1.3), (-o-min-device-pixel-ratio: 2.6/2), (min--moz-device-pixel-ratio: 1.3), (min-device-pixel-ratio: 1.3), (min-resolution: 1.3dppx) {
  .nivo-lightbox-theme-default .nivo-lightbox-content.nivo-lightbox-loading {
    background-image: url(img/loading@2x.gif);
    background-size: 32px 32px;
  }
}
.site-header {
  transition: 0.4s top ease-in;
  position: fixed;
  top: 0;
  width: 100%;
  border-bottom: 0px none;
  background-color: transparent;
  z-index: 999;
}
@media (max-width: 768px){.site-header{background-color: rgb(6,2,17);}}
.admin-bar .site-header {
  top: 32px;
}
.page-template-one-page-php .site-header {
  top: -100px;
  z-index: -999;
}
.page-template-one-page-php .site-header.minimized {
  top: 0;
  z-index: 1999; 
}
.page-template-one-page-php.admin-bar .site-header.minimized {
  top: 32px;
}
#scroll-top {
  opacity: 0;
  transition: 0.4s all ease-in;
}
#scroll-top.show-scroll {
  opacity: 1;
}
.site-branding {
  float: left;
}
.site-branding .logo {
  display: table-cell;
  vertical-align: middle;
}
.site-title,
.site-description {
  display: block;
  margin: 0;
  width: 0;
  height: 0;
  text-indent: -99999px;
}
.navbar-toggle {
  color: #ffffff;
  position: relative;
  float: right;
  font-size: 30px;
  line-height: 1;
  margin: 0;
  padding: 0;
  line-height: 70px;
}
.navbar-toggle:hover {
  color: #47a6db;
}
.title-area {
  text-align: center;
  padding: 90px 0 0;
  background-position: center top;
  background-repeat: no-repeat;
  background-attachment: fixed;
}
.title-area h1 {
  color: #ffffff;
  font-weight: 700;
  text-transform: uppercase;
  margin: 30px 0;
}
.nav {
  margin: 0;
  padding: 0;
}
.nav ul {
  margin: 0;
  padding: 0;
}
.nav li {
  display: inline;
  float: left;
}
.nav li ul {
  opacity: 0;
  display: block;
  visibility: hidden;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 999;
  min-width: 150px;
}
.nav li li {
  display: block;
  width: 100%;
}
.nav li li a {
  font-weight: 400;
  padding:0 10px;
  height:40px;
  line-height:40px;
  overflow:hidden;
}
.nav li li ul {
  top: -100%;
  left: 100%;
}
.nav li li:hover > ul {
  top: 0;
}
.nav li:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}
.nav a {
  color: #ffffff;
  display: block;
  padding: 5px 10px;
}
.dropdown-menu {
  border-radius: 0;
  padding: 0;
  border-width: 0;
  background: rgba(0, 0, 0, 0.8);
}
.dropdown-menu > li > a {
  padding-top: 5px;
  padding-bottom: 5px;
}
.primary-nav {
  float: right;
}
.primary-nav a {
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  padding: 24px 20px;
}
.primary-nav .current-menu-item > a,
.primary-nav .current_page_item > a {
  background-color: #47a6db;
}
.primary-nav .nav > li > a {
  padding-top: 0px;
  padding-bottom: 20px;
}
.primary-nav .nav > li > a:hover {
  background-color: #47a6db;
}
.primary-nav .nav li.menu-item-has-children a:after {
  content: '';
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 5px;
  vertical-align: middle;
  border-top: 4px solid;
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
}
.primary-nav .nav li.menu-item-has-children li a:after {
  display: none;
}
.primary-nav .nav li ul {
  border-bottom: 1px solid #2b2b2b;
}
.primary-nav .nav li ul li {
  border-left: 1px solid #2b2b2b;
  border-right: 1px solid #2b2b2b;
  background-color: rgba(34, 34, 34, 0.9);
}
.primary-nav .nav li ul li.menu-item-has-children li {
  border-left: none;
}
.primary-nav .nav li ul li a:hover{
  background-color: #2b2b2b;
}
.primary-nav .nav li ul .current-menu-item > a,
.primary-nav .nav li ul .current_page_item > a {
  background-color: transparent;
}
.page-template-one-page .primary-nav .current-menu-item > a,
.page-template-one-page .primary-nav .current_page_item > a {
  background-color: transparent;
}
.page-template-one-page .primary-nav a.current {
  background-color: #47a6db;
}
.numeric-navigation {
  text-align: center;
}
.numeric-navigation *:first-child {
  border-radius: 4px 0 0 4px;
}
.numeric-navigation *:last-child {
  border-radius: 0 4px 4px 0;
}
.numeric-navigation a,
.numeric-navigation span {
  color: #888;
  padding: 6px 12px;
  margin: 0 0 0 -4px;
  border: solid 1px #2b2b2b;
  background: #27282b;
}
.numeric-navigation span {
  color: #ffffff;
  background-color: #222222;
}
.numeric-navigation a:hover,
.numeric-navigation span:hover {
  color: #47a6db;
}
.post-navigation .nav-previous,
.post-navigation .nav-next {
  display: inline-block;
}
.post-navigation .nav-previous a,
.post-navigation .nav-next a {
  font-size: 20px;
  width: 35px;
  height: 35px;
  line-height: 35px;
  text-align: center;
  display: inline-block;
  border: 1px solid #2b2b2b;
  margin-left: 10px;
}
.site-content {
  padding: 20px 0 90px;
}
.site-main > article {
  margin: 0 0 60px 0;
}
h2.entry-title {
  font-size: 24px;
  margin: 0 0 10px;
}
.entry-header {
  position: relative;
}
.entry-header .entry-format {
  display: block;
  margin-bottom: 20px;
}
.entry-header .entry-date {
  position: absolute;
  left: 0;
  top: 0;
  width: 60px;
  border-right: 1px solid #888;
  text-align: center;
}
.entry-header .entry-date span {
  display: block;
  font-size: 36px;
  color: #ffffff;
  line-height: 1;
  text-transform: uppercase;
}
.entry-header .entry-date .entry-day {
  line-height: 0.7;
  margin-bottom: 5px;
}
.entry-header .entry-date .entry-month {
  font-size: 20px;
}
.sticky .entry-header .entry-date {
  border-color: #47a6db;
}
.sticky .entry-header .entry-date span {
  color: #47a6db;
}
.entry-content {
  overflow: hidden;
}
.entry-summary,
.entry-content,
.entry-header,
.comments-area {
  padding-left: 80px;
}
.entry-footer {
  margin-left: 80px;
}
.hide-singular-title .entry-summary,
.hide-singular-title .entry-content,
.hide-singular-title .comments-area {
  padding-left: 0;
}
.hide-singular-title .entry-footer {
  margin-left: 0;
}
.page .entry-summary,
.search .entry-summary,
.portfolio_project .entry-summary,
.page .entry-content,
.search .entry-content,
.portfolio_project .entry-content,
.page .entry-header,
.search .entry-header,
.portfolio_project .entry-header,
.page .comments-area,
.search .comments-area,
.portfolio_project .comments-area {
  padding-left: 0;
}
.page .entry-footer,
.search .entry-footer,
.portfolio_project .entry-footer {
  margin-left: 0;
}
.search .entry-header .entry-date {
  display: none;
}
.entry-summary table,
.entry-content table {
  text-align: left;
  width: 100%;
}
.entry-footer {
  font-size: 11px;
  padding: 10px 0;
  margin-top: 20px;
  border-top: 1px solid #2b2b2b;
  border-bottom: 1px solid #2b2b2b;
}
.entry-footer span {
  margin-right: 25px;
}
.entry-footer i {
  margin-right: 5px;
}
.entry-footer a {
  color: #888;
}
.entry-footer a:hover {
  text-decoration: underline;
}
.entry-format img {
  display: block;
  margin:0 auto;
}
.entry-format iframe {
  width: 100%;
}
.entry-format blockquote,
.entry-format .link-block {
  color: #ffffff;
  font-size: 24px;
  font-style: normal;
  font-weight: 300;
  position: relative;
  display: block;
  margin: 0;
  padding: 30px 30px 30px 80px;
  background-color: #27282b;
  line-height: 1.1;
}
.entry-format blockquote:before,
.entry-format .link-block:before {
  position: absolute;
  left: 30px;
  top: 33px;
  color: #ffffff;
}
.entry-format blockquote:before {
  font-family: FontAwesome;
  content: "\f10d";
}
.entry-format blockquote cite {
  font-style: italic;
  font-size: 14px;
  display: block;
  margin-top: 10px;
}
.entry-format .link-block:before {
  font-family: FontAwesome;
  content: "\f0c1";
  transition: 0.3s;
}
.entry-format .link-block:hover {
  background-color: #47a6db;
}
.entry-format .link-block:hover:before {
  color: #ffffff;
}
.page-header {
  margin: 0;
  border: none;
}
.page-header .page-title {
  padding: 0;
  margin: 0 0 60px 0;
  font-size: 36px;
}
.content-area .post-navigation {
  float: right;
}
.content-area code,
.content-area pre {
  background-color: transparent;
}
.content-area pre {
  color: #cccccc;
  border: 1px solid #2b2b2b;
}
.comments-area {
  clear: both;
}
.comments-area .comment-form {
  margin-left: -15px;
  margin-right: -15px;
}
.comments-area .logged-in-as {
  margin-left: 15px;
  margin-right: 15px;
}
.comments-area .comment-reply-title {
  text-transform: uppercase;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 20px;
}
.comments-area .comment-notes,
.comments-area .form-allowed-tags {
  display: none;
}
.comments-area input,
.comments-area textarea {
  border: 1px solid #555555;
  width: 100%;
  margin-bottom: 20px;
  padding: 5px;
  background-color: transparent;
  color: #ffffff;
  font-weight: 400;
  border-radius: 4px;
  font-size: 14px;
}
.comments-area .submit {
  padding: 6px 12px;
  background-color: #47a6db;
  transition: all 0.5s;
  color: #ffffff;
  border-radius: 4px;
  border: none;
  width: auto;
  margin-right: 15px;
  margin-left: 15px;
}
.comments-area .submit:hover {
  background-color: #333333;
}
.comments-area .submit:hover {
  background-color: #333333;
}
.comments-area .comments-title {
  padding-bottom: 25px;
  text-transform: uppercase;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
}
.comments-area .comment-list {
  list-style: none;
  margin: 0;
  padding: 0;
  float: left;
}
.comments-area .comment-list .comment {
  float: left;
  clear: both;
  width: 100%;
}
.comments-area .comment-list .comment article {
  padding: 15px 0;
}
.comments-area .comment-list .comment .children {
  float: left;
  margin-left: 95px;
  padding: 0;
  list-style: none;
}
.comments-area .comment-list .comment:last-child {
  margin-bottom: 0;
}
.comments-area .comment-list .comment-author {
  padding-right: 15px;
  float: left;
}
.comments-area .comment-list .comment-author .avatar {
  width: 80px;
  height: 80px;
}
.comments-area .comment-list .comment-meta {
  padding-left: 95px;
  padding-top: 5px;
}
.comments-area .comment-list .comment-meta .author-name {
  color: #47a6db;
  padding-right: 15px;
  font-style: normal;
  display: block;
  font-size: 15px;
}
.comments-area .comment-list .comment-meta .author-name a:hover {
  color: #ffffff;
}
.comments-area .comment-list .comment-meta .comment-reply-link {
  float: right;
}
.comments-area .comment-list .comment-meta .comment-edit-link {
  float: right;
  margin-right: 20px;
}
.comments-area .comment-list .comment-meta .author-posted {
  font-style: italic;
  font-size: 11px;
  color: #999999;
}
.comments-area .comment-list .comment-meta .author-posted:hover {
  color: #47a6db;
}
.comments-area .numeric-navigation {
  clear: both;
  padding-top: 30px;
}
.comments-area .comment-respond {
  margin-top: 50px;
}
.comments-area .comment-content {
  word-break: break-all;
}
.comments-area .comment-awaiting-moderation {
  display: block;
}
.post-password-form input[type=password] {
  background-color: transparent;
  border: 1px solid #2b2b2b;
  padding: 4px 5px;
  color: #ffffff;
}
.post-password-form input[type=submit] {
  padding: 6px 12px;
  background-color: #47a6db;
  transition: all 0.5s;
  color: #ffffff;
  border-radius: 4px;
  border: none;
}
.post-password-form input[type=submit]:hover {
  background-color: #333333;
}
.sidebar-content .content-area {
  float: right;
}
.widget {
  margin-bottom: 60px;
}
.widget .widget-title {
  text-transform: uppercase;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 25px;
}
.widget ul {
  margin: 0;
  padding: 0;
}
.widget ul li {
  list-style: none;
}
.widget table,
.widget select {
  width: 100%;
}
.widget select {
  border: 1px solid #2b2b2b;
  height: 30px;
  background-color: transparent;
}
.widget select option {
  color: #555555;
}
.widget table {
  text-align: left;
  width: 100%;
}
.widget table caption {
  border: 1px solid #2b2b2b;
  border-bottom-width: 0;
  text-align: center;
}
.widget table tr {
  border: 1px solid #2b2b2b;
  border-bottom-width: 0;
  padding: 3px 0;
}
.widget table tr td,
.widget table tr th {
  padding: 0 5px;
  border-bottom: 1px solid #2b2b2b;
  border-left: 1px solid #2b2b2b;
}
.widget_calendar {
  line-height: 26px;
}
.widget_categories li,
.widget_recent_comments li,
.widget_rss li,
.widget_pages li,
.widget_archive li,
.widget_nav_menu li,
.widget_recent_entries li,
.widget_meta li {
  border-bottom: solid 1px #2b2b2b;
  padding: 8px 0;
}
.widget_categories .children,
.widget_recent_comments .children,
.widget_rss .children,
.widget_pages .children,
.widget_archive .children,
.widget_nav_menu .children,
.widget_recent_entries .children,
.widget_meta .children {
  border-top: 1px solid #2b2b2b;
  margin-top: 10px;
}
.widget_categories .children li a,
.widget_recent_comments .children li a,
.widget_rss .children li a,
.widget_pages .children li a,
.widget_archive .children li a,
.widget_nav_menu .children li a,
.widget_recent_entries .children li a,
.widget_meta .children li a {
  padding-left: 10px;
}
.widget_categories .children li .children li a,
.widget_recent_comments .children li .children li a,
.widget_rss .children li .children li a,
.widget_pages .children li .children li a,
.widget_archive .children li .children li a,
.widget_nav_menu .children li .children li a,
.widget_recent_entries .children li .children li a,
.widget_meta .children li .children li a {
  padding-left: 20px;
}
.widget_categories .children li .children li:last-child,
.widget_recent_comments .children li .children li:last-child,
.widget_rss .children li .children li:last-child,
.widget_pages .children li .children li:last-child,
.widget_archive .children li .children li:last-child,
.widget_nav_menu .children li .children li:last-child,
.widget_recent_entries .children li .children li:last-child,
.widget_meta .children li .children li:last-child {
  padding-bottom: 0;
  border-bottom: none;
}
.widget_categories .children li .children .children li a,
.widget_recent_comments .children li .children .children li a,
.widget_rss .children li .children .children li a,
.widget_pages .children li .children .children li a,
.widget_archive .children li .children .children li a,
.widget_nav_menu .children li .children .children li a,
.widget_recent_entries .children li .children .children li a,
.widget_meta .children li .children .children li a {
  padding-left: 30px;
}
.widget_categories .children li .children .children li:last-child,
.widget_recent_comments .children li .children .children li:last-child,
.widget_rss .children li .children .children li:last-child,
.widget_pages .children li .children .children li:last-child,
.widget_archive .children li .children .children li:last-child,
.widget_nav_menu .children li .children .children li:last-child,
.widget_recent_entries .children li .children .children li:last-child,
.widget_meta .children li .children .children li:last-child {
  padding-bottom: 0;
  border-bottom: none;
}
.widget_categories .children li:last-child,
.widget_recent_comments .children li:last-child,
.widget_rss .children li:last-child,
.widget_pages .children li:last-child,
.widget_archive .children li:last-child,
.widget_nav_menu .children li:last-child,
.widget_recent_entries .children li:last-child,
.widget_meta .children li:last-child {
  padding-bottom: 0;
  border-bottom: none;
}
.widget_tag_cloud a {
  padding: 5px 8px;
  margin: 0 3px 6px 0;
  display: inline-block;
  font-size: 11px !important;
  color: #888;
  font-weight: 400;
  background-color: transparent;
  border: 1px solid #2b2b2b;
}
.widget_tag_cloud a:hover {
  color: #ffffff;
  border: 1px solid #ffffff;
}
.tabs-widget .tabs-nav li {
  margin-right: 5px;
  border-bottom: none;
  padding-bottom: 0;
}
.tabs-widget .tabs-nav li:before {
  display: none;
}
.tabs-widget .tabs-nav li a {
  background: #222222;
  border: 1px solid #2b2b2b;
  color: #646464;
  padding: 8px 16px;
}
.tabs-widget .tabs-nav li a.active {
  color: #ffffff;
  background: #27282b;
}
.tabs-widget .tabs-panel {
  margin-top: -1px;
  border: 1px solid #2b2b2b;
  background: #27282b;
  padding: 15px 20px 20px 20px;
}
.tabs-widget .tab-comments .comment {
  border-bottom: solid 1px #2b2b2b;
  padding: 10px 0;
  overflow: hidden;
}
.tabs-widget .tab-comments .comment-summary {
  font-style: italic;
  margin-bottom: 5px;
}
.recent-post,
.popular-post {
  border-bottom: solid 1px #2b2b2b;
  padding: 10px 0;
  overflow: hidden;
}
.recent-post:last-child,
.popular-post:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.recent-post .widget-thumb,
.popular-post .widget-thumb {
  text-align: center;
  width: 100%;
  display: inline-block;
}
.recent-post .post-text,
.popular-post .post-text {
  margin-top: 10px;
}
.recent-post .post-text .post-title,
.popular-post .post-text .post-title {
  display: block;
}
.recent-post .post-text .post-date,
.popular-post .post-text .post-date {
  font-size: 12px;
}
.recent-post .post-text .post-comments,
.popular-post .post-text .post-comments {
  font-size: 12px;
  padding: 0 13px;
}
.recent-post .post-text .read-more,
.popular-post .post-text .read-more {
  float: right;
  font-size: 12px;
  line-height: 2;
}
.recent-post.thumb-left .widget-thumb,
.popular-post.thumb-left .widget-thumb {
  float: left;
  width: 50px;
  height:50px;
  margin-right: 10px;
}
.recent-post.thumb-left .post-text,
.popular-post.thumb-left .post-text {
  margin-top: 0;
}
.search-form {
  position: relative;
}
.search-form:before {
  content: '\f002';
  font-family: FontAwesome;
  color: #47a6db;
  position: absolute;
  top: 0;
  right: 0;
  font-size: 14px;
  width: 33px;
  height: 33px;
  line-height: 33px;
  text-align: center;
  cursor: pointer;
}
.search-form .screen-reader-text {
  display: none;
}
.search-form label {
  width: 100%;
}
.search-form .search-field {
  border: 1px solid #2b2b2b;
  padding: 5px;
  color: #ffffff;
  width: 100%;
  background-color: transparent;
  font-weight: 400;
}
.search-form ::-webkit-input-placeholder {
  color: #cccccc;
}
.search-form :-moz-placeholder {
  color: #cccccc;
}
.search-form ::-moz-placeholder {
  color: #cccccc;
}
.search-form :-ms-input-placeholder {
  color: #cccccc;
}
.search-form .search-submit {
  width: 40px;
  height: 40px;
  background: transparent;
  position: absolute;
  top: 0;
  right: 0;
  border: none;
  text-indent: -9999px;
}
.site-footer {
  background: #000;
  color: #cccccc;
  padding: 20px 0 20px 0;
}
.site-footer .site-info {
  text-align: center;
}
.site-footer .site-info .social-icons {
  margin-bottom: 40px;
}
/*
 * OwlCarousel
 */
/* clearfix */
.owl-carousel .owl-wrapper:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}
/* display none until init */
.owl-carousel {
  display: none;
  position: relative;
  -ms-touch-action: pan-y;
}
.owl-carousel .owl-wrapper {
  display: none;
  position: relative;
  -webkit-transform: translate3d(0px, 0px, 0px);
  touch-action: pan-x
}
.owl-carousel .owl-wrapper-outer {
  overflow: hidden;
  position: relative;
  width: 100%;
}
.owl-carousel .owl-wrapper-outer.autoHeight {
  -webkit-transition: height 500ms ease-in-out;
  -moz-transition: height 500ms ease-in-out;
  -ms-transition: height 500ms ease-in-out;
  -o-transition: height 500ms ease-in-out;
  transition: height 500ms ease-in-out;
}
.owl-carousel .owl-item {
  float: left;
}
.owl-controls .owl-page,
.owl-controls .owl-buttons div {
  cursor: pointer;
}
.owl-controls {
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
/* fix */
.owl-carousel .owl-wrapper,
.owl-carousel .owl-item {
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
}
.owl-controls {
  text-align: center;
}
/* Styling Next and Prev buttons */
.fa-angle-left,.fa-angle-right{
	font-size:1.5em !important;
}
.owl-controls .owl-buttons div {
  margin-top: -35px;
  padding:4px 0 4px 0;
  height: 50px;
  width: 50px;
  display: inline-block;
  position: absolute;
  top: 45%;
  z-index: 999;
  text-align: center;
  line-height: 50px;
  color: #ffffff;
  font-size: 20px;
  background-color: #333333;
  border-radius: 30px;
  margin-left: 20px;
}
.owl-controls .owl-buttons div:hover {
  background-color: #333333;
}
.owl-controls .owl-prev {
  left: -60px;
}
.owl-controls .owl-next {
  right: -60px;
  margin-right: 30px;
}
/* Styling Pagination*/
.owl-controls .owl-page {
  display: inline-block;
  zoom: 1;
  *display: inline;
  /*IE7 life-saver */
}
.owl-controls .owl-page span {
  display: block;
  width: 8px;
  height: 8px;
  margin: 0 7px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px;
  background-color: transparent;
  border: 1px solid #ffffff;
}
.owl-controls .owl-page.active span,
.owl-controls.clickable .owl-page:hover span {
  background-color: #ffffff;
}
/* If PaginationNumbers is true */
.owl-controls .owl-page span.owl-numbers {
  height: auto;
  width: auto;
  color: #FFF;
  padding: 2px 10px;
  font-size: 12px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  border-radius: 30px;
}
/*
 * jQuery FlexSlider v2.2.0
 * http://www.woothemes.com/flexslider/
 *
 * Copyright 2012 WooThemes
 * Free to use under the GPLv2 license.
 * http://www.gnu.org/licenses/gpl-2.0.html
 *
 * Contributing author: Ville Ristimäki (@villeristi)
 *
 */
.flex-container a:hover,
.flex-slider a:hover,
.flex-container a:focus,
.flex-slider a:focus {
  outline: none;
}
.slides,
.flex-control-nav,
.flex-direction-nav {
  margin: 0;
  padding: 0;
  list-style: none;
}
.flex-pauseplay span {
  text-transform: capitalize;
}
.flexslider {
  margin: 0;
  padding: 0;
}
.flexslider .slides > li {
  display: none;
  -webkit-backface-visibility: hidden;
}
.flexslider .slides img {
  display: block;
}
.flexslider .slides:after {
  content: "\0020";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}
html[xmlns] .flexslider .slides {
  display: block;
}
* html .flexslider .slides {
  height: 1%;
}
.no-js .flexslider .slides > li:first-child {
  display: block;
}
/* ====================================================================================================================
 * DEFAULT THEME
 * ====================================================================================================================*/
.flexslider {
  margin: 0 0 60px;
  position: relative;
  zoom: 1;
}
.flexslider .slides {
  zoom: 1;
}
.flex-viewport {
  max-height: 2000px;
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -ms-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
}
.loading .flex-viewport {
  max-height: 300px;
}
.carousel li {
  margin-right: 5px;
}
.flex-direction-nav {
  *height: 0;
}
.flex-direction-nav a {
  text-decoration: none;
  display: block;
  width: 40px;
  height: 40px;
  margin: -20px 0 0;
  position: absolute;
  top: 50%;
  z-index: 10;
  overflow: hidden;
  opacity: 0;
  cursor: pointer;
  color: rgba(0, 0, 0, 0.8);
  text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.3);
  -webkit-transition: all 0.3s ease-in-out;
  -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;
}
.flex-direction-nav .flex-prev {
  left: -50px;
}
.flex-direction-nav .flex-next {
  right: -50px;
  text-align: right;
}
.flexslider:hover .flex-direction-nav .flex-prev {
  opacity: 0.7;
  left: 10px;
}
.flexslider:hover .flex-direction-nav .flex-prev:hover {
  opacity: 1;
}
.flexslider:hover .flex-direction-nav .flex-next {
  opacity: 0.7;
  right: 10px;
}
.flexslider:hover .flex-direction-nav .flex-next:hover {
  opacity: 1;
}
.flex-direction-nav .flex-disabled {
  opacity: 0!important;
  filter: alpha(opacity=0);
  cursor: default;
}
.flex-pauseplay a {
  display: block;
  width: 20px;
  height: 20px;
  position: absolute;
  bottom: 5px;
  left: 10px;
  opacity: 0.8;
  z-index: 10;
  overflow: hidden;
  cursor: pointer;
  color: #000;
}
.flex-pauseplay a:before {
  font-family: "flexslider-icon";
  font-size: 20px;
  display: inline-block;
  content: '\f004';
}
.flex-pauseplay a:hover {
  opacity: 1;
}
.flex-pauseplay a .flex-play:before {
  content: '\f003';
}
.flex-control-nav {
  width: 100%;
  position: absolute;
  bottom: -40px;
  text-align: center;
}
.flex-control-nav li {
  margin: 0 6px;
  display: inline-block;
  zoom: 1;
  *display: inline;
}
.flex-control-paging {
  display:none;
}
.flex-control-paging li a {
  border-radius: 50%;
  width: 11px;
  height: 11px;
  display: block;
  background-color: #ffffff;
  cursor: pointer;
  text-indent: -9999px;
  border: 1px solid #ccc;
}
.flex-control-paging li a.flex-active {
  background-color: #47a6db;
  border-color: #47a6db;
  cursor: default;
}
.flex-control-thumbs {
  margin: 5px 0 0;
  position: static;
  overflow: hidden;
}
.flex-control-thumbs li {
  width: 25%;
  float: left;
  margin: 0;
}
.flex-control-thumbs img {
  display: block;
  opacity: .7;
  cursor: pointer;
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -ms-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
}
.flex-control-thumbs img:hover {
  opacity: 1;
}
.flex-control-thumbs .flex-active {
  opacity: 1;
  cursor: default;
}
.flexslider {
  margin: 0;
  overflow: hidden;
}
.flexslider .slides > li {
  display: block;
  float: left;
}
.flexslider .slides img {
  max-width: 100%;
  height: auto;
}
.flex-viewport {
  position: relative;
  overflow: hidden;
}
.flex-direction-nav li a {
  width: 45px;
  height: 45px;
  position: absolute;
  top: 50%;
  z-index: 10;
  overflow: hidden;
  opacity: 0.7;
  cursor: pointer;
  color: #ffffff;
  font-style: 300;
  text-shadow: none;
  background-color: rgba(0, 0, 0, 0.6);
  text-align: center;
  line-height: 45px;
  font-size: 20px;
}
.flex-direction-nav li .flex-prev {
  text-align: center;
}
.flex-direction-nav li .flex-next {
  text-align: center;
}
.flexslider:hover .flex-direction-nav li .flex-prev {
  left: 0;
  color: #ffffff;
}
.flexslider:hover .flex-direction-nav li .flex-prev:hover {
  opacity: 1;
}
.flexslider:hover .flex-direction-nav li .flex-next {
  opacity: 0.7;
  right: 0;
  color: #ffffff;
}
.flexslider:hover .flex-direction-nav li .flex-next:hover {
  opacity: 1;
}

/* ====================================================================================================================
 * RESPONSIVE
 * ====================================================================================================================*/
.portfolio-filter {
  margin-top: 0;
  margin-bottom: 50px;
}
.portfolio-filter a {
  font-size: 12px;
  color: #ffffff;
  position: relative;
  margin: 0;
  padding: 7px 25px;
  transition: 0.5s;
}
.portfolio-filter a:last-child:after,
.portfolio-filter a.active:after,
.portfolio-filter a:hover:after {
  background-color: transparent;
}
.portfolio-filter a.active,
.portfolio-filter a:hover {
  background-color: #47a6db;
  color: #ffffff;
  border-color: transparent;
}
/*
.portfolio-showcase {
  padding: 0;
}
.portfolio-showcase .portfolio_project .portfolio-detail:before {
  display: block;
  position: absolute;
  text-align: center;
  background-color: #47a6db;
  opacity: 0.9;
  overflow: hidden;
  transition: all 0.5s;
  content: "";
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 0;
}
.portfolio-showcase .portfolio_project .portfolio-detail h3 {
  font-size: 18px;
  text-transform: none;
}
.portfolio-showcase .portfolio_project .portfolio-detail .portfolio-cats a {
  text-transform: none;
  font-size: 13px;
}
.portfolio-showcase .portfolio_project .portfolio-detail .portfolio-cats a:hover {
  color: #ffffff;
}
.portfolio-showcase .portfolio_project .portfolio-detail .view-portfolio-detail,
.portfolio-showcase .portfolio_project .portfolio-detail .view-portfolio-image {
  transition: all 0.5s;
  border-radius: 50%;
  position: absolute;
  left: 40%;
  top: inherit;
  width: 40px;
  height: 40px;
  opacity: 0;
  text-align: center;
  text-indent: 0;
  color: #ffffff;
  font-size: 0;
  background: rgba(0, 0, 0, 0.4);
}
.portfolio-showcase .portfolio_project .portfolio-detail .view-portfolio-detail:before,
.portfolio-showcase .portfolio_project .portfolio-detail .view-portfolio-image:before {
  font-family: FontAwesome;
  font-size: 20px;
  line-height: 40px;
  background-color: transparent;
}
.portfolio-showcase .portfolio_project .portfolio-detail .view-portfolio-image {
  margin-left: -40px;
}
.portfolio-showcase .portfolio_project .portfolio-detail .view-portfolio-image:before {
  content: "\f002";
}

.portfolio-showcase .portfolio_project .portfolio-detail .view-portfolio-detail {
  margin-left: 10px;
}

.portfolio-showcase .portfolio_project .portfolio-detail .view-portfolio-detail:before {
  content: "\f0c1";
}
.portfolio-showcase .portfolio_project .portfolio-detail:hover:before {
  height: 100%;
}
.portfolio-showcase .portfolio_project .portfolio-detail:hover h3 {
  bottom: inherit;
  top: 35%;
  margin-top: 40px;
}
.portfolio-showcase .portfolio_project .portfolio-detail:hover .portfolio-cats {
  bottom: inherit;
  top: 35%;
  margin-top: 65px;
}
.portfolio-showcase .portfolio_project .portfolio-detail:hover .view-portfolio-detail,
.portfolio-showcase .portfolio_project .portfolio-detail:hover .view-portfolio-image {
  top: 30%;
  opacity: 1;
}
*/
.portfolio-slider {
  margin-top: 50px;
}
.portfolio-slider .flex-control-paging {
  position: inherit;
  bottom: 0;
  margin-top: 40px;
}
.portfolio-slider .flex-control-paging li a {
  background-color: transparent;
  border: 1px solid #ffffff;
}
.portfolio-slider .flex-control-paging li a.flex-active {
  background-color: #ffffff;
  border-color: #ffffff;
}
.portfolio-slider .flex-direction-nav {
  display: none;
}
.portfolio-description {
  margin-top: 50px;
}
.portfolio-description .portfolio-title {
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
}
.portfolio-description .portfolio-item {
  padding: 13px 0;
}
.portfolio-description .portfolio-item:last-child {
  border: none;
}
.portfolio-description .portfolio-item a {
  color: #bbbbbb;
}
.portfolio-footer {
  border-bottom: none;
  overflow: hidden;
  padding: 20px 0;
}
.wpb_call_to_action {
  background-color: #27282b;
  border-color: #2b2b2b;
  padding: 25px;
}
.wpb_call_to_action .wpb_call_text {
  font-size: 20px;
  font-weight: 500;
  margin-top: 10px;
  color: #ffffff;
}
.wpb_call_to_action .wpb_button {
  padding: 10px 16px;
  border-radius: 6px;
  font-size: 18px;
  transition: 0.5s;
}
.wpb_call_to_action .wpb_button.wpb_btn-info {
  background-color: #47a6db;
}
.wpb_accordion .wpb_accordion_wrapper .wpb_accordion_section {
  margin-bottom: 5px;
}
.wpb_accordion .wpb_accordion_wrapper .wpb_accordion_header {
  background-color: #222222;
  border: 1px solid #2b2b2b;
  margin: 0;
}
.wpb_accordion .wpb_accordion_wrapper .wpb_accordion_header .ui-accordion-header-icon {
  display: none;
}
.wpb_accordion .wpb_accordion_wrapper .wpb_accordion_header a {
  color: #ffffff;
  font-size: 16px;
}
.wpb_accordion .wpb_accordion_wrapper .wpb_accordion_content {
  border-top: none;
  font-size: 13.5px;
  background-color: #27282b;
  color: #cccccc;
}
.wpb_tabs .wpb_wrapper {
  background-color: transparent !important;
}
.wpb_tabs .wpb_wrapper .wpb_tabs_nav li {
  margin:0 5px;
}
.wpb_tabs .wpb_wrapper .wpb_tabs_nav li a {
  padding: 5px 50px;
  font-weight: bold;
  border: 1px solid #fff;
}
.wpb_tabs .wpb_wrapper .wpb_tab {
  margin-top: -1px;
  color: #cccccc;
}
.wpb_tabs .wpb_wrapper .wpb_tab .wpb_content_element {
  font-size: 14px;
}
.wpb_tabs .wpb_wrapper .wpb_tab .wpb_content_element .dropcap {
  display: inline-block;
  font-size: 48px;
  float: left;
  margin: 10px 15px 15px 0;
  color: #ffffff;
  padding: 0 10px;
  background-color: #47a6db;
}
.testimonial-list .testi-item {
  margin-bottom: 40px;
  position: relative;
}
.testimonial-list .testi-star {
  display: none;
}
.testimonial-list.testimonial-medium {
  color: #cccccc;
  margin: 0 -15px;
}
.testimonial-list.testimonial-medium .testi-item {
  padding-left: 15px;
  padding-right: 15px;
}
.testimonial-list.testimonial-medium .testi-desc {
  padding: 20px 30px 30px 30px;
  background-color: #27282b;
  border-radius: 8px;
  line-height: 1.6em;
  font-weight: 500;
  font-style: italic;
  min-height: 160px;
}
.testimonial-list.testimonial-medium .testi-author {
  margin: -10px 0 0 20px;
}
.testimonial-list.testimonial-medium .testi-author .testi-pic {
  border-radius: 50%;
  float: left;
  margin-right: 15px;
}
.testimonial-list.testimonial-medium .testi-author .testi-company {
  padding-top: 20px;
}
.testimonial-list.testimonial-medium .owl-controls .owl-buttons div {
  margin-top: -40px;
}
.testimonial-list.testimonial-short {
  text-align: center;
}
.testimonial-list.testimonial-short .testi-desc {
  text-transform: uppercase;
  color: #ffffff;
  font-size: 32px;
  font-weight: 600;
  line-height: 1.2em;
}
.testimonial-list.testimonial-short .testi-author .testi-pic {
  display: none;
}
.testimonial-list.testimonial-short .testi-author .testi-company {
  font-size: 14px;
  text-transform: uppercase;
  color: #ffffff;
  margin-top: 10px;
}
.testimonial-list.testimonial-short .testi-author .testi-company strong {
  font-weight: 400;
}
.testimonial-list.testimonial-short .testi-author .testi-company span {
  display: none;
}
.testimonial-list.testimonial-full .testi-item {
  margin:20px 0;
  min-height: 120px;
}
.testimonial-list.testimonial-full .testi-left .testi-author .testi-pic {
  position: absolute;
  left: 0;
  top: 0;
  width: 120px;
  height: 120px;
}
.testimonial-list.testimonial-full .testi-author .testi-company {
  padding-left: 140px;
  font-size: 14px;
  color: #ffffff;
  margin-top: 10px;
}
.testimonial-list.testimonial-full .testi-author .testi-company span {
  display: none;
}
.testimonial-list.testimonial-full.row .testi-left .testi-author .testi-pic {
  left: 15px;
}
.testimonial-list.testimonial-full .testi-star {
  padding-left: 140px;
  margin-bottom: 10px;
  color: #47a6db;
  display: block;
}
.testimonial-list.testimonial-full .testi-star i {
  margin-right: 10px;
}
.testimonial-list.testimonial-full .testi-left .testi-name,
.testimonial-list.testimonial-full .testi-left .testi-desc {
  padding-left: 140px;
}
.ta-team-shortcode .team_member {
  width: 100%;
}
.ta-team-shortcode .team_member:hover .team-member-image .team-member-socials {
  top: -100px;
}
.ta-team-shortcode .team_member .team-member-image {
  margin-bottom: 10px;
}
.ta-team-shortcode .team_member .team-member-image .team-member-socials {
  top: -100px;
}
.ta-team-shortcode .team_member .team-member-image .team-member-socials a {
  background-color: #111111;
  border-color: #111111;
  width: 24px;
  height: 24px;
  line-height: 24px;
  font-size: 12px;
  margin: 0;
}
.ta-team-shortcode .team_member .team-member-image .team-member-socials a:hover {
  border-color: transparent;
}
.ta-team-shortcode .team_member .team-member-image:hover:before {
  background-color: #47a6db;
}
.ta-team-shortcode .team_member .team-member-image:hover .team-member-socials {
  top: 35%;
}
.ta-team-shortcode .team_member .team-member-name {
  font-size: 14px;
  font-weight: bold;
  color: #ffffff;
}
.ta-team-shortcode .team_member .team-member-job {
  font-style: italic;
  color: #bbbbbb;
}
.ta-team-shortcode .team_member .team-member-bio {
  margin-top: 10px;
}
.ta-team-shortcode .team_member .owl-controls .owl-buttons div {
  top: 35%;
}
.wpb_alert .messagebox_text {
  background: transparent;
  padding-left: 0;
}
.align-center {
  text-align: center;
}
.align-left {
  text-align: left;
}
.align-right {
  text-align: right;
}
.vc_btn_md {
  padding: 6px 12px;
}
.btn-primary {
  background-color: #47a6db;
  color: #ffffff !important;
  border-color: #47a6db;
}
.btn-primary:hover {
  background-color: #333333;
}
.vc_progress_bar .vc_single_bar {
  min-height: 20px;
}
.table-bordered,
.table-bordered > thead > tr > th,
.table-bordered > tbody > tr > th,
.table-bordered > tfoot > tr > th,
.table-bordered > thead > tr > td,
.table-bordered > tbody > tr > td,
.table-bordered > tfoot > tr > td {
  border: 1px solid #2b2b2b;
}
table {
  max-width: 100%;
  background-color: transparent;
}
.section-title {
  margin-bottom: 40px;
}
.section-title h2 {
  color: #ffffff;
  font-size: 36px;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 10px;
  margin-top: 0;
}
.section-title h2:after {
  content: "";
  display: block;
  margin: 20px auto 40px;
  width: 100px;
  height: 2px;
  background-color: #47a6db;
}
.section-title.s-border h2 {
  border: solid 2px #ffffff;
  display: inline-block;
  padding: 5px 10px;
  font-size: 30px;
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 0px;
}
.section-title.s-border h2:after {
  display: none;
}
.image-box {
  margin-bottom: 15px;
}
.image-box:last-child {
  margin-bottom: 0;
}
.image-box img {
  margin-bottom: 10px;
}
.image-box .image-box-title {
  line-height: normal;
  margin-bottom: 5px;
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  display: block;
}
.image-box a.image-box-title:hover {
  color: #47a6db;
}
.image-box.image-top {
  text-align: center;
}
.image-box.image-left {
  overflow: hidden;
}
.image-box.image-left img {
  float: left;
  width: 80px;
}
.image-box.image-left .image-box-title {
  font-weight: 500;
}
.image-box.image-left .image-box-title,
.image-box.image-left .image-box-content {
  padding-left: 100px;
  display: block;
}
.image-box.image-right {
  overflow: hidden;
}
.image-box.image-right img {
  float: right;
  width: 80px;
}
.image-box.image-right .image-box-title {
  font-weight: 500;
}
.image-box.image-right .image-box-title,
.image-box.image-right .image-box-content {
  padding-right: 100px;
  display: block;
  text-align: right;
}
.icon-box {
  display:flex;
  align-items:center;
}
.icon-box img{
	float:left;
	width:2em;
	
}
.icon-box.bg-color {
  padding: 30px;
}
.icon-box:last-child {
  margin-bottom: 0;
}
.icon-box .b-icon {
  color: #47a6db;
  font-size: 26px;
}
.icon-box .box-title {
  font-size: 20px;
  color: #ffffff;
  font-weight: 500;
  margin: 0 0 5px;
  display: block;
}
.icon-box.icon-left .b-icon {
  float: left;
  margin-top: 5px;
}
.icon-box.icon-left .box-title,
.icon-box.icon-left .box-content {
  padding-left: 48px;
}
.icon-box.icon-right .b-icon {
  float: right;
  margin-top: 5px;
}
.icon-box.icon-right .box-title,
.icon-box.icon-right .box-content {
  padding-right: 48px;
  text-align: right;
}
.icon-box.icon-top {
  text-align: center;
}
.icon-box.icon-top .b-icon {
  display: inline-block;
  margin-bottom: 20px;
}
.icon-box.border-circle .b-icon {
  border-radius: 50%;
  border: 2px solid #47a6db;
  padding: 16px;
  text-align: center;
  width: 60px;
  height: 60px;
}
.icon-box.border-circle.icon-left .box-title,
.icon-box.border-circle.icon-left .box-content {
  padding-left: 75px;
}
.icon-box.border-circle.icon-right .box-title,
.icon-box.border-circle.icon-right .box-content {
  padding-right: 75px;
}
.icon-box:hover {
  background-color: transparent !important;
}
.icon-box:hover .b-icon {
  color: #ffffff;
  border-color: #ffffff;
}
.icon-box:hover a.box-title {
  color: #47a6db;
}
.icon-box.icon-box-address {
  border: 1px solid #555555;
  padding: 10.5px;
  margin-bottom: 20px;
}
.icon-box.icon-box-address .box-title {
  font-size: 18px;
  margin-bottom: 0;
  padding-left: 40px;
  font-weight: 400;
  color: #cccccc;
}
.icon-box.icon-box-address .b-icon {
  margin-top: 0;
}
.pricing-item {
  box-shadow: 1px 1px 20px rgba(0, 0, 0, 0.2);
  text-align: center;
}
.pricing-item .pricing-title {
  background-color: #2b2b2b;
  padding: 10px 0;
  font-size: 22px;
  color: #ffffff;
  font-weight: 400;
}
.pricing-item .pricing-info {
  background-color: #222222;
  list-style: none;
  padding: 10px 0;
}
.pricing-item .pricing-info .p-price {
  font-size: 48px;
  margin-bottom: 5px;
  font-weight: 600;
  color: #ffffff;
}
.pricing-item .pricing-info .p-duration {
  display: block;
  font-weight: 600;
  color: #47a6db;
}
.pricing-item .pricing-desc {
  background-color: #222222;
}
.pricing-item .pricing-desc ul {
  margin: 0;
  padding: 0;
}
.pricing-item .pricing-desc ul li {
  list-style: none;
  background-color: #2b2b2b;
  padding: 13px 0;
}
.pricing-item .pricing-desc ul li.deco {
  background-color: #252525;
}
.pricing-item .pricing-desc .pricing-blink {
  margin: 15px 0;
  display: inline-block;
}
.pricing-item.pricing-feature {
  margin-top: -10px;
}
.images-owl-carousel .owl-controls .owl-buttons div {
  width: 30px;
  height: 30px;
  font-size: 16px;
  border-radius: 50%;
  margin-top: -15px;
  line-height: 30px;
}
.images-owl-carousel .owl-item {
  text-align: center;
}
.images-owl-carousel .owl-controls .owl-prev {
  left: -30px;
}
.images-owl-carousel .owl-controls .owl-next {
  right: -30px;
}
.wpcf7-form .wpcf7-response-output {
  color: #398f14;
  margin: 10px 0 0;
  border: none;
  padding: 0;
}
.wpcf7-form .wpcf7-not-valid-tip {
  display: none;
}
.wpcf7-form .wpcf7-validation-errors {
  color: red;
  clear: both;
}
.wpcf7-form p {
  margin: 0;
}
.wpcf7-form .wpcf7-form-control.wpcf7-submit {
  padding: 6px 12px;
  background-color: #47a6db;
  transition: all 0.5s;
  color: #ffffff;
  border-radius: 4px;
  border: none;
}
.wpcf7-form .wpcf7-form-control.wpcf7-submit:hover {
  background-color: #333333;
}
.wpcf7-form .wpcf7-form-control-wrap {
  padding: 0;
  text-indent: 0;
  display: block;
}
.wpcf7-form .wpcf7-form-control-wrap .wpcf7-form-control {
  border: 1px solid #555555;
  width: 100%;
  margin-bottom: 20px;
  padding: 5px;
  background-color: transparent;
  color: #ffffff;
  font-weight: 400;
  border-radius: 4px;
  font-size: 15px;
}
.wpcf7-form .wpcf7-form-control-wrap .wpcf7-textarea {
  height: 98px;
  line-height: 1;
}
.wpcf7-form .wpcf7-form-control-wrap .wpcf7-not-valid {
  border: 1px solid red;
}
.wpcf7-form .wpcf7-form-control-wrap ::-webkit-input-placeholder {
  color: #cccccc;
}
.wpcf7-form .wpcf7-form-control-wrap :-moz-placeholder {
  color: #cccccc;
}
.wpcf7-form .wpcf7-form-control-wrap ::-moz-placeholder {
  color: #cccccc;
}
.wpcf7-form .wpcf7-form-control-wrap :-ms-input-placeholder {
  color: #cccccc;
}
.col-xs-5ths,
.col-sm-5ths,
.col-md-5ths,
.col-lg-5ths {
  position: relative;
  min-height: 1px;
  padding: 0;
  width: 20%;
  float: left;
}
section.vc_row.vc_row-fluid {
  margin-bottom: 0;
  margin-left: 0;
  margin-right: 0;
}
section.vc_row.vc_row-fluid .vc_row-fluid {
  margin-left: -15px;
  margin-right: -15px;
}
section.vc_row .container-fluid {
  padding-left: 0;
  padding-right: 0;
}
section.vc_row .container-fluid > .vc_col-sm-12 {
  padding-left: 0;
  padding-right: 0;
}
section.vc_row.overlay-enable {
  position: relative;
}
section.vc_row.video-bg-enable {
  position: relative;
}
section.vc_row.video-bg-enable .ytvideo-bg {
  position: absolute;
  z-index: -2;
}
section.vc_row.video-bg-enable .overlay {
  position: fixed;
}
section.vc_row .toggle-sound {
  position: absolute;
  bottom: 50px;
  right: 20px;
  width: 50px;
  height: 50px;
  text-align: center;
  font-size: 40px;
  z-index: 99;
  cursor: pointer;
}
section.vc_row .particles {
  width: 100%;
  height: 100%;
  /*background:rgba(0,0,0,0.00);*/
  background:rgba(26,26,26,0.00);
  overflow: hidden;
  position: relative;
}
section.vc_row .particles .pg-canvas {
  position: absolute;
  left: 0;
  right: 0px;
  top: 0px;
  overflow: hidden;
}
section.vc_row .overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
}
section.vc_row .full-slider-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
}
section.vc_row.full-video-bg .ytvideo-bg {
  position: fixed;
  z-index: -3;
}
.parallax {
  z-index: 20;
  position: relative;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
}
.section-home {
  height: 100%;
  overflow: hidden;
}
.section-plans {
  background-color: #2079ab;
}
.section-testimonials-short {
  background-color: #116493;
}
[class^="widget_cc_whmcs_"].widget,
[class*=" widget_cc_whmcs_"].widget {
  list-style: none;
}
[class^="widget_cc_whmcs_"].widget:first-child,
[class*=" widget_cc_whmcs_"].widget:first-child {
  margin-top: 15px;
}
[class^="widget_cc_whmcs_"].widget .widgettitle,
[class*=" widget_cc_whmcs_"].widget .widgettitle {
  text-transform: uppercase;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 25px;
  margin-top: 0;
}
[class^="widget_cc_whmcs_"].widget p,
[class*=" widget_cc_whmcs_"].widget p {
  margin: 20px 0 0;
}
[class^="widget_cc_whmcs_"].widget ul li,
[class*=" widget_cc_whmcs_"].widget ul li {
  border-bottom: solid 1px #2b2b2b;
  padding: 8px 0;
}
[class^="widget_cc_whmcs_"].widget ul li .absmiddle,
[class*=" widget_cc_whmcs_"].widget ul li .absmiddle {
  margin-right: 10px;
}
[class^="widget_cc_whmcs_"].widget form,
[class*=" widget_cc_whmcs_"].widget form {
  margin-top: 40px;
}
[class^="widget_cc_whmcs_"].widget input[type="text"],
[class*=" widget_cc_whmcs_"].widget input[type="text"],
[class^="widget_cc_whmcs_"].widget input[type="password"],
[class*=" widget_cc_whmcs_"].widget input[type="password"] {
  width: 100%;
  border: solid 1px #2b2b2b;
  background-color: transparent;
  padding: 5px 10px;
}
[class^="widget_cc_whmcs_"].widget input[type="submit"],
[class*=" widget_cc_whmcs_"].widget input[type="submit"] {
  padding: 6px 12px;
  background-color: #47a6db;
  transition: all 0.5s;
  color: #ffffff;
  border-radius: 4px;
  border: none;
}
[class^="widget_cc_whmcs_"].widget input[type="submit"]:hover,
[class*=" widget_cc_whmcs_"].widget input[type="submit"]:hover {
  background-color: #333333;
}
[class^="widget_cc_whmcs_"].widget select[name="searchin"],
[class*=" widget_cc_whmcs_"].widget select[name="searchin"] {
  margin: 20px 0;
}
#top_menu {
  background-color: #27282b;
  border: 1px solid #2b2b2b;
}
.entry-content #bridge {
  padding-right: 30px;
  color: #cccccc;
}
.entry-content #bridge p.breadcrumb {
  background-color: #27282b;
  border: 1px solid #2b2b2b;
}
.entry-content #bridge a,
.entry-content #bridge a:visited {
  color: #47a6db;
  text-decoration: none;
}
.entry-content #bridge table td {
  padding-bottom: 20px;
  background-color: transparent;
  border-color: transparent;
}
.entry-content #bridge table td a img {
  max-width: inherit;
  margin-right: 20px;
}
.entry-content #bridge table td .fieldarea {
  padding-right: 15px;
  text-align: right;
}
.entry-content #bridge table.frame {
  border-color: transparent;
}
.entry-content #bridge table.frame table td.fieldarea {
  color: #cccccc;
}
.entry-content #bridge table.frame table td,
.entry-content #bridge table.frame table td.fieldarea {
  background-color: transparent;
  border-color: transparent;
}
.entry-content #bridge #order-modern .product,
.entry-content #bridge #domainresults {
  background-color: transparent;
  border-color: transparent;
}
.entry-content #bridge #order-modern #categories {
  background-color: #27282b;
  border: 1px solid #2b2b2b;
}
.entry-content #bridge #order-modern #categories a {
  color: #47a6db;
}
.entry-content #bridge #order-modern #categories a:hover {
  color: #333333;
}
.entry-content #bridge table,
.entry-content #bridge table.cart,
.entry-content #bridge table.data,
.entry-content #bridge table.configtable {
  background-color: transparent !important;
}
.entry-content #bridge table caption,
.entry-content #bridge table.cart caption,
.entry-content #bridge table.data caption,
.entry-content #bridge table.configtable caption {
  border: 1px solid #2b2b2b;
  border-bottom-width: 0;
  text-align: center;
}
.entry-content #bridge table tr,
.entry-content #bridge table.cart tr,
.entry-content #bridge table.data tr,
.entry-content #bridge table.configtable tr {
  border: 1px solid #2b2b2b !important;
  padding: 3px 0;
}
.entry-content #bridge table tr td,
.entry-content #bridge table.cart tr td,
.entry-content #bridge table.data tr td,
.entry-content #bridge table.configtable tr td,
.entry-content #bridge table tr th,
.entry-content #bridge table.cart tr th,
.entry-content #bridge table.data tr th,
.entry-content #bridge table.configtable tr th {
  background-color: transparent;
  padding: 5px 5px;
  border: none !important;
  border-bottom: 1px solid #2b2b2b !important;
  border-left: 1px solid #2b2b2b !important;
  color: #cccccc;
}
.entry-content #bridge table tr.total td,
.entry-content #bridge table.cart tr.total td,
.entry-content #bridge table.data tr.total td,
.entry-content #bridge table.configtable tr.total td {
  color: #47a6db;
  background-color: transparent;
}
.entry-content #bridge table tr.total:hover td,
.entry-content #bridge table.cart tr.total:hover td,
.entry-content #bridge table.data tr.total:hover td,
.entry-content #bridge table.configtable tr.total:hover td {
  background-color: transparent;
}
.entry-content #bridge table tr.subtotal td,
.entry-content #bridge table.cart tr.subtotal td,
.entry-content #bridge table.data tr.subtotal td,
.entry-content #bridge table.configtable tr.subtotal td {
  background-color: transparent;
  border-color: #2b2b2b;
}
.entry-content #bridge table tr.subtotal:hover td,
.entry-content #bridge table.cart tr.subtotal:hover td,
.entry-content #bridge table.data tr.subtotal:hover td,
.entry-content #bridge table.configtable tr.subtotal:hover td {
  background-color: transparent;
}
.entry-content #bridge table tr:hover td,
.entry-content #bridge table.cart tr:hover td,
.entry-content #bridge table.data tr:hover td,
.entry-content #bridge table.configtable tr:hover td {
  background-color: transparent;
}
.entry-content #bridge table.frame tbody > tr {
  border: none !important;
}
.entry-content #bridge table.frame tbody > tr > td,
.entry-content #bridge table.frame tbody > tr > tr {
  border: none !important;
}
.entry-content #bridge .clientareatableactive {
  background-color: transparent;
}
.entry-content #bridge #order-modern .cartbuttons {
  margin: 0;
  padding: 10px 50px 0 0;
  text-align: right;
  width: 100%;
}
.entry-content #bridge #order-modern .cartwarningbox {
  background-color: #fcf8e3;
  border: 1px solid #faebcc;
  color: #8a6d3b;
}
.entry-content #bridge #order-modern #domainconfig {
  border: solid 1px #2b2b2b;
  margin-bottom: 15px;
}
.entry-content #bridge input[type="text"],
.entry-content #bridge input[type="password"],
.entry-content #bridge textarea {
  border: solid 1px #2b2b2b;
  background-color: transparent;
  padding: 5px 10px;
}
.entry-content #bridge input[type="submit"],
.entry-content #bridge input[type="button"] {
  padding: 6px 12px;
  background-color: #47a6db;
  transition: all 0.5s;
  color: #ffffff;
  border-radius: 4px;
  border: none;
}
.entry-content #bridge input[type="submit"]:hover,
.entry-content #bridge input[type="button"]:hover {
  background-color: #333333;
}
.entry-content #bridge input[type="reset"] {
  padding: 6px 12px;
  background-color: #333333;
  transition: all 0.5s;
  color: #ffffff;
  border-radius: 4px;
  border: none;
}
.entry-content #bridge input[type="reset"]:hover {
  background-color: #47a6db;
}
.entry-content #bridge .errorbox {
  color: #a94442;
  background-color: #f2dede;
  padding: 10px 20px;
  margin: 0 0 10px;
  text-align: left;
  border: none;
  width: 100%;
}
.entry-content #bridge select {
  background-color: transparent;
  border-color: #2b2b2b;
  height: 30px;
  line-height: 30px;
  color: #cccccc;
}
.entry-content #bridge select option {
  color: #555555;
}
.entry-content #bridge #languagefrm select {
  margin-left: 10px;
}
.entry-content #bridge #pwstrengthneg {
  background-color: transparent !important;
  border-color: #2b2b2b !important;
}
.entry-content #bridge #pwstrengthneg,
.entry-content #bridge #pwstrengthpos {
  border-color: #2b2b2b !important;
}
.entry-content #bridge #order-modern table.cart tr.recurring td {
  background-color: transparent;
  border-color: #2b2b2b;
}
.entry-content #bridge #order-modern .signuptype {
  border-color: #2b2b2b;
  color: #555555;
}
.entry-content #bridge #order-modern .signuptype.active {
  background-color: #27282b;
  color: #555555;
}
.entry-content #bridge #order-modern .signupfields {
  border-color: #2b2b2b;
}
.entry-content #bridge #order-modern #signupfrm,
.entry-content #bridge #order-modern #domaincontactfields {
  border-color: transparent;
}
.entry-content #bridge #invoicetoptables tr,
.entry-content #bridge #invoiceitemstable tr {
  background-color: transparent !important;
}
.light-version {
  background-color: #ffffff;
  color: #757575;
}
.light-version h1,
.light-version h2,
.light-version h3,
.light-version h4,
.light-version h5,
.light-version h6 {
  color: #555;
}
.light-version .title-area h1 {
  color: #ffffff;
}
.light-version .wpb_call_to_action {
  background: linear-gradient(to bottom, #ffffff 0%, #f2f2f2 100%);
  border-color: #dddddd;
}
.light-version .wpb_call_to_action .wpb_call_text {
  color: #555555;
}
.light-version .wpb_call_to_action .wpb_button.wpb_btn-info {
  background-color: #47a6db;
}
.light-version .oh_separator.vc_separator .vc_sep_holder .vc_sep_line {
  border-color: #dddddd !important;
}
.light-version .wpb_accordion .wpb_accordion_wrapper .wpb_accordion_header {
  background-color: #ffffff;
  border: 1px solid #dddddd;
}
.light-version .wpb_accordion .wpb_accordion_wrapper .wpb_accordion_header a {
  color: #555555;
}
.light-version .wpb_accordion .wpb_accordion_wrapper .wpb_accordion_content {
  background-color: #ffffff;
  border: 1px solid #dddddd;
  border-top: none;
  color: #555555;
}
.light-version .wpb_tabs .wpb_wrapper .wpb_tabs_nav li {
  background-color: #f5f5f5;
  border: 1px solid #dddddd;
}
.light-version .wpb_tabs .wpb_wrapper .wpb_tabs_nav li a {
  color: #646464;
}
.light-version .wpb_tabs .wpb_wrapper .wpb_tabs_nav li.ui-state-active,
.light-version .wpb_tabs .wpb_wrapper .wpb_tabs_nav li.ui-tabs-active {
  border-bottom: 1px solid #ffffff;
  background-color: #ffffff;
}
.light-version .wpb_tabs .wpb_wrapper .wpb_tabs_nav li.ui-state-active a,
.light-version .wpb_tabs .wpb_wrapper .wpb_tabs_nav li.ui-tabs-active a {
  color: #555555;
}
.light-version .wpb_tabs .wpb_wrapper .wpb_tab {
  border: 1px solid #dddddd;
  background-color: #ffffff !important;
  color: #555555;
}
.light-version .wpb_tabs .wpb_wrapper .wpb_tab .wpb_content_element .dropcap {
  color: #ffffff;
  background-color: #47a6db;
}
.light-version .entry-format blockquote,
.light-version .entry-format .link-block {
  color: #888;
  background-color: #eee;
}
.light-version .entry-format blockquote:before,
.light-version .entry-format .link-block:before {
  color: #888;
}
.light-version .entry-format .link-block:hover {
  background-color: #47a6db;
  color: #ffffff;
}
.light-version .entry-format .link-block:hover:before {
  color: #ffffff;
}
.light-version .pricing-item {
  box-shadow: 1px 1px 20px rgba(0, 0, 0, 0.3);
}
.light-version .pricing-item .pricing-title {
  background: #eee;
  color: #888;
}
.light-version .pricing-item .pricing-info {
  background-color: #ffffff;
}
.light-version .pricing-item .pricing-info .p-price {
  color: #47a6db;
}
.light-version .pricing-item .pricing-info .p-duration {
  color: #888;
}
.light-version .pricing-item .pricing-desc {
  background-color: #eee;
  color: #888;
}
.light-version .pricing-item .pricing-desc ul li {
  background-color: #eee;
}
.light-version .pricing-item .pricing-desc ul li.deco {
  background-color: #f5f5f5;
}
.light-version .section-plans .section-title.s-border h2 {
  border-color: #ffffff;
  color: #ffffff;
}
.light-version .section-plans .image-box .image-box-title {
  color: #ffffff;
}
.light-version .section-plans .image-box.image-left .image-box-content {
  color: #cccccc;
}
.light-version .testimonial-list.testimonial-medium {
  color: #555555;
}
.light-version .testimonial-list.testimonial-medium .testi-desc {
  background-color: #ffffff;
  border: 1px solid #dddddd;
}
.light-version .testimonial-list.testimonial-short .testi-desc {
  color: #555555;
}
.light-version .testimonial-list.testimonial-short .testi-author .testi-company {
  color: #555555;
}
.light-version .testimonial-list.testimonial-full .testi-author .testi-company {
  color: #555555;
}
.light-version .testimonial-list.testimonial-full .testi-star {
  color: #47a6db;
}
.light-version .section-testimonials-short .testimonial-list.testimonial-short .testi-desc {
  color: #ffffff;
}
.light-version .section-testimonials-short .testimonial-list.testimonial-short .testi-author .testi-company {
  color: #ffffff;
}
.light-version .section-testimonials-short .owl-controls .owl-page.active span,
.light-version .section-testimonials-short .owl-controls.clickable .owl-page:hover span {
  background-color: #ffffff;
}
.light-version .table-bordered,
.light-version .table-bordered > thead > tr > th,
.light-version .table-bordered > tbody > tr > th,
.light-version .table-bordered > tfoot > tr > th,
.light-version .table-bordered > thead > tr > td,
.light-version .table-bordered > tbody > tr > td,
.light-version .table-bordered > tfoot > tr > td {
  border: 1px solid #dddddd;
}
.light-version .section-title.s-border h2 {
  border: 2px solid #555555;
}
.light-version .image-box .image-box-title {
  color: #555555;
}
.light-version .icon-box .box-title {
  color: #555555;
}
.light-version .icon-box:hover .b-icon {
  color: #555555;
  border-color: #555555;
}
.light-version .wpcf7-form .wpcf7-form-control-wrap .wpcf7-form-control {
  border: 1px solid #2b2b2b;
  color: #555555;
}
.light-version .wpcf7-form .wpcf7-form-control-wrap .wpcf7-textarea {
  height: 98px;
  line-height: 1;
}
.light-version .wpcf7-form .wpcf7-form-control-wrap .wpcf7-not-valid {
  border: 1px solid red;
}
.light-version .wpcf7-form .wpcf7-form-control-wrap ::-webkit-input-placeholder {
  color: #cccccc;
}
.light-version .wpcf7-form .wpcf7-form-control-wrap :-moz-placeholder {
  color: #cccccc;
}
.light-version .wpcf7-form .wpcf7-form-control-wrap ::-moz-placeholder {
  color: #cccccc;
}
.light-version .wpcf7-form .wpcf7-form-control-wrap :-ms-input-placeholder {
  color: #cccccc;
}
.light-version .icon-box-address {
  border: 1px solid #2b2b2b;
}
.light-version .owl-controls .owl-page span {
  border: 1px solid #dddddd;
}
.light-version .owl-controls .owl-page.active span,
.light-version .owl-controls.clickable .owl-page:hover span {
  background-color: #555555;
}
.light-version .numeric-navigation a,
.light-version .numeric-navigation span {
  border: solid 1px #dddddd;
  background: #ffffff;
  margin: 0 0 0 -5px;
}
.light-version .numeric-navigation span {
  color: #555555;
  background-color: #ffffff;
}
.light-version .numeric-navigation span:hover {
  border-color: #dddddd;
}
.light-version .numeric-navigation a:hover,
.light-version .numeric-navigation span.current {
  background-color: #47a6db;
  color: #ffffff;
}
.light-version .post-navigation .nav-previous a,
.light-version .post-navigation .nav-next a {
  border: 1px solid #dddddd;
}
.light-version .widget .widget-title {
  color: #555555;
}
.light-version .widget select {
  border: 1px solid #dddddd;
  background-color: transparent;
}
.light-version .widget select option {
  color: #555555;
}
.light-version .widget_categories li,
.light-version .widget_recent_comments li,
.light-version .widget_rss li,
.light-version .widget_pages li,
.light-version .widget_archive li,
.light-version .widget_nav_menu li,
.light-version .widget_recent_entries li,
.light-version .widget_meta li {
  border-bottom: solid 1px #dddddd;
}
.light-version .widget_categories .children,
.light-version .widget_recent_comments .children,
.light-version .widget_rss .children,
.light-version .widget_pages .children,
.light-version .widget_archive .children,
.light-version .widget_nav_menu .children,
.light-version .widget_recent_entries .children,
.light-version .widget_meta .children {
  border-top: 1px solid #dddddd;
}
.light-version .widget_tag_cloud a {
  color: #888;
  border: 1px solid #dddddd;
}
.light-version .widget_tag_cloud a:hover {
  color: #555555;
  border: 1px solid #555555;
}
.light-version .tabs-widget .tabs-nav li a {
  background: #eee;
  border: 1px solid #dddddd;
  color: #646464;
}
.light-version .tabs-widget .tabs-nav li a.active {
  color: #555555;
  background: #ffffff;
}
.light-version .tabs-widget .tabs-panel {
  border: 1px solid #dddddd;
  background: #ffffff;
}
.light-version .tabs-widget .tab-comments .comment {
  border-bottom: solid 1px #dddddd;
}
.light-version .recent-post,
.light-version .popular-post {
  border-bottom: solid 1px #dddddd;
}
.light-version .recent-post:last-child,
.light-version .popular-post:last-child {
  border-bottom: none;
}
.light-version .recent-post .post-text .post-title:hover,
.light-version .popular-post .post-text .post-title:hover {
  color: #555555;
}
.light-version .search-form .search-field {
  border: 1px solid #dddddd;
  color: #555555;
}
.light-version .footer-sidebars .widget .widget-title {
  color: #ffffff;
}
.light-version .footer-sidebars .widget select {
  border: 1px solid #2b2b2b;
}
.light-version .footer-sidebars .widget select option {
  color: #555555;
}
.light-version .footer-sidebars table caption {
  border: 1px solid #2b2b2b;
}
.light-version .footer-sidebars table tr {
  border: 1px solid #2b2b2b;
}
.light-version .footer-sidebars table tr td,
.light-version .footer-sidebars table tr th {
  border-bottom: 1px solid #2b2b2b;
  border-left: 1px solid #2b2b2b;
}
.light-version .footer-sidebars .widget_categories li,
.light-version .footer-sidebars .widget_recent_comments li,
.light-version .footer-sidebars .widget_rss li,
.light-version .footer-sidebars .widget_pages li,
.light-version .footer-sidebars .widget_archive li,
.light-version .footer-sidebars .widget_nav_menu li,
.light-version .footer-sidebars .widget_recent_entries li,
.light-version .footer-sidebars .widget_meta li {
  border-bottom: solid 1px #2b2b2b;
}
.light-version .footer-sidebars .widget_categories .children,
.light-version .footer-sidebars .widget_recent_comments .children,
.light-version .footer-sidebars .widget_rss .children,
.light-version .footer-sidebars .widget_pages .children,
.light-version .footer-sidebars .widget_archive .children,
.light-version .footer-sidebars .widget_nav_menu .children,
.light-version .footer-sidebars .widget_recent_entries .children,
.light-version .footer-sidebars .widget_meta .children {
  border-top: 1px solid #2b2b2b;
}
.light-version .footer-sidebars .widget_tag_cloud a {
  border: 1px solid #2b2b2b;
}
.light-version .footer-sidebars .widget_tag_cloud a:hover {
  color: #ffffff;
  border: 1px solid #ffffff;
}
.light-version .footer-sidebars .tabs-widget .tabs-nav li a {
  background: #222222;
  border: 1px solid #2b2b2b;
}
.light-version .footer-sidebars .tabs-widget .tabs-nav li a.active {
  color: #ffffff;
  background: #27282b;
}
.light-version .footer-sidebars .tabs-widget .tabs-panel {
  border: 1px solid #2b2b2b;
  background: #27282b;
}
.light-version .footer-sidebars .tabs-widget .tab-comments .comment {
  border-bottom: solid 1px #2b2b2b;
}
.light-version .footer-sidebars .recent-post,
.light-version .footer-sidebars .popular-post {
  border-bottom: solid 1px #2b2b2b;
}
.light-version .footer-sidebars .recent-post .post-text .post-title:hover,
.light-version .footer-sidebars .popular-post .post-text .post-title:hover {
  color: #ffffff;
}
.light-version .footer-sidebars .search-form .search-field {
  border: 1px solid #2b2b2b;
  color: #ffffff;
}
.light-version .entry-header .entry-date span {
  color: #555555;
}
.light-version .sticky .entry-header .entry-date {
  border-color: #47a6db;
}
.light-version .sticky .entry-header .entry-date span {
  color: #47a6db;
}
.light-version .entry-footer {
  border-top: 1px solid #dddddd;
  border-bottom: 1px solid #dddddd;
}
.light-version .content-area pre {
  color: #555555;
  border: 1px solid #dddddd;
}
.light-version .comments-area .comment-reply-title {
  color: #555555;
}
.light-version .comments-area input,
.light-version .comments-area textarea {
  border: 1px solid #dddddd;
  color: #555555;
}
.light-version .comments-area .submit {
  color: #ffffff;
}
.light-version .comments-area .comments-title {
  color: #555555;
}
.light-version .comments-area .comment-list .comment-meta .author-name a:hover {
  color: #555555;
}
.light-version .post-password-form input[type=password] {
  color: #555555;
  border: 1px solid #dddddd;
}
.light-version .wp-caption {
  border: 1px solid #dddddd;
}
.light-version .portfolio-filter a {
  color: #555555;
}
.light-version .portfolio-filter a.active,
.light-version .portfolio-filter a:hover {
  color: #ffffff;
}
.light-version .portfolio-slider .flex-control-paging li a {
  border: 1px solid #555555;
}
.light-version .portfolio-slider .flex-control-paging li a.flex-active {
  background-color: #555555;
  border-color: #555555;
}
.light-version .portfolio-description .portfolio-item {
  border-bottom: 1px solid #dddddd;
}
.light-version .portfolio-description .portfolio-item a {
  color: #555555;
}
.light-version .portfolio-footer {
  border-bottom: none;
}
.light-version [class*="widget_cc_whmcs_"].widget .widgettitle,
.light-version [class^=widget_cc_whmcs_].widget .widgettitle {
  color: #555555;
}
.light-version [class*="widget_cc_whmcs_"].widget ul li,
.light-version [class^=widget_cc_whmcs_].widget ul li {
  border-bottom: solid 1px #dddddd;
}
.light-version [class*="widget_cc_whmcs_"].widget input[type="text"],
.light-version [class^=widget_cc_whmcs_].widget input[type="text"],
.light-version [class*="widget_cc_whmcs_"].widget input[type="password"],
.light-version [class^=widget_cc_whmcs_].widget input[type="password"] {
  border: solid 1px #dddddd;
}
.light-version [class*="widget_cc_whmcs_"].widget input[type="submit"],
.light-version [class^=widget_cc_whmcs_].widget input[type="submit"] {
  padding: 6px 12px;
  background-color: #47a6db;
  transition: all 0.5s;
  color: #ffffff;
  border-radius: 4px;
  border: none;
}
.light-version [class*="widget_cc_whmcs_"].widget input[type="submit"]:hover,
.light-version [class^=widget_cc_whmcs_].widget input[type="submit"]:hover {
  background-color: #333333;
}
.light-version #top_menu {
  background-color: #555555;
  border: 1px solid #dddddd;
}
.light-version .entry-content #bridge {
  color: #555555;
}
.light-version .entry-content #bridge .breadcrumb {
  background-color: #eee;
  border: 1px solid #dddddd;
}
.light-version .entry-content #bridge #order-modern #categories {
  background-color: #eee;
  border: 1px solid #dddddd;
}
.light-version .entry-content #bridge #order-modern #categories a {
  color: #47a6db;
}
.light-version .entry-content #bridge #order-modern #categories a:hover {
  color: #333333;
}
.light-version .entry-content #bridge table caption,
.light-version .entry-content #bridge table.cart caption,
.light-version .entry-content #bridge table.data caption {
  border: 1px solid #dddddd !important;
}
.light-version .entry-content #bridge table tr,
.light-version .entry-content #bridge table.cart tr,
.light-version .entry-content #bridge table.data tr {
  border: 1px solid #dddddd !important;
}
.light-version .entry-content #bridge table tr td,
.light-version .entry-content #bridge table.cart tr td,
.light-version .entry-content #bridge table.data tr td,
.light-version .entry-content #bridge table tr th,
.light-version .entry-content #bridge table.cart tr th,
.light-version .entry-content #bridge table.data tr th {
  border-bottom: 1px solid #dddddd !important;
  border-left: 1px solid #dddddd !important;
  color: #757575;
}
.light-version .entry-content #bridge table tr.total td,
.light-version .entry-content #bridge table.cart tr.total td,
.light-version .entry-content #bridge table.data tr.total td {
  color: #47a6db;
  background-color: transparent;
}
.light-version .entry-content #bridge table tr.subtotal td,
.light-version .entry-content #bridge table.cart tr.subtotal td,
.light-version .entry-content #bridge table.data tr.subtotal td {
  background-color: transparent;
}
.light-version .entry-content #bridge table.frame table td.fieldarea {
  color: #757575;
}
.light-version .entry-content #bridge #order-modern #domainconfig {
  border: solid 1px #dddddd;
}
.light-version .entry-content #bridge input[type="text"],
.light-version .entry-content #bridge input[type="password"],
.light-version .entry-content #bridge textarea {
  border: solid 1px #dddddd;
}
.light-version .entry-content #bridge input[type="submit"],
.light-version .entry-content #bridge input[type="button"] {
  padding: 6px 12px;
  background-color: #47a6db;
  transition: all 0.5s;
  color: #ffffff;
  border-radius: 4px;
  border: none;
}
.light-version .entry-content #bridge input[type="submit"]:hover,
.light-version .entry-content #bridge input[type="button"]:hover {
  background-color: #333333;
}
.light-version .entry-content #bridge .errorbox {
  color: #b94a48;
}
.light-version .entry-content #bridge select {
  border-color: #dddddd;
  color: #555555;
}
.light-version .entry-content #bridge #pwstrengthneg {
  border-color: #dddddd !important;
}
.light-version .entry-content #bridge #pwstrengthpos {
  border-color: #dddddd !important;
}
.light-version .entry-content #bridge #order-modern .signuptype {
  border-color: #dddddd;
}
.light-version .entry-content #bridge #order-modern .signuptype.active {
  background-color: #eee;
}
.light-version .entry-content #bridge #order-modern .signupfields {
  border-color: #dddddd;
}
/**
 * Color Scheme mixin
 */
.blue a {
  color: #428bca;
}
.blue a:hover {
  color: #333;
}
.blue blockquote {
  border-left: #428bca;
}
.blue .btn-secondary {
  background-color: #333;
}
.blue .btn-secondary:hover {
  background-color: #428bca;
}
.blue .social-icons a {
  background-color: #428bca;
  color: #111;
}
.blue .social-icons a:hover {
  background-color: #111;
  color: #fff;
}
.blue .primary-nav a {
  color: #fff;
}
.blue .backtotop {
  color: #888;
}
.blue .wpb_call_to_action .wpb_button.wpb_btn-info {
  background-color: #428bca;
}
.blue .wpb_call_to_action .wpb_button.wpb_btn-info:hover {
  background-color: #333;
}
.blue .testimonial-list.testimonial-full .testi-star {
  color: #428bca;
}
.blue .ta-team-shortcode .team-member-image:hover:before {
  background-color: #428bca;
}
.blue .section-title h2:after {
  background-color: #428bca;
}
.blue .wpb_tabs .wpb_wrapper .wpb_tab .wpb_content_element .dropcap {
  background-color: #428bca;
}
.blue .image-box a.image-box-title:hover {
  color: #428bca;
}
.blue .btn-primary {
  background-color: #428bca;
}
.blue .btn-primary:hover {
  background-color: #333;
}
.blue .comments-area .submit {
  background-color: #428bca;
}
.blue .comments-area .submit:hover {
  background-color: #333;
}
.blue .entry-footer a,
.blue .recent-post .post-text .read-more,
.blue .popular-post .post-text .read-more,
.blue .comments-area .comment-list .comment-meta .comment-reply-link,
.blue .comments-area .comment-list .comment-meta .comment-edit-link,
.blue .numeric-navigation a,
.blue .numeric-navigation span {
  color: #888;
}
.blue .entry-footer a:hover,
.blue .recent-post .post-text .read-more:hover,
.blue .popular-post .post-text .read-more:hover,
.blue .comments-area .comment-list .comment-meta .comment-reply-link:hover,
.blue .comments-area .comment-list .comment-meta .comment-edit-link:hover,
.blue .numeric-navigation a:hover,
.blue .numeric-navigation span:hover {
  color: #333;
  background-color: transparent;
}
.blue.light-version .numeric-navigation a:hover,
.blue.light-version .numeric-navigation span.current {
  background-color: #428bca;
  color: #ffffff;
}
.blue .entry-format .link-block:hover,
.blue.light-version .entry-format .link-block:hover {
  background-color: #428bca;
}
.blue .widget_tag_cloud a {
  color: #888;
}
.blue .icon-box .b-icon {
  color: #428bca;
}
.blue .icon-box.border-circle .b-icon {
  border: 2px solid #428bca;
}
.blue .icon-box:hover a.box-title {
  color: #428bca;
}
.blue .icon-box:hover .b-icon {
  color: #428bca;
  border-color: #428bca;
}
.blue .pricing-item .pricing-info .p-duration {
  color: #428bca;
}
.blue.light-version .pricing-item .pricing-info .p-price {
  color: #428bca;
}
.blue.light-version .pricing-item .pricing-info .p-duration {
  color: #888;
}
.blue .navbar-toggle:hover {
  color: #428bca;
}
.blue .primary-nav .current-menu-item > a,
.blue .primary-nav .current_page_item > a {
  background-color: #428bca;
}
.blue .primary-nav .nav > li > a:hover,
.blue .primary-nav .nav > li > a:focus {
  background-color: #428bca;
}
.blue.page-template-one-page .primary-nav .current-menu-item > a,
.blue.page-template-one-page .primary-nav .current_page_item > a {
  background-color: transparent;
}
.blue.page-template-one-page .primary-nav a.current {
  background-color: #428bca;
}
.blue .numeric-navigation span:hover {
  border-color: #428bca;
}
.blue .numeric-navigation a:hover {
  color: #428bca;
}
.blue .owl-controls .owl-buttons div {
  background-color: #428bca;
}
.blue .owl-controls .owl-buttons div:hover {
  background-color: #333;
}
.blue .sticky .entry-header .entry-date {
  border-color: #428bca;
}
.blue .sticky .entry-header .entry-date span {
  color: #428bca;
}
.blue .wpcf7-form-control.wpcf7-submit {
  background-color: #428bca;
}
.blue .wpcf7-form-control.wpcf7-submit:hover {
  background-color: #333;
}
.blue .post-password-form input[type=submit] {
  background-color: #428bca;
}
.blue .post-password-form input[type=submit]:hover {
  background-color: #333;
}
.blue .comments-area .comment-list .comment-meta .author-name {
  color: #428bca;
}
.blue .comments-area .comment-list .comment-meta .author-posted:hover {
  color: #428bca;
}
.blue .search-form:before {
  color: #428bca;
}
.blue .tp-caption .id-color {
  color: #428bca;
}
.blue .tp-caption.incoShare-button-light a {
  color: #ffffff;
}
.blue .tp-caption.incoShare-button-blue a,
.blue .incoShare-button-blue a:hover {
  background-color: #428bca;
}
.blue .section-plans {
  background-color: #428bca;
}
.blue .section-testimonials-short {
  background-color: #2b669a;
}
.blue .portfolio-filter a {
  color: #ffffff;
}
.blue .portfolio-filter a.active,
.blue .portfolio-filter a:hover {
  background-color: #428bca;
}
.blue .portfolio-showcase .portfolio_project .portfolio-detail:before {
  background-color: #428bca;
}
.blue [class*="widget_cc_whmcs_"].widget input[type="submit"],
.blue [class^=widget_cc_whmcs_].widget input[type="submit"] {
  background-color: #428bca;
}
.blue [class*="widget_cc_whmcs_"].widget input[type="submit"]:hover,
.blue [class^=widget_cc_whmcs_].widget input[type="submit"]:hover {
  background-color: #333;
}
.blue .entry-content #bridge #order-modern #categories a {
  color: #428bca;
}
.blue .entry-content #bridge #order-modern #categories a:hover {
  color: #333333;
}
.blue .entry-content #bridge a {
  color: #428bca !important;
}
.blue .entry-content #bridge table.cart tr.total td,
.blue .entry-content #bridge table.data tr.total td {
  color: #428bca;
}
.blue .entry-content #bridge input[type="submit"],
.blue .entry-content #bridge input[type="button"] {
  background-color: #428bca;
}
.blue .entry-content #bridge input[type="submit"]:hover,
.blue .entry-content #bridge input[type="button"]:hover {
  background-color: #333;
}
.blue .entry-content #bridge input[type="reset"] {
  background-color: #333;
}
.blue .entry-content #bridge input[type="reset"]:hover {
  background-color: #428bca;
}
.green a {
  color: #88c136;
}
.green a:hover {
  color: #333;
}
.green blockquote {
  border-left: #88c136;
}
.green .btn-secondary {
  background-color: #333;
}
.green .btn-secondary:hover {
  background-color: #88c136;
}
.green .social-icons a {
  background-color: #88c136;
  color: #111;
}
.green .social-icons a:hover {
  background-color: #111;
  color: #fff;
}
.green .primary-nav a {
  color: #fff;
}
.green .backtotop {
  color: #888;
}
.green .wpb_call_to_action .wpb_button.wpb_btn-info {
  background-color: #88c136;
}
.green .wpb_call_to_action .wpb_button.wpb_btn-info:hover {
  background-color: #333;
}
.green .testimonial-list.testimonial-full .testi-star {
  color: #88c136;
}
.green .ta-team-shortcode .team-member-image:hover:before {
  background-color: #88c136;
}
.green .section-title h2:after {
  background-color: #88c136;
}
.green .wpb_tabs .wpb_wrapper .wpb_tab .wpb_content_element .dropcap {
  background-color: #88c136;
}
.green .image-box a.image-box-title:hover {
  color: #88c136;
}
.green .btn-primary {
  background-color: #88c136;
}
.green .btn-primary:hover {
  background-color: #333;
}
.green .comments-area .submit {
  background-color: #88c136;
}
.green .comments-area .submit:hover {
  background-color: #333;
}
.green .entry-footer a,
.green .recent-post .post-text .read-more,
.green .popular-post .post-text .read-more,
.green .comments-area .comment-list .comment-meta .comment-reply-link,
.green .comments-area .comment-list .comment-meta .comment-edit-link,
.green .numeric-navigation a,
.green .numeric-navigation span {
  color: #888;
}
.green .entry-footer a:hover,
.green .recent-post .post-text .read-more:hover,
.green .popular-post .post-text .read-more:hover,
.green .comments-area .comment-list .comment-meta .comment-reply-link:hover,
.green .comments-area .comment-list .comment-meta .comment-edit-link:hover,
.green .numeric-navigation a:hover,
.green .numeric-navigation span:hover {
  color: #333;
  background-color: transparent;
}
.green.light-version .numeric-navigation a:hover,
.green.light-version .numeric-navigation span.current {
  background-color: #88c136;
  color: #ffffff;
}
.green .entry-format .link-block:hover,
.green.light-version .entry-format .link-block:hover {
  background-color: #88c136;
}
.green .widget_tag_cloud a {
  color: #888;
}
.green .icon-box .b-icon {
  color: #88c136;
}
.green .icon-box.border-circle .b-icon {
  border: 2px solid #88c136;
}
.green .icon-box:hover a.box-title {
  color: #88c136;
}
.green .icon-box:hover .b-icon {
  color: #88c136;
  border-color: #88c136;
}
.green .pricing-item .pricing-info .p-duration {
  color: #88c136;
}
.green.light-version .pricing-item .pricing-info .p-price {
  color: #88c136;
}
.green.light-version .pricing-item .pricing-info .p-duration {
  color: #888;
}
.green .navbar-toggle:hover {
  color: #88c136;
}
.green .primary-nav .current-menu-item > a,
.green .primary-nav .current_page_item > a {
  background-color: #88c136;
}
.green .primary-nav .nav > li > a:hover,
.green .primary-nav .nav > li > a:focus {
  background-color: #88c136;
}
.green.page-template-one-page .primary-nav .current-menu-item > a,
.green.page-template-one-page .primary-nav .current_page_item > a {
  background-color: transparent;
}
.green.page-template-one-page .primary-nav a.current {
  background-color: #88c136;
}
.green .numeric-navigation span:hover {
  border-color: #88c136;
}
.green .numeric-navigation a:hover {
  color: #88c136;
}
.green .owl-controls .owl-buttons div {
  background-color: #88c136;
}
.green .owl-controls .owl-buttons div:hover {
  background-color: #333;
}
.green .sticky .entry-header .entry-date {
  border-color: #88c136;
}
.green .sticky .entry-header .entry-date span {
  color: #88c136;
}
.green .wpcf7-form-control.wpcf7-submit {
  background-color: #88c136;
}
.green .wpcf7-form-control.wpcf7-submit:hover {
  background-color: #333;
}
.green .post-password-form input[type=submit] {
  background-color: #88c136;
}
.green .post-password-form input[type=submit]:hover {
  background-color: #333;
}
.green .comments-area .comment-list .comment-meta .author-name {
  color: #88c136;
}
.green .comments-area .comment-list .comment-meta .author-posted:hover {
  color: #88c136;
}
.green .search-form:before {
  color: #88c136;
}
.green .tp-caption .id-color {
  color: #88c136;
}
.green .tp-caption.incoShare-button-light a {
  color: #ffffff;
}
.green .tp-caption.incoShare-button-blue a,
.green .incoShare-button-blue a:hover {
  background-color: #88c136;
}
.green .section-plans {
  background-color: #88c136;
}
.green .section-testimonials-short {
  background-color: #618926;
}
.green .portfolio-filter a {
  color: #ffffff;
}
.green .portfolio-filter a.active,
.green .portfolio-filter a:hover {
  background-color: #88c136;
}
.green .portfolio-showcase .portfolio_project .portfolio-detail:before {
  background-color: #88c136;
}
.green [class*="widget_cc_whmcs_"].widget input[type="submit"],
.green [class^=widget_cc_whmcs_].widget input[type="submit"] {
  background-color: #88c136;
}
.green [class*="widget_cc_whmcs_"].widget input[type="submit"]:hover,
.green [class^=widget_cc_whmcs_].widget input[type="submit"]:hover {
  background-color: #333;
}
.green .entry-content #bridge #order-modern #categories a {
  color: #88c136;
}
.green .entry-content #bridge #order-modern #categories a:hover {
  color: #333333;
}
.green .entry-content #bridge a {
  color: #88c136 !important;
}
.green .entry-content #bridge table.cart tr.total td,
.green .entry-content #bridge table.data tr.total td {
  color: #88c136;
}
.green .entry-content #bridge input[type="submit"],
.green .entry-content #bridge input[type="button"] {
  background-color: #88c136;
}
.green .entry-content #bridge input[type="submit"]:hover,
.green .entry-content #bridge input[type="button"]:hover {
  background-color: #333;
}
.green .entry-content #bridge input[type="reset"] {
  background-color: #333;
}
.green .entry-content #bridge input[type="reset"]:hover {
  background-color: #88c136;
}
.red a {
  color: #e54242;
}
.red a:hover {
  color: #333;
}
.red blockquote {
  border-left: #e54242;
}
.red .btn-secondary {
  background-color: #333;
}
.red .btn-secondary:hover {
  background-color: #e54242;
}
.red .social-icons a {
  background-color: #e54242;
  color: #111;
}
.red .social-icons a:hover {
  background-color: #111;
  color: #fff;
}
.red .primary-nav a {
  color: #fff;
}
.red .backtotop {
  color: #888;
}
.red .wpb_call_to_action .wpb_button.wpb_btn-info {
  background-color: #e54242;
}
.red .wpb_call_to_action .wpb_button.wpb_btn-info:hover {
  background-color: #333;
}
.red .testimonial-list.testimonial-full .testi-star {
  color: #e54242;
}
.red .ta-team-shortcode .team-member-image:hover:before {
  background-color: #e54242;
}
.red .section-title h2:after {
  background-color: #e54242;
}
.red .wpb_tabs .wpb_wrapper .wpb_tab .wpb_content_element .dropcap {
  background-color: #e54242;
}
.red .image-box a.image-box-title:hover {
  color: #e54242;
}
.red .btn-primary {
  background-color: #e54242;
}
.red .btn-primary:hover {
  background-color: #333;
}
.red .comments-area .submit {
  background-color: #e54242;
}
.red .comments-area .submit:hover {
  background-color: #333;
}
.red .entry-footer a,
.red .recent-post .post-text .read-more,
.red .popular-post .post-text .read-more,
.red .comments-area .comment-list .comment-meta .comment-reply-link,
.red .comments-area .comment-list .comment-meta .comment-edit-link,
.red .numeric-navigation a,
.red .numeric-navigation span {
  color: #888;
}
.red .entry-footer a:hover,
.red .recent-post .post-text .read-more:hover,
.red .popular-post .post-text .read-more:hover,
.red .comments-area .comment-list .comment-meta .comment-reply-link:hover,
.red .comments-area .comment-list .comment-meta .comment-edit-link:hover,
.red .numeric-navigation a:hover,
.red .numeric-navigation span:hover {
  color: #333;
  background-color: transparent;
}
.red.light-version .numeric-navigation a:hover,
.red.light-version .numeric-navigation span.current {
  background-color: #e54242;
  color: #ffffff;
}
.red .entry-format .link-block:hover,
.red.light-version .entry-format .link-block:hover {
  background-color: #e54242;
}
.red .widget_tag_cloud a {
  color: #888;
}
.red .icon-box .b-icon {
  color: #e54242;
}
.red .icon-box.border-circle .b-icon {
  border: 2px solid #e54242;
}
.red .icon-box:hover a.box-title {
  color: #e54242;
}
.red .icon-box:hover .b-icon {
  color: #e54242;
  border-color: #e54242;
}
.red .pricing-item .pricing-info .p-duration {
  color: #e54242;
}
.red.light-version .pricing-item .pricing-info .p-price {
  color: #e54242;
}
.red.light-version .pricing-item .pricing-info .p-duration {
  color: #888;
}
.red .navbar-toggle:hover {
  color: #e54242;
}
.red .primary-nav .current-menu-item > a,
.red .primary-nav .current_page_item > a {
  background-color: #e54242;
}
.red .primary-nav .nav > li > a:hover,
.red .primary-nav .nav > li > a:focus {
  background-color: #e54242;
}
.red.page-template-one-page .primary-nav .current-menu-item > a,
.red.page-template-one-page .primary-nav .current_page_item > a {
  background-color: transparent;
}
.red.page-template-one-page .primary-nav a.current {
  background-color: #e54242;
}
.red .numeric-navigation span:hover {
  border-color: #e54242;
}
.red .numeric-navigation a:hover {
  color: #e54242;
}
.red .owl-controls .owl-buttons div {
  background-color: #e54242;
}
.red .owl-controls .owl-buttons div:hover {
  background-color: #333;
}
.red .sticky .entry-header .entry-date {
  border-color: #e54242;
}
.red .sticky .entry-header .entry-date span {
  color: #e54242;
}
.red .wpcf7-form-control.wpcf7-submit {
  background-color: #e54242;
}
.red .wpcf7-form-control.wpcf7-submit:hover {
  background-color: #333;
}
.red .post-password-form input[type=submit] {
  background-color: #e54242;
}
.red .post-password-form input[type=submit]:hover {
  background-color: #333;
}
.red .comments-area .comment-list .comment-meta .author-name {
  color: #e54242;
}
.red .comments-area .comment-list .comment-meta .author-posted:hover {
  color: #e54242;
}
.red .search-form:before {
  color: #e54242;
}
.red .tp-caption .id-color {
  color: #e54242;
}
.red .tp-caption.incoShare-button-light a {
  color: #ffffff;
}
.red .tp-caption.incoShare-button-blue a,
.red .incoShare-button-blue a:hover {
  background-color: #e54242;
}
.red .section-plans {
  background-color: #e54242;
}
.red .section-testimonials-short {
  background-color: #c51b1b;
}
.red .portfolio-filter a {
  color: #ffffff;
}
.red .portfolio-filter a.active,
.red .portfolio-filter a:hover {
  background-color: #e54242;
}
.red .portfolio-showcase .portfolio_project .portfolio-detail:before {
  background-color: #e54242;
}
.red [class*="widget_cc_whmcs_"].widget input[type="submit"],
.red [class^=widget_cc_whmcs_].widget input[type="submit"] {
  background-color: #e54242;
}
.red [class*="widget_cc_whmcs_"].widget input[type="submit"]:hover,
.red [class^=widget_cc_whmcs_].widget input[type="submit"]:hover {
  background-color: #333;
}
.red .entry-content #bridge #order-modern #categories a {
  color: #e54242;
}
.red .entry-content #bridge #order-modern #categories a:hover {
  color: #333333;
}
.red .entry-content #bridge a {
  color: #e54242 !important;
}
.red .entry-content #bridge table.cart tr.total td,
.red .entry-content #bridge table.data tr.total td {
  color: #e54242;
}
.red .entry-content #bridge input[type="submit"],
.red .entry-content #bridge input[type="button"] {
  background-color: #e54242;
}
.red .entry-content #bridge input[type="submit"]:hover,
.red .entry-content #bridge input[type="button"]:hover {
  background-color: #333;
}
.red .entry-content #bridge input[type="reset"] {
  background-color: #333;
}
.red .entry-content #bridge input[type="reset"]:hover {
  background-color: #e54242;
}
.orange a {
  color: #db5e47;
}
.orange a:hover {
  color: #333;
}
.orange blockquote {
  border-left: #db5e47;
}
.orange .btn-secondary {
  background-color: #333;
}
.orange .btn-secondary:hover {
  background-color: #db5e47;
}
.orange .social-icons a {
  background-color: #db5e47;
  color: #111;
}
.orange .social-icons a:hover {
  background-color: #111;
  color: #fff;
}
.orange .primary-nav a {
  color: #fff;
}
.orange .backtotop {
  color: #888;
}
.orange .wpb_call_to_action .wpb_button.wpb_btn-info {
  background-color: #db5e47;
}
.orange .wpb_call_to_action .wpb_button.wpb_btn-info:hover {
  background-color: #333;
}
.orange .testimonial-list.testimonial-full .testi-star {
  color: #db5e47;
}
.orange .ta-team-shortcode .team-member-image:hover:before {
  background-color: #db5e47;
}
.orange .section-title h2:after {
  background-color: #db5e47;
}
.orange .wpb_tabs .wpb_wrapper .wpb_tab .wpb_content_element .dropcap {
  background-color: #db5e47;
}
.orange .image-box a.image-box-title:hover {
  color: #db5e47;
}
.orange .btn-primary {
  background-color: #db5e47;
}
.orange .btn-primary:hover {
  background-color: #333;
}
.orange .comments-area .submit {
  background-color: #db5e47;
}
.orange .comments-area .submit:hover {
  background-color: #333;
}
.orange .entry-footer a,
.orange .recent-post .post-text .read-more,
.orange .popular-post .post-text .read-more,
.orange .comments-area .comment-list .comment-meta .comment-reply-link,
.orange .comments-area .comment-list .comment-meta .comment-edit-link,
.orange .numeric-navigation a,
.orange .numeric-navigation span {
  color: #888;
}
.orange .entry-footer a:hover,
.orange .recent-post .post-text .read-more:hover,
.orange .popular-post .post-text .read-more:hover,
.orange .comments-area .comment-list .comment-meta .comment-reply-link:hover,
.orange .comments-area .comment-list .comment-meta .comment-edit-link:hover,
.orange .numeric-navigation a:hover,
.orange .numeric-navigation span:hover {
  color: #333;
  background-color: transparent;
}
.orange.light-version .numeric-navigation a:hover,
.orange.light-version .numeric-navigation span.current {
  background-color: #db5e47;
  color: #ffffff;
}
.orange .entry-format .link-block:hover,
.orange.light-version .entry-format .link-block:hover {
  background-color: #db5e47;
}
.orange .widget_tag_cloud a {
  color: #888;
}
.orange .icon-box .b-icon {
  color: #db5e47;
}
.orange .icon-box.border-circle .b-icon {
  border: 2px solid #db5e47;
}
.orange .icon-box:hover a.box-title {
  color: #db5e47;
}
.orange .icon-box:hover .b-icon {
  color: #db5e47;
  border-color: #db5e47;
}
.orange .pricing-item .pricing-info .p-duration {
  color: #db5e47;
}
.orange.light-version .pricing-item .pricing-info .p-price {
  color: #db5e47;
}
.orange.light-version .pricing-item .pricing-info .p-duration {
  color: #888;
}
.orange .navbar-toggle:hover {
  color: #db5e47;
}
.orange .primary-nav .current-menu-item > a,
.orange .primary-nav .current_page_item > a {
  background-color: #db5e47;
}
.orange .primary-nav .nav > li > a:hover,
.orange .primary-nav .nav > li > a:focus {
  background-color: #db5e47;
}
.orange.page-template-one-page .primary-nav .current-menu-item > a,
.orange.page-template-one-page .primary-nav .current_page_item > a {
  background-color: transparent;
}
.orange.page-template-one-page .primary-nav a.current {
  background-color: #db5e47;
}
.orange .numeric-navigation span:hover {
  border-color: #db5e47;
}
.orange .numeric-navigation a:hover {
  color: #db5e47;
}
.orange .owl-controls .owl-buttons div {
  background-color: #db5e47;
}
.orange .owl-controls .owl-buttons div:hover {
  background-color: #333;
}
.orange .sticky .entry-header .entry-date {
  border-color: #db5e47;
}
.orange .sticky .entry-header .entry-date span {
  color: #db5e47;
}
.orange .wpcf7-form-control.wpcf7-submit {
  background-color: #db5e47;
}
.orange .wpcf7-form-control.wpcf7-submit:hover {
  background-color: #333;
}
.orange .post-password-form input[type=submit] {
  background-color: #db5e47;
}
.orange .post-password-form input[type=submit]:hover {
  background-color: #333;
}
.orange .comments-area .comment-list .comment-meta .author-name {
  color: #db5e47;
}
.orange .comments-area .comment-list .comment-meta .author-posted:hover {
  color: #db5e47;
}
.orange .search-form:before {
  color: #db5e47;
}
.orange .tp-caption .id-color {
  color: #db5e47;
}
.orange .tp-caption.incoShare-button-light a {
  color: #ffffff;
}
.orange .tp-caption.incoShare-button-blue a,
.orange .incoShare-button-blue a:hover {
  background-color: #db5e47;
}
.orange .section-plans {
  background-color: #db5e47;
}
.orange .section-testimonials-short {
  background-color: #b73b24;
}
.orange .portfolio-filter a {
  color: #ffffff;
}
.orange .portfolio-filter a.active,
.orange .portfolio-filter a:hover {
  background-color: #db5e47;
}
.orange .portfolio-showcase .portfolio_project .portfolio-detail:before {
  background-color: #db5e47;
}
.orange [class*="widget_cc_whmcs_"].widget input[type="submit"],
.orange [class^=widget_cc_whmcs_].widget input[type="submit"] {
  background-color: #db5e47;
}
.orange [class*="widget_cc_whmcs_"].widget input[type="submit"]:hover,
.orange [class^=widget_cc_whmcs_].widget input[type="submit"]:hover {
  background-color: #333;
}
.orange .entry-content #bridge #order-modern #categories a {
  color: #db5e47;
}
.orange .entry-content #bridge #order-modern #categories a:hover {
  color: #333333;
}
.orange .entry-content #bridge a {
  color: #db5e47 !important;
}
.orange .entry-content #bridge table.cart tr.total td,
.orange .entry-content #bridge table.data tr.total td {
  color: #db5e47;
}
.orange .entry-content #bridge input[type="submit"],
.orange .entry-content #bridge input[type="button"] {
  background-color: #db5e47;
}
.orange .entry-content #bridge input[type="submit"]:hover,
.orange .entry-content #bridge input[type="button"]:hover {
  background-color: #333;
}
.orange .entry-content #bridge input[type="reset"] {
  background-color: #333;
}
.orange .entry-content #bridge input[type="reset"]:hover {
  background-color: #db5e47;
}
.purple a {
  color: #c74a73;
}
.purple a:hover {
  color: #333;
}
.purple blockquote {
  border-left: #c74a73;
}
.purple .btn-secondary {
  background-color: #333;
}
.purple .btn-secondary:hover {
  background-color: #c74a73;
}
.purple .social-icons a {
  background-color: #c74a73;
  color: #111;
}
.purple .social-icons a:hover {
  background-color: #111;
  color: #fff;
}
.purple .primary-nav a {
  color: #fff;
}
.purple .backtotop {
  color: #888;
}
.purple .wpb_call_to_action .wpb_button.wpb_btn-info {
  background-color: #c74a73;
}
.purple .wpb_call_to_action .wpb_button.wpb_btn-info:hover {
  background-color: #333;
}
.purple .testimonial-list.testimonial-full .testi-star {
  color: #c74a73;
}
.purple .ta-team-shortcode .team-member-image:hover:before {
  background-color: #c74a73;
}
.purple .section-title h2:after {
  background-color: #c74a73;
}
.purple .wpb_tabs .wpb_wrapper .wpb_tab .wpb_content_element .dropcap {
  background-color: #c74a73;
}
.purple .image-box a.image-box-title:hover {
  color: #c74a73;
}
.purple .btn-primary {
  background-color: #c74a73;
}
.purple .btn-primary:hover {
  background-color: #333;
}
.purple .comments-area .submit {
  background-color: #c74a73;
}
.purple .comments-area .submit:hover {
  background-color: #333;
}
.purple .entry-footer a,
.purple .recent-post .post-text .read-more,
.purple .popular-post .post-text .read-more,
.purple .comments-area .comment-list .comment-meta .comment-reply-link,
.purple .comments-area .comment-list .comment-meta .comment-edit-link,
.purple .numeric-navigation a,
.purple .numeric-navigation span {
  color: #888;
}
.purple .entry-footer a:hover,
.purple .recent-post .post-text .read-more:hover,
.purple .popular-post .post-text .read-more:hover,
.purple .comments-area .comment-list .comment-meta .comment-reply-link:hover,
.purple .comments-area .comment-list .comment-meta .comment-edit-link:hover,
.purple .numeric-navigation a:hover,
.purple .numeric-navigation span:hover {
  color: #333;
  background-color: transparent;
}
.purple.light-version .numeric-navigation a:hover,
.purple.light-version .numeric-navigation span.current {
  background-color: #c74a73;
  color: #ffffff;
}
.purple .entry-format .link-block:hover,
.purple.light-version .entry-format .link-block:hover {
  background-color: #c74a73;
}
.purple .widget_tag_cloud a {
  color: #888;
}
.purple .icon-box .b-icon {
  color: #c74a73;
}
.purple .icon-box.border-circle .b-icon {
  border: 2px solid #c74a73;
}
.purple .icon-box:hover a.box-title {
  color: #c74a73;
}
.purple .icon-box:hover .b-icon {
  color: #c74a73;
  border-color: #c74a73;
}
.purple .pricing-item .pricing-info .p-duration {
  color: #c74a73;
}
.purple.light-version .pricing-item .pricing-info .p-price {
  color: #c74a73;
}
.purple.light-version .pricing-item .pricing-info .p-duration {
  color: #888;
}
.purple .navbar-toggle:hover {
  color: #c74a73;
}
.purple .primary-nav .current-menu-item > a,
.purple .primary-nav .current_page_item > a {
  background-color: #c74a73;
}
.purple .primary-nav .nav > li > a:hover,
.purple .primary-nav .nav > li > a:focus {
  background-color: #c74a73;
}
.purple.page-template-one-page .primary-nav .current-menu-item > a,
.purple.page-template-one-page .primary-nav .current_page_item > a {
  background-color: transparent;
}
.purple.page-template-one-page .primary-nav a.current {
  background-color: #c74a73;
}
.purple .numeric-navigation span:hover {
  border-color: #c74a73;
}
.purple .numeric-navigation a:hover {
  color: #c74a73;
}
.purple .owl-controls .owl-buttons div {
  background-color: #c74a73;
}
.purple .owl-controls .owl-buttons div:hover {
  background-color: #333;
}
.purple .sticky .entry-header .entry-date {
  border-color: #c74a73;
}
.purple .sticky .entry-header .entry-date span {
  color: #c74a73;
}
.purple .wpcf7-form-control.wpcf7-submit {
  background-color: #c74a73;
}
.purple .wpcf7-form-control.wpcf7-submit:hover {
  background-color: #333;
}
.purple .post-password-form input[type=submit] {
  background-color: #c74a73;
}
.purple .post-password-form input[type=submit]:hover {
  background-color: #333;
}
.purple .comments-area .comment-list .comment-meta .author-name {
  color: #c74a73;
}
.purple .comments-area .comment-list .comment-meta .author-posted:hover {
  color: #c74a73;
}
.purple .search-form:before {
  color: #c74a73;
}
.purple .tp-caption .id-color {
  color: #c74a73;
}
.purple .tp-caption.incoShare-button-light a {
  color: #ffffff;
}
.purple .tp-caption.incoShare-button-blue a,
.purple .incoShare-button-blue a:hover {
  background-color: #c74a73;
}
.purple .section-plans {
  background-color: #c74a73;
}
.purple .section-testimonials-short {
  background-color: #9a3053;
}
.purple .portfolio-filter a {
  color: #ffffff;
}
.purple .portfolio-filter a.active,
.purple .portfolio-filter a:hover {
  background-color: #c74a73;
}
.purple .portfolio-showcase .portfolio_project .portfolio-detail:before {
  background-color: #c74a73;
}
.purple [class*="widget_cc_whmcs_"].widget input[type="submit"],
.purple [class^=widget_cc_whmcs_].widget input[type="submit"] {
  background-color: #c74a73;
}
.purple [class*="widget_cc_whmcs_"].widget input[type="submit"]:hover,
.purple [class^=widget_cc_whmcs_].widget input[type="submit"]:hover {
  background-color: #333;
}
.purple .entry-content #bridge #order-modern #categories a {
  color: #c74a73;
}
.purple .entry-content #bridge #order-modern #categories a:hover {
  color: #333333;
}
.purple .entry-content #bridge a {
  color: #c74a73 !important;
}
.purple .entry-content #bridge table.cart tr.total td,
.purple .entry-content #bridge table.data tr.total td {
  color: #c74a73;
}
.purple .entry-content #bridge input[type="submit"],
.purple .entry-content #bridge input[type="button"] {
  background-color: #c74a73;
}
.purple .entry-content #bridge input[type="submit"]:hover,
.purple .entry-content #bridge input[type="button"]:hover {
  background-color: #333;
}
.purple .entry-content #bridge input[type="reset"] {
  background-color: #333;
}
.purple .entry-content #bridge input[type="reset"]:hover {
  background-color: #c74a73;
}
.yellow a {
  color: #ff9c00;
}
.yellow a:hover {
  color: #333;
}
.yellow blockquote {
  border-left: #ff9c00;
}
.yellow .btn-secondary {
  background-color: #333;
}
.yellow .btn-secondary:hover {
  background-color: #ff9c00;
}
.yellow .social-icons a {
  background-color: #ff9c00;
  color: #111;
}
.yellow .social-icons a:hover {
  background-color: #111;
  color: #fff;
}
.yellow .primary-nav a {
  color: #fff;
}
.yellow .backtotop {
  color: #888;
}
.yellow .wpb_call_to_action .wpb_button.wpb_btn-info {
  background-color: #ff9c00;
}
.yellow .wpb_call_to_action .wpb_button.wpb_btn-info:hover {
  background-color: #333;
}
.yellow .testimonial-list.testimonial-full .testi-star {
  color: #ff9c00;
}
.yellow .ta-team-shortcode .team-member-image:hover:before {
  background-color: #ff9c00;
}
.yellow .section-title h2:after {
  background-color: #ff9c00;
}
.yellow .wpb_tabs .wpb_wrapper .wpb_tab .wpb_content_element .dropcap {
  background-color: #ff9c00;
}
.yellow .image-box a.image-box-title:hover {
  color: #ff9c00;
}
.yellow .btn-primary {
  background-color: #ff9c00;
}
.yellow .btn-primary:hover {
  background-color: #333;
}
.yellow .comments-area .submit {
  background-color: #ff9c00;
}
.yellow .comments-area .submit:hover {
  background-color: #333;
}
.yellow .entry-footer a,
.yellow .recent-post .post-text .read-more,
.yellow .popular-post .post-text .read-more,
.yellow .comments-area .comment-list .comment-meta .comment-reply-link,
.yellow .comments-area .comment-list .comment-meta .comment-edit-link,
.yellow .numeric-navigation a,
.yellow .numeric-navigation span {
  color: #888;
}
.yellow .entry-footer a:hover,
.yellow .recent-post .post-text .read-more:hover,
.yellow .popular-post .post-text .read-more:hover,
.yellow .comments-area .comment-list .comment-meta .comment-reply-link:hover,
.yellow .comments-area .comment-list .comment-meta .comment-edit-link:hover,
.yellow .numeric-navigation a:hover,
.yellow .numeric-navigation span:hover {
  color: #333;
  background-color: transparent;
}
.yellow.light-version .numeric-navigation a:hover,
.yellow.light-version .numeric-navigation span.current {
  background-color: #ff9c00;
  color: #ffffff;
}
.yellow .entry-format .link-block:hover,
.yellow.light-version .entry-format .link-block:hover {
  background-color: #ff9c00;
}
.yellow .widget_tag_cloud a {
  color: #888;
}
.yellow .icon-box .b-icon {
  color: #ff9c00;
}
.yellow .icon-box.border-circle .b-icon {
  border: 2px solid #ff9c00;
}
.yellow .icon-box:hover a.box-title {
  color: #ff9c00;
}
.yellow .icon-box:hover .b-icon {
  color: #ff9c00;
  border-color: #ff9c00;
}
.yellow .pricing-item .pricing-info .p-duration {
  color: #ff9c00;
}
.yellow.light-version .pricing-item .pricing-info .p-price {
  color: #ff9c00;
}
.yellow.light-version .pricing-item .pricing-info .p-duration {
  color: #888;
}
.yellow .navbar-toggle:hover {
  color: #ff9c00;
}
.yellow .primary-nav .current-menu-item > a,
.yellow .primary-nav .current_page_item > a {
  background-color: #ff9c00;
}
.yellow .primary-nav .nav > li > a:hover,
.yellow .primary-nav .nav > li > a:focus {
  background-color: #ff9c00;
}
.yellow.page-template-one-page .primary-nav .current-menu-item > a,
.yellow.page-template-one-page .primary-nav .current_page_item > a {
  background-color: transparent;
}
.yellow.page-template-one-page .primary-nav a.current {
  background-color: #ff9c00;
}
.yellow .numeric-navigation span:hover {
  border-color: #ff9c00;
}
.yellow .numeric-navigation a:hover {
  color: #ff9c00;
}
.yellow .owl-controls .owl-buttons div {
  background-color: #ff9c00;
}
.yellow .owl-controls .owl-buttons div:hover {
  background-color: #333;
}
.yellow .sticky .entry-header .entry-date {
  border-color: #ff9c00;
}
.yellow .sticky .entry-header .entry-date span {
  color: #ff9c00;
}
.yellow .wpcf7-form-control.wpcf7-submit {
  background-color: #ff9c00;
}
.yellow .wpcf7-form-control.wpcf7-submit:hover {
  background-color: #333;
}
.yellow .post-password-form input[type=submit] {
  background-color: #ff9c00;
}
.yellow .post-password-form input[type=submit]:hover {
  background-color: #333;
}
.yellow .comments-area .comment-list .comment-meta .author-name {
  color: #ff9c00;
}
.yellow .comments-area .comment-list .comment-meta .author-posted:hover {
  color: #ff9c00;
}
.yellow .search-form:before {
  color: #ff9c00;
}
.yellow .tp-caption .id-color {
  color: #ff9c00;
}
.yellow .tp-caption.incoShare-button-light a {
  color: #ffffff;
}
.yellow .tp-caption.incoShare-button-blue a,
.yellow .incoShare-button-blue a:hover {
  background-color: #ff9c00;
}
.yellow .section-plans {
  background-color: #ff9c00;
}
.yellow .section-testimonials-short {
  background-color: #b87000;
}
.yellow .portfolio-filter a {
  color: #ffffff;
}
.yellow .portfolio-filter a.active,
.yellow .portfolio-filter a:hover {
  background-color: #ff9c00;
}
.yellow .portfolio-showcase .portfolio_project .portfolio-detail:before {
  background-color: #ff9c00;
}
.yellow [class*="widget_cc_whmcs_"].widget input[type="submit"],
.yellow [class^=widget_cc_whmcs_].widget input[type="submit"] {
  background-color: #ff9c00;
}
.yellow [class*="widget_cc_whmcs_"].widget input[type="submit"]:hover,
.yellow [class^=widget_cc_whmcs_].widget input[type="submit"]:hover {
  background-color: #333;
}
.yellow .entry-content #bridge #order-modern #categories a {
  color: #ff9c00;
}
.yellow .entry-content #bridge #order-modern #categories a:hover {
  color: #333333;
}
.yellow .entry-content #bridge a {
  color: #ff9c00 !important;
}
.yellow .entry-content #bridge table.cart tr.total td,
.yellow .entry-content #bridge table.data tr.total td {
  color: #ff9c00;
}
.yellow .entry-content #bridge input[type="submit"],
.yellow .entry-content #bridge input[type="button"] {
  background-color: #ff9c00;
}
.yellow .entry-content #bridge input[type="submit"]:hover,
.yellow .entry-content #bridge input[type="button"]:hover {
  background-color: #333;
}
.yellow .entry-content #bridge input[type="reset"] {
  background-color: #333;
}
.yellow .entry-content #bridge input[type="reset"]:hover {
  background-color: #ff9c00;
}
.brown a {
  color: #987654;
}
.brown a:hover {
  color: #333;
}
.brown blockquote {
  border-left: #987654;
}
.brown .btn-secondary {
  background-color: #333;
}
.brown .btn-secondary:hover {
  background-color: #987654;
}
.brown .social-icons a {
  background-color: #987654;
  color: #111;
}
.brown .social-icons a:hover {
  background-color: #111;
  color: #fff;
}
.brown .primary-nav a {
  color: #fff;
}
.brown .backtotop {
  color: #888;
}
.brown .wpb_call_to_action .wpb_button.wpb_btn-info {
  background-color: #987654;
}
.brown .wpb_call_to_action .wpb_button.wpb_btn-info:hover {
  background-color: #333;
}
.brown .testimonial-list.testimonial-full .testi-star {
  color: #987654;
}
.brown .ta-team-shortcode .team-member-image:hover:before {
  background-color: #987654;
}
.brown .section-title h2:after {
  background-color: #987654;
}
.brown .wpb_tabs .wpb_wrapper .wpb_tab .wpb_content_element .dropcap {
  background-color: #987654;
}
.brown .image-box a.image-box-title:hover {
  color: #987654;
}
.brown .btn-primary {
  background-color: #987654;
}
.brown .btn-primary:hover {
  background-color: #333;
}
.brown .comments-area .submit {
  background-color: #987654;
}
.brown .comments-area .submit:hover {
  background-color: #333;
}
.brown .entry-footer a,
.brown .recent-post .post-text .read-more,
.brown .popular-post .post-text .read-more,
.brown .comments-area .comment-list .comment-meta .comment-reply-link,
.brown .comments-area .comment-list .comment-meta .comment-edit-link,
.brown .numeric-navigation a,
.brown .numeric-navigation span {
  color: #888;
}
.brown .entry-footer a:hover,
.brown .recent-post .post-text .read-more:hover,
.brown .popular-post .post-text .read-more:hover,
.brown .comments-area .comment-list .comment-meta .comment-reply-link:hover,
.brown .comments-area .comment-list .comment-meta .comment-edit-link:hover,
.brown .numeric-navigation a:hover,
.brown .numeric-navigation span:hover {
  color: #333;
  background-color: transparent;
}
.brown.light-version .numeric-navigation a:hover,
.brown.light-version .numeric-navigation span.current {
  background-color: #987654;
  color: #ffffff;
}
.brown .entry-format .link-block:hover,
.brown.light-version .entry-format .link-block:hover {
  background-color: #987654;
}
.brown .widget_tag_cloud a {
  color: #888;
}
.brown .icon-box .b-icon {
  color: #987654;
}
.brown .icon-box.border-circle .b-icon {
  border: 2px solid #987654;
}
.brown .icon-box:hover a.box-title {
  color: #987654;
}
.brown .icon-box:hover .b-icon {
  color: #987654;
  border-color: #987654;
}
.brown .pricing-item .pricing-info .p-duration {
  color: #987654;
}
.brown.light-version .pricing-item .pricing-info .p-price {
  color: #987654;
}
.brown.light-version .pricing-item .pricing-info .p-duration {
  color: #888;
}
.brown .navbar-toggle:hover {
  color: #987654;
}
.brown .primary-nav .current-menu-item > a,
.brown .primary-nav .current_page_item > a {
  background-color: #987654;
}
.brown .primary-nav .nav > li > a:hover,
.brown .primary-nav .nav > li > a:focus {
  background-color: #987654;
}
.brown.page-template-one-page .primary-nav .current-menu-item > a,
.brown.page-template-one-page .primary-nav .current_page_item > a {
  background-color: transparent;
}
.brown.page-template-one-page .primary-nav a.current {
  background-color: #987654;
}
.brown .numeric-navigation span:hover {
  border-color: #987654;
}
.brown .numeric-navigation a:hover {
  color: #987654;
}
.brown .owl-controls .owl-buttons div {
  background-color: #987654;
}
.brown .owl-controls .owl-buttons div:hover {
  background-color: #333;
}
.brown .sticky .entry-header .entry-date {
  border-color: #987654;
}
.brown .sticky .entry-header .entry-date span {
  color: #987654;
}
.brown .wpcf7-form-control.wpcf7-submit {
  background-color: #987654;
}
.brown .wpcf7-form-control.wpcf7-submit:hover {
  background-color: #333;
}
.brown .post-password-form input[type=submit] {
  background-color: #987654;
}
.brown .post-password-form input[type=submit]:hover {
  background-color: #333;
}
.brown .comments-area .comment-list .comment-meta .author-name {
  color: #987654;
}
.brown .comments-area .comment-list .comment-meta .author-posted:hover {
  color: #987654;
}
.brown .search-form:before {
  color: #987654;
}
.brown .tp-caption .id-color {
  color: #987654;
}
.brown .tp-caption.incoShare-button-light a {
  color: #ffffff;
}
.brown .tp-caption.incoShare-button-blue a,
.brown .incoShare-button-blue a:hover {
  background-color: #987654;
}
.brown .section-plans {
  background-color: #987654;
}
.brown .section-testimonials-short {
  background-color: #6a523b;
}
.brown .portfolio-filter a {
  color: #ffffff;
}
.brown .portfolio-filter a.active,
.brown .portfolio-filter a:hover {
  background-color: #987654;
}
.brown .portfolio-showcase .portfolio_project .portfolio-detail:before {
  background-color: #987654;
}
.brown [class*="widget_cc_whmcs_"].widget input[type="submit"],
.brown [class^=widget_cc_whmcs_].widget input[type="submit"] {
  background-color: #987654;
}
.brown [class*="widget_cc_whmcs_"].widget input[type="submit"]:hover,
.brown [class^=widget_cc_whmcs_].widget input[type="submit"]:hover {
  background-color: #333;
}
.brown .entry-content #bridge #order-modern #categories a {
  color: #987654;
}
.brown .entry-content #bridge #order-modern #categories a:hover {
  color: #333333;
}
.brown .entry-content #bridge a {
  color: #987654 !important;
}
.brown .entry-content #bridge table.cart tr.total td,
.brown .entry-content #bridge table.data tr.total td {
  color: #987654;
}
.brown .entry-content #bridge input[type="submit"],
.brown .entry-content #bridge input[type="button"] {
  background-color: #987654;
}
.brown .entry-content #bridge input[type="submit"]:hover,
.brown .entry-content #bridge input[type="button"]:hover {
  background-color: #333;
}
.brown .entry-content #bridge input[type="reset"] {
  background-color: #333;
}
.brown .entry-content #bridge input[type="reset"]:hover {
  background-color: #987654;
}
.cyan a {
  color: #1abc9c;
}
.cyan a:hover {
  color: #333;
}
.cyan blockquote {
  border-left: #1abc9c;
}
.cyan .btn-secondary {
  background-color: #333;
}
.cyan .btn-secondary:hover {
  background-color: #1abc9c;
}
.cyan .social-icons a {
  background-color: #1abc9c;
  color: #111;
}
.cyan .social-icons a:hover {
  background-color: #111;
  color: #fff;
}
.cyan .primary-nav a {
  color: #fff;
}
.cyan .backtotop {
  color: #888;
}
.cyan .wpb_call_to_action .wpb_button.wpb_btn-info {
  background-color: #1abc9c;
}
.cyan .wpb_call_to_action .wpb_button.wpb_btn-info:hover {
  background-color: #333;
}
.cyan .testimonial-list.testimonial-full .testi-star {
  color: #1abc9c;
}
.cyan .ta-team-shortcode .team-member-image:hover:before {
  background-color: #1abc9c;
}
.cyan .section-title h2:after {
  background-color: #1abc9c;
}
.cyan .wpb_tabs .wpb_wrapper .wpb_tab .wpb_content_element .dropcap {
  background-color: #1abc9c;
}
.cyan .image-box a.image-box-title:hover {
  color: #1abc9c;
}
.cyan .btn-primary {
  background-color: #1abc9c;
}
.cyan .btn-primary:hover {
  background-color: #333;
}
.cyan .comments-area .submit {
  background-color: #1abc9c;
}
.cyan .comments-area .submit:hover {
  background-color: #333;
}
.cyan .entry-footer a,
.cyan .recent-post .post-text .read-more,
.cyan .popular-post .post-text .read-more,
.cyan .comments-area .comment-list .comment-meta .comment-reply-link,
.cyan .comments-area .comment-list .comment-meta .comment-edit-link,
.cyan .numeric-navigation a,
.cyan .numeric-navigation span {
  color: #888;
}
.cyan .entry-footer a:hover,
.cyan .recent-post .post-text .read-more:hover,
.cyan .popular-post .post-text .read-more:hover,
.cyan .comments-area .comment-list .comment-meta .comment-reply-link:hover,
.cyan .comments-area .comment-list .comment-meta .comment-edit-link:hover,
.cyan .numeric-navigation a:hover,
.cyan .numeric-navigation span:hover {
  color: #333;
  background-color: transparent;
}
.cyan.light-version .numeric-navigation a:hover,
.cyan.light-version .numeric-navigation span.current {
  background-color: #1abc9c;
  color: #ffffff;
}
.cyan .entry-format .link-block:hover,
.cyan.light-version .entry-format .link-block:hover {
  background-color: #1abc9c;
}
.cyan .widget_tag_cloud a {
  color: #888;
}
.cyan .icon-box .b-icon {
  color: #1abc9c;
}
.cyan .icon-box.border-circle .b-icon {
  border: 2px solid #1abc9c;
}
.cyan .icon-box:hover a.box-title {
  color: #1abc9c;
}
.cyan .icon-box:hover .b-icon {
  color: #1abc9c;
  border-color: #1abc9c;
}
.cyan .pricing-item .pricing-info .p-duration {
  color: #1abc9c;
}
.cyan.light-version .pricing-item .pricing-info .p-price {
  color: #1abc9c;
}
.cyan.light-version .pricing-item .pricing-info .p-duration {
  color: #888;
}
.cyan .navbar-toggle:hover {
  color: #1abc9c;
}
.cyan .primary-nav .current-menu-item > a,
.cyan .primary-nav .current_page_item > a {
  background-color: #1abc9c;
}
.cyan .primary-nav .nav > li > a:hover,
.cyan .primary-nav .nav > li > a:focus {
  background-color: #1abc9c;
}
.cyan.page-template-one-page .primary-nav .current-menu-item > a,
.cyan.page-template-one-page .primary-nav .current_page_item > a {
  background-color: transparent;
}
.cyan.page-template-one-page .primary-nav a.current {
  background-color: #1abc9c;
}
.cyan .numeric-navigation span:hover {
  border-color: #1abc9c;
}
.cyan .numeric-navigation a:hover {
  color: #1abc9c;
}
.cyan .owl-controls .owl-buttons div {
  background-color: #1abc9c;
}
.cyan .owl-controls .owl-buttons div:hover {
  background-color: #333;
}
.cyan .sticky .entry-header .entry-date {
  border-color: #1abc9c;
}
.cyan .sticky .entry-header .entry-date span {
  color: #1abc9c;
}
.cyan .wpcf7-form-control.wpcf7-submit {
  background-color: #1abc9c;
}
.cyan .wpcf7-form-control.wpcf7-submit:hover {
  background-color: #333;
}
.cyan .post-password-form input[type=submit] {
  background-color: #1abc9c;
}
.cyan .post-password-form input[type=submit]:hover {
  background-color: #333;
}
.cyan .comments-area .comment-list .comment-meta .author-name {
  color: #1abc9c;
}
.cyan .comments-area .comment-list .comment-meta .author-posted:hover {
  color: #1abc9c;
}
.cyan .search-form:before {
  color: #1abc9c;
}
.cyan .tp-caption .id-color {
  color: #1abc9c;
}
.cyan .tp-caption.incoShare-button-light a {
  color: #ffffff;
}
.cyan .tp-caption.incoShare-button-blue a,
.cyan .incoShare-button-blue a:hover {
  background-color: #1abc9c;
}
.cyan .section-plans {
  background-color: #1abc9c;
}
.cyan .section-testimonials-short {
  background-color: #117d68;
}
.cyan .portfolio-filter a {
  color: #ffffff;
}
.cyan .portfolio-filter a.active,
.cyan .portfolio-filter a:hover {
  background-color: #1abc9c;
}
.cyan .portfolio-showcase .portfolio_project .portfolio-detail:before {
  background-color: #1abc9c;
}
.cyan [class*="widget_cc_whmcs_"].widget input[type="submit"],
.cyan [class^=widget_cc_whmcs_].widget input[type="submit"] {
  background-color: #1abc9c;
}
.cyan [class*="widget_cc_whmcs_"].widget input[type="submit"]:hover,
.cyan [class^=widget_cc_whmcs_].widget input[type="submit"]:hover {
  background-color: #333;
}
.cyan .entry-content #bridge #order-modern #categories a {
  color: #1abc9c;
}
.cyan .entry-content #bridge #order-modern #categories a:hover {
  color: #333333;
}
.cyan .entry-content #bridge a {
  color: #1abc9c !important;
}
.cyan .entry-content #bridge table.cart tr.total td,
.cyan .entry-content #bridge table.data tr.total td {
  color: #1abc9c;
}
.cyan .entry-content #bridge input[type="submit"],
.cyan .entry-content #bridge input[type="button"] {
  background-color: #1abc9c;
}
.cyan .entry-content #bridge input[type="submit"]:hover,
.cyan .entry-content #bridge input[type="button"]:hover {
  background-color: #333;
}
.cyan .entry-content #bridge input[type="reset"] {
  background-color: #333;
}
.cyan .entry-content #bridge input[type="reset"]:hover {
  background-color: #1abc9c;
}
.skyblue a {
  color: #00cdcd;
}
.skyblue a:hover {
  color: #333;
}
.skyblue blockquote {
  border-left: #00cdcd;
}
.skyblue .btn-secondary {
  background-color: #333;
}
.skyblue .btn-secondary:hover {
  background-color: #00cdcd;
}
.skyblue .social-icons a {
  background-color: #00cdcd;
  color: #111;
}
.skyblue .social-icons a:hover {
  background-color: #111;
  color: #fff;
}
.skyblue .primary-nav a {
  color: #fff;
}
.skyblue .backtotop {
  color: #888;
}
.skyblue .wpb_call_to_action .wpb_button.wpb_btn-info {
  background-color: #00cdcd;
}
.skyblue .wpb_call_to_action .wpb_button.wpb_btn-info:hover {
  background-color: #333;
}
.skyblue .testimonial-list.testimonial-full .testi-star {
  color: #00cdcd;
}
.skyblue .ta-team-shortcode .team-member-image:hover:before {
  background-color: #00cdcd;
}
.skyblue .section-title h2:after {
  background-color: #00cdcd;
}
.skyblue .wpb_tabs .wpb_wrapper .wpb_tab .wpb_content_element .dropcap {
  background-color: #00cdcd;
}
.skyblue .image-box a.image-box-title:hover {
  color: #00cdcd;
}
.skyblue .btn-primary {
  background-color: #00cdcd;
}
.skyblue .btn-primary:hover {
  background-color: #333;
}
.skyblue .comments-area .submit {
  background-color: #00cdcd;
}
.skyblue .comments-area .submit:hover {
  background-color: #333;
}
.skyblue .entry-footer a,
.skyblue .recent-post .post-text .read-more,
.skyblue .popular-post .post-text .read-more,
.skyblue .comments-area .comment-list .comment-meta .comment-reply-link,
.skyblue .comments-area .comment-list .comment-meta .comment-edit-link,
.skyblue .numeric-navigation a,
.skyblue .numeric-navigation span {
  color: #888;
}
.skyblue .entry-footer a:hover,
.skyblue .recent-post .post-text .read-more:hover,
.skyblue .popular-post .post-text .read-more:hover,
.skyblue .comments-area .comment-list .comment-meta .comment-reply-link:hover,
.skyblue .comments-area .comment-list .comment-meta .comment-edit-link:hover,
.skyblue .numeric-navigation a:hover,
.skyblue .numeric-navigation span:hover {
  color: #333;
  background-color: transparent;
}
.skyblue.light-version .numeric-navigation a:hover,
.skyblue.light-version .numeric-navigation span.current {
  background-color: #00cdcd;
  color: #ffffff;
}
.skyblue .entry-format .link-block:hover,
.skyblue.light-version .entry-format .link-block:hover {
  background-color: #00cdcd;
}
.skyblue .widget_tag_cloud a {
  color: #888;
}
.skyblue .icon-box .b-icon {
  color: #00cdcd;
}
.skyblue .icon-box.border-circle .b-icon {
  border: 2px solid #00cdcd;
}
.skyblue .icon-box:hover a.box-title {
  color: #00cdcd;
}
.skyblue .icon-box:hover .b-icon {
  color: #00cdcd;
  border-color: #00cdcd;
}
.skyblue .pricing-item .pricing-info .p-duration {
  color: #00cdcd;
}
.skyblue.light-version .pricing-item .pricing-info .p-price {
  color: #00cdcd;
}
.skyblue.light-version .pricing-item .pricing-info .p-duration {
  color: #888;
}
.skyblue .navbar-toggle:hover {
  color: #00cdcd;
}
.skyblue .primary-nav .current-menu-item > a,
.skyblue .primary-nav .current_page_item > a {
  background-color: #00cdcd;
}
.skyblue .primary-nav .nav > li > a:hover,
.skyblue .primary-nav .nav > li > a:focus {
  background-color: #00cdcd;
}
.skyblue.page-template-one-page .primary-nav .current-menu-item > a,
.skyblue.page-template-one-page .primary-nav .current_page_item > a {
  background-color: transparent;
}
.skyblue.page-template-one-page .primary-nav a.current {
  background-color: #00cdcd;
}
.skyblue .numeric-navigation span:hover {
  border-color: #00cdcd;
}
.skyblue .numeric-navigation a:hover {
  color: #00cdcd;
}
.skyblue .owl-controls .owl-buttons div {
  background-color: #00cdcd;
}
.skyblue .owl-controls .owl-buttons div:hover {
  background-color: #333;
}
.skyblue .sticky .entry-header .entry-date {
  border-color: #00cdcd;
}
.skyblue .sticky .entry-header .entry-date span {
  color: #00cdcd;
}
.skyblue .wpcf7-form-control.wpcf7-submit {
  background-color: #00cdcd;
}
.skyblue .wpcf7-form-control.wpcf7-submit:hover {
  background-color: #333;
}
.skyblue .post-password-form input[type=submit] {
  background-color: #00cdcd;
}
.skyblue .post-password-form input[type=submit]:hover {
  background-color: #333;
}
.skyblue .comments-area .comment-list .comment-meta .author-name {
  color: #00cdcd;
}
.skyblue .comments-area .comment-list .comment-meta .author-posted:hover {
  color: #00cdcd;
}
.skyblue .search-form:before {
  color: #00cdcd;
}
.skyblue .tp-caption .id-color {
  color: #00cdcd;
}
.skyblue .tp-caption.incoShare-button-light a {
  color: #ffffff;
}
.skyblue .tp-caption.incoShare-button-blue a,
.skyblue .incoShare-button-blue a:hover {
  background-color: #00cdcd;
}
.skyblue .section-plans {
  background-color: #00cdcd;
}
.skyblue .section-testimonials-short {
  background-color: #008686;
}
.skyblue .portfolio-filter a {
  color: #ffffff;
}
.skyblue .portfolio-filter a.active,
.skyblue .portfolio-filter a:hover {
  background-color: #00cdcd;
}
.skyblue .portfolio-showcase .portfolio_project .portfolio-detail:before {
  background-color: #00cdcd;
}
.skyblue [class*="widget_cc_whmcs_"].widget input[type="submit"],
.skyblue [class^=widget_cc_whmcs_].widget input[type="submit"] {
  background-color: #00cdcd;
}
.skyblue [class*="widget_cc_whmcs_"].widget input[type="submit"]:hover,
.skyblue [class^=widget_cc_whmcs_].widget input[type="submit"]:hover {
  background-color: #333;
}
.skyblue .entry-content #bridge #order-modern #categories a {
  color: #00cdcd;
}
.skyblue .entry-content #bridge #order-modern #categories a:hover {
  color: #333333;
}
.skyblue .entry-content #bridge a {
  color: #00cdcd !important;
}
.skyblue .entry-content #bridge table.cart tr.total td,
.skyblue .entry-content #bridge table.data tr.total td {
  color: #00cdcd;
}
.skyblue .entry-content #bridge input[type="submit"],
.skyblue .entry-content #bridge input[type="button"] {
  background-color: #00cdcd;
}
.skyblue .entry-content #bridge input[type="submit"]:hover,
.skyblue .entry-content #bridge input[type="button"]:hover {
  background-color: #333;
}
.skyblue .entry-content #bridge input[type="reset"] {
  background-color: #333;
}
.skyblue .entry-content #bridge input[type="reset"]:hover {
  background-color: #00cdcd;
}
.gray a {
  color: #656565;
}
.gray a:hover {
  color: #333;
}
.gray blockquote {
  border-left: #656565;
}
.gray .btn-secondary {
  background-color: #333;
}
.gray .btn-secondary:hover {
  background-color: #656565;
}
.gray .social-icons a {
  background-color: #656565;
  color: #111;
}
.gray .social-icons a:hover {
  background-color: #111;
  color: #fff;
}
.gray .primary-nav a {
  color: #fff;
}
.gray .backtotop {
  color: #888;
}
.gray .wpb_call_to_action .wpb_button.wpb_btn-info {
  background-color: #656565;
}
.gray .wpb_call_to_action .wpb_button.wpb_btn-info:hover {
  background-color: #333;
}
.gray .testimonial-list.testimonial-full .testi-star {
  color: #656565;
}
.gray .ta-team-shortcode .team-member-image:hover:before {
  background-color: #656565;
}
.gray .section-title h2:after {
  background-color: #656565;
}
.gray .wpb_tabs .wpb_wrapper .wpb_tab .wpb_content_element .dropcap {
  background-color: #656565;
}
.gray .image-box a.image-box-title:hover {
  color: #656565;
}
.gray .btn-primary {
  background-color: #656565;
}
.gray .btn-primary:hover {
  background-color: #333;
}
.gray .comments-area .submit {
  background-color: #656565;
}
.gray .comments-area .submit:hover {
  background-color: #333;
}
.gray .entry-footer a,
.gray .recent-post .post-text .read-more,
.gray .popular-post .post-text .read-more,
.gray .comments-area .comment-list .comment-meta .comment-reply-link,
.gray .comments-area .comment-list .comment-meta .comment-edit-link,
.gray .numeric-navigation a,
.gray .numeric-navigation span {
  color: #888;
}
.gray .entry-footer a:hover,
.gray .recent-post .post-text .read-more:hover,
.gray .popular-post .post-text .read-more:hover,
.gray .comments-area .comment-list .comment-meta .comment-reply-link:hover,
.gray .comments-area .comment-list .comment-meta .comment-edit-link:hover,
.gray .numeric-navigation a:hover,
.gray .numeric-navigation span:hover {
  color: #333;
  background-color: transparent;
}
.gray.light-version .numeric-navigation a:hover,
.gray.light-version .numeric-navigation span.current {
  background-color: #656565;
  color: #ffffff;
}
.gray .entry-format .link-block:hover,
.gray.light-version .entry-format .link-block:hover {
  background-color: #656565;
}
.gray .widget_tag_cloud a {
  color: #888;
}
.gray .icon-box .b-icon {
  color: #656565;
}
.gray .icon-box.border-circle .b-icon {
  border: 2px solid #656565;
}
.gray .icon-box:hover a.box-title {
  color: #656565;
}
.gray .icon-box:hover .b-icon {
  color: #656565;
  border-color: #656565;
}
.gray .pricing-item .pricing-info .p-duration {
  color: #656565;
}
.gray.light-version .pricing-item .pricing-info .p-price {
  color: #656565;
}
.gray.light-version .pricing-item .pricing-info .p-duration {
  color: #888;
}
.gray .navbar-toggle:hover {
  color: #656565;
}
.gray .primary-nav .current-menu-item > a,
.gray .primary-nav .current_page_item > a {
  background-color: #656565;
}
.gray .primary-nav .nav > li > a:hover,
.gray .primary-nav .nav > li > a:focus {
  background-color: #656565;
}
.gray.page-template-one-page .primary-nav .current-menu-item > a,
.gray.page-template-one-page .primary-nav .current_page_item > a {
  background-color: transparent;
}
.gray.page-template-one-page .primary-nav a.current {
  background-color: #656565;
}
.gray .numeric-navigation span:hover {
  border-color: #656565;
}
.gray .numeric-navigation a:hover {
  color: #656565;
}
.gray .owl-controls .owl-buttons div {
  background-color: #656565;
}
.gray .owl-controls .owl-buttons div:hover {
  background-color: #333;
}
.gray .sticky .entry-header .entry-date {
  border-color: #656565;
}
.gray .sticky .entry-header .entry-date span {
  color: #656565;
}
.gray .wpcf7-form-control.wpcf7-submit {
  background-color: #656565;
}
.gray .wpcf7-form-control.wpcf7-submit:hover {
  background-color: #333;
}
.gray .post-password-form input[type=submit] {
  background-color: #656565;
}
.gray .post-password-form input[type=submit]:hover {
  background-color: #333;
}
.gray .comments-area .comment-list .comment-meta .author-name {
  color: #656565;
}
.gray .comments-area .comment-list .comment-meta .author-posted:hover {
  color: #656565;
}
.gray .search-form:before {
  color: #656565;
}
.gray .tp-caption .id-color {
  color: #656565;
}
.gray .tp-caption.incoShare-button-light a {
  color: #ffffff;
}
.gray .tp-caption.incoShare-button-blue a,
.gray .incoShare-button-blue a:hover {
  background-color: #656565;
}
.gray .section-plans {
  background-color: #656565;
}
.gray .section-testimonials-short {
  background-color: #414141;
}
.gray .portfolio-filter a {
  color: #ffffff;
}
.gray .portfolio-filter a.active,
.gray .portfolio-filter a:hover {
  background-color: #656565;
}
.gray .portfolio-showcase .portfolio_project .portfolio-detail:before {
  background-color: #656565;
}
.gray [class*="widget_cc_whmcs_"].widget input[type="submit"],
.gray [class^=widget_cc_whmcs_].widget input[type="submit"] {
  background-color: #656565;
}
.gray [class*="widget_cc_whmcs_"].widget input[type="submit"]:hover,
.gray [class^=widget_cc_whmcs_].widget input[type="submit"]:hover {
  background-color: #333;
}
.gray .entry-content #bridge #order-modern #categories a {
  color: #656565;
}
.gray .entry-content #bridge #order-modern #categories a:hover {
  color: #333333;
}
.gray .entry-content #bridge a {
  color: #656565 !important;
}
.gray .entry-content #bridge table.cart tr.total td,
.gray .entry-content #bridge table.data tr.total td {
  color: #656565;
}
.gray .entry-content #bridge input[type="submit"],
.gray .entry-content #bridge input[type="button"] {
  background-color: #656565;
}
.gray .entry-content #bridge input[type="submit"]:hover,
.gray .entry-content #bridge input[type="button"]:hover {
  background-color: #333;
}
.gray .entry-content #bridge input[type="reset"] {
  background-color: #333;
}
.gray .entry-content #bridge input[type="reset"]:hover {
  background-color: #656565;
}

/* chrome 滚动条 */
/*
::-webkit-scrollbar{ width:2px;}
::-webkit-scrollbar-button, ::-webkit-scrollbar-corner{ display:none;}
::-webkit-scrollbar-track{ background-color:#bbb}
::-webkit-scrollbar-thumb{ background-color:#ee5032;}
*/
/* custom */
.easy_scrollable .scroll_container{ overflow:hidden; position:relative;}
.easy_scrollable .scroll_absolute{ position:absolute;}
.easy_scrollable .scroll_vertical_bar{ position:absolute; top:0; right:0; width:3px; height:100%; background:url(img/scroll_bg.png) right 0 repeat-y; margin:0; padding:0;}
.easy_scrollable .scroll_track{ position:relative;}
.easy_scrollable .scroll_drag{ position:relative; top:0; left:0; cursor:pointer; background:url(img/scroll_bar.jpg) 0 0 repeat-y;}
.easy_scrollable .scroll_arrow{ display:none}

.owl-carousel .owl-item .vc_grid-item{ margin:5px 0;}

.testi-div .container{ width:80%;}
.case-fx .container{ width:70%;}
.case-fx .image-box.image-left img{ width:45px;}
.case-fx .image-box.image-left .image-box-title{ margin-top:10px;}
.case-fx .image-box.image-left .image-box-title, .case-fx .image-box.image-left .image-box-content{ padding-left:55px;}

.nav li.menu-item-30 ul{ /* min-width:250px; */}
.nav li.menu-item-111, .nav li.menu-item-421{ display:none;}

.entry-content td, .entry-content th{border:1px solid #bbb;}

/* home page */
#home-service .section-title{ margin-bottom:20px;}
.vc_non_responsive .vc_row .vc_col-sm-3.section-monitor, .vc_non_responsive .vc_row .vc_col-sm-3.section-pat, .vc_non_responsive .vc_row .vc_col-sm-3.section-index, .vc_non_responsive .vc_row .vc_col-sm-3.section-info{ padding:0 6px;}
.section-monitor > .wpb_wrapper, .section-pat > .wpb_wrapper, .section-index > .wpb_wrapper, .section-info > .wpb_wrapper{ margin:18px 0; padding:40px 0; background:#202020; border-bottom-style:solid; border-bottom-width:6px; border-top-style:solid; border-top-width:6px; cursor:pointer;}
.section-monitor > .wpb_wrapper{ border-bottom-color:#bf2514; border-top-color:#bf2514;}
.section-pat > .wpb_wrapper{ border-bottom-color:#10a6ba; border-top-color:#10a6ba;}
.section-index > .wpb_wrapper{ border-bottom-color:#ee6d0b; border-top-color:#ee6d0b;}
.section-info > .wpb_wrapper{ border-bottom-color:#a5c107; border-top-color:#a5c107;}
.section-monitor .section-pro-img1, .section-pat .section-pro-img1, .section-index .section-pro-img1, .section-info .section-pro-img1{ width:71.4%;  margin:0 auto 25px;}
.section-monitor .section-pro-img2, .section-pat .section-pro-img2, .section-index .section-pro-img2, .section-info .section-pro-img2{ /* width:89.2%; */  margin:0 auto;}
.section-monitor > .wpb_wrapper:hover, .section-pat > .wpb_wrapper:hover, .section-index > .wpb_wrapper:hover, .section-info > .wpb_wrapper:hover{  background:#1a1a1a; margin:0;}
.section-monitor > .wpb_wrapper:hover .section-pro-img1, .section-pat > .wpb_wrapper:hover .section-pro-img1, .section-index > .wpb_wrapper:hover .section-pro-img1, .section-info > .wpb_wrapper:hover .section-pro-img1{ width:89.2%; margin:0 auto;}
.section-monitor > .wpb_wrapper:hover .section-pro-img2, .section-pat > .wpb_wrapper:hover .section-pro-img2, .section-index > .wpb_wrapper:hover .section-pro-img2, .section-info > .wpb_wrapper:hover .section-pro-img2{ width:96.4%;}

#home-solution .vc_row .vc_col-sm-6{ padding-left:20px; padding-right:20px;}
#home-solution .image-box{ background:#191919; margin-bottom:30px; padding:20px;}
#home-solution .image-box:last-child{ margin-bottom:0;}
#home-solution .image-box:hover{ padding:18px; border:2px solid #ee5131; background:#101010;}
#home-solution .image-box img{ margin-bottom:0;}
#home-solution .image-box.image-left img{ width:100px;height:100px}
#home-solution .image-box.image-left .image-box-title{ padding-left:130px;}
#home-solution .image-box.image-left .image-box-title{ font-size:24px; line-height:25px; padding-top:10px;}
#home-solution .image-box.image-left a.image-box-title:hover{ color:#fff;}
#home-solution .image-box.image-left .image-box-content{ color:#f4f4f4; height:44px; padding:0 0 0 30px; overflow:hidden;}

#home-partner .owl-item img{ opacity:0.75}
#home-partner .owl-item img:hover{ opacity:1}
#home-partner .button-case{ display:none;}
#home-partner .button-case .vc_btn3.vc_btn3-size-md{ margin-top:110px; padding:10px 100px; font-size:18px; background-color:#ee5032}
#home-partner .button-case .vc_btn3.vc_btn3-size-md:hover{ margin-top:110px; padding:10px 100px; font-size:18px; background-color:#ff675b}

#home-contact .section-title{ margin-bottom:0;}
.vc_non_responsive .vc_row.home-contact-form .vc_col-sm-6{ padding-left:20px; padding-right:50px;}
#home-contact .icon-box{ margin:32px 0;  line-height:25px;}
#home-contact .icon-box .box-title{ font-size:14px; margin:0; font-weight:normal; color:#bbbbbb;}
#home-contact .icon-box.icon-left .b-icon{ margin-top:0;}
#home-contact .fa{ width:24px; height:25px;}
#home-contact .icon-box.icon-box-tel{ margin-top:10px; margin-bottom:30px; line-height:35px;}
#home-contact .icon-box-tel .fa{ height:40px; background:url(img/icon_tel.png) 0 7px no-repeat;}
#home-contact .icon-box.icon-box-tel .box-title{ font-size:26px; color:#fff; font-weight:bold;}
#home-contact .icon-box-email .fa{ background:url(img/icon_email.png) 0 0 no-repeat;}
#home-contact .icon-box-fax .fa{ background:url(img/icon_fax.png) 0 0 no-repeat;}
#home-contact .icon-box-addr .fa{ background:url(img/icon_addr.png) 0 0 no-repeat;}
#home-contact .icon-box-qqs .fa{ background:url(img/icon_qq.png) 0 0 no-repeat;}
#home-contact .icon-box-qq img,#home-contact .icon-box-wb img,#home-contact .icon-box-wx img{ border:1px solid #f0f0f0;}
#home-contact .icon-box-qq:hover img,#home-contact .icon-box-wb:hover img,#home-contact .icon-box-wx:hover img{ border:1px solid #ee5033;}
#home-contact .wpb_text_column{ margin-top:30px;}  
#home-contact .wpb_text_column a{ color:#bbbbbb}
#home-contact .wpb_text_column a:hover{ color:#ee5032;}
#home-contact .wpb_text_column ul{ margin-left:48px; padding:0; list-style:none;}
#home-contact .wpb_text_column ul:after{ clear:both;}
#home-contact .wpb_text_column ul li{ float:left; height:auto; width:30%; max-width:40px; margin-right:30px; list-style:none;}
#home-contact .wpb_text_column ul li:last-child{ margin-right:0;}
#home-contact .wpb_text_column ul li a{ cursor:pointer;}
.wpcf7-form .wpcf7-form-control.wpcf7-submit{ width:100%; padding:6px 0; text-align:center;}
#home-contact .wpcf7-form .wpcf7-form-control-wrap input:focus,#home-contact .wpcf7-form .wpcf7-form-control-wrap textarea:focus,#home-contact .wpcf7-form .wpcf7-form-control-wrap .wpcf7-not-valid{ border:1px solid #ee5032}
#wx .closed{ text-align:right; height:30px; cursor:pointer;}
#wx .closed img{ width:auto; height:100%; background-color:#909090;}
#wx .closed img:hover{ background-color:#ee5032;}

#home-about .section-title{ margin-bottom:0;}
#homeabout-slider{ text-align:center; color:#fff; font-size:16px;}
#homeabout-slider .owl-controls{ margin-top:30px;}
#home-team .ta-team-shortcode .owl-item{ cursor:pointer;}
#home-team .ta-team-shortcode .team_member .team-member-image{ margin-bottom:15px;}
#home-team .ta-team-shortcode .team-member-image img{ max-width:240px; margin:0 auto;}
#home-team .ta-team-shortcode .team_member .team-member-name{ font-size:20px; font-weight:normal;}
#home-team .ta-team-shortcode .team_member .team-member-job,#home-team .ta-team-shortcode .team_member .team-member-bio{ color:#fff; font-style:normal;}
#home-team .ta-team-bio .team-member-bio{ position:fixed; width:100%; height:100%; top:0; left:0%; background:#121212; overflow:hidden; z-index:99999; color:#fff; visibility:hidden;}
#home-team .ta-team-bio .team-member-bio .row, #home-team .ta-team-bio .team-member-bio .vc_row-fluid{ margin:0;}
#home-team .ta-team-bio .team-member-bio section.vc_row,#home-team .ta-team-bio .team-member-bio .container{ width:100%; padding:0; margin:0;}
#home-team .ta-team-bio .team-member-bio .closed{ position:absolute; top:2px; right:2px; background:#1a1a1a; height:50px; width:50px; cursor:pointer; z-index:99;}
#home-team .ta-team-bio .team-member-bio .closed img{ width:100%; height:100%;}
#home-team .ta-team-bio .team-member-bio .closed:hover{ background:#ee5032;}
#home-team .ta-team-bio .team-member-bio .vc_row .vc_col-sm-6{ padding:0;}
#home-team .ta-team-bio .team-member-bio .vc_row .vc_col-sm-6.team-left{ width:33.33%;}
#home-team .ta-team-bio .team-member-bio .vc_row .vc_col-sm-6.team-right{ width:66.67%;}
#home-team .ta-team-bio .team-member-bio .image-box img{ margin:0;}
#home-team .ta-team-bio .team-member-bio .image-box .image-box-title, #home-team .ta-team-bio .team-member-bio .image-box .image-box-content{ display:none;}
#home-team .ta-team-bio .team-member-bio h1{ font-size:34px; margin:55px 0 15px; color:#fff; padding-left:48px;}
#home-team .ta-team-bio .team-member-bio h3{ font-size:20px; color:#fff; margin:0 0 25px; padding-left:48px;}
#home-team .ta-team-bio .team-member-bio hr{ border-top:1px solid #ee5032}
#home-team .ta-team-bio .team-member-bio .team-member-content{ color:#bbb; width:590px; height:265px; overflow:hidden;}
#home-team .ta-team-bio .team-member-bio .team-member-content .wpb_wrapper{ padding:0 45px;}
#home-team .ta-team-shortcode .team-member-image:before,#home-team .ta-team-shortcode .team-member-image:hover{ background:none;}
#home-team .owl-controls .owl-buttons div:hover{ background-color:#c72f12;}

#lastnews{ margin-top:20px;}
#lastnews .ln-item{ margin-bottom:20px; position:relative;}
#lastnews .ln-item h3{ font-size:18px; font-weight:normal; color:#ee5032; margin-top:0; padding-bottom:9px; padding-left:20px; border-bottom:1px solid #ee5032;}
#lastnews .ln-item h3 span{ margin-right:10px;}
#lastnews .ln-item a.link{ position:absolute; top:0; right:15px; height:20px; width:60px;}
#lastnews .ln-item ul,#lastnews .ln-item li{ list-style:none; margin:0; padding:0;}
#lastnews .ln-item li{ padding:0 20px; line-height:30px; position:relative; overflow:hidden;}
#lastnews .ln-item li a{ display:block; height:30px; padding-right:90px; color:#bbbbbb}
#lastnews .ln-item li:hover,#lastnews .ln-item li:hover a{ color:#ee5032; text-decoration:none;}
#lastnews .ln-item li span{ position:absolute; right:20px; top:0;}
#imgnews{ max-width:380px; width:100%; margin:0 auto;}
#slides{ position:relative;}
#slides img{ width:100%; max-width:380px;}
#slides .owl-item > div div{ position:relative; width:100%; height:65px; padding-top:5px; margin-top:-70px; border-top:1px solid #EE5032; background:#111; color:#fff; opacity:0.95; filter:Alpha(opacity=95); overflow:hidden;}
#slides .owl-item > div div p{ padding:0 0 0 15px; margin:0;}
#slides .owl-item > div div p.title{ font-size:20px;}
#slides .owl-controls,#slides .owl-buttons{ display:none;}
#slides .owl-controls .owl-prev{ left:0;}
#slides .owl-controls .owl-next{ right:0;}

#site-footer .menu li{ padding:0; border-bottom:0;}
#site-footer .menu  > li{ float:left;  padding:30px;  color:#fff;}
#site-footer .menu  > li#menu-item-66,#site-footer .menu  > li#menu-item-405,#site-footer .menu  > li#menu-item-406{ width:33.2%}
#site-footer .menu  > li#menu-item-66 > ul > li,#site-footer .menu  > li#menu-item-405 > ul > li,#site-footer .menu  > li#menu-item-406 > ul > li{ float:left; width:50%;}
#site-footer .menu  > li > a{ font-weight:bold; color:#f1f1f1;}
#site-footer .menu  > li > ul{ margin-top:5px;}
#site-footer .menu  > li > ul > li{ height:30px; overflow:hidden;}
#site-footer .menu  > li > ul > li a{ line-height:30px; color:#bcbcbc; margin-right:5px;}
#site-footer .menu  a{ color:#fff;}
#site-footer .menu  a:hover{ color:#ee5032;}
.footer-sidebar-2{ text-align:center;}
.footer-sidebar-2 .widget{ margin-bottom:0;}
.footer-sidebar-2 strong{ font-size:20px;}
.footer-sidebar-2 img{ margin:10px 0; cursor:pointer;}
.custom-color-scheme a:hover{ color:#fff;}
.nivo-controlNav{ display:none;}

.tp-button.lightgrey, .tp-button:hover.lightgrey, .purchase.lightgrey, .purchase:hover.lightgrey{ background-color:transparent; border:1px solid #fff; color:#fff; box-shadow:none; text-shadow:0; padding:10px 20px; border-radius:0; -webkit-border-radius:0; -moz-border-radius:0;}
.tp-button.red, .tp-button:hover.red, .purchase.red, .purchase:hover.red{ background-color:#ee5032; border:0; color:#fff; box-shadow:none; padding:11px 40px; box-shadow:none; text-shadow:0; -webkit-border-radius:0; -moz-border-radius:0;}
.tp-button.green, .tp-button:hover.green, .purchase.green, .purchase:hover.green{ background-color:transparent; border:1px solid #12a8bc; color:#fff; box-shadow:none; text-shadow:0; padding:10px 64px; border-radius:0; -webkit-border-radius:0; -moz-border-radius:0;}
.tp-button.green1{ background-color:#12a8bc; border:0; color:#fff; box-shadow:none; text-shadow:0; padding:10px 64px; border-radius:0; -webkit-border-radius:0; -moz-border-radius:0;}

/* incoPat incoMon incoInfo incoIndex page */
#incoPat-con1{ color:#fff; font-size:18px; line-height: 36px;}
.incoPat-btn1 .vc_btn3.vc_btn3-size-md,
.incoMon-btn1 .vc_btn3.vc_btn3-size-md,
.incoInfo-btn1 .vc_btn3.vc_btn3-size-md,
.incoIndex-btn1 .vc_btn3.vc_btn3-size-md,
.join-btn1 .vc_btn3.vc_btn3-size-md{ padding:12px 154px; font-size:24px;}
.incoPat-btn1 .vc_btn3.vc_btn3-color-white.vc_btn3-style-flat:hover,
.incoMon-btn1 .vc_btn3.vc_btn3-color-white.vc_btn3-style-flat:hover,
.incoInfo-btn1 .vc_btn3.vc_btn3-color-white.vc_btn3-style-flat:hover,
.incoIndex-btn1 .vc_btn3.vc_btn3-color-white.vc_btn3-style-flat:hover,
.join-btn1 .vc_btn3.vc_btn3-color-white.vc_btn3-style-flat:hover{ background-color:#fff;}
.incoPat-btn1 .vc_btn3.vc_btn3-color-white.vc_btn3-style-flat:active,
.incoMon-btn1 .vc_btn3.vc_btn3-color-white.vc_btn3-style-flat:active,
.incoInfo-btn1 .vc_btn3.vc_btn3-color-white.vc_btn3-style-flat:active,
.incoIndex-btn1 .vc_btn3.vc_btn3-color-white.vc_btn3-style-flat:active,
.join-btn1 .vc_btn3.vc_btn3-color-white.vc_btn3-style-flat:active{ color:#fff; background-color:#111111;}

.incoPat-btn1 .vc_btn3.vc_btn3-color-white.vc_btn3-style-flat{ color:#0d7c8a;}
.incoMon-btn1 .vc_btn3.vc_btn3-color-white.vc_btn3-style-flat{ color:#8f1000;}
.incoInfo-btn1 .vc_btn3.vc_btn3-color-white.vc_btn3-style-flat{ color:#a7c108;}
.incoIndex-btn1 .vc_btn3.vc_btn3-color-white.vc_btn3-style-flat{ color:#da4806;}
.join-btn1 .vc_btn3.vc_btn3-color-white.vc_btn3-style-flat{ color:#ee5032;}

.incoPat-imgs, .incoMon-imgs{ margin:50px 0;}
.incoPat-imgs .wpb_wrapper, .incoMon-imgs .wpb_wrapper{ width:100%; height:100%; position:relative; overflow:hidden;}
.incoPat-imgs .pat-img1, .incoPat-imgs .pat-img2, .incoPat-imgs .pat-img3, .incoPat-imgs .pat-img4,
.incoMon-imgs .mon-img1, .incoMon-imgs .mon-img2, .incoMon-imgs .mon-img3, .incoMon-imgs .mon-img4, .incoMon-imgs .mon-img5, .incoMon-imgs .mon-img6, .incoMon-imgs .mon-img7{ position:absolute; top:0; left:0; width:100%; height:100%; display:none;}
.incoPat-imgs .pat-img1{ z-index:40;}
.incoPat-imgs .pat-img2{ z-index:30;}
.incoPat-imgs .pat-img3{ z-index:20;}
.incoPat-imgs .pat-img4{ z-index:10;}
.incoPat-text h1{ margin:0; font-size:48px; color:#fff;}
.incoPat-text h3{ margin:0; padding-bottom:27px; font-size:24px; color:#fff; font-weight:normal; background:url(img/h3-bg1.png) 0 bottom no-repeat;}
.incoPat-text p, .incoMon-text p{ margin-top:10px; color:#d8d8d8; clear:both;}
.incoPat-text ul{ list-style:none; margin:0; padding:0;}
.incoPat-text ul li{ float:left; margin-right:5px; padding-top:22px; width:80px; height:80px; border:1px solid #d8d8d8; font-size:12px; line-height:18px; text-align:center; cursor:pointer;}
.incoPat-text ul li:hover{ background:#12a8bc; opacity:0.75; filter:Alpha(opacity=75); color:#111111; border:1px solid #12a8bc;}
.incoPat-text ul li h6{ margin:0; padding:0; font-size:12px; line-height:18px;}
.incoPat-text:after{ content:""; display:block; clear:both;}
#incoPat-fanyi .incoPat-imgs{ float:left; width:760px; height:580px; padding:0; margin:50px 0 0;}
#incoPat-fanyi .incoPat-text{ float:right; width:290px; padding:176px 0 0; margin-right:70px;}
#incoPat-yuyi .incoPat-imgs{ float:right; width:760px; height:580px; padding:0;}
#incoPat-yuyi .incoPat-imgs .pat-img1{ left:-100px; display:block; opacity:0; filter:Alpha(opacity=0);}
#incoPat-yuyi .incoPat-imgs .pat-img3{ left:100px; display:block; opacity:0; filter:Alpha(opacity=0);}
#incoPat-yuyi .incoPat-text{ float:left; width:290px; padding:176px 0 0; margin-left:70px; text-align:right;}
#incoPat-yuyi .incoPat-text h3{ background:url(img/h3-bg.png) right bottom no-repeat;}
#incoPat-yuyi .incoPat-text ul li{ float:right; width:90px; margin-left:5px; margin-right:0;}
#incoPat-ditu .incoPat-imgs{ float:left; width:760px; height:580px; padding:0;}
#incoPat-ditu .incoPat-imgs .pat-img1, #incoPat-ditu .incoPat-imgs .pat-img2, #incoPat-ditu .incoPat-imgs .pat-img3, #incoPat-ditu .incoPat-imgs .pat-img4{ left:-100px; display:block; opacity:0; filter:Alpha(opacity=0);}
#incoPat-ditu .incoPat-text{ float:right; width:360px; padding:134px 0 0;}
#incoPat-ditu .incoPat-text ul li{ width:75px;}
#incoPat-shuju .incoPat-imgs{ float:right; width:760px; height:580px; padding:0;}
#incoPat-shuju .incoPat-imgs .pat-img1, #incoPat-shuju .incoPat-imgs .pat-img2, #incoPat-shuju .incoPat-imgs .pat-img3, #incoPat-shuju .incoPat-imgs .pat-img4{ left:100px; display:block; opacity:0; filter:Alpha(opacity=0);}
#incoPat-shuju .incoPat-text{ float:left; width:380px; padding:148px 0 0; text-align:right;}
#incoPat-shuju .incoPat-text h3{ background:url(img/h3-bg.png) right bottom no-repeat;}
#incoPat-shuju .incoPat-text ul li{ float:right; width:90px; padding:10px 0; margin-left:5px; margin-right:0; font-size:10px; line-height:11px;}
#incoPat-shuju .incoPat-text ul li .li2{ font-size:18px; line-height:22px;}
#incoPat-jiazhi .incoPat-imgs{ float:left; width:760px; height:580px; padding:0;}
#incoPat-jiazhi .incoPat-imgs .pat-img1, #incoPat-jiazhi .incoPat-imgs .pat-img2, #incoPat-jiazhi .incoPat-imgs .pat-img3, #incoPat-jiazhi .incoPat-imgs .pat-img4{ left:-100px; display:block; opacity:0; filter:Alpha(opacity=0);}
#incoPat-jiazhi .incoPat-text{ float:right; width:390px; padding:176px 0 0;}

#incoPat-gn{ padding:60px 0;}
#incoPat-gn .wpb_column{ padding:0;}

/*自己修改内容*/
#incoPat-gn .wpb_column .wpb_content_element{ padding: 10px 0;min-height: 277px; margin-bottom:0; border:1px solid #2b2b2b; cursor:pointer; -webkit-transition:all 0.3s ease-in, 1s; -moz-transition:all 0.3s ease-in, 1s; -o-transition:all 0.3s ease-in, 1s; -ms-transition:all 0.3s ease-in, 1s; transition:all 0.3s ease-in, 1s;} 
#incoPat-gn i{ display:block; width:120px; height:120px; margin:30px auto; text-indent:-9999px; overflow:hidden; -webkit-transition:all 0.3s ease-in, 0s; -moz-transition:all 0.3s ease-in, 0s; -o-transition:all 0.3s ease-in, 0s; -ms-transition:all 0.3s ease-in, 0s; transition:all 0.3s ease-in, 0s;}

#incoPat-gn h3{ font-size:18px; color:#fff; font-weight:normal; -webkit-transition:all 0.3s ease-in, 0s; -moz-transition:all 0.3s ease-in, 0s; -o-transition:all 0.3s ease-in, 0s; -ms-transition:all 0.3s ease-in, 0s; transition:all 0.3s ease-in, 0s;}
#incoPat-gn .desc{ color:#1a1a1a; display:none;}
#incoPat-gn a:nth-child(2){ color:#333; display:none;} 
#incoPat-gn .wpb_column .wpb_text_column:hover{ background:#12a8bc; border:1px solid #12a8bc;}    /*自己修改内容*/
#incoPat-gn .wpb_column .wpb_text_column:hover h3{ color:#111;}
#incoPat-gn .wpb_column .wpb_text_column:hover .desc{ display:block;}
#incoPat-gn .wpb_column .wpb_text_column:hover a{ display:block;}

#incoPat-solu,#incoPat-database{ display:none;}
#incoPat-solu .section-title h2:after{ background-color:#1a1a1a;}

#incoPat-database .vc_col-sm-3{ padding:0 8px;}
#incoPat-database .wpb_content_element{ background:#41bac8; border-top:6px solid #1a1a1a; padding:40px 0; cursor:pointer}
#incoPat-database .wpb_content_element i{ display:block; width:160px; height:160px; margin:0 auto; text-indent:-999px; overflow:hidden;}
#incoPat-database .wpb_content_element .image-box-title{ font-size:24px; line-height:1; font-weight:normal; color:#1a1a1a; margin:60px 0 32px; text-align:center;}
#incoPat-database .wpb_content_element .image-box-content{ color:#d8d8d8;}
#incoPat-database .wpb_content_element .image-box-content p{ margin:0;}
#incoPat-database .wpb_content_element:hover{ background:#1a1a1a;}
#incoPat-database .wpb_content_element:hover i{ background-position:center 0;}
#incoPat-database .wpb_content_element:hover .image-box-title{ font-size:30px; font-weight:bold; color:#12a8bc; margin:57px 0 29px;}
#incoPat-database .wpb_content_element:hover .image-box-content{ color:#fff;}

#incoPat-request .section-title h2:after{ background-color:#12a8bc;}
#incoPat-request .request-right{ padding-left:65px;}
#incoPat-request .request-right p{ margin:0 0 20px;}
#incoPat-request .request-right ul{ list-style:none; margin:0; padding:0;}
#incoPat-request .request-right ul li{ margin:0 0 25px; padding:0 0 0 46px; color:#cacaca;}
#incoPat-request .request-right ul li.li-tel .li-title{ font-size:30px; line-height:1; font-weight:bold; color:#fff;}
#incoPat-request .request-right ul li.li-email .li-title,#incoPat-request .request-right ul li.li-qq .li-title{ font-size:24px; line-height:1; font-weight:bold;}

#wpcf7-f97-p15-o1 .input-left{ float:left; width:60%;}
#wpcf7-f97-p15-o1 .input-right{ float:right; width:38%;}
#wpcf7-f97-p15-o1 .wpcf7-form .wpcf7-form-control-wrap select.wpcf7-form-control{ padding:7px 5px;}
#wpcf7-f97-p15-o1 .wpcf7-form .wpcf7-form-control-wrap input:focus, #wpcf7-f97-p15-o1 .wpcf7-form .wpcf7-form-control-wrap textarea:focus, #wpcf7-f97-p15-o1 .wpcf7-form .wpcf7-form-control-wrap select:focus, #wpcf7-f97-p15-o1 .wpcf7-form .wpcf7-form-control-wrap .wpcf7-not-valid{ border:1px solid #11a8bc}
#wpcf7-f97-p15-o1 .read{ padding:5px 0 20px;}
#wpcf7-f97-p15-o1 .wpcf7-form .wpcf7-form-control-wrap .wpcf7-checkbox{ border:0;}
#wpcf7-f97-p15-o1 span.wpcf7-list-item{ margin:0;}
#wpcf7-f97-p15-o1 .wpcf7-form-control.wpcf7-submit{ background-color:#11a8bc}
#wpcf7-f97-p15-o1 .wpcf7-form a{ color:#11a8bc;} 
#wpcf7-f97-p15-o1 .wpcf7-form select option, #wpcf7-f97-p15-o1 .wpcf7-form select optgroup{ background:#1a1a1a;}

/* incoMon */
.incoMon-imgs .mon-img1{ z-index:70;}
.incoMon-imgs .mon-img2{ z-index:60;}
.incoMon-imgs .mon-img3{ z-index:50;}
.incoMon-imgs .mon-img4{ z-index:40;}
.incoMon-imgs .mon-img5{ z-index:30;}
.incoMon-imgs .mon-img6{ z-index:20;}
.incoMon-imgs .mon-img7{ z-index:10;}
.incoMon-text h1{ margin:0; padding-bottom:20px; font-size:48px; color:#fff; background:url(img/h1-bg-red2.png) 0 bottom no-repeat;}

#incoMon-data .incoMon-imgs, #incoMon-dw .incoMon-imgs, #incoMon-gmjj .incoMon-imgs, #incoMon-zl .incoMon-imgs, #incoMon-zdy .incoMon-imgs, #incoMon-jc .incoMon-imgs{ width:760px; height:580px; padding:0;}
#incoMon-zl .incoMon-imgs{ margin:50px 0 0;}
#incoMon-data .incoMon-text, #incoMon-dw .incoMon-text, #incoMon-gmjj .incoMon-text, #incoMon-zl .incoMon-text, #incoMon-zdy .incoMon-text, #incoMon-jc .incoMon-text{ width:370px;}

#incoMon-data .incoMon-imgs, #incoMon-gmjj .incoMon-imgs, #incoMon-zdy .incoMon-imgs, #incoMon-dw .incoMon-text, #incoMon-zl .incoMon-text, #incoMon-jc .incoMon-text{ float:left; margin-left:15px;}
#incoMon-dw .incoMon-imgs, #incoMon-zl .incoMon-imgs, #incoMon-jc .incoMon-imgs, #incoMon-data .incoMon-text, #incoMon-gmjj .incoMon-text, #incoMon-zdy .incoMon-text{ float:right; margin-right:15px;}
#incoMon-dw .incoMon-text, #incoMon-zl .incoMon-text, #incoMon-jc .incoMon-text{ text-align:right;}
#incoMon-dw .incoMon-text h1, #incoMon-zl .incoMon-text h1, #incoMon-jc .incoMon-text h1{ background:url(img/h1-bg-red4.png) right bottom no-repeat;}
#incoMon-data .incoMon-text{ padding:160px 0 0;}
#incoMon-dw .incoMon-text{ padding:240px 0 0;}
#incoMon-gmjj .incoMon-text{ padding:180px 0 0;}
#incoMon-zl .incoMon-text{ padding:220px 0 0;}
#incoMon-zdy .incoMon-text{ padding:260px 0 0;}
#incoMon-jc .incoMon-text{ padding:190px 0 0;}

#incoMon-pt .section-title h2{ letter-spacing:0; text-transform:none;}
#incoMon-pt .section-title h2:after{ background-color:#1a1a1a;}

#incoMon-zpt{ padding:100px 0;}
#incoMon-zpt .vc_col-sm-2{ width:20%; height:300px; border:1px solid #252525; cursor:pointer; -webkit-transition:all 0.3s ease-in, 1s; -moz-transition:all 0.3s ease-in, 1s; -o-transition:all 0.3s ease-in, 1s; -ms-transition:all 0.3s ease-in, 1s; transition:all 0.3s ease-in, 1s;}
#incoMon-zpt i{ display:block; width:120px; height:120px; margin:30px auto; text-indent:-9999px; overflow:hidden; -webkit-transition:all 0.3s ease-in, 0s; -moz-transition:all 0.3s ease-in, 0s; -o-transition:all 0.3s ease-in, 0s; -ms-transition:all 0.3s ease-in, 0s; transition:all 0.3s ease-in, 0s;}

#incoMon-zpt h3{ font-size:18px; color:#fff; font-weight:normal; -webkit-transition:all 0.3s ease-in, 0s; -moz-transition:all 0.3s ease-in, 0s; -o-transition:all 0.3s ease-in, 0s; -ms-transition:all 0.3s ease-in, 0s; transition:all 0.3s ease-in, 0s;}
#incoMon-zpt a{ color:#fff; display:none;}
#incoMon-zpt .vc_col-sm-2:hover{ background:#c12616; border:1px solid #c12616;}
#incoMon-zpt .vc_col-sm-2:hover i{ background-position:center bottom;}
#incoMon-zpt .vc_col-sm-2:hover h3{ color:#111;}
#incoMon-zpt .vc_col-sm-2:hover a{ text-decoration:none; display:block;}

#incoMon-zdy .mon-img1, #incoMon-zdy .mon-img2, #incoMon-zdy .mon-img3, #incoMon-zdy .mon-img4, #incoMon-zdy .mon-img5, #incoMon-zdy .mon-img6,
#incoMon-jc .mon-img4, #incoMon-jc .mon-img5,
#incoMon-zl .mon-img4, #incoMon-zl .mon-img5,
#incoMon-gmjj .mon-img2, #incoMon-gmjj .mon-img3, #incoMon-gmjj .mon-img4, #incoMon-gmjj .mon-img5, #incoMon-gmjj .mon-img6, #incoMon-gmjj .mon-img7,
#incoMon-dw .mon-img1, #incoMon-dw .mon-img2, #incoMon-dw .mon-img3, #incoMon-dw .mon-img4, #incoMon-dw .mon-img5,
#incoMon-data .mon-img2, #incoMon-data .mon-img4{ display:block; opacity:0; filter:Alpha(opacity=0);}
#incoMon-zdy .mon-img1{ left:100px;}
#incoMon-zdy .mon-img2, #incoMon-zdy .mon-img3, #incoMon-zdy .mon-img4{ left:-100px;}
#incoMon-zdy .mon-img5{ top:-100px;}
#incoMon-zdy .mon-img6{ top:100px;}

#incoMon-jc .mon-img4{ top:-100px;}
#incoMon-jc .mon-img5{ top:100px;}

#incoMon-zl .mon-img4, #incoMon-zl .mon-img5{ top:100px;}

#incoMon-gmjj .mon-img2, #incoMon-gmjj .mon-img3, #incoMon-gmjj .mon-img4, #incoMon-gmjj .mon-img5{ top:-100px;}
#incoMon-gmjj .mon-img6{ top:100px;}
#incoMon-gmjj .mon-img7{ left:100px;}

#incoMon-dw .mon-img1, #incoMon-dw .mon-img2, #incoMon-dw .mon-img4{ top:100px;}
#incoMon-dw .mon-img3, #incoMon-dw .mon-img5{ top:-100px;}

#incoMon-data .mon-img2, #incoMon-data .mon-img4{ top:-100px;}

.incoMon-imgs .mon-img8{ z-index:10; position:absolute; left:20px; top:-15px; width:726px; height:726px; display:none;}
.incoMon-imgs .mon-img8 .wpb_wrapper{ position:relative;}
.pathway > div{ position:absolute; top:0; left:0; width:100%; height:100%; border-radius:50%; border:2px solid #c12616;
 -webkit-transform-style:preserve-3d; -webkit-transform:rotateX(65deg) rotateY(0deg); -moz-transform-style:preserve-3d; -moz-transform:rotateX(65deg) rotateY(0deg); transform-style:preserve-3d; transform:rotateX(65deg) rotateY(0deg);}
.pathway > div > div{ position:absolute; width:100%; height:100%; -webkit-transform-style:preserve-3d; -webkit-animation:trail_ 5s infinite linear; -moz-transform-style:preserve-3d; -moz-animation:trail_ 5s infinite linear; transform-style:preserve-3d; animation:trail_ 5s infinite linear; text-indent:-999px;}
.pathway > div > div:after{ content:""; position:absolute; top:-5px; left:50%; margin-left:-5px; width:12px; height:12px; border-radius:50%; background:#fff; -webkit-animation:particle_ 10s infinite linear; -moz-animation:particle_ 10s infinite linear; animation:particle_ 10s infinite linear; z-index:15;}

@-webkit-keyframes trail_{ 
    from {
        -webkit-transform: rotateZ(0deg);
    } to {
        -webkit-transform: rotateZ(-360deg);
    }
}
@keyframes trail_{ 
    from {
        transform: rotateZ(0deg);
    } to {
        transform: rotateZ(-360deg);
    }
}
@-webkit-keyframes particle_{ 
    from {
        -webkit-transform: rotateX(90deg) rotateY(0deg); 
        transform: rotateX(90deg) rotateY(0deg); 
    } to {
      -webkit-transform: rotateX(90deg) rotateY(-360deg);  
        transform: rotateX(90deg) rotateY(-360deg); 
    } 
}
@keyframes particle_{ 
    from {
        transform: rotateX(90deg) rotateY(0deg); 
    } to { 
        transform: rotateX(90deg) rotateY(-360deg); 
    } 
}

/* incoInfo */
.page-id-20.custom-color-scheme .section-title h2:after{ background-color:#a7c108}
#incoInfo-con1{ padding:60px 0 80px;}
#incoInfo-con1 .section-title{ margin-bottom:10px;}
#incoInfo-con1 .vc_col-sm-3 h1{ display:block; width:118px; height:118px; border:1px solid #111; -webkit-border-radius:50%; -moz-border-radius:50%; border-radius:50%; font-size:48px; font-weight:normal; color:#111; line-height:118px; margin:0 auto; padding:0;}
#incoInfo-con1 .vc_col-sm-3 p{ color:#111; margin:10px 0 0; padding:0;}
#incoInfo-con1 .vc_col-sm-3:hover h1{ border:1px solid #fff; color:#fff;}
#incoInfo-con1 .vc_col-sm-3:hover p{ color:#fff;}

#incoInfo-js{ padding:100px 0;}
#incoInfo-js .vc_col-sm-3{ padding:0;}
#incoInfo-js .vc_col-sm-3 .wpb_text_column{ height:288px; padding:0 15px; border:1px solid #262626; margin:0; cursor:pointer; -webkit-transition:all 0.3s ease-in, 1s; -moz-transition:all 0.3s ease-in, 1s; -o-transition:all 0.3s ease-in, 1s; -ms-transition:all 0.3s ease-in, 1s; transition:all 0.3s ease-in, 1s;}
#incoInfo-js .vc_col-sm-3 .wpb_text_column i{ display:block; width:120px; height:120px; margin:58px auto 0; text-indent:-9999px; overflow:hidden; -webkit-transition:all 0.3s ease-in, 0s; -moz-transition:all 0.3s ease-in, 0s; -o-transition:all 0.3s ease-in, 0s; -ms-transition:all 0.3s ease-in, 0s; transition:all 0.3s ease-in, 0s;}

#incoInfo-js .vc_col-sm-3 .wpb_text_column h3{ margin:0 0 10px; font-size:18px; color:#dadada; font-weight:normal; -webkit-transition:all 0.3s ease-in, 0s; -moz-transition:all 0.3s ease-in, 0s; -o-transition:all 0.3s ease-in, 0s; -ms-transition:all 0.3s ease-in, 0s; transition:all 0.3s ease-in, 0s;}
#incoInfo-js .vc_col-sm-3 .wpb_text_column .zjs{ color:#111; line-height:16px; display:none;}
#incoInfo-js .vc_col-sm-3 .wpb_text_column:hover{ background:#a7c108; border:1px solid #a7c108;}
#incoInfo-js .vc_col-sm-3 .wpb_text_column:hover i{ background-position:center bottom;}
#incoInfo-js .vc_col-sm-3 .wpb_text_column:hover h3{ color:#111;}
#incoInfo-js .vc_col-sm-3 .wpb_text_column:hover .zjs{ display:block;}

#incoInfo-sliders{ display:none;}
#incoInfo-sliders{ padding:65px 0 40px;}
#incoinfo-slider{ text-align:center;}
#incoinfo-slider .div-item h3{ color:#fcfcfc; font-size:18px; margin:0 0 24px;}
#incoinfo-slider .div-item div{ color:#a1a1a1;}
#incoinfo-slider .owl-controls{ margin-top:20px;}

.vc_non_responsive .vc_row .vc_col-sm-12.incoInfo-imgs{ float:none; clear:both; width:960px; height:360px; padding:0; margin:0 auto; position:relative; overflow:hidden;}
.incoInfo-imgs .info-img1, .incoInfo-imgs .info-img2, .incoInfo-imgs .info-img3, .incoInfo-imgs .info-img4, .incoInfo-imgs .info-img5{ position:absolute; top:0; left:0; width:100%; height:100%;}
.incoInfo-imgs .info-img1{ z-index:50;}
.incoInfo-imgs .info-img2{ z-index:40;}
.incoInfo-imgs .info-img3{ z-index:30;}
.incoInfo-imgs .info-img4{ z-index:20;}
.incoInfo-imgs .info-img5{ z-index:10;}

#incoInfo-bg .info-img1,
#incoInfo-dt .info-img1,
#incoInfo-px .info-img2,
#incoInfo-py .info-img3, #incoInfo-py .info-img5{ top:-100px; opacity:0; filter:Alpha(opacity=0);}
#incoInfo-bg .info-img2, #incoInfo-bg .info-img3, #incoInfo-bg .info-img4,
#incoInfo-dt .info-img5,
#incoInfo-px .info-img3,
#incoInfo-py .info-img2{ top:100px; opacity:0; filter:Alpha(opacity=0);}
#incoInfo-jb .info-img1, #incoInfo-jb .info-img2, #incoInfo-jb .info-img3, #incoInfo-jb .info-img4, #incoInfo-jb .info-img5,
#incoInfo-dt .info-img2, #incoInfo-dt .info-img3, #incoInfo-dt .info-img4,
#incoInfo-py .info-img1, #incoInfo-py .info-img4{ display:none;}
#incoInfo-jb .info-img2{ left:210px; top:90px; width:540px; height:540px; -webkit-animation:rotate_ 3s linear infinite normal; -moz-animation:rotate_ 3s linear infinite normal; animation:rotate_ 3s linear infinite normal; z-index:15;}
#incoInfo-px .info-img1{ left:-100px; opacity:0; filter:Alpha(opacity=0);}

@-webkit-keyframes rotate_{ 
    from {
        -webkit-transform: rotate(0deg); 
    } to { 
        -webkit-transform: rotate(360deg); 
    } 
}
@-moz-keyframes rotate_{ 
    from {
        -moz-transform: rotate(0deg); 
    } to { 
        -moz-transform: rotate(360deg); 
    } 
}
@keyframes rotate_{ 
    from {
        transform: rotate(0deg); 
    } to { 
        transform: rotate(360deg); 
    } 
}

/* incoIndex page */
.vc_non_responsive .vc_row .vc_col-sm-6.incoIndex-imgs{ float:left; width:32%; padding:0;}
.vc_non_responsive .vc_row .vc_col-sm-6.incoIndex-text{ float:right; width:65%;}
.incoIndex-imgs .incoindex-img{ display:block; width:100%; max-width:375px; margin:0 auto; opacity:0; filter:Alpha(opacity=0);}
.incoIndex-text .wpb_wrapper{ overflow:hidden;}
.incoindex-title{ margin:40px 0; position:relative; left:100%;}
.incoindex-title h2{ font-size:36px; color:#fff; margin:0;}
.incoindex-title h1{ font-size:40px; color:#fff; margin:0;}
.incoindex-con{ padding-top:20px; background:url(img/h1-bg-yellow.png) 0 0 no-repeat; position:relative; left:100%;}
.incoindex-con{ color:#a1a1a1;}
.incoindex-con em{ font-size:12px; font-style:normal;}

#incoIndex-div1, #incoIndex-div2, #incoIndex-div3, #incoIndex-div4, #incoIndex-div5{ padding:140px 0;}
#incoIndex-div2, #incoIndex-div3, #incoIndex-div4, #incoIndex-div5{ display:none;}

#index-sliders .owl-buttons div{ background-color:#1a1a1a;}
#index-sliders .owl-buttons div:hover{ background-color:#ee5032;}
#index-sliders .owl-item{ border:1px solid #252525; cursor:pointer;}
#index-sliders .slide-item{ padding:35px 0; height:220px;}
#index-sliders .slide-item.current{ background:#ee6c0c;}
#index-sliders .slide-item img{ display:block; margin:0 auto; opacity:1; filter:Alpha(opacity=100);}
#index-sliders .slide-item img.after{ margin-top:-150px; opacity:0; filter:Alpha(opacity=0);}
#index-sliders .slide-item.current img{ opacity:0; filter:Alpha(opacity=0);}
#index-sliders .slide-item.current img.after{ opacity:1; filter:Alpha(opacity=100);}

/* contact page */
#contact-beijin .vc_col-sm-6.contact-text, #contact-guangzhou .vc_col-sm-6.contact-imgs, #contact-hangzhou .vc_col-sm-6.contact-text, #contact-suzhou .vc_col-sm-6.contact-imgs, #contact-zhengzhou .vc_col-sm-6.contact-text{ float:right;}
#contact-beijin .vc_col-sm-6.contact-imgs, #contact-guangzhou .vc_col-sm-6.contact-imgs, #contact-hangzhou .vc_col-sm-6.contact-imgs, #contact-suzhou .vc_col-sm-6.contact-imgs, #contact-zhengzhou .vc_col-sm-6.contact-imgs{ width:55%;}
#contact-beijin .contact-text, #contact-hangzhou .contact-text, #contact-zhengzhou .contact-text{ width:300px; padding:0; margin-right:90px;}
#contact-guangzhou .contact-text, #contact-suzhou .contact-text{ width:300px; padding:0; margin-left:90px;}
.contact-text h1{ margin:80px 0 10px; padding:0 0 46px 14px; font-size:36px; color:#fff; line-height:1; background:url(img/h1-bg-red2.png) 0 bottom no-repeat;}
#contact-guangzhou .contact-text h1, #contact-suzhou .contact-text h1{ background:url(img/h1-bg-red.png) right bottom no-repeat;}
.contact-text dl{ margin:0 0 0 10px; padding:0; clear:both;}
.contact-text dl dt{ float:left; margin:0; padding:0; width:75px; color:#ee5032; font-weight:normal; text-align:right; overflow:hidden;}
.contact-text dl dd{ float:right; width:205px;}
.contact-text dl dd:after{ clear:both;}
#allmap1, #allmap2, #allmap3, #allmap4, #allmap5{height: 440px;width:100%;overflow: hidden;}
#result1, #result2, #result3, #result4, #result5{width:100%;font-size:12px;}

/* news posts */
.title-area{ padding-top:140px; padding-bottom:60px; background-image:url(../../uploads/2015/07/solution-bg.jpg); z-index:1; position:relative; background-position:center center; background-size:cover; background-repeat:no-repeat; background-attachment:fixed;}
.title-area h2{ color:#fff; font-size:36px; text-transform:uppercase; font-weight:700; margin-top: 0;}
.title-area h2:after{ content:""; display:block; margin:20px auto 40px; width:100px; height:2px; background-color:#ee5032;}

#cat-nav{ margin:55px 0 75px; text-align:center;}
#cat-nav ul{ width:780px; margin:0 auto; padding:0; list-style:none;}
#cat-nav li{ float:left; width:20%; margin:0; padding:0 0 35px; border-bottom:1px solid #888; text-align:center;}
#cat-nav li a{ font-size:20px; line-height:1; color:#888;}
#cat-nav li:hover, #cat-nav li.active{ border-bottom:2px solid #ee5032;}
#cat-nav li:hover a, #cat-nav li.active a{ text-decoration:none; color:#fff;}
#cats li a{ display:block; margin-bottom:10px; width:148px; height:38px; border:1px solid #fff; line-height:38px; text-align:center; overflow:hidden;}

article.post .entry-format{ width:100%; max-height:335px; overflow:hidden;}
article.post .entry-format img{ width:auto;}
article.post h2.entry-title{ font-size:20px; font-weight:normal; color:#ee5032;}
article.post .entry-footer span{ float:left;}
article.post .entry-footer span.right{ float:right; margin-right:5px;}
article.post .entry-summary{ max-height:88px; overflow:hidden;}
#gallery-single{ margin-bottom:20px;}
#gallery-single .flexslider .slides img{ max-height:337px;}
#gallery-single .flex-direction-nav li a{ font-size:26px;}
#gallery-single .flex-direction-nav a:before{ content:'';}
#gallery-single .fa-arrow-left:before{ content:"\f104";}
#gallery-single .fa-arrow-right:before{ content:"\f105";}

.single .site-content, .archive .site-content{ padding-top:60px;}
h1.entry-title{ padding-top:80px; text-align:center;}

.widget_search .widget-title{ display:none;}
.recent-post .post-text .post-title, .popular-post .post-text .post-title{ height:22px; overflow:hidden;line-height: 22px;}

.search-results h1.page-title{ font-size:18px;}

/* register, login, forgot pwd */
#user-nav ul{ width:100%; margin:0 auto; padding:0; list-style:none;}
#user-nav li{ float:left; width:16%; height:58px; margin:0; padding:0 0 35px; border-bottom:1px solid #888; text-align:center;}
#user-nav li:last-child{ width:52%;}
#user-nav li a{ font-size:20px; line-height:23px; color:#888;}
#user-nav li:hover, #user-nav li.active{ border-bottom:1px solid #ee5032;}
#user-nav li:hover a, #user-nav li.active a{ text-decoration:none; color:#fff;}
#user-nav li:last-child:hover{ border-bottom:1px solid #888;}
#user li a{ display:block; margin-bottom:10px; width:148px; height:38px; border:1px solid #fff; line-height:38px; text-align:center; overflow:hidden;}

#user-form{ padding:0 0 90px;}
#user-form.vc_row .pie-left{ padding:0 30px;}
#user-form.vc_row .pie-right{ padding:110px 80px 0;}
.pieregWrapper .fields .fieldset{ padding:0 0 20px; color:#bbbbbb;}
.pieregWrapper #pie_register .fields{ font-family:'黑体', Arial, Helvetica, sans-serif; clear:none; margin:0;}
.pieregWrapper #pie_register .fields.input-left{ float:left; width:60%;}
.pieregWrapper #pie_register .fields.input-right{ float:right; width:38%;}
.pieregWrapper #pie_register .fields .input_fields, .pieregWrapper #pie_register .fields select, .piereg_login_container .piereg_login_wrapper input, #piereg_login form#piereg_lostpasswordform p .input{ width:100%; border:1px solid #555555;  padding:5px; background-color:transparent; color:#ffffff; border-radius:4px; font-size: 15px; font-weight:400;}
.pieregWrapper #pie_register .fields select{ padding:7px 5px;}
.pieregWrapper #pie_register .fields select option, .pieregWrapper #pie_register .fields select optgroup{ background:#1a1a1a;}
.pieregWrapper #pie_register .fields .fieldset.error{ border:0;}
.pieregWrapper #pie_register .fields .input_fields:focus, .pieregWrapper #pie_register .fields select:focus, .pieregWrapper #pie_register .fields .fieldset.error .input_fields, .pieregWrapper #pie_register .fields .fieldset.error select, .piereg_loginform .fields .input:focus, .piereg_loginform .fields .fieldset.error .input, #piereg_login form#piereg_lostpasswordform p .input:focus, #piereg_login form#piereg_lostpasswordform p.error .input{ border:1px solid #ee5032;}
.pieregWrapper .fields .piereg_submit_button{ padding:0; margin-right:0;}
.piereg_container .piereg_login_wrapper .submit input[type="submit"], .pieregWrapper input[type="submit"], .pieregWrapper .piereg_cancel_profile_edit_btn, #piereg_login form#piereg_lostpasswordform p .button{ float:none; width:100%; border-radius:4px; background:#ee5032; padding:6px 0; cursor:pointer; color:#fff; border:0;}
.pie-kszc { text-align:center; margin-bottom:48px;}
.pie-kszc .pie-kszc-title{ position:relative; margin-bottom:30px;}
.pie-kszc .pie-kszc-title span{ position:absolute; top:-10px; left:50%; width:94px; height:20px; background:#1a1a1a; margin-left:-47px; text-align:center; color:#bbbbbb;}
.pie-kszc .pie-kszc-title hr{ margin-bottom:10px; margin-top:10px;}
.pie-kszc .icon-box-qq, .pie-kszc .icon-box-wb{ margin-right:30px;}

#piereg_login form#piereg_lostpasswordform p{ margin:0; padding:0 0 10px;}
#piereg_login form#piereg_lostpasswordform p label{ display:none; margin:0;}
#piereg_login form#piereg_lostpasswordform p input{ width:100%;}

.piereg_login_container .piereg_login_wrapper{ margin:0;}
.piereg_container p{ margin:0 0 10px;}
.piereg_login_container .piereg_login_wrapper .forgetmenot input{ width:auto;}

.pie_profile#pie_register .fields2,.pie_profile#pie_register tr:first-child .fields,.pie_profile#pie_register .fields{ border:0; color:#fff; background:none;}

#user-form.vc_row.pie-login .pie-right{ padding:0 80px;}
.wpb_content_element.pie-form-message{ margin-bottom:0;}
.wpb_content_element.pie-form-message a{ display:none;}

div.piereg_entry-content{ max-width:100%;}
div.pieregForgotPassword{ float:none; clear:both; padding:0;}
#piereg_login{ display:block;}
.alert-warning{ display:none;}
.alert{ padding:0; border:0; border-radius:0;}

/* research page */
#research-section .search-form{ width:358px; height:28px; border:1px solid #ff0000; background:#ee5131; margin:10px auto; overflow:hidden;}
#research-section .search-form:before{ font-size:18px; font-weight:normal; color:#fff; line-height:28px;}
#research-section .search-form .search-field{ border:0; padding:0 5px; line-height:28px;}
.wpb_text_column .portfolio-showcase{ margin-bottom:55px;}
.portfolio-showcase .portfolio_project, .portfolio-showcase .portfolio-sizer{ width:33%; padding:50px 28px 10px; border-bottom:1px solid #222; cursor:pointer;}
.portfolio-showcase .portfolio-thumbnail{ float:left; width:136px; height:175px; margin-right:10px; overflow:hidden;}
.portfolio-showcase .portfolio-thumbnail img{ width:126px; height:163px; margin-top:12px;}
.portfolio-showcase .portfolio-content{ float:left; width:170px; overflow:hidden;}
.portfolio-showcase .portfolio_project h3{ position:static; height:90px; margin-top:10px; -webkit-transition:none;  transition:none; opacity:1; text-align:left; text-transform:none; font-size:16px; color:#f4f4f4; line-height:30px; font-weight:normal;}
.portfolio-showcase .portfolio-content .portfolio-date{ color:#ee5032; font-size:12px; text-align:left; margin-top:10px;}
.portfolio-showcase .portfolio-content a.downbtn{ display:block; margin-top:15px; width:168px; height:28px; border:1px solid #2b2b2b; background:#222; font-size:14px; color:#f4f4f4; line-height:28px; text-align:center; overflow:hidden;}
.portfolio-showcase .portfolio-detail:hover .portfolio-thumbnail img{ width:100%; height:100%; margin:0;}
.portfolio-showcase .portfolio-detail:hover .portfolio-content h3{ color:#ee5032}
.portfolio-showcase .portfolio-detail:hover a.downbtn{ border:1px solid #ee5032; background:#ee5032;}

.portfolio-description .portfolio-item .title {text-transform: uppercase;font-weight: 400;width: 100px;display:inline-block;}
.portfolio-description .portfolio-item .desc {display:inline-block;}
.portfolio-description .portfolio-item .desc .container{ width:100%; margin:0; padding:0;}
.portfolio-description .portfolio-item .desc .pdf-url-copy{ cursor:pointer;}
.portfolio-description .portfolio-item .desc .button-fullwidth, .portfolio-description .portfolio-item .desc .button-fullwidth button{ width:100%;}
.portfolio-description .portfolio-item .desc .icon-box .box-title{ font-size:16px;}
.portfolio-description .portfolio-item .desc .icon-box.icon-left .box-title{ padding-left:38px; padding-top:5px}
#pdf-url{ display:none;}

.portfolio-pop-intro{ visibility:hidden; position:absolute; top:40px; left:50%; width:960px; height:700px; margin-left:-480px; background:#111; opacity:0.99; filter:Alpha(opacity=99); padding:70px 45px 10px; box-sizing:border-box; overflow:hidden; z-index:9999;}
.portfolio-pop-intro .closed{ position:absolute; top:5px; right:5px; background:#1a1a1a; height:50px; width:50px; cursor:pointer; z-index:99; overflow:hidden}
.portfolio-pop-intro .closed img{ width:100%; height:100%;}
.portfolio-pop-intro .closed .hover{ display:none;}
.portfolio-pop-intro .closed:hover{ background:transparent;}
.portfolio-pop-intro .closed:hover .default{ display:none;}
.portfolio-pop-intro .closed:hover .hover{ display:block;}
.portfolio-pop-intro .portfolio-pop-thumb{ float:left; margin-left:33px; width:158px; height:202px;}
.portfolio-pop-intro .portfolio-pop-thumb img{ width:100%; height:100%;}
.portfolio-pop-intro .portfolio-pop-meta{ float:left; margin:0 0 0 30px;}
.portfolio-pop-intro .portfolio-pop-title{ margin-top:50px; font-size:18px; color:#fff;}
.portfolio-pop-intro .portfolio-pop-date{ margin-top:15px; font-size:12px;}
.portfolio-pop-intro .portfolio-pop-social{ height:42px; margin-top:5px; font-size:12px; line-height:42px;}
.portfolio-pop-intro a.downbtn{ display:block; margin-top:10px; width:168px; height:28px; border:1px solid #2b2b2b; background:#222; font-size:14px; color:#f4f4f4; line-height:28px; text-align:center; overflow:hidden;}
.portfolio-pop-intro a.downbtn:hover{ border:1px solid #ee5032; background:#ee5032; color:#f4f4f4;}
.portfolio-pop-intro .portfolio-pop-con{ width:870px; height:290px; margin-top:50px; color:#cbcbcb; overflow:hidden;}
.portfolio-pop-intro .portfolio-pop-wapper{ padding:10px; overflow:hidden;} 
.portfolio-pop-intro .portfolio-footer{ padding:20px 0 0;}
.portfolio-pop-intro .nav-links{ float:right;}
.portfolio-pop-intro .nav-links a{ cursor:pointer;}

/* about page */
#about-banner{ padding:194px 0 60px;}
.about-btn1 .vc_btn3.vc_btn3-size-md{ padding:12px 154px; font-size:24px;}
.about-btn1 .vc_btn3.vc_btn3-color-white.vc_btn3-style-flat{ color:#c82e11}
.about-btn1 .vc_btn3.vc_btn3-color-white.vc_btn3-style-flat:hover{ background-color:#fff;}
.about-btn1 .vc_btn3.vc_btn3-color-white.vc_btn3-style-flat:active{ color:#fff; background-color:#111111;}

#about-con1{ padding:60px 0 80px;}
#about-con1 .section-title{ margin-bottom:10px;}
#about-con1 .section-title h2:after{ background-color:#c82e11;}
#about-con1 .vc_col-sm-3 h1{ display:block; width:118px; height:118px; border:1px solid #111; -webkit-border-radius:50%; -moz-border-radius:50%; border-radius:50%; font-size:44px; font-weight:normal; color:#111; line-height:118px; margin:0 auto; padding:0; transition:0.8s; -moz-transition:0.8s; -webkit-transition:0.8s; -o-transition:0.8s;}
#about-con1 .vc_col-sm-3 p{ color:#111; margin:10px 0 0; padding:0; transition:0.8s; -moz-transition:0.8s; -webkit-transition:0.8s; -o-transition:0.8s;}
#about-con1 .vc_col-sm-3:hover h1{ border:1px solid #fff; color:#fff;}
#about-con1 .vc_col-sm-3:hover p{ color:#fff;}

#about-sliders{ padding:40px 0 20px; line-height:35px;}
#about-sliders #homeabout-slider .owl-controls{ margin-top:0;}

#about-shiji{ padding:90px 0;}
#dsjbg{ background:url(../img/timeLine.png) 0 120px repeat-x;}
#dsjlist .dsj-item{ position:relative; height:160px; background:url(../img/lines.png) center center no-repeat; font-size:12px; text-align:center;}
#dsjlist .dsj-item .icon{ position:absolute; margin-left:-15px; left:50%; width:30px; height:30px;}
#dsjlist .dsj-item .icon_awards{ background:url(../img/icon_awards.png) center center no-repeat;}
#dsjlist .dsj-item .date, #dsjlist .dsj-item .intro{ display: none;}
#dsjlist .dsj-item .title{ position:absolute; width:100%; height:40px; line-height:20px; color:#b5b5b5; cursor:pointer; overflow:hidden;font-size:18px;font-family:PingFang SC;font-weight:400;color:rgba(235,233,248,1);}
#dsjlist .dsj-item .xsdate_type_color{ color:#c82e11; font-size:14px; line-height:35px;cursor:pointer;}
#dsjlist .dsj-item .xsdate_down{ position:absolute; bottom:0; width:100%; height:75px;}
#dsjlist .dsj-item .xsdate_up{ position:absolute; top:0; width:100%; height:35px;}
#dsjbg .bg{ position:fixed; top:0; width:100%;left:0; height:100%; background:#111; opacity:0.5; filter:Alpha(opacity=50); display:none;}
#awardsDetail{ position:fixed; left:50%; margin-left:-150px; top:50%; margin-top:-150px; width:300px; height:300px; background-color:#fff; display:none; font-size:14px; line-height:26px; color:#000; overflow:hidden;z-index:99999;}
#awardsDetail .date{ margin-top:24px; padding-left:20px; text-align:left; border-bottom:2px solid #ccc;}
#awardsDetail .intro{ padding:35px 20px 0;}
#awardsDetail .closed{ position:absolute; top:0px; right:0px; width:50px; height:50px; background:url(../img/close.png) center center no-repeat; cursor: pointer;}

#about-meiti{ padding:90px 0;}
#about-meiti .section-title.clearfix.align-center{ margin-bottom:20px;}
#mtlist .mt-item{ border:1px solid #262626; height:260px; cursor:pointer;}
#mtlist .mt-item h3{ font-size:18px; color:#ee5032; font-weight:normal; margin:0; padding:10px 0 0 34px; line-height:40px; background:url(img/mtline.png) 0 bottom no-repeat; overflow:hidden;}
#mtlist .mt-item .desc{ width:160px; height:140px; margin:28px auto 0; color:#dadada; line-height:23px; overflow:hidden;}
#mtlist .mt-item .link{ text-align:center; display:none;}
#mtlist .mt-item .link a{ color:#fff;}
#mtlist .mt-item:hover{ background:#ee5032; border-color:#ee5032}
#mtlist .mt-item:hover h3{ color:#111;}
#mtlist .mt-item:hover .desc{ color:#fff;}
#mtlist .mt-item:hover .link{ display:block;}
#mtlist .owl-controls{ margin-top:32px;}

/* solution page */
.solu-menu .widget{ margin-bottom:0;}
.solu-menu .widget_nav_menu li{ float:left; border-bottom:2px solid #2b2b2b; width:14.28%; height:73px; line-height:73px; padding:0; text-align:center;}
.solu-menu .widget_nav_menu li a{ font-size:18px; color:#c7c7c7;}
.solu-menu .widget_nav_menu li:hover{ border-color:#fff;}
.solu-menu .widget_nav_menu li:hover a{ color:#c82f10}
.solu-menu .widget_nav_menu li.current-menu-item{ border-color:#c82f10;}
.solu-menu .widget_nav_menu li.current-menu-item a{ font-weight:bold;}

#solu-hangye .desc p{ padding:0 0 20px}

#solu-fangan .vc_col-sm-2{ border:1px solid #262626; padding:0;}
#solu-fangan .vc_col-sm-2 dl dt{ padding:36px 30px; border-bottom:2px solid #e24d2f; text-align:center; font-size:25px; color:#fff; line-height:35px;}

#solu-fangan .vc_col-sm-2 dl dd{ height:60px; text-align:center; line-height:60px;}
#solu-fangan .vc_col-sm-2 dl dd.even{ background:#111;}
#solu-fangan .vc_col-sm-2 dl dd:hover{ background:#e24d2f}

#solu-fangan .solu-jiexie .vc_col-sm-2{ width:20%;}
#solu-fangan .solu-jiexie .solu-fa5 dl dt{ padding:18px 30px 19px;}
#solu-fangan .solu-fuwu .vc_col-sm-2{ width:50%;}
#solu-fangan .solu-guanli .vc_col-sm-2{ width:25%;}
#solu-fangan .solu-jiaoyu .vc_col-sm-2{ width:33.33%}
#solu-fangan .solu-nengyuan .vc_col-sm-2{ width:20%;}
#solu-fangan .solu-tongxin .vc_col-sm-2{ width:20%;}
#solu-fangan .solu-yiyao .vc_col-sm-2{ width:20%;}

#solu-testi{ padding:58px 0;}
#solu-testi .testimonial-list{ padding:0 50px; color:#fff;}
#solu-testi .testimonial-list.testimonial-full .testi-name{ margin-top:30px; font-size:20px; line-height:30px;}

.testi-right, .testi-right .testi-author{ float:right;}
.testi-right .testi-author .testi-pic{ position: absolute; right:25px; text-align:right; top: 0; width: 120px; height: 120px;}
.testi-right .testi-name, .testi-right .testi-desc{ padding-right:150px; text-align:right;}
.testi-right .testi-name{ margin-top:10px;}

/* join page */
#join-banner .section-title h2:after{ background-color:#000;}
#join-banner h3{ font-size:20px; color:#fff;}
#join-duocai .section-title{ margin-bottom:0;}

#join-duocai .wpb_tabs_nav{ width:450px; margin:0 auto 60px; overflow:hidden;}
#join-duocai .wpb_content_element .wpb_tabs_nav li{ background:transparent; width:150px; height:60px; margin:0; border:0; border-bottom:2px solid #2b2b2b; text-align:center; cursor:pointer;}
#join-duocai .wpb_tabs .wpb_wrapper .wpb_tabs_nav li a{ font-size:20px; line-height:30px; color:#c7c7c7; padding:0; border:0; outline:none;}
#join-duocai .wpb_tabs_nav li.ui-tabs-active, #join-duocai .wpb_tabs_nav li:hover{ border-color:#ee5032;}
#join-duocai .wpb_tabs_nav li.ui-tabs-active a, #join-duocai .wpb_tabs_nav li:hover a{ color:#fff;}
#join-duocai .wpb_content_element .wpb_tour_tabs_wrapper .wpb_tab{ padding:0;}
#join-duocai .wpb_content_element.wpb_tabs .wpb_tour_tabs_wrapper .wpb_tab{ background:transparent;}

#join-job .section-title{ margin-bottom:0;}

#joblist{ float:right; width:50%}
#jobcon{ float:left; width:50%}
#jobcon *{
	width:100% !important;
	margin-left:0 !important;
}
#joblist dl dt{/*  border-top:1px solid #2b2b2b;  */font-size:22px; color:#c82f10; line-height:30px; padding-left:20px; font-weight:normal;}
#joblist dl dd{ padding:8px 0 8px 40px;}
#joblist dl dd a{ font-size:14px; color:#fff;}
#joblist dl dd a:hover, #joblist dl dd.current a{ color:#c82f10;}

#jobcon .job-top{ background:#111; padding:0px 0 0px 30px;}
#jobcon .job-top .job-title{ font-size:20px; color:#fff; line-height:40px;}
#jobcon .job-top .job-meta{ font-size:18px; line-height:30px;}
#jobcon .job-main{ padding:10px 0; border-top:2px solid #ee5032; border-left:1px solid #2b2b2b; border-right:1px solid #2b2b2b; border-bottom:1px solid #2b2b2b;} 
#jobcon .job-main .job-con{ width:94%; height:300px; overflow:hidden;}  
#jobcon .job-main .job-con .job-wapper{ padding:0 28px;}
#jobcon .job-main .job-con strong{ color:#c82f10;}


@media only screen and (max-width: 1199px) {
  	.primary-nav .nav > li > a{ padding:25px 10px;}
	.footer-sidebar-1.col-md-9{ width:78%}
	.footer-sidebar-2.col-md-2{ width:20%;}
	.col-sm-90{ width:90%}
	.col-md-90{ width:90%}
	.col-md-91{ width:10%;}
	.col-sm-91{ width:10%;}
	/* incoPat incoMon page */
	#incoPat-fanyi .incoPat-imgs, #incoPat-yuyi .incoPat-imgs, #incoPat-ditu .incoPat-imgs, #incoPat-shuju .incoPat-imgs, #incoPat-jiazhi .incoPat-imgs,
	#incoMon-data .incoMon-imgs, #incoMon-dw .incoMon-imgs, #incoMon-gmjj .incoMon-imgs, #incoMon-zl .incoMon-imgs, #incoMon-zdy .incoMon-imgs, #incoMon-jc .incoMon-imgs{ width:600px; height:458px;}
	#incoPat-fanyi .incoPat-text{ padding-top:126px; margin-right:40px;}
	#incoPat-yuyi .incoPat-text{ padding-top:126px; margin-left:40px;}
	#incoPat-ditu .incoPat-text{ padding-top:80px; width:340px;}
	#incoPat-shuju .incoPat-text,#incoPat-jiazhi .incoPat-text{ width:340px; padding-top:100px;}
	
	#incoMon-data .incoMon-text, #incoMon-dw .incoMon-text, #incoMon-gmjj .incoMon-text, #incoMon-zl .incoMon-text, #incoMon-zdy .incoMon-text, #incoMon-jc .incoMon-text{ width:320px;}
	#incoMon-dw .incoMon-text, #incoMon-gmjj .incoMon-text{ padding:140px 0 0;}
	#incoMon-zl .incoMon-text{ padding:120px 0 0;}
	#incoMon-zdy .incoMon-text, #incoMon-jc .incoMon-text{ padding:160px 0 0;}
	.incoMon-imgs .mon-img8{ width:573px; height:573px;}
	
	#incoInfo-js .vc_col-sm-3 .wpb_text_column h3{ margin:0 0 5px;}
	
	/* research page */
	.portfolio-showcase .portfolio_project, .portfolio-showcase .portfolio-sizer{ padding:50px 10px 10px}
	.portfolio-showcase .portfolio-thumbnail{ width:116px; height:149px;}
	.portfolio-showcase .portfolio-thumbnail img{ width:106px; height:137px;}
	.portfolio-showcase .portfolio-content{ width:160px;}
	.portfolio-showcase .portfolio_project h3{ height:60px;}
	.portfolio-showcase .portfolio-content h3 a{ line-height:20px;}
	.portfolio-showcase .portfolio-content a.downbtn{ width:158px;}
	/* solution page */
	.solu-menu .widget_nav_menu li a{ font-size:16px;}
	#solu-fangan .vc_col-sm-2 dl dt{ font-size:20px;}
}
@media only screen and (max-width: 1024px) {
	.parallax {
		background-attachment: scroll;
	}
	#home-contact .wpb_text_column ul li{ max-width:80px;}
}


@media only screen and (max-width: 991px) {
  .widgets-area {
    clear: both;
    padding-top: 60px;
  }
  .site-header .site-branding {
    float: none;
    overflow: hidden;
  }
  .site-header .site-branding .logo {
    float: left;
    line-height: 70px;
  }
  .site-header .nav-menu-container {
    float: none;
    padding: 0;
  }
  .site-header .navbar-toggle {
    display: block;
  }
  .site-header .social-icons {
    display: none;
  }
  .primary-nav {
    display: none;
    float: none;
    padding-top: 10px;
    margin-top: 20px;
    max-height: 340px;
    overflow-y: scroll;
  }
  .primary-nav .nav {
    float: none;
  }
  .primary-nav .nav li {
    padding: 0;
    width: 100%;
    clear: both;
    border-bottom: 1px solid #2b2b2b;
  }
  .primary-nav .nav li.menu-item-has-children {
    border: none;
  }
  .primary-nav .nav li.menu-item-has-children > a {
    border-bottom: 1px solid #2b2b2b;
  }
  .primary-nav .nav li:before {
    background: none;
  }
  .primary-nav .nav li a:hover {
    background-color: #333333;
  }
  .primary-nav .nav li > a {
/*    padding: 20px 10px;
*/  }
  .primary-nav .nav li ul {
    display: block;
    opacity: 1;
    position: relative;
    visibility: inherit;
    border: none;
  }
  .primary-nav .nav li ul li {
    float: left;
    background: none;
    padding-bottom: 0;
    padding-left: 10px;
    border-left: none;
    border-right: none;
  }
  .primary-nav .nav li ul li.menu-item-has-children > a {
    border-bottom: 1px solid #2b2b2b;
  }
  .primary-nav .nav li ul li a {
    font-weight: 400;
  }
  .primary-nav .nav li ul li ul {
    left: 0;
  }
  /* home page */
	.vc_non_responsive .vc_row .vc_col-sm-3.section-monitor, .vc_non_responsive .vc_row .vc_col-sm-3.section-pat, .vc_non_responsive .vc_row .vc_col-sm-3.section-index, .vc_non_responsive .vc_row .vc_col-sm-3.section-info{ width:280px; height:460px; margin:0 45px; padding:0;}
	#home-solution .vc_row .vc_col-sm-6{ float:none; width:100%; margin-bottom:30px;}
	#home-solution .image-box.image-left .image-box-title{ font-size:20px;}
	#lastnews{ margin-top:0;}
	#home-contact .wpb_text_column ul li{ margin-right:5px;}
	#home-contact .icon-box{ margin-bottom:10px !important;}
	.footer-sidebar-2 strong{ font-size:16px;}
	.vc_non_responsive .vc_row.home-contact-form .vc_col-sm-6{ padding:0 20px;}
	.team-right .wpb_content_element{ margin-bottom:10px;}
	#home-team .ta-team-bio .team-member-bio{ width:700px; margin-left:-350px;}
	#home-team .ta-team-bio .team-member-bio h1{ font-size:24px; margin:30px 0 10px;}
	#home-team .ta-team-bio .team-member-bio h3{ font-size:16px; margin:0 0 10px;}
	#home-team .ta-team-bio .team-member-bio .team-member-content{ width:420px; height:210px;}
	#home-team .ta-team-bio .team-member-bio .team-member-content .wpb_wrapper{ padding:0 20px 0 48px;}
	/* incoPat incoMon page */
	.incoPat-text h1{ font-size:36px;}
	.incoPat-text h3{ font-size:18px; padding-bottom:20px;}
	.incoPat-text p{ font-size:14px;}
	.incoPat-text ul li{ width:75px; height:75px; padding-top:20px;}
	#incoPat-fanyi .incoPat-imgs, #incoPat-yuyi .incoPat-imgs, #incoPat-ditu .incoPat-imgs, #incoPat-shuju .incoPat-imgs, #incoPat-jiazhi .incoPat-imgs,
	#incoMon-data .incoMon-imgs, #incoMon-dw .incoMon-imgs, #incoMon-gmjj .incoMon-imgs, #incoMon-zl .incoMon-imgs, #incoMon-zdy .incoMon-imgs, #incoMon-jc .incoMon-imgs{ width:490px; height:373px; margin-left:0; margin-right:0;}
	#incoPat-fanyi .incoPat-text, #incoPat-yuyi .incoPat-text, #incoPat-ditu .incoPat-text, #incoPat-shuju .incoPat-text, #incoPat-jiazhi .incoPat-text,
	#incoMon-data .incoMon-text, #incoMon-dw .incoMon-text, #incoMon-gmjj .incoMon-text, #incoMon-zl .incoMon-text, #incoMon-zdy .incoMon-text, #incoMon-jc .incoMon-text{ width:250px; margin:0;}
	#incoPat-fanyi .incoPat-text, #incoPat-yuyi .incoPat-text{ padding-top:40px;}
	#incoPat-shuju .incoPat-text, #incoPat-jiazhi .incoPat-text, #incoPat-ditu .incoPat-text{ padding-top:40px;}
	#incoPat-ditu .incoPat-text ul li{ width:50px; height:50px; padding-top:7px;}
	#incoPat-ditu .incoPat-text ul li h6{ font-size:10px;}
	#incoPat-ditu .incoPat-text ul li.li1{ padding-top:16px;}
	#incoPat-shuju .incoPat-text ul li{ width:75px; height:75px; font-size:9px;}
	#incoPat-gn{ padding-top:40px;}
	#incoPat-database .row{ margin:0 30px;}
	#incoPat-database .vc_col-sm-3{ padding:0 15px; width:50%; margin-bottom:10px;}
	#incoPat-request .request-right{ padding-left:20px;}
	
	#incoMon-data .incoMon-text{ padding:80px 0 0;}
	#incoMon-dw .incoMon-text{ padding:120px 0 0;}
	#incoMon-gmjj .incoMon-text{ padding:70px 0 0;}
	#incoMon-zl .incoMon-text{ padding:100px 0 0;}
	.incoMon-imgs .mon-img8{ width:468px; height:468px; left:0;}
	.incoMon-text h1{ font-size:36px;}
	#incoMon-zpt h3{ font-size:14px;}
	
	#incoInfo-js .vc_col-sm-3 .wpb_text_column{ padding:0 5px;}
	#incoInfo-js .vc_col-sm-3 .wpb_text_column i{ margin:30px auto 0;}
	#incoInfo-js .vc_col-sm-3 .wpb_text_column h3{ font-size:16px;}
	.vc_non_responsive .vc_row .vc_col-sm-12.incoInfo-imgs{ width:720px; height:270px;}
	#incoInfo-jb .info-img2{ top:68px; left:157px; width:404px; height:404px;}
	
	.incoindex-title h1{ font-size:32px;}
	.incoindex-title h2{ font-size:28px;}
	/* contact page */
	#contact-beijin .contact-text, #contact-hangzhou .contact-text, #contact-zhengzhou .contact-text, #contact-guangzhou .contact-text, #contact-suzhou .contact-text{ width:250px;}
	#contact-beijin .contact-text, #contact-hangzhou .contact-text, #contact-zhengzhou .contact-text{ margin:0 15px 0 0;}
	 #contact-guangzhou .contact-text, #contact-suzhou .contact-text{ margin:0 0 0 15px;}
	#contact-beijin .vc_col-sm-6.contact-imgs, #contact-guangzhou .vc_col-sm-6.contact-imgs, #contact-hangzhou .vc_col-sm-6.contact-imgs, #contact-suzhou .vc_col-sm-6.contact-imgs, #contact-zhengzhou .vc_col-sm-6.contact-imgs{ width:60%;}
	.contact-text dl dd{ width:160px;}
	#allmap1, #allmap2, #allmap3, #allmap4, #allmap5{height: 350px;}
	/* news post */
	#cat-nav ul{ width:720px;}
	.archive .col-sm-8, .single .col-sm-8{ float:none; clear:both; width:100%;}
	/* register */
	#user-form.vc_row .pie-left{ width:65%;}
	#user-form.vc_row .pie-right{ width:32%; padding:110px 10px 0;}
	/* login */
	#user-form.vc_row.pie-login .pie-right{ padding:0 10px;}
	/* research page */
	.portfolio-showcase .portfolio_project, .portfolio-showcase .portfolio-sizer{ padding:50px 28px 10px;}
	.portfolio-showcase .portfolio-thumbnail{ float:none; clear:both; width:136px; height:175px; margin:0 auto;}
	.portfolio-showcase .portfolio-thumbnail img{ width:126px; height:163px; margin:0 auto;}
	.portfolio-showcase .portfolio-content{ float:none; clear:both; width:170px; margin:0 auto;}
	.portfolio-showcase .portfolio_project h3{ height:90px; text-align:center;}
	.portfolio-showcase .portfolio-content h3 a{ line-height:30px;}
	.portfolio-showcase .portfolio-content .portfolio-date{ text-align:center;}
	.portfolio-showcase .portfolio-content a.downbtn{ width:168px; margin:10px auto 0;}
	.portfolio-pop-intro{ width:700px; margin-left:-350px; padding:70px 20px 10px;}
	.portfolio-pop-intro .portfolio-pop-con{ width:660px;}
	/* about page */
	#mtlist .mt-item h3{ padding-left:15px;}
	#mtlist .mt-item .desc{ width:80%;}
	/* solution page */
	.solu-menu .widget_nav_menu li{ padding:0 8px; width:auto;}
	#solu-fangan .vc_col-sm-2 dl dt{ padding:36px 20px; font-size:16px; line-height:25px;}
	#solu-fangan .vc_col-sm-2 dl dd{ font-size:13px;}
	#solu-fangan .solu-jiexie .solu-fa5 dl dt{ padding:23px 20px 24px;}
}
@media only screen and (max-width: 767px) {
	.container{ overflow:hidden;}
  .navbar-nav {
    float: none;
  }
  .entry-header .entry-date {
    display: none;
  }
  .entry-summary,
  .entry-content,
  .entry-header,
  .comments-area {
    padding-left: 0;
  }
  .content-area .comments-area {
    padding-top: 30px;
  }
  .content-area .comments-area .comment-list {
    float: none;
  }
  .content-area .comments-area .comment-list .children {
    margin: 0;
    padding: 20px 0 0;
  }
  .content-area .comments-area .comment-list .children .comment-body {
    padding-bottom: 20px;
  }
  .content-area .comments-area .comment-list .comment-reply-link,
  .content-area .comments-area .comment-list .comment-edit-link {
    padding-left: 0;
  }
  .entry-footer {
    margin-left: 0;
  }
  .image-box {
    margin-top: 30px;
  }
  .icon-box.bg-color {
    padding: 0;
    background-color: transparent !important;
  }
  .col-xs-5ths,
  .col-sm-5ths,
  .col-md-5ths,
  .col-lg-5ths {
    width: 100%;
  }
  .pricing-item {
    margin-top: 30px;
  }
  .pricing-item.pricing-feature {
    margin-top: 30px;
  }
  .images-owl-carousel .owl-controls .owl-prev {
    left: 0;
  }
  .images-owl-carousel .owl-controls .owl-next {
    right: 0;
  }
  .icon-box {
    margin-bottom: 30px !important;
  }
  .icon-box-address {
    margin-top: 30px;
  }
  .owl-controls .owl-buttons {
    display: none;
  }
  .portfolio-showcase .portfolio_project,
  .portfolio-showcase .portfolio-sizer {
    width: 50%;
  }
  	/* home page */
 	.vc_non_responsive .vc_row .vc_col-sm-3.section-monitor, .vc_non_responsive .vc_row .vc_col-sm-3.section-pat, .vc_non_responsive .vc_row .vc_col-sm-3.section-index, .vc_non_responsive .vc_row .vc_col-sm-3.section-info{ width:100%; margin:0;}
	.section-monitor > .wpb_wrapper, .section-pat > .wpb_wrapper, .section-index > .wpb_wrapper, .section-info > .wpb_wrapper{ width:280px; margin:18px auto; overflow:hidden;}
	.section-monitor > .wpb_wrapper:hover, .section-pat > .wpb_wrapper:hover, .section-index > .wpb_wrapper:hover, .section-info > .wpb_wrapper:hover{ margin:0 auto;}
	#home-solution .vc_row .vc_col-sm-6, #home-news .vc_row .vc_col-sm-6, #home-contact .vc_row .vc_col-sm-6{ float:none; width:100%; margin-bottom:30px;}
	#home-solution .vc_row .vc_col-sm-6:last-chind, #home-news .vc_row .vc_col-sm-6:last-chind, #home-contact .vc_row .vc_col-sm-6:last-chind{ margin:0;}
	.vc_non_responsive .vc_row.home-contact-form .vc_col-sm-6{ padding:0 30px;}
	.footer-sidebar-1{ display:none;}
	.footer-sidebar-2.col-md-2{ width:100%;}
	.footer-sidebar-2 strong{ font-size:20px;}
	#home-team .ta-team-bio .team-member-bio{ width:90%; height:auto; left:50%; top:50%; margin-left:-45%; margin-top:-150px; padding: 10px;}
	#home-team .ta-team-bio .team-member-bio .vc_row .vc_col-sm-6.team-left, #home-team .ta-team-bio .team-member-bio .vc_row .vc_col-sm-6.team-right{ width:100%; float:none; clear:both;}
	#home-team .ta-team-bio .team-member-bio .vc_row .vc_col-sm-6.team-left{ height:250px; overflow:hidden;}
	#home-team .ta-team-bio .team-member-bio .image-box{ margin:0;}
	#home-team .ta-team-bio .team-member-bio h1{ font-size:20px; margin:10px 0; padding-left:30px;}
	#home-team .ta-team-bio .team-member-bio h3{ padding-left:30px;}
	#home-team .ta-team-bio .team-member-bio hr{ margin-top:0;}
	#home-team .ta-team-bio .team-member-bio .team-member-content{ width:270px; height:110px;}
	#home-team .ta-team-bio .team-member-bio .team-member-content .wpb_wrapper{ padding:0 10px 0 30px;}
	#home-team .ta-team-bio .team-member-bio .closed{ background:#909090; height:30px; width:30px;}
   /* incoPat incoMon incoIndex page */
	#incoPat-con1{ font-size:12px;}
  	.incoPat-btn1 .vc_btn3.vc_btn3-size-md,
	.incoInfo-btn1 .vc_btn3.vc_btn3-size-md{ padding:12px 80px;}
 	#incoPat-fanyi .incoPat-text, #incoPat-yuyi .incoPat-text, #incoPat-yuyi .incoPat-imgs, #incoPat-ditu .incoPat-text, #incoPat-ditu .incoPat-imgs, #incoPat-shuju .incoPat-text, #incoPat-shuju .incoPat-imgs, #incoPat-jiazhi .incoPat-text, #incoPat-jiazhi .incoPat-imgs,
	#incoMon-data .incoMon-imgs, #incoMon-dw .incoMon-imgs, #incoMon-gmjj .incoMon-imgs, #incoMon-zdy .incoMon-imgs, #incoMon-jc .incoMon-imgs, #incoMon-data .incoMon-text, #incoMon-dw .incoMon-text, #incoMon-gmjj .incoMon-text, #incoMon-zl .incoMon-text, #incoMon-zdy .incoMon-text, #incoMon-jc .incoMon-text{ float:none; clear:both; margin:20px auto; padding:0;}
	 #incoPat-fanyi .incoPat-imgs, #incoMon-zl .incoMon-imgs{ float:none; clear:both; margin:20px auto 0; padding:0;}
  	#incoPat-fanyi .incoPat-imgs, #incoPat-yuyi .incoPat-imgs, #incoPat-ditu .incoPat-imgs, #incoPat-shuju .incoPat-imgs, #incoPat-jiazhi .incoPat-imgs,
	#incoMon-data .incoMon-imgs, #incoMon-dw .incoMon-imgs, #incoMon-gmjj .incoMon-imgs, #incoMon-zl .incoMon-imgs, #incoMon-zdy .incoMon-imgs, #incoMon-jc .incoMon-imgs{ width:320px; height:244px;}
  	#incoPat-fanyi .incoPat-text, #incoPat-yuyi .incoPat-text, #incoPat-ditu .incoPat-text, #incoPat-shuju .incoPat-text, #incoPat-jiazhi .incoPat-text,
	#incoMon-data .incoMon-text, #incoMon-dw .incoMon-text, #incoMon-gmjj .incoMon-text, #incoMon-zl .incoMon-text, #incoMon-zdy .incoMon-text, #incoMon-jc .incoMon-text{ width:100%; padding:0 15px;}
	#incoPat-ditu .incoPat-text ul li{ width:60px; height:60px; padding-top:12px; font-size:11px;}
	#incoPat-ditu .incoPat-text ul li.li1{ padding:13px 0;}
 	#incoPat-gn .vc_col-sm-4{ float:none; clear:both; width:100%; padding:0; margin:0 auto;}
	#incoPat-gn .vc_col-sm-4 .wpb_content_element{ float:left; width:50%;}
	#incoPat-database .vc_col-sm-3{ float:none; clear:both; margin:0 auto 10px; padding:0; width:280px;}
	#incoPat-database .image-box{ margin-top:0;}
	#incoPat-database .image-box .image-box-title{ font-size:16px;}
	#incoPat-database .image-box:hover .image-box-title{ font-size:20px; margin:58px 0 30px;}
	#incoPat-request .request-left, #incoPat-request .request-right{ float:none; clear:both; width:100%;}
	#wpcf7-f97-p15-o1 .input-left, #wpcf7-f97-p15-o1 .input-right{ float:none; clear:both; width:100%;}
	
	.incoMon-btn1 .vc_btn3.vc_btn3-size-md,
	.incoIndex-btn1 .vc_btn3.vc_btn3-size-md{ padding:12px 20px;}
	.incoMon-imgs .mon-img8{ width:305px; height:305px; top:5px;}
	#incoMon-zpt{ width:290px; margin:0 auto; padding:20px 0;}
	#incoMon-zpt .vc_col-sm-2{ width:50%; padding:0 12px;}
	
	#incoInfo-con1{ padding:60px 0 0;}
	#incoInfo-con1 .vc_col-sm-3.wpb_column.vc_column_container{ width:50%; height:220px;}
	#incoInfo-con1 .vc_col-sm-3 h1{ width:100px; height:100px; font-size:36px; line-height:100px;}
	#incoInfo-js .vc_col-sm-3{ float:none; clear:both; width:100%;}
	#incoInfo-js .vc_col-sm-3 .wpb_text_column{ float:left; width:50%;}
	.vc_non_responsive .vc_row .vc_col-sm-12.incoInfo-imgs{ width:450px; height:169px;}
	#incoInfo-jb .info-img2{ top:44px; left:98px; width:253px; height:253px;}
	
	.vc_non_responsive .vc_row .vc_col-sm-6.incoIndex-imgs, .vc_non_responsive .vc_row .vc_col-sm-6.incoIndex-text{ float:none; clear:both; width:100%; padding:0 15px;}
	#incoIndex-div1, #incoIndex-div2, #incoIndex-div3, #incoIndex-div4, #incoIndex-div5{ padding:20px 0;}
	/* contact page */
	#contact-beijin .vc_col-sm-6.contact-text, #contact-guangzhou .vc_col-sm-6.contact-text, #contact-hangzhou .vc_col-sm-6.contact-text, #contact-suzhou .vc_col-sm-6.contact-text, #contact-zhengzhou .vc_col-sm-6.contact-text, #contact-beijin .vc_col-sm-6.contact-imgs, #contact-guangzhou .vc_col-sm-6.contact-imgs, #contact-hangzhou .vc_col-sm-6.contact-imgs, #contact-suzhou .vc_col-sm-6.contact-imgs, #contact-zhengzhou .vc_col-sm-6.contact-imgs{ float:none; clear:both;}
	#contact-beijin .vc_col-sm-6.contact-imgs, #contact-guangzhou .vc_col-sm-6.contact-imgs, #contact-hangzhou .vc_col-sm-6.contact-imgs, #contact-suzhou .vc_col-sm-6.contact-imgs, #contact-zhengzhou .vc_col-sm-6.contact-imgs{ width:100%; margin:0 auto;}
	#contact-beijin .vc_col-sm-6.contact-text, #contact-hangzhou .vc_col-sm-6.contact-text, #contact-zhengzhou .vc_col-sm-6.contact-text, #contact-guangzhou .vc_col-sm-6.contact-text, #contact-suzhou .vc_col-sm-6.contact-text{ width:300px; margin:0 auto 15px;}
	.contact-text h1{ margin:0; padding:0 0 30px 14px; font-size:20px;}
	.contact-text dl dd{ width:205px;}
	#allmap1, #allmap2, #allmap3, #allmap4, #allmap5{height: 300px;}
	/* news post */
	#cat-nav{ margin:0 0 30px;}
	#cat-nav ul{ width:100%;}
	#cat-nav li{ float:none; clear:both; width:100%; padding:10px 0;}
	#cat-nav li a{ font-size:16px;}
	.entry-header .entry-date{ position:static; display:block; width:100%; margin-bottom:10px; border:0;}
	/* register */
	#user-nav li{ width:33%; height:38px; padding:0 0 15px;}
	#user-nav li:last-child{ display:none;}
	#user-nav li a{ font-size:15px;}
	#user-form.vc_row .pie-left{ width:100%; padding:0 15px;}
	#user-form.vc_row .pie-right{ display:none;}
	.pieregWrapper #pie_register .fields.input-right, .pieregWrapper #pie_register .fields.input-left{ clear:both; float:none; width:100%;}
	/* research page */
	#research-section .search-form{ width:288px;}
	.portfolio-pop-intro{ width:290px; height:490px; margin-left:-145px; padding:5px;}
	.portfolio-pop-intro .portfolio-pop-con{ margin-top:10px; height:100px; width:280px;}
	.portfolio-pop-intro .portfolio-pop-thumb, .portfolio-pop-intro .portfolio-pop-meta{ float:none; clear:both; margin:0 auto; text-align:center;}
	.portfolio-pop-intro .portfolio-pop-thumb{ width:126px; height:163px;}
	.portfolio-pop-intro .closed{ width:20px; height:20px;}
	.portfolio-pop-intro .portfolio-pop-title{ margin-top:15px; font-size:14px;}
	.portfolio-pop-intro .portfolio-pop-date, .portfolio-pop-intro .portfolio-pop-social{ margin-top:0;}
	.portfolio-pop-intro a.downbtn{ margin:10px auto 0;}
	/* about page */
	#about-con1{ padding:60px 0 0;}
	#about-con1 .vc_col-sm-3.wpb_column.vc_column_container{ width:50%; height:180px;}
	#about-con1 .vc_col-sm-3 h1{ width:100px; height:100px; font-size:36px; line-height:100px;}
	.about-btn1 .vc_btn3.vc_btn3-size-md{ padding:12px 80px;}
	/* solution page */
	.solu-menu .widget_nav_menu li{ width:50%; height:35px; line-height:35px;}
	.solu-menu .widget_nav_menu li a{ font-size:14px;}
	#solu-fangan .solu-jiexie .vc_col-sm-2, #solu-fangan .solu-fuwu .vc_col-sm-2, #solu-fangan .solu-guanli .vc_col-sm-2, #solu-fangan .solu-jiaoyu .vc_col-sm-2, #solu-fangan .solu-nengyuan .vc_col-sm-2, #solu-fangan .solu-tongxin .vc_col-sm-2, #solu-fangan .solu-yiyao .vc_col-sm-2{ width:90%;}
	#solu-fangan .vc_col-sm-2{ float:none; clear:both; margin:0 auto 15px;}
	#solu-fangan .vc_col-sm-2 dl dt{ padding:36px 30px; font-size:25px; line-height:35px;}
	#solu-fangan .vc_col-sm-2 dl dd{ font-size:14px; height:40px; line-height:40px;}
	.testimonial-list.testimonial-full.row .testi-author .testi-pic{ position:static; margin:0 auto; display:block;}
	.testi-right, .testi-right .testi-author{ float:none; clear:both;}
	.testimonial-list.testimonial-full .testi-left .testi-name, .testimonial-list.testimonial-full .testi-left .testi-desc, .testi-right .testi-name, .testi-right .testi-desc{ padding:0; text-align:left;}
	/* join page */
	.wpb_image_grid .wpb_image_grid_ul .isotope-item{ float:none; clear:both; width:100%;}
	.wpb_image_grid .wpb_image_grid_ul img{ margin:0 auto;}
	.join-btn1 .vc_btn3.vc_btn3-size-md{ padding:12px 30px;}
	#joblist,#jobcon{ float:none; clear:both; width:90%; margin:0 auto;}
}
@media only screen and (max-width: 480px) {
  .portfolio-showcase .portfolio_project,
  .portfolio-showcase .portfolio-sizer {
    width: 100%;
  }
  table h1 {
    font-size: 28px;
  }
  table h2 {
    font-size: 22px;
  }
  table h3 {
    font-size: 16px;
  }
  table h4 {
    font-size: 14px;
  }
  .entry-content #bridge #order-modern .cartbuttons input[type="button"] {
    margin-bottom: 10px;
  }
  	/* incoInfo page*/
	#incoInfo-con1 .vc_col-sm-3 p{ font-size:12px;}
	.vc_non_responsive .vc_row .vc_col-sm-12.incoInfo-imgs{ width:290px; height:109px;}
	#incoInfo-jb .info-img2{ top:28px; left:63px; width:163px; height:163px;}
	/* register */
	#user-nav li:last-child{ display:none;}
	.pie-kszc .icon-box-qq, .pie-kszc .icon-box-wb{ margin-right:10px;}
	.pieregWrapper #pie_register .fields .input_fields, .pieregWrapper #pie_register .fields select, .piereg_login_container .piereg_login_wrapper input{ font-size:12px;}
	/* about page */
	#about-con1 .vc_col-sm-3 p{ font-size:12px;}
	/* join page */
	#join-duocai .wpb_tabs_nav{ width:90%;}
	#join-duocai .wpb_content_element .wpb_tabs_nav li{ width:33.33%; height:40px; line-height:40px;}
	.join-btn1 .vc_btn3.vc_btn3-size-md{ padding:12px 10px;}
}