@charset "UTF-8";
@charset "UTF-8";



/*!
Animate.css - http://daneden.me/animate
Licensed under the MIT license - http://opensource.org/licenses/MIT

Copyright (c) 2015 Daniel Eden
*/

.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.animated.infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

.animated.hinge {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
}

.animated.bounceIn,
.animated.bounceOut {
  -webkit-animation-duration: .75s;
  animation-duration: .75s;
}

.animated.flipOutX,
.animated.flipOutY {
  -webkit-animation-duration: .75s;
  animation-duration: .75s;
}

@-webkit-keyframes bounce {
  0%, 20%, 53%, 80%, 100% {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
  }

  40%, 43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
  }

  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
  }

  90% {
    -webkit-transform: translate3d(0,-4px,0);
    transform: translate3d(0,-4px,0);
  }
}

@keyframes bounce {
  0%, 20%, 53%, 80%, 100% {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
  }

  40%, 43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
  }

  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
  }

  90% {
    -webkit-transform: translate3d(0,-4px,0);
    transform: translate3d(0,-4px,0);
  }
}

.bounce {
  -webkit-animation-name: bounce;
  animation-name: bounce;
  -webkit-transform-origin: center bottom;
  transform-origin: center bottom;
}

@-webkit-keyframes flash {
  0%, 50%, 100% {
    opacity: 1;
  }

  25%, 75% {
    opacity: 0;
  }
}

@keyframes flash {
  0%, 50%, 100% {
    opacity: 1;
  }

  25%, 75% {
    opacity: 0;
  }
}

.flash {
  -webkit-animation-name: flash;
  animation-name: flash;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }

  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@keyframes pulse {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }

  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

.pulse {
  -webkit-animation-name: pulse;
  animation-name: pulse;
}

@-webkit-keyframes rubberBand {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }

  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }

  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }

  65% {
    -webkit-transform: scale3d(.95, 1.05, 1);
    transform: scale3d(.95, 1.05, 1);
  }

  75% {
    -webkit-transform: scale3d(1.05, .95, 1);
    transform: scale3d(1.05, .95, 1);
  }

  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@keyframes rubberBand {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }

  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }

  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }

  65% {
    -webkit-transform: scale3d(.95, 1.05, 1);
    transform: scale3d(.95, 1.05, 1);
  }

  75% {
    -webkit-transform: scale3d(1.05, .95, 1);
    transform: scale3d(1.05, .95, 1);
  }

  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

.rubberBand {
  -webkit-animation-name: rubberBand;
  animation-name: rubberBand;
}

@-webkit-keyframes shake {
  0%, 100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }

  20%, 40%, 60%, 80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}

@keyframes shake {
  0%, 100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }

  20%, 40%, 60%, 80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}

.shake {
  -webkit-animation-name: shake;
  animation-name: shake;
}

@-webkit-keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
  }

  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg);
  }

  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }

  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg);
  }

  100% {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}

@keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
  }

  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg);
  }

  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }

  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg);
  }

  100% {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}

.swing {
  -webkit-transform-origin: top center;
  transform-origin: top center;
  -webkit-animation-name: swing;
  animation-name: swing;
}

@-webkit-keyframes tada {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  10%, 20% {
    -webkit-transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
  }

  30%, 50%, 70%, 90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }

  40%, 60%, 80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }

  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@keyframes tada {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  10%, 20% {
    -webkit-transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
  }

  30%, 50%, 70%, 90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }

  40%, 60%, 80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }

  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

.tada {
  -webkit-animation-name: tada;
  animation-name: tada;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-webkit-keyframes wobble {
  0% {
    -webkit-transform: none;
    transform: none;
  }

  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }

  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }

  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }

  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }

  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }

  100% {
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes wobble {
  0% {
    -webkit-transform: none;
    transform: none;
  }

  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }

  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }

  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }

  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }

  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }

  100% {
    -webkit-transform: none;
    transform: none;
  }
}

.wobble {
  -webkit-animation-name: wobble;
  animation-name: wobble;
}

@-webkit-keyframes jello {
  11.1% {
    -webkit-transform: none;
            transform: none
  }

  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
            transform: skewX(-12.5deg) skewY(-12.5deg)
  }
  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
            transform: skewX(6.25deg) skewY(6.25deg)
  }
  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
            transform: skewX(-3.125deg) skewY(-3.125deg)
  }
  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
            transform: skewX(1.5625deg) skewY(1.5625deg)
  }
  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
            transform: skewX(-0.78125deg) skewY(-0.78125deg)
  }
  77.7% {
    -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
            transform: skewX(0.390625deg) skewY(0.390625deg)
  }
  88.8% {
    -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
            transform: skewX(-0.1953125deg) skewY(-0.1953125deg)
  }
  100% {
    -webkit-transform: none;
            transform: none
  }
}

@keyframes jello {
  11.1% {
    -webkit-transform: none;
            transform: none
  }

  22.2% {

    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
            transform: skewX(-12.5deg) skewY(-12.5deg)
  }
  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
            transform: skewX(6.25deg) skewY(6.25deg)
  }
  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
            transform: skewX(-3.125deg) skewY(-3.125deg)
  }
  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
            transform: skewX(1.5625deg) skewY(1.5625deg)
  }
  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
            transform: skewX(-0.78125deg) skewY(-0.78125deg)
  }
  77.7% {
    -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
            transform: skewX(0.390625deg) skewY(0.390625deg)
  }
  88.8% {
    -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
            transform: skewX(-0.1953125deg) skewY(-0.1953125deg)
  }
  100% {
    -webkit-transform: none;
            transform: none
  }
}



.jello{
    -webkit-animation-name:jello;
            animation-name:jello;
    -webkit-transform-origin: center;

            transform-origin: center
}

@-webkit-keyframes bounceIn {
  0%, 20%, 40%, 60%, 80%, 100% {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  0% {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3);
  }

  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }

  40% {
    -webkit-transform: scale3d(.9, .9, .9);
    transform: scale3d(.9, .9, .9);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }

  80% {
    -webkit-transform: scale3d(.97, .97, .97);
    transform: scale3d(.97, .97, .97);
  }

  100% {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@keyframes bounceIn {
  0%, 20%, 40%, 60%, 80%, 100% {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  0% {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3);
  }

  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }

  40% {
    -webkit-transform: scale3d(.9, .9, .9);
    transform: scale3d(.9, .9, .9);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }

  80% {
    -webkit-transform: scale3d(.97, .97, .97);
    transform: scale3d(.97, .97, .97);
  }

  100% {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

.bounceIn {
  -webkit-animation-name: bounceIn;
  animation-name: bounceIn;
}

@-webkit-keyframes bounceInDown {
  0%, 60%, 75%, 90%, 100% {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0);
  }

  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }

  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0);
  }

  100% {
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes bounceInDown {
  0%, 60%, 75%, 90%, 100% {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0);
  }

  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }

  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0);
  }

  100% {
    -webkit-transform: none;
    transform: none;
  }
}

.bounceInDown {
  -webkit-animation-name: bounceInDown;
  animation-name: bounceInDown;
}

@-webkit-keyframes bounceInLeft {
  0%, 60%, 75%, 90%, 100% {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
    transform: translate3d(-3000px, 0, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0);
  }

  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }

  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0);
  }

  100% {
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes bounceInLeft {
  0%, 60%, 75%, 90%, 100% {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
    transform: translate3d(-3000px, 0, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0);
  }

  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }

  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0);
  }

  100% {
    -webkit-transform: none;
    transform: none;
  }
}

.bounceInLeft {
  -webkit-animation-name: bounceInLeft;
  animation-name: bounceInLeft;
}

@-webkit-keyframes bounceInRight {
  0%, 60%, 75%, 90%, 100% {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
    transform: translate3d(3000px, 0, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
    transform: translate3d(-25px, 0, 0);
  }

  75% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }

  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
    transform: translate3d(-5px, 0, 0);
  }

  100% {
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes bounceInRight {
  0%, 60%, 75%, 90%, 100% {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
    transform: translate3d(3000px, 0, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
    transform: translate3d(-25px, 0, 0);
  }

  75% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }

  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
    transform: translate3d(-5px, 0, 0);
  }

  100% {
    -webkit-transform: none;
    transform: none;
  }
}

.bounceInRight {
  -webkit-animation-name: bounceInRight;
  animation-name: bounceInRight;
}

@-webkit-keyframes bounceInUp {
  0%, 60%, 75%, 90%, 100% {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
    transform: translate3d(0, 3000px, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }

  75% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }

  90% {
    -webkit-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0);
  }

  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes bounceInUp {
  0%, 60%, 75%, 90%, 100% {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
    transform: translate3d(0, 3000px, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }

  75% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }

  90% {
    -webkit-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0);
  }

  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.bounceInUp {
  -webkit-animation-name: bounceInUp;
  animation-name: bounceInUp;
}

@-webkit-keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(.9, .9, .9);
    transform: scale3d(.9, .9, .9);
  }

  50%, 55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }

  100% {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3);
  }
}

@keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(.9, .9, .9);
    transform: scale3d(.9, .9, .9);
  }

  50%, 55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }

  100% {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3);
  }
}

.bounceOut {
  -webkit-animation-name: bounceOut;
  animation-name: bounceOut;
}

@-webkit-keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }

  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}

@keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }

  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}

.bounceOutDown {
  -webkit-animation-name: bounceOutDown;
  animation-name: bounceOutDown;
}

@-webkit-keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0);
    transform: translate3d(20px, 0, 0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}

@keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0);
    transform: translate3d(20px, 0, 0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}

.bounceOutLeft {
  -webkit-animation-name: bounceOutLeft;
  animation-name: bounceOutLeft;
}

@-webkit-keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0);
    transform: translate3d(-20px, 0, 0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}

@keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0);
    transform: translate3d(-20px, 0, 0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}

.bounceOutRight {
  -webkit-animation-name: bounceOutRight;
  animation-name: bounceOutRight;
}

@-webkit-keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }

  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}

@keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }

  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}

.bounceOutUp {
  -webkit-animation-name: bounceOutUp;
  animation-name: bounceOutUp;
}


@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: 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) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  40% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  50% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  80% {
    -webkit-transform: perspective(400px) scale3d(.95, .95, .95);
    transform: perspective(400px) scale3d(.95, .95, .95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  100% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}

@keyframes flip {
  0% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  40% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  50% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  80% {
    -webkit-transform: perspective(400px) scale3d(.95, .95, .95);
    transform: perspective(400px) scale3d(.95, .95, .95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  100% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}

.animated.flip {
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
  -webkit-animation-name: flip;
  animation-name: flip;
}

@-webkit-keyframes flipInX {
  0% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }

  100% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}

@keyframes flipInX {
  0% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }

  100% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}

.flipInX {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInX;
  animation-name: flipInX;
}

@-webkit-keyframes flipInY {
  0% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }

  100% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}

@keyframes flipInY {
  0% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }

  100% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}

.flipInY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInY;
  animation-name: flipInY;
}

@-webkit-keyframes flipOutX {
  0% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }

  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }

  100% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}

@keyframes flipOutX {
  0% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }

  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }

  100% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}

.flipOutX {
  -webkit-animation-name: flipOutX;
  animation-name: flipOutX;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
}

@-webkit-keyframes flipOutY {
  0% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }

  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }

  100% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}

@keyframes flipOutY {
  0% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }

  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }

  100% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}

.flipOutY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipOutY;
  animation-name: flipOutY;
}

@-webkit-keyframes lightSpeedIn {
  0% {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }

  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
    opacity: 1;
  }

  100% {
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

@keyframes lightSpeedIn {
  0% {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }

  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
    opacity: 1;
  }

  100% {
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

.lightSpeedIn {
  -webkit-animation-name: lightSpeedIn;
  animation-name: lightSpeedIn;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}

@-webkit-keyframes lightSpeedOut {
  0% {
    opacity: 1;
  }

  100% {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}

@keyframes lightSpeedOut {
  0% {
    opacity: 1;
  }

  100% {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}

.lightSpeedOut {
  -webkit-animation-name: lightSpeedOut;
  animation-name: lightSpeedOut;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
}

@-webkit-keyframes rotateIn {
  0% {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

@keyframes rotateIn {
  0% {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

.rotateIn {
  -webkit-animation-name: rotateIn;
  animation-name: rotateIn;
}

@-webkit-keyframes rotateInDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

@keyframes rotateInDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

.rotateInDownLeft {
  -webkit-animation-name: rotateInDownLeft;
  animation-name: rotateInDownLeft;
}

@-webkit-keyframes rotateInDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

@keyframes rotateInDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

.rotateInDownRight {
  -webkit-animation-name: rotateInDownRight;
  animation-name: rotateInDownRight;
}

@-webkit-keyframes rotateInUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

@keyframes rotateInUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

.rotateInUpLeft {
  -webkit-animation-name: rotateInUpLeft;
  animation-name: rotateInUpLeft;
}

@-webkit-keyframes rotateInUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

@keyframes rotateInUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

.rotateInUpRight {
  -webkit-animation-name: rotateInUpRight;
  animation-name: rotateInUpRight;
}

@-webkit-keyframes rotateOut {
  0% {
    -webkit-transform-origin: center;
    transform-origin: center;
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}

@keyframes rotateOut {
  0% {
    -webkit-transform-origin: center;
    transform-origin: center;
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}

.rotateOut {
  -webkit-animation-name: rotateOut;
  animation-name: rotateOut;
}

@-webkit-keyframes rotateOutDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}

@keyframes rotateOutDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}

.rotateOutDownLeft {
  -webkit-animation-name: rotateOutDownLeft;
  animation-name: rotateOutDownLeft;
}

@-webkit-keyframes rotateOutDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}

@keyframes rotateOutDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}

.rotateOutDownRight {
  -webkit-animation-name: rotateOutDownRight;
  animation-name: rotateOutDownRight;
}

@-webkit-keyframes rotateOutUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}

@keyframes rotateOutUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}

.rotateOutUpLeft {
  -webkit-animation-name: rotateOutUpLeft;
  animation-name: rotateOutUpLeft;
}

@-webkit-keyframes rotateOutUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}

@keyframes rotateOutUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}

.rotateOutUpRight {
  -webkit-animation-name: rotateOutUpRight;
  animation-name: rotateOutUpRight;
}

@-webkit-keyframes hinge {
  0% {
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  20%, 60% {
    -webkit-transform: rotate3d(0, 0, 1, 80deg);
    transform: rotate3d(0, 0, 1, 80deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  40%, 80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
    transform: rotate3d(0, 0, 1, 60deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }

  100% {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}

@keyframes hinge {
  0% {
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  20%, 60% {
    -webkit-transform: rotate3d(0, 0, 1, 80deg);
    transform: rotate3d(0, 0, 1, 80deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  40%, 80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
    transform: rotate3d(0, 0, 1, 60deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }

  100% {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}

.hinge {
  -webkit-animation-name: hinge;
  animation-name: hinge;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-webkit-keyframes rollIn {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes rollIn {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.rollIn {
  -webkit-animation-name: rollIn;
  animation-name: rollIn;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-webkit-keyframes rollOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}

@keyframes rollOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}

.rollOut {
  -webkit-animation-name: rollOut;
  animation-name: rollOut;
}

@-webkit-keyframes zoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3);
  }

  50% {
    opacity: 1;
  }
}

@keyframes zoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3);
  }

  50% {
    opacity: 1;
  }
}

.zoomIn {
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn;
}

@-webkit-keyframes zoomInStable {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3);
  }

  33.333% {
    opacity: 1;
	-webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  
  66.666666% {
    opacity: 1;
	-webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@keyframes zoomInStable {
 0% {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3);
  }

  33.333% {
    opacity: 1;
	-webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  
  66.666666% {
    opacity: 1;
	-webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

.zoomInStable {
  -webkit-animation-name: zoomInStable;
  animation-name: zoomInStable;
}

@-webkit-keyframes zoomInDown {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
    transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

@keyframes zoomInDown {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
    transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

.zoomInDown {
  -webkit-animation-name: zoomInDown;
  animation-name: zoomInDown;
}

@-webkit-keyframes zoomInLeft {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
    transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
    transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

@keyframes zoomInLeft {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
    transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
    transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

.zoomInLeft {
  -webkit-animation-name: zoomInLeft;
  animation-name: zoomInLeft;
}

@-webkit-keyframes zoomInRight {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
    transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
    transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

@keyframes zoomInRight {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
    transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
    transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

.zoomInRight {
  -webkit-animation-name: zoomInRight;
  animation-name: zoomInRight;
}

@-webkit-keyframes zoomInUp {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
    transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

@keyframes zoomInUp {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
    transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

.zoomInUp {
  -webkit-animation-name: zoomInUp;
  animation-name: zoomInUp;
}

@-webkit-keyframes zoomOut {
  0% {
    opacity: 1;
  }

  50% {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3);
  }

  100% {
    opacity: 0;
  }
}

@keyframes zoomOut {
  0% {
    opacity: 1;
  }

  50% {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3);
  }

  100% {
    opacity: 0;
  }
}

.zoomOut {
  -webkit-animation-name: zoomOut;
  animation-name: zoomOut;
}

@-webkit-keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  100% {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
    transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

@keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  100% {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
    transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

.zoomOutDown {
  -webkit-animation-name: zoomOutDown;
  animation-name: zoomOutDown;
}

@-webkit-keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
    transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
  }

  100% {
    opacity: 0;
    -webkit-transform: scale(.1) translate3d(-2000px, 0, 0);
    transform: scale(.1) translate3d(-2000px, 0, 0);
    -webkit-transform-origin: left center;
    transform-origin: left center;
  }
}

@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
    transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
  }

  100% {
    opacity: 0;
    -webkit-transform: scale(.1) translate3d(-2000px, 0, 0);
    transform: scale(.1) translate3d(-2000px, 0, 0);
    -webkit-transform-origin: left center;
    transform-origin: left center;
  }
}

.zoomOutLeft {
  -webkit-animation-name: zoomOutLeft;
  animation-name: zoomOutLeft;
}

@-webkit-keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
    transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
  }

  100% {
    opacity: 0;
    -webkit-transform: scale(.1) translate3d(2000px, 0, 0);
    transform: scale(.1) translate3d(2000px, 0, 0);
    -webkit-transform-origin: right center;
    transform-origin: right center;
  }
}

@keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
    transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
  }

  100% {
    opacity: 0;
    -webkit-transform: scale(.1) translate3d(2000px, 0, 0);
    transform: scale(.1) translate3d(2000px, 0, 0);
    -webkit-transform-origin: right center;
    transform-origin: right center;
  }
}

.zoomOutRight {
  -webkit-animation-name: zoomOutRight;
  animation-name: zoomOutRight;
}

@-webkit-keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  100% {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
    transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

@keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  100% {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
    transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

.zoomOutUp {
  -webkit-animation-name: zoomOutUp;
  animation-name: zoomOutUp;
}

@-webkit-keyframes slideInDown {
  0% {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }

  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes slideInDown {
  0% {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }

  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.slideInDown {
  -webkit-animation-name: slideInDown;
  animation-name: slideInDown;
}

@-webkit-keyframes slideInLeft {
  0% {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }

  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes slideInLeft {
  0% {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }

  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.slideInLeft {
  -webkit-animation-name: slideInLeft;
  animation-name: slideInLeft;
}

@-webkit-keyframes slideInRight {
  0% {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }

  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes slideInRight {
  0% {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }

  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.slideInRight {
  -webkit-animation-name: slideInRight;
  animation-name: slideInRight;
}

@-webkit-keyframes slideInUp {
  0% {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }

  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes slideInUp {
  0% {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }

  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.slideInUp {
  -webkit-animation-name: slideInUp;
  animation-name: slideInUp;
}

@-webkit-keyframes slideOutDown {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  100% {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}

@keyframes slideOutDown {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  100% {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}

.slideOutDown {
  -webkit-animation-name: slideOutDown;
  animation-name: slideOutDown;
}

@-webkit-keyframes slideOutLeft {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  100% {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}

@keyframes slideOutLeft {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  100% {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}

.slideOutLeft {
  -webkit-animation-name: slideOutLeft;
  animation-name: slideOutLeft;
}

@-webkit-keyframes slideOutRight {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  100% {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}

@keyframes slideOutRight {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  100% {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}

.slideOutRight {
  -webkit-animation-name: slideOutRight;
  animation-name: slideOutRight;
}

@-webkit-keyframes slideOutUp {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  100% {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}

@keyframes slideOutUp {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  100% {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}

.slideOutUp {
  -webkit-animation-name: slideOutUp;
  animation-name: slideOutUp;
}

@keyframes anime {
from {
	opacity: 0;
	transform: scaleY(0);
	-webkit-transform: scaleY(0);
	-moz-transform: scaleY(0);
	-ms-transform: scaleY(0);
	-o-transform: scaleY(0);
}
to {
	opacity: 1;
	transform: scaleY(1);
	-webkit-transform: scaleY(1);
	-ms-transform: scaleY(1);
	-o-transform: scaleY(1);
	-moz-transform: scaleY(1);
}
}

@-webkit-keyframes anime {
from {
	opacity: 0;
	transform: scaleY(0);
	-webkit-transform: scaleY(0);
	-moz-transform: scaleY(0);
	-ms-transform: scaleY(0);
	-o-transform: scaleY(0);
}
to {
	opacity: 1;
	transform: scaleY(1);
	-webkit-transform: scaleY(1);
	-ms-transform: scaleY(1);
	-o-transform: scaleY(1);
	-moz-transform: scaleY(1);
}
}

@-moz-keyframes anime {
from {
	opacity: 0;
	transform: scaleY(0);
	-webkit-transform: scaleY(0);
	-moz-transform: scaleY(0);
	-ms-transform: scaleY(0);
	-o-transform: scaleY(0);
}
to {
	opacity: 1;
	transform: scaleY(1);
	-webkit-transform: scaleY(1);
	-ms-transform: scaleY(1);
	-o-transform: scaleY(1);
	-moz-transform: scaleY(1);
}

}

@-o-keyframes anime {
from {
	opacity: 0;
	transform: scaleY(0);
	-webkit-transform: scaleY(0);
	-moz-transform: scaleY(0);
	-ms-transform: scaleY(0);
	-o-transform: scaleY(0);
}
to {
	opacity: 1;
	transform: scaleY(1);
	-webkit-transform: scaleY(1);
	-ms-transform: scaleY(1);
	-o-transform: scaleY(1);
	-moz-transform: scaleY(1);
}
}

@-ms-keyframes anime {
from {
	opacity: 0;
	transform: scaleY(0);
	-webkit-transform: scaleY(0);
	-moz-transform: scaleY(0);
	-ms-transform: scaleY(0);
	-o-transform: scaleY(0);
}
to {
	opacity: 1;
	transform: scaleY(1);
	-webkit-transform: scaleY(1);
	-ms-transform: scaleY(1);
	-o-transform: scaleY(1);
	-moz-transform: scaleY(1);
}

}
/*!
 * Bootstrap v4.1.1 (https://getbootstrap.com/)
 * Copyright 2011-2018 The Bootstrap Authors
 * Copyright 2011-2018 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 */:root{--blue:#007bff;--indigo:#6610f2;--purple:#6f42c1;--pink:#e83e8c;--red:#dc3545;--orange:#fd7e14;--yellow:#ffc107;--green:#28a745;--teal:#20c997;--cyan:#17a2b8;--white:#fff;--gray:#6c757d;--gray-dark:#343a40;--primary:#007bff;--secondary:#6c757d;--success:#28a745;--info:#17a2b8;--warning:#ffc107;--danger:#dc3545;--light:#f8f9fa;--dark:#343a40;--breakpoint-xs:0;--breakpoint-sm:576px;--breakpoint-md:768px;--breakpoint-lg:992px;--breakpoint-xl:1200px;--font-family-sans-serif:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol";--font-family-monospace:SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace}*,::after,::before{box-sizing:border-box}html{font-family:sans-serif;line-height:1.15;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%;-ms-overflow-style:scrollbar;-webkit-tap-highlight-color:transparent}@-ms-viewport{width:device-width}article,aside,figcaption,figure,footer,header,hgroup,main,nav,section{display:block}body{margin:0;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol";font-size:1rem;font-weight:400;line-height:1.5;color:#212529;text-align:left;background-color:#fff}[tabindex="-1"]:focus{outline:0!important}hr{box-sizing:content-box;height:0;overflow:visible}h1,h2,h3,h4,h5,h6{margin-top:0;margin-bottom:.5rem}p{margin-top:0;margin-bottom:1rem}abbr[data-original-title],abbr[title]{text-decoration:underline;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:help;border-bottom:0}address{margin-bottom:1rem;font-style:normal;line-height:inherit}dl,ol,ul{margin-top:0;margin-bottom:1rem}ol ol,ol ul,ul ol,ul ul{margin-bottom:0}dt{font-weight:700}dd{margin-bottom:.5rem;margin-left:0}blockquote{margin:0 0 1rem}dfn{font-style:italic}b,strong{font-weight:bolder}small{font-size:80%}sub,sup{position:relative;font-size:75%;line-height:0;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}a{color:#007bff;text-decoration:none;background-color:transparent;-webkit-text-decoration-skip:objects}a:hover{color:#0056b3;text-decoration:underline}a:not([href]):not([tabindex]){color:inherit;text-decoration:none}a:not([href]):not([tabindex]):focus,a:not([href]):not([tabindex]):hover{color:inherit;text-decoration:none}a:not([href]):not([tabindex]):focus{outline:0}code,kbd,pre,samp{font-family:SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;font-size:1em}pre{margin-top:0;margin-bottom:1rem;overflow:auto;-ms-overflow-style:scrollbar}figure{margin:0 0 1rem}img{vertical-align:middle;border-style:none}svg:not(:root){overflow:hidden}table{border-collapse:collapse}caption{padding-top:.75rem;padding-bottom:.75rem;color:#6c757d;text-align:left;caption-side:bottom}th{text-align:inherit}label{display:inline-block;margin-bottom:.5rem}button{border-radius:0}button:focus{outline:1px dotted;outline:5px auto -webkit-focus-ring-color}button,input,optgroup,select,textarea{margin:0;font-family:inherit;font-size:inherit;line-height:inherit}button,input{overflow:visible}button,select{text-transform:none}[type=reset],[type=submit],button,html [type=button]{-webkit-appearance:button}[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner,button::-moz-focus-inner{padding:0;border-style:none}input[type=checkbox],input[type=radio]{box-sizing:border-box;padding:0}input[type=date],input[type=datetime-local],input[type=month],input[type=time]{-webkit-appearance:listbox}textarea{overflow:auto;resize:vertical}fieldset{min-width:0;padding:0;margin:0;border:0}legend{display:block;width:100%;max-width:100%;padding:0;margin-bottom:.5rem;font-size:1.5rem;line-height:inherit;color:inherit;white-space:normal}progress{vertical-align:baseline}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{outline-offset:-2px;-webkit-appearance:none}[type=search]::-webkit-search-cancel-button,[type=search]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{font:inherit;-webkit-appearance:button}output{display:inline-block}summary{display:list-item;cursor:pointer}template{display:none}[hidden]{display:none!important}.h1,.h2,.h3,.h4,.h5,.h6,h1,h2,h3,h4,h5,h6{font-family:inherit;font-weight:500;line-height:1.2;color:inherit}.h1,h1{font-size:2.5rem}.h2,h2{font-size:2rem}.h3,h3{font-size:1.75rem}.h4,h4{font-size:1.5rem}.h5,h5{font-size:1.25rem}.h6,h6{font-size:1rem}.lead{font-size:1.25rem;font-weight:300}.display-1{font-size:6rem;font-weight:300;line-height:1.2}.display-2{font-size:5.5rem;font-weight:300;line-height:1.2}.display-3{font-size:4.5rem;font-weight:300;line-height:1.2}.display-4{font-size:3.5rem;font-weight:300;line-height:1.2}hr{margin-top:1rem;margin-bottom:1rem;border:0;border-top:1px solid rgba(0,0,0,.1)}.small,small{font-size:80%;font-weight:400}.mark,mark{padding:.2em;background-color:#fcf8e3}.list-unstyled{padding-left:0;list-style:none}.list-inline{padding-left:0;list-style:none}.list-inline-item{display:inline-block}.list-inline-item:not(:last-child){margin-right:.5rem}.initialism{font-size:90%;text-transform:uppercase}.blockquote{margin-bottom:1rem;font-size:1.25rem}.blockquote-footer{display:block;font-size:80%;color:#6c757d}.blockquote-footer::before{content:"\2014 \00A0"}.img-fluid{max-width:100%;height:auto}.img-thumbnail{padding:.25rem;background-color:#fff;border:1px solid #dee2e6;border-radius:.25rem;max-width:100%;height:auto}.figure{display:inline-block}.figure-img{margin-bottom:.5rem;line-height:1}.figure-caption{font-size:90%;color:#6c757d}code{font-size:87.5%;color:#e83e8c;word-break:break-word}a>code{color:inherit}kbd{padding:.2rem .4rem;font-size:87.5%;color:#fff;background-color:#212529;border-radius:.2rem}kbd kbd{padding:0;font-size:100%;font-weight:700}pre{display:block;font-size:87.5%;color:#212529}pre code{font-size:inherit;color:inherit;word-break:normal}.pre-scrollable{max-height:340px;overflow-y:scroll}.container{width:100%;padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto}@media (min-width:576px){.container{max-width:540px}}@media (min-width:768px){.container{max-width:720px}}@media (min-width:992px){.container{max-width:960px}}@media (min-width:1200px){.container{max-width:1140px}}.container-fluid{width:100%;padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto}.row{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;margin-right:-15px;margin-left:-15px}.no-gutters{margin-right:0;margin-left:0}.no-gutters>.col,.no-gutters>[class*=col-]{padding-right:0;padding-left:0}.col,.col-1,.col-10,.col-11,.col-12,.col-2,.col-3,.col-4,.col-5,.col-6,.col-7,.col-8,.col-9,.col-auto,.col-lg,.col-lg-1,.col-lg-10,.col-lg-11,.col-lg-12,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9,.col-lg-auto,.col-md,.col-md-1,.col-md-10,.col-md-11,.col-md-12,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9,.col-md-auto,.col-sm,.col-sm-1,.col-sm-10,.col-sm-11,.col-sm-12,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9,.col-sm-auto,.col-xl,.col-xl-1,.col-xl-10,.col-xl-11,.col-xl-12,.col-xl-2,.col-xl-3,.col-xl-4,.col-xl-5,.col-xl-6,.col-xl-7,.col-xl-8,.col-xl-9,.col-xl-auto{position:relative;width:100%;min-height:1px;padding-right:15px;padding-left:15px}.col{-ms-flex-preferred-size:0;flex-basis:0;-ms-flex-positive:1;flex-grow:1;max-width:100%}.col-auto{-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:none}.col-1{-ms-flex:0 0 8.333333%;flex:0 0 8.333333%;max-width:8.333333%}.col-2{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-3{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-4{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.col-5{-ms-flex:0 0 41.666667%;flex:0 0 41.666667%;max-width:41.666667%}.col-6{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-7{-ms-flex:0 0 58.333333%;flex:0 0 58.333333%;max-width:58.333333%}.col-8{-ms-flex:0 0 66.666667%;flex:0 0 66.666667%;max-width:66.666667%}.col-9{-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-10{-ms-flex:0 0 83.333333%;flex:0 0 83.333333%;max-width:83.333333%}.col-11{-ms-flex:0 0 91.666667%;flex:0 0 91.666667%;max-width:91.666667%}.col-12{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.order-first{-ms-flex-order:-1;order:-1}.order-last{-ms-flex-order:13;order:13}.order-0{-ms-flex-order:0;order:0}.order-1{-ms-flex-order:1;order:1}.order-2{-ms-flex-order:2;order:2}.order-3{-ms-flex-order:3;order:3}.order-4{-ms-flex-order:4;order:4}.order-5{-ms-flex-order:5;order:5}.order-6{-ms-flex-order:6;order:6}.order-7{-ms-flex-order:7;order:7}.order-8{-ms-flex-order:8;order:8}.order-9{-ms-flex-order:9;order:9}.order-10{-ms-flex-order:10;order:10}.order-11{-ms-flex-order:11;order:11}.order-12{-ms-flex-order:12;order:12}.offset-1{margin-left:8.333333%}.offset-2{margin-left:16.666667%}.offset-3{margin-left:25%}.offset-4{margin-left:33.333333%}.offset-5{margin-left:41.666667%}.offset-6{margin-left:50%}.offset-7{margin-left:58.333333%}.offset-8{margin-left:66.666667%}.offset-9{margin-left:75%}.offset-10{margin-left:83.333333%}.offset-11{margin-left:91.666667%}@media (min-width:576px){.col-sm{-ms-flex-preferred-size:0;flex-basis:0;-ms-flex-positive:1;flex-grow:1;max-width:100%}.col-sm-auto{-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:none}.col-sm-1{-ms-flex:0 0 8.333333%;flex:0 0 8.333333%;max-width:8.333333%}.col-sm-2{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-sm-3{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-sm-4{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.col-sm-5{-ms-flex:0 0 41.666667%;flex:0 0 41.666667%;max-width:41.666667%}.col-sm-6{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-sm-7{-ms-flex:0 0 58.333333%;flex:0 0 58.333333%;max-width:58.333333%}.col-sm-8{-ms-flex:0 0 66.666667%;flex:0 0 66.666667%;max-width:66.666667%}.col-sm-9{-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-sm-10{-ms-flex:0 0 83.333333%;flex:0 0 83.333333%;max-width:83.333333%}.col-sm-11{-ms-flex:0 0 91.666667%;flex:0 0 91.666667%;max-width:91.666667%}.col-sm-12{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.order-sm-first{-ms-flex-order:-1;order:-1}.order-sm-last{-ms-flex-order:13;order:13}.order-sm-0{-ms-flex-order:0;order:0}.order-sm-1{-ms-flex-order:1;order:1}.order-sm-2{-ms-flex-order:2;order:2}.order-sm-3{-ms-flex-order:3;order:3}.order-sm-4{-ms-flex-order:4;order:4}.order-sm-5{-ms-flex-order:5;order:5}.order-sm-6{-ms-flex-order:6;order:6}.order-sm-7{-ms-flex-order:7;order:7}.order-sm-8{-ms-flex-order:8;order:8}.order-sm-9{-ms-flex-order:9;order:9}.order-sm-10{-ms-flex-order:10;order:10}.order-sm-11{-ms-flex-order:11;order:11}.order-sm-12{-ms-flex-order:12;order:12}.offset-sm-0{margin-left:0}.offset-sm-1{margin-left:8.333333%}.offset-sm-2{margin-left:16.666667%}.offset-sm-3{margin-left:25%}.offset-sm-4{margin-left:33.333333%}.offset-sm-5{margin-left:41.666667%}.offset-sm-6{margin-left:50%}.offset-sm-7{margin-left:58.333333%}.offset-sm-8{margin-left:66.666667%}.offset-sm-9{margin-left:75%}.offset-sm-10{margin-left:83.333333%}.offset-sm-11{margin-left:91.666667%}}@media (min-width:768px){.col-md{-ms-flex-preferred-size:0;flex-basis:0;-ms-flex-positive:1;flex-grow:1;max-width:100%}.col-md-auto{-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:none}.col-md-1{-ms-flex:0 0 8.333333%;flex:0 0 8.333333%;max-width:8.333333%}.col-md-2{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-md-3{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-md-4{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.col-md-5{-ms-flex:0 0 41.666667%;flex:0 0 41.666667%;max-width:41.666667%}.col-md-6{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-md-7{-ms-flex:0 0 58.333333%;flex:0 0 58.333333%;max-width:58.333333%}.col-md-8{-ms-flex:0 0 66.666667%;flex:0 0 66.666667%;max-width:66.666667%}.col-md-9{-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-md-10{-ms-flex:0 0 83.333333%;flex:0 0 83.333333%;max-width:83.333333%}.col-md-11{-ms-flex:0 0 91.666667%;flex:0 0 91.666667%;max-width:91.666667%}.col-md-12{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.order-md-first{-ms-flex-order:-1;order:-1}.order-md-last{-ms-flex-order:13;order:13}.order-md-0{-ms-flex-order:0;order:0}.order-md-1{-ms-flex-order:1;order:1}.order-md-2{-ms-flex-order:2;order:2}.order-md-3{-ms-flex-order:3;order:3}.order-md-4{-ms-flex-order:4;order:4}.order-md-5{-ms-flex-order:5;order:5}.order-md-6{-ms-flex-order:6;order:6}.order-md-7{-ms-flex-order:7;order:7}.order-md-8{-ms-flex-order:8;order:8}.order-md-9{-ms-flex-order:9;order:9}.order-md-10{-ms-flex-order:10;order:10}.order-md-11{-ms-flex-order:11;order:11}.order-md-12{-ms-flex-order:12;order:12}.offset-md-0{margin-left:0}.offset-md-1{margin-left:8.333333%}.offset-md-2{margin-left:16.666667%}.offset-md-3{margin-left:25%}.offset-md-4{margin-left:33.333333%}.offset-md-5{margin-left:41.666667%}.offset-md-6{margin-left:50%}.offset-md-7{margin-left:58.333333%}.offset-md-8{margin-left:66.666667%}.offset-md-9{margin-left:75%}.offset-md-10{margin-left:83.333333%}.offset-md-11{margin-left:91.666667%}}@media (min-width:992px){.col-lg{-ms-flex-preferred-size:0;flex-basis:0;-ms-flex-positive:1;flex-grow:1;max-width:100%}.col-lg-auto{-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:none}.col-lg-1{-ms-flex:0 0 8.333333%;flex:0 0 8.333333%;max-width:8.333333%}.col-lg-2{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-lg-3{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-lg-4{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.col-lg-5{-ms-flex:0 0 41.666667%;flex:0 0 41.666667%;max-width:41.666667%}.col-lg-6{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-lg-7{-ms-flex:0 0 58.333333%;flex:0 0 58.333333%;max-width:58.333333%}.col-lg-8{-ms-flex:0 0 66.666667%;flex:0 0 66.666667%;max-width:66.666667%}.col-lg-9{-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-lg-10{-ms-flex:0 0 83.333333%;flex:0 0 83.333333%;max-width:83.333333%}.col-lg-11{-ms-flex:0 0 91.666667%;flex:0 0 91.666667%;max-width:91.666667%}.col-lg-12{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.order-lg-first{-ms-flex-order:-1;order:-1}.order-lg-last{-ms-flex-order:13;order:13}.order-lg-0{-ms-flex-order:0;order:0}.order-lg-1{-ms-flex-order:1;order:1}.order-lg-2{-ms-flex-order:2;order:2}.order-lg-3{-ms-flex-order:3;order:3}.order-lg-4{-ms-flex-order:4;order:4}.order-lg-5{-ms-flex-order:5;order:5}.order-lg-6{-ms-flex-order:6;order:6}.order-lg-7{-ms-flex-order:7;order:7}.order-lg-8{-ms-flex-order:8;order:8}.order-lg-9{-ms-flex-order:9;order:9}.order-lg-10{-ms-flex-order:10;order:10}.order-lg-11{-ms-flex-order:11;order:11}.order-lg-12{-ms-flex-order:12;order:12}.offset-lg-0{margin-left:0}.offset-lg-1{margin-left:8.333333%}.offset-lg-2{margin-left:16.666667%}.offset-lg-3{margin-left:25%}.offset-lg-4{margin-left:33.333333%}.offset-lg-5{margin-left:41.666667%}.offset-lg-6{margin-left:50%}.offset-lg-7{margin-left:58.333333%}.offset-lg-8{margin-left:66.666667%}.offset-lg-9{margin-left:75%}.offset-lg-10{margin-left:83.333333%}.offset-lg-11{margin-left:91.666667%}}@media (min-width:1200px){.col-xl{-ms-flex-preferred-size:0;flex-basis:0;-ms-flex-positive:1;flex-grow:1;max-width:100%}.col-xl-auto{-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:none}.col-xl-1{-ms-flex:0 0 8.333333%;flex:0 0 8.333333%;max-width:8.333333%}.col-xl-2{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-xl-3{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-xl-4{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.col-xl-5{-ms-flex:0 0 41.666667%;flex:0 0 41.666667%;max-width:41.666667%}.col-xl-6{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-xl-7{-ms-flex:0 0 58.333333%;flex:0 0 58.333333%;max-width:58.333333%}.col-xl-8{-ms-flex:0 0 66.666667%;flex:0 0 66.666667%;max-width:66.666667%}.col-xl-9{-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-xl-10{-ms-flex:0 0 83.333333%;flex:0 0 83.333333%;max-width:83.333333%}.col-xl-11{-ms-flex:0 0 91.666667%;flex:0 0 91.666667%;max-width:91.666667%}.col-xl-12{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.order-xl-first{-ms-flex-order:-1;order:-1}.order-xl-last{-ms-flex-order:13;order:13}.order-xl-0{-ms-flex-order:0;order:0}.order-xl-1{-ms-flex-order:1;order:1}.order-xl-2{-ms-flex-order:2;order:2}.order-xl-3{-ms-flex-order:3;order:3}.order-xl-4{-ms-flex-order:4;order:4}.order-xl-5{-ms-flex-order:5;order:5}.order-xl-6{-ms-flex-order:6;order:6}.order-xl-7{-ms-flex-order:7;order:7}.order-xl-8{-ms-flex-order:8;order:8}.order-xl-9{-ms-flex-order:9;order:9}.order-xl-10{-ms-flex-order:10;order:10}.order-xl-11{-ms-flex-order:11;order:11}.order-xl-12{-ms-flex-order:12;order:12}.offset-xl-0{margin-left:0}.offset-xl-1{margin-left:8.333333%}.offset-xl-2{margin-left:16.666667%}.offset-xl-3{margin-left:25%}.offset-xl-4{margin-left:33.333333%}.offset-xl-5{margin-left:41.666667%}.offset-xl-6{margin-left:50%}.offset-xl-7{margin-left:58.333333%}.offset-xl-8{margin-left:66.666667%}.offset-xl-9{margin-left:75%}.offset-xl-10{margin-left:83.333333%}.offset-xl-11{margin-left:91.666667%}}.table{width:100%;max-width:100%;margin-bottom:1rem;background-color:transparent}.table td,.table th{padding:.75rem;vertical-align:top;border-top:1px solid #dee2e6}.table thead th{vertical-align:bottom;border-bottom:2px solid #dee2e6}.table tbody+tbody{border-top:2px solid #dee2e6}.table .table{background-color:#fff}.table-sm td,.table-sm th{padding:.3rem}.table-bordered{border:1px solid #dee2e6}.table-bordered td,.table-bordered th{border:1px solid #dee2e6}.table-bordered thead td,.table-bordered thead th{border-bottom-width:2px}.table-borderless tbody+tbody,.table-borderless td,.table-borderless th,.table-borderless thead th{border:0}.table-striped tbody tr:nth-of-type(odd){background-color:rgba(0,0,0,.05)}.table-hover tbody tr:hover{background-color:rgba(0,0,0,.075)}.table-primary,.table-primary>td,.table-primary>th{background-color:#b8daff}.table-hover .table-primary:hover{background-color:#9fcdff}.table-hover .table-primary:hover>td,.table-hover .table-primary:hover>th{background-color:#9fcdff}.table-secondary,.table-secondary>td,.table-secondary>th{background-color:#d6d8db}.table-hover .table-secondary:hover{background-color:#c8cbcf}.table-hover .table-secondary:hover>td,.table-hover .table-secondary:hover>th{background-color:#c8cbcf}.table-success,.table-success>td,.table-success>th{background-color:#c3e6cb}.table-hover .table-success:hover{background-color:#b1dfbb}.table-hover .table-success:hover>td,.table-hover .table-success:hover>th{background-color:#b1dfbb}.table-info,.table-info>td,.table-info>th{background-color:#bee5eb}.table-hover .table-info:hover{background-color:#abdde5}.table-hover .table-info:hover>td,.table-hover .table-info:hover>th{background-color:#abdde5}.table-warning,.table-warning>td,.table-warning>th{background-color:#ffeeba}.table-hover .table-warning:hover{background-color:#ffe8a1}.table-hover .table-warning:hover>td,.table-hover .table-warning:hover>th{background-color:#ffe8a1}.table-danger,.table-danger>td,.table-danger>th{background-color:#f5c6cb}.table-hover .table-danger:hover{background-color:#f1b0b7}.table-hover .table-danger:hover>td,.table-hover .table-danger:hover>th{background-color:#f1b0b7}.table-light,.table-light>td,.table-light>th{background-color:#fdfdfe}.table-hover .table-light:hover{background-color:#ececf6}.table-hover .table-light:hover>td,.table-hover .table-light:hover>th{background-color:#ececf6}.table-dark,.table-dark>td,.table-dark>th{background-color:#c6c8ca}.table-hover .table-dark:hover{background-color:#b9bbbe}.table-hover .table-dark:hover>td,.table-hover .table-dark:hover>th{background-color:#b9bbbe}.table-active,.table-active>td,.table-active>th{background-color:rgba(0,0,0,.075)}.table-hover .table-active:hover{background-color:rgba(0,0,0,.075)}.table-hover .table-active:hover>td,.table-hover .table-active:hover>th{background-color:rgba(0,0,0,.075)}.table .thead-dark th{color:#fff;background-color:#212529;border-color:#32383e}.table .thead-light th{color:#495057;background-color:#e9ecef;border-color:#dee2e6}.table-dark{color:#fff;background-color:#212529}.table-dark td,.table-dark th,.table-dark thead th{border-color:#32383e}.table-dark.table-bordered{border:0}.table-dark.table-striped tbody tr:nth-of-type(odd){background-color:rgba(255,255,255,.05)}.table-dark.table-hover tbody tr:hover{background-color:rgba(255,255,255,.075)}@media (max-width:575.98px){.table-responsive-sm{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch;-ms-overflow-style:-ms-autohiding-scrollbar}.table-responsive-sm>.table-bordered{border:0}}@media (max-width:767.98px){.table-responsive-md{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch;-ms-overflow-style:-ms-autohiding-scrollbar}.table-responsive-md>.table-bordered{border:0}}@media (max-width:991.98px){.table-responsive-lg{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch;-ms-overflow-style:-ms-autohiding-scrollbar}.table-responsive-lg>.table-bordered{border:0}}@media (max-width:1199.98px){.table-responsive-xl{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch;-ms-overflow-style:-ms-autohiding-scrollbar}.table-responsive-xl>.table-bordered{border:0}}.table-responsive{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch;-ms-overflow-style:-ms-autohiding-scrollbar}.table-responsive>.table-bordered{border:0}.form-control{display:block;width:100%;padding:.375rem .75rem;font-size:1rem;line-height:1.5;color:#495057;background-color:#fff;background-clip:padding-box;border:1px solid #ced4da;border-radius:.25rem;transition:border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media screen and (prefers-reduced-motion:reduce){.form-control{transition:none}}.form-control::-ms-expand{background-color:transparent;border:0}.form-control:focus{color:#495057;background-color:#fff;border-color:#80bdff;outline:0;box-shadow:0 0 0 .2rem rgba(0,123,255,.25)}.form-control::-webkit-input-placeholder{color:#6c757d;opacity:1}.form-control::-moz-placeholder{color:#6c757d;opacity:1}.form-control:-ms-input-placeholder{color:#6c757d;opacity:1}.form-control::-ms-input-placeholder{color:#6c757d;opacity:1}.form-control::placeholder{color:#6c757d;opacity:1}.form-control:disabled,.form-control[readonly]{background-color:#e9ecef;opacity:1}select.form-control:not([size]):not([multiple]){height:calc(2.25rem + 2px)}select.form-control:focus::-ms-value{color:#495057;background-color:#fff}.form-control-file,.form-control-range{display:block;width:100%}.col-form-label{padding-top:calc(.375rem + 1px);padding-bottom:calc(.375rem + 1px);margin-bottom:0;font-size:inherit;line-height:1.5}.col-form-label-lg{padding-top:calc(.5rem + 1px);padding-bottom:calc(.5rem + 1px);font-size:1.25rem;line-height:1.5}.col-form-label-sm{padding-top:calc(.25rem + 1px);padding-bottom:calc(.25rem + 1px);font-size:.875rem;line-height:1.5}.form-control-plaintext{display:block;width:100%;padding-top:.375rem;padding-bottom:.375rem;margin-bottom:0;line-height:1.5;color:#212529;background-color:transparent;border:solid transparent;border-width:1px 0}.form-control-plaintext.form-control-lg,.form-control-plaintext.form-control-sm,.input-group-lg>.form-control-plaintext.form-control,.input-group-lg>.input-group-append>.form-control-plaintext.btn,.input-group-lg>.input-group-append>.form-control-plaintext.input-group-text,.input-group-lg>.input-group-prepend>.form-control-plaintext.btn,.input-group-lg>.input-group-prepend>.form-control-plaintext.input-group-text,.input-group-sm>.form-control-plaintext.form-control,.input-group-sm>.input-group-append>.form-control-plaintext.btn,.input-group-sm>.input-group-append>.form-control-plaintext.input-group-text,.input-group-sm>.input-group-prepend>.form-control-plaintext.btn,.input-group-sm>.input-group-prepend>.form-control-plaintext.input-group-text{padding-right:0;padding-left:0}.form-control-sm,.input-group-sm>.form-control,.input-group-sm>.input-group-append>.btn,.input-group-sm>.input-group-append>.input-group-text,.input-group-sm>.input-group-prepend>.btn,.input-group-sm>.input-group-prepend>.input-group-text{padding:.25rem .5rem;font-size:.875rem;line-height:1.5;border-radius:.2rem}.input-group-sm>.input-group-append>select.btn:not([size]):not([multiple]),.input-group-sm>.input-group-append>select.input-group-text:not([size]):not([multiple]),.input-group-sm>.input-group-prepend>select.btn:not([size]):not([multiple]),.input-group-sm>.input-group-prepend>select.input-group-text:not([size]):not([multiple]),.input-group-sm>select.form-control:not([size]):not([multiple]),select.form-control-sm:not([size]):not([multiple]){height:calc(1.8125rem + 2px)}.form-control-lg,.input-group-lg>.form-control,.input-group-lg>.input-group-append>.btn,.input-group-lg>.input-group-append>.input-group-text,.input-group-lg>.input-group-prepend>.btn,.input-group-lg>.input-group-prepend>.input-group-text{padding:.5rem 1rem;font-size:1.25rem;line-height:1.5;border-radius:.3rem}.input-group-lg>.input-group-append>select.btn:not([size]):not([multiple]),.input-group-lg>.input-group-append>select.input-group-text:not([size]):not([multiple]),.input-group-lg>.input-group-prepend>select.btn:not([size]):not([multiple]),.input-group-lg>.input-group-prepend>select.input-group-text:not([size]):not([multiple]),.input-group-lg>select.form-control:not([size]):not([multiple]),select.form-control-lg:not([size]):not([multiple]){height:calc(2.875rem + 2px)}.form-group{margin-bottom:1rem}.form-text{display:block;margin-top:.25rem}.form-row{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;margin-right:-5px;margin-left:-5px}.form-row>.col,.form-row>[class*=col-]{padding-right:5px;padding-left:5px}.form-check{position:relative;display:block;padding-left:1.25rem}.form-check-input{position:absolute;margin-top:.3rem;margin-left:-1.25rem}.form-check-input:disabled~.form-check-label{color:#6c757d}.form-check-label{margin-bottom:0}.form-check-inline{display:-ms-inline-flexbox;display:inline-flex;-ms-flex-align:center;align-items:center;padding-left:0;margin-right:.75rem}.form-check-inline .form-check-input{position:static;margin-top:0;margin-right:.3125rem;margin-left:0}.valid-feedback{display:none;width:100%;margin-top:.25rem;font-size:80%;color:#28a745}.valid-tooltip{position:absolute;top:100%;z-index:5;display:none;max-width:100%;padding:.5rem;margin-top:.1rem;font-size:.875rem;line-height:1;color:#fff;background-color:rgba(40,167,69,.8);border-radius:.2rem}.custom-select.is-valid,.form-control.is-valid,.was-validated .custom-select:valid,.was-validated .form-control:valid{border-color:#28a745}.custom-select.is-valid:focus,.form-control.is-valid:focus,.was-validated .custom-select:valid:focus,.was-validated .form-control:valid:focus{border-color:#28a745;box-shadow:0 0 0 .2rem rgba(40,167,69,.25)}.custom-select.is-valid~.valid-feedback,.custom-select.is-valid~.valid-tooltip,.form-control.is-valid~.valid-feedback,.form-control.is-valid~.valid-tooltip,.was-validated .custom-select:valid~.valid-feedback,.was-validated .custom-select:valid~.valid-tooltip,.was-validated .form-control:valid~.valid-feedback,.was-validated .form-control:valid~.valid-tooltip{display:block}.form-control-file.is-valid~.valid-feedback,.form-control-file.is-valid~.valid-tooltip,.was-validated .form-control-file:valid~.valid-feedback,.was-validated .form-control-file:valid~.valid-tooltip{display:block}.form-check-input.is-valid~.form-check-label,.was-validated .form-check-input:valid~.form-check-label{color:#28a745}.form-check-input.is-valid~.valid-feedback,.form-check-input.is-valid~.valid-tooltip,.was-validated .form-check-input:valid~.valid-feedback,.was-validated .form-check-input:valid~.valid-tooltip{display:block}.custom-control-input.is-valid~.custom-control-label,.was-validated .custom-control-input:valid~.custom-control-label{color:#28a745}.custom-control-input.is-valid~.custom-control-label::before,.was-validated .custom-control-input:valid~.custom-control-label::before{background-color:#71dd8a}.custom-control-input.is-valid~.valid-feedback,.custom-control-input.is-valid~.valid-tooltip,.was-validated .custom-control-input:valid~.valid-feedback,.was-validated .custom-control-input:valid~.valid-tooltip{display:block}.custom-control-input.is-valid:checked~.custom-control-label::before,.was-validated .custom-control-input:valid:checked~.custom-control-label::before{background-color:#34ce57}.custom-control-input.is-valid:focus~.custom-control-label::before,.was-validated .custom-control-input:valid:focus~.custom-control-label::before{box-shadow:0 0 0 1px #fff,0 0 0 .2rem rgba(40,167,69,.25)}.custom-file-input.is-valid~.custom-file-label,.was-validated .custom-file-input:valid~.custom-file-label{border-color:#28a745}.custom-file-input.is-valid~.custom-file-label::before,.was-validated .custom-file-input:valid~.custom-file-label::before{border-color:inherit}.custom-file-input.is-valid~.valid-feedback,.custom-file-input.is-valid~.valid-tooltip,.was-validated .custom-file-input:valid~.valid-feedback,.was-validated .custom-file-input:valid~.valid-tooltip{display:block}.custom-file-input.is-valid:focus~.custom-file-label,.was-validated .custom-file-input:valid:focus~.custom-file-label{box-shadow:0 0 0 .2rem rgba(40,167,69,.25)}.invalid-feedback{display:none;width:100%;margin-top:.25rem;font-size:80%;color:#dc3545}.invalid-tooltip{position:absolute;top:100%;z-index:5;display:none;max-width:100%;padding:.5rem;margin-top:.1rem;font-size:.875rem;line-height:1;color:#fff;background-color:rgba(220,53,69,.8);border-radius:.2rem}.custom-select.is-invalid,.form-control.is-invalid,.was-validated .custom-select:invalid,.was-validated .form-control:invalid{border-color:#dc3545}.custom-select.is-invalid:focus,.form-control.is-invalid:focus,.was-validated .custom-select:invalid:focus,.was-validated .form-control:invalid:focus{border-color:#dc3545;box-shadow:0 0 0 .2rem rgba(220,53,69,.25)}.custom-select.is-invalid~.invalid-feedback,.custom-select.is-invalid~.invalid-tooltip,.form-control.is-invalid~.invalid-feedback,.form-control.is-invalid~.invalid-tooltip,.was-validated .custom-select:invalid~.invalid-feedback,.was-validated .custom-select:invalid~.invalid-tooltip,.was-validated .form-control:invalid~.invalid-feedback,.was-validated .form-control:invalid~.invalid-tooltip{display:block}.form-control-file.is-invalid~.invalid-feedback,.form-control-file.is-invalid~.invalid-tooltip,.was-validated .form-control-file:invalid~.invalid-feedback,.was-validated .form-control-file:invalid~.invalid-tooltip{display:block}.form-check-input.is-invalid~.form-check-label,.was-validated .form-check-input:invalid~.form-check-label{color:#dc3545}.form-check-input.is-invalid~.invalid-feedback,.form-check-input.is-invalid~.invalid-tooltip,.was-validated .form-check-input:invalid~.invalid-feedback,.was-validated .form-check-input:invalid~.invalid-tooltip{display:block}.custom-control-input.is-invalid~.custom-control-label,.was-validated .custom-control-input:invalid~.custom-control-label{color:#dc3545}.custom-control-input.is-invalid~.custom-control-label::before,.was-validated .custom-control-input:invalid~.custom-control-label::before{background-color:#efa2a9}.custom-control-input.is-invalid~.invalid-feedback,.custom-control-input.is-invalid~.invalid-tooltip,.was-validated .custom-control-input:invalid~.invalid-feedback,.was-validated .custom-control-input:invalid~.invalid-tooltip{display:block}.custom-control-input.is-invalid:checked~.custom-control-label::before,.was-validated .custom-control-input:invalid:checked~.custom-control-label::before{background-color:#e4606d}.custom-control-input.is-invalid:focus~.custom-control-label::before,.was-validated .custom-control-input:invalid:focus~.custom-control-label::before{box-shadow:0 0 0 1px #fff,0 0 0 .2rem rgba(220,53,69,.25)}.custom-file-input.is-invalid~.custom-file-label,.was-validated .custom-file-input:invalid~.custom-file-label{border-color:#dc3545}.custom-file-input.is-invalid~.custom-file-label::before,.was-validated .custom-file-input:invalid~.custom-file-label::before{border-color:inherit}.custom-file-input.is-invalid~.invalid-feedback,.custom-file-input.is-invalid~.invalid-tooltip,.was-validated .custom-file-input:invalid~.invalid-feedback,.was-validated .custom-file-input:invalid~.invalid-tooltip{display:block}.custom-file-input.is-invalid:focus~.custom-file-label,.was-validated .custom-file-input:invalid:focus~.custom-file-label{box-shadow:0 0 0 .2rem rgba(220,53,69,.25)}.form-inline{display:-ms-flexbox;display:flex;-ms-flex-flow:row wrap;flex-flow:row wrap;-ms-flex-align:center;align-items:center}.form-inline .form-check{width:100%}@media (min-width:576px){.form-inline label{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;-ms-flex-pack:center;justify-content:center;margin-bottom:0}.form-inline .form-group{display:-ms-flexbox;display:flex;-ms-flex:0 0 auto;flex:0 0 auto;-ms-flex-flow:row wrap;flex-flow:row wrap;-ms-flex-align:center;align-items:center;margin-bottom:0}.form-inline .form-control{display:inline-block;width:auto;vertical-align:middle}.form-inline .form-control-plaintext{display:inline-block}.form-inline .custom-select,.form-inline .input-group{width:auto}.form-inline .form-check{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;-ms-flex-pack:center;justify-content:center;width:auto;padding-left:0}.form-inline .form-check-input{position:relative;margin-top:0;margin-right:.25rem;margin-left:0}.form-inline .custom-control{-ms-flex-align:center;align-items:center;-ms-flex-pack:center;justify-content:center}.form-inline .custom-control-label{margin-bottom:0}}.btn{display:inline-block;font-weight:400;text-align:center;white-space:nowrap;vertical-align:middle;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;border:1px solid transparent;padding:.375rem .75rem;font-size:1rem;line-height:1.5;border-radius:.25rem;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media screen and (prefers-reduced-motion:reduce){.btn{transition:none}}.btn:focus,.btn:hover{text-decoration:none}.btn.focus,.btn:focus{outline:0;box-shadow:0 0 0 .2rem rgba(0,123,255,.25)}.btn.disabled,.btn:disabled{opacity:.65}.btn:not(:disabled):not(.disabled){cursor:pointer}.btn:not(:disabled):not(.disabled).active,.btn:not(:disabled):not(.disabled):active{background-image:none}a.btn.disabled,fieldset:disabled a.btn{pointer-events:none}.btn-primary{color:#fff;background-color:#007bff;border-color:#007bff}.btn-primary:hover{color:#fff;background-color:#0069d9;border-color:#0062cc}.btn-primary.focus,.btn-primary:focus{box-shadow:0 0 0 .2rem rgba(0,123,255,.5)}.btn-primary.disabled,.btn-primary:disabled{color:#fff;background-color:#007bff;border-color:#007bff}.btn-primary:not(:disabled):not(.disabled).active,.btn-primary:not(:disabled):not(.disabled):active,.show>.btn-primary.dropdown-toggle{color:#fff;background-color:#0062cc;border-color:#005cbf}.btn-primary:not(:disabled):not(.disabled).active:focus,.btn-primary:not(:disabled):not(.disabled):active:focus,.show>.btn-primary.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(0,123,255,.5)}.btn-secondary{color:#fff;background-color:#6c757d;border-color:#6c757d}.btn-secondary:hover{color:#fff;background-color:#5a6268;border-color:#545b62}.btn-secondary.focus,.btn-secondary:focus{box-shadow:0 0 0 .2rem rgba(108,117,125,.5)}.btn-secondary.disabled,.btn-secondary:disabled{color:#fff;background-color:#6c757d;border-color:#6c757d}.btn-secondary:not(:disabled):not(.disabled).active,.btn-secondary:not(:disabled):not(.disabled):active,.show>.btn-secondary.dropdown-toggle{color:#fff;background-color:#545b62;border-color:#4e555b}.btn-secondary:not(:disabled):not(.disabled).active:focus,.btn-secondary:not(:disabled):not(.disabled):active:focus,.show>.btn-secondary.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(108,117,125,.5)}.btn-success{color:#fff;background-color:#28a745;border-color:#28a745}.btn-success:hover{color:#fff;background-color:#218838;border-color:#1e7e34}.btn-success.focus,.btn-success:focus{box-shadow:0 0 0 .2rem rgba(40,167,69,.5)}.btn-success.disabled,.btn-success:disabled{color:#fff;background-color:#28a745;border-color:#28a745}.btn-success:not(:disabled):not(.disabled).active,.btn-success:not(:disabled):not(.disabled):active,.show>.btn-success.dropdown-toggle{color:#fff;background-color:#1e7e34;border-color:#1c7430}.btn-success:not(:disabled):not(.disabled).active:focus,.btn-success:not(:disabled):not(.disabled):active:focus,.show>.btn-success.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(40,167,69,.5)}.btn-info{color:#fff;background-color:#17a2b8;border-color:#17a2b8}.btn-info:hover{color:#fff;background-color:#138496;border-color:#117a8b}.btn-info.focus,.btn-info:focus{box-shadow:0 0 0 .2rem rgba(23,162,184,.5)}.btn-info.disabled,.btn-info:disabled{color:#fff;background-color:#17a2b8;border-color:#17a2b8}.btn-info:not(:disabled):not(.disabled).active,.btn-info:not(:disabled):not(.disabled):active,.show>.btn-info.dropdown-toggle{color:#fff;background-color:#117a8b;border-color:#10707f}.btn-info:not(:disabled):not(.disabled).active:focus,.btn-info:not(:disabled):not(.disabled):active:focus,.show>.btn-info.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(23,162,184,.5)}.btn-warning{color:#212529;background-color:#ffc107;border-color:#ffc107}.btn-warning:hover{color:#212529;background-color:#e0a800;border-color:#d39e00}.btn-warning.focus,.btn-warning:focus{box-shadow:0 0 0 .2rem rgba(255,193,7,.5)}.btn-warning.disabled,.btn-warning:disabled{color:#212529;background-color:#ffc107;border-color:#ffc107}.btn-warning:not(:disabled):not(.disabled).active,.btn-warning:not(:disabled):not(.disabled):active,.show>.btn-warning.dropdown-toggle{color:#212529;background-color:#d39e00;border-color:#c69500}.btn-warning:not(:disabled):not(.disabled).active:focus,.btn-warning:not(:disabled):not(.disabled):active:focus,.show>.btn-warning.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(255,193,7,.5)}.btn-danger{color:#fff;background-color:#dc3545;border-color:#dc3545}.btn-danger:hover{color:#fff;background-color:#c82333;border-color:#bd2130}.btn-danger.focus,.btn-danger:focus{box-shadow:0 0 0 .2rem rgba(220,53,69,.5)}.btn-danger.disabled,.btn-danger:disabled{color:#fff;background-color:#dc3545;border-color:#dc3545}.btn-danger:not(:disabled):not(.disabled).active,.btn-danger:not(:disabled):not(.disabled):active,.show>.btn-danger.dropdown-toggle{color:#fff;background-color:#bd2130;border-color:#b21f2d}.btn-danger:not(:disabled):not(.disabled).active:focus,.btn-danger:not(:disabled):not(.disabled):active:focus,.show>.btn-danger.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(220,53,69,.5)}.btn-light{color:#212529;background-color:#f8f9fa;border-color:#f8f9fa}.btn-light:hover{color:#212529;background-color:#e2e6ea;border-color:#dae0e5}.btn-light.focus,.btn-light:focus{box-shadow:0 0 0 .2rem rgba(248,249,250,.5)}.btn-light.disabled,.btn-light:disabled{color:#212529;background-color:#f8f9fa;border-color:#f8f9fa}.btn-light:not(:disabled):not(.disabled).active,.btn-light:not(:disabled):not(.disabled):active,.show>.btn-light.dropdown-toggle{color:#212529;background-color:#dae0e5;border-color:#d3d9df}.btn-light:not(:disabled):not(.disabled).active:focus,.btn-light:not(:disabled):not(.disabled):active:focus,.show>.btn-light.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(248,249,250,.5)}.btn-dark{color:#fff;background-color:#343a40;border-color:#343a40}.btn-dark:hover{color:#fff;background-color:#23272b;border-color:#1d2124}.btn-dark.focus,.btn-dark:focus{box-shadow:0 0 0 .2rem rgba(52,58,64,.5)}.btn-dark.disabled,.btn-dark:disabled{color:#fff;background-color:#343a40;border-color:#343a40}.btn-dark:not(:disabled):not(.disabled).active,.btn-dark:not(:disabled):not(.disabled):active,.show>.btn-dark.dropdown-toggle{color:#fff;background-color:#1d2124;border-color:#171a1d}.btn-dark:not(:disabled):not(.disabled).active:focus,.btn-dark:not(:disabled):not(.disabled):active:focus,.show>.btn-dark.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(52,58,64,.5)}.btn-outline-primary{color:#007bff;background-color:transparent;background-image:none;border-color:#007bff}.btn-outline-primary:hover{color:#fff;background-color:#007bff;border-color:#007bff}.btn-outline-primary.focus,.btn-outline-primary:focus{box-shadow:0 0 0 .2rem rgba(0,123,255,.5)}.btn-outline-primary.disabled,.btn-outline-primary:disabled{color:#007bff;background-color:transparent}.btn-outline-primary:not(:disabled):not(.disabled).active,.btn-outline-primary:not(:disabled):not(.disabled):active,.show>.btn-outline-primary.dropdown-toggle{color:#fff;background-color:#007bff;border-color:#007bff}.btn-outline-primary:not(:disabled):not(.disabled).active:focus,.btn-outline-primary:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-primary.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(0,123,255,.5)}.btn-outline-secondary{color:#6c757d;background-color:transparent;background-image:none;border-color:#6c757d}.btn-outline-secondary:hover{color:#fff;background-color:#6c757d;border-color:#6c757d}.btn-outline-secondary.focus,.btn-outline-secondary:focus{box-shadow:0 0 0 .2rem rgba(108,117,125,.5)}.btn-outline-secondary.disabled,.btn-outline-secondary:disabled{color:#6c757d;background-color:transparent}.btn-outline-secondary:not(:disabled):not(.disabled).active,.btn-outline-secondary:not(:disabled):not(.disabled):active,.show>.btn-outline-secondary.dropdown-toggle{color:#fff;background-color:#6c757d;border-color:#6c757d}.btn-outline-secondary:not(:disabled):not(.disabled).active:focus,.btn-outline-secondary:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-secondary.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(108,117,125,.5)}.btn-outline-success{color:#28a745;background-color:transparent;background-image:none;border-color:#28a745}.btn-outline-success:hover{color:#fff;background-color:#28a745;border-color:#28a745}.btn-outline-success.focus,.btn-outline-success:focus{box-shadow:0 0 0 .2rem rgba(40,167,69,.5)}.btn-outline-success.disabled,.btn-outline-success:disabled{color:#28a745;background-color:transparent}.btn-outline-success:not(:disabled):not(.disabled).active,.btn-outline-success:not(:disabled):not(.disabled):active,.show>.btn-outline-success.dropdown-toggle{color:#fff;background-color:#28a745;border-color:#28a745}.btn-outline-success:not(:disabled):not(.disabled).active:focus,.btn-outline-success:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-success.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(40,167,69,.5)}.btn-outline-info{color:#17a2b8;background-color:transparent;background-image:none;border-color:#17a2b8}.btn-outline-info:hover{color:#fff;background-color:#17a2b8;border-color:#17a2b8}.btn-outline-info.focus,.btn-outline-info:focus{box-shadow:0 0 0 .2rem rgba(23,162,184,.5)}.btn-outline-info.disabled,.btn-outline-info:disabled{color:#17a2b8;background-color:transparent}.btn-outline-info:not(:disabled):not(.disabled).active,.btn-outline-info:not(:disabled):not(.disabled):active,.show>.btn-outline-info.dropdown-toggle{color:#fff;background-color:#17a2b8;border-color:#17a2b8}.btn-outline-info:not(:disabled):not(.disabled).active:focus,.btn-outline-info:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-info.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(23,162,184,.5)}.btn-outline-warning{color:#ffc107;background-color:transparent;background-image:none;border-color:#ffc107}.btn-outline-warning:hover{color:#212529;background-color:#ffc107;border-color:#ffc107}.btn-outline-warning.focus,.btn-outline-warning:focus{box-shadow:0 0 0 .2rem rgba(255,193,7,.5)}.btn-outline-warning.disabled,.btn-outline-warning:disabled{color:#ffc107;background-color:transparent}.btn-outline-warning:not(:disabled):not(.disabled).active,.btn-outline-warning:not(:disabled):not(.disabled):active,.show>.btn-outline-warning.dropdown-toggle{color:#212529;background-color:#ffc107;border-color:#ffc107}.btn-outline-warning:not(:disabled):not(.disabled).active:focus,.btn-outline-warning:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-warning.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(255,193,7,.5)}.btn-outline-danger{color:#dc3545;background-color:transparent;background-image:none;border-color:#dc3545}.btn-outline-danger:hover{color:#fff;background-color:#dc3545;border-color:#dc3545}.btn-outline-danger.focus,.btn-outline-danger:focus{box-shadow:0 0 0 .2rem rgba(220,53,69,.5)}.btn-outline-danger.disabled,.btn-outline-danger:disabled{color:#dc3545;background-color:transparent}.btn-outline-danger:not(:disabled):not(.disabled).active,.btn-outline-danger:not(:disabled):not(.disabled):active,.show>.btn-outline-danger.dropdown-toggle{color:#fff;background-color:#dc3545;border-color:#dc3545}.btn-outline-danger:not(:disabled):not(.disabled).active:focus,.btn-outline-danger:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-danger.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(220,53,69,.5)}.btn-outline-light{color:#f8f9fa;background-color:transparent;background-image:none;border-color:#f8f9fa}.btn-outline-light:hover{color:#212529;background-color:#f8f9fa;border-color:#f8f9fa}.btn-outline-light.focus,.btn-outline-light:focus{box-shadow:0 0 0 .2rem rgba(248,249,250,.5)}.btn-outline-light.disabled,.btn-outline-light:disabled{color:#f8f9fa;background-color:transparent}.btn-outline-light:not(:disabled):not(.disabled).active,.btn-outline-light:not(:disabled):not(.disabled):active,.show>.btn-outline-light.dropdown-toggle{color:#212529;background-color:#f8f9fa;border-color:#f8f9fa}.btn-outline-light:not(:disabled):not(.disabled).active:focus,.btn-outline-light:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-light.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(248,249,250,.5)}.btn-outline-dark{color:#343a40;background-color:transparent;background-image:none;border-color:#343a40}.btn-outline-dark:hover{color:#fff;background-color:#343a40;border-color:#343a40}.btn-outline-dark.focus,.btn-outline-dark:focus{box-shadow:0 0 0 .2rem rgba(52,58,64,.5)}.btn-outline-dark.disabled,.btn-outline-dark:disabled{color:#343a40;background-color:transparent}.btn-outline-dark:not(:disabled):not(.disabled).active,.btn-outline-dark:not(:disabled):not(.disabled):active,.show>.btn-outline-dark.dropdown-toggle{color:#fff;background-color:#343a40;border-color:#343a40}.btn-outline-dark:not(:disabled):not(.disabled).active:focus,.btn-outline-dark:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-dark.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(52,58,64,.5)}.btn-link{font-weight:400;color:#007bff;background-color:transparent}.btn-link:hover{color:#0056b3;text-decoration:underline;background-color:transparent;border-color:transparent}.btn-link.focus,.btn-link:focus{text-decoration:underline;border-color:transparent;box-shadow:none}.btn-link.disabled,.btn-link:disabled{color:#6c757d;pointer-events:none}.btn-group-lg>.btn,.btn-lg{padding:.5rem 1rem;font-size:1.25rem;line-height:1.5;border-radius:.3rem}.btn-group-sm>.btn,.btn-sm{padding:.25rem .5rem;font-size:.875rem;line-height:1.5;border-radius:.2rem}.btn-block{display:block;width:100%}.btn-block+.btn-block{margin-top:.5rem}input[type=button].btn-block,input[type=reset].btn-block,input[type=submit].btn-block{width:100%}.fade{transition:opacity .15s linear}@media screen and (prefers-reduced-motion:reduce){.fade{transition:none}}.fade:not(.show){opacity:0}.collapse:not(.show){display:none}.collapsing{position:relative;height:0;overflow:hidden;transition:height .35s ease}@media screen and (prefers-reduced-motion:reduce){.collapsing{transition:none}}.dropdown,.dropleft,.dropright,.dropup{position:relative}.dropdown-toggle::after{display:inline-block;width:0;height:0;margin-left:.255em;vertical-align:.255em;content:"";border-top:.3em solid;border-right:.3em solid transparent;border-bottom:0;border-left:.3em solid transparent}.dropdown-toggle:empty::after{margin-left:0}.dropdown-menu{position:absolute;top:100%;left:0;z-index:1000;display:none;float:left;min-width:10rem;padding:.5rem 0;margin:.125rem 0 0;font-size:1rem;color:#212529;text-align:left;list-style:none;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,.15);border-radius:.25rem}.dropdown-menu-right{right:0;left:auto}.dropup .dropdown-menu{top:auto;bottom:100%;margin-top:0;margin-bottom:.125rem}.dropup .dropdown-toggle::after{display:inline-block;width:0;height:0;margin-left:.255em;vertical-align:.255em;content:"";border-top:0;border-right:.3em solid transparent;border-bottom:.3em solid;border-left:.3em solid transparent}.dropup .dropdown-toggle:empty::after{margin-left:0}.dropright .dropdown-menu{top:0;right:auto;left:100%;margin-top:0;margin-left:.125rem}.dropright .dropdown-toggle::after{display:inline-block;width:0;height:0;margin-left:.255em;vertical-align:.255em;content:"";border-top:.3em solid transparent;border-right:0;border-bottom:.3em solid transparent;border-left:.3em solid}.dropright .dropdown-toggle:empty::after{margin-left:0}.dropright .dropdown-toggle::after{vertical-align:0}.dropleft .dropdown-menu{top:0;right:100%;left:auto;margin-top:0;margin-right:.125rem}.dropleft .dropdown-toggle::after{display:inline-block;width:0;height:0;margin-left:.255em;vertical-align:.255em;content:""}.dropleft .dropdown-toggle::after{display:none}.dropleft .dropdown-toggle::before{display:inline-block;width:0;height:0;margin-right:.255em;vertical-align:.255em;content:"";border-top:.3em solid transparent;border-right:.3em solid;border-bottom:.3em solid transparent}.dropleft .dropdown-toggle:empty::after{margin-left:0}.dropleft .dropdown-toggle::before{vertical-align:0}.dropdown-menu[x-placement^=bottom],.dropdown-menu[x-placement^=left],.dropdown-menu[x-placement^=right],.dropdown-menu[x-placement^=top]{right:auto;bottom:auto}.dropdown-divider{height:0;margin:.5rem 0;overflow:hidden;border-top:1px solid #e9ecef}.dropdown-item{display:block;width:100%;padding:.25rem 1.5rem;clear:both;font-weight:400;color:#212529;text-align:inherit;white-space:nowrap;background-color:transparent;border:0}.dropdown-item:focus,.dropdown-item:hover{color:#16181b;text-decoration:none;background-color:#f8f9fa}.dropdown-item.active,.dropdown-item:active{color:#fff;text-decoration:none;background-color:#007bff}.dropdown-item.disabled,.dropdown-item:disabled{color:#6c757d;background-color:transparent}.dropdown-menu.show{display:block}.dropdown-header{display:block;padding:.5rem 1.5rem;margin-bottom:0;font-size:.875rem;color:#6c757d;white-space:nowrap}.dropdown-item-text{display:block;padding:.25rem 1.5rem;color:#212529}.btn-group,.btn-group-vertical{position:relative;display:-ms-inline-flexbox;display:inline-flex;vertical-align:middle}.btn-group-vertical>.btn,.btn-group>.btn{position:relative;-ms-flex:0 1 auto;flex:0 1 auto}.btn-group-vertical>.btn:hover,.btn-group>.btn:hover{z-index:1}.btn-group-vertical>.btn.active,.btn-group-vertical>.btn:active,.btn-group-vertical>.btn:focus,.btn-group>.btn.active,.btn-group>.btn:active,.btn-group>.btn:focus{z-index:1}.btn-group .btn+.btn,.btn-group .btn+.btn-group,.btn-group .btn-group+.btn,.btn-group .btn-group+.btn-group,.btn-group-vertical .btn+.btn,.btn-group-vertical .btn+.btn-group,.btn-group-vertical .btn-group+.btn,.btn-group-vertical .btn-group+.btn-group{margin-left:-1px}.btn-toolbar{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-ms-flex-pack:start;justify-content:flex-start}.btn-toolbar .input-group{width:auto}.btn-group>.btn:first-child{margin-left:0}.btn-group>.btn-group:not(:last-child)>.btn,.btn-group>.btn:not(:last-child):not(.dropdown-toggle){border-top-right-radius:0;border-bottom-right-radius:0}.btn-group>.btn-group:not(:first-child)>.btn,.btn-group>.btn:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}.dropdown-toggle-split{padding-right:.5625rem;padding-left:.5625rem}.dropdown-toggle-split::after,.dropright .dropdown-toggle-split::after,.dropup .dropdown-toggle-split::after{margin-left:0}.dropleft .dropdown-toggle-split::before{margin-right:0}.btn-group-sm>.btn+.dropdown-toggle-split,.btn-sm+.dropdown-toggle-split{padding-right:.375rem;padding-left:.375rem}.btn-group-lg>.btn+.dropdown-toggle-split,.btn-lg+.dropdown-toggle-split{padding-right:.75rem;padding-left:.75rem}.btn-group-vertical{-ms-flex-direction:column;flex-direction:column;-ms-flex-align:start;align-items:flex-start;-ms-flex-pack:center;justify-content:center}.btn-group-vertical .btn,.btn-group-vertical .btn-group{width:100%}.btn-group-vertical>.btn+.btn,.btn-group-vertical>.btn+.btn-group,.btn-group-vertical>.btn-group+.btn,.btn-group-vertical>.btn-group+.btn-group{margin-top:-1px;margin-left:0}.btn-group-vertical>.btn-group:not(:last-child)>.btn,.btn-group-vertical>.btn:not(:last-child):not(.dropdown-toggle){border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn-group:not(:first-child)>.btn,.btn-group-vertical>.btn:not(:first-child){border-top-left-radius:0;border-top-right-radius:0}.btn-group-toggle>.btn,.btn-group-toggle>.btn-group>.btn{margin-bottom:0}.btn-group-toggle>.btn input[type=checkbox],.btn-group-toggle>.btn input[type=radio],.btn-group-toggle>.btn-group>.btn input[type=checkbox],.btn-group-toggle>.btn-group>.btn input[type=radio]{position:absolute;clip:rect(0,0,0,0);pointer-events:none}.input-group{position:relative;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-ms-flex-align:stretch;align-items:stretch;width:100%}.input-group>.custom-file,.input-group>.custom-select,.input-group>.form-control{position:relative;-ms-flex:1 1 auto;flex:1 1 auto;width:1%;margin-bottom:0}.input-group>.custom-file:focus,.input-group>.custom-select:focus,.input-group>.form-control:focus{z-index:3}.input-group>.custom-file+.custom-file,.input-group>.custom-file+.custom-select,.input-group>.custom-file+.form-control,.input-group>.custom-select+.custom-file,.input-group>.custom-select+.custom-select,.input-group>.custom-select+.form-control,.input-group>.form-control+.custom-file,.input-group>.form-control+.custom-select,.input-group>.form-control+.form-control{margin-left:-1px}.input-group>.custom-select:not(:last-child),.input-group>.form-control:not(:last-child){border-top-right-radius:0;border-bottom-right-radius:0}.input-group>.custom-select:not(:first-child),.input-group>.form-control:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}.input-group>.custom-file{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center}.input-group>.custom-file:not(:last-child) .custom-file-label,.input-group>.custom-file:not(:last-child) .custom-file-label::after{border-top-right-radius:0;border-bottom-right-radius:0}.input-group>.custom-file:not(:first-child) .custom-file-label{border-top-left-radius:0;border-bottom-left-radius:0}.input-group-append,.input-group-prepend{display:-ms-flexbox;display:flex}.input-group-append .btn,.input-group-prepend .btn{position:relative;z-index:2}.input-group-append .btn+.btn,.input-group-append .btn+.input-group-text,.input-group-append .input-group-text+.btn,.input-group-append .input-group-text+.input-group-text,.input-group-prepend .btn+.btn,.input-group-prepend .btn+.input-group-text,.input-group-prepend .input-group-text+.btn,.input-group-prepend .input-group-text+.input-group-text{margin-left:-1px}.input-group-prepend{margin-right:-1px}.input-group-append{margin-left:-1px}.input-group-text{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;padding:.375rem .75rem;margin-bottom:0;font-size:1rem;font-weight:400;line-height:1.5;color:#495057;text-align:center;white-space:nowrap;background-color:#e9ecef;border:1px solid #ced4da;border-radius:.25rem}.input-group-text input[type=checkbox],.input-group-text input[type=radio]{margin-top:0}.input-group>.input-group-append:last-child>.btn:not(:last-child):not(.dropdown-toggle),.input-group>.input-group-append:last-child>.input-group-text:not(:last-child),.input-group>.input-group-append:not(:last-child)>.btn,.input-group>.input-group-append:not(:last-child)>.input-group-text,.input-group>.input-group-prepend>.btn,.input-group>.input-group-prepend>.input-group-text{border-top-right-radius:0;border-bottom-right-radius:0}.input-group>.input-group-append>.btn,.input-group>.input-group-append>.input-group-text,.input-group>.input-group-prepend:first-child>.btn:not(:first-child),.input-group>.input-group-prepend:first-child>.input-group-text:not(:first-child),.input-group>.input-group-prepend:not(:first-child)>.btn,.input-group>.input-group-prepend:not(:first-child)>.input-group-text{border-top-left-radius:0;border-bottom-left-radius:0}.custom-control{position:relative;display:block;min-height:1.5rem;padding-left:1.5rem}.custom-control-inline{display:-ms-inline-flexbox;display:inline-flex;margin-right:1rem}.custom-control-input{position:absolute;z-index:-1;opacity:0}.custom-control-input:checked~.custom-control-label::before{color:#fff;background-color:#007bff}.custom-control-input:focus~.custom-control-label::before{box-shadow:0 0 0 1px #fff,0 0 0 .2rem rgba(0,123,255,.25)}.custom-control-input:active~.custom-control-label::before{color:#fff;background-color:#b3d7ff}.custom-control-input:disabled~.custom-control-label{color:#6c757d}.custom-control-input:disabled~.custom-control-label::before{background-color:#e9ecef}.custom-control-label{position:relative;margin-bottom:0}.custom-control-label::before{position:absolute;top:.25rem;left:-1.5rem;display:block;width:1rem;height:1rem;pointer-events:none;content:"";-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;background-color:#dee2e6}.custom-control-label::after{position:absolute;top:.25rem;left:-1.5rem;display:block;width:1rem;height:1rem;content:"";background-repeat:no-repeat;background-position:center center;background-size:50% 50%}.custom-checkbox .custom-control-label::before{border-radius:.25rem}.custom-checkbox .custom-control-input:checked~.custom-control-label::before{background-color:#007bff}.custom-checkbox .custom-control-input:checked~.custom-control-label::after{background-image:url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3E%3C/svg%3E")}.custom-checkbox .custom-control-input:indeterminate~.custom-control-label::before{background-color:#007bff}.custom-checkbox .custom-control-input:indeterminate~.custom-control-label::after{background-image:url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 4'%3E%3Cpath stroke='%23fff' d='M0 2h4'/%3E%3C/svg%3E")}.custom-checkbox .custom-control-input:disabled:checked~.custom-control-label::before{background-color:rgba(0,123,255,.5)}.custom-checkbox .custom-control-input:disabled:indeterminate~.custom-control-label::before{background-color:rgba(0,123,255,.5)}.custom-radio .custom-control-label::before{border-radius:50%}.custom-radio .custom-control-input:checked~.custom-control-label::before{background-color:#007bff}.custom-radio .custom-control-input:checked~.custom-control-label::after{background-image:url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3E%3Ccircle r='3' fill='%23fff'/%3E%3C/svg%3E")}.custom-radio .custom-control-input:disabled:checked~.custom-control-label::before{background-color:rgba(0,123,255,.5)}.custom-select{display:inline-block;width:100%;height:calc(2.25rem + 2px);padding:.375rem 1.75rem .375rem .75rem;line-height:1.5;color:#495057;vertical-align:middle;background:#fff url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3E%3Cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3E%3C/svg%3E") no-repeat right .75rem center;background-size:8px 10px;border:1px solid #ced4da;border-radius:.25rem;-webkit-appearance:none;-moz-appearance:none;appearance:none}.custom-select:focus{border-color:#80bdff;outline:0;box-shadow:inset 0 1px 2px rgba(0,0,0,.075),0 0 5px rgba(128,189,255,.5)}.custom-select:focus::-ms-value{color:#495057;background-color:#fff}.custom-select[multiple],.custom-select[size]:not([size="1"]){height:auto;padding-right:.75rem;background-image:none}.custom-select:disabled{color:#6c757d;background-color:#e9ecef}.custom-select::-ms-expand{opacity:0}.custom-select-sm{height:calc(1.8125rem + 2px);padding-top:.375rem;padding-bottom:.375rem;font-size:75%}.custom-select-lg{height:calc(2.875rem + 2px);padding-top:.375rem;padding-bottom:.375rem;font-size:125%}.custom-file{position:relative;display:inline-block;width:100%;height:calc(2.25rem + 2px);margin-bottom:0}.custom-file-input{position:relative;z-index:2;width:100%;height:calc(2.25rem + 2px);margin:0;opacity:0}.custom-file-input:focus~.custom-file-label{border-color:#80bdff;box-shadow:0 0 0 .2rem rgba(0,123,255,.25)}.custom-file-input:focus~.custom-file-label::after{border-color:#80bdff}.custom-file-input:lang(en)~.custom-file-label::after{content:"Browse"}.custom-file-label{position:absolute;top:0;right:0;left:0;z-index:1;height:calc(2.25rem + 2px);padding:.375rem .75rem;line-height:1.5;color:#495057;background-color:#fff;border:1px solid #ced4da;border-radius:.25rem}.custom-file-label::after{position:absolute;top:0;right:0;bottom:0;z-index:3;display:block;height:2.25rem;padding:.375rem .75rem;line-height:1.5;color:#495057;content:"Browse";background-color:#e9ecef;border-left:1px solid #ced4da;border-radius:0 .25rem .25rem 0}.custom-range{width:100%;padding-left:0;background-color:transparent;-webkit-appearance:none;-moz-appearance:none;appearance:none}.custom-range:focus{outline:0}.custom-range::-moz-focus-outer{border:0}.custom-range::-webkit-slider-thumb{width:1rem;height:1rem;margin-top:-.25rem;background-color:#007bff;border:0;border-radius:1rem;-webkit-appearance:none;appearance:none}.custom-range::-webkit-slider-thumb:focus{outline:0;box-shadow:0 0 0 1px #fff,0 0 0 .2rem rgba(0,123,255,.25)}.custom-range::-webkit-slider-thumb:active{background-color:#b3d7ff}.custom-range::-webkit-slider-runnable-track{width:100%;height:.5rem;color:transparent;cursor:pointer;background-color:#dee2e6;border-color:transparent;border-radius:1rem}.custom-range::-moz-range-thumb{width:1rem;height:1rem;background-color:#007bff;border:0;border-radius:1rem;-moz-appearance:none;appearance:none}.custom-range::-moz-range-thumb:focus{outline:0;box-shadow:0 0 0 1px #fff,0 0 0 .2rem rgba(0,123,255,.25)}.custom-range::-moz-range-thumb:active{background-color:#b3d7ff}.custom-range::-moz-range-track{width:100%;height:.5rem;color:transparent;cursor:pointer;background-color:#dee2e6;border-color:transparent;border-radius:1rem}.custom-range::-ms-thumb{width:1rem;height:1rem;background-color:#007bff;border:0;border-radius:1rem;appearance:none}.custom-range::-ms-thumb:focus{outline:0;box-shadow:0 0 0 1px #fff,0 0 0 .2rem rgba(0,123,255,.25)}.custom-range::-ms-thumb:active{background-color:#b3d7ff}.custom-range::-ms-track{width:100%;height:.5rem;color:transparent;cursor:pointer;background-color:transparent;border-color:transparent;border-width:.5rem}.custom-range::-ms-fill-lower{background-color:#dee2e6;border-radius:1rem}.custom-range::-ms-fill-upper{margin-right:15px;background-color:#dee2e6;border-radius:1rem}.nav{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;padding-left:0;margin-bottom:0;list-style:none}.nav-link{display:block;padding:.5rem 1rem}.nav-link:focus,.nav-link:hover{text-decoration:none}.nav-link.disabled{color:#6c757d}.nav-tabs{border-bottom:1px solid #dee2e6}.nav-tabs .nav-item{margin-bottom:-1px}.nav-tabs .nav-link{border:1px solid transparent;border-top-left-radius:.25rem;border-top-right-radius:.25rem}.nav-tabs .nav-link:focus,.nav-tabs .nav-link:hover{border-color:#e9ecef #e9ecef #dee2e6}.nav-tabs .nav-link.disabled{color:#6c757d;background-color:transparent;border-color:transparent}.nav-tabs .nav-item.show .nav-link,.nav-tabs .nav-link.active{color:#495057;background-color:#fff;border-color:#dee2e6 #dee2e6 #fff}.nav-tabs .dropdown-menu{margin-top:-1px;border-top-left-radius:0;border-top-right-radius:0}.nav-pills .nav-link{border-radius:.25rem}.nav-pills .nav-link.active,.nav-pills .show>.nav-link{color:#fff;background-color:#007bff}.nav-fill .nav-item{-ms-flex:1 1 auto;flex:1 1 auto;text-align:center}.nav-justified .nav-item{-ms-flex-preferred-size:0;flex-basis:0;-ms-flex-positive:1;flex-grow:1;text-align:center}.tab-content>.tab-pane{display:none}.tab-content>.active{display:block}.navbar{position:relative;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-ms-flex-align:center;align-items:center;-ms-flex-pack:justify;justify-content:space-between;padding:.5rem 1rem}.navbar>.container,.navbar>.container-fluid{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-ms-flex-align:center;align-items:center;-ms-flex-pack:justify;justify-content:space-between}.navbar-brand{display:inline-block;padding-top:.3125rem;padding-bottom:.3125rem;margin-right:1rem;font-size:1.25rem;line-height:inherit;white-space:nowrap}.navbar-brand:focus,.navbar-brand:hover{text-decoration:none}.navbar-nav{display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;padding-left:0;margin-bottom:0;list-style:none}.navbar-nav .nav-link{padding-right:0;padding-left:0}.navbar-nav .dropdown-menu{position:static;float:none}.navbar-text{display:inline-block;padding-top:.5rem;padding-bottom:.5rem}.navbar-collapse{-ms-flex-preferred-size:100%;flex-basis:100%;-ms-flex-positive:1;flex-grow:1;-ms-flex-align:center;align-items:center}.navbar-toggler{padding:.25rem .75rem;font-size:1.25rem;line-height:1;background-color:transparent;border:1px solid transparent;border-radius:.25rem}.navbar-toggler:focus,.navbar-toggler:hover{text-decoration:none}.navbar-toggler:not(:disabled):not(.disabled){cursor:pointer}.navbar-toggler-icon{display:inline-block;width:1.5em;height:1.5em;vertical-align:middle;content:"";background:no-repeat center center;background-size:100% 100%}@media (max-width:575.98px){.navbar-expand-sm>.container,.navbar-expand-sm>.container-fluid{padding-right:0;padding-left:0}}@media (min-width:576px){.navbar-expand-sm{-ms-flex-flow:row nowrap;flex-flow:row nowrap;-ms-flex-pack:start;justify-content:flex-start}.navbar-expand-sm .navbar-nav{-ms-flex-direction:row;flex-direction:row}.navbar-expand-sm .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-sm .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-sm>.container,.navbar-expand-sm>.container-fluid{-ms-flex-wrap:nowrap;flex-wrap:nowrap}.navbar-expand-sm .navbar-collapse{display:-ms-flexbox!important;display:flex!important;-ms-flex-preferred-size:auto;flex-basis:auto}.navbar-expand-sm .navbar-toggler{display:none}}@media (max-width:767.98px){.navbar-expand-md>.container,.navbar-expand-md>.container-fluid{padding-right:0;padding-left:0}}@media (min-width:768px){.navbar-expand-md{-ms-flex-flow:row nowrap;flex-flow:row nowrap;-ms-flex-pack:start;justify-content:flex-start}.navbar-expand-md .navbar-nav{-ms-flex-direction:row;flex-direction:row}.navbar-expand-md .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-md .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-md>.container,.navbar-expand-md>.container-fluid{-ms-flex-wrap:nowrap;flex-wrap:nowrap}.navbar-expand-md .navbar-collapse{display:-ms-flexbox!important;display:flex!important;-ms-flex-preferred-size:auto;flex-basis:auto}.navbar-expand-md .navbar-toggler{display:none}}@media (max-width:991.98px){.navbar-expand-lg>.container,.navbar-expand-lg>.container-fluid{padding-right:0;padding-left:0}}@media (min-width:992px){.navbar-expand-lg{-ms-flex-flow:row nowrap;flex-flow:row nowrap;-ms-flex-pack:start;justify-content:flex-start}.navbar-expand-lg .navbar-nav{-ms-flex-direction:row;flex-direction:row}.navbar-expand-lg .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-lg .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-lg>.container,.navbar-expand-lg>.container-fluid{-ms-flex-wrap:nowrap;flex-wrap:nowrap}.navbar-expand-lg .navbar-collapse{display:-ms-flexbox!important;display:flex!important;-ms-flex-preferred-size:auto;flex-basis:auto}.navbar-expand-lg .navbar-toggler{display:none}}@media (max-width:1199.98px){.navbar-expand-xl>.container,.navbar-expand-xl>.container-fluid{padding-right:0;padding-left:0}}@media (min-width:1200px){.navbar-expand-xl{-ms-flex-flow:row nowrap;flex-flow:row nowrap;-ms-flex-pack:start;justify-content:flex-start}.navbar-expand-xl .navbar-nav{-ms-flex-direction:row;flex-direction:row}.navbar-expand-xl .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-xl .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-xl>.container,.navbar-expand-xl>.container-fluid{-ms-flex-wrap:nowrap;flex-wrap:nowrap}.navbar-expand-xl .navbar-collapse{display:-ms-flexbox!important;display:flex!important;-ms-flex-preferred-size:auto;flex-basis:auto}.navbar-expand-xl .navbar-toggler{display:none}}.navbar-expand{-ms-flex-flow:row nowrap;flex-flow:row nowrap;-ms-flex-pack:start;justify-content:flex-start}.navbar-expand>.container,.navbar-expand>.container-fluid{padding-right:0;padding-left:0}.navbar-expand .navbar-nav{-ms-flex-direction:row;flex-direction:row}.navbar-expand .navbar-nav .dropdown-menu{position:absolute}.navbar-expand .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand>.container,.navbar-expand>.container-fluid{-ms-flex-wrap:nowrap;flex-wrap:nowrap}.navbar-expand .navbar-collapse{display:-ms-flexbox!important;display:flex!important;-ms-flex-preferred-size:auto;flex-basis:auto}.navbar-expand .navbar-toggler{display:none}.navbar-light .navbar-brand{color:rgba(0,0,0,.9)}.navbar-light .navbar-brand:focus,.navbar-light .navbar-brand:hover{color:rgba(0,0,0,.9)}.navbar-light .navbar-nav .nav-link{color:rgba(0,0,0,.5)}.navbar-light .navbar-nav .nav-link:focus,.navbar-light .navbar-nav .nav-link:hover{color:rgba(0,0,0,.7)}.navbar-light .navbar-nav .nav-link.disabled{color:rgba(0,0,0,.3)}.navbar-light .navbar-nav .active>.nav-link,.navbar-light .navbar-nav .nav-link.active,.navbar-light .navbar-nav .nav-link.show,.navbar-light .navbar-nav .show>.nav-link{color:rgba(0,0,0,.9)}.navbar-light .navbar-toggler{color:rgba(0,0,0,.5);border-color:rgba(0,0,0,.1)}.navbar-light .navbar-toggler-icon{background-image:url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(0, 0, 0, 0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E")}.navbar-light .navbar-text{color:rgba(0,0,0,.5)}.navbar-light .navbar-text a{color:rgba(0,0,0,.9)}.navbar-light .navbar-text a:focus,.navbar-light .navbar-text a:hover{color:rgba(0,0,0,.9)}.navbar-dark .navbar-brand{color:#fff}.navbar-dark .navbar-brand:focus,.navbar-dark .navbar-brand:hover{color:#fff}.navbar-dark .navbar-nav .nav-link{color:rgba(255,255,255,.5)}.navbar-dark .navbar-nav .nav-link:focus,.navbar-dark .navbar-nav .nav-link:hover{color:rgba(255,255,255,.75)}.navbar-dark .navbar-nav .nav-link.disabled{color:rgba(255,255,255,.25)}.navbar-dark .navbar-nav .active>.nav-link,.navbar-dark .navbar-nav .nav-link.active,.navbar-dark .navbar-nav .nav-link.show,.navbar-dark .navbar-nav .show>.nav-link{color:#fff}.navbar-dark .navbar-toggler{color:rgba(255,255,255,.5);border-color:rgba(255,255,255,.1)}.navbar-dark .navbar-toggler-icon{background-image:url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255, 255, 255, 0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E")}.navbar-dark .navbar-text{color:rgba(255,255,255,.5)}.navbar-dark .navbar-text a{color:#fff}.navbar-dark .navbar-text a:focus,.navbar-dark .navbar-text a:hover{color:#fff}.card{position:relative;display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;min-width:0;word-wrap:break-word;background-color:#fff;background-clip:border-box;border:1px solid rgba(0,0,0,.125);border-radius:.25rem}.card>hr{margin-right:0;margin-left:0}.card>.list-group:first-child .list-group-item:first-child{border-top-left-radius:.25rem;border-top-right-radius:.25rem}.card>.list-group:last-child .list-group-item:last-child{border-bottom-right-radius:.25rem;border-bottom-left-radius:.25rem}.card-body{-ms-flex:1 1 auto;flex:1 1 auto;padding:1.25rem}.card-title{margin-bottom:.75rem}.card-subtitle{margin-top:-.375rem;margin-bottom:0}.card-text:last-child{margin-bottom:0}.card-link:hover{text-decoration:none}.card-link+.card-link{margin-left:1.25rem}.card-header{padding:.75rem 1.25rem;margin-bottom:0;background-color:rgba(0,0,0,.03);border-bottom:1px solid rgba(0,0,0,.125)}.card-header:first-child{border-radius:calc(.25rem - 1px) calc(.25rem - 1px) 0 0}.card-header+.list-group .list-group-item:first-child{border-top:0}.card-footer{padding:.75rem 1.25rem;background-color:rgba(0,0,0,.03);border-top:1px solid rgba(0,0,0,.125)}.card-footer:last-child{border-radius:0 0 calc(.25rem - 1px) calc(.25rem - 1px)}.card-header-tabs{margin-right:-.625rem;margin-bottom:-.75rem;margin-left:-.625rem;border-bottom:0}.card-header-pills{margin-right:-.625rem;margin-left:-.625rem}.card-img-overlay{position:absolute;top:0;right:0;bottom:0;left:0;padding:1.25rem}.card-img{width:100%;border-radius:calc(.25rem - 1px)}.card-img-top{width:100%;border-top-left-radius:calc(.25rem - 1px);border-top-right-radius:calc(.25rem - 1px)}.card-img-bottom{width:100%;border-bottom-right-radius:calc(.25rem - 1px);border-bottom-left-radius:calc(.25rem - 1px)}.card-deck{display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column}.card-deck .card{margin-bottom:15px}@media (min-width:576px){.card-deck{-ms-flex-flow:row wrap;flex-flow:row wrap;margin-right:-15px;margin-left:-15px}.card-deck .card{display:-ms-flexbox;display:flex;-ms-flex:1 0 0%;flex:1 0 0%;-ms-flex-direction:column;flex-direction:column;margin-right:15px;margin-bottom:0;margin-left:15px}}.card-group{display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column}.card-group>.card{margin-bottom:15px}@media (min-width:576px){.card-group{-ms-flex-flow:row wrap;flex-flow:row wrap}.card-group>.card{-ms-flex:1 0 0%;flex:1 0 0%;margin-bottom:0}.card-group>.card+.card{margin-left:0;border-left:0}.card-group>.card:first-child{border-top-right-radius:0;border-bottom-right-radius:0}.card-group>.card:first-child .card-header,.card-group>.card:first-child .card-img-top{border-top-right-radius:0}.card-group>.card:first-child .card-footer,.card-group>.card:first-child .card-img-bottom{border-bottom-right-radius:0}.card-group>.card:last-child{border-top-left-radius:0;border-bottom-left-radius:0}.card-group>.card:last-child .card-header,.card-group>.card:last-child .card-img-top{border-top-left-radius:0}.card-group>.card:last-child .card-footer,.card-group>.card:last-child .card-img-bottom{border-bottom-left-radius:0}.card-group>.card:only-child{border-radius:.25rem}.card-group>.card:only-child .card-header,.card-group>.card:only-child .card-img-top{border-top-left-radius:.25rem;border-top-right-radius:.25rem}.card-group>.card:only-child .card-footer,.card-group>.card:only-child .card-img-bottom{border-bottom-right-radius:.25rem;border-bottom-left-radius:.25rem}.card-group>.card:not(:first-child):not(:last-child):not(:only-child){border-radius:0}.card-group>.card:not(:first-child):not(:last-child):not(:only-child) .card-footer,.card-group>.card:not(:first-child):not(:last-child):not(:only-child) .card-header,.card-group>.card:not(:first-child):not(:last-child):not(:only-child) .card-img-bottom,.card-group>.card:not(:first-child):not(:last-child):not(:only-child) .card-img-top{border-radius:0}}.card-columns .card{margin-bottom:.75rem}@media (min-width:576px){.card-columns{-webkit-column-count:3;-moz-column-count:3;column-count:3;-webkit-column-gap:1.25rem;-moz-column-gap:1.25rem;column-gap:1.25rem;orphans:1;widows:1}.card-columns .card{display:inline-block;width:100%}}.accordion .card:not(:first-of-type):not(:last-of-type){border-bottom:0;border-radius:0}.accordion .card:not(:first-of-type) .card-header:first-child{border-radius:0}.accordion .card:first-of-type{border-bottom:0;border-bottom-right-radius:0;border-bottom-left-radius:0}.accordion .card:last-of-type{border-top-left-radius:0;border-top-right-radius:0}.breadcrumb{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;padding:.75rem 1rem;margin-bottom:1rem;list-style:none;background-color:#e9ecef;border-radius:.25rem}.breadcrumb-item+.breadcrumb-item{padding-left:.5rem}.breadcrumb-item+.breadcrumb-item::before{display:inline-block;padding-right:.5rem;color:#6c757d;content:"/"}.breadcrumb-item+.breadcrumb-item:hover::before{text-decoration:underline}.breadcrumb-item+.breadcrumb-item:hover::before{text-decoration:none}.breadcrumb-item.active{color:#6c757d}.pagination{display:-ms-flexbox;display:flex;padding-left:0;list-style:none;border-radius:.25rem}.page-link{position:relative;display:block;padding:.5rem .75rem;margin-left:-1px;line-height:1.25;color:#007bff;background-color:#fff;border:1px solid #dee2e6}.page-link:hover{z-index:2;color:#0056b3;text-decoration:none;background-color:#e9ecef;border-color:#dee2e6}.page-link:focus{z-index:2;outline:0;box-shadow:0 0 0 .2rem rgba(0,123,255,.25)}.page-link:not(:disabled):not(.disabled){cursor:pointer}.page-item:first-child .page-link{margin-left:0;border-top-left-radius:.25rem;border-bottom-left-radius:.25rem}.page-item:last-child .page-link{border-top-right-radius:.25rem;border-bottom-right-radius:.25rem}.page-item.active .page-link{z-index:1;color:#fff;background-color:#007bff;border-color:#007bff}.page-item.disabled .page-link{color:#6c757d;pointer-events:none;cursor:auto;background-color:#fff;border-color:#dee2e6}.pagination-lg .page-link{padding:.75rem 1.5rem;font-size:1.25rem;line-height:1.5}.pagination-lg .page-item:first-child .page-link{border-top-left-radius:.3rem;border-bottom-left-radius:.3rem}.pagination-lg .page-item:last-child .page-link{border-top-right-radius:.3rem;border-bottom-right-radius:.3rem}.pagination-sm .page-link{padding:.25rem .5rem;font-size:.875rem;line-height:1.5}.pagination-sm .page-item:first-child .page-link{border-top-left-radius:.2rem;border-bottom-left-radius:.2rem}.pagination-sm .page-item:last-child .page-link{border-top-right-radius:.2rem;border-bottom-right-radius:.2rem}.badge{display:inline-block;padding:.25em .4em;font-size:75%;font-weight:700;line-height:1;text-align:center;white-space:nowrap;vertical-align:baseline;border-radius:.25rem}.badge:empty{display:none}.btn .badge{position:relative;top:-1px}.badge-pill{padding-right:.6em;padding-left:.6em;border-radius:10rem}.badge-primary{color:#fff;background-color:#007bff}.badge-primary[href]:focus,.badge-primary[href]:hover{color:#fff;text-decoration:none;background-color:#0062cc}.badge-secondary{color:#fff;background-color:#6c757d}.badge-secondary[href]:focus,.badge-secondary[href]:hover{color:#fff;text-decoration:none;background-color:#545b62}.badge-success{color:#fff;background-color:#28a745}.badge-success[href]:focus,.badge-success[href]:hover{color:#fff;text-decoration:none;background-color:#1e7e34}.badge-info{color:#fff;background-color:#17a2b8}.badge-info[href]:focus,.badge-info[href]:hover{color:#fff;text-decoration:none;background-color:#117a8b}.badge-warning{color:#212529;background-color:#ffc107}.badge-warning[href]:focus,.badge-warning[href]:hover{color:#212529;text-decoration:none;background-color:#d39e00}.badge-danger{color:#fff;background-color:#dc3545}.badge-danger[href]:focus,.badge-danger[href]:hover{color:#fff;text-decoration:none;background-color:#bd2130}.badge-light{color:#212529;background-color:#f8f9fa}.badge-light[href]:focus,.badge-light[href]:hover{color:#212529;text-decoration:none;background-color:#dae0e5}.badge-dark{color:#fff;background-color:#343a40}.badge-dark[href]:focus,.badge-dark[href]:hover{color:#fff;text-decoration:none;background-color:#1d2124}.jumbotron{padding:2rem 1rem;margin-bottom:2rem;background-color:#e9ecef;border-radius:.3rem}@media (min-width:576px){.jumbotron{padding:4rem 2rem}}.jumbotron-fluid{padding-right:0;padding-left:0;border-radius:0}.alert{position:relative;padding:.75rem 1.25rem;margin-bottom:1rem;border:1px solid transparent;border-radius:.25rem}.alert-heading{color:inherit}.alert-link{font-weight:700}.alert-dismissible{padding-right:4rem}.alert-dismissible .close{position:absolute;top:0;right:0;padding:.75rem 1.25rem;color:inherit}.alert-primary{color:#004085;background-color:#cce5ff;border-color:#b8daff}.alert-primary hr{border-top-color:#9fcdff}.alert-primary .alert-link{color:#002752}.alert-secondary{color:#383d41;background-color:#e2e3e5;border-color:#d6d8db}.alert-secondary hr{border-top-color:#c8cbcf}.alert-secondary .alert-link{color:#202326}.alert-success{color:#155724;background-color:#d4edda;border-color:#c3e6cb}.alert-success hr{border-top-color:#b1dfbb}.alert-success .alert-link{color:#0b2e13}.alert-info{color:#0c5460;background-color:#d1ecf1;border-color:#bee5eb}.alert-info hr{border-top-color:#abdde5}.alert-info .alert-link{color:#062c33}.alert-warning{color:#856404;background-color:#fff3cd;border-color:#ffeeba}.alert-warning hr{border-top-color:#ffe8a1}.alert-warning .alert-link{color:#533f03}.alert-danger{color:#721c24;background-color:#f8d7da;border-color:#f5c6cb}.alert-danger hr{border-top-color:#f1b0b7}.alert-danger .alert-link{color:#491217}.alert-light{color:#818182;background-color:#fefefe;border-color:#fdfdfe}.alert-light hr{border-top-color:#ececf6}.alert-light .alert-link{color:#686868}.alert-dark{color:#1b1e21;background-color:#d6d8d9;border-color:#c6c8ca}.alert-dark hr{border-top-color:#b9bbbe}.alert-dark .alert-link{color:#040505}@-webkit-keyframes progress-bar-stripes{from{background-position:1rem 0}to{background-position:0 0}}@keyframes progress-bar-stripes{from{background-position:1rem 0}to{background-position:0 0}}.progress{display:-ms-flexbox;display:flex;height:1rem;overflow:hidden;font-size:.75rem;background-color:#e9ecef;border-radius:.25rem}.progress-bar{display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;-ms-flex-pack:center;justify-content:center;color:#fff;text-align:center;white-space:nowrap;background-color:#007bff;transition:width .6s ease}@media screen and (prefers-reduced-motion:reduce){.progress-bar{transition:none}}.progress-bar-striped{background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-size:1rem 1rem}.progress-bar-animated{-webkit-animation:progress-bar-stripes 1s linear infinite;animation:progress-bar-stripes 1s linear infinite}.media{display:-ms-flexbox;display:flex;-ms-flex-align:start;align-items:flex-start}.media-body{-ms-flex:1;flex:1}.list-group{display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;padding-left:0;margin-bottom:0}.list-group-item-action{width:100%;color:#495057;text-align:inherit}.list-group-item-action:focus,.list-group-item-action:hover{color:#495057;text-decoration:none;background-color:#f8f9fa}.list-group-item-action:active{color:#212529;background-color:#e9ecef}.list-group-item{position:relative;display:block;padding:.75rem 1.25rem;margin-bottom:-1px;background-color:#fff;border:1px solid rgba(0,0,0,.125)}.list-group-item:first-child{border-top-left-radius:.25rem;border-top-right-radius:.25rem}.list-group-item:last-child{margin-bottom:0;border-bottom-right-radius:.25rem;border-bottom-left-radius:.25rem}.list-group-item:focus,.list-group-item:hover{z-index:1;text-decoration:none}.list-group-item.disabled,.list-group-item:disabled{color:#6c757d;background-color:#fff}.list-group-item.active{z-index:2;color:#fff;background-color:#007bff;border-color:#007bff}.list-group-flush .list-group-item{border-right:0;border-left:0;border-radius:0}.list-group-flush:first-child .list-group-item:first-child{border-top:0}.list-group-flush:last-child .list-group-item:last-child{border-bottom:0}.list-group-item-primary{color:#004085;background-color:#b8daff}.list-group-item-primary.list-group-item-action:focus,.list-group-item-primary.list-group-item-action:hover{color:#004085;background-color:#9fcdff}.list-group-item-primary.list-group-item-action.active{color:#fff;background-color:#004085;border-color:#004085}.list-group-item-secondary{color:#383d41;background-color:#d6d8db}.list-group-item-secondary.list-group-item-action:focus,.list-group-item-secondary.list-group-item-action:hover{color:#383d41;background-color:#c8cbcf}.list-group-item-secondary.list-group-item-action.active{color:#fff;background-color:#383d41;border-color:#383d41}.list-group-item-success{color:#155724;background-color:#c3e6cb}.list-group-item-success.list-group-item-action:focus,.list-group-item-success.list-group-item-action:hover{color:#155724;background-color:#b1dfbb}.list-group-item-success.list-group-item-action.active{color:#fff;background-color:#155724;border-color:#155724}.list-group-item-info{color:#0c5460;background-color:#bee5eb}.list-group-item-info.list-group-item-action:focus,.list-group-item-info.list-group-item-action:hover{color:#0c5460;background-color:#abdde5}.list-group-item-info.list-group-item-action.active{color:#fff;background-color:#0c5460;border-color:#0c5460}.list-group-item-warning{color:#856404;background-color:#ffeeba}.list-group-item-warning.list-group-item-action:focus,.list-group-item-warning.list-group-item-action:hover{color:#856404;background-color:#ffe8a1}.list-group-item-warning.list-group-item-action.active{color:#fff;background-color:#856404;border-color:#856404}.list-group-item-danger{color:#721c24;background-color:#f5c6cb}.list-group-item-danger.list-group-item-action:focus,.list-group-item-danger.list-group-item-action:hover{color:#721c24;background-color:#f1b0b7}.list-group-item-danger.list-group-item-action.active{color:#fff;background-color:#721c24;border-color:#721c24}.list-group-item-light{color:#818182;background-color:#fdfdfe}.list-group-item-light.list-group-item-action:focus,.list-group-item-light.list-group-item-action:hover{color:#818182;background-color:#ececf6}.list-group-item-light.list-group-item-action.active{color:#fff;background-color:#818182;border-color:#818182}.list-group-item-dark{color:#1b1e21;background-color:#c6c8ca}.list-group-item-dark.list-group-item-action:focus,.list-group-item-dark.list-group-item-action:hover{color:#1b1e21;background-color:#b9bbbe}.list-group-item-dark.list-group-item-action.active{color:#fff;background-color:#1b1e21;border-color:#1b1e21}.close{float:right;font-size:1.5rem;font-weight:700;line-height:1;color:#000;text-shadow:0 1px 0 #fff;opacity:.5}.close:focus,.close:hover{color:#000;text-decoration:none;opacity:.75}.close:not(:disabled):not(.disabled){cursor:pointer}button.close{padding:0;background-color:transparent;border:0;-webkit-appearance:none}.modal-open{overflow:hidden}.modal{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1050;display:none;overflow:hidden;outline:0}.modal-open .modal{overflow-x:hidden;overflow-y:auto}.modal-dialog{position:relative;width:auto;margin:.5rem;pointer-events:none}.modal.fade .modal-dialog{transition:-webkit-transform .3s ease-out;transition:transform .3s ease-out;transition:transform .3s ease-out,-webkit-transform .3s ease-out;-webkit-transform:translate(0,-25%);transform:translate(0,-25%)}@media screen and (prefers-reduced-motion:reduce){.modal.fade .modal-dialog{transition:none}}.modal.show .modal-dialog{-webkit-transform:translate(0,0);transform:translate(0,0)}.modal-dialog-centered{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;min-height:calc(100% - (.5rem * 2))}.modal-content{position:relative;display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;width:100%;pointer-events:auto;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,.2);border-radius:.3rem;outline:0}.modal-backdrop{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1040;background-color:#000}.modal-backdrop.fade{opacity:0}.modal-backdrop.show{opacity:.5}.modal-header{display:-ms-flexbox;display:flex;-ms-flex-align:start;align-items:flex-start;-ms-flex-pack:justify;justify-content:space-between;padding:1rem;border-bottom:1px solid #e9ecef;border-top-left-radius:.3rem;border-top-right-radius:.3rem}.modal-header .close{padding:1rem;margin:-1rem -1rem -1rem auto}.modal-title{margin-bottom:0;line-height:1.5}.modal-body{position:relative;-ms-flex:1 1 auto;flex:1 1 auto;padding:1rem}.modal-footer{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;-ms-flex-pack:end;justify-content:flex-end;padding:1rem;border-top:1px solid #e9ecef}.modal-footer>:not(:first-child){margin-left:.25rem}.modal-footer>:not(:last-child){margin-right:.25rem}.modal-scrollbar-measure{position:absolute;top:-9999px;width:50px;height:50px;overflow:scroll}@media (min-width:576px){.modal-dialog{max-width:500px;margin:1.75rem auto}.modal-dialog-centered{min-height:calc(100% - (1.75rem * 2))}.modal-sm{max-width:300px}}@media (min-width:992px){.modal-lg{max-width:800px}}.tooltip{position:absolute;z-index:1070;display:block;margin:0;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol";font-style:normal;font-weight:400;line-height:1.5;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;word-spacing:normal;white-space:normal;line-break:auto;font-size:.875rem;word-wrap:break-word;opacity:0}.tooltip.show{opacity:.9}.tooltip .arrow{position:absolute;display:block;width:.8rem;height:.4rem}.tooltip .arrow::before{position:absolute;content:"";border-color:transparent;border-style:solid}.bs-tooltip-auto[x-placement^=top],.bs-tooltip-top{padding:.4rem 0}.bs-tooltip-auto[x-placement^=top] .arrow,.bs-tooltip-top .arrow{bottom:0}.bs-tooltip-auto[x-placement^=top] .arrow::before,.bs-tooltip-top .arrow::before{top:0;border-width:.4rem .4rem 0;border-top-color:#000}.bs-tooltip-auto[x-placement^=right],.bs-tooltip-right{padding:0 .4rem}.bs-tooltip-auto[x-placement^=right] .arrow,.bs-tooltip-right .arrow{left:0;width:.4rem;height:.8rem}.bs-tooltip-auto[x-placement^=right] .arrow::before,.bs-tooltip-right .arrow::before{right:0;border-width:.4rem .4rem .4rem 0;border-right-color:#000}.bs-tooltip-auto[x-placement^=bottom],.bs-tooltip-bottom{padding:.4rem 0}.bs-tooltip-auto[x-placement^=bottom] .arrow,.bs-tooltip-bottom .arrow{top:0}.bs-tooltip-auto[x-placement^=bottom] .arrow::before,.bs-tooltip-bottom .arrow::before{bottom:0;border-width:0 .4rem .4rem;border-bottom-color:#000}.bs-tooltip-auto[x-placement^=left],.bs-tooltip-left{padding:0 .4rem}.bs-tooltip-auto[x-placement^=left] .arrow,.bs-tooltip-left .arrow{right:0;width:.4rem;height:.8rem}.bs-tooltip-auto[x-placement^=left] .arrow::before,.bs-tooltip-left .arrow::before{left:0;border-width:.4rem 0 .4rem .4rem;border-left-color:#000}.tooltip-inner{max-width:200px;padding:.25rem .5rem;color:#fff;text-align:center;background-color:#000;border-radius:.25rem}.popover{position:absolute;top:0;left:0;z-index:1060;display:block;max-width:276px;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol";font-style:normal;font-weight:400;line-height:1.5;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;word-spacing:normal;white-space:normal;line-break:auto;font-size:.875rem;word-wrap:break-word;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,.2);border-radius:.3rem}.popover .arrow{position:absolute;display:block;width:1rem;height:.5rem;margin:0 .3rem}.popover .arrow::after,.popover .arrow::before{position:absolute;display:block;content:"";border-color:transparent;border-style:solid}.bs-popover-auto[x-placement^=top],.bs-popover-top{margin-bottom:.5rem}.bs-popover-auto[x-placement^=top] .arrow,.bs-popover-top .arrow{bottom:calc((.5rem + 1px) * -1)}.bs-popover-auto[x-placement^=top] .arrow::after,.bs-popover-auto[x-placement^=top] .arrow::before,.bs-popover-top .arrow::after,.bs-popover-top .arrow::before{border-width:.5rem .5rem 0}.bs-popover-auto[x-placement^=top] .arrow::before,.bs-popover-top .arrow::before{bottom:0;border-top-color:rgba(0,0,0,.25)}.bs-popover-auto[x-placement^=top] .arrow::after,.bs-popover-top .arrow::after{bottom:1px;border-top-color:#fff}.bs-popover-auto[x-placement^=right],.bs-popover-right{margin-left:.5rem}.bs-popover-auto[x-placement^=right] .arrow,.bs-popover-right .arrow{left:calc((.5rem + 1px) * -1);width:.5rem;height:1rem;margin:.3rem 0}.bs-popover-auto[x-placement^=right] .arrow::after,.bs-popover-auto[x-placement^=right] .arrow::before,.bs-popover-right .arrow::after,.bs-popover-right .arrow::before{border-width:.5rem .5rem .5rem 0}.bs-popover-auto[x-placement^=right] .arrow::before,.bs-popover-right .arrow::before{left:0;border-right-color:rgba(0,0,0,.25)}.bs-popover-auto[x-placement^=right] .arrow::after,.bs-popover-right .arrow::after{left:1px;border-right-color:#fff}.bs-popover-auto[x-placement^=bottom],.bs-popover-bottom{margin-top:.5rem}.bs-popover-auto[x-placement^=bottom] .arrow,.bs-popover-bottom .arrow{top:calc((.5rem + 1px) * -1)}.bs-popover-auto[x-placement^=bottom] .arrow::after,.bs-popover-auto[x-placement^=bottom] .arrow::before,.bs-popover-bottom .arrow::after,.bs-popover-bottom .arrow::before{border-width:0 .5rem .5rem .5rem}.bs-popover-auto[x-placement^=bottom] .arrow::before,.bs-popover-bottom .arrow::before{top:0;border-bottom-color:rgba(0,0,0,.25)}.bs-popover-auto[x-placement^=bottom] .arrow::after,.bs-popover-bottom .arrow::after{top:1px;border-bottom-color:#fff}.bs-popover-auto[x-placement^=bottom] .popover-header::before,.bs-popover-bottom .popover-header::before{position:absolute;top:0;left:50%;display:block;width:1rem;margin-left:-.5rem;content:"";border-bottom:1px solid #f7f7f7}.bs-popover-auto[x-placement^=left],.bs-popover-left{margin-right:.5rem}.bs-popover-auto[x-placement^=left] .arrow,.bs-popover-left .arrow{right:calc((.5rem + 1px) * -1);width:.5rem;height:1rem;margin:.3rem 0}.bs-popover-auto[x-placement^=left] .arrow::after,.bs-popover-auto[x-placement^=left] .arrow::before,.bs-popover-left .arrow::after,.bs-popover-left .arrow::before{border-width:.5rem 0 .5rem .5rem}.bs-popover-auto[x-placement^=left] .arrow::before,.bs-popover-left .arrow::before{right:0;border-left-color:rgba(0,0,0,.25)}.bs-popover-auto[x-placement^=left] .arrow::after,.bs-popover-left .arrow::after{right:1px;border-left-color:#fff}.popover-header{padding:.5rem .75rem;margin-bottom:0;font-size:1rem;color:inherit;background-color:#f7f7f7;border-bottom:1px solid #ebebeb;border-top-left-radius:calc(.3rem - 1px);border-top-right-radius:calc(.3rem - 1px)}.popover-header:empty{display:none}.popover-body{padding:.5rem .75rem;color:#212529}.carousel{position:relative}.carousel-inner{position:relative;width:100%;overflow:hidden}.carousel-item{position:relative;display:none;-ms-flex-align:center;align-items:center;width:100%;transition:-webkit-transform .6s ease;transition:transform .6s ease;transition:transform .6s ease,-webkit-transform .6s ease;-webkit-backface-visibility:hidden;backface-visibility:hidden;-webkit-perspective:1000px;perspective:1000px}@media screen and (prefers-reduced-motion:reduce){.carousel-item{transition:none}}.carousel-item-next,.carousel-item-prev,.carousel-item.active{display:block}.carousel-item-next,.carousel-item-prev{position:absolute;top:0}.carousel-item-next.carousel-item-left,.carousel-item-prev.carousel-item-right{-webkit-transform:translateX(0);transform:translateX(0)}@supports ((-webkit-transform-style:preserve-3d) or (transform-style:preserve-3d)){.carousel-item-next.carousel-item-left,.carousel-item-prev.carousel-item-right{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}.active.carousel-item-right,.carousel-item-next{-webkit-transform:translateX(100%);transform:translateX(100%)}@supports ((-webkit-transform-style:preserve-3d) or (transform-style:preserve-3d)){.active.carousel-item-right,.carousel-item-next{-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}}.active.carousel-item-left,.carousel-item-prev{-webkit-transform:translateX(-100%);transform:translateX(-100%)}@supports ((-webkit-transform-style:preserve-3d) or (transform-style:preserve-3d)){.active.carousel-item-left,.carousel-item-prev{-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}}.carousel-fade .carousel-item{opacity:0;transition-duration:.6s;transition-property:opacity}.carousel-fade .carousel-item-next.carousel-item-left,.carousel-fade .carousel-item-prev.carousel-item-right,.carousel-fade .carousel-item.active{opacity:1}.carousel-fade .active.carousel-item-left,.carousel-fade .active.carousel-item-right{opacity:0}.carousel-fade .active.carousel-item-left,.carousel-fade .active.carousel-item-prev,.carousel-fade .carousel-item-next,.carousel-fade .carousel-item-prev,.carousel-fade .carousel-item.active{-webkit-transform:translateX(0);transform:translateX(0)}@supports ((-webkit-transform-style:preserve-3d) or (transform-style:preserve-3d)){.carousel-fade .active.carousel-item-left,.carousel-fade .active.carousel-item-prev,.carousel-fade .carousel-item-next,.carousel-fade .carousel-item-prev,.carousel-fade .carousel-item.active{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}.carousel-control-next,.carousel-control-prev{position:absolute;top:0;bottom:0;display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;-ms-flex-pack:center;justify-content:center;width:15%;color:#fff;text-align:center;opacity:.5}.carousel-control-next:focus,.carousel-control-next:hover,.carousel-control-prev:focus,.carousel-control-prev:hover{color:#fff;text-decoration:none;outline:0;opacity:.9}.carousel-control-prev{left:0}.carousel-control-next{right:0}.carousel-control-next-icon,.carousel-control-prev-icon{display:inline-block;width:20px;height:20px;background:transparent no-repeat center center;background-size:100% 100%}.carousel-control-prev-icon{background-image:url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3E%3Cpath d='M5.25 0l-4 4 4 4 1.5-1.5-2.5-2.5 2.5-2.5-1.5-1.5z'/%3E%3C/svg%3E")}.carousel-control-next-icon{background-image:url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3E%3Cpath d='M2.75 0l-1.5 1.5 2.5 2.5-2.5 2.5 1.5 1.5 4-4-4-4z'/%3E%3C/svg%3E")}.carousel-indicators{position:absolute;right:0;bottom:10px;left:0;z-index:15;display:-ms-flexbox;display:flex;-ms-flex-pack:center;justify-content:center;padding-left:0;margin-right:15%;margin-left:15%;list-style:none}.carousel-indicators li{position:relative;-ms-flex:0 1 auto;flex:0 1 auto;width:30px;height:3px;margin-right:3px;margin-left:3px;text-indent:-999px;cursor:pointer;background-color:rgba(255,255,255,.5)}.carousel-indicators li::before{position:absolute;top:-10px;left:0;display:inline-block;width:100%;height:10px;content:""}.carousel-indicators li::after{position:absolute;bottom:-10px;left:0;display:inline-block;width:100%;height:10px;content:""}.carousel-indicators .active{background-color:#fff}.carousel-caption{position:absolute;right:15%;bottom:20px;left:15%;z-index:10;padding-top:20px;padding-bottom:20px;color:#fff;text-align:center}.align-baseline{vertical-align:baseline!important}.align-top{vertical-align:top!important}.align-middle{vertical-align:middle!important}.align-bottom{vertical-align:bottom!important}.align-text-bottom{vertical-align:text-bottom!important}.align-text-top{vertical-align:text-top!important}.bg-primary{background-color:#007bff!important}a.bg-primary:focus,a.bg-primary:hover,button.bg-primary:focus,button.bg-primary:hover{background-color:#0062cc!important}.bg-secondary{background-color:#6c757d!important}a.bg-secondary:focus,a.bg-secondary:hover,button.bg-secondary:focus,button.bg-secondary:hover{background-color:#545b62!important}.bg-success{background-color:#28a745!important}a.bg-success:focus,a.bg-success:hover,button.bg-success:focus,button.bg-success:hover{background-color:#1e7e34!important}.bg-info{background-color:#17a2b8!important}a.bg-info:focus,a.bg-info:hover,button.bg-info:focus,button.bg-info:hover{background-color:#117a8b!important}.bg-warning{background-color:#ffc107!important}a.bg-warning:focus,a.bg-warning:hover,button.bg-warning:focus,button.bg-warning:hover{background-color:#d39e00!important}.bg-danger{background-color:#dc3545!important}a.bg-danger:focus,a.bg-danger:hover,button.bg-danger:focus,button.bg-danger:hover{background-color:#bd2130!important}.bg-light{background-color:#f8f9fa!important}a.bg-light:focus,a.bg-light:hover,button.bg-light:focus,button.bg-light:hover{background-color:#dae0e5!important}.bg-dark{background-color:#343a40!important}a.bg-dark:focus,a.bg-dark:hover,button.bg-dark:focus,button.bg-dark:hover{background-color:#1d2124!important}.bg-white{background-color:#fff!important}.bg-transparent{background-color:transparent!important}.border{border:1px solid #dee2e6!important}.border-top{border-top:1px solid #dee2e6!important}.border-right{border-right:1px solid #dee2e6!important}.border-bottom{border-bottom:1px solid #dee2e6!important}.border-left{border-left:1px solid #dee2e6!important}.border-0{border:0!important}.border-top-0{border-top:0!important}.border-right-0{border-right:0!important}.border-bottom-0{border-bottom:0!important}.border-left-0{border-left:0!important}.border-primary{border-color:#007bff!important}.border-secondary{border-color:#6c757d!important}.border-success{border-color:#28a745!important}.border-info{border-color:#17a2b8!important}.border-warning{border-color:#ffc107!important}.border-danger{border-color:#dc3545!important}.border-light{border-color:#f8f9fa!important}.border-dark{border-color:#343a40!important}.border-white{border-color:#fff!important}.rounded{border-radius:.25rem!important}.rounded-top{border-top-left-radius:.25rem!important;border-top-right-radius:.25rem!important}.rounded-right{border-top-right-radius:.25rem!important;border-bottom-right-radius:.25rem!important}.rounded-bottom{border-bottom-right-radius:.25rem!important;border-bottom-left-radius:.25rem!important}.rounded-left{border-top-left-radius:.25rem!important;border-bottom-left-radius:.25rem!important}.rounded-circle{border-radius:50%!important}.rounded-0{border-radius:0!important}.clearfix::after{display:block;clear:both;content:""}.d-none{display:none!important}.d-inline{display:inline!important}.d-inline-block{display:inline-block!important}.d-block{display:block!important}.d-table{display:table!important}.d-table-row{display:table-row!important}.d-table-cell{display:table-cell!important}.d-flex{display:-ms-flexbox!important;display:flex!important}.d-inline-flex{display:-ms-inline-flexbox!important;display:inline-flex!important}@media (min-width:576px){.d-sm-none{display:none!important}.d-sm-inline{display:inline!important}.d-sm-inline-block{display:inline-block!important}.d-sm-block{display:block!important}.d-sm-table{display:table!important}.d-sm-table-row{display:table-row!important}.d-sm-table-cell{display:table-cell!important}.d-sm-flex{display:-ms-flexbox!important;display:flex!important}.d-sm-inline-flex{display:-ms-inline-flexbox!important;display:inline-flex!important}}@media (min-width:768px){.d-md-none{display:none!important}.d-md-inline{display:inline!important}.d-md-inline-block{display:inline-block!important}.d-md-block{display:block!important}.d-md-table{display:table!important}.d-md-table-row{display:table-row!important}.d-md-table-cell{display:table-cell!important}.d-md-flex{display:-ms-flexbox!important;display:flex!important}.d-md-inline-flex{display:-ms-inline-flexbox!important;display:inline-flex!important}}@media (min-width:992px){.d-lg-none{display:none!important}.d-lg-inline{display:inline!important}.d-lg-inline-block{display:inline-block!important}.d-lg-block{display:block!important}.d-lg-table{display:table!important}.d-lg-table-row{display:table-row!important}.d-lg-table-cell{display:table-cell!important}.d-lg-flex{display:-ms-flexbox!important;display:flex!important}.d-lg-inline-flex{display:-ms-inline-flexbox!important;display:inline-flex!important}}@media (min-width:1200px){.d-xl-none{display:none!important}.d-xl-inline{display:inline!important}.d-xl-inline-block{display:inline-block!important}.d-xl-block{display:block!important}.d-xl-table{display:table!important}.d-xl-table-row{display:table-row!important}.d-xl-table-cell{display:table-cell!important}.d-xl-flex{display:-ms-flexbox!important;display:flex!important}.d-xl-inline-flex{display:-ms-inline-flexbox!important;display:inline-flex!important}}@media print{.d-print-none{display:none!important}.d-print-inline{display:inline!important}.d-print-inline-block{display:inline-block!important}.d-print-block{display:block!important}.d-print-table{display:table!important}.d-print-table-row{display:table-row!important}.d-print-table-cell{display:table-cell!important}.d-print-flex{display:-ms-flexbox!important;display:flex!important}.d-print-inline-flex{display:-ms-inline-flexbox!important;display:inline-flex!important}}.embed-responsive{position:relative;display:block;width:100%;padding:0;overflow:hidden}.embed-responsive::before{display:block;content:""}.embed-responsive .embed-responsive-item,.embed-responsive embed,.embed-responsive iframe,.embed-responsive object,.embed-responsive video{position:absolute;top:0;bottom:0;left:0;width:100%;height:100%;border:0}.embed-responsive-21by9::before{padding-top:42.857143%}.embed-responsive-16by9::before{padding-top:56.25%}.embed-responsive-4by3::before{padding-top:75%}.embed-responsive-1by1::before{padding-top:100%}.flex-row{-ms-flex-direction:row!important;flex-direction:row!important}.flex-column{-ms-flex-direction:column!important;flex-direction:column!important}.flex-row-reverse{-ms-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.flex-column-reverse{-ms-flex-direction:column-reverse!important;flex-direction:column-reverse!important}.flex-wrap{-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}.flex-nowrap{-ms-flex-wrap:nowrap!important;flex-wrap:nowrap!important}.flex-wrap-reverse{-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}.flex-fill{-ms-flex:1 1 auto!important;flex:1 1 auto!important}.flex-grow-0{-ms-flex-positive:0!important;flex-grow:0!important}.flex-grow-1{-ms-flex-positive:1!important;flex-grow:1!important}.flex-shrink-0{-ms-flex-negative:0!important;flex-shrink:0!important}.flex-shrink-1{-ms-flex-negative:1!important;flex-shrink:1!important}.justify-content-start{-ms-flex-pack:start!important;justify-content:flex-start!important}.justify-content-end{-ms-flex-pack:end!important;justify-content:flex-end!important}.justify-content-center{-ms-flex-pack:center!important;justify-content:center!important}.justify-content-between{-ms-flex-pack:justify!important;justify-content:space-between!important}.justify-content-around{-ms-flex-pack:distribute!important;justify-content:space-around!important}.align-items-start{-ms-flex-align:start!important;align-items:flex-start!important}.align-items-end{-ms-flex-align:end!important;align-items:flex-end!important}.align-items-center{-ms-flex-align:center!important;align-items:center!important}.align-items-baseline{-ms-flex-align:baseline!important;align-items:baseline!important}.align-items-stretch{-ms-flex-align:stretch!important;align-items:stretch!important}.align-content-start{-ms-flex-line-pack:start!important;align-content:flex-start!important}.align-content-end{-ms-flex-line-pack:end!important;align-content:flex-end!important}.align-content-center{-ms-flex-line-pack:center!important;align-content:center!important}.align-content-between{-ms-flex-line-pack:justify!important;align-content:space-between!important}.align-content-around{-ms-flex-line-pack:distribute!important;align-content:space-around!important}.align-content-stretch{-ms-flex-line-pack:stretch!important;align-content:stretch!important}.align-self-auto{-ms-flex-item-align:auto!important;align-self:auto!important}.align-self-start{-ms-flex-item-align:start!important;align-self:flex-start!important}.align-self-end{-ms-flex-item-align:end!important;align-self:flex-end!important}.align-self-center{-ms-flex-item-align:center!important;align-self:center!important}.align-self-baseline{-ms-flex-item-align:baseline!important;align-self:baseline!important}.align-self-stretch{-ms-flex-item-align:stretch!important;align-self:stretch!important}@media (min-width:576px){.flex-sm-row{-ms-flex-direction:row!important;flex-direction:row!important}.flex-sm-column{-ms-flex-direction:column!important;flex-direction:column!important}.flex-sm-row-reverse{-ms-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.flex-sm-column-reverse{-ms-flex-direction:column-reverse!important;flex-direction:column-reverse!important}.flex-sm-wrap{-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}.flex-sm-nowrap{-ms-flex-wrap:nowrap!important;flex-wrap:nowrap!important}.flex-sm-wrap-reverse{-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}.flex-sm-fill{-ms-flex:1 1 auto!important;flex:1 1 auto!important}.flex-sm-grow-0{-ms-flex-positive:0!important;flex-grow:0!important}.flex-sm-grow-1{-ms-flex-positive:1!important;flex-grow:1!important}.flex-sm-shrink-0{-ms-flex-negative:0!important;flex-shrink:0!important}.flex-sm-shrink-1{-ms-flex-negative:1!important;flex-shrink:1!important}.justify-content-sm-start{-ms-flex-pack:start!important;justify-content:flex-start!important}.justify-content-sm-end{-ms-flex-pack:end!important;justify-content:flex-end!important}.justify-content-sm-center{-ms-flex-pack:center!important;justify-content:center!important}.justify-content-sm-between{-ms-flex-pack:justify!important;justify-content:space-between!important}.justify-content-sm-around{-ms-flex-pack:distribute!important;justify-content:space-around!important}.align-items-sm-start{-ms-flex-align:start!important;align-items:flex-start!important}.align-items-sm-end{-ms-flex-align:end!important;align-items:flex-end!important}.align-items-sm-center{-ms-flex-align:center!important;align-items:center!important}.align-items-sm-baseline{-ms-flex-align:baseline!important;align-items:baseline!important}.align-items-sm-stretch{-ms-flex-align:stretch!important;align-items:stretch!important}.align-content-sm-start{-ms-flex-line-pack:start!important;align-content:flex-start!important}.align-content-sm-end{-ms-flex-line-pack:end!important;align-content:flex-end!important}.align-content-sm-center{-ms-flex-line-pack:center!important;align-content:center!important}.align-content-sm-between{-ms-flex-line-pack:justify!important;align-content:space-between!important}.align-content-sm-around{-ms-flex-line-pack:distribute!important;align-content:space-around!important}.align-content-sm-stretch{-ms-flex-line-pack:stretch!important;align-content:stretch!important}.align-self-sm-auto{-ms-flex-item-align:auto!important;align-self:auto!important}.align-self-sm-start{-ms-flex-item-align:start!important;align-self:flex-start!important}.align-self-sm-end{-ms-flex-item-align:end!important;align-self:flex-end!important}.align-self-sm-center{-ms-flex-item-align:center!important;align-self:center!important}.align-self-sm-baseline{-ms-flex-item-align:baseline!important;align-self:baseline!important}.align-self-sm-stretch{-ms-flex-item-align:stretch!important;align-self:stretch!important}}@media (min-width:768px){.flex-md-row{-ms-flex-direction:row!important;flex-direction:row!important}.flex-md-column{-ms-flex-direction:column!important;flex-direction:column!important}.flex-md-row-reverse{-ms-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.flex-md-column-reverse{-ms-flex-direction:column-reverse!important;flex-direction:column-reverse!important}.flex-md-wrap{-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}.flex-md-nowrap{-ms-flex-wrap:nowrap!important;flex-wrap:nowrap!important}.flex-md-wrap-reverse{-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}.flex-md-fill{-ms-flex:1 1 auto!important;flex:1 1 auto!important}.flex-md-grow-0{-ms-flex-positive:0!important;flex-grow:0!important}.flex-md-grow-1{-ms-flex-positive:1!important;flex-grow:1!important}.flex-md-shrink-0{-ms-flex-negative:0!important;flex-shrink:0!important}.flex-md-shrink-1{-ms-flex-negative:1!important;flex-shrink:1!important}.justify-content-md-start{-ms-flex-pack:start!important;justify-content:flex-start!important}.justify-content-md-end{-ms-flex-pack:end!important;justify-content:flex-end!important}.justify-content-md-center{-ms-flex-pack:center!important;justify-content:center!important}.justify-content-md-between{-ms-flex-pack:justify!important;justify-content:space-between!important}.justify-content-md-around{-ms-flex-pack:distribute!important;justify-content:space-around!important}.align-items-md-start{-ms-flex-align:start!important;align-items:flex-start!important}.align-items-md-end{-ms-flex-align:end!important;align-items:flex-end!important}.align-items-md-center{-ms-flex-align:center!important;align-items:center!important}.align-items-md-baseline{-ms-flex-align:baseline!important;align-items:baseline!important}.align-items-md-stretch{-ms-flex-align:stretch!important;align-items:stretch!important}.align-content-md-start{-ms-flex-line-pack:start!important;align-content:flex-start!important}.align-content-md-end{-ms-flex-line-pack:end!important;align-content:flex-end!important}.align-content-md-center{-ms-flex-line-pack:center!important;align-content:center!important}.align-content-md-between{-ms-flex-line-pack:justify!important;align-content:space-between!important}.align-content-md-around{-ms-flex-line-pack:distribute!important;align-content:space-around!important}.align-content-md-stretch{-ms-flex-line-pack:stretch!important;align-content:stretch!important}.align-self-md-auto{-ms-flex-item-align:auto!important;align-self:auto!important}.align-self-md-start{-ms-flex-item-align:start!important;align-self:flex-start!important}.align-self-md-end{-ms-flex-item-align:end!important;align-self:flex-end!important}.align-self-md-center{-ms-flex-item-align:center!important;align-self:center!important}.align-self-md-baseline{-ms-flex-item-align:baseline!important;align-self:baseline!important}.align-self-md-stretch{-ms-flex-item-align:stretch!important;align-self:stretch!important}}@media (min-width:992px){.flex-lg-row{-ms-flex-direction:row!important;flex-direction:row!important}.flex-lg-column{-ms-flex-direction:column!important;flex-direction:column!important}.flex-lg-row-reverse{-ms-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.flex-lg-column-reverse{-ms-flex-direction:column-reverse!important;flex-direction:column-reverse!important}.flex-lg-wrap{-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}.flex-lg-nowrap{-ms-flex-wrap:nowrap!important;flex-wrap:nowrap!important}.flex-lg-wrap-reverse{-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}.flex-lg-fill{-ms-flex:1 1 auto!important;flex:1 1 auto!important}.flex-lg-grow-0{-ms-flex-positive:0!important;flex-grow:0!important}.flex-lg-grow-1{-ms-flex-positive:1!important;flex-grow:1!important}.flex-lg-shrink-0{-ms-flex-negative:0!important;flex-shrink:0!important}.flex-lg-shrink-1{-ms-flex-negative:1!important;flex-shrink:1!important}.justify-content-lg-start{-ms-flex-pack:start!important;justify-content:flex-start!important}.justify-content-lg-end{-ms-flex-pack:end!important;justify-content:flex-end!important}.justify-content-lg-center{-ms-flex-pack:center!important;justify-content:center!important}.justify-content-lg-between{-ms-flex-pack:justify!important;justify-content:space-between!important}.justify-content-lg-around{-ms-flex-pack:distribute!important;justify-content:space-around!important}.align-items-lg-start{-ms-flex-align:start!important;align-items:flex-start!important}.align-items-lg-end{-ms-flex-align:end!important;align-items:flex-end!important}.align-items-lg-center{-ms-flex-align:center!important;align-items:center!important}.align-items-lg-baseline{-ms-flex-align:baseline!important;align-items:baseline!important}.align-items-lg-stretch{-ms-flex-align:stretch!important;align-items:stretch!important}.align-content-lg-start{-ms-flex-line-pack:start!important;align-content:flex-start!important}.align-content-lg-end{-ms-flex-line-pack:end!important;align-content:flex-end!important}.align-content-lg-center{-ms-flex-line-pack:center!important;align-content:center!important}.align-content-lg-between{-ms-flex-line-pack:justify!important;align-content:space-between!important}.align-content-lg-around{-ms-flex-line-pack:distribute!important;align-content:space-around!important}.align-content-lg-stretch{-ms-flex-line-pack:stretch!important;align-content:stretch!important}.align-self-lg-auto{-ms-flex-item-align:auto!important;align-self:auto!important}.align-self-lg-start{-ms-flex-item-align:start!important;align-self:flex-start!important}.align-self-lg-end{-ms-flex-item-align:end!important;align-self:flex-end!important}.align-self-lg-center{-ms-flex-item-align:center!important;align-self:center!important}.align-self-lg-baseline{-ms-flex-item-align:baseline!important;align-self:baseline!important}.align-self-lg-stretch{-ms-flex-item-align:stretch!important;align-self:stretch!important}}@media (min-width:1200px){.flex-xl-row{-ms-flex-direction:row!important;flex-direction:row!important}.flex-xl-column{-ms-flex-direction:column!important;flex-direction:column!important}.flex-xl-row-reverse{-ms-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.flex-xl-column-reverse{-ms-flex-direction:column-reverse!important;flex-direction:column-reverse!important}.flex-xl-wrap{-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}.flex-xl-nowrap{-ms-flex-wrap:nowrap!important;flex-wrap:nowrap!important}.flex-xl-wrap-reverse{-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}.flex-xl-fill{-ms-flex:1 1 auto!important;flex:1 1 auto!important}.flex-xl-grow-0{-ms-flex-positive:0!important;flex-grow:0!important}.flex-xl-grow-1{-ms-flex-positive:1!important;flex-grow:1!important}.flex-xl-shrink-0{-ms-flex-negative:0!important;flex-shrink:0!important}.flex-xl-shrink-1{-ms-flex-negative:1!important;flex-shrink:1!important}.justify-content-xl-start{-ms-flex-pack:start!important;justify-content:flex-start!important}.justify-content-xl-end{-ms-flex-pack:end!important;justify-content:flex-end!important}.justify-content-xl-center{-ms-flex-pack:center!important;justify-content:center!important}.justify-content-xl-between{-ms-flex-pack:justify!important;justify-content:space-between!important}.justify-content-xl-around{-ms-flex-pack:distribute!important;justify-content:space-around!important}.align-items-xl-start{-ms-flex-align:start!important;align-items:flex-start!important}.align-items-xl-end{-ms-flex-align:end!important;align-items:flex-end!important}.align-items-xl-center{-ms-flex-align:center!important;align-items:center!important}.align-items-xl-baseline{-ms-flex-align:baseline!important;align-items:baseline!important}.align-items-xl-stretch{-ms-flex-align:stretch!important;align-items:stretch!important}.align-content-xl-start{-ms-flex-line-pack:start!important;align-content:flex-start!important}.align-content-xl-end{-ms-flex-line-pack:end!important;align-content:flex-end!important}.align-content-xl-center{-ms-flex-line-pack:center!important;align-content:center!important}.align-content-xl-between{-ms-flex-line-pack:justify!important;align-content:space-between!important}.align-content-xl-around{-ms-flex-line-pack:distribute!important;align-content:space-around!important}.align-content-xl-stretch{-ms-flex-line-pack:stretch!important;align-content:stretch!important}.align-self-xl-auto{-ms-flex-item-align:auto!important;align-self:auto!important}.align-self-xl-start{-ms-flex-item-align:start!important;align-self:flex-start!important}.align-self-xl-end{-ms-flex-item-align:end!important;align-self:flex-end!important}.align-self-xl-center{-ms-flex-item-align:center!important;align-self:center!important}.align-self-xl-baseline{-ms-flex-item-align:baseline!important;align-self:baseline!important}.align-self-xl-stretch{-ms-flex-item-align:stretch!important;align-self:stretch!important}}.float-left{float:left!important}.float-right{float:right!important}.float-none{float:none!important}@media (min-width:576px){.float-sm-left{float:left!important}.float-sm-right{float:right!important}.float-sm-none{float:none!important}}@media (min-width:768px){.float-md-left{float:left!important}.float-md-right{float:right!important}.float-md-none{float:none!important}}@media (min-width:992px){.float-lg-left{float:left!important}.float-lg-right{float:right!important}.float-lg-none{float:none!important}}@media (min-width:1200px){.float-xl-left{float:left!important}.float-xl-right{float:right!important}.float-xl-none{float:none!important}}.position-static{position:static!important}.position-relative{position:relative!important}.position-absolute{position:absolute!important}.position-fixed{position:fixed!important}.position-sticky{position:-webkit-sticky!important;position:sticky!important}.fixed-top{position:fixed;top:0;right:0;left:0;z-index:1030}.fixed-bottom{position:fixed;right:0;bottom:0;left:0;z-index:1030}@supports ((position:-webkit-sticky) or (position:sticky)){.sticky-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}}.sr-only{position:absolute;width:1px;height:1px;padding:0;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;overflow:visible;clip:auto;white-space:normal}.shadow-sm{box-shadow:0 .125rem .25rem rgba(0,0,0,.075)!important}.shadow{box-shadow:0 .5rem 1rem rgba(0,0,0,.15)!important}.shadow-lg{box-shadow:0 1rem 3rem rgba(0,0,0,.175)!important}.shadow-none{box-shadow:none!important}.w-25{width:25%!important}.w-50{width:50%!important}.w-75{width:75%!important}.w-100{width:100%!important}.w-auto{width:auto!important}.h-25{height:25%!important}.h-50{height:50%!important}.h-75{height:75%!important}.h-100{height:100%!important}.h-auto{height:auto!important}.mw-100{max-width:100%!important}.mh-100{max-height:100%!important}.m-0{margin:0!important}.mt-0,.my-0{margin-top:0!important}.mr-0,.mx-0{margin-right:0!important}.mb-0,.my-0{margin-bottom:0!important}.ml-0,.mx-0{margin-left:0!important}.m-1{margin:.25rem!important}.mt-1,.my-1{margin-top:.25rem!important}.mr-1,.mx-1{margin-right:.25rem!important}.mb-1,.my-1{margin-bottom:.25rem!important}.ml-1,.mx-1{margin-left:.25rem!important}.m-2{margin:.5rem!important}.mt-2,.my-2{margin-top:.5rem!important}.mr-2,.mx-2{margin-right:.5rem!important}.mb-2,.my-2{margin-bottom:.5rem!important}.ml-2,.mx-2{margin-left:.5rem!important}.m-3{margin:1rem!important}.mt-3,.my-3{margin-top:1rem!important}.mr-3,.mx-3{margin-right:1rem!important}.mb-3,.my-3{margin-bottom:1rem!important}.ml-3,.mx-3{margin-left:1rem!important}.m-4{margin:1.5rem!important}.mt-4,.my-4{margin-top:1.5rem!important}.mr-4,.mx-4{margin-right:1.5rem!important}.mb-4,.my-4{margin-bottom:1.5rem!important}.ml-4,.mx-4{margin-left:1.5rem!important}.m-5{margin:3rem!important}.mt-5,.my-5{margin-top:3rem!important}.mr-5,.mx-5{margin-right:3rem!important}.mb-5,.my-5{margin-bottom:3rem!important}.ml-5,.mx-5{margin-left:3rem!important}.p-0{padding:0!important}.pt-0,.py-0{padding-top:0!important}.pr-0,.px-0{padding-right:0!important}.pb-0,.py-0{padding-bottom:0!important}.pl-0,.px-0{padding-left:0!important}.p-1{padding:.25rem!important}.pt-1,.py-1{padding-top:.25rem!important}.pr-1,.px-1{padding-right:.25rem!important}.pb-1,.py-1{padding-bottom:.25rem!important}.pl-1,.px-1{padding-left:.25rem!important}.p-2{padding:.5rem!important}.pt-2,.py-2{padding-top:.5rem!important}.pr-2,.px-2{padding-right:.5rem!important}.pb-2,.py-2{padding-bottom:.5rem!important}.pl-2,.px-2{padding-left:.5rem!important}.p-3{padding:1rem!important}.pt-3,.py-3{padding-top:1rem!important}.pr-3,.px-3{padding-right:1rem!important}.pb-3,.py-3{padding-bottom:1rem!important}.pl-3,.px-3{padding-left:1rem!important}.p-4{padding:1.5rem!important}.pt-4,.py-4{padding-top:1.5rem!important}.pr-4,.px-4{padding-right:1.5rem!important}.pb-4,.py-4{padding-bottom:1.5rem!important}.pl-4,.px-4{padding-left:1.5rem!important}.p-5{padding:3rem!important}.pt-5,.py-5{padding-top:3rem!important}.pr-5,.px-5{padding-right:3rem!important}.pb-5,.py-5{padding-bottom:3rem!important}.pl-5,.px-5{padding-left:3rem!important}.m-auto{margin:auto!important}.mt-auto,.my-auto{margin-top:auto!important}.mr-auto,.mx-auto{margin-right:auto!important}.mb-auto,.my-auto{margin-bottom:auto!important}.ml-auto,.mx-auto{margin-left:auto!important}@media (min-width:576px){.m-sm-0{margin:0!important}.mt-sm-0,.my-sm-0{margin-top:0!important}.mr-sm-0,.mx-sm-0{margin-right:0!important}.mb-sm-0,.my-sm-0{margin-bottom:0!important}.ml-sm-0,.mx-sm-0{margin-left:0!important}.m-sm-1{margin:.25rem!important}.mt-sm-1,.my-sm-1{margin-top:.25rem!important}.mr-sm-1,.mx-sm-1{margin-right:.25rem!important}.mb-sm-1,.my-sm-1{margin-bottom:.25rem!important}.ml-sm-1,.mx-sm-1{margin-left:.25rem!important}.m-sm-2{margin:.5rem!important}.mt-sm-2,.my-sm-2{margin-top:.5rem!important}.mr-sm-2,.mx-sm-2{margin-right:.5rem!important}.mb-sm-2,.my-sm-2{margin-bottom:.5rem!important}.ml-sm-2,.mx-sm-2{margin-left:.5rem!important}.m-sm-3{margin:1rem!important}.mt-sm-3,.my-sm-3{margin-top:1rem!important}.mr-sm-3,.mx-sm-3{margin-right:1rem!important}.mb-sm-3,.my-sm-3{margin-bottom:1rem!important}.ml-sm-3,.mx-sm-3{margin-left:1rem!important}.m-sm-4{margin:1.5rem!important}.mt-sm-4,.my-sm-4{margin-top:1.5rem!important}.mr-sm-4,.mx-sm-4{margin-right:1.5rem!important}.mb-sm-4,.my-sm-4{margin-bottom:1.5rem!important}.ml-sm-4,.mx-sm-4{margin-left:1.5rem!important}.m-sm-5{margin:3rem!important}.mt-sm-5,.my-sm-5{margin-top:3rem!important}.mr-sm-5,.mx-sm-5{margin-right:3rem!important}.mb-sm-5,.my-sm-5{margin-bottom:3rem!important}.ml-sm-5,.mx-sm-5{margin-left:3rem!important}.p-sm-0{padding:0!important}.pt-sm-0,.py-sm-0{padding-top:0!important}.pr-sm-0,.px-sm-0{padding-right:0!important}.pb-sm-0,.py-sm-0{padding-bottom:0!important}.pl-sm-0,.px-sm-0{padding-left:0!important}.p-sm-1{padding:.25rem!important}.pt-sm-1,.py-sm-1{padding-top:.25rem!important}.pr-sm-1,.px-sm-1{padding-right:.25rem!important}.pb-sm-1,.py-sm-1{padding-bottom:.25rem!important}.pl-sm-1,.px-sm-1{padding-left:.25rem!important}.p-sm-2{padding:.5rem!important}.pt-sm-2,.py-sm-2{padding-top:.5rem!important}.pr-sm-2,.px-sm-2{padding-right:.5rem!important}.pb-sm-2,.py-sm-2{padding-bottom:.5rem!important}.pl-sm-2,.px-sm-2{padding-left:.5rem!important}.p-sm-3{padding:1rem!important}.pt-sm-3,.py-sm-3{padding-top:1rem!important}.pr-sm-3,.px-sm-3{padding-right:1rem!important}.pb-sm-3,.py-sm-3{padding-bottom:1rem!important}.pl-sm-3,.px-sm-3{padding-left:1rem!important}.p-sm-4{padding:1.5rem!important}.pt-sm-4,.py-sm-4{padding-top:1.5rem!important}.pr-sm-4,.px-sm-4{padding-right:1.5rem!important}.pb-sm-4,.py-sm-4{padding-bottom:1.5rem!important}.pl-sm-4,.px-sm-4{padding-left:1.5rem!important}.p-sm-5{padding:3rem!important}.pt-sm-5,.py-sm-5{padding-top:3rem!important}.pr-sm-5,.px-sm-5{padding-right:3rem!important}.pb-sm-5,.py-sm-5{padding-bottom:3rem!important}.pl-sm-5,.px-sm-5{padding-left:3rem!important}.m-sm-auto{margin:auto!important}.mt-sm-auto,.my-sm-auto{margin-top:auto!important}.mr-sm-auto,.mx-sm-auto{margin-right:auto!important}.mb-sm-auto,.my-sm-auto{margin-bottom:auto!important}.ml-sm-auto,.mx-sm-auto{margin-left:auto!important}}@media (min-width:768px){.m-md-0{margin:0!important}.mt-md-0,.my-md-0{margin-top:0!important}.mr-md-0,.mx-md-0{margin-right:0!important}.mb-md-0,.my-md-0{margin-bottom:0!important}.ml-md-0,.mx-md-0{margin-left:0!important}.m-md-1{margin:.25rem!important}.mt-md-1,.my-md-1{margin-top:.25rem!important}.mr-md-1,.mx-md-1{margin-right:.25rem!important}.mb-md-1,.my-md-1{margin-bottom:.25rem!important}.ml-md-1,.mx-md-1{margin-left:.25rem!important}.m-md-2{margin:.5rem!important}.mt-md-2,.my-md-2{margin-top:.5rem!important}.mr-md-2,.mx-md-2{margin-right:.5rem!important}.mb-md-2,.my-md-2{margin-bottom:.5rem!important}.ml-md-2,.mx-md-2{margin-left:.5rem!important}.m-md-3{margin:1rem!important}.mt-md-3,.my-md-3{margin-top:1rem!important}.mr-md-3,.mx-md-3{margin-right:1rem!important}.mb-md-3,.my-md-3{margin-bottom:1rem!important}.ml-md-3,.mx-md-3{margin-left:1rem!important}.m-md-4{margin:1.5rem!important}.mt-md-4,.my-md-4{margin-top:1.5rem!important}.mr-md-4,.mx-md-4{margin-right:1.5rem!important}.mb-md-4,.my-md-4{margin-bottom:1.5rem!important}.ml-md-4,.mx-md-4{margin-left:1.5rem!important}.m-md-5{margin:3rem!important}.mt-md-5,.my-md-5{margin-top:3rem!important}.mr-md-5,.mx-md-5{margin-right:3rem!important}.mb-md-5,.my-md-5{margin-bottom:3rem!important}.ml-md-5,.mx-md-5{margin-left:3rem!important}.p-md-0{padding:0!important}.pt-md-0,.py-md-0{padding-top:0!important}.pr-md-0,.px-md-0{padding-right:0!important}.pb-md-0,.py-md-0{padding-bottom:0!important}.pl-md-0,.px-md-0{padding-left:0!important}.p-md-1{padding:.25rem!important}.pt-md-1,.py-md-1{padding-top:.25rem!important}.pr-md-1,.px-md-1{padding-right:.25rem!important}.pb-md-1,.py-md-1{padding-bottom:.25rem!important}.pl-md-1,.px-md-1{padding-left:.25rem!important}.p-md-2{padding:.5rem!important}.pt-md-2,.py-md-2{padding-top:.5rem!important}.pr-md-2,.px-md-2{padding-right:.5rem!important}.pb-md-2,.py-md-2{padding-bottom:.5rem!important}.pl-md-2,.px-md-2{padding-left:.5rem!important}.p-md-3{padding:1rem!important}.pt-md-3,.py-md-3{padding-top:1rem!important}.pr-md-3,.px-md-3{padding-right:1rem!important}.pb-md-3,.py-md-3{padding-bottom:1rem!important}.pl-md-3,.px-md-3{padding-left:1rem!important}.p-md-4{padding:1.5rem!important}.pt-md-4,.py-md-4{padding-top:1.5rem!important}.pr-md-4,.px-md-4{padding-right:1.5rem!important}.pb-md-4,.py-md-4{padding-bottom:1.5rem!important}.pl-md-4,.px-md-4{padding-left:1.5rem!important}.p-md-5{padding:3rem!important}.pt-md-5,.py-md-5{padding-top:3rem!important}.pr-md-5,.px-md-5{padding-right:3rem!important}.pb-md-5,.py-md-5{padding-bottom:3rem!important}.pl-md-5,.px-md-5{padding-left:3rem!important}.m-md-auto{margin:auto!important}.mt-md-auto,.my-md-auto{margin-top:auto!important}.mr-md-auto,.mx-md-auto{margin-right:auto!important}.mb-md-auto,.my-md-auto{margin-bottom:auto!important}.ml-md-auto,.mx-md-auto{margin-left:auto!important}}@media (min-width:992px){.m-lg-0{margin:0!important}.mt-lg-0,.my-lg-0{margin-top:0!important}.mr-lg-0,.mx-lg-0{margin-right:0!important}.mb-lg-0,.my-lg-0{margin-bottom:0!important}.ml-lg-0,.mx-lg-0{margin-left:0!important}.m-lg-1{margin:.25rem!important}.mt-lg-1,.my-lg-1{margin-top:.25rem!important}.mr-lg-1,.mx-lg-1{margin-right:.25rem!important}.mb-lg-1,.my-lg-1{margin-bottom:.25rem!important}.ml-lg-1,.mx-lg-1{margin-left:.25rem!important}.m-lg-2{margin:.5rem!important}.mt-lg-2,.my-lg-2{margin-top:.5rem!important}.mr-lg-2,.mx-lg-2{margin-right:.5rem!important}.mb-lg-2,.my-lg-2{margin-bottom:.5rem!important}.ml-lg-2,.mx-lg-2{margin-left:.5rem!important}.m-lg-3{margin:1rem!important}.mt-lg-3,.my-lg-3{margin-top:1rem!important}.mr-lg-3,.mx-lg-3{margin-right:1rem!important}.mb-lg-3,.my-lg-3{margin-bottom:1rem!important}.ml-lg-3,.mx-lg-3{margin-left:1rem!important}.m-lg-4{margin:1.5rem!important}.mt-lg-4,.my-lg-4{margin-top:1.5rem!important}.mr-lg-4,.mx-lg-4{margin-right:1.5rem!important}.mb-lg-4,.my-lg-4{margin-bottom:1.5rem!important}.ml-lg-4,.mx-lg-4{margin-left:1.5rem!important}.m-lg-5{margin:3rem!important}.mt-lg-5,.my-lg-5{margin-top:3rem!important}.mr-lg-5,.mx-lg-5{margin-right:3rem!important}.mb-lg-5,.my-lg-5{margin-bottom:3rem!important}.ml-lg-5,.mx-lg-5{margin-left:3rem!important}.p-lg-0{padding:0!important}.pt-lg-0,.py-lg-0{padding-top:0!important}.pr-lg-0,.px-lg-0{padding-right:0!important}.pb-lg-0,.py-lg-0{padding-bottom:0!important}.pl-lg-0,.px-lg-0{padding-left:0!important}.p-lg-1{padding:.25rem!important}.pt-lg-1,.py-lg-1{padding-top:.25rem!important}.pr-lg-1,.px-lg-1{padding-right:.25rem!important}.pb-lg-1,.py-lg-1{padding-bottom:.25rem!important}.pl-lg-1,.px-lg-1{padding-left:.25rem!important}.p-lg-2{padding:.5rem!important}.pt-lg-2,.py-lg-2{padding-top:.5rem!important}.pr-lg-2,.px-lg-2{padding-right:.5rem!important}.pb-lg-2,.py-lg-2{padding-bottom:.5rem!important}.pl-lg-2,.px-lg-2{padding-left:.5rem!important}.p-lg-3{padding:1rem!important}.pt-lg-3,.py-lg-3{padding-top:1rem!important}.pr-lg-3,.px-lg-3{padding-right:1rem!important}.pb-lg-3,.py-lg-3{padding-bottom:1rem!important}.pl-lg-3,.px-lg-3{padding-left:1rem!important}.p-lg-4{padding:1.5rem!important}.pt-lg-4,.py-lg-4{padding-top:1.5rem!important}.pr-lg-4,.px-lg-4{padding-right:1.5rem!important}.pb-lg-4,.py-lg-4{padding-bottom:1.5rem!important}.pl-lg-4,.px-lg-4{padding-left:1.5rem!important}.p-lg-5{padding:3rem!important}.pt-lg-5,.py-lg-5{padding-top:3rem!important}.pr-lg-5,.px-lg-5{padding-right:3rem!important}.pb-lg-5,.py-lg-5{padding-bottom:3rem!important}.pl-lg-5,.px-lg-5{padding-left:3rem!important}.m-lg-auto{margin:auto!important}.mt-lg-auto,.my-lg-auto{margin-top:auto!important}.mr-lg-auto,.mx-lg-auto{margin-right:auto!important}.mb-lg-auto,.my-lg-auto{margin-bottom:auto!important}.ml-lg-auto,.mx-lg-auto{margin-left:auto!important}}@media (min-width:1200px){.m-xl-0{margin:0!important}.mt-xl-0,.my-xl-0{margin-top:0!important}.mr-xl-0,.mx-xl-0{margin-right:0!important}.mb-xl-0,.my-xl-0{margin-bottom:0!important}.ml-xl-0,.mx-xl-0{margin-left:0!important}.m-xl-1{margin:.25rem!important}.mt-xl-1,.my-xl-1{margin-top:.25rem!important}.mr-xl-1,.mx-xl-1{margin-right:.25rem!important}.mb-xl-1,.my-xl-1{margin-bottom:.25rem!important}.ml-xl-1,.mx-xl-1{margin-left:.25rem!important}.m-xl-2{margin:.5rem!important}.mt-xl-2,.my-xl-2{margin-top:.5rem!important}.mr-xl-2,.mx-xl-2{margin-right:.5rem!important}.mb-xl-2,.my-xl-2{margin-bottom:.5rem!important}.ml-xl-2,.mx-xl-2{margin-left:.5rem!important}.m-xl-3{margin:1rem!important}.mt-xl-3,.my-xl-3{margin-top:1rem!important}.mr-xl-3,.mx-xl-3{margin-right:1rem!important}.mb-xl-3,.my-xl-3{margin-bottom:1rem!important}.ml-xl-3,.mx-xl-3{margin-left:1rem!important}.m-xl-4{margin:1.5rem!important}.mt-xl-4,.my-xl-4{margin-top:1.5rem!important}.mr-xl-4,.mx-xl-4{margin-right:1.5rem!important}.mb-xl-4,.my-xl-4{margin-bottom:1.5rem!important}.ml-xl-4,.mx-xl-4{margin-left:1.5rem!important}.m-xl-5{margin:3rem!important}.mt-xl-5,.my-xl-5{margin-top:3rem!important}.mr-xl-5,.mx-xl-5{margin-right:3rem!important}.mb-xl-5,.my-xl-5{margin-bottom:3rem!important}.ml-xl-5,.mx-xl-5{margin-left:3rem!important}.p-xl-0{padding:0!important}.pt-xl-0,.py-xl-0{padding-top:0!important}.pr-xl-0,.px-xl-0{padding-right:0!important}.pb-xl-0,.py-xl-0{padding-bottom:0!important}.pl-xl-0,.px-xl-0{padding-left:0!important}.p-xl-1{padding:.25rem!important}.pt-xl-1,.py-xl-1{padding-top:.25rem!important}.pr-xl-1,.px-xl-1{padding-right:.25rem!important}.pb-xl-1,.py-xl-1{padding-bottom:.25rem!important}.pl-xl-1,.px-xl-1{padding-left:.25rem!important}.p-xl-2{padding:.5rem!important}.pt-xl-2,.py-xl-2{padding-top:.5rem!important}.pr-xl-2,.px-xl-2{padding-right:.5rem!important}.pb-xl-2,.py-xl-2{padding-bottom:.5rem!important}.pl-xl-2,.px-xl-2{padding-left:.5rem!important}.p-xl-3{padding:1rem!important}.pt-xl-3,.py-xl-3{padding-top:1rem!important}.pr-xl-3,.px-xl-3{padding-right:1rem!important}.pb-xl-3,.py-xl-3{padding-bottom:1rem!important}.pl-xl-3,.px-xl-3{padding-left:1rem!important}.p-xl-4{padding:1.5rem!important}.pt-xl-4,.py-xl-4{padding-top:1.5rem!important}.pr-xl-4,.px-xl-4{padding-right:1.5rem!important}.pb-xl-4,.py-xl-4{padding-bottom:1.5rem!important}.pl-xl-4,.px-xl-4{padding-left:1.5rem!important}.p-xl-5{padding:3rem!important}.pt-xl-5,.py-xl-5{padding-top:3rem!important}.pr-xl-5,.px-xl-5{padding-right:3rem!important}.pb-xl-5,.py-xl-5{padding-bottom:3rem!important}.pl-xl-5,.px-xl-5{padding-left:3rem!important}.m-xl-auto{margin:auto!important}.mt-xl-auto,.my-xl-auto{margin-top:auto!important}.mr-xl-auto,.mx-xl-auto{margin-right:auto!important}.mb-xl-auto,.my-xl-auto{margin-bottom:auto!important}.ml-xl-auto,.mx-xl-auto{margin-left:auto!important}}.text-monospace{font-family:SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace}.text-justify{text-align:justify!important}.text-nowrap{white-space:nowrap!important}.text-truncate{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.text-left{text-align:left!important}.text-right{text-align:right!important}.text-center{text-align:center!important}@media (min-width:576px){.text-sm-left{text-align:left!important}.text-sm-right{text-align:right!important}.text-sm-center{text-align:center!important}}@media (min-width:768px){.text-md-left{text-align:left!important}.text-md-right{text-align:right!important}.text-md-center{text-align:center!important}}@media (min-width:992px){.text-lg-left{text-align:left!important}.text-lg-right{text-align:right!important}.text-lg-center{text-align:center!important}}@media (min-width:1200px){.text-xl-left{text-align:left!important}.text-xl-right{text-align:right!important}.text-xl-center{text-align:center!important}}.text-lowercase{text-transform:lowercase!important}.text-uppercase{text-transform:uppercase!important}.text-capitalize{text-transform:capitalize!important}.font-weight-light{font-weight:300!important}.font-weight-normal{font-weight:400!important}.font-weight-bold{font-weight:700!important}.font-italic{font-style:italic!important}.text-white{color:#fff!important}.text-primary{color:#007bff!important}a.text-primary:focus,a.text-primary:hover{color:#0062cc!important}.text-secondary{color:#6c757d!important}a.text-secondary:focus,a.text-secondary:hover{color:#545b62!important}.text-success{color:#28a745!important}a.text-success:focus,a.text-success:hover{color:#1e7e34!important}.text-info{color:#17a2b8!important}a.text-info:focus,a.text-info:hover{color:#117a8b!important}.text-warning{color:#ffc107!important}a.text-warning:focus,a.text-warning:hover{color:#d39e00!important}.text-danger{color:#dc3545!important}a.text-danger:focus,a.text-danger:hover{color:#bd2130!important}.text-light{color:#f8f9fa!important}a.text-light:focus,a.text-light:hover{color:#dae0e5!important}.text-dark{color:#343a40!important}a.text-dark:focus,a.text-dark:hover{color:#1d2124!important}.text-body{color:#212529!important}.text-muted{color:#6c757d!important}.text-black-50{color:rgba(0,0,0,.5)!important}.text-white-50{color:rgba(255,255,255,.5)!important}.text-hide{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0}.visible{visibility:visible!important}.invisible{visibility:hidden!important}@media print{*,::after,::before{text-shadow:none!important;box-shadow:none!important}a:not(.btn){text-decoration:underline}abbr[title]::after{content:" (" attr(title) ")"}pre{white-space:pre-wrap!important}blockquote,pre{border:1px solid #adb5bd;page-break-inside:avoid}thead{display:table-header-group}img,tr{page-break-inside:avoid}h2,h3,p{orphans:3;widows:3}h2,h3{page-break-after:avoid}@page{size:a3}body{min-width:992px!important}.container{min-width:992px!important}.navbar{display:none}.badge{border:1px solid #000}.table{border-collapse:collapse!important}.table td,.table th{background-color:#fff!important}.table-bordered td,.table-bordered th{border:1px solid #dee2e6!important}.table-dark{color:inherit}.table-dark tbody+tbody,.table-dark td,.table-dark th,.table-dark thead th{border-color:#dee2e6}.table .thead-dark th{color:inherit;border-color:#dee2e6}}.rtlstyle .about-h10 .right-side h4 {
    text-align: right!important;
}
.rtlstyle .about-h10 .right-side .text-two p {
    text-align: right;
}
.rtlstyle .service-icon-h10 .item h2 {
    text-align: right;
}
.rtlstyle .service-icon-h10 .item p {
    margin-top: 43px;
    text-align: right;
}
.rtlstyle .service-icon-h10 .item .btn-box a {
    float: right;
}
.rtlstyle .team-h9 .sec-title .text p {
    text-align: right;
}
.rtlstyle .team-h9 .sec-title .title-two h2 {
    text-align: right;
}
.rtlstyle .team-h9 .sec-title .subtitle {

    text-align: right;
}

.rtlstyle .call-to-action-h10 .form-group input[type="text"],
.rtlstyle .call-to-action-h10 .form-group input[type="email"],
.rtlstyle .call-to-action-h10 .form-group input[type="tel"], 
.rtlstyle .call-to-action-h10 .form-group input[type="url"], 
.rtlstyle .call-to-action-h10 .form-group textarea, 
.rtlstyle .call-to-action-h10 .form-group input[type="text"], 
.rtlstyle .call-to-action-h10 .form-group input[type="email"], 
.rtlstyle .call-to-action-h10 .form-group input[type="tel"], 
.rtlstyle .call-to-action-h10 .form-group input[type="url"],
.rtlstyle .call-to-action-h10 .form-group textarea,
.rtlstyle .call-to-action-h10 .form-group select {
    text-align: right;
}
.rtlstyle .about-h10 .sec-title .title-two h2:before {
    display:none;
}
.rtlstyle .call-to-action-h10 .content .sec-title .title-two h2 {
    text-align: right;
}
.rtlstyle .sec-title {
    text-align: right;
}

.rtlstyle .footer-h6 .widgets-section .about-widget .text p {
    text-align: right;
}
.rtlstyle .footer-h6 h4 {
    text-align: right!important;
}
.rtlstyle .footer-h6 h4:before {
    display:none!important;
}
.rtlstyle .footer-h6 .list li {
    text-align: right!important;
}
.rtlstyle .footer-h6 .list li a span{
	display:none;
}
.rtlstyle .footer-h6 .social-links {
    float: right;
}
.rtlstyle .footer-h6 .widgets-section .about-widget {
    text-align: right;
}
.rtlstyle .main-slider .content {
    text-align: right;
}
.rtlstyle .main-slider .content h3, .rtlstyle .main-slider .content .text {
    color: #FF0000;
}
.rtlstyle .main-slider h3:before {
    right: -55px;
	left: unset;
}
.rtlstyle .main-slider .link-box{
    right: 20%;
    top: 405px;
}
.rtlstyle .main-slider .slide {
    padding: 332px 30px;
}
.rtlstyle .services-block .inner-box h3 {
    text-align: right;
}
.rtlstyle .services-block.alternate .inner-box .icon-box {
    text-align: right;
}
.rtlstyle .services-block .inner-box .icon-box:after { 
	left: 64%;
}
.rtlstyle .services-block .inner-box .text {
    text-align: right;
}
.rtlstyle .services-block .inner-box .more-link {
    text-align: right;
}
.rtlstyle .sec-title h2 {
    text-align: right;
}
.rtlstyle .help-section .content-column .inner-column .sec-title .title-text {
    text-align: right;
}
.rtlstyle .help-section .content-column .inner-column .text p {
    text-align: right;
}
.rtlstyle .help-section .image-column .inner-column .testimonial-boxed .text {
    text-align: right;
	overflow:hidden;
	padding-right: 30px;
}
.rtlstyle .services-block-two .inner-box .overlay-box .read-more .fa {
    position: relative;
    margin-right: -65px;
    font-weight: 600;
    position: inherit;
}
.rtlstyle .modern-section .content-column .inner-column h2 {
    text-align: right;
}
.rtlstyle .modern-section .content-column .inner-column .title {
    text-align: right;
}
.rtlstyle .modern-section .content-column .inner-column .text {
    text-align: right;
}

.rtlstyle .case-block .inner-box .image .overlay-box .text {
    text-align: right;
}
.rtlstyle .case-block .inner-box .image .overlay-box .read-more {
    float: right;
    text-align: right;
}
.rtlstyle .case-block .inner-box .image .overlay-box .read-more:after {
    left: -328%;
}
.rtlstyle .case-block .inner-box .lower-box .category {
    text-align: right;
}
.rtlstyle .case-block .inner-box .lower-box h3 {
    text-align: right;
}
.rtlstyle .expert-section .counter-column .text {
    text-align: right;
}
.rtlstyle .news-block-three .inner-box .post-info {
    text-align: right;
}
.rtlstyle .news-block-three .inner-box .lower-content h3 {
    text-align: right;
}
.rtlstyle .news-block-three .inner-box .lower-content .text {
    text-align: right;
}
.rtlstyle .news-block-three .inner-box .lower-content .read-more {
    float: right;
}
.rtlstyle .support-form .form-group input[type="text"],
.rtlstyle .support-form .form-group input[type="tel"],
.rtlstyle .support-form .form-group input[type="email"], 
.rtlstyle .support-form .form-group select {
    text-align: right;
}
.rtlstyle .support-form .form-group textarea {
    text-align: right;
}
.rtlstyle .support-form button {
    float: right;
}
.rtlstyle .fluid-section-two .sec-title h2:before{
    display:none!important;
}

.rtlstyle .goals-section .content-column .inner-column .text p {
    text-align: right;
}
.rtlstyle .feature-block.alternate .inner-box .icon-box {
    text-align: right;
}
.rtlstyle .feature-block .inner-box h3 {
    text-align: right;
}
.rtlstyle .feature-block .inner-box .text {
    text-align: right;
}
.rtlstyle .task-section .content-column .inner-column .title {
    text-align: right;
}
.rtlstyle .task-section .content-column .inner-column h2 {
    text-align: right;
}
.rtlstyle .feature-block-two .inner-box h3 {
    text-align: right;
}
.rtlstyle .feature-block-two .inner-box h3:before{
	display:none!important;
}
.rtlstyle .feature-block-two .inner-box .text {
    text-align: right;
}
.rtlstyle .offer-section-two .offer-title-box .inner-box {
    text-align: right;
}
.rtlstyle .services-block-three .inner-box .icon-box {
    text-align: right;
}
.rtlstyle .services-block-three .inner-box .icon-box:after {
    left: 201px;
}
.rtlstyle .services-block-three .inner-box h3 {
    text-align: right;
}
.rtlstyle .services-block-three .inner-box .text {
    text-align: right;
}
.rtlstyle .services-block-three .inner-box .read-more {
    float: right;
}
.rtlstyle .task-section .content-column .inner-column .btn-box {
    float: right;
}
.rtlstyle .consult-block .inner-box .content-column .title {
    text-align: right;
}
.rtlstyle .consult-block .inner-box .content-column h3 {
    text-align: right;
}
.rtlstyle .consult-block .inner-box .content-column .text {
    text-align: right;
}
.rtlstyle .list-style-two li {
    text-align: right;    
	padding-right: 40px;
}
.rtlstyle .list-style-two li:before {
    left: 439px;
}
.rtlstyle .sec-title .title-text {
    text-align: right;
}
.rtlstyle .bkr003 .blog-1 .news-block .caption-box h3 {
    text-align: right;
}
.rtlstyle .bkr003 .blog-1 .news-block:hover .caption-box p {
    text-align: right;
}
.rtlstyle .bkr003 .blog-1 .news-block .caption-box .read-more {
    float: right;
}
.rtlstyle .call-to-action-section .left-column h2 {
    text-align: right;
}
.rtlstyle .modern-section .content-column .inner-column .btn-style-five{
	float:right;
}

.chart-block.now-in-view,
.zoomInStable {
    animation-name: zoomInStable; 
    animation-duration: 3s; 
    animation-iteration-count: 1;
    animation-timing-function: linear;
  
  -webkit-animation-name: zoomInStable; 
    -webkit-animation-duration: 3s; 
    -webkit-animation-iteration-count: 1;
    -webkit-animation-timing-function: linear;
  
  -moz-animation-name: zoomInStable; 
    -moz-animation-duration: 3s; 
    -moz-animation-iteration-count: 1;
    -moz-animation-timing-function: linear;
  
  -ms-animation-name: zoomInStable; 
    -ms-animation-duration: 3s; 
    -ms-animation-iteration-count: 1;
    -ms-animation-timing-function: linear;
  
  -o-animation-name: zoomInStable; 
    -o-animation-duration: 3s; 
    -o-animation-iteration-count: 1;
    -o-animation-timing-function: linear;
}

.zoomInStable2 {
    animation-name: zoomInStable; 
    animation-duration: 3s; 
    animation-iteration-count: infinite;
    animation-timing-function: linear;
  
  -webkit-animation-name: zoomInStable; 
    -webkit-animation-duration: 3s; 
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
  
  -moz-animation-name: zoomInStable; 
    -moz-animation-duration: 3s; 
    -moz-animation-iteration-count: infinite;
    -moz-animation-timing-function: linear;
  
  -ms-animation-name: zoomInStable; 
    -ms-animation-duration: 3s; 
    -ms-animation-iteration-count: infinite;
    -ms-animation-timing-function: linear;
  
  -o-animation-name: zoomInStable; 
    -o-animation-duration: 3s; 
    -o-animation-iteration-count: infinite;
    -o-animation-timing-function: linear;
}

.slideInUp {
    animation-name: slideInUp; 
    animation-duration: 2s; 
    animation-iteration-count: 1;
    animation-timing-function: linear;
  
  -webkit-animation-name: slideInUp; 
    -webkit-animation-duration: 2s; 
    -webkit-animation-iteration-count: 1;
    -webkit-animation-timing-function: linear;
  
  -moz-animation-name: slideInUp; 
    -moz-animation-duration: 2s; 
    -moz-animation-iteration-count: 1;
    -moz-animation-timing-function: linear;
  
  -ms-animation-name: slideInUp; 
    -ms-animation-duration: 2s; 
    -ms-animation-iteration-count: 1;
    -ms-animation-timing-function: linear;
  
}

.app-download-section .big-shape-14.now-in-view,
.slideInRight {
    animation-name: slideInRight; 
    animation-duration: 2s; 
    animation-iteration-count: 1;
    animation-timing-function: linear;
  
  -webkit-animation-name: slideInRight; 
    -webkit-animation-duration: 2s; 
    -webkit-animation-iteration-count: 1;
    -webkit-animation-timing-function: linear;
  
  -moz-animation-name: slideInRight; 
    -moz-animation-duration: 2s; 
    -moz-animation-iteration-count: 1;
    -moz-animation-timing-function: linear;
  
  -ms-animation-name: slideInRight; 
    -ms-animation-duration: 2s; 
    -ms-animation-iteration-count: 1;
    -ms-animation-timing-function: linear;
  
}

.slideInLeft{
    animation-name: slideInLeft; 
    animation-duration: 2s; 
    animation-iteration-count: 1;
    animation-timing-function: linear;
  
  -webkit-animation-name: slideInLeft; 
    -webkit-animation-duration: 2s; 
    -webkit-animation-iteration-count: 1;
    -webkit-animation-timing-function: linear;
  
  -moz-animation-name: slideInLeft; 
    -moz-animation-duration: 2s; 
    -moz-animation-iteration-count: 1;
    -moz-animation-timing-function: linear;
  
  -ms-animation-name: slideInLeft; 
    -ms-animation-duration: 2s; 
    -ms-animation-iteration-count: 1;
    -ms-animation-timing-function: linear;
  
}

.banner-section-one .shape-29.now-in-view,
.slideInDown {
    animation-name: slideInDown; 
    animation-duration: 2s; 
    animation-iteration-count: 1;
    animation-timing-function: linear;
  
  -webkit-animation-name: slideInDown; 
    -webkit-animation-duration: 2s; 
    -webkit-animation-iteration-count: 1;
    -webkit-animation-timing-function: linear;
  
  -moz-animation-name: slideInDown; 
    -moz-animation-duration: 2s;
    -moz-animation-iteration-count: 1;
    -moz-animation-timing-function: linear;
  
  -ms-animation-name: slideInDown; 
    -ms-animation-duration: 2s; 
    -ms-animation-iteration-count: 1;
    -ms-animation-timing-function: linear;
  
}

@-webkit-keyframes rotateme {
    0% {
        -webkit-transform: rotate(0deg);
        opacity: 1;
      }

    50% {
        -webkit-transform: rotate(180deg);
        opacity: 0.7;
      }
    100% {
        -webkit-transform: rotate(360deg);
        opacity: 1;
      }
}
@-moz-keyframes rotateme {
    0% {
        -moz-transform: rotate(0deg);
        opacity: 1;
      }

    50% {
        -moz-transform: rotate(180deg);
        opacity: 0.7;
      }
    100% {
        -moz-transform: rotate(360deg);
        opacity: 1;
      }
}
@-o-keyframes rotateme {
    0% {
        -o-transform: rotate(0deg);
        opacity: 1;
      }

    50% {
        -o-transform: rotate(180deg);
        opacity: 0.7;
      }
    100% {
        -o-transform: rotate(360deg);
        opacity: 1;
      }
}

@keyframes rotateme {
    
     0% {
        transform: rotate(0deg);
        opacity: 1;
      }

    50% {
        transform: rotate(180deg);
      }
    100% {
        transform: rotate(360deg);
        opacity: 1;
      }
}


.banner-section-two .shape-14,
.banner-section-two .shape-16,
.features-section-two .shape-6,
.call-to-action-one .shape-8{
    animation-name: rotateme; 
    animation-duration: 15s; 
    animation-iteration-count: infinite;
    animation-timing-function: linear;
	
	-webkit-animation-name: rotateme; 
    -webkit-animation-duration: 15s; 
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
	
	-moz-animation-name: rotateme; 
    -moz-animation-duration: 15s; 
    -moz-animation-iteration-count: infinite;
    -moz-animation-timing-function: linear;
	
	-ms-animation-name: rotateme; 
    -ms-animation-duration: 15s; 
    -ms-animation-iteration-count: infinite;
    -ms-animation-timing-function: linear;
	
	-o-animation-name: rotateme; 
    -o-animation-duration: 15s; 
    -o-animation-iteration-count: infinite;
    -o-animation-timing-function: linear;
}

/* Bob Up Down*/
@-webkit-keyframes float_up_down {
  0% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
    opacity: 1;
  }

  50% {
    -webkit-transform: translateY(30px);
    transform: translateY(30px);
    opacity: 1;
  }

  100% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
    opacity: 1;
  }
}

@keyframes float_up_down {
  0% {
    transform: translateY(0px);
    transform: translateY(0px);
    opacity: 1;
  }

  50% {
    transform: translateY(30px);
    transform: translateY(30px);
    opacity: 1;
  }

  100% {
    transform: translateY(0px);
    transform: translateY(0px);
    opacity: 1;
  }
}


.banner-section-two .shape-15 {
    animation-name: float_up_down; 
    animation-duration: 5s; 
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    
    -webkit-animation-name: float_up_down; 
    -webkit-animation-duration: 5s; 
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    
    -moz-animation-name: float_up_down; 
    -moz-animation-duration: 5s; 
    -moz-animation-iteration-count: infinite;
    -moz-animation-timing-function: linear;
    
    -ms-animation-name: float_up_down; 
    -ms-animation-duration: 5s; 
    -ms-animation-iteration-count: infinite;
    -ms-animation-timing-function: linear;
    
    -o-animation-name: float_left_right; 
    -o-animation-duration: 5s; 
    -o-animation-iteration-count: infinite;
    -o-animation-timing-function: linear;
}

@-webkit-keyframes float_up_down_two {
    0% {
        -webkit-transform: rotateX(0deg) translateY(0px);
        transform: rotateX(0deg) translateY(0px)
    }
    50% {
        -webkit-transform: rotateX(0deg) translateY(15px);
        transform: rotateX(0deg) translateY(15px)
    }
    to {
        -webkit-transform: rotateX(0deg) translateY(0px);
        transform: rotateX(0deg) translateY(0px)
    }
}

@keyframes float_up_down_two {
    0% {
        -webkit-transform: rotateX(0deg) translateY(0px);
        transform: rotateX(0deg) translateY(0px)
    }
    50% {
        -webkit-transform: rotateX(0deg) translateY(15px);
        transform: rotateX(0deg) translateY(15px)
    }
    to {
        -webkit-transform: rotateX(0deg) translateY(0px);
        transform: rotateX(0deg) translateY(0px)
    }
}

.image-block-one .image img,
.features-section-eight .image img,
.features-section-five .image img,
.features-section-eleven .image img,
.image-block-three .image-box-one img,
.banner-section-five .image img,
.banner-section-three .image img,
.about-section .shape-5,
.call-to-action-one .shape-5,
.image-block-two .image img{
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: cubic-bezier(0.54, 0.085, 0.5, 0.92);
    animation-timing-function: cubic-bezier(0.54, 0.085, 0.5, 0.92);
    -webkit-animation-name: float_up_down_two;
    animation-name: float_up_down_two;
    -webkit-animation-duration: 5s;
    animation-duration: 5s
}

/* Bob */
@-webkit-keyframes float_left_right {
  0% {
    -webkit-transform: translateX(-100px);
    transform: translateX(-100px);
    opacity: 1;
  }

  50% {
    -webkit-transform: translateX(100px);
    transform: translateX(100px);
    opacity: 0.40;
  }

  100% {
    -webkit-transform: translateX(-100px);
    transform: translateX(-100px);
    opacity: 1;
  }
}

@keyframes float_left_right {
  0% {
    -webkit-transform: translateX(-100px);
    transform: translateX(-100px);
    opacity: 1;
  }

  50% {
    -webkit-transform: translateX(100px);
    transform: translateX(100px);
    opacity: 0.40;
  }

  100% {
    -webkit-transform: translateX(-100px);
    transform: translateX(-100px);
    opacity: 1;
  }
}


.circle-animation {
    animation-name: circle_animation; 
    animation-duration: 30s; 
    animation-iteration-count: infinite;
    animation-timing-function: linear;
  
  -webkit-animation-name: circle_animation; 
    -webkit-animation-duration: 30s; 
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
  
  -moz-animation-name: circle_animation; 
    -moz-animation-duration: 30s; 
    -moz-animation-iteration-count: infinite;
    -moz-animation-timing-function: linear;
  
  -ms-animation-name: circle_animation; 
    -ms-animation-duration: 30s; 
    -ms-animation-iteration-count: infinite;
    -ms-animation-timing-function: linear;
  
  -o-animation-name: circle_animation; 
    -o-animation-duration: 30s; 
    -o-animation-iteration-count: infinite;
    -o-animation-timing-function: linear;
}

@keyframes circle_animation {
  0% {
    transform:  translate(165px,-179px)  ;
  }
  100% {
    transform:  translate(-346px,617px)  ;
  }
}


@-webkit-keyframes circle_animation {
  0% {
    -webkit-transform:  translate(165px,-179px)  ;
  }
  100% {
    -webkit-transform:  translate(-346px,617px)  ;
  }
}

.banner-section-three .shape-18,
.sec-title .shape-icon,
.subscribe-section-two .icon-buildings,
.subscribe-section .icon-buildings,
.video-section .icon-buildings{
    animation-name: float_left_right; 
    animation-duration: 30s; 
    animation-iteration-count: infinite;
    animation-timing-function: linear;
  
  -webkit-animation-name: float_left_right; 
    -webkit-animation-duration: 30s; 
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
  
  -moz-animation-name: float_left_right; 
    -moz-animation-duration: 30s; 
    -moz-animation-iteration-count: infinite;
    -moz-animation-timing-function: linear;
  
  -ms-animation-name: float_left_right; 
    -ms-animation-duration: 30s; 
    -ms-animation-iteration-count: infinite;
    -ms-animation-timing-function: linear;
  
  -o-animation-name: float_left_right; 
    -o-animation-duration: 30s; 
    -o-animation-iteration-count: infinite;
    -o-animation-timing-function: linear;
}

@-webkit-keyframes float_left_right_two {
  0% {
    -webkit-transform: translateX(-30px);
    opacity: 1;
  }

  50% {
    -webkit-transform: translateX(0px);
    opacity: 0.80;
  }

  100% {
    -webkit-transform: translateX(-30px);
    opacity: 1;
  }
}

@keyframes float_left_right_two {
  0% {
    transform: translateX(-30px);
    opacity: 1;
  }

  50% {
    transform: translateX(0px);
    opacity: 0.80;
  }

  100% {
    transform: translateX(-30px);
    opacity: 1;
  }
}

.banner-section-five .drone,
.banner-section-two .shape-12,
.icon-mountain{
    animation-name: float_left_right_two; 
    animation-duration: 5s; 
    animation-iteration-count: infinite;
    animation-timing-function: linear;
  
  -webkit-animation-name: float_left_right_two; 
    -webkit-animation-duration: 5s; 
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
  
  -moz-animation-name: float_left_right_two; 
    -moz-animation-duration: 5s; 
    -moz-animation-iteration-count: infinite;
    -moz-animation-timing-function: linear;
  
  -ms-animation-name: float_left_right_two; 
    -ms-animation-duration: 5s; 
    -ms-animation-iteration-count: infinite;
    -ms-animation-timing-function: linear;
  
  -o-animation-name: float_left_right_two; 
    -o-animation-duration: 5s; 
    -o-animation-iteration-count: infinite;
    -o-animation-timing-function: linear;
}


@-webkit-keyframes zoom-fade {
  0% {
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
  }

  50% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  100% {
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
  }
}

@keyframes zoom-fade {
  0% {
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
  }

  50% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  100% {
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
  }
}

.banner-section-two .shape-13,
.testimonial-section .shape-7,
.banner-section-one .video-box .video-link .icon,
.zoomFade{
    animation-name: zoom-fade; 
    animation-duration: 3s; 
    animation-iteration-count: infinite;
    animation-timing-function: linear;
	
	-webkit-animation-name: zoom-fade; 
    -webkit-animation-duration: 3s; 
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
	
	-moz-animation-name: zoom-fade; 
    -moz-animation-duration: 3s; 
    -moz-animation-iteration-count: infinite;
    -moz-animation-timing-function: linear;
	
	-ms-animation-name: zoom-fade; 
    -ms-animation-duration: 3s; 
    -ms-animation-iteration-count: infinite;
    -ms-animation-timing-function: linear;
	
	-o-animation-name: zoom-fade; 
    -o-animation-duration: 3s; 
    -o-animation-iteration-count: infinite;
    -o-animation-timing-function: linear;
}


@-webkit-keyframes zoom-fade-two {
  0% {
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
  }

  50% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  100% {
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
  }
}

@keyframes zoom-fade-two {
  0% {
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
  }

  50% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  100% {
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
  }
}

.pricing-table .shape-17,
.integrations-block .anim-icons .icon{
    animation-name: zoom-fade-two; 
    animation-duration: 3s; 
    animation-iteration-count: infinite;
    animation-timing-function: linear;
  
  -webkit-animation-name: zoom-fade-two; 
    -webkit-animation-duration: 3s; 
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
  
  -moz-animation-name: zoom-fade-two; 
    -moz-animation-duration: 3s; 
    -moz-animation-iteration-count: infinite;
    -moz-animation-timing-function: linear;
  
  -ms-animation-name: zoom-fade-two; 
    -ms-animation-duration: 3s; 
    -ms-animation-iteration-count: infinite;
    -ms-animation-timing-function: linear;
  
  -o-animation-name: zoom-fade-two; 
    -o-animation-duration: 3s; 
    -o-animation-iteration-count: infinite;
    -o-animation-timing-function: linear;
}

/*--------------------------------------------------------------
9. Animations
--------------------------------------------------------------*/
.animated {
	-webkit-animation-fill-mode: both;
		animation-fill-mode: both;
}

[data-animation]:before,
[data-animation]:after,
[data-animation] {
    opacity: 0;
}

[data-animation].animated:before,
[data-animation].animated:after,
[data-animation].animated {
    opacity: 1;
}

.tr-delay01,
.tr-delay01:before,
.tr-delay01:after {
	-webkit-transition-delay: .1s !important;
	    -o-transition-delay: .1s !important;
	        transition-delay: .1s !important; 
}

.tr-delay02,
.tr-delay02:before,
.tr-delay02:after {
	-webkit-transition-delay: .2s !important;
	    -o-transition-delay: .2s !important;
	        transition-delay: .2s !important;
}

.tr-delay03,
.tr-delay03:before,
.tr-delay03:after {
	-webkit-transition-delay: .3s !important;
	    -o-transition-delay: .3s !important;
	        transition-delay: .3s !important;
}

.tr-delay04,
.tr-delay04:before,
.tr-delay04:after {
	-webkit-transition-delay: .4s !important;
	    -o-transition-delay: .4s !important;
	        transition-delay: .4s !important;
}

.tr-delay05,
.tr-delay05:before,
.tr-delay05:after {
	-webkit-transition-delay: .5s !important;
	    -o-transition-delay: .5s !important;
	        transition-delay: .5s !important;
}

.tr-delay06,
.tr-delay06:before,
.tr-delay06:after {
	-webkit-transition-delay: .6s !important;
	    -o-transition-delay: .6s !important;
	        transition-delay: .6s !important;
}

.tr-delay07,
.tr-delay07:before,
.tr-delay07:after {
	-webkit-transition-delay: .7s !important;
	    -o-transition-delay: .7s !important;
	        transition-delay: .7s !important;
}

.tr-delay08,
.tr-delay08:before,
.tr-delay08:after {
	-webkit-transition-delay: .8s !important;
	    -o-transition-delay: .8s !important;
	        transition-delay: .8s !important;
}

.tr-delay09,
.tr-delay09:before,
.tr-delay09:after {
	-webkit-transition-delay: .9s !important;
	    -o-transition-delay: .9s !important;
	        transition-delay: .9s !important;
}

.tr-delay10,
.tr-delay10:before,
.tr-delay10:after {
	-webkit-transition-delay: 1s !important;
	    -o-transition-delay: 1s !important;
	        transition-delay: 1s !important;
}

.overlay-light-bg-1:before {
	background: #f5f5f5 !important;
}

.overlay-light-bg-2:before {
	background: #f0f0f0 !important;
}

.overlay-dark-bg-1:before {
	background: #111517 !important;
}

.overlay-dark-bg-2:before {
	background: #222 !important;
}

.overlay-red-bg:before {
	background: #ef0d33 !important;
}

.red-color.overlay-anim-box2:before,
.red-color.overlay-anim-box:before,
.red-color.overlay-loading:before,
.red-color.overlay-loading2:before,
.red-color .overlay-anim-box2:before,
.red-color .overlay-anim-box:before,
.red-color .overlay-loading:before,
.red-color .overlay-loading2:before {
	background: #FF0000 !important;
}

/* 9.1. Loading animations */

/* 9.1.1. Loading overlay animation #1 */
.overlay-loading {
	display: inline-block;
	overflow: hidden;
	position: relative;
}

.overlay-loading:before {
	content: '';
	width: 100%;
	height: 100%;
	background: #1b2a2f;
	position: absolute;
	top: 0;
	left: 100%;
	-webkit-transition: 1.8s cubic-bezier(.77, 0, .175, 1);
		-o-transition: 1.8s cubic-bezier(.77, 0, .175, 1);
			transition: 1.8s cubic-bezier(.77, 0, .175, 1);
	z-index: 3;
	-webkit-transform: translateX(-202%);
	    -ms-transform: translateX(-202%);
	        transform: translateX(-202%);
}

body.anim .overlay-loading:before {
	-webkit-transform: translateX(1%);
	    -ms-transform: translateX(1%);
	        transform: translateX(1%);
}

.loading-opacity-anim {
	opacity: 0;
	-webkit-transition: 0s;
		-o-transition: 0s;
			transition: 0s;
	-webkit-transition-delay: .86s;
	     -o-transition-delay: .86s;
	        transition-delay: .86s;
}

body.anim .loading-opacity-anim {
	opacity: 1;	
}

.dark-bg-1 .overlay-loading:before,
.dark-bg-2 .overlay-loading:before {
	background: #f5f5f5;
}

.tr-delay01 .loading-opacity-anim {
	-webkit-transition-delay: .96s;
	    -o-transition-delay: .96s;
	        transition-delay: .96s;
}

.tr-delay02 .loading-opacity-anim {
	-webkit-transition-delay: 1.06s;
	    -o-transition-delay: 1.06s;
	        transition-delay: 1.06s;
}

.tr-delay03 .loading-opacity-anim {
	-webkit-transition-delay: 1.16s;
	    -o-transition-delay: 1.16s;
	        transition-delay: 1.16s;
}

.tr-delay04 .loading-opacity-anim {
	-webkit-transition-delay: 1.26s;
	    -o-transition-delay: 1.26s;
	        transition-delay: 1.26s;
}

.tr-delay05 .loading-opacity-anim {
	-webkit-transition-delay: 1.36s;
	    -o-transition-delay: 1.36s;
	        transition-delay: 1.36s;
}

.tr-delay06 .loading-opacity-anim {
	-webkit-transition-delay: 1.46s;
	    -o-transition-delay: 1.46s;
	        transition-delay: 1.46s;
}

.tr-delay07 .loading-opacity-anim {
	-webkit-transition-delay: 1.56s;
	    -o-transition-delay: 1.56s;
	        transition-delay: 1.56s;
}

.tr-delay08 .loading-opacity-anim {
	-webkit-transition-delay: 1.66s;
	    -o-transition-delay: 1.66s;
	        transition-delay: 1.66s;
}

.tr-delay09 .loading-opacity-anim {
	-webkit-transition-delay: 1.76s;
	    -o-transition-delay: 1.76s;
	        transition-delay: 1.76s;
}

.tr-delay10 .loading-opacity-anim {
	-webkit-transition-delay: 1.86s;
	    -o-transition-delay: 1.86s;
	        transition-delay: 1.86s;
}

/* 9.1.2. Loading overlay animation #2 */
.overlay-loading2 {
	display: inline-block;
	overflow: hidden;
	position: relative;
}

.overlay-loading2:before {
	content: '';
	width: calc(100% + 1px);
	height: 100%;
	background: #f5f5f5;
	position: absolute;
	top: 0;
	left: 100%;	
	-webkit-transition: 1s cubic-bezier(.86, 0, .07, 1);
		-o-transition: 1s cubic-bezier(.86, 0, .07, 1);
			transition: 1s cubic-bezier(.86, 0, .07, 1);
	z-index: 3;
	-webkit-transform: translateX(-100%);
	    -ms-transform: translateX(-100%);
	        transform: translateX(-100%);
}

body.anim .overlay-loading2:before {
	-webkit-transform: translateX(1%);
	    -ms-transform: translateX(1%);
	        transform: translateX(1%);
}

.light-bg-2 .overlay-loading2:before {
	background: #f0f0f0;
}

.dark-bg-1 .overlay-loading2:before {
	background: #111517;
}

.dark-bg-2 .overlay-loading2:before {
	background: #1b2a2f;
}

.red-bg .overlay-loading2:before {
	background: #ef0d33;
}

/* 9.1.3. Loading fade animation */
.fade-loading {
	display: inline-block;
	opacity: 0;
    -webkit-transform: translateY(30px);
        -ms-transform: translateY(30px);
            transform: translateY(30px);
    -webkit-transition: 1s cubic-bezier(.77, 0, .175, 1);
    	-o-transition: 1s cubic-bezier(.77, 0, .175, 1);
			transition: 1s cubic-bezier(.77, 0, .175, 1);
}

body.anim .fade-loading {
	opacity: 1;
    -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
            transform: translateY(0);
}

/* 9.1.4. Loading title fill animation */
.load-title-fill {
	white-space: nowrap;
	color: transparent;
	position: relative;
	display: inline-block;
}

.load-title-fill:before,
.load-title-fill:after {
	content: attr(data-text);
	position: absolute;
	top: 50%;
	color: #262626;
	-webkit-transform: translateY(-50%);
	    -ms-transform: translateY(-50%);
	        transform: translateY(-50%);
	left: 0;
	-webkit-transition: 1s cubic-bezier(.77, 0, .175, 1);
		-o-transition: 1s cubic-bezier(.77, 0, .175, 1);
			transition: 1s cubic-bezier(.77, 0, .175, 1);
	width: 0%;
	white-space: nowrap;
	overflow: hidden;
}

.load-title-fill:after {
	color: #ef0d33;
	background: #f5f5f5;
	-webkit-transition-delay: .3s;
	    -o-transition-delay: .3s;
	        transition-delay: .3s;
}

body.anim .load-title-fill:before,
body.anim .load-title-fill:after {
	width: 100%;
}

.dark-bg-1 .load-title-fill:before,
.dark-bg-2 .load-title-fill:before {
	color: white;
}

.red-bg .load-title-fill:before {
	color: #262626;
}

.light-bg-2 .load-title-fill:after {
	background: #f0f0f0;
}

.dark-bg-1 .load-title-fill:after {
	background: #111517;
}

.dark-bg-2 .load-title-fill:after {
	background: #1b2a2f;
}

.red-bg .load-title-fill:after {
	background: #1b2a2f;
}

.tr-delay01.load-title-fill:after {
	-webkit-transition-delay: .4s !important;
	    -o-transition-delay: .4s !important;
	        transition-delay: .4s !important;
}

.tr-delay02.load-title-fill:after {
	-webkit-transition-delay: .5s !important;
	    -o-transition-delay: .5s !important;
	        transition-delay: .5s !important;
}

.tr-delay03.load-title-fill:after {
	-webkit-transition-delay: .6s !important;
	    -o-transition-delay: .6s !important;
	        transition-delay: .6s !important;
}

.tr-delay04.load-title-fill:after {
	-webkit-transition-delay: .7s !important;
	    -o-transition-delay: .7s !important;
	        transition-delay: .7s !important;
}

.tr-delay05.load-title-fill:after {
	-webkit-transition-delay: .8s !important;
	    -o-transition-delay: .8s !important;
	        transition-delay: .8s !important;
}

.tr-delay06.load-title-fill:after {
	-webkit-transition-delay: .9s !important;
	    -o-transition-delay: .9s !important;
	        transition-delay: .9s !important;
}

.tr-delay07.load-title-fill:after {
	-webkit-transition-delay: 1s !important;
	    -o-transition-delay: 1s !important;
	        transition-delay: 1s !important;
}

.tr-delay08.load-title-fill:after {
	-webkit-transition-delay: 1.1s !important;
	    -o-transition-delay: 1.1s !important;
	        transition-delay: 1.1s !important;
}

.tr-delay09.load-title-fill:after {
	-webkit-transition-delay: 1.2s !important;
	    -o-transition-delay: 1.2s !important;
	        transition-delay: 1.2s !important;
}

.tr-delay10.load-title-fill:after {
	-webkit-transition-delay: 1.3s !important;
	    -o-transition-delay: 1.3s !important;
	        transition-delay: 1.3s !important;
}

/* 9.2. Scroll animations */

/* 9.2.1. Scroll overlay animation #1 */
[data-animation].overlay-anim-box:before,
[data-animation].overlay-anim-box:after,
[data-animation].overlay-anim-box {
    opacity: 1;
}

.overlay-anim-box {
	display: inline-block;
	overflow: hidden;
	position: relative;
}

.overlay-anim-box:before {
	content: '';
	width: 100%;
	height: 100%;
	background: #1b2a2f;
	position: absolute;
	top: 0;
	left: 100%;
	-webkit-transition: 1.8s cubic-bezier(.77, 0, .175, 1);
		-o-transition: 1.8s cubic-bezier(.77, 0, .175, 1);
			transition: 1.8s cubic-bezier(.77, 0, .175, 1);
	z-index: 3;
	-webkit-transform: translateX(-202%);
	    -ms-transform: translateX(-202%);
	        transform: translateX(-202%);
}

.overlay-anim-box.overlay-anim:before {
	-webkit-transform: translateX(1%);
	    -ms-transform: translateX(1%);
	        transform: translateX(1%);
}

.overlay-opacity-anim {
	opacity: 0;
	-webkit-transition: 0s;
		-o-transition: 0s;
			transition: 0s;
	-webkit-transition-delay: .86s;
	    -o-transition-delay: .86s;
	        transition-delay: .86s;
}

.overlay-anim .overlay-opacity-anim {
	opacity: 1;	
}

.dark-bg-1 .overlay-anim-box:before,
.dark-bg-2 .overlay-anim-box:before {
	background: #f5f5f5;
}

.tr-delay01 .overlay-opacity-anim {
	-webkit-transition-delay: .96s;
	    -o-transition-delay: .96s;
	        transition-delay: .96s;
}

.tr-delay02 .overlay-opacity-anim {
	-webkit-transition-delay: 1.06s;
	    -o-transition-delay: 1.06s;
	        transition-delay: 1.06s;
}

.tr-delay03 .overlay-opacity-anim {
	-webkit-transition-delay: 1.16s;
	    -o-transition-delay: 1.16s;
	        transition-delay: 1.16s;
}

.tr-delay04 .overlay-opacity-anim {
	-webkit-transition-delay: 1.26s;
	    -o-transition-delay: 1.26s;
	        transition-delay: 1.26s;
}

.tr-delay05 .overlay-opacity-anim {
	-webkit-transition-delay: 1.36s;
	    -o-transition-delay: 1.36s;
	        transition-delay: 1.36s;
}

.tr-delay06 .overlay-opacity-anim {
	-webkit-transition-delay: 1.46s;
	    -o-transition-delay: 1.46s;
	        transition-delay: 1.46s;
}

.tr-delay07 .overlay-opacity-anim {
	-webkit-transition-delay: 1.56s;
	    -o-transition-delay: 1.56s;
	        transition-delay: 1.56s;
}

.tr-delay08 .overlay-opacity-anim {
	-webkit-transition-delay: 1.66s;
	    -o-transition-delay: 1.66s;
	        transition-delay: 1.66s;
}

.tr-delay09 .overlay-opacity-anim {
	-webkit-transition-delay: 1.76s;
	    -o-transition-delay: 1.76s;
	        transition-delay: 1.76s;
}

.tr-delay10 .overlay-opacity-anim {
	-webkit-transition-delay: 1.86s;
	    -o-transition-delay: 1.86s;
	        transition-delay: 1.86s;
}

/* 9.2.2. Scroll overlay animation #2 */
[data-animation].overlay-anim-box2:before,
[data-animation].overlay-anim-box2:after,
[data-animation].overlay-anim-box2 {
    opacity: 1;
}

.overlay-anim-box2 {
	display: inline-block;
	overflow: hidden;
	position: relative;
}

.overlay-anim-box2:before {
    content: '';
    width: calc(100% + 1px);
    height: 100%;
    background: #f5f5f5;
    position: absolute;
    top: 0;
    left: 100%;
    -webkit-transition: 1s cubic-bezier(.86, 0, .07, 1);
    -o-transition: 1s cubic-bezier(.86, 0, .07, 1);
    transition: 1s cubic-bezier(.86, 0, .07, 1);
    z-index: 3;
    -webkit-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    transform: translateX(-100%);
}

.overlay-anim-box2.overlay-anim2:before {
	-webkit-transform: translateX(1%);
	    -ms-transform: translateX(1%);
	        transform: translateX(1%);
}

.light-bg-2 .overlay-anim-box2:before {
	background: #f0f0f0;
}

.dark-bg-1 .overlay-anim-box2:before {
	background: #111517;
}

.dark-bg-2 .overlay-anim-box2:before {
	background: #1b2a2f;
}

.red-bg .overlay-anim-box2:before {
	background: #ef0d33;
}

/* 9.2.3. Scroll fade animation */
.fade-anim-box {
	display: inline-block;
	opacity: 0;
    -webkit-transform: translateY(30px);
        -ms-transform: translateY(30px);
            transform: translateY(30px);
    -webkit-transition: 1s cubic-bezier(.77, 0, .175, 1);
    	-o-transition: 1s cubic-bezier(.77, 0, .175, 1);
			transition: 1s cubic-bezier(.77, 0, .175, 1);
}

.fade-anim-box.fade-anim {
	opacity: 1;
    -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
            transform: translateY(0);
}

/* 9.2.4. Scroll title fill animation */
[data-animation].title-fill:before,
[data-animation].title-fill:after,
[data-animation].title-fill {
    opacity: 1;
}

.title-fill {
	white-space: nowrap;
	color: transparent;
	position: relative;
	display: inline-block;
}

.title-fill:before,
.title-fill:after {
	content: attr(data-text);
	position: absolute;
	top: 50%;
	color: #262626;
	-webkit-transform: translateY(-50%);
	    -ms-transform: translateY(-50%);
	        transform: translateY(-50%);
	left: 0;
	-webkit-transition: 1s cubic-bezier(.77, 0, .175, 1);
		-o-transition: 1s cubic-bezier(.77, 0, .175, 1);
			transition: 1s cubic-bezier(.77, 0, .175, 1);
	width: 0%;
	white-space: nowrap;
	overflow: hidden;
}

.title-fill:after {
	color: #ef0d33;
	background: transparent;
	-webkit-transition-delay: .3s;
	    -o-transition-delay: .3s;
	        transition-delay: .3s;
}

.title-fill.title-fill-anim:before,
.title-fill.title-fill-anim:after {
	width: 100%;
}

.dark-bg-1 .title-fill:before,
.dark-bg-2 .title-fill:before {
	color: white;
}

.red-bg .title-fill:before {
	color: #262626;
}

.light-bg-2 .title-fill:after {
	background: #f0f0f0;
}

.dark-bg-1 .title-fill:after {
	background: #111517;
}

.dark-bg-2 .title-fill:after {
	background: #1b2a2f;
}

.red-bg .title-fill:after {
	background: #1b2a2f;
}

.tr-delay01.title-fill:after {
	-webkit-transition-delay: .4s !important;
	    -o-transition-delay: .4s !important;
	        transition-delay: .4s !important;
}

.tr-delay02.title-fill:after {
	-webkit-transition-delay: .5s !important;
	    -o-transition-delay: .5s !important;
	        transition-delay: .5s !important;
}

.tr-delay03.title-fill:after {
	-webkit-transition-delay: .6s !important;
	    -o-transition-delay: .6s !important;
	        transition-delay: .6s !important;
}

.tr-delay04.title-fill:after {
	-webkit-transition-delay: .7s !important;
	    -o-transition-delay: .7s !important;
	        transition-delay: .7s !important;
}

.tr-delay05.title-fill:after {
	-webkit-transition-delay: .8s !important;
	    -o-transition-delay: .8s !important;
	        transition-delay: .8s !important;
}

.tr-delay06.title-fill:after {
	-webkit-transition-delay: .9s !important;
	    -o-transition-delay: .9s !important;
	        transition-delay: .9s !important;
}

.tr-delay07.title-fill:after {
	-webkit-transition-delay: 1s !important;
	    -o-transition-delay: 1s !important;
	        transition-delay: 1s !important;
}

.tr-delay08.title-fill:after {
	-webkit-transition-delay: 1.1s !important;
	    -o-transition-delay: 1.1s !important;
	        transition-delay: 1.1s !important;
}

.tr-delay09.title-fill:after {
	-webkit-transition-delay: 1.2s !important;
	    -o-transition-delay: 1.2s !important;
	        transition-delay: 1.2s !important;
}

.tr-delay10.title-fill:after {
	-webkit-transition-delay: 1.3s !important;
	    -o-transition-delay: 1.3s !important;
	        transition-delay: 1.3s !important;
}

/*--------------------------------------------------------------
10. Hovers
--------------------------------------------------------------*/
.hover-content {
	-webkit-transition: 1s cubic-bezier(.77, 0, .175, 1);
		-o-transition: 1s cubic-bezier(.77, 0, .175, 1);
			transition: 1s cubic-bezier(.77, 0, .175, 1);
	display: inline-block;
}

.hover-box:hover .hover-content {
	-webkit-transform: translateX(20px);
	    -ms-transform: translateX(20px);
	        transform: translateX(20px);
}

.hover-img {
	-webkit-transition: 1s cubic-bezier(.86, 0, .07, 1);
		-o-transition: 1s cubic-bezier(.86, 0, .07, 1);
			transition: 1s cubic-bezier(.86, 0, .07, 1);
}

.hover-box:hover .hover-img {
	-webkit-transform: scale(1.1);
	    -ms-transform: scale(1.1);
	        transform: scale(1.1);
}

.hidden-box {
	overflow: hidden;
}

.hover-fill-effect {
	position: relative;
	white-space: nowrap;
	display: inline-block;
}

.hover-fill-effect:before {
	content: attr(data-text);
	position: absolute;
	top: 0;
	color: #ef0d33;
	left: 0;
	-webkit-transition: .8s cubic-bezier(.86, 0, .07, 1);
		-o-transition: .8s cubic-bezier(.86, 0, .07, 1);
			transition: .8s cubic-bezier(.86, 0, .07, 1);
	width: 0%;
	white-space: nowrap;
	z-index: 2;
	background: #f5f5f5; 
	overflow: hidden;
}

.hover-box:hover .hover-fill-effect:before {
	width: 100%;
}

.hover-fill-effect:after {
	content: '';
	width: 40px;
	height: 2px;
	position: absolute;
	right: -60px;
	top: 50%;
	-webkit-transform: translateY(-50%) scaleX(0);
	    -ms-transform: translateY(-50%) scaleX(0);
	        transform: translateY(-50%) scaleX(0);
	-webkit-transform-origin: left;
	    -ms-transform-origin: left;
	        transform-origin: left;
	background: #ef0d33;
	-webkit-transition: 1.2s cubic-bezier(.165, .84, .44, 1);
		-o-transition: 1.2s cubic-bezier(.165, .84, .44, 1);
			transition: 1.2s cubic-bezier(.165, .84, .44, 1);
}

.hover-box:hover .hover-fill-effect:after {
	-webkit-transform: translateY(-50%) scaleX(1);
	    -ms-transform: translateY(-50%) scaleX(1);
	        transform: translateY(-50%) scaleX(1);
}

.hover-color {
	-webkit-transition: .7s cubic-bezier(.165, .84, .44, 1);
		-o-transition: .7s cubic-bezier(.165, .84, .44, 1);
			transition: .7s cubic-bezier(.165, .84, .44, 1);
}

.hover-color:hover {
	color: #ef0d33;
}

.light-bg-2 .hover-fill-effect:before {
	background: #f0f0f0;
}

.dark-bg-1 .hover-fill-effect:before {
	background: #111517;
}

.dark-bg-2 .hover-fill-effect:before {
	background: #1b2a2f;
}

.red-bg .hover-fill-effect:before {
	background: #1b2a2f;
}

.red-bg .hover-fill-effect:after {
	background: #262626;
}

.tr-delay01 .hover-img {
	-webkit-transition-delay: .1s;
	    -o-transition-delay: .1s;
	        transition-delay: .1s;
}

.tr-delay02 .hover-img {
	-webkit-transition-delay: .2s;
	    -o-transition-delay: .2s;
	        transition-delay: .2s;
}

.tr-delay03 .hover-img {
	-webkit-transition-delay: .3s;
	    -o-transition-delay: .3s;
	        transition-delay: .3s;
}

.tr-delay04 .hover-img {
	-webkit-transition-delay: .4s;
	    -o-transition-delay: .4s;
	        transition-delay: .4s;
}

.tr-delay05 .hover-img {
	-webkit-transition-delay: .5s;
	    -o-transition-delay: .5s;
	        transition-delay: .5s;
}

.tr-delay06 .hover-img {
	-webkit-transition-delay: .6s;
	    -o-transition-delay: .6s;
	        transition-delay: .6s;
}

.tr-delay07 .hover-img {
	-webkit-transition-delay: .7s;
	    -o-transition-delay: .7s;
	        transition-delay: .7s;
}

.tr-delay08 .hover-img {
	-webkit-transition-delay: .8s;
	    -o-transition-delay: .8s;
	        transition-delay: .8s;
}

.tr-delay09 .hover-img {
	-webkit-transition-delay: .9s;
	    -o-transition-delay: .9s;
	        transition-delay: .9s;
}

.tr-delay10 .hover-img {
	-webkit-transition-delay: 1s;
	    -o-transition-delay: 1s;
	        transition-delay: 1s;
}
	/*
  	Flaticon icon font: Flaticon
  	Creation date: 04/12/2019 10:15
  	*/

@font-face {
  font-family: "Flaticon";
  src: url(//jaquesofalltrades.com/wp-content/themes/buildnet/assets/fonts/Flaticon.eot);
  src: url(//jaquesofalltrades.com/wp-content/themes/buildnet/assets/fonts/Flaticon.eot?#iefix) format("embedded-opentype"),
       url(//jaquesofalltrades.com/wp-content/themes/buildnet/assets/fonts/Flaticon.woff2) format("woff2"),
       url(//jaquesofalltrades.com/wp-content/themes/buildnet/assets/fonts/Flaticon.woff) format("woff"),
       url(//jaquesofalltrades.com/wp-content/themes/buildnet/assets/fonts/Flaticon.ttf) format("truetype"),
       url(//jaquesofalltrades.com/wp-content/themes/buildnet/assets/fonts/Flaticon.svg#Flaticon) format("svg");
  font-weight: normal;
  font-style: normal;
}

@media screen and (-webkit-min-device-pixel-ratio:0) {
  @font-face {
    font-family: "Flaticon";
    src: url(//jaquesofalltrades.com/wp-content/themes/buildnet/assets/fonts/Flaticon.svg#Flaticon) format("svg");
  }
}

[class^="flaticon-"]:before, [class*=" flaticon-"]:before,
[class^="flaticon-"]:after, [class*=" flaticon-"]:after {   
  font-family: Flaticon;
font-style: normal;
margin-left: 0px;
}

.flaticon-man:before { content: "\f100"; }
.flaticon-gear:before { content: "\f101"; }
.flaticon-gear-1:before { content: "\f102"; }
.flaticon-laborers:before { content: "\f103"; }
.flaticon-email:before { content: "\f104"; }
.flaticon-crane:before { content: "\f105"; }
.flaticon-warehouse:before { content: "\f106"; }
.flaticon-add:before { content: "\f107"; }
.flaticon-plus-sign:before { content: "\f108"; }
.flaticon-substract:before { content: "\f109"; }
.flaticon-substract-1:before { content: "\f10a"; }
.flaticon-architect-with-helmet:before { content: "\f10b"; }
.flaticon-24-hours:before { content: "\f10c"; }
.flaticon-call:before { content: "\f10d"; }
.flaticon-call-1:before { content: "\f10e"; }
.flaticon-team:before { content: "\f10f"; }
.flaticon-work-team:before { content: "\f110"; }
.flaticon-demolishing:before { content: "\f111"; }
.flaticon-worker:before { content: "\f112"; }
.flaticon-on-time:before { content: "\f113"; }
.flaticon-placeholder-filled-point:before { content: "\f114"; }
.flaticon-envelope:before { content: "\f115"; }
.flaticon-testing:before { content: "\f116"; }
.flaticon-architect:before { content: "\f117"; }
.flaticon-business-and-finance:before { content: "\f118"; }
.flaticon-electronics:before { content: "\f119"; }
.flaticon-calendar:before { content: "\f11a"; }
.flaticon-work:before { content: "\f11b"; }
.flaticon-blueprint-4:before { content: "\f11c"; }
.flaticon-worker-2:before { content: "\f11d"; }
.flaticon-worker-3:before { content: "\f11e"; }
.flaticon-tripod-1:before { content: "\f11f"; }
.flaticon-worker-4:before { content: "\f120"; }
.flaticon-house-2:before { content: "\f121"; }
.flaticon-town:before { content: "\f122"; }
.flaticon-blueprint-5:before { content: "\f123"; }
.flaticon-crane-4:before { content: "\f124"; }
.flaticon-helmet-1:before { content: "\f125"; }
.flaticon-worker-5:before { content: "\f126"; }
.flaticon-real-estate:before { content: "\f127"; }
.flaticon-dig:before { content: "\f128"; }
.flaticon-screen:before { content: "\f129"; }
.flaticon-urban:before { content: "\f12a"; }
.flaticon-truck-1:before { content: "\f12b"; }
.flaticon-concrete:before { content: "\f12c"; }
.flaticon-blueprint-6:before { content: "\f12d"; }
.flaticon-paint-roller-1:before { content: "\f12e"; }
.flaticon-construction:before { content: "\f12f"; }
.flaticon-road:before { content: "\f130"; }
.flaticon-construction-and-tools-1:before { content: "\f131"; }
.flaticon-crane-5:before { content: "\f132"; }
.flaticon-map:before { content: "\f133"; }
.flaticon-construction-and-tools-2:before { content: "\f134"; }
.flaticon-construction-and-tools-3:before { content: "\f135"; }
.flaticon-wrench-1:before { content: "\f136"; }/*!
 *  Font Awesome 4.6.1 by @davegandy - http://fontawesome.io - @fontawesome
 *  License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
 */
/* FONT PATH
 * -------------------------- */
@font-face {
  font-family: 'FontAwesome';
  src: url(//jaquesofalltrades.com/wp-content/themes/buildnet/assets/fonts/fontawesome-webfont.eot?v=4.6.1);
  src: url(//jaquesofalltrades.com/wp-content/themes/buildnet/assets/fonts/fontawesome-webfont.eot?#iefix&v=4.6.1) format('embedded-opentype'), url(//jaquesofalltrades.com/wp-content/themes/buildnet/assets/fonts/fontawesome-webfont.woff2?v=4.6.1) format('woff2'), url(//jaquesofalltrades.com/wp-content/themes/buildnet/assets/fonts/fontawesome-webfont.woff?v=4.6.1) format('woff'), url(//jaquesofalltrades.com/wp-content/themes/buildnet/assets/fonts/fontawesome-webfont.ttf?v=4.6.1) format('truetype'), url(//jaquesofalltrades.com/wp-content/themes/buildnet/assets/fonts/fontawesome-webfont.svg?v=4.6.1#fontawesomeregular) format('svg');
  font-weight: normal;
  font-style: normal;
}
.fa {
  display: inline-block;
  font-family: 'FontAwesome';
  font-weight: normal;
  font-style: normal;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transform: translate(0, 0);
}
/* makes the font 33% larger relative to the icon container */
.fa-lg {
  font-size: 1.33333333em;
  line-height: 0.75em;
  vertical-align: -15%;
}
.fa-2x {
  font-size: 2em;
}
.fa-3x {
  font-size: 3em;
}
.fa-4x {
  font-size: 4em;
}
.fa-5x {
  font-size: 5em;
}
.fa-fw {
  width: 1.28571429em;
  text-align: center;
}
.fa-ul {
  padding-left: 0;
  margin-left: 2.14285714em;
  list-style-type: none;
}
.fa-ul > li {
  position: relative;
}
.fa-li {
  position: absolute;
  left: -2.14285714em;
  width: 2.14285714em;
  top: 0.14285714em;
  text-align: center;
}
.fa-li.fa-lg {
  left: -1.85714286em;
}
.fa-border {
  padding: .2em .25em .15em;
  border: solid 0.08em #eeeeee;
  border-radius: .1em;
}
.fa-pull-left {
  float: left;
}
.fa-pull-right {
  float: right;
}
.fa.fa-pull-left {
  margin-right: .3em;
}
.fa.fa-pull-right {
  margin-left: .3em;
}
/* Deprecated as of 4.4.0 */
.pull-right {
  float: right;
}
.pull-left {
  float: left;
}
.fa.pull-left {
  margin-right: .3em;
}
.fa.pull-right {
  margin-left: .3em;
}
.fa-spin {
  -webkit-animation: fa-spin 2s infinite linear;
  animation: fa-spin 2s infinite linear;
}
.fa-pulse {
  -webkit-animation: fa-spin 1s infinite steps(8);
  animation: fa-spin 1s infinite steps(8);
}
@-webkit-keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
@keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
.fa-rotate-90 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}
.fa-rotate-180 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}
.fa-rotate-270 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";
  -webkit-transform: rotate(270deg);
  -ms-transform: rotate(270deg);
  transform: rotate(270deg);
}
.fa-flip-horizontal {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";
  -webkit-transform: scale(-1, 1);
  -ms-transform: scale(-1, 1);
  transform: scale(-1, 1);
}
.fa-flip-vertical {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
  -webkit-transform: scale(1, -1);
  -ms-transform: scale(1, -1);
  transform: scale(1, -1);
}
:root .fa-rotate-90,
:root .fa-rotate-180,
:root .fa-rotate-270,
:root .fa-flip-horizontal,
:root .fa-flip-vertical {
  filter: none;
}
.fa-stack {
  position: relative;
  display: inline-block;
  width: 2em;
  height: 2em;
  line-height: 2em;
  vertical-align: middle;
}
.fa-stack-1x,
.fa-stack-2x {
  position: absolute;
  left: 0;
  width: 100%;
  text-align: center;
}
.fa-stack-1x {
  line-height: inherit;
}
.fa-stack-2x {
  font-size: 2em;
}
.fa-inverse {
  color: #ffffff;
}
/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
   readers do not read off random characters that represent icons */
.fa-glass:before {
  content: "\f000";
}
.fa-music:before {
  content: "\f001";
}
.fa-search:before {
  content: "\f002";
}
.fa-envelope-o:before {
  content: "\f003";
}
.fa-heart:before {
  content: "\f004";
}
.fa-star:before {
  content: "\f005";
}
.fa-star-o:before {
  content: "\f006";
}
.fa-user:before {
  content: "\f007";
}
.fa-film:before {
  content: "\f008";
}
.fa-th-large:before {
  content: "\f009";
}
.fa-th:before {
  content: "\f00a";
}
.fa-th-list:before {
  content: "\f00b";
}
.fa-check:before {
  content: "\f00c";
}
.fa-remove:before,
.fa-close:before,
.fa-times:before {
  content: "\f00d";
}
.fa-search-plus:before {
  content: "\f00e";
}
.fa-search-minus:before {
  content: "\f010";
}
.fa-power-off:before {
  content: "\f011";
}
.fa-signal:before {
  content: "\f012";
}
.fa-gear:before,
.fa-cog:before {
  content: "\f013";
}
.fa-trash-o:before {
  content: "\f014";
}
.fa-home:before {
  content: "\f015";
}
.fa-file-o:before {
  content: "\f016";
}
.fa-clock-o:before {
  content: "\f017";
}
.fa-road:before {
  content: "\f018";
}
.fa-download:before {
  content: "\f019";
}
.fa-arrow-circle-o-down:before {
  content: "\f01a";
}
.fa-arrow-circle-o-up:before {
  content: "\f01b";
}
.fa-inbox:before {
  content: "\f01c";
}
.fa-play-circle-o:before {
  content: "\f01d";
}
.fa-rotate-right:before,
.fa-repeat:before {
  content: "\f01e";
}
.fa-refresh:before {
  content: "\f021";
}
.fa-list-alt:before {
  content: "\f022";
}
.fa-lock:before {
  content: "\f023";
}
.fa-flag:before {
  content: "\f024";
}
.fa-headphones:before {
  content: "\f025";
}
.fa-volume-off:before {
  content: "\f026";
}
.fa-volume-down:before {
  content: "\f027";
}
.fa-volume-up:before {
  content: "\f028";
}
.fa-qrcode:before {
  content: "\f029";
}
.fa-barcode:before {
  content: "\f02a";
}
.fa-tag:before {
  content: "\f02b";
}
.fa-tags:before {
  content: "\f02c";
}
.fa-book:before {
  content: "\f02d";
}
.fa-bookmark:before {
  content: "\f02e";
}
.fa-print:before {
  content: "\f02f";
}
.fa-camera:before {
  content: "\f030";
}
.fa-font:before {
  content: "\f031";
}
.fa-bold:before {
  content: "\f032";
}
.fa-italic:before {
  content: "\f033";
}
.fa-text-height:before {
  content: "\f034";
}
.fa-text-width:before {
  content: "\f035";
}
.fa-align-left:before {
  content: "\f036";
}
.fa-align-center:before {
  content: "\f037";
}
.fa-align-right:before {
  content: "\f038";
}
.fa-align-justify:before {
  content: "\f039";
}
.fa-list:before {
  content: "\f03a";
}
.fa-dedent:before,
.fa-outdent:before {
  content: "\f03b";
}
.fa-indent:before {
  content: "\f03c";
}
.fa-video-camera:before {
  content: "\f03d";
}
.fa-photo:before,
.fa-image:before,
.fa-picture-o:before {
  content: "\f03e";
}
.fa-pencil:before {
  content: "\f040";
}
.fa-map-marker:before {
  content: "\f041";
}
.fa-adjust:before {
  content: "\f042";
}
.fa-tint:before {
  content: "\f043";
}
.fa-edit:before,
.fa-pencil-square-o:before {
  content: "\f044";
}
.fa-share-square-o:before {
  content: "\f045";
}
.fa-check-square-o:before {
  content: "\f046";
}
.fa-arrows:before {
  content: "\f047";
}
.fa-step-backward:before {
  content: "\f048";
}
.fa-fast-backward:before {
  content: "\f049";
}
.fa-backward:before {
  content: "\f04a";
}
.fa-play:before {
  content: "\f04b";
}
.fa-pause:before {
  content: "\f04c";
}
.fa-stop:before {
  content: "\f04d";
}
.fa-forward:before {
  content: "\f04e";
}
.fa-fast-forward:before {
  content: "\f050";
}
.fa-step-forward:before {
  content: "\f051";
}
.fa-eject:before {
  content: "\f052";
}
.fa-chevron-left:before {
  content: "\f053";
}
.fa-chevron-right:before {
  content: "\f054";
}
.fa-plus-circle:before {
  content: "\f055";
}
.fa-minus-circle:before {
  content: "\f056";
}
.fa-times-circle:before {
  content: "\f057";
}
.fa-check-circle:before {
  content: "\f058";
}
.fa-question-circle:before {
  content: "\f059";
}
.fa-info-circle:before {
  content: "\f05a";
}
.fa-crosshairs:before {
  content: "\f05b";
}
.fa-times-circle-o:before {
  content: "\f05c";
}
.fa-check-circle-o:before {
  content: "\f05d";
}
.fa-ban:before {
  content: "\f05e";
}
.fa-arrow-left:before {
  content: "\f060";
}
.fa-arrow-right:before {
  content: "\f061";
}
.fa-arrow-up:before {
  content: "\f062";
}
.fa-arrow-down:before {
  content: "\f063";
}
.fa-mail-forward:before,
.fa-share:before {
  content: "\f064";
}
.fa-expand:before {
  content: "\f065";
}
.fa-compress:before {
  content: "\f066";
}
.fa-plus:before {
  content: "\f067";
}
.fa-minus:before {
  content: "\f068";
}
.fa-asterisk:before {
  content: "\f069";
}
.fa-exclamation-circle:before {
  content: "\f06a";
}
.fa-gift:before {
  content: "\f06b";
}
.fa-leaf:before {
  content: "\f06c";
}
.fa-fire:before {
  content: "\f06d";
}
.fa-eye:before {
  content: "\f06e";
}
.fa-eye-slash:before {
  content: "\f070";
}
.fa-warning:before,
.fa-exclamation-triangle:before {
  content: "\f071";
}
.fa-plane:before {
  content: "\f072";
}
.fa-calendar:before {
  content: "\f073";
}
.fa-random:before {
  content: "\f074";
}
.fa-comment:before {
  content: "\f075";
}
.fa-magnet:before {
  content: "\f076";
}
.fa-chevron-up:before {
  content: "\f077";
}
.fa-chevron-down:before {
  content: "\f078";
}
.fa-retweet:before {
  content: "\f079";
}
.fa-shopping-cart:before {
  content: "\f07a";
}
.fa-folder:before {
  content: "\f07b";
}
.fa-folder-open:before {
  content: "\f07c";
}
.fa-arrows-v:before {
  content: "\f07d";
}
.fa-arrows-h:before {
  content: "\f07e";
}
.fa-bar-chart-o:before,
.fa-bar-chart:before {
  content: "\f080";
}
.fa-twitter-square:before {
  content: "\f081";
}
.fa-facebook-square:before {
  content: "\f082";
}
.fa-camera-retro:before {
  content: "\f083";
}
.fa-key:before {
  content: "\f084";
}
.fa-gears:before,
.fa-cogs:before {
  content: "\f085";
}
.fa-comments:before {
  content: "\f086";
}
.fa-thumbs-o-up:before {
  content: "\f087";
}
.fa-thumbs-o-down:before {
  content: "\f088";
}
.fa-star-half:before {
  content: "\f089";
}
.fa-heart-o:before {
  content: "\f08a";
}
.fa-sign-out:before {
  content: "\f08b";
}
.fa-linkedin-square:before {
  content: "\f08c";
}
.fa-thumb-tack:before {
  content: "\f08d";
}
.fa-external-link:before {
  content: "\f08e";
}
.fa-sign-in:before {
  content: "\f090";
}
.fa-trophy:before {
  content: "\f091";
}
.fa-github-square:before {
  content: "\f092";
}
.fa-upload:before {
  content: "\f093";
}
.fa-lemon-o:before {
  content: "\f094";
}
.fa-phone:before {
  content: "\f095";
}
.fa-square-o:before {
  content: "\f096";
}
.fa-bookmark-o:before {
  content: "\f097";
}
.fa-phone-square:before {
  content: "\f098";
}
.fa-twitter:before {
  content: "\f099";
}
.fa-facebook-f:before,
.fa-facebook:before {
  content: "\f09a";
}
.fa-github:before {
  content: "\f09b";
}
.fa-unlock:before {
  content: "\f09c";
}
.fa-credit-card:before {
  content: "\f09d";
}
.fa-feed:before,
.fa-rss:before {
  content: "\f09e";
}
.fa-hdd-o:before {
  content: "\f0a0";
}
.fa-bullhorn:before {
  content: "\f0a1";
}
.fa-bell:before {
  content: "\f0f3";
}
.fa-certificate:before {
  content: "\f0a3";
}
.fa-hand-o-right:before {
  content: "\f0a4";
}
.fa-hand-o-left:before {
  content: "\f0a5";
}
.fa-hand-o-up:before {
  content: "\f0a6";
}
.fa-hand-o-down:before {
  content: "\f0a7";
}
.fa-arrow-circle-left:before {
  content: "\f0a8";
}
.fa-arrow-circle-right:before {
  content: "\f0a9";
}
.fa-arrow-circle-up:before {
  content: "\f0aa";
}
.fa-arrow-circle-down:before {
  content: "\f0ab";
}
.fa-globe:before {
  content: "\f0ac";
}
.fa-wrench:before {
  content: "\f0ad";
}
.fa-tasks:before {
  content: "\f0ae";
}
.fa-filter:before {
  content: "\f0b0";
}
.fa-briefcase:before {
  content: "\f0b1";
}
.fa-arrows-alt:before {
  content: "\f0b2";
}
.fa-group:before,
.fa-users:before {
  content: "\f0c0";
}
.fa-chain:before,
.fa-link:before {
  content: "\f0c1";
}
.fa-cloud:before {
  content: "\f0c2";
}
.fa-flask:before {
  content: "\f0c3";
}
.fa-cut:before,
.fa-scissors:before {
  content: "\f0c4";
}
.fa-copy:before,
.fa-files-o:before {
  content: "\f0c5";
}
.fa-paperclip:before {
  content: "\f0c6";
}
.fa-save:before,
.fa-floppy-o:before {
  content: "\f0c7";
}
.fa-square:before {
  content: "\f0c8";
}
.fa-navicon:before,
.fa-reorder:before,
.fa-bars:before {
  content: "\f0c9";
}
.fa-list-ul:before {
  content: "\f0ca";
}
.fa-list-ol:before {
  content: "\f0cb";
}
.fa-strikethrough:before {
  content: "\f0cc";
}
.fa-underline:before {
  content: "\f0cd";
}
.fa-table:before {
  content: "\f0ce";
}
.fa-magic:before {
  content: "\f0d0";
}
.fa-truck:before {
  content: "\f0d1";
}
.fa-pinterest:before {
  content: "\f0d2";
}
.fa-pinterest-square:before {
  content: "\f0d3";
}
.fa-google-plus-square:before {
  content: "\f0d4";
}
.fa-google-plus:before {
  content: "\f0d5";
}
.fa-money:before {
  content: "\f0d6";
}
.fa-caret-down:before {
  content: "\f0d7";
}
.fa-caret-up:before {
  content: "\f0d8";
}
.fa-caret-left:before {
  content: "\f0d9";
}
.fa-caret-right:before {
  content: "\f0da";
}
.fa-columns:before {
  content: "\f0db";
}
.fa-unsorted:before,
.fa-sort:before {
  content: "\f0dc";
}
.fa-sort-down:before,
.fa-sort-desc:before {
  content: "\f0dd";
}
.fa-sort-up:before,
.fa-sort-asc:before {
  content: "\f0de";
}
.fa-envelope:before {
  content: "\f0e0";
}
.fa-linkedin:before {
  content: "\f0e1";
}
.fa-rotate-left:before,
.fa-undo:before {
  content: "\f0e2";
}
.fa-legal:before,
.fa-gavel:before {
  content: "\f0e3";
}
.fa-dashboard:before,
.fa-tachometer:before {
  content: "\f0e4";
}
.fa-comment-o:before {
  content: "\f0e5";
}
.fa-comments-o:before {
  content: "\f0e6";
}
.fa-flash:before,
.fa-bolt:before {
  content: "\f0e7";
}
.fa-sitemap:before {
  content: "\f0e8";
}
.fa-umbrella:before {
  content: "\f0e9";
}
.fa-paste:before,
.fa-clipboard:before {
  content: "\f0ea";
}
.fa-lightbulb-o:before {
  content: "\f0eb";
}
.fa-exchange:before {
  content: "\f0ec";
}
.fa-cloud-download:before {
  content: "\f0ed";
}
.fa-cloud-upload:before {
  content: "\f0ee";
}
.fa-user-md:before {
  content: "\f0f0";
}
.fa-stethoscope:before {
  content: "\f0f1";
}
.fa-suitcase:before {
  content: "\f0f2";
}
.fa-bell-o:before {
  content: "\f0a2";
}
.fa-coffee:before {
  content: "\f0f4";
}
.fa-cutlery:before {
  content: "\f0f5";
}
.fa-file-text-o:before {
  content: "\f0f6";
}
.fa-building-o:before {
  content: "\f0f7";
}
.fa-hospital-o:before {
  content: "\f0f8";
}
.fa-ambulance:before {
  content: "\f0f9";
}
.fa-medkit:before {
  content: "\f0fa";
}
.fa-fighter-jet:before {
  content: "\f0fb";
}
.fa-beer:before {
  content: "\f0fc";
}
.fa-h-square:before {
  content: "\f0fd";
}
.fa-plus-square:before {
  content: "\f0fe";
}
.fa-angle-double-left:before {
  content: "\f100";
}
.fa-angle-double-right:before {
  content: "\f101";
}
.fa-angle-double-up:before {
  content: "\f102";
}
.fa-angle-double-down:before {
  content: "\f103";
}
.fa-angle-left:before {
  content: "\f104";
}
.fa-angle-right:before {
  content: "\f105";
}
.fa-angle-up:before {
  content: "\f106";
}
.fa-angle-down:before {
  content: "\f107";
}
.fa-desktop:before {
  content: "\f108";
}
.fa-laptop:before {
  content: "\f109";
}
.fa-tablet:before {
  content: "\f10a";
}
.fa-mobile-phone:before,
.fa-mobile:before {
  content: "\f10b";
}
.fa-circle-o:before {
  content: "\f10c";
}
.fa-quote-left:before {
  content: "\f10d";
}
.fa-quote-right:before {
  content: "\f10e";
}
.fa-spinner:before {
  content: "\f110";
}
.fa-circle:before {
  content: "\f111";
}
.fa-mail-reply:before,
.fa-reply:before {
  content: "\f112";
}
.fa-github-alt:before {
  content: "\f113";
}
.fa-folder-o:before {
  content: "\f114";
}
.fa-folder-open-o:before {
  content: "\f115";
}
.fa-smile-o:before {
  content: "\f118";
}
.fa-frown-o:before {
  content: "\f119";
}
.fa-meh-o:before {
  content: "\f11a";
}
.fa-gamepad:before {
  content: "\f11b";
}
.fa-keyboard-o:before {
  content: "\f11c";
}
.fa-flag-o:before {
  content: "\f11d";
}
.fa-flag-checkered:before {
  content: "\f11e";
}
.fa-terminal:before {
  content: "\f120";
}
.fa-code:before {
  content: "\f121";
}
.fa-mail-reply-all:before,
.fa-reply-all:before {
  content: "\f122";
}
.fa-star-half-empty:before,
.fa-star-half-full:before,
.fa-star-half-o:before {
  content: "\f123";
}
.fa-location-arrow:before {
  content: "\f124";
}
.fa-crop:before {
  content: "\f125";
}
.fa-code-fork:before {
  content: "\f126";
}
.fa-unlink:before,
.fa-chain-broken:before {
  content: "\f127";
}
.fa-question:before {
  content: "\f128";
}
.fa-info:before {
  content: "\f129";
}
.fa-exclamation:before {
  content: "\f12a";
}
.fa-superscript:before {
  content: "\f12b";
}
.fa-subscript:before {
  content: "\f12c";
}
.fa-eraser:before {
  content: "\f12d";
}
.fa-puzzle-piece:before {
  content: "\f12e";
}
.fa-microphone:before {
  content: "\f130";
}
.fa-microphone-slash:before {
  content: "\f131";
}
.fa-shield:before {
  content: "\f132";
}
.fa-calendar-o:before {
  content: "\f133";
}
.fa-fire-extinguisher:before {
  content: "\f134";
}
.fa-rocket:before {
  content: "\f135";
}
.fa-maxcdn:before {
  content: "\f136";
}
.fa-chevron-circle-left:before {
  content: "\f137";
}
.fa-chevron-circle-right:before {
  content: "\f138";
}
.fa-chevron-circle-up:before {
  content: "\f139";
}
.fa-chevron-circle-down:before {
  content: "\f13a";
}
.fa-html5:before {
  content: "\f13b";
}
.fa-css3:before {
  content: "\f13c";
}
.fa-anchor:before {
  content: "\f13d";
}
.fa-unlock-alt:before {
  content: "\f13e";
}
.fa-bullseye:before {
  content: "\f140";
}
.fa-ellipsis-h:before {
  content: "\f141";
}
.fa-ellipsis-v:before {
  content: "\f142";
}
.fa-rss-square:before {
  content: "\f143";
}
.fa-play-circle:before {
  content: "\f144";
}
.fa-ticket:before {
  content: "\f145";
}
.fa-minus-square:before {
  content: "\f146";
}
.fa-minus-square-o:before {
  content: "\f147";
}
.fa-level-up:before {
  content: "\f148";
}
.fa-level-down:before {
  content: "\f149";
}
.fa-check-square:before {
  content: "\f14a";
}
.fa-pencil-square:before {
  content: "\f14b";
}
.fa-external-link-square:before {
  content: "\f14c";
}
.fa-share-square:before {
  content: "\f14d";
}
.fa-compass:before {
  content: "\f14e";
}
.fa-toggle-down:before,
.fa-caret-square-o-down:before {
  content: "\f150";
}
.fa-toggle-up:before,
.fa-caret-square-o-up:before {
  content: "\f151";
}
.fa-toggle-right:before,
.fa-caret-square-o-right:before {
  content: "\f152";
}
.fa-euro:before,
.fa-eur:before {
  content: "\f153";
}
.fa-gbp:before {
  content: "\f154";
}
.fa-dollar:before,
.fa-usd:before {
  content: "\f155";
}
.fa-rupee:before,
.fa-inr:before {
  content: "\f156";
}
.fa-cny:before,
.fa-rmb:before,
.fa-yen:before,
.fa-jpy:before {
  content: "\f157";
}
.fa-ruble:before,
.fa-rouble:before,
.fa-rub:before {
  content: "\f158";
}
.fa-won:before,
.fa-krw:before {
  content: "\f159";
}
.fa-bitcoin:before,
.fa-btc:before {
  content: "\f15a";
}
.fa-file:before {
  content: "\f15b";
}
.fa-file-text:before {
  content: "\f15c";
}
.fa-sort-alpha-asc:before {
  content: "\f15d";
}
.fa-sort-alpha-desc:before {
  content: "\f15e";
}
.fa-sort-amount-asc:before {
  content: "\f160";
}
.fa-sort-amount-desc:before {
  content: "\f161";
}
.fa-sort-numeric-asc:before {
  content: "\f162";
}
.fa-sort-numeric-desc:before {
  content: "\f163";
}
.fa-thumbs-up:before {
  content: "\f164";
}
.fa-thumbs-down:before {
  content: "\f165";
}
.fa-youtube-square:before {
  content: "\f166";
}
.fa-youtube:before {
  content: "\f167";
}
.fa-xing:before {
  content: "\f168";
}
.fa-xing-square:before {
  content: "\f169";
}
.fa-youtube-play:before {
  content: "\f16a";
}
.fa-dropbox:before {
  content: "\f16b";
}
.fa-stack-overflow:before {
  content: "\f16c";
}
.fa-instagram:before {
  content: "\f16d";
}
.fa-flickr:before {
  content: "\f16e";
}
.fa-adn:before {
  content: "\f170";
}
.fa-bitbucket:before {
  content: "\f171";
}
.fa-bitbucket-square:before {
  content: "\f172";
}
.fa-tumblr:before {
  content: "\f173";
}
.fa-tumblr-square:before {
  content: "\f174";
}
.fa-long-arrow-down:before {
  content: "\f175";
}
.fa-long-arrow-up:before {
  content: "\f176";
}
.fa-long-arrow-left:before {
  content: "\f177";
}
.fa-long-arrow-right:before {
  content: "\f178";
}
.fa-apple:before {
  content: "\f179";
}
.fa-windows:before {
  content: "\f17a";
}
.fa-android:before {
  content: "\f17b";
}
.fa-linux:before {
  content: "\f17c";
}
.fa-dribbble:before {
  content: "\f17d";
}
.fa-skype:before {
  content: "\f17e";
}
.fa-foursquare:before {
  content: "\f180";
}
.fa-trello:before {
  content: "\f181";
}
.fa-female:before {
  content: "\f182";
}
.fa-male:before {
  content: "\f183";
}
.fa-gittip:before,
.fa-gratipay:before {
  content: "\f184";
}
.fa-sun-o:before {
  content: "\f185";
}
.fa-moon-o:before {
  content: "\f186";
}
.fa-archive:before {
  content: "\f187";
}
.fa-bug:before {
  content: "\f188";
}
.fa-vk:before {
  content: "\f189";
}
.fa-weibo:before {
  content: "\f18a";
}
.fa-renren:before {
  content: "\f18b";
}
.fa-pagelines:before {
  content: "\f18c";
}
.fa-stack-exchange:before {
  content: "\f18d";
}
.fa-arrow-circle-o-right:before {
  content: "\f18e";
}
.fa-arrow-circle-o-left:before {
  content: "\f190";
}
.fa-toggle-left:before,
.fa-caret-square-o-left:before {
  content: "\f191";
}
.fa-dot-circle-o:before {
  content: "\f192";
}
.fa-wheelchair:before {
  content: "\f193";
}
.fa-vimeo-square:before {
  content: "\f194";
}
.fa-turkish-lira:before,
.fa-try:before {
  content: "\f195";
}
.fa-plus-square-o:before {
  content: "\f196";
}
.fa-space-shuttle:before {
  content: "\f197";
}
.fa-slack:before {
  content: "\f198";
}
.fa-envelope-square:before {
  content: "\f199";
}
.fa-wordpress:before {
  content: "\f19a";
}
.fa-openid:before {
  content: "\f19b";
}
.fa-institution:before,
.fa-bank:before,
.fa-university:before {
  content: "\f19c";
}
.fa-mortar-board:before,
.fa-graduation-cap:before {
  content: "\f19d";
}
.fa-yahoo:before {
  content: "\f19e";
}
.fa-google:before {
  content: "\f1a0";
}
.fa-reddit:before {
  content: "\f1a1";
}
.fa-reddit-square:before {
  content: "\f1a2";
}
.fa-stumbleupon-circle:before {
  content: "\f1a3";
}
.fa-stumbleupon:before {
  content: "\f1a4";
}
.fa-delicious:before {
  content: "\f1a5";
}
.fa-digg:before {
  content: "\f1a6";
}
.fa-pied-piper:before {
  content: "\f1a7";
}
.fa-pied-piper-alt:before {
  content: "\f1a8";
}
.fa-drupal:before {
  content: "\f1a9";
}
.fa-joomla:before {
  content: "\f1aa";
}
.fa-language:before {
  content: "\f1ab";
}
.fa-fax:before {
  content: "\f1ac";
}
.fa-building:before {
  content: "\f1ad";
}
.fa-child:before {
  content: "\f1ae";
}
.fa-paw:before {
  content: "\f1b0";
}
.fa-spoon:before {
  content: "\f1b1";
}
.fa-cube:before {
  content: "\f1b2";
}
.fa-cubes:before {
  content: "\f1b3";
}
.fa-behance:before {
  content: "\f1b4";
}
.fa-behance-square:before {
  content: "\f1b5";
}
.fa-steam:before {
  content: "\f1b6";
}
.fa-steam-square:before {
  content: "\f1b7";
}
.fa-recycle:before {
  content: "\f1b8";
}
.fa-automobile:before,
.fa-car:before {
  content: "\f1b9";
}
.fa-cab:before,
.fa-taxi:before {
  content: "\f1ba";
}
.fa-tree:before {
  content: "\f1bb";
}
.fa-spotify:before {
  content: "\f1bc";
}
.fa-deviantart:before {
  content: "\f1bd";
}
.fa-soundcloud:before {
  content: "\f1be";
}
.fa-database:before {
  content: "\f1c0";
}
.fa-file-pdf-o:before {
  content: "\f1c1";
}
.fa-file-word-o:before {
  content: "\f1c2";
}
.fa-file-excel-o:before {
  content: "\f1c3";
}
.fa-file-powerpoint-o:before {
  content: "\f1c4";
}
.fa-file-photo-o:before,
.fa-file-picture-o:before,
.fa-file-image-o:before {
  content: "\f1c5";
}
.fa-file-zip-o:before,
.fa-file-archive-o:before {
  content: "\f1c6";
}
.fa-file-sound-o:before,
.fa-file-audio-o:before {
  content: "\f1c7";
}
.fa-file-movie-o:before,
.fa-file-video-o:before {
  content: "\f1c8";
}
.fa-file-code-o:before {
  content: "\f1c9";
}
.fa-vine:before {
  content: "\f1ca";
}
.fa-codepen:before {
  content: "\f1cb";
}
.fa-jsfiddle:before {
  content: "\f1cc";
}
.fa-life-bouy:before,
.fa-life-buoy:before,
.fa-life-saver:before,
.fa-support:before,
.fa-life-ring:before {
  content: "\f1cd";
}
.fa-circle-o-notch:before {
  content: "\f1ce";
}
.fa-ra:before,
.fa-rebel:before {
  content: "\f1d0";
}
.fa-ge:before,
.fa-empire:before {
  content: "\f1d1";
}
.fa-git-square:before {
  content: "\f1d2";
}
.fa-git:before {
  content: "\f1d3";
}
.fa-y-combinator-square:before,
.fa-yc-square:before,
.fa-hacker-news:before {
  content: "\f1d4";
}
.fa-tencent-weibo:before {
  content: "\f1d5";
}
.fa-qq:before {
  content: "\f1d6";
}
.fa-wechat:before,
.fa-weixin:before {
  content: "\f1d7";
}
.fa-send:before,
.fa-paper-plane:before {
  content: "\f1d8";
}
.fa-send-o:before,
.fa-paper-plane-o:before {
  content: "\f1d9";
}
.fa-history:before {
  content: "\f1da";
}
.fa-circle-thin:before {
  content: "\f1db";
}
.fa-header:before {
  content: "\f1dc";
}
.fa-paragraph:before {
  content: "\f1dd";
}
.fa-sliders:before {
  content: "\f1de";
}
.fa-share-alt:before {
  content: "\f1e0";
}
.fa-share-alt-square:before {
  content: "\f1e1";
}
.fa-bomb:before {
  content: "\f1e2";
}
.fa-soccer-ball-o:before,
.fa-futbol-o:before {
  content: "\f1e3";
}
.fa-tty:before {
  content: "\f1e4";
}
.fa-binoculars:before {
  content: "\f1e5";
}
.fa-plug:before {
  content: "\f1e6";
}
.fa-slideshare:before {
  content: "\f1e7";
}
.fa-twitch:before {
  content: "\f1e8";
}
.fa-yelp:before {
  content: "\f1e9";
}
.fa-newspaper-o:before {
  content: "\f1ea";
}
.fa-wifi:before {
  content: "\f1eb";
}
.fa-calculator:before {
  content: "\f1ec";
}
.fa-paypal:before {
  content: "\f1ed";
}
.fa-google-wallet:before {
  content: "\f1ee";
}
.fa-cc-visa:before {
  content: "\f1f0";
}
.fa-cc-mastercard:before {
  content: "\f1f1";
}
.fa-cc-discover:before {
  content: "\f1f2";
}
.fa-cc-amex:before {
  content: "\f1f3";
}
.fa-cc-paypal:before {
  content: "\f1f4";
}
.fa-cc-stripe:before {
  content: "\f1f5";
}
.fa-bell-slash:before {
  content: "\f1f6";
}
.fa-bell-slash-o:before {
  content: "\f1f7";
}
.fa-trash:before {
  content: "\f1f8";
}
.fa-copyright:before {
  content: "\f1f9";
}
.fa-at:before {
  content: "\f1fa";
}
.fa-eyedropper:before {
  content: "\f1fb";
}
.fa-paint-brush:before {
  content: "\f1fc";
}
.fa-birthday-cake:before {
  content: "\f1fd";
}
.fa-area-chart:before {
  content: "\f1fe";
}
.fa-pie-chart:before {
  content: "\f200";
}
.fa-line-chart:before {
  content: "\f201";
}
.fa-lastfm:before {
  content: "\f202";
}
.fa-lastfm-square:before {
  content: "\f203";
}
.fa-toggle-off:before {
  content: "\f204";
}
.fa-toggle-on:before {
  content: "\f205";
}
.fa-bicycle:before {
  content: "\f206";
}
.fa-bus:before {
  content: "\f207";
}
.fa-ioxhost:before {
  content: "\f208";
}
.fa-angellist:before {
  content: "\f209";
}
.fa-cc:before {
  content: "\f20a";
}
.fa-shekel:before,
.fa-sheqel:before,
.fa-ils:before {
  content: "\f20b";
}
.fa-meanpath:before {
  content: "\f20c";
}
.fa-buysellads:before {
  content: "\f20d";
}
.fa-connectdevelop:before {
  content: "\f20e";
}
.fa-dashcube:before {
  content: "\f210";
}
.fa-forumbee:before {
  content: "\f211";
}
.fa-leanpub:before {
  content: "\f212";
}
.fa-sellsy:before {
  content: "\f213";
}
.fa-shirtsinbulk:before {
  content: "\f214";
}
.fa-simplybuilt:before {
  content: "\f215";
}
.fa-skyatlas:before {
  content: "\f216";
}
.fa-cart-plus:before {
  content: "\f217";
}
.fa-cart-arrow-down:before {
  content: "\f218";
}
.fa-diamond:before {
  content: "\f219";
}
.fa-ship:before {
  content: "\f21a";
}
.fa-user-secret:before {
  content: "\f21b";
}
.fa-motorcycle:before {
  content: "\f21c";
}
.fa-street-view:before {
  content: "\f21d";
}
.fa-heartbeat:before {
  content: "\f21e";
}
.fa-venus:before {
  content: "\f221";
}
.fa-mars:before {
  content: "\f222";
}
.fa-mercury:before {
  content: "\f223";
}
.fa-intersex:before,
.fa-transgender:before {
  content: "\f224";
}
.fa-transgender-alt:before {
  content: "\f225";
}
.fa-venus-double:before {
  content: "\f226";
}
.fa-mars-double:before {
  content: "\f227";
}
.fa-venus-mars:before {
  content: "\f228";
}
.fa-mars-stroke:before {
  content: "\f229";
}
.fa-mars-stroke-v:before {
  content: "\f22a";
}
.fa-mars-stroke-h:before {
  content: "\f22b";
}
.fa-neuter:before {
  content: "\f22c";
}
.fa-genderless:before {
  content: "\f22d";
}
.fa-facebook-official:before {
  content: "\f230";
}
.fa-pinterest-p:before {
  content: "\f231";
}
.fa-whatsapp:before {
  content: "\f232";
}
.fa-server:before {
  content: "\f233";
}
.fa-user-plus:before {
  content: "\f234";
}
.fa-user-times:before {
  content: "\f235";
}
.fa-hotel:before,
.fa-bed:before {
  content: "\f236";
}
.fa-viacoin:before {
  content: "\f237";
}
.fa-train:before {
  content: "\f238";
}
.fa-subway:before {
  content: "\f239";
}
.fa-medium:before {
  content: "\f23a";
}
.fa-yc:before,
.fa-y-combinator:before {
  content: "\f23b";
}
.fa-optin-monster:before {
  content: "\f23c";
}
.fa-opencart:before {
  content: "\f23d";
}
.fa-expeditedssl:before {
  content: "\f23e";
}
.fa-battery-4:before,
.fa-battery-full:before {
  content: "\f240";
}
.fa-battery-3:before,
.fa-battery-three-quarters:before {
  content: "\f241";
}
.fa-battery-2:before,
.fa-battery-half:before {
  content: "\f242";
}
.fa-battery-1:before,
.fa-battery-quarter:before {
  content: "\f243";
}
.fa-battery-0:before,
.fa-battery-empty:before {
  content: "\f244";
}
.fa-mouse-pointer:before {
  content: "\f245";
}
.fa-i-cursor:before {
  content: "\f246";
}
.fa-object-group:before {
  content: "\f247";
}
.fa-object-ungroup:before {
  content: "\f248";
}
.fa-sticky-note:before {
  content: "\f249";
}
.fa-sticky-note-o:before {
  content: "\f24a";
}
.fa-cc-jcb:before {
  content: "\f24b";
}
.fa-cc-diners-club:before {
  content: "\f24c";
}
.fa-clone:before {
  content: "\f24d";
}
.fa-balance-scale:before {
  content: "\f24e";
}
.fa-hourglass-o:before {
  content: "\f250";
}
.fa-hourglass-1:before,
.fa-hourglass-start:before {
  content: "\f251";
}
.fa-hourglass-2:before,
.fa-hourglass-half:before {
  content: "\f252";
}
.fa-hourglass-3:before,
.fa-hourglass-end:before {
  content: "\f253";
}
.fa-hourglass:before {
  content: "\f254";
}
.fa-hand-grab-o:before,
.fa-hand-rock-o:before {
  content: "\f255";
}
.fa-hand-stop-o:before,
.fa-hand-paper-o:before {
  content: "\f256";
}
.fa-hand-scissors-o:before {
  content: "\f257";
}
.fa-hand-lizard-o:before {
  content: "\f258";
}
.fa-hand-spock-o:before {
  content: "\f259";
}
.fa-hand-pointer-o:before {
  content: "\f25a";
}
.fa-hand-peace-o:before {
  content: "\f25b";
}
.fa-trademark:before {
  content: "\f25c";
}
.fa-registered:before {
  content: "\f25d";
}
.fa-creative-commons:before {
  content: "\f25e";
}
.fa-gg:before {
  content: "\f260";
}
.fa-gg-circle:before {
  content: "\f261";
}
.fa-tripadvisor:before {
  content: "\f262";
}
.fa-odnoklassniki:before {
  content: "\f263";
}
.fa-odnoklassniki-square:before {
  content: "\f264";
}
.fa-get-pocket:before {
  content: "\f265";
}
.fa-wikipedia-w:before {
  content: "\f266";
}
.fa-safari:before {
  content: "\f267";
}
.fa-chrome:before {
  content: "\f268";
}
.fa-firefox:before {
  content: "\f269";
}
.fa-opera:before {
  content: "\f26a";
}
.fa-internet-explorer:before {
  content: "\f26b";
}
.fa-tv:before,
.fa-television:before {
  content: "\f26c";
}
.fa-contao:before {
  content: "\f26d";
}
.fa-500px:before {
  content: "\f26e";
}
.fa-amazon:before {
  content: "\f270";
}
.fa-calendar-plus-o:before {
  content: "\f271";
}
.fa-calendar-minus-o:before {
  content: "\f272";
}
.fa-calendar-times-o:before {
  content: "\f273";
}
.fa-calendar-check-o:before {
  content: "\f274";
}
.fa-industry:before {
  content: "\f275";
}
.fa-map-pin:before {
  content: "\f276";
}
.fa-map-signs:before {
  content: "\f277";
}
.fa-map-o:before {
  content: "\f278";
}
.fa-map:before {
  content: "\f279";
}
.fa-commenting:before {
  content: "\f27a";
}
.fa-commenting-o:before {
  content: "\f27b";
}
.fa-houzz:before {
  content: "\f27c";
}
.fa-vimeo:before {
  content: "\f27d";
}
.fa-black-tie:before {
  content: "\f27e";
}
.fa-fonticons:before {
  content: "\f280";
}
.fa-reddit-alien:before {
  content: "\f281";
}
.fa-edge:before {
  content: "\f282";
}
.fa-credit-card-alt:before {
  content: "\f283";
}
.fa-codiepie:before {
  content: "\f284";
}
.fa-modx:before {
  content: "\f285";
}
.fa-fort-awesome:before {
  content: "\f286";
}
.fa-usb:before {
  content: "\f287";
}
.fa-product-hunt:before {
  content: "\f288";
}
.fa-mixcloud:before {
  content: "\f289";
}
.fa-scribd:before {
  content: "\f28a";
}
.fa-pause-circle:before {
  content: "\f28b";
}
.fa-pause-circle-o:before {
  content: "\f28c";
}
.fa-stop-circle:before {
  content: "\f28d";
}
.fa-stop-circle-o:before {
  content: "\f28e";
}
.fa-shopping-bag:before {
  content: "\f290";
}
.fa-shopping-basket:before {
  content: "\f291";
}
.fa-hashtag:before {
  content: "\f292";
}
.fa-bluetooth:before {
  content: "\f293";
}
.fa-bluetooth-b:before {
  content: "\f294";
}
.fa-percent:before {
  content: "\f295";
}
.fa-gitlab:before {
  content: "\f296";
}
.fa-wpbeginner:before {
  content: "\f297";
}
.fa-wpforms:before {
  content: "\f298";
}
.fa-envira:before {
  content: "\f299";
}
.fa-universal-access:before {
  content: "\f29a";
}
.fa-wheelchair-alt:before {
  content: "\f29b";
}
.fa-question-circle-o:before {
  content: "\f29c";
}
.fa-blind:before {
  content: "\f29d";
}
.fa-audio-description:before {
  content: "\f29e";
}
.fa-volume-control-phone:before {
  content: "\f2a0";
}
.fa-braille:before {
  content: "\f2a1";
}
.fa-assistive-listening-systems:before {
  content: "\f2a2";
}
.fa-asl-interpreting:before,
.fa-american-sign-language-interpreting:before {
  content: "\f2a3";
}
.fa-deafness:before,
.fa-hard-of-hearing:before,
.fa-deaf:before {
  content: "\f2a4";
}
.fa-glide:before {
  content: "\f2a5";
}
.fa-glide-g:before {
  content: "\f2a6";
}
.fa-signing:before,
.fa-sign-language:before {
  content: "\f2a7";
}
.fa-low-vision:before {
  content: "\f2a8";
}
.fa-viadeo:before {
  content: "\f2a9";
}
.fa-viadeo-square:before {
  content: "\f2aa";
}
.fa-snapchat:before {
  content: "\f2ab";
}
.fa-snapchat-ghost:before {
  content: "\f2ac";
}
.fa-snapchat-square:before {
  content: "\f2ad";
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
.sr-only-focusable:active,
.sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  clip: auto;
}
/*!
 * Hover.css (http://ianlunn.github.io/Hover/)
 * Version: 2.0.2
 * Author: Ian Lunn @IanLunn
 * Author URL: http://ianlunn.co.uk/
 * Github: https://github.com/IanLunn/Hover

 * Made available under a MIT License:
 * http://www.opensource.org/licenses/mit-license.php

 * Hover.css Copyright Ian Lunn 2014. Generated with Sass.
 */
/* 2D TRANSITIONS */
/* Grow */
.hvr-grow {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: transform;
  transition-property: transform;
}
.hvr-grow:hover, .hvr-grow:focus, .hvr-grow:active {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

/* Shrink */
.hvr-shrink {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: transform;
  transition-property: transform;
}
.hvr-shrink:hover, .hvr-shrink:focus, .hvr-shrink:active {
  -webkit-transform: scale(0.9);
  transform: scale(0.9);
}

/* Pulse */
@-webkit-keyframes hvr-pulse {
  25% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }

  75% {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
  }
}

@keyframes hvr-pulse {
  25% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }

  75% {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
  }
}

.hvr-pulse {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
}
.hvr-pulse:hover, .hvr-pulse:focus, .hvr-pulse:active {
  -webkit-animation-name: hvr-pulse;
  animation-name: hvr-pulse;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

/* Pulse Grow */
@-webkit-keyframes hvr-pulse-grow {
  to {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
}

@keyframes hvr-pulse-grow {
  to {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
}

.hvr-pulse-grow {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
}
.hvr-pulse-grow:hover, .hvr-pulse-grow:focus, .hvr-pulse-grow:active {
  -webkit-animation-name: hvr-pulse-grow;
  animation-name: hvr-pulse-grow;
  -webkit-animation-duration: 0.3s;
  animation-duration: 0.3s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-direction: alternate;
  animation-direction: alternate;
}

/* Pulse Shrink */
@-webkit-keyframes hvr-pulse-shrink {
  to {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
  }
}

@keyframes hvr-pulse-shrink {
  to {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
  }
}

.hvr-pulse-shrink {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
}
.hvr-pulse-shrink:hover, .hvr-pulse-shrink:focus, .hvr-pulse-shrink:active {
  -webkit-animation-name: hvr-pulse-shrink;
  animation-name: hvr-pulse-shrink;
  -webkit-animation-duration: 0.3s;
  animation-duration: 0.3s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-direction: alternate;
  animation-direction: alternate;
}

/* Push */
@-webkit-keyframes hvr-push {
  50% {
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes hvr-push {
  50% {
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

.hvr-push {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
}
.hvr-push:hover, .hvr-push:focus, .hvr-push:active {
  -webkit-animation-name: hvr-push;
  animation-name: hvr-push;
  -webkit-animation-duration: 0.3s;
  animation-duration: 0.3s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}

/* Pop */
@-webkit-keyframes hvr-pop {
  50% {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }
}

@keyframes hvr-pop {
  50% {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }
}

.hvr-pop {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
}
.hvr-pop:hover, .hvr-pop:focus, .hvr-pop:active {
  -webkit-animation-name: hvr-pop;
  animation-name: hvr-pop;
  -webkit-animation-duration: 0.3s;
  animation-duration: 0.3s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}

/* Bounce In */
.hvr-bounce-in {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
}
.hvr-bounce-in:hover, .hvr-bounce-in:focus, .hvr-bounce-in:active {
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
  -webkit-transition-timing-function: cubic-bezier(0.47, 2.02, 0.31, -0.36);
  transition-timing-function: cubic-bezier(0.47, 2.02, 0.31, -0.36);
}

/* Bounce Out */
.hvr-bounce-out {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
}
.hvr-bounce-out:hover, .hvr-bounce-out:focus, .hvr-bounce-out:active {
  -webkit-transform: scale(0.8);
  transform: scale(0.8);
  -webkit-transition-timing-function: cubic-bezier(0.47, 2.02, 0.31, -0.36);
  transition-timing-function: cubic-bezier(0.47, 2.02, 0.31, -0.36);
}

/* Rotate */
.hvr-rotate {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: transform;
  transition-property: transform;
}
.hvr-rotate:hover, .hvr-rotate:focus, .hvr-rotate:active {
  -webkit-transform: rotate(4deg);
  transform: rotate(4deg);
}

/* Grow Rotate */
.hvr-grow-rotate {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: transform;
  transition-property: transform;
}
.hvr-grow-rotate:hover, .hvr-grow-rotate:focus, .hvr-grow-rotate:active {
  -webkit-transform: scale(1.1) rotate(4deg);
  transform: scale(1.1) rotate(4deg);
}

/* Float */
.hvr-float {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.hvr-float:hover, .hvr-float:focus, .hvr-float:active {
  -webkit-transform: translateY(-8px);
  transform: translateY(-8px);
}

/* Sink */
.hvr-sink {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.hvr-sink:hover, .hvr-sink:focus, .hvr-sink:active {
  -webkit-transform: translateY(8px);
  transform: translateY(8px);
}

/* Bob */
@-webkit-keyframes hvr-bob {
  0% {
    -webkit-transform: translateY(-8px);
    transform: translateY(-8px);
  }

  50% {
    -webkit-transform: translateY(-4px);
    transform: translateY(-4px);
  }

  100% {
    -webkit-transform: translateY(-8px);
    transform: translateY(-8px);
  }
}

@keyframes hvr-bob {
  0% {
    -webkit-transform: translateY(-8px);
    transform: translateY(-8px);
  }

  50% {
    -webkit-transform: translateY(-4px);
    transform: translateY(-4px);
  }

  100% {
    -webkit-transform: translateY(-8px);
    transform: translateY(-8px);
  }
}

@-webkit-keyframes hvr-bob-float {
  100% {
    -webkit-transform: translateY(-8px);
    transform: translateY(-8px);
  }
}

@keyframes hvr-bob-float {
  100% {
    -webkit-transform: translateY(-8px);
    transform: translateY(-8px);
  }
}

.hvr-bob {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
}
.hvr-bob:hover, .hvr-bob:focus, .hvr-bob:active {
  -webkit-animation-name: hvr-bob-float, hvr-bob;
  animation-name: hvr-bob-float, hvr-bob;
  -webkit-animation-duration: .3s, 1.5s;
  animation-duration: .3s, 1.5s;
  -webkit-animation-delay: 0s, .3s;
  animation-delay: 0s, .3s;
  -webkit-animation-timing-function: ease-out, ease-in-out;
  animation-timing-function: ease-out, ease-in-out;
  -webkit-animation-iteration-count: 1, infinite;
  animation-iteration-count: 1, infinite;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-direction: normal, alternate;
  animation-direction: normal, alternate;
}

/* Hang */
@-webkit-keyframes hvr-hang {
  0% {
    -webkit-transform: translateY(8px);
    transform: translateY(8px);
  }

  50% {
    -webkit-transform: translateY(4px);
    transform: translateY(4px);
  }

  100% {
    -webkit-transform: translateY(8px);
    transform: translateY(8px);
  }
}

@keyframes hvr-hang {
  0% {
    -webkit-transform: translateY(8px);
    transform: translateY(8px);
  }

  50% {
    -webkit-transform: translateY(4px);
    transform: translateY(4px);
  }

  100% {
    -webkit-transform: translateY(8px);
    transform: translateY(8px);
  }
}

@-webkit-keyframes hvr-hang-sink {
  100% {
    -webkit-transform: translateY(8px);
    transform: translateY(8px);
  }
}

@keyframes hvr-hang-sink {
  100% {
    -webkit-transform: translateY(8px);
    transform: translateY(8px);
  }
}

.hvr-hang {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
}
.hvr-hang:hover, .hvr-hang:focus, .hvr-hang:active {
  -webkit-animation-name: hvr-hang-sink, hvr-hang;
  animation-name: hvr-hang-sink, hvr-hang;
  -webkit-animation-duration: .3s, 1.5s;
  animation-duration: .3s, 1.5s;
  -webkit-animation-delay: 0s, .3s;
  animation-delay: 0s, .3s;
  -webkit-animation-timing-function: ease-out, ease-in-out;
  animation-timing-function: ease-out, ease-in-out;
  -webkit-animation-iteration-count: 1, infinite;
  animation-iteration-count: 1, infinite;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-direction: normal, alternate;
  animation-direction: normal, alternate;
}

/* Skew */
.hvr-skew {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: transform;
  transition-property: transform;
}
.hvr-skew:hover, .hvr-skew:focus, .hvr-skew:active {
  -webkit-transform: skew(-10deg);
  transform: skew(-10deg);
}

/* Skew Forward */
.hvr-skew-forward {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transform-origin: 0 100%;
  transform-origin: 0 100%;
}
.hvr-skew-forward:hover, .hvr-skew-forward:focus, .hvr-skew-forward:active {
  -webkit-transform: skew(-10deg);
  transform: skew(-10deg);
}

/* Skew Backward */
.hvr-skew-backward {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transform-origin: 0 100%;
  transform-origin: 0 100%;
}
.hvr-skew-backward:hover, .hvr-skew-backward:focus, .hvr-skew-backward:active {
  -webkit-transform: skew(10deg);
  transform: skew(10deg);
}

/* Wobble Vertical */
@-webkit-keyframes hvr-wobble-vertical {
  16.65% {
    -webkit-transform: translateY(8px);
    transform: translateY(8px);
  }

  33.3% {
    -webkit-transform: translateY(-6px);
    transform: translateY(-6px);
  }

  49.95% {
    -webkit-transform: translateY(4px);
    transform: translateY(4px);
  }

  66.6% {
    -webkit-transform: translateY(-2px);
    transform: translateY(-2px);
  }

  83.25% {
    -webkit-transform: translateY(1px);
    transform: translateY(1px);
  }

  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes hvr-wobble-vertical {
  16.65% {
    -webkit-transform: translateY(8px);
    transform: translateY(8px);
  }

  33.3% {
    -webkit-transform: translateY(-6px);
    transform: translateY(-6px);
  }

  49.95% {
    -webkit-transform: translateY(4px);
    transform: translateY(4px);
  }

  66.6% {
    -webkit-transform: translateY(-2px);
    transform: translateY(-2px);
  }

  83.25% {
    -webkit-transform: translateY(1px);
    transform: translateY(1px);
  }

  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

.hvr-wobble-vertical {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
}
.hvr-wobble-vertical:hover, .hvr-wobble-vertical:focus, .hvr-wobble-vertical:active {
  -webkit-animation-name: hvr-wobble-vertical;
  animation-name: hvr-wobble-vertical;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}

/* Wobble Horizontal */
@-webkit-keyframes hvr-wobble-horizontal {
  16.65% {
    -webkit-transform: translateX(8px);
    transform: translateX(8px);
  }

  33.3% {
    -webkit-transform: translateX(-6px);
    transform: translateX(-6px);
  }

  49.95% {
    -webkit-transform: translateX(4px);
    transform: translateX(4px);
  }

  66.6% {
    -webkit-transform: translateX(-2px);
    transform: translateX(-2px);
  }

  83.25% {
    -webkit-transform: translateX(1px);
    transform: translateX(1px);
  }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes hvr-wobble-horizontal {
  16.65% {
    -webkit-transform: translateX(8px);
    transform: translateX(8px);
  }

  33.3% {
    -webkit-transform: translateX(-6px);
    transform: translateX(-6px);
  }

  49.95% {
    -webkit-transform: translateX(4px);
    transform: translateX(4px);
  }

  66.6% {
    -webkit-transform: translateX(-2px);
    transform: translateX(-2px);
  }

  83.25% {
    -webkit-transform: translateX(1px);
    transform: translateX(1px);
  }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

.hvr-wobble-horizontal {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
}
.hvr-wobble-horizontal:hover, .hvr-wobble-horizontal:focus, .hvr-wobble-horizontal:active {
  -webkit-animation-name: hvr-wobble-horizontal;
  animation-name: hvr-wobble-horizontal;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}

/* Wobble To Bottom Right */
@-webkit-keyframes hvr-wobble-to-bottom-right {
  16.65% {
    -webkit-transform: translate(8px, 8px);
    transform: translate(8px, 8px);
  }

  33.3% {
    -webkit-transform: translate(-6px, -6px);
    transform: translate(-6px, -6px);
  }

  49.95% {
    -webkit-transform: translate(4px, 4px);
    transform: translate(4px, 4px);
  }

  66.6% {
    -webkit-transform: translate(-2px, -2px);
    transform: translate(-2px, -2px);
  }

  83.25% {
    -webkit-transform: translate(1px, 1px);
    transform: translate(1px, 1px);
  }

  100% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
}

@keyframes hvr-wobble-to-bottom-right {
  16.65% {
    -webkit-transform: translate(8px, 8px);
    transform: translate(8px, 8px);
  }

  33.3% {
    -webkit-transform: translate(-6px, -6px);
    transform: translate(-6px, -6px);
  }

  49.95% {
    -webkit-transform: translate(4px, 4px);
    transform: translate(4px, 4px);
  }

  66.6% {
    -webkit-transform: translate(-2px, -2px);
    transform: translate(-2px, -2px);
  }

  83.25% {
    -webkit-transform: translate(1px, 1px);
    transform: translate(1px, 1px);
  }

  100% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
}

.hvr-wobble-to-bottom-right {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
}
.hvr-wobble-to-bottom-right:hover, .hvr-wobble-to-bottom-right:focus, .hvr-wobble-to-bottom-right:active {
  -webkit-animation-name: hvr-wobble-to-bottom-right;
  animation-name: hvr-wobble-to-bottom-right;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}

/* Wobble To Top Right */
@-webkit-keyframes hvr-wobble-to-top-right {
  16.65% {
    -webkit-transform: translate(8px, -8px);
    transform: translate(8px, -8px);
  }

  33.3% {
    -webkit-transform: translate(-6px, 6px);
    transform: translate(-6px, 6px);
  }

  49.95% {
    -webkit-transform: translate(4px, -4px);
    transform: translate(4px, -4px);
  }

  66.6% {
    -webkit-transform: translate(-2px, 2px);
    transform: translate(-2px, 2px);
  }

  83.25% {
    -webkit-transform: translate(1px, -1px);
    transform: translate(1px, -1px);
  }

  100% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
}

@keyframes hvr-wobble-to-top-right {
  16.65% {
    -webkit-transform: translate(8px, -8px);
    transform: translate(8px, -8px);
  }

  33.3% {
    -webkit-transform: translate(-6px, 6px);
    transform: translate(-6px, 6px);
  }

  49.95% {
    -webkit-transform: translate(4px, -4px);
    transform: translate(4px, -4px);
  }

  66.6% {
    -webkit-transform: translate(-2px, 2px);
    transform: translate(-2px, 2px);
  }

  83.25% {
    -webkit-transform: translate(1px, -1px);
    transform: translate(1px, -1px);
  }

  100% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
}

.hvr-wobble-to-top-right {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
}
.hvr-wobble-to-top-right:hover, .hvr-wobble-to-top-right:focus, .hvr-wobble-to-top-right:active {
  -webkit-animation-name: hvr-wobble-to-top-right;
  animation-name: hvr-wobble-to-top-right;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}

/* Wobble Top */
@-webkit-keyframes hvr-wobble-top {
  16.65% {
    -webkit-transform: skew(-12deg);
    transform: skew(-12deg);
  }

  33.3% {
    -webkit-transform: skew(10deg);
    transform: skew(10deg);
  }

  49.95% {
    -webkit-transform: skew(-6deg);
    transform: skew(-6deg);
  }

  66.6% {
    -webkit-transform: skew(4deg);
    transform: skew(4deg);
  }

  83.25% {
    -webkit-transform: skew(-2deg);
    transform: skew(-2deg);
  }

  100% {
    -webkit-transform: skew(0);
    transform: skew(0);
  }
}

@keyframes hvr-wobble-top {
  16.65% {
    -webkit-transform: skew(-12deg);
    transform: skew(-12deg);
  }

  33.3% {
    -webkit-transform: skew(10deg);
    transform: skew(10deg);
  }

  49.95% {
    -webkit-transform: skew(-6deg);
    transform: skew(-6deg);
  }

  66.6% {
    -webkit-transform: skew(4deg);
    transform: skew(4deg);
  }

  83.25% {
    -webkit-transform: skew(-2deg);
    transform: skew(-2deg);
  }

  100% {
    -webkit-transform: skew(0);
    transform: skew(0);
  }
}

.hvr-wobble-top {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  -webkit-transform-origin: 0 100%;
  transform-origin: 0 100%;
}
.hvr-wobble-top:hover, .hvr-wobble-top:focus, .hvr-wobble-top:active {
  -webkit-animation-name: hvr-wobble-top;
  animation-name: hvr-wobble-top;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}

/* Wobble Bottom */
@-webkit-keyframes hvr-wobble-bottom {
  16.65% {
    -webkit-transform: skew(-12deg);
    transform: skew(-12deg);
  }

  33.3% {
    -webkit-transform: skew(10deg);
    transform: skew(10deg);
  }

  49.95% {
    -webkit-transform: skew(-6deg);
    transform: skew(-6deg);
  }

  66.6% {
    -webkit-transform: skew(4deg);
    transform: skew(4deg);
  }

  83.25% {
    -webkit-transform: skew(-2deg);
    transform: skew(-2deg);
  }

  100% {
    -webkit-transform: skew(0);
    transform: skew(0);
  }
}

@keyframes hvr-wobble-bottom {
  16.65% {
    -webkit-transform: skew(-12deg);
    transform: skew(-12deg);
  }

  33.3% {
    -webkit-transform: skew(10deg);
    transform: skew(10deg);
  }

  49.95% {
    -webkit-transform: skew(-6deg);
    transform: skew(-6deg);
  }

  66.6% {
    -webkit-transform: skew(4deg);
    transform: skew(4deg);
  }

  83.25% {
    -webkit-transform: skew(-2deg);
    transform: skew(-2deg);
  }

  100% {
    -webkit-transform: skew(0);
    transform: skew(0);
  }
}

.hvr-wobble-bottom {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  -webkit-transform-origin: 100% 0;
  transform-origin: 100% 0;
}
.hvr-wobble-bottom:hover, .hvr-wobble-bottom:focus, .hvr-wobble-bottom:active {
  -webkit-animation-name: hvr-wobble-bottom;
  animation-name: hvr-wobble-bottom;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}

/* Wobble Skew */
@-webkit-keyframes hvr-wobble-skew {
  16.65% {
    -webkit-transform: skew(-12deg);
    transform: skew(-12deg);
  }

  33.3% {
    -webkit-transform: skew(10deg);
    transform: skew(10deg);
  }

  49.95% {
    -webkit-transform: skew(-6deg);
    transform: skew(-6deg);
  }

  66.6% {
    -webkit-transform: skew(4deg);
    transform: skew(4deg);
  }

  83.25% {
    -webkit-transform: skew(-2deg);
    transform: skew(-2deg);
  }

  100% {
    -webkit-transform: skew(0);
    transform: skew(0);
  }
}

@keyframes hvr-wobble-skew {
  16.65% {
    -webkit-transform: skew(-12deg);
    transform: skew(-12deg);
  }

  33.3% {
    -webkit-transform: skew(10deg);
    transform: skew(10deg);
  }

  49.95% {
    -webkit-transform: skew(-6deg);
    transform: skew(-6deg);
  }

  66.6% {
    -webkit-transform: skew(4deg);
    transform: skew(4deg);
  }

  83.25% {
    -webkit-transform: skew(-2deg);
    transform: skew(-2deg);
  }

  100% {
    -webkit-transform: skew(0);
    transform: skew(0);
  }
}

.hvr-wobble-skew {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
}
.hvr-wobble-skew:hover, .hvr-wobble-skew:focus, .hvr-wobble-skew:active {
  -webkit-animation-name: hvr-wobble-skew;
  animation-name: hvr-wobble-skew;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}

/* Buzz */
@-webkit-keyframes hvr-buzz {
  50% {
    -webkit-transform: translateX(3px) rotate(2deg);
    transform: translateX(3px) rotate(2deg);
  }

  100% {
    -webkit-transform: translateX(-3px) rotate(-2deg);
    transform: translateX(-3px) rotate(-2deg);
  }
}

@keyframes hvr-buzz {
  50% {
    -webkit-transform: translateX(3px) rotate(2deg);
    transform: translateX(3px) rotate(2deg);
  }

  100% {
    -webkit-transform: translateX(-3px) rotate(-2deg);
    transform: translateX(-3px) rotate(-2deg);
  }
}

.hvr-buzz {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
}
.hvr-buzz:hover, .hvr-buzz:focus, .hvr-buzz:active {
  -webkit-animation-name: hvr-buzz;
  animation-name: hvr-buzz;
  -webkit-animation-duration: 0.15s;
  animation-duration: 0.15s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

/* Buzz Out */
@-webkit-keyframes hvr-buzz-out {
  10% {
    -webkit-transform: translateX(3px) rotate(2deg);
    transform: translateX(3px) rotate(2deg);
  }

  20% {
    -webkit-transform: translateX(-3px) rotate(-2deg);
    transform: translateX(-3px) rotate(-2deg);
  }

  30% {
    -webkit-transform: translateX(3px) rotate(2deg);
    transform: translateX(3px) rotate(2deg);
  }

  40% {
    -webkit-transform: translateX(-3px) rotate(-2deg);
    transform: translateX(-3px) rotate(-2deg);
  }

  50% {
    -webkit-transform: translateX(2px) rotate(1deg);
    transform: translateX(2px) rotate(1deg);
  }

  60% {
    -webkit-transform: translateX(-2px) rotate(-1deg);
    transform: translateX(-2px) rotate(-1deg);
  }

  70% {
    -webkit-transform: translateX(2px) rotate(1deg);
    transform: translateX(2px) rotate(1deg);
  }

  80% {
    -webkit-transform: translateX(-2px) rotate(-1deg);
    transform: translateX(-2px) rotate(-1deg);
  }

  90% {
    -webkit-transform: translateX(1px) rotate(0);
    transform: translateX(1px) rotate(0);
  }

  100% {
    -webkit-transform: translateX(-1px) rotate(0);
    transform: translateX(-1px) rotate(0);
  }
}

@keyframes hvr-buzz-out {
  10% {
    -webkit-transform: translateX(3px) rotate(2deg);
    transform: translateX(3px) rotate(2deg);
  }

  20% {
    -webkit-transform: translateX(-3px) rotate(-2deg);
    transform: translateX(-3px) rotate(-2deg);
  }

  30% {
    -webkit-transform: translateX(3px) rotate(2deg);
    transform: translateX(3px) rotate(2deg);
  }

  40% {
    -webkit-transform: translateX(-3px) rotate(-2deg);
    transform: translateX(-3px) rotate(-2deg);
  }

  50% {
    -webkit-transform: translateX(2px) rotate(1deg);
    transform: translateX(2px) rotate(1deg);
  }

  60% {
    -webkit-transform: translateX(-2px) rotate(-1deg);
    transform: translateX(-2px) rotate(-1deg);
  }

  70% {
    -webkit-transform: translateX(2px) rotate(1deg);
    transform: translateX(2px) rotate(1deg);
  }

  80% {
    -webkit-transform: translateX(-2px) rotate(-1deg);
    transform: translateX(-2px) rotate(-1deg);
  }

  90% {
    -webkit-transform: translateX(1px) rotate(0);
    transform: translateX(1px) rotate(0);
  }

  100% {
    -webkit-transform: translateX(-1px) rotate(0);
    transform: translateX(-1px) rotate(0);
  }
}

.hvr-buzz-out {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
}
.hvr-buzz-out:hover, .hvr-buzz-out:focus, .hvr-buzz-out:active {
  -webkit-animation-name: hvr-buzz-out;
  animation-name: hvr-buzz-out;
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}

/* BACKGROUND TRANSITIONS */
/* Fade */
.hvr-fade {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  overflow: hidden;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: color, background-color;
  transition-property: color, background-color;
}
.hvr-fade:hover, .hvr-fade:focus, .hvr-fade:active {
  background-color: #2098d1;
  color: white;
}

/* Back Pulse */
@-webkit-keyframes hvr-back-pulse {
  50% {
    background-color: rgba(32, 152, 209, 0.75);
  }
}

@keyframes hvr-back-pulse {
  50% {
    background-color: rgba(32, 152, 209, 0.75);
  }
}

.hvr-back-pulse {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  overflow: hidden;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
  -webkit-transition-property: color, background-color;
  transition-property: color, background-color;
}
.hvr-back-pulse:hover, .hvr-back-pulse:focus, .hvr-back-pulse:active {
  -webkit-animation-name: hvr-back-pulse;
  animation-name: hvr-back-pulse;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  background-color: #2098d1;
  background-color: #2098d1;
  color: white;
}

/* Sweep To Right */
.hvr-sweep-to-right {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  -webkit-transition-property: color;
  transition-property: color;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
.hvr-sweep-to-right:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #2098d1;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: 0 50%;
  transform-origin: 0 50%;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.hvr-sweep-to-right:hover, .hvr-sweep-to-right:focus, .hvr-sweep-to-right:active {
  color: white;
}
.hvr-sweep-to-right:hover:before, .hvr-sweep-to-right:focus:before, .hvr-sweep-to-right:active:before {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}

/* Sweep To Left */
.hvr-sweep-to-left {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  -webkit-transition-property: color;
  transition-property: color;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
.hvr-sweep-to-left:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #2098d1;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: 100% 50%;
  transform-origin: 100% 50%;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.hvr-sweep-to-left:hover, .hvr-sweep-to-left:focus, .hvr-sweep-to-left:active {
  color: white;
}
.hvr-sweep-to-left:hover:before, .hvr-sweep-to-left:focus:before, .hvr-sweep-to-left:active:before {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}

/* Sweep To Bottom */
.hvr-sweep-to-bottom {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  -webkit-transition-property: color;
  transition-property: color;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
.hvr-sweep-to-bottom:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #2098d1;
  -webkit-transform: scaleY(0);
  transform: scaleY(0);
  -webkit-transform-origin: 50% 0;
  transform-origin: 50% 0;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.hvr-sweep-to-bottom:hover, .hvr-sweep-to-bottom:focus, .hvr-sweep-to-bottom:active {
  color: white;
}
.hvr-sweep-to-bottom:hover:before, .hvr-sweep-to-bottom:focus:before, .hvr-sweep-to-bottom:active:before {
  -webkit-transform: scaleY(1);
  transform: scaleY(1);
}

/* Sweep To Top */
.hvr-sweep-to-top {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  -webkit-transition-property: color;
  transition-property: color;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
.hvr-sweep-to-top:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #2098d1;
  -webkit-transform: scaleY(0);
  transform: scaleY(0);
  -webkit-transform-origin: 50% 100%;
  transform-origin: 50% 100%;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.hvr-sweep-to-top:hover, .hvr-sweep-to-top:focus, .hvr-sweep-to-top:active {
  color: white;
}
.hvr-sweep-to-top:hover:before, .hvr-sweep-to-top:focus:before, .hvr-sweep-to-top:active:before {
  -webkit-transform: scaleY(1);
  transform: scaleY(1);
}

/* Bounce To Right */
.hvr-bounce-to-right {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  -webkit-transition-property: color;
  transition-property: color;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
}
.hvr-bounce-to-right:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #2098d1;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: 0 50%;
  transform-origin: 0 50%;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}

.hvr-bounce-to-right:hover, .hvr-bounce-to-right:focus, .hvr-bounce-to-right:active {
  color: white;
}
.hvr-bounce-to-right:hover:before, .hvr-bounce-to-right:focus:before, .hvr-bounce-to-right:active:before {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
  -webkit-transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
  transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
}

/* Bounce To Left */
.hvr-bounce-to-left {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  -webkit-transition-property: color;
  transition-property: color;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
}
.hvr-bounce-to-left:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #2098d1;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: 100% 50%;
  transform-origin: 100% 50%;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.hvr-bounce-to-left:hover, .hvr-bounce-to-left:focus, .hvr-bounce-to-left:active {
  color: white;
}
.hvr-bounce-to-left:hover:before, .hvr-bounce-to-left:focus:before, .hvr-bounce-to-left:active:before {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
  -webkit-transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
  transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
}

/* Bounce To Bottom */
.hvr-bounce-to-bottom {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  -webkit-transition-property: color;
  transition-property: color;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
}
.hvr-bounce-to-bottom:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #2098d1;
  -webkit-transform: scaleY(0);
  transform: scaleY(0);
  -webkit-transform-origin: 50% 0;
  transform-origin: 50% 0;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.hvr-bounce-to-bottom:hover, .hvr-bounce-to-bottom:focus, .hvr-bounce-to-bottom:active {
  color: white;
}
.hvr-bounce-to-bottom:hover:before, .hvr-bounce-to-bottom:focus:before, .hvr-bounce-to-bottom:active:before {
  -webkit-transform: scaleY(1);
  transform: scaleY(1);
  -webkit-transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
  transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
}

/* Bounce To Top */
.hvr-bounce-to-top {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  -webkit-transition-property: color;
  transition-property: color;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
}
.hvr-bounce-to-top:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #2098d1;
  -webkit-transform: scaleY(0);
  transform: scaleY(0);
  -webkit-transform-origin: 50% 100%;
  transform-origin: 50% 100%;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.hvr-bounce-to-top:hover, .hvr-bounce-to-top:focus, .hvr-bounce-to-top:active {
  color: white;
}
.hvr-bounce-to-top:hover:before, .hvr-bounce-to-top:focus:before, .hvr-bounce-to-top:active:before {
  -webkit-transform: scaleY(1);
  transform: scaleY(1);
  -webkit-transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
  transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
}

/* Radial Out */
.hvr-radial-out {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  overflow: hidden;
  background: #e1e1e1;
  -webkit-transition-property: color;
  transition-property: color;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
.hvr-radial-out:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #2098d1;
  border-radius: 100%;
  -webkit-transform: scale(0);
  transform: scale(0);
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.hvr-radial-out:hover, .hvr-radial-out:focus, .hvr-radial-out:active {
  color: white;
}
.hvr-radial-out:hover:before, .hvr-radial-out:focus:before, .hvr-radial-out:active:before {
  -webkit-transform: scale(2);
  transform: scale(2);
}

/* Radial In */
.hvr-radial-in {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  overflow: hidden;
  background: #2098d1;
  -webkit-transition-property: color;
  transition-property: color;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
.hvr-radial-in:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #e1e1e1;
  border-radius: 100%;
  -webkit-transform: scale(2);
  transform: scale(2);
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.hvr-radial-in:hover, .hvr-radial-in:focus, .hvr-radial-in:active {
  color: white;
}
.hvr-radial-in:hover:before, .hvr-radial-in:focus:before, .hvr-radial-in:active:before {
  -webkit-transform: scale(0);
  transform: scale(0);
}

/* Rectangle In */
.hvr-rectangle-in {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  background: #2098d1;
  -webkit-transition-property: color;
  transition-property: color;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
.hvr-rectangle-in:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #e1e1e1;
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.hvr-rectangle-in:hover, .hvr-rectangle-in:focus, .hvr-rectangle-in:active {
  color: white;
}
.hvr-rectangle-in:hover:before, .hvr-rectangle-in:focus:before, .hvr-rectangle-in:active:before {
  -webkit-transform: scale(0);
  transform: scale(0);
}

/* Rectangle Out */
.hvr-rectangle-out {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  background: #e1e1e1;
  -webkit-transition-property: color;
  transition-property: color;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
.hvr-rectangle-out:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #2098d1;
  -webkit-transform: scale(0);
  transform: scale(0);
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.hvr-rectangle-out:hover, .hvr-rectangle-out:focus, .hvr-rectangle-out:active {
  color: white;
}
.hvr-rectangle-out:hover:before, .hvr-rectangle-out:focus:before, .hvr-rectangle-out:active:before {
  -webkit-transform: scale(1);
  transform: scale(1);
}

.top-services .hvr-rectangle-out, .services-slider .hvr-rectangle-out{
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
}
.top-services .hvr-rectangle-out:before, .services-slider .hvr-rectangle-out:before {
  background: rgba(0,0,0,0.05);
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
}

/* Shutter In Horizontal */
.hvr-shutter-in-horizontal {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  background: #2098d1;
  -webkit-transition-property: color;
  transition-property: color;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
.hvr-shutter-in-horizontal:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: #e1e1e1;
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
  -webkit-transform-origin: 50%;
  transform-origin: 50%;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.hvr-shutter-in-horizontal:hover, .hvr-shutter-in-horizontal:focus, .hvr-shutter-in-horizontal:active {
  color: white;
}
.hvr-shutter-in-horizontal:hover:before, .hvr-shutter-in-horizontal:focus:before, .hvr-shutter-in-horizontal:active:before {
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
}

/* Shutter Out Horizontal */
.hvr-shutter-out-horizontal {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  background: #e1e1e1;
  -webkit-transition-property: color;
  transition-property: color;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
.hvr-shutter-out-horizontal:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: #2098d1;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: 50%;
  transform-origin: 50%;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.hvr-shutter-out-horizontal:hover, .hvr-shutter-out-horizontal:focus, .hvr-shutter-out-horizontal:active {
  color: white;
}
.hvr-shutter-out-horizontal:hover:before, .hvr-shutter-out-horizontal:focus:before, .hvr-shutter-out-horizontal:active:before {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}

/* Shutter In Vertical */
.hvr-shutter-in-vertical {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  background: #2098d1;
  -webkit-transition-property: color;
  transition-property: color;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
.hvr-shutter-in-vertical:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: #e1e1e1;
  -webkit-transform: scaleY(1);
  transform: scaleY(1);
  -webkit-transform-origin: 50%;
  transform-origin: 50%;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.hvr-shutter-in-vertical:hover, .hvr-shutter-in-vertical:focus, .hvr-shutter-in-vertical:active {
  color: white;
}
.hvr-shutter-in-vertical:hover:before, .hvr-shutter-in-vertical:focus:before, .hvr-shutter-in-vertical:active:before {
  -webkit-transform: scaleY(0);
  transform: scaleY(0);
}

/* Shutter Out Vertical */
.hvr-shutter-out-vertical {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  background: #e1e1e1;
  -webkit-transition-property: color;
  transition-property: color;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
.hvr-shutter-out-vertical:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: #2098d1;
  -webkit-transform: scaleY(0);
  transform: scaleY(0);
  -webkit-transform-origin: 50%;
  transform-origin: 50%;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.hvr-shutter-out-vertical:hover, .hvr-shutter-out-vertical:focus, .hvr-shutter-out-vertical:active {
  color: white;
}
.hvr-shutter-out-vertical:hover:before, .hvr-shutter-out-vertical:focus:before, .hvr-shutter-out-vertical:active:before {
  -webkit-transform: scaleY(1);
  transform: scaleY(1);
}

/* BORDER TRANSITIONS */
/* Border Fade */
.hvr-border-fade {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: box-shadow;
  transition-property: box-shadow;
  box-shadow: inset 0 0 0 4px #e1e1e1, 0 0 1px rgba(0, 0, 0, 0);
  /* Hack to improve aliasing on mobile/tablet devices */
}
.hvr-border-fade:hover, .hvr-border-fade:focus, .hvr-border-fade:active {
  box-shadow: inset 0 0 0 4px #2098d1, 0 0 1px rgba(0, 0, 0, 0);
  /* Hack to improve aliasing on mobile/tablet devices */
}

/* Hollow */
.hvr-hollow {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: background;
  transition-property: background;
  box-shadow: inset 0 0 0 4px #e1e1e1, 0 0 1px rgba(0, 0, 0, 0);
  /* Hack to improve aliasing on mobile/tablet devices */
}
.hvr-hollow:hover, .hvr-hollow:focus, .hvr-hollow:active {
  background: none;
}

/* Trim */
.hvr-trim {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
}
.hvr-trim:before {
  content: '';
  position: absolute;
  border: white solid 4px;
  top: 4px;
  left: 4px;
  right: 4px;
  bottom: 4px;
  opacity: 0;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: opacity;
  transition-property: opacity;
}
.hvr-trim:hover:before, .hvr-trim:focus:before, .hvr-trim:active:before {
  opacity: 1;
}

/* Ripple Out */
@-webkit-keyframes hvr-ripple-out {
  100% {
    top: -12px;
    right: -12px;
    bottom: -12px;
    left: -12px;
    opacity: 0;
  }
}

@keyframes hvr-ripple-out {
  100% {
    top: -12px;
    right: -12px;
    bottom: -12px;
    left: -12px;
    opacity: 0;
  }
}

.hvr-ripple-out {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
}
.hvr-ripple-out:before {
  content: '';
  position: absolute;
  border: #e1e1e1 solid 6px;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
}

.meet-the-team .member .social li.hvr-ripple-out:before {
  border: #0f86ff solid 6px;
}

.hvr-ripple-out:hover:before, .hvr-ripple-out:focus:before, .hvr-ripple-out:active:before {
  -webkit-animation-name: hvr-ripple-out;
  animation-name: hvr-ripple-out;
}

/* Ripple In */
@-webkit-keyframes hvr-ripple-in {
  100% {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    opacity: 1;
  }
}

@keyframes hvr-ripple-in {
  100% {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    opacity: 1;
  }
}

.hvr-ripple-in {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
}
.hvr-ripple-in:before {
  content: '';
  position: absolute;
  border: #e1e1e1 solid 4px;
  top: -12px;
  right: -12px;
  bottom: -12px;
  left: -12px;
  opacity: 0;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
}
.hvr-ripple-in:hover:before, .hvr-ripple-in:focus:before, .hvr-ripple-in:active:before {
  -webkit-animation-name: hvr-ripple-in;
  animation-name: hvr-ripple-in;
}

/* Outline Out */
.hvr-outline-out {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
}
.hvr-outline-out:before {
  content: '';
  position: absolute;
  border: #e1e1e1 solid 4px;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: top, right, bottom, left;
  transition-property: top, right, bottom, left;
}
.hvr-outline-out:hover:before, .hvr-outline-out:focus:before, .hvr-outline-out:active:before {
  top: -8px;
  right: -8px;
  bottom: -8px;
  left: -8px;
}

/* Outline In */
.hvr-outline-in {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
}
.hvr-outline-in:before {
  pointer-events: none;
  content: '';
  position: absolute;
  border: #e1e1e1 solid 4px;
  top: -16px;
  right: -16px;
  bottom: -16px;
  left: -16px;
  opacity: 0;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: top, right, bottom, left;
  transition-property: top, right, bottom, left;
}
.hvr-outline-in:hover:before, .hvr-outline-in:focus:before, .hvr-outline-in:active:before {
  top: -8px;
  right: -8px;
  bottom: -8px;
  left: -8px;
  opacity: 1;
}

/* Round Corners */
.hvr-round-corners {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: border-radius;
  transition-property: border-radius;
}
.hvr-round-corners:hover, .hvr-round-corners:focus, .hvr-round-corners:active {
  border-radius: 1em;
}

/* Underline From Left */
.hvr-underline-from-left {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  overflow: hidden;
}
.hvr-underline-from-left:before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  right: 100%;
  bottom: 0;
  background: #2098d1;
  height: 4px;
  -webkit-transition-property: right;
  transition-property: right;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.hvr-underline-from-left:hover:before, .hvr-underline-from-left:focus:before, .hvr-underline-from-left:active:before {
  right: 0;
}

/* Underline From Center */
.hvr-underline-from-center {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  overflow: hidden;
}
.hvr-underline-from-center:before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 50%;
  right: 50%;
  bottom: 0;
  background: #2098d1;
  height: 4px;
  -webkit-transition-property: left, right;
  transition-property: left, right;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.hvr-underline-from-center:hover:before, .hvr-underline-from-center:focus:before, .hvr-underline-from-center:active:before {
  left: 0;
  right: 0;
}

/* Underline From Right */
.hvr-underline-from-right {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  overflow: hidden;
}
.hvr-underline-from-right:before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 100%;
  right: 0;
  bottom: 0;
  background: #2098d1;
  height: 4px;
  -webkit-transition-property: left;
  transition-property: left;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.hvr-underline-from-right:hover:before, .hvr-underline-from-right:focus:before, .hvr-underline-from-right:active:before {
  left: 0;
}

/* Overline From Left */
.hvr-overline-from-left {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  overflow: hidden;
}
.hvr-overline-from-left:before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  right: 100%;
  top: 0;
  background: #2098d1;
  height: 4px;
  -webkit-transition-property: right;
  transition-property: right;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.hvr-overline-from-left:hover:before, .hvr-overline-from-left:focus:before, .hvr-overline-from-left:active:before {
  right: 0;
}

/* Overline From Center */
.hvr-overline-from-center {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  overflow: hidden;
}
.hvr-overline-from-center:before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 50%;
  right: 50%;
  top: 0;
  background: #2098d1;
  height: 4px;
  -webkit-transition-property: left, right;
  transition-property: left, right;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.hvr-overline-from-center:hover:before, .hvr-overline-from-center:focus:before, .hvr-overline-from-center:active:before {
  left: 0;
  right: 0;
}

/* Overline From Right */
.hvr-overline-from-right {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  overflow: hidden;
}
.hvr-overline-from-right:before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 100%;
  right: 0;
  top: 0;
  background: #2098d1;
  height: 4px;
  -webkit-transition-property: left;
  transition-property: left;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.hvr-overline-from-right:hover:before, .hvr-overline-from-right:focus:before, .hvr-overline-from-right:active:before {
  left: 0;
}

/* Reveal */
.hvr-reveal {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  overflow: hidden;
}
.hvr-reveal:before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  border-color: #2098d1;
  border-style: solid;
  border-width: 0;
  -webkit-transition-property: border-width;
  transition-property: border-width;
  -webkit-transition-duration: 0.1s;
  transition-duration: 0.1s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.hvr-reveal:hover:before, .hvr-reveal:focus:before, .hvr-reveal:active:before {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  border-width: 4px;
}

/* Underline Reveal */
.hvr-underline-reveal {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  overflow: hidden;
}
.hvr-underline-reveal:before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  right: 0;
  bottom: 0;
  background: #2098d1;
  height: 4px;
  -webkit-transform: translateY(4px);
  transform: translateY(4px);
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.hvr-underline-reveal:hover:before, .hvr-underline-reveal:focus:before, .hvr-underline-reveal:active:before {
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

/* Overline Reveal */
.hvr-overline-reveal {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  overflow: hidden;
}
.hvr-overline-reveal:before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  right: 0;
  top: 0;
  background: #2098d1;
  height: 4px;
  -webkit-transform: translateY(-4px);
  transform: translateY(-4px);
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.hvr-overline-reveal:hover:before, .hvr-overline-reveal:focus:before, .hvr-overline-reveal:active:before {
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

/* SHADOW/GLOW TRANSITIONS */
/* Glow */
.hvr-glow {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: box-shadow;
  transition-property: box-shadow;
}
.hvr-glow:hover, .hvr-glow:focus, .hvr-glow:active {
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
}

/* Shadow */
.hvr-shadow {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: box-shadow;
  transition-property: box-shadow;
}
.hvr-shadow:hover, .hvr-shadow:focus, .hvr-shadow:active {
  box-shadow: 0 10px 10px -10px rgba(0, 0, 0, 0.5);
}

/* Grow Shadow */
.hvr-grow-shadow {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: box-shadow, transform;
  transition-property: box-shadow, transform;
}
.hvr-grow-shadow:hover, .hvr-grow-shadow:focus, .hvr-grow-shadow:active {
  box-shadow: 0 10px 10px -10px rgba(0, 0, 0, 0.5);
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

/* Box Shadow Outset */
.hvr-box-shadow-outset {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: box-shadow;
  transition-property: box-shadow;
}
.hvr-box-shadow-outset:hover, .hvr-box-shadow-outset:focus, .hvr-box-shadow-outset:active {
  box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.6);
}

/* Box Shadow Inset */
.hvr-box-shadow-inset {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: box-shadow;
  transition-property: box-shadow;
  box-shadow: inset 0 0 0 rgba(0, 0, 0, 0.6), 0 0 1px rgba(0, 0, 0, 0);
  /* Hack to improve aliasing on mobile/tablet devices */
}
.hvr-box-shadow-inset:hover, .hvr-box-shadow-inset:focus, .hvr-box-shadow-inset:active {
  box-shadow: inset 2px 2px 2px rgba(0, 0, 0, 0.6), 0 0 1px rgba(0, 0, 0, 0);
  /* Hack to improve aliasing on mobile/tablet devices */
}

/* Float Shadow */
.hvr-float-shadow {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: transform;
  transition-property: transform;
}
.hvr-float-shadow:before {
  pointer-events: none;
  position: absolute;
  z-index: -1;
  content: '';
  top: 100%;
  left: 5%;
  height: 10px;
  width: 90%;
  opacity: 0;
  background: -webkit-radial-gradient(center, ellipse, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0) 80%);
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0) 80%);
  /* W3C */
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: transform, opacity;
  transition-property: transform, opacity;
}

.hvr-float-shadow:hover, .hvr-float-shadow:focus, .hvr-float-shadow:active {
  -webkit-transform: translateY(-5px);
  transform: translateY(-5px);
  /* move the element up by 5px */
}
.hvr-float-shadow:hover:before, .hvr-float-shadow:focus:before, .hvr-float-shadow:active:before {
  opacity: 1;
  -webkit-transform: translateY(5px);
  transform: translateY(5px);
  /* move the element down by 5px (it will stay in place because it's attached to the element that also moves up 5px) */
}

/* Shadow Radial */
.hvr-shadow-radial {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
}
.hvr-shadow-radial:before, .hvr-shadow-radial:after {
  pointer-events: none;
  position: absolute;
  content: '';
  left: 0;
  width: 100%;
  box-sizing: border-box;
  background-repeat: no-repeat;
  height: 5px;
  opacity: 0;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: opacity;
  transition-property: opacity;
}
.hvr-shadow-radial:before {
  bottom: 100%;
  background: -webkit-radial-gradient(50% 150%, ellipse, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 80%);
  background: radial-gradient(ellipse at 50% 150%, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 80%);
}
.hvr-shadow-radial:after {
  top: 100%;
  background: -webkit-radial-gradient(50% -50%, ellipse, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 80%);
  background: radial-gradient(ellipse at 50% -50%, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 80%);
}
.hvr-shadow-radial:hover:before, .hvr-shadow-radial:focus:before, .hvr-shadow-radial:active:before, .hvr-shadow-radial:hover:after, .hvr-shadow-radial:focus:after, .hvr-shadow-radial:active:after {
  opacity: 1;
}

/* SPEECH BUBBLES */
/* Bubble Top */
.hvr-bubble-top {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
}
.hvr-bubble-top:before {
  pointer-events: none;
  position: absolute;
  z-index: -1;
  content: '';
  border-style: solid;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: transform;
  transition-property: transform;
  left: calc(50% - 10px);
  top: 0;
  border-width: 0 10px 10px 10px;
  border-color: transparent transparent #e1e1e1 transparent;
}
.hvr-bubble-top:hover:before, .hvr-bubble-top:focus:before, .hvr-bubble-top:active:before {
  -webkit-transform: translateY(-10px);
  transform: translateY(-10px);
}

/* Bubble Right */
.hvr-bubble-right {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
}
.hvr-bubble-right:before {
  pointer-events: none;
  position: absolute;
  z-index: -1;
  content: '';
  border-style: solid;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: transform;
  transition-property: transform;
  top: calc(50% - 10px);
  right: 0;
  border-width: 10px 0 10px 10px;
  border-color: transparent transparent transparent #e1e1e1;
}
.hvr-bubble-right:hover:before, .hvr-bubble-right:focus:before, .hvr-bubble-right:active:before {
  -webkit-transform: translateX(10px);
  transform: translateX(10px);
}

/* Bubble Bottom */
.hvr-bubble-bottom {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
}
.hvr-bubble-bottom:before {
  pointer-events: none;
  position: absolute;
  z-index: -1;
  content: '';
  border-style: solid;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: transform;
  transition-property: transform;
  left: calc(50% - 10px);
  bottom: 0;
  border-width: 10px 10px 0 10px;
  border-color: #e1e1e1 transparent transparent transparent;
}
.hvr-bubble-bottom:hover:before, .hvr-bubble-bottom:focus:before, .hvr-bubble-bottom:active:before {
  -webkit-transform: translateY(10px);
  transform: translateY(10px);
}

/* Bubble Left */
.hvr-bubble-left {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
}
.hvr-bubble-left:before {
  pointer-events: none;
  position: absolute;
  z-index: -1;
  content: '';
  border-style: solid;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: transform;
  transition-property: transform;
  top: calc(50% - 10px);
  left: 0;
  border-width: 10px 10px 10px 0;
  border-color: transparent #e1e1e1 transparent transparent;
}
.hvr-bubble-left:hover:before, .hvr-bubble-left:focus:before, .hvr-bubble-left:active:before {
  -webkit-transform: translateX(-10px);
  transform: translateX(-10px);
}

/* Bubble Float Top */
.hvr-bubble-float-top {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: transform;
  transition-property: transform;
}
.hvr-bubble-float-top:before {
  position: absolute;
  z-index: -1;
  content: '';
  left: calc(50% - 10px);
  top: 0;
  border-style: solid;
  border-width: 0 10px 10px 10px;
  border-color: transparent transparent #e1e1e1 transparent;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: transform;
  transition-property: transform;
}
.hvr-bubble-float-top:hover, .hvr-bubble-float-top:focus, .hvr-bubble-float-top:active {
  -webkit-transform: translateY(10px);
  transform: translateY(10px);
}
.hvr-bubble-float-top:hover:before, .hvr-bubble-float-top:focus:before, .hvr-bubble-float-top:active:before {
  -webkit-transform: translateY(-10px);
  transform: translateY(-10px);
}

/* Bubble Float Right */
.hvr-bubble-float-right {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: transform;
  transition-property: transform;
}
.hvr-bubble-float-right:before {
  position: absolute;
  z-index: -1;
  top: calc(50% - 10px);
  right: 0;
  content: '';
  border-style: solid;
  border-width: 10px 0 10px 10px;
  border-color: transparent transparent transparent #e1e1e1;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: transform;
  transition-property: transform;
}
.hvr-bubble-float-right:hover, .hvr-bubble-float-right:focus, .hvr-bubble-float-right:active {
  -webkit-transform: translateX(-10px);
  transform: translateX(-10px);
}
.hvr-bubble-float-right:hover:before, .hvr-bubble-float-right:focus:before, .hvr-bubble-float-right:active:before {
  -webkit-transform: translateX(10px);
  transform: translateX(10px);
}

/* Bubble Float Bottom */
.hvr-bubble-float-bottom {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: transform;
  transition-property: transform;
}
.hvr-bubble-float-bottom:before {
  position: absolute;
  z-index: -1;
  content: '';
  left: calc(50% - 10px);
  bottom: 0;
  border-style: solid;
  border-width: 10px 10px 0 10px;
  border-color: #e1e1e1 transparent transparent transparent;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: transform;
  transition-property: transform;
}
.hvr-bubble-float-bottom:hover, .hvr-bubble-float-bottom:focus, .hvr-bubble-float-bottom:active {
  -webkit-transform: translateY(-10px);
  transform: translateY(-10px);
}
.hvr-bubble-float-bottom:hover:before, .hvr-bubble-float-bottom:focus:before, .hvr-bubble-float-bottom:active:before {
  -webkit-transform: translateY(10px);
  transform: translateY(10px);
}

/* Bubble Float Left */
.hvr-bubble-float-left {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: transform;
  transition-property: transform;
}
.hvr-bubble-float-left:before {
  position: absolute;
  z-index: -1;
  content: '';
  top: calc(50% - 10px);
  left: 0;
  border-style: solid;
  border-width: 10px 10px 10px 0;
  border-color: transparent #e1e1e1 transparent transparent;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: transform;
  transition-property: transform;
}
.hvr-bubble-float-left:hover, .hvr-bubble-float-left:focus, .hvr-bubble-float-left:active {
  -webkit-transform: translateX(10px);
  transform: translateX(10px);
}
.hvr-bubble-float-left:hover:before, .hvr-bubble-float-left:focus:before, .hvr-bubble-float-left:active:before {
  -webkit-transform: translateX(-10px);
  transform: translateX(-10px);
}

/* ICONS */
/* Icon Back */
.hvr-icon-back {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  padding-left: 2.2em;
  -webkit-transition-duration: 0.1s;
  transition-duration: 0.1s;
}
.hvr-icon-back:before {
  content: "\f137";
  position: absolute;
  left: 1em;
  padding: 0 1px;
  font-family: FontAwesome;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-transition-duration: 0.1s;
  transition-duration: 0.1s;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.hvr-icon-back:hover:before, .hvr-icon-back:focus:before, .hvr-icon-back:active:before {
  -webkit-transform: translateX(-4px);
  transform: translateX(-4px);
}

/* Icon Forward */
.hvr-icon-forward {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  padding-right: 2.2em;
  -webkit-transition-duration: 0.1s;
  transition-duration: 0.1s;
}
.hvr-icon-forward:before {
  content: "\f138";
  position: absolute;
  right: 1em;
  padding: 0 1px;
  font-family: FontAwesome;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-transition-duration: 0.1s;
  transition-duration: 0.1s;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.hvr-icon-forward:hover:before, .hvr-icon-forward:focus:before, .hvr-icon-forward:active:before {
  -webkit-transform: translateX(4px);
  transform: translateX(4px);
}

/* Icon Down */
@-webkit-keyframes hvr-icon-down {
  0%,
  50%,
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  25%,
  75% {
    -webkit-transform: translateY(6px);
    transform: translateY(6px);
  }
}

@keyframes hvr-icon-down {
  0%,
  50%,
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  25%,
  75% {
    -webkit-transform: translateY(6px);
    transform: translateY(6px);
  }
}

/* Icon Down */
.hvr-icon-down {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  padding-right: 2.2em;
}
.hvr-icon-down:before {
  content: "\f01a";
  position: absolute;
  right: 1em;
  padding: 0 1px;
  font-family: FontAwesome;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}
.hvr-icon-down:hover:before, .hvr-icon-down:focus:before, .hvr-icon-down:active:before {
  -webkit-animation-name: hvr-icon-down;
  animation-name: hvr-icon-down;
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}

/* Icon Up */
@-webkit-keyframes hvr-icon-up {
  0%,
  50%,
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  25%,
  75% {
    -webkit-transform: translateY(-6px);
    transform: translateY(-6px);
  }
}

@keyframes hvr-icon-up {
  0%,
  50%,
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  25%,
  75% {
    -webkit-transform: translateY(-6px);
    transform: translateY(-6px);
  }
}

/* Icon Up */
.hvr-icon-up {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  padding-right: 2.2em;
}
.hvr-icon-up:before {
  content: "\f01b";
  position: absolute;
  right: 1em;
  padding: 0 1px;
  font-family: FontAwesome;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}
.hvr-icon-up:hover:before, .hvr-icon-up:focus:before, .hvr-icon-up:active:before {
  -webkit-animation-name: hvr-icon-up;
  animation-name: hvr-icon-up;
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}

/* Icon Spin */
.hvr-icon-spin {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  padding-right: 2.2em;
}
.hvr-icon-spin:before {
  content: "\f021";
  position: absolute;
  right: 1em;
  padding: 0 1px;
  font-family: FontAwesome;
  -webkit-transition-duration: 1s;
  transition-duration: 1s;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out;
}
.hvr-icon-spin:hover:before, .hvr-icon-spin:focus:before, .hvr-icon-spin:active:before {
  -webkit-transform: rotate(360deg);
  transform: rotate(360deg);
}

/* Icon Drop */
@-webkit-keyframes hvr-icon-drop {
  0% {
    opacity: 0;
  }

  50% {
    opacity: 0;
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }

  51%,
  100% {
    opacity: 1;
  }
}

@keyframes hvr-icon-drop {
  0% {
    opacity: 0;
  }

  50% {
    opacity: 0;
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }

  51%,
  100% {
    opacity: 1;
  }
}

/* Icon Drop */
.hvr-icon-drop {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  padding-right: 2.2em;
}
.hvr-icon-drop:before {
  content: "\f041";
  position: absolute;
  right: 1em;
  opacity: 1;
  padding: 0 1px;
  font-family: FontAwesome;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}
.hvr-icon-drop:hover:before, .hvr-icon-drop:focus:before, .hvr-icon-drop:active:before {
  opacity: 0;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-animation-name: hvr-icon-drop;
  animation-name: hvr-icon-drop;
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
  animation-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
}

/* Icon Fade */
.hvr-icon-fade {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  padding-right: 2.2em;
}
.hvr-icon-fade:before {
  content: "\f00c";
  position: absolute;
  right: 1em;
  padding: 0 1px;
  font-family: FontAwesome;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
  -webkit-transition-property: color;
  transition-property: color;
}
.hvr-icon-fade:hover:before, .hvr-icon-fade:focus:before, .hvr-icon-fade:active:before {
  color: #0F9E5E;
}

/* Icon Float Away */
@-webkit-keyframes hvr-icon-float-away {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(-1em);
    transform: translateY(-1em);
  }
}

@keyframes hvr-icon-float-away {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(-1em);
    transform: translateY(-1em);
  }
}

/* Icon Float Away */
.hvr-icon-float-away {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  padding-right: 2.2em;
}
.hvr-icon-float-away:before, .hvr-icon-float-away:after {
  content: "\f055";
  position: absolute;
  right: 1em;
  padding: 0 1px;
  font-family: FontAwesome;
}
.hvr-icon-float-away:after {
  opacity: 0;
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}
.hvr-icon-float-away:hover:after, .hvr-icon-float-away:focus:after, .hvr-icon-float-away:active:after {
  -webkit-animation-name: hvr-icon-float-away;
  animation-name: hvr-icon-float-away;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}

/* Icon Sink Away */
@-webkit-keyframes hvr-icon-sink-away {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(1em);
    transform: translateY(1em);
  }
}

@keyframes hvr-icon-sink-away {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(1em);
    transform: translateY(1em);
  }
}

/* Icon Sink Away */
.hvr-icon-sink-away {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  padding-right: 2.2em;
}
.hvr-icon-sink-away:before, .hvr-icon-sink-away:after {
  content: "\f056";
  position: absolute;
  right: 1em;
  padding: 0 1px;
  font-family: FontAwesome;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}
.hvr-icon-sink-away:after {
  opacity: 0;
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}
.hvr-icon-sink-away:hover:after, .hvr-icon-sink-away:focus:after, .hvr-icon-sink-away:active:after {
  -webkit-animation-name: hvr-icon-sink-away;
  animation-name: hvr-icon-sink-away;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}

/* Icon Grow */
.hvr-icon-grow {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  padding-right: 2.2em;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
.hvr-icon-grow:before {
  content: "\f118";
  position: absolute;
  right: 1em;
  padding: 0 1px;
  font-family: FontAwesome;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.hvr-icon-grow:hover:before, .hvr-icon-grow:focus:before, .hvr-icon-grow:active:before {
  -webkit-transform: scale(1.3) translateZ(0);
  transform: scale(1.3) translateZ(0);
}

/* Icon Shrink */
.hvr-icon-shrink {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  padding-right: 2.2em;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
.hvr-icon-shrink:before {
  content: "\f119";
  position: absolute;
  right: 1em;
  padding: 0 1px;
  font-family: FontAwesome;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.hvr-icon-shrink:hover:before, .hvr-icon-shrink:focus:before, .hvr-icon-shrink:active:before {
  -webkit-transform: scale(0.8);
  transform: scale(0.8);
}

/* Icon Pulse */
@-webkit-keyframes hvr-icon-pulse {
  25% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }

  75% {
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
  }
}

@keyframes hvr-icon-pulse {
  25% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }

  75% {
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
  }
}

.hvr-icon-pulse {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  padding-right: 2.2em;
}
.hvr-icon-pulse:before {
  content: "\f015";
  position: absolute;
  right: 1em;
  padding: 0 1px;
  font-family: FontAwesome;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.hvr-icon-pulse:hover:before, .hvr-icon-pulse:focus:before, .hvr-icon-pulse:active:before {
  -webkit-animation-name: hvr-icon-pulse;
  animation-name: hvr-icon-pulse;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

/* Icon Pulse Grow */
@-webkit-keyframes hvr-icon-pulse-grow {
  to {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }
}

@keyframes hvr-icon-pulse-grow {
  to {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }
}

.hvr-icon-pulse-grow {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  padding-right: 2.2em;
}
.hvr-icon-pulse-grow:before {
  content: "\f015";
  position: absolute;
  right: 1em;
  padding: 0 1px;
  font-family: FontAwesome;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.hvr-icon-pulse-grow:hover:before, .hvr-icon-pulse-grow:focus:before, .hvr-icon-pulse-grow:active:before {
  -webkit-animation-name: hvr-icon-pulse-grow;
  animation-name: hvr-icon-pulse-grow;
  -webkit-animation-duration: 0.3s;
  animation-duration: 0.3s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-direction: alternate;
  animation-direction: alternate;
}

/* Icon Pulse Shrink */
@-webkit-keyframes hvr-icon-pulse-shrink {
  to {
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
  }
}

@keyframes hvr-icon-pulse-shrink {
  to {
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
  }
}

.hvr-icon-pulse-shrink {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  padding-right: 2.2em;
}
.hvr-icon-pulse-shrink:before {
  content: "\f015";
  position: absolute;
  right: 1em;
  padding: 0 1px;
  font-family: FontAwesome;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.hvr-icon-pulse-shrink:hover:before, .hvr-icon-pulse-shrink:focus:before, .hvr-icon-pulse-shrink:active:before {
  -webkit-animation-name: hvr-icon-pulse-shrink;
  animation-name: hvr-icon-pulse-shrink;
  -webkit-animation-duration: 0.3s;
  animation-duration: 0.3s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-direction: alternate;
  animation-direction: alternate;
}

/* Icon Push */
@-webkit-keyframes hvr-icon-push {
  50% {
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
  }
}

@keyframes hvr-icon-push {
  50% {
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
  }
}

.hvr-icon-push {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  padding-right: 2.2em;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
.hvr-icon-push:before {
  content: "\f006";
  position: absolute;
  right: 1em;
  padding: 0 1px;
  font-family: FontAwesome;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.hvr-icon-push:hover:before, .hvr-icon-push:focus:before, .hvr-icon-push:active:before {
  -webkit-animation-name: hvr-icon-push;
  animation-name: hvr-icon-push;
  -webkit-animation-duration: 0.3s;
  animation-duration: 0.3s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}

/* Icon Pop */
@-webkit-keyframes hvr-icon-pop {
  50% {
    -webkit-transform: scale(1.5);
    transform: scale(1.5);
  }
}

@keyframes hvr-icon-pop {
  50% {
    -webkit-transform: scale(1.5);
    transform: scale(1.5);
  }
}

.hvr-icon-pop {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  padding-right: 2.2em;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
.hvr-icon-pop:before {
  content: "\f005";
  position: absolute;
  right: 1em;
  padding: 0 1px;
  font-family: FontAwesome;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.hvr-icon-pop:hover:before, .hvr-icon-pop:focus:before, .hvr-icon-pop:active:before {
  -webkit-animation-name: hvr-icon-pop;
  animation-name: hvr-icon-pop;
  -webkit-animation-duration: 0.3s;
  animation-duration: 0.3s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}

/* Icon Bounce */
.hvr-icon-bounce {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  padding-right: 2.2em;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
.hvr-icon-bounce:before {
  content: "\f087";
  position: absolute;
  right: 1em;
  padding: 0 1px;
  font-family: FontAwesome;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.hvr-icon-bounce:hover:before, .hvr-icon-bounce:focus:before, .hvr-icon-bounce:active:before {
  -webkit-transform: scale(1.5);
  transform: scale(1.5);
  -webkit-transition-timing-function: cubic-bezier(0.47, 2.02, 0.31, -0.36);
  transition-timing-function: cubic-bezier(0.47, 2.02, 0.31, -0.36);
}

/* Icon Rotate */
.hvr-icon-rotate {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  padding-right: 2.2em;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
.hvr-icon-rotate:before {
  content: "\f0c6";
  position: absolute;
  right: 1em;
  padding: 0 1px;
  font-family: FontAwesome;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.hvr-icon-rotate:hover:before, .hvr-icon-rotate:focus:before, .hvr-icon-rotate:active:before {
  -webkit-transform: rotate(20deg);
  transform: rotate(20deg);
}

/* Icon Grow Rotate */
.hvr-icon-grow-rotate {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  padding-right: 2.2em;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
.hvr-icon-grow-rotate:before {
  content: "\f095";
  position: absolute;
  right: 1em;
  padding: 0 1px;
  font-family: FontAwesome;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.hvr-icon-grow-rotate:hover:before, .hvr-icon-grow-rotate:focus:before, .hvr-icon-grow-rotate:active:before {
  -webkit-transform: scale(1.5) rotate(12deg);
  transform: scale(1.5) rotate(12deg);
}

/* Icon Float */
.hvr-icon-float {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  padding-right: 2.2em;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
.hvr-icon-float:before {
  content: "\f01b";
  position: absolute;
  right: 1em;
  padding: 0 1px;
  font-family: FontAwesome;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.hvr-icon-float:hover:before, .hvr-icon-float:focus:before, .hvr-icon-float:active:before {
  -webkit-transform: translateY(-4px);
  transform: translateY(-4px);
}

/* Icon Sink */
.hvr-icon-sink {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  padding-right: 2.2em;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
.hvr-icon-sink:before {
  content: "\f01a";
  position: absolute;
  right: 1em;
  padding: 0 1px;
  font-family: FontAwesome;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.hvr-icon-sink:hover:before, .hvr-icon-sink:focus:before, .hvr-icon-sink:active:before {
  -webkit-transform: translateY(4px);
  transform: translateY(4px);
}

/* Icon Bob */
@-webkit-keyframes hvr-icon-bob {
  0% {
    -webkit-transform: translateY(-6px);
    transform: translateY(-6px);
  }

  50% {
    -webkit-transform: translateY(-2px);
    transform: translateY(-2px);
  }

  100% {
    -webkit-transform: translateY(-6px);
    transform: translateY(-6px);
  }
}

@keyframes hvr-icon-bob {
  0% {
    -webkit-transform: translateY(-6px);
    transform: translateY(-6px);
  }

  50% {
    -webkit-transform: translateY(-2px);
    transform: translateY(-2px);
  }

  100% {
    -webkit-transform: translateY(-6px);
    transform: translateY(-6px);
  }
}

@-webkit-keyframes hvr-icon-bob-float {
  100% {
    -webkit-transform: translateY(-6px);
    transform: translateY(-6px);
  }
}

@keyframes hvr-icon-bob-float {
  100% {
    -webkit-transform: translateY(-6px);
    transform: translateY(-6px);
  }
}

.hvr-icon-bob {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  padding-right: 2.2em;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
.hvr-icon-bob:before {
  content: "\f077";
  position: absolute;
  right: 1em;
  padding: 0 1px;
  font-family: FontAwesome;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}
.hvr-icon-bob:hover:before, .hvr-icon-bob:focus:before, .hvr-icon-bob:active:before {
  -webkit-animation-name: hvr-icon-bob-float, hvr-icon-bob;
  animation-name: hvr-icon-bob-float, hvr-icon-bob;
  -webkit-animation-duration: .3s, 1.5s;
  animation-duration: .3s, 1.5s;
  -webkit-animation-delay: 0s, .3s;
  animation-delay: 0s, .3s;
  -webkit-animation-timing-function: ease-out, ease-in-out;
  animation-timing-function: ease-out, ease-in-out;
  -webkit-animation-iteration-count: 1, infinite;
  animation-iteration-count: 1, infinite;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-direction: normal, alternate;
  animation-direction: normal, alternate;
}

/* Icon Hang */
@-webkit-keyframes hvr-icon-hang {
  0% {
    -webkit-transform: translateY(6px);
    transform: translateY(6px);
  }

  50% {
    -webkit-transform: translateY(2px);
    transform: translateY(2px);
  }

  100% {
    -webkit-transform: translateY(6px);
    transform: translateY(6px);
  }
}

@keyframes hvr-icon-hang {
  0% {
    -webkit-transform: translateY(6px);
    transform: translateY(6px);
  }

  50% {
    -webkit-transform: translateY(2px);
    transform: translateY(2px);
  }

  100% {
    -webkit-transform: translateY(6px);
    transform: translateY(6px);
  }
}

@-webkit-keyframes hvr-icon-hang-sink {
  100% {
    -webkit-transform: translateY(6px);
    transform: translateY(6px);
  }
}

@keyframes hvr-icon-hang-sink {
  100% {
    -webkit-transform: translateY(6px);
    transform: translateY(6px);
  }
}

.hvr-icon-hang {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  padding-right: 2.2em;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
.hvr-icon-hang:before {
  content: "\f078";
  position: absolute;
  right: 1em;
  padding: 0 1px;
  font-family: FontAwesome;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}
.hvr-icon-hang:hover:before, .hvr-icon-hang:focus:before, .hvr-icon-hang:active:before {
  -webkit-animation-name: hvr-icon-hang-sink, hvr-icon-hang;
  animation-name: hvr-icon-hang-sink, hvr-icon-hang;
  -webkit-animation-duration: .3s, 1.5s;
  animation-duration: .3s, 1.5s;
  -webkit-animation-delay: 0s, .3s;
  animation-delay: 0s, .3s;
  -webkit-animation-timing-function: ease-out, ease-in-out;
  animation-timing-function: ease-out, ease-in-out;
  -webkit-animation-iteration-count: 1, infinite;
  animation-iteration-count: 1, infinite;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-direction: normal, alternate;
  animation-direction: normal, alternate;
}

/* Icon Wobble Horizontal */
@-webkit-keyframes hvr-icon-wobble-horizontal {
  16.65% {
    -webkit-transform: translateX(6px);
    transform: translateX(6px);
  }

  33.3% {
    -webkit-transform: translateX(-5px);
    transform: translateX(-5px);
  }

  49.95% {
    -webkit-transform: translateX(4px);
    transform: translateX(4px);
  }

  66.6% {
    -webkit-transform: translateX(-2px);
    transform: translateX(-2px);
  }

  83.25% {
    -webkit-transform: translateX(1px);
    transform: translateX(1px);
  }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes hvr-icon-wobble-horizontal {
  16.65% {
    -webkit-transform: translateX(6px);
    transform: translateX(6px);
  }

  33.3% {
    -webkit-transform: translateX(-5px);
    transform: translateX(-5px);
  }

  49.95% {
    -webkit-transform: translateX(4px);
    transform: translateX(4px);
  }

  66.6% {
    -webkit-transform: translateX(-2px);
    transform: translateX(-2px);
  }

  83.25% {
    -webkit-transform: translateX(1px);
    transform: translateX(1px);
  }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

.hvr-icon-wobble-horizontal {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  padding-right: 2.2em;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
.hvr-icon-wobble-horizontal:before {
  content: "\f061";
  position: absolute;
  right: 1em;
  padding: 0 1px;
  font-family: FontAwesome;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}
.hvr-icon-wobble-horizontal:hover:before, .hvr-icon-wobble-horizontal:focus:before, .hvr-icon-wobble-horizontal:active:before {
  -webkit-animation-name: hvr-icon-wobble-horizontal;
  animation-name: hvr-icon-wobble-horizontal;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}

/* Icon Wobble Vertical */
@-webkit-keyframes hvr-icon-wobble-vertical {
  16.65% {
    -webkit-transform: translateY(6px);
    transform: translateY(6px);
  }

  33.3% {
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px);
  }

  49.95% {
    -webkit-transform: translateY(4px);
    transform: translateY(4px);
  }

  66.6% {
    -webkit-transform: translateY(-2px);
    transform: translateY(-2px);
  }

  83.25% {
    -webkit-transform: translateY(1px);
    transform: translateY(1px);
  }

  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes hvr-icon-wobble-vertical {
  16.65% {
    -webkit-transform: translateY(6px);
    transform: translateY(6px);
  }

  33.3% {
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px);
  }

  49.95% {
    -webkit-transform: translateY(4px);
    transform: translateY(4px);
  }

  66.6% {
    -webkit-transform: translateY(-2px);
    transform: translateY(-2px);
  }

  83.25% {
    -webkit-transform: translateY(1px);
    transform: translateY(1px);
  }

  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

.hvr-icon-wobble-vertical {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  padding-right: 2.2em;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
.hvr-icon-wobble-vertical:before {
  content: "\f062";
  position: absolute;
  right: 1em;
  padding: 0 1px;
  font-family: FontAwesome;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}
.hvr-icon-wobble-vertical:hover:before, .hvr-icon-wobble-vertical:focus:before, .hvr-icon-wobble-vertical:active:before {
  -webkit-animation-name: hvr-icon-wobble-vertical;
  animation-name: hvr-icon-wobble-vertical;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}

/* Icon Buzz */
@-webkit-keyframes hvr-icon-buzz {
  50% {
    -webkit-transform: translateX(3px) rotate(2deg);
    transform: translateX(3px) rotate(2deg);
  }

  100% {
    -webkit-transform: translateX(-3px) rotate(-2deg);
    transform: translateX(-3px) rotate(-2deg);
  }
}

@keyframes hvr-icon-buzz {
  50% {
    -webkit-transform: translateX(3px) rotate(2deg);
    transform: translateX(3px) rotate(2deg);
  }

  100% {
    -webkit-transform: translateX(-3px) rotate(-2deg);
    transform: translateX(-3px) rotate(-2deg);
  }
}

.hvr-icon-buzz {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  padding-right: 2.2em;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
.hvr-icon-buzz:before {
  content: "\f017";
  position: absolute;
  right: 1em;
  padding: 0 1px;
  font-family: FontAwesome;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}
.hvr-icon-buzz:hover:before, .hvr-icon-buzz:focus:before, .hvr-icon-buzz:active:before {
  -webkit-animation-name: hvr-icon-buzz;
  animation-name: hvr-icon-buzz;
  -webkit-animation-duration: 0.15s;
  animation-duration: 0.15s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

/* Icon Buzz Out */
@-webkit-keyframes hvr-icon-buzz-out {
  10% {
    -webkit-transform: translateX(3px) rotate(2deg);
    transform: translateX(3px) rotate(2deg);
  }

  20% {
    -webkit-transform: translateX(-3px) rotate(-2deg);
    transform: translateX(-3px) rotate(-2deg);
  }

  30% {
    -webkit-transform: translateX(3px) rotate(2deg);
    transform: translateX(3px) rotate(2deg);
  }

  40% {
    -webkit-transform: translateX(-3px) rotate(-2deg);
    transform: translateX(-3px) rotate(-2deg);
  }

  50% {
    -webkit-transform: translateX(2px) rotate(1deg);
    transform: translateX(2px) rotate(1deg);
  }

  60% {
    -webkit-transform: translateX(-2px) rotate(-1deg);
    transform: translateX(-2px) rotate(-1deg);
  }

  70% {
    -webkit-transform: translateX(2px) rotate(1deg);
    transform: translateX(2px) rotate(1deg);
  }

  80% {
    -webkit-transform: translateX(-2px) rotate(-1deg);
    transform: translateX(-2px) rotate(-1deg);
  }

  90% {
    -webkit-transform: translateX(1px) rotate(0);
    transform: translateX(1px) rotate(0);
  }

  100% {
    -webkit-transform: translateX(-1px) rotate(0);
    transform: translateX(-1px) rotate(0);
  }
}

@keyframes hvr-icon-buzz-out {
  10% {
    -webkit-transform: translateX(3px) rotate(2deg);
    transform: translateX(3px) rotate(2deg);
  }

  20% {
    -webkit-transform: translateX(-3px) rotate(-2deg);
    transform: translateX(-3px) rotate(-2deg);
  }

  30% {
    -webkit-transform: translateX(3px) rotate(2deg);
    transform: translateX(3px) rotate(2deg);
  }

  40% {
    -webkit-transform: translateX(-3px) rotate(-2deg);
    transform: translateX(-3px) rotate(-2deg);
  }

  50% {
    -webkit-transform: translateX(2px) rotate(1deg);
    transform: translateX(2px) rotate(1deg);
  }

  60% {
    -webkit-transform: translateX(-2px) rotate(-1deg);
    transform: translateX(-2px) rotate(-1deg);
  }

  70% {
    -webkit-transform: translateX(2px) rotate(1deg);
    transform: translateX(2px) rotate(1deg);
  }

  80% {
    -webkit-transform: translateX(-2px) rotate(-1deg);
    transform: translateX(-2px) rotate(-1deg);
  }

  90% {
    -webkit-transform: translateX(1px) rotate(0);
    transform: translateX(1px) rotate(0);
  }

  100% {
    -webkit-transform: translateX(-1px) rotate(0);
    transform: translateX(-1px) rotate(0);
  }
}

.hvr-icon-buzz-out {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  padding-right: 2.2em;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
.hvr-icon-buzz-out:before {
  content: "\f023";
  position: absolute;
  right: 1em;
  padding: 0 1px;
  font-family: FontAwesome;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}
.hvr-icon-buzz-out:hover:before, .hvr-icon-buzz-out:focus:before, .hvr-icon-buzz-out:active:before {
  -webkit-animation-name: hvr-icon-buzz-out;
  animation-name: hvr-icon-buzz-out;
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}

/* CURLS */
/* Curl Top Left */
.hvr-curl-top-left {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
}
.hvr-curl-top-left:before {
  pointer-events: none;
  position: absolute;
  content: '';
  height: 0;
  width: 0;
  top: 0;
  left: 0;
  background: white;
  /* IE9 */
  background: linear-gradient(135deg, white 45%, #aaaaaa 50%, #cccccc 56%, white 80%);
  filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr='#ffffff', endColorstr='#000000');
  /*For IE7-8-9*/
  z-index: 1000;
  box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.4);
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: width, height;
  transition-property: width, height;
}
.hvr-curl-top-left:hover:before, .hvr-curl-top-left:focus:before, .hvr-curl-top-left:active:before {
  width: 25px;
  height: 25px;
}

.top-services .hvr-curl-top-left:before {
  pointer-events: none;
  position: absolute;
  content: '';
  height: 0;
  width: 0;
  top: 0;
  left: 0;
  background: #0f86ff;
  /* IE9 */
  background: linear-gradient(135deg, white 45%, #0f86ff 50%, #0f86ff 56%, #0f86ff 80%);
  filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr='#ffffff', endColorstr='#0f86ff');
  /*For IE7-8-9*/
  z-index: 1000;
  box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.4);
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: width, height;
  transition-property: width, height;
}
.top-services .hvr-curl-top-left:hover:before, .top-services .hvr-curl-top-left:focus:before, .top-services .hvr-curl-top-left:active:before {
  width: 40px;
  height: 40px;
}

/* Curl Top Right */
.hvr-curl-top-right {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
}
.hvr-curl-top-right:before {
  pointer-events: none;
  position: absolute;
  content: '';
  height: 0;
  width: 0;
  top: 0;
  right: 0;
  background: white;
  /* IE9 */
  background: linear-gradient(225deg, white 45%, #aaaaaa 50%, #cccccc 56%, white 80%);
  box-shadow: -1px 1px 1px rgba(0, 0, 0, 0.4);
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: width, height;
  transition-property: width, height;
}
.hvr-curl-top-right:hover:before, .hvr-curl-top-right:focus:before, .hvr-curl-top-right:active:before {
  width: 25px;
  height: 25px;
}

.top-services .hvr-curl-top-right:before {
  pointer-events: none;
  position: absolute;
  content: '';
  height: 0;
  width: 0;
  top: 0;
  right: 0;
  background: #6ec7f9;
  /* IE9 */
  background: linear-gradient(225deg, white 45%, #6ec7f9 50%, #6ec7f9 56%, #6ec7f9 80%);
  box-shadow: -1px 1px 1px rgba(0, 0, 0, 0.4);
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: width, height;
  transition-property: width, height;
}
.top-services .hvr-curl-top-right:hover:before, .top-services .hvr-curl-top-right:focus:before, .top-services .hvr-curl-top-right:active:before {
  width: 40px;
  height: 40px;
}

/* Curl Bottom Right */
.hvr-curl-bottom-right {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
}
.hvr-curl-bottom-right:before {
  pointer-events: none;
  position: absolute;
  content: '';
  height: 0;
  width: 0;
  bottom: 0;
  right: 0;
  background: white;
  /* IE9 */
  background: linear-gradient(315deg, white 45%, #aaaaaa 50%, #cccccc 56%, white 80%);
  box-shadow: -1px -1px 1px rgba(0, 0, 0, 0.4);
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: width, height;
  transition-property: width, height;
}
.hvr-curl-bottom-right:hover:before, .hvr-curl-bottom-right:focus:before, .hvr-curl-bottom-right:active:before {
  width: 25px;
  height: 25px;
}

/* Curl Bottom Left */
.hvr-curl-bottom-left {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
}
.hvr-curl-bottom-left:before {
  pointer-events: none;
  position: absolute;
  content: '';
  height: 0;
  width: 0;
  bottom: 0;
  left: 0;
  background: white;
  /* IE9 */
  background: linear-gradient(45deg, white 45%, #aaaaaa 50%, #cccccc 56%, white 80%);
  box-shadow: 1px -1px 1px rgba(0, 0, 0, 0.4);
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: width, height;
  transition-property: width, height;
}
.hvr-curl-bottom-left:hover:before, .hvr-curl-bottom-left:focus:before, .hvr-curl-bottom-left:active:before {
  width: 25px;
  height: 25px;
}

body.fancybox-active{overflow:hidden}body.fancybox-iosfix{position:fixed;left:0;right:0}.fancybox-is-hidden{position:absolute;top:-9999px;left:-9999px;visibility:hidden}.fancybox-container{position:fixed;top:0;left:0;width:100%;height:100%;z-index:99992;-webkit-tap-highlight-color:transparent;-webkit-backface-visibility:hidden;backface-visibility:hidden;-webkit-transform:translateZ(0);transform:translateZ(0);font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica Neue,Arial,sans-serif}.fancybox-bg,.fancybox-inner,.fancybox-outer,.fancybox-stage{position:absolute;top:0;right:0;bottom:0;left:0}.fancybox-outer{overflow-y:auto;-webkit-overflow-scrolling:touch}.fancybox-bg{background:#1e1e1e;opacity:0;transition-duration:inherit;transition-property:opacity;transition-timing-function:cubic-bezier(.47,0,.74,.71)}.fancybox-is-open .fancybox-bg{opacity:.87;transition-timing-function:cubic-bezier(.22,.61,.36,1)}.fancybox-caption-wrap,.fancybox-infobar,.fancybox-toolbar{position:absolute;direction:ltr;z-index:99997;opacity:0;visibility:hidden;transition:opacity .25s,visibility 0s linear .25s;box-sizing:border-box}.fancybox-show-caption .fancybox-caption-wrap,.fancybox-show-infobar .fancybox-infobar,.fancybox-show-toolbar .fancybox-toolbar{opacity:1;visibility:visible;transition:opacity .25s,visibility 0s}.fancybox-infobar{top:0;left:0;font-size:13px;padding:0 10px;height:44px;min-width:44px;line-height:44px;color:#ccc;text-align:center;pointer-events:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;-webkit-touch-callout:none;-webkit-tap-highlight-color:transparent;-webkit-font-smoothing:subpixel-antialiased;mix-blend-mode:exclusion}.fancybox-toolbar{top:0;right:0;margin:0;padding:0}.fancybox-stage{overflow:hidden;direction:ltr;z-index:99994;-webkit-transform:translateZ(0)}.fancybox-is-closing .fancybox-stage{overflow:visible}.fancybox-slide{position:absolute;top:0;left:0;width:100%;height:100%;margin:0;padding:0;overflow:auto;outline:none;white-space:normal;box-sizing:border-box;text-align:center;z-index:99994;-webkit-overflow-scrolling:touch;display:none;-webkit-backface-visibility:hidden;backface-visibility:hidden;transition-property:opacity,-webkit-transform;transition-property:transform,opacity;transition-property:transform,opacity,-webkit-transform}.fancybox-slide:before{content:"";display:inline-block;vertical-align:middle;height:100%;width:0}.fancybox-is-sliding .fancybox-slide,.fancybox-slide--current,.fancybox-slide--next,.fancybox-slide--previous{display:block}.fancybox-slide--image{overflow:visible}.fancybox-slide--image:before{display:none}.fancybox-slide--video .fancybox-content,.fancybox-slide--video iframe{background:#000}.fancybox-slide--map .fancybox-content,.fancybox-slide--map iframe{background:#e5e3df}.fancybox-slide--next{z-index:99995}.fancybox-slide>*{display:inline-block;position:relative;padding:24px;margin:44px 0;border-width:0;vertical-align:middle;text-align:left;background-color:#fff;overflow:auto;box-sizing:border-box}.fancybox-slide>base,.fancybox-slide>link,.fancybox-slide>meta,.fancybox-slide>script,.fancybox-slide>style,.fancybox-slide>title{display:none}.fancybox-slide .fancybox-image-wrap{position:absolute;top:0;left:0;margin:0;padding:0;border:0;z-index:99995;background:transparent;cursor:default;overflow:visible;-webkit-transform-origin:top left;transform-origin:top left;background-size:100% 100%;background-repeat:no-repeat;-webkit-backface-visibility:hidden;backface-visibility:hidden;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;transition-property:opacity,-webkit-transform;transition-property:transform,opacity;transition-property:transform,opacity,-webkit-transform}.fancybox-can-zoomOut .fancybox-image-wrap{cursor:zoom-out}.fancybox-can-zoomIn .fancybox-image-wrap{cursor:zoom-in}.fancybox-can-drag .fancybox-image-wrap{cursor:-webkit-grab;cursor:grab}.fancybox-is-dragging .fancybox-image-wrap{cursor:-webkit-grabbing;cursor:grabbing}.fancybox-image,.fancybox-spaceball{position:absolute;top:0;left:0;width:100%;height:100%;margin:0;padding:0;border:0;max-width:none;max-height:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.fancybox-spaceball{z-index:1}.fancybox-slide--iframe .fancybox-content{padding:0;width:80%;height:80%;max-width:calc(100% - 100px);max-height:calc(100% - 88px);overflow:visible;background:#fff}.fancybox-iframe{display:block;padding:0;border:0;height:100%}.fancybox-error,.fancybox-iframe{margin:0;width:100%;background:#fff}.fancybox-error{padding:40px;max-width:380px;cursor:default}.fancybox-error p{margin:0;padding:0;color:#444;font-size:16px;line-height:20px}.fancybox-button{box-sizing:border-box;display:inline-block;vertical-align:top;width:44px;height:44px;margin:0;padding:10px;border:0;border-radius:0;background:rgba(30,30,30,.6);transition:color .3s ease;cursor:pointer;outline:none}.fancybox-button,.fancybox-button:link,.fancybox-button:visited{color:#ccc}.fancybox-button:focus,.fancybox-button:hover{color:#fff}.fancybox-button[disabled]{color:#ccc;cursor:default;opacity:.6}.fancybox-button svg{display:block;position:relative;overflow:visible;shape-rendering:geometricPrecision}.fancybox-button svg path{fill:currentColor;stroke:currentColor;stroke-linejoin:round;stroke-width:3}.fancybox-button--share svg path{stroke-width:1}.fancybox-button--pause svg path:nth-child(1),.fancybox-button--play svg path:nth-child(2){display:none}.fancybox-button--zoom svg path{fill:transparent}.fancybox-navigation{display:none}.fancybox-show-nav .fancybox-navigation{display:block}.fancybox-navigation button{position:absolute;top:50%;margin:-50px 0 0;z-index:99997;background:transparent;width:60px;height:100px;padding:17px}.fancybox-navigation button:before{content:"";position:absolute;top:30px;right:10px;width:40px;height:40px;background:rgba(30,30,30,.6)}.fancybox-navigation .fancybox-button--arrow_left{left:0}.fancybox-navigation .fancybox-button--arrow_right{right:0}.fancybox-close-small{position:absolute;top:0;right:0;width:40px;height:40px;padding:0;margin:0;border:0;border-radius:0;background:transparent;z-index:10;cursor:pointer}.fancybox-close-small:after{content:"×";position:absolute;top:5px;right:5px;width:30px;height:30px;font:22px/30px Arial,Helvetica Neue,Helvetica,sans-serif;color:#888;font-weight:300;text-align:center;border-radius:50%;border-width:0;background-color:transparent;transition:background-color .25s;box-sizing:border-box;z-index:2}.fancybox-close-small:focus{outline:none}.fancybox-close-small:focus:after{outline:1px dotted #888}.fancybox-close-small:hover:after{color:#555;background:#eee}.fancybox-slide--iframe .fancybox-close-small,.fancybox-slide--image .fancybox-close-small{top:0;right:-40px}.fancybox-slide--iframe .fancybox-close-small:after,.fancybox-slide--image .fancybox-close-small:after{font-size:35px;color:#aaa}.fancybox-slide--iframe .fancybox-close-small:hover:after,.fancybox-slide--image .fancybox-close-small:hover:after{color:#fff;background:transparent}.fancybox-is-scaling .fancybox-close-small,.fancybox-is-zoomable.fancybox-can-drag .fancybox-close-small{display:none}.fancybox-caption-wrap{bottom:0;left:0;right:0;padding:60px 2vw 0;background:linear-gradient(180deg,transparent 0,rgba(0,0,0,.1) 20%,rgba(0,0,0,.2) 40%,rgba(0,0,0,.6) 80%,rgba(0,0,0,.8));pointer-events:none}.fancybox-caption{padding:30px 0;border-top:1px solid hsla(0,0%,100%,.4);font-size:14px;color:#fff;line-height:20px;-webkit-text-size-adjust:none}.fancybox-caption a,.fancybox-caption button,.fancybox-caption select{pointer-events:all;position:relative}.fancybox-caption a{color:#fff;text-decoration:underline}.fancybox-slide>.fancybox-loading{border:6px solid hsla(0,0%,39%,.4);border-top:6px solid hsla(0,0%,100%,.6);border-radius:100%;height:50px;width:50px;-webkit-animation:a .8s infinite linear;animation:a .8s infinite linear;background:transparent;position:absolute;top:50%;left:50%;margin-top:-30px;margin-left:-30px;z-index:99999}@-webkit-keyframes a{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@keyframes a{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}.fancybox-animated{transition-timing-function:cubic-bezier(0,0,.25,1)}.fancybox-fx-slide.fancybox-slide--previous{-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0);opacity:0}.fancybox-fx-slide.fancybox-slide--next{-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0);opacity:0}.fancybox-fx-slide.fancybox-slide--current{-webkit-transform:translateZ(0);transform:translateZ(0);opacity:1}.fancybox-fx-fade.fancybox-slide--next,.fancybox-fx-fade.fancybox-slide--previous{opacity:0;transition-timing-function:cubic-bezier(.19,1,.22,1)}.fancybox-fx-fade.fancybox-slide--current{opacity:1}.fancybox-fx-zoom-in-out.fancybox-slide--previous{-webkit-transform:scale3d(1.5,1.5,1.5);transform:scale3d(1.5,1.5,1.5);opacity:0}.fancybox-fx-zoom-in-out.fancybox-slide--next{-webkit-transform:scale3d(.5,.5,.5);transform:scale3d(.5,.5,.5);opacity:0}.fancybox-fx-zoom-in-out.fancybox-slide--current{-webkit-transform:scaleX(1);transform:scaleX(1);opacity:1}.fancybox-fx-rotate.fancybox-slide--previous{-webkit-transform:rotate(-1turn);transform:rotate(-1turn);opacity:0}.fancybox-fx-rotate.fancybox-slide--next{-webkit-transform:rotate(1turn);transform:rotate(1turn);opacity:0}.fancybox-fx-rotate.fancybox-slide--current{-webkit-transform:rotate(0deg);transform:rotate(0deg);opacity:1}.fancybox-fx-circular.fancybox-slide--previous{-webkit-transform:scale3d(0,0,0) translate3d(-100%,0,0);transform:scale3d(0,0,0) translate3d(-100%,0,0);opacity:0}.fancybox-fx-circular.fancybox-slide--next{-webkit-transform:scale3d(0,0,0) translate3d(100%,0,0);transform:scale3d(0,0,0) translate3d(100%,0,0);opacity:0}.fancybox-fx-circular.fancybox-slide--current{-webkit-transform:scaleX(1) translateZ(0);transform:scaleX(1) translateZ(0);opacity:1}.fancybox-fx-tube.fancybox-slide--previous{-webkit-transform:translate3d(-100%,0,0) scale(.1) skew(-10deg);transform:translate3d(-100%,0,0) scale(.1) skew(-10deg)}.fancybox-fx-tube.fancybox-slide--next{-webkit-transform:translate3d(100%,0,0) scale(.1) skew(10deg);transform:translate3d(100%,0,0) scale(.1) skew(10deg)}.fancybox-fx-tube.fancybox-slide--current{-webkit-transform:translateZ(0) scale(1);transform:translateZ(0) scale(1)}.fancybox-share{padding:30px;border-radius:3px;background:#f4f4f4;max-width:90%;text-align:center}.fancybox-share h1{color:#222;margin:0 0 20px;font-size:35px;font-weight:700}.fancybox-share p{margin:0;padding:0}p.fancybox-share__links{margin-right:-10px}.fancybox-share__button{display:inline-block;text-decoration:none;margin:0 10px 10px 0;padding:0 15px;min-width:130px;border:0;border-radius:3px;background:#fff;white-space:nowrap;font-size:14px;font-weight:700;line-height:40px;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;color:#fff;transition:all .2s}.fancybox-share__button:hover{text-decoration:none}.fancybox-share__button--fb{background:#3b5998}.fancybox-share__button--fb:hover{background:#344e86}.fancybox-share__button--pt{background:#bd081d}.fancybox-share__button--pt:hover{background:#aa0719}.fancybox-share__button--tw{background:#1da1f2}.fancybox-share__button--tw:hover{background:#0d95e8}.fancybox-share__button svg{position:relative;top:-1px;width:25px;height:25px;margin-right:7px;vertical-align:middle}.fancybox-share__button svg path{fill:#fff}.fancybox-share__input{box-sizing:border-box;width:100%;margin:10px 0 0;padding:10px 15px;background:transparent;color:#5d5b5b;font-size:14px;outline:none;border:0;border-bottom:2px solid #d7d7d7}.fancybox-thumbs{display:none;position:absolute;top:0;bottom:0;right:0;width:212px;margin:0;padding:2px 2px 4px;background:#fff;-webkit-tap-highlight-color:transparent;-webkit-overflow-scrolling:touch;-ms-overflow-style:-ms-autohiding-scrollbar;box-sizing:border-box;z-index:99995}.fancybox-thumbs-x{overflow-y:hidden;overflow-x:auto}.fancybox-show-thumbs .fancybox-thumbs{display:block}.fancybox-show-thumbs .fancybox-inner{right:212px}.fancybox-thumbs>ul{list-style:none;position:absolute;position:relative;width:100%;height:100%;margin:0;padding:0;overflow-x:hidden;overflow-y:auto;font-size:0;white-space:nowrap}.fancybox-thumbs-x>ul{overflow:hidden}.fancybox-thumbs-y>ul::-webkit-scrollbar{width:7px}.fancybox-thumbs-y>ul::-webkit-scrollbar-track{background:#fff;border-radius:10px;box-shadow:inset 0 0 6px rgba(0,0,0,.3)}.fancybox-thumbs-y>ul::-webkit-scrollbar-thumb{background:#2a2a2a;border-radius:10px}.fancybox-thumbs>ul>li{float:left;overflow:hidden;padding:0;margin:2px;width:100px;height:75px;max-width:calc(50% - 4px);max-height:calc(100% - 8px);position:relative;cursor:pointer;outline:none;-webkit-tap-highlight-color:transparent;-webkit-backface-visibility:hidden;backface-visibility:hidden;box-sizing:border-box}li.fancybox-thumbs-loading{background:rgba(0,0,0,.1)}.fancybox-thumbs>ul>li>img{position:absolute;top:0;left:0;max-width:none;max-height:none;-webkit-touch-callout:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.fancybox-thumbs>ul>li:before{content:"";position:absolute;top:0;right:0;bottom:0;left:0;border:4px solid #4ea7f9;z-index:99991;opacity:0;transition:all .2s cubic-bezier(.25,.46,.45,.94)}.fancybox-thumbs>ul>li.fancybox-thumbs-active:before{opacity:1}@media (max-width:800px){.fancybox-thumbs{width:110px}.fancybox-show-thumbs .fancybox-inner{right:110px}.fancybox-thumbs>ul>li{max-width:calc(100% - 10px)}}.mCustomScrollbar{-ms-touch-action:none;touch-action:none}.mCustomScrollbar.mCS_no_scrollbar,.mCustomScrollbar.mCS_touch_action{-ms-touch-action:auto;touch-action:auto}.mCustomScrollBox{position:relative;overflow:hidden;height:100%;max-width:100%;outline:0;direction:ltr}.mCSB_container{overflow:hidden;width:auto;height:auto}.mCSB_inside>.mCSB_container{margin-right:30px}.mCSB_container.mCS_no_scrollbar_y.mCS_y_hidden{margin-right:0}.mCS-dir-rtl>.mCSB_inside>.mCSB_container{margin-right:0;margin-left:30px}.mCS-dir-rtl>.mCSB_inside>.mCSB_container.mCS_no_scrollbar_y.mCS_y_hidden{margin-left:0}.mCSB_scrollTools{position:absolute;width:16px;height:auto;left:auto;top:0;right:0;bottom:0;opacity:.75;filter:"alpha(opacity=75)";-ms-filter:"alpha(opacity=75)"}.mCSB_outside+.mCSB_scrollTools{right:-26px}.mCS-dir-rtl>.mCSB_inside>.mCSB_scrollTools,.mCS-dir-rtl>.mCSB_outside+.mCSB_scrollTools{right:auto;left:0}.mCS-dir-rtl>.mCSB_outside+.mCSB_scrollTools{left:-26px}.mCSB_scrollTools .mCSB_draggerContainer{position:absolute;top:0;left:0;bottom:0;right:0;height:auto}.mCSB_scrollTools a+.mCSB_draggerContainer{margin:20px 0}.mCSB_scrollTools .mCSB_draggerRail{width:2px;height:100%;margin:0 auto;-webkit-border-radius:16px;-moz-border-radius:16px;border-radius:16px}.mCSB_scrollTools .mCSB_dragger{cursor:pointer;width:100%;height:30px;z-index:1}.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{position:relative;width:4px;height:100%;margin:0 auto;-webkit-border-radius:16px;-moz-border-radius:16px;border-radius:16px;text-align:center}.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded .mCSB_dragger_bar,.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_dragger .mCSB_dragger_bar{width:12px}.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded+.mCSB_draggerRail,.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail{width:8px}.mCSB_scrollTools .mCSB_buttonDown,.mCSB_scrollTools .mCSB_buttonUp{display:block;position:absolute;height:20px;width:100%;overflow:hidden;margin:0 auto;cursor:pointer}.mCSB_scrollTools .mCSB_buttonDown{bottom:0}.mCSB_horizontal.mCSB_inside>.mCSB_container{margin-right:0;margin-bottom:30px}.mCSB_horizontal.mCSB_outside>.mCSB_container{min-height:100%}.mCSB_horizontal>.mCSB_container.mCS_no_scrollbar_x.mCS_x_hidden{margin-bottom:0}.mCSB_scrollTools.mCSB_scrollTools_horizontal{width:auto;height:16px;top:auto;right:0;bottom:0;left:0}.mCustomScrollBox+.mCSB_scrollTools+.mCSB_scrollTools.mCSB_scrollTools_horizontal,.mCustomScrollBox+.mCSB_scrollTools.mCSB_scrollTools_horizontal{bottom:-26px}.mCSB_scrollTools.mCSB_scrollTools_horizontal a+.mCSB_draggerContainer{margin:0 20px}.mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_draggerRail{width:100%;height:2px;margin:7px 0}.mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_dragger{width:30px;height:100%;left:0}.mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar{width:100%;height:4px;margin:6px auto}.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded .mCSB_dragger_bar,.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_dragger .mCSB_dragger_bar{height:12px;margin:2px auto}.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded+.mCSB_draggerRail,.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail{height:8px;margin:4px 0}.mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_buttonLeft,.mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_buttonRight{display:block;position:absolute;width:20px;height:100%;overflow:hidden;margin:0 auto;cursor:pointer}.mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_buttonLeft{left:0}.mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_buttonRight{right:0}.mCSB_container_wrapper{position:absolute;height:auto;width:auto;overflow:hidden;top:0;left:0;right:0;bottom:0;margin-right:30px;margin-bottom:30px}.mCSB_container_wrapper>.mCSB_container{padding-right:30px;padding-bottom:30px}.mCSB_vertical_horizontal>.mCSB_scrollTools.mCSB_scrollTools_vertical{bottom:20px}.mCSB_vertical_horizontal>.mCSB_scrollTools.mCSB_scrollTools_horizontal{right:20px}.mCSB_container_wrapper.mCS_no_scrollbar_x.mCS_x_hidden+.mCSB_scrollTools.mCSB_scrollTools_vertical{bottom:0}.mCS-dir-rtl>.mCustomScrollBox.mCSB_vertical_horizontal.mCSB_inside>.mCSB_scrollTools.mCSB_scrollTools_horizontal,.mCSB_container_wrapper.mCS_no_scrollbar_y.mCS_y_hidden+.mCSB_scrollTools~.mCSB_scrollTools.mCSB_scrollTools_horizontal{right:0}.mCS-dir-rtl>.mCustomScrollBox.mCSB_vertical_horizontal.mCSB_inside>.mCSB_scrollTools.mCSB_scrollTools_horizontal{left:20px}.mCS-dir-rtl>.mCustomScrollBox.mCSB_vertical_horizontal.mCSB_inside>.mCSB_container_wrapper.mCS_no_scrollbar_y.mCS_y_hidden+.mCSB_scrollTools~.mCSB_scrollTools.mCSB_scrollTools_horizontal{left:0}.mCS-dir-rtl>.mCSB_inside>.mCSB_container_wrapper{margin-right:0;margin-left:30px}.mCSB_container_wrapper.mCS_no_scrollbar_y.mCS_y_hidden>.mCSB_container{padding-right:0;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.mCSB_container_wrapper.mCS_no_scrollbar_x.mCS_x_hidden>.mCSB_container{padding-bottom:0;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.mCustomScrollBox.mCSB_vertical_horizontal.mCSB_inside>.mCSB_container_wrapper.mCS_no_scrollbar_y.mCS_y_hidden{margin-right:0;margin-left:0}.mCustomScrollBox.mCSB_vertical_horizontal.mCSB_inside>.mCSB_container_wrapper.mCS_no_scrollbar_x.mCS_x_hidden{margin-bottom:0}.mCSB_scrollTools,.mCSB_scrollTools .mCSB_buttonDown,.mCSB_scrollTools .mCSB_buttonLeft,.mCSB_scrollTools .mCSB_buttonRight,.mCSB_scrollTools .mCSB_buttonUp,.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{-webkit-transition:opacity .2s ease-in-out,background-color .2s ease-in-out;-moz-transition:opacity .2s ease-in-out,background-color .2s ease-in-out;-o-transition:opacity .2s ease-in-out,background-color .2s ease-in-out;transition:opacity .2s ease-in-out,background-color .2s ease-in-out}.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_draggerRail,.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_dragger_bar,.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_draggerRail,.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_dragger_bar{-webkit-transition:width .2s ease-out .2s,height .2s ease-out .2s,margin-left .2s ease-out .2s,margin-right .2s ease-out .2s,margin-top .2s ease-out .2s,margin-bottom .2s ease-out .2s,opacity .2s ease-in-out,background-color .2s ease-in-out;-moz-transition:width .2s ease-out .2s,height .2s ease-out .2s,margin-left .2s ease-out .2s,margin-right .2s ease-out .2s,margin-top .2s ease-out .2s,margin-bottom .2s ease-out .2s,opacity .2s ease-in-out,background-color .2s ease-in-out;-o-transition:width .2s ease-out .2s,height .2s ease-out .2s,margin-left .2s ease-out .2s,margin-right .2s ease-out .2s,margin-top .2s ease-out .2s,margin-bottom .2s ease-out .2s,opacity .2s ease-in-out,background-color .2s ease-in-out;transition:width .2s ease-out .2s,height .2s ease-out .2s,margin-left .2s ease-out .2s,margin-right .2s ease-out .2s,margin-top .2s ease-out .2s,margin-bottom .2s ease-out .2s,opacity .2s ease-in-out,background-color .2s ease-in-out}.mCS-autoHide>.mCustomScrollBox>.mCSB_scrollTools,.mCS-autoHide>.mCustomScrollBox~.mCSB_scrollTools{opacity:0;filter:"alpha(opacity=0)";-ms-filter:"alpha(opacity=0)"}.mCS-autoHide:hover>.mCustomScrollBox>.mCSB_scrollTools,.mCS-autoHide:hover>.mCustomScrollBox~.mCSB_scrollTools,.mCustomScrollBox:hover>.mCSB_scrollTools,.mCustomScrollBox:hover~.mCSB_scrollTools,.mCustomScrollbar>.mCustomScrollBox>.mCSB_scrollTools.mCSB_scrollTools_onDrag,.mCustomScrollbar>.mCustomScrollBox~.mCSB_scrollTools.mCSB_scrollTools_onDrag{opacity:1;filter:"alpha(opacity=100)";-ms-filter:"alpha(opacity=100)"}.mCSB_scrollTools .mCSB_draggerRail{background-color:#000;background-color:rgba(0,0,0,.4);filter:"alpha(opacity=40)";-ms-filter:"alpha(opacity=40)"}.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{background-color:#fff;background-color:rgba(255,255,255,.75);filter:"alpha(opacity=75)";-ms-filter:"alpha(opacity=75)"}.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar{background-color:#fff;background-color:rgba(255,255,255,.85);filter:"alpha(opacity=85)";-ms-filter:"alpha(opacity=85)"}.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar,.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar{background-color:#fff;background-color:rgba(255,255,255,.9);filter:"alpha(opacity=90)";-ms-filter:"alpha(opacity=90)"}.mCSB_scrollTools .mCSB_buttonDown,.mCSB_scrollTools .mCSB_buttonLeft,.mCSB_scrollTools .mCSB_buttonRight,.mCSB_scrollTools .mCSB_buttonUp{background-image:url(//jaquesofalltrades.com/wp-content/themes/buildnet/assets/css/mCSB_buttons.html);background-repeat:no-repeat;opacity:.4;filter:"alpha(opacity=40)";-ms-filter:"alpha(opacity=40)"}.mCSB_scrollTools .mCSB_buttonUp{background-position:0 0}.mCSB_scrollTools .mCSB_buttonDown{background-position:0 -20px}.mCSB_scrollTools .mCSB_buttonLeft{background-position:0 -40px}.mCSB_scrollTools .mCSB_buttonRight{background-position:0 -56px}.mCSB_scrollTools .mCSB_buttonDown:hover,.mCSB_scrollTools .mCSB_buttonLeft:hover,.mCSB_scrollTools .mCSB_buttonRight:hover,.mCSB_scrollTools .mCSB_buttonUp:hover{opacity:.75;filter:"alpha(opacity=75)";-ms-filter:"alpha(opacity=75)"}.mCSB_scrollTools .mCSB_buttonDown:active,.mCSB_scrollTools .mCSB_buttonLeft:active,.mCSB_scrollTools .mCSB_buttonRight:active,.mCSB_scrollTools .mCSB_buttonUp:active{opacity:.9;filter:"alpha(opacity=90)";-ms-filter:"alpha(opacity=90)"}.mCS-dark.mCSB_scrollTools .mCSB_draggerRail{background-color:#000;background-color:rgba(0,0,0,.15)}.mCS-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{background-color:#000;background-color:rgba(0,0,0,.75)}.mCS-dark.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar{background-color:rgba(0,0,0,.85)}.mCS-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar,.mCS-dark.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar{background-color:rgba(0,0,0,.9)}.mCS-dark.mCSB_scrollTools .mCSB_buttonUp{background-position:-80px 0}.mCS-dark.mCSB_scrollTools .mCSB_buttonDown{background-position:-80px -20px}.mCS-dark.mCSB_scrollTools .mCSB_buttonLeft{background-position:-80px -40px}.mCS-dark.mCSB_scrollTools .mCSB_buttonRight{background-position:-80px -56px}.mCS-dark-2.mCSB_scrollTools .mCSB_draggerRail,.mCS-light-2.mCSB_scrollTools .mCSB_draggerRail{width:4px;background-color:#fff;background-color:rgba(255,255,255,.1);-webkit-border-radius:1px;-moz-border-radius:1px;border-radius:1px}.mCS-dark-2.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,.mCS-light-2.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{width:4px;background-color:#fff;background-color:rgba(255,255,255,.75);-webkit-border-radius:1px;-moz-border-radius:1px;border-radius:1px}.mCS-dark-2.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,.mCS-dark-2.mCSB_scrollTools_horizontal .mCSB_draggerRail,.mCS-light-2.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,.mCS-light-2.mCSB_scrollTools_horizontal .mCSB_draggerRail{width:100%;height:4px;margin:6px auto}.mCS-light-2.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar{background-color:#fff;background-color:rgba(255,255,255,.85)}.mCS-light-2.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar,.mCS-light-2.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar{background-color:#fff;background-color:rgba(255,255,255,.9)}.mCS-light-2.mCSB_scrollTools .mCSB_buttonUp{background-position:-32px 0}.mCS-light-2.mCSB_scrollTools .mCSB_buttonDown{background-position:-32px -20px}.mCS-light-2.mCSB_scrollTools .mCSB_buttonLeft{background-position:-40px -40px}.mCS-light-2.mCSB_scrollTools .mCSB_buttonRight{background-position:-40px -56px}.mCS-dark-2.mCSB_scrollTools .mCSB_draggerRail{background-color:#000;background-color:rgba(0,0,0,.1);-webkit-border-radius:1px;-moz-border-radius:1px;border-radius:1px}.mCS-dark-2.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{background-color:#000;background-color:rgba(0,0,0,.75);-webkit-border-radius:1px;-moz-border-radius:1px;border-radius:1px}.mCS-dark-2.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar{background-color:#000;background-color:rgba(0,0,0,.85)}.mCS-dark-2.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar,.mCS-dark-2.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar{background-color:#000;background-color:rgba(0,0,0,.9)}.mCS-dark-2.mCSB_scrollTools .mCSB_buttonUp{background-position:-112px 0}.mCS-dark-2.mCSB_scrollTools .mCSB_buttonDown{background-position:-112px -20px}.mCS-dark-2.mCSB_scrollTools .mCSB_buttonLeft{background-position:-120px -40px}.mCS-dark-2.mCSB_scrollTools .mCSB_buttonRight{background-position:-120px -56px}.mCS-dark-thick.mCSB_scrollTools .mCSB_draggerRail,.mCS-light-thick.mCSB_scrollTools .mCSB_draggerRail{width:4px;background-color:#fff;background-color:rgba(255,255,255,.1);-webkit-border-radius:2px;-moz-border-radius:2px;border-radius:2px}.mCS-dark-thick.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,.mCS-light-thick.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{width:6px;background-color:#fff;background-color:rgba(255,255,255,.75);-webkit-border-radius:2px;-moz-border-radius:2px;border-radius:2px}.mCS-dark-thick.mCSB_scrollTools_horizontal .mCSB_draggerRail,.mCS-light-thick.mCSB_scrollTools_horizontal .mCSB_draggerRail{width:100%;height:4px;margin:6px 0}.mCS-dark-thick.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,.mCS-light-thick.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar{width:100%;height:6px;margin:5px auto}.mCS-light-thick.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar{background-color:#fff;background-color:rgba(255,255,255,.85)}.mCS-light-thick.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar,.mCS-light-thick.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar{background-color:#fff;background-color:rgba(255,255,255,.9)}.mCS-light-thick.mCSB_scrollTools .mCSB_buttonUp{background-position:-16px 0}.mCS-light-thick.mCSB_scrollTools .mCSB_buttonDown{background-position:-16px -20px}.mCS-light-thick.mCSB_scrollTools .mCSB_buttonLeft{background-position:-20px -40px}.mCS-light-thick.mCSB_scrollTools .mCSB_buttonRight{background-position:-20px -56px}.mCS-dark-thick.mCSB_scrollTools .mCSB_draggerRail{background-color:#000;background-color:rgba(0,0,0,.1);-webkit-border-radius:2px;-moz-border-radius:2px;border-radius:2px}.mCS-dark-thick.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{background-color:#000;background-color:rgba(0,0,0,.75);-webkit-border-radius:2px;-moz-border-radius:2px;border-radius:2px}.mCS-dark-thick.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar{background-color:#000;background-color:rgba(0,0,0,.85)}.mCS-dark-thick.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar,.mCS-dark-thick.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar{background-color:#000;background-color:rgba(0,0,0,.9)}.mCS-dark-thick.mCSB_scrollTools .mCSB_buttonUp{background-position:-96px 0}.mCS-dark-thick.mCSB_scrollTools .mCSB_buttonDown{background-position:-96px -20px}.mCS-dark-thick.mCSB_scrollTools .mCSB_buttonLeft{background-position:-100px -40px}.mCS-dark-thick.mCSB_scrollTools .mCSB_buttonRight{background-position:-100px -56px}.mCS-light-thin.mCSB_scrollTools .mCSB_draggerRail{background-color:#fff;background-color:rgba(255,255,255,.1)}.mCS-dark-thin.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,.mCS-light-thin.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{width:2px}.mCS-dark-thin.mCSB_scrollTools_horizontal .mCSB_draggerRail,.mCS-light-thin.mCSB_scrollTools_horizontal .mCSB_draggerRail{width:100%}.mCS-dark-thin.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,.mCS-light-thin.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar{width:100%;height:2px;margin:7px auto}.mCS-dark-thin.mCSB_scrollTools .mCSB_draggerRail{background-color:#000;background-color:rgba(0,0,0,.15)}.mCS-dark-thin.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{background-color:#000;background-color:rgba(0,0,0,.75)}.mCS-dark-thin.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar{background-color:#000;background-color:rgba(0,0,0,.85)}.mCS-dark-thin.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar,.mCS-dark-thin.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar{background-color:#000;background-color:rgba(0,0,0,.9)}.mCS-dark-thin.mCSB_scrollTools .mCSB_buttonUp{background-position:-80px 0}.mCS-dark-thin.mCSB_scrollTools .mCSB_buttonDown{background-position:-80px -20px}.mCS-dark-thin.mCSB_scrollTools .mCSB_buttonLeft{background-position:-80px -40px}.mCS-dark-thin.mCSB_scrollTools .mCSB_buttonRight{background-position:-80px -56px}.mCS-rounded.mCSB_scrollTools .mCSB_draggerRail{background-color:#fff;background-color:rgba(255,255,255,.15)}.mCS-rounded-dark.mCSB_scrollTools .mCSB_dragger,.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_dragger,.mCS-rounded-dots.mCSB_scrollTools .mCSB_dragger,.mCS-rounded.mCSB_scrollTools .mCSB_dragger{height:14px}.mCS-rounded-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,.mCS-rounded-dots.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,.mCS-rounded.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{width:14px;margin:0 1px}.mCS-rounded-dark.mCSB_scrollTools_horizontal .mCSB_dragger,.mCS-rounded-dots-dark.mCSB_scrollTools_horizontal .mCSB_dragger,.mCS-rounded-dots.mCSB_scrollTools_horizontal .mCSB_dragger,.mCS-rounded.mCSB_scrollTools_horizontal .mCSB_dragger{width:14px}.mCS-rounded-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,.mCS-rounded-dots-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,.mCS-rounded-dots.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,.mCS-rounded.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar{height:14px;margin:1px 0}.mCS-rounded-dark.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded .mCSB_dragger_bar,.mCS-rounded-dark.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_dragger .mCSB_dragger_bar,.mCS-rounded.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded .mCSB_dragger_bar,.mCS-rounded.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_dragger .mCSB_dragger_bar{width:16px;height:16px;margin:-1px 0}.mCS-rounded-dark.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded+.mCSB_draggerRail,.mCS-rounded-dark.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail,.mCS-rounded.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded+.mCSB_draggerRail,.mCS-rounded.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail{width:4px}.mCS-rounded-dark.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded .mCSB_dragger_bar,.mCS-rounded-dark.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_dragger .mCSB_dragger_bar,.mCS-rounded.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded .mCSB_dragger_bar,.mCS-rounded.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_dragger .mCSB_dragger_bar{height:16px;width:16px;margin:0 -1px}.mCS-rounded-dark.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded+.mCSB_draggerRail,.mCS-rounded-dark.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail,.mCS-rounded.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded+.mCSB_draggerRail,.mCS-rounded.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail{height:4px;margin:6px 0}.mCS-rounded.mCSB_scrollTools .mCSB_buttonUp{background-position:0 -72px}.mCS-rounded.mCSB_scrollTools .mCSB_buttonDown{background-position:0 -92px}.mCS-rounded.mCSB_scrollTools .mCSB_buttonLeft{background-position:0 -112px}.mCS-rounded.mCSB_scrollTools .mCSB_buttonRight{background-position:0 -128px}.mCS-rounded-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{background-color:#000;background-color:rgba(0,0,0,.75)}.mCS-rounded-dark.mCSB_scrollTools .mCSB_draggerRail{background-color:#000;background-color:rgba(0,0,0,.15)}.mCS-rounded-dark.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar,.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar{background-color:#000;background-color:rgba(0,0,0,.85)}.mCS-rounded-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar,.mCS-rounded-dark.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar,.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar{background-color:#000;background-color:rgba(0,0,0,.9)}.mCS-rounded-dark.mCSB_scrollTools .mCSB_buttonUp{background-position:-80px -72px}.mCS-rounded-dark.mCSB_scrollTools .mCSB_buttonDown{background-position:-80px -92px}.mCS-rounded-dark.mCSB_scrollTools .mCSB_buttonLeft{background-position:-80px -112px}.mCS-rounded-dark.mCSB_scrollTools .mCSB_buttonRight{background-position:-80px -128px}.mCS-rounded-dots-dark.mCSB_scrollTools_vertical .mCSB_draggerRail,.mCS-rounded-dots.mCSB_scrollTools_vertical .mCSB_draggerRail{width:4px}.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_draggerRail,.mCS-rounded-dots-dark.mCSB_scrollTools_horizontal .mCSB_draggerRail,.mCS-rounded-dots.mCSB_scrollTools .mCSB_draggerRail,.mCS-rounded-dots.mCSB_scrollTools_horizontal .mCSB_draggerRail{background-color:transparent;background-position:center}.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_draggerRail,.mCS-rounded-dots.mCSB_scrollTools .mCSB_draggerRail{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAgAAAAICAYAAADED76LAAAANElEQVQYV2NkIAAYiVbw//9/Y6DiM1ANJoyMjGdBbLgJQAX/kU0DKgDLkaQAvxW4HEvQFwCRcxIJK1XznAAAAABJRU5ErkJggg==);background-repeat:repeat-y;opacity:.3;filter:"alpha(opacity=30)";-ms-filter:"alpha(opacity=30)"}.mCS-rounded-dots-dark.mCSB_scrollTools_horizontal .mCSB_draggerRail,.mCS-rounded-dots.mCSB_scrollTools_horizontal .mCSB_draggerRail{height:4px;margin:6px 0;background-repeat:repeat-x}.mCS-rounded-dots.mCSB_scrollTools .mCSB_buttonUp{background-position:-16px -72px}.mCS-rounded-dots.mCSB_scrollTools .mCSB_buttonDown{background-position:-16px -92px}.mCS-rounded-dots.mCSB_scrollTools .mCSB_buttonLeft{background-position:-20px -112px}.mCS-rounded-dots.mCSB_scrollTools .mCSB_buttonRight{background-position:-20px -128px}.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_draggerRail{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAgAAAAICAYAAADED76LAAAALElEQVQYV2NkIAAYSVFgDFR8BqrBBEifBbGRTfiPZhpYjiQFBK3A6l6CvgAAE9kGCd1mvgEAAAAASUVORK5CYII=)}.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_buttonUp{background-position:-96px -72px}.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_buttonDown{background-position:-96px -92px}.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_buttonLeft{background-position:-100px -112px}.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_buttonRight{background-position:-100px -128px}.mCS-3d-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,.mCS-3d-thick.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,.mCS-3d.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{background-repeat:repeat-y;background-image:-moz-linear-gradient(left,rgba(255,255,255,.5) 0,rgba(255,255,255,0) 100%);background-image:-webkit-gradient(linear,left top,right top,color-stop(0,rgba(255,255,255,.5)),color-stop(100%,rgba(255,255,255,0)));background-image:-webkit-linear-gradient(left,rgba(255,255,255,.5) 0,rgba(255,255,255,0) 100%);background-image:-o-linear-gradient(left,rgba(255,255,255,.5) 0,rgba(255,255,255,0) 100%);background-image:-ms-linear-gradient(left,rgba(255,255,255,.5) 0,rgba(255,255,255,0) 100%);background-image:linear-gradient(to right,rgba(255,255,255,.5) 0,rgba(255,255,255,0) 100%)}.mCS-3d-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,.mCS-3d-thick-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,.mCS-3d-thick.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,.mCS-3d.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar{background-repeat:repeat-x;background-image:-moz-linear-gradient(top,rgba(255,255,255,.5) 0,rgba(255,255,255,0) 100%);background-image:-webkit-gradient(linear,left top,left bottom,color-stop(0,rgba(255,255,255,.5)),color-stop(100%,rgba(255,255,255,0)));background-image:-webkit-linear-gradient(top,rgba(255,255,255,.5) 0,rgba(255,255,255,0) 100%);background-image:-o-linear-gradient(top,rgba(255,255,255,.5) 0,rgba(255,255,255,0) 100%);background-image:-ms-linear-gradient(top,rgba(255,255,255,.5) 0,rgba(255,255,255,0) 100%);background-image:linear-gradient(to bottom,rgba(255,255,255,.5) 0,rgba(255,255,255,0) 100%)}.mCS-3d-dark.mCSB_scrollTools_vertical .mCSB_dragger,.mCS-3d.mCSB_scrollTools_vertical .mCSB_dragger{height:70px}.mCS-3d-dark.mCSB_scrollTools_horizontal .mCSB_dragger,.mCS-3d.mCSB_scrollTools_horizontal .mCSB_dragger{width:70px}.mCS-3d-dark.mCSB_scrollTools,.mCS-3d.mCSB_scrollTools{opacity:1;filter:"alpha(opacity=30)";-ms-filter:"alpha(opacity=30)"}.mCS-3d-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,.mCS-3d-dark.mCSB_scrollTools .mCSB_draggerRail,.mCS-3d.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,.mCS-3d.mCSB_scrollTools .mCSB_draggerRail{-webkit-border-radius:16px;-moz-border-radius:16px;border-radius:16px}.mCS-3d-dark.mCSB_scrollTools .mCSB_draggerRail,.mCS-3d.mCSB_scrollTools .mCSB_draggerRail{width:8px;background-color:#000;background-color:rgba(0,0,0,.2);box-shadow:inset 1px 0 1px rgba(0,0,0,.5),inset -1px 0 1px rgba(255,255,255,.2)}.mCS-3d-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,.mCS-3d-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar,.mCS-3d-dark.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,.mCS-3d-dark.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar,.mCS-3d.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,.mCS-3d.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar,.mCS-3d.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,.mCS-3d.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar{background-color:#555}.mCS-3d-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,.mCS-3d.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{width:8px}.mCS-3d-dark.mCSB_scrollTools_horizontal .mCSB_draggerRail,.mCS-3d.mCSB_scrollTools_horizontal .mCSB_draggerRail{width:100%;height:8px;margin:4px 0;box-shadow:inset 0 1px 1px rgba(0,0,0,.5),inset 0 -1px 1px rgba(255,255,255,.2)}.mCS-3d-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,.mCS-3d.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar{width:100%;height:8px;margin:4px auto}.mCS-3d.mCSB_scrollTools .mCSB_buttonUp{background-position:-32px -72px}.mCS-3d.mCSB_scrollTools .mCSB_buttonDown{background-position:-32px -92px}.mCS-3d.mCSB_scrollTools .mCSB_buttonLeft{background-position:-40px -112px}.mCS-3d.mCSB_scrollTools .mCSB_buttonRight{background-position:-40px -128px}.mCS-3d-dark.mCSB_scrollTools .mCSB_draggerRail{background-color:#000;background-color:rgba(0,0,0,.1);box-shadow:inset 1px 0 1px rgba(0,0,0,.1)}.mCS-3d-dark.mCSB_scrollTools_horizontal .mCSB_draggerRail{box-shadow:inset 0 1px 1px rgba(0,0,0,.1)}.mCS-3d-dark.mCSB_scrollTools .mCSB_buttonUp{background-position:-112px -72px}.mCS-3d-dark.mCSB_scrollTools .mCSB_buttonDown{background-position:-112px -92px}.mCS-3d-dark.mCSB_scrollTools .mCSB_buttonLeft{background-position:-120px -112px}.mCS-3d-dark.mCSB_scrollTools .mCSB_buttonRight{background-position:-120px -128px}.mCS-3d-thick-dark.mCSB_scrollTools,.mCS-3d-thick.mCSB_scrollTools{opacity:1;filter:"alpha(opacity=30)";-ms-filter:"alpha(opacity=30)"}.mCS-3d-thick-dark.mCSB_scrollTools,.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_draggerContainer,.mCS-3d-thick.mCSB_scrollTools,.mCS-3d-thick.mCSB_scrollTools .mCSB_draggerContainer{-webkit-border-radius:7px;-moz-border-radius:7px;border-radius:7px}.mCSB_inside+.mCS-3d-thick-dark.mCSB_scrollTools_vertical,.mCSB_inside+.mCS-3d-thick.mCSB_scrollTools_vertical{right:1px}.mCS-3d-thick-dark.mCSB_scrollTools_vertical,.mCS-3d-thick.mCSB_scrollTools_vertical{box-shadow:inset 1px 0 1px rgba(0,0,0,.1),inset 0 0 14px rgba(0,0,0,.5)}.mCS-3d-thick-dark.mCSB_scrollTools_horizontal,.mCS-3d-thick.mCSB_scrollTools_horizontal{bottom:1px;box-shadow:inset 0 1px 1px rgba(0,0,0,.1),inset 0 0 14px rgba(0,0,0,.5)}.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,.mCS-3d-thick.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px;box-shadow:inset 1px 0 0 rgba(255,255,255,.4);width:12px;margin:2px;position:absolute;height:auto;top:0;bottom:0;left:0;right:0}.mCS-3d-thick-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,.mCS-3d-thick.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar{box-shadow:inset 0 1px 0 rgba(255,255,255,.4);height:12px;width:auto}.mCS-3d-thick.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,.mCS-3d-thick.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar,.mCS-3d-thick.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,.mCS-3d-thick.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar{background-color:#555}.mCS-3d-thick.mCSB_scrollTools .mCSB_draggerContainer{background-color:#000;background-color:rgba(0,0,0,.05);box-shadow:inset 1px 1px 16px rgba(0,0,0,.1)}.mCS-3d-thick.mCSB_scrollTools .mCSB_draggerRail{background-color:transparent}.mCS-3d-thick.mCSB_scrollTools .mCSB_buttonUp{background-position:-32px -72px}.mCS-3d-thick.mCSB_scrollTools .mCSB_buttonDown{background-position:-32px -92px}.mCS-3d-thick.mCSB_scrollTools .mCSB_buttonLeft{background-position:-40px -112px}.mCS-3d-thick.mCSB_scrollTools .mCSB_buttonRight{background-position:-40px -128px}.mCS-3d-thick-dark.mCSB_scrollTools{box-shadow:inset 0 0 14px rgba(0,0,0,.2)}.mCS-3d-thick-dark.mCSB_scrollTools_horizontal{box-shadow:inset 0 1px 1px rgba(0,0,0,.1),inset 0 0 14px rgba(0,0,0,.2)}.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{box-shadow:inset 1px 0 0 rgba(255,255,255,.4),inset -1px 0 0 rgba(0,0,0,.2)}.mCS-3d-thick-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar{box-shadow:inset 0 1px 0 rgba(255,255,255,.4),inset 0 -1px 0 rgba(0,0,0,.2)}.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar,.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar{background-color:#777}.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_draggerContainer{background-color:#fff;background-color:rgba(0,0,0,.05);box-shadow:inset 1px 1px 16px rgba(0,0,0,.1)}.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_draggerRail,.mCS-minimal-dark.mCSB_scrollTools .mCSB_draggerRail,.mCS-minimal.mCSB_scrollTools .mCSB_draggerRail{background-color:transparent}.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_buttonUp{background-position:-112px -72px}.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_buttonDown{background-position:-112px -92px}.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_buttonLeft{background-position:-120px -112px}.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_buttonRight{background-position:-120px -128px}.mCSB_outside+.mCS-minimal-dark.mCSB_scrollTools_vertical,.mCSB_outside+.mCS-minimal.mCSB_scrollTools_vertical{right:0;margin:12px 0}.mCustomScrollBox.mCS-minimal+.mCSB_scrollTools+.mCSB_scrollTools.mCSB_scrollTools_horizontal,.mCustomScrollBox.mCS-minimal+.mCSB_scrollTools.mCSB_scrollTools_horizontal,.mCustomScrollBox.mCS-minimal-dark+.mCSB_scrollTools+.mCSB_scrollTools.mCSB_scrollTools_horizontal,.mCustomScrollBox.mCS-minimal-dark+.mCSB_scrollTools.mCSB_scrollTools_horizontal{bottom:0;margin:0 12px}.mCS-dir-rtl>.mCSB_outside+.mCS-minimal-dark.mCSB_scrollTools_vertical,.mCS-dir-rtl>.mCSB_outside+.mCS-minimal.mCSB_scrollTools_vertical{left:0;right:auto}.mCS-minimal-dark.mCSB_scrollTools_vertical .mCSB_dragger,.mCS-minimal.mCSB_scrollTools_vertical .mCSB_dragger{height:50px}.mCS-minimal-dark.mCSB_scrollTools_horizontal .mCSB_dragger,.mCS-minimal.mCSB_scrollTools_horizontal .mCSB_dragger{width:50px}.mCS-minimal.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{background-color:#fff;background-color:rgba(255,255,255,.2);filter:"alpha(opacity=20)";-ms-filter:"alpha(opacity=20)"}.mCS-minimal.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar,.mCS-minimal.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar{background-color:#fff;background-color:rgba(255,255,255,.5);filter:"alpha(opacity=50)";-ms-filter:"alpha(opacity=50)"}.mCS-minimal-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{background-color:#000;background-color:rgba(0,0,0,.2);filter:"alpha(opacity=20)";-ms-filter:"alpha(opacity=20)"}.mCS-minimal-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar,.mCS-minimal-dark.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar{background-color:#000;background-color:rgba(0,0,0,.5);filter:"alpha(opacity=50)";-ms-filter:"alpha(opacity=50)"}.mCS-dark-3.mCSB_scrollTools .mCSB_draggerRail,.mCS-light-3.mCSB_scrollTools .mCSB_draggerRail{width:6px;background-color:#000;background-color:rgba(0,0,0,.2)}.mCS-dark-3.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,.mCS-light-3.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{width:6px}.mCS-dark-3.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,.mCS-dark-3.mCSB_scrollTools_horizontal .mCSB_draggerRail,.mCS-light-3.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,.mCS-light-3.mCSB_scrollTools_horizontal .mCSB_draggerRail{width:100%;height:6px;margin:5px 0}.mCS-dark-3.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded+.mCSB_draggerRail,.mCS-dark-3.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail,.mCS-light-3.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded+.mCSB_draggerRail,.mCS-light-3.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail{width:12px}.mCS-dark-3.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded+.mCSB_draggerRail,.mCS-dark-3.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail,.mCS-light-3.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded+.mCSB_draggerRail,.mCS-light-3.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail{height:12px;margin:2px 0}.mCS-light-3.mCSB_scrollTools .mCSB_buttonUp{background-position:-32px -72px}.mCS-light-3.mCSB_scrollTools .mCSB_buttonDown{background-position:-32px -92px}.mCS-light-3.mCSB_scrollTools .mCSB_buttonLeft{background-position:-40px -112px}.mCS-light-3.mCSB_scrollTools .mCSB_buttonRight{background-position:-40px -128px}.mCS-dark-3.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{background-color:#000;background-color:rgba(0,0,0,.75)}.mCS-dark-3.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar{background-color:#000;background-color:rgba(0,0,0,.85)}.mCS-dark-3.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar,.mCS-dark-3.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar{background-color:#000;background-color:rgba(0,0,0,.9)}.mCS-dark-3.mCSB_scrollTools .mCSB_draggerRail{background-color:#000;background-color:rgba(0,0,0,.1)}.mCS-dark-3.mCSB_scrollTools .mCSB_buttonUp{background-position:-112px -72px}.mCS-dark-3.mCSB_scrollTools .mCSB_buttonDown{background-position:-112px -92px}.mCS-dark-3.mCSB_scrollTools .mCSB_buttonLeft{background-position:-120px -112px}.mCS-dark-3.mCSB_scrollTools .mCSB_buttonRight{background-position:-120px -128px}.mCS-inset-2-dark.mCSB_scrollTools .mCSB_draggerRail,.mCS-inset-2.mCSB_scrollTools .mCSB_draggerRail,.mCS-inset-3-dark.mCSB_scrollTools .mCSB_draggerRail,.mCS-inset-3.mCSB_scrollTools .mCSB_draggerRail,.mCS-inset-dark.mCSB_scrollTools .mCSB_draggerRail,.mCS-inset.mCSB_scrollTools .mCSB_draggerRail{width:12px;background-color:#000;background-color:rgba(0,0,0,.2)}.mCS-inset-2-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,.mCS-inset-2.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,.mCS-inset-3-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,.mCS-inset-3.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,.mCS-inset-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,.mCS-inset.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{width:6px;margin:3px 5px;position:absolute;height:auto;top:0;bottom:0;left:0;right:0}.mCS-inset-2-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,.mCS-inset-2.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,.mCS-inset-3-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,.mCS-inset-3.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,.mCS-inset-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,.mCS-inset.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar{height:6px;margin:5px 3px;position:absolute;width:auto;top:0;bottom:0;left:0;right:0}.mCS-inset-2-dark.mCSB_scrollTools_horizontal .mCSB_draggerRail,.mCS-inset-2.mCSB_scrollTools_horizontal .mCSB_draggerRail,.mCS-inset-3-dark.mCSB_scrollTools_horizontal .mCSB_draggerRail,.mCS-inset-3.mCSB_scrollTools_horizontal .mCSB_draggerRail,.mCS-inset-dark.mCSB_scrollTools_horizontal .mCSB_draggerRail,.mCS-inset.mCSB_scrollTools_horizontal .mCSB_draggerRail{width:100%;height:12px;margin:2px 0}.mCS-inset-2.mCSB_scrollTools .mCSB_buttonUp,.mCS-inset-3.mCSB_scrollTools .mCSB_buttonUp,.mCS-inset.mCSB_scrollTools .mCSB_buttonUp{background-position:-32px -72px}.mCS-inset-2.mCSB_scrollTools .mCSB_buttonDown,.mCS-inset-3.mCSB_scrollTools .mCSB_buttonDown,.mCS-inset.mCSB_scrollTools .mCSB_buttonDown{background-position:-32px -92px}.mCS-inset-2.mCSB_scrollTools .mCSB_buttonLeft,.mCS-inset-3.mCSB_scrollTools .mCSB_buttonLeft,.mCS-inset.mCSB_scrollTools .mCSB_buttonLeft{background-position:-40px -112px}.mCS-inset-2.mCSB_scrollTools .mCSB_buttonRight,.mCS-inset-3.mCSB_scrollTools .mCSB_buttonRight,.mCS-inset.mCSB_scrollTools .mCSB_buttonRight{background-position:-40px -128px}.mCS-inset-2-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,.mCS-inset-3-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,.mCS-inset-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{background-color:#000;background-color:rgba(0,0,0,.75)}.mCS-inset-2-dark.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar,.mCS-inset-3-dark.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar,.mCS-inset-dark.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar{background-color:#000;background-color:rgba(0,0,0,.85)}.mCS-inset-2-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar,.mCS-inset-2-dark.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,.mCS-inset-3-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar,.mCS-inset-3-dark.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,.mCS-inset-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar,.mCS-inset-dark.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar{background-color:#000;background-color:rgba(0,0,0,.9)}.mCS-inset-2-dark.mCSB_scrollTools .mCSB_draggerRail,.mCS-inset-3-dark.mCSB_scrollTools .mCSB_draggerRail,.mCS-inset-dark.mCSB_scrollTools .mCSB_draggerRail{background-color:#000;background-color:rgba(0,0,0,.1)}.mCS-inset-2-dark.mCSB_scrollTools .mCSB_buttonUp,.mCS-inset-3-dark.mCSB_scrollTools .mCSB_buttonUp,.mCS-inset-dark.mCSB_scrollTools .mCSB_buttonUp{background-position:-112px -72px}.mCS-inset-2-dark.mCSB_scrollTools .mCSB_buttonDown,.mCS-inset-3-dark.mCSB_scrollTools .mCSB_buttonDown,.mCS-inset-dark.mCSB_scrollTools .mCSB_buttonDown{background-position:-112px -92px}.mCS-inset-2-dark.mCSB_scrollTools .mCSB_buttonLeft,.mCS-inset-3-dark.mCSB_scrollTools .mCSB_buttonLeft,.mCS-inset-dark.mCSB_scrollTools .mCSB_buttonLeft{background-position:-120px -112px}.mCS-inset-2-dark.mCSB_scrollTools .mCSB_buttonRight,.mCS-inset-3-dark.mCSB_scrollTools .mCSB_buttonRight,.mCS-inset-dark.mCSB_scrollTools .mCSB_buttonRight{background-position:-120px -128px}.mCS-inset-2-dark.mCSB_scrollTools .mCSB_draggerRail,.mCS-inset-2.mCSB_scrollTools .mCSB_draggerRail{background-color:transparent;border-width:1px;border-style:solid;border-color:#fff;border-color:rgba(255,255,255,.2);-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.mCS-inset-2-dark.mCSB_scrollTools .mCSB_draggerRail{border-color:#000;border-color:rgba(0,0,0,.2)}.mCS-inset-3.mCSB_scrollTools .mCSB_draggerRail{background-color:#fff;background-color:rgba(255,255,255,.6)}.mCS-inset-3-dark.mCSB_scrollTools .mCSB_draggerRail{background-color:#000;background-color:rgba(0,0,0,.6)}.mCS-inset-3.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{background-color:#000;background-color:rgba(0,0,0,.75)}.mCS-inset-3.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar{background-color:#000;background-color:rgba(0,0,0,.85)}.mCS-inset-3.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar,.mCS-inset-3.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar{background-color:#000;background-color:rgba(0,0,0,.9)}.mCS-inset-3-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{background-color:#fff;background-color:rgba(255,255,255,.75)}.mCS-inset-3-dark.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar{background-color:#fff;background-color:rgba(255,255,255,.85)}.mCS-inset-3-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar,.mCS-inset-3-dark.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar{background-color:#fff;background-color:rgba(255,255,255,.9)}/*! jQuery UI - v1.12.1 - 2016-09-14
* http://jqueryui.com
* Includes: core.css, accordion.css, autocomplete.css, menu.css, button.css, controlgroup.css, checkboxradio.css, datepicker.css, dialog.css, draggable.css, resizable.css, progressbar.css, selectable.css, selectmenu.css, slider.css, sortable.css, spinner.css, tabs.css, tooltip.css, theme.css
* To view and modify this theme, visit http://jqueryui.com/themeroller/?ffDefault=Arial%2CHelvetica%2Csans-serif&fsDefault=1em&fwDefault=normal&cornerRadius=3px&bgColorHeader=e9e9e9&bgTextureHeader=flat&borderColorHeader=dddddd&fcHeader=333333&iconColorHeader=444444&bgColorContent=ffffff&bgTextureContent=flat&borderColorContent=dddddd&fcContent=333333&iconColorContent=444444&bgColorDefault=f6f6f6&bgTextureDefault=flat&borderColorDefault=c5c5c5&fcDefault=454545&iconColorDefault=777777&bgColorHover=ededed&bgTextureHover=flat&borderColorHover=cccccc&fcHover=2b2b2b&iconColorHover=555555&bgColorActive=007fff&bgTextureActive=flat&borderColorActive=003eff&fcActive=ffffff&iconColorActive=ffffff&bgColorHighlight=fffa90&bgTextureHighlight=flat&borderColorHighlight=dad55e&fcHighlight=777620&iconColorHighlight=777620&bgColorError=fddfdf&bgTextureError=flat&borderColorError=f1a899&fcError=5f3f3f&iconColorError=cc0000&bgColorOverlay=aaaaaa&bgTextureOverlay=flat&bgImgOpacityOverlay=0&opacityOverlay=30&bgColorShadow=666666&bgTextureShadow=flat&bgImgOpacityShadow=0&opacityShadow=30&thicknessShadow=5px&offsetTopShadow=0px&offsetLeftShadow=0px&cornerRadiusShadow=8px
* Copyright jQuery Foundation and other contributors; Licensed MIT */

/* Layout helpers
----------------------------------*/
.ui-helper-hidden {
	display: none;
}
.ui-helper-hidden-accessible {
	border: 0;
	clip: rect(0 0 0 0);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;
}
.ui-helper-reset {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	line-height: 1.3;
	text-decoration: none;
	font-size: 100%;
	list-style: none;
}
.ui-helper-clearfix:before,
.ui-helper-clearfix:after {
	content: "";
	display: table;
	border-collapse: collapse;
}
.ui-helper-clearfix:after {
	clear: both;
}
.ui-helper-zfix {
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	position: absolute;
	opacity: 0;
	filter:Alpha(Opacity=0); /* support: IE8 */
}

.ui-front {
	z-index: 100;
}


/* Interaction Cues
----------------------------------*/
.ui-state-disabled {
	cursor: default !important;
	pointer-events: none;
}


/* Icons
----------------------------------*/
.ui-icon {
	display: inline-block;
	vertical-align: middle;
	margin-top: -.25em;
	position: relative;
	text-indent: -99999px;
	overflow: hidden;
	background-repeat: no-repeat;
}

.ui-widget-icon-block {
	left: 50%;
	margin-left: -8px;
	display: block;
}

/* Misc visuals
----------------------------------*/

/* Overlays */
.ui-widget-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.ui-accordion .ui-accordion-header {
	display: block;
	cursor: pointer;
	position: relative;
	margin: 2px 0 0 0;
	padding: .5em .5em .5em .7em;
	font-size: 100%;
}
.ui-accordion .ui-accordion-content {
	padding: 1em 2.2em;
	border-top: 0;
	overflow: auto;
}
.ui-autocomplete {
	position: absolute;
	top: 0;
	left: 0;
	cursor: default;
}
.ui-menu {
	list-style: none;
	padding: 0;
	margin: 0;
	display: block;
	outline: 0;
}
.ui-menu .ui-menu {
	position: absolute;
}
.ui-menu .ui-menu-item {
	margin: 0;
	cursor: pointer;
	/* support: IE10, see #8844 */
	list-style-image: url(data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7);
}
.ui-menu .ui-menu-item-wrapper {
	position: relative;
	padding:8px 1em 8px 15px;
}
.ui-menu .ui-menu-divider {
	margin: 5px 0;
	height: 0;
	font-size: 0;
	line-height: 0;
	border-width: 1px 0 0 0;
}
.ui-menu .ui-state-focus,
.ui-menu .ui-state-active {
	margin: -1px;
}

/* icon support */
.ui-menu-icons {
	position: relative;
}
.ui-menu-icons .ui-menu-item-wrapper {
	padding-left: 2em;
}

/* left-aligned */
.ui-menu .ui-icon {
	position: absolute;
	top: 0;
	bottom: 0;
	left: .2em;
	margin: auto 0;
}

/* right-aligned */
.ui-menu .ui-menu-icon {
	left: auto;
	right: 0;
}
.ui-button {
	padding: .4em 1em;
	display: inline-block;
	position: relative;
	line-height: normal;
	margin-right: .1em;
	cursor: pointer;
	vertical-align: middle;
	text-align: center;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;

	/* Support: IE <= 11 */
	overflow: visible;
}

.ui-button,
.ui-button:link,
.ui-button:visited,
.ui-button:hover,
.ui-button:active {
	text-decoration: none;
}

/* to make room for the icon, a width needs to be set here */
.ui-button-icon-only {
	width: 2em;
	box-sizing: border-box;
	text-indent: -9999px;
	white-space: nowrap;
}

/* no icon support for input elements */
input.ui-button.ui-button-icon-only {
	text-indent: 0;
}

/* button icon element(s) */
.ui-button-icon-only .ui-icon {
	position: absolute;
	top: 50%;
	left: 50%;
	margin-top: -8px;
	margin-left: -8px;
}

.ui-button.ui-icon-notext .ui-icon {
	padding: 0;
	width: 2.1em;
	height: 2.1em;
	text-indent: -9999px;
	white-space: nowrap;

}

input.ui-button.ui-icon-notext .ui-icon {
	width: auto;
	height: auto;
	text-indent: 0;
	white-space: normal;
	padding: .4em 1em;
}

/* workarounds */
/* Support: Firefox 5 - 40 */
input.ui-button::-moz-focus-inner,
button.ui-button::-moz-focus-inner {
	border: 0;
	padding: 0;
}
.ui-controlgroup {
	vertical-align: middle;
	display: inline-block;
}
.ui-controlgroup > .ui-controlgroup-item {
	float: left;
	margin-left: 0;
	margin-right: 0;
}
.ui-controlgroup > .ui-controlgroup-item:focus,
.ui-controlgroup > .ui-controlgroup-item.ui-visual-focus {
	z-index: 9999;
}
.ui-controlgroup-vertical > .ui-controlgroup-item {
	display: block;
	float: none;
	width: 100%;
	margin-top: 0;
	margin-bottom: 0;
	text-align: left;
}
.ui-controlgroup-vertical .ui-controlgroup-item {
	box-sizing: border-box;
}
.ui-controlgroup .ui-controlgroup-label {
	padding: .4em 1em;
}
.ui-controlgroup .ui-controlgroup-label span {
	font-size: 80%;
}
.ui-controlgroup-horizontal .ui-controlgroup-label + .ui-controlgroup-item {
	border-left: none;
}
.ui-controlgroup-vertical .ui-controlgroup-label + .ui-controlgroup-item {
	border-top: none;
}
.ui-controlgroup-horizontal .ui-controlgroup-label.ui-widget-content {
	border-right: none;
}
.ui-controlgroup-vertical .ui-controlgroup-label.ui-widget-content {
	border-bottom: none;
}

/* Spinner specific style fixes */
.ui-controlgroup-vertical .ui-spinner-input {

	/* Support: IE8 only, Android < 4.4 only */
	width: 75%;
	width: calc( 100% - 2.4em );
}
.ui-controlgroup-vertical .ui-spinner .ui-spinner-up {
	border-top-style: solid;
}

.ui-checkboxradio-label .ui-icon-background {
	box-shadow: inset 1px 1px 1px #ccc;
	border-radius: .12em;
	border: none;
}
.ui-checkboxradio-radio-label .ui-icon-background {
	width: 16px;
	height: 16px;
	border-radius: 1em;
	overflow: visible;
	border: none;
}
.ui-checkboxradio-radio-label.ui-checkboxradio-checked .ui-icon,
.ui-checkboxradio-radio-label.ui-checkboxradio-checked:hover .ui-icon {
	background-image: none;
	width: 8px;
	height: 8px;
	border-width: 4px;
	border-style: solid;
}
.ui-checkboxradio-disabled {
	pointer-events: none;
}
.ui-datepicker {
	width: 17em;
	padding: .2em .2em 0;
	display: none;
}
.ui-datepicker .ui-datepicker-header {
	position: relative;
	padding: .2em 0;
}
.ui-datepicker .ui-datepicker-prev,
.ui-datepicker .ui-datepicker-next {
	position: absolute;
	top: 2px;
	width: 1.8em;
	height: 1.8em;
}
.ui-datepicker .ui-datepicker-prev-hover,
.ui-datepicker .ui-datepicker-next-hover {
	top: 1px;
}
.ui-datepicker .ui-datepicker-prev {
	left: 2px;
}
.ui-datepicker .ui-datepicker-next {
	right: 2px;
}
.ui-datepicker .ui-datepicker-prev-hover {
	left: 1px;
}
.ui-datepicker .ui-datepicker-next-hover {
	right: 1px;
}
.ui-datepicker .ui-datepicker-prev span,
.ui-datepicker .ui-datepicker-next span {
	display: block;
	position: absolute;
	left: 50%;
	margin-left: -8px;
	top: 50%;
	margin-top: -8px;
}
.ui-datepicker .ui-datepicker-title {
	margin: 0 2.3em;
	line-height: 1.8em;
	text-align: center;
}
.ui-datepicker .ui-datepicker-title select {
	font-size: 1em;
	margin: 1px 0;
}
.ui-datepicker select.ui-datepicker-month,
.ui-datepicker select.ui-datepicker-year {
	width: 45%;
}
.ui-datepicker table {
	width: 100%;
	font-size: .9em;
	border-collapse: collapse;
	margin: 0 0 .4em;
}
.ui-datepicker th {
	padding: .7em .3em;
	text-align: center;
	font-weight: bold;
	border: 0;
}
.ui-datepicker td {
	border: 0;
	padding: 1px;
}
.ui-datepicker td span,
.ui-datepicker td a {
	display: block;
	padding: .2em;
	text-align: right;
	text-decoration: none;
}
.ui-datepicker .ui-datepicker-buttonpane {
	background-image: none;
	margin: .7em 0 0 0;
	padding: 0 .2em;
	border-left: 0;
	border-right: 0;
	border-bottom: 0;
}
.ui-datepicker .ui-datepicker-buttonpane button {
	float: right;
	margin: .5em .2em .4em;
	cursor: pointer;
	padding: .2em .6em .3em .6em;
	width: auto;
	overflow: visible;
}
.ui-datepicker .ui-datepicker-buttonpane button.ui-datepicker-current {
	float: left;
}

/* with multiple calendars */
.ui-datepicker.ui-datepicker-multi {
	width: auto;
}
.ui-datepicker-multi .ui-datepicker-group {
	float: left;
}
.ui-datepicker-multi .ui-datepicker-group table {
	width: 95%;
	margin: 0 auto .4em;
}
.ui-datepicker-multi-2 .ui-datepicker-group {
	width: 50%;
}
.ui-datepicker-multi-3 .ui-datepicker-group {
	width: 33.3%;
}
.ui-datepicker-multi-4 .ui-datepicker-group {
	width: 25%;
}
.ui-datepicker-multi .ui-datepicker-group-last .ui-datepicker-header,
.ui-datepicker-multi .ui-datepicker-group-middle .ui-datepicker-header {
	border-left-width: 0;
}
.ui-datepicker-multi .ui-datepicker-buttonpane {
	clear: left;
}
.ui-datepicker-row-break {
	clear: both;
	width: 100%;
	font-size: 0;
}

/* RTL support */
.ui-datepicker-rtl {
	direction: rtl;
}
.ui-datepicker-rtl .ui-datepicker-prev {
	right: 2px;
	left: auto;
}
.ui-datepicker-rtl .ui-datepicker-next {
	left: 2px;
	right: auto;
}
.ui-datepicker-rtl .ui-datepicker-prev:hover {
	right: 1px;
	left: auto;
}
.ui-datepicker-rtl .ui-datepicker-next:hover {
	left: 1px;
	right: auto;
}
.ui-datepicker-rtl .ui-datepicker-buttonpane {
	clear: right;
}
.ui-datepicker-rtl .ui-datepicker-buttonpane button {
	float: left;
}
.ui-datepicker-rtl .ui-datepicker-buttonpane button.ui-datepicker-current,
.ui-datepicker-rtl .ui-datepicker-group {
	float: right;
}
.ui-datepicker-rtl .ui-datepicker-group-last .ui-datepicker-header,
.ui-datepicker-rtl .ui-datepicker-group-middle .ui-datepicker-header {
	border-right-width: 0;
	border-left-width: 1px;
}

/* Icons */
.ui-datepicker .ui-icon {
	display: block;
	text-indent: -99999px;
	overflow: hidden;
	background-repeat: no-repeat;
	left: .5em;
	top: .3em;
}
.ui-dialog {
	position: absolute;
	top: 0;
	left: 0;
	padding: .2em;
	outline: 0;
}
.ui-dialog .ui-dialog-titlebar {
	padding: .4em 1em;
	position: relative;
}
.ui-dialog .ui-dialog-title {
	float: left;
	margin: .1em 0;
	white-space: nowrap;
	width: 90%;
	overflow: hidden;
	text-overflow: ellipsis;
}
.ui-dialog .ui-dialog-titlebar-close {
	position: absolute;
	right: .3em;
	top: 50%;
	width: 20px;
	margin: -10px 0 0 0;
	padding: 1px;
	height: 20px;
}
.ui-dialog .ui-dialog-content {
	position: relative;
	border: 0;
	padding: .5em 1em;
	background: none;
	overflow: auto;
}
.ui-dialog .ui-dialog-buttonpane {
	text-align: left;
	border-width: 1px 0 0 0;
	background-image: none;
	margin-top: .5em;
	padding: .3em 1em .5em .4em;
}
.ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset {
	float: right;
}
.ui-dialog .ui-dialog-buttonpane button {
	margin: .5em .4em .5em 0;
	cursor: pointer;
}
.ui-dialog .ui-resizable-n {
	height: 2px;
	top: 0;
}
.ui-dialog .ui-resizable-e {
	width: 2px;
	right: 0;
}
.ui-dialog .ui-resizable-s {
	height: 2px;
	bottom: 0;
}
.ui-dialog .ui-resizable-w {
	width: 2px;
	left: 0;
}
.ui-dialog .ui-resizable-se,
.ui-dialog .ui-resizable-sw,
.ui-dialog .ui-resizable-ne,
.ui-dialog .ui-resizable-nw {
	width: 7px;
	height: 7px;
}
.ui-dialog .ui-resizable-se {
	right: 0;
	bottom: 0;
}
.ui-dialog .ui-resizable-sw {
	left: 0;
	bottom: 0;
}
.ui-dialog .ui-resizable-ne {
	right: 0;
	top: 0;
}
.ui-dialog .ui-resizable-nw {
	left: 0;
	top: 0;
}
.ui-draggable .ui-dialog-titlebar {
	cursor: move;
}
.ui-draggable-handle {
	-ms-touch-action: none;
	touch-action: none;
}
.ui-resizable {
	position: relative;
}
.ui-resizable-handle {
	position: absolute;
	font-size: 0.1px;
	display: block;
	-ms-touch-action: none;
	touch-action: none;
}
.ui-resizable-disabled .ui-resizable-handle,
.ui-resizable-autohide .ui-resizable-handle {
	display: none;
}
.ui-resizable-n {
	cursor: n-resize;
	height: 7px;
	width: 100%;
	top: -5px;
	left: 0;
}
.ui-resizable-s {
	cursor: s-resize;
	height: 7px;
	width: 100%;
	bottom: -5px;
	left: 0;
}
.ui-resizable-e {
	cursor: e-resize;
	width: 7px;
	right: -5px;
	top: 0;
	height: 100%;
}
.ui-resizable-w {
	cursor: w-resize;
	width: 7px;
	left: -5px;
	top: 0;
	height: 100%;
}
.ui-resizable-se {
	cursor: se-resize;
	width: 12px;
	height: 12px;
	right: 1px;
	bottom: 1px;
}
.ui-resizable-sw {
	cursor: sw-resize;
	width: 9px;
	height: 9px;
	left: -5px;
	bottom: -5px;
}
.ui-resizable-nw {
	cursor: nw-resize;
	width: 9px;
	height: 9px;
	left: -5px;
	top: -5px;
}
.ui-resizable-ne {
	cursor: ne-resize;
	width: 9px;
	height: 9px;
	right: -5px;
	top: -5px;
}
.ui-progressbar {
	height: 2em;
	text-align: left;
	overflow: hidden;
}
.ui-progressbar .ui-progressbar-value {
	margin: -1px;
	height: 100%;
}
.ui-progressbar .ui-progressbar-overlay {
	background: url(data:image/gif;base64,R0lGODlhKAAoAIABAAAAAP///yH/C05FVFNDQVBFMi4wAwEAAAAh+QQJAQABACwAAAAAKAAoAAACkYwNqXrdC52DS06a7MFZI+4FHBCKoDeWKXqymPqGqxvJrXZbMx7Ttc+w9XgU2FB3lOyQRWET2IFGiU9m1frDVpxZZc6bfHwv4c1YXP6k1Vdy292Fb6UkuvFtXpvWSzA+HycXJHUXiGYIiMg2R6W459gnWGfHNdjIqDWVqemH2ekpObkpOlppWUqZiqr6edqqWQAAIfkECQEAAQAsAAAAACgAKAAAApSMgZnGfaqcg1E2uuzDmmHUBR8Qil95hiPKqWn3aqtLsS18y7G1SzNeowWBENtQd+T1JktP05nzPTdJZlR6vUxNWWjV+vUWhWNkWFwxl9VpZRedYcflIOLafaa28XdsH/ynlcc1uPVDZxQIR0K25+cICCmoqCe5mGhZOfeYSUh5yJcJyrkZWWpaR8doJ2o4NYq62lAAACH5BAkBAAEALAAAAAAoACgAAAKVDI4Yy22ZnINRNqosw0Bv7i1gyHUkFj7oSaWlu3ovC8GxNso5fluz3qLVhBVeT/Lz7ZTHyxL5dDalQWPVOsQWtRnuwXaFTj9jVVh8pma9JjZ4zYSj5ZOyma7uuolffh+IR5aW97cHuBUXKGKXlKjn+DiHWMcYJah4N0lYCMlJOXipGRr5qdgoSTrqWSq6WFl2ypoaUAAAIfkECQEAAQAsAAAAACgAKAAAApaEb6HLgd/iO7FNWtcFWe+ufODGjRfoiJ2akShbueb0wtI50zm02pbvwfWEMWBQ1zKGlLIhskiEPm9R6vRXxV4ZzWT2yHOGpWMyorblKlNp8HmHEb/lCXjcW7bmtXP8Xt229OVWR1fod2eWqNfHuMjXCPkIGNileOiImVmCOEmoSfn3yXlJWmoHGhqp6ilYuWYpmTqKUgAAIfkECQEAAQAsAAAAACgAKAAAApiEH6kb58biQ3FNWtMFWW3eNVcojuFGfqnZqSebuS06w5V80/X02pKe8zFwP6EFWOT1lDFk8rGERh1TTNOocQ61Hm4Xm2VexUHpzjymViHrFbiELsefVrn6XKfnt2Q9G/+Xdie499XHd2g4h7ioOGhXGJboGAnXSBnoBwKYyfioubZJ2Hn0RuRZaflZOil56Zp6iioKSXpUAAAh+QQJAQABACwAAAAAKAAoAAACkoQRqRvnxuI7kU1a1UU5bd5tnSeOZXhmn5lWK3qNTWvRdQxP8qvaC+/yaYQzXO7BMvaUEmJRd3TsiMAgswmNYrSgZdYrTX6tSHGZO73ezuAw2uxuQ+BbeZfMxsexY35+/Qe4J1inV0g4x3WHuMhIl2jXOKT2Q+VU5fgoSUI52VfZyfkJGkha6jmY+aaYdirq+lQAACH5BAkBAAEALAAAAAAoACgAAAKWBIKpYe0L3YNKToqswUlvznigd4wiR4KhZrKt9Upqip61i9E3vMvxRdHlbEFiEXfk9YARYxOZZD6VQ2pUunBmtRXo1Lf8hMVVcNl8JafV38aM2/Fu5V16Bn63r6xt97j09+MXSFi4BniGFae3hzbH9+hYBzkpuUh5aZmHuanZOZgIuvbGiNeomCnaxxap2upaCZsq+1kAACH5BAkBAAEALAAAAAAoACgAAAKXjI8By5zf4kOxTVrXNVlv1X0d8IGZGKLnNpYtm8Lr9cqVeuOSvfOW79D9aDHizNhDJidFZhNydEahOaDH6nomtJjp1tutKoNWkvA6JqfRVLHU/QUfau9l2x7G54d1fl995xcIGAdXqMfBNadoYrhH+Mg2KBlpVpbluCiXmMnZ2Sh4GBqJ+ckIOqqJ6LmKSllZmsoq6wpQAAAh+QQJAQABACwAAAAAKAAoAAAClYx/oLvoxuJDkU1a1YUZbJ59nSd2ZXhWqbRa2/gF8Gu2DY3iqs7yrq+xBYEkYvFSM8aSSObE+ZgRl1BHFZNr7pRCavZ5BW2142hY3AN/zWtsmf12p9XxxFl2lpLn1rseztfXZjdIWIf2s5dItwjYKBgo9yg5pHgzJXTEeGlZuenpyPmpGQoKOWkYmSpaSnqKileI2FAAACH5BAkBAAEALAAAAAAoACgAAAKVjB+gu+jG4kORTVrVhRlsnn2dJ3ZleFaptFrb+CXmO9OozeL5VfP99HvAWhpiUdcwkpBH3825AwYdU8xTqlLGhtCosArKMpvfa1mMRae9VvWZfeB2XfPkeLmm18lUcBj+p5dnN8jXZ3YIGEhYuOUn45aoCDkp16hl5IjYJvjWKcnoGQpqyPlpOhr3aElaqrq56Bq7VAAAOw==);
	height: 100%;
	filter: alpha(opacity=25); /* support: IE8 */
	opacity: 0.25;
}
.ui-progressbar-indeterminate .ui-progressbar-value {
	background-image: none;
}
.ui-selectable {
	-ms-touch-action: none;
	touch-action: none;
}
.ui-selectable-helper {
	position: absolute;
	z-index: 100;
	border: 1px dotted black;
}
.ui-selectmenu-menu {
	padding: 0;
	margin: 0;
	position: absolute;
	top: 0;
	left: 0;
	display: none;
}
.ui-selectmenu-menu .ui-menu {
	overflow: auto;
	overflow-x: hidden;
	padding-bottom: 1px;
}
.ui-selectmenu-menu .ui-menu .ui-selectmenu-optgroup {
	font-size: 1em;
	font-weight: bold;
	line-height: 1.5;
	padding: 2px 0.4em;
	margin: 0.5em 0 0 0;
	height: auto;
	border: 0;
}
.ui-selectmenu-open {
	display: block;
}
.ui-selectmenu-text {
	display: block;
	margin-right: 20px;
	overflow: hidden;
	text-overflow: ellipsis;
}
.ui-selectmenu-button.ui-button {
	text-align: left;
	white-space: nowrap;
	width: 14em;
}
.ui-selectmenu-icon.ui-icon {
	float: right;
	margin-top: 0;
}
.ui-slider {
	position: relative;
	text-align: left;
}
.ui-slider .ui-slider-handle {
	position: absolute;
	z-index: 2;
	width: 1.2em;
	height: 1.2em;
	cursor: default;
	-ms-touch-action: none;
	touch-action: none;
}
.ui-slider .ui-slider-range {
	position: absolute;
	z-index: 1;
	font-size: .7em;
	display: block;
	border: 0;
	background-position: 0 0;
}

/* support: IE8 - See #6727 */
.ui-slider.ui-state-disabled .ui-slider-handle,
.ui-slider.ui-state-disabled .ui-slider-range {
	filter: inherit;
}

.ui-slider-horizontal {
	height: .8em;
}
.ui-slider-horizontal .ui-slider-handle {
	top: -.3em;
	margin-left: -.6em;
}
.ui-slider-horizontal .ui-slider-range {
	top: 0;
	height: 100%;
}
.ui-slider-horizontal .ui-slider-range-min {
	left: 0;
}
.ui-slider-horizontal .ui-slider-range-max {
	right: 0;
}

.ui-slider-vertical {
	width: .8em;
	height: 100px;
}
.ui-slider-vertical .ui-slider-handle {
	left: -.3em;
	margin-left: 0;
	margin-bottom: -.6em;
}
.ui-slider-vertical .ui-slider-range {
	left: 0;
	width: 100%;
}
.ui-slider-vertical .ui-slider-range-min {
	bottom: 0;
}
.ui-slider-vertical .ui-slider-range-max {
	top: 0;
}
.ui-sortable-handle {
	-ms-touch-action: none;
	touch-action: none;
}
.ui-spinner {
	position: relative;
	display: inline-block;
	overflow: hidden;
	padding: 0;
	vertical-align: middle;
}
.ui-spinner-input {
	border: none;
	background: none;
	color: inherit;
	padding: .222em 0;
	margin: .2em 0;
	vertical-align: middle;
	margin-left: .4em;
	margin-right: 2em;
}
.ui-spinner-button {
	width: 1.6em;
	height: 50%;
	font-size: .5em;
	padding: 0;
	margin: 0;
	text-align: center;
	position: absolute;
	cursor: default;
	display: block;
	overflow: hidden;
	right: 0;
}
/* more specificity required here to override default borders */
.ui-spinner a.ui-spinner-button {
	border-top-style: none;
	border-bottom-style: none;
	border-right-style: none;
}
.ui-spinner-up {
	top: 0;
}
.ui-spinner-down {
	bottom: 0;
}
.ui-tabs {
	position: relative;/* position: relative prevents IE scroll bug (element with position: relative inside container with overflow: auto appear as "fixed") */
	padding: .2em;
}
.ui-tabs .ui-tabs-nav {
	margin: 0;
	padding: .2em .2em 0;
}
.ui-tabs .ui-tabs-nav li {
	list-style: none;
	float: left;
	position: relative;
	top: 0;
	margin: 1px .2em 0 0;
	border-bottom-width: 0;
	padding: 0;
	white-space: nowrap;
}
.ui-tabs .ui-tabs-nav .ui-tabs-anchor {
	float: left;
	padding: .5em 1em;
	text-decoration: none;
}
.ui-tabs .ui-tabs-nav li.ui-tabs-active {
	margin-bottom: -1px;
	padding-bottom: 1px;
}
.ui-tabs .ui-tabs-nav li.ui-tabs-active .ui-tabs-anchor,
.ui-tabs .ui-tabs-nav li.ui-state-disabled .ui-tabs-anchor,
.ui-tabs .ui-tabs-nav li.ui-tabs-loading .ui-tabs-anchor {
	cursor: text;
}
.ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-active .ui-tabs-anchor {
	cursor: pointer;
}
.ui-tabs .ui-tabs-panel {
	display: block;
	border-width: 0;
	padding: 1em 1.4em;
	background: none;
}
.ui-tooltip {
	padding: 8px;
	position: absolute;
	z-index: 9999;
	max-width: 300px;
}
body .ui-tooltip {
	border-width: 2px;
}
/* Component containers
----------------------------------*/
.ui-widget {
	font-family: Arial,Helvetica,sans-serif;
	font-size: 1em;
}
.ui-widget .ui-widget {
	font-size: 1em;
}
.ui-widget input,
.ui-widget select,
.ui-widget textarea,
.ui-widget button {
	font-family: Arial,Helvetica,sans-serif;
	font-size: 1em;
}
.ui-widget.ui-widget-content {
	border: 1px solid #c5c5c5;
}
.ui-widget-content {
	border: 1px solid #dddddd;
	background: #ffffff;
	color: #333333;
}
.ui-widget-content a {
	color: #333333;
}
.ui-widget-header {
	border: 1px solid #dddddd;
	background: #e9e9e9;
	color: #333333;
	font-weight: bold;
}
.ui-widget-header a {
	color: #333333;
}

/* Interaction states
----------------------------------*/
.ui-state-default,
.ui-widget-content .ui-state-default,
.ui-widget-header .ui-state-default,
.ui-button,

/* We use html here because we need a greater specificity to make sure disabled
works properly when clicked or hovered */
html .ui-button.ui-state-disabled:hover,
html .ui-button.ui-state-disabled:active {
	border: 1px solid #c5c5c5;
	background: #f6f6f6;
	font-weight: normal;
	color: #454545;
}
.ui-state-default a,
.ui-state-default a:link,
.ui-state-default a:visited,
a.ui-button,
a:link.ui-button,
a:visited.ui-button,
.ui-button {
	color: #454545;
	text-decoration: none;
}
.ui-state-hover,
.ui-widget-content .ui-state-hover,
.ui-widget-header .ui-state-hover,
.ui-state-focus,
.ui-widget-content .ui-state-focus,
.ui-widget-header .ui-state-focus,
.ui-button:hover,
.ui-button:focus {
	border: 1px solid #cccccc;
	background: #ededed;
	font-weight: normal;
	color: #2b2b2b;
}
.ui-state-hover a,
.ui-state-hover a:hover,
.ui-state-hover a:link,
.ui-state-hover a:visited,
.ui-state-focus a,
.ui-state-focus a:hover,
.ui-state-focus a:link,
.ui-state-focus a:visited,
a.ui-button:hover,
a.ui-button:focus {
	color: #2b2b2b;
	text-decoration: none;
}

.ui-visual-focus {
	box-shadow: 0 0 3px 1px rgb(94, 158, 214);
}
.ui-state-active,
.ui-widget-content .ui-state-active,
.ui-widget-header .ui-state-active,
a.ui-button:active,
.ui-button:active,
.ui-button.ui-state-active:hover {
	border: 1px solid #003eff;
	background: #007fff;
	font-weight: normal;
	color: #ffffff;
}
.ui-icon-background,
.ui-state-active .ui-icon-background {
	border: #003eff;
	background-color: #ffffff;
}
.ui-state-active a,
.ui-state-active a:link,
.ui-state-active a:visited {
	color: #ffffff;
	text-decoration: none;
}

/* Interaction Cues
----------------------------------*/
.ui-state-highlight,
.ui-widget-content .ui-state-highlight,
.ui-widget-header .ui-state-highlight {
	border: 1px solid #dad55e;
	background: #fffa90;
	color: #777620;
}
.ui-state-checked {
	border: 1px solid #dad55e;
	background: #fffa90;
}
.ui-state-highlight a,
.ui-widget-content .ui-state-highlight a,
.ui-widget-header .ui-state-highlight a {
	color: #777620;
}
.ui-state-error,
.ui-widget-content .ui-state-error,
.ui-widget-header .ui-state-error {
	border: 1px solid #f1a899;
	background: #fddfdf;
	color: #5f3f3f;
}
.ui-state-error a,
.ui-widget-content .ui-state-error a,
.ui-widget-header .ui-state-error a {
	color: #5f3f3f;
}
.ui-state-error-text,
.ui-widget-content .ui-state-error-text,
.ui-widget-header .ui-state-error-text {
	color: #5f3f3f;
}
.ui-priority-primary,
.ui-widget-content .ui-priority-primary,
.ui-widget-header .ui-priority-primary {
	font-weight: bold;
}
.ui-priority-secondary,
.ui-widget-content .ui-priority-secondary,
.ui-widget-header .ui-priority-secondary {
	opacity: .7;
	filter:Alpha(Opacity=70); /* support: IE8 */
	font-weight: normal;
}
.ui-state-disabled,
.ui-widget-content .ui-state-disabled,
.ui-widget-header .ui-state-disabled {
	opacity: .35;
	filter:Alpha(Opacity=35); /* support: IE8 */
	background-image: none;
}
.ui-state-disabled .ui-icon {
	filter:Alpha(Opacity=35); /* support: IE8 - See #6059 */
}

/* Icons
----------------------------------*/

/* states and images */
.ui-icon {
	width: 16px;
	height: 16px;
}
.ui-icon,
.ui-widget-content .ui-icon {
	background-image: url(//jaquesofalltrades.com/wp-content/themes/buildnet/assets/css/images/ui-icons_444444_256x240.png);
}
.ui-widget-header .ui-icon {
	background-image: url(//jaquesofalltrades.com/wp-content/themes/buildnet/assets/css/images/ui-icons_444444_256x240.png);
}
.ui-state-hover .ui-icon,
.ui-state-focus .ui-icon,
.ui-button:hover .ui-icon,
.ui-button:focus .ui-icon {
	/*background-image: url(//jaquesofalltrades.com/wp-content/themes/buildnet/assets/css/images/ui-icons_555555_256x240.png);*/
}
.ui-state-active .ui-icon,
.ui-button:active .ui-icon {
	/*background-image: url(//jaquesofalltrades.com/wp-content/themes/buildnet/assets/css/images/ui-icons_ffffff_256x240.png);*/
}
.ui-state-highlight .ui-icon,
.ui-button .ui-state-highlight.ui-icon {
	background-image: url(//jaquesofalltrades.com/wp-content/themes/buildnet/assets/css/images/ui-icons_777620_256x240.png);
}
.ui-state-error .ui-icon,
.ui-state-error-text .ui-icon {
	background-image: url(//jaquesofalltrades.com/wp-content/themes/buildnet/assets/css/images/ui-icons_cc0000_256x240.png);
}
.ui-button .ui-icon {
	background-image: url(//jaquesofalltrades.com/wp-content/themes/buildnet/assets/css/images/ui-icons_777777_256x240.png);
}

/* positioning */
.ui-icon-blank { background-position: 16px 16px; }
.ui-icon-caret-1-n { background-position: 0 0; }
.ui-icon-caret-1-ne { background-position: -16px 0; }
.ui-icon-caret-1-e { background-position: -32px 0; }
.ui-icon-caret-1-se { background-position: -48px 0; }
.ui-icon-caret-1-s { background-position: -65px 0; }
.ui-icon-caret-1-sw { background-position: -80px 0; }
.ui-icon-caret-1-w { background-position: -96px 0; }
.ui-icon-caret-1-nw { background-position: -112px 0; }
.ui-icon-caret-2-n-s { background-position: -128px 0; }
.ui-icon-caret-2-e-w { background-position: -144px 0; }
.ui-icon-triangle-1-n { background-position: 0 -16px; }
.ui-icon-triangle-1-ne { background-position: -16px -16px; }
.ui-icon-triangle-1-e { background-position: -32px -16px; }
.ui-icon-triangle-1-se { background-position: -48px -16px; }
.ui-icon-triangle-1-s { background-position: -65px -16px; }
.ui-icon-triangle-1-sw { background-position: -80px -16px; }
.ui-icon-triangle-1-w { background-position: -96px -16px; }
.ui-icon-triangle-1-nw { background-position: -112px -16px; }
.ui-icon-triangle-2-n-s { background-position: -128px -16px; }
.ui-icon-triangle-2-e-w { background-position: -144px -16px; }
.ui-icon-arrow-1-n { background-position: 0 -32px; }
.ui-icon-arrow-1-ne { background-position: -16px -32px; }
.ui-icon-arrow-1-e { background-position: -32px -32px; }
.ui-icon-arrow-1-se { background-position: -48px -32px; }
.ui-icon-arrow-1-s { background-position: -65px -32px; }
.ui-icon-arrow-1-sw { background-position: -80px -32px; }
.ui-icon-arrow-1-w { background-position: -96px -32px; }
.ui-icon-arrow-1-nw { background-position: -112px -32px; }
.ui-icon-arrow-2-n-s { background-position: -128px -32px; }
.ui-icon-arrow-2-ne-sw { background-position: -144px -32px; }
.ui-icon-arrow-2-e-w { background-position: -160px -32px; }
.ui-icon-arrow-2-se-nw { background-position: -176px -32px; }
.ui-icon-arrowstop-1-n { background-position: -192px -32px; }
.ui-icon-arrowstop-1-e { background-position: -208px -32px; }
.ui-icon-arrowstop-1-s { background-position: -224px -32px; }
.ui-icon-arrowstop-1-w { background-position: -240px -32px; }
.ui-icon-arrowthick-1-n { background-position: 1px -48px; }
.ui-icon-arrowthick-1-ne { background-position: -16px -48px; }
.ui-icon-arrowthick-1-e { background-position: -32px -48px; }
.ui-icon-arrowthick-1-se { background-position: -48px -48px; }
.ui-icon-arrowthick-1-s { background-position: -64px -48px; }
.ui-icon-arrowthick-1-sw { background-position: -80px -48px; }
.ui-icon-arrowthick-1-w { background-position: -96px -48px; }
.ui-icon-arrowthick-1-nw { background-position: -112px -48px; }
.ui-icon-arrowthick-2-n-s { background-position: -128px -48px; }
.ui-icon-arrowthick-2-ne-sw { background-position: -144px -48px; }
.ui-icon-arrowthick-2-e-w { background-position: -160px -48px; }
.ui-icon-arrowthick-2-se-nw { background-position: -176px -48px; }
.ui-icon-arrowthickstop-1-n { background-position: -192px -48px; }
.ui-icon-arrowthickstop-1-e { background-position: -208px -48px; }
.ui-icon-arrowthickstop-1-s { background-position: -224px -48px; }
.ui-icon-arrowthickstop-1-w { background-position: -240px -48px; }
.ui-icon-arrowreturnthick-1-w { background-position: 0 -64px; }
.ui-icon-arrowreturnthick-1-n { background-position: -16px -64px; }
.ui-icon-arrowreturnthick-1-e { background-position: -32px -64px; }
.ui-icon-arrowreturnthick-1-s { background-position: -48px -64px; }
.ui-icon-arrowreturn-1-w { background-position: -64px -64px; }
.ui-icon-arrowreturn-1-n { background-position: -80px -64px; }
.ui-icon-arrowreturn-1-e { background-position: -96px -64px; }
.ui-icon-arrowreturn-1-s { background-position: -112px -64px; }
.ui-icon-arrowrefresh-1-w { background-position: -128px -64px; }
.ui-icon-arrowrefresh-1-n { background-position: -144px -64px; }
.ui-icon-arrowrefresh-1-e { background-position: -160px -64px; }
.ui-icon-arrowrefresh-1-s { background-position: -176px -64px; }
.ui-icon-arrow-4 { background-position: 0 -80px; }
.ui-icon-arrow-4-diag { background-position: -16px -80px; }
.ui-icon-extlink { background-position: -32px -80px; }
.ui-icon-newwin { background-position: -48px -80px; }
.ui-icon-refresh { background-position: -64px -80px; }
.ui-icon-shuffle { background-position: -80px -80px; }
.ui-icon-transfer-e-w { background-position: -96px -80px; }
.ui-icon-transferthick-e-w { background-position: -112px -80px; }
.ui-icon-folder-collapsed { background-position: 0 -96px; }
.ui-icon-folder-open { background-position: -16px -96px; }
.ui-icon-document { background-position: -32px -96px; }
.ui-icon-document-b { background-position: -48px -96px; }
.ui-icon-note { background-position: -64px -96px; }
.ui-icon-mail-closed { background-position: -80px -96px; }
.ui-icon-mail-open { background-position: -96px -96px; }
.ui-icon-suitcase { background-position: -112px -96px; }
.ui-icon-comment { background-position: -128px -96px; }
.ui-icon-person { background-position: -144px -96px; }
.ui-icon-print { background-position: -160px -96px; }
.ui-icon-trash { background-position: -176px -96px; }
.ui-icon-locked { background-position: -192px -96px; }
.ui-icon-unlocked { background-position: -208px -96px; }
.ui-icon-bookmark { background-position: -224px -96px; }
.ui-icon-tag { background-position: -240px -96px; }
.ui-icon-home { background-position: 0 -112px; }
.ui-icon-flag { background-position: -16px -112px; }
.ui-icon-calendar { background-position: -32px -112px; }
.ui-icon-cart { background-position: -48px -112px; }
.ui-icon-pencil { background-position: -64px -112px; }
.ui-icon-clock { background-position: -80px -112px; }
.ui-icon-disk { background-position: -96px -112px; }
.ui-icon-calculator { background-position: -112px -112px; }
.ui-icon-zoomin { background-position: -128px -112px; }
.ui-icon-zoomout { background-position: -144px -112px; }
.ui-icon-search { background-position: -160px -112px; }
.ui-icon-wrench { background-position: -176px -112px; }
.ui-icon-gear { background-position: -192px -112px; }
.ui-icon-heart { background-position: -208px -112px; }
.ui-icon-star { background-position: -224px -112px; }
.ui-icon-link { background-position: -240px -112px; }
.ui-icon-cancel { background-position: 0 -128px; }
.ui-icon-plus { background-position: -16px -128px; }
.ui-icon-plusthick { background-position: -32px -128px; }
.ui-icon-minus { background-position: -48px -128px; }
.ui-icon-minusthick { background-position: -64px -128px; }
.ui-icon-close { background-position: -80px -128px; }
.ui-icon-closethick { background-position: -96px -128px; }
.ui-icon-key { background-position: -112px -128px; }
.ui-icon-lightbulb { background-position: -128px -128px; }
.ui-icon-scissors { background-position: -144px -128px; }
.ui-icon-clipboard { background-position: -160px -128px; }
.ui-icon-copy { background-position: -176px -128px; }
.ui-icon-contact { background-position: -192px -128px; }
.ui-icon-image { background-position: -208px -128px; }
.ui-icon-video { background-position: -224px -128px; }
.ui-icon-script { background-position: -240px -128px; }
.ui-icon-alert { background-position: 0 -144px; }
.ui-icon-info { background-position: -16px -144px; }
.ui-icon-notice { background-position: -32px -144px; }
.ui-icon-help { background-position: -48px -144px; }
.ui-icon-check { background-position: -64px -144px; }
.ui-icon-bullet { background-position: -80px -144px; }
.ui-icon-radio-on { background-position: -96px -144px; }
.ui-icon-radio-off { background-position: -112px -144px; }
.ui-icon-pin-w { background-position: -128px -144px; }
.ui-icon-pin-s { background-position: -144px -144px; }
.ui-icon-play { background-position: 0 -160px; }
.ui-icon-pause { background-position: -16px -160px; }
.ui-icon-seek-next { background-position: -32px -160px; }
.ui-icon-seek-prev { background-position: -48px -160px; }
.ui-icon-seek-end { background-position: -64px -160px; }
.ui-icon-seek-start { background-position: -80px -160px; }
/* ui-icon-seek-first is deprecated, use ui-icon-seek-start instead */
.ui-icon-seek-first { background-position: -80px -160px; }
.ui-icon-stop { background-position: -96px -160px; }
.ui-icon-eject { background-position: -112px -160px; }
.ui-icon-volume-off { background-position: -128px -160px; }
.ui-icon-volume-on { background-position: -144px -160px; }
.ui-icon-power { background-position: 0 -176px; }
.ui-icon-signal-diag { background-position: -16px -176px; }
.ui-icon-signal { background-position: -32px -176px; }
.ui-icon-battery-0 { background-position: -48px -176px; }
.ui-icon-battery-1 { background-position: -64px -176px; }
.ui-icon-battery-2 { background-position: -80px -176px; }
.ui-icon-battery-3 { background-position: -96px -176px; }
.ui-icon-circle-plus { background-position: 0 -192px; }
.ui-icon-circle-minus { background-position: -16px -192px; }
.ui-icon-circle-close { background-position: -32px -192px; }
.ui-icon-circle-triangle-e { background-position: -48px -192px; }
.ui-icon-circle-triangle-s { background-position: -64px -192px; }
.ui-icon-circle-triangle-w { background-position: -80px -192px; }
.ui-icon-circle-triangle-n { background-position: -96px -192px; }
.ui-icon-circle-arrow-e { background-position: -112px -192px; }
.ui-icon-circle-arrow-s { background-position: -128px -192px; }
.ui-icon-circle-arrow-w { background-position: -144px -192px; }
.ui-icon-circle-arrow-n { background-position: -160px -192px; }
.ui-icon-circle-zoomin { background-position: -176px -192px; }
.ui-icon-circle-zoomout { background-position: -192px -192px; }
.ui-icon-circle-check { background-position: -208px -192px; }
.ui-icon-circlesmall-plus { background-position: 0 -208px; }
.ui-icon-circlesmall-minus { background-position: -16px -208px; }
.ui-icon-circlesmall-close { background-position: -32px -208px; }
.ui-icon-squaresmall-plus { background-position: -48px -208px; }
.ui-icon-squaresmall-minus { background-position: -64px -208px; }
.ui-icon-squaresmall-close { background-position: -80px -208px; }
.ui-icon-grip-dotted-vertical { background-position: 0 -224px; }
.ui-icon-grip-dotted-horizontal { background-position: -16px -224px; }
.ui-icon-grip-solid-vertical { background-position: -32px -224px; }
.ui-icon-grip-solid-horizontal { background-position: -48px -224px; }
.ui-icon-gripsmall-diagonal-se { background-position: -64px -224px; }
.ui-icon-grip-diagonal-se { background-position: -80px -224px; }


/* Misc visuals
----------------------------------*/

/* Corner radius */
.ui-corner-all,
.ui-corner-top,
.ui-corner-left,
.ui-corner-tl {
	border-top-left-radius: 3px;
}
.ui-corner-all,
.ui-corner-top,
.ui-corner-right,
.ui-corner-tr {
	border-top-right-radius: 3px;
}
.ui-corner-all,
.ui-corner-bottom,
.ui-corner-left,
.ui-corner-bl {
	border-bottom-left-radius: 3px;
}
.ui-corner-all,
.ui-corner-bottom,
.ui-corner-right,
.ui-corner-br {
	border-bottom-right-radius: 3px;
}

/* Overlays */
.ui-widget-overlay {
	background: #aaaaaa;
	opacity: .3;
	filter: Alpha(Opacity=30); /* support: IE8 */
}
.ui-widget-shadow {
	-webkit-box-shadow: 0px 0px 5px #666666;
	box-shadow: 0px 0px 5px #666666;
}/**
 * Owl Carousel v2.2.0
 * Copyright 2013-2016 David Deutsch
 * Licensed under MIT (https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE)
 */
/*
 *  Owl Carousel - Core
 */
.owl-carousel {
  display: none;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
  /* position relative and z-index fix webkit rendering fonts issue */
  position: relative;
  z-index: 1; }
  .owl-carousel .owl-stage {
    position: relative;
    -ms-touch-action: pan-Y; }
  .owl-carousel .owl-stage:after {
    content: ".";
    display: block;
    clear: both;
    visibility: hidden;
    line-height: 0;
    height: 0; }
  .owl-carousel .owl-stage-outer {
    position: relative;
    overflow: hidden;
    /* fix for flashing background */
    -webkit-transform: translate3d(0px, 0px, 0px); }
  .owl-carousel .owl-item {
    position: relative;
    min-height: 1px;
    float: left;
    -webkit-backface-visibility: hidden;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none; }
  .owl-carousel .owl-item img {
    display: block;
    width: 100%;
    -webkit-transform-style: preserve-3d; }
  .owl-carousel .owl-nav.disabled,
  .owl-carousel .owl-dots.disabled {
    display: none; }
  .owl-carousel .owl-nav .owl-prev,
  .owl-carousel .owl-nav .owl-next,
  .owl-carousel .owl-dot {
    cursor: pointer;
    cursor: hand;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none; }
  .owl-carousel.owl-loaded {
    display: block; }
  .owl-carousel.owl-loading {
    opacity: 0;
    display: block; }
  .owl-carousel.owl-hidden {
    opacity: 0; }
  .owl-carousel.owl-refresh .owl-item {
    visibility: hidden; }
  .owl-carousel.owl-drag .owl-item {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none; }
  .owl-carousel.owl-grab {
    cursor: move;
    cursor: grab; }
  .owl-carousel.owl-rtl {
    direction: rtl; }
  .owl-carousel.owl-rtl .owl-item {
    float: right; }

/* No Js */
.no-js .owl-carousel {
  display: block; }

/*
 *  Owl Carousel - Animate Plugin
 */
.owl-carousel .animated {
  -webkit-animation-duration: 1000ms;
          animation-duration: 1000ms;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both; }

.owl-carousel .owl-animated-in {
  z-index: 0; }

.owl-carousel .owl-animated-out {
  z-index: 1; }

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

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

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

/*
 * 	Owl Carousel - Auto Height Plugin
 */
.owl-height {
  transition: height 500ms ease-in-out; }

/*
 * 	Owl Carousel - Lazy Load Plugin
 */
.owl-carousel .owl-item .owl-lazy {
  opacity: 0;
  transition: opacity 400ms ease; }

.owl-carousel .owl-item img.owl-lazy {
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d; }

/*
 * 	Owl Carousel - Video Plugin
 */
.owl-carousel .owl-video-wrapper {
  position: relative;
  height: 100%;
  background: #000; }

.owl-carousel .owl-video-play-icon {
  position: absolute;
  height: 80px;
  width: 80px;
  left: 50%;
  top: 50%;
  margin-left: -40px;
  margin-top: -40px;
  background: url(//jaquesofalltrades.com/wp-content/themes/buildnet/assets/css/owl.video.play.png) no-repeat;
  cursor: pointer;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  transition: -webkit-transform 100ms ease;
  transition: transform 100ms ease; }

.owl-carousel .owl-video-play-icon:hover {
  -webkit-transform: scale(1.3, 1.3);
      -ms-transform: scale(1.3, 1.3);
          transform: scale(1.3, 1.3); }

.owl-carousel .owl-video-playing .owl-video-tn,
.owl-carousel .owl-video-playing .owl-video-play-icon {
  display: none; }

.owl-carousel .owl-video-tn {
  opacity: 0;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: opacity 400ms ease; }

.owl-carousel .owl-video-frame {
  position: relative;
  z-index: 1;
  height: 100%;
  width: 100%; }

/*========= Dark Home========= */
#dark .about-h9 {
    background: #2a2c47;
}
#dark .service-img-h9 {
    background: #1f2235;
}
#dark .service-img-h9 .item .lower-content {
    border: 1px solid #1f2235;
    background: #2a2c47;
}
#dark .about-h9 .left-side h2 {
    color: #ffffff;
}
#dark .about-h9 .right-side h3 {
    color: #d7d7d7;
}
#dark p {
    color: #ffffff;
}
#dark .about-h9 .right-side p {
    color: #ffffff;
}
#dark .service-img-h9 .item .lower-content .text p {
    color: #ffffff;
}
#dark .service-img-h9 .item .lower-content .title h3 a {
    color: #ffffff;
}
#dark .funfact-skill-h9 {
    background: #2a2c47;
}
#dark .funfact-skill-h9 .skill .sec-title .title-two h2 {
    color: #ffffff;
}
#dark .funfact-skill-h9 .skill-title h3 {
    color: #ffffff;
}
#dark h3 {
    color: #ffffff!important;
}
#dark .funfact-skill-h9:before {
    position: absolute;
    left: 0;
    top: 0;
    width: 35%;
    height: 100%;
    content: "";
    background: #1f2235;
}
#dark .funfact-skill-h9 .funfact .column .count-text {
    color: #ffffff;

}
#dark .portfolio-h9 {
    background: #313552!important;
}
#dark .sec-title h2 {
    color: #fff!important;
}
#dark .portfolio-h9 .filters li {
    color: #ffffff;

}
#dark .service-img-h9 .content-box {
    background: #2a2c47;
}
#dark .service-img-h9 .theme-btn {
    background: #FF0000;
}
#dark .call-to-action-h8:before {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: rgba(31, 34, 53, 0.93);
    content: "";
}
#dark .team-h9 {
    background: #1f2235;
}
#dark .team-h9 .item .title-box h3 a {
    color: #ffffff;
}
#dark .pricing-h9 {
    background: #313552;
}
#dark .pricing-h9:before {
    position: absolute;
    left: 0;
    bottom: -30px;
    background: none;
    width: 100%;
    height: 500px;
    content: "";
    background-repeat: no-repeat;
    background-position: center center;
}
#dark .pricing-h9 .pricing-table .inner-box {
    background: #1f2235;
    border: 1px solid #1f2235;
}
#dark .pricing-h9 .pricing-table .price {
    color: #ffffff;
}
#dark .pricing-h9 .pricing-table .table-content ul li {
    color: #ffffff;
}
#dark .pricing-h9 .pricing-table.tagged .table-content ul li {
    color: #ffffff;
}
#dark .latest-news-h9 {
    background: #1f2235;
    background-image: none!important;
    margin-bottom: 0;
    padding-bottom: 100px;
}
#dark .latest-news-h9 .inner-box .lower-content {
    background: #2c304a;
    margin-bottom: 0;
}
#dark .latest-news-h9 .inner-box .lower-content h3 a {
    color: #ffffff;
}
#dark  .clients-h8 {
    background: #313552;
    background-image: none!important;
}
#dark .header-top-two {
    background: #1f2235;
}
#dark .header-top-two .top-left .header-info-list li {
    color: #ffffff;
}
#dark .header-top-two .top-right .quote-btn {
    background-color: #313552;
}
#dark .header_style_2 .header-upper {
	background-color: #000;
}
#dark .main-menu .navigation > li > a {
    color: #fff;
}
#dark .main-header .header-upper .support-box .support {
    color: #ffffff;
}
#dark .call-to-action-h8 .left-side h2 {
    color: #ffffff;
}
#dark img{
    filter: -webkit-grayscale(1);
    filter: -moz-grayscale(1);
    filter: -ms-grayscale(1);
    filter: -o-grayscale(1);
    filter: grayscale(1);
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}
#dark img:hover {
    filter: -webkit-grayscale(0);
    filter: -moz-grayscale(0);
    filter: -ms-grayscale(0);
    filter: -o-grayscale(0);
    filter: grayscale(0);
}

#dark .banner-section-h9 {
    filter: -webkit-grayscale(1);
    filter: -moz-grayscale(1);
    filter: -ms-grayscale(1);
    filter: -o-grayscale(1);
    filter: grayscale(1);
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}
#dark .sticky-header {
    background: #1f2235;
}
#dark .sticky-header .main-menu .navigation > li > a {
    color: #ffffff !important;
}
#dark .service-img-h9:after {
    position: absolute;
    left: -124px;
    top: 246px;
    height: 500px;
    width: 521px;
    background-image: url(//jaquesofalltrades.com/wp-content/themes/buildnet/assets/images/background/123.png);
    content: "";
    background-repeat: no-repeat;
    background-position: left top;
    z-index: 9;
}
#dark .funfact-skill-h9 .progress-bar .value-holder .value {
    color: #fff;
}
#dark .funfact-skill-h9 .progress-bar .value-holder {
    color: #ffffff;
}
#dark .about-h9 .left-side h2:before {
    position: absolute;
    left: -145px;
    top: 0;
    height: 79px;
    width: 67px;
    background-image: url(//jaquesofalltrades.com/wp-content/themes/buildnet/assets/images/background/16.png);
    content: "";
    background-repeat: repeat;
    background-position: left top;
    z-index: 99;
}
#dark .about-h9:after {
    position: absolute;
    right: -121px;
    top: 202px;
    height: 500px;
    width: 300px;
    background-image: url(//jaquesofalltrades.com/wp-content/themes/buildnet/assets/images/background/dot.png);
    content: "";
    background-repeat: no-repeat;
    background-position: right top;
    z-index: 9;
}
#dark .banner-section-h9 {
    padding: 142px 0px;
}
#dark .banner-section-h9:hover{
    filter: -webkit-grayscale(0);
    filter: -moz-grayscale(0);
    filter: -ms-grayscale(0);
    filter: -o-grayscale(0);
    filter: grayscale(0);
}
#dark .pricing-h9 .pricing-table .inner-box:hover img{
    filter: -webkit-grayscale(0);
    filter: -moz-grayscale(0);
    filter: -ms-grayscale(0);
    filter: -o-grayscale(0);
    filter: grayscale(0);
}
#dark .title-fill:after {
    color: #ffffff!important;
}
#boxed{
	max-width:1300px;
	background:#fff;
}
.boxed_home{
	background-attachment:fixed;
}
.boxed-3{
	    background: #010c2e;
}
#dark .goals-section {
    background: #2a2c47;
}
#dark p,#dark .text{
    color: #fff!important;
}
#dark h2,#dark h3 a{
    color: #ffffff!important;
}
#dark .goals-section:before {
    background-color: #1f2235;
}
#dark .services-section-three {
    background: #000000;
}
#dark .task-section:before {
    background-color: #2a2c47;
}
#dark .offer-section-two {
    background: #1f2235;
}
#dark .services-block-three .inner-box {
    background: #2a2c47;
}
#dark .fact-counter .count-outer .count-text {
    color: #ffffff;
}
#dark .fact-counter .column .counter-title {
    color: #ffffff;
}
#dark .fact-counter .column .inner .count-outer {
    color: #FF0000;
}
#dark .offer-section-two .counter-box {
    background: #2a2c47;
}
#dark .feature-block .inner-box {
    background: #2a2c47;
}
#dark .consult-block .inner-box {
    background-color: #2a2c47;
}
#dark .list-style-two li {
    color: #ffffff;
}
#dark .list-style-two li:before {
    color: #ffffff;
}
#dark .main-slider .slide {
    filter: -webkit-grayscale(1);
    filter: -moz-grayscale(1);
    filter: -ms-grayscale(1);
    filter: -o-grayscale(1);
    filter: grayscale(1);
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}
#dark .main-slider .slide:hover {
    filter: -webkit-grayscale(0);
    filter: -moz-grayscale(0);
    filter: -ms-grayscale(0);
    filter: -o-grayscale(0);
    filter: grayscale(0);
}
#dark .main-slider .text .text-two {
    background: #000000;

}
#dark .strategy-section {
    background: #2a2c47;
}
#dark .strategy-section:before {
    background-color: #2a2c47;
}
#dark .title{
    color: #ffffff!important;
}
#dark .subtitlexx h4 {
    color: #ffffff!important;
}
#dark .stories-section:before {
    position: absolute;
    content: '';
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    display: block;
    background-color: #1f2235fa;
}
#dark .story-block .inner-box .lower-content {
    background: #2a2c47;
}
#dark .services-section-four {
    background: #1f2235;
}
#dark .services-block-four .inner-box {
    background: #2a2c47;
    box-shadow: 0px 7px 38px 0px rgba(0, 0, 0, 0.1);
}

#dark .feature-block-three .inner-box {
    position: relative;
    padding: 70px 60px 70px;
    /* border-top: 1px solid #dddddd; */
    /* border-bottom: 1px solid #dddddd; */
    background: #2a2c47;
}
#dark .feature-block-three.black .inner-box {
    background-color: #10121c;
    border-color: #222222;
}
#dark .feature-block-three.pink .inner-box {
    background-color: #10121c;
}
#dark .fluid-section-four .content-column {
    background: #2a2c47;
}
#dark .beyong-section .beyong-tabs .tabs-content {
    background-color: #2a2c47;
}
#dark .testimonial-section-two {
    background: #2a2c47;
}
#dark .sec-title .title-text {
    color: #ffffff!important;
}
#dark .testimonial-block-three .inner-box .author {
    color: #ffffff;
}
#dark .news-section-four {
    background: #1f2235;
}
#dark .news-section-four:before {
    background-color: #1b1e2e;
}
#dark .news-block-four .inner-box .content-column .post-info li:first-child {
    color: #ffffff;
}
#dark .news-block-four .inner-box .content-column .post-info li {
    color: #ffffff;
}
#dark .main-footer {
    background: #0f111a;
}
#dark .list-style-one li,#dark .footer-link li a,#dark .posts-widget .post .text a,#dark .social-icon-one li a{
	color:#fff!important;
}
#dark .main-footer .newsletter-widget .form-group input[type="email"] {
	border: 1px solid rgb(15, 17, 26);
}
#dark .posts-widget .post .post-date li {
    color: #b0b0b0;
}

/* Slider */
.slick-slider
{
    position: relative;

    display: block;
    box-sizing: border-box;

    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;

    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
        touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list
{
    position: relative;

    display: block;
    overflow: hidden;

    margin: 0;
    padding: 0;
}
.slick-list:focus
{
    outline: none;
}
.slick-list.dragging
{
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list
{
    -webkit-transform: translate3d(0, 0, 0);
       -moz-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
         -o-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
}

.slick-track
{
    position: relative;
    top: 0;
    left: 0;

    display: block;
    margin-left: auto;
    margin-right: auto;
}
.slick-track:before,
.slick-track:after
{
    display: table;

    content: '';
}
.slick-track:after
{
    clear: both;
}
.slick-loading .slick-track
{
    visibility: hidden;
}

.slick-slide
{
    display: none;
    float: left;

    height: 100%;
    min-height: 1px;
}
[dir='rtl'] .slick-slide
{
    float: right;
}
.slick-slide img
{
    display: block;
}
.slick-slide.slick-loading img
{
    display: none;
}
.slick-slide.dragging img
{
    pointer-events: none;
}
.slick-initialized .slick-slide
{
    display: block;
}
.slick-loading .slick-slide
{
    visibility: hidden;
}
.slick-vertical .slick-slide
{
    display: block;

    height: auto;

    border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
    display: none;
}progress,sub,sup
{vertical-align:baseline}

.main-icon {
	display: inline-block;
	width: 100px;
	height: 100px;
}
.svg_icon{
	margin:15px;
	width: 100px;
	height: 100px;
	display: inline-block;
}
svg{
}
svg * {
	fill: none;
}
svg path{
	fill-opacity: 0;
	stroke: #FF0000;
	stroke-width: 5;
	fill: #fff;
	-webkit-transition: fill-opacity 0.5s ease-in 0s;
	-moz-transition: fill-opacity 0.5s ease-in 0s;
	-ms-transition: fill-opacity 0.5s ease-in 0s;
	-o-transition: fill-opacity 0.5s ease-in 0s;
	transition: fill-opacity 0.5s ease-in 0s;
}
svg.finish path{
	fill-opacity: 1;
}
.svg_icon {
    background: #ffffff;
    padding: 20px;
    border-radius: 50%;
}


/*Bluererr Iamge */

.progressive{overflow:hidden;position:relative;background:#efefef}.progressive__img{width:100%;height:100%;transform:translateZ(0)}.progressive--not-loaded{filter:blur(30px);transform:scale(1.1)}.progressive--is-loaded{filter:blur(20px);animation:a .5s both;transform:scale(1)}@keyframes a{0%{filter:blur(20px)}to{filter:blur(0)}}/*Error Section*/
.error-section{
	position:relative;
	padding:190px 0px 200px;
	background-repeat:no-repeat;
	background-size:cover;
	background-position:center center;
}

.error-section:before {
    position: absolute;
    content: '';
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    display: block;
    background-color: rgba(26, 26, 28, 0);
}
.error-section .thm-btn1 {
    color: #f28b1d;
}

.error-section .content{
	position:relative;
}

.error-section h1 {
    position: relative;
    display: block;
    font-size: 200px;
    line-height: 150px;
    color: #161616;
    font-weight: 700;
    margin-bottom: 15px;
    text-align: center;
}

.error-section h2 {
    position: relative;
    display: block;
    font-size: 44px;
    line-height: 52px;
    color: #444;
    font-weight: 600;
    margin-bottom: 21px;
    text-align: center;
}

.error-section .text {
    position: relative;
    color: #000000;
    font-size: 18px;
    font-weight: 500;
    margin-top: 10px;
    margin-bottom: 35px;
    text-align: center;
}


/*Error Section*/

 h4.er_the_title{
    color: #fff;
    font-size: 30px;
    margin-bottom: 10px;
}
.error_text2{
    margin-bottom: 20px;
    color: #fff;
}
.sr_title{
    font-size: 25px;
    margin-bottom: 20px;
    color: #000;
    font-weight: 600;
}
.search_text p{
    font-size: 17px;
    color: #161616;
    font-weight: 500;
    text-align: left;
}
.search_text{
    font-size: 17px;
    color:#414141;
    font-weight: 500;
    margin-bottom: 30px;
}
.search_page_btn a{
    margin-top: 20px;
    margin-bottom: 20px;
}

.error-section .search-form button {
    position: relative;
    top: -60px;
    left: -27px;
    font-size: 14px;
    font-weight: 700;
    color: #4527a4;
    background: transparent;
    cursor: pointer;
    transition: all 500ms ease;
    line-height: 61px;
    float: right;
}
.search_title{
    font-size: 30px;
    color: #f36525;
    font-weight: 600;
    margin-bottom: 20px;
    text-align: left;
    margin-top: 120px;
    text-transform: uppercase;
}
.search_area_df{
	padding: 0px 0px 0px;
}

/*===== Page Loader =====*/
.pageloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 99999;
    background-color: rgba(255,255,255,.95);
}
.pageloader .loader {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}
.search_area_df {
    background-repeat: no-repeat;
}
.error_btn{
    position: relative;
    display: inline-block;
    overflow: hidden;
    font-size: 16px;
    line-height: 30px;
    font-weight: 700;
    color: #fff !important;
    padding: 14px 32px;
    text-align: center;
    cursor: pointer;
    border-radius: 8px;
    z-index: 1;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    transition: all 500ms ease;
    /* background: linear-gradient(90deg, var(--c1, #ff5700), var(--c2, #ffd000 ) 50%, var(--c1, #ff5700)) var(--x, 0)/ 200%; */
    background: #FF0000;
}
.errobtn_area{
    text-align: left!important;
    margin-top:30px;
}
.error_btn:hover{
	background:#222;
	color:#fff;
	    transition: all 500ms ease;
}
.search_area_df:before {
    position: absolute;
    right: 0;
    content: "";
    width: 317px;
    height: 100%;
    background-repeat: no-repeat;
    background: #ffffff0d;
    border: 10px;
}

.footer-h6 .gallery-widget ul li .image .overlay-box {
    display: none;
}
.pagination {
    margin-bottom: 30px;
}
@media only screen and (max-width: 991px){
.page-title:after {
   display:none;
}
}

 .searcg_img img{
    width: 327px;
    margin-top: 191px;
}/*Sidebar & Footer Default Style*/
/************************ Blog Widget Style************************/
.widget ul{
	position:relative;	
}
.widget ul li {
    position: relative;
    padding-bottom: 10px;
    display: block;
    transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    text-transform: capitalize;
    color: #242f6c;
}
.widget ul li a {
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    /* font-size: 15px; */
    font-weight: 500;
    color: #7e8597;
    padding-left: 15px;
    transition: .5s ease;
    text-transform: capitalize;
    color: #2c2c2c;
    font-weight: 500;
    /* font-size: 16px!important; */
}
.widget ul li.recentcomments a {
    padding-left: 0px!important;
}

.widget ul li a:hover{
    color: #313131;	
}

/****************Custom Widget*********************/
.widget select{
	width:100%;
	display:block;
	border:1px solid #ededed;
	padding:6px 6px;
	margin-top:15px;
	height:50px;
}
.textwidget img {
    height: auto;
    max-width: 100%;
}
.widget ul li ul{
	padding:0px;
	margin:0px;
}
.widget ul li ul li{
	border-bottom:none;
	margin-bottom:0px;
	padding-bottom:0px;
	margin-top:10px;
	padding-top:10px;
	margin-left:0px;
}

.widget ul li ul li:after{
	top:10px;
}

.tagcloud a {
    position: relative;
    display: inline-block;
    line-height: 24px;
    padding: 6px 18px 6px;
    margin: 0px 6px 10px 0px;
    color: #222;
    text-align: center;
    font-size: 14px !important;
    background: none;
    font-weight: 600;
    border: 1px solid #e4e4e4;
    text-transform: capitalize;
    transition: all 300ms ease;
    -webkit-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
}
.tagcloud a:hover {
    border-color:#0081ff;
    background-color:#0081ff;
    color: #ffffff;
}
.mrsidebar{
    margin-bottom: 40px!important;
    /* padding: 30px; */
}

.mrsidebar .sidebar-title h3:before {
    background: -webkit-linear-gradient(0deg, #00b8ff, #0081ff 100%);
}

.widget ul li ul.children li a:before {
    top: -2px;

}
.widget ul li ul.sub-menu li a:before {
    top: -2px;
}



/*** 

====================================================================
	Comments Area
====================================================================

 ***/
 
/*********************Comments Styling*******************/
.mr_singlecomment{
	padding-left:0px!important;
}
.comment_author {
    position: absolute;
    width: 90px;
    margin-top: 15px;
}
.comment_author img{
	border-radius:50%;
}
.mr_comments_area>ul>ul {
    margin-left: 0px!important;
}
.mr_comments_area .comment-box .comment.pingback{
	padding-left:0px;
}
.mr_comments_area .comment-box .comment.pingback .comment_author {
	display:none;
}
.no-comments{
	display:inline-block;
	background:#2c2c2c;
	padding:8px 15px;
	color:#ffffff;
	margin-top:20px;
}

#recentcomments li:after {
    display:none!important;
}
.mr_comments_area .comment ul.children.comment{
    padding-left:0px!important;
}

.comment .comment-inner>h4 {
    margin: 0px;
    display: block;
    font-size: 20px;
    line-height: 30px;
    font-weight: 600;
}
.mr_comments_area{
	position:relative;
	margin-top:30px;
	margin-bottom:50px;
}


.mr_comments_area .comment-box{
	position:relative;
	-webkit-transition:all 300ms ease;
	-ms-transition:all 300ms ease;
	-o-transition:all 300ms ease;
	-moz-transition:all 300ms ease;
	transition:all 300ms ease;
}

.mr_comments_area .comment-box:last-child .comment{
	padding-bottom: 0px;
	border-bottom: 0px;	
}

.mr_comments_area .comment-box:hover{
	border-color:#eb5310;	
}

.mr_comments_area .comment-box.reply-comment{
	margin-left:50px;
}

.comment-box>li.comment{
	position:relative;
	font-size:14px;
	padding: 0px 0px 0px 110px;
	list-style: none;
}

.comment-box>li.comment ul.children{
	margin-left: -100px;;
}
.comment-box>li.comment ul.children li.comment {
    padding: 0px 0px 0px 110px;
}


.mr_comments_area .comment-inner{
	position:relative;
	padding: 0px 0px 0px 110px;
}

.mr_comments_area .comment .comment-inner .text{
	position:relative;
	color:#7e7e7e;
	font-size:18px;
	line-height:1.5em;
	margin-bottom: 15px;
}

.mr_comments_area .comment-box .commenter-photo{
	position:absolute;
	left:0px;
	top:0px;
	overflow:hidden;
	margin-bottom:20px;
}

.mr_comments_area .comment-box .commenter-photo img{
	width:80px;
	display:block;
}

.mr_comments_area .comment-info{
	position:relative;
	color:#1e1e29;
	line-height:24px;
	font-size:18px;
	font-weight: 600;

}

.mr_comments_area .comment-info a{
	position:relative;
	color:#1e1e29;
}
.comment-box .time {
    font-size: 14px;
    color: #5e5e5e;
    font-weight: 500;
    margin: 5px 0px;
    text-transform: uppercase;
    letter-spacing: .5px;
}
.comment-info .name h4{
	font-size: 16px;
	padding-bottom: 0px;
	margin-bottom: 0px;
	text-transform: capitalize;
}
.mr_comments_area .comment-box .reply-comment{
	position: absolute;
	color: #222;
	font-size:16px;
	font-weight: 600;

	right: 0;
	top: 30px;
	transition: .5s ease;
}

.mr_comments_area .comment-box .reply-comment:hover {
	color: #f13729;
}

.mr_comments_area .comment-box .reply-comment .icon{
	position: relative;
	margin-right: 5px;
}
.mr_comments_area .replay-btn {
    position: absolute;
    top: 20px;
    right: 20px;
}
.replay-btn a:after {
    content: "\f105";
    /* font-family: 'Font Awesome 5 Free'; */
    font-weight: 600;
    font-family: 'FontAwesome';
}
.mr_comments_area .replay-btn a {
    position: relative;
    display: inline-block;
    font-size: 14px;
    font-weight: 500;
    color: #ff4328;
    padding: 3px 23px;
    text-align: center;
    border-radius: 6px;
    z-index: 1;
    overflow: hidden;
    /* background: red; */
}
.mr_comments_area .replay-btn a:hover {
    /* background:#222; */
    color: #333;
}
.mr_comments_area .depth-2{
	
	margin-left:30px;
}
.mr_comments_area .depth-3{
    margin-left: 60px;
}
.mr_comments_area .depth-4{
    margin-left: 90px;
}
.mr_comments_area .depth-5{
    margin-left: 120px;
}
@media only screen and (max-width: 800px){
	.mr_comments_area .depth-2{
	
	margin-left:0px!important;
}
.mr_comments_area .depth-3{
    margin-left: 0px!important;
}
.mr_comments_area .depth-4{
    margin-left: 0px!important;
}
.mr_comments_area .depth-5{
    margin-left: 0px!important;
}
}
/*Comment Form*/

.comment-form{
	position:relative;
	margin-bottom: 30px;
}

.comment-form .form-group{
	position:relative;
	margin-bottom:10px;
}

.comment-form .form-group:last-child{
	margin-bottom:0px;
}

.comment-form .form-group input[type="text"],
.comment-form .form-group input[type="password"],
.comment-form .form-group input[type="tel"],
.comment-form .form-group input[type="email"],
.comment-form .form-group select{
	position:relative;
	display:block;
	width:100%;
	line-height:28px;
	padding:15px 20px;
	height:55px;
	color:#7c7b7b;
	font-size: 16px;
	font-weight:400;
	background:#ffffff;
	border:1px solid #eef2ed;
	-webkit-transition:all 300ms ease;
	-ms-transition:all 300ms ease;
	-o-transition:all 300ms ease;
	-moz-transition:all 300ms ease;
	transition:all 300ms ease;
}

.comment-form .form-group input[type="text"]:focus,
.comment-form .form-group input[type="password"]:focus,
.comment-form .form-group input[type="tel"]:focus,
.comment-form .form-group input[type="email"]:focus,
.comment-form .form-group select:focus,
.comment-form .form-group textarea:focus{
	border-color: #f13729;
}

.comment-form .form-group textarea{
	position:relative;
	display:block;
	width:100%;
	line-height:26px;
	padding:10px 20px;
	color:#7c7b7b;
	font-size: 16px;
	font-weight:400;
	background:#ffffff;
	resize:none;
	height: 125px;
	border:1px solid #eef2ed;
	-webkit-transition:all 300ms ease;
	-ms-transition:all 300ms ease;
	-o-transition:all 300ms ease;
	-moz-transition:all 300ms ease;
	transition:all 300ms ease;
}

.comment-form button{
	position:relative;
	display: block;
	margin-top:10px;
}
.comment-box .comment{
    padding-bottom: 0px!important;
    margin-bottom: 0px;
}
#commentform input#author,#commentform input#email,
#commentform textarea {
    border: none;
    outline: none;
    width: 100%;
    height: 50px;
    border-radius: 0px;
    background: #0000000a;
    color: #747474;
    font-size: 16px;
    padding-left: 15PX;
    margin-bottom: 20px;
    display: block;
}
#commentform textarea{
    height: 182px;
    padding-top: 15px;
    padding-left: 15px;
}
#commentform .submit.theme-btn.style-four {
    border: none;
    outline: none;
    display: inline-block;
    vertical-align: middle;
    background: #FF0000;
    border-radius: 0px;
    color: #fff;
    font-weight: 500;
    font-size: 16px;
    padding: 18px 69px;
    -webkit-transition: all .4s;
    transition: all .4s;
    background: #FF0000;
    color: #ffffff;
    line-height: 30px;
}
#commentform .submit.theme-btn.style-four:hover {
    background: #222;
    color: #fff;
}
.mrsidebar #recentcomments li.recentcomments a:before{
	display:none!important;
}








aside.sidebar-wrapper {
    position: relative;
    padding-left: 10px;
}
#search-2 input {
	position: relative;
    line-height: 33px;
    padding: 10px 50px 10px 20px;
    background: #ffffff;
    display: block;
    font-size: 14px;
    width: 100%;
    height: 55px;
    font-weight: 400;
    border: 1px solid #eeeeee;
    transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    /* box-shadow: 0px 2px 4px 0px rgba(255, 72, 0, 0.73);*/
}
#search-2 button {
    position: absolute;
    right: 26px;
    /* top: 55px; */
    height: 55px;
    width: 60px;
    display: block;
    font-size: 16px;
    color: #ffffff;
    cursor: pointer;
    line-height: 55px;
    background: #FF0000;
    font-weight: normal;
}

/*Blog Cat*/

#categories-2 ul {
	position: relative;
}

#categories-2 ul li {
    position: relative;
    margin-bottom: 5px;
    padding-bottom: 0;
}

#categories-2 ul li a{
	position: relative;
	font-size: 16px;
	display: block;
	color:#222222;
	font-weight: 500;
	letter-spacing: 1px;
	padding: 14px 30px;
	transition:all 0.3s ease;
	-moz-transition:all 0.3s ease;
	-webkit-transition:all 0.3s ease;
	-ms-transition:all 0.3s ease;
	-o-transition:all 0.3s ease;
	/* text-transform: uppercase; */
	background-color: #f9f8fc;
	font-family: 'Poppins', sans-serif;
}

#categories-2 ul li a:hover,
#categories-2 ul li.current-cat a{
	color:#ffffff;
	background-color: #FF0000;
	border-left: 5px solid #001659;
}


#buildnet_recent_post-2 {}
#buildnet_recent_post-2 .sidebar-widget {
    padding: 0;
    border: transparent;
}
#buildnet_recent_post-2 .sidebar-widget .widget-content {}
#buildnet_recent_post-2 .sidebar-widget .widget-content .post {
    position: relative;
    font-size: 14px;
    color: #666666;
    padding: 0px 0px;
    padding-left: 100px;
    min-height: 100px;
    margin-bottom: 25px;
    border-bottom: 1px solid #eeeeee;
}
#buildnet_recent_post-2 .sidebar-widget .widget-content .post .post-thumb {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 80px;
    /* border-radius: 5px; */
}
#buildnet_recent_post-2 .sidebar-widget .widget-content .post .post-thumb a {
	color: #FF0000;
}
#buildnet_recent_post-2 .sidebar-widget .widget-content .post .post-thumb a img {
    display: block;
    width: 100%;
    transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    border-radius: 5px;
}
#buildnet_recent_post-2 .sidebar-widget .widget-content .post h6 {
    position: relative;
    top: -4px;
    font-size: 16px;
    margin: 0px 0px 0px;
    font-weight: 600;
    color: #222222;
    line-height: 1.6em;
    text-transform: capitalize;
    font-family: 'Poppins', sans-serif;
}
#buildnet_recent_post-2 .sidebar-widget .widget-content .post h6 a {
color: #222222;
    transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}
#buildnet_recent_post-2 .sidebar-widget .widget-content .post .post-date {font-size: 13px;color: #6d6d6d;font-weight: 600;margin-bottom: 6px;text-transform: uppercase;}


#tag_cloud-2 a {
    position: relative;
    display: inline-block;
    line-height: 24px;
    padding: 9px 20px 9px;
    margin: 0px 3px 8px 0px;
    color: #ffffff;
    text-align: center;
    font-size: 13px;
    font-weight: 600;
    text-transform: capitalize;
    background: none;
    /* border: 1px solid #001659; */
    transition: all 300ms ease;
    -webkit-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    /* font-family: 'Poppins', sans-serif; */
    /* box-shadow: 0px 4px 6px 0px rgba(255, 72, 0, 0.73); */
    background: #001659;
    border-radius: 4px;
}
#tag_cloud-2 a:hover {
    border-color: unset;
    background-color: unset;
    color: unset;
}

.newsletter-box .form-group input[type="text"], .newsletter-box .form-group input[type="email"] {
    margin-bottom: -20px;
}
#respond h2 {
    margin-bottom: 0px;
    font-size: 30px!important;
    line-height: 35px;
    font-weight: 600!important;
    margin-top: 50px;
    margin-bottom: 25px;
    /* text-transform: uppercase; */
}
.comment_titlebox .comments_title{
	 margin-bottom: 0px;
	 font-size: 30px;
	 line-height: 1.5em;
	 font-weight: 600;
	 margin-top: 30px;
	 margin-bottom: 25px;
	 /* text-transform: uppercase; */
}.kc_row .kc_col-sm-12{
 padding-left:0px !important;
 padding-right:0px !important; 
}
.admin-bar .fixed-header .sticky-header{
	top:32px;
}
.admin-bar .fixed-header .sticky-header {
    top: 32px!important;
}
@media (max-width: 1140px) {
 .admin-bar .header-style-one{
    top: 0px!important;
}
}

@media (max-width: 660px) {
.admin-bar .stricky-fixed{
    top: 0px!important;
}
}
.kc_column>.kc-col-container{
	display:block;
}
.kc-row-container.kc-container{
	max-width:1200px;
	width:100%;
}


/*--------------------------theme check----------------------------------*/
	#wp-calendar {
		width: 100%;
	}
	#wp-calendar caption {
		text-align: right; 
		color: #333; 
		font-size: 14px; 
		margin-top: 10px;
		margin-bottom: 15px;
	}
	#wp-calendar thead { 
		font-size: 14px;
	}
	#wp-calendar thead th {
    padding: 10px;
    background: #ff4328;
    color: #fff;
    border: 1px solid #b6b6b6;
    text-align: center;
}
	#wp-calendar tbody { 
		color: #aaa; 
	}
	#wp-calendar tbody td {
		background: #202020;
		border: 1px solid #2d2845;
		text-align: center;
		padding:8px;
	}
	#wp-calendar tbody td a{ 
		color:#fff!important;
	}
	#wp-calendar tbody td:hover{
		background: #a6a6a6!important;
		color: #fff!important;
	}

	#wp-calendar tbody .pad { 
		background: none; 
	}
	#wp-calendar tfoot #next { 
		font-size: 14px; 
		text-transform: uppercase; 
		text-align: right;
	}
	#wp-calendar tfoot #prev { 
		font-size: 14px; 
		text-transform: uppercase; 
		padding-top: 10px; 
	}
	
	.sticky .inner-box .wp-style {border: 3px solid #fff; padding:20px !important; }
	.sticky .post .post-content{ background-color:transparent; }
	.wp-caption {
	text-align: center;
	background-color: #f3f3f3;
	padding-top: 4px;
	margin: 10px;
	-moz-border-radius: 3px;
	-khtml-border-radius: 3px;
	-webkit-border-radius: 3px;
	border-radius: 3px;
	}
	
	.gallery-caption {
		font-size:15px;
		color:#777777;
		line-height:1.8em;
		font-weight:400;
		background:#ffffff;
		-webkit-font-smoothing: antialiased;
		-moz-font-smoothing: antialiased;	
	}
	.bypostauthor{
		font-size:15px;
		color:#777777;
		line-height:1.8em;
		font-weight:400;
		background:#ffffff;
		-webkit-font-smoothing: antialiased;
		-moz-font-smoothing: antialiased;
			
	}
	.alignright{ 
		text-align:right;
	}
	.alignleft{ 
		text-align:left;
	}
	.aligncenter{ 
		text-align:center;
	}	
	.alignnone {
    margin: 5px 20px 20px 0;
}

.aligncenter,
div.aligncenter {
    display: block;
    margin: 5px auto 5px auto;
}

.alignright {
    float:right;
    margin: 5px 0 20px 20px;
}

.alignleft {
    float: left;
    margin: 5px 20px 20px 0;
}

a img.alignright {
    float: right;
    margin: 5px 0 20px 20px;
}

a img.alignnone {
    margin: 5px 20px 20px 0;
}

a img.alignleft {
    float: left;
    margin: 5px 20px 20px 0;
}

a img.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto
}

.wp-caption {
    background: #fff;
    max-width: 96%; /* Image does not overflow the content area */
    padding: 5px 3px 10px;
    text-align: center;
}

.wp-caption.alignnone {
    margin: 5px 20px 20px 0;
}

.wp-caption.alignleft {
    margin: 5px 20px 20px 0;
}

.wp-caption.alignright {
    margin: 5px 0 20px 20px;
}

.wp-caption img {
    border: 0 none;
    height: auto;
    margin: 0;
    max-width: 98.5%;
    padding: 0;
    width: auto;
}


/* Text meant only for screen readers. */
.screen-reader-text {
	clip: rect(1px, 1px, 1px, 1px);
	position: absolute !important;
	height: 1px;
	width: 1px;
	overflow: hidden;
}

.screen-reader-text:focus {
	background-color: #f1f1f1;
	border-radius: 3px;
	box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
	clip: auto !important;
	color: #21759b;
	display: block;
	font-size: 14px;
	font-size: 0.875rem;
	font-weight: bold;
	height: auto;
	left: 5px;
	line-height: normal;
	padding: 15px 23px 14px;
	text-decoration: none;
	top: 5px;
	width: auto;
	z-index: 100000; /* Above WP toolbar. */
}
/*************************************Theme Unit Testing***********************/

.wp-style h1,.wp-style h2,.wp-style h3,.wp-style h4,.wp-style h5,.wp-style h6{

	margin-bottom: 18px;
	font-weight: 600;
	color: #242424;
	line-height: 1.4em;
	margin-top:15px;
}
.wp-style h1{
	font-size:40px;
}
.wp-style h2{
	font-size:36px;
}
.wp-style h3{
	font-size:32px;
}
.wp-style h4,.wp-style .text h4{
	font-size:28px;
}
.wp-style h5{
	font-size:22px;
}
.wp-style h6{
	font-size:18px;
}
.wp-style table{
	margin-bottom:20px;
}
.wp-style table thead tr th{
	border: 1px solid #ddd;
    vertical-align: bottom;
	padding:8px;
}
.wp-style table tbody tr th{
	border: 1px solid #ddd;
    line-height: 1.42857;
    padding: 8px;
    vertical-align: top;
}
.wp-style table tbody tr td{
	border: 1px solid #ddd;
    line-height: 1.42857;
    padding: 8px;
    vertical-align: top;
}
.wp-style .text > ul,.wp-style .text > ol,.wp-style > ol,.wp-style > ul{
	padding-left:18px;
}
.wp-style .text > ul>li,
.wp-style > ul>li{
	list-style-type:disc;
	display:list-item;
}
.wp-style .text > ul li ul li,
.wp-style > ul li ul li{
	list-style-type:circle;
}
.wp-style .text > ul li ul li ul li,
.wp-style > ul li ul li ul li{
	list-style-type:square;
}
.wp-style ol li{
	list-style-type:decimal;
	display:list-item;
}
.wp-style ol li ol li{
	list-style-type:lower-alpha;
}
.wp-style ol li ol li ol li{
	list-style-type:upper-roman;
}
.wp-style p img,.wp-style figure img,.wp-style img{
	max-width:100%!important;
	display:block!important;
	height:auto!important;
}
figure{
	max-width:100%;
	display:block;
}


/* =WordPress Core
-------------------------------------------------------------- */
.alignnone {
    margin: 5px 20px 20px 0;
}

.aligncenter,
div.aligncenter {
    display: block;
    margin: 5px auto 5px auto;
}

.alignright {
    float:right;
    margin: 5px 0 20px 20px;
}

.alignleft {
    float: left;
    margin: 5px 20px 20px 0;
}

a img.alignright {
    float: right;
    margin: 5px 0 20px 20px;
}

a img.alignnone {
    margin: 5px 20px 20px 0;
}

a img.alignleft {
    float: left;
    margin: 5px 20px 20px 0;
}

a img.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.wp-caption {
    background: #fff;
    max-width: 96%; /* Image does not overflow the content area */
    padding: 5px 3px 10px;
    text-align: center;
}

.wp-caption.alignnone {
    margin: 5px 20px 20px 0;
}

.wp-caption.alignleft {
    margin: 5px 20px 20px 0;
}

.wp-caption.alignright {
    margin: 5px 0 20px 20px;
}

.wp-caption img {
    border: 0 none;
    height: auto;
    margin: 0;
    max-width: 98.5%;
    padding: 0;
    width: auto;
}

.wp-caption p.wp-caption-text {
    font-size: .9em;
    line-height: 17px;
    margin: 0;
    padding: 0 4px 5px;
    margin-top: 10px;
}

/* Text meant only for screen readers. */
.screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute !important;
	width: 1px;
	word-wrap: normal !important; /* Many screen reader and browser combinations announce broken words as they would appear visually. */
}

.screen-reader-text:focus {
	background-color: #eee;
	clip: auto !important;
	clip-path: none;
	color: #444;
	display: block;
	font-size: 1em;
	height: auto;
	left: 5px;
	line-height: normal;
	padding: 15px 23px 14px;
	text-decoration: none;
	top: 5px;
	width: auto;
	z-index: 100000;
	/* Above WP toolbar. */
}
/*--------------------------------------------------------------
# Alignments
--------------------------------------------------------------*/
.alignleft {
	display: inline!important;
	float: left!important;
	margin-right: 1.5em;
}

.alignright {
	display: inline!important;
	float: right!important;
	margin-left: 1.5em;
}

.aligncenter {
	clear: both!important;
	display: block!important;
	margin-left: auto!important;
	margin-right: auto!important;
}

/*********************WP Gallery*********************/
.gallery figure{
	display:inline-block;
}

.gallery-columns-1,.gallery-columns-2,.gallery-columns-3,.gallery-columns-4,.gallery-columns-5,
.gallery-columns-6,.gallery-columns-7,.gallery-columns-8,.gallery-columns-9{
	margin-left:-15px;
	margin-right:-15px;
}
.gallery-columns-1 .gallery-item,.gallery-columns-2 .gallery-item,.gallery-columns-3 .gallery-item,
.gallery-columns-4 .gallery-item,.gallery-columns-5 .gallery-item,.gallery-columns-6 .gallery-item,
.gallery-columns-7 .gallery-item,.gallery-columns-8 .gallery-item,.gallery-columns-9 .gallery-item{
	padding-left:15px;
	padding-right:15px;
}
.gallery-columns-1 .gallery-item{
	width:100%;
}
.gallery-columns-2 .gallery-item{
	width:50%;
}
.gallery-columns-3 .gallery-item{
	width: 33.33333333%;
}
.gallery-columns-4 .gallery-item{
	width: 25%;
}
.gallery-columns-5 .gallery-item{
	width: 20%;
}
.gallery-columns-6 .gallery-item{
	width:16.66666666%;
}
.gallery-columns-7 .gallery-item{
	width: 14.2857143%;
}
.gallery-columns-8 .gallery-item{
	width: 12.5%;
}
.gallery-columns-9 .gallery-item{
	width: 11.11111111%;
}

/************************** Widget Rss*****************************/
.widget_rss.widget ul li,
.widget_rss.footer-widget ul li{
	margin-bottom:15px;
	padding-bottom:15px;
}
.widget_rss.widget ul li a,
.widget_rss.footer-widget ul li a{
	font-weight:600;
}
.widget_rss.widget ul li .rss-date,
.widget_rss.footer-widget ul li .rss-date{
	display:block;
	font-size:.9em;
	color: #ff4328;
}
.widget_rss.footer-widget ul li .rss-date{
	color:#fafafa;
}
.widget_rss.widget ul li:before{
	display:none;
}
.widget_rss.widget ul li .rssSummary {
    position: relative;
    font-size: 16px;
    line-height: 26px;
    color: #626262;
    margin-bottom: 10px;
    font-style: normal;
    transition: all 500ms ease;
    font-weight: 500;
}
.widget_rss.widget ul li cite,
.widget_rss.footer-widget ul li cite{
	color: #ff4328;
	display:block;
	font-size:14px;
}
.widget_rss.footer-widget ul li cite{
	color:#fafafa;
}
.widget_rss.footer-widget ul li{
	border-bottom:1px dashed #fafafa;
}
.widget_rss.footer-widget ul li .rss-date{
	margin-top:10px;
}
.blog-link .left-btn a{
	margin:0 10px 0 0;
}

/*********************Custom Navigation Styling************************/

.post-password-form input[type="password"]{
	border:1px solid #b2b2b2;
	padding:5px 10px;
	display:inline-block;
}
.post-password-form input[type="submit"]{
	background:#2c2c2c;
	color:#fff;
	padding:6px 15px; 
	display:inline-block;
	border:none;    
	margin-left: -4px;
	
}
.wp-style .posts-nav{
	margin-top:50px;
}
.wp-style .posts-nav a{
	font-size:15px;
	color:#333333;
	text-decoration:none;
}
.wp-style .posts-nav a span{
	display:inline-block;
	padding:15px;
	color:#ffffff;
	font-size:14px;
	background:#333333;
}
.wp-style .posts-nav a:hover{
	color:#e38b00;
}
.wp-style .posts-nav a:hover span{
	background:#e38b00;
}
.wp-style .posts-nav .pull-left{
	float:left;
}
.wp-style .posts-nav .pull-right{
	float:right;
}


.widget_recent_entries li:after {
    display:none!important;
}
.widget_rss li:after {
    display:none!important;
}
footer select {
    width: 100%;
    display: block;
    border: 1px solid #ededed;
    padding: 6px 6px;
    margin-top: 15px;
    height: 50px;
}
.post-tags span.commax{
	color:#7e8597;
}

#respond h2 {
    margin-bottom: 0px;
    font-size: 26px;
    line-height: 37px;
    font-weight: 600;
    margin-top: 50px;
    margin-bottom: 25px;
}

#respond h2 a{
    font-size: 15px;
    color: red;
    font-weight: 600;
}
.wp-caption.alignnone p{
	color:#000!important;
}


.widget_rss li a {  
    padding-left: 0px!important;
}
.widget_rss a:before {
    display:none;
}


.rpcmt{
    margin-bottom: 30px;
}
.logged-in-as{
    margin-left: 17px;
    padding-left: 0px;
    /* position: absolute; */
    padding-bottom: 8px;
    /* font-size: 18px; */
    font-weight: bold;
}
.logged-in-as a{
   color:#222;
}
.logged-in-as a:last-child {
    color: #FF0000!important;
}
.logged-in-as a:last-child:hover {
    color: #222!important;
}
.wp-caption-text {
    margin-top: 10px;
    font-size: .9em;
    line-height: 1.2em;
}

.reply-btn a {
    position: absolute;
    right: 20px;
    top: 0px;
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    text-align: center;
    display: inline-block;
    padding: 3px 21px;
    border-radius: 5px;
    text-transform: capitalize;
    background-color: #000;
    -webkit-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    transition: all 300ms ease;
}
.reply-btn a:hover {
    background-color: #797979;
    color: #fff;
}
footer{
    clear: both!important;
    overflow: hidden!important;
}
.main-footer .widget-title {
    padding-top: 70px;
}
footer ul li ul li {
    padding-top: 10px;
    margin-left: 5px;
}

.mrindex .tag-sticky-2 .lower-content,.mrindex .sticky  .lower-content{
    border: 1px solid #ff4f5e!important;
	border-top:1px solid #ff4f5e!important;
}
.wp-block-image .aligncenter>figcaption, .wp-block-image .alignleft>figcaption, .wp-block-image .alignright>figcaption, .wp-block-image.is-resized>figcaption{
	    display: block;
}
.pingback,.trackback{
    padding-left: 0px!important;
}



.wp-style ol ul>li{
    list-style: circle!important;
	margin-left:20px;
}
.wp-style ul ol>li{

	list-style-type: decimal;
	margin-left:20px!important;
}
.wp-style ol ol,.wp-style ul ul,.wp-style ol ul,.wp-style ul ol {
    margin-left: 20px;
}
footer .mrfooter ul.sub-menu{
    margin-left: 5px;
}

.main-footer.style-three .footer-top {
    padding-top: 0px!important;
}

.bigtitle .sec-title h3 span {
   font-weight: 700;
}
.single-blog-post .post-tags{
    font-size: 18px;
    color: #333333;
    font-weight: 500;
}
.single-blog-post .post-tags a{
    color: #ff4328;
    font-size: 17px;
}

blockquote {
    font-size: 17.5px!important;
    border-left: 5px solid #FF0000!important;
    margin: 22px!important;
    background: #fffcfc!important;
    padding: 35px!important;
    border-radius: 20px;
}
blockquote p {
    color: #282828!important;
    font-size: 18px!important;
    line-height: 30px;
    margin: 0;
    -webkit-transition: all .4s ease;
    transition: all .4s ease;
}
.lower-content .text-box>ol,.lower-content .text-box>ul{
    margin-left: 20px;
}
.mrfooter ul li{
	list-style:none;
}

.mr_comments_area .trackback .comment-inner,.mr_comments_area .pingback .comment-inner{
    padding-left:0px!important
}.news-block-five {
    margin-bottom: 40px!important;

}
.news-block-five .inner-box .lower-content {
    /* border: 1px solid #f6f6f6; */
    padding: 30px!important;
    background: #fffcfc!important;
    border-top:none;
}
.mrsidebar {
    margin-bottom: 30px;
    padding: 30px;
    border: 1px solid #f6f6f6;
    border-radius: 5px;
    /* background: #fffafa; */
    position: relative;
    margin-bottom: 50px;
    box-shadow: 0px 0px 25px rgb(0 0 0 / 4%);
}
.main-footer #wp-calendar>caption {
    color: #fff!important;
}
.rssSummary{
    
    font-size: 1.2em;
    line-height: 1.7em;
    margin-top: 20px;
    margin-bottom: 20px;
}
.mrfooter ul li a {
    
}
.mrfooter ul li.recentcomments a:hover {
    padding-left:0px!important;
}
.mrfooter ul li.recentcomments a:before {
    display:none!important;
}
.mrfooter .tagcloud a {
    color: #fff;   
}
.post_info{
	margin-bottom:30px;
}
.blog_details{
    /* margin-bottom: 30px; */
    /* padding: 25px; */
    /* border: 1px solid #f6f6f6; */
    /* border-radius: 5px; */
    /* background: #fffcfc; */
}
.paginate_links>a>span{
    position: relative;
    display: inline-block;
    line-height: 45px;
    height: 45px;
    font-size: 14px;
    min-width: 45px;
    color: #222222;
    font-weight: 500;
    text-align: center;
    background: #f9f8fc;
    text-transform: capitalize;
    transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
}
.paginate_links>a>span:hover{
    position: relative;
    display: inline-block;
    line-height: 45px;
    height: 45px;
    font-size: 14px;
    min-width: 45px;
    font-weight: 500;
    text-align: center;
    text-transform: capitalize;
    transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    color: #ffffff;
    background-color: #FF4555;
}
.paginate_links>span>span{
    position: relative;
    display: inline-block;
    line-height: 45px;
    height: 45px;
    font-size: 14px;
    min-width: 45px;
    font-weight: 500;
    text-align: center;
    text-transform: capitalize;
    transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    color: #ffffff;
    background-color: #FF4555;
}
.paginate_links>a{
    position: relative;
    display: inline-block;
    line-height: 45px;
    height: 45px;
    font-size: 14px;
    min-width: 45px;
    color: #222222;
    font-weight: 500;
    text-align: center;
    background: #f9f8fc;
    text-transform: capitalize;
    transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
}
.paginate_links>a:hover{
    position: relative;
    display: inline-block;
    line-height: 45px;
    height: 45px;
    font-size: 14px;
    min-width: 45px;
    font-weight: 500;
    text-align: center;
    text-transform: capitalize;
    transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    color: #ffffff;
    background-color: #FF4555;
}
.paginate_links>span {
    position: relative;
    display: inline-block;
    line-height: 45px;
    height: 45px;
    font-size: 14px;
    min-width: 45px;
    font-weight: 500;
    text-align: center;
    text-transform: capitalize;
    transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    color: #ffffff;
    background-color: #FF4555;
}
















.about-h9 .left-side {
    margin-top: -12px;
}
.about-h9 .right-side {
    margin-top: -11px;
}
.h1.service-img-h9 {
    padding: 50px 0px 80px 0px;
}
.h1.call-to-action-h9 .text-box h2 {
    margin-top: -10px;
}
.h1.call-to-action-h9 {
    padding-bottom: 90px;
}
.h1.funfact-skill-h9 .funfact {
    margin-top: -8px;
}
.h1.funfact-skill-h9 .skill {
    margin-top: -22px;
}
.h1.portfolio-h9 {
    padding: 90px 0px 90px 0px;
}
.h1.workprocess-h10 .sec-title {
    margin-top: -22px;
}
.h1.workprocess-h10 {
    padding: 100px 0px 75px 0px;
}
.h2.call-to-action-two.h2 {
    padding: 90px 0px 100px 0px;
}
.h2.blog-1 {
    padding: 90px 0px 60px 0px;
}
.h3.about-h10 {
    padding: 60px 0px 90px 0px;
}
.services-tab-h10.h3 {
    padding-bottom: 100px;
}
.pricing-07.h3 {
    padding-bottom: 45px;
}
.h3.blog {
    margin-bottom: -30px;
}
.footer-h6.h4 {
    padding-top: 140px;
}
.h4.call-to-action-h6-two .text-box h2 {
    margin-top: -12px;
}
.h4.call-to-action-h6-two {
    padding-bottom: 90px;
}




.latest-news-h8.two.h3.h6 {
    padding-bottom: 0;
}
.clients-h6.h6 .sponsors-outer {
    padding: 50px 0px 60px 0px;
}

.banner-section .textn {
    position: relative;
    opacity: 0;
    -webkit-transition: all 1000ms ease;
    -moz-transition: all 1000ms ease;
    -ms-transition: all 1000ms ease;
    -o-transition: all 1000ms ease;
    transition: all 1000ms ease;
    -webkit-transform: translateY(-100px);
    -moz-transform: translateY(-100px);
    -ms-transform: translateY(-100px);
    -o-transform: translateY(-100px);
    transform: translateY(-100px);
}
.banner-section .active .textn {
    opacity: 1;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
    -webkit-transition-delay: 1700ms;
    -moz-transition-delay: 1700ms;
    -ms-transition-delay: 1700ms;
    -o-transition-delay: 1700ms;
    transition-delay: 1700ms;
}

#buildnet_recent_post-2 .sidebar-widget .widget-content .post:last-child{
	padding-bottom:0px;
	border-bottom:none;
	margin-bottom:0px;
}
.widget ul li:last-child{
	border-bottom:none;
}/************ TABLE OF CONTENTS ***************
1. Fonts
2. Reset
3. Global
4. Main Header / Style Two / Three / Four / Five
5. Main Slider
6. Services Section
7. About Section
8. Mission Section
9. Offers Section
10. Counter Section
11. Case Section
12. Clients Section / Section Two
13. Fluid Section One / Two / Three
14. News Section / Section Two
15. Call To Action / Two / Three
16. Main Footer
17. Busines.testimonials-h8:before
19. Featured Section
20. Planning Section
21. Help Section
22. Expert Section
23. goals Section
24. Task Section
25. Consulting Section
26. Strategies Section
27. Success Section
28. Page Title
29. Leaders Section
30. Skills Section
31. Team Section
32. Portfolio Section
33. Portfolio Two Column Section
34. Portfolio Three Column Section
35. Portfolio Single Section
36. Blog Section
37. Blog Widgets
38. Blog Detail
39. Contact Form
40. Map Section

**********************************************/



/*font-family: 'Hind', sans-serif;
font-family: 'Poppins', sans-serif;
font-family: 'Merriweather', serif;*/



/*** 

====================================================================
	Reset
====================================================================

 ***/
 
* {
	margin:0px;
	padding:0px;
	border:none;
	outline:none;
}

/*** 

====================================================================
	Global Settings
====================================================================

 ***/

body {
	font-family: 'Hind', sans-serif;
	font-size:14px;
	color:#777777;
	line-height:1.7em;
	font-weight:400;
	background:#ffffff;
	-webkit-font-smoothing: antialiased;
	-moz-font-smoothing: antialiased;
}

div.wpcf7-validation-errors, div.wpcf7-acceptance-missing {
    color: #ff0000 !important;
}

.bordered-layout .page-wrapper{
	padding:0px 50px 0px;
}

a{
	text-decoration:none;
	cursor:pointer;
	color:#FF0000;
}

button,
a:hover,a:focus,a:visited{
	text-decoration:none;
	outline:none !important;
}

h1,h2,h3,h4,h5,h6 {
	position:relative;
	font-weight:normal;
	margin:0px;
	background:none;
	line-height:1.3em;
	font-family: 'Poppins', sans-serif;
}

input,button,select,textarea{
	
}

textarea{
	overflow:hidden;
}

p{
	position:relative;
	line-height:1.8em;
	font-size: 17px;
	font-weight: 400;
}

.auto-container{
	position:static;
	max-width:1200px;
	padding:0px 15px;
	margin:0 auto;
}

.medium-container{
	max-width:850px;
}

.page-wrapper{
	position:relative;
	margin:0 auto;
	width:100%;
	min-width:300px;
}

ul,li{
	list-style:none;
	padding:0px;
	margin:0px;	
}

img{
	display:inline-block;
	max-width:100%;
}

.logo a img{
	width:180px;
}

.theme-btn{
	display:inline-block;
	transition:all 0.3s ease;
	-moz-transition:all 0.3s ease;
	-webkit-transition:all 0.3s ease;
	-ms-transition:all 0.3s ease;
	-o-transition:all 0.3s ease;
}

.centered{
	text-align:center;	
}

/*List Style One*/

.list-style-one{
	position:relative;
}

.list-style-one li{
	position:relative;
	color: #2e2e2e;
	font-size:16px;
	font-weight:500;
	margin-bottom:10px;
	transition:all 0.3s ease;
	-moz-transition:all 0.3s ease;
	-webkit-transition:all 0.3s ease;
	-ms-transition:all 0.3s ease;
	-o-transition:all 0.3s ease;
}

.list-style-one li:last-child{
	margin-bottom:0px;
}

.list-style-one li span{
	position:relative;
	color: #001659;
	font-weight: 700;
}

/*List Style Two*/

.list-style-two{
	position:relative;
}

.list-style-two li{
	position:relative;
	color:#555555;
	font-size: 17px;
	padding-left:30px;
	font-weight: 500;
	margin-bottom: 15px;
	transition:all 0.3s ease;
	-moz-transition:all 0.3s ease;
	-webkit-transition:all 0.3s ease;
	-ms-transition:all 0.3s ease;
	-o-transition:all 0.3s ease;
}

.list-style-two li:last-child{
	margin-bottom:0px;
}

.list-style-two li:before{
	position:absolute;
	content: "\f046";
	left:0px;
	top:0px;
	font-weight: 500;
	font-size: 14px;
	color: #FF0000;
	font-family: "Fontawesome";
	/* background: #FF0000; */
}
.about-h6 .text-holder {
    margin-top: 30px;
}
.list-style-three{
	position:relative;
}

.list-style-three li{
	position:relative;
	font-size: 16px;
	color:#ffffff;
	font-weight: 500;
	margin-bottom: 10px;
	padding-left: 30px;
	line-height: 1.7em;
}

.list-style-three li .icon{
	position:absolute;
	left: 0px;
	top: 0px;
	color:#ffffff;
	font-size: 16px;
}

/*Btn Style One*/

.btn-style-one{
	position:relative;
	padding:11px 25px 11px;
	line-height:24px;
	background:#FF0000;
	color: #ffffff;
	font-size:16px;
	font-weight:600;
	border-radius: 0px;
	border:2px solid #FF0000;
	text-transform:capitalize;
	font-family: 'Poppins', sans-serif;
}

.btn-style-one:hover{
	background:none;
	color:#FF0000;
}

/*Btn Style Two*/

.btn-style-two{
	position:relative;
	padding:15px 32px 15px;
	line-height:24px;
	background: #FF0000;
	color:#ffffff;
	font-size:16px;
	font-weight:600;
	border-radius: 3px;
	letter-spacing: 1px;
	border: 2px solid #ffffff;
	text-transform:uppercase;
	font-family: 'Poppins', sans-serif;
}

.btn-style-two:hover{
	background:none;
	color: #FF0000;
}

/*Btn Style Three*/

.btn-style-three{
	position:relative;
	padding:15px 32px 15px;
	line-height:24px;
	background:none;
	color: #FF0000;
	font-size:16px;
	font-weight:600;
	border-radius: 0px;
	letter-spacing: 1px;
	border: 2px solid #FF0000;
	text-transform:uppercase;
	font-family: 'Poppins', sans-serif;
}

.btn-style-three:hover{
	background-color:#FF0000;
	border-color:#FF0000;
	color:#ffffff;
}

/*Btn Style Four*/

.btn-style-four{
	position:relative;
	padding:15px 32px 15px;
	line-height:24px;
	background:none;
	color:#ffffff;
	font-size:16px;
	font-weight:600;
	border-radius: 3px;
	letter-spacing: 1px;
	border:2px solid #ffffff;
	text-transform:uppercase;
	font-family: 'Poppins', sans-serif;
}

.btn-style-four:hover{
	background-color:#ffffff;
	border-color:#ffffff;
	color:#FF0000;
}

/*Btn Style Five*/



/*Btn Style Six*/

.btn-style-six{
	position:relative;
	padding:13px 32px 13px;
	line-height:24px;
	background:#001659;
	color:#ffffff;
	font-size:16px;
	font-weight:600;
	border-radius: 3px;
	letter-spacing: 1px;
	border:2px solid #001659;
	text-transform:capitalize;
	font-family: 'Poppins', sans-serif;
}

.btn-style-six:hover{
	background:none;
	color:#FF0000;
}

/*Social Icon One*/

.social-icon-one{
	position:relative;
}

.social-icon-one li{
	position:relative;
	margin-right:15px;
	display:inline-block;
}

.social-icon-one li a{
	position:relative;
	font-size:16px;
	color: #262626;
	transition:all 0.3s ease;
	-moz-transition:all 0.3s ease;
	-webkit-transition:all 0.3s ease;
	-ms-transition:all 0.3s ease;
	-o-transition:all 0.3s ease;
}

.social-icon-one li a:hover{
	color:#FF0000;
}

.theme_color{
	color:#FF0000;
}

.preloader{ position:fixed; left:0px; top:0px; width:100%; height:100%; z-index:999999; background-color:#ffffff; background-position:center center; background-repeat:no-repeat; background-image:url(//jaquesofalltrades.com/wp-content/themes/buildnet/assets/images/icons/preloader.svg);}

img{
	display:inline-block;
	max-width:100%;
	height:auto;	
}

/*** 

====================================================================
	Scroll To Top style
====================================================================

***/

.scroll-to-top{
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 50px;
    height: 60px;
    color: #ffffff;
    font-size: 28px;
    text-transform: uppercase;
    line-height: 60px;
    text-align: center;
    z-index: 100;
    cursor: pointer;
    background: #FF0000;
    display: none;
    border-radius: 50px 50px 0px 0px;
    -webkit-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    transition: all 300ms ease;
    -webkit-box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48);
    -khtml-box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48);
    -moz-box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48);
    -ms-box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48);
    -o-box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48);
    box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48);
    background-color: #d5aa6d;
    background-image: -webkit-gradient(linear, left top, right top,from(#d5aa6d),to(#9b6f45));
    background-image: -webkit-linear-gradient(left,#d5aa6d,#9b6f45);
    background-image: -moz-linear-gradient(left,#d5aa6d,#9b6f45);
    background-image: -ms-linear-gradient(left,#d5aa6d,#9b6f45);
    background-image: -o-linear-gradient(left,#d5aa6d,#9b6f45);
    background-image: linear-gradient(left,#d5aa6d,#9b6f45);
    -webkit-box-shadow: 0 4px 7px rgb(248, 105, 41);
    -khtml-box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48);
    -moz-box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48);
    -ms-box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48);
    -o-box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48);
    box-shadow: 0 4px 7px rgba(255, 94, 20, 0.49);
    background-color: #FF0000;
    background-image: -webkit-gradient(linear, left top, right top,from(#f96a29),to(#d35417));
    background-image: -webkit-linear-gradient(left,#f96928,#d25215);
    background-image: -moz-linear-gradient(left,#d5aa6d,#9b6f45);
    background-image: -ms-linear-gradient(left,#d5aa6d,#9b6f45);
    background-image: -o-linear-gradient(left,#d5aa6d,#9b6f45);
}

.scroll-to-top span {
    position: relative;
    display: inline-block;
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    -o-transform: rotate(-90deg);
    -moz-transform: rotate(-90deg);
    transform: rotate(0deg);
}

.scroll-to-top:hover{
	color:#ffffff;
	background:#FF0000;
}

/*** 

====================================================================
	Section Title
====================================================================

***/

.sec-title{
	position:relative;
	margin-bottom:45px;
}

.sec-title h2{
	position:relative;
	color: #001659;
	font-size: 40px;
	font-weight: 700;
	/* line-height: 55px; */
	margin-bottom: 8px;
	z-index: 99;
	text-transform: capitalize;
	line-height: 1.3em;
}

.sec-title
 .title-text{
	position:relative;
	/* color: #818181; */
	/* font-size: 17px; */
	/* line-height: 1.6em; */
	/* font-weight: 500; */
	margin-top: 0px;
	/* font-size: 17px; */
	line-height: 1.6em;
	/* font-weight: 500; */
	padding-bottom: 10px;
	text-transform: uppercase;
	/* text-align: left; */
	font-size: 16px;
	color: #222;
	font-weight: 600;
	margin-top: 20px;
}

.sec-title.light h2,
.sec-title.light .title-text{
	color:#ffffff;
}

.sec-title.centered{
	text-align: center;
}

/*** 

====================================================================
	Main Header style
====================================================================

***/

.main-header{
	position:relative;
	z-index:999;
	width:100%;
}

/*Header Top*/

.header-top{
	position: relative;
	padding: 17px 0px;
	background-color: #001659;
}

.header-top .top-left{
	position:relative;
	float: left;
}

.header-top .top-left .header-info-list{
	position:relative;
}

.header-top .top-left .header-info-list li{
	position:relative;
	color: #ffffff;
	font-size: 16px;
	margin-right: 24px;
	display: inline-block;
}

.header-top .top-left .header-info-list li strong{
	position:relative;
	color: #FF0000;
	font-weight: 500;
	font-size: 16px;
	margin-right: 6px;
	display:inline-block;
}

.header-top .top-left .header-info-list li .icon{
	position:relative;
	color:#001659;
	font-size: 18px;
	margin-right: 8px;
	display:inline-block;
}

.header-top .top-right{
	position:relative;
	float: right;
}

.header-top .top-right .social-box{
	position: relative;
	float: left;
}

.header-top .top-right .social-box li{
	position: relative;
	margin-left: 15px;
	display: inline-block;
}

.header-top .top-right .social-box li.share{
	position:relative;
	color: #FF0000;
	font-size: 16px;
	font-weight: 500;
	margin-left: 0px;
}

.header-top .top-right .social-box li a{
	position: relative;
	color: #ffffff;
	font-size: 16px;
	-webkit-transition:all 300ms ease;
	-ms-transition:all 300ms ease;
	-o-transition:all 300ms ease;
	-moz-transition:all 300ms ease;
	transition:all 300ms ease;
}

.header-top .top-right .social-box li a:hover{
	color:#FF0000;
}

/*Header Top Two*/

.header-top-two {
    position: relative;
    border-bottom: 1px solid #ebebeb;
    background: #f9f9f9;
}

.header-top-two .top-left{
	position:relative;
	float: left;
	padding: 12px 0px;
}

.header-top-two .top-left .header-info-list{
	position:relative;
}

.header-top-two .top-left .header-info-list li {
    position: relative;
    color: #6d6d6d;
    font-size: 17px;
    margin-right: 24px;
    display: inline-block;
    font-weight: 400;
}

.header-top-two .top-left .header-info-list li .icon {
    position: relative;
    color: #FF0000;
    font-size: 14px;
    margin-right: 10px;
    display: inline-block;
}

.header-top-two .top-right{
	position:relative;
	float: right;
}
.header-top-two .top-right .quote-btn {
    position: relative;
    color: #ffffff;
    padding: 13px 25px;
    font-size: 16px;
    font-weight: 600;
    display: inline-block;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    /* transition: all 300ms ease; */
    -khtml-box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48);
    -moz-box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48);
    -ms-box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48);
    -o-box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48);
    /* box-shadow: 0 4px 7px rgba(255, 94, 20, 0.49); */
    background-color: #FF0000;
    /*! background-image: -moz-linear-gradient(left,#d5aa6d,#9b6f45); */
    /*! background-image: -ms-linear-gradient(left,#d5aa6d,#9b6f45); */
    /*! background-image: -o-linear-gradient(left,#d5aa6d,#9b6f45); */
    /* border: 1px solid #FF0000; */
    /* border-top: none; */
    /* border-bottom: none; */
}

.header-top-two .top-right .quote-btn:hover{
	background-color: #001659;
}

/*Header Top Three*/

.header-top-three{
	position: relative;
}

.header-top-three .inner-container{
	/* border-bottom: 1px solid #dddddd; */
}

.header-top-three .top-left{
	position:relative;
	float: left;
	padding: 16px 0px;
}

.header-top-three .top-left .header-info-list{
	position:relative;
}

.header-top-three .top-left .header-info-list li{
	position:relative;
	color:#555555;
	font-size: 16px;
	margin-right: 24px;
	font-weight: 400;
	display: inline-block;
}

.header-top-three .top-left .header-info-list li span{
	font-weight:500;
}

.header-top-three .top-left .header-info-list li .icon{
	position:relative;
	color:#001659;
	font-size: 18px;
	margin-right: 10px;
	display:inline-block;
}

.header-top-three .top-right{
	position:relative;
	float: right;
	padding: 16px 0px;
}

.header-top-three .top-right .social-box li.share{
	position:relative;
	color:#222222;
	font-size: 16px;
	font-weight: 500;
}

.header-top-three .top-right .social-box li{
	position:relative;
    margin-left: 15px;
	display: inline-block;
}

.header-top-three .top-right .social-box li a{
	position: relative;
	color: #001659;
	font-size: 16px;
	-webkit-transition:all 300ms ease;
	-ms-transition:all 300ms ease;
	-o-transition:all 300ms ease;
	-moz-transition:all 300ms ease;
	transition:all 300ms ease;	
}

.header-top-three .top-right .social-box li a:hover{
	color:#FF0000;
}

.main-header .main-box{
	position:relative;
	padding:0px 0px;
	left:0px;
	top:0px;
	width:100%;
	background:none;
	-webkit-transition:all 300ms ease;
	-ms-transition:all 300ms ease;
	-o-transition:all 300ms ease;
	-moz-transition:all 300ms ease;
	transition:all 300ms ease;
}

.main-header .main-box .outer-container{
	position:relative;
	padding:0px 40px;
}

.main-header .main-box .logo-box{
	position:relative;
	float:left;
	left:0px;
	z-index:10;
	padding:30px 0px;
}

.main-header .main-box .logo-box .logo img{
	display:inline-block;
	max-width:100%;
	-webkit-transition:all 300ms ease;
	-ms-transition:all 300ms ease;
	-o-transition:all 300ms ease;
	-moz-transition:all 300ms ease;
	transition:all 300ms ease;	
}

.main-header .nav-toggler{
	position:absolute;
	top:50%;
	margin-top:0px;
	display: block;
}

.main-header .nav-toggler button{
	position:relative;
	display:block;
	color:#444444;
	text-align:center;
	font-size:24px;
	line-height:34px;
	font-weight:normal;
	background:none;
}

.main-header .header-upper{
	position:relative;
}
.header-style-three .header-upper{
	position:relative;
	background: #001659;
}

.main-header .header-upper .contact-number{
	position:relative;
	float: left;
	color: #262626;
	font-size: 18px;
	font-weight: 500;
	margin-top: 30px;
	padding:12px 0px 12px 32px;
	border-left: 1px solid #dde4db;
}

.main-header .header-upper .contact-number .number-inner{
	position:relative;
	padding-left: 35px;
	line-height:30px;
}

.main-header .header-upper .contact-number .icon{
	position:absolute;
	left: 0px;
	top: 0px;
	color: #FF0000;
	font-size: 28px;
	line-height: 1em;
}

.main-header .nav-outer{
	position:relative;
	float: left;
	float: right;
}

.main-header .header-upper .logo-box{
	position: relative;
	padding: 16px 0px;
}

.main-header .header-upper .logo-box .logo{
	position:relative;
}

.main-header .header-upper .search-box-outer{
	position:relative;
	float:right;
	margin-top: 35px;
}


.main-header .header-upper .search-box-btn {
    position: relative;
    top: 0px;
    display: block;
    width: 100%;
    font-size: 16px;
    color: #FF0000;
    line-height: 20px !important;
    cursor: pointer;
    background: none;
    transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
}
.main-header .header-upper .search-box-btn:after{
	display:none;
}

.main-header .header-upper .search-box-outer .dropdown-menu{
	top:67px !important;
	right:0px;
	padding:0px;
	width:280px;	
	left: auto !important;
	border-radius:0px;
	border-top:3px solid #FF0000;
	-webkit-transform: translate3d(0px, 0px, 0px) !important;
	transform: translate3d(0px, 0px, 0px) !important;
}

.main-header .header-upper .search-box-outer .dropdown-menu > li{
	padding:0px;
	border:none;
	background:none;
}

.main-header .header-upper .search-panel .form-container{
	padding:25px 20px;	
}

.main-header .header-upper .search-panel .form-group{
	position:relative;
	margin:0px;	
}

.main-header .header-upper .search-panel input[type="text"],
.main-header .header-upper .search-panel input[type="search"],
.main-header .header-upper .search-panel input[type="password"],
.main-header .header-upper .search-panel select{
	display:block;
	width:100%;
	height:40px;
	color:#000000;
	line-height:24px;
	background:#ffffff;	
	border:1px solid #e0e0e0;
	padding:7px 40px 7px 15px;
	-webkit-transition:all 300ms ease;
	-ms-transition:all 300ms ease;
	-o-transition:all 300ms ease;
	-moz-transition:all 300ms ease;
	transition:all 300ms ease;
}

.main-header .header-upper .search-panel input:focus,
.main-header .header-upper .search-panel select:focus{
	border-color:#FF0000;	
}

.main-header .header-upper .search-panel .search-btn{
	position:absolute;
	right:0px;
	top:0px;
	width:40px;
	height:40px;
	text-align:center;
	color:#555555;
	font-size:14px;
	background:none;
	cursor:pointer;
}

.main-header .header-upper .button-box{
	position: relative;
	float: right;
	padding: 35px 0px;
	margin-left: 30px;
}

.main-header .header-upper .support-box{
	position: relative;
	float: right;
	margin-top: 15px;
	margin-left: 32px;
}

.header-style-two .header-upper .support-box{
	float: left;
	margin-top:18px;
	text-align: left;
	padding: 14px 18px;
	border-radius: 4px;
	border: 1px dashed rgba(255,255,255,0.25);
}

.main-header .header-upper .support-box .support{
	position:relative;
	color: #242424;
	font-size: 14px;
	font-weight: 600;
	margin-bottom: 3px;
	text-align: right;
	font-family: 'Hind', sans-serif;
}

.main-header .header-upper .support-box .support .icon{
	position:relative;
	color: #001659;
	font-size:
 22px;
	top: 3px;
	margin-left: 4px;
}

.main-header .header-upper .support-box .support-number{
	position: relative;
	color: #222;
	font-size: 20px;
	font-weight: 700;
	text-align: right;
	font-family: 'Poppins', sans-serif;
}

.header-style-two .header-upper .support-box .support,
.header-style-two .header-upper .support-box .support-number{
	color:#ffffff;
}

.main-menu{
	position:relative;
	float:left;
	-webkit-transition:all 300ms ease;
	-ms-transition:all 300ms ease;
	-o-transition:all 300ms ease;
	-moz-transition:all 300ms ease;
	transition:all 300ms ease;
}

.main-menu .navbar-collapse{
	padding:0px;
	float: left;
}

.main-menu .navigation{
	position:relative;
	margin:0px;
}

.main-menu .navigation > li{
	position:relative;
	float:left;
	margin-right:24px;
	transition:all 500ms ease;
	-moz-transition:all 500ms ease;
	-webkit-transition:all 500ms ease;
	-ms-transition:all 500ms ease;
	-o-transition:all 500ms ease;
}

.sticky-header .main-menu .navigation > li > a{
	color:#444444 !important;
}

.sticky-header .main-menu .navigation > li:hover > a,
.sticky-header .main-menu .navigation > li.current > a{
	color:#FF0000 !important;
	background-color:inherit !important;
}

.sticky-header .nav-outer .options-box{
	margin-top:26px;
}

.main-header .header-upper .upper-right{
	padding-top:32px;
}

.main-header .info-box{
	position:relative;
	float:left;
	margin-left:35px;
	font-size:14px;
	color:#98b2c4;
	text-align:left;
	text-transform:uppercase;
	padding:0px 0px 0px 50px;
}

.main-header .info-box .icon-box{
	position:absolute;
	left:0px;
	top:5px;
	color:#FF0000;
	font-size:36px;
	line-height:1em;
	-moz-transition:all 300ms ease;
	-webkit-transition:all 300ms ease;
	-ms-transition:all 300ms ease;
	-o-transition:all 300ms ease;
	transition:all 300ms ease;
}

.main-header .info-box li{
	position:relative;
	color:#7c7b7b;
	font-size:18px;
	font-weight:400;
	line-height:1.2em;
	text-transform:capitalize;
}

.main-header .info-box li strong{
	color:#262626;
	font-size: 14px;
	font-weight: 700;
	text-transform: uppercase;
}

.header-style-two{
	background-color: #001659;
}

/*Sticky Header*/

.sticky-header{
	position:fixed;
	opacity:0;
	visibility:hidden;
	left:0px;
	top:0px;
	width:100%;
	padding:0px 0px;
	background:#ffffff;
	z-index:0;
	border-bottom:1px solid #e8f1f7;
	transition:all 500ms ease;
	-moz-transition:all 500ms ease;
	-webkit-transition:all 500ms ease;
	-ms-transition:all 500ms ease;
	-o-transition:all 500ms ease;
	z-index: 9999;
}

.sticky-header .logo {
    padding: 15px 0px;
}

.fixed-header .sticky-header{
	z-index: 9999;
	opacity:1;
	visibility:visible;
	-ms-animation-name: fadeInDown;
	-moz-animation-name: fadeInDown;
	-op-animation-name: fadeInDown;
	-webkit-animation-name: fadeInDown;
	animation-name: fadeInDown;
	-ms-animation-duration: 500ms;
	-moz-animation-duration: 500ms;
	-op-animation-duration: 500ms;
	-webkit-animation-duration: 500ms;
	animation-duration: 500ms;
	-ms-animation-timing-function: linear;
	-moz-animation-timing-function: linear;
	-op-animation-timing-function: linear;
	-webkit-animation-timing-function: linear;
	animation-timing-function: linear;
	-ms-animation-iteration-count: 1;
	-moz-animation-iteration-count: 1;
	-op-animation-iteration-count: 1;
	-webkit-animation-iteration-count: 1;
	animation-iteration-count: 1;
}

.main-menu .navigation > li > a {
    position: relative;
    display: block;
    color: #222;
    text-align: center;
    line-height: 30px;
    text-transform: capitalize;
    letter-spacing: 0px;
    opacity: 1;
    font-weight: 600;
    padding: 29px 4px;
    font-size: 15px;
    transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    font-family: 'Poppins', sans-serif;
    text-transform: uppercase;
}
.header-style-three .navigation > li > a{
	color: #ffffff;	
}
.header-style-two .main-menu .navigation > li > a,
.main-header.header-style-two .header-upper .search-box-btn{
	color:#ffffff;
}

.sticky-header .main-menu .navigation > li{
	position:relative;
	margin-left:30px;
	margin-right:0px;
}

.sticky-header .main-menu .navigation > li:before,
.sticky-header .main-menu .navigation > li:after{
	display:none;
}

.main-menu .navigation > li:hover > a,
.main-menu .navigation > li.active > a,
.main-header.light-version .main-menu .navigation > li:hover > a,
.main-header.light-version .main-menu .navigation > li.active > a{
	opacity:1;
	color:#FF0000;
}

.main-menu .navigation > li > ul{
	position:absolute;
	left:0px;
	top:100%;
	margin-top:15px;
	width:230px;
	z-index:100;
	display:none;
	opacity: 0;
    visibility: hidden;
    transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
	padding: 0px 0px;
	background-color: #ffffff;
	border-top: 3px solid #FF0000;
	box-shadow: 0px 0px 10px rgba(0,0,0,0.10);
}

.main-menu .navigation > li > ul:before{
	position:absolute;
	content:'';
	left:0px;
	top:-30px;
	width:100%;
	height:30px;
	display:block;
}

.main-menu .navigation > li > ul.from-right{
	left:auto;
	right:0px;	
}

.main-menu .navigation > li > ul > li{
	position:relative;
	width:100%;
	margin:0px;
	border-bottom: 1px solid #e5e5e5;
}

.main-menu .navigation > li > ul > li:last-child{
	border-bottom:none;
}

.main-menu .navigation > li > ul > li > a{
	position:relative;
	display:block;
	padding:10px 18px;
	line-height:24px;
	font-weight:600;
	font-size:15px;
	text-transform:capitalize;
	color:#222;
	transition:all 500ms ease;
	-moz-transition:all 500ms ease;
	-webkit-transition:all 500ms ease;
	-ms-transition:all 500ms ease;
	-o-transition:all 500ms ease;
}

.sticky-header .main-menu .navigation > li > a{
	padding:19px 0px;
}

.sticky-header .main-menu .navigation > li > a:before{
	display: none;
}

.main-menu .navigation > li > ul > li:hover > a{
	color: #FF0000;
	/* background:#FF0000; */
	padding-left: 20px;
}


.main-menu .navigation > li > ul > li.dropdown:hover > a:after{
	color:#ffffff;
}

.main-menu .navigation > li > ul > li > ul{
	position:absolute;
	left:100%;
	top:0%;
	margin-top:15px;
	width:230px;
	z-index:100;
	display:none;
	transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    padding: 0px 0px;
	background-color: #ffffff;
	border-top: 3px solid #FF0000;
	-webkit-box-shadow:2px 2px 5px 1px rgba(0,0,0,0.05),-2px 0px 5px 1px rgba(0,0,0,0.05);
	-ms-box-shadow:2px 2px 5px 1px rgba(0,0,0,0.05),-2px 0px 5px 1px rgba(0,0,0,0.05);
	-o-box-shadow:2px 2px 5px 1px rgba(0,0,0,0.05),-2px 0px 5px 1px rgba(0,0,0,0.05);
	-moz-box-shadow:2px 2px 5px 1px rgba(0,0,0,0.05),-2px 0px 5px 1px rgba(0,0,0,0.05);
	box-shadow:2px 2px 5px 1px rgba(0,0,0,0.05),-2px 0px 5px 1px rgba(0,0,0,0.05);
}

.main-menu .navigation > li > ul > li > ul.from-right{
	left:auto;
	right:0px;	
}

.main-menu .navigation > li > ul > li > ul > li{
	position:relative;
	width:100%;
	margin:0px;
	/* border-bottom: 1px solid #e5e5e5; */
}

.main-menu .navigation > li > ul > li > ul > li:last-child{
	border-bottom:none;	
}

.main-menu .navigation > li > ul > li > ul > li > a{
	position:relative;
	display:block;
	padding:10px 18px;
	line-height:24px;
	font-weight:500;
	font-size:15px;
	text-transform:capitalize;
	color:#555555;
	transition:all 500ms ease;
	-moz-transition:all 500ms ease;
	-webkit-transition:all 500ms ease;
	-ms-transition:all 500ms ease;
	-o-transition:all 500ms ease;
}

.main-menu .navigation > li > ul > li > ul > li:hover > a{
	color: #FF0000!important;
	/* background:#FF0000; */
}

.main-menu .navigation > li > ul > li > ul > li.dropdown > a:after{
	font-family: 'FontAwesome';
	content: "\f105";
	position:absolute;
	right:10px;
	top:11px;
	width:10px;
	height:20px;
	display:block;
	color:#272727;
	line-height:20px;
	font-size:16px;
	font-weight:normal;
	text-align:center;
	z-index:5;	
}

.main-menu .navigation > li > ul > li > ul > li.dropdown:hover > a:after{
	color:#ffffff;	
}

.main-menu .navigation > li.dropdown:hover > ul {
    visibility: visible;
    opacity: 1;
    margin: 0px;
}

.main-menu .navigation li > ul > li.dropdown:hover > ul{
	visibility:visible;
	opacity:1;
	top:0;
	margin:0px;
}

.main-menu .navbar-collapse > ul li.dropdown .dropdown-btn{
	position:absolute;
	right:10px;
	top:6px;
	width:30px;
	height:30px;
	text-align:center;
	color:#ffffff;
	line-height:28px;
	border:1px solid #ffffff;
	background-size:20px;
	cursor:pointer;
	z-index:5;
	display:none;
}

/*** 

====================================================================
	Main Slider Banner
====================================================================

***/

.main-slider{
	position:relative;
}

.main-slider .content.alternate{
	max-width: 610px;
	width: 100%;
	float: right;
	display: block;
}

.main-slider .slide {
    position: relative;
    padding: 250px 0px 250px 0px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

.main-slider h2 {
    position: relative;
    color: #ffffff;
    font-size: 57px;
    font-weight: 600;
    line-height: 1.1em;
    margin-bottom: 10px;
    opacity: 0;
    -webkit-transition: all 1000ms ease;
    -moz-transition: all 100ms ease;
    -ms-transition: all 1000ms ease;
    -o-transition: all 1000ms ease;
    transition: all 1000ms ease;
    -webkit-transform: translateX(50px);
    -moz-transform: translateX(50px);
    -ms-transform: translateX(50px);
    -o-transform: translateX(50px);
    transform: translateX(50px);
    font-family: 'Poppins', sans-serif;
    padding: 10px 30px;
    display: inline-block;
    left: 0;
    top: 15px;
	background: #001659;
}

.main-slider .active h2{
	opacity: 1;
	-webkit-transform: translateY(0);
	-moz-transform:
 translateY(0);
	-ms-transform: translateY(0);
	-o-transform: translateY(0);
	transform: translateY(0);
	transition-delay: 1300ms;
	background: #00165900;
	padding: 10px 0px;
}

.main-slider h2.style-two{
	font-weight:500;
	margin-bottom: 40px;
}

.main-slider h2.style-three{
	font-weight:500;
	margin-bottom: 20px;
}

.main-slider h2.alternate{
	margin-bottom: 35px;
}

.main-slider h3{
	position: relative;
	color: #ffffff;
	font-size: 19px;
	font-weight:500;
	margin-bottom:20px;
	display:block;
	opacity:0;
	-webkit-transition: all 1000ms ease;
	-moz-transition: all 100ms ease;
	-ms-transition: all 1000ms ease;
	-o-transition: all 1000ms ease;
	transition: all 1000ms ease;
	-webkit-transform: translateY(50px);
	-moz-transform: translateY(50px);
	-ms-transform: translateY(50px);
	-o-transform: translateY(50px);
	transform: translateY(50px);
	font-family: 'Poppins', sans-serif;
	top: 0px;
	letter-spacing: 2px;
}

.main-slider h3:before{
	position:absolute;
	content: '';
	left:-55px;
	top: 17px;
	width:30px;
	height: 2px;
	background-color: #FF0000;
}

.main-slider h3.style-three:after{
	position:absolute;
	content: '';
	right:-55px;
	top: 18px;
	width:30px;
	height: 2px;
	background-color: #ffffff;
}

.main-slider h3.style-two:before{
	background-color: #FF0000;
}

.main-slider .active h3{
	opacity: 1;
	-webkit-transform: translateY(0);
	-moz-transform: translateY(0);
	-ms-transform: translateY(0);
	-o-transform: translateY(0);
	transform: translateY(0);
	transition-delay: 1000ms;
}

.main-slider h3.alternate::before{
	display:none;
}

.main-slider .text{
	position:relative;
	color: #ffffff;
	font-size: 18px;
	opacity:0;
	line-height: 1.7em;
	font-weight:500;
	margin-bottom:40px;
	-webkit-transition: all 1000ms ease;
	-moz-transition: all 100ms ease;
	-ms-transition: all 1000ms ease;
	-o-transition: all 1000ms ease;
	transition: all 1000ms ease;
	-webkit-transform: translateY(50px);
	-moz-transform: translateY(50px);
	-ms-transform: translateY(50px);
	-o-transform: translateY(50px);
	transform: translateY(50px);
	font-family: 'Poppins', sans-serif;
	top: 0px;
	display: block;
	margin-top: 50px;
}

.main-slider .text .text-two {
    /* padding: 20px 30px; */
    /* background: #ffffff96; */
    display: inline-block;
}

.main-slider .active .text{
	opacity: 1;
	-webkit-transform: translateY(0);
	-moz-transform: translateY(0);
	-ms-transform: translateY(0);
	-o-transform: translateY(0);
	transform: translateY(0);
	transition-delay: 2000ms;
}

.main-slider .link-box{
	opacity:0;
	-webkit-transition: all 1000ms ease;
	-moz-transition: all 100ms ease;
	-ms-transition: all 1000ms ease;
	-o-transition: all 1000ms ease;
	transition: all 1000ms ease;
	-webkit-transform: translateY(50px);
	-moz-transform: translateY(50px);
	-ms-transform: translateY(50px);
	-o-transform: translateY(50px);
	transform: translateY(50px);
	bottom: 0px;
	position: relative;
	margin-top: 60px;
}

.main-slider .link-box .theme-btn{
	margin-right: 20px;
}

.main-slider .active .link-box{
	opacity: 1;
	-webkit-transform: translateY(0);
	-moz-transform: translateY(0);
	-ms-transform: translateY(0);
	-o-transform: translateY(0);
	transform: translateY(0);
	transition-delay: 2500ms;
}

.main-slider .content .title{
	position:relative;
	color:#ffffff;
	font-size: 18px;
	font-weight: 500;
	padding-bottom: 20px;
	margin-bottom: 25px;
	opacity: 0;
	-webkit-transition: all 1000ms ease;
	-moz-transition: all 100ms ease;
	-ms-transition: all 1000ms ease;
	-o-transition: all 1000ms ease;
	transition: all 1000ms ease;
	-webkit-transform: translateY(50px);
	-moz-transform: translateY(50px);
	-ms-transform: translateY(50px);
	-o-transform: translateY(50px);
	transform: translateY(50px);
}

.main-slider .content .title:after{
	position: absolute;
	content: '';
	left: 50%;
	bottom: 0px;
	width: 70px;
	height: 1px;
	margin-left: -35px;
	background-color: #ffffff;
}

.main-slider .active .title{
	opacity: 1;
	-webkit-transform: translateY(0);
	-moz-transform: translateY(0);
	-ms-transform: translateY(0);
	-o-transform: translateY(0);
	transform: translateY(0);
	transition-delay: 600ms;
}

.main-slider .owl-dots{
	position: absolute;
    left: 50%;
    bottom: 20px;
    max-width: 100px;
    margin-left: -50px;
    width: 100%;
    text-align: center;
}

.main-slider .owl-dots .owl-dot{
	position:relative;
	width:12px;
	height:12px;
	margin:0px 4px;
	overflow: hidden;
	border-radius: 50px;
	display:inline-block;
	border:1px solid #ffffff;
	transition:all 500ms ease;
	-moz-transition:all 500ms ease;
	-webkit-transition:all 500ms ease;
	-ms-transition:all 500ms ease;
	-o-transition:all 500ms ease;
}

.main-slider .owl-dots .owl-dot:before{
	position: absolute;
	content: '';
	left: 0px;
	bottom: 0px;
	width: 100%;
	height: 100%;
	background: none;
	transition:all 500ms ease;
	-moz-transition:all 500ms ease;
	-webkit-transition:all 500ms ease;
	-ms-transition:all 500ms ease;
	-o-transition:all 500ms ease;
}

.main-slider .owl-dots .owl-dot.active::before,
.main-slider .owl-dots .owl-dot:hover::before{
	background: #ffffff;
}

.main-slider .owl-nav{
	position:absolute;
	left:0px;
	top:50%;
	z-index:1;
	width:100%;
	margin-top:-20px;
}

.main-slider .owl-nav .owl-prev{
	position:absolute;
	left:40px;
	color: #FF0000;
	font-size:38px;
	transition:all 500ms ease;
	-moz-transition:all 500ms ease;
	-webkit-transition:all 500ms ease;
	-ms-transition:all 500ms ease;
	-o-transition:all 500ms ease;
	position: absolute;
    height: 50px;
    width: 50px;
    font-size: 20px;
    font-weight: 400;
    text-align: center;
    line-height: 50px;
    border-radius: 50%;
    background-color: rgba(0, 22, 89, 0.4);
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.main-slider .owl-nav .owl-next{
	position:absolute;
	right:40px;
	color: #FF0000;
	font-size:38px;
	transition:all 500ms ease;
	-moz-transition:all 500ms ease;
	-webkit-transition:all 500ms ease;
	-ms-transition:all 500ms ease;
	-o-transition:all 500ms ease;
	position: absolute;
    height: 50px;
    width: 50px;
    font-size: 20px;
    font-weight: 400;
    text-align: center;
    line-height: 50px;
    border-radius: 50%;
    background-color: rgba(0, 22, 89, 0.4);
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.main-slider .owl-nav .owl-prev:hover,
.main-slider .owl-nav .owl-next:hover{
	color:#FF0000;
}

/*** 

====================================================================
	Services Section
====================================================================

***/

.services-section{
	position: relative;
	padding-bottom: 60px;
}

.services-section .inner-container{
	position: relative;
	margin-top: -50px;
	z-index: 10;
}

.services-block{
	position: relative;
	margin-bottom: 30px;
	transition:all 0.3s ease;
	-moz-transition:all 0.3s ease;
	-webkit-transition:all 0.3s ease;
	-ms-transition:all 0.3s ease;
	-o-transition:all 0.3s ease;
}

.services-block .inner-box{
	position: relative;
	display:block;
	padding: 50px 45px 5px;
	transition:all 0.3s ease;
	-moz-transition:all 0.3s ease;
	-webkit-transition:all 0.3s ease;
	-ms-transition:all 0.3s ease;
	-o-transition:all 0.3s ease;
	background-color: #ffffff;
	box-shadow: 0px 0px 35px rgba(0,0,0,0.15);
}

.services-block .inner-box:before{
	position: absolute;
	content: '';
	left:0;
	top:0;
	right:0;
	bottom:0;
	transition:all 0.3s ease;
	-moz-transition:all 0.3s ease;
	-webkit-transition:all 0.3s ease;
	-ms-transition:all 0.3s ease;
	-o-transition:all 0.3s ease;
	background: #ffffff;
}

.services-block:hover .inner-box:before{
	bottom:-40px;
	background: #001659;	
}

.services-block.alternate:hover .inner-box:before{
	background: #FF0000;	
}

.services-block:hover{
	-webkit-transform: translateY(-20px);
	-ms-transform: translateY(-20px);
	transform: translateY(-20px);
}

.services-block .inner-box h3{
	position: relative;
	color:#222222;
	font-size: 23px;
	font-weight: 600;
	line-height: 30px;
	margin-bottom: 28px;
}

.services-block .inner-box h3 a{
	position: relative;
	color:#222222;
	transition:all 0.3s ease;
	-moz-transition:all 0.3s ease;
	-webkit-transition:all 0.3s ease;
	-ms-transition:all 0.3s ease;
	-o-transition:all 0.3s ease;
}

.services-block .inner-box .icon-box{
	position: relative;
	font-size: 82px;
	line-height: 1em;
	color:#FF0000;
	margin-bottom: 25px;
	transition:all 0.3s ease;
	-moz-transition:all 0.3s ease;
	-webkit-transition:all 0.3s ease;
	-ms-transition:all 0.3s ease;
	-o-transition:all 0.3s ease;
}

.services-block .inner-box .text{
	position: relative;
	color:#555555;
	font-size: 16px;
	line-height: 1.6em;
	margin-bottom:25px;
	transition:all 0.3s ease;
	-moz-transition:all 0.3s ease;
	-webkit-transition:all 0.3s ease;
	-ms-transition:all 0.3s ease;
	-o-transition:all 0.3s ease;
}

.services-block .inner-box:hover .text{
	
}

.services-block .inner-box .more-link{
	position:relative;
	display:block;
	margin-right:-45px;
	overflow:hidden;	
}

.services-block .inner-box .read-more{
	position: relative;
	color:#FF0000;
	font-size: 13px;
	text-transform: uppercase;
	padding-right: 25px;
	font-weight: 700;
	opacity: 0;
	visibility: hidden;
	display: inline-block;
	transition:all 0.3s ease;
	-moz-transition:all 0.3s ease;
	-webkit-transition:all 0.3s ease;
	-ms-transition:all 0.3s ease;
	-o-transition:all 0.3s ease;
}
.services-block .inner-box:hover .read-more{
	letter-spacing:1px;
}
.services-block .inner-box .read-more:hover{
	letter-spacing:2px;
	color:#fff;
}
.services-block .inner-box .read-more .fa{
	padding-right:5px;	
}

.services-block .inner-box .read-more:after{
	position: absolute;
	content: '';
	left: 100%;
	top: 11px;
	width: 300%;
	height: 1px;
	opacity: 0;
	visibility:
 hidden;
	background-color: rgba(255,255,255,0.50);
}

.services-block .inner-box:hover .read-more{
	opacity: 1;
	visibility: visible;
}

.services-block .inner-box:hover .read-more:after{
	opacity: 1;
	visibility: visible;
}

.services-block .inner-box:hover{
	background-color: #001659;
}

.services-block .inner-box:hover .text,
.services-block .inner-box:hover h3 a,
.services-block .inner-box:hover .icon-box{
	color:#ffffff;
}

.services-block.alternate .inner-box .icon-box{
	color:#001659;
}

.services-block.alternate .inner-box:hover{
	background-color:#FF0000;
}

.services-block.alternate .inner-box .read-more,
.services-block.alternate .inner-box:hover .icon-box{
	color:#ffffff;
}

/*** 

====================================================================
	About Section
====================================================================

***/

.about-section{
	position: relative;
	padding: 70px 0px;
}

.about-section:before {
    position: absolute;
    content: '';
    right: 0px;
    top: 0px;
    width: 50%;
    height: 100%;
    display: block;
    background-color: #f9f8fc;
}

.about-section .title-column{
	position: relative;
}

.about-section .title-column .sec-title{
	margin-bottom:20px;
}

.about-section .title-column .inner-column{
	position: relative;
	padding-top: 30px;
	margin-bottom:45px;
}

.about-section .title-column .text{
	position: relative;
	color:#555555;
	font-size: 16px;
	line-height: 1.7em;
	margin-bottom: 45px;
}



/*Video Box*/

.video-box{
	position:relative;
}

.video-box .image{
	position:relative;
	overflow:hidden;
}

.video-box .image img{
	position:relative;
	width:100%;
}

.video-box .overlay-box{
	position:absolute;
	left:0px;
	top:0px;
	width:100%;
	height:100%;
	text-align:center;
	overflow:hidden;
	line-height: 80px;
	background:rgba(68,57,120,0.08);
	transition:all 0.3s ease;
	-moz-transition:all 0.3s ease;
	-webkit-transition:all 0.3s ease;
	-ms-transition:all 0.3s ease;
	-o-transition:all 0.3s ease;
}

.video-box .overlay-box:hover{
	background:rgba(68,57,120,0.20);
}

.video-box .overlay-box span{
	position: relative;
	width:80px;
	height: 80px;
    top: 45%;
	z-index:99;
	color: #222222;
	font-weight:400;
	font-size:24px;
	text-align: center;
	border-radius:50%;
	padding-left:4px;
	background-color: #ffffff;
	display: inline-block;
	margin-top: -40px;
	transition:all 900ms ease;
	-moz-transition:all 900ms ease;
	-webkit-transition:all 900ms ease;
	-ms-transition:all 900ms ease;
	-o-transition:all 900ms ease;
}

.video-box .overlay-box:hover span{
	transform: rotate(360deg);
	-moz-transition:rotate(360deg);
	-webkit-transition:rotate(360deg);
	-ms-transition:rotate(360deg);
	-o-transition:rotate(360deg);
}

/*** 

====================================================================
	Fluid Section Two
====================================================================

***/

.fluid-section-one{
	position:relative;
	/* background: #00235a; */
}

.fluid-section-one .outer-container{
	position:relative;
	min-height:250px;
	background-color:#f9f8fc;
}

.fluid-section-one .image-column{
	position:absolute;
	left:0px;
	top:0px;
	width:50%;
	height:100%;
	background-repeat:no-repeat;
	background-position:center center;
	background-size:cover;	
}

.fluid-section-one .image-column .image-box{
	position:relative;
	display:none;	
}

.fluid-section-one .image-column .image-box img{
	position:relative;
	display:block;
	width:100%;
}

.fluid-section-one .content-column{
	position:relative;
	float:right;
	width:50%;
}

.fluid-section-one .content-column .inner-column{
	position:relative;
	width:100%;
	padding:100px 0px 80px 45px;
	background: #00235a;
}

.fluid-section-one .content-column .inner-column .title-box{
	position: relative;
	width:50%;
	float: left;
}

.fluid-section-one .content-column .inner-column .title-box .box-inner{
	position: relative;
	padding-right: 50px;
}

/*.fluid-section-one .content-column .inner-column .title-box{
	position: relative;
	width:50%;
	float: left;
}*/

.fluid-section-one .content-column .inner-column .title-box h2{
	position: relative;
	color: #ffffff;
	font-size: 48px;
	font-weight: 600;
	line-height: 1.3em;
	margin-bottom: 20px;
	text-transform: capitalize;
}

.fluid-section-one .content-column .inner-column .title-box .text{
	position: relative;
	padding-left: 50px;
	color: #e5e5e5;
	font-size: 16px;
	line-height: 1.7em;
}

.fluid-section-one .content-column .inner-column .title-box .text:before{
	position: absolute;
	content: "\f1ac";
	left: 0px;
	top: 0px;
	color:#FF0000;
	line-height: 1em;
	font-size: 40px;
	font-family: "Flaticon";
}

.fluid-section-one .content-column .carousel-box{
	position: relative;
	float: right;
	width:50%;
}

.fluid-section-one .content-column .carousel-box .box-inner{
	position: relative;
	padding: 100px 40px 80px;
	/* background-color: #222222; */
	position: relative;
	display: block;
	/* padding: 120px 0 110px; */
	/* background-color: #f5f5f5; */
	background: url(//jaquesofalltrades.com/wp-content/themes/buildnet/assets/images/shape/pattern-bg1.png) #f5f5f5;
	background-repeat: repeat;
}

.fluid-section-one .content-column .carousel-box .quote-icon{
	position: absolute;
	right: 60px;
	top: -28px;
	color:#FF0000;
	line-height: 1em;
	font-size: 60px;
}

.fluid-section-one .content-column .carousel-box .owl-nav,
.fluid-section-one .content-column .carousel-box .owl-dots{
	display:none;
}

/*Testimonial Block*/

.testimonial-block{
	position: relative;
}

.testimonial-block .inner-box{
	position: relative;
}

.testimonial-block .inner-box .text{
	position: relative;
	color: #00235a;
	font-size: 18px;
	font-weight: 600;
	line-height: 1.6em;
	width: 100%;
	margin-bottom: 20px;
}

.testimonial-block .inner-box .author{
	position: relative;
	font-size: 16px;
	font-weight: 500;
	color: rgb(255, 94, 20);
}

.testimonial-block .inner-box .author span{
	font-size: 14px;
	font-weight: 400;
}

/*** 

====================================================================
	Offer Section
====================================================================

***/

.offer-section{
	position: relative;
	padding: 110px 0px 80px;
}

.offer-section.alternate .offer-block{
	margin-bottom: 30px;
}

.offer-section:before{
	position:absolute;
	content: '';
	left:0px;
	top: 0px;
	width: 100%;
	height: 100%;
	background-color: #f9f8fccf;
}

.offer-block{
	position:relative;
	margin-bottom: 30px;
}

.offer-block .inner-box{
	position: relative;
	overflow: hidden;
	box-shadow: 0px 0px 35px rgba(0,0,0,0.15);
	border-radius: 10px;
}

.offer-block .inner-box .image{
	position: relative;
}

.offer-block .inner-box .image img{
	position: relative;
	width:100%;
	display: block;
}

.offer-block .inner-box .lower-content {
    position: relative;
    padding-top: 40px;
    padding: 25px;
    background: white;
    /* box-shadow: 0px 0px 35px rgba(0,0,0,0.15); */
    border-bottom: 3px solid #FF0000;
}
.offer-block .inner-box .lower-content h3{
	position: relative;
	font-size: 23px;
	color:#222222;
	font-weight: 600;
	line-height: 1.4em;
	margin-bottom: 10px;
}

.offer-block .inner-box .lower-content h3 a{
	position: relative;
	color:#001659;
	transition:all 0.3s ease;
	-moz-transition:all 0.3s ease;
	-webkit-transition:all 0.3s ease;
	-ms-transition:all 0.3s ease;
	-o-transition:all 0.3s ease;
}

.offer-block .inner-box .lower-content h3 a:hover{
	color:#FF0000;
}

.offer-block .inner-box .lower-content .text{
	position: relative;
	color:#555555;
	font-size: 17px;
	line-height: 1.6em;
	margin-bottom: 19px;
}

.offer-block .inner-box .lower-content .read-more {
    /* position: relative; */
    color: #FF0000;
    /* font-size: 13px; */
    /* font-weight: 700; */
    /* padding-right: 30px; */
    /* text-transform: uppercase; */
    /* display: inline-block; */
    position: relative;
    color: #001659;
    font-size: 16px;
    text-transform: capitalize;
    padding-right: 25px;
    font-weight: 700;
    display: inline-block;
}

.offer-block .inner-box .lower-content .read-more:before{
	position: absolute;
    content: '';
    left: 100%;
    top: 12px;
    width: 0%;
    height: 1px;
    opacity: 0;
    visibility: hidden;
	transition:all 900ms ease;
	-moz-transition:all 900ms ease;
	-webkit-transition:all 900ms ease;
	-ms-transition:all 900ms ease;
	-o-transition:all 900ms ease;
    background-color: #dddddd;
}

.offer-block .inner-box:hover .lower-content .read-more:before{
	width:300%;
	opacity: 1;
	visibility: visible;
}

.offer-block .inner-box .lower-content .read-more .fa {
    position: relative;
    color: #001659;
    font-weight: 700;
    margin-right: 4px;
    display: inline-block;
    background: #fe5a0e;
    color: #fff;
    text-align: center;
    border-radius: 50%;
    padding: 0px 7px;
    line-height: 18px;
    font-size: 11px;
    top:-2px;
    display: none;
}

/*** 

====================================================================
	Counter Section
====================================================================

***/

.counter-section{
	position: relative;
	padding: 70px 0px 30px;
	background: red;
}

.counter-section .inner-section{
	position: relative;
	padding-left: 85px;
}

.counter-section-two{
	position:relative;
	padding: 100px 0px 70px;
}

/*fact counter*/

.fact-counter{
	position:relative;
}

.fact-counter .column{
	position:relative;
	margin-bottom:30px;
}

.fact-counter .column .inner{
	position:relative;
	padding-right: 30px;
}

.fact-counter .column .inner .content{
	position:relative;
	padding-bottom: 25px;
	border-bottom: 1px solid #eeeeee;
}

.fact-counter .column .inner .icon-box{
	position:absolute;
	left:0px;
	top:0px;
	color:#fe5807;
	font-size:48px;
	text-align:center;
	line-height:1em;
	font-weight: 400;
	transition:all 0.3s ease;
	-moz-transition:all 0.3s ease;
	-webkit-transition:all 0.3s ease;
	-ms-transition:all 0.3s ease;
	-o-transition:all 0.3s ease;
}

.fact-counter .count-outer .percentage{
	display:inline-block;
	font-weight:600;
	color:#020e28;
	font-size:48px;
	line-height:1em;
	font-family:
 'Poppins', sans-serif;
}

.fact-counter .column .inner .count-outer{
	position:relative;
	font-weight:700;
	color:#001659;
	font-size:42px;
	line-height:1em;
	display:inline-block;
	font-family: 'Poppins', sans-serif;
}

.fact-counter .column .inner .count-outer.alternate,
.fact-counter .column .inner .count-outer.alternate .count-text{
	color:#FF0000;
}

.fact-counter .count-outer .count-text{
	position:relative;
	font-weight:700;
	color:#001659;
	font-size: 50px;
	line-height:1em;
	font-family: 'Poppins', sans-serif;
}

.fact-counter .column .counter-title{
	position:relative;
	font-size:14px;
	font-weight:700;
	color:#555555;
	margin-top:8px;
	text-transform:uppercase;
}

.fact-counter .column:hover .icon-box{
	border-color:#f47629;
}

/*** 

====================================================================
	Case Section
====================================================================

***/

.case-section{
	position: relative;
	padding-top: 110px;
	/* padding-bottom: 100px; */
}

.case-section .owl-nav,
.case-section .owl-dots{
	display:none;
}

.case-block{
	position: relative;
}

.case-block .inner-box{
	position: relative;
	display:block;
	overflow: hidden;
	/* box-shadow: 0px 0px 25px rgb(0 0 0 / 15%); */
	background: white;
}

.case-block .inner-box .image{
	position: relative;
}

.case-block .inner-box .image:before{
	position:absolute;
	content:'';
	left:0px;
	bottom:0px;
	width:100%;
	height:80%;
	display:block;
	z-index:1;
	transition:all 0.3s ease;
	-moz-transition:all 0.3s ease;
	-webkit-transition:all 0.3s ease;
	-ms-transition:all 0.3s ease;
	-o-transition:all 0.3s ease;
	background:-webkit-linear-gradient(top,rgba(0,0,0,0),rgba(0,0,0,0.4));
	background:-moz-linear-gradient(top,rgba(0,0,0,0),rgba(0,0,0,0.4));
	background:-o-linear-gradient(top,rgba(0,0,0,0),rgba(0,0,0,0.4));
	background:-ms-linear-gradient(top,rgba(0,0,0,0),rgba(0,0,0,0.4));
}

.case-block .inner-box:hover .image:before{
	opacity: 0;
}

.case-block .inner-box .image img{
	position: relative;
	width:100%;
	display: block;
}

.case-block .inner-box .image .overlay-box{
	position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    opacity: 0;
	z-index: 2;
    color: #ffffff;
	visibility: hidden;
    -webkit-transition: all 700ms ease;
    -ms-transition: all 700ms ease;
    -o-transition: all 700ms ease;
    transition: all 700ms ease;
	-webkit-transform-origin:left top;
	-ms-transform-origin:left top;
	-moz-transform-origin:left top;
	transform-origin:left top;
	-moz-transform: translateX(-100%);
    -webkit-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    -o-transform: translateX(-100%);
	transform: translateX(-100%);
}

.case-block .inner-box .image .overlay-box:before{
	position: absolute;
	content: '';
	left: 0px;
	top: 0px;
	right:0px;
	bottom:0px;
	opacity: 0;
	display: block;
	visibility: hidden;
	transition: all 900ms ease;
	-moz-transition: all 900ms ease;
	-webkit-transition: all 900ms ease;
	-ms-transition: all 900ms ease;
	-o-transition: all 900ms ease;
	background-color: #ef4c07ed;
}

.case-block .inner-box:hover .image .overlay-box:before{
    opacity: 1;
    visibility: visible;
}

.case-block .inner-box .image .overlay-box .overlay-inner{
	position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    display: table;
    vertical-align: middle;
    padding: 10px 40px;
}

.case-block .inner-box .image .overlay-box .overlay-inner .content{
    position: relative;
    display: table-cell;
    vertical-align: middle;
}

.case-block .inner-box .image .overlay-box .text{
	position: relative;
	color:#ffffff;
	font-size: 16px;
	line-height: 1.7em;
	margin-bottom: 40px;
}

.case-block .inner-box .image .overlay-box .read-more{
	position:relative;
	font-size: 13px;
	font-weight: 700;
	color:#ffffff;
	padding-right: 22px;
	text-transform: uppercase;
	font-family: 'Hind', sans-serif;
}

.case-block .inner-box .image .overlay-box .read-more:after{
	position: absolute;
    content: '';
    left: 100%;
    top: 10px;
    width: 300%;
    height: 1px;
    background-color: rgba(255,255,255,0.20);
}

.case-block .inner-box .image .overlay-box .read-more .fa{
	position:relative;
	margin-right: 4px;
}

.case-block .inner-box:hover .image .overlay-box{
    opacity: 1;
	visibility: visible;
	-moz-transform: translateX(0%);
    -webkit-transform: translateX(0%);
    -ms-transform: translateX(0%);
    -o-transform: translateX(0%);
    transform: translateX(0%);
}

.case-block .inner-box .lower-box{
	position:relative;
	padding: 40px 40px;
	transition:all 0.3s ease;
	-moz-transition:all 0.3s ease;
	-webkit-transition:all 0.3s ease;
	-ms-transition:all 0.3s ease;
	-o-transition:all 0.3s ease;
	position: relative;
	display: block;
	/* background-color: #f5f5f5; */
	/* background: url(//jaquesofalltrades.com/wp-content/themes/buildnet/assets/images/shape/pattern-bg1.png) #f5f5f5; */
	/* background-repeat: repeat; */
	border-right: 1px solid #dddddd;
}


.case-block .inner-box .lower-box .category{
	position: relative;
	color: #FF0000;
	font-size: 17px;
	font-weight: 600;
	margin-bottom: 5px;
	text-transform: uppercase;
	transition:all 0.3s ease;
	-moz-transition:all 0.3s ease;
	-webkit-transition:all 0.3s ease;
	-ms-transition:all 0.3s ease;
	-o-transition:all 0.3s ease;
}

.case-block .inner-box:hover .lower-box .category{
	color:#FF0000;
}

.case-block .inner-box .lower-box h3{
	position: relative;
	color:#222222;
	font-size: 23px;
	font-weight: 600;
	line-height: 1.4em;
}

.case-block .inner-box .lower-box h3 a{
	position: relative;
	color: #001659;
	transition:all 0.3s ease;
	-moz-transition:all 0.3s ease;
	-webkit-transition:all 0.3s ease;
	-ms-transition:all 0.3s ease;
	-o-transition:all 0.3s ease;
}

.case-block .inner-box .lower-box h3 a:hover{
	color:#FF0000;
}

/*** 

====================================================================
	Testimonial Section
====================================================================

***/

.testimonial-section{
	position: relative;
	padding: 90px 0px 90px;
}

.testimonial-section:before{
	position: absolute;
	content: '';
	right: 0px;
	top:0px;
	width: 44%;
	height: 100%;
	background-color: #f8f8f8;
}

.testimonial-section .sec-title{
	margin-bottom:0px;
}

.testimonial-section .owl-nav{
	display:none;
}

.testimonial-section .owl-dots{
	position:relative;
	margin-top:-30px;
}

.testimonial-section .owl-dots .owl-dot{
	position:relative;
	width:10px;
	height:8px;
	margin:0px 5px;
	display:inline-block;
	border-radius:50%;
	background-color:#cccccc;
	transition:all 0.3s ease;
	-moz-transition:all 0.3s ease;
	-webkit-transition:all 0.3s ease;
	-ms-transition:all 0.3s ease;
	-o-transition:all 0.3s ease;
}

.testimonial-section .owl-dots .owl-dot:hover,
.testimonial-section .owl-dots .owl-dot.active{
	position:relative;
	width:22px;
	height:8px;
	border-radius:10px;
	background-color:#FF0000;
}

/*Testimonial Block Two*/

.testimonial-block-two{
	position: relative;
}

.testimonial-block-two .inner-box{
	position: relative;
}

.testimonial-block-two .inner-box .content-column{
	position: relative;
}

.testimonial-block-two .inner-box .content-column .inner-column{
	position: relative;
	padding-top: 50px;
	margin-bottom: 50px;
}

.testimonial-block-two .inner-box .content-column .text{
	position: relative;
	color:#222222;
	font-size: 17px;
	font-style: italic;
	line-height: 1.8em;
	margin-bottom: 25px;
	/* font-family: 'Merriweather', serif; */
	font-weight: 500;
}

.testimonial-block-two .inner-box .content-column .author{
	position: relative;
	color: #6D6D6C;
	font-size: 17px;
	font-weight: 700;
	padding-left: 60px;
	text-transform: uppercase;
}

.testimonial-block-two .inner-box .content-column .author:before{
	position: absolute;
	content: '';
	left:0px;
	top: 8px;
	height: 1px;
	width:50px;
	background-color: #001659;
}

.testimonial-block-two .inner-box .image-column{
	position: relative;
}

.testimonial-block-two .inner-box .image-column .inner-column{
	position: relative;
	text-align: center;
}

.testimonial-block-two .inner-box .image-column .inner-column .image{
	position: relative;
	display: inline-block;
}

.testimonial-block-two .inner-box .image-column .inner-column .image img{
	position: relative;
	width: 230px;
	border-radius: 10px;
}

/*** 

====================================================================
	Fluid Section Two
====================================================================

***/

.fluid-section-two{
	position:relative;
}

.fluid-section-two .outer-container{
	position:relative;
	min-height:250px;
	/* background-color: #00235a; */
}

.fluid-section-two .image-column{
	position:absolute;
	left:0px;
	top:0px;
	width: 65%;
	height:100%;
	background-repeat:no-repeat;
	background-position:center center;
	background-size:cover;
}

.fluid-section-two .image-column .image-box{
	position:relative;
	display:none;	
}

.fluid-section-two .image-column .image-box img{
	position:relative;
	display:block;
	width:100%;
}

.fluid-section-two .content-column{
	position:relative;
	float:right;
	width:50%;
	/* background: red; */
}

.fluid-section-two .content-column .inner-column{
	position:relative;
	max-width: 780px;
	width:100%;
	padding: 80px 70px 50px 70px;
	margin-top: 80px;
	background: #FF0000;
	margin-bottom: 80px;
	margin-left: 0px;
	border-radius: 10px;
}

/*** 

====================================================================
	Consult Form
====================================================================

 ***/

.support-form{
	position:relative;
}

.support-form .row{
	
}

.support-form .row .column{
	padding:0px 20px;
}

.support-form .form-group{
	position:relative;
	margin-bottom:25px;
}

.support-form .form-group input[type="text"],
.support-form .form-group input[type="tel"],
.support-form .form-group input[type="email"],
.support-form .form-group select{
	position:relative;
	display:block;
	width:100%;
	line-height:28px;
	padding:10px
 0px;
	color:#ffffff;
	height:50px;
	font-size:15px;
	background:none;
	border-bottom:1px solid rgba(255,255,255,0.50);
	-webkit-transition:all 300ms ease;
	-ms-transition:all 300ms ease;
	-o-transition:all 300ms ease;
	-moz-transition:all 300ms ease;
	transition:all 300ms ease;
	font-family: 'Hind', sans-serif;
}

.support-form .form-group input[type="text"]:focus,
.support-form .form-group input[type="tel"]:focus,
.support-form .form-group input[type="email"]:focus,
.support-form .form-group textarea:focus{
	border-color: #e3e3e3;
}

.support-form .form-group textarea::-webkit-input-placeholder,
.support-form .form-group input::-webkit-input-placeholder{
	color:#ffffff;
}

.support-form .form-group textarea{
	position:relative;
	display:block;
	width:100%;
	line-height:22px;
	padding:15px 0px;
	color:#ffffff;
	height:70px;
	resize:none;
	font-size:15px;
	background:none;
	font-family: 'Hind', sans-serif;
	border-bottom:1px solid rgba(255,255,255,0.50);
	-webkit-transition:all 300ms ease;
	-ms-transition:all 300ms ease;
	-o-transition:all 300ms ease;
	-moz-transition:all 300ms ease;
	transition:all 300ms ease;
}

.support-form .form-group .btn-detail{
	position:relative;
	text-align:center;
	margin-left:30px;
	color:#ffffff;
	display:inline-block;
}

.support-form button{
	cursor: pointer;
	margin-top:20px;
	font-size: 16px;
	text-transform: capitalize;
}

/*Custom Select*/

.form-group .ui-selectmenu-button.ui-button{
	width:100%;
	font-size:15px;
	font-style:normal;
	height:50px;
	padding:10px 0px;
	line-height:28px;
	color:#ffffff;
	border: none;
	border-radius:0px;
	background:none;
	font-family: 'Hind', sans-serif;
	border-bottom:1px solid rgba(255,255,255,0.50);
}

.form-group .ui-button .ui-icon{
	background:none;
	position:relative;
	top:2px;
	text-indent:0px;
	color:#333333;	
}

.form-group .ui-button .ui-icon:before{
	font-family: 'FontAwesome';
	content: "\f107";
	position:absolute;
	right:0px;
	top:2px !important;
	top:13px;
	width:10px;
	height:20px;
	display:block;
	color:#ffffff;
	line-height:20px;
	font-size:16px;
	font-weight:normal;
	text-align:center;
	z-index:5;
}

.ui-widget.ui-widget-content{
	border-bottom:1px solid rgba(255,255,255,0.50);
}

.ui-menu .ui-menu-item{
	font-size:14px;
	border-bottom:1px solid rgba(255,255,255,0.50);
}

.ui-menu .ui-menu-item:last-child{
	border:none;	
}

.ui-state-active, .ui-widget-content .ui-state-active{
	background:#FF0000;
	border-color:#FF0000;
}

.ui-menu .ui-menu-item-wrapper{
	position:relative;
	display:block;
	padding:8px 20px ;
	font-size:14px;
	line-height:24px;
}

.ui-menu-item:hover{
	background-color:#FF0000;
}

/*** 

====================================================================
	News Section
====================================================================

 ***/

.news-section{
	position: relative;
	padding: 100px 0px 0px;
	background-color: #f9f8fc;
}

.news-section:before{
	position: absolute;
	content: '';
	right: 0px;
	top: 0px;
	width:30%;
	height: 100%;
	background-color: #ffffff;
}

.news-section .blocks-column{
	position:relative;
	margin-bottom: 30px;
}

.news-section .blocks-column .inner-column{
	position:relative;
	padding-right: 70px;
}

/*News Block*/

.news-block{
	position: relative;
	margin-bottom: 45px;
}

.news-block .inner-box{
	position: relative;
}

.news-block .inner-box .post-info{
	position: relative;
	margin-bottom: 8px;
}

.news-block .inner-box .post-info li{
	position: relative;
	color: #FF0000;
	font-size: 13px;
	font-weight: 700;
	padding-right: 14px;
	margin-right: 12px;
	line-height: 1.2em;
	display: inline-block;
	text-transform: uppercase;
	border-right: 1px solid #001659;
}

.news-block .inner-box .post-info li:last-child{
	margin-right: 0px;
	padding-right: 0px;
	border:none;
}

.news-block .inner-box .post-info li:first-child{
	color: #FF0000;
}

.news-block .inner-box h3{
	position: relative;
	font-size: 22px;
	font-weight: 600;
	line-height: 1.6em;
}

.news-block .inner-box h3 a{
	position: relative;
	color:#222222;
	-webkit-transition:all 300ms ease;
	-ms-transition:all 300ms ease;
	-o-transition:all 300ms ease;
	-moz-transition:all 300ms ease;
	transition:all 300ms ease;
}

.news-block .inner-box h3 a:hover{
	color:#FF0000;
}

.news-section .image-column{
	position: relative;
	/* margin-bottom: 40px; */
}

.news-section .image-column .inner-column{
	position: relative;
}

.news-section .image-column .inner-column .image{
	position: relative;
	margin-top: -131px;
}

.news-section .image-column .inner-column .image:before{
	position: absolute;
	content: '';
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
	display: block;
	background-color: rgba(68,57,34,0.95);
}

.news-section .image-column .inner-column .image img {
    position: relative;
    width: 100%;
    display: block;
    margin-top: -225px;
}

/*** 

====================================================================
	Call To Action Section
====================================================================

 ***/

.call-to-action-section{
	position: relative;
}

.call-to-action-section .outer-container{
	position: relative;
	background-color: #FF0000;
}

.call-to-action-section .left-column{
	position: relative;
	width: 50%;
	float: left;
}

.call-to-action-section .left-column .image-layer{
	position: absolute;
	content: '';
	left: 0px;
	top: 0px;
	right: -120px;
	bottom: 0px;
	z-index: 1;
	background-attachment: fixed;
	background-repeat: no-repeat;
	background-size: cover;
}

.call-to-action-section .left-column .inner-column{
    position: relative;
    padding: 53px 15px;
    max-width: 600px;
    float: right;
    width: 100%;
	z-index: 1;
}

.call-to-action-section .left-column .image-layer:before{
	position:absolute;
	content: '';
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
	display: block;
	background-color: rgba(68,57,134,0.90);
}

.call-to-action-section .left-column h2 {
    position: relative;
    color: #ffffff;
    font-size: 23px;
    font-weight: 600;
    line-height: 36px;
}

.call-to-action-section .right-column{
	position: relative;
	width: 50%;
	float: right;
}

.call-to-action-section .right-column .inner-column{
	position: relative;
    padding: 60px 0px;
    text-align: right;
    max-width: 700px;
	padding-right:15px;
}


/*** 

====================================================================
	Main Footer
====================================================================

***/

.main-footer{
	position:relative;
	padding:90px 0px 0px;
	background-color: #1a1a1a;
	position: relative;
	display: block;
	padding: 100px 0 0px;    
	background-color: #ffffff00;
}

.main-footer .footer-widget{
	position:relative;
	margin-bottom:40px;
}

.main-footer .widgets-section{
	position:relative;
	padding-bottom:40px;
}

.main-footer .footer-widget h2{
	position:relative;
	font-size: 23px;
	font-weight: 600;
	color: #001659;
	line-height:1.2em;
	margin-bottom:35px;
	margin-top:15px;
	padding-bottom: 18px;
	text-transform:capitalize;
}

.main-footer .footer-widget h2:after{
	position:absolute;
	content: '';
	left: 0px;
	bottom: 0px;
	height: 1px;
	width:50px;
	background-color: #FF0000;
}

.main-footer .logo-widget{
	position:relative;
}

.main-footer .logo-widget .social-icon-one{
	margin-top:20px;
}

.main-footer .logo-widget .logo{
	position:relative;
	margin-bottom:25px;
}

.main-footer .logo-widget .text{
	position:relative;
	color: #001659;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.7em;
	margin-bottom: 14px;
}

.footer-link{
	position: relative;
}

.footer-link li{
	position: relative;
	margin-bottom: 8px;
}

.footer-link li a{
	position: relative;
	color: #242424;
	font-size: 15px;
	font-weight: 500;
	-webkit-transition:all 300ms ease;
	-ms-transition:all 300ms ease;
	-o-transition:all 300ms ease;
	-moz-transition:all 300ms ease;
	transition:all 300ms ease;
}

.footer-link li a:before{
	position:absolute;
	content: "\f105";
	left: 0px;
	top: 0px;
	opacity: 0;
	color:#FF0000;
	font-family: 'FontAwesome';
	-webkit-transition:all 300ms ease;
	-ms-transition:all 300ms ease;
	-o-transition:all 300ms ease;
	-moz-transition:all 300ms ease;
	transition:all 300ms ease;
}

.footer-link li a:hover::before{
	opacity: 1;
}

.footer-link li a:hover{
	color:#FF0000;
	padding-left: 15px;
}

/*Posts Widget*/

.posts-widget .post{
	position: relative;
	padding-bottom: 16px;
	margin-bottom: 0px;
	border-bottom: 1px solid rgba(255,255,255,0.20);
}

.posts-widget .post:last-child{
	border:none;
	margin-bottom: 0px;
	padding-bottom: 0px;
}

.posts-widget .post .text{
	position: relative;
	color: #cccccc;
	font-size: 16px;
	line-height: 1.4em;
	margin-bottom: 5px;
}

.posts-widget .post .text a{
	position: relative;
	color: #282828;
	-webkit-transition:all 300ms ease;
	-ms-transition:all 300ms ease;
	-o-transition:all 300ms ease;
	-moz-transition:all 300ms ease;
	transition:all 300ms ease;
	/* font-family: 'Poppins', sans-serif; */
	font-weight: 600;
}

.posts-widget .post .text a:hover{
	color:#FF0000;
}

.posts-widget .post .post-date{
	position: relative;
}

.posts-widget .post .post-date li{
	position: relative;
	color: #787878;
	font-size: 12px;
	padding-right: 10px;
	margin-right: 10px;
	font-weight: 500;
	line-height: 1.2em;
	display: inline-block;
	/* text-transform: uppercase; */
	border-right: 1px solid #555555;
	/* font-family: 'Hind', sans-serif; */
}

.posts-widget .post .post-date li:last-child{
	margin-right: 0px;
	padding-right: 0px;
	border: none;
}

/*Newsletter Widget*/

.newsletter-widget{
	position: relative;
}

.newsletter-widget .text{
	position: relative;
	color: #001659;
	font-size: 16px;
	line-height: 1.7em;
	margin-bottom: 20px;
	font-weight: 600;
}

.main-footer .newsletter-widget .form-group{
	position:relative;
	display:block;
	margin-bottom:16px;
}

.main-footer .newsletter-widget .form-group input[type="text"],
.main-footer .newsletter-widget .form-group input[type="email"]{
	position:relative;
	display:block;
	width:100%;
	line-height:26px;
	padding:10px
 20px;
	height:48px;
	font-size:16px;
	color: #ffffff;
	border-radius: 3px;
	border: 1px solid rgb(213 213 213);
	background-color:rgba(255,255,255,0.10);
	-webkit-transition:all 300ms ease;
	-ms-transition:all 300ms ease;
	-o-transition:all 300ms ease;
	-moz-transition:all 300ms ease;
	transition:all 300ms ease;
}

.main-footer .newsletter-widget .form-group button{
	width:100%;
	cursor: pointer;
	/* border-color: #001659; */
	background-color: #FF0000;
	text-transform: uppercase;
	/* box-shadow: 0px 10px 17px 0px rgba(255, 72, 0, 0.73); */
	color: #fff;
}

.main-footer .footer-bottom{
	position: relative;
	padding: 35px 0px;
	border-top: 1px solid rgba(255,255,255,0.10);
	background: #001659;
}

.main-footer .footer-bottom .copyright{
	position: relative;
	color: #ffffff;
	font-size: 16px;
}

.main-footer .footer-bottom .footer-nav{
	position: relative;
	text-align: right;
}

.main-footer .footer-bottom .footer-nav li{
	position: relative;
	padding-right: 12px;
	margin-right: 10px;
	line-height: 1.1em;
	display: inline-block;
	border-right: 2px solid #555555;
}

.main-footer .footer-bottom .footer-nav li:last-child{
	border-right:none;
	margin-right: 0px;
	padding-right: 0px;
}

.main-footer .footer-bottom .footer-nav li a{
	position:relative;
	color: #ffffff;
	font-size: 16px;
	-webkit-transition:all 300ms ease;
	-ms-transition:all 300ms ease;
	-o-transition:all 300ms ease;
	-moz-transition:all 300ms ease;
	transition:all 300ms ease;
}

.main-footer .footer-bottom .footer-nav li a:hover{
	color:#ffffff;
}

/*** 

====================================================================
	Business Section
====================================================================

***/

.business-section{
	position: relative;
	padding: 100px 0px 55px;
}

.business-section:before {
    position: absolute;
    content: '';
    left: 0px;
    top: 5px;
    width: 484px;
    height: 797px;
    display: inline-block;
    background: url(//jaquesofalltrades.com/wp-content/themes/buildnet/assets/images/background/pattern-1.png);
}

.business-section .title-column{
	position: relative;
	margin-bottom: 40px;
}

.business-section .title-column .inner-column{
	position: relative;
	padding-top: 35px;
	overflow: hidden;
}

.business-section .title-column .inner-column .sec-title{
	margin-bottom:90px;
}

.business-section .title-column .inner-column .sec-title h2{
	line-height: 1.3em;
	margin-bottom: 15px;
}

.business-section .title-column .inner-column .we-do{
	position: relative;
	color:#FF0000;
	font-size: 13px;
	font-weight: 700;
	padding-left: 10px;
	padding-right: 28px;
	display: inline-block;
	text-transform: uppercase;
	-webkit-transition:all 300ms ease;
	-ms-transition:all 300ms ease;
	-o-transition:all 300ms ease;
	-moz-transition:all 300ms ease;
	transition:all 300ms ease;	
}

.business-section .title-column .inner-column .we-do:hover{
	color:#001659;
}

.business-section .title-column .inner-column .we-do:before{
	position: absolute;
	content: "\f105";
	left: 0px;
	top: -2px;
	color:#001659;
	font-family: 'FontAwesome';
}

.business-section .title-column .inner-column .we-do:after{
	position:absolute;
	content: '';
	top: 11px;
	left: 100%;
	width:300%;
	height: 1px;
	background-color: #dddddd;
}

.business-section .content-column{
	position: relative;
}

.business-section .content-column .inner-column{
	position: relative;
}

/*Feature Block*/

.feature-block{
	position: relative;
	margin-bottom: 0px;
}

.feature-block .inner-box{
	position: relative;
	padding: 30px;
}

.feature-block .inner-box .icon-box{
	position: relative;
	color:#001659;
	font-size: 70px;
	line-height: 1em;
	margin-bottom: 15px;
	-webkit-transition:all 300ms ease;
	-ms-transition:all 300ms ease;
	-o-transition:all 300ms ease;
	-moz-transition:all 300ms ease;
	transition:all 300ms ease;	
}

.feature-block.alternate .inner-box .icon-box {
    font-size: 35px;
    margin-bottom: 20px;
    color: #FF0000;
    text-align: center;
    background: #FF0000;
    height: 70px;
    width: 70px;
    margin: 0 auto;
    border-radius: 50%;
    line-height: 67px;
    margin-bottom: 20px;
}
.feature-block .inner-box:hover .icon-box{
	color:#FF0000;
}
.feature-block .inner-box h3 {
    text-align: center;
}
.feature-block .inner-box .text {
    text-align: center;
}
.feature-block .inner-box h3{
	position: relative;
	color:#222222;
	font-size: 23px;
	line-height: 1.4em;
	font-weight: 600;
	margin-bottom: 16px;
}

.feature-block .inner-box h3 a{
	position: relative;
	color: #222;
	-webkit-transition:all 300ms ease;
	-ms-transition:all 300ms ease;
	-o-transition:all 300ms ease;
	-moz-transition:all 300ms ease;
	transition:all 300ms ease;
}

.feature-block .inner-box h3 a:hover{
	color:#FF0000;
}

.feature-block .inner-box .text{
	position: relative;
	color: #555555;
	font-size: 17px;
	line-height: 1.8em;
}

/*** 

====================================================================
	Fluid Section Three
====================================================================

***/

.fluid-section-three{
	position:relative;
	background-color:#f9f8fc;
}

.fluid-section-three .left-column{
    position: relative;
    left: 0px;
	top:0px;
    width: 50%;
    height: 100%;
	float: left;
}

.fluid-section-three .left-column .inner-column{
	position: relative;
	max-width: 650px;
	width: 100%;
	float: right;
	padding: 83px 80px 100px 15px;
}

.fluid-section-three .left-column .inner-column .btn-box{
	margin-top: 50px;
}

.fluid-section-three .right-column{
    position: relative;
    right: 0px;
	top:0px;
    width: 50%;
    height: 100%;
	float:right;
	background-size: cover;
	background-repeat: no-repeat;
}

.fluid-section-three .right-column .inner-column{
	position: relative;
	max-width: 600px;
	float: left;
	padding: 120px 15px 186px 128px;
}

.fluid-section-three .right-column:before{
	position:absolute;
	content: '';
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
	display: block;
	background-color: rgba(255, 94, 20, 0.93);
}

.fluid-section-three .right-column .inner-column .play-btn{
	position: relative;
	width:80px;
	height: 80px;
	color:#222222;
	font-size: 28px;
	padding-left: 6px;
	line-height: 80px;
	text-align: center;
	border-radius: 50%;
	margin-bottom: 50px;
	display: inline-block;
	background-color: #ffffff;
}

.fluid-section-three .right-column .inner-column .play-btn:before{
	position: absolute;
	content: '';
	left: -5px;
	top: -5px;
	bottom: -5px;
	right: -5px;
	border-radius: 50px;
	border: 5px solid rgba(255, 255, 255, 0.67);
}

.fluid-section-three .right-column .inner-column .play-btn:after{
	position: absolute;
	content: '';
	left: -10px;
	top: -10px;
	bottom: -10px;
	right: -10px;
	border-radius: 50px;
	border: 4px solid rgba(255, 255, 255, 0.63);
}

.fluid-section-three .right-column .inner-column h2{
	position:relative;
	color:#ffffff;
	font-size: 40px;
	font-weight: 600;
	line-height: 1.3em;
	/* color: #001659; */
	font-weight: 700;
	/* text-transform: uppercase; */
	/* line-height: 50px; */
	font-size: 40px;
	line-height: 1.3em;
}

.fluid-section-three .right-column .inner-column .title{
	position:relative;
	color:#ffffff;
	font-size: 18px;
	font-weight: 700;
	line-height: 1.4em;
	margin-top: 8px;
	margin-bottom: 35px;
}

.fluid-section-three .right-column .inner-column .title:before{
	position: absolute;
	left: -50px;
	top: 11px;
	content: '';
	height: 1px;
	width: 35px;
	background-color: rgb(255, 255, 255);
}

.fluid-section-three .right-column .inner-column .text{
	position:relative;
	color:#ffffff;
	font-size: 18px;
	font-weight: 300;
	line-height: 1.6em;
	margin-bottom: 50px;
}

/*Featured Block Two*/

.feature-block-two{
	position: relative;
	margin-bottom: 35px;
}

.feature-block-two .inner-box{
	position: relative;
	padding-left: 32px;
}

.feature-block-two .inner-box h3{
	position: relative;
	font-size: 23px;
	font-weight: 600;
	line-height: 1.4em;
	margin-bottom: 12px;
}

.feature-block-two .inner-box h3:before{
	position:absolute;
	content: '';
	left: -50px;
	top: 12px;
	width:35px;
	height: 1px;
	background-color: #FF0000;
	z-index: 999;
}

.feature-block-two .inner-box h3 a{
	position: relative;
	color: #001659;
	-webkit-transition:all 300ms ease;
	-ms-transition:all 300ms ease;
	-o-transition:all 300ms ease;
	-moz-transition:all 300ms ease;
	transition:all 300ms ease;
}

.feature-block-two .inner-box h3 a:hover{
	color: #ffffff;
}

.feature-block-two .inner-box .text{
	position: relative;
	color:#555555;
	font-size: 17px;
	line-height: 1.6em;
}

.feature-block-two.alternate{
	/* margin-left:60px; */
}

.feature-block-two.alternate .inner-box h3:before{
	background-color: rgba(255,255,255,1);
}

.feature-block-two.alternate h3 a,
.feature-block-two.alternate .text{
	color:#ffffff;
}

.feature-block-two.style-two{
	margin-left: 0px;
}

.feature-block-two.style-two .inner-box h3{
	font-size:18px !important;
	margin-bottom: 12px !important;
}

.feature-block-two.style-two .inner-box h3:before{
	background-color: #FF0000;
}

/*** 

====================================================================
	Beyong Section
====================================================================

***/

.beyong-section{
	position: relative;
	padding: 110px 0px 115px;
	background: #00235a;
}


.beyong-section.style-two:before{
	position: absolute;
	content: '';
	right: 0px;
	top: 0px;
	width: 35%;
	height: 100%;
	background-color: #f9f8fc;
}

.beyong-section .beyong-tabs{
	position:relative;
}

.beyong-section .beyong-tabs .tab-btns{
	position:relative;
	margin-bottom: 35px;
	text-align: center;
}

.beyong-section .beyong-tabs .tab-btns .tab-btn{
	position: relative;
	line-height: 24px;
	padding: 0px 0px;
	cursor: pointer;
	color: #ffffff;
	font-weight: 600;
	font-size: 18px;
	display: inline-block;
	margin:0px 20px 10px;
	padding-bottom: 2px;
	transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-webkit-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	font-family:
 'Poppins', sans-serif;
}

.beyong-section .beyong-tabs .tab-btns .tab-btn:before{
	position: absolute;
	content: '';
	left: 50%;
	top: -30px;
	width: 7px;
	height: 7px;
	opacity: 0;
	visibility: hidden;
	margin-left: -3px;
	border-radius: 50px;
	background-color: #FF0000;
	transition: all 900ms ease;
    -moz-transition: all 900ms ease;
    -webkit-transition: all 900ms ease;
    -ms-transition: all 900ms ease;
    -o-transition: all 900ms ease;
}

.beyong-section .beyong-tabs .tab-btns .tab-btn .separater-dots{
	position: absolute;
	content: '';
	left: 50%;
	top: -30px;
	width: 31px;
	opacity: 0;
	visibility: hidden;
	margin-left: -15px;
	transition: all 900ms ease;
    -moz-transition: all 900ms ease;
    -webkit-transition: all 900ms ease;
    -ms-transition: all 900ms ease;
    -o-transition: all 900ms ease;
}

.beyong-section .beyong-tabs .tab-btns .tab-btn .separater-dots:before{
	position: absolute;
	content: '';
	left: 0px;
	top: 0px;
	width: 7px;
	height: 7px;
	border-radius: 50px;
	background-color: #FF0000;
}

.beyong-section .beyong-tabs .tab-btns .tab-btn .separater-dots:after{
	position: absolute;
	content: '';
	right: 0px;
	top: 0px;
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background-color: #FF0000;
}

.beyong-section .beyong-tabs .tab-btns .tab-btn:hover .separater-dots,
.beyong-section .beyong-tabs .tab-btns .tab-btn.active-btn .separater-dots{
	top:-24px;
	opacity: 1;
	visibility: visible;
}

.beyong-section .beyong-tabs .tab-btns .tab-btn.active-btn,
.beyong-section .beyong-tabs .tab-btns .tab-btn:hover{
	color: #ffffff;
}

.beyong-section .beyong-tabs .tab-btns .tab-btn:hover::before,
.beyong-section .beyong-tabs .tab-btns .tab-btn.active-btn::before{
	top:-24px;
	opacity: 1;
	bottom: auto;
	visibility: visible;
}

.beyong-section .beyong-tabs .tabs-content{
	position:relative;
	padding:35px 35px 35px;
	background-color: #ffffff;
	box-shadow: 0px 0px 15px rgba(0,0,0,0.10);
}

.beyong-section .beyong-tabs .tabs-content .tab{
	position:relative;
	display:none;
	transition: all 900ms ease;
    -moz-transition: all 900ms ease;
    -webkit-transition: all 900ms ease;
    -ms-transition: all 900ms ease;
    -o-transition: all 900ms ease;
}

.beyong-section .beyong-tabs .tabs-content .tab.active-tab{
	display:block;
}

.beyong-section .beyong-tabs .tabs-content .image-column{
	position: relative;
}

.beyong-section .beyong-tabs .tabs-content .image-column .image{
	position: relative;
}

.beyong-section .beyong-tabs .tabs-content .image-column .image:before{
	position: absolute;
	content: '';
	left: 0px;
	top: 0px;
	width:100%;
	height: 100%;
	display: block;
	background-color: rgba(56,48,136,0.50);
}

.beyong-section .beyong-tabs .tabs-content .image-column .image img{
	position: relative;
	width:100%;
	display: block;
}

.beyong-section .beyong-tabs .tabs-content .content-column{
	position: relative;
}

.beyong-section .beyong-tabs .tabs-content .content-column .inner-column{
	position: relative;
	padding-top: 20px;
	padding-left: 20px;
}

.beyong-section .beyong-tabs .tabs-content .content-column h2{
	position: relative;
	color:#001659;
	font-size: 23px;
	font-weight: 600;
	line-height: 1.4em;
	margin-bottom: 15px;
}

.beyong-section .beyong-tabs .tabs-content .content-column .text{
	position: relative;
	color: #555555;
	font-size: 16px;
	line-height: 1.9em;
	margin-bottom: 30px;
}

.beyong-section .beyong-tabs .tabs-content .content-column .read-more{
	position: relative;
	color:#FF0000;
	font-size: 13px;
	font-weight: 700;
	margin-top: 40px;
	display: inline-block;
	transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
	text-transform: uppercase;
}

.beyong-section .beyong-tabs .tabs-content .content-column .read-more:hover{
	color:#001659;
}

.beyong-section .beyong-tabs .tabs-content .content-column .read-more .fa{
	position: relative;
	margin-right: 4px;
	color:#001659;
	font-size: 14px;
	font-weight: 700;
}

/*** 

====================================================================
	Call To Action Two
====================================================================

***/

.call-to-action-two{
	position: relative;
	padding: 120px 0px;
	text-align: center;
	background-size: cover;
	background-position: center center;
	background-attachment: fixed;
}

.call-to-action-two:before {
    position: absolute;
    content: '';
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    display: block;
    background-color: rgba(3,13,40,.8);
}
.call-to-action-two h2 {
    position: relative;
    color: #ffffff;
    font-size: 40px;
    font-weight: 700;
    line-height: 1.3em;
    margin-bottom: 20px;
}

.call-to-action-two .text {
    position: relative;
    color: #ffffff;
    font-size: 17px;
    line-height: 1.7em;
    margin-bottom: 40px;
}

.call-to-action-two .btn-style-five {
    position: relative;
    z-index: 1;
    /* padding: 15px 45px; */
    border: unset;
    border-radius: 4px;
}

.call-to-action-two .btn-style-five:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    height: 100%;
    width: 100%;
    background: #fff;
    -webkit-transform: scale(0, 1);
    -ms-transform: scale(0, 1);
    transform: scale(0, 1);
    -webkit-transform-origin: bottom right;
    -ms-transform-origin: bottom right;
    transform-origin: bottom right;
    -webkit-transition: transform 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -moz-transition: transform 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -o-transition: transform 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
    transition: transform 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -webkit-transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -moz-transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -o-transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
    transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
}
.call-to-action-two .btn-style-five:hover:after {
    -webkit-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    transform: scale(1, 1);
    -webkit-transform-origin: top left;
    -ms-transform-origin: top left;
    transform-origin: top left;
    border-radius: 4px;
}
.call-to-action-two .btn-style-five:hover {
    color: #222222;
    transition: all 700ms ease;
    border: unset;
}

/*** 

====================================================================
	News Section Two
====================================================================

***/

.news-section-two{
	position: relative;
	padding: 115px 0px;
}

.news-block-two{
	position: relative;
}

.news-block-two .inner-box{
	position: relative;
	background-color: #f9f8fc;
	/* border-radius: 10px; */
}

.news-block-two .inner-box .image-column{
	position: relative;
	float: left;
	padding: 0px;
}

.news-block-two .inner-box .image-column.align-right{
	float:right;
}

.news-block-two .inner-box .image-column .image{
	position: relative;
}

.news-block-two .inner-box .image-column .image .arrow-box{
	position: absolute;
	right: 0px;
	bottom: 0px;
	color:#ffffff;
	width:70px;
	height: 70px;
	font-size: 32px;
	line-height: 70px;
	text-align: center;
	display: inline-block;
	background-color: #FF0000;
	transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}

.news-block-two .inner-box .image-column .image .arrow-box:hover{
	background-color: #001659;
}

.news-block-two .inner-box .image-column .image img{
	position: relative;
	width: 100%;
	display: block;
}

.news-block-two .inner-box .content-column{
	position: relative;
	float: left;
	padding: 0px;
}

.news-block-two .inner-box .content-column .inner-column{
	position: relative;
	padding: 60px;
}

.news-block-two .inner-box .content-column .inner-column .title{
	position: relative;
	color: #313131;
	font-size: 17px;
	line-height: 1.4em;
	font-weight: 600;
	margin-bottom: 10px;
	text-transform: uppercase;
	z-index: 99;
}

.news-block-two .inner-box .content-column .inner-column h3{
	position: relative;
	font-size: 23px;
	font-weight: 700;
	line-height: 1.4em;
	margin-bottom: 20px;
}

.news-block-two .inner-box .content-column .inner-column h3 a{
	position: relative;
	color:#001659;
	transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}

.news-block-two .inner-box .content-column .inner-column h3 a:hover{
	color:#FF0000;
}

.news-block-two .inner-box .content-column .inner-column .text{
	position: relative;
	color:#555555;
	font-size: 17px;
	line-height: 1.7em;
}

/*** 

====================================================================
	Featured Section
====================================================================

***/

.featured-section{
	position: relative;
}

.feature-block-three{
	position: relative;
}

.feature-block-three .inner-box{
	position: relative;
	padding: 70px 60px 70px;
	/* border-top: 1px solid #dddddd; */
	/* border-bottom: 1px solid #dddddd; */
	background: #FF0000;
}

.feature-block-three .inner-box .content{
	position: relative;
	padding-left: 50px;
}

.feature-block-three .inner-box .content .icon-box{
	position: absolute;
	left:0px;
	top: 4px;
	color: #ffffff;
	font-size: 32px;
	line-height: 1em;
}

.feature-block-three .inner-box h3{
	position: relative;
	font-size: 23px;
	font-weight: 600;
	line-height: 1.4em;
	margin-bottom: 12px;
}

.feature-block-three .inner-box h3 a{
	position: relative;
	color: #ffffff;
}

.feature-block-three .inner-box .text{
	position: relative;
	color: #ffffff;
	font-size: 16px;
	line-height: 1.8em;
}

.feature-block-three.blue .inner-box{
	background-color: #001659;
	border-color:
 #001659;
}

.feature-block-three.blue .inner-box h3 a,
.feature-block-three.blue .inner-box .icon-box,
.feature-block-three.blue .inner-box .text{
	color:#ffffff;
}

.feature-block-three.pink .inner-box{
	background-color: #001659;
	border-color: #FF0000;
}

.feature-block-three.pink .inner-box h3 a,
.feature-block-three.pink .inner-box .icon-box,
.feature-block-three.pink .inner-box .text{
	color:#ffffff;
}

.feature-block-three.black .inner-box{
	background-color: #001659;
	border-color: #222222;
}

.feature-block-three.black .inner-box h3 a,
.feature-block-three.black .inner-box .icon-box,
.feature-block-three.black .inner-box .text{
	color:#ffffff;
}

.feature-block-three.grey .inner-box{
	background-color: #f9f8fc;
	border-color: #f9f8fc;
}

.featured-section .owl-dots,
.featured-section .owl-nav{
	display:none;
}

/*** 

====================================================================
	Testimonial Section Two
====================================================================

***/

.testimonial-section-two{
	position: relative;
	padding:105px 0px;
}

.testimonial-block-three{
	position: relative;
}

.testimonial-block-three .inner-box{
	position: relative;
	text-align: center;
}

.testimonial-block-three .inner-box .image{
	position: relative;
	width: 120px;
	height: 120px;
	overflow: hidden;
	border-radius: 50%;
	margin: 0 auto;
	margin-bottom: 40px;
}

.testimonial-block-three .inner-box .text{
	position: relative;
	color: #222222;
	font-size: 17px;
	line-height: 1.9em;
	max-width: 930px;
	margin: 0 auto;
	font-style: italic;
	margin-bottom: 35px;
	/* font-family: 'Merriweather', serif; */
	font-weight: 600;
}

.testimonial-block-three .inner-box .author{
	position: relative;
	color:#555555;
	font-size: 14px;
	font-weight: 600;
	padding-top: 20px;
	text-transform: uppercase;
}

.testimonial-block-three .inner-box .author:before{
	position: absolute;
	content: '';
	left: 50%;
	top: 0px;
	width: 50px;
	height: 1px;
	margin-left: -25px;
	background-color: #dddddd;
}

.testimonial-section-two .owl-nav{
	display:none;
}

.testimonial-section-two .owl-dots{
	position:absolute;
	right: 0px;
	top: 100px;
}

.testimonial-section-two .owl-dots .owl-dot{
	position:relative;
	width:10px;
	height:8px;
	margin-bottom: 10px;
	border-radius:50%;
	background-color:#cccccc;
	transition:all 0.3s ease;
	-moz-transition:all 0.3s ease;
	-webkit-transition:all 0.3s ease;
	-ms-transition:all 0.3s ease;
	-o-transition:all 0.3s ease;
}

.testimonial-section-two .owl-dots .owl-dot:hover,
.testimonial-section-two .owl-dots .owl-dot.active{
	position:relative;
	width:22px;
	height:8px;
	border-radius:10px;
	background-color:#FF0000;
}

/*** 

====================================================================
	Newsletter Section
====================================================================

***/

.newsletter-section{
	position: relative;
}

.newsletter-section:before{
	position: absolute;
	content: '';
	left: 0px;
	top: 0px;
	width: 50%;
	height: 100%;
	background-color: #001659;
}

.newsletter-section:after{
	position: absolute;
	content: '';
	right: 0px;
	top: 0px;
	width: 50%;
	height: 100%;
	z-index: -1;
	background-color: #FF0000;
}

.newsletter-section .left-column{
	position: relative;
	width:50%;
	float: left;
}

.newsletter-section .left-column .inner-column{
	position: relative;
	padding:60px 0px;
	text-align: right;
	padding-right :80px;
}

.newsletter-section .left-column .inner-column h2{
	position: relative;
	color: #ffffff;
	font-size: 30px;
	font-weight: 600;
	line-height: 1.4em;
	z-index: 1;
}

.newsletter-section .left-column .inner-column .text{
	position: relative;
	color:#ffffff;
	z-index: 1;
	font-size: 18px;
	font-weight: 500;
	margin-top: 8px;
}

.newsletter-section .right-column{
	position: relative;
	width:50%;
	float: right;
}

.newsletter-section .right-column .inner-column{
	position: relative;
	max-width: 480px;
	width: 100%;
	padding: 65px 15px 65px 80px;
}

.newsletter-section .right-column .subscribe-form{
	position: relative;
}

.newsletter-section .right-column .subscribe-form .form-group{
	position:relative;
	display:block;
	margin-bottom:10px;
}

.newsletter-section .right-column .subscribe-form .form-group input[type="text"],
.newsletter-section .right-column .subscribe-form .form-group input[type="email"]{
	position:relative;
	display:block;
	width:100%;
	line-height:26px;
	padding:10px 0px;
	height:48px;
	font-size:15px;
	color:#ffffff;
	background:none;
	font-weight:400;
	border-bottom:2px solid rgba(255,255,255,0.20);
	-webkit-transition:all 300ms ease;
	-ms-transition:all 300ms ease;
	-o-transition:all 300ms ease;
	-moz-transition:all 300ms ease;
	transition:all 300ms ease;	
}

.newsletter-section .right-column .subscribe-form .form-group input::-webkit-input-placeholder{
	color:rgba(255,255,255,1);
}

.newsletter-section .right-column .subscribe-form .form-group button{
	position:absolute;
	right:0px;
	top:10px;
	cursor: pointer;
	font-size:28px;
	color:#ffffff;
	font-weight:400;
	background:none;
	letter-spacing:1px;
	text-transform:uppercase;
}

/*** 

====================================================================
	Planning Section
====================================================================

***/

.planning-section{
	position: relative;
	padding: 110px 0px 110px;
}

.planning-section:before{
	position: absolute;
	content: '';
	right: 0px;
	top: 0px;
	width:50%;
	height: 100%;
	display: block;
	background-color: #f9f8fc;
}

.planning-section .sec-title{
	margin-bottom:80px;	
}

/*** 

====================================================================
	Help Section
====================================================================

***/

.help-section{
	position: relative;
	padding: 110px 0px;
}

.help-section .inner-container{
	position:relative;
}

.help-section:before{
	position: absolute;
	content: '';
	left: 0px;
	top: 0px;
	width:50%;
	height: 100%;
	display: block;
	background-color: #f9f8fc;
}

.help-section .content-column{
	position: relative;
	padding:0px;
	float: left;
	width: 50%;
}

.help-section .content-column .inner-column{
	position:relative;
	padding: 80px 70px 85px;
	background-color: #ffffff;
}

.help-section .content-column .inner-column .content{
	position:relative;
	overflow: hidden;
}

.help-section .content-column .inner-column .text{
	position:relative;
	padding-left: 50px;
}

.help-section .content-column .inner-column .text:before{
	position:absolute;
	content: "\f1ac";
	left: 0px;
	top: 5px;
	color:#FF0000;
	font-size: 34px;
	line-height: 1em;
	font-family: "Flaticon";
}

.help-section .content-column .inner-column .text p{
	position:relative;
	color:#555555;
	font-size: 16px;
	line-height: 1.6em;
	margin-bottom: 20px;
}

.help-section .content-column .inner-column .text p:last-child{
	margin-bottom:0px;
}

.help-section .content-column .inner-column .sec-title{
	margin-bottom: 35px;
}

.help-section .content-column .inner-column .sec-title .title-text{
	margin-top: 15px;
}

.help-section .content-column .inner-column .risk{
	position:relative;
	color: #FF0000;
	font-weight: 700;
	margin-top: 45px;
	padding-right: 30px;
	display: inline-block;
	text-transform: uppercase;
	-webkit-transition:all 300ms ease;
	-ms-transition:all 300ms ease;
	-o-transition:all 300ms ease;
	-moz-transition:all 300ms ease;
	transition:all 300ms ease;
}

.help-section .content-column .inner-column .risk:before{
	position: absolute;
    content: '';
    top: 11px;
    left: 100%;
    width: 300%;
    height: 1px;
    background-color: #dddddd;
}

.help-section .content-column .inner-column .risk:hover{
	color:#001659;
}

.help-section .content-column .inner-column .risk .fa{
	position:relative;
	color:#001659;
	font-weight: 600;
	margin-right: 5px;
}

.help-section .image-column{
	position: absolute;
    right: 0px;
    top: 0px;
    width: 50%;
	float: right;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.help-section .image-column .inner-column{
	position:static;
}

.help-section .image-column .inner-column .image{
	position: relative;
	display: none;
}

.help-section .image-column .inner-column .image img{
	position: relative;
	width:100%;
	display: block;
}

.help-section .image-column .inner-column .testimonial-boxed{
	position:absolute;
	right: -300px;
	top: 50%;
	z-index: 1;
	max-width: 420px;
	margin-top: -123px;
}

.help-section .image-column .inner-column .testimonial-boxed .inner-block{
	position: relative;
	padding: 75px 50px 60px;
	background-color: #222222;
}

.help-section .image-column .inner-column .testimonial-boxed .inner-block .quote-icon{
	position: absolute;
    right: 45px;
    top: -28px;
    color: #FF0000;
    line-height: 1em;
    font-size: 60px;
}

.help-section .image-column .inner-column .testimonial-boxed .text{
	position: relative;
	font-style: italic;
	font-size: 22px;
	color:#ffffff;
	font-weight: 300;
	line-height: 1.7em;
	font-family: 'Hind', sans-serif;
}

.help-section .image-column .inner-column .testimonial-boxed .owl-nav,
.help-section .image-column .inner-column .testimonial-boxed .owl-dots{
	display: none;
}

/*** 

====================================================================
	Services Section Two
====================================================================

***/

.services-section-two{
	position:relative;
}

.services-section-two .owl-dots,
.services-section-two .owl-nav{
	display:none;
}

.services-block-two{
	position: relative;
}

.services-block-two .inner-box{
	position: relative;
	display:block;
}

.services-block-two .inner-box .image-layer{
	position:absolute;
	left:0px;
	top:0px;
	width:100%;
	height:100%;
	background-position:center center;
	background-repeat:no-repeat;
	background-size:cover;
}

.services-block-two .inner-box .overlay-box{
	position: relative;
	left: 0px;
	top: 0px;
	width: 100%;
	height:
 100%;
	display: block;
	text-align: center;
	padding:70px 0px;
	transition: all 300ms ease;
	-webkit-transition: all 300ms ease;
	-ms-transition: all 300ms ease;
	-o-transition: all 300ms ease;
	background-color: rgba(20, 20, 20, 0.91);
}

.services-block-two.pink .inner-box .overlay-box {
    background-color: rgba(199, 156, 99, 0.82);
}
.services-block-two.blue .inner-box .overlay-box{
	background-color: #001659e8;
}

.services-block-two .inner-box .overlay-box .overlay-inner{
    position: relative;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    display: block;
    vertical-align: middle;
    padding: 10px 30px;
}

.services-block-two .inner-box .overlay-box .overlay-inner .content{
	position: relative;
    display: block;
    vertical-align: middle;
}

.services-block-two .inner-box .overlay-box .icon-box{
	position: relative;
	color:#ffffff;
	font-size: 70px;
	line-height: 1em;
	padding-bottom: 20px;
	margin-bottom: 25px;
}

.services-block-two .inner-box .overlay-box .icon-box:after{
	position: absolute;
	content: '';
	left: 50%;
	bottom:0px;
	width:70px;
	height: 1px;
	margin-left: -35px;
	background-color: rgba(255,255,255,0.15);
}

.services-block-two .inner-box .overlay-box h3{
	position: relative;
	font-size: 30px;
	font-weight: 600;
	color:#ffffff;
	line-height: 1.4em;
	margin-bottom: 15px;
}

.services-block-two .inner-box .overlay-box h3 a{
	position: relative;
	color:#ffffff;
}

.services-block-two .inner-box .overlay-box .text{
	position: relative;
	color: #ffffff;
	font-size: 18px;
	line-height: 1.6em;
	margin-bottom: 25px;
}

.services-block-two .inner-box .overlay-box .read-more{
	position: relative;
	color:#ffffff;
	font-size: 13px;
	font-weight: 700;
	text-transform: uppercase;
}

.services-block-two .inner-box .overlay-box .read-more .fa{
	position: relative;
	margin-right: 4px;
	font-weight: 600;
}

/*** 

====================================================================
	Modern Section
====================================================================

***/

.modern-section{
	position: relative;
	padding: 110px 0px 70px;
}

.modern-section:before{
	position: absolute;
    content: '';
    left: 0px;
    top: 0px;
    width: 40%;
    height: 100%;
    background-color: #f9f8fc;
}

.modern-section .image-column{
	position: relative;
	margin-bottom: 40px;
}

.modern-section .image-column .inner-column{
	position: relative;
}

.modern-section .image-column .inner-column .image{
	position: relative;
}

.modern-section .image-column .inner-column .image:before{
	position: absolute;
	content: '';
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
	display: block;
	background-color: rgba(68,57,134,0.15);
}

.modern-section .image-column .inner-column .image img{
	position: relative;
	width:100%;
	display: block;
}

.modern-section .content-column{
	position: relative;
}

.modern-section .content-column .inner-column{
	position: relative;
	padding-left: 30px;
}

.modern-section .content-column .inner-column h2{
	position: relative;
	color:#001659;
	font-size: 48px;
	font-weight: 600;
	line-height: 1.2em;
	margin-bottom: 12px;
}

.modern-section .content-column .inner-column .title{
	position: relative;
	color:#555555;
	font-size: 18px;
	font-weight: 500;
	margin-bottom: 30px;
}

.modern-section .content-column .inner-column .text{
	position: relative;
	color:#555555;
	font-size: 16px;
	line-height: 1.7em;
	margin-bottom: 35px;
}

/*** 

====================================================================
	Expert Section
====================================================================

***/

.expert-section{
	position: relative;
	padding: 0px 0px 100px;
}

.expert-section .sec-title{
	margin-bottom:30px;
}

.expert-section .counter-column{
	position: relative;
}

.expert-section .counter-column .inner-column{
	position: relative;
}

.expert-section .counter-column .inner-column .fact-counter{
	position:relative;
	padding-left: 50px;
}

.expert-section .counter-column .text{
	position: relative;
	color:#555555;
	font-size: 16px;
	padding-left: 50px;
	line-height: 1.7em;
	margin-bottom: 55px;
}

.expert-section .counter-column .text:before{
    position: absolute;
    content: "\f1ac";
    left: 0px;
    top: 0px;
    color: #FF0000;
    line-height: 1em;
    font-size: 40px;
    font-family: "Flaticon";
}

.expert-section .blocks-column{
	position:relative;
}

.expert-section .blocks-column .inner-column{
	position:relative;
	margin-right: -185px;
}

.expert-section .blocks-column .inner-column .owl-nav{
	display:none;
}

.expert-section .blocks-column .inner-column .owl-dots{
	position:relative;
	text-align: center;
	margin-top: 20px;
}

.expert-section .blocks-column .inner-column .owl-dots .owl-dot{
	position:relative;
	width:10px;
	height:8px;
	margin:0px 5px;
	display:inline-block;
	border-radius:50%;
	background-color:#cccccc;
	transition:all 0.3s ease;
	-moz-transition:all 0.3s ease;
	-webkit-transition:all 0.3s ease;
	-ms-transition:all 0.3s ease;
	-o-transition:all 0.3s ease;
}

.expert-section .blocks-column .inner-column .owl-dots .owl-dot:hover,
.expert-section .blocks-column .inner-column .owl-dots .owl-dot.active{
	position:relative;
	width:22px;
	height:8px;
	border-radius:10px;
	background-color:#FF0000;
}

/*Expert Block*/

.expert-block{
	position: relative;
	margin-bottom: 30px;
}

.expert-block .inner-box{
	position: relative;
}

.expert-block .inner-box .image{
	position: relative;
}

.expert-block .inner-box .image img{
	position: relative;
	width:100%;
	display: block;
}

.expert-block .inner-box .image:before{
	position: absolute;
	content: '';
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
	display: block;
	background-color: rgba(68,57,134,0.15);
}

.expert-block .inner-box .lower-content{
	position: relative;
	padding-top: 30px;
	text-align: center;
}

.expert-block .inner-box .lower-content h3{
	position: relative;
	color: #222222;
	font-size: 18px;
	font-weight: 600;
	line-height: 1.4em;
	margin-bottom: 4px;
}

.expert-block .inner-box .lower-content h3 a{
	position: relative;
	color:#222222;
	font-size: 18px;
	font-weight: 600;
	transition:all 0.3s ease;
	-moz-transition:all 0.3s ease;
	-webkit-transition:all 0.3s ease;
	-ms-transition:all 0.3s ease;
	-o-transition:all 0.3s ease;
}

.expert-block .inner-box .lower-content h3 a:hover{
	color:#FF0000;
}

.expert-block .inner-box .lower-content .designation{
	position: relative;
	color:#FF0000;
	font-size: 13px;
	font-weight: 500;
}

/*** 

====================================================================
	News Section Three
====================================================================

***/

.news-section-three{
	position: relative;
	padding: 100px 0px 60px;
	background-color: #f9f8fc;
}

.news-section-three.alternate{
	background:none;
}

.news-block-three{
	position:relative;
	margin-bottom: 30px;
}

.news-block-three .inner-box{
	position: relative;
	overflow: hidden;
}

.news-block-three .inner-box .image{
	position: relative;
}

.news-block-three .inner-box .image img{
	position: relative;
	width:100%;
	display: block;
}

.news-block-three .inner-box .image:before{
	position: absolute;
	content: '';
	left:0px;
	top:0px;
	width:100%;
	height: 100%;
	display: block;
	cursor: pointer;
	z-index: 1;
	border: 150px solid rgba(68,57,134,0);
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -moz-transition: all 0.8s cubic-bezier(0.940, 0.850, 0.100, 0.620);
    -webkit-transition: all 0.8s cubic-bezier(0.940, 0.850, 0.100, 0.620);
    -o-transition: all 0.8s cubic-bezier(0.940, 0.850, 0.100, 0.620);
    -ms-transition: all 0.8s cubic-bezier(0.940, 0.850, 0.100, 0.620);
    transition: all 0.8s cubic-bezier(0.940, 0.850, 0.100, 0.620);
}

.news-block-three .inner-box:hover .image:before {
    border: 0px double #FF0000;
}

.news-block-three .inner-box .lower-content{
	position: relative;
	padding-top: 40px;
}

.news-block-three .inner-box .post-info{
	position: relative;
	margin-bottom: 12px;
}

.news-block-three .inner-box .post-info li{
	position: relative;
	color:#555555;
	font-size: 13px;
	font-weight: 700;
	padding-right: 14px;
	margin-right: 12px;
	line-height: 1.1em;
	display: inline-block;
	text-transform: uppercase;
	border-right: 1px solid #555555;
}

.news-block-three .inner-box .post-info li:last-child{
	margin-right: 0px;
	padding-right: 0px;
	border:none;
}

.news-block-three .inner-box .lower-content h3{
	position: relative;
	font-size: 22px;
	color:#222222;
	font-weight: 600;
	line-height: 1.5em;
	margin-bottom: 10px;
}

.news-block-three .inner-box .lower-content h3 a{
	position: relative;
	color:#222222;
	transition:all 0.3s ease;
	-moz-transition:all 0.3s ease;
	-webkit-transition:all 0.3s ease;
	-ms-transition:all 0.3s ease;
	-o-transition:all 0.3s ease;
}

.news-block-three .inner-box .lower-content h3 a:hover{
	color:#FF0000;
}

.news-block-three .inner-box .lower-content .text{
	position: relative;
	color:#555555;
	font-size: 16px;
	line-height: 1.7em;
	margin-bottom: 30px;
}

.news-block-three .inner-box .lower-content .read-more{
	position: relative;
	color:#FF0000;
	font-size: 13px;
	font-weight: 700;
	padding-right: 30px;
	text-transform: uppercase;
	display: inline-block;
	transition:all 0.3s ease;
	-moz-transition:all 0.3s ease;
	-webkit-transition:all 0.3s ease;
	-ms-transition:all 0.3s ease;
	-o-transition:all 0.3s ease;
}

.news-block-three .inner-box .lower-content .read-more:hover{
	color:#001659;
}

.news-block-three .inner-box .lower-content .read-more:before{
	position: absolute;
    content: '';
    left: 100%;
    top: 12px;
    width: 0%;
    height: 1px;
    opacity: 0;
    visibility: hidden;
	transition:all 900ms ease;
	-moz-transition:all 900ms ease;
	-webkit-transition:all 900ms ease;
	-ms-transition:all 900ms ease;
	-o-transition:all 900ms ease;
    background-color: #dddddd;
}

.news-block-three
 .inner-box:hover .lower-content .read-more:before{
	width:300%;
	opacity: 1;
	visibility: visible;
}

.news-block-three .inner-box .lower-content .read-more .fa{
	position: relative;
	color:#001659;
	font-weight: 700;
	margin-right: 4px;
	display: inline-block;
}

/*** 

====================================================================
	Goals Section
====================================================================

***/

.goals-section{
	position: relative;
	padding: 110px 0px 30px;
}

.goals-section:before{
	position: absolute;
	content: '';
	left: 0px;
	top: 0px;
	width: 50%;
	height: 100%;
	background-color: #f9f8fc;
}

.goals-section .title-column{
	position: relative;
}

.goals-section .title-column .inner-column{
	position: relative;
	text-align: right;
	padding-right: 50px;
	margin-bottom: 40px;
}

.goals-section .title-column .inner-column h2{
	position: relative;
	color: #001659;
	font-size: 48px;
	font-weight: 600;
	line-height: 1.2em;
	color: #001659;
	font-weight: 700;
	text-transform: capitalize;
	/* line-height: 50px; */
	font-size: 40px;
	line-height: 1.3em;
}

.goals-section .content-column{
	position: relative;
}

.goals-section .content-column .inner-column{
	position: relative;
	padding-left: 50px;
}

.goals-section .content-column .inner-column .text{
	position: relative;
}

.goals-section .content-column .inner-column .text p{
	position: relative;
	color:#555555;
	font-size: 17px;
	line-height: 1.7em;
	margin-bottom: 20px;
}

.goals-section .content-column .inner-column .text p:last-child{
	margin-bottom: 0px;
}

/*** 

====================================================================
	Services Section Three
====================================================================

***/

.services-section-three {
    position: relative;
    padding: 100px 0px 100px;
}



/*** 

====================================================================
	Task Section
====================================================================

***/

.task-section{
	position: relative;
	padding: 105px 0px 50px;
	background-color: #FF0000;
	/* border-radius: 10px; */
}

.task-section:before{
	position: absolute;
	content: '';
	left: 0px;
	top: 0px;
	width: 30%;
	height: 100%;
	display: block;
	background-color: #060606;
}

.task-section .image-column{
	position: relative;
	margin-bottom: 40px;
}

.task-section .image-column .inner-column {
    position: relative;
    margin-right: 20px;
    margin-left: -250px;
    overflow: hidden;
}

.task-section .image-column .inner-column .image{
	position: relative;
	/* border-radius: 10px; */
}
.task-section .image-column .inner-column .image img {
    position: relative;
    width: 100%;
    display: block;
    background-attachment: fixed;
    border-radius: 10px;
}

.task-section .content-column{
	position: relative;
}

.task-section .content-column .inner-column{
	position: relative;
	margin-right: -25px;
	padding-left: 40px;
}

.task-section .content-column .inner-column .title{
	position: relative;
	color:#fff;
	font-size: 16px;
	font-weight: 500;
	margin-bottom: 8px;
	text-transform: uppercase;
}

.task-section .content-column .inner-column h2{
	position: relative;
	color:#ffffff;
	font-size: 40px;
	font-weight: 700;
	line-height: 1.3em;
	margin-bottom: 30px;
	/* text-transform: uppercase; */
}

.task-section .content-column .inner-column .btn-box {
    position: relative;
    margin-left: 0;
    margin-top: 50px;
    /* background: red; */
}

/*** 

====================================================================
	Offer Section
====================================================================

***/

.offer-section-two {
    position: relative;
    padding: 120px 0px 80px;
    background: #fcfcfc00;
}
.offer-section-two .offer-title-box{
	position: relative;
	margin-bottom: 30px;
}

.offer-section-two .offer-title-box .inner-box{
	position: relative;
	min-height: 385px;
	padding: 45px 45px 45px;
	background-color: #FF0000;
	border-radius: 10px;
}

.offer-section-two .offer-title-box .inner-box h2{
	position: relative;
	font-size: 40px;
	color: #ffffff;
	font-weight: 700;
	line-height: 1.3em;
	text-transform: capitalize;
}

.offer-section-two .offer-title-box .inner-box .text{
	position: relative;
	color:#ffffff;
	font-size: 18px;
	font-weight: 500;
	line-height: 1.6em;
	margin-top: 10px;
}

.offer-section-two .offer-title-box .inner-box .arrow-box{
	position: absolute;
	right: 0px;
	bottom: 0px;
	width: 70px;
	height: 70px;
	color: #001659;
	text-align: center;
	line-height: 70px;
	font-size: 24px;
	font-weight: 700;
	background-color: #ffffff;
	transition:all 0.3s ease;
	-moz-transition:all 0.3s ease;
	-webkit-transition:all 0.3s ease;
	-ms-transition:all 0.3s ease;
	-o-transition:all 0.3s ease;
}

.offer-section-two .offer-title-box .inner-box .arrow-box:hover{
	color:#ffffff;
	background-color: #001659;
}

.offer-section-two .counter-box{
	position:relative;
	padding-top: 70px;
	padding-left: 190px;
	padding-right: 200px;
	background: #fff7f3;
}

/*Services Block Three*/

.services-block-three{
	position: relative;
	margin-bottom: 30px;
}

.services-block-three .inner-box {
    position: relative;
    overflow: hidden;
    padding: 45px;
    box-shadow: 0px 0px 25px rgba(0,0,0,0.15);
    background: white;
    border-radius: 10px;
}

.services-block-three:hover .inner-box {
    color:#222;
}
.services-block-three .inner-box .left-layer{
	position:absolute;
	left:0px;
	top:0px;
	width:50%;
	height:100%;
	display:block;
}

.services-block-three .inner-box .left-layer:before{
	position:absolute;
	content:'';
	left:0px;
	top:0px;
	width:50%;
	height:0%;
	display:block;
	background-color:#001659;
	-webkit-transition:all 600ms ease;
	-ms-transition:all 600ms ease;
	-o-transition:all 600ms ease;
	-moz-transition:all 600ms ease;
	transition:all 600ms ease;
}

.services-block-three .inner-box .left-layer:after{
	position:absolute;
	content:'';
	right:0px;
	bottom:0px;
	width:50%;
	height:0%;
	display:block;
	background-color:#001659;
	-webkit-transition:all 600ms ease;
	-ms-transition:all 600ms ease;
	-o-transition:all 600ms ease;
	-moz-transition:all 600ms ease;
	transition:all 600ms ease;
}

.services-block-three .inner-box:hover .left-layer:before,
.services-block-three .inner-box:hover .left-layer:after{
	height:100%;
}

.services-block-three .inner-box .right-layer{
	position:absolute;
	right:0px;
	top:0px;
	width:50%;
	height:100%;
	display:block;
}

.services-block-three .inner-box .right-layer:before{
	position:absolute;
	content:'';
	left:0px;
	top:0px;
	width:50%;
	height:0%;
	display:block;
	background-color:#001659;
	-webkit-transition:all 600ms ease;
	-ms-transition:all 600ms ease;
	-o-transition:all 600ms ease;
	-moz-transition:all 600ms ease;
	transition:all 600ms ease;
}

.services-block-three .inner-box .right-layer:after{
	position:absolute;
	content:'';
	right:0px;
	bottom:0px;
	width:50%;
	height:0%;
	display:block;
	background-color:#001659;
	-webkit-transition:all 600ms ease;
	-ms-transition:all 600ms ease;
	-o-transition:all 600ms ease;
	-moz-transition:all 600ms ease;
	transition:all 600ms ease;
}

.services-block-three .inner-box:hover .right-layer:before,
.services-block-three .inner-box:hover .right-layer:after{
	height:100%;
}

.services-block-three .inner-box .icon-box{
	position: relative;
	color: #FF0000;
	font-size: 60px;
	line-height: 1em;
	margin-bottom: 20px;
	transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-webkit-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
}

.services-block-three .inner-box:hover .icon-box,
.services-block-three .inner-box:hover .text,
.services-block-three .inner-box:hover h3 a{
	color:#ffffff;
}

.services-block-three .inner-box h3{
	position: relative;
	font-size: 23px;
	font-weight: 600;
	margin-bottom: 15px;
}

.services-block-three .inner-box h3 a{
	position: relative;
	color: #001659;
	transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-webkit-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
}

.services-block-three .inner-box .text{
	position: relative;
	color:#555555;
	font-size: 17px;
	font-weight: 400;
	line-height: 1.7em;
	margin-bottom: 30px;
	transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-webkit-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
}

.services-block-three .inner-box .read-more {
    position: relative;
    color: #001659;
    font-size: 16px;
    text-transform: capitalize;
    padding-right: 25px;
    font-weight: 700;
    display: inline-block;
    transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}

.services-block-three .inner-box .read-more .fa {
    position: relative;
    margin-right: 10px;
    font-size: 12px;
    line-height: 18px;
    display: none;
}
.services-block-three .inner-box .read-more:after{
	position: absolute;
    content: '';
    left: 100%;
    top: 10px;
    width: 0%;
    height: 1px;
    opacity: 0;
    visibility: hidden;
	-webkit-transition:all 600ms ease;
	-ms-transition:all 600ms ease;
	-o-transition:all 600ms ease;
	-moz-transition:all 600ms ease;
	transition:all 600ms ease;
	background-color: rgba(255,255,255,0.20);
}

.services-block-three .inner-box:hover .read-more:after{
	opacity: 1;
	width: 300%;
	visibility: visible;
	background-color: rgba(255,255,255,0.20);
}

/*** 

====================================================================
	Consulting Section
====================================================================

***/

.consulting-section{
	position: relative;
	padding: 110px 0px 110px;
	background-color: #f9f8fc;
}

.consulting-section.alternate{
	background-color:#ffffff;
}

.consult-block{
	position: relative;
}

.consult-block .inner-box{
	position:
 relative;
	background-color: #ffffff;
}

.consult-block .inner-box .image-column{
	position: relative;
	padding:0px;
	float: left;
}

.consult-block .inner-box .image-column .inner-column{
	position: relative;
}

.consult-block .inner-box .image-column .image{
	position: relative;
}

.consult-block .inner-box .image-column .image img{
	position: relative;
	width:100%;
	display: block;
	width: 560px;
}

.consult-block .inner-box .content-column{
	position: relative;
	padding:0px;
	float: left;
}

.consult-block .inner-box .content-column .inner-column{
	position: relative;
	padding: 70px 50px 45px 50px;
}

.consult-block .inner-box .content-column .title{
	position: relative;
	color: #222;
	font-size: 16px;
	font-weight: 600;
	margin-bottom: 10px;
	text-transform: uppercase;
}

.consult-block .inner-box .content-column h3{
	position: relative;
	font-size: 23px;
	color:#001659;
	font-weight: 700;
	line-height: 1.3em;
	margin-bottom: 18px;
}

.consult-block .inner-box .content-column .text{
	position: relative;
	color: #555555;
	font-size: 17px;
	line-height: 1.7em;
	margin-bottom: 30px;
	font-weight: 400;
}

.consulting-section .owl-nav{
	display:none;
}

.consulting-section .owl-dots{
	position:relative;
	text-align: center;
	margin-top: 60px;
}

.consulting-section .owl-dots .owl-dot{
	position:relative;
	width:10px;
	height:8px;
	margin:0px 5px;
	display:inline-block;
	border-radius:50%;
	background-color:#cccccc;
	transition:all 0.3s ease;
	-moz-transition:all 0.3s ease;
	-webkit-transition:all 0.3s ease;
	-ms-transition:all 0.3s ease;
	-o-transition:all 0.3s ease;
}

.consulting-section .owl-dots .owl-dot:hover,
.consulting-section .owl-dots .owl-dot.active{
	position:relative;
	width:22px;
	height:8px;
	border-radius:10px;
	background-color:#FF0000;
}

/*** 

====================================================================
	Strategy Section
====================================================================

***/

.strategy-section{
	position: relative;
	padding: 100px 0px 75px;
}

.strategy-section:before{
	position:absolute;
	content: '';
	left: 0px;
	top: 0px;
	width: 35%;
	height: 315px;
	background-color: #f9f8fc;
}

.strategy-section .title-box{
	position: relative;
	margin-bottom: 140px;
}

.strategy-section .title-box .title{
	position: relative;
	font-size: 18px;
	color: #555555;
	font-weight: 500;
	line-height: 1.4em;
	margin-bottom: 10px;
}

.strategy-section .title-box h2{
	position: relative;
	font-size: 48px;
	color:#001659;
	font-weight: 600;
	line-height: 1.2em;
}

/*Strategy Block*/

.strategy-block{
	position: relative;
	margin-bottom: 30px;
}

.strategy-block .inner-box{
	position: relative;
	padding-left: 105px;
	padding-right: 30px;
}

.strategy-block .inner-box .icon-box{
	position: absolute;
	left: 0px;
	top: 0px;
	color: #FF0000;
	line-height: 1em;
	font-size: 61px;
}

.strategy-block .inner-box h3{
	position: relative;
	color: #222222;
	font-size: 23px;
	font-weight: 600;
	line-height: 1.4em;
	margin-bottom: 12px;
}

.strategy-block .inner-box h3 a{
	position: relative;
	color: #222222;
	transition:all 0.3s ease;
	-moz-transition:all 0.3s ease;
	-webkit-transition:all 0.3s ease;
	-ms-transition:all 0.3s ease;
	-o-transition:all 0.3s ease;
}

.strategy-block .inner-box h3 a:hover{
	color:#FF0000;
}

.strategy-block .inner-box .text{
	position: relative;
	color: #555555;
	font-size: 16px;
	line-height: 1.6em;
}

/*** 

====================================================================
	Stories Section
====================================================================

***/

.stories-section{
	position: relative;
	padding: 110px 0px 80px;
	background-attachment: fixed;
	background-repeat: no-repeat;
	background-position: center center;
}

.stories-section .auto-container{
	position:relative;
}

.stories-section:before{
	position: absolute;
	content: '';
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
	display: block;
	background-color: rgba(68,57,134,0.90);
}

.stories-section .title-column{
	position: relative;
	margin-bottom: 30px;
}

.stories-section .title-column .inner-column{
	position: relative;
}

.stories-section .title-column .sec-title{
	position: relative;
	margin-bottom: 25px;
}

.stories-section .title-column .inner-column .text{
	position: relative;
	color:#cccccc;
	font-size: 16px;
	line-height: 1.7em;
}

.stories-section .blocks-column,
.stories-section .blocks-column .owl-carousel,
.stories-section .blocks-column .owl-carousel .owl-stage,
.stories-section .blocks-column .owl-carousel .owl-stage-outer{
	position:static;
}

.stories-section .owl-nav{
	display:none;
}

.stories-section .owl-dots{
	position:absolute;
	left: 15px;
	bottom: 190px;
	display: none;
}

.stories-section .owl-dots .owl-dot{
	position:relative;
	width:10px;
	height:8px;
	margin:0px 5px;
	display:inline-block;
	border-radius:50%;
	background-color:#cccccc;
	transition:all 0.3s ease;
	-moz-transition:all 0.3s ease;
	-webkit-transition:all 0.3s ease;
	-ms-transition:all 0.3s ease;
	-o-transition:all 0.3s ease;
}

.stories-section .owl-dots .owl-dot:hover,
.stories-section .owl-dots .owl-dot.active{
	position:relative;
	width:22px;
	height:8px;
	border-radius:10px;
	background-color:#FF0000;
}

/*Story Block*/

.story-block{
	position:relative;
	margin-bottom: 30px;
}

.story-block .inner-box{
	position: relative;
}

.story-block .inner-box .image{
	position: relative;
}

.story-block .inner-box .image img{
	position: relative;
	width:100%;
	display: block;
}

.story-block .inner-box .lower-content{
	position: relative;
	padding-top: 40px;
	background: white;
	padding: 30px;
}

.story-block .inner-box .lower-content h3{
	position: relative;
	font-size: 23px;
	font-weight: 600;
	line-height: 1.4em;
	margin-bottom: 10px;
}

.story-block .inner-box .lower-content h3 a{
	position: relative;
	color: #242424;
	transition:all 0.3s ease;
	-moz-transition:all 0.3s ease;
	-webkit-transition:all 0.3s ease;
	-ms-transition:all 0.3s ease;
	-o-transition:all 0.3s ease;
}

.story-block .inner-box .lower-content .text{
	position: relative;
	color: #414141;
	font-size: 16px;
	line-height: 1.8em;
	margin-bottom: 20px;
}

.story-block .inner-box .lower-content .read-more{
	position: relative;
    color: #FF0000;
    font-size: 13px;
    font-weight: 700;
    padding-right: 30px;
    text-transform: uppercase;
    display: inline-block;
}

.story-block .inner-box .lower-content h3 a:hover{
	color:#FF0000;
}

.story-block .inner-box .lower-content .read-more .fa{
	position: relative;
	font-weight: 600;
	margin-right: 4px;
	color:#ffffff;
	top: -2px;
}

/*** 

====================================================================
	Services Section Four
====================================================================

***/

.services-section-four{
	position: relative;
	padding: 105px 0px 40px;
}

.services-block-four{
	position: relative;
	margin-bottom: 30px;
}

.services-block-four .inner-box{
	position: relative;
	text-align: center;
	padding: 40px 30px;
	transition:all 500ms ease;
	-moz-transition:all 500ms ease;
	-webkit-transition:all 500ms ease;
	-ms-transition:all 500ms ease;
	-o-transition:all 500ms ease;
}

.services-block-four .inner-box:before{
	position:absolute;
	content: '';
	left: 0px;
	bottom: 0px;
	height: 2px;
	width: 0px;
	background-color: #FF0000;
	transition:all 1200ms ease;
	-moz-transition:all 1200ms ease;
	-webkit-transition:all 1200ms ease;
	-ms-transition:all 1200ms ease;
	-o-transition:all 1200ms ease;
}

.services-block-four .inner-box:after{
	position:absolute;
	content: '';
	right: 0px;
	bottom: 0px;
	height: 2px;
	width: 0px;
	background-color: #FF0000;
	transition:all 1200ms ease;
	-moz-transition:all 1200ms ease;
	-webkit-transition:all 1200ms ease;
	-ms-transition:all 1200ms ease;
	-o-transition:all 1200ms ease;
}

.services-block-four .inner-box:hover{
	box-shadow: 0px 0px 20px rgba(0,0,0,0.15);
}

.services-block-four .inner-box:hover::before,
.services-block-four .inner-box:hover::after{
	width:100%;
}

.services-block-four .inner-box .icon-box {
    position: relative;
    color: #FF0000;
    font-size: 56px;
    line-height: 1em;
    margin-bottom: 18px;
    display: inline-block;
}

.services-block-four .inner-box h3{
	position: relative;
	font-size: 23px;
	font-weight: 600;
	line-height: 1.4em;
	margin-bottom: 10px;
}

.services-block-four .inner-box h3 a{
	position: relative;
	color:#222222;
	transition:all 0.3s ease;
	-moz-transition:all 0.3s ease;
	-webkit-transition:all 0.3s ease;
	-ms-transition:all 0.3s ease;
	-o-transition:all 0.3s ease;
}

.services-block-four .inner-box .text{
	position: relative;
	color:#555555;
	font-size: 16px;
	line-height: 1.7em;
}

.services-block-four .inner-box h3 a:hover{
	color:#FF0000;
}

/*** 

====================================================================
	Fluid Section Four
====================================================================

***/

.fluid-section-four{
	position:relative;
	background-color:#f9f8fc;
}

.fluid-section-four .image-column{
    position: absolute;
    left: 0px;
	top:0px;
    width: 50%;
    height: 100%;
	float:right;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

.fluid-section-four .image-column .image{
    width: 100%;
    display: none;
}

.fluid-section-four .image-column .image img{
    display: block;
    width: 100%;
}

.fluid-section-four .image-column .overlay-link{
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    background: rgba(68,57,134,0.70);
    transition: all 0.6s ease;
    -moz-transition: all 0.6s ease;
    -webkit-transition: all 0.6s ease;
    -ms-transition: all 0.6s ease;
    -o-transition: all 0.6s ease;
}

.fluid-section-four .image-column .overlay-link .icon-box{
    position: absolute;
    left: 50%;
	top: 50%;
    width: 80px;
    height: 80px;
    color: #222222;

    font-size: 28px;
    padding-left: 6px;
    line-height: 80px;
    text-align: center;
    border-radius: 50%;
    margin-bottom: 50px;
    display: inline-block;
	margin-left: -40px;
	margin-top: -40px;
    background-color: #ffffff;
}

.fluid-section-four .image-column .overlay-link .icon-box:before{
	position: absolute;
    content: '';
    left: -5px;
    top: -5px;
    bottom: -5px;
    right: -5px;
    border-radius: 50px;
    border: 5px solid rgba(255,255,255,0.20);
}

.fluid-section-four .image-column .overlay-link .icon-box:after{
	position: absolute;
    content: '';
    left: -10px;
    top: -10px;
    bottom: -10px;
    right: -10px;
    border-radius: 50px;
    border: 4px solid rgba(255,255,255,0.10);
}

.fluid-section-four .image-column:hover .overlay-link{
	background: rgba(68,57,134,0.40);
}

/*Content Column*/

.fluid-section-four .content-column{
	position: relative;
    width: 50%;
	float:right;
	padding:85px 60px 100px 90px;
}

.fluid-section-four .content-column .content-box{
	position:relative;
	max-width:525px;
	float:left;
}

/*** 

====================================================================
	News Section Four
====================================================================

***/

.news-section-four{
	position: relative;
	padding: 100px 0px 110px;
}

.news-section-four:before{
	position: absolute;
	content: '';
	right:0px;
	top: 0px;
	width: 75%;
	bottom:200px;
	background-color: #f9f8fc;
}

/*News Block Four*/

.news-block-four{
	position: relative;
	margin-bottom: 70px;
}

.news-block-four .inner-box{
	position: relative;
}

.news-block-four .inner-box .image-column{
	position: relative;
}

.news-block-four .inner-box .image-column .inner-column{
	position: relative;
}

.news-block-four .inner-box .image-column .inner-column .image{
	position: relative;
}

.news-block-four .inner-box .image-column .inner-column .image img{
	position: relative;
	width:100%;
	display: block;
}

.news-block-four .inner-box .content-column{
	position: relative;
}

.news-block-four .inner-box .content-column .inner-column{
	position: relative;
	padding-left: 20px;
}

.news-block-four .inner-box .content-column .post-info{
	position: relative;
	margin-bottom: 8px;
}

.news-block-four .inner-box .content-column .post-info li{
	position: relative;
	color:#001659;
	font-size: 13px;
	font-weight: 700;
	padding-right: 14px;
	margin-right: 12px;
	line-height: 1.2em;
	display: inline-block;
	text-transform: uppercase;
	border-right: 1px solid #001659;
}

.news-block-four .inner-box .content-column .post-info li:last-child{
	margin-right: 0px;
	padding-right: 0px;
	border:none;
}

.news-block-four .inner-box .content-column .post-info li:first-child{
	color:#FF0000;
}

.news-block-four .inner-box .content-column h3{
	position: relative;
	font-size: 23px;
	font-weight: 600;
	line-height: 1.5em;
	margin-bottom: 25px;
}

.news-block-four .inner-box .content-column h3 a{
	position: relative;
	color:#222222;
	-webkit-transition:all 300ms ease;
	-ms-transition:all 300ms ease;
	-o-transition:all 300ms ease;
	-moz-transition:all 300ms ease;
	transition:all 300ms ease;
}

.news-block-four .inner-box .content-column h3 a:hover{
	color:#FF0000;
}

.news-block-four .inner-box .content-column .text{
	position: relative;
	color:#555555;
	font-size: 16px;
	line-height: 1.7em;
	margin-bottom: 30px;
}

.news-block-four .inner-box .content-column .read-more{
	position: relative;
	color: #FF0000;
	font-size: 15px;
	font-weight: 600;
	padding-right: 30px;
	/* text-transform: uppercase; */
	display: inline-block;
	transition: all 0.6s ease;
	-moz-transition: all 0.6s ease;
	-webkit-transition: all 0.6s ease;
	-ms-transition: all 0.6s ease;
	-o-transition: all 0.6s ease;
}

.news-block-four .inner-box .content-column .read-more .fa{
    position: relative;
    color: #001659;
    font-weight: 700;
    margin-right: 4px;
    display: inline-block;
}

.news-block-four .inner-box .content-column .read-more:hover{
	color: #001659;
}

.news-section-four .button-box{
	margin-top: 120px;
}

/*** 

====================================================================
	Page Title
====================================================================

***/

.page-title{
	position:relative;
	padding: 70px 0px 80px;
	background-size:cover;
	background-repeat:no-repeat;
	background-position:center center;
	background-attachment: fixed;
	background: #f7f7f7;
}

.page-title:before{
	position:absolute;
	content: '';
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
	display: block;
	background-color: rgba(14, 12, 31, 0);
}

.page-title .auto-container{
	position:relative;
}

.page-title h1 {
    position: relative;
    color: #001659;
    font-size: 50px;
    font-weight: 700;
    line-height: 1.2em;
    margin-bottom: 5px;
    text-transform: c;
    padding-bottom: 15px;
}

.page-breadcrumb{
	position:relative;
	margin-left: 50px;
}

.page-breadcrumb:before{
	position:absolute;
	content: '';
	left: -50px;
	top: 10px;
	height: 1px;
	width:35px;
	background-color: #2a2a2a;
}

.page-breadcrumb li{
	position:relative;
	display:inline-block;
	margin-right:10px;
	padding-right:15px;
	color: #222;
	font-size: 18px;
	font-weight: 600;
	text-transform:capitalize;
}

.page-breadcrumb li:after{
	position:absolute;
	content: "\f105";
	right:-2px;
	top:-1px;
	color: #202020;
	font-size:14px;
	font-family: 'FontAwesome';
}

.page-breadcrumb li:last-child::after{
	display: none;
}

.page-breadcrumb li:last-child{
	padding-right:0px;
	margin-right:0px;
}

.page-breadcrumb li a{
	color: #3f3f3f;
	font-weight: 600;
	text-transform: capitalize;
	transition:all 0.3s ease;
	-moz-transition:all 0.3s ease;
	-webkit-transition:all 0.3s ease;
	-ms-transition:all 0.3s ease;
	-o-transition:all 0.3s ease;
}

.page-breadcrumb li a:hover{
	color:#FF0000;
}

/*** 

====================================================================
	Featured Section Two
====================================================================

***/

.featured-section-two{
	position: relative;
	padding: 100px 0px 90px;
}

.feature-block-four{
	position: relative;
	margin-bottom: 30px;
}

.feature-block-four .inner-box{
	position: relative;
}

.feature-block-four .inner-box .icon-box{
	position: relative;
	color:#FF0000;
	font-size: 70px;
	line-height: 1em;
	margin-bottom: 20px;
	transition:all 0.3s ease;
	-moz-transition:all 0.3s ease;
	-webkit-transition:all 0.3s ease;
	-ms-transition:all 0.3s ease;
	-o-transition:all 0.3s ease;
}

.feature-block-four .inner-box:hover .icon-box{
	color:#001659;
}

.feature-block-four .inner-box h3{
	position: relative;
	color:#222222;
	font-size: 23px;
	font-weight: 600;
	line-height: 1.7em;
	margin-bottom: 12px;
}
.servicw5 .feature-block-four {
    padding-left: 30px;
    padding-right: 30px;
}
.feature-block-four .inner-box h3 a{
	position: relative;
	color:#222222;
	transition:all 0.3s ease;
	-moz-transition:all 0.3s ease;
	-webkit-transition:all 0.3s ease;
	-ms-transition:all 0.3s ease;
	-o-transition:all 0.3s ease;
}

.feature-block-four .inner-box h3 a:hover{
	color:#FF0000;
}

.feature-block-four .inner-box .text{
	position: relative;
	color: #555555;
	font-size: 16px;
	line-height: 1.6em;
}

/*** 

====================================================================
	Skills Section
====================================================================

***/

.skills-section{
	position: relative;
	padding: 85px 0px 50px;
}

.skills-section .title-column{
	position: relative;
	margin-bottom: 30px;
	margin-top: 100px;
}

.skills-section .title-column .inner-column{
	position: relative;
	text-align: right;
}

.skills-section .title-column .inner-column .sec-title h2{
	line-height: 55px;
	margin-bottom: 25px;
	text-align: left;
	color: #fff;
}

.skills-section .skill-column {
    position: relative;
    margin-bottom: 40px;
    background: white;
    padding: 90px 0px;
}

.skills-section .skill-column .inner-column{
	position:relative;
	padding-left: 70px;
}

/*Skills Section*/

.skills{
	position: relative;
}

.skills .skill-item{
	position:relative;
	margin-bottom: 39px;
}

.skills .skill-item:last-child{
	margin-bottom:0px;
}

.skills .skill-item .skill-bar{
	position:relative;
	width:100%;
	height: 20px;
	background-color:#eeeeee;
}

.skills .skill-item .skill-bar .bar-inner{
	position:relative;
	width:100%;
	height: 6px;
	background:none;
}

.skills .skill-item .skill-bar .bar-inner .bar{
	position:absolute;
	left:0px;
	top:0px;
	height: 20px;
	width:0px;
	-webkit-transition:all 2000ms ease;
	-ms-transition:all 2000ms ease;
	-o-transition:all 2000ms ease;
	-moz-transition:all 2000ms ease;
	transition:all 2000ms ease;
	background: -webkit-linear-gradient(left, #f36625, #e92e52);
	background:-ms-linear-gradient(left, #483985, #e92e52);
	background:-o-linear-gradient(left, #483985, #e92e52);
	background:-moz-linear-gradient(left, #483985, #e92e52);
}

.skills .skill-item .skill-bar .bar-inner .bar:after{
	position:absolute;
	right: 0px;
	top: -25px;
	color:#001659;
	content: "\f0d7";
	font-family: 'FontAwesome';
}

.skills .skill-item .skill-header{
	position:relative;
	margin-bottom:12px;
}

.skills .skill-item .skill-header .skill-title{
	position:relative;
}

.skills .skill-item .skill-header .skill-title{
	float:left;
	color:#222222;
	font-size: 16px;
	font-weight: 600;
	line-height:1.4em;
	text-transform:uppercase;
	/* font-family: 'Poppins', sans-serif; */
}

.skills .skill-item .skill-header .skill-percentage{
	float:right;
	color:#222222;
	font-size: 16px;
	font-weight:600;
	line-height:1.4em;
	text-transform:uppercase;
	font-family: 'Poppins', sans-serif;
}

/*Services Title Box*/

.services-title-box{
	position: relative;
	padding: 100px 0px;
	padding-bottom: 50px;
}

.services-title-box .title-box{
	position: relative;
	text-align: center;
}

.services-title-box .title-box .title{
	position: relative;
	color: #222;
	font-size: 17px;
	line-height:
 1.4em;
	margin-bottom: 10px;
	text-transform: uppercase;
	font-weight: 600;
}

.services-title-box .title-box h2 {
    position: relative;
    color: #001659;
    font-size: 40px;
    font-weight: 700;
    line-height: 1.2em;
    margin-bottom: 25px;
    text-transform: capitalize;
}
.services-title-box .title-box .text{
	position: relative;
	color:#555555;
	font-size: 17px;
	font-weight: 400;
	line-height: 1.6em;
	max-width:900px;
	margin: 0 auto;
}

/*** 

====================================================================
	Sidebar Page Container
====================================================================

***/

.sidebar-page-container{
	position:relative;
	padding:110px 0px 80px;
}

.sidebar-page-container .content-side,
.sidebar-page-container .sidebar-side{
	margin-bottom:40px;
}

.sidebar-page-container .sidebar-side .sidebar {
    position: relative;
     padding-left: 5px;
}

/*Sidebar Widget*/

.sidebar-widget{
    position: relative;
    /* margin-bottom: 40px; */
}

/*Blog Cat*/

.blog-cat{
	position: relative;
}

.blog-cat li{
	position: relative;
	margin-bottom: 5px;
}

.blog-cat li a{
	position: relative;
	font-size: 16px;
	display: block;
	color:#222222;
	font-weight: 500;
	letter-spacing: 1px;
	padding: 14px 30px;
	transition:all 0.3s ease;
	-moz-transition:all 0.3s ease;
	-webkit-transition:all 0.3s ease;
	-ms-transition:all 0.3s ease;
	-o-transition:all 0.3s ease;
	/* text-transform: uppercase; */
	background-color: #f9f8fc;
	font-family: 'Poppins', sans-serif;
}

.blog-cat li a:hover,
.blog-cat li.active a{
	color:#ffffff;
	background-color: #FF0000;
	border-left: 5px solid #001659;
}

/*Testimonial Widget*/

.testimonial-widget .inner-widget{
	position: relative;
	padding: 40px 30px;
	background-color: #001659;
}

.testimonial-widget .inner-widget .owl-nav{
	display:none;
}

.testimonial-widget .inner-widget .owl-dots{
	position:relative;
	text-align: center;
	margin-top: 30px;
}

.testimonial-widget .inner-widget .owl-dots .owl-dot{
	position:relative;
	width:10px;
	height:8px;
	margin:0px 5px;
	display:inline-block;
	border-radius:50%;
	background-color:#cccccc;
	transition:all 0.3s ease;
	-moz-transition:all 0.3s ease;
	-webkit-transition:all 0.3s ease;
	-ms-transition:all 0.3s ease;
	-o-transition:all 0.3s ease;
}

.testimonial-widget .inner-widget .owl-dots .owl-dot:hover,
.testimonial-widget .inner-widget .owl-dots .owl-dot.active{
	position:relative;
	width:22px;
	height:8px;
	border-radius:10px;
	background-color:#FF0000;
}

/* Testimonial Block Four */

.testimonial-block-four{
	position: relative;
}

.testimonial-block-four .inner-box{
	position: relative;
}

.testimonial-block-four .inner-box .text{
	position: relative;
	color:#ffffff;
	font-size: 16px;
	line-height: 1.8em;
	font-style: italic;
	margin-bottom: 30px;
	font-family: 'Merriweather', serif;
}

.testimonial-block-four .inner-box .author-info{
	position: relative;
}

.testimonial-block-four .inner-box .author-info .info-inner{
	position: relative;
	padding-left: 75px;
	padding-top: 10px;
	min-height: 60px;
}

.testimonial-block-four .inner-box .author-info .info-inner .quote-icon{
	position: absolute;
	right: 0px;
	top: 15px;
	color:#ffffff;
	font-size: 36px;
	line-height: 1em;
}

.testimonial-block-four .inner-box .author-info .info-inner .image{
	position: absolute;
	left: 0px;
	top: 0px;
	width:60px;
	height:60px;
	border-radius: 50%;
	overflow: hidden;
}

.testimonial-block-four .inner-box .author-info .info-inner h3{
	position: relative;
	color:#ffffff;
	font-size: 14px;
	font-weight: 500;
}

.testimonial-block-four .inner-box .author-info .info-inner .designation{
	position: relative;
	color:#ffffff;
	font-size: 11px;
	font-weight: 400;
	text-transform: uppercase;
}




.brochure-widget h2{
	position:relative;
	color:#001659;
	font-size:18px;
	font-weight:600;
	padding-bottom:12px;
	border-bottom:1px solid #dddddd;
	font-family: 'Poppins', sans-serif;
}

.brochure-widget .widget-content{
	position:relative;
}

.brochure-widget .brouchers{
	position:relative;
}

.brochure-widget .brouchers li{
	position:relative;
	border-bottom:1px solid #dddddd;
}

.brochure-widget .brouchers li a{
	position:relative;
	color:#222222;
	font-size:14px;
	font-weight:500;
	padding:13px 8px;
	padding-left:55px;
	display:block;
	font-family: 'Poppins', sans-serif;
}

.brochure-widget .brouchers li a .icon{
	position:absolute;
	content:'';
	left:12px;
	top:11px;
	font-size:28px;
	line-height:1em;
	color:#777777;
}

/*Contact Info Widget*/

.contact-info-widget{
	position:relative;
}

.contact-info-widget .inner-content{
	position:relative;
	padding:40px 20px;
	text-align:center;
	background-color:#FF0000;
}

.contact-info-widget.style-two .inner-content{
	background-color: #001659;
}

.contact-info-widget .inner-content .icon-box{
	position:relative;
	color:#ffffff;
	font-size:50px;
	line-height:1em;
	margin-bottom:15px;
}

.contact-info-widget .inner-content .text{
	position:relative;
	font-size:22px;
	font-weight:300;
	line-height:1.5em;
	color:#ffffff;
	margin-bottom:20px;
}

.contact-info-widget .inner-content .number{
	position:relative;
	font-size:28px;
	font-weight:600;
	color:#ffffff;
	font-family: 'Poppins', sans-serif;
}

.contact-info-widget .inner-content .email{
	position:relative;
	font-size:16px;
	color:#ffffff;
	margin-top:5px;
	font-weight:300;
	font-family: 'Poppins', sans-serif;
}

/*Services Single*/

.services-single{
	position: relative;
}

.services-single .inner-box{
	position: relative;
}

.services-single .inner-box .image{
	position: relative;
}

.services-single .inner-box .image img{
	position: relative;
	width:100%;
	display: block;
	border-radius: 10px;
}

.services-single .inner-box .lower-content{
	position: relative;
	padding-top: 30px;
}

.services-single .inner-box .lower-content h2{
	position: relative;
	color:#001659;
	font-size: 36px;
	font-weight: 600;
	line-height: 1.2em;
	margin-bottom: 8px;
}

.services-single .inner-box .lower-content .title{
	position: relative;
	color:#222222;
	font-size: 18px;
	line-height: 1.4em;
	margin-bottom: 20px;
}

.services-single .inner-box .lower-content .text{
	position: relative;
}

.services-single .inner-box .lower-content .text p{
	position: relative;
	color:#555555;
	font-size: 16px;
	line-height: 1.7em;
	margin-bottom: 22px;
}

.services-single .inner-box .lower-content .two-column{
	position: relative;
	margin-top: 60px;
	margin-bottom: 30px;
}

.services-single .inner-box .lower-content h3{
	position: relative;
	color:#222222;
	font-size: 30px;
	font-weight: 600;
	line-height: 1.4em;
	margin-bottom: 20px;
}

.services-single .inner-box .lower-content .blocks-outer{
	margin-top: 40px;
}

.services-block-five{
	position: relative;
	margin-bottom: 30px;
}

.services-block-five .block-inner{
	position: relative;
	padding-left: 60px;
}

.services-block-five .block-inner .icon-box{
	position: absolute;
	left: 0px;
	top: 0px;
	color:#FF0000;
	font-size: 39px;
	line-height: 1em;
}

.services-block-five .block-inner h4{
	position: relative;
	color:#222222;
	font-size: 18px;
	font-weight: 600;
	line-height: 1.4em;
	margin-bottom: 12px;
}

.services-block-five .block-inner h4 a{
	position: relative;
	color:#222222;
	transition:all 0.3s ease;
	-moz-transition:all 0.3s ease;
	-webkit-transition:all 0.3s ease;
	-ms-transition:all 0.3s ease;
	-o-transition:all 0.3s ease;
}

.services-block-five .block-inner h4 a:hover{
	color:#FF0000;
}

.services-block-five .block-inner .text{
	position: relative;
	line-height: 1.6em;
	color:#555555;
	font-size: 16px;
}

/*Sidebar Title*/

.sidebar-title{
    position: relative;
    margin-bottom:25px;
}

.sidebar-title h2{
    font-size: 23px;
    color: #001659;
    font-weight: 600;
    line-height: 1.2em;
    padding-left: 40px;
    text-transform: capitalize;
}

.sidebar-title h2:before{
	position:absolute;
	content:'';
	left:0px;
	top:10px;
	width:25px;
	height:2px;
	background-color:#FF0000;
}


/*Search Box Widget*/

.sidebar .search-box .form-group{
	position:relative;
	margin:0px;	
}

.sidebar .search-box .form-group input[type="text"],
.sidebar .search-box .form-group input[type="search"]{
	position:relative;
	line-height:33px;
	padding:10px 50px 10px 20px;
	background:#ffffff;
	display:block;
	font-size:14px;
	width:100%;
	height:55px;
	font-weight:400;
	border: 1px solid #eeeeee;
	transition:all 500ms ease;
	-moz-transition:all 500ms ease;
	-webkit-transition:all 500ms ease;
	-ms-transition:all 500ms ease;
	-o-transition:all 500ms ease;
	/* box-shadow: 0px 2px 4px 0px rgba(255, 72, 0, 0.73); */
}

.sidebar .search-box .form-group button{
	position:absolute;
	right:0px;
	top:0px;
	height:55px;
	width:50px;
	display:block;
	font-size:16px;
	color:#ffffff;
	cursor: pointer;
	line-height:55px;
	background: #FF0000;
	font-weight:normal;
}

/*Post Widget*/

.sidebar .popular-posts .post{
	position:relative;
	font-size:14px;
	color:#666666;
	padding:0px 0px;
	padding-left:118px;
	min-height:115px;
	margin-bottom:25px;
	border-bottom:1px solid #dddddd;
}

.sidebar .popular-posts .post:last-child{
	margin-bottom:0px;
}

.sidebar .popular-posts .post .post-thumb{
	 position:absolute;
	 left:0px;
	 top:0px;
	 width:100px;
}

.sidebar .popular-posts .post:hover .post-thumb img{
	opacity:0.70;
}

.sidebar .popular-posts .post .post-thumb img{
	display:block;
	width:100%;
	transition:all 0.3s ease;
	-moz-transition:all 0.3s ease;
	-webkit-transition:all 0.3s ease;
	-ms-transition:all 0.3s ease;
	-o-transition:all 0.3s ease;
}

.sidebar .popular-posts .post .text{
	position:relative;
	top:-4px;
	font-size:16px;
	margin:0px 0px 0px;
	font-weight:600;
	color:#222222;
	line-height:1.6em;
	text-transform:capitalize;
	font-family: 'Poppins', sans-serif;
}

.sidebar .popular-posts .post .text a{
	color:#222222;
	transition:all 0.3s ease;
	-moz-transition:all 0.3s ease;
	-webkit-transition:all 0.3s ease;
	-ms-transition:all 0.3s ease;
	-o-transition:all
 0.3s ease;
}

.sidebar .popular-posts .post a,
.sidebar .popular-posts .post a:hover{
	color:#FF0000;
}

.sidebar .popular-posts .post-info{
	font-size:13px;
	color:#FF0000;
	font-weight:500;
	margin-bottom:6px;
	text-transform: uppercase;
}

/*Archive List*/

.archive-list{
	position: relative;
}

.archive-list li{
	position: relative;
	padding: 12px 0px;
	padding-left: 0px;
	border-bottom: 1px solid #dddddd;
}

.archive-list li:first-child{
	padding-top:0px;
}

.archive-list li a{
	position: relative;
	color:#222222;
	font-size: 14px;
	font-weight: 500;
	padding-left: 18px;
	transition:all 0.3s ease;
	-moz-transition:all 0.3s ease;
	-webkit-transition:all 0.3s ease;
	-ms-transition:all 0.3s ease;
	-o-transition:all 0.3s ease;
	font-family: 'Poppins', sans-serif;
}

.archive-list li a:before{
	position: absolute;
	left: 0px;
	content: "\f0da";
	color: #ffffff;
	font-size: 16px;
	font-family: 'FontAwesome';
	display: none;
}

.archive-list li a:hover{
	color:#FF0000;
}

/*Popular Tags*/

.sidebar .popular-tags a{
	position:relative;
	display:inline-block;
	line-height:24px;
	padding:9px 20px 9px;
	margin:0px 3px 8px 0px;
	color: #ffffff;
	text-align:center;
	font-size:13px;
	font-weight:600;
	text-transform:capitalize;
	background:none;
	/* border:1px solid #001659; */
	transition:all 300ms ease;
	-webkit-transition:all 300ms ease;
	-ms-transition:all 300ms ease;
	-o-transition:all 300ms ease;
	-moz-transition:all 300ms ease;
	/* font-family: 'Poppins', sans-serif; */
	box-shadow: 0px 4px 6px 0px rgba(255, 72, 0, 0.73);
	background: #FF0000;
}

.sidebar .popular-tags a:hover{
	border-color:#FF0000;
	background-color:#FF0000;
	color:#ffffff;	
}

/*Newsletter Box*/

.newsletter-box{
	position: relative;
	display: block;
	padding: 40px 40px 50px;
	background-color: #000000;
	/* box-shadow: 0px 10px 17px 0px rgba(255, 72, 0, 0.73); */
}

.newsletter-box h3{
	font-size: 22px;
    color: #ffffff;
    font-weight: 600;
    line-height: 1.2em;
	padding-left: 40px;
	margin-bottom: 20px;
    text-transform: capitalize;
}

.newsletter-box h3:before{
	position:absolute;
	content:'';
	left:0px;
	top:10px;
	width:25px;
	height:2px;
	background-color:#ffffff;
}

.newsletter-box .form-group{
	position:relative;
	margin:0px;	
}

.newsletter-box .form-group input[type="text"],
.newsletter-box .form-group input[type="email"]{
	position:relative;
	line-height:33px;
	padding:10px 50px 10px 20px;
	background:#ffffff;
	display:block;
	font-size:14px;
	width:100%;
	height:55px;
	font-weight:500;
	transition:all 500ms ease;
	-moz-transition:all 500ms ease;
	-webkit-transition:all 500ms ease;
	-ms-transition:all 500ms ease;
	-o-transition:all 500ms ease;
	font-family: 'Hind', sans-serif;
}

.newsletter-box .form-group button{
	position:absolute;
	right:0px;
	top:0px;
	height:55px;
	width:50px;
	display:block;
	font-size:16px;
	color:#001659;
	cursor: pointer;
	line-height:55px;
	font-weight:normal;
	background: none;
}

/*News Block Five*/

.news-block-five{
	position: relative;
	margin-bottom: 70px;
}

.news-block-five .inner-box{
	position: relative;
}

.news-block-five .inner-box .image{
	position: relative;
}

.news-block-five .inner-box .image img{
	position: relative;
	width:100%;
	display: block;
	border-radius: 10px 10px 0px 0px;
	/* box-shadow: 0px 0px 25px rgb(0 0 0 / 15%); */
}

.news-block-five .inner-box .image .overlay-box{
	position:absolute;
	left:0px;
	top:0px;
	width:100%;
	height:100%;
	display:block;
	text-align:center;
}

.news-block-five .inner-box .image .overlay-box .icon {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 80px;
    height: 80px;
    color: #FF0000;
    margin-left: -40px;
    text-align: center;
    border-radius: 50%;
    line-height: 80px;
    display: inline-block;
    padding-left: 4px;
    font-size: 72px;
    margin-top: -40px;
    box-shadow: 0px 0px 35px rgba(255,255,255,1);
}

.news-block-five .inner-box .lower-content {
    /* border: 1px solid #f6f6f6; */
    padding: 30px!important;
    background: #ffffff!important;
    border-top: none;
    box-shadow: 0px 0px 25px rgb(0 0 0 / 4%);
}

.news-block-five .inner-box .lower-content .post-meta{
	position: relative;
}

.news-block-five .inner-box .lower-content .post-meta li {
    position: relative;
    /* color: #7d7d7d; */
    /* font-size: 13px; */
    font-weight: 600;
    padding-right: 10px;
    margin-right: 10px;
    line-height: 1.1em;
    display: inline-block;
    border-right: 1px solid #666666;
    text-transform: uppercase;
    /* font-family: 'Hind', sans-serif; */
    color: #001659;
    font-size: 13px;
    letter-spacing: 1px;
}

.news-block-five .inner-box .lower-content .post-meta li .icon{
	position: relative;
	margin-right: 4px;
	font-weight: 500;
	color: #FF0000;
	/* margin-right: 4px; */
}

.news-block-five .inner-box .lower-content .post-meta li:nth-child(3),
.news-block-five .inner-box .lower-content .post-meta li:last-child{
	border-right: none;
	margin-right: 0px;
	padding-right: 0px;
}

.news-block-five .inner-box .lower-content h2{
	position: relative;
	color: #001659;
	font-size: 36px;
	font-weight: 600;
	line-height: 1.5em;
	margin-top: 12px;
	margin-bottom: 12px;
}

.news-block-five.style-two .inner-box .lower-content h2{
	font-size:26px;
}

.news-block-five .inner-box .lower-content h2 a{
	position: relative;
	color: #001659;
	transition:all 0.3s ease;
	-moz-transition:all 0.3s ease;
	-webkit-transition:all 0.3s ease;
	-ms-transition:all 0.3s ease;
	-o-transition:all 0.3s ease;
}

.news-block-five .inner-box .lower-content h2 a:hover{
	color:#FF0000;
}

.news-block-five .inner-box .lower-content .text{
	position: relative;
	color:#555555;
	font-size: 16px;
	line-height: 1.7em;
	margin-bottom: 30px;
}

.news-block-five .inner-box .lower-content .read-more{
	position: relative;
	color: #001659;
	font-size: 15px;
	font-weight: 700;
	padding-left: 0px;
	padding-right: 30px;
	display: inline-block;
	text-transform: capitalize;
	-webkit-transition:all 300ms ease;
	-ms-transition:all 300ms ease;
	-o-transition:all 300ms ease;
	-moz-transition:all 300ms ease;
	transition:all 300ms ease;
}

.news-block-five .inner-box .lower-content .read-more:hover{
	color:#001659;
}

.news-block-five .inner-box .lower-content .read-more:before{
	position: absolute;
	content: "\f105";
	left: 0px;
	top: 1px;
	color:#001659;
	font-size: 16px;
	font-family: 'FontAwesome';
	background: #fe5a0e;
	color: #fff;
	text-align: center;
	border-radius: 50%;
	padding: 0px 7px;
	/* position: relative; */
	margin-right: 10px;
	font-size: 12px;
	line-height: 18px;
	display: none;
}

.news-block-five .inner-box .lower-content .read-more:after {
    position: absolute;
    content: '';
    top: 11px;
    left: 100%;
    width: 445%;
    height: 1px;
    background-color: #dddddd;
    max-width: 100%;
}

.news-block-five .inner-box .owl-dots{
	display:none;
}

.news-block-five .inner-box .owl-nav{
	position:absolute;
	left:0px;
	top:50%;
	width:100%;
	margin-top:-25px;
}

.news-block-five .inner-box .owl-nav .owl-prev{
	position:absolute;
	left:35px;
	width:50px;
	height:50px;
	line-height:50px;
	text-align:center;
	font-size:20px;
	color: #ffffff;
	display:inline-block;
	transition:all 0.3s ease;
	-moz-transition:all 0.3s ease;
	-webkit-transition:all 0.3s ease;
	-ms-transition:all 0.3s ease;
	-o-transition:all 0.3s ease;
	background-color:#001659;
}

.news-block-five .inner-box .owl-nav .owl-next{
	position:absolute;
	right:35px;
	float:right;
	width:50px;
	height:50px;
	line-height:50px;
	text-align:center;
	font-size:20px;
	color: #ffffff;
	display:inline-block;
	transition:all 0.3s ease;
	-moz-transition:all 0.3s ease;
	-webkit-transition:all 0.3s ease;
	-ms-transition:all 0.3s ease;
	-o-transition:all 0.3s ease;
	background-color:#001659;
}

.news-block-five .inner-box .owl-nav .owl-prev:hover,
.news-block-five .inner-box .owl-nav .owl-next:hover{
	color:#ffffff;
	background-color: #FF0000;
}

/*News Block Six*/

.news-block-six{
	position: relative;
	margin-bottom: 80px;
}

.news-block-six .inner-box{
	position: relative;
	padding: 70px 15px;
	text-align: center;
	background-color: #222222;
}

.news-block-six .inner-box .icon-box{
	position: relative;
	color:#ffffff;
	font-size: 32px;
	line-height: 1em;
	font-weight: 700;
	margin-bottom: 20px;
	display: inline-block;
}

.news-block-six .inner-box .post-meta{
	position: relative;
	margin-bottom: 20px;
}

.news-block-six .inner-box .post-meta li{
	position: relative;
	color:#cccccc;
	font-size: 13px;
	font-weight: 700;
	padding-right: 14px;
	margin-right: 14px;
	line-height: 1em;
	display: inline-block;
	text-transform: uppercase;
	border-right: 1px solid rgba(255,255,255,0.80);
}

.news-block-six .inner-box .post-meta li:last-child{
	border-right: 0px;
	margin-right: 0px;
	padding-right: 0px;
}

.news-block-six .inner-box .post-meta li .icon{
	position: relative;
	margin-right: 4px;
	color: #FF0000;
}

.news-block-six .inner-box h3{
	position: relative;
	font-size: 24px;
	color:#ffffff;
	font-weight: 700;
	line-height: 1.2em;
	margin-bottom: 10px;
}

.news-block-six .inner-box h3 a{
	position: relative;
	color:#ffffff;
	transition:all 0.3s ease;
	-moz-transition:all 0.3s ease;
	-webkit-transition:all 0.3s ease;
	-ms-transition:all 0.3s ease;
	-o-transition:all 0.3s ease;
}

.news-block-six .inner-box h3 a:hover{
	color: #FF0000;
}

.news-block-six .inner-box .link{
	position: relative;
	font-weight: 500;
	color: #FF0000;
	font-size: 16px;
}

/* News Block Seven */

.news-block-seven{
	position: relative;
	margin-bottom: 70px;
}

.news-block-seven .inner-box{
	position: relative;
	padding: 70px 65px;
	background-color: #f9f8fc;
}

.news-block-seven .inner-box .content{
	position:relative;
	overflow: hidden;
}

.news-block-seven .inner-box .post-meta{
	position: relative;
}

.news-block-seven .inner-box .post-meta li{
	position: relative;
	color:#666666;
	font-size: 13px;
	font-weight:
 700;
	padding-right: 10px;
	margin-right: 10px;
	line-height: 1.1em;
	display: inline-block;
	border-right: 1px solid #666666;
	text-transform: uppercase;
	font-family: 'Hind', sans-serif;
}

.news-block-seven .inner-box .post-meta li .icon{
	position: relative;
	color:#FF0000;
	margin-right: 4px;
	font-weight: 600;
}

.news-block-seven .inner-box .post-meta li:nth-child(3),
.news-block-seven .inner-box .post-meta li:last-child{
	border-right: none;
	margin-right: 0px;
	padding-right: 0px;
}

.news-block-seven .inner-box h2{
	position: relative;
	color: #222222;
	font-size: 30px;
	font-weight: 600;
	line-height: 1.3em;
	margin-top: 12px;
	margin-bottom: 18px;
}

.news-block-seven .inner-box h2 a{
	position: relative;
	color: #222222;
	transition:all 0.3s ease;
	-moz-transition:all 0.3s ease;
	-webkit-transition:all 0.3s ease;
	-ms-transition:all 0.3s ease;
	-o-transition:all 0.3s ease;
}

.news-block-seven .inner-box h2 a:hover{
	color:#FF0000;
}

.news-block-seven .inner-box .text{
	position: relative;
	color:#555555;
	font-size: 16px;
	line-height: 1.7em;
	margin-bottom: 30px;
}

.news-block-seven .inner-box .read-more{
	position: relative;
	color:#FF0000;
	font-size: 13px;
	font-weight: 700;
	padding-left: 14px;
	padding-right: 30px;
	display: inline-block;
	text-transform: uppercase;
	-webkit-transition:all 300ms ease;
	-ms-transition:all 300ms ease;
	-o-transition:all 300ms ease;
	-moz-transition:all 300ms ease;
	transition:all 300ms ease;	
}

.news-block-seven .inner-box .read-more:hover{
	color:#001659;
}

.news-block-seven .inner-box .read-more:before{
	position: absolute;
	content: "\f105";
	left: 0px;
	top: -1px;
	color:#001659;
	font-size: 16px;
	font-family: 'FontAwesome';
}

.news-block-seven .inner-box .read-more:after{
	position:absolute;
	content: '';
	top: 11px;
	left: 100%;
	width:600%;
	height: 1px;
	background-color: #dddddd;
}

/*** 

====================================================================
	Styled Pagination
====================================================================

***/

.pagination-outer{
	position:relative;
	padding: 30px 0px;
	background-color: #f9f8fc;
}

.styled-pagination{
	position:relative;
}

.pagination{
	position:relative;
}

.pagination li{
	position:relative;
	display:block;
	display:inline-block;
	margin:0px 2px 0px 0px;
}

.pagination li.prev a,
.pagination li.next a{
	background:none;
	font-size: 20px;
}

.pagination li:last-child{
	margin-right:0px;
}

.pagination li a{
	position:relative;
	display:inline-block;
	line-height:45px;
	height:45px;
	font-size:14px;
	min-width:45px;
	color:#222222;
	font-weight:500;
	text-align:center;
	background:#f9f8fc;
	text-transform:capitalize;
	transition:all 500ms ease;
	-webkit-transition:all 500ms ease;
	-ms-transition:all 500ms ease;
	-o-transition:all 500ms ease;
	-moz-transition:all 500ms ease;
	font-family: 'Poppins', sans-serif;
}
.pagination li span {
    position: relative;
    display: inline-block;
    line-height: 45px;
    height: 45px;
    font-size: 14px;
    min-width: 45px;
    color: #ffffff;
    background-color: #FF0000;
    font-weight: 500;
    text-align: center;
    text-transform: capitalize;
    transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    font-family: 'Poppins', sans-serif;
}

.pagination-outer .pagination li a{
	background-color: #ffffff;
}

.pagination-outer .pagination li.prev a,
.pagination-outer .pagination li.next a{
	background:none;
}

.pagination-outer .pagination li.prev a:hover,
.pagination-outer .pagination li.next a:hover{
	color:#FF0000;
}

.pagination li a:hover,
.pagination li a.active{
	color:#ffffff;
	background-color:#FF0000;
}

.blog-classic-section{
	position: relative;
	padding: 115px 0px 100px;
}

/*News Block Eight*/

.news-block-eight{
	position: relative;
	margin-bottom: 80px;
}

.news-block-eight .inner-box{
	position: relative;
	padding-left: 472px;
}

.news-block-eight .inner-box .image{
	position: absolute;
	left: 0px;
	top: 0px;
	width: 420px;
}

.news-block-eight .inner-box .image img{
	position: relative;
	width:100%;
	display: block;
}

.news-block-eight .inner-box .image .overlay-box{
	position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    display: block;
    text-align: center;
}

.news-block-eight .inner-box .image .overlay-box .icon{
	position: absolute;
    left: 50%;
    top: 50%;
    width: 80px;
    height: 80px;
    color: #FF0000;
    margin-left: -40px;
    text-align: center;
    border-radius: 50%;
    line-height: 80px;
    display: inline-block;
    padding-left: 4px;
    font-size: 60px;
    margin-top: -40px;
}

.news-block-eight .inner-box .content{
	position: relative;
}

.news-block-eight .inner-box .content .post-meta{
	position: relative;
}

.news-block-eight .inner-box .content .post-meta li{
	position: relative;
	color:#666666;
	font-size: 13px;
	font-weight: 700;
	padding-right: 10px;
	margin-right: 10px;
	line-height: 1.1em;
	float:left;
	border-right: 1px solid #666666;
	text-transform: uppercase;
	font-family: 'Hind', sans-serif;
}

.news-block-eight .inner-box .content .post-meta li .icon{
	position: relative;
	color:#FF0000;
	margin-right: 4px;
	font-weight: 600;
}

.news-block-eight .inner-box .content .post-meta li:last-child{
	border-right: none;
	margin-right: 0px;
	padding-right: 0px;
}

.news-block-eight .inner-box .content h2{
	position: relative;
	color: #222222;
	font-size: 30px;
	font-weight: 600;
	line-height: 1.3em;
	margin-top: 12px;
	margin-bottom: 18px;
}

.news-block-eight .inner-box .content h2 a{
	position: relative;
	color: #222222;
	transition:all 0.3s ease;
	-moz-transition:all 0.3s ease;
	-webkit-transition:all 0.3s ease;
	-ms-transition:all 0.3s ease;
	-o-transition:all 0.3s ease;
}

.news-block-eight .inner-box .content h2 a:hover{
	color:#FF0000;
}

.news-block-eight .inner-box .content .text{
	position: relative;
	color:#555555;
	font-size: 16px;
	line-height: 1.7em;
	margin-bottom: 30px;
}

.news-block-eight .inner-box .content .read-more{
	position: relative;
	color:#FF0000;
	font-size: 13px;
	font-weight: 700;
	padding-left: 14px;
	padding-right: 30px;
	display: inline-block;
	text-transform: uppercase;
	-webkit-transition:all 300ms ease;
	-ms-transition:all 300ms ease;
	-o-transition:all 300ms ease;
	-moz-transition:all 300ms ease;
	transition:all 300ms ease;	
}

.news-block-eight .inner-box .content .read-more:hover{
	color:#001659;
}

.news-block-eight .inner-box .content .read-more:before{
	position: absolute;
	content: "\f105";
	left: 0px;
	top: -1px;
	color:#001659;
	font-size: 16px;
	font-family: 'FontAwesome';
}

.news-block-eight .inner-box .content .read-more:after{
	position:absolute;
	content: '';
	top: 11px;
	left: 100%;
	width:600%;
	height: 1px;
	background-color: #dddddd;
}

/*** 

====================================================================
	Blog Grid Section
====================================================================

***/

.blog-grid-section{
	position: relative;
	padding: 135px 0px 35px;
}

/*News Block Five*/

.blog-single{
	position: relative;
}

.blog-single .inner-box{
	position: relative;
}


.blog-single .inner-box .image {
    position: relative;
    /* margin: -25px; */
    margin-bottom: 25px;
}
.blog-single .inner-box .image img{
	position: relative;
	width:100%;
	display: block;
	border-radius: 10px;
}

.blog-single .inner-box .lower-content{
	position: relative;
}

.blog-single .inner-box .lower-content .post-meta{
	position: relative;
}

.blog-single .inner-box .lower-content .post-meta li{
	position: relative;
	color: #001659;
	font-size: 13px;
	font-weight: 600;
	padding-right: 10px;
	margin-right: 10px;
	line-height: 1.1em;
	display: inline-block;
	border-right: 1px solid #666666;
	text-transform: uppercase;
	/* font-family: 'Hind', sans-serif; */
	letter-spacing: 1px;
	color: #001659;
	font-size: 13px;
	padding-left: 0px;
}

.blog-single .inner-box .lower-content .post-meta li:last-child{
	border-right:none;
	margin-right: 0px;
	padding-right: 0px;
}

.blog-single .inner-box .lower-content .post-meta li .icon{
	position: relative;
	color: #001659;
	margin-right: 4px;
	/* font-weight: 600; */
	font-weight: 500;
	color: #FF0000;
}

.blog-single .inner-box .lower-content h2{
	position: relative;
	color: #222222;
	font-size: 30px;
	font-weight: 600;
	line-height: 1.3em;
	margin-top: 12px;
	margin-bottom: 18px;
}

.blog-single .inner-box .lower-content .text{
	position: relative;
}

.blog-single .inner-box .lower-content .text p{
	position: relative;
	color:#555555;
	font-size: 16px;
	line-height: 1.7em;
	margin-bottom: 20px;
}

.blog-single .inner-box .lower-content .text blockquote{
	position: relative;
	margin-top: 40px;
	margin-bottom: 40px;
	padding: 45px 65px 45px 50px;
	background-color: #f9f8fc;
	border-left: 2px solid #FF0000;
}

.blog-single .inner-box .lower-content .text blockquote .quote-icon{
	position:absolute;
	right: 40px;
	top: -25px;
	color:#001659;
	font-size: 50px;
	line-height: 1em;
}

.blog-single .inner-box .lower-content .text blockquote .blockquote-text{
	position: relative;
	font-size: 16px;
	color:#222222;
	font-style: italic;
	line-height: 1.9em;
	font-family: 'Merriweather', serif;
}






/*post share options*/

.blog-single .post-share-options{
	position:relative;
	margin-top: 40px;
}

.blog-single .post-share-options .post-share-inner{
}

.blog-single .post-share-options .info-links{
	position:relative;
}

.blog-single .post-share-options .info-links li{
	position:relative;
	/* color:#666666; */
	font-size:13px;
	font-weight: 700;
	display:inline-block;
	text-transform: uppercase;
	border-radius: 50%;
	width: 40px;
	height: 40px;
	/* line-height: 5px; */
	background: #3d3d3d;
	text-align: center;
	padding: 0px 15px;
}

.blog-single .post-share-options
 .info-links li a{
	position:relative;
	color: #ffffff;
	font-size:14px;
	text-align:center;
	display:inline-block;
	margin-right:10px;
	line-height: 39px;
}

.blog-single .post-share-options .info-links li:hover {
    background: #FF0000;
}
.blog-single .post-share-options .tags span{
	font-size:16px;
	color:#001659;
	font-weight:700;
	margin-right:8px;
	text-transform: uppercase;
}


.blog-single .post-share-options .tags a {
    position: relative;
    color: #211;
    font-size: 13px;
    font-weight: 600;
    line-height: 1em;
    /* padding-right: 12px; */
    margin-right: 10px;
    display: inline-block;
    /* text-transform: capitalize; */
    /* border-right: 1px solid #222222; */
    transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    padding: 8px 13px;
    /* border: 1px solid #001659; */
    border-radius: 7px;
    background: #f6f6f6;
}
.blog-single .post-share-options .tags a:last-child{
	/* border-right:none; */
	/* margin-right: 0px; */
	/* padding-right: 0px; */
}

.blog-single .post-share-options .tags{
	position:relative;
	color: #000000;
	font-size: 17px;
	font-weight: 600;
	margin-top:3px;
}

.blog-single .post-share-options .tags a:hover{
	color: #ffffff;
	background: #FF0000;
}

/*News Posts*/

.blog-single .inner-box .new-posts{
	position:relative;
	padding:30px 0px;
	margin-top: 40px;
	margin-bottom: 30px;
	border-top: 1px solid #dddddd;
	border-bottom:1px solid #dddddd;
}

.blog-single .inner-box .new-posts h4{
	position:relative;
	color:#222222;
	font-size:18px;
	font-weight:600;
	line-height:1.7em;
}

.blog-single .inner-box .new-posts .prev-post a{
	position:relative;
	color:#001659;
	font-size:13px;
	font-weight:700;
	text-transform: uppercase;
	transition:all 300ms ease;
	-webkit-transition:all 300ms ease;
	-ms-transition:all 300ms ease;
	-o-transition:all 300ms ease;
	-moz-transition:all 300ms ease;
}

.blog-single .inner-box .new-posts .next-post{
	text-align:right;
}

.blog-single .inner-box .new-posts .next-post a{
	position:relative;
	color:#001659;
	font-size:13px;
	font-weight:700;
	text-transform: uppercase;
	transition:all 300ms ease;
	-webkit-transition:all 300ms ease;
	-ms-transition:all 300ms ease;
	-o-transition:all 300ms ease;
	-moz-transition:all 300ms ease;
}

.blog-single .inner-box .new-posts .prev-post{
	position:relative;
}

.blog-single .inner-box .new-posts .prev-post a:hover,
.blog-single .inner-box .new-posts .next-post a:hover{
	color:#FF0000;
}

/*** 

====================================================================
	Comments Area
====================================================================

 ***/

.sidebar-page-container .comments-area{
	position:relative;
	margin-bottom: 70px;
}

.sidebar-page-container .group-title{
	position:relative;
	margin-bottom:25px;
}

.sidebar-page-container .group-title h2{
	position:relative;
	font-size:22px;
	color:#001659;
	font-weight:700;
	padding-left:40px;
	text-transform:capitalize;
}

.sidebar-page-container .group-title h2:before{
	position:absolute;
	content: '';
	left: 0px;
	top: 15px;
	width: 25px;
	height: 2px;
	background-color: #FF0000;
}

.sidebar-page-container .comments-area .comment-box{
	position:relative;
	padding:0px 0px 0px;
	margin-bottom:40px;
	-webkit-transition:all 300ms ease;
	-ms-transition:all 300ms ease;
	-o-transition:all 300ms ease;
	-moz-transition:all 300ms ease;
	transition:all 300ms ease;
}

.sidebar-page-container .comments-area .comment-box:last-child{
	margin-bottom:0px;
	padding-bottom:0px;
	border:0px;
}

.sidebar-page-container .comments-area .comment-box:hover{
	border-color:#222222;	
}

.sidebar-page-container .comments-area .comment{
	position:relative;
	font-size:14px;
}

.sidebar-page-container .comments-area .comment .comment-inner{
	position:relative;
	padding-bottom: 20px;
	border-bottom: 1px solid #dddddd;
}

.sidebar-page-container .comments-area .comment .comment-reply{
	position:relative;
	margin-top:10px;
	color:#FF0000;
	font-size:13px;
	font-weight:400;
	text-transform:uppercase;
	-webkit-transition:all 300ms ease;
	-ms-transition:all 300ms ease;
	-o-transition:all 300ms ease;
	-moz-transition:all 300ms ease;
	transition:all 300ms ease;
}

.sidebar-page-container .comments-area .comment .comment-reply .fa{
	color:#242424;
	font-size:14px;
	margin-left:4px;
}

.sidebar-page-container .comments-area .comment .comment-reply:hover{
	color:#242424;
}

.sidebar-page-container .comments-area .comment-box .author-thumb{
	position:absolute;
	left:0px;
	top:0px;
	width:70px;
	border-radius:50%;
	overflow:hidden;
	margin-bottom:20px;
}

.sidebar-page-container .comments-area .comment-box .author-thumb img{
	display:block;
}

.sidebar-page-container .comments-area .comment-info{
	color:#3e5773;
	line-height:24px;
	font-size:13px;	
}

.sidebar-page-container .comments-area .comment-box strong{
	font-size:16px;
	font-weight:600;
	color:#222222;
	line-height: 1.1em;
	text-transform:capitalize;
}

.sidebar-page-container .comments-area .comment-box .text{
	color:#555555;
	font-size:16px;
    margin-top:10px;
    line-height: 1.7em;
	margin-bottom: 10px;
}

.sidebar-page-container .comments-area .comment-info .comment-time{
	position:relative;
	font-size:12px;
	color:#555555;
	margin-top:0px;
	font-weight:400;
}

.sidebar-page-container .comments-area .comment-box .theme-btn{
	padding:5px 30px;
	font-size:12px;
	border:1px  solid #fbca00;
	text-transform:uppercase;
	letter-spacing:1px;
}

/*Comment Form*/

.comment-form{
	position:relative;
}

.comment-form .form-group{
	position:relative;
	margin-bottom:20px;
}

.comment-form .form-group:last-child{
	margin-bottom:0px;
}

.comment-form .form-group input[type="text"],
.comment-form .form-group input[type="password"],
.comment-form .form-group input[type="tel"],
.comment-form .form-group input[type="email"],
.comment-form .form-group textarea{
	display:block;
	width:100%;
	height:50px;
	font-size:14px;
	color:#888888;
	line-height:24px;
	padding:12px 5px;
	font-weight:400;
	border-bottom:1px solid #cccccc;
	transition:all 500ms ease;
	-webkit-transition:all 500ms ease;
	-ms-transition:all 500ms ease;
	-o-transition:all 500ms ease;
}

.comment-form .form-group input[type="text"]:focus,
.comment-form .form-group input[type="password"]:focus,
.comment-form .form-group input[type="tel"]:focus,
.comment-form .form-group input[type="email"]:focus,
.comment-form .form-group textarea:focus{
	border-color:#fa2964;
}

.comment-form .form-group textarea{
	height:190px;
	resize:none;
}

.comment-form button{
	margin-top:40px;
	cursor: pointer;
}

.comment-form input:focus,
.comment-form select:focus,
.comment-form textarea:focus{
	border-color:#f06529;	
}

/*** 

====================================================================
	Map Section
====================================================================

 ***/

.map-section{
	position: relative;
	padding-top: 115px;
}

/*** 

====================================================================
	Map Section Style
====================================================================

***/

.map-section{
	position:relative;
}

.map-section .auto-container{
	max-width: 1400px;
}

.map-data{
	text-align:center;
	font-size:14px;
	font-weight:400;
	line-height:1.8em;
}

.map-data h6{
	font-size:16px;
	font-weight:700;
	text-align:center;
	margin-bottom:5px;
	color:#121212;
}

.map-canvas{
	height:550px;
}

/*** 

====================================================================
	Content Section
====================================================================

***/

.contact-section{
	position: relative;
	padding-bottom: 110px;
}

.contact-section .info-column{
	position: relative;
	priority: 0;
}

.contact-section .info-column .inner-column{
	position: relative;
	padding-right: 0px;
	margin-top: 100px;
}

.contact-section .info-column .inner-column .content-box{
	position: relative;
	padding: 60px 55px;
	background-color: #FF0000;
	border-radius: 5px;
	box-shadow: 0px 10px 17px 0px rgb(255 72 0 / 20%);
}

.contact-section .info-column .inner-column h2{
	position: relative;
	font-size: 40px;
	font-weight: 700;
	line-height: 1.3em;
	color: #ffffff;
	margin-bottom: 25px;
}

.contact-section .info-column .inner-column .title{
	position: relative;
	color:#ffffff;
	font-size: 18px;
	font-weight: 600;
	line-height: 1.6em;
	padding-right: 20px;
	padding-bottom: 35px;
	margin-bottom: 40px;
	border-bottom: 1px solid rgb(255 255 255 / 54%);
}

.contact-section .info-column .inner-column .social-boxed{
	position: relative;
	margin-left: 30px;
	margin-top: 30px;
}

.contact-section .info-column .inner-column .social-boxed li{
	position: relative;
	margin-right: 18px;
	display: inline-block;
}

.contact-section .info-column .inner-column .social-boxed li a{
	position: relative;
	color:#ffffff;
	font-size: 15px;
}

.contact-section .form-column{
	position: relative;
}

.contact-section .form-column .inner-column{
	position: relative;
	padding-top: 100px;
	padding-left: 35px;
}

.contact-section .form-column .inner-column h2{
	position: relative;
	/* color:#001659; */
	/* font-size: 23px; */
	/* font-weight: 600; */
	/* line-height: 1.2em; */
	margin-bottom: 16px;
	color: #001659;
	font-weight: 700;
	/* text-transform: capitalize; */
	/* line-height: 50px; */
	font-size: 40px;
	line-height: 1.3em;
}

.contact-section .form-column .inner-column h2:before{
	position: absolute;
	content: '';
	left: -35px;
	top: 12px;
	height: 2px;
	width: 25px;
	/* background-color: #FF0000; */
}

.contact-section .form-column .inner-column .title{
	position: relative;
	color:#222222;
	font-size: 18px;
	font-weight: 500;
	line-height: 1.5em;
	margin-bottom: 25px;
}

/*Contact Form*/

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

.contact-form .form-group:last-child{
	margin-bottom:0px;
}

.contact-form
 input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="password"],
.contact-form select,
.contact-form textarea{
	display:block;
	width:100%;
	height:50px;
	font-size: 16px;
	color:#888888;
	line-height:24px;
	padding: 15px;
	font-weight: 400;
	border-bottom:1px solid #e5e5e5;
	transition:all 500ms ease;
	-webkit-transition:all 500ms ease;
	-ms-transition:all 500ms ease;
	-o-transition:all 500ms ease;
	background: #f7f7f7;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus{
	border-color:#fa2964;
}

.contact-form textarea{
	height: 80px;
	resize:none;
	padding: 15px;
	height: 125px;
}

.contact-form .message-btn{
	position: relative;
    padding: 13px 32px 13px;
    line-height: 24px;
    background: #001659;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    border-radius: 3px;
    letter-spacing: 1px;
	cursor: pointer;
	margin-top: 30px;
    border: 2px solid #001659;
    text-transform: capitalize;
    font-family: 'Poppins', sans-serif;
}

.contact-form .message-btn:hover{
	background:#FF0000;
	border-color:#FF0000;	
}

.contact-form input.error,
.contact-form select.error,
.contact-form textarea.error{
	border-color:#ff0000 !important;	
}

.contact-form label.error{
	display:block;
	line-height:24px;
	padding:5px 0px 0px;
	margin:0px;
	text-transform:uppercase;
	font-size:13px;
	color:#ff0000;
	font-weight:500;	
}

/*** 

====================================================================
	Portfolio Page Section
====================================================================

***/

.portfolio-page-section{
	position: relative;
	padding: 100px 0px 60px;
}

.portfolio-page-section.alternate{
	padding-bottom:110px;
}

.portfolio-page-section .filters{
	position:relative;
}

.portfolio-page-section .filters .more-projects{
	position:relative;
	color:#222222;
	font-size:20px;
	font-weight:600;
}

.portfolio-page-section .filters .filter-tabs{
	position:relative;
	margin-bottom:30px;
	margin-top:50px;
}

.portfolio-page-section .filters .filter-tabs .filter{
	position:relative;
	color:#555555;
	font-size:14px;
	margin:0px 22px;
	cursor:pointer;
	font-weight:600;
	margin-bottom:10px;
	display:inline-block;
	text-transform: uppercase;
	transition:all 0.3s ease;
	-moz-transition:all 0.3s ease;
	-webkit-transition:all 0.3s ease;
	-ms-transition:all 0.3s ease;
	-o-transition:all 0.3s ease;
}

.portfolio-page-section .filters .filter-tabs .filter.active,
.portfolio-page-section .filters .filter-tabs .filter:hover{
	color:#001659;
}

.portfolio-page-section .filters .filter-tabs .filter:before{
	position: absolute;
	content: '';
	left: 50%;
	margin-top: -40px;
	width: 7px;
	height: 7px;
	opacity: 0;
	visibility: hidden;
	margin-left: -3px;
	border-radius: 50px;
	background-color: #FF0000;
	transition: all 900ms ease;
	-moz-transition: all 900ms ease;
	-webkit-transition: all 900ms ease;
	-ms-transition: all 900ms ease;
	-o-transition: all 900ms ease;
	display: none;
}

.portfolio-page-section .filters .filter-tabs .filter .dots{
	position: absolute;
	content: '';
	left: 50%;
	margin-top: -28px;
	width: 31px;
	opacity: 0;
	visibility: hidden;
	margin-left: -15px;
	transition: all 900ms ease;
    -moz-transition: all 900ms ease;
    -webkit-transition: all 900ms ease;
    -ms-transition: all 900ms ease;
    -o-transition: all 900ms ease;
}

.portfolio-page-section .filters .filter-tabs .filter .dots:before{
	position: absolute;
	content: '';
	left: 0px;
	top: 0px;
	width: 7px;
	height: 7px;
	border-radius: 50px;
	background-color: #FF0000;
}

.portfolio-page-section .filters .filter-tabs .filter .dots:after{
	position: absolute;
	content: '';
	right: 0px;
	top: 0px;
	width: 7px;
	height: 7px;
	border-radius: 50px;
	background-color: #FF0000;
}

.portfolio-page-section .filters .filter-tabs .filter:hover .dots,
.portfolio-page-section .filters .filter-tabs .filter.active .dots{
	margin-top: -10px;
	opacity: 1;
	visibility: visible;
}

.portfolio-page-section .filters .filter-tabs .filter:hover::before,
.portfolio-page-section .filters .filter-tabs .filter.active::before{
	margin-top:-24px;
	opacity: 1;
	bottom: auto;
	visibility: visible;
}

.gallery-block.mix,
.gallery-block-two.mix{
	display: none;
}

/*Gallery Block*/

.gallery-block{
	position: relative;
	margin-bottom: 30px;
}

.gallery-block .inner-box{
	position: relative;
}

.gallery-block .inner-box .image{
	position: relative;
}



.gallery-block .inner-box .image .overlay-box{
	position:absolute;
	left:0px;
	top:0px;
	width:100%;
	height:100%;
	opacity:0;
	color:#ffffff;
	text-align:center;
	-webkit-transition:all 700ms ease;
	-ms-transition:all 700ms ease;
	-o-transition:all 700ms ease;
	transition:all 700ms ease;
}

.gallery-block .inner-box .image .overlay-box:before{
	position: absolute;
    content: '';
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    display: block;
    opacity: 0;
    visibility: hidden;
    transition: all 900ms ease;
    -moz-transition: all 900ms ease;
    -webkit-transition: all 900ms ease;
    -ms-transition: all 900ms ease;
    -o-transition: all 900ms ease;
    background-color: rgba(255, 94, 20, 0.8);
	-moz-transform: rotateY(-180deg);
    -webkit-transform: rotateY(-180deg);
    -ms-transform: rotateY(-180deg);
    -o-transform: rotateY(-180deg);
	transform: rotateY(-180deg);
}

.gallery-block .inner-box:hover .overlay-box:before{
	-moz-transform: rotateY(0deg);
	-webkit-transform: rotateY(0deg);
	-ms-transform: rotateY(0deg);
	-o-transform: rotateY(0deg);
	transform: rotateY(0deg);
	opacity: 1;
	visibility: visible;
	border-radius: 10px;
}

.gallery-block .inner-box:hover .overlay-box{
	opacity:1;
}

.gallery-block .inner-box .image .overlay-box .overlay-inner{
	position:absolute;
	left:0px;
	top:0px;
	width:100%;
	height:100%;
	display:table;
	vertical-align:middle;
	padding:10px 0px;
	/* border-radius: 10px 10px 0px 0px; */
}

.gallery-block .inner-box .image .overlay-box .overlay-inner .content{
	position:relative;
	display:table-cell;
	vertical-align:middle;
}

.gallery-block .inner-box .image .overlay-box .overlay-inner .link{
	position:relative;
	font-size:20px;
	color:#FF0000;
	width:50px;
	height:50px;
	line-height:52px;
	margin:0px 5px;
	display:inline-block;
	background-color:#ffffff;
	transition:all 300ms ease;
	-webkit-transition:all 300ms ease;
	-ms-transition:all 300ms ease;
	-o-transition:all 300ms ease;
	border-radius: 4px;
}

.gallery-block .inner-box .image .overlay-box .overlay-inner .link .icon{
	position:relative;
}












.gallery-block .inner-box .image img{
	position: relative;
	width:100%;
	display: block;
	border-radius: 5px;
}

.gallery-block .inner-box .lower-content{
	position: relative;
	padding-top: 35px;
	text-align: center;
	background: #f9f9f9;
	padding: 30px;
	border-radius: 0px 0px 10px 10px;
}

.gallery-block .inner-box .lower-content h3{
	position: relative;
	font-size: 22px;
	font-weight: 600;
	line-height: 1.3em;
	margin-bottom: 4px;
}

.gallery-block .inner-box .lower-content h3 a{
	position: relative;
	color: #222222;
	transition:all 0.3s ease;
	-moz-transition:all 0.3s ease;
	-webkit-transition:all 0.3s ease;
	-ms-transition:all 0.3s ease;
	-o-transition:all 0.3s ease;
}

.gallery-block .inner-box .lower-content h3 a:hover{
	color: #FF0000;
}

.gallery-block .inner-box .lower-content .designation{
	position: relative;
	color: #FF0000;
	font-size: 13px;
	font-weight: 700;
	text-transform: uppercase;
}

/* Gallery Block Three */

.gallery-block-two{
	position:relative;
	margin-bottom: 30px;
}

.gallery-block-two .inner-box{
	position:relative;
	width:100%;
	overflow:hidden;
}

.gallery-block-two .image-box{
	position:relative;
	display:block;
	margin-bottom: 0px;
}

.gallery-block-two .image-box img{
	position:relative;
	display:block;
	width:100%;
}

.gallery-block-two .overlay-box{
	position:absolute;
	left:0px;
	top:0px;
	width:100%;
	height:100%;
	opacity:0;
	color:#ffffff;
	text-align:center;
	-webkit-transition:all 700ms ease;
	-ms-transition:all 700ms ease;
	-o-transition:all 700ms ease;
	transition:all 700ms ease;
}

.gallery-block-two .overlay-box:before{
	position: absolute;
    content: '';
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    display: block;
    opacity: 0;
    visibility: hidden;
    transition: all 900ms ease;
    -moz-transition: all 900ms ease;
    -webkit-transition: all 900ms ease;
    -ms-transition: all 900ms ease;
    -o-transition: all 900ms ease;
    background-color: rgba(255, 94, 20, 0.8);
	-moz-transform: rotateX(-180deg);
    -webkit-transform: rotateX(-180deg);
    -ms-transform: rotateX(-180deg);
    -o-transform: rotateX(-180deg);
	transform: rotateX(-180deg);
}

.gallery-block-two .inner-box:hover .overlay-box:before{
	-moz-transform: rotateX(0deg);
    -webkit-transform: rotateX(0deg);
    -ms-transform: rotateX(0deg);
    -o-transform: rotateX(0deg);
    transform: rotateX(0deg);
    opacity: 1;
    visibility: visible;
}

.gallery-block-two .inner-box:hover .overlay-box{
	opacity:1;
}

.gallery-block-two .inner-box .overlay-inner{
	position:absolute;
	left:0px;
	top:0px;
	width:100%;
	height:100%;
	display:table;
	vertical-align:middle;
	padding:10px 0px;
}

.gallery-block-two .inner-box .overlay-inner .content{
	position:relative;
	display:table-cell;
	vertical-align:middle;
}

.gallery-block-two .inner-box .overlay-inner .link{
	position:relative;
	font-size:20px;
	color:#FF0000;
	width:50px;
	height:50px;
	line-height:52px;
	margin:0px 5px;
	display:inline-block;
	background-color:#ffffff;
	transition:all 300ms ease;
	-webkit-transition:all 300ms ease;
	-ms-transition:all 300ms ease;
	-o-transition:all 300ms ease;
}

.gallery-block-two .inner-box .overlay-inner .link .icon{
	position:relative;
}

.portfolio-page-section .button-box{
	margin-top: 50px;
}

/*** 

====================================================================
	Portfolio
 Masonry Section
====================================================================

***/

.portfolio-masonry-section{
	position: relative;
	padding: 120px 0px 75px;
}

.team-page-section{
	position: relative;
	padding: 115px 0px 30px;
}

.team-block{
	position: relative;
	margin-bottom: 70px;
}

.team-block .inner-box{
	position: relative;
}

.team-block .inner-box .image{
	position: relative;
}

.team-block .inner-box .image img{
	position: relative;
	width:100%;
	display: block;
}

.team-block .inner-box .image .overlay-box{
	position: absolute;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
	opacity: 0;
	visibility: hidden;
	display: block;
	transition:all 300ms ease;
	-webkit-transition:all 300ms ease;
	-ms-transition:all 300ms ease;
	-o-transition:all 300ms ease;
    background-color: rgba(255, 94, 20, 0.76);
}

.team-block .inner-box:hover .image .overlay-box{
	opacity: 1;
	visibility: visible;
}

.team-block .inner-box .image .overlay-box .overlay-inner{
	position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    display: table;
    vertical-align: middle;
    padding: 10px 40px;
}

.team-block .inner-box .image .overlay-box .overlay-inner .content{
	position: relative;
    display: table-cell;
    vertical-align: middle;
}

.team-block .inner-box .image .overlay-box .social-box{
	position:relative;
	text-align: center;
}

.team-block .inner-box .image .overlay-box .social-box a{
	position:relative;
	width:36px;
	height: 36px;
	color:#001659;
	text-align: center;
	line-height: 36px;
	font-size: 18px;
	margin: 0px 2px;
	border-radius: 50%;
	display: inline-block;
	background-color: #ffffff;
	transition:all 300ms ease;
	-webkit-transition:all 300ms ease;
	-ms-transition:all 300ms ease;
	-o-transition:all 300ms ease;
}

.team-block .inner-box .image .overlay-box .social-box a:hover{
	color:#ffffff;
	background-color: #001659;
}

.team-block .inner-box .lower-content{
	position: relative;
	padding-top: 30px;
	text-align: center;
}

.team-block .inner-box .lower-content h3{
	position: relative;
	font-size: 22px;
	font-weight: 600;
	line-height: 1.3em;
	margin-bottom: 4px;
}

.team-block .inner-box .lower-content h3 a{
	position: relative;
	color: #222222;
	transition:all 0.3s ease;
	-moz-transition:all 0.3s ease;
	-webkit-transition:all 0.3s ease;
	-ms-transition:all 0.3s ease;
	-o-transition:all 0.3s ease;
}

.team-block .inner-box .lower-content h3 a:hover{
	color: #FF0000;
}

.team-block .inner-box .lower-content .designation{
	position: relative;
	color: #FF0000;
	font-size: 13px;
	font-weight: 700;
	text-transform: uppercase;
}

/*** 

====================================================================
	Portfolio Single Section
====================================================================

***/

.portfolio-single-section{
	position: relative;
	padding: 110px 0px 100px;
}

.portfolio-single-section .image-column{
	position: relative;
}

.portfolio-single-section .image-column .inner-column{
	position: relative;
}

.portfolio-single-section .image-column .inner-column .image{
	position: relative;
	margin-bottom: 30px;
}

.portfolio-single-section .image-column .inner-column .image img{
	position: relative;
	width:100%;
	display: block;
}

.portfolio-single-section .content-column{
	position: relative;
}

.portfolio-single-section .content-column .inner-column{
	position: relative;
}

.portfolio-single-section .content-column h2{
	position: relative;
	font-weight: 600;
	color: #001659;
	font-size: 36px;
	line-height: 1.3em;
	margin-bottom: 15px;
}

.portfolio-single-section .content-column .title{
	position: relative;
	color:#FF0000;
	font-size: 13px;
	font-weight: 700;
	margin-bottom: 25px;
	text-transform: uppercase;
}

.portfolio-single-section .content-column .text{
	position: relative;
	margin-bottom: 40px;
}

.portfolio-single-section .content-column .text p{
	position: relative;
	color:#555555;
	font-size: 16px;
	line-height: 1.6em;
	margin-bottom: 20px;
}

.portfolio-single-section .content-column .text p:last-child{
	margin-bottom: 0px;
}

/*Porfolio Info*/

.porfolio-info{
	position: relative;
	margin-top: 45px;
}

.porfolio-info li{
	position: relative;
	color: #222222;
	font-size: 13px;
	font-weight: 600;
	margin-bottom: 10px;
}

.porfolio-info li span{
	position: relative;
	color: #001659;
	font-size: 13px;
	font-weight: 700;
	margin-right: 6px;
	text-transform: uppercase;
}

.porfolio-info li a{
	position: relative;
	color: #222222;
	font-size: 13px;
	font-weight: 600;
	line-height: 1em;
	padding-right: 10px;
	margin-right: 10px;
	display: inline-block;
	border-right: 1px solid #222222;
	margin-bottom: 10px;
}

.porfolio-info li a:last-child{
	padding-right: 0px;
	margin-right: 0px;
	border: none;
}

/*Portfolio Share*/

.portfolio-share{
	position: relative;
}

.portfolio-share li{
	position: relative;
	font-size: 13px;
	font-weight: 700;
	margin-right: 15px;
	display: inline-block;
	text-transform: uppercase;
}

.portfolio-share li .icon{
	position: relative;
	color: #FF0000;
	font-size: 14px;
	margin-right: 7px;
	display: inline-block;
}

/*New Posts*/

.new-posts{
	position: relative;
	margin-top: 50px;
	padding: 30px 0px;
	border-top: 1px solid #dddddd;
	border-bottom: 1px solid #dddddd;
}

.new-posts .prev-post{
	position: relative;
	float: left;
	color: #001659;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 1px;
	padding-right: 30px;
	text-transform: uppercase;
	transition:all 0.3s ease;
	-moz-transition:all 0.3s ease;
	-webkit-transition:all 0.3s ease;
	-ms-transition:all 0.3s ease;
	-o-transition:all 0.3s ease;
}

.new-posts .prev-post .icon{
	position:relative;
	font-size: 16px;
	top: 1px;
}

.new-posts .prev-post a:after{
	position: absolute;
    content: '';
    right: -30px;
    top: 9px;
    width: 20px;
    height: 1px;
    background-color: #FF0000;
}


.new-posts .next-post{
	position: relative;
	float: right;
	color: #001659;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 1px;
	padding-left: 30px;
	text-transform: uppercase;
	transition:all 0.3s ease;
	-moz-transition:all 0.3s ease;
	-webkit-transition:all 0.3s ease;
	-ms-transition:all 0.3s ease;
	-o-transition:all 0.3s ease;
}

.new-posts .next-post .icon{
	position:relative;
	font-size: 16px;
	top: 1px;
}

.new-posts .next-post a:after{
	position: absolute;
    content: '';
    left: -30px;
    top: 9px;
    width: 20px;
    height: 1px;
    background-color: #FF0000;
}

.new-posts .prev-post:hover,
.new-posts .next-post:hover{
	color:#FF0000;
}

.related-posts{
	position: relative;
	padding-bottom: 60px;
}
.offer-section{
    /* position: relative; */
    /* display: block; */
    /* background-color: #f5f5f5; */
    /* background: url(//jaquesofalltrades.com/wp-content/themes/buildnet/assets/images/shape/bg3.png) #f5f5f5; */
    /* background-repeat: no-repeat; */
}
.offer-section:after {
     position: relative;
    display: block;
    background-color: #f5f5f5;
}
.services-section {
    position: relative;
    display: block;
    background-color: #f5f5f5;
    background: url(//jaquesofalltrades.com/wp-content/themes/buildnet/assets/images/shape/bg1.png) #f5f5f5;
    background-repeat: no-repeat;
}
.about-section{
    position: relative;
    display: block;
    padding: 120px 0 110px;
    background-color: #f5f5f5;
    background: url(//jaquesofalltrades.com/wp-content/themes/buildnet/assets/images/shape/pattern-bg1.png) #f5f5f5;
    background-repeat: repeat;
}
 .counter-section{
    position: relative;
    display: block;
    background-color: #f5f5f5;
    background: url(//jaquesofalltrades.com/wp-content/themes/buildnet/assets/images/shape/pattern-bg1.png) #f5f5f5;
    background-repeat: repeat;
}
.case-block .inner-box:hover .lower-box {
    background-color: #FF0000;
}
.case-block .inner-box:hover .lower-box h3 a{
	color:#fff!important;
}
.case-block .inner-box .lower-box:before {
    position: absolute;
    content: '';
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    border-right: none;
    transform: translateY(110%);
    transition: all 900ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    background: #00235a;
}
.case-block .inner-box:hover .lower-box:before,
.case-block .inner-box:hover .lower-box:after {
    -webkit-transform: translateY(0%);
    -ms-transform: translateY(0%);
    transform: translateX(0%);
}

/*Smooth Slide */
.offer-block .inner-box:hover .lower-content {
    background-color: #FF0000;
}
.offer-block .inner-box:hover .lower-content h3 a,.offer-block .inner-box:hover .lower-content .text,.offer-block .inner-box:hover .lower-content .read-more .fa{
	color:#fff!important;
}
.offer-block .inner-box .lower-content:before{
    position: absolute;
    content: '';
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    border-right: none;
    transform: translateX(-110%);
    transition: all 900ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    background: #00235a;
}

.offer-block .inner-box:hover .lower-content:before,
.offer-block .inner-box:hover .lower-content:after {
    -webkit-transform: translateX(0%);
    -ms-transform: translateX(0%);
    transform: translateX(0%);
}

/*image Hover */
.offer-block .inner-box:hover .image img{
    -webkit-transform: scale(1.3);
    -moz-transform: scale(1.3);
    -ms-transform: scale(1.3);
    -o-transform: scale(1.3);
    transform: scale(1.3);
}
.offer-block .inner-box .image img {
    display: block;
    max-width: 100%;
    height: auto;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
}
/*image Hover */

.offer-block .inner-box .lower-content:hover .read-more {
    color: #fff;
	letter-spacing:1px;
	    transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -ms-transition: all 0.3s
 ease;
    -o-transition: all 0.3s ease;
}
.offer-block .inner-box .lower-content .read-more:hover {
    color: #fff;
	letter-spacing:2px;
   
}



/*Smooth Slide */

.offer-block .inner-box:hover .lower-content h3 a,.offer-block .inner-box:hover .lower-content .text,.offer-block .inner-box:hover .lower-content .read-more .fa{
	color:#fff!important;
}
.fluid-section-one .content-column .carousel-box .box-inner:hover
{
    background-color: #FF0000;
}
.fluid-section-one .content-column .carousel-box .box-inner:before{
    position: absolute;
    content: '';
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    border-right: none;
    transform: translateX(110%);
    transition: all 900ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    background: #fff;
}

.fluid-section-one .content-column .carousel-box .box-inner:hover:before,
.fluid-section-one .content-column .carousel-box .box-inner:hover :after {
    -webkit-transform: translateY(0%);
    -ms-transform: translateY(0%);
    transform: translateY(0%);
}



/*Smooth Slide */
.feature-block:hover .inner-box .icon,.feature-block:hover .inner-box h3 a,.feature-block:hover .inner-box .text{
	color:#fff!important;
	transition: all 700ms ease;
}

.feature-block .inner-box:before{
    position: absolute;
    content: '';
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    border-right: none;
    transform: translateX(30%);
    transition: all 900ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    background: none;
}

.feature-block:hover .inner-box:before{
    -webkit-transform: translateX(0%);
    -ms-transform: translateX(0%);
    transform: translateX(0%);
    background: #00235a;
    padding:25px;
}
.business-section:after {
    position: absolute;
    content: '';
    right: 0px;
    top: 21px;
    width: 484px;
    height: 646px;
    display: inline-block;
    background: url(//jaquesofalltrades.com/wp-content/themes/buildnet/assets/images/shape/1.png) no-repeat;
    z-index: -1;
}

.textxx1, .textxx2 {
    position: relative;
    color: #555555;
    font-size: 16px;
    line-height: 1.6em;
    margin-bottom: 20px;
}
.xct {
    position: relative!important;
    color: #001659!important;
    font-size: 18px!important;
    line-height: 1.6em;
    font-weight: 600;
    margin-bottom: 20px!important;
	    font-style: italic!important;
}
.business-section .title-column .inner-column .we-do:hover{
	letter-spacing:2px;
	transition: all 700ms ease;
}
.business-section .title-column .inner-column .we-do:hover:after {
    background-color: #FF0000;
	transition: all 700ms ease;
}




/*Smooth Slide */

.offer-block .inner-box:hover .lower-content h3 a,.offer-block .inner-box:hover .lower-content .text,.offer-block .inner-box:hover .lower-content .read-more .fa{
	color:#fff!important;
	transition: all 700ms ease;
}

 .liquid-img-container-inner{
    -webkit-box-shadow: 0 30px 70px rgba(0, 0, 0, 0.15);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.15);
}
.news-section-two .image[data-animate-shadow] .liquid-img-container-inner {
    -webkit-box-shadow: 0 0 0 rgba(0, 0, 0, 0.3);
    box-shadow: 0 0 0 rgba(0, 0, 0, 0.3);
    -webkit-transition: -webkit-box-shadow 0.5s cubic-bezier(0.7, 0, 0.3, 1);
    transition: -webkit-box-shadow 0.5s cubic-bezier(0.7, 0, 0.3, 1);
    transition: box-shadow 0.5s cubic-bezier(0.7, 0, 0.3, 1);
    transition: box-shadow 0.5s cubic-bezier(0.7, 0, 0.3, 1), -webkit-box-shadow 0.5s cubic-bezier(0.7, 0, 0.3, 1);
}
.will-change {
    will-change: transform, opacity;
}

.case-block .inner-box .image .overlay-box .overlay-inner .content .read-more:hover{
	letter-spacing:2px;

}
.case-block .inner-box .image .overlay-box .overlay-inner .content .read-more{
    transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}	
.help-section .content-column .inner-column .risk:hover{
	letter-spacing:2px;
}


/*image Hover */

.news-block-two .inner-box .image-column .image {
    position: relative;
    overflow: hidden;
    /* border-radius: 10px 0px 0px 0px; */
}
.news-block-two .inner-box:hover .image-column .image img
{
    -webkit-transform: scale(1.3);
    -moz-transform: scale(1.3);
    -ms-transform: scale(1.3);
    -o-transform: scale(1.3);
    transform: scale(1.3);
}
.news-block-two .inner-box .image-column .image img {
    display: block;
    max-width: 100%;
    height: auto;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
    /* border-radius: 10px 0px 0px 0px; */
}
/*Line Animation */
.feature-block-four .inner-box h3 a{
    text-decoration: none;
    background-image: linear-gradient(currentColor, currentColor);
    background-position: 0% 100%;
    background-repeat: no-repeat;
    background-size: 0% 2px;
    transition: background-size .3s;
    padding-bottom: 3px;
}
.feature-block-four .inner-box:hover h3 a,
.feature-block-four .inner-box h3 a:focus {
    background-size: 100% 2px;
	color: #FF0000;
}

/*====multiline-animation====*/
.dotanimation{
	position:absolute;
	width:100%;
	bottom:0px;
	height: 650px;
	top:0;
}
@media only screen and (max-width: 991px) {
	
.dotanimation{
	display:none;
}	
}
.dotline-one,
.dotline-two,
.dotline-three,
.dotline-four{
	position:absolute;
	bottom:0px;	
	height: 650px;
	width:4px;
	z-index:20;	
	border-left:1px solid rgba(255,255,255,0.1);	
	
}
.dotline-one{left:20%;}
.dotline-two{left:40%;}
.dotline-three{left:60%;}
.dotline-four{left:80%;}

.dotanimation1{
	animation-duration: 40s;
	animation-iteration-count: infinite;
	background-color: #2a2a2a;
	height: 10px;
	margin: 0px 0px 0px -5px;
	transform-origin: bottom;
	width: 10px;
}
.animline1{
	animation-name: animline1;
	animation-timing-function: linear;
}
@keyframes animline1{
	0%   { transform: translateY(0); }
	50%  { transform: translateY(650px); }
	100% { transform: translateY(0); }
}


.dotanimation2{
	animation-duration: 80s;
	animation-iteration-count: infinite;
	background-color: #2a2a2a;
	height: 10px;
	width:10px;
	margin: 0px 0px 0px -5px;
	transform-origin: bottom;
	
}
.animline2{
	animation-name: animline2;
	animation-timing-function: linear;
}
@keyframes animline2{
	100%   { transform: translateY(0); }
	50%  { transform: translateY(650px); }
	0% { transform: translateY(0); }
}

/*image Hover Effect */

.beyong-section .beyong-tabs .tabs-content .image-column .image:before,
.beyong-section .beyong-tabs .tabs-content .image-column .image:after {
    border-color: transparent;
    -webkit-transition: all 0.25s;
    transition: all 0.25s;
    border-style: solid;
    border-width: 0;
    content: "";
    height: 24px;
    position: absolute;
    width: 24px;
}

.beyong-section .beyong-tabs .tabs-content .image-column .image:before {
    border-color: #fff!important;
    border-left-width: 2px;
    border-top-width: 2px;
    left: 25px;
    top: 25px; 
    background:none!important;
    z-index:999;	
}
.beyong-section .beyong-tabs .tabs-content .image-column .image:after {
    border-bottom-width: 2px!important;
    border-right-width: 2px;
    bottom: 25px;
    right: 25px;
    border-color: #fff;
}
 

.beyong-section .beyong-tabs .tabs-content .image-column:hover .image:before, 
.beyong-section .beyong-tabs .tabs-content .image-column:hover .image:after {
    border-color: #fff;
    -webkit-transition: all 0.25s;
    transition: all 0.25s;
    border-style: solid;
    height: 95%;
    width:95%;
}


/*image Hover */

.beyong-section .beyong-tabs .tabs-content .image-column .image{
 overflow:hidden;
}
.beyong-section .beyong-tabs .tabs-content .image-column:hover .image img{
    -webkit-transform: scale(1.3);
    -moz-transform: scale(1.3);
    -ms-transform: scale(1.3);
    -o-transform: scale(1.3);
    transform: scale(1.3);
}
.beyong-section .beyong-tabs .tabs-content .image-column .image img {
    display: block;
    max-width: 100%;
    height: auto;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
    width: 100%;
    height: 375px;
}


/*Line Hover*/


.news-block-two .inner-box .content-column .inner-column h3 a:after {
    padding: 0.3em 0;
    position: absolute;
    bottom: 100%;
    left: 0;
    content: attr(data-hover);
    color: #FF0000;
    white-space: nowrap;
}
.news-block-two .inner-box .content-column:hover .inner-column h3 a {
    transform: translateY(100%);
}

.news-block-two .inner-box .content-column .inner-column h3 a:hover {
    color: #222;
}
.news-block-two .inner-box .content-column .inner-column h3 a{
    padding: 4px 0px;
    color: #000;
    position: relative;
    display: inline-block;
    /* letter-spacing: 1px; */
    margin: 0px;
    text-decoration: none;
    font-weight: 600;
}
.news-block-two .inner-box .content-column .inner-column h3{
    display: inline-block;
    list-style: outside none none;
    margin: 0px 0px 10px 0px;
    overflow: hidden;
}




/*-------------------------
	Title Hover
---------------------------*/


.rtitle{
  display:inline-block;
  position:relative;	
  padding: 0px 0px 8px 0px;
  text-decoration: none;
}
.rtitle:before,
.rtitle:after {
  position: absolute;
  -webkit-transition: all 0.35s ease;
  transition: all 0.35s ease;
}
.rtitle:before {
  bottom: 0;
  display: block;
  height: 2px;
  width: 0%;
  content: "";
  background-color:#FF0000;
}
.rtitle:after {
  left: 0;
  top: 0;
  padding: 0px 0px 8px 0px;
  position: absolute;
  content: attr(data-hover);
  color: #FF0000;
  white-space: nowrap;
  max-width: 0%;

  overflow: hidden;
}
.beyong-section .beyong-tabs .tabs-content:hover .content-column h2:before
{
  opacity: 1;
  width: 100%;
}
.beyong-section .beyong-tabs .tabs-content:hover .content-column h2:after
{
  max-width: 100%;
}
.title_color{
	    color: #FF0000;
}
.header_style_1 .header-upper:before {
    position: absolute;
    left: 0px;
    bottom: 0px;
    height: 29px;
    width: 100%;
    background-image: url(//jaquesofalltrades.com/wp-content/themes/buildnet/assets/images/shape/dot1.png);
    content: "";
    background-repeat: repeat;
    background-position: left bottom;
    background: #f4f4f400;
}
.header_style_2 .header-upper {
    position: relative;
    position: relative;
    display: block;
    background-color: #ffffff;
    background-repeat: repeat;
}


.slider_tw {
    font-style: italic;
    color: #FF0000;
    font-family: initial;
    font-weight: 700;
}
.slider_tw2 {
    font-style: italic;
    color: #FF0000;
    font-family: initial;
    font-weight: 700;
    text-decoration: underline;
}



.services-block .inner-box h3 a{
    text-decoration: none;
    background-image: linear-gradient(currentColor, currentColor);
    background-position: 0% 100%;
    background-repeat: no-repeat;
    background-size: 0% 2px;
    transition: background-size .7s;
    padding-bottom: 1px;
    line-height: 36px;
}

.services-block .inner-box:hover h3 a,
.services-block .inner-box:focus h3 a {
    background-size: 100% 2px;
	color: #fff;
	
}




.beyong-section .beyong-tabs .tab-btns .tab-btn{
    text-decoration: none;
    background-image: linear-gradient(currentColor, currentColor);
    background-position: 0% 100%;
    background-repeat: no-repeat;
    background-size: 0% 2px;
    transition: background-size .7s;
    padding-bottom: 3px;
}

.beyong-section .beyong-tabs .tab-btns .tab-btn:hover,
.beyong-section .beyong-tabs .tab-btns .tab-btn:focus
{
    background-size: 100% 2px;
	color: #FF0000;
	
}

/*** 

====================================================================
	main header header style h6
====================================================================

 ***/

.banner-section.style-h6 {
	position: relative;
}

.banner-section.style-h6 .slide-item {
    position: relative;
    z-index: 1;
}

.banner-section.style-h6 .slide-item:before {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(3, 13, 40, 0.80);
    content: "";
    opacity: .60;
    z-index: -1;
}

.banner-section.style-h6 .banner-carousel .content-box .inner {
    margin-right: 0;
    padding: 189px 0;
}

.banner-section.style-h6 .content-box {
    text-align: center;
    width: 100%;
    float: unset;
}

.banner-section.style-h6 .banner-carousel .link-box .theme-btn {
    float: unset;
}

.banner-section.style-h6 .title {
    font-size: 20px;
    color: #fff;
    margin-bottom: 20px;
}

.banner-section.style-h6 .banner-carousel .content-box h2 {
    font-size: 72px;
    line-height: 96px;
	font-weight: 700;
}

.banner-section.style-h6 .banner-carousel .link-box .theme-btn {
    float: unset;
    color: #fff;
    background: #FF0000;
    border-color: transparent;
    padding: 14px 50px;
    border-radius:0px;
    z-index: 1;
    border: none;
    overflow: hidden;
    /* -webkit-box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48); */
    -khtml-box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48);
    -moz-box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48);
    -ms-box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48);
    -o-box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48);
    /* box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48); */
    /* background-color: #d5aa6d; */
    /* background-image: -webkit-gradient(linear, left top, right top,from(#d5aa6d),to(#9b6f45)); */
    /* background-image: -webkit-linear-gradient(left,#d5aa6d,#9b6f45); */
    background-image: -moz-linear-gradient(left,#d5aa6d,#9b6f45);
    background-image: -ms-linear-gradient(left,#d5aa6d,#9b6f45);
    background-image: -o-linear-gradient(left,#d5aa6d,#9b6f45);
    background-image: linear-gradient(left,#d5aa6d,#9b6f45);
    -webkit-box-shadow: 0 4px 7px rgb(248, 105, 41);
    -khtml-box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48);
    -moz-box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48);
    -ms-box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48);
    -o-box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48);
    box-shadow: 0 4px 7px rgba(255, 94, 20, 0.49);
    background-color: #FF0000;
    background-image: -moz-linear-gradient(left,#d5aa6d,#9b6f45);
    background-image: -ms-linear-gradient(left,#d5aa6d,#9b6f45);
    background-image: -o-linear-gradient(left,#d5aa6d,#9b6f45);
}

.banner-section.style-h6 .banner-carousel .link-box .theme-btn:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    height: 100%;
    width: 100%;
    background: #222;
    -webkit-transform: scale(0, 1);
    -ms-transform: scale(0, 1);
    transform: scale(0, 1);
    -webkit-transform-origin: bottom right;
    -ms-transform-origin: bottom right;
    transform-origin: bottom right;
    -webkit-transition: transform 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -moz-transition: transform 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -o-transition: transform 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
    transition: transform 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -webkit-transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -moz-transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -o-transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
    transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
}
.banner-section.style-h6 .banner-carousel .link-box .theme-btn:hover:before {
    -webkit-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    transform: scale(1, 1);
    -webkit-transform-origin: top left;
    -ms-transform-origin: top left;
    transform-origin: top left;
}

.banner-section.style-h6 .banner-carousel .link-box .theme-btn:hover {
	transition: all 700ma ease;
}

.banner-section.style-h6 .banner-carousel .owl-prev, .banner-section.style-h6 .banner-carousel .owl-next {
    border-radius: 0px;
}

.banner-section.style-h6 .banner-carousel .owl-dots{
	display: none;
}

.banner-section.style-h6 .banner-carousel .owl-dots{
	position: absolute;
	left: 0;
	bottom: 50px;
	width: 100%;
	text-align: center;
	display: none;
}

.banner-section.style-h6 .banner-carousel .owl-nav{
    position: absolute;
    width: 100%;
    top: 50%;
    margin-top: -25px;
    z-index: 99;
    opacity: 0;
	-webkit-transition:all 300ms ease;
	-moz-transition:all 300ms ease;
	-ms-transition:all 300ms ease;
	-o-transition:all 300ms ease;
    transition: all 300ms ease;
}

.banner-section.style-h6 .banner-carousel:hover .owl-nav{
	opacity: 1;
}

.banner-section.style-h6 .banner-carousel .owl-prev, 
.banner-section.style-h6 .banner-carousel .owl-next{
	position: absolute;
	top: 0;
	left: 50px;
	height: 50px;
	width: 50px;
	font-size: 20px;
	color: #ffffff;
	font-weight: 400;
	text-align: center;
	line-height: 50px;
	border-radius: 50%;
	background-color: rgba(255,255,255,0.20);
	-webkit-transition:all 300ms ease;
	-moz-transition:all 300ms ease;
	-ms-transition:all 300ms ease;
	-o-transition:all 300ms ease;
    transition: all 300ms ease;
}

.banner-section.style-h6 .banner-carousel .owl-next{
	left: auto;
	right: 50px;
}

.banner-section.style-h6 .banner-carousel .owl-prev:hover, 
.banner-section.style-h6 .banner-carousel .owl-next:hover{
	background-color: #ffffff;
	color: #222222;
}

.banner-section.style-h6 .banner-carousel .content-box h2 {
    position: relative;
    display: block;
    font-size: 55px;
    line-height: 70px;
    color: #ffffff;
    font-weight: 700;
    opacity: 0;
    margin-bottom: 40px;
    -webkit-transform: translateY(-50px);
    -moz-transform: translateY(-50px);
    -ms-transform: translateY(-50px);
    -o-transform: translateY(-50px);
    transform: translateY(-50px);
    -webkit-transition: all 1000ms ease;
    -moz-transition: all 100ms ease;
    -ms-transition: all 1000ms ease;
    -o-transition: all 1000ms ease;
    transition: all 1000ms ease;
}

.banner-section.style-h6 .banner-carousel .active .content-box h2{
	opacity: 1;
	-webkit-transform: translateY(0);
	-moz-transform: translateY(0);
	-ms-transform: translateY(0);
	-o-transform: translateY(0);
	transform: translateY(0);
	-webkit-transition-delay: 300ms;
	-moz-transition-delay: 300ms;
	-ms-transition-delay: 300ms;
	-o-transition-delay: 300ms;
	transition-delay: 300ms;
}

.banner-section.style-h6 .banner-carousel .content-box .text{
	position: relative;
	display: block;
	font-size: 20px;
	line-height: 34px;
	color: #ffffff;
	font-weight: 400;
	opacity: 0;
	margin-bottom: 40px;
	-webkit-transition: all 1000ms ease;
	-moz-transition: all 100ms ease;
	-ms-transition: all 1000ms ease;
	-o-transition: all 1000ms ease;
	transition: all 1000ms ease;
	-webkit-transform: translateY(-100px);
	-moz-transform: translateY(-100px);
	-ms-transform: translateY(-100px);
	-o-transform: translateY(-100px);
	transform: translateY(-100px);
}

.banner-section.style-h6 .banner-carousel .active  .text{
	opacity: 1;
	-webkit-transform: translateY(0);
	-moz-transform: translateY(0);
	-ms-transform: translateY(0);
	-o-transform: translateY(0);
	transform: translateY(0);
	-webkit-transition-delay: 600ms;
	-moz-transition-delay: 600ms;
	-ms-transition-delay: 600ms;
	-o-transition-delay: 600ms;
	transition-delay: 600ms;
}

.banner-section.style-h6 .banner-carousel .link-box{
	position: relative;
	opacity: 0;
	-webkit-transition: all 1000ms ease;
	-moz-transition: all 1000ms ease;
	-ms-transition: all 1000ms ease;
	-o-transition: all 1000ms ease;
	transition: all 1000ms ease;
	-webkit-transform: translateY(-50px);
	-moz-transform: translateY(-50px);
	-ms-transform: translateY(-50px);
	-o-transform: translateY(-50px);
	transform:
 translateY(-50px);
}

.banner-section.style-h6 .banner-carousel .link-box:after{
	display: table;
	clear: both;
	content: "";
}

.banner-section.style-h6 .banner-carousel .active .link-box{
	opacity: 1;
	-webkit-transform: translateY(0);
	-moz-transform: translateY(0);
	-ms-transform: translateY(0);
	-o-transform: translateY(0);
	transform: translateY(0);
	-webkit-transition-delay: 1200ms;
	-moz-transition-delay: 1200ms;
	-ms-transition-delay: 1200ms;
	-o-transition-delay: 1200ms;
	transition-delay: 1200ms;
}



/*** 

====================================================================
	call to action h6
====================================================================

 ***/

.call-to-action-h6 {
    position: relative;
    padding: 15px 0px;
    /* background-repeat: no-repeat; */
    background-size: cover;
    background: #222;
    /* padding-top: 37px; */
    background-repeat: no-repeat;
    padding-bottom: 0px;
}
.call-to-action-h6 .text {
    margin-top: 18px;
}
.call-to-action-h6 .text p {
    font-size: 37px;
    color: #ffffff;
    padding: 9px 0px 18px;
    font-weight: 600;
    /* padding-top: 36px; */
    /* padding-bottom: 36px; */
}
.call-to-action-h6 .btn-box {
    position: relative;
    top: 30px;
    float: right;
}
.call-to-action-h6 .btn-box a {
    background: #FF0000;
    /* border-bottom-right-radius: 30px; */
    /* border-bottom-left-radius: 0px; */
    /* border-top-right-radius: 30px; */
    /* border-top-left-radius: 0px; */
    transition: all 700ms ease;
    position: relative;
    display: inline-block;
    font-size: 18px;
    line-height: 30px;
    color: #ffffff;
    padding: 15px 40px;
    font-weight: 600;
    overflow: auto;
    /* text-transform: uppercase; */
    z-index: 1;
    -webkit-box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48);
    -khtml-box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48);
    -moz-box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48);
    -ms-box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48);
    -o-box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48);
    box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48);
    /* background-color: #d5aa6d; */
    /* background-image: -webkit-gradient(linear, left top, right top,from(#d5aa6d),to(#9b6f45)); */
    /* background-image: -webkit-linear-gradient(left,#d5aa6d,#9b6f45); */
    background-image: -moz-linear-gradient(left,#d5aa6d,#9b6f45);
    background-image: -ms-linear-gradient(left,#d5aa6d,#9b6f45);
    background-image: -o-linear-gradient(left,#d5aa6d,#9b6f45);
    background-image: linear-gradient(left,#d5aa6d,#9b6f45);
    -webkit-box-shadow: 0 4px 7px rgb(248, 105, 41);
    -khtml-box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48);
    -moz-box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48);
    -ms-box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48);
    -o-box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48);
    box-shadow: 0 4px 7px rgba(255, 94, 20, 0.49);
    background-color: #FF0000;
    /* background-image: -webkit-gradient(linear, left top, right top,from(#f96a29),to(#d35417)); */
    /* background-image: -webkit-linear-gradient(left,#f96928,#d25215); */
    background-image: -moz-linear-gradient(left,#d5aa6d,#9b6f45);
    background-image: -ms-linear-gradient(left,#d5aa6d,#9b6f45);
    background-image: -o-linear-gradient(left,#d5aa6d,#9b6f45);
    box-shadow: 0 -2px 0 0 rgba(24,24,24,.15) inset;
}

.call-to-action-h6 .btn-box a:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    height: 100%;
    width: 100%;
    background: #000000;
    -webkit-transform: scale(0, 1);
    -ms-transform: scale(0, 1);
    transform: scale(0, 1);
    -webkit-transform-origin: bottom right;
    -ms-transform-origin: bottom right;
    transform-origin: bottom right;
    -webkit-transition: transform 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -moz-transition: transform 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -o-transition: transform 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
    transition: transform 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -webkit-transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -moz-transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -o-transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
    transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
}
.call-to-action-h6 .btn-box a:hover:before {
    -webkit-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    transform: scale(1, 1);
    -webkit-transform-origin: top left;
    -ms-transform-origin: top left;
    transform-origin: top left;
}

.call-to-action-h6 .title-fill:before, .dark-bg-2 .title-fill:before {
    color: #FF9600;
}

.call-to-action-h6 .title-fill:after {
    color: #fff;
}


/*** 

====================================================================
	about h6
====================================================================

 ***/

.about-h6 {
    position: relative;
    padding: 120px 0px 0px 0px;
    overflow: hidden;
    /* margin-bottom: 0px; */
    padding-bottom: -99px;
    padding-bottom: 130px;
}
.about-h6:before {
    position: absolute;
    left: 0;
    top: 0;
    background-image: url(//jaquesofalltrades.com/wp-content/themes/buildnet/assets/images/ex-new/resource/about-h6-right-shape.png);
    content: "";
    width: 300px;
    height: 100%;
    background-repeat: no-repeat;
}
.about-h6 .text-holder {}
.about-h6 .text-holder .subtitle {
	margin-bottom: 0px;
}
.about-h6 .text-holder .subtitle h3 {
    font-size: 16px;
    color: #222;
    font-weight: 600;
}
.about-h6 .text-holder .title-two h2 {
    /* font-size: 36px; */
    /* color: #222222; */
    /* font-weight: 700; */
    margin-bottom: 15px;
    color: #001659;
    font-weight: 700;
    text-transform: CAPITALIZE;
    /* line-height: 50px; */
    font-size: 40px;
    line-height: 1.3em;
}
.about-h6 .text-holder .text-bold {}
.about-h6 .text-holder .text-bold p {
    font-size: 18px;
    color: #222222;
    font-weight: 500;
    line-height: 30px;
    margin-bottom: 45px;
    padding-right: 20px;
}
.about-h6 .text-holder .text p {
    font-size: 17px;
    color: #555;
    font-weight: 400;
    line-height: 30px;
    margin-bottom: 25px;
    padding-right: 20px;
}
.about-h6 .text-holder .btn-box {}
.about-h6 .text-holder .btn-box a {
    /* position: relative; */
    /* background: #222; */
    /* border-bottom-right-radius: 30px; */
    /* border-bottom-left-radius: 0px; */
    /* border-top-right-radius: 3px; */
    /* border-top-left-radius: 0px; */
    transition: all 700ms ease;
    position: relative;
    display: inline-block;
    font-size: 15px;
    /* line-height: 30px; */
    color: #ffffff;
    padding: 15px 70px 15px 25px;
    font-weight: 600;
    overflow: auto;
    text-transform: UPPERCASE;
    z-index: 1;
    -webkit-box-shadow: 0 4px 7px rgb(248, 105, 41);
    -khtml-box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48);
    -moz-box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48);
    -ms-box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48);
    -o-box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48);
    /* box-shadow: 0 4px 7px rgba(255, 94, 20, 0.49); */
    /* background-color: #9c8479; */
    /* background-image: -webkit-gradient(linear, left top, right top,from(#f96a29),to(#d35417)); */
    background-image: -webkit-linear-gradient(left,#FF0000,#FF0000);
    /*! background-image: -moz-linear-gradient(left,#d5aa6d,#9b6f45); */
    background-image: -ms-linear-gradient(left,#d5aa6d,#9b6f45);
    background-image: -o-linear-gradient(left,#d5aa6d,#9b6f45);
    background-image: linear-gradient(left,#d5aa6d,#9b6f45);
    box-shadow: 0 -2px 0 0 rgba(24,24,24,.15) inset;
    /* display: none; */
    letter-spacing: 1px;
    margin-top: 15px;
    border-radius: 4px;
}
.about-h6 .text-holder .btn-box a:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    height: 100%;
    width: 100%;
    background: #000000;
    -webkit-transform: scale(0, 1);
    -ms-transform: scale(0, 1);
    transform: scale(0, 1);
    -webkit-transform-origin: bottom right;
    -ms-transform-origin: bottom right;
    transform-origin: bottom right;
    -webkit-transition: transform 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -moz-transition: transform 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -o-transition: transform 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
    transition: transform 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -webkit-transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -moz-transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -o-transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
    transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
}
.about-h6 .text-holder .btn-box a:hover:after {
    -webkit-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    transform: scale(1, 1);
    -webkit-transform-origin: top left;
    -ms-transform-origin: top left;
    transform-origin: top left;
}
.about-h6 .text-holder .btn-box a:hover:before {
	color: #fff;
	transition: all 700ms ease;
}
.about-h6 .text-holder .btn-box a:before {
    position: absolute;
    right: 36px;
    top: 11px;
    content: "\f061";
    font-size: 10px;
    color: #fff;
    font-family: 'FontAwesome';
    font-weight: 500;
    transition: all 700ms ease;
    border-left: 1px solid white;
    padding-left: 11px;
    line-height: 30px;
    /* content: ''; */
    width: 1px;
    height: 34px;
    /* background: #fd5f15; */
    /* position: absolute; */
    /* top: 55px; */
    /* right: 1px; */
}
.about-h6 .img-holder {
    float: right;
}
.about-h6 .img-holder .image {
	position: relative;
}
.about-h6 .img-holder .image:before {

}

.about-h6 .img-holder .image .image-two {
    position: absolute;
    right: -165px;
    bottom: -99px;
    content: "";
    width: 370px;
   
 height: 400px;
    z-index: -1;
}

.about-h6 .img-holder .image .image-box-two {
    position: relative;
    overflow: hidden;
}

.about-h6 .img-holder .image .image-box-two::before{
    position: absolute;
    top: 0;
    left: -75%;
    z-index: 2;
    display: block;
    content: '';
    width: 50%;
    height: 100%;
    background: -webkit-linear-gradient(left, rgba(255,255,255,0) 0%, rgba(255,255,255,.3) 100%);
    background: -moz-linear-gradient(left, rgba(255,255,255,0) 0%, rgba(255,255,255,.3) 100%);
    background: -ms-linear-gradient(left, rgba(255,255,255,0) 0%, rgba(255,255,255,.3) 100%);
    background: -o-linear-gradient(left, rgba(255,255,255,0) 0%, rgba(255,255,255,.3) 100%);
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,.3) 100%);
    -webkit-transform: skewX(-25deg);
    -moz-transform: skewX(-25deg);
    -ms-transform: skewX(-25deg);
    -o-transform: skewX(-25deg);
    transform: skewX(-25deg);
}

.about-h6 .img-holder .image:hover .image-box-two::before {
	-webkit-animation: shine 1.5s;
	animation: shine 1.5s;
}
@-webkit-keyframes shine {
	100% {
		left: 125%;
	}
}
@keyframes shine {
	100% {
		left: 125%;
	}
}
.about-h6 .img-holder .image img {}
.about-h6 .img-holder .video-img {
    position: absolute;
    display: inline-block;
    right: -90px;
    /* top: 74px; */
    bottom: -45px;
    border: 10px solid white;
    width: 280px;
    z-index: 5;
}
.about-h6 .img-holder .video-img .icon {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    text-align: center;
    display: table;
    vertical-align: middle;
    padding: 10px 0px;
    z-index: 1;
}
.about-h6 .img-holder .video-img .icon .icon-box {
	position: relative;
    display: table-cell;
    vertical-align: middle;
}
.about-h6 .img-holder .video-img .icon img {}
.about-h6 .img-holder .video-img img {}


/*** 

====================================================================
	funfact h6
====================================================================

 ***/

.funfact-h6 {
    position: relative;
    padding: 100px 0px 100px 0px;
}

.funfact-h6 .item {
    position: relative;
    padding-left: 85px;
    padding-top: 13px;
}
.funfact-h6 .item .icon {
    position: absolute;
    left: 5px;
    top: 15px;
    z-index: 9;
}
.funfact-h6 .item .icon span:before {
    font-size: 45px;
    color: #fff;
    /* margin-right: 14px; */
}
.funfact-h6 .item .count-box {
    font-size: 36px;
    color: #ffffff;
    font-weight: 600;
}
.funfact-h6 .item .count-box .count-text {
    color: #ffffff;
    font-size: 48px;
    font-weight: 700;
}
.funfact-h6 .item .counter-title {
    font-size: 16px;
    color: #FFFFFF;
    margin-top: 10px;
    text-transform: uppercase;
    font-weight: 600;
}

/*** 

====================================================================
	service img h6
====================================================================

 ***/

.service-img-h6 {
    position: relative;
    padding: 100px 0px;
    background: #fcfcfc;
}
.service-img-h6 .sec-title {
    text-align: center;
}
.service-img-h6 .sec-title .subtitle {
    margin-bottom: 15px;
}
.service-img-h6 .sec-title h3 {
    font-size: 15px;
    color: #222;
    text-transform: uppercase;
    font-weight: 600;
    /* background: red; */
}
.service-img-h6 .sec-title .title-two h2 {
    /* font-size: 36px; */
    /* color: #222222; */
    /* line-height: 60px; */
    /* margin-bottom: 15px; */
    /* color: #ffffff; */
    /* font-size: 40px; */
    /* font-weight: 600; */
    /* text-transform: capitalize; */
    /* line-height: 50px; */
    /* font-size: 36px; */
}
.service-img-h6 .sec-title .divider {
    display: none;
}
.service-img-h6 .item {
    position: relative;
    overflow: hidden;
    transform: all 700ms ease;
    /* -webkit-box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48); */
    -khtml-box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48);
    -moz-box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48);
    -ms-box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48);
    -o-box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48);
    /* box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48); */
}
.service-img-h6 .item .img-holder {
    position: relative;
    overflow: hidden;
}
.service-img-h6 .item .img-holder img {
    width: 100%;
    transform: scale(1.01);
    transition: all 3000ms ease;
}
.service-img-h6 .item:hover .img-holder img {
    transform: scale(1.4) rotate(2deg);
	transform: all 3000ms ease;
}
.service-img-h6 .item .img-holder .overlay-box {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    opacity: 0;
    color: #ffffff;
    text-align: center;
    background: rgba(255, 174, 0, 0.8);
    z-index: 3;
    -webkit-transition: all 700ms ease;
    -ms-transition: all 700ms ease;
    -o-transition: all 700ms ease;
    transition: all 700ms ease;
    -webkit-transform: translate(100%,-100%);
    -ms-transform: translate(0%,-100%);
    -o-transform: translate(0%,-100%);
    -moz-transform: translate(0%,-100%);
    transform: translate(0%,-100%);
}
.service-img-h6 .item:hover .img-holder .overlay-box {
    opacity: 0;
    -webkit-transform: translate(0%);
    -ms-transform: translate(0%);
    -o-transform: translate(0%);
    -moz-transform: translate(0%);
    transform: translate(0%);
}
.service-img-h6 .item .title-box {
    position: relative;
    padding: 25px;
    /* border: 1px solid #CCCCCC; */
    border-top: none;
    z-index: 1;
    /* -webkit-box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48); */
    -khtml-box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48);
    -moz-box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48);
    -ms-box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48);
    -o-box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48);
    /* box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48); */
    /* background-color: #d5aa6d; */
    /* background-image: -webkit-gradient(linear, left top, right top,from(#d5aa6d),to(#9b6f45)); */
    /* background-image: -webkit-linear-gradient(left,#d5aa6d,#9b6f45); */
    background-image: -moz-linear-gradient(left,#d5aa6d,#9b6f45);
    background-image: -ms-linear-gradient(left,#d5aa6d,#9b6f45);
    background-image: -o-linear-gradient(left,#d5aa6d,#9b6f45);
    /* -webkit-box-shadow: 0 4px 7px rgb(248, 105, 41); */
    -khtml-box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48);
    -moz-box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48);
    -ms-box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48);
    -o-box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48);
    /* box-shadow: 0 4px 7px rgba(255, 94, 20, 0.49); */
    /* background-color: #373636; */
    /* background-image: -webkit-gradient(linear, left top, right top,from(#f96a29),to(#d35417)); */
    /* background-image: -webkit-linear-gradient(left,#f96928,#d25215); */
    background-image: -moz-linear-gradient(left,#d5aa6d,#9b6f45);
    background-image: -ms-linear-gradient(left,#d5aa6d,#9b6f45);
    background-image: -o-linear-gradient(left,#d5aa6d,#9b6f45);
    background: #161616;
    padding-left: 93px;
}
.service-img-h6 .item .title-box:after {
	position: absolute;
	right: 0;
	bottom: 0;
	background: #FF0000;
	content: "";
	width: 100%;
	height: 0%;
	z-index: -1;
	transition: all 700ms ease;
}
.service-img-h6 .item:hover .title-box:after {
    height: 100%;
	transition: all 700ms ease;
}
.service-img-h6 .item:hover .title-box h2 a {
    color: #fff;
	transition: all 700ms ease;
}
.service-img-h6 .item .title-box .icon {
	
}
.service-img-h6 .item .title-box .icon span:after {
	position: absolute;
	left: 0;
	top: 0;
	background: #222;
	content: "";
	width: 0%;
	height: 100%;
	z-index: -1;
	transition: all 700ms ease;
}
.service-img-h6 .item:hover .title-box .icon span:after {
    width: 100%;
	transition: all 700ms ease;
}
.service-img-h6 .item .icon span {
    position: absolute;
    left: 0;
    top: 0px;
    width: 75px;
    height: 86px;
    line-height: 85px;
    background: #000000;
    text-align: center;
    z-index: 1;
    color: #fff;
    border-right: 1px dashed #ffffff;
}
.service-img-h6 .item .icon span:before {
    font-size: 40px;
    color: #FF0000;
}
.service-img-h6 .item .title-box h2 {
    font-size: 23px;
    font-weight: 600;
}
.service-img-h6 .item .title-box h2 a {
    color: #ffffff;
    transition: all 700ms ease;
}
.service-img-h6 .item .title-box h2 a:hover {
    color: #fff;
	transition: all 700ms ease;
}

.service-img-h6 .owl-nav{
	display: none;
}

.service-img-h6 .owl-dots {
    text-align: center;
    margin-top: 20px;
}

.service-img-h6 .owl-dot {
    position: relative;
    display: inline-block;
    height: 6px;
    width: 25px;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    margin-bottom: 12px;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
    margin: 0px 5px;
    -khtml-box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48);
    -moz-box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48);
    -ms-box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48);
    -o-box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48);
    background-image: -moz-linear-gradient(left,#d5aa6d,#9b6f45);
    background-image: -ms-linear-gradient(left,#d5aa6d,#9b6f45);
    background-image: -o-linear-gradient(left,#d5aa6d,#9b6f45);
    background-image: linear-gradient(left,#d5aa6d,#9b6f45);
    -webkit-box-shadow: 0 4px 7px rgb(248, 105, 41);
    -khtml-box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48);
    -moz-box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48);
    -ms-box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48);
    -o-box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48);
    box-shadow: 0 4px 7px rgba(255, 94, 20, 0.49);
    background-color: #FF0000;
    background-image: -webkit-gradient(linear, left top, right top,from(#f96a29),to(#d35417));
    background-image:
 -webkit-linear-gradient(left,#f96928,#d25215);
    background-image: -moz-linear-gradient(left,#d5aa6d,#9b6f45);
    background-image: -ms-linear-gradient(left,#d5aa6d,#9b6f45);
    background-image: -o-linear-gradient(left,#d5aa6d,#9b6f45);
}

.service-img-h6 .owl-dot.active,
.service-img-h6 .owl-dot:hover{
	height: 9px;
	background-color:#222222;
	top: 2px;
}

.service-img-h6 .item .img-holder .overlay-anim-box2 {
    display: block;
}

/*** 

====================================================================
	call to action two
====================================================================

 ***/

.call-to-action-h6-two {
    position: relative;
    background-attachment: fixed;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 120px 0px;
    text-align: center;
    padding-bottom: 100px;
}
.call-to-action-h6-two:before {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: #fd5d14;
    content: "";
}
.call-to-action-h6-two .text-box .title {
	margin-bottom: 30px;
}
.call-to-action-h6-two .text-box h2 {
    font-size: 48px;
    color: #FFFFFF;
    font-weight: 600;
    line-height: 72px;
    line-height: 55px;
    margin-bottom: 9px;
    color: #ffffff;
    font-size: 40px;
    font-weight: 700;
}
.call-to-action-h6-two .text-box p {
    font-size: 17px;
    color: #fefefe;
    line-height: 30px;
    margin-bottom: 35px;
    font-weight: 400;
}
.call-to-action-h6-two .text-box .btn-box {}
.call-to-action-h6-two .text-box .btn-box a {
    position: relative;
    background: #ffffff;
    transition: all 700ms ease;
    position: relative;
    display: inline-block;
    font-size: 18px;
    line-height: 30px;
    color: #FF0000;
    padding: 15px 40px;
    font-weight: 600;
    overflow: auto;
    /* border-radius: 30px; */
    z-index: 1;
    /* -webkit-box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48); */
    -khtml-box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48);
    -moz-box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48);
    -ms-box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48);
    -o-box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48);
    background-image: -moz-linear-gradient(left,#d5aa6d,#9b6f45);
    background-image: -ms-linear-gradient(left,#d5aa6d,#9b6f45);
    background-image: -o-linear-gradient(left,#d5aa6d,#9b6f45);
    background-image: linear-gradient(left,#d5aa6d,#9b6f45);
    -khtml-box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48);
    -moz-box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48);
    -ms-box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48);
    -o-box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48);
    background-image: -moz-linear-gradient(left,#d5aa6d,#9b6f45);
    background-image: -ms-linear-gradient(left,#d5aa6d,#9b6f45);
    background-image: -o-linear-gradient(left,#d5aa6d,#9b6f45);
    border-radius: 4px;
}
.call-to-action-h6-two .text-box .btn-box a:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    height: 100%;
    width: 100%;
    background: #000000;
    -webkit-transform: scale(0, 1);
    -ms-transform: scale(0, 1);
    transform: scale(0, 1);
    -webkit-transform-origin: bottom right;
    -ms-transform-origin: bottom right;
    transform-origin: bottom right;
    -webkit-transition: transform 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -moz-transition: transform 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -o-transition: transform 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
    transition: transform 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -webkit-transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -moz-transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -o-transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
    transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
    /* border-radius: 30px; */
    /* color: red; */
}
.call-to-action-h6-two .text-box .btn-box a:hover:before {
    -webkit-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    transform: scale(1, 1);
    -webkit-transform-origin: top left;
    -ms-transform-origin: top left;
    transform-origin: top left;
}


.call-to-action-h6-two .title-fill:before, .dark-bg-2 .title-fill:before {
    color: #FF9600;
}

.call-to-action-h6-two .title-fill:after {
    color: #fff;
}

/*** 

====================================================================
	project slider h6
====================================================================

***/

.project-slider-h6 {
    position: relative;
    padding: 100px 0px;
    background: #f4f4f4;
}
.project-slider-h6 .sec-title {
    text-align: center;
}
.project-slider-h6 .subtitle {
    margin-bottom: 15px;
}
.project-slider-h6 .sec-title h3 {
    font-size: 16px;
    /* color: #727272; */
    text-transform: uppercase;
    font-weight: 600;
    color: #222;
}
.project-slider-h6 .sec-title .title-two h2 {
    /* font-size: 36px; */
    /* color: #222222; */
    /* line-height: 30px; */
    /* margin-bottom: 32px; */
    /* line-height: 60px; */
    /* margin-bottom: 15px; */
    /* color: #001659; */
    /* font-size: 40px; */
    /* font-weight: 600; */
    /* text-transform: capitalize; */
    /* line-height: 50px; */
    /* font-size: 36px; */
}
.project-slider-h6 .sec-title .divider {
    display: none;
}
.project-slider-h6 .item {
    position: relative;
    overflow: hidden;
}
.project-slider-h6 .image-box {}
.project-slider-h6 .image-box img {
    border-radius: 10px;
}
.project-slider-h6 .text-box {
    position: relative;
    box-shadow: 2.15px 5.601px 18px 0px rgba(0, 0, 0, 0.19);
    padding: 50px;
    border-radius: 10px;
    margin-left: -170px;
    top: 60px;
    left: 0px;
    background: #fd5d14;
    background-image: none!important;
}
.project-slider-h6 .text-box h2 {
    position: relative;
    font-size: 23px;
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 15px;
}
.project-slider-h6 .text-box h2:before {
    position: absolute;
    left: 0;
    bottom: -23px;
    width: 52px;
    height: 2px;
    background: #FF0000;
    content: "";
}
.project-slider-h6 .text-box p {
    font-size: 17px;
    color: #ffffff;
    line-height: 1.7em;
    font-weight: 400;
    letter-spacing: 0px;
}
.project-slider-h6 .btn-box {}
.project-slider-h6 .btn-box a {
    position: relative;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    transition: all 700ms ease;
}
.project-slider-h6 .btn-box a:before {
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 2px;
	background: #ffffff;
	content: "";
}
.project-slider-h6 .btn-box a:after {
	position: absolute;
	left: 0;
	bottom: 0;
	width: 0%;
  	height: 2px;
	background: #FF0000;
	content: "";
	transition: all 700ms ease;
}
.project-slider-h6 .btn-box a:hover {
	color: #000000;
	transition: all 700ms ease;
}
.project-slider-h6 .btn-box a:hover:after {
	width: 100%;
	transition: all 700ms ease;
}

.project-slider-h6 .client-thumb-outer {
    position: relative;
    max-width: 355px;
    margin: 0 auto;
    overflow: hidden;
    padding-top: 50px;
}

.project-slider-h6 .client-thumb-outer .owl-item.active .thumb-item .thumb-box{
	z-index:999;
}

.project-slider-h6 .client-thumb-outer .client-thumbs-carousel {
    position: relative;
    max-width: 100px;
    margin: 0 auto;
    text-align: center;
}

.project-slider-h6 .client-thumb-outer .client-thumbs-carousel .owl-stage-outer{
	overflow:visible;
}

.project-slider-h6 .client-thumb-outer .thumb-item .thumb-box {
    width: 100px;
    height: 100px;
    cursor: pointer;
    margin: 0 auto;
    z-index: -1;
    overflow: hidden;
    /* border-radius: 50%; */
}

.project-slider-h6 .client-thumb-outer .thumb-item .thumb-box:before {
    position: absolute;
    content: '';
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    display: block;
    z-index: 1;
    background-color: rgba(0, 0, 0, 0.62);
    /* background-color: #FF0000; */
    margin-bottom: 12px;
    /* -webkit-transition: all 300ms ease; */
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    /* transition: all 300ms ease; */
    /* margin: 0px 5px; */
    /* -webkit-box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48); */
    -khtml-box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48);
    -moz-box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48);
    -ms-box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48);
    -o-box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48);
    /* box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48); */
    /* background-color: #d5aa6d; */
    /* background-image: -webkit-gradient(linear, left top, right top,from(#d5aa6d),to(#9b6f45)); */
    /* background-image: -webkit-linear-gradient(left,#d5aa6d,#9b6f45); */
    background-image: -moz-linear-gradient(left,#d5aa6d,#9b6f45);
    background-image: -ms-linear-gradient(left,#d5aa6d,#9b6f45);
    background-image: -o-linear-gradient(left,#d5aa6d,#9b6f45);
    background-image: linear-gradient(left,#d5aa6d,#9b6f45);
}

.project-slider-h6 .client-thumb-outer .owl-item.active .thumb-box:before{
	opacity:0;
}

.project-slider-h6 .client-thumb-outer .client-thumbs-carousel .thumb-item img{
	overflow:hidden;
	width:100%;
	height:100%;
	display:block;
}

.project-slider-h6 .owl-item.active .thumb-content{
	opacity:1;
}

.project-slider-h6 .owl-nav{
    position: absolute;
   	left:50%;
    bottom:-50px;
    width: 100%;
    max-width: 400px;
    margin-left: -200px;
}

.project-slider-h6 .owl-nav .owl-prev,
.project-slider-h6 .owl-nav .owl-next{
	position:absolute;
	display:inline-block;
	color:#1e1e1e;
	font-size:20px;
	-webkit-transition:all 300ms ease;
	-ms-transition:all 300ms ease;
	-o-transition:all 300ms ease;
	-moz-transition:all 300ms ease;
	transition:all 300ms ease;	
}

.owl-nav-none .owl-nav
  {
	display: none;
}

.project-slider-h6 .owl-nav .owl-prev,
.project-slider-h6 .owl-nav .owl-next{
	color:#ffffff;	
}

.project-slider-h6 .owl-nav .owl-prev {
    left: -60px;
    top: 25px;
    width: 48px;
    height: 48px;
    text-align: center;
    line-height: 48px;
    /* -webkit-box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48); */
    -khtml-box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48);
    -moz-box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48);
    -ms-box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48);
    -o-box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48);
    /* box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48); */
    background-color: #fd5d13;
    /* background-image: -webkit-gradient(linear, left top, right top,from(#d5aa6d),to(#9b6f45)); */
    /* background-image: -webkit-linear-gradient(left,#d5aa6d,#9b6f45); */
    background-image: -moz-linear-gradient(left,#d5aa6d,#9b6f45);
    background-image: -ms-linear-gradient(left,#d5aa6d,#9b6f45);
    background-image: -o-linear-gradient(left,#d5aa6d,#9b6f45);
    background-image: linear-gradient(left,#d5aa6d,#9b6f45);
    /* -webkit-box-shadow: 0 4px 7px rgb(248, 105, 41); */
    -khtml-box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48);
    -moz-box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48);
    -ms-box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48);
    -o-box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48);
    /* box-shadow: 0 4px 7px rgba(255, 94, 20, 0.49); */
    /* background-color: #FF0000; */
    /* background-image: -webkit-gradient(linear, left top, right top,from(#f96a29),to(#d35417)); */
    /* background-image: -webkit-linear-gradient(left,#f96928,#d25215); */
    background-image: -moz-linear-gradient(left,#d5aa6d,#9b6f45);
    background-image: -ms-linear-gradient(left,#d5aa6d,#9b6f45);
    background-image: -o-linear-gradient(left,#d5aa6d,#9b6f45);
    border-radius: 4px;
}

.project-slider-h6 .owl-nav .owl-next {
    right: -60px;
    top: 25px;
    width: 48px;
    height: 48px;
    text-align: center;
    line-height: 48px;
    /* -webkit-box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48); */
    -khtml-box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48);
    -moz-box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48);
    -ms-box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48);
    -o-box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48);
    /* box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48); */
    /* background-color: #d5aa6d; */
    /* background-image: -webkit-gradient(linear, left top, right top,from(#d5aa6d),to(#9b6f45)); */
    /* background-image: -webkit-linear-gradient(left,#d5aa6d,#9b6f45); */
    background-image: -moz-linear-gradient(left,#d5aa6d,#9b6f45);
    background-image: -ms-linear-gradient(left,#d5aa6d,#9b6f45);
    background-image: -o-linear-gradient(left,#d5aa6d,#9b6f45);
    background-image: linear-gradient(left,#d5aa6d,#9b6f45);
    /* -webkit-box-shadow: 0 4px 7px rgb(248, 105, 41); */
    -khtml-box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48);
    -moz-box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48);
    -ms-box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48);
    -o-box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48);
    /* box-shadow: 0 4px 7px rgba(255, 94, 20, 0.49); */
    background-color: #FF0000;
    /* background-image: -webkit-gradient(linear, left top, right top,from(#f96a29),to(#d35417)); */
    /* background-image: -webkit-linear-gradient(left,#f96928,#d25215); */
    background-image: -moz-linear-gradient(left,#d5aa6d,#9b6f45);
    background-image: -ms-linear-gradient(left,#d5aa6d,#9b6f45);
    background-image: -o-linear-gradient(left,#d5aa6d,#9b6f45);
    border-radius: 4px;
}

.project-slider-h6 .owl-dots{
	display:none;
}

.project-slider-h6 .owl-nav .owl-prev, .project-slider-h6 .owl-nav .owl-next {
    color: #ffffff;
}

.project-slider-h6 .owl-nav .owl-next:after {
    position: absolute;
    content: '';
    left: 0px;
    top: 0px;
    width: 0px;
    height: 100%;
    display: block;
    opacity: 0;
	background: #FF0000;
    transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    z-index: -1;
}

.project-slider-h6 .owl-nav .owl-next:hover:after {
    width: 100%;
    opacity: 1;
}

.project-slider-h6 .owl-nav .owl-prev:after {
    position: absolute;
    content: '';
    right: 0px;
    top: 0px;
    width: 0px;
    height: 100%;
    display: block;
    opacity: 0;
	background: #FF0000;
    transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    z-index: -1;
}

.project-slider-h6 .owl-nav .owl-prev:hover:after {
    width: 100%;
    opacity: 1;
}

.project-slider-h6 .owl-nav .owl-prev:hover, .project-slider-h6 .owl-nav .owl-next:hover {
	color: #fff;
	transition: all 500ms ease;
	background: #010101;
	border-radius: 4px;
}

.project-slider-h6 .owl-carousel .owl-nav.disabled, .project-slider-h6 .owl-carousel .owl-dots.disabled {
    display: block;
}


/*** 

====================================================================
	testimonials h6
====================================================================

***/


.testimonials-h6 {
    position: relative;
    padding: 100px 0px 0px 0px;
    background: #faf7f7;
    background-position: right;
}
.testimonials-h6 .image-box {
    position: relative;
    left: -175px;
    padding-bottom: 0px;
    width: 700px;
}
.testimonials-h6 .inner-box h3 {
    font-size: 17px;
    margin-bottom: 15px;
    text-transform: uppercase;
    font-weight: 600;
    color: #222;
}
.testimonials-h6 .inner-box h2 {
    color: #001659;
    font-weight: 700;
    text-transform: capitalize;
    /* line-height: 50px; */
    font-size: 40px;
}
.testimonials-h6 .inner-box .divider {
    margin-bottom: 35px;
}
.testimonials-h6 .inner-box .divider img {
    display: none;
}
.testimonials-h6 .inner-box .item {}
.testimonials-h6 .inner-box .item .title-box {
    position: relative;
}
.testimonials-h6 .inner-box .item .image {
    position: absolute;
    left: 0;
    top: 0;
    width: 80px;
}
.testimonials-h6 .inner-box .item h4 {
    font-size: 17px;
    color: #2a2a2a;
    font-weight: 600;
    padding-left: 100px;
    padding-top: 15px;
    margin-bottom: 6px;
}
.testimonials-h6 .inner-box .item h5 {
    font-size: 12px;
    color: #797979;
    padding-left: 100px;
    font-weight: 600;
    text-transform: uppercase;
}
.testimonials-h6 .inner-box .item p {
    font-size: 17px;
    color: #262626;
    margin-top: 54px;
    line-height: 30px;
    margin-bottom: 30px;
    font-style: italic;
}
.testimonials-h6 .owl-nav {}
.testimonials-h6 .owl-nav .owl-prev {
	position: relative;
	width: 48px;
	height: 48px;
	/* border: 1px solid #fff; */
	text-align: center;
	line-height: 48px;
	font-size: 20px;
	color: #fff;
	display: inline-block;
	margin-right: 15px;
	/* transition: all 700ms ease; */
	/* -webkit-box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48); */
	-khtml-box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48);
	-moz-box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48);
	-ms-box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48);
	-o-box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48);
	/* box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48); */
	background-color: #FF0000;
	/* background-image: -webkit-gradient(linear, left top, right top,from(#d5aa6d),to(#9b6f45)); */
	/* background-image: -webkit-linear-gradient(left,#d5aa6d,#9b6f45); */
	background-image: -moz-linear-gradient(left,#d5aa6d,#9b6f45);
	background-image: -ms-linear-gradient(left,#d5aa6d,#9b6f45);
	background-image: -o-linear-gradient(left,#d5aa6d,#9b6f45);
	background-image: linear-gradient(left,#d5aa6d,#9b6f45);
	/* -webkit-box-shadow: 0 4px 7px rgb(248, 105, 41); */
	-khtml-box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48);
	-moz-box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48);
	-ms-box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48);
	-o-box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48);
	/* box-shadow: 0 4px 7px rgba(255, 94, 20, 0.49); */
	/* background-color: #FF0000; */
	/* background-image: -webkit-gradient(linear, left top, right top,from(#f96a29),to(#d35417)); */
	/* background-image: -webkit-linear-gradient(left,#f96928,#d25215); */
	background-image: -moz-linear-gradient(left,#d5aa6d,#9b6f45);
	background-image: -ms-linear-gradient(left,#d5aa6d,#9b6f45);
	background-image: -o-linear-gradient(left,#d5aa6d,#9b6f45);
	border-radius: 4px;
}
.testimonials-h6 .owl-nav .owl-next {
    position: relative;
    width: 48px;
    height: 48px;
    /* border: 1px solid #fff; */
    text-align: center;
    line-height: 48px;
    font-size: 20px;
    color: #fff;
    display: inline-block;
    /* transition: all 700ms ease; */
    /* -webkit-box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48); */
    -khtml-box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48);
    -moz-box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48);
    -ms-box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48);
    -o-box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48);
    /* box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48); */
    /* background-color: #d5aa6d; */
    /* background-image: -webkit-gradient(linear, left top, right top,from(#d5aa6d),to(#9b6f45)); */
    /* background-image: -webkit-linear-gradient(left,#d5aa6d,#9b6f45); */
    background-image: -moz-linear-gradient(left,#d5aa6d,#9b6f45);
    background-image: -ms-linear-gradient(left,#d5aa6d,#9b6f45);
    background-image: -o-linear-gradient(left,#d5aa6d,#9b6f45);
    background-image: linear-gradient(left,#d5aa6d,#9b6f45);
    /* -webkit-box-shadow: 0 4px 7px rgb(248, 105, 41); */
    -khtml-box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48);
    -moz-box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48);
    -ms-box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48);
    -o-box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48);

    /* box-shadow: 0 4px 7px rgba(255, 94, 20, 0.49); */
    background-color: #FF0000;
    /* background-image: -webkit-gradient(linear, left top, right top,from(#f96a29),to(#d35417)); */
    /* background-image: -webkit-linear-gradient(left,#f96928,#d25215); */
    background-image: -moz-linear-gradient(left,#d5aa6d,#9b6f45);
    background-image: -ms-linear-gradient(left,#d5aa6d,#9b6f45);
    background-image: -o-linear-gradient(left,#d5aa6d,#9b6f45);
    border-radius: 4px;
}
.testimonials-h6 .owl-nav .owl-next:after {
    position: absolute;
    content: '';
    left: 0px;
    top: 0px;
    width: 0px;
    height: 100%;
    display: block;
    opacity: 0;
	background: #FF0000;
    transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    z-index: -1;
}

.testimonials-h6 .owl-nav .owl-next:hover:after {
    width: 100%;
    opacity: 1;
}

.testimonials-h6 .owl-nav .owl-prev:after {
    position: absolute;
    content: '';
    right: 0px;
    top: 0px;
    width: 0px;
    height: 100%;
    display: block;
    opacity: 0;
	background: #FF0000;
    transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    z-index: -1;
}

.testimonials-h6 .owl-nav .owl-prev:hover:after {
    width: 100%;
    opacity: 1;
}

.testimonials-h6 .owl-nav .owl-prev:hover, .testimonials-h6 .owl-nav .owl-next:hover {
	/* border: 1px solid #FF0000; */
	color: #fff;
	transition: all 500ms ease;
	background: #000;
}


/*** 

====================================================================
	team-h6
====================================================================

***/

.team-h6 {
	position: relative;
	padding: 100px 0px 64px;
}
.team-h6 .sec-title {
    text-align: center;
}
.team-h6 .sec-title .subtitle {
    margin-bottom: 15px;
}
.team-h6 .sec-title h3 {
    font-size: 16px;
    color: #727272;
    text-transform: uppercase;
    font-weight: 600;
    color: #222;
}

.team-h6 .sec-title .divider {
	
	display:none;
}
.team-h6 .item {
    position: relative;
    overflow: hidden;
}

.team-h6 .item {
    overflow: hidden;
    background: #fffcfc;
    /* padding-bottom: 35px; */
    -webkit-box-shadow: 0 4px 7px rgba(192, 192, 192, 0.48);
    -khtml-box-shadow: 0 4px 7px rgba(192, 192, 192, 0.48);
    -moz-box-shadow: 0 4px 7px rgba(192, 192, 192, 0.48);
    -ms-box-shadow: 0 4px 7px rgba(192, 192, 192, 0.48);
    -o-box-shadow: 0 4px 7px rgba(192, 192, 192, 0.48);
    box-shadow: 0 4px 7px rgba(192, 192, 192, 0.48);
    -webkit-transition: all 220ms linear 0ms;
    -khtml-transition: all 220ms linear 0ms;
    -moz-transition: all 220ms linear 0ms;
    -ms-transition: all 220ms linear 0ms;
    -o-transition: all 220ms linear 0ms;
    transition: all 220ms linear 0ms;
    box-shadow: 2.15px 5.601px 18px 0px rgba(0, 0, 0, 0.19);
    margin-bottom: 30px;
    /* border-radius: 10px; */
}
.team-h6 .item .image-box {
    position: relative;
    transition: all 700ms ease;
    /* margin: 0px 5px; */
}
.team-h6 .item .image-box img {
	transition: all 700ms ease;
	border-radius: 10px 10px 0px 0px;
}
.team-h6 .item .image-box .social-links {
    position: absolute;
    bottom: 0;
    left: 0;
    background: #222222;
    text-align: center;
    padding: 15px 0px 15px 0px;
    opacity: 0;
    width: 100%;
	transition: all 700ms ease;
}
.team-h6 .item .image-box .social-links li {
    display: inline-block;
}
.team-h6 .item .image-box .social-links li a {
    font-size: 20px;
    color: #fff;
    padding: 14px 12px;
    transition: all 700ms ease;
}
.team-h6 .item .image-box .social-links li a:hover {
    color: #FF0000;
	transition: all 700ms ease;
}
.team-h6 .item .title-box {
    text-align: center;
    padding-bottom: 20px;
}
.team-h6 .item .title-box h3 {
    font-size: 20px;
    color: #222222;
    font-weight: 600;
    margin-top: 20px;
    margin-bottom: 10px;
}
.team-h6 .item .title-box h3 a:hover {
    color: #FF0000;
	transition: all 700ms ease;
}
.team-h6 .item .title-box h3 a {
    color: #222222;
}
.team-h6 .item .title-box h4 {
    font-size: 12px;
    color: #6d6d6d;
    font-weight: 500;
    text-transform: uppercase;
}

.team-h6 .item:hover .image-box .social-links {
	opacity: 1;
	bottom: 50px;
	transition: all 700ms ease;
}

.team-h6 .item:hover .image-box img {
    box-shadow: 0px 0px 20px -4px rgba(0, 0, 0, 0.19);
    /* border-radius: 10px; */
    transition: all 700ms ease;
}

.team-h6 .owl-nav{
	display: none;
}

.team-h6 .owl-dots {
    text-align: center;
    margin-top: 50px;
}

.team-h6 .owl-dot {
    position: relative;
    display: inline-block;
    height: 22px;
    width: 5px;
    background-color: #FF0000;
    margin-bottom: 12px;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
    margin: 0px 5px;
    background-color: #FF0000;
    margin-bottom: 12px;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
    margin: 0px 5px;
    -webkit-box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48);
    -khtml-box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48);
    -moz-box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48);
    -ms-box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48);
    -o-box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48);
    box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48);
    background-color: #d5aa6d;
    background-image: -webkit-gradient(linear, left top, right top,from(#d5aa6d),to(#9b6f45));
    background-image: -webkit-linear-gradient(left,#d5aa6d,#9b6f45);
    background-image: -moz-linear-gradient(left,#d5aa6d,#9b6f45);
    background-image: -ms-linear-gradient(left,#d5aa6d,#9b6f45);
    background-image: -o-linear-gradient(left,#d5aa6d,#9b6f45);
    background-image: linear-gradient(left,#d5aa6d,#9b6f45);
    -webkit-box-shadow: 0 4px 7px rgb(248, 105, 41);
    -khtml-box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48);
    -moz-box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48);
    -ms-box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48);
    -o-box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48);
    box-shadow: 0 4px 7px rgba(255, 94, 20, 0.49);
    background-color: #FF0000;
    background-image: -webkit-gradient(linear, left top, right top,from(#f96a29),to(#d35417));
    background-image: -webkit-linear-gradient(left,#f96928,#d25215);
    background-image: -moz-linear-gradient(left,#d5aa6d,#9b6f45);
    background-image: -ms-linear-gradient(left,#d5aa6d,#9b6f45);
    background-image: -o-linear-gradient(left,#d5aa6d,#9b6f45);
}

.team-h6 .owl-dot.active,
.team-h6 .owl-dot:hover{
	height: 9px;
	background-color:#222222;
	top: 2px;
}

.team-h6 .owl-carousel .owl-dots.disabled {
    display: block;
}


/*** 

====================================================================
	team-h6
====================================================================

***/

.latest-news-h6 {
    position: relative;
    padding: 100px 0px 20px 0px;
    background: #fcfcfc;
}
.latest-news-h6 .sec-title {
    text-align: center;
}
.latest-news-h6 .sec-title .subtitle {
    margin-bottom: 10px;
}
.latest-news-h6 .sec-title h3 {
    font-size: 16px;
    /* color: #727272; */
    text-transform: uppercase;
    font-weight: 600;
    color: #222;
}
.latest-news-h6 .sec-title .title-two h2 {
    /* font-size: 36px; */
    /* color: #222222; */
    /* line-height: 30px; */
    /* margin-bottom: 32px; */
    /* line-height: 60px; */
    margin-bottom: 15px;
    color: #001659;
    /* font-size: 40px; */
    font-weight: 700;
    text-transform: capitalize;
    /* line-height: 50px; */
    font-size: 40px;
    line-height: 1.3em;
}
.latest-news-h6 .sec-title .divider {
    display: none;
}
.latest-news-h6 .item {
    position: relative;
    overflow: hidden;
}
.latest-news-h6 .inner-box {}
.latest-news-h6 .inner-box .image-box {}
.latest-news-h6 .inner-box .image-box .image {
    margin-right: 70px;
}
.latest-news-h6 .inner-box .image-box .image a {}
.latest-news-h6 .inner-box .image-box .image a img {border-radius: 10px;}

.latest-news-h6 .inner-box .lower-content {
    position: relative;
    top: -34px;
    right: 0;
    box-shadow: 2.15px 5.601px 18px 0px rgba(0, 0, 0, 0.07);
    padding: 30px;
    background: #ffffff;
    margin-left: 14px;
    margin-right: 15px;
    border-bottom: 2px solid #c0c0c0;
}
.latest-news-h6 .inner-box .lower-content span {
    font-size: 16px;
    color: #FF0000;
    /* color: #ffffff; */
    /* letter-spacing: 1px; */
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    color: #001659;
    font-size: 13px;
    padding-left: 0px;
}
.latest-news-h6 .inner-box .lower-content i {
    font-size: 14px;
    color: #FF0000;
    margin-right: 6px;
}
.latest-news-h6 .inner-box .lower-content h3 {
    margin-top: 12px;
    line-height: 26px;
}
.latest-news-h6 .inner-box .lower-content h3 a {
    font-size: 23px;
    color: #000000;
    font-weight: 600;
    line-height: 30px;
    transition: all 700ms ease;
}
.latest-news-h6 .inner-box .lower-content h3 a:hover {
    color: #FF0000;
	transition: all 700ms ease;
}
.latest-news-h6 .inner-box .lower-content span.author {
    margin-left: 30px;
}
.latest-news-h6 .inner-box .lower-content .text {}
.latest-news-h6 .inner-box .lower-content .link-box {}
.latest-news-h6 .inner-box .lower-content .link-box a {}



.latest-news-h6 .owl-nav{
	display: none;
}

.latest-news-h6 .owl-dots {
    text-align: center;
    margin-top: 0;
    display: none!important;
}

.latest-news-h6 .owl-dot {
    position: relative;
    display: inline-block;
    height: 6px;
    width: 25px;

    background-color: #FF0000;
    margin-bottom: 12px;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
    margin: 0px 5px;
    -webkit-box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48);
    -khtml-box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48);
    -moz-box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48);
    -ms-box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48);
    -o-box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48);
    box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48);
    background-color: #d5aa6d;
    background-image: -webkit-gradient(linear, left top, right top,from(#d5aa6d),to(#9b6f45));
    background-image: -webkit-linear-gradient(left,#d5aa6d,#9b6f45);
    background-image: -moz-linear-gradient(left,#d5aa6d,#9b6f45);
    background-image: -ms-linear-gradient(left,#d5aa6d,#9b6f45);
    background-image: -o-linear-gradient(left,#d5aa6d,#9b6f45);
    background-image: linear-gradient(left,#d5aa6d,#9b6f45);
    -webkit-box-shadow: 0 4px 7px rgb(248, 105, 41);
    -khtml-box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48);
    -moz-box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48);
    -ms-box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48);
    -o-box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48);
    box-shadow: 0 4px 7px rgba(255, 94, 20, 0.49);
    background-color: #FF0000;
    background-image: -webkit-gradient(linear, left top, right top,from(#f96a29),to(#d35417));
    background-image: -webkit-linear-gradient(left,#f96928,#d25215);
    background-image: -moz-linear-gradient(left,#d5aa6d,#9b6f45);
    background-image: -ms-linear-gradient(left,#d5aa6d,#9b6f45);
    background-image: -o-linear-gradient(left,#d5aa6d,#9b6f45);
}

.latest-news-h6 .owl-dot.active,
.latest-news-h6 .owl-dot:hover{
	height: 9px;
	background-color:#222222;
	top: 2px;
}

.latest-news-h6 .owl-carousel .owl-dots.disabled {
    display: block;
}

/*** 

====================================================================
	team-h6
====================================================================

***/

.clients-h6 {
    position: relative;
    top: 0px;
    z-index: 1;
    /* padding: 120px 0px; */
}
.clients-h6 .sponsors-outer {
    position: relative;
    padding: 80px 0px 80px 0px;
    /* border-radius: 10px; */
    background-image: none!important;
}
.clients-h6 .sponsors-outer ul {}
.clients-h6 .sponsors-outer ul li {}
.clients-h6 .sponsors-outer ul li a {}
.clients-h6 .sponsors-outer ul li a img {
    width: 153px;
    margin: 0 auto;
}



/*** 

====================================================================
	footer-h6
====================================================================

***/

.footer-h6 {
    position: relative;
    padding: 140px 0px 90px 0px;
    background-attachment: fixed;
}
.footer-h6:before {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / 96%);
    content: "";
}
.footer-h6 .widgets-section {}
.footer-h6 .widgets-section .about-widget {}
.footer-h6 .widgets-section .about-widget .logo {}
.footer-h6 .widgets-section .about-widget .logo img {}
.footer-h6 .widgets-section .about-widget .text {
    margin-top: 20px;
}
.footer-h6 .widgets-section .about-widget .text p {
    font-size: 16px;
    color: #ffffff;
    line-height: 30px;
    margin-bottom: 30px;
}
.footer-h6 .widgets-section .about-widget .social-links {}
.footer-h6 .widgets-section .about-widget .social-links li {
    display: inline-block;
    /* margin-right: 9px; */
    /* padding: 10px 10px; */
    /* background: #FF0000; */
    height: 40px;
    width: 40px;
    color: #fff;
    /* -webkit-box-shadow: 0 4px 7px rgb(248, 105, 41); */
    -khtml-box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48);
    -moz-box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48);
    -ms-box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48);
    -o-box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48);
    /* box-shadow: 0 4px 7px rgba(255, 94, 20, 0.49); */
    /* background-color: #FF0000; */
    /* background-image: -webkit-gradient(linear, left top, right top,from(#f96a29),to(#d35417)); */
    /* background-image: -webkit-linear-gradient(left,#f96928,#d25215); */
    background-image: -moz-linear-gradient(left,#d5aa6d,#9b6f45);
    background-image: -ms-linear-gradient(left,#d5aa6d,#9b6f45);
    background-image: -o-linear-gradient(left,#d5aa6d,#9b6f45);
    background-image: linear-gradient(left,#d5aa6d,#9b6f45);
}
.footer-h6 .widgets-section .about-widget .social-links li a {
    color: #fff;
    font-size: 17px;
    color: #fff;
    height: 34px;
    width: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #272727;
    -webkit-border-radius: 34px;
    -khtml-border-radius: 34px;
    -moz-border-radius: 34px;
    -ms-border-radius: 34px;
    -o-border-radius: 34px;
    /* border-radius: 34px; */
}
.footer-h6 .widgets-section .about-widget .social-links li a span {
    font-size: 16px;
    color: #ffffff;
    transition: all 700ms ease;
}
.footer-h6 .widgets-section .about-widget .social-links li:hover a span {
    color: #FF0000;
    transition: all 700ms ease;
    /* background: red; */
}
.footer-h6 .services-widget {}
.footer-h6 .services-widget h4 {
    position: relative;
    font-size: 20px;
    color: #FFFFFF;
    margin-bottom: 62px;
}
.footer-h6 .services-widget h4:before {
    position: absolute;
    left: 0;
    bottom: -15px;
    width: 55px;
    height: 2px;
    background: #FF0000;
    content: "";
}
.footer-h6 .services-widget .list {
    margin-top: -10px;
}
.footer-h6 .services-widget .list li {}
.footer-h6 .services-widget .list li  {
    font-size: 16px;
    color: #FFFFFF;
    line-height: 36px;
	transition: all 700ms ease;
}

.footer-h6 .extra-widget {}
.footer-h6 .extra-widget h4 {
    position: relative;
    font-size: 20px;
    color: #ffffff;
    margin-bottom: 40px;
    font-size: 23px;
    /* color: #001659; */
    font-weight: 600;
}
.footer-h6 .extra-widget h4:before {
    position: absolute;
    left: 0;
    bottom: -15px;
    width: 55px;
    height: 2px;
    background: #3d3d3d;
    content: "";
}
.footer-h6 .extra-widget .list {
	margin-top: -10px;
}
.footer-h6 .extra-widget .list li {}
.footer-h6 .extra-widget .list li{
    font-size: 16px;
    color: #ffffff;
    line-height: 36px;
    transition: all 700ms ease;
}
.footer-h6 .extra-widget .list li:before {
    content: "\f0da";
    font-family: 'FontAwesome';
    font-weight: normal;
    font-size: 14px;
    color: #ffffff;
    margin-right: 20px;
}
.footer-h6 .extra-widget .list li:hover a {
    color: #FF0000;
	transition: all 700ms ease;
}
.footer-h6 .extra-widget .list li a span {
    font-size: 14px;
    color: #BBBBBB;
    margin-right: 20px;
}
.footer-h6 .extra-widget .list li:hover a span {
    color: #FF0000;
	transition: all 700ms ease;
}


.footer-h6 .gallery-widget {}
.footer-h6 .gallery-widget h4 {
    position: relative;
    font-size: 20px;
    color: #ffffff;
    margin-bottom: 40px;
    font-size: 23px;
    /* color: #001659; */
    font-weight: 600;
}
.footer-h6 .gallery-widget h4:before {
    position: absolute;
    left: 0;
    bottom: -15px;
    width: 55px;
    height: 2px;
    background: #454545;
    content: "";
}
.footer-h6 .gallery-widget ul {}
.footer-h6 .gallery-widget ul li {
    overflow: hidden;
    display: inline-block;
    margin-bottom: -3px;
}
.footer-h6 .gallery-widget ul li .image {
    position: relative;
    margin-bottom: 2px!important;
    margin-right: 2px;
    /* border-radius: 10px; */
}
.footer-h6 .gallery-widget ul li a {}

.footer-h6 .gallery-widget ul li .image .overlay-box {
    position: absolute;
    top: 8px;
    left: 8px;
    right: 8px;
    bottom: 8px;
    background: #FF0000;
    z-index: 3;
    opacity: 0;
    transform: scale(0) rotate(0deg);
    transition: all 700ms ease 300ms;
}
.footer-h6 .gallery-widget ul li .image:hover .overlay-box{
    opacity: 1; 
    transform:scale(1.0) rotate(0deg);	
    transition: all 700ms ease 200ms;
	
}
.footer-h6 .gallery-widget ul li .image .overlay-box .box{}
.footer-h6 .gallery-widget ul li .image .overlay-box .box .link {
    position: absolute;
    right: 5px;
    top: 20px;
}
.footer-h6 .gallery-widget ul li .image .overlay-box .box .link a span:before {
    color: #fff;
    font-size: 25px;
    transition: all 500ms ease;
    text-align: center;
    padding: 15px 15px;
    border-radius: 54px;
}
.footer-h6 .gallery-widget ul li .image .overlay-box .box .link a:hover span:before{
    /*color: #e9212e;  */  
}

.footer-h6 .gallery-widget ul li .image .overlay-box .box .link a:hover span:before{
    /*color: #e9212e;  */  
}

.footer-h6 .gallery-widget ul li .image:hover .overlay-box:before{
	width: 100%;
	left: 0;
	opacity: 0.75;
}
.footer-h6 .gallery-widget ul li .image a {
    display: table;
    width: 100%;
    height: 100%;
    border-radius: 4px;
}
.footer-h6 .gallery-widget ul li .image span {
    display: table-cell;
    vertical-align: middle;
    text-align: center;
    color: #fff;
    font-size: 30px;
}

.footer-h6 .title-fill:before, .dark-bg-2 .title-fill:before {
    color: #FF9600;
}

.footer-h6 .title-fill:after {
    color: #fff!important;
}



/*** 

====================================================================
	footer-bottom-h6
====================================================================

***/

.footer-bottom-h6 {
    position: relative;
    padding: 50px 0px;
    background: #000000;
}
.footer-bottom-h6 .copyright-text {
    font-size: 16px;
    color: #FFFFFF;
}
.footer-bottom-h6 .copyright-text a {
    color: #FF0000;
}
.footer-bottom-h6 .links {
	float: right;
} 
.footer-bottom-h6 .links ul {} 
.footer-bottom-h6 .links ul li {
    position: relative;
    display: inline-block;
    margin-right: 20px;
}
.footer-bottom-h6
 .links ul li:before {
    position: absolute;
    right: -12px;
    bottom: 8px;
    width: 1px;
    height: 10px;
    background: #fff;
    content: "";
}
.footer-bottom-h6 .links ul li a {
    font-size: 16px;
    color: #FFFFFF;
    transition: all 700ms ease;
}
.footer-bottom-h6 .links ul li a:hover {
    color: #FF0000;
	transition: all 700ms ease;
}
.footer-bottom-h6 .links ul li:last-child:before {
	display: none;
}



/*** 

====================================================================
	banner section style h7
====================================================================

 ***/

.banner-section.style-h7 {
    position: relative;
    clear: both;
    z-index: 1;
    margin-bottom: -100px;
}

.banner-section.style-h7 .slide-item {
	position: relative;
}

.banner-section.style-h7 .slide-item:before {
    position: absolute;
    left: 0;
    bottom: 2px;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.2);
    content: "";
}

.banner-section.style-h7 .banner-carousel .content-box .inner {
    margin-right: 0;
    padding: 200px 0px 320px 0px;
}

.banner-section.style-h7 .content-box {
    width: 100%;
    float: unset;
}

.banner-section.style-h7 .banner-carousel .link-box .theme-btn {
    float: unset;
}

.banner-section.style-h7 .title {
    font-size: 18px;
    color: #fff;
    margin-bottom: 20px;
}

.banner-section.style-h7 .banner-carousel .content-box h2 {
    font-size: 72px;
    line-height: 96px;
	font-weight: 700;
}

.banner-section.style-h7 .banner-carousel .theme-btn.btn-style-two {
    color: #fff;
    background: #222222;
    /* border-bottom-right-radius: 30px; */
    /* border-bottom-left-radius: 0px; */
    /* border-top-right-radius: 30px; */
    /* border-top-left-radius: 0px; */
    transition: all 700ms ease;
    border: none;
    padding: 15px 45px;
    font-size: 16px;
    text-transform: unset;
    z-index: 1;
    overflow: hidden;
    margin-right: 15px;
}

.banner-section.style-h7 .banner-carousel .theme-btn.btn-style-two:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    height: 100%;
    width: 100%;
    background: #fff;
    -webkit-transform: scale(0, 1);
    -ms-transform: scale(0, 1);
    transform: scale(0, 1);
    -webkit-transform-origin: bottom right;
    -ms-transform-origin: bottom right;
    transform-origin: bottom right;
    -webkit-transition: transform 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -moz-transition: transform 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -o-transition: transform 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
    transition: transform 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -webkit-transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -moz-transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -o-transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
    transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
}
.banner-section.style-h7 .banner-carousel .theme-btn.btn-style-two:hover:before {
    -webkit-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    transform: scale(1, 1);
    -webkit-transform-origin: top left;
    -ms-transform-origin: top left;
    transform-origin: top left;
}
.banner-section.style-h7 .banner-carousel .theme-btn.btn-style-two:hover {
    color: #222;
    transition: all 700ms ease;
}
.banner-section.style-h7 .banner-carousel .theme-btn.btn-style-three {
    color: #fff;
    background: #FF0000;
    transition: all 700ms ease;
    border: none;
    padding: 15px 45px;
    z-index: 1;
    overflow: hidden;
    text-transform: capitalize;
}
.banner-section.style-h7 .banner-carousel .theme-btn.btn-style-three:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    height: 100%;
    width: 100%;
    background: #fff;
    -webkit-transform: scale(0, 1);
    -ms-transform: scale(0, 1);
    transform: scale(0, 1);
    -webkit-transform-origin: bottom right;
    -ms-transform-origin: bottom right;
    transform-origin: bottom right;
    -webkit-transition: transform 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -moz-transition: transform 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -o-transition: transform 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
    transition: transform 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -webkit-transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -moz-transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -o-transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
    transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
}
.banner-section.style-h7 .banner-carousel .theme-btn.btn-style-three:hover:before {
    -webkit-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    transform: scale(1, 1);
    -webkit-transform-origin: top left;
    -ms-transform-origin: top left;
    transform-origin: top left;
}
.banner-section.style-h7 .banner-carousel .theme-btn.btn-style-three:hover {
    color: #222;
    transition: all 700ms ease;
}

.banner-section.style-h7 .content-box .text {
    position: relative;
    display: block;
    font-size: 24px;
    line-height: 34px;
    color: #ffffff;
    font-weight: 400;
    opacity: 0;
    margin-bottom: 40px;
    -webkit-transition: all 1000ms ease;
    -moz-transition: all 100ms ease;
    -ms-transition: all 1000ms ease;
    -o-transition: all 1000ms ease;
    transition: all 1000ms ease;
    -webkit-transform: translateY(-100px);
    -moz-transform: translateY(-100px);
    -ms-transform: translateY(-100px);
    -o-transform: translateY(-100px);
    transform: translateY(-100px);
}

.banner-section.style-h7 .active  .text{
	opacity: 1;
	-webkit-transform: translateY(0);
	-moz-transform: translateY(0);
	-ms-transform: translateY(0);
	-o-transform: translateY(0);
	transform: translateY(0);
	-webkit-transition-delay: 600ms;
	-moz-transition-delay: 600ms;
	-ms-transition-delay: 600ms;
	-o-transition-delay: 600ms;
	transition-delay: 600ms;
}

.banner-section.style-h7 .banner-carousel .owl-prev, .banner-section.style-h7 .banner-carousel .owl-next {
    border-radius: 0px;
}

.banner-section.style-h7 .banner-carousel .content-box h2{
	position: relative;
	display: block;
	font-size: 72px;
	line-height: 75px;
	color: #ffffff;
	font-weight: 800;
	opacity: 0;
	margin-bottom: 15px;
	-webkit-transform: translateY(-50px);
	-moz-transform: translateY(-50px);
	-ms-transform: translateY(-50px);
	-o-transform: translateY(-50px);
	transform: translateY(-50px);
	-webkit-transition: all 1000ms ease;
	-moz-transition: all 100ms ease;
	-ms-transition: all 1000ms ease;
	-o-transition: all 1000ms ease;
	transition: all 1000ms ease;
}

.banner-section.style-h7 .banner-carousel .active .content-box h2{
	opacity: 1;
	-webkit-transform: translateY(0);
	-moz-transform: translateY(0);
	-ms-transform: translateY(0);
	-o-transform: translateY(0);
	transform: translateY(0);
	-webkit-transition-delay: 300ms;
	-moz-transition-delay: 300ms;
	-ms-transition-delay: 300ms;
	-o-transition-delay: 300ms;
	transition-delay: 300ms;
}

.banner-section.style-h7 .banner-carousel .content-box .text{
	position: relative;
	display: block;
	font-size: 20px;
	line-height: 34px;
	color: #ffffff;
	font-weight: 400;
	opacity: 0;
	margin-bottom: 40px;
	-webkit-transition: all 1000ms ease;
	-moz-transition: all 100ms ease;
	-ms-transition: all 1000ms ease;
	-o-transition: all 1000ms ease;
	transition: all 1000ms ease;
	-webkit-transform: translateY(-100px);
	-moz-transform: translateY(-100px);
	-ms-transform: translateY(-100px);
	-o-transform: translateY(-100px);
	transform: translateY(-100px);
}

.banner-section.style-h7 .banner-carousel .active  .text{
	opacity: 1;
	-webkit-transform: translateY(0);
	-moz-transform: translateY(0);
	-ms-transform: translateY(0);
	-o-transform: translateY(0);
	transform: translateY(0);
	-webkit-transition-delay: 600ms;
	-moz-transition-delay: 600ms;
	-ms-transition-delay: 600ms;
	-o-transition-delay: 600ms;
	transition-delay: 600ms;
}

.banner-section.style-h7 .banner-carousel .link-box{
	position: relative;
	opacity: 0;
	-webkit-transition: all 1000ms ease;
	-moz-transition: all 1000ms ease;
	-ms-transition: all 1000ms ease;
	-o-transition: all 1000ms ease;
	transition: all 1000ms ease;
	-webkit-transform: translateY(-50px);
	-moz-transform: translateY(-50px);
	-ms-transform: translateY(-50px);
	-o-transform: translateY(-50px);
	transform: translateY(-50px);
}

.banner-section.style-h7 .banner-carousel .link-box:after{
	display: table;
	clear: both;
	content: "";
}

.banner-section.style-h7 .banner-carousel .active .link-box{
	opacity: 1;
	-webkit-transform: translateY(0);
	-moz-transform: translateY(0);
	-ms-transform: translateY(0);
	-o-transform: translateY(0);
	transform: translateY(0);
	-webkit-transition-delay: 1200ms;
	-moz-transition-delay: 1200ms;
	-ms-transition-delay: 1200ms;
	-o-transition-delay: 1200ms;
	transition-delay: 1200ms;
}

.banner-section.style-h7 .banner-carousel .owl-dots{
	display: none;
}

.banner-section.style-h7 .banner-carousel .owl-dots{
	position: absolute;
	left: 0;
	bottom: 50px;
	width: 100%;
	text-align: center;
	display: none;
}

.banner-section.style-h7 .banner-carousel .owl-nav{
    position: absolute;
    width: 100%;
    top: 50%;
    margin-top: -25px;
    z-index: 99;
    opacity: 0;
	-webkit-transition:all 300ms ease;
	-moz-transition:all 300ms ease;
	-ms-transition:all 300ms ease;
	-o-transition:all 300ms ease;
    transition: all 300ms ease;
}

.banner-section.style-h7 .banner-carousel:hover .owl-nav{
	opacity: 1;
}

.banner-section.style-h7 .banner-carousel .owl-prev, 
.banner-section.style-h7 .banner-carousel .owl-next{
	position: absolute;
	top: 0;
	left: 50px;
	height: 50px;
	width: 50px;
	font-size: 20px;
	color:
 #ffffff;
	font-weight: 400;
	text-align: center;
	line-height: 50px;
	border-radius: 50%;
	background-color: rgba(255,255,255,0.20);
	-webkit-transition:all 300ms ease;
	-moz-transition:all 300ms ease;
	-ms-transition:all 300ms ease;
	-o-transition:all 300ms ease;
    transition: all 300ms ease;
}

.banner-section.style-h7 .banner-carousel .owl-next{
	left: auto;
	right: 50px;
}

.banner-section.style-h7 .banner-carousel .owl-prev:hover, 
.banner-section.style-h7 .banner-carousel .owl-next:hover{
	background-color: #ffffff;
	color: #222222;
}


/*** 

====================================================================
	service icon h7 one
====================================================================

 ***/

.service-icon-h7-one {
    position: relative;
    z-index: 99;
}
.service-icon-h7-one .column {
    /* box-shadow: 0px 7px 57px 0px rgba(0, 0, 0, 0.1); */
    /* background: #1a243f; */
    /* margin-top: -110px; */
    /* padding: 0; */
    box-shadow: 0px 7px 57px 0px rgba(0, 0, 0, 0.1);
    background: #ffffff;
    margin-top: 0px;
    padding: 0;
}
.service-icon-h7-one .column .item {
    /* position: relative; */
    /* text-align: center; */
    /* padding: 105px 0px 50px 0px; */
    /* overflow: hidden; */
    position: relative;
    text-align: center;
    padding: 60px 0px 40px 0px;
    overflow: hidden;
}
.service-icon-h7-one .column .item .image {
    position: absolute;
    content: "";
    top: 0px;
    left: -101%;
    height: 100%;
    width: 100%;
    opacity: 0;
    transition: all 700ms ease;
    background-repeat: no-repeat;
}
.service-icon-h7-one .column .item .image:before {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    content: "";
}
.service-icon-h7-one .column .item .image img {
    width: 100%;
    height: 100%;
}
.service-icon-h7-one .column .item:hover .image {
	opacity: 1;
	left: 0%;
	transition: all 700ms ease;
}
.service-icon-h7-one .column .item .icon {
    position: relative;
    display: inline-block;
}
.service-icon-h7-one .column .item .icon span:after {
    position: absolute;
    left: -10px;
    bottom: -25px;
    width: 45px;
    height: 90px;
    background-color: rgba(153, 153, 153, 0.1);
    content: "";
    z-index: -1;
    transition: all 700ms ease;
    position: absolute;
    left: -10px;
    bottom: -25px;
    width: 45px;
    height: 90px;
    background-color: rgba(153, 153, 153, 0.1);
    content: "";
    z-index: -1;
    transition: all 700ms ease;
    left: 0px;
    background-repeat: no-repeat;
    background-position: center;
    content: "";
    -moz-filter: grayscale(1);
    -o-filter: grayscale(1);
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
    position: absolute;
    content: '';
    background-image: -webkit-linear-gradient( 45deg, #FF0000 0%, #dd581a 100%);
    width: 30px;
    height: 30px;
    top: 9px;
    border-radius: 50%;
    z-index: -1;
    transition: all 500ms ease;
}
.service-icon-h7-one .column .item .icon span {
	position: relative;
    font-size: 70px;
	color: #FF0000;
	z-index: 1;
}
.service-icon-h7-one .column .item .icon span:before {
    font-size: 70px;
    color: #FF0000;
    transition: all 700ms ease;
    font-size: 70px;
    color: #001659;
    transition: all 700ms ease;
}
.service-icon-h7-one .column .item .title h2 {
    font-weight: 600;
    line-height: 36px;
    margin-top: 40px;
    transition: all 700ms ease;
}
.service-icon-h7-one .column .item:hover .title h2 a span {
    color: #fff;
	transition: all 400ms ease;
}
.service-icon-h7-one .column .item .title h2 a span {
    font-size: 20px;
    color: #ffffff;
    line-height: 30px;
    transition: all 400ms ease;
    font-size: 20px;
    color: #001659;
    line-height: 30px;
    transition: all 400ms ease;
}
.service-icon-h7-one .column .item:hover .icon span {
	color: #fff;
	transition: all 700ms ease;
}
.service-icon-h7-one .column .item:hover .icon span:after {
    background-color: rgba(255, 255, 255, 0.39);
	transition: all 700ms ease;
}
.service-icon-h7-one .column:nth-child(2){
    /* background: #FF0000; */
}
.service-icon-h7-one .column:nth-child(3){
    /* background: #001659; */
}
.service-icon-h7-one .column:nth-child(2) .item .title h2 a span {
    /* color: #fff; */
}
.service-icon-h7-one .column:nth-child(2) .item .icon span:before {
	color: #222;
	transition: all 700ms ease;
}
.service-icon-h7-one .column:nth-child(3) .item .title h2 a span {
    /* color: #fff; */
}
.service-icon-h7-one .column:nth-child(3) .item .icon span:before {
    /* color: #FF0000; */
    /* transition: all 700ms ease; */
}
.service-icon-h7-one .column:nth-child(2) .item .icon span:after {
    background-color: rgba(255, 255, 255, 0.1);
}
.service-icon-h7-one .column:nth-child(3) .item .icon span:after {
    background-color: rgba(255, 174, 0, 0.1);
}
.service-icon-h7-one .column:nth-child(3) .item .icon span:after {
    background-color: rgba(255, 174, 0, 0.1);
}
.service-icon-h7-one .column:nth-child(2) .item:hover .icon span:after {
    background-color: rgba(255, 255, 255, 0.39);
}
.service-icon-h7-one .column:nth-child(3) .item:hover .icon span:after {
    background-color: rgba(255, 255, 255, 0.39);
}
.service-icon-h7-one .column:nth-child(1) .item:hover .icon span:before {
	color: #fff;
	transition: all 700ms ease;
}
.service-icon-h7-one .column:nth-child(2) .item:hover .icon span:before {
	color: #fff;
	transition: all 700ms ease;
}
.service-icon-h7-one .column:nth-child(3) .item:hover .icon span:before {
	color: #fff;
	transition: all 700ms ease;
}


/*** 

====================================================================
	why choose us h7
====================================================================

 ***/

.why-choose-us-h7 {
    position: relative;
    padding: 100px 0px 0px 0px;
}
.why-choose-us-h7 .image-box {}
.why-choose-us-h7 .image-box img {
    float: right;
    max-width: none;
}
.why-choose-us-h7 .text-box {
    padding-top: 30px;
}
.why-choose-us-h7 .text-box h3 {
    margin-bottom: 18px;
    text-transform: uppercase;
    position: relative;
    color: #222;
    font-size: 16px;
    line-height: 1.6em;
    font-weight: 600;
}
.why-choose-us-h7 .text-box .title-two h2 {
    /* font-size: 36px; */
    /* color: #222222; */
    /* font-weight: 600; */
    /* line-height: 60px; */
    /* margin-bottom: 15px; */
    /* font-size: 48px; */
    /* font-weight: 600; */
    /* color: #001659; */
    color: #001659;
    font-weight: 700;
    text-transform: uppercase;
    /* line-height: 50px; */
    font-size: 40px;
    line-height: 1.3em;
}
.why-choose-us-h7 .text-box .text p {
    font-size: 17px;
    color: #555;
    line-height: 30px;
    margin-top: 0px;
    margin-bottom: 35px;
}
.why-choose-us-h7 .text-box .list {}
.why-choose-us-h7 .text-box .list ul {}
.why-choose-us-h7 .text-box .list ul li {
    position: relative;
    padding-left: 90px;
    margin: 20px 0px 30px 30px;
    background: white;
    padding: 25px;
    border-radius: 10px;
    padding-left: 98px;
    margin-left: 0px;
}
.why-choose-us-h7 .text-box .list ul li .icon {
    position: absolute;
    left: 26px;
    top: 61px;
}
.why-choose-us-h7 .text-box .list ul li .icon span {}
.why-choose-us-h7 .text-box .list ul li .icon span:before {
    font-size: 50px;
    color: #FF0000;
}
.why-choose-us-h7 .text-box .list ul li h4 {
    color: #001659;
    font-size: 23px;
    font-weight: 600;
    margin-bottom: 15px;
}
.why-choose-us-h7 .text-box .list ul li .text-two p {
    font-size: 16px;
    color: #777777;
}

/*** 

====================================================================
	workprocess
====================================================================

 ***/

.workprocess-h7 {
    position: relative;
    padding: 100px 0px 100px 0px;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.workprocess-h7:before {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-color: #000000cc;
    content: "";
}

.workprocess-h7 .sec-title {
    text-align: center;
}
.workprocess-h7 .sec-title .subtitle {
    margin-bottom: 25px;
}
.workprocess-h7 .sec-title h3 {
    font-size: 16px;
    color: #FF0000;
    text-transform: uppercase;
    position: relative;
    color: #FF0000;
    font-size: 17px;
    line-height: 1.6em;
    font-weight: 500;
}
.workprocess-h7 .sec-title .title-two h2 {
    font-size: 36px;
    color: #fff;
    line-height: 30px;
    margin-bottom: 32px;
    line-height: 60px;
    margin-bottom: 15px;
    font-size: 48px;
    font-weight: 600;
    color: #ffffff;
}
.workprocess-h7 .sec-title .divider {}
.workprocess-h7 .item {
    position: relative;
    overflow: hidden;
    margin-top: 25px;
}
.workprocess-h7 .item .number {
    position: relative;
    font-size: 48px;
    color: #FFFFFF;
    padding: 20px 0px;
    margin-bottom: 55px;
    position: relative;
    font-size: 74px;
    color: #ffffff63;
    padding: 20px 0px;
    margin-bottom: 55px;
    font-weight: 700;
}
.workprocess-h7 .item .number:before {
    position: absolute;
    left: 0;
    bottom: -25px;
    width: 80px;
    height: 2px;
    background: #c0945e;
    content: "";
}
.workprocess-h7 .item h2 {
    /* text-transform: uppercase; */
    color: #FF0000;
    font-weight: 600;
    margin-bottom: 16px;
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 16px;
    font-size: 23px;
    /* font-family: 'Poppins', sans-serif; */
}
.workprocess-h7 .item p {
    font-size: 16px;
    color: #ffffff;
    line-height: 30px;
}

/*** 

====================================================================
	video h7
====================================================================


 ***/

.video-h7 {
    position: relative;
    width: 70%;
    padding: 174px 0px 180px 0px;
    margin-top: -186px;
}
.video-h7:before {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 94, 20, 0.64);
    content: "";
}
.video-h7:after {
    position: absolute;
    right: -700px;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: url(//jaquesofalltrades.com/wp-content/themes/buildnet/assets/images/ex-new/resource/video-seven-shape.png);
    content: "";
    z-index: -1;
}
.video-h7 .text-box {
    float: right;
}
.video-h7 .icon {
    margin-bottom: 30px;
    text-align: center;
}
.video-h7 .icon img {}
.video-h7 h2 {
    font-size: 36px;
    color: #fff;
    margin-bottom: 20px;
    font-weight: 600;
    margin-top: 60px;
    line-height: 60px;
    margin-bottom: 15px;
    font-size: 37px;
    font-weight: 600;
    color: #ffffff;
}
.video-h7 p {
    font-size: 16px;
    color: #FFFFFF;
    text-align: center;
}

.video-h7 .text {
    text-align: center;
}


/*** 

====================================================================
	service icon h7 two
====================================================================

 ***/

.service-icon-h7-two {
    position: relative;
    padding: 100px 0px 100px 0px;
}
.service-icon-h7-two .sec-title {
    text-align: center;
}
.service-icon-h7-two .sec-title .subtitle {
    margin-bottom: 15px;
}
.service-icon-h7-two .sec-title h3 {
    font-size: 16px;
    color: #FF0000;
    text-transform: uppercase;
    position: relative;
    color: #222;
    font-size: 16px;
    line-height: -0.4em;
    font-weight: 600;
}
.service-icon-h7-two .sec-title .title-two h2 {
    /* font-size: 36px; */
    /* color: #222; */
    /* line-height: 30px; */
    /* margin-bottom: 32px; */
    /* line-height: 60px; */
    /* margin-bottom: 15px; */
    /* font-size: 48px; */
    /* font-weight: 600; */
    /* color: #001659; */
}
.service-icon-h7-two .sec-title .divider {
    display: none;
}
.service-icon-h7-two .item {
    position: relative;
    border: 1px solid #ffffff;
    padding: 40px 20px 46px 35px;
    transition: all 700ms ease;
    margin-bottom: 40px;
    margin-top: 20px;
    background: #fff;
    /* box-shadow: 0px 0px 16px rgba(0,0,0,0.15); */
    border-radius: 10px;
}
.service-icon-h7-two .item:hover {
	box-shadow: 0px 7px 21px 0px rgba(0, 0, 0, 0.1);
	transition: all 700ms ease;
	border: 1px solid transparent;
}
.service-icon-h7-two .item:hover .icon span:before{
	color: #FF0000;
	transition: all 700ms ease;
}
.service-icon-h7-two .item:hover .icon span:after {
    background: rgba(255, 174, 0, 0.15);
    transition: all 700ms ease;
}
.service-icon-h7-two .item .icon {
    position: relative;
    margin-left: 5px;
    margin-top: 25px;
}
.service-icon-h7-two .item .icon span {
    position: relative;
    font-size: 50px;
    color: #222;
}
.service-icon-h7-two .item .icon span:before {
    font-size: 54px;
    color: #FF0000;
    transition: all 700ms ease;
}
.service-icon-h7-two .item .icon span:after {
    position: absolute;
    left: -19px;
    bottom: 11px;
    width: 60px;
    height: 60px;
    background-color: rgb(254 95 21 / 11%);
    content: "";
    transition: all 700ms ease;
    border-radius: 50%;
}
.service-icon-h7-two .item .icon img {}
.service-icon-h7-two .item .title {
    margin-bottom: 0;
    margin-top: 25px;
}
.service-icon-h7-two .item h2 {
    font-weight: 600;
}
.service-icon-h7-two .item h2 a span {
    font-size: 23px;
    color: #001659;
    transition: all 200ms ease;
}
.service-icon-h7-two .item h2 a:hover span {
    color: #FF0000;
	transition: all 400ms ease;
}
.service-icon-h7-two .item p {
    font-size: 17px;
    line-height: 30px;
    color: #555;
}
.service-icon-h7-two .item .btn-box {
    bottom: -35px;
    position: absolute;
    left: 33px;
    overflow: hidden;
}
.service-icon-h7-two .item .btn-box a i {
    position: relative;
    color: #fff;
    background: #FF0000;
    /* border-bottom-right-radius: 30px; */
    /* border-bottom-left-radius: 0px; */
    /* border-top-right-radius: 30px; */
    /* border-top-left-radius: 0px; */
    transition: all 700ms ease;
    padding: 15px 20px 15px 20px;
    top: 0;
    z-index: 33;
    font-size: 20px;
    overflow: hidden;
    /* -webkit-box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48); */
    -khtml-box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48);
    -moz-box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48);
    -ms-box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48);
    -o-box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48);
    /* box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48); */
    /* background-color: #d5aa6d; */
    /* background-image: -webkit-gradient(linear, left top, right top,from(#d5aa6d),to(#9b6f45)); */
    /* background-image: -webkit-linear-gradient(left,#d5aa6d,#9b6f45); */
    background-image: -moz-linear-gradient(left,#d5aa6d,#9b6f45);
    background-image: -ms-linear-gradient(left,#d5aa6d,#9b6f45);
    background-image: -o-linear-gradient(left,#d5aa6d,#9b6f45);
    background-image: linear-gradient(left,#d5aa6d,#9b6f45);
    border-radius: 4px;
}
.service-icon-h7-two .item .btn-box a i:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    height: 100%;
    width: 100%;
    background: #222;
    -webkit-transform: scale(0, 1);
    -ms-transform: scale(0, 1);
    transform: scale(0, 1);
    -webkit-transform-origin: bottom right;
    -ms-transform-origin: bottom right;
    transform-origin: bottom right;
    -webkit-transition: transform 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -moz-transition: transform 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -o-transition: transform 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
    transition: transform 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -webkit-transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -moz-transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -o-transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
    transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
    /* border-bottom-right-radius: 30px; */
    /* border-bottom-left-radius: 0px; */
    /* border-top-right-radius: 30px; */
    /* border-top-left-radius: 0px; */
    border-radius: 0px;
}
.service-icon-h7-two .item:hover .btn-box a i:after {
    -webkit-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    transform: scale(1, 1);
    -webkit-transform-origin: top left;
    -ms-transform-origin: top left;
    transform-origin: top left;
	    border-bottom-right-radius: 0px;
    border-bottom-left-radius: 0px;
    border-top-right-radius: 0px;
    border-top-left-radius: 0px;
}
.service-icon-h7-two .item .btn-box a i:hover {
    color: #fff;
    transition: all 700ms ease;
}

.service-icon-h7-two .owl-nav{
	display: none;
}

.service-icon-h7-two .owl-dots {
    text-align: center;
    margin-top: 50px;
}

.service-icon-h7-two .owl-dot {
    position: relative;
    display: inline-block;
    height: 6px;
    width: 25px;
    background-color: #FF0000;
    margin-bottom: 12px;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
    margin: 0px 5px;
}

.service-icon-h7-two .owl-dot.active,
.service-icon-h7-two .owl-dot:hover{
	height: 9px;
	background-color:#222222;
	top: 2px;
}

.service-icon-h7-two .owl-carousel .owl-dots.disabled {
    display: block;
}


/*** 

====================================================================
	service icon h7 two
====================================================================

 ***/

.project-slider-h7 {
    position: relative;
    padding: 100px 0px 80px 0px;
    /* margin-bottom: -25px; */
    background-repeat: repeat;
}
.project-slider-h7 .sec-title {
    margin-bottom: 45px;
}
.project-slider-h7 .sec-title .subtitle {
    margin-bottom: 15px;
}
.project-slider-h7 .sec-title h3 {
    font-size: 16px;
    color: #FF0000;
    text-transform: uppercase;
    text-transform: uppercase;
    position: relative;
    color: #221;
    font-size: 16px;
    line-height: 1.6em;
    font-weight: 600;
}
.project-slider-h7 .sec-title .title-two h2 {
    /* font-size: 36px; */
    /* color: #222; */
    /* line-height: 30px; */
    /* margin-bottom: 32px; */
    /* position: relative; */
    color: #001659;
    /* font-size: 48px; */
    /* font-weight: 600; */
    /* line-height: 1.3em; */
    /* margin-bottom: 8px; */
    /* text-transform: capitalize; */
}
.project-slider-h7 .sec-title .divider {
    display: none;
}
.project-slider-h7 .item {
    overflow: hidden;
}
.project-slider-h7 .item .image {
	display: inline-block;
}
.project-slider-h7 .item .image {
	position: relative;
}
.project-slider-h7 .item .image .overlay-box {
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    background: rgba(0, 0, 0, 0.9);
    z-index: 3;
    opacity: 0;
    transform: scale(0) rotate(0deg);
    transition: all 700ms ease 300ms;
}
.project-slider-h7 .item:hover  .image .overlay-box{
    opacity: 1; 
    transform:scale(1.0) rotate(0deg);	
    transition: all 700ms ease 200ms;
	
}
.project-slider-h7 .item .image .overlay-box .box{}
.project-slider-h7 .item .image .overlay-box h2 {
    font-size: 20px;
    color: #EDF2FF;
    text-transform: uppercase;
    letter-spacing: 4px;
    transform: rotate(-90deg);
    position: absolute;
    bottom: 335px;
    left: -35px;
}
.project-slider-h7 .item .image .overlay-box h2:before {
    position: absolute;
    left: -142px;
    bottom: -103px;
    width: 2px;
    height: 230px;
    background: #343539;
    content: "";
    transform: rotate(90deg);
}
.project-slider-h7 .item .image .overlay-box a {
    font-size: 18px;
    color: #FFFFFF;
    position: absolute;
  
  bottom: 38px;
    right: 54px;
    transition: all 700ms ease;
}
.project-slider-h7 .item .image .overlay-box a i {
    margin-left: 12px;
    font-size: 18px;
    transform: rotate(45deg);
	transition: all 700ms ease;
}
.project-slider-h7 .item .image .overlay-box a:hover {
    color: #FF0000;
	transition: all 700ms ease;
}
.project-slider-h7 .item .image .overlay-box a:hover i {
    color: #FF0000;
	transition: all 700ms ease;
}
.project-slider-h7 .item .image .overlay-box .box .link {
    position: absolute;
    right: 5px;
    top: 20px;
}
.project-slider-h7 .item .image .overlay-box .box .link a span:before {
    color: #fff;
    font-size: 25px;
    transition: all 500ms ease;
    text-align: center;
    padding: 15px 15px;
    border-radius: 54px;
}

.project-slider-h7 .owl-carousel .owl-stage-outer {
    overflow: visible;
}
.project-slider-h7 .owl-carousel {
    max-width: 382px;
    margin: 0 auto;
    width: 100%;
    display: block;
    position: relative;
    left: 0;
}

.project-slider-h7 .owl-nav {
    position: absolute;
    top: -140px;
    right: -380px;
    display: none;
}
.project-slider-h7 .owl-nav .owl-prev {
	position: relative;
	width: 38px;
	height: 38px;
	/* border: 1px solid #FF0000; */
	text-align: center;
	line-height: 38px;
	font-size: 20px;
	color: #ffffff;
	display: inline-block;
	margin-right: 15px;
	transition: all 700ms ease;
	-webkit-box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48);
	-khtml-box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48);
	-moz-box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48);
	-ms-box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48);
	-o-box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48);
	box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48);
	background-color: #ff5f15;
	/* background-image: -webkit-gradient(linear, left top, right top,from(#d5aa6d),to(#9b6f45)); */
	/* background-image: -webkit-linear-gradient(left,#d5aa6d,#9b6f45); */
	background-image: -moz-linear-gradient(left,#d5aa6d,#9b6f45);
	background-image: -ms-linear-gradient(left,#d5aa6d,#9b6f45);
	background-image: -o-linear-gradient(left,#d5aa6d,#9b6f45);
	background-image: linear-gradient(left,#d5aa6d,#9b6f45);
}
.project-slider-h7 .owl-nav .owl-next {
	position: relative;
	width: 38px;
	height: 38px;
	/* border: 1px solid #FF0000; */
	text-align: center;
	line-height: 38px;
	font-size: 20px;
	color: #ffffff;
	display: inline-block;
	transition: all 700ms ease;
	/* -webkit-box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48); */
	-khtml-box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48);
	-moz-box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48);
	-ms-box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48);
	-o-box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48);
	/* box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48); */
	background-color: #ff5f15;
	/* background-image: -webkit-gradient(linear, left top, right top,from(#d5aa6d),to(#9b6f45)); */
	/* background-image: -webkit-linear-gradient(left,#d5aa6d,#9b6f45); */
	background-image: -moz-linear-gradient(left,#d5aa6d,#9b6f45);
	background-image: -ms-linear-gradient(left,#d5aa6d,#9b6f45);
	background-image: -o-linear-gradient(left,#d5aa6d,#9b6f45);
	background-image: linear-gradient(left,#d5aa6d,#9b6f45);
}
.project-slider-h7 .owl-nav .owl-next:after {
    position: absolute;
    content: '';
    left: 0px;
    top: 0px;
    width: 0px;
    height: 100%;
    display: block;
    opacity: 0;
    background: #ffffff;
    transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    z-index: -1;
}

.project-slider-h7 .owl-nav .owl-next:hover:after {
    width: 100%;
    opacity: 1;
}

.project-slider-h7 .owl-nav .owl-prev:after {
    position: absolute;
    content: '';
    right: 0px;
    top: 0px;
    width: 0px;
    height: 100%;
    display: block;
    opacity: 0;
	background: #FF0000;
    transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    z-index: -1;
}

.project-slider-h7 .owl-nav .owl-prev:hover:after {
    width: 100%;
    opacity: 1;
}
.project-slider-h7 .owl-nav .owl-prev:hover, .project-slider-h7 .owl-nav .owl-next:hover {
    /* border: 1px solid #FF0000; */
    color: #000;
    transition: all 700ms ease;
}

/*** 

====================================================================
	call to action h7
====================================================================

 ***/

.call-to-action-h7 {
    position: relative;
    padding: 78px 0px 75px 0px;
    z-index: 1;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}
.call-to-action-h7:before {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-color: #FF0000;
    content: "";
    z-index: -1;
}
.call-to-action-h7 .social {
    margin-top: 13px;
}
.call-to-action-h7 .title {
    display: inline-block;
    margin-right: 35px;
}
.call-to-action-h7 .social h3 {
    font-size: 20px;
    color: #ffffff;
    display: inline-block;
    font-weight: 600;
}
.call-to-action-h7 .social ul {
    display: inline-block;
}
.call-to-action-h7 .social ul li {
    display: inline-block;
    margin-right: 15px;
}
.call-to-action-h7 .social ul li a {
    font-size: 16px;
    color: #ffffff;
}
.call-to-action-h7 .social ul li a i {}
.call-to-action-h7 .text {
    float: right;
    margin-top: 8px;
}
.call-to-action-h7 .text p {
    font-size: 26px;
    color: #ffffff;
    font-weight: 600;
}
.call-to-action-h7 .btn-box {
    float: right;
    position: relative;
    margin-top: 5px;
}
.call-to-action-h7 .btn-box a {
    position: relative;
    color: #fff;
    background: #222222;
    /* border-bottom-right-radius: 30px; */
    /* border-bottom-left-radius: 0px; */
    /* border-top-right-radius: 30px; */
    /* border-top-left-radius: 0px; */
    transition: all 700ms ease;
    display: inline-block;
    border: none;
    padding: 15px 45px;
    font-size: 16px;
    text-transform: unset;
    z-index: 1;
    overflow: hidden;
    font-weight: 600;
    /* -webkit-box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48); */
    -khtml-box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48);
    -moz-box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48);
    -ms-box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48);
    -o-box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48);
    /* box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48); */
    /* background-color: #000000; */
    /* background-image: -webkit-gradient(linear, left top, right top,from(#d5aa6d),to(#9b6f45)); */
    /* background-image: -webkit-linear-gradient(left,#1c1c1c,#494949); */
    background-image: -moz-linear-gradient(left,#d5aa6d,#9b6f45);
    background-image: -ms-linear-gradient(left,#d5aa6d,#9b6f45);
    background-image: -o-linear-gradient(left,#d5aa6d,#9b6f45);
}
.call-to-action-h7 .btn-box a:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    height: 100%;
    width: 100%;
    background: #fff;
    -webkit-transform: scale(0, 1);
    -ms-transform: scale(0, 1);
    transform: scale(0, 1);
    -webkit-transform-origin: bottom right;
    -ms-transform-origin: bottom right;
    transform-origin: bottom right;
    -webkit-transition: transform 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -moz-transition: transform 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -o-transition: transform 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
    transition: transform 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -webkit-transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -moz-transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -o-transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
    transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
    border-bottom-right-radius: 30px;
    /* border-bottom-left-radius: 0px; */
    /* border-top-right-radius: 30px; */
    /* border-top-left-radius: 0px; */
}
.call-to-action-h7 .btn-box a:hover:after {
    -webkit-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    transform: scale(1, 1);
    -webkit-transform-origin: top left;
    -ms-transform-origin: top left;
    transform-origin: top left;
}
.call-to-action-h7 .btn-box a:hover {
    color: #222222;
    transition: all 700ms ease;
}

/*** 

====================================================================
		priching-03
====================================================================

***/

.pricing-07 {
    position: relative;
    padding: 100px 0px 80px 0px;
}
.pricing-07:before {
    position: absolute;
    left: 0;
    bottom: -80px;
    background: url(//jaquesofalltrades.com/wp-content/themes/buildnet/assets/images/ex-new/background/pricing-07-bg.jpg);
    width: 100%;
    height: 560px;
    content: "";
    background-repeat: no-repeat;
    background-position: center center;
}
.pricing-07 .sec-title {
    text-align: center;
}
.pricing-07 .sec-title .subtitle {
    margin-bottom: 15px;
}
.pricing-07 .sec-title h3 {
    font-size: 16px;
    color: #FF0000;
    text-transform: uppercase;
    text-transform: uppercase;
    position: relative;
    color: #222;
    font-size: 16px;
    line-height: 1.6em;
    font-weight: 600;
}
.pricing-07 .sec-title .title-two h2 {
    /* font-size: 36px; */
    /* color: #222; */
    /* line-height: 30px; */
    /* margin-bottom: 32px; */
    /* position: relative; */
    /* color: #001659; */
    /* font-size: 48px; */
    /* font-weight: 600; */
    /* line-height: 1.3em; */
    /* margin-bottom: 8px; */
    /* text-transform: capitalize; */
}
.pricing-07 .sec-title .divider {
    display: none;
}
.pricing-07 .tabs-box {
    position: relative;
    text-align: center;
}
.pricing-07 .tabs-box .tabs-content {}
.pricing-07 .tabs-box .tabs-content {}
.tabs-box
 .tab.active-tab {
    display: block;
}
.pricing-07 .pricing-table {
    position: relative;
    margin-bottom: 40px;
}
.pricing-07 .pricing-table .inner-box {
    position: relative;
    padding: 60px 55px 70px;
    text-align: center;
    overflow: hidden;
    background: #ffffff;
    transition: all 700ms ease;
    /* border: 1px solid #CCCCCC; */
    /* -webkit-box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48); */
    -khtml-box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48);
    -moz-box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48);
    -ms-box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48);
    -o-box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48);
    /* box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48); */
    /* background-color: #d5aa6d; */
    /* background-image: -webkit-gradient(linear, left top, right top,from(#d5aa6d),to(#9b6f45)); */
    /* background-image: -webkit-linear-gradient(left,#d5aa6d,#9b6f45); */
    background-image: -moz-linear-gradient(left,#d5aa6d,#9b6f45);
    background-image: -ms-linear-gradient(left,#d5aa6d,#9b6f45);
    background-image: -o-linear-gradient(left,#d5aa6d,#9b6f45);
    box-shadow: 0px 7px 38px 0px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
}
.pricing-07 .pricing-table .inner-box:hover {
	box-shadow: 0px 7px 21px 0px rgba(0, 0, 0, 0.1);
	transition: all 700ms ease;
	/* border: 1px solid transparent; */
}
.pricing-07 .pricing-table .inner-box:hover .price{
	color: #000000;
	transition: all 700ms ease;
}
.pricing-07 .pricing-table .inner-box:hover .table-footer a {
	color: #fff;
	transition: all 700ms ease;
}
.pricing-07 .pricing-table .inner-box .title {}
.pricing-07 .pricing-table .inner-box .title h3 {
    color: #001659;
    font-size: 23px;
    margin-bottom: 20px;
    font-weight: 600;
}
.pricing-07 .pricing-table .price {
    position: relative;
    font-size: 40px;
    color: #001659;
    font-weight: 700;
    margin-top: 35px;
    margin-bottom: 0;
    transition: all 700ms ease;
}
.pricing-07 .pricing-table .price sup {
    position: relative;
    font-size: 29px;
    top: 0;
    margin-right: 5px;
}
.pricing-07 .pricing-table .price sub {
    position: relative;
    display: inline-block;
    font-size: 24px;
    color: #FF9600;
    letter-spacing: 1px;
    font-weight: 700;
    top: 0px;
}
.pricing-07 .pricing-table .table-content {
    position: relative;
    margin-top: 0;
    padding-top: 55px;
}
.pricing-07 .pricing-table .table-content ul {
    position: relative;
    margin-bottom: 40px;
}
.pricing-07 .pricing-table .table-content ul li {
    position: relative;
    font-size: 16px;
    line-height: 17px;
    margin-bottom: 20px;
    color: #2c2c2c;
    font-weight: 500;
    text-align: left;
    margin-left: 70px;
}
.pricing-07 .pricing-table .table-content ul li:before {
    position: absolute;
    left: -35px;
    bottom: 0px;
    content: "\f00c";
    font-family: "fontawesome";
    color: #FF0000;
    font-size: 15px;
}
.pricing-07 .pricing-table .table-footer {
    position: relative;
    margin-top: 40px;
    text-align: left;
    margin-left: 40px;
}
.pricing-07 .pricing-table .table-footer a {
    position: relative;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    padding: 10px 43px;
    /* border-radius: 30px; */
    overflow: hidden;
}
.pricing-07 .pricing-table .inner-box .table-footer a:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    height: 100%;
    width: 100%;
    background: #222;
    -webkit-transform: scale(0, 1);
    -ms-transform: scale(0, 1);
    transform: scale(0, 1);
    -webkit-transform-origin: bottom right;
    -ms-transform-origin: bottom right;
    transform-origin: bottom right;
    -webkit-transition: transform 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -moz-transition: transform 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -o-transition: transform 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
    transition: transform 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -webkit-transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -moz-transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -o-transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
    transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
	    border-bottom-right-radius: 30px;
    border-bottom-left-radius: 0px;
    border-top-right-radius: 30px;
    border-top-left-radius: 0px;
}
.pricing-07 .pricing-table .inner-box:hover .table-footer a:before {
    -webkit-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    transform: scale(1, 1);
    -webkit-transform-origin: top left;
    -ms-transform-origin: top left;
    transform-origin: top left;
}
.pricing-07 .pricing-table .inner-box .table-footer a {
    background: #FF0000;
    /* border-bottom-right-radius: 30px; */
    /* border-bottom-left-radius: 0px; */
    /* border-top-right-radius: 30px; */
    /* border-top-left-radius: 0px; */
    transition: all 700ms ease;
    position: relative;
    z-index: 1;
    display: inline-block;
}
.pricing-07 .pricing-table.tagged {}
.pricing-07 .pricing-table.tagged .inner-box .title h3 {
    color: #98D100;
}
.pricing-07 .pricing-table.tagged .inner-box {
    background: #0D1421;
    box-shadow: 0px 5px 16px 0px rgba(0, 0, 0, 0.13);
}
.pricing-07 .pricing-table.tagged .inner-box .title h3 {}
.pricing-07 .pricing-table.tagged .table-footer a {
	background: #FF9600;
}
.pricing-07 .pricing-table.tagged .price {
    color: #fff;
}
.pricing-07 .pricing-table.tagged .price sub {
    color: #fff;
}
.pricing-07 .pricing-table.tagged .table-content ul li {
    color: #fff;
}
.pricing-07 .tabs-box .tab {
    display: none;
}
.pricing-07 .tabs-box .tab.active-tab {
    display: block;
}
.pricing-07 .tab-buttons {
    position: relative;
    display: inline-block;
    margin-bottom: 50px;
    background: #fff;
    /* border-radius: 30px; */
    padding: 3px 4px;
    margin-top: 42px;
    border: 2px solid #A1A1A1;
    overflow: hidden;
}
.pricing-07 .tab-buttons .tab-btn {
    position: relative;
    display: inline-block;
    font-size: 18px;
    line-height: 40px;
    font-weight: 600;
    cursor: pointer;
    color: #313131;
    font-weight: 600;
    background: #fff;
    border-radius: 0px;
    min-width: 155px;
    margin: 0 auto;
    padding: 3px 0px;
    transition: all 700ms ease;
    z-index: 1;
}
.pricing-07 .tab-buttons .tab-btn.active-btn {
    position: relative;
	transition: all 700ms ease;
}
.pricing-07 .tab-buttons .tab-btn.active-btn:before {
    left: 0px;
	background: #FF0000;
	transition: all 700ms ease;
}
.pricing-07 .tab-buttons .tab-btn {
    position: relative;
	transition: all 700ms ease;
}
.pricing-07 .tab-buttons .tab-btn:before {
    position: absolute;
    left: -100px;
    top: 0;
    width: 155px;
    height: 46px;
    content: "";
    background: transparent;
    /* border-radius: 30px; */
    z-index: -1;
    transition: all 700ms ease;
}

/*** 

====================================================================
		latest news 07
====================================================================

***/

.latest-news-07 {
	position: relative;
	padding: 100px 0px;
}
.latest-news-07 .sec-title {
    text-align: center;
}
.latest-news-07 .sec-title .subtitle {
    margin-bottom: 15px;
}
.latest-news-07 .sec-title h3 {
    font-size: 16px;
    color: #FF0000;
    text-transform: uppercase;
    position: relative;
    color: #222;
    font-size: 16px;
    line-height: 1.6em;
    font-weight: 600;
}
.latest-news-07 .sec-title .title-two h2 {
    /* font-size: 36px; */
    /* color: #222; */
    /* line-height: 30px; */
    /* margin-bottom: 32px; */
    /* line-height: 60px; */
    /* margin-bottom: 15px; */
    /* font-size: 48px; */
    /* font-weight: 600; */
    /* color: #001659; */
}
.latest-news-07 .sec-title .divider {
    display: none;
}

.latest-news-07 .inner-box {
    z-index: 1;
}
.latest-news-07 .inner-box .image-box {
	overflow: hidden;
	border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
}
.latest-news-07 .inner-box .image-box img {
    width: 100%;
    transform: scale(1.01);
    transition: all 3000ms ease;
}
.latest-news-07 .inner-box:hover .image-box .image img {
    transform: scale(1.4) rotate(2deg);
    transform: all 3000ms ease;
}
.latest-news-07 figure {
    margin: 0;
}
.latest-news-07 .inner-box .lower-content {
    box-shadow: 0px 1px 8px 0px rgba(0, 0, 0, 0.11);
    padding: 40px 25px 40px 25px;
    margin: 12px;
    text-align: center;
    background: #fff;
    z-index: 46;
    position: relative;
    margin-top: -20px;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    margin-bottom: 20px;
    -webkit-box-shadow: 0 4px 7px rgba(34, 34, 34, 0.48);
    -khtml-box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48);
    -moz-box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48);
    -ms-box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48);
    -o-box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48);
    box-shadow: 0 4px 7px rgba(108, 108, 108, 0.48);
}
.latest-news-07 .inner-box .lower-content h3 {
    margin-bottom: 35px;
}
.latest-news-07 .inner-box .lower-content h3 a {
    position: relative;
    font-size: 20px;
    color: #222222;
    line-height: 30px;
    font-weight: 600;
    display: inline-block;
	transition: all 700ms ease;
}

.latest-news-07 .inner-box .lower-content h3 a:hover {
    color: #FF0000;
	transition: all 700ms ease;
}
.latest-news-07 .inner-box .lower-content h3 a:before {
    position: absolute;
    left: 0;
    bottom: -15px;
    right: 0;
    margin: 0 auto;
    width: 30px;
    height: 2px;
    background: #FF0000;
    content: "";
}
.latest-news-07 .inner-box .lower-content .date {
    font-size: 16px;
    color: #001659;
    font-weight: 500;
}
.latest-news-07 .inner-box .lower-content .author {
	font-size: 16px;
	color: #001659;
	font-weight:
 500;
}
.latest-news-07 .owl-nav{
	display: none;
}

.latest-news-07 .owl-dots {
    text-align: center;
    margin-top: 50px;
}

.latest-news-07 .owl-dot {
    position: relative;
    display: inline-block;
    height: 6px;
    width: 25px;
    background-color: #FF0000;
    margin-bottom: 12px;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
    margin: 0px 5px;
}

.latest-news-07 .owl-dot.active,
.latest-news-07 .owl-dot:hover{
	height: 9px;
	background-color:#222222;
	top: 2px;
}

.latest-news-07 .owl-carousel .owl-dots.disabled {
    display: block;
}


/*** 

====================================================================
		call to action h7 two
====================================================================

***/

.call-to-action-h7-two {
    position: relative;
    padding: 100px 0px;
}
.call-to-action-h7-two .right-side {}
.call-to-action-h7-two sub {
    bottom: 0;
    font-size: 30px;
    color: #222;
    font-weight: 600;
    margin-bottom: 15px;
    line-height: 60px;
    margin-bottom: 15px;
    font-size: 48px;
    font-weight: 600;
    color: #001659;
}
.call-to-action-h7-two .right-side h2 {
    font-size: 30px;
    color: #222;
    font-weight: 600;
    margin-bottom: 15px;
    line-height: 60px;
    margin-bottom: 15px;
    font-size: 48px;
    font-weight: 600;
    color: #001659;
}
.call-to-action-h7-two .right-side h2 span {
	color: #FF0000;
}
.call-to-action-h7-two .right-side p {
	color: #777777;
	font-size: 16px;
}
.call-to-action-h7-two .right-side h2 p {}
.call-to-action-h7-two .left-side {
    padding-top: 35px;
    padding-left: 38px;
}
.call-to-action-h7-two .left-side .number {
    font-size: 24px;
    color: #222222;
    font-weight: 600;
    display: inline-block;
}
.call-to-action-h7-two .left-side .number span {
    color: #FF0000;
    margin-left: 30px;
}
.call-to-action-h7-two .left-side .btn-box {
    display: inline-block;
    float: right;
    position: relative;
    top: -15px;
}

.call-to-action-h7-two .left-side .btn-box a {
    position: relative;
    color: #fff;
    background: #222222;
    transition: all 700ms ease;
    display: inline-block;
    border: none;
    padding: 15px 45px;
    font-size: 16px;
    text-transform: unset;
    z-index: 1;
    overflow: hidden;
    font-weight: 600;
 
}
.call-to-action-h7-two .left-side .btn-box a:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    height: 100%;
    width: 100%;
    background: #FF0000;
    -webkit-transform: scale(0, 1);
    -ms-transform: scale(0, 1);
    transform: scale(0, 1);
    -webkit-transform-origin: bottom right;
    -ms-transform-origin: bottom right;
    transform-origin: bottom right;
    -webkit-transition: transform 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -moz-transition: transform 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -o-transition: transform 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
    transition: transform 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -webkit-transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -moz-transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -o-transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
    transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
	    border-bottom-right-radius: 30px;
    border-bottom-left-radius: 0px;
    border-top-right-radius: 30px;
    border-top-left-radius: 0px;
}
.call-to-action-h7-two .left-side .btn-box a:hover:after {
    -webkit-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    transform: scale(1, 1);
    -webkit-transform-origin: top left;
    -ms-transform-origin: top left;
    transform-origin: top left;
}
.call-to-action-h7-two .left-side .btn-box a:hover {
    color: #222222;
    transition: all 700ms ease;
}




/*** 

====================================================================
	banner section style h8
====================================================================

 ***/

.banner-section.style-h8 {
    position: relative;
    z-index: 1;
}

.banner-section.style-h8 .slide-item {
    position: relative;
    background-repeat: no-repeat;
    background-size: cover;
}

.banner-section.style-h8 .slide-item:before {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: rgba(34, 34, 34, 0.7);
    content: "";
}

.banner-section.style-h8 .banner-carousel .content-box .inner {
    margin-right: 0;
    padding: 200px 0px 200px 0px;
}

.banner-section.style-h8 .content-box {
    width: 100%;
    float: unset;
    padding-left: 450px;
}

.banner-section.style-h8 .banner-carousel .link-box .theme-btn {
    float: unset;
}

.banner-section.style-h8 .title {
    font-size: 18px;
    color: #fff;
    margin-bottom: 20px;
}

.banner-section.style-h8 .banner-carousel .content-box h2 {
    font-size: 54px;
    line-height: 72px;
    font-weight: 700;
}
.banner-section.style-h8 .banner-carousel .content-box h2 span {
    color: #FF0000;
}

.banner-section.style-h8 .banner-carousel .theme-btn.btn-style-two {
    position: relative;
    color: #fff;
    background: #FF0000;
    /* border-bottom-right-radius: 30px; */
    /* border-bottom-left-radius: 0px; */
    /* border-top-right-radius: 30px; */
    /* border-top-left-radius: 0px; */
    transition: all 700ms ease;
    border: none;
    padding: 15px 45px;
    font-size: 16px;
    text-transform: unset;
    display: inline-block;
    z-index: 1;
    overflow: hidden;
    -webkit-box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48);
    -khtml-box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48);
    -moz-box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48);
    -ms-box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48);
    -o-box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48);
    box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48);
    background-color: #d5aa6d;
    background-image: -webkit-gradient(linear, left top, right top,from(#d5aa6d),to(#9b6f45));
    background-image: -webkit-linear-gradient(left,#d5aa6d,#9b6f45);
    background-image: -moz-linear-gradient(left,#d5aa6d,#9b6f45);
    background-image: -ms-linear-gradient(left,#d5aa6d,#9b6f45);
    background-image: -o-linear-gradient(left,#d5aa6d,#9b6f45);
    background-image: linear-gradient(left,#d5aa6d,#9b6f45);
}

.banner-section.style-h8 .banner-carousel .theme-btn.btn-style-two:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    height: 100%;
    width: 100%;
    background: #222;
    -webkit-transform: scale(0, 1);
    -ms-transform: scale(0, 1);
    transform: scale(0, 1);
    -webkit-transform-origin: bottom right;
    -ms-transform-origin: bottom right;
    transform-origin: bottom right;
    -webkit-transition: transform 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -moz-transition: transform 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -o-transition: transform 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
    transition: transform 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -webkit-transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -moz-transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -o-transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
    transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
}
.banner-section.style-h8 .banner-carousel .theme-btn.btn-style-two:hover:before {
    -webkit-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    transform: scale(1, 1);
    -webkit-transform-origin: top left;
    -ms-transform-origin: top left;
    transform-origin: top left;
}

.banner-section.style-h8 .banner-carousel .theme-btn.btn-style-two:hover {
    color: #fff;
    transition: all 700ms ease;
}
.banner-section.style-h8 .banner-carousel .theme-btn.btn-style-three {
    color: #222;
    background: #FF0000;
    border-bottom-right-radius: 30px;
    border-bottom-left-radius: 0px;
    border-top-right-radius: 30px;
    border-top-left-radius: 0px;
    transition: all 700ms ease;
	border: none;
	padding: 15px 45px;
}

.banner-section.style-h8 .content-box .text {
    position: relative;
    display: block;
    font-size: 16px;
    line-height: 30px;
    color: #ffffff;
    font-weight: 400;
    opacity: 0;
    margin-bottom: 29px;
    -webkit-transition: all 1000ms ease;
    -moz-transition: all 100ms ease;
    -ms-transition: all 1000ms ease;
    -o-transition: all 1000ms ease;
    transition: all 1000ms ease;
    -webkit-transform: translateY(-100px);
    -moz-transform: translateY(-100px);
    -ms-transform: translateY(-100px);
    -o-transform: translateY(-100px);
    transform: translateY(-100px);
}

.banner-section.style-h8 .active  .text{
	opacity: 1;
	-webkit-transform: translateY(0);
	-moz-transform: translateY(0);
	-ms-transform: translateY(0);
	-o-transform: translateY(0);
	transform: translateY(0);
	-webkit-transition-delay: 600ms;
	-moz-transition-delay: 600ms;
	-ms-transition-delay: 600ms;
	-o-transition-delay: 600ms;
	transition-delay: 600ms;
}

.banner-section.style-h8 .banner-carousel .owl-prev, .banner-section.style-h8 .banner-carousel .owl-next {
    border-radius: 0px;
}

.banner-section.style-h8 .banner-carousel .owl-prev, .banner-section.style-h8 .banner-carousel .owl-next {
    width: 56px;
    height: 56px;
    color: #ffffff;
    border: 1px solid #fff;
    font-weight: 400;
    line-height: 56px;
    border-radius: 100% !important;
	background-color: transparent;
}

.banner-section.style-h8 .banner-carousel .owl-prev:hover, .banner-section.style-h8 .banner-carousel .owl-next:hover {
    background-color: transparent;
    color: #FF0000;
	border: 1px solid #FF0000;
}

.banner-section.style-h8 .banner-carousel
 .content-box h2{
	position: relative;
	display: block;
	font-size: 56px;
	line-height: 64px;
	color: #ffffff;
	font-weight: 600;
	opacity: 0;
	margin-bottom: 15px;
	-webkit-transform: translateY(-50px);
	-moz-transform: translateY(-50px);
	-ms-transform: translateY(-50px);
	-o-transform: translateY(-50px);
	transform: translateY(-50px);
	-webkit-transition: all 1000ms ease;
	-moz-transition: all 100ms ease;
	-ms-transition: all 1000ms ease;
	-o-transition: all 1000ms ease;
	transition: all 1000ms ease;
}

.banner-section.style-h8 .banner-carousel .active .content-box h2{
	opacity: 1;
	-webkit-transform: translateY(0);
	-moz-transform: translateY(0);
	-ms-transform: translateY(0);
	-o-transform: translateY(0);
	transform: translateY(0);
	-webkit-transition-delay: 300ms;
	-moz-transition-delay: 300ms;
	-ms-transition-delay: 300ms;
	-o-transition-delay: 300ms;
	transition-delay: 300ms;
}

.banner-section.style-h8 .banner-carousel .content-box .text{
	position: relative;
	display: block;
	font-size: 20px;
	line-height: 34px;
	color: #ffffff;
	font-weight: 400;
	opacity: 0;
	margin-bottom: 40px;
	-webkit-transition: all 1000ms ease;
	-moz-transition: all 100ms ease;
	-ms-transition: all 1000ms ease;
	-o-transition: all 1000ms ease;
	transition: all 1000ms ease;
	-webkit-transform: translateY(-100px);
	-moz-transform: translateY(-100px);
	-ms-transform: translateY(-100px);
	-o-transform: translateY(-100px);
	transform: translateY(-100px);
}

.banner-section.style-h8 .banner-carousel .active  .text{
	opacity: 1;
	-webkit-transform: translateY(0);
	-moz-transform: translateY(0);
	-ms-transform: translateY(0);
	-o-transform: translateY(0);
	transform: translateY(0);
	-webkit-transition-delay: 600ms;
	-moz-transition-delay: 600ms;
	-ms-transition-delay: 600ms;
	-o-transition-delay: 600ms;
	transition-delay: 600ms;
}

.banner-section.style-h8 .banner-carousel .link-box{
	position: relative;
	opacity: 0;
	-webkit-transition: all 1000ms ease;
	-moz-transition: all 1000ms ease;
	-ms-transition: all 1000ms ease;
	-o-transition: all 1000ms ease;
	transition: all 1000ms ease;
	-webkit-transform: translateY(-50px);
	-moz-transform: translateY(-50px);
	-ms-transform: translateY(-50px);
	-o-transform: translateY(-50px);
	transform: translateY(-50px);
}

.banner-section.style-h8 .banner-carousel .link-box:after{
	display: table;
	clear: both;
	content: "";
}

.banner-section.style-h8 .banner-carousel .active .link-box{
	opacity: 1;
	-webkit-transform: translateY(0);
	-moz-transform: translateY(0);
	-ms-transform: translateY(0);
	-o-transform: translateY(0);
	transform: translateY(0);
	-webkit-transition-delay: 1200ms;
	-moz-transition-delay: 1200ms;
	-ms-transition-delay: 1200ms;
	-o-transition-delay: 1200ms;
	transition-delay: 1200ms;
}

.banner-section.style-h8 .banner-carousel .owl-dots{
	display: none;
}

.banner-section.style-h8 .banner-carousel .owl-dots{
	position: absolute;
	left: 0;
	bottom: 50px;
	width: 100%;
	text-align: center;
	display: none;
}

.banner-section.style-h8 .banner-carousel .owl-nav{
    position: absolute;
    width: 100%;
    top: 50%;
    margin-top: -25px;
    z-index: 99;
    opacity: 0;
	-webkit-transition:all 300ms ease;
	-moz-transition:all 300ms ease;
	-ms-transition:all 300ms ease;
	-o-transition:all 300ms ease;
    transition: all 300ms ease;
}

.banner-section.style-h8 .banner-carousel:hover .owl-nav{
	opacity: 1;
}

.banner-section.style-h8 .banner-carousel .owl-prev, 
.banner-section.style-h8 .banner-carousel .owl-next{
	position: absolute;
	top: 0;
	left: 50px;
	height: 50px;
	width: 50px;
	font-size: 20px;
	color: #ffffff;
	font-weight: 400;
	text-align: center;
	line-height: 50px;
	border-radius: 50%;
	background-color: rgba(255,255,255,0.20);
	-webkit-transition:all 300ms ease;
	-moz-transition:all 300ms ease;
	-ms-transition:all 300ms ease;
	-o-transition:all 300ms ease;
    transition: all 300ms ease;
}

.banner-section.style-h8 .banner-carousel .owl-next{
	left: auto;
	right: 50px;
}

.banner-section.style-h8 .banner-carousel .owl-prev:hover, 
.banner-section.style-h8 .banner-carousel .owl-next:hover{
	background-color: #ffffff;
	color: #222222;
}


/*** 

====================================================================
	about h8
====================================================================

 ***/

.about-h8 {
    position: relative;
    padding: 100px 0px;
}
.about-h8 .sec-title {
    margin-bottom: 20px;
}
.about-h8 .sec-title h3 {
    font-size: 16px;
    color: #FF0000;
    margin-bottom: 15px;
    text-transform: uppercase;
    font-weight: 500;
}
.about-h8 .sec-title .title-two h2 {
    font-size: 36px;
    color: #222;
    line-height: 30px;
    margin-bottom: 15px;
    line-height: 48px;
    color: #001659;
    font-size: 48px;
}
.about-h8 .sec-title .divider {}
.about-h8 .text p {
    font-size: 16px;
    color: #777777;
    line-height: 30px;
    padding-right: 10px;
}
.about-h8 .btn-box {
    margin-top: 30px;
}
.about-h8 .btn-box a {
    position: relative;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    padding: 15px 35px;
    background: #222;
    /* border-bottom-right-radius: 35px; */
    border-bottom-left-radius: 0px;
    /* border-top-right-radius: 35px; */
    /* border-top-left-radius: 0px; */
    transition: all 700ms ease;
    z-index: 1;
    display: inline-block;
    overflow: hidden;
    -webkit-box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48);
    -khtml-box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48);
    -moz-box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48);
    -ms-box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48);
    -o-box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48);
    box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48);
    background-color: #d5aa6d;
    background-image: -webkit-gradient(linear, left top, right top,from(#d5aa6d),to(#9b6f45));
    background-image: -webkit-linear-gradient(left,#d5aa6d,#9b6f45);
    background-image: -moz-linear-gradient(left,#d5aa6d,#9b6f45);
    background-image: -ms-linear-gradient(left,#d5aa6d,#9b6f45);
    background-image: -o-linear-gradient(left,#d5aa6d,#9b6f45);
}
.about-h8 .btn-box a:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    height: 100%;
    width: 100%;
    background: #FF0000;
    -webkit-transform: scale(0, 1);
    -ms-transform: scale(0, 1);
    transform: scale(0, 1);
    -webkit-transform-origin: bottom right;
    -ms-transform-origin: bottom right;
    transform-origin: bottom right;
    -webkit-transition: transform 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -moz-transition: transform 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -o-transition: transform 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
    transition: transform 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -webkit-transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -moz-transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -o-transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
    transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
	    border-bottom-right-radius: 35px;
    border-bottom-left-radius: 0px;
    border-top-right-radius: 35px;
    border-top-left-radius: 0px;
}
.about-h8 .btn-box a:hover:before {
    -webkit-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    transform: scale(1, 1);
    -webkit-transform-origin: top left;
    -ms-transform-origin: top left;
    transform-origin: top left;
}
.about-h8 .item {}
.about-h8 .item .image-box {}
.about-h8 .item .image-box img {}
.about-h8 .item h3 {
    font-size: 20px;
    color: #222222;
    font-weight: 600;
    margin-top: 30px;
    margin-bottom: 15px;
}
.about-h8 .item p {
	font-size: 16px;
}


/*** 

====================================================================
	service img h8
====================================================================

 ***/

.service-img-h8 {
	position: relative;
	padding: 100px 0px 40px 0px;
}

.service-img-h8 .sec-title {
    
}
.service-img-h8 .sec-title h3 {
    font-size: 16px;
    color: #FF0000;
    margin-bottom: 15px;
    text-transform: uppercase;
    font-weight: 500;
}
.service-img-h8 .sec-title .title-two h2 {
    font-size: 36px;
    color: #222;
    line-height: 30px;
    margin-bottom: 32px;
    margin-bottom: 15px;
    line-height: 48px;
    color: #001659;
}
.service-img-h8 .sec-title .divider {}

.service-img-h8 .image-box {
    position: relative;
    top: 40px;
}
.service-img-h8 .image-box img {
    float: right;
    max-width: none;
	width:400px;
}
.service-img-h8 .item .image-box-two {
    overflow: hidden;
}
.service-img-h8 .item .image-box-two img {}

.service-img-h8 .item .icon {
    position: absolute;
    top: 28px;
    left: 18px;
}
.service-img-h8 .item .icon span:before {
    font-size: 35px;
    color: #fff;
    transition: all 1200ms ease;
}
.service-img-h8 .item h3 {}
.service-img-h8 .item h3 a {
    font-size: 16px;
    color: #fff;
    font-weight: 600;
    transition: all 700ms ease;
}
.service-img-h8 .item h3 a:hover {
    color: #FF0000;
	transition: all 700ms ease;
}
.service-img-h8 .owl-nav {
    position: absolute;
    top: -100px;
    right: 0;
    display: block !important;
}
.service-img-h8 .owl-nav .owl-prev {
	position: relative;
	width: 38px;
	height: 38px;
	/* border: 1px solid #FF0000; */
	text-align: center;
	line-height: 38px;
	font-size: 20px;
	color: #ffffff;
	display: inline-block;
	margin-right: 15px;
	transition: all 700ms ease;
	-webkit-box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48);
	-khtml-box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48);
	-moz-box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48);
	-ms-box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48);
	-o-box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48);
	box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48);
	background-color: #d5aa6d;
	background-image: -webkit-gradient(linear,
 left top, right top,from(#d5aa6d),to(#9b6f45));
	background-image: -webkit-linear-gradient(left,#d5aa6d,#9b6f45);
	background-image: -moz-linear-gradient(left,#d5aa6d,#9b6f45);
	background-image: -ms-linear-gradient(left,#d5aa6d,#9b6f45);
	background-image: -o-linear-gradient(left,#d5aa6d,#9b6f45);
	background-image: linear-gradient(left,#d5aa6d,#9b6f45);
}
.service-img-h8 .owl-nav .owl-next {
	position: relative;
	width: 38px;
	height: 38px;
	/* border: 1px solid #FF0000; */
	text-align: center;
	line-height: 38px;
	font-size: 20px;
	color: #ffffff;
	display: inline-block;
	transition: all 700ms ease;
	-webkit-box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48);
	-khtml-box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48);
	-moz-box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48);
	-ms-box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48);
	-o-box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48);
	box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48);
	background-color: #d5aa6d;
	background-image: -webkit-gradient(linear, left top, right top,from(#d5aa6d),to(#9b6f45));
	background-image: -webkit-linear-gradient(left,#d5aa6d,#9b6f45);
	background-image: -moz-linear-gradient(left,#d5aa6d,#9b6f45);
	background-image: -ms-linear-gradient(left,#d5aa6d,#9b6f45);
	background-image: -o-linear-gradient(left,#d5aa6d,#9b6f45);
}
.service-img-h8 .owl-nav .owl-prev:hover, .service-img-h8 .owl-nav .owl-next:hover {
    /* border: 1px solid #FF0000; */
    color: #000;
    transition: all 700ms ease;
}

.service-img-h8 .owl-nav .owl-next:after {
    position: absolute;
    content: '';
    left: 0px;
    top: 0px;
    width: 0px;
    height: 100%;
    display: block;
    opacity: 0;
	background: #FF0000;
    transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    z-index: -1;
}

.service-img-h8 .owl-nav .owl-next:hover:after {
    width: 100%;
    opacity: 1;
}

.service-img-h8 .owl-nav .owl-prev:after {
    position: absolute;
    content: '';
    right: 0px;
    top: 0px;
    width: 0px;
    height: 100%;
    display: block;
    opacity: 0;
	background: #FF0000;
    transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    z-index: -1;
}

.service-img-h8 .owl-nav .owl-prev:hover:after {
    width: 100%;
    opacity: 1;
}

.service-img-h8 .item .image-box-two .overlay-anim-box2 {
    display: block;
}



/*** 

====================================================================
	service img h8
====================================================================

 ***/

.why-choose-us-h8 {
    position: relative;
    padding: 100px 0px 70px 0px;
}
.why-choose-us-h8 .sec-title {
    margin-bottom: 0;
}
.why-choose-us-h8 .sec-title h3 {
    font-size: 16px;
    color: #FF0000;
    margin-bottom: 15px;
    text-transform: uppercase;
    font-weight: 500;
}
.why-choose-us-h8 .sec-title .title-two h2 {
    font-size: 36px;
    color: #222;
    margin-bottom: 32px;
    line-height: 48px;
    margin-bottom: 15px;
    line-height: 50px;
    color: #001659;
    font-size: 48px;
}
.why-choose-us-h8 .sec-title .divider {}
.why-choose-us-h8 .sec-title .text p {
    margin-top: 18px;
    font-size: 16px;
    line-height: 30px;
    padding-right: 30px;
}


.why-choose-us-h8 .right-side {}
.why-choose-us-h8 .right-side .item {
    position: relative;
    padding: 0px 0px 0px 80px;
    margin-bottom: 22px;
}
.why-choose-us-h8 .right-side .item .icon {
    position: absolute;
    left: 10px;
    top: 25px;
}
.why-choose-us-h8 .right-side .item .icon span:before {
    font-size: 45px;
    color: #FF0000;
}
.why-choose-us-h8 .right-side .item .title {}
.why-choose-us-h8 .right-side .item .title h3 {
    font-size: 23px;
    color: #222222;
    font-weight: 600;
    margin-bottom: 12px;
}
.why-choose-us-h8 .right-side .item .text p {
    font-size: 16px;
    color: #777777;
    line-height: 30px;
}


/*** 

====================================================================
	funfact h8
====================================================================

 ***/

.funfact-h8 {
    position: relative;
    padding: 100px 0px 100px 0px;
    background-repeat: repeat;
}
.funfact-h8 .item {
    position: relative;
    padding-left: 94px;
    padding-top: 13px;
}
.funfact-h8 .item .icon {
    position: absolute;
    left: 5px;
    top: 30px;
}
.funfact-h8 .item .icon span:before {
    font-size: 50px;
    color: #FF0000;
}
.funfact-h8 .item .count-box {
    font-size: 36px;
    color: #fff;
    font-weight: 600;
}
.funfact-h8 .item .count-box .count-text {
    color: #fff;
    margin-bottom: 15px;
    line-height: 46px;
    color: #001659;
    font-size: 65px;
    font-weight: 700;
}
.funfact-h8 .item .counter-title {
    font-size: 16px;
    color: #454545;
    margin-top: 10px;
    font-weight: 600;
}


/*** 

====================================================================
		portfolio h8
====================================================================

***/

.portfolio-h8 {
    position: relative;
    padding: 100px 0px 80px 0px;
}

.portfolio-h8 .sec-title {
    text-align: center;
}
.portfolio-h8 .sec-title h3 {
    font-size: 17px;
    color: #FF0000;
    margin-bottom: 0px;
    text-transform: uppercase;
    font-weight: 500;
}
.portfolio-h8 .sec-title .title-two h2 {
    font-size: 36px;
    color: #222222;
    line-height: 30px;
    margin-bottom: 32px;
    margin-bottom: 15px;
    line-height: 60px;
    color: #001659;
    font-size: 36px;
}
.portfolio-h8 .sec-title .divider {}

.portfolio-h8 .filters {
    position: relative;
    margin-bottom: 30px;
}

.portfolio-h8 .portfolio-pagination {
    position: absolute;
    left: 560px;
    top: 0;
}

.portfolio-h8 .portfolio-pagination .inner {
    position: relative;
    text-align: center;
    font-size: 11px;
    line-height: 30px;
    color: #000000;
    font-weight: 700;
    background: #EBEBEB;
    padding: 0px 30px 0px 20px;
    border-radius: 30px;
}

.portfolio-h8 .portfolio-pagination .inner:before {
    position: absolute;
    content: "\f038";
    right: 15px;
    top: 0;
    font-family: 'Font Awesome 5 Free';
    font-weight: 800;
    color: #3B3B3B;
}

.portfolio-h8 .portfolio-pagination .inner span{
	position: relative;
	padding: 0 5px;
	display: inline-block;
}

.portfolio-h8 .filters .filter-btns {
    text-align: center;
    display: block;
    margin: 0px 100px;
    margin-bottom: 50px;
}

.portfolio-h8 .filters li {
    position: relative;
    display: inline-block;
    font-size: 16px;
    padding: 0px 7px;
    font-weight: 700;
    color: #222222;
    cursor: pointer;
    padding-bottom: 13px;
    margin-right: 0;
    margin: 0px 20px;
}

.portfolio-h8 .filter-nrm {
    float: left;
    color: #777777;
    font-size: 11px;
    font-weight: 600;
}

.portfolio-h8 .filters li.active {
    position: relative;
    display: inline-block;
    font-size: 16px;
    font-weight: 700;
    color: #FF0000;
    margin-right: 0;
    padding: 0px 7px;
}

.portfolio-h8 .filters li.active:before {
    position: absolute;
    left: 0;
    bottom: -4px;
    right: 0;
    margin: 0 auto;
    content: "";
    height: 2px;
    width: 100%;
    z-index: 1;
    background: #CCCCCC;
    text-align: center;
    opacity: 1;
    transition: all 900ms ease;
}

.portfolio-h8 .filters li:before {
    position: absolute;
    left: 0;
    bottom: -32px;
    content: "";
    height: 5px;
    width: 100%;
    z-index: 1;
    background: #FF9600;
    text-align: center;
    opacity: 0;
    transition: all 900ms ease;
}
.portfolio-h8 .project-block {
    position: relative;
    padding: 0 10px;
    padding-bottom: 10px;
    margin-bottom: 0;
    overflow: hidden;
}
.portfolio-h8 .project-block .image {
    position: relative;
    margin-bottom: 0;
    display: inline-block;
    overflow: hidden;
}
.portfolio-h8 .project-block .image .overlay-box {
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    background: rgba(0, 0, 0, 0.9);
    z-index: 3;
    opacity: 0;
    transform: scale(0) rotate(0deg);
    transition: all 700ms ease 300ms;
    overflow: hidden;
}
.portfolio-h8 .project-block:hover .image .overlay-box {
    opacity: 1;
    transform: scale(1.0) rotate(0deg);
    transition: all 700ms ease 200ms;
    visibility: visible;
}
.portfolio-h8 .project-block .image .overlay-box .box{}
.portfolio-h8 .project-block .image .overlay-box h2 {
    font-size: 20px;
    color: #EDF2FF;
    text-transform: uppercase;
    letter-spacing: 4px;
}
.portfolio-h8 .project-block .image .overlay-box .title {
    transform: rotate(-90deg);
    position: absolute;
    bottom: 150px;
    left: -35px;
}
.portfolio-h8 .project-block .image .overlay-box h2:before {
    position: absolute;
    left: -142px;
    bottom: -103px;
    width: 2px;
    height: 230px;
    background: #343539;
    content: "";
    transform: rotate(90deg);
}
.portfolio-h8 .project-block .image .overlay-box a {
    font-size: 18px;
    color: #FFFFFF;
    position: absolute;
    bottom: 38px;
    right: 54px;
    transition: all 700ms ease;
}
.portfolio-h8 .project-block .image .overlay-box a i {
    margin-left: 12px;
    font-size: 18px;
    transform: rotate(45deg);
	transition: all 700ms ease;
}
.portfolio-h8 .project-block .image .overlay-box a:hover {
    color: #FF0000;
	transition: all 700ms ease;
}
.portfolio-h8 .project-block .image .overlay-box a:hover i {
    color: #FF0000;
	transition: all 700ms ease;
}
.portfolio-h8 .project-block .image .overlay-box .box .link {
    position: absolute;
    right: 5px;
    top: 20px;
}
.portfolio-h8 .project-block .image .overlay-box .box .link a span:before {
    color: #fff;
    font-size: 25px;
    transition: all 500ms ease;
    text-align: center;

    padding: 15px 15px;
    border-radius: 54px;
}
.portfolio-h8 .btn-box {
    text-align: center;
    margin: 75px 0px 30px 0px;
}
.portfolio-h8 .btn-box a {
    position: relative;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    padding: 17px 40px;
    background: #222;
    transition: all 700ms ease;
    z-index: 1;
    display: inline-block;
    overflow: hidden;
    -khtml-box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48);
    -moz-box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48);
    -ms-box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48);
    -o-box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48);
    background-color: #d5aa6d;
    background-image: -moz-linear-gradient(left,#d5aa6d,#9b6f45);
    background-image: -ms-linear-gradient(left,#d5aa6d,#9b6f45);
    background-image: -o-linear-gradient(left,#d5aa6d,#9b6f45);
    background-image: linear-gradient(left,#d5aa6d,#9b6f45);
    -webkit-box-shadow: 0 4px 7px rgb(248, 105, 41);
    -khtml-box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48);
    -moz-box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48);
    -ms-box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48);
    -o-box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48);
    box-shadow: 0 4px 7px rgba(255, 94, 20, 0.49);
    background-color: #FF0000;
    background-image: -webkit-gradient(linear, left top, right top,from(#f96a29),to(#d35417));
    background-image: -webkit-linear-gradient(left,#f96928,#d25215);
    background-image: -moz-linear-gradient(left,#d5aa6d,#9b6f45);
    background-image: -ms-linear-gradient(left,#d5aa6d,#9b6f45);
    background-image: -o-linear-gradient(left,#d5aa6d,#9b6f45);
    background-image: linear-gradient(left,#d5aa6d,#9b6f45);
}
.portfolio-h8 .btn-box a:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    height: 100%;
    width: 100%;
    background: #FF0000;
    -webkit-transform: scale(0, 1);
    -ms-transform: scale(0, 1);
    transform: scale(0, 1);
    -webkit-transform-origin: bottom right;
    -ms-transform-origin: bottom right;
    transform-origin: bottom right;
    -webkit-transition: transform 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -moz-transition: transform 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -o-transition: transform 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
    transition: transform 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -webkit-transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -moz-transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -o-transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
    transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
	    border-bottom-right-radius: 40px;
    border-bottom-left-radius: 0px;
    border-top-right-radius: 40px;
    border-top-left-radius: 0px;
}
.portfolio-h8 .btn-box a:hover:after {
    -webkit-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    transform: scale(1, 1);
    -webkit-transform-origin: top left;
    -ms-transform-origin: top left;
    transform-origin: top left;
}
.portfolio-h8 .btn-box a:hover {
    color: #222222;
    transition: all 700ms ease;
}



/*** 

====================================================================
		call to action h8
====================================================================

***/

.call-to-action-h8 {
    position: relative;
    padding: 100px 0px 90px 0px;
    background-repeat: no-repeat;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}
.call-to-action-h8:before {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    content: "";
}
.call-to-action-h8 .left-side {}
.call-to-action-h8 .left-side h3 {
    font-size: 17px;
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 30px;
    text-transform: uppercase;
}
.call-to-action-h8 .left-side h2 {
    font-size: 48px;
    /* color: #222222; */
    font-weight: 600;
    line-height: 24px;
    margin-bottom: 35px;
    font-weight: 600;
    /* line-height: 60px; */
    color: #ffffff;
    font-size: 36px;
    /* font-size: 36px; */
    /* line-height: 50px; */
    /* text-transform: uppercase; */
    /* color: #001659; */
    font-weight: 700;
    text-transform: capitalize;
    /* line-height: 50px; */
    font-size: 40px;
}
.call-to-action-h8 .left-side h2 span {
    color: #FF0000;
}
.call-to-action-h8 .left-side p {
    font-size: 17px;
    color: #ffffff;
    line-height: 30px;
    font-weight: 600;
}
.call-to-action-h8 .btn-box {
    position: relative;
    padding: 45px 0px 0px 0px;
}
.call-to-action-h8 .btn-box a {transition: all 700ms ease;position: relative;display: inline-block;font-size: 18px;line-height: 30px;color: #ffffff;padding: 15px 40px;font-weight: 600;overflow: auto;z-index: 1;-khtml-box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48);-moz-box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48);-ms-box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48);-o-box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48);/* -webkit-box-shadow: 0 4px 7px rgb(248, 105, 41); */-khtml-box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48);-moz-box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48);-ms-box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48);-o-box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48);/* box-shadow: 0 4px 7px rgba(255, 94, 20, 0.49); */background-color: #FF0000;border-radius: 4px;}

.call-to-action-h8 .btn-box a:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    height: 100%;
    width: 100%;
    background: #fff;
    -webkit-transform: scale(0, 1);
    -ms-transform: scale(0, 1);
    transform: scale(0, 1);
    -webkit-transform-origin: bottom right;
    -ms-transform-origin: bottom right;
    transform-origin: bottom right;
    -webkit-transition: transform 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -moz-transition: transform 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -o-transition: transform 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
    transition: transform 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -webkit-transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -moz-transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -o-transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
    transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
    /* border-bottom-right-radius: 40px; */
    /* border-bottom-left-radius: 0px; */
    /* border-top-right-radius: 40px; */
    /* border-top-left-radius: 0px; */
}
.call-to-action-h8 .btn-box a:hover:after {
    -webkit-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    transform: scale(1, 1);
    -webkit-transform-origin: top left;
    -ms-transform-origin: top left;
    transform-origin: top left;
}
.call-to-action-h8 .btn-box a:hover {
    color: #222222;
    transition: all 700ms ease;
}

/*** 

====================================================================
		faq-form-h8
====================================================================

***/

.faq-form-h8 {
    position: relative;
    padding: 100px 0px 100px 0px;
}

.faq-form-h8 .sec-title {
    margin-bottom: 40px;
}
.faq-form-h8 .sec-title .subtitle {
    margin-bottom: 15px;
}
.faq-form-h8 .sec-title h3 {
    font-size: 16px;
    color: #FF0000;
    text-transform: uppercase;
    text-transform: uppercase;
    position: relative;
    color: #FF0000;
    font-size: 17px;
    line-height: 1.6em;
    font-weight: 500;
}
.faq-form-h8 .sec-title .title-two h2 {
    font-size: 36px;
    color: #222;
    margin-bottom: 32px;
    line-height: 48px;
    position: relative;
    color: #001659;
    font-size: 48px;
    font-weight: 600;
    line-height: 1.3em;
    margin-bottom: 8px;
    text-transform: capitalize;
}
.faq-form-h8 .sec-title .divider {}

.accordion-box-h8 {
	position: relative;
}

.accordion-box-h8 .block {
    position: relative;
    margin-bottom: 20px;
}

.accordion-box-h8 .block:last-child{
	margin-bottom: 0;
}

.accordion-box-h8 .block .acc-btn {
    position: relative;
    font-size: 16px;
    line-height: 25px;
    color: #FF0000;
    font-weight: 600;
    cursor: pointer;
    padding: 16px 30px;
    font-family: "poppins", sans-serif;
    background-color: #ffffff;
    border: 1px solid #CCCCCC;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
    border-radius: 10px;
}

.accordion-box-h8 .block .icon {
    position: absolute;
    right: 0px;
    top: 0px;
    font-size: 15px;
    font-weight: 700;
    color: #222222;
    height: 55px;
    line-height: 55px;
    width: 60px;
    text-align: center;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
}

.accordion-box-h8 .block .acc-btn.active .icon {
    color: #fff;
}

.accordion-box-h8 .block .acc-btn.active .icon:before{
	content: "\f109";
	font-size: 12px;
	font-weight: 600;
}
.accordion-box-h8 .block .acc-btn .icon:before{
	font-size: 12px;
	font-weight: 600;
}

.accordion-box-h8 .block .acc-btn.active {
    position: relative;
    background-color: #FF0000;
    color: #fff;
    border: #FF0000;
}

.accordion-box-h8 .block .acc-content{
	position:relative;
	display:none;
}

.accordion-box-h8 .block .content {
    position: relative;
    padding: 15px 30px 5px;
}

.accordion-box-h8 .block .acc-content.current{ 
	display: block;
}

.accordion-box-h8 .block .content .text {
    display: block;
    font-size: 16px;
    line-height: 28px;
    color: #666666;
}
.faq-form-h8 .content-box {
    box-shadow: 0px 7px 57px 0px rgba(0, 0,
 0, 0.1);
    padding: 50px 50px 50px 50px;
    margin: 0px 0px 0px 50px;
    border-radius: 10px;
}
.faq-form-h8 .content-box .title h2 {
    color: #222222;
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 50px;
    position: relative;
    color: #001659;
    font-size: 48px;
    font-weight: 600;
    line-height: 1.3em;
    /* margin-bottom: 8px; */
    text-transform: capitalize;
}

.faq-form-h8 .contact .form-group {
    position: relative;
    margin-bottom: 18px;
}

.faq-form-h8 .contact .form-group:last-child{
	margin-bottom: 0;
}

.faq-form-h8 .contact .form-group input[type="text"],
.faq-form-h8 .contact .form-group input[type="email"],
.faq-form-h8 .contact .form-group input[type="tel"],
.faq-form-h8 .contact .form-group input[type="url"],
.faq-form-h8 .contact .form-group textarea,
.faq-form-h8 .contact .form-group input[type="text"], .faq-form-h8 .contact .form-group input[type="email"], .faq-form-h8 .contact .form-group input[type="tel"], .faq-form-h8 .contact .form-group input[type="url"], .faq-form-h8 .contact .form-group textarea, .faq-form-h8 .contact .form-group select {
    position: relative;
    display: block;
    width: 100%;
    font-size: 14px;
    line-height: 30px;
    color: #777777;
    font-weight: 400;
    height: 50px;
    padding: 10px 30px 9px;
    background-color: transparent;
    border: 1px solid #ACACAC;
    /* border-radius: 10px; */
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.faq-form-h8 .contact ::-webkit-input-placeholder{color: #777777;}
.faq-form-h8 .contact ::-moz-input-placeholder{color: #777777;}
.faq-form-h8 .contact ::-ms-input-placeholder{color: #777777;}

.faq-form-h8 .contact .form-group input:focus,
.faq-form-h8 .contact .form-group select:focus,
.faq-form-h8 .contact .form-group textarea:focus{
	border-color:#c08c4d;
}

.faq-form-h8 .contact .form-group textarea {
    height: 170px;
    margin-bottom: 10px;
    resize: none;
    padding: 10px 30px 9px;
}


.faq-form-h8 .contact label.error{
	color: #ff0000;
}

.faq-form-h8 .theme-btn {
    position: relative;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    padding: 15px 40px;
    background: #222;
    /* border-bottom-right-radius: 40px; */
    /* border-bottom-left-radius: 0px; */
    /* border-top-right-radius: 40px; */
    /* border-top-left-radius: 0px; */
    transition: all 700ms ease;
    margin-top: 8px;
    cursor: pointer;
    display: inline-block;
    overflow: hidden;
    z-index: 1;
    -webkit-box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48);
    -khtml-box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48);
    -moz-box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48);
    -ms-box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48);
    -o-box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48);
    box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48);
    background-color: #FF0000;
    /* background-image: -webkit-gradient(linear, left top, right top,from(#d5aa6d),to(#9b6f45)); */
    /* background-image: -webkit-linear-gradient(left,#d5aa6d,#9b6f45); */
    background-image: -moz-linear-gradient(left,#d5aa6d,#9b6f45);
    background-image: -ms-linear-gradient(left,#d5aa6d,#9b6f45);
    background-image: -o-linear-gradient(left,#d5aa6d,#9b6f45);
}
.faq-form-h8 .theme-btn:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    height: 100%;
    width: 100%;
    background: #FF0000;
    -webkit-transform: scale(0, 1);
    -ms-transform: scale(0, 1);
    transform: scale(0, 1);
    -webkit-transform-origin: bottom right;
    -ms-transform-origin: bottom right;
    transform-origin: bottom right;
    -webkit-transition: transform 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -moz-transition: transform 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -o-transition: transform 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
    transition: transform 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -webkit-transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -moz-transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -o-transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
    transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
	    border-bottom-right-radius: 40px;
    border-bottom-left-radius: 0px;
    border-top-right-radius: 40px;
    border-top-left-radius: 0px;
}
.faq-form-h8 .theme-btn:hover:after {
    -webkit-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    transform: scale(1, 1);
    -webkit-transform-origin: top left;
    -ms-transform-origin: top left;
    transform-origin: top left;
}
.faq-form-h8 .theme-btn:hover {
    color: #222222;
    transition: all 700ms ease;
}


/*** 

====================================================================
		testimonials h8
====================================================================

***/


.testimonials-h8 {
    position: relative;
    padding: 100px 0px 100px 0px;
    background-repeat: repeat;
    background-size: cover;
    position: relative;
    padding: 100px 0px 100px 0px;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    padding-left: 0px;
}
.testimonials-h8:before {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 70%;
    height: 100%;
    background: rgb(255 94 20);
    content: "";
}
.testimonials-h8 .sec-title {
    text-align: center;
}
.testimonials-h8 .sec-title h3 {
    /* font-size: 16px; */
    /* color: #FF0000; */
    margin-bottom: 5px;
    /* text-transform: uppercase; */
    text-transform: uppercase;
    position: relative;
    color: #ffffff;
    font-size: 17px;
    line-height: 1.6em;
    font-weight: 600;
    text-align: left;
}
.testimonials-h8 .sec-title .title-two h2 {
    /* font-size: 36px; */
    /* color: #fff; */
    /* line-height: 30px; */
    /* margin-bottom: 5px; */
    /* line-height: 48px; */
    color: #ffffff;
    /* font-size: 40px; */
    /* font-size: 36px; */
    /* line-height: 50px; */
    /* text-transform: capitalize; */
    text-align: left;
}
.testimonials-h8 .sec-title .divider {
    display: none;
}

.testimonials-h8 .item {
    position: relative;
    text-align: center;
}
.testimonials-h8 .item .image-box {}
.testimonials-h8 .item .image-box img {
	width: 100px;
	height: 100px;
	/* margin: 0 auto; */
	text-align: left;
}
.testimonials-h8 .item .text {
    margin-top: 34px;
	margin-bottom: 25px;
}
.testimonials-h8 .item .text p {
    font-size: 19px;
    color: #fefefe;
    line-height: 36px;
    font-style: italic;
    text-align: left;
}
.testimonials-h8 .item .icon {
    position: absolute;
    left: 77%;
    top: 68px;
}
.testimonials-h8 .item .icon i {
    font-size: 104px;
    color: #ffffff61;
}
.testimonials-h8 .item .title h3 {
    margin-bottom: 6px;
    font-size: 20px;
    color: #ffffff;
    font-weight: 600;
    margin-top: 40px;
    text-align: left;
}
.testimonials-h8 .item .dasignation h4 {
    font-size: 12px;
    color: #ffffff;
    text-transform: uppercase;
    font-weight: 600;
    text-align: left;
}
.testimonials-h8 .owl-nav{
    position: absolute;
    width: 100%;
    top: 50%;
    margin-top: -25px;
    z-index: 99;
    opacity: 0;
    -webkit-transition:all 300ms ease;
    -moz-transition:all 300ms ease;
    -ms-transition:all 300ms ease;
    -o-transition:all 300ms ease;
    transition: all 300ms ease;
    /* text-align: left; */
}

.testimonials-h8:hover .owl-nav{
	opacity: 1;
}

.testimonials-h8 .owl-prev {
    left: 50px;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    position: relative;
    width: 48px;
    height: 48px;
    text-align: center;
    line-height: 48px;
    font-size: 20px;
    color: #fff;
    display: inline-block;
    transition: all 700ms ease;
    -khtml-box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48);
    -moz-box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48);
    -ms-box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48);
    -o-box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48);
    background-image: -moz-linear-gradient(left,#d5aa6d,#9b6f45);
    background-image: -ms-linear-gradient(left,#d5aa6d,#9b6f45);
    background-image: -o-linear-gradient(left,#d5aa6d,#9b6f45);
    background-image: linear-gradient(left,#d5aa6d,#9b6f45);
    -webkit-box-shadow: 0 4px 7px rgb(248, 105, 41);
    -khtml-box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48);
    -moz-box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48);
    -ms-box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48);
    -o-box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48);
    box-shadow: 0 4px 7px rgba(255, 94, 20, 0.49);
    background-color: #ffffff;
    background-image: -webkit-gradient(linear, left top, right top,from(#f96a29),to(#d35417));
    /* background-image: -webkit-linear-gradient(left,#f96928,#d25215); */
    background-image: -moz-linear-gradient(left,#d5aa6d,#9b6f45);
    background-image: -ms-linear-gradient(left,#d5aa6d,#9b6f45);
    background-image: -o-linear-gradient(left,#d5aa6d,#9b6f45);
    display: none;
}

.testimonials-h8 .owl-next {
    position: absolute;
    top: 0;
    font-weight: 400;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    width: 48px;
    height: 48px;
    text-align: center;
    line-height: 48px;
    font-size: 20px;
    color: #fff;
    display: inline-block;
    transition: all 700ms ease;
    -khtml-box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48);
    -moz-box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48);
    -ms-box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48);
    -o-box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48);
    background-image: -moz-linear-gradient(left,#d5aa6d,#9b6f45);

    background-image: -ms-linear-gradient(left,#d5aa6d,#9b6f45);
    background-image: -o-linear-gradient(left,#d5aa6d,#9b6f45);
    background-image: linear-gradient(left,#d5aa6d,#9b6f45);
    -webkit-box-shadow: 0 4px 7px rgb(248, 105, 41);
    -khtml-box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48);
    -moz-box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48);
    -ms-box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48);
    -o-box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48);
    box-shadow: 0 4px 7px rgba(255, 94, 20, 0.49);
    background-color: #FF0000;
    background-image: -webkit-gradient(linear, left top, right top,from(#f96a29),to(#d35417));
    background-image: -webkit-linear-gradient(left,#f96928,#d25215);
    background-image: -moz-linear-gradient(left,#d5aa6d,#9b6f45);
    background-image: -ms-linear-gradient(left,#d5aa6d,#9b6f45);
    background-image: -o-linear-gradient(left,#d5aa6d,#9b6f45);
    display: none;
}

.testimonials-h8 .owl-next{
	left: auto;
	right: 50px;
}

.testimonials-h8 .owl-prev:hover,
 .testimonials-h8 .owl-next:hover {
    color: #000000;
    border-color: #FF0000;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
    background: #fff;
}

/*** 

====================================================================
		latest news h8
====================================================================

***/

.latest-news-h8 {
	position: relative;
	padding: 100px 0px 100px 0px;
}
.latest-news-h8 .sec-title {
    margin-bottom: 40px;
    display: inline-block;
}
.latest-news-h8 .sec-title .subtitle {
    margin-bottom: 15px;
}
.latest-news-h8 .sec-title h3 {
    font-size: 16px;
    color: #FF0000;
    text-transform: uppercase;
    color: #222;
    font-size: 16px;
    line-height: 1.6em;
    font-weight: 600;
}
.latest-news-h8 .sec-title .title-two h2 {
    /* font-size: 36px; */
    /* color: #222; */
    /* margin-bottom: 32px; */
    /* line-height: 48px; */
    /* position: relative; */
    /* color: #001659; */
    /* font-size: 48px; */
    /* font-weight: 600; */
    /* line-height: 1.3em; */
    /* margin-bottom: 8px; */
    /* text-transform: capitalize; */
}
.latest-news-h8 .sec-title .divider {
    display: none;
}

.latest-news-h8 .btn-box {
    float: right;
    position: relative;
    margin-top: 115px;
    margin-right: 10px;
}
.latest-news-h8 .btn-box a {
    font-size: 18px;
    color: #FF0000;
    font-weight: 600;
    display: none;
}
.latest-news-h8 .left-side .item {
    position: relative;
}

.latest-news-h8 .left-side .lower-content {
    position: absolute;
    bottom: 30px;
    left: 50px;
}
.latest-news-h8 .left-side .lower-content span {
    font-size: 16px;
    color: #ff5f15;
}
.latest-news-h8 .left-side .lower-content i {
    font-size: 16px;
    color: #FF0000;
    margin-right: 10px;
}
.latest-news-h8 .left-side .lower-content h3 {
    margin-top: 12px;
    margin-bottom: 12px;
}
.latest-news-h8 .left-side .lower-content h3 a {
    font-size: 30px;
    color: #ffffff;
    font-weight: 600;
    line-height: 48px;
    transition: all 700ms ease;
}
.latest-news-h8 .left-side .lower-content h3 a:hover {
    color: #FF0000;
	transition: all 700ms ease;
}
.latest-news-h8 .left-side .lower-content span.author {
    margin-left: 30px;
}

.latest-news-h8 .right-side .item {
    background: #001659;
    padding: 20px;
    margin-bottom: 30px;
    /* -webkit-box-shadow: 0 4px 7px rgba(255, 94, 20, 0.39); */
    -khtml-box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48);
    -moz-box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48);
    -ms-box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48);
    -o-box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48);
    /* box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48); */
    /* background-color: #d5aa6d; */
    /* background-image: -webkit-gradient(linear, left top, right top,from(#d5aa6d),to(#9b6f45)); */
    /* background-image: -webkit-linear-gradient(left,#d5aa6d,#9b6f45); */
    background-image: -moz-linear-gradient(left,#d5aa6d,#9b6f45);
    background-image: -ms-linear-gradient(left,#d5aa6d,#9b6f45);
    background-image: -o-linear-gradient(left,#d5aa6d,#9b6f45);
    border-bottom: 3px solid #ff6016;
    border-radius: 4px;
}
.latest-news-h8 .right-side .lower-content {
    position: relative;
}
.latest-news-h8 .right-side .lower-content span {
    font-size: 16px;
    color: #ffffff;
}
.latest-news-h8 .right-side .lower-content i {
    font-size: 16px;
    color: #ffffff;
    margin-right: 15px;
}
.latest-news-h8 .right-side .lower-content h3 {
    margin-top: 12px;
    margin-bottom: 11px;
    line-height: 32px;
}
.latest-news-h8 .right-side .lower-content h3 a {
    font-size: 20px;
    color: #fff;
    font-weight: 600;
    line-height: 30px;
    transition: all 700ms ease;
}
.latest-news-h8 .right-side .lower-content h3 a:hover {
    color: #001659;
    transition: all 700ms ease;
}
.latest-news-h8 .right-side .lower-content span.author {
    margin-left: 30px;
}

.latest-news-h8 .owl-nav{
	display: none;
}

.latest-news-h8 .owl-dots {
    text-align: center;
    position: absolute;
    right: 20px;
    bottom: 15px;
}

.latest-news-h8 .owl-dot {
    position: relative;
    display: inline-block;
    height: 10px;
    width: 10px;
    background-color: #fff;
    margin-bottom: 12px;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
    margin: 0px 5px;
}

.latest-news-h8 .owl-dot.active,
.latest-news-h8 .owl-dot:hover{
	height: 10px;
    width: 10px;
	background-color:#FF0000;
}

.latest-news-h8 .owl-carousel .owl-dots.disabled {
    display: block;
}

/*** 

====================================================================
	team-h8
====================================================================

***/

.clients-h8 {
    position: relative;
    padding: 100px 0px 90px 0px;
    border-radius: 0px;
}
.clients-h8 ul {}
.clients-h8 ul li {}
.clients-h8 ul li a {}
.clients-h8 ul li a img {
    width: 152px !important;
    margin: 0 auto;
}



/*** 

====================================================================
	banner section h9
====================================================================

 ***/

.banner-section-h9 {
    position: relative;
    background-repeat: no-repeat;
    padding: 150px 0px 200px 0px;
    margin-top: 0;
    text-align: center;
}
.banner-section-h9:before {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    content: "";
}
.banner-section-h9 .item {}
.banner-section-h9 .item h3 {
    font-size: 18px;
    color: #FFFFFF;
    line-height: 36px;
    margin-top: 40px;
    margin-bottom: 16px;
    background: #FF000030;
    display: inline-block;
    padding: 5px 20px;
}
.banner-section-h9 .item h2 {
    font-size: 60px;
    color: #FFFFFF;
    font-weight: 600;
    line-height: 72px;
}


/*** 

====================================================================
	service img h9
====================================================================

 ***/

.service-img-h9 {
    position: relative;
    padding: 50px 0px 100px 0px;
}
.service-img-h9 .item {
    margin-bottom: 30px;
}
.service-img-h9 .item .image-box {
    overflow: hidden;
    border-radius: 10px 10px 0px 0px;
}
.service-img-h9 .item .image-box .overlay-anim-box2 {
    display: block;
}
.service-img-h9 .item .image-box img {}
.service-img-h9 .item .lower-content {
    position: relative;
    padding: 30px;
    /* border: 1px solid #fafafa; */
    box-shadow: 0px 0px 15px rgba(0,0,0,0.10);
    background: white;
    border-radius: 0px 0px 10px 10px;
}
.service-img-h9 .item .lower-content .icon {
    position: absolute;
    right: 15px;
    bottom: 15px;
}
.service-img-h9 .item .lower-content .icon span:before {
    color: #0016590d;
    font-size: 151px;
}
.service-img-h9 .item .lower-content .title h3 {
    font-weight: 600;

}
.service-img-h9 .item .lower-content .title h3 a {
    font-size: 23px;
    color: #001659;
    transition: all 700ms ease;
    font-weight: 600;
}
.service-img-h9 .item .lower-content .title h3 a:hover {
    color: #FF0000;
	transition: all 700ms ease;
}
.service-img-h9 .item .lower-content .text p {
    font-size: 16px;
    color: #555555;
    /* line-height: 30px; */
    margin-top: 15px;
    font-weight: 400;
    line-height: 1.7em;
}
.service-img-h9 .item .lower-content .link-btn {}
.service-img-h9 .item .lower-content .link-btn a {
    color: #ffffff;
    background: #dfdfdf;
    padding: 9px 25px 9px 25px;
    position: relative;
    /* top: 40px; */
    z-index: 33;
    font-size: 20px;
    display: inline-block;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    margin-bottom: 12px;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
    margin: 0px 5px;
    -khtml-box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48);
    -moz-box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48);
    -ms-box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48);
    -o-box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48);
    background-image: -moz-linear-gradient(left,#d5aa6d,#9b6f45);
    background-image: -ms-linear-gradient(left,#d5aa6d,#9b6f45);
    background-image: -o-linear-gradient(left,#d5aa6d,#9b6f45);
    background-image: linear-gradient(left,#d5aa6d,#9b6f45);
    /* -webkit-box-shadow: 0 4px 7px rgb(248, 105, 41); */
    -khtml-box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48);
    -moz-box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48);
    -ms-box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48);
    -o-box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48);
    /* box-shadow:
 0 4px 7px rgba(255, 94, 20, 0.49); */
    background-color: #FF0000;
    /* background-image: -webkit-gradient(linear, left top, right top,from(#f96a29),to(#d35417)); */
    /* background-image: -webkit-linear-gradient(left,#f96928,#d25215); */
    background-image: -moz-linear-gradient(left,#d5aa6d,#9b6f45);
    background-image: -ms-linear-gradient(left,#d5aa6d,#9b6f45);
    background-image: -o-linear-gradient(left,#d5aa6d,#9b6f45);
    background-image: linear-gradient(left,#d5aa6d,#9b6f45);
    border-radius: 3px;
}
.service-img-h9 .item .lower-content .link-btn a:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    height: 100%;
    width: 100%;
    background: #222;
    -webkit-transform: scale(0, 1);
    -ms-transform: scale(0, 1);
    transform: scale(0, 1);
    -webkit-transform-origin: bottom right;
    -ms-transform-origin: bottom right;
    transform-origin: bottom right;
    -webkit-transition: transform 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -moz-transition: transform 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -o-transition: transform 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
    transition: transform 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -webkit-transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -moz-transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -o-transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
    transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
    border-radius: 4px;
}
.service-img-h9 .item:hover .lower-content .link-btn a:after {
    -webkit-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    transform: scale(1, 1);
    -webkit-transform-origin: top left;
    -ms-transform-origin: top left;
    transform-origin: top left;
}
.service-img-h9 .item:hover  .lower-content .link-btn a{
    color: #fff;
    transition: all 700ms ease;
}

.service-img-h9 .owl-nav{
	display: none;
}

.service-img-h9 .owl-dots {
    text-align: center;
    margin-top: 50px;
}

.service-img-h9 .owl-dot {
    position: relative;
    display: inline-block;
	  height: 6px;
    width: 25px;
    background-color: #FF0000;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    margin-bottom: 12px;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
    margin: 0px 5px;
    -khtml-box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48);
    -moz-box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48);
    -ms-box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48);
    -o-box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48);
    background-image: -moz-linear-gradient(left,#d5aa6d,#9b6f45);
    background-image: -ms-linear-gradient(left,#d5aa6d,#9b6f45);
    background-image: -o-linear-gradient(left,#d5aa6d,#9b6f45);
    background-image: linear-gradient(left,#d5aa6d,#9b6f45);
    -webkit-box-shadow: 0 4px 7px rgb(248, 105, 41);
    -khtml-box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48);
    -moz-box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48);
    -ms-box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48);
    -o-box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48);
    box-shadow: 0 4px 7px rgba(255, 94, 20, 0.49);
    background-color: #FF0000;
    background-image: -webkit-gradient(linear, left top, right top,from(#f96a29),to(#d35417));
    background-image: -webkit-linear-gradient(left,#f96928,#d25215);
    background-image: -moz-linear-gradient(left,#d5aa6d,#9b6f45);
    background-image: -ms-linear-gradient(left,#d5aa6d,#9b6f45);
    background-image: -o-linear-gradient(left,#d5aa6d,#9b6f45);
 
}

.service-img-h9 .owl-dot.active,
.service-img-h9 .owl-dot:hover{
	width: 30px;
    height: 8px;
	background-color:#222222;
}

.service-img-h9 .owl-carousel .owl-dots.disabled {
    display: block;
}

.service-img-h9 .content-box {
    padding: 50px 35px 55px 35px;
    border-radius: 0px;
    background: #00235a;
    box-shadow: 0px 7px 57px 0px rgba(0, 0, 0, 0.1);
    margin-right: -25px;
    border-radius: 10px;
}
.service-img-h9 .content-box .title h2 {
    color: #222222;
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 30px;
    color: #ffffff;
    font-size: 30px;
    line-height: 50px;
    text-transform: inherit;
}

.service-img-h9 .contact .form-group {
    position: relative;
    margin-bottom: 19px;
}

.service-img-h9 .contact .form-group:last-child{
	margin-bottom: 0;
}

.service-img-h9 .contact .form-group input[type="text"],
.service-img-h9 .contact .form-group input[type="email"],
.service-img-h9 .contact .form-group input[type="tel"],
.service-img-h9 .contact .form-group input[type="url"],
.service-img-h9 .contact .form-group textarea,
.service-img-h9 .contact .form-group input[type="text"], .service-img-h9 .contact .form-group input[type="email"], .service-img-h9 .contact .form-group input[type="tel"], .service-img-h9 .contact .form-group input[type="url"], .service-img-h9 .contact .form-group textarea, .service-img-h9 .contact .form-group select {
    position: relative;
    display: block;
    width: 100%;
    font-size: 14px;
    line-height: 30px;
    color: #777777;
    font-weight: 400;
    height: 50px;
    padding: 15px;
    background-color: #fff;
    border: 1px solid #fff;
    /* border-radius: 10px; */
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
    border-radius: 4px;
}

.service-img-h9 .contact ::-webkit-input-placeholder{color: #777777;}
.service-img-h9 .contact ::-moz-input-placeholder{color: #777777;}
.service-img-h9 .contact ::-ms-input-placeholder{color: #777777;}

.service-img-h9 .contact .form-group input:focus,
.service-img-h9 .contact .form-group select:focus,
.service-img-h9 .contact .form-group textarea:focus{
	border-color:#c08c4d;
}

.service-img-h9 .contact .form-group textarea {
    height: 135px;
    margin-bottom: 10px;
    resize: none;
    padding: 15px;
    border-radius: 4px;
}


.service-img-h9 .contact label.error{
	color: #ff0000;
}

.service-img-h9 .theme-btn {
    position: relative;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    padding: 13px 35px;
    background: #FF0000;
    /* border-bottom-right-radius: 35px; */
    /* border-bottom-left-radius: 0px; */
    /* border-top-right-radius: 35px; */
    /* border-top-left-radius: 0px; */
    transition: all 700ms ease;
    margin-top: 8px;
    display: inline-block;
    z-index: 1;
    overflow: hidden;
}
.service-img-h9 .theme-btn:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    height: 100%;
    width: 100%;
    background: #fff;
    -webkit-transform: scale(0, 1);
    -ms-transform: scale(0, 1);
    transform: scale(0, 1);
    -webkit-transform-origin: bottom right;
    -ms-transform-origin: bottom right;
    transform-origin: bottom right;
    -webkit-transition: transform 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -moz-transition: transform 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -o-transition: transform 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
    transition: transform 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -webkit-transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -moz-transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -o-transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
    transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
    /* border-bottom-right-radius: 35px; */
    /* border-bottom-left-radius: 0px; */
    /* border-top-right-radius: 35px; */
    /* border-top-left-radius: 0px; */
    overflow: hidden;
}
.service-img-h9 .theme-btn:hover:after {
    -webkit-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    transform: scale(1, 1);
    -webkit-transform-origin: top left;
    -ms-transform-origin: top left;
    transform-origin: top left;
}
.service-img-h9 .theme-btn:hover {
	color: #FF0000;
	transition: all 700ms ease;
	background: #ffffff;
}


/*** 

====================================================================
	about h9 
====================================================================

 ***/

.about-h9 {
    position: relative;
    padding-bottom: 10px;
    padding-top: 100px;
    background-position: right;
    background-repeat: no-repeat;
}
.about-h9 .left-side {}
.about-h9 .left-side h2 {
    /* font-size: 36px; */
    /* color: #FF0000; */
    /* font-weight: 600; */
    /* line-height: 55px; */
    /* color: #001659; */
    /* font-size: 36px; */
    /* text-transform: capitalize; */
    font-size: 36px;
    color: #222222;
    font-weight: 700;
    margin-bottom: 15px;
    color: #001659;
    font-weight: 700;
    text-transform: capitalize;
    /* line-height: 50px; */
    font-size: 40px;
    line-height: 1.3em;
}
.about-h9 .left-side h2 span {
    color: #222;
}
.about-h9 .right-side {
    margin-left: -5px;
}
.about-h9 .right-side h3 {
    font-size: 18px;
    color: #001659;
    line-height: 30px;
    font-weight: 600;
}
.about-h9 .right-side p {
    font-size: 17px;
    color: #777777;
    /* line-height: 30px; */
    margin-top: 15px;
}


/*** 

====================================================================
	call to action h9
====================================================================

 ***/

.call-to-action-h9 {
    position: relative;
    background-attachment: fixed;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 100px 0px;
	text-align: center;
}
.call-to-action-h9:before
 {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 94, 20, 0.85);
    content: "";
}
.call-to-action-h9 .text-box {}
.call-to-action-h9 .text-box h2 {
    font-size: 48px;
    color: #FFFFFF;
    font-weight: 600;
    line-height: 72px;
    margin-bottom: 30px;
    font-weight: 700;
    line-height: 55px;
    color: #ffffff;
    font-size: 40px;
}
.call-to-action-h9 .text-box p {
    font-size: 18px;
    color: #fff;
    line-height: 36px;
    margin-bottom: 40px;
}

.call-to-action-h9 .text-box .btn-box a {
 background: #000000;
 transition: all 700ms ease;
 position: relative;
 display: inline-block;
 font-size: 18px;
 line-height: 30px;
 color: #ffffff;
 padding: 15px 40px;
 font-weight: 600;
 overflow: auto;
 z-index: 1;
 border-radius: 4px;
 text-transform: uppercase;
}
.call-to-action-h9 .text-box .btn-box a:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    height: 100%;
    width: 100%;
    background: #fff;
    -webkit-transform: scale(0, 1);
    -ms-transform: scale(0, 1);
    transform: scale(0, 1);
    -webkit-transform-origin: bottom right;
    -ms-transform-origin: bottom right;
    transform-origin: bottom right;
    -webkit-transition: transform 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -moz-transition: transform 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -o-transition: transform 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
    transition: transform 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -webkit-transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -moz-transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -o-transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
    transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
    /* border-bottom-right-radius: 35px; */
    /* border-bottom-left-radius: 0px; */
    /* border-top-right-radius: 35px; */
    border-top-left-radius: 0px;
    overflow: hidden;
}
.call-to-action-h9 .text-box .btn-box a:hover:after {
    -webkit-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    transform: scale(1, 1);
    -webkit-transform-origin: top left;
    -ms-transform-origin: top left;
    transform-origin: top left;
}
.call-to-action-h9 .text-box .btn-box a:hover {
    color: #222;
    transition: all 700ms ease;
}

/*** 

====================================================================
	call to action h9
====================================================================

 ***/

.funfact-skill-h9 {
    position: relative;
    padding: 100px 0px 60px 0px;
    background: #fafafa;
}
.funfact-skill-h9:before {
	position: absolute;
	left: 0;
	top: 0;
	/* background: url(//jaquesofalltrades.com/wp-content/themes/buildnet/assets/images/ex-new/background/funfact-skill-h9-shape.jpg); */
	width: 35%;
	height: 100%;
	content: "";
}
.funfact-skill-h9 .funfact .column .item {
    position: relative;
    padding: 0px 0px 0px 80px;
    margin-bottom: 25px;
    border-bottom: 1px solid #f4f4f4;
}
.funfact-skill-h9 .funfact .column .item .icon {
    position: absolute;
    left: 0px;
    top: 20px;
    background: #FF0000;
    border-radius: 50%;
    width: 50px;
    height: 50px;
}
.funfact-skill-h9 .funfact .column .item .icon span:before {
    font-size: 44px;
    color: #FF0000;
}
.funfact-skill-h9 .funfact .column .count-text {
    /* font-size: 36px; */
    /* color: #222222; */
    /* font-weight: 600; */
    font-weight: 700;
    /* line-height: 60px; */
    color: #001659;
    font-size: 40px;
}
.funfact-skill-h9 .funfact .column .counter-title {}
.funfact-skill-h9 .funfact .column .counter-title p {
    font-size: 16px;
    color: #222;
    font-weight: 600;
    text-transform: uppercase;
}
.funfact-skill-h9 .funfact .column .item .count-outer {
    font-weight: 700;
    font-size: 36px;
    color: #001659;
    margin-bottom: 10px;
    font-weight: 600;
    /* line-height: 60px; */
    /* color: #001659; */
    font-size: 36px;
}


.funfact-skill-h9 .skill .sec-title {
    
}
.funfact-skill-h9 .skill .sec-title h3 {
    /* font-size: 16px; */
    /* color: #FF0000; */
    margin-bottom: 5px;
    /* text-transform: uppercase; */
    /* text-transform: uppercase; */
    position: relative;
    /* color: #818181; */
    /* font-size: 17px; */
    line-height: 1.6em;
    font-weight: 500;
    font-size: 16px;
    color: #222;
    font-weight: 600;
}
.funfact-skill-h9 .skill .sec-title .title-two h2 {
    /* font-size: 36px; */
    /* color: #222; */
    /* line-height: 30px; */
    /* margin-bottom: 32px; */
    /* font-weight: 600; */
    /* line-height: 55px; */
    /* color: #001659; */
    /* font-size: 40px; */
    /* font-size: 36px; */
    /* line-height: 50px; */
    /* text-transform: capitalize; */
}
.funfact-skill-h9 .skill .sec-title .divider {
    display: none;
}
.funfact-skill-h9 .progress-item {
    margin-top: 0px;
    margin-bottom: 27px;
}
.funfact-skill-h9 .progress-item .progress {
    overflow: visible;
}
.funfact-skill-h9 .progress-item .progress-bar {
    background-color: #212121;
    height: 6px;
    position: relative;
    -webkit-transition: all 1s ease 0s;
    -moz-transition: all 1s ease 0s;
    -ms-transition: all 1s ease 0s;
    -o-transition: all 1s ease 0s;
    transition: all 1s ease 0s;
    font-size: 14px;
    transition: all 2000ms ease;
    /* background: -webkit-linear-gradient(left, #483985, #e92e52); */
}
.funfact-skill-h9 .progress-bar .value-holder {
    font-size: 16px;
    color: #4d4d4d;
    position: absolute;
    top: -43px;
    width: 36px;
    right: -18px;
    height: 36px;
    font-weight: 600;
    color: #222222;
    font-size: 17px;
    font-weight: 600;
}
.funfact-skill-h9 .progress-bar .value-holder .value {
	position: relative;
	/* color: #FF0000; */
	/* font-size: 16px; */
	line-height: 33px;
	transition: all 700ms ease;
	/* font-weight: 600; */
	color: #222222;
	font-size: 16px;
	font-weight: 600;
}
.funfact-skill-h9 .progress-bar .value-holder .value:before {
    content: '';
    position: absolute;
    bottom: -19px;
    left: 6px;
    right: 0;
    margin: 0 auto;
    width: 20px;
    height: 10px;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid #b2b2b2;
    transform: rotate(0deg);
    opacity: 1;
}
.funfact-skill-h9 .progress-white .progress {
	padding: 2px;
}
.funfact-skill-h9 .progress {
    box-shadow: none;
    background: #DDDDDD;
    height: 6px;
    border-radius: 0;
}
.funfact-skill-h9 .skill-block .title {
    margin-bottom: 44px;
}
.funfact-skill-h9 .skill-title h3 {
    font-size: 16px;
    color: #222222;
    position: relative;
    margin-top: -10px;
    margin-bottom: 7px;
    font-weight: 600;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4em;
    text-transform: uppercase;
    /* font-family: 'Poppins', sans-serif; */
}
.funfact-skill-h9 .progress-item {
    margin-bottom: 50px;
}


/*** 

====================================================================
		portfolio h9
====================================================================

***/

.portfolio-h9 {
    position: relative;
    padding: 100px 0px 100px 0px;
}

.portfolio-h9 .sec-title h3 {
    margin-bottom: 5px;
    text-transform: uppercase;
    position: relative;
    line-height: 1.6em;
    font-size: 16px;
    color: #222;
    font-weight: 500;
}
.portfolio-h9 .sec-title .title-two h2 {
    font-size: 36px;
    color: #222222;
    line-height: 30px;
    margin-bottom: 15px;
    font-weight: 700;
    line-height: 55px;
    color: #001659;
    font-size: 40px;
    font-size: 40px;
    /* line-height: 50px; */
    text-transform: capitalize;
    line-height: 1.3em;
}
.portfolio-h9 .sec-title .divider {
    display: none;
}

.portfolio-h9 .filters {
    position: relative;
    margin-bottom: 30px;
}

.portfolio-h9 .portfolio-pagination {
    position: absolute;
    left: 560px;
    top: 0;
}

.portfolio-h9 .portfolio-pagination .inner {
    position: relative;
    text-align: center;
    font-size: 11px;
    line-height: 30px;
    color: #000000;
    font-weight: 700;
    background: #EBEBEB;
    padding: 0px 30px 0px 20px;
    border-radius: 30px;
}

.portfolio-h9 .portfolio-pagination .inner:before {
    position: absolute;
    content: "\f038";
    right: 15px;
    top: 0;
    font-family: 'Font Awesome 5 Free';
    font-weight: 800;
    color: #3B3B3B;
}

.portfolio-h9 .portfolio-pagination .inner span{
	position: relative;
	padding: 0 5px;
	display: inline-block;
}

.portfolio-h9 .filters .filter-btns {
    display: block;
    margin-bottom: 50px;
    overflow: hidden;
}

.portfolio-h9 .filters li {
    position: relative;
    display: inline-block;
    font-size: 15px;
    padding: 0px 0px;
    font-weight: 600;
    color: #222222;
    cursor: pointer;
    margin-right: 130px;
    margin-bottom: 15px;
}

.portfolio-h9 .filter-nrm {
    float: left;
    color: #777777;
    font-size: 11px;
    font-weight: 600;
}

.portfolio-h9 .filters li.active {
    color: #FF0000;
}

.portfolio-h9 .filters li.active:before {
    position: absolute;
    left: 0;
    bottom: 0;
    content: "";
    height: 2px;
    width: 100%;
    z-index: 1;
    background: #CCCCCC;
    opacity: 1;
    transition: all 700ms ease;
}

.portfolio-h9 .filters li:before {
    position: absolute;
    left: -200px;
    bottom: 0px;
    content: "";
    height: 2px;
    width: 0;
    z-index: 1;
    background: #FF9600;
    text-align: center;
    opacity: 0;
    transition: all 700ms ease;
}
.portfolio-h9 .project-block {
    position: relative;
    padding: 0 5px;
    padding-bottom: 10px;
    margin-bottom: 0;
    overflow: hidden;
    padding-bottom: 0;
    padding-top: 5px;
    margin-left: -1px;
}
.portfolio-h9 .project-block .image {
    position: relative;
    margin-bottom: 0;
    display: inline-block;
    overflow:
 hidden;
}
.portfolio-h9 .project-block .image .overlay-box {
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    background: rgba(0, 0, 0, 0.9);
    z-index: 3;
    opacity: 0;
    transform: scale(0) rotate(0deg);
    transition: all 700ms ease 300ms;
    overflow: hidden;
}
.portfolio-h9 .project-block:hover .image .overlay-box {
    opacity: 1;
    transform: scale(1.0) rotate(0deg);
    transition: all 700ms ease 200ms;
    visibility: visible;
}
.portfolio-h9 .project-block:hover .image .overlay-box {
    display: none;
}
.portfolio-h9 .project-block .image {
	position: relative;
	border-radius: 5px;
}

.portfolio-h9 .project-block .image::before{
    position: absolute;
    top: 0;
    left: -75%;
    z-index: 2;
    display: block;
    content: '';
    width: 50%;
    height: 100%;
    background: -webkit-linear-gradient(left, rgba(255,255,255,0) 0%, rgba(255,255,255,.3) 100%);
    background: -moz-linear-gradient(left, rgba(255,255,255,0) 0%, rgba(255,255,255,.3) 100%);
    background: -ms-linear-gradient(left, rgba(255,255,255,0) 0%, rgba(255,255,255,.3) 100%);
    background: -o-linear-gradient(left, rgba(255,255,255,0) 0%, rgba(255,255,255,.3) 100%);
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,.3) 100%);
    -webkit-transform: skewX(-25deg);
    -moz-transform: skewX(-25deg);
    -ms-transform: skewX(-25deg);
    -o-transform: skewX(-25deg);
    transform: skewX(-25deg);
}

.portfolio-h9 .project-block:hover .image:before {
	-webkit-animation: shine 1.5s;
	animation: shine 1.5s;
}
@-webkit-keyframes shine {
	100% {
		left: 125%;
	}
}
@keyframes shine {
	100% {
		left: 125%;
	}
}

.portfolio-h9 .project-block .image .overlay-box .box{}
.portfolio-h9 .project-block .image .overlay-box h2 {
    font-size: 18px;
    color: #EDF2FF;
    text-transform: uppercase;
    letter-spacing: 4px;
}
.portfolio-h9 .project-block .image .overlay-box .title {
    transform: rotate(-90deg);
    position: absolute;
    top: 100px;
    left: -35px;
}
.portfolio-h9 .project-block .image .overlay-box h2:before {
    position: absolute;
    left: -142px;
    bottom: -103px;
    width: 2px;
    height: 230px;
    background: #343539;
    content: "";
    transform: rotate(90deg);
}
.portfolio-h9 .project-block .image .overlay-box a {
    font-size: 18px;
    color: #FFFFFF;
    position: absolute;
    bottom: 38px;
    right: 54px;
    transition: all 700ms ease;
}
.portfolio-h9 .project-block .image .overlay-box a i {
    margin-left: 12px;
    font-size: 18px;
    transform: rotate(45deg);
	transition: all 700ms ease;
}
.portfolio-h9 .project-block .image .overlay-box a:hover {
    color: #FF0000;
	transition: all 700ms ease;
}
.portfolio-h9 .project-block .image .overlay-box a:hover i {
    color: #FF0000;
	transition: all 700ms ease;
}
.portfolio-h9 .project-block .image .overlay-box .box .link {
    position: absolute;
    right: 5px;
    top: 20px;
}
.portfolio-h9 .project-block .image .overlay-box .box .link a span:before {
    color: #fff;
    font-size: 25px;
    transition: all 500ms ease;
    text-align: center;
    padding: 15px 15px;
    border-radius: 54px;
}
.portfolio-h9 .btn-box {
    margin-top: 70px;
    margin-left: -15px;
}
.portfolio-h9 .btn-box a {
    transition: all 700ms ease;
    position: relative;
    display: inline-block;
    font-size: 15px;
    line-height: 30px;
    color: #ffffff;
    padding: 15px 40px;
    font-weight: 500;
    overflow: auto;
    z-index: 1;
    -khtml-box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48);
    -moz-box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48);
    -ms-box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48);
    -o-box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48);
    background-image: -moz-linear-gradient(left,#d5aa6d,#9b6f45);
    background-image: -ms-linear-gradient(left,#d5aa6d,#9b6f45);
    background-image: -o-linear-gradient(left,#d5aa6d,#9b6f45);
    background-image: linear-gradient(left,#d5aa6d,#9b6f45);
    -webkit-box-shadow: 0 4px 7px rgb(248, 105, 41);
    -khtml-box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48);
    -moz-box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48);
    -ms-box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48);
    -o-box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48);
    box-shadow: 0 4px 7px rgba(255, 94, 20, 0.49);
    background-color: #FF0000;
    /* background-image: -webkit-gradient(linear, left top, right top,from(#f96a29),to(#d35417)); */
    /* background-image: -webkit-linear-gradient(left,#f96928,#d25215); */
    background-image: -moz-linear-gradient(left,#d5aa6d,#9b6f45);
    background-image: -ms-linear-gradient(left,#d5aa6d,#9b6f45);
    background-image: -o-linear-gradient(left,#d5aa6d,#9b6f45);
    background-image: linear-gradient(left,#d5aa6d,#9b6f45);
    box-shadow: 0 -2px 0 0 rgba(24,24,24,.15) inset;
    text-transform: uppercase;
    letter-spacing: 2px;
}
.portfolio-h9 .btn-box a:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    height: 100%;
    width: 100%;
    background: #000;
    -webkit-transform: scale(0, 1);
    -ms-transform: scale(0, 1);
    transform: scale(0, 1);
    -webkit-transform-origin: bottom right;
    -ms-transform-origin: bottom right;
    transform-origin: bottom right;
    -webkit-transition: transform 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -moz-transition: transform 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -o-transition: transform 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
    transition: transform 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -webkit-transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -moz-transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -o-transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
    transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
    /* border-bottom-right-radius: 35px; */
    /* border-bottom-left-radius: 0px; */
    /* border-top-right-radius: 35px; */
    /* border-top-left-radius: 0px; */
    overflow: hidden;
}
.portfolio-h9 .btn-box a:hover:after {
    -webkit-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    transform: scale(1, 1);
    -webkit-transform-origin: top left;
    -ms-transform-origin: top left;
    transform-origin: top left;
}
.portfolio-h9 .btn-box a:hover {
    color: #fff;
    transition: all 700ms ease;
}

/*** 

====================================================================
		team h9
====================================================================

***/

.team-h9 {
    position: relative;
    padding: 100px 0px 100px 0px;
}

.team-h9 .container {
    max-width: 1600px;
}
.team-h9 .sec-title {
    margin-left: 230px;
    margin-right: -122px;
}
.team-nine-carousel {
    margin-left: 120px;
}
.team-h9 .sec-title .subtitle {
    margin-bottom: 15px;
    text-transform: uppercase;
    position: relative;
    color: #FF0000;
    font-size: 17px;
    line-height: 1.6em;
    font-weight: 500;
}
.team-h9 .sec-title h3 {
    font-size: 16px;
    color: #FF0000;
    text-transform: uppercase;
    font-weight: 500;
    color: #FF0000;
    font-size: 17px;
    line-height: 1.6em;
}
.team-h9 .sec-title .title-two h2 {
    font-size: 36px;
    color: #222222;
    line-height: 30px;
    margin-bottom: 32px;
    position: relative;
    color: #001659;
    font-size: 40px;
    font-weight: 600;
    line-height: 55px;
    margin-bottom: 8px;
    text-transform: capitalize;
}
.team-h9 .sec-title .divider {}
.team-h9 .sec-title .text p {
    font-size: 16px;
    color: #777777;
    line-height: 30px;
}

.team-h9 .item {
    overflow: hidden;
    -khtml-box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48);
    -moz-box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48);
    -ms-box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48);
    -o-box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48);
    background-image: -moz-linear-gradient(left,#d5aa6d,#9b6f45);
    background-image: -ms-linear-gradient(left,#d5aa6d,#9b6f45);
    background-image: -o-linear-gradient(left,#d5aa6d,#9b6f45);
    /* -webkit-box-shadow: 0 4px 7px rgb(248, 105, 41); */
    -khtml-box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48);
    -moz-box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48);
    -ms-box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48);
    -o-box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48);
    /* box-shadow: 0 4px 7px rgba(255, 94, 20, 0.49); */
    /* background-color: #FF0000; */
    /* background-image: -webkit-gradient(linear, left top, right top,from(#f96a29),to(#d35417)); */
    background-image: -webkit-linear-gradient(left,#f96928,#d25215);
    background-image: -moz-linear-gradient(left,#d5aa6d,#9b6f45);
    background-image: -ms-linear-gradient(left,#d5aa6d,#9b6f45);
    background-image: -o-linear-gradient(left,#d5aa6d,#9b6f45);
    background-image: linear-gradient(left,#d5aa6d,#9b6f45);
}
.team-h9 .item .image-box {
    position: relative;
    transition: all 700ms ease;
    /* margin: 0px 5px; */
    /* padding-bottom: 20px; */
}
.team-h9 .item .image-box img {
	transition: all 700ms ease;
}
.team-h9 .item .image-box .social-links {
    position: absolute;
    bottom: 0;
    left: 0;
    background: #222222;
    text-align: center;
    padding: 15px 0px 15px 0px;
    opacity: 0;
    width: 100%;
	transition: all 700ms ease;
}
.team-h9 .item .image-box .social-links li {
    display: inline-block;
}
.team-h9 .item .image-box .social-links li a {
    font-size: 14px;
    color: #fff;
    padding: 14px 12px;
	transition: all 700ms ease;
}
.team-h9 .item .image-box .social-links li a:hover {
    color: #FF0000;
	transition: all 700ms ease;
}
.team-h9 .item .title-box {
    text-align: center;
    padding-bottom: 23px;
}
.team-h9 .item .title-box h3 {
    font-size: 22px;
    color: #222222;
    font-weight: 600;
    margin-top: 20px;

    margin-bottom: 10px;
}
.team-h9 .item .title-box h3 a:hover {
    color: #FF0000;
	transition: all 700ms ease;
}
.team-h9 .item .title-box h3 a {
    color: #ffffff;
}
.team-h9 .item .title-box h4 {
    font-size: 13px;
    color: #f2f2f2;
    font-weight: 400;
}

.team-h9 .item:hover .image-box .social-links {
	opacity: 1;
	bottom: 50px;
	transition: all 700ms ease;
}

.team-h9 .item:hover .image-box img {
    box-shadow: 0px 0px 20px -4px rgba(0, 0, 0, 0.19);
    border-radius: 10px;
    transition: all 700ms ease;
}


.team-h9 .owl-nav {
    position: absolute;
    bottom: 0px;
    left: -297px;
    display: none;
}
.team-h9 .owl-nav .owl-prev {
    width: 46px;
    height: 46px;
    border: 1px solid #FF0000;
    text-align: center;
    line-height: 46px;
    font-size: 20px;
    color: #FF0000;
    display: inline-block;
    margin-right: 15px;
    transition: all 700ms ease;
    border-bottom-left-radius: 20px;
    border-top-left-radius: 20px;
    background: white;
}
.team-h9 .owl-nav .owl-next {
    width: 46px;
    height: 46px;
    border: 1px solid #FF0000;
    text-align: center;
    line-height: 46px;
    font-size: 20px;
    color: #FF0000;
    display: inline-block;
    transition: all 700ms ease;
    border-bottom-right-radius: 20px;
    border-top-right-radius: 20px;
    background: white;
}
.team-h9 .owl-nav .owl-prev:hover, .team-h9 .owl-nav .owl-next:hover {
    border: 2px solid #FF0000;
	color: #FF0000;
	transition: all 700ms ease;
}
/*** 

====================================================================
		priching h9
====================================================================

***/

.pricing-h9 {
    position: relative;
    padding: 140px 0px 100px 0px;
}
.pricing-h9:before {
    position: absolute;
    left: 0;
    bottom: -30px;
    /* background: url(//jaquesofalltrades.com/wp-content/themes/buildnet/assets/images/ex-new/background/pricing-h9-bg.jpg); */
    width: 100%;
    height: 500px;
    content: "";
    background-repeat: no-repeat;
    background-position: center center;
}
.pricing-h9 .sec-title {
    position: relative;
    margin-left: -50px;
}
.pricing-h9 .sec-title h3 {
    font-size: 16px;
    color: #FF0000;
    margin-bottom: 15px;
    text-transform: uppercase;
    text-transform: uppercase;
    position: relative;
    color: #FF0000;
    font-size: 17px;
    line-height: 1.6em;
    font-weight: 500;
}
.pricing-h9 .sec-title .title-two h2 {
    font-size: 36px;
    color: #222;
    line-height: 30px;
    margin-bottom: 32px;
    font-weight: 600;
    line-height: 48px;
    color: #001659;
    font-size: 48px;
}
.pricing-h9 .sec-title .divider {}
.pricing-h9 .sec-title .text p {
    font-size: 16px;
    color: #777777;
    line-height: 30px;
    padding-right: 10px;
}
.pricing-h9 .tabs-box {
    position: relative;
    text-align: center;
}
.pricing-h9 .tabs-box .tabs-content {}
.pricing-h9 .tabs-box .tabs-content {}
.tabs-box .tab.active-tab {
    display: block;
}
.pricing-h9 .pricing-table {
    position: relative;
    margin-bottom: 40px;
    padding: 0px 0px;
    min-width: 330px;
}
.pricing-h9 .pricing-table .inner-box {
    position: relative;
    text-align: center;
    overflow: hidden;
    padding: 60px 55px 70px;
    background: #fff;
    transition: all 700ms ease;
    border: 1px solid #CCCCCC;
}
.pricing-h9 .pricing-table .inner-box:hover {
	box-shadow: 0px 7px 21px 0px rgba(0, 0, 0, 0.1);
	transition: all 700ms ease;
	border: 1px solid #ff6016;
}
.pricing-h9 .pricing-table .inner-box:hover .price{
	color: #FF0000;
	transition: all 700ms ease;
}
.pricing-h9 .pricing-table .inner-box .title {}
.pricing-h9 .pricing-table .inner-box .title h3 {
    color: #222222;
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 700;
}
.pricing-h9 .pricing-table .price {
    position: relative;
    font-size: 60px;
    color: #222222;
    font-weight: 700;
    margin-top: 35px;
    margin-bottom: 0;
	transition: all 700ms ease;
}
.pricing-h9 .pricing-table .price sup {
    position: relative;
    font-size: 60px;
    top: 0;
    margin-right: 5px;
}
.pricing-h9 .pricing-table .price sub {
    position: relative;
    display: inline-block;
    font-size: 24px;
    color: #FF9600;
    letter-spacing: 1px;
    font-weight: 700;
    top: 0px;
}
.pricing-h9 .pricing-table .table-content {
    position: relative;
    margin-top: 0;
    padding-top: 55px;
}
.pricing-h9 .pricing-table .table-content ul {
    position: relative;
    margin-bottom: 40px;
}
.pricing-h9 .pricing-table .table-content ul li {
    position: relative;
    font-size: 16px;
    line-height: 17px;
    margin-bottom: 20px;
    color: #666666;
    font-weight: 500;
    text-align: left;
    margin-left: 70px;
}
.pricing-h9 .pricing-table .table-content ul li:before {
    position: absolute;
    left: -35px;
    bottom: 0px;
    content: "\f00c";
    font-family: "fontawesome";
    color: #BBBBBB;
    font-size: 15px;
}
.pricing-h9 .pricing-table .table-footer {
    position: relative;
    margin-top: 40px;
    text-align: left;
    margin-left: 40px;
}
.pricing-h9 .pricing-table .table-footer a {
    position: relative;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    padding: 10px 43px;
    /* border-radius: 30px; */
}
.pricing-h9 .pricing-table .inner-box .table-footer a {
    transition: all 700ms ease;
    position: relative;
    display: inline-block;
    font-size: 18px;
    line-height: 30px;
    color: #ffffff;
    padding: 15px 40px;
    font-weight: 600;
    overflow: auto;
    z-index: 1;
    -khtml-box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48);
    -moz-box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48);
    -ms-box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48);
    -o-box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48);
    background-image: -moz-linear-gradient(left,#d5aa6d,#9b6f45);
    background-image: -ms-linear-gradient(left,#d5aa6d,#9b6f45);
    background-image: -o-linear-gradient(left,#d5aa6d,#9b6f45);
    -webkit-box-shadow: 0 4px 7px rgb(248, 105, 41);
    -khtml-box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48);
    -moz-box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48);
    -ms-box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48);
    -o-box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48);
    box-shadow: 0 4px 7px rgba(255, 94, 20, 0.49);
    background-color: #FF0000;
    background-image: -webkit-gradient(linear, left top, right top,from(#f96a29),to(#d35417));
    background-image: -webkit-linear-gradient(left,#f96928,#d25215);
    background-image: -moz-linear-gradient(left,#d5aa6d,#9b6f45);
    background-image: -ms-linear-gradient(left,#d5aa6d,#9b6f45);
    background-image: -o-linear-gradient(left,#d5aa6d,#9b6f45);
    background-image: linear-gradient(left,#d5aa6d,#9b6f45);
}
.pricing-h9 .pricing-table .inner-box .table-footer a:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    height: 100%;
    width: 100%;
    background: #fff;
    -webkit-transform: scale(0, 1);
    -ms-transform: scale(0, 1);
    transform: scale(0, 1);
    -webkit-transform-origin: bottom right;
    -ms-transform-origin: bottom right;
    transform-origin: bottom right;
    -webkit-transition: transform 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -moz-transition: transform 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -o-transition: transform 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
    transition: transform 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -webkit-transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -moz-transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -o-transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
    transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
    /* border-bottom-right-radius: 40px; */
    /* border-bottom-left-radius: 0px; */
    /* border-top-right-radius: 40px; */
    /* border-top-left-radius: 0px; */
}

.pricing-h9 .pricing-table.tagged .inner-box .table-footer a:after {
    background: #FF0000;
}
.pricing-h9 .pricing-table .inner-box:hover .table-footer a:after {
    -webkit-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    transform: scale(1, 1);
    -webkit-transform-origin: top left;
    -ms-transform-origin: top left;
    transform-origin: top left;
}
.pricing-h9 .pricing-table .inner-box .table-footer a:hover {
    color: #222222;
    transition: all 700ms ease;
}

.pricing-h9 .pricing-table.tagged {
    z-index: 1;
}
.pricing-h9 .pricing-table.tagged .inner-box .title h3 {
    color: #222;
}
.pricing-h9 .pricing-table.tagged .inner-box {
    box-shadow: 0px 7px 21px 0px rgba(0, 0, 0, 0.1);
    -webkit-transform: scale(0.8);
    -moz-transform: scale(0.8);
    transform: scale(1.1);
    border: 1px solid #fff;
}
.pricing-h9 .pricing-table.tagged .inner-box .title h3 {}
.pricing-h9 .pricing-table.tagged .table-footer a {
    background: #222;
}
.pricing-h9 .pricing-table.tagged .price {
    color: #FF0000;
}
.pricing-h9 .pricing-table.tagged .price sub {
    color: #fff;
}
.pricing-h9 .pricing-table.tagged .table-content ul li {
    color: #666666;
}
.pricing-h9 .tabs-box .tab {
    display: none;
}
.pricing-h9 .tabs-box .tab.active-tab {
    display: block;
    margin-left: -170px;
    position: relative;
    left: 170px;
}
.pricing-h9 .tab-buttons {
    position: absolute;
    left: -335px;
    bottom: 60px;
    display: inline-block;
    margin-bottom: 50px;
    background: #fff;
    border-radius: 30px;
    padding: 3px 4px;
    margin-top: 42px;
    overflow: hidden;
    -khtml-box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48);
    -moz-box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48);
    -ms-box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48);
    -o-box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48);
    background-image: -webkit-linear-gradient(left,#d5aa6d,#9b6f45);
    background-image: -moz-linear-gradient(left,#d5aa6d,#9b6f45);
  
  background-image: -ms-linear-gradient(left,#d5aa6d,#9b6f45);
    background-image: -o-linear-gradient(left,#d5aa6d,#9b6f45);
    background-image: linear-gradient(left,#d5aa6d,#9b6f45);
    -webkit-box-shadow: 0 4px 7px rgb(248, 105, 41);
    -khtml-box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48);
    -moz-box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48);
    -ms-box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48);
    -o-box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48);
    box-shadow: 0 4px 7px rgba(255, 94, 20, 0.49);
    background-color: #FF0000;
    background-image: -webkit-gradient(linear, left top, right top,from(#f96a29),to(#d35417));
    background-image: -webkit-linear-gradient(left,#f96928,#d25215);
    background-image: -moz-linear-gradient(left,#d5aa6d,#9b6f45);
    background-image: -ms-linear-gradient(left,#d5aa6d,#9b6f45);
    background-image: -o-linear-gradient(left,#d5aa6d,#9b6f45);
    background-image: linear-gradient(left,#d5aa6d,#9b6f45);
}
.pricing-h9 .tab-buttons .tab-btn {
    position: relative;
    display: inline-block;
    font-size: 18px;
    line-height: 40px;
    font-weight: 600;
    cursor: pointer;
    color: #222222;
    font-weight: 600;
    background: #fff;
    border-radius: 30px;
    min-width: 120px;
    margin: 0 auto;
    padding: 3px 0px;
    transition: all 700ms ease;
    z-index: 1;
}
.pricing-h9 .tab-buttons .tab-btn.active-btn {
    position: relative;
	transition: all 700ms ease;
}
.pricing-h9 .tab-buttons .tab-btn.active-btn:before {
    left: 0px;
    background: #f86a29;
    transition: all 700ms ease;
}
.pricing-h9 .tab-buttons .tab-btn {
    position: relative;
	transition: all 700ms ease;
}
.pricing-h9 .tab-buttons .tab-btn:before {
    position: absolute;
    left: -100px;
    top: 0;
    width: 120px;
    height: 46px;
    content: "";
    background: transparent;
    border-radius: 30px;
    z-index: -1;
    /* transition: all 700ms ease; */
    /* -webkit-box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48); */
    -khtml-box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48);
    -moz-box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48);
    -ms-box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48);
    -o-box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48);
    /* box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48); */
}
.pricing-h9 .pricing-table .inner-box:before {
	display: none;
}


/*** 

====================================================================
	team h9
====================================================================

***/

.latest-news-h9 {
    position: relative;
    padding: 100px 0px 20px 0px;
    /* margin-bottom: -120px; */
    margin-bottom: 50px;
}
.latest-news-h9 .sec-title {
    text-align: center;
}
.latest-news-h9 .sec-title h3 {
    /* font-size: 16px; */
    /* color: #FF0000; */
    margin-bottom: 5px;
    /* text-transform: uppercase; */
    text-transform: uppercase;
    position: relative;
    /* color: #818181; */
    /* font-size: 17px; */
    line-height: 1.6em;
    /* font-weight: 500; */
    font-size: 16px;
    color: #222;
    font-weight: 600;
}
.latest-news-h9 .sec-title .title-two h2 {
    /* font-size: 36px; */
    /* color: #222222; */
    /* line-height: 30px; */
    /* margin-bottom: 15px; */
    /* line-height: 48px; */
    /* color: #001659; */
    /* font-size: 40px; */
    /* font-size: 36px; */
    /* line-height: 50px; */
    /* text-transform: capitalize; */
}
.latest-news-h9 .sec-title .divider {
    display: none;
}
.latest-news-h9 .item {
    position: relative;
    overflow: hidden;
}
.latest-news-h9 .inner-box {}
.latest-news-h9 .inner-box .image-box {}
.latest-news-h9 .inner-box .image-box .image {
    margin-right: 140px;
}
.latest-news-h9 .inner-box .image-box .image a {}
.latest-news-h9 .inner-box .image-box .image a img {}
.latest-news-h9 .inner-box .lower-content {
    position: relative;
    /* top: -200px; */
    right: 0;
    box-shadow: 2.15px 5.601px 18px 0px rgba(0, 0, 0, 0.07);
    padding: 38px 20px 20px 39px;
    background: #fff;
    margin-left: 20px;
    margin-right: 15px;
    margin-top: -72px;
    margin-bottom: 30px;
    border-radius: 4px;
}
.latest-news-h9 .inner-box .lower-content span {
    font-size: 14px;
    color: #838383;
    font-weight: 600;
}
.latest-news-h9 .inner-box .lower-content i {
    font-size: 16px;
    color: #FF0000;
    margin-right: 10px;
}
.latest-news-h9 .inner-box .lower-content h3 {
    margin-top: 12px;
    margin-bottom: 14px;
    font-weight: 600;
}
.latest-news-h9 .inner-box .lower-content h3 a {
    font-size: 23px;
    color: #222222;
    font-weight: 600;
    line-height: 36px;
    transition: all 700ms ease;
}
.latest-news-h9 .inner-box .lower-content h3 a:hover {
    color: #FF0000;
	transition: all 700ms ease;
}
.latest-news-h9 .inner-box .lower-content text p {
    font-size: 16px;
    color: #777777;
	line-height: 30px;
}
.latest-news-h9 .inner-box .lower-content span.author {
    margin-left: 30px;
}
.latest-news-h9 .inner-box .lower-content .text {
    font-size: 16px;
}
.latest-news-h9 .inner-box .lower-content .link-box {}
.latest-news-h9 .inner-box .lower-content .link-box a {}

.latest-news-h9 .owl-nav {
    position: absolute;
    top: -100px;
    right: 0;
    display: block !important;
    /* display: none; */
}
.latest-news-h9 .owl-nav .owl-prev {
    position: relative;
    width: 48px;
    height: 48px;
    text-align: center;
    line-height: 48px;
    font-size: 20px;
    color: #fff;
    display: inline-block;
    margin-right: 15px;
    transition: all 700ms ease;
    -khtml-box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48);
    -moz-box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48);
    -ms-box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48);
    -o-box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48);
    background-image: -moz-linear-gradient(left,#d5aa6d,#9b6f45);
    background-image: -ms-linear-gradient(left,#d5aa6d,#9b6f45);
    background-image: -o-linear-gradient(left,#d5aa6d,#9b6f45);
    background-image: linear-gradient(left,#d5aa6d,#9b6f45);
    -webkit-box-shadow: 0 4px 7px rgb(248, 105, 41);
    -khtml-box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48);
    -moz-box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48);
    -ms-box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48);
    -o-box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48);
    box-shadow: 0 4px 7px rgba(255, 94, 20, 0.49);
    background-color: #FF0000;
    background-image: -webkit-gradient(linear, left top, right top,from(#f96a29),to(#d35417));
    background-image: -webkit-linear-gradient(left,#f96928,#d25215);
    background-image: -moz-linear-gradient(left,#d5aa6d,#9b6f45);
    background-image: -ms-linear-gradient(left,#d5aa6d,#9b6f45);
    background-image: -o-linear-gradient(left,#d5aa6d,#9b6f45);
    display: none;
}
.latest-news-h9 .owl-nav .owl-next {
    position: relative;
    width: 48px;
    height: 48px;
    text-align: center;
    line-height: 48px;
    font-size: 20px;
    color: #fff;
    display: inline-block;
    transition: all 700ms ease;
    -khtml-box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48);
    -moz-box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48);
    -ms-box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48);
    -o-box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48);
    background-image: -moz-linear-gradient(left,#d5aa6d,#9b6f45);
    background-image: -ms-linear-gradient(left,#d5aa6d,#9b6f45);
    background-image: -o-linear-gradient(left,#d5aa6d,#9b6f45);
    background-image: linear-gradient(left,#d5aa6d,#9b6f45);
    -webkit-box-shadow: 0 4px 7px rgb(248, 105, 41);
    -khtml-box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48);
    -moz-box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48);
    -ms-box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48);
    -o-box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48);
    box-shadow: 0 4px 7px rgba(255, 94, 20, 0.49);
    background-color: #FF0000;
    background-image: -webkit-gradient(linear, left top, right top,from(#f96a29),to(#d35417));
    background-image: -webkit-linear-gradient(left,#f96928,#d25215);
    background-image: -moz-linear-gradient(left,#d5aa6d,#9b6f45);
    background-image: -ms-linear-gradient(left,#d5aa6d,#9b6f45);
    background-image: -o-linear-gradient(left,#d5aa6d,#9b6f45);
    display: none;
}
.latest-news-h9 .owl-nav .owl-prev:hover, .latest-news-h9 .owl-nav .owl-next:hover {
    color: #000000;
    transition: all 700ms ease;
	background: #fff;
}




/*** 

====================================================================
	banner section style h10
====================================================================

 ***/

.banner-section.style-h10 {
    position: relative;
    z-index: 1;
}

.banner-section.style-h10 .slide-item {
	position: relative;
}

.banner-section.style-h10 .slide-item .image-layer {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	opacity: 1;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	-webkit-transform: scale(1);
	-ms-transform: scale(1);
	transform: scale(1);
	transition: all 7000ms linear;
}

.banner-section.style-h10 .active .slide-item .image-layer {
    /* -webkit-transform: scale(1.15); */
    -ms-transform: scale(1.15);
    /* transform: scale(1.15); */
    /* -webkit-transition: all 7000ms linear; */
    -o-transition: all 7000ms linear;
    transition: all 7000ms linear;
}

.banner-section.style-h10 .slide-item:before {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    content: "";
    /* background: red; */
}

.banner-section.style-h10 .banner-carousel .content-box .inner {
    margin-right: 0;
    padding: 200px 0px 200px 0px;
}

.banner-section.style-h10 .content-box {
    width: 100%;
}

.banner-section.style-h10 .banner-carousel .link-box .theme-btn {
    float: unset;
}

.banner-section.style-h10 .title {
    font-size: 18px;
    color: #fff;
    margin-bottom: 20px;
}

.banner-section.style-h10
 .banner-carousel .content-box h3 {

}
.banner-section.style-h10 .banner-carousel .content-box h3 {
    position: relative;
    display: block;
    font-size: 15px;
    line-height: 72px;
    color: #ffffff;
    font-weight: 600;
    opacity: 0;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 100ms ease;
    -ms-transition: all 1000ms ease;
    -o-transition: all 1000ms ease;
    transition: all 1000ms ease;
    -webkit-transform: translateY(-100px);
    -moz-transform: translateY(-100px);
    -ms-transform: translateY(-100px);
    -o-transform: translateY(-100px);
    transform: translateY(-100px);
    text-transform: uppercase;
    /* text-decoration: underline; */
    /* text-underline-position: left; */
    letter-spacing: 2px;
}

.banner-section.style-h10 .active .content-box h3{
	opacity: 1;
	-webkit-transform: translateY(0);
	-moz-transform: translateY(0);
	-ms-transform: translateY(0);
	-o-transform: translateY(0);
	transform: translateY(0);
	-webkit-transition-delay: 1100ms;
	-moz-transition-delay: 1100ms;
	-ms-transition-delay: 1100ms;
	-o-transition-delay: 1100ms;
	transition-delay: 1100ms;
}
.banner-section.style-h10 .banner-carousel .content-box h2 {
    font-size: 54px;
    line-height: 72px;
    font-weight: 700;
	margin-bottom: 25px;
}
.banner-section.style-h10 .active .content-box h2{
	opacity: 1;
	-webkit-transform: translateY(0);
	-moz-transform: translateY(0);
	-ms-transform: translateY(0);
	-o-transform: translateY(0);
	transform: translateY(0);
	-webkit-transition-delay: 1000ms;
	-moz-transition-delay: 1000ms;
	-ms-transition-delay: 1000ms;
	-o-transition-delay: 1000ms;
	transition-delay: 1000ms;
}
.banner-section.style-h10 .banner-carousel .content-box h2 span {
    color: #FF0000;
}

.banner-section.style-h10 .banner-carousel .theme-btn.btn-style-two {
    position: relative;
    color: #fff;
    background: #FF0000;
    transition: all 700ms ease;
    border: none;
    font-size: 15px;
    display: inline-block;
    overflow: hidden;
    z-index: 1;
    -webkit-box-shadow: 0 4px 7px rgba(255, 94, 20, 0.3);
    -khtml-box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48);
    -moz-box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48);
    -ms-box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48);
    -o-box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48);
    box-shadow: 0 -2px 0 0 rgba(24,24,24,.15) inset;
    font-weight: 600!important;
    border-radius: 4px;
    /* letter-spacing: 2px; */
}
.banner-section.style-h10 .banner-carousel .theme-btn.btn-style-two:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    height: 100%;
    width: 100%;
    background: #fff;
    -webkit-transform: scale(0, 1);
    -ms-transform: scale(0, 1);
    transform: scale(0, 1);
    -webkit-transform-origin: bottom right;
    -ms-transform-origin: bottom right;
    transform-origin: bottom right;
    -webkit-transition: transform 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -moz-transition: transform 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -o-transition: transform 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
    transition: transform 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -webkit-transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -moz-transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -o-transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
    transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
}
.banner-section.style-h10 .banner-carousel .theme-btn.btn-style-two:hover:after {
    -webkit-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    transform: scale(1, 1);
    -webkit-transform-origin: top left;
    -ms-transform-origin: top left;
    transform-origin: top left;
}
.banner-section.style-h10 .banner-carousel .theme-btn.btn-style-two:hover {
    color: #222222;
    transition: all 700ms ease;
}
.banner-section.style-h10 .banner-carousel .theme-btn.btn-style-three {
	position: relative;
    color: #222;
    background: #FF0000;
    border-bottom-right-radius: 30px;
    border-bottom-left-radius: 0px;
    border-top-right-radius: 30px;
    border-top-left-radius: 0px;
    transition: all 700ms ease;
	border: none;
	padding: 15px 45px;
	z-index: 1;
	display: inline-block;
}
.banner-section.style-h10 .banner-carousel .theme-btn.btn-style-three:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    height: 100%;
    width: 100%;
    background: #fff;
    -webkit-transform: scale(0, 1);
    -ms-transform: scale(0, 1);
    transform: scale(0, 1);
    -webkit-transform-origin: bottom right;
    -ms-transform-origin: bottom right;
    transform-origin: bottom right;
    -webkit-transition: transform 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -moz-transition: transform 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -o-transition: transform 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
    transition: transform 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -webkit-transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -moz-transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -o-transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
    transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
	    border-bottom-right-radius: 40px;
    border-bottom-left-radius: 0px;
    border-top-right-radius: 40px;
    border-top-left-radius: 0px;
}
.banner-section.style-h10 .banner-carousel .theme-btn.btn-style-three:hover:after {
    -webkit-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    transform: scale(1, 1);
    -webkit-transform-origin: top left;
    -ms-transform-origin: top left;
    transform-origin: top left;
}
.banner-section.style-h10 .banner-carousel .theme-btn.btn-style-three:hover {
    color: #222222;
    transition: all 700ms ease;
}

.banner-section.style-h10 .banner-carousel .owl-prev, .banner-section.style-h10 .banner-carousel .owl-next {
    border-radius: 0px;
}

.banner-section.style-h10 .banner-carousel .owl-prev, .banner-section.style-h10 .banner-carousel .owl-next {
    width: 56px;
    height: 56px;
    color: #ffffff;
    border: 1px solid #fff;
    font-weight: 400;
    line-height: 56px;
    border-radius: 100% !important;
	background-color: transparent;
}

.banner-section.style-h10 .banner-carousel .owl-prev:hover, .banner-section.style-h10 .banner-carousel .owl-next:hover {
    background-color: transparent;
    color: #FF0000;
	border: 1px solid #FF0000;
}

.banner-section.style-h10 .banner-section.style-h10 .arrow-down {
    position: relative;
    left: 0;
    bottom: 100px;
    margin: 0 auto;
    text-align: center;
    z-index: 3;
}
.banner-section.style-h10 .banner-section.style-h10 .arrow-down::before {
    position: absolute;
    content: "\f13d";
    right: 0;
    bottom: -15px;
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: #fff;
    font-size: 25px;
    cursor: pointer;
    left: -13px;
    margin: auto;
}

.banner-section.style-h10 .banner-carousel .content-box h2{
	position: relative;
	display: block;
	font-size: 56px;
	line-height: 64px;
	color: #ffffff;
	font-weight: 600;
	opacity: 0;
	margin-bottom: 15px;
	-webkit-transform: translateY(-50px);
	-moz-transform: translateY(-50px);
	-ms-transform: translateY(-50px);
	-o-transform: translateY(-50px);
	transform: translateY(-50px);
	-webkit-transition: all 1000ms ease;
	-moz-transition: all 100ms ease;
	-ms-transition: all 1000ms ease;
	-o-transition: all 1000ms ease;
	transition: all 1000ms ease;
}

.banner-section.style-h10 .banner-carousel .active .content-box h2{
	opacity: 1;
	-webkit-transform: translateY(0);
	-moz-transform: translateY(0);
	-ms-transform: translateY(0);
	-o-transform: translateY(0);
	transform: translateY(0);
	-webkit-transition-delay: 1500ms;
	-moz-transition-delay: 1500ms;
	-ms-transition-delay: 1500ms;
	-o-transition-delay: 1500ms;
	transition-delay: 1500ms;
}

.banner-section.style-h10 .banner-carousel .content-box .text{
	position: relative;
	display: block;
	font-size: 20px;
	line-height: 34px;
	color: #ffffff;
	font-weight: 400;
	opacity: 0;
	margin-bottom: 40px;
	-webkit-transition: all 1000ms ease;
	-moz-transition: all 100ms ease;
	-ms-transition: all 1000ms ease;
	-o-transition: all 1000ms ease;
	transition: all 1000ms ease;
	-webkit-transform: translateY(-100px);
	-moz-transform: translateY(-100px);
	-ms-transform: translateY(-100px);
	-o-transform: translateY(-100px);
	transform: translateY(-100px);
}

.banner-section.style-h10 .banner-carousel .active  .text{
	opacity: 1;
	-webkit-transform: translateY(0);
	-moz-transform: translateY(0);
	-ms-transform: translateY(0);
	-o-transform: translateY(0);
	transform: translateY(0);
	-webkit-transition-delay: 1400ms;
	-moz-transition-delay: 1400ms;
	-ms-transition-delay: 1400ms;
	-o-transition-delay: 1400ms;
	transition-delay: 1400ms;
}

.banner-section.style-h10 .banner-carousel .link-box{
	position: relative;
	opacity: 0;
	-webkit-transition: all 1000ms ease;
	-moz-transition: all 1000ms ease;
	-ms-transition: all 1000ms ease;
	-o-transition: all 1000ms ease;
	transition: all 1000ms ease;
	-webkit-transform: translateY(-50px);
	-moz-transform: translateY(-50px);
	-ms-transform: translateY(-50px);
	-o-transform: translateY(-50px);
	transform: translateY(-50px);
}

.banner-section.style-h10 .banner-carousel .link-box:after{
	display: table;
	clear: both;
	content: "";
}

.banner-section.style-h10 .banner-carousel .active .link-box{
	opacity: 1;
	-webkit-transform: translateY(0);
	-moz-transform: translateY(0);
	-ms-transform: translateY(0);
	-o-transform: translateY(0);
	transform: translateY(0);
	-webkit-transition-delay: 1900ms;
	-moz-transition-delay: 1900ms;
	-ms-transition-delay: 1900ms;
	-o-transition-delay: 1900ms;
	transition-delay:
 1900ms;
}

.banner-section.style-h10 .banner-carousel .owl-dots{
	display: none;
}

.banner-section.style-h10 .banner-carousel .owl-dots{
	position: absolute;
	left: 0;
	bottom: 50px;
	width: 100%;
	text-align: center;
	display: none;
}

.banner-section.style-h10 .banner-carousel .owl-nav{
    position: absolute;
    width: 100%;
    top: 50%;
    margin-top: -25px;
    z-index: 99;
    opacity: 0;
	-webkit-transition:all 300ms ease;
	-moz-transition:all 300ms ease;
	-ms-transition:all 300ms ease;
	-o-transition:all 300ms ease;
    transition: all 300ms ease;
}

.banner-section.style-h10 .banner-carousel:hover .owl-nav{
	opacity: 1;
}

.banner-section.style-h10 .banner-carousel .owl-prev, 
.banner-section.style-h10 .banner-carousel .owl-next{
	position: absolute;
	top: 0;
	left: 50px;
	height: 50px;
	width: 50px;
	font-size: 20px;
	color: #ffffff;
	font-weight: 400;
	text-align: center;
	line-height: 50px;
	border-radius: 50%;
	background-color: rgba(255,255,255,0.20);
	-webkit-transition:all 300ms ease;
	-moz-transition:all 300ms ease;
	-ms-transition:all 300ms ease;
	-o-transition:all 300ms ease;
    transition: all 300ms ease;
}

.banner-section.style-h10 .banner-carousel .owl-next{
	left: auto;
	right: 50px;
}

.banner-section.style-h10 .banner-carousel .owl-prev:hover, 
.banner-section.style-h10 .banner-carousel .owl-next:hover{
	background-color: #ffffff;
	color: #222222;
}






/*** 

====================================================================
	about h10
====================================================================

 ***/
 
.about-h10 {
    position: relative;
    padding: 80px 0px 80px 0px;
}

.about-h10 .sec-title {}
.about-h10 .sec-title h3 {
    margin-bottom: 7px;
    text-transform: uppercase;
    position: relative;
    color: #222;
    font-size: 16px;
    line-height: 1.6em;
    font-weight: 600;
    margin-top: 0px;
}
.about-h10 .sec-title .title-two h2 {
    /* font-size: 36px; */
    /* color: #222222; */
    /* line-height: 48px; */
    /* margin-bottom: 32px; */
    /* color: #001659; */
    /* font-size: 48px; */
    /* font-weight: 600; */
    /* line-height: 1.3em; */
}
.about-h10 .sec-title .divider {
	display:none!important;
}
.about-h10 .sec-title .btn-box {
    margin-top: 50px;
}
.about-h10 .sec-title .btn-box a {
    position: relative;
    border-radius: 50px;
    font-size: 18px;
    color: #222222;
    padding: 15px 30px 15px 80px;
    border: 1px solid #FF0000;
}
.about-h10 .sec-title .btn-box a:before {
	position: absolute;
	left: 0;
	top: 0;
	background: url(//jaquesofalltrades.com/wp-content/themes/buildnet/assets/images/ex-new/icon/about-h10-icon.png);
	width: 100%;
	height: 100%;
	content: "";
	background-repeat: no-repeat;
}

.about-h10 .right-side {
    margin-left: -30px;
    position: relative;
    left: 30px;
}
.about-h10 .btn-box-two {
    margin-top: 50px;
    display: inline-block;
    margin-right: 45px;
}
.about-h10 .btn-box-two a {
    position: relative;
    /* color: #fff; */
    /* font-size: 15px; */
    font-weight: 500;
    /* padding: 17px 40px; */
    /* background: #222; */
    /* border-bottom-right-radius: 30px; */
    /* border-bottom-left-radius: 0px; */
    /* border-top-right-radius: 30px; */
    /* border-top-left-radius: 0px; */
    /* transition: all 700ms ease; */
    /* z-index: 1; */
    /* overflow: hidden; */
    /* display: inline-block; */*
    font-family: 'Poppins', sans-serif; */
    position: relative;
    /* background: #222; */
    /* border-bottom-right-radius: 30px; */
    /* border-bottom-left-radius: 0px; */
    /* border-top-right-radius: 3px; */
    /* border-top-left-radius: 0px; */
    /* transition: all 700ms ease; */
    /* position: relative; */
    display: inline-block;
    font-size: 18px;
    line-height: 30px;
    color: #fff;
    padding: 15px 35px 15px 35px;
    font-weight: 600;
    overflow: auto;
    /* text-transform: uppercase; */
    /* z-index: 1; */
    /* -webkit-box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48); */
    -khtml-box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48);
    -moz-box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48);
    -ms-box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48);
    -o-box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48);
    /* box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48); */
    background-color: #FF0000;
    /* background-image: -webkit-gradient(linear, left top, right top,from(#d5aa6d),to(#9b6f45)); */
    /* background-image: -webkit-linear-gradient(left,#d5aa6d,#9b6f45); */
    background-image: -moz-linear-gradient(left,#d5aa6d,#9b6f45);
    background-image: -ms-linear-gradient(left,#d5aa6d,#9b6f45);
    background-image: -o-linear-gradient(left,#d5aa6d,#9b6f45);
    background-image: linear-gradient(left,#d5aa6d,#9b6f45);
}
.about-h10 .btn-box-two a:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    height: 100%;
    width: 100%;
    background: #FF0000;
    -webkit-transform: scale(0, 1);
    -ms-transform: scale(0, 1);
    transform: scale(0, 1);
    -webkit-transform-origin: bottom right;
    -ms-transform-origin: bottom right;
    transform-origin: bottom right;
    -webkit-transition: transform 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -moz-transition: transform 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -o-transition: transform 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
    transition: transform 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -webkit-transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -moz-transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -o-transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
    transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
    /* border-bottom-right-radius: 40px; */
    /* border-bottom-left-radius: 0px; */
    /* border-top-right-radius: 40px; */
    /* border-top-left-radius: 0px; */
}
.about-h10 .btn-box-two a:hover:after {
    -webkit-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    transform: scale(1, 1);
    -webkit-transform-origin: top left;
    -ms-transform-origin: top left;
    transform-origin: top left;
}
.about-h10 .btn-box-two a:hover {
    color: #222222;
    transition: all 700ms ease;
}

.about-h10 .right-side h4 {
    font-size: 16px;
    color: #555;
    line-height: 36px;
    font-weight: 600;
    margin-bottom: 26px;
    margin-top: 10px;
}
.about-h10 .right-side .text-two p {
    font-size: 16px;
    color: #666666;
    line-height: 30px;
    margin-bottom: 6px;
    position: relative;
    color: #555555;
    font-size: 17px;
    line-height: 1.7em;
    /* margin-bottom: 45px; */
}
.call {
    display: inline-block;
    font-size: 20px;
    color: #ffffff;
    font-weight: 600;
    position: relative;
    top: 45px;
    /* margin-bottom: 5px; */
    background: #FF0000;
    /* padding: 14px 20px; */
    /* height: 60px; */
    /* box-shadow: 0 0 0 3em #FF0000 inset; */
    box-shadow: 0 4px 7px rgb(213 170 109 / 7%);
    padding-right: 30px;
    /* line-height: 37px; */
    /* padding-top: 0px; */
    /* padding-bottom: 6px; */
}
.call i {
    width: 70px;
    height: 65px;
    line-height: 58px;
    background: #1a243f;
    color: #fff;
    font-size: 30px;
    text-align: center;
    /* border-radius: 50px; */
    transform: rotate(0deg);
    top: 0px;
    position: relative;
    margin-right: 20px;
    z-index: 9;
    /* padding-bottom: 34px; */
}
.about-h10 .right-side .call span {
    color: #ffffff;
    font-size: 20px;
    /* margin-top: 23px; */
    padding-right: 31px;
    /* line-height: 35px; */
}

/*** 

====================================================================
	service icon h10
====================================================================

 ***/

.service-icon-h10 {
	position: relative;
	padding: 0px;
	margin-top: -60px;
	z-index: 99;
}

.service-icon-h10 .item {
    position: relative;
    box-shadow: 0px 7px 38px 0px rgba(0, 0, 0, 0.1);
    padding: 45px 45px 45px 45px;
    background: #fff;
    border-radius: 10px;
    border-bottom: 5px solid #FF0000;
}
.service-icon-h10 .item .icon {
    position: absolute;
    left: 0;
    top: 0;
    padding-left: 40px;
    padding-top: 40px;
    z-index: 9;
}
.service-icon-h10 .item .icon span:before {
    /* font-size: 47px; */
    /* color: #FF0000; */
    /* z-index: 9999; */
    /* color: #FF0000; */
    color: #001659;
    font-size: 60px;
    /* z-index: 999; */
}
.service-icon-h10 .item h2 {
    font-weight: 600;
    margin-left: 70px;
    font-size: 22px;
    color: #222222;
    font-weight: 600;
}
.service-icon-h10 .item h2 a {
    font-size: 20px;
    color: #222222;
    transition: all 700ms ease;
    font-size: 23px;
    color: #222222;
    font-weight: 600;
    color: #00235a;
}
.service-icon-h10 .item h2 a:hover {
    color: #FF0000;
	transition: all 700ms ease;
}
.service-icon-h10 .item p {
    font-size: 17px;
    color: #555;
    line-height: 30px;
    margin-top: 30px;
    margin-bottom: 30px;
}
.service-icon-h10 .item .btn-box {}
.service-icon-h10 .item .btn-box a {
    font-size: 16px;
    color: #FF0000;
    text-decoration: underline;
    transition: all 700ms ease;
    color: #FF0000;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    /* letter-spacing: 2px; */
    color: #001659;
    font-size: 16px;
    text-transform: capitalize;
    padding-right: 25px;
    font-weight: 700;
    display: inline-block;
    transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}
.service-icon-h10 .item .btn-box a:hover {
    color: #222;
	transition: all 700ms ease;
}


/*** 

====================================================================
	workprocess h10
====================================================================

 ***/

.workprocess-h10 {
   
 position: relative;
    padding: 100px 0px 100px 0px;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}
.workprocess-h10 .sec-title {
    text-align: center;
}
.workprocess-h10 .sec-title h3 {
    /* font-size: 16px; */
    /* color: #fff; */
    /* margin-bottom: 30px; */
    /* text-transform: uppercase; */
    margin-bottom: 7px;
    text-transform: uppercase;
    position: relative;
    /* color: #ffffff; */
    /* font-size: 17px; */
    line-height: 1.6em;
    font-weight: 500;
    margin-top: 0px;
    font-size: 16px;
    color: #fff;
    font-weight: 600;
}
.workprocess-h10 .sec-title .title-two h2 {
    /* font-size: 36px; */
    /* color: #222222; */
    /* line-height: 30px; */
    /* margin-bottom: 32px; */
    /* position: relative; */
    color: #ffffff;
    /* font-size: 40px; */
    /* font-weight: 600; */
    /* line-height: 55px; */
    /* margin-bottom: 8px; */
    /* text-transform: capitalize; */
    /* font-size: 36px; */
    /* line-height: 50px; */
    /* text-transform: capitalize; */
}
.workprocess-h10 .sec-title .divider {
    display: none;
}
.workprocess-h10 .item {
    position: relative;
    overflow: hidden;
    text-align: left;
}
.workprocess-h10 .item .number {
    position: relative;
    font-size: 74px;
    color: #ffffffcc;
    padding: 20px 0px;
    margin-bottom: 0px;
    font-weight: 700;
}
.workprocess-h10 .item .number:before {
    position: absolute;
    left: 0;
    bottom: -25px;
    width: 80px;
    height: 2px;
    /* background: #fff; */
    content: "";
}
.workprocess-h10 .item h2 {
    /* text-transform: uppercase; */
    color: #fff;
    font-weight: 700;
    margin-bottom: 16px;
    font-size: 23px;
}
.workprocess-h10 .item p {
    font-size: 17px;
    color: #ffffff;
    line-height: 30px;
    font-weight: 400;
}

/*** 

====================================================================
	services tab h10
====================================================================

***/

.services-tab-h10 {
    position: relative;
    padding: 100px 0px 70px 0px;
    z-index: 1;
}
.services-tab-h10 .sec-title {
    text-align: center;
}
.services-tab-h10 .sec-title h3 {
    font-size: 16px;
    color: #FF0000;
    margin-bottom: 0px;
    text-transform: uppercase;
    text-transform: uppercase;
    position: relative;
    color: #222;
    font-size: 16px;
    line-height: 1.6em;
    font-weight: 600;
}

.services-tab-h10 .sec-title .divider {
    display: none;
}
.services-tab-h10 .tabs-box .tab {
    display: none;
}
.services-tab-h10 .tabs-box .tab.active-tab {
    display: block;
}
.services-tab-h10 .tab-buttons {
    position: relative;
    display: inline-block;
    top: 0;
    margin-bottom: 25px;
}
.services-tab-h10 .tab-buttons .tab-btn {
    position: relative;
    display: inline-block;
    cursor: pointer;
    transition: all 700ms ease;
    font-size: 16px;
    color: #ffffff;
    font-weight: 600;
    background: #001659;
    padding: 17px 20px 17px 53px;
    width: 269px;
    margin-bottom: 5px;
    overflow: hidden;
    border-radius: 4px;
}
.services-tab-h10 .tab-buttons .tab-btn:last-child {
    padding-right: 0;
}
.services-tab-h10 .tab-buttons .tab-btn:last-child:before{
	display: none;
}
.services-tab-h10 .tab-buttons .tab-btn.active-btn:before{
	right: 15px;
}
.services-tab-h10 .tab-buttons .tab-btn.active-btn:after {
    left: 0;
	transition: all 500ms ease;
	opacity: 1;
}
.services-tab-h10 .tab-buttons .tab-btn:after {
    position: absolute;
    left: -10px;
    bottom: 0;
    content: "";
    width: 6px;
    height: 61px;
    background: #FF0000;
    transition: all 500ms ease;
    opacity: 0;
}
.services-tab-h10 .tab-buttons .tab-btn.active-btn {
    color: #fff;
    font-weight: 600;
    background: #FF0000;
    transition: all 700ms ease;
}
.services-tab-h10 .tab-buttons .tab-btn span {
	position: absolute;
	right: -70px;
	top: 0;
	font-size: 12px;
	font-weight: 300;
}
.services-tab-h10 .content {
    margin-top: 15px;
    margin-left: 20px;
}
.services-tab-h10 .content h3 {
    font-weight: 600;
    color: #001659;
    font-size: 23px;
    margin-bottom: 20px;
}
.services-tab-h10 .content p {
    font-size: 17px;
    color: #393939;
    line-height: 30px;
    padding-right: 5px;
    margin-bottom: 28px;
}
.services-tab-h10 .content .list-content {}
.services-tab-h10 .content .list-content h4 {
    font-size: 20px;
    color: #1c1c1c;
    font-weight: 600;
}
.services-tab-h10 .content .list-content .list {
    margin-top: 20px;
}
.services-tab-h10 .content .list-content .list li {
    font-size: 16px;
    color: #393939;
    font-weight: 500;
    display: inline-block;
    width: 230px;
    margin-bottom: 10px;
}
.services-tab-h10 .content .image-box {}
.services-tab-h10 .content .image-box img {}

/*** 

====================================================================
	call to action h10
====================================================================

***/

.call-to-action-h10 {
    position: relative;
    padding: 100px 0px 30px 0px;
    background-attachment: fixed;
    backgroun-cover: initial;
    background-position-y: -139px;
    /* background-position-x: 263px; */
    background-repat: none!important;
    /* background: #f2f3f5; */
    background-repeat: none!important;
}

.call-to-action-h10 .image-box {
    position: absolute;
    right: 60px;
    bottom: -30px;
}
.call-to-action-h10 .image-box img {
    max-width: 432px;
}
.call-to-action-h10 .content {}
.call-to-action-h10 .content .sec-title {}
.call-to-action-h10 .content .sec-title h3 {
    font-size: 16px;
    color: #FF0000;
    /* margin-bottom: 15px; */
    text-transform: uppercase;
    text-transform: uppercase;
    position: relative;
    color: #fff;
    font-size: 16px;
    line-height: 1.6em;
    font-weight: 600;
}
.call-to-action-h10 .content .sec-title .title-two h2 {
    /* font-size: 36px; */
    color: #fff; 
    /* line-height: 30px; */
    /* margin-bottom: 32px; */
    /* position: relative; */
    /* color: #ffffff; */
    /* font-size: 48px; */
    /* font-weight: 600; */
    /* line-height: 1.3em; */
    /* margin-bottom: 8px; */
    /* text-transform: capitalize; */
}
.call-to-action-h10 .content .sec-title .divider {
    display: none;
}
.call-to-action-h10 .content .sec-title p {
    font-size: 16px;
   color: #fff; 
    line-height: 30px;
    margin-bottom: 25px;
    margin-top: 20px;
    font-weight: 700;
}

.call-to-action-h10 .form-group {
    position: relative;
    margin-bottom: 18px;
}

.call-to-action-h10 .form-group {
    position: relative;
    margin-bottom: 18px !important;
}

.call-to-action-h10 .form-group input[type="text"],
.call-to-action-h10 .form-group input[type="email"],
.call-to-action-h10 .form-group input[type="tel"],
.call-to-action-h10 .form-group input[type="url"],
.call-to-action-h10 .form-group textarea,
.call-to-action-h10 .form-group input[type="text"], .call-to-action-h10 .form-group input[type="email"], .call-to-action-h10 .form-group input[type="tel"], .call-to-action-h10 .form-group input[type="url"], .call-to-action-h10 .form-group textarea, .call-to-action-h10 .form-group select {
    position: relative;
    display: block;
    width: 100%;
    font-size: 14px;
    line-height: 30px;
    /* color: #ffffff; */
    font-weight: 400;
    height: 48px;
    padding: 15px;
    background-color: #ffffff;
    border: 1px solid #d6d6d6;
    /* border-radius: 10px; */
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
    border-radius: 4px;
}

.call-to-action-h10 ::-webkit-input-placeholder{color: #777777;}
.call-to-action-h10 ::-moz-input-placeholder{color: #777777;}
.call-to-action-h10 ::-ms-input-placeholder{color: #777777;}

.call-to-action-h10 .form-group input:focus,
.call-to-action-h10 .form-group select:focus,
.call-to-action-h10 .form-group textarea:focus{
	border-color:#c08c4d;
}

.call-to-action-h10 .form-group textarea {
    height: 128px;
    margin-bottom: 10px;
    resize: none;
    padding: 15px;
    border-radius: 4px;
}


.call-to-action-h10 label.error{
	color: #ff0000;
}
.call-to-action-h10 .theme-btn {
    position: relative;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    padding: 15px 50px;
    background: #FF0000;
    /* border-bottom-right-radius: 30px; */
    /* border-bottom-left-radius: 0px; */
    /* border-top-right-radius: 30px; */
    /* border-top-left-radius: 0px; */
    transition: all 700ms ease;
    margin-top: 8px;
    margin-left: 15px;
    z-index: 1;
    display: inline-block;
    overflow: hidden;
    cursor: pointer;
    /* -webkit-box-shadow: 0 4px 7px rgba(255, 94, 20, 0.4); */
    -khtml-box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48);
    -moz-box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48);
    -ms-box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48);
    -o-box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48);
    /* box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48); */
    background-color: #FF0000;
    /* background-image: -webkit-gradient(linear, left top, right top,from(#d5aa6d),to(#9b6f45)); */
    /* background-image: -webkit-linear-gradient(left,#d5aa6d,#9b6f45); */
    background-image: -moz-linear-gradient(left,#d5aa6d,#9b6f45);
    background-image: -ms-linear-gradient(left,#d5aa6d,#9b6f45);
    background-image: -o-linear-gradient(left,#d5aa6d,#9b6f45);
}
.call-to-action-h10 .theme-btn:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    height: 100%;
    width: 100%;
    background: #fff;
    -webkit-transform: scale(0, 1);
    -ms-transform: scale(0, 1);
    transform: scale(0, 1);
    -webkit-transform-origin: bottom right;
    -ms-transform-origin: bottom right;
    transform-origin: bottom right;
    -webkit-transition: transform
 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -moz-transition: transform 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -o-transition: transform 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
    transition: transform 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -webkit-transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -moz-transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -o-transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
    transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
    border-bottom-right-radius: 40px;
    /* border-bottom-left-radius: 0px; */
    /* border-top-right-radius: 40px; */
    /* border-top-left-radius: 0px; */
}
.call-to-action-h10 .theme-btn:hover:after {
    -webkit-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    transform: scale(1, 1);
    -webkit-transform-origin: top left;
    -ms-transform-origin: top left;
    transform-origin: top left;
}
.call-to-action-h10 .theme-btn:hover {
    color: #222222;
    transition: all 700ms ease;
}







@media only screen and (max-width: 1660px){
	.team-h9 .container {
		max-width: 1140px;
	}
	.team-h9 .sec-title {
		margin-left: 0;
		margin-right: 0;
	}
	.team-h9 .owl-nav {
		position: absolute;
		bottom: -100px;
		left: 10px;
	}
	.team-h9 {
		padding: 100px 0px 200px 0px;
	}
	.team-nine-carousel {
		margin-left: 0;
	}
	.team-h9 .sec-title .text p {
		margin-top: 20px;
	}
	.pricing-h9 .pricing-table {
   		padding: 0px 15px;
        min-width: unset;
	}
	.pricing-h9 .tabs-box .tab.active-tab {
		margin-left: 0;
		left: 0;
	}
	.pricing-h9 .pricing-table .inner-box {
		padding: 60px 20px 70px;
	}
	.pricing-h9 .left {
		position: relative;
		max-width: 100% !important;
		flex: 0 0 100%;
	}
	.pricing-h9 .right {
		position: relative;
		max-width: 100% !important;
		flex: 0 0 100%;
		margin-top: 60px;
	}
	.pricing-h9 .tab-buttons {
		position: relative;
		left: 0;
		bottom: 0;
	}
}
	
	
	
@media only screen and (max-width: 1199px){
.testimonials-h6 {
    padding: 100px 0px 150px 0px;
}
	
.about-h6 .img-holder .video-img {
    left: 0;
}
.project-slider-h6 .text-box {
    top: 25px;
}
.pricing-07 .pricing-table .table-content ul li {
    margin-left: 20px;
}
.pricing-07 .pricing-table .table-content ul li:before {
    left: -25px;
}
.pricing-07 .pricing-table .table-footer {
    margin-left: 0;
}
.pricing-07 .pricing-table .inner-box .title {
    text-align: left;
}
.pricing-07 .icon {
    text-align: left;
    margin-bottom: 50px;
}
.pricing-07 .pricing-table .price sub {
    display: none;
}
.call-to-action-h7-two .left-side {
    padding-top: 0;
    padding-left: 0;
}
.call-to-action-h7-two .left-side .btn-box {
    display: inline-block;
    float: unset;
    position: relative;
    top: 0;
    margin-top: 20px;
}
.call-to-action-h7-two .left-side .btn-box {
    float: unset;
    top: 0;
    margin-top: 20px;
}
.banner-section.style-h8 .content-box {
    padding-left: 0;
}
.service-img-h8 {
    padding: 100px 0px 100px 0px;
}
.service-img-h8 .image-box {
    top: 108px;
}	
.portfolio-h9 .sec-title .title-two h2 {
    line-height: 50px;
}
.team-h9 .sec-title .title-two h2 {
    line-height: 50px;
}
.latest-news-h9 .inner-box .lower-content {
    top: 0;
    margin-left: 0;
    margin-right: 0;
}
.latest-news-h9 .inner-box .image-box .image{
    width: 100%;
	margin: 0;
}
.latest-news-h9 .inner-box .image-box .image a img {
    width: 100%;
}
.latest-news-h9 {
    padding: 100px 0px 150px 0px;
    margin-bottom: 0;
}
.latest-news-h9 .inner-box {
    /* border: 1px solid #CCCCCC; */
    border-top: none;
}
.latest-news-h9 .owl-nav {
    position: relative;
    top: 60px;
}	
.about-h10 .right-side {
    margin-left: 0;
    left: 0;
}
.service-icon-h10 .item .icon {
	position: relative;
    padding-left: 0;
    padding-top: 0;
}
.service-icon-h10 .item h2 {
    margin-left: 0;
}
.service-icon-h10 .item {
    margin-bottom: 30px;
}
.service-icon-h10 .item p {
    margin-top: 0;
}
.services-tab-h10 .tab-buttons .tab-btn {
    padding: 17px 9px 17px 20px;
    width: 100%;
    margin-left: 0;
}
.services-tab-h10 .content {
    margin-top: 0;
}
.services-tab-h10 .tab-buttons {
    margin-top: 10px;
}
.bkr003 .about-6 .text-holder .bottom {
    padding-left: 0 !important;
    position: relative;
}
.bkr003 .about-6 .text-holder .bottom .button {
    position: relative !important;
}
.bkr003 .about-6 .gallery .gallery-bg-img {
    position: relative !important;
    right: 0 !important;
    top: 0 !important;
    margin-left: 0 !important;
}
.bkr003 .about-6 .gallery .video-gallery {
    width: unset !important;
    height: unset !important;
    margin-bottom: 30px;
}
	
	
}


@media only screen and (max-width: 991px){
	
.call-to-action-h6 .text {
    text-align: center;
}
.call-to-action-h6 .btn-box {
    float: none;
    text-align: center;
}
.about-h6 .img-holder {
    float: unset;
    margin-top: 40px;
}
.about-h6 .img-holder .image .image-two {
    right: 0;
}
.funfact-h6 .item {
    margin-bottom: 50px;
}
.funfact-h6:before {
    background-size: cover;
}
.project-slider-h6 .text-box {
    margin-left: 0;
    left: 0;
    background-size: cover;
	padding: 45px 40px 65px 45px;
}
.testimonials-h6 {
    padding: 100px 0px 150px 0px;
}
.latest-news-h6 .inner-box .lower-content {
    top: 0;
    right: 0;
    margin-left: 0;
    margin-right: 0;
    border: 1px solid #CCCCCC;
    border-top: none;
}
.latest-news-h6 .overlay-anim-box2 {
	display: block;
}
.latest-news-h6 .inner-box .image-box .image {
    margin-right: 0;
    margin-bottom: 0;
}
.latest-news-h6 .owl-dots {
    margin-top: 50px;
}
.footer-bottom-h6 .copyright-text {
    text-align: center;
}
.footer-bottom-h6 .links {
    float: unset;
    text-align: center;
    margin-top: 15px;
}
.footer-bottom-h6 .links ul li {
    margin: 0px 10px;
}
.service-icon-h7-one .column {
    margin-top: 0;
}
.why-choose-us-h7 .image-box img {
    float: right;
    max-width: 100%;
}
.why-choose-us-h7 .image-box {
    text-align: center;
}
.video-h7 {
    width: 100%;
}
.video-h7 .text-box {
    float: unset;
    text-align: center;
}
.call-to-action-h7 .title {
    display: block;
    margin-right: 0;
    margin-bottom: 20px;
}
.call-to-action-h7 .social {
    text-align: center;
}
.call-to-action-h7 .text {
    float: unset;
    text-align: center;
}
.call-to-action-h7 .btn-box {
    float: unset;
    text-align: center;
}
.pricing-07 .pricing-table .inner-box .title {
    text-align: center;
}
.pricing-07 .icon {
    text-align: center;
    margin-bottom: 50px;
}
.pricing-07 .pricing-table .table-content ul li {
    text-align: center;
}
.pricing-07 .pricing-table .table-content ul li:before {
    display: none;
}
.pricing-07 .pricing-table .table-footer {
    text-align: center;
}
.call-to-action-h7-two .left-side .btn-box {
    display: block;
}
.call-to-action-h7-two .left-side {
    padding-top: 10px;
}
.banner-section.style-h8 .banner-carousel .owl-nav {
	display: none
}
.about-h8 .btn-box {
    margin-bottom: 30px;
}	
.service-img-h8 .image-box img {
    float: unset;
    max-width: 100%;
}	
.service-img-h8 .image-box {
    top: 0px;
    margin-bottom: 30px;
    display: none;
}
.service-img-h8 .owl-nav {
    top: -50px;
}
.why-choose-us-h8 .sec-title .text p {
    margin-bottom: 30px;
}
.funfact-h8 {
    /* background-size: cover; */
    /* background-position: center center; */
}
.funfact-h8 .item {
    padding-top: 25px;
    margin-bottom: 15px;
}
.portfolio-h8 .filters .filter-btns {
    margin: 0px 0px;
}
.portfolio-h8 .filters li {
    margin-right: 5px;
}
.portfolio-h8 .filters li.active {
    margin-right: 5px;
}
.faq-form-h8 .content-box {
    margin: 50px 0px 0px 0px;
    padding: 50px 20px 50px 20px;
}
.right-side {
    margin-top: 25px;
}
.funfact-skill-h9:before {
    height: 100%;
    width: 100%;
}
.funfact-skill-h9 {
    padding: 100px 0px 50px 0px;
}
.call-to-action-h8 .btn-box {
    padding: 35px 0px 0px 0px;
}
.service-img-h9 .content-box {
    margin-right: 0;
    margin-top: 50px;
}
.portfolio-h9 .sec-title .title-two h2 {
    line-height: 30px;
}
.portfolio-h9 .filters li {
    margin-right: 10px;
}
.portfolio-h9 .btn-box {
    margin-top: -40px;
    margin-left: 0;
    margin-bottom: 30px;
}
.portfolio-h9 .filters .filter-btns {
    margin-left: 0;
}

.portfolio-h9 .project-block {
    padding: 0 15px;
    padding-bottom: 15px;
}
.portfolio-h9 .filters {
    margin-bottom: 0;
}
.pricing-h9 .pricing-table .table-content ul li {
    margin-left: 0;
    text-align: center;
}
.pricing-h9 .pricing-table .table-footer {
    text-align: center;
    margin-left: 0;
}
.testimonials-h8 .owl-nav {
    display: none;
}
.latest-news-h9 .inner-box .lower-content h3 a {
    font-size: 15px;
}
.pricing-h9 .pricing-table.tagged .inner-box {
    transform: scale(1.0);
}
.call-to-action-h10 .image-box {
    display: none;
}
.services-tab-h10 .content .list-content {
    margin-bottom: 20px;
}
.services-tab-h10 .image-box img {
    width: 100%;
}
.clients-h8 .owl-nav {
    display: none;
}
	
	
}

@media only screen and (max-width: 767px){ 
.project-slider-h6 .owl-nav {
    position: relative;
    left: 0;
    bottom: -180px;
    width: 0;
    max-width: 0;
    margin-left: 0;
    text-align: center;
    margin: 0 auto;
}
.project-slider-h6 {
    position: relative;
    padding: 100px 0px;
    padding-bottom: 200px;
}
.project-slider-h6 .text-box {
	box-shadow: none;
}
.banner-section.style-h6 .slide-item {
	background-size: cover;
}
.testimonials-h6 .image-box {
	left: 0;
}
.team-h6 .overlay-anim-box2 {
	display: block;
}
.footer-h6 .widgets-section .footer-widget {
    margin-bottom: 30px;
}
.banner-section.style-h6 .banner-carousel .content-box h2, .banner-section.style-h7 .banner-carousel .content-box h2, .banner-section.style-h8 .banner-carousel .content-box h2, .banner-section-h9 .item
 h2, .banner-section.style-h10 .banner-carousel .content-box h2 {
    font-size: 30px;
    line-height: 55px;
}
.portfolio-h8 .filters li.active:before {
    opacity: 0;
}
.portfolio-h8 .project-block .image img {
	width: 100%;
}	
.portfolio-h8 .overlay-anim-box2 {
    display: block;
}
.portfolio-h8 .project-block .image {
    width: 100%;
}
.call-to-action-h8 .left-side h2 {
    line-height: 65px;
}
.call-to-action-h8 .btn-box {
    padding: 35px 0px 0px 0px;
}
.testimonials-h8 .owl-nav {
    display: none;
}
.portfolio-h9 .project-block .image {
    width: 100%;
}
.portfolio-h9 .project-block .image img {
    width: 100%;
}
.testimonials-h8 .item .text p {
    margin: 0px 15px;
}
.latest-news-h9 .inner-box .lower-content h3 a {
    font-size: 15px;
    line-height: 26px;
}
.latest-news-h9 .inner-box .lower-content h3 {
    line-height: 26px;
}
.about-h10 .btn-box-two {
    margin-bottom: 35px;
}
.call i {
    margin-right: 0;
}
	
	
}

@media only screen and (max-width: 499px){ 
.project-slider-h6 .sec-title .title-two h2 span, .team-h6 .sec-title .title-two h2 span, .workprocess-h7 .sec-title .title-two h2 span, .service-icon-h7-two .sec-title .title-two h2 span, .project-slider-h7 .sec-title .title-two h2 span,.pricing-07 .sec-title .title-two h2 span, .latest-news-07 .sec-title .title-two h2, .testimonials-h8 .sec-title .title-two h2, .funfact-skill-h9 .skill .sec-title .title-two h2, .latest-news-h9 .sec-title .title-two h2, .workprocess-h10 .sec-title .title-two h2, .services-tab-h10 .sec-title .title-two h2, .call-to-action-h10 .content .sec-title .title-two h2, .pricing-07 .sec-title .title-two h2, .project-slider-h7 .sec-title .title-two h2 {
	line-height: 50px;
}
.service-img-h6 .sec-title .title-two h2 {
	line-height: 50px;
}
.why-choose-us-h8 .right-side .item .icon {
    position: relative;
    left: 0;
    top: 0;
    margin-bottom: 30px;
}
.why-choose-us-h8 .right-side .item {
    padding: 0px 0px 0px 0px;
    margin-bottom: 50px;
    margin-top: 30px;
}
.latest-news-h8 .btn-box {
    float: unset;
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 30px;
}
.latest-news-h8 .left-side .lower-content h3 a {
    line-height: 25px;
    font-size: 20px;
}
.latest-news-h8 .left-side .lower-content {
    position: absolute;
    bottom: 55px;
    left: 10px;
}
.clients-h8 .owl-nav {
    display: none;
}
.latest-news-h8 .left-side .lower-content h3 {
    line-height: 25px;
}	
.latest-news-h9 .inner-box .lower-content span.author {
    display: block;
    margin-left: 0;
    margin-top: 10px;
}
.latest-news-h9 .inner-box .lower-content span {
    display: block;
}
	
	

}

@media only screen and (max-width: 400px){ 
	
.pricing-07 .tab-buttons .tab-btn {
    min-width: 130px;
}
.pricing-07 .tab-buttons .tab-btn:before {

    width: 130px;
}	
	
	
	
}
@media only screen and (max-width: 355px){ 

}

.sec-title:before {
    display: none;
}




/*** 
=============================================
    about-4      
=============================================
***/

.bkr003 .about-4 {
    position: relative;
    padding: 100px 0 85px;
}
.bkr003 .about-4 .content-column {
    position: relative;
    margin-bottom: 30px;
}
.bkr003 .about-4 .content-column .inner-column {
    position: relative;
}
.bkr003 .about-4 .content-column .inner-column h2 {
    position: relative;
    line-height: 1.3em;
    color: #001659;
    font-size: 36px;
    font-weight: 600;
    color: #001659;
    font-weight: 700;
    text-transform: capitalize;
    /* line-height: 50px; */
    font-size: 40px;
    line-height: 1.3em;
}
.bkr003 .about-4 .content-column .inner-column h2 span {
    position: relative;
    font-size: 24px;
    color: #fff;
    letter-spacing: 1px;
    padding: 0 15px;
    line-height: 1.9em;
    margin-left: 20px;
    display: inline-block;
    background-color: #FF0000;
    box-shadow: 0 0 25px rgba(0,0,0,.1);
}
.bkr003 .about-4 .content-column .inner-column h2 span:before {
    position: absolute;
    content: '';
    left: -14px;
    top: 12px;
    border-top: 10px solid transparent;
    border-right: 15px solid #FF0000;
    border-bottom: 10px solid transparent;
}
.bkr003 .about-4 .content-column .inner-column .text {
    position: relative;
    color: #7e8597;
    font-size: 16px;
    line-height: 1.9em;
    margin-top: 35px;
}
.bkr003 .about-4 .content-column .inner-column .play-box {
    position: relative;
    color: #222;
    font-size: 20px;
    font-weight: 700;
    padding-top: 10px;
    padding-left: 100px;
    margin-top: 40px;
}
.bkr003 .about-4 .content-column .inner-column .play-box .play-icon {
    position: absolute;
    left: 0;
    top: 0;
    width: 70px;
    height: 70px;
    color: #fff;
    line-height: 72px;
    text-align: center;
    font-size: 24px;
    margin-right: 15px;
    display: inline-block;
    border-radius: 50%;
}
.bkr003 .about-4 .content-column .inner-column .play-box .play-icon:before {
    position: absolute;
    content: '';
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(22,26,51,.75);
    border-radius: 50%;
}
.bkr003 .about-4 .content-column .inner-column .play-box .play-icon .play-btn {
    position: relative;
    color: #fff;
    font-size: 24px;
}
.bkr003 .about-4 .content-column .inner-column .play-box span {
    position: relative;
    color: #FF0000;
    font-size: 14px;
    font-weight: 600;
}
.bkr003 .about-4 .content-column .inner-column .more-about {
    position: relative;
    text-align: right;
    margin-top: 46px;
}
.bkr003 .about-4 .content-column .inner-column .more-about:before {
    position: absolute;
    content: '';
    left: 0;
    top: 12px;
    height: 1px;
    width: 100%;
    background-color: #e2e8f0;
}
.bkr003 .about-4 .content-column .inner-column .more-about .about {
    position: relative;
    color: #222;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.3em;
    padding-left: 15px;
    display: inline-block;
    background-color: #fff;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}
.bkr003 .about-4 .content-column .inner-column .more-about .about:hover {
    color: #f67433;
}
.bkr003 .about-4 .content-column .inner-column .more-about .about .arrow {
    position: relative;
    top: 3px;
    margin-left: 6px;
}
.bkr003 .about-4 .image-column {
    position: relative;
}
.bkr003 .about-4 .image-column .inner-column {
    position: relative;
    text-align: center;
}
.bkr003 .about-4 .image-column .inner-column .pattern-layouts {
    position: absolute;
    left: -60px;
    right: 0;
    top: 0;
    bottom: 0;
}
.bkr003 .about-4 .image-column .inner-column .pattern-layouts .pattern-1 {
    position: absolute;
    content: '';
    left: -70px;
    top: -125px;
    width: 558px;
    height: 558px;
    display: inline-block;
    background: url(//jaquesofalltrades.com/wp-content/themes/buildnet/assets/images/ex-new/background/about-4-pattern-1.png) no-repeat;
}
.bkr003 .about-4 .image-column .inner-column .pattern-layouts .pattern-1 {
    animation-name: rotateme;
    animation-duration: 24s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    -webkit-animation-name: rotateme;
    -webkit-animation-duration: 24s;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    -moz-animation-name: rotateme;
    -moz-animation-duration: 24s;
    -moz-animation-iteration-count: infinite;
    -moz-animation-timing-function: linear;
    -ms-animation-name: rotateme;
    -ms-animation-duration: 24s;
    -ms-animation-iteration-count: infinite;
    -ms-animation-timing-function: linear;
    -o-animation-name: rotateme;
    -o-animation-duration: 24s;
    -o-animation-iteration-count: infinite;
    -o-animation-timing-function: linear;
}
.bkr003 .about-4 .image-column .inner-column .pattern-layouts .pattern-2 {
    position: absolute;
    content: '';
    right: -120px;
    top: 45px;
    width: 558px;
    height: 558px;
    display: inline-block;
    background: url(//jaquesofalltrades.com/wp-content/themes/buildnet/assets/images/ex-new/background/about-4-pattern-2.png) no-repeat;
}
.bkr003 .about-4 .image-column .inner-column .pattern-layouts .pattern-2 {
    animation-duration: 3s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    -webkit-animation-name: zoom-fade;
    -webkit-animation-duration: 3s;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    -moz-animation-name: zoom-fade;
    -moz-animation-duration: 3s;
    -moz-animation-iteration-count: infinite;
    -moz-animation-timing-function: linear;
    -ms-animation-name: zoom-fade;
    -ms-animation-duration: 3s;
    -ms-animation-iteration-count: infinite;
    -ms-animation-timing-function: linear;
    -o-animation-name: zoom-fade;
    -o-animation-duration: 3s;
    -o-animation-iteration-count: infinite;
    -o-animation-timing-function: linear;
}
.bkr003 .about-4 .image-column .inner-column .pattern-layouts .pattern-3 {
    position: absolute;
    content: '';
    left: 0;
    top: 100px;
    width: 558px;
    height: 558px;
    display: inline-block;
    background: url(//jaquesofalltrades.com/wp-content/themes/buildnet/assets/images/ex-new/background/about-4-pattern-3.png) no-repeat;
}
.bkr003 .about-4 .image-column .inner-column .pattern-layouts .pattern-3 {
    animation-duration: 3s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    -webkit-animation-name: zoom-fade;
    -webkit-animation-duration: 3s;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    -moz-animation-name: zoom-fade;
    -moz-animation-duration: 3s;
    -moz-animation-iteration-count: infinite;
    -moz-animation-timing-function: linear;
    -ms-animation-name: zoom-fade;
    -ms-animation-duration: 3s;
    -ms-animation-iteration-count: infinite;
    -ms-animation-timing-function:
 linear;
    -o-animation-name: zoom-fade;
    -o-animation-duration: 3s;
    -o-animation-iteration-count: infinite;
    -o-animation-timing-function: linear;
}
.bkr003 .about-4 .image-column .inner-column .image {
    position: relative;
}
.bkr003 .about-4 .image-column .inner-column .image.image-one {
    margin-left: 25px;
}
.bkr003 .about-4 .image-column .inner-column .image.image-two {
    position: absolute;
    left: 0;
    bottom: 50px;
    box-shadow: 0 10px 10px rgba(0,0,0,.1);
}
.bkr003 .about-4 .image-column .inner-column .image.image-three {
    position: absolute;
    right: 15px;
    top: 10px;
    box-shadow: 0 10px 10px rgba(0,0,0,.1);
}
.bkr003 .about-4 .image-column .inner-column .image.image-four {
    position: absolute;
    right: 15px;
    bottom: -75px;
    box-shadow: 0 10px 10px rgba(0,0,0,.1);
}

/*** 
=============================================
    Welcome Area style
=============================================
***/

.bkr003 .about-6 {
position: relative;
  padding-bottom: 140px;
  padding-top: 100px;
}

.bkr003 .about-6:before {
    position: absolute;
    content: '';
    left: 0px;
    bottom: 0px;
    width: 100%;
    height: 35px;
    background: url(//jaquesofalltrades.com/wp-content/themes/buildnet/assets/images/background/pattern-2.png) left bottom no-repeat;
}

.bkr003 .about-6 .sec-title {
    position: relative;
    margin-bottom: 40px;
}
.bkr003 .about-6 .sec-title h2 {
  color: #001659;
  font-size: 32px;
  font-weight: 700;
  line-height: 34px;
  /* text-transform: uppercase; */
  margin: 0;
  font-size: 48px;
  font-weight: 600;
  line-height: 1.3em;
}
.bkr003 .about-6 .sec-title h2 span{
  color: #FF0000;
}
.bkr003 .about-6 .sec-title span.decor {
  background: #FF0000 none repeat scroll 0 0;
  height: 2px;
  width: 78px;
  display: inline-block;
  position: relative;
  z-index: 1;
}
.bkr003 .about-6 .sec-title span.decor:before{
  position: absolute;
  top: -3px;
  left: 0;
  width: 8px;
  height: 8px;
  background: #FF0000;
  border-radius: 50%;
  content: "";
}

.bkr003 .about-6 .text-holder {font-size: 16px;}
.bkr003 .about-6 .text-holder h3 {
    color: #001659;
    font-size: 21px;
    font-weight: 500;
    line-height: 28px;
    margin: 0 0 0px;
    margin-bottom: 20px;
}
.bkr003 .about-6 .text-holder .bottom {
    margin-top: 30px;
    padding-left: 200px;
    position: relative;
}
.bkr003 .about-6 .text-holder .bottom .button {
  position: absolute;
  top: 0;
  left: 0;
}
.bkr003 .about-6 .text-holder .bottom .button a{
  padding: 17px 30px 15px;
}
.bkr003 .about-6 .text-holder .bottom .title h3 {
    color: #252525;
    font-size: 18px;
    font-weight: 500;
    line-height: 30px;
    position: relative;
    top: 10px;
}
.bkr003 .about-6 .text-holder .bottom .title h3 span{
  color: #FF0000;
  font-family: "OilBats";
  line-height: 30px;
  margin-top: 5px;
  font-size: 16px;
  font-weight: 600;
}


.bkr003 .about-6 .gallery {
  position: relative;
  margin-top: 5px;
}
.bkr003 .about-6 .gallery .video-gallery {
  width: 310px;
  height: 280px;
  text-align: center;
  border: 6px solid #f7f7f7;
  position: relative;
  transition: border-color 0.4s ease 0s;
  overflow: hidden;
}
.bkr003 .about-6 .gallery .video-gallery img {
  transform: scale(1);
  transition: all 0.5s ease 0s;
  width: 100%;
}
.bkr003 .about-6 .gallery .video-gallery .overlay-gallery {
  background-color: transparent;
  bottom: 0;
  height: 100%;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  transition: background-color 0.4s ease 0s;
}
.bkr003 .about-6 .gallery .video-gallery .overlay-gallery .icon-holder{
  display: table;
  height: 100%;
  width: 100%;    
}
.bkr003 .about-6 .gallery .video-gallery .overlay-gallery .icon-holder .icon{
  display: table-cell;
  vertical-align: middle;    
}
.bkr003 .about-6 .gallery .video-gallery .overlay-gallery .icon-holder .icon a img{
  width: auto;
  transform: scale(1);
  transition: all 0.5s ease 0s;
}
.bkr003 .about-6 .gallery .gallery-bg-img {
  position: absolute;
  right: 15px;
  top: 50px;
  z-index: -1;
  margin-left: -25px;
}

.bkr003 .about-6 .gallery .video-gallery:hover .overlay-gallery {
  background-color: rgba(213, 172, 99, 0.70);
}
.bkr003 .about-6 .gallery .video-gallery:hover img {
  transform: scale(1.1);
}
.bkr003 .about-6 .gallery .video-gallery .overlay-gallery .icon-holder .icon a:hover img{
  transform: scale(1.1);
}
.bkr003 .about-6 .thm-btn {
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    display: inline-block;
    border: 2px solid #FF0000;
    text-transform: uppercase;
    font-family: 'Roboto', sans-serif;
    transition: all 500ms ease;
    line-height: 14px;
}
.bkr003 .about-6 .bg-cl-1 {
    background: #FF0000;
}
.bkr003 .about-6 .thm-btn:hover {
    background: #141414;
    border: 2px solid #d5ac63;
    color: #fff;
}



/*** 

====================================================================
						News Section
====================================================================

***/

.bkr003 .blog-1 {
	position: relative;
	padding: 140px 0 110px;
}

.bkr003 .blog-1 .float-text {
    position: absolute;
    left: -170px;
    bottom: 28%;
    font-size: 300px;
    line-height: 1em;
    font-weight: 900;
    color: #fafafa;
}

.bkr003 .blog-1 .sec-title{
	position: relative;
	padding-bottom: 10px;
	text-align: center;
}

.bkr003 .blog-1 .sec-title > span{
	position: relative;
	font-size: 18px;
	color: #888888;
	font-weight: 400;
	line-height: 1.2em;
	display: block;
	margin-bottom: 10px;
}



.bkr003 .blog-1 .sec-title > h3{
	position: relative;
	font-size: 35px;
	color: #333333;
	font-weight: 700;
	line-height: 1.4em;
	text-transform: uppercase;
}

.bkr003 .blog-1 .sec-title:after{
	position: absolute;
	left: 0;
	bottom: 0;
	height:3px;
	width: 85px;
	/* background-color: #FF0000; */
	/* content: ""; */
}

.bkr003 .blog-1 .sec-title.centered:after{
	left: 50%;
	margin-left: -42.5px;
}

.bkr003 .blog-1 .sec-title.light > span,
.bkr003 .blog-1 .sec-title.light h2{
	color: #ffffff;
}


.bkr003 .blog-1 .float-text{
	text-transform: uppercase;
    left: -20px;
    top: 10%;
}

.bkr003 .blog-1 .sec-title{
	position: relative;
	margin-bottom: 70px;
}

.bkr003 .blog-1 .row{
	margin: 0 -22px;
}

.bkr003 .blog-1 .news-block{
	position: relative;	
	padding: 0 22px;
	margin-bottom: 40px;
}

.bkr003 .blog-1 .news-block .inner-box{
	position: relative;
	overflow: hidden;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	-ms-border-radius: 10px;
	-o-border-radius: 10px;
	border-radius: 10px;
}

.bkr003 .blog-1 .news-block .image-box{
	position: relative;
}	
.bkr003 .blog-1 .news-block .image-box .date {
    position: absolute;
    left: 25px;
    top: 20px;
    font-size: 17px;
    line-height: 30px;
    color: #ffffff;
    text-transform: capitalize;
    font-weight: 600;
    background: black;
    padding: 5px 15px;
}

.bkr003 .blog-1 .news-block .image-box .image{
	position: relative;
	cursor: default;
}

.bkr003 .blog-1 .news-block .image-box .image img{
	position: relative;
	width: 100%;
}

.bkr003 .blog-1 .news-block .caption-box{
	position: absolute;
	left: 0;
	top: 145%;
	width: 100%;
	padding: 35px 30px 35px;
	background-color: rgba(11,11,11,.87);
	-webkit-transform: translateY(-120px);
	-moz-transform: translateY(-120px);
	-ms-transform: translateY(-120px);
	-o-transform: translateY(-120px);
	transform: translateY(-120px);
	-webkit-transition: all 500ms ease;
	-moz-transition: all 500ms ease;
	-ms-transition: all 500ms ease;
	-o-transition: all 500ms ease;
	transition: all 500ms ease;
}

.bkr003 .blog-1 .news-block:hover .caption-box{
	-webkit-transform: translateY(-100%);
	-moz-transform: translateY(-100%);
	-ms-transform: translateY(-100%);
	-o-transform: translateY(-100%);
	transform: translateY(-100%);
}

.bkr003 .blog-1 .news-block .caption-box h3	{
	position: relative;
	display: block;
	font-size: 23px;
	line-height: 1.5em;
	color: #fefefe;
	font-weight: 600;
	margin-bottom: 20px;
}

.bkr003 .blog-1 .news-block .caption-box h3	a{
	color: #fefefe;
	-webkit-transition: all 300ms ease;
	-moz-transition: all 300ms ease;
	-ms-transition: all 300ms ease;
	-o-transition: all 300ms ease;
	transition: all 300ms ease;
	font-size: 22px;
	color: #ffffff;
	font-weight: 600;
	line-height: 1.3em;
	margin-bottom: 18px;
}

.bkr003 .blog-1 .news-block .caption-box h3	a:hover{
	color: #FF0000;
}

.bkr003 .blog-1 .news-block .caption-box p{
	position: relative;
	font-size: 16px;
	line-height: 24px;
	color: #ffffff;
	padding-top: 30px;
	margin-bottom: 14px;
	-webkit-transition: all 300ms ease;
	-moz-transition: all 300ms ease;
	-ms-transition: all 300ms ease;
	-o-transition: all 300ms ease;
	transition: all 300ms ease;
}

.bkr003 .blog-1 .news-block:hover .caption-box p{
	padding-top: 0;
}

.bkr003 .blog-1 .news-block .caption-box .read-more{
	position: relative;
	font-size: 14px;
	line-height: 24px;
	color: #FF0000;
	font-weight: 900;
	text-transform: uppercase;
	-webkit-transition: all 300ms ease;
	-moz-transition: all 300ms ease;
	-ms-transition: all 300ms ease;
	-o-transition: all 300ms ease;
	transition: all 300ms ease;
}

.bkr003 .blog-1 .news-block .caption-box .read-more:hover{
	color: #ffffff
}

.bkr003 .blog-1 .news-block .caption-box .read-more i{
	margin-left: 10px;
}

.bkr003 .blog-1 .float-text{
    left: -50px;
    top: 25%;
}

.bkr003 .blog-1 .news-block-two{
	position: relative;	
	padding: 0 22px;
	margin-bottom: 50px;
}

.bkr003 .blog-1 .news-block-two .inner-box{
	position: relative;
	overflow: hidden;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	-ms-border-radius: 10px;
	-o-border-radius: 10px;
	border-radius: 10px;
}

.bkr003 .blog-1 .news-block-two .image-box{
	position: relative;
}

.bkr003 .blog-1 .news-block-two .image-box .image{
	position: relative;
	cursor: default;
}

.bkr003 .blog-1 .news-block-two .image-box .image img{
	position: relative;
	width: 100%;
}

.bkr003 .blog-1 .news-block-two .caption-box{
	position:
 absolute;
	right: 0;
	top: 0;
	width: 50%;
	min-width: 300px;
	height: 100%;
	padding: 30px 40px 30px;
	background-color: rgba(11,11,11,.87);
}

.bkr003 .blog-1 .news-block-two .caption-box .title{
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	padding: 35px 40px 35px;
}

.bkr003 .blog-1 .news-block-two .caption-box .date{
	position: relative;
	font-size: 15px;
	line-height: 30px;
	color: #ffffff;
	text-transform: capitalize;
}

.bkr003 .blog-1 .news-block-two .caption-box h3	{
	position: relative;
	display: block;
	font-size: 20px;
	line-height: 1.5em;
	color: #fefefe;
	font-weight: 700;
	margin-bottom: 20px;
}

.bkr003 .blog-1 .news-block-two .caption-box h3	a{
	color: #fefefe;
	-webkit-transition: all 300ms ease;
	-moz-transition: all 300ms ease;
	-ms-transition: all 300ms ease;
	-o-transition: all 300ms ease;
	transition: all 300ms ease;
}

.bkr003 .blog-1 .news-block-two .caption-box h3	a:hover{
	color: #FF0000;
}

.bkr003 .blog-1 .news-block-two .caption-box p{
	position: relative;
	font-size: 14px;
	line-height: 24px;
	color: #888888;
	margin-bottom: 14px;
}

.bkr003 .blog-1 .news-block-two .caption-box .read-more{
	position: relative;
	font-size: 14px;
	line-height: 24px;
	color: #FF0000;
	font-weight: 900;
	text-transform: uppercase;
	-webkit-transition: all 300ms ease;
	-moz-transition: all 300ms ease;
	-ms-transition: all 300ms ease;
	-o-transition: all 300ms ease;
	transition: all 300ms ease;
}

.bkr003 .blog-1 .news-block-two .caption-box .read-more i{
	margin-left: 5px;
}

.bkr003 .blog-1 .news-block-two .caption-box .read-more:hover{
	color: #ffffff
}

/*
------------------------------------------------
  Blog Section 
------------------------------------------------
*/

.bkr003 .blog-4 {
	position: relative;
	margin: 140px 0px 110px;
}

.bkr003 .blog-4 .sec-title-two h6{
	font-size: 12px;
	font-weight: 700;
	line-height: 26px;
	color: #222222;
	letter-spacing: 8px;
	padding-bottom: 5px;
	text-transform: uppercase;
}

.bkr003 .blog-4 .sec-title-two h2{
	position: relative;
	font-size: 40px;
	font-weight: 700;
	color: #222222;
	line-height: 45px;
	padding-bottom: 35px;
	color: #001659;
	font-size: 48px;
	font-weight: 600;
}

.bkr003 .blog-4 .sec-title-two h2:before{
	position: absolute;
	bottom: 0px;
	left: 50%;
	margin-left: -38px;
	width: 76px;
	height: 2px;
	content: '';
	background: #ff6363;
}

.bkr003 .blog-4 .sec-title-two h2 span{
	font-weight: 300;
	color: #222222;
	font-size: 40px;
	margin-bottom: 0px;
	display: inline-block;
	line-height: 0px;
	color: #001659;
	font-size: 48px;
	font-weight: 400;
}

.bkr003 .blog-4 .sec-title-two{
	margin-bottom: 80px;
}

.bkr003 .blog-4 .blog-item-one{
	margin-bottom: 40px;
}

.bkr003 .blog-4 .blog-item-one.left-slide{
	margin-right: 7px;
}

.bkr003 .blog-4 .blog-item-one .image-box{
	overflow: hidden;
}

.bkr003 .blog-4 .blog-item-one .image-box img{
	width: 100%;
	transform: scale(1);
	transition:all 500ms ease;
}

.bkr003 .blog-4 .blog-item-one:hover .image-box img{
	transform: scale(1.1);
	transition:all 500ms ease;
}

.bkr003 .blog-4 .blog-item-one .content-text {
    padding: 30px 25px 25px;
    box-shadow: 0 0 7px 1px #f5ecec;
}

.bkr003 .blog-4 .blog-item-one .content-text h5 {
    font-size: 23px;
    color: #333333;
    line-height: 35px;
    font-weight: 500;
    padding-bottom: 10px;
    transition: all 500ms ease;
}

.bkr003 .blog-4 .blog-item-one .image-box figure {
    margin: 0;
}

.bkr003 .blog-4 .blog-item-one .content-text h5:hover{
	color: #ff6363;
	transition:all 500ms ease;
}

.bkr003 .blog-4 .blog-item-one .text-left {
	float: left;
}

.bkr003 .blog-4 .blog-item-one .text-left li{
	font-size: 15px;
	color: #333333;
	font-weight: 600;
	line-height: 26px;
	margin-right: 45px;
	display: inline-block;
}

.bkr003 .blog-4 .blog-item-one .text-left li i{
	color: #ff6363;
	font-size: 15px;
	line-height: 26px;
	margin-right: 7px;
}

.bkr003 .blog-4 .blog-item-one .text-left li span{
	color: #ff6363;
	font-size: 13px;
}

.bkr003 .blog-4 .blog-item-one .link-btn {
	float: right;
}

.bkr003 .blog-4 .blog-item-one .link-btn a{
	font-size: 15px;
	color: #222222;
	font-weight: 600;
	text-transform: uppercase;
	/* font-family: 'Ubuntu', sans-serif; */
	transition:all 500ms ease;
}

.bkr003 .blog-4 .blog-item-one .link-btn i{
	color: #222222;
	margin-left: 5px;
}

.bkr003 .blog-4 .blog-item-one .link-btn a:hover{
	color: #ff6363;
	transition:all 500ms ease;
}

.bkr003 .blog-4 .blog-item-one .link-btn a:hover i{
	color: #ff6363;
	transition:all 500ms ease;
}


/*** 

====================================================================
				News Section
====================================================================

***/

.bkr003 .blog-10 {
	position: relative;
	padding: 100px 0 70px;
}

.bkr003 .blog-10 .sec-title h2 {
	position: relative;
	display: block;
	font-size: 36px;
	line-height: 60px;
	color: #333333;
	font-weight: 600;
	padding: 0 0 30px;
	-webkit-mask-image: linear-gradient(-75deg, rgba(10,21,169,0.6) 50%, #ff7e00 50%, rgba(0,0,0,1) 70%);
	-webkit-mask-size: 200%;
	color: #001659;
	font-size: 48px;
	font-weight: 600;
}



.bkr003 .blog-10 .sec-title.text-center {
	right: 0;
	margin: 0 auto;
}

.bkr003 .blog-10 .sec-title.text-center h2:before{
	left: 47%
}

.bkr003 .blog-10 .sec-title.text-center h2:after{
	left: 51%;
}

@-webkit-keyframes shine {
  from {
    -webkit-mask-position: 150%;
  }
  
  to {
    -webkit-mask-position: -50%;
  }
}
.bkr003 .blog-10 .news-box {
    margin: 0;
}
.bkr003 .blog-10 .sec-title{
	position: relative;
	margin-bottom: 45px;
	z-index: 1;
}

.bkr003 .blog-10 .news-block{
	position: relative;
	margin-bottom: 30px;
	z-index: 1;
}

.bkr003 .blog-10 .news-block .inner-box{
	position: relative;
}

.bkr003 .blog-10 .news-block .image-box{
	position: relative;
}

.bkr003 .blog-10 .news-block .image-box .image{
	position: relative;
	margin-bottom: 0;
}

.bkr003 .blog-10 .news-block .image-box .image img{
	display: block;
	width: 100%;
	height: auto;
}

.bkr003 .blog-10 .news-block .image-box .overlay-box{
	position: absolute;
	left: 0;
	top: 0;
	height: 0%;
	width: 100%;
	background: #FF0000 padding-box content-box;
	content: "";
	padding: 15px;
	opacity: 0;
	-webkit-transition: all 300ms linear;
	-moz-transition: all 300ms linear;
	-ms-transition: all 300ms linear;
	-o-transition: all 300ms linear;
	transition: all 300ms linear;
}

.bkr003 .blog-10 .news-block .inner-box:hover .overlay-box{
	height: 100%;
	opacity: 0.70;
}

.bkr003 .blog-10 .news-block .overlay-box a{
	position: absolute;
	left: 50%;
	top: 50%;
	height: 40px;
	width: 40px;
	margin-left: -20px;
	margin-top: -20px;
	text-align: center;
	font-size: 30px;
	line-height: 40px;
	color: #000000;
	font-weight: 400;
	-webkit-transform: scale(0);
	-moz-transform: scale(0);
	-ms-transform: scale(0);
	-o-transform: scale(0);
	transform: scale(0);
}

.bkr003 .blog-10 .news-block .inner-box:hover .overlay-box a{
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-ms-transform: scale(1);
	-o-transform: scale(1);
	transform: scale(1);
	-webkit-transition: all 300ms linear;
	-moz-transition: all 300ms linear;
	-ms-transition: all 300ms linear;
	-o-transition: all 300ms linear;
	transition: all 300ms linear;
	-webkit-transition-delay: 300ms;
	-moz-transition-delay: 300ms;
	-ms-transition-delay: 300ms;
	-o-transition-delay: 300ms;
	transition-delay: 300ms;
}

.bkr003 .blog-10 .news-block .overlay-box a i{
	-webkit-transition: all 300ms ease;
	-moz-transition: all 300ms ease;
	-ms-transition: all 300ms ease;
	-o-transition: all 300ms ease;
	transition: all 300ms ease;
}

.bkr003 .blog-10 .news-block .overlay-box a:hover i{
	color: #ffffff;
}

.bkr003 .blog-10 .news-block .caption-box {
	position: relative;
	margin-top: -30px;
	margin-left: 60px;
	padding: 22px 30px 33px;
	background-color: #ffffff;
	-webkit-box-shadow: 0 0 21px rgba(0,0,0,0.21);
	-moz-box-shadow: 0 0 21px rgba(0,0,0,0.21);
	-ms-box-shadow: 0 0 21px rgba(0,0,0,0.21);
	-o-box-shadow: 0 0 21px rgba(0,0,0,0.21);
	box-shadow: 0 0 21px rgba(0,0,0,0.21);
}

.bkr003 .blog-10 .news-block .caption-box h3 {
	position: relative;
	display: block;
	font-size: 23px;
	line-height: 30px;
	color: #222;
	font-weight: 600;
	margin-top: 4px;
}
.bkr003 .blog-10 .news-block .caption-box .text {
    margin-top: 17px;
}
.bkr003 .blog-10 .news-carousel {
	position: relative;
	width: 100%;
}
.bkr003 .blog-10 .news-carousel .owl-stage-outer {
	position: relative;
	width: 100%;
	overflow: hidden;
}
.bkr003 .blog-10 .news-carousel .owl-item {
	float: left;
}

.bkr003 .blog-10 .news-block .inner-box .caption-box .post-date {
	position: absolute;
	left: -60px;
	background-color: #FF0000;
	padding: 12px 4px 21px;
	font-size: 20px;
	text-align: center;
	font-weight: 600;
	color: #fff;
	border-radius: 0 0 30px 30px;
	top: 30px;
	line-height: 20px;
	-webkit-transition: all 0.7s ease-in-out;
	-moz-transition: all 0.7s ease-in-out;
	-ms-transition: all 0.7s ease-in-out;
	-o-transition: all 0.7s ease-in-out;
	transition: all 0.7s ease-in-out;
	width: 50px;
}
.bkr003 .blog-10 .news-block .inner-box .caption-box .post-date span{
	width: 100%; 
	display: inline-block;
	font-size: 14px;
}
.bkr003 .blog-10 .news-block .inner-box:hover .caption-box .post-date{
	background-color: #222222;
}
.bkr003 .blog-10 .news-block .caption-box h3 a{
	color: #222;
	display: inline-block;
	-webkit-transition: all 300ms ease;
	-moz-transition: all 300ms ease;
	-ms-transition: all 300ms ease;
	-o-transition: all 300ms ease;
	transition: all 300ms ease;
}

.bkr003 .blog-10 .news-block .inner-box .caption-box h3 a:hover{
	color: #e38b00;
}

.bkr003 .blog-10 .news-block .caption-box .info{
	position: relative;
	display: block;
}

.bkr003 .blog-10 .news-block .caption-box .info li{
	position: relative;
	display: inline-block;
	font-size: 16px;
	line-height: 24px;
	color: #373737;
	font-weight: 600;
	margin-right: 25px;
	-webkit-transition: all
 300ms ease;
	-moz-transition: all 300ms ease;
	-ms-transition: all 300ms ease;
	-o-transition: all 300ms ease;
	transition: all 300ms ease;
}
.bkr003 .blog-10 .news-block .caption-box .info li i {
	margin-right: 10px;
	color: #FF0000;
}
.bkr003 .blog-10 .news-block .inner-box:hover .caption-box .info li{
	color: #222222;
}

.bkr003 .blog-10 .news-block .caption-box .info li a{
	color: #777777;
}

.bkr003 .blog-10 .news-carousel .owl-nav {
	display: block;
	margin-top: 0;
	position: absolute;
	right: 0;
	top: -50px;
}
.bkr003 .blog-10 .news-carousel .owl-nav .owl-next span{
	margin-left: 15px;
}
.bkr003 .blog-10 .news-carousel .owl-nav .owl-next::before {
	content: "";
	position: absolute;
	left: -15px;
	top: 6px;
	width: 2px;
	height: 15px;
	background-color: #bbbbbb;
}
.bkr003 .blog-10 .news-carousel .owl-nav .owl-prev span{
	margin-right: 15px;
}
.bkr003 .blog-10 .news-carousel .owl-nav .owl-prev, 
.bkr003 .blog-10 .news-carousel .owl-nav .owl-next {
	display: inline-block;
	margin: 0 14px;
	font-size: 16px;
	font-weight: 600;
	color: #333;
	position: relative;
	-webkit-transition: all 0.5s ease-in-out;
	-moz-transition: all 0.5s ease-in-out;
	-ms-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
	cursor: pointer;
}
.bkr003 .blog-10 .news-carousel .owl-nav .owl-prev:hover, 
.bkr003 .blog-10 .news-carousel .owl-nav .owl-next:hover {
	color: #FF0000;
}
.bkr003 .blog-10 .news-carousel .owl-nav .owl-prev span,
.bkr003 .blog-10 .news-carousel .owl-nav .owl-next span{
	transform: rotate(270deg);
}


/*** 

====================================================================
	Team Section
====================================================================

***/

.bkr003 .team-10 {
	position: relative;
	padding-top: 100px;
	padding-bottom: 60px;
}
.bkr003 .team-10 .sec-title-two{
	margin-bottom: 50px;
}
.bkr003 .team-10 .sec-title-two h2 {
    margin-bottom: 0px;
    color: #222;
}
.bkr003 .team-10 .team-style-one{
	position: relative;
	margin-bottom: 40px;
	overflow: hidden;
}
.bkr003 .team-10 .team-style-one .image-box{
	position: relative;
}
.bkr003 .team-10 .team-style-one .image-box img{
	width: 100%;
}
.bkr003 .team-10 .team-style-one .image-text {
	position: absolute;
	left: 10px;
	bottom: 10px;
	right: 10px;
	z-index: 99;
	text-align: center;
	background: #00165933;
	transition: all 500ms ease;
	-webkit-transition: all 500ms ease;
	-ms-transition:all 500ms ease;
	-o-transition:all 500ms ease;
}
.bkr003 .team-10 .team-style-one:hover .image-text {
    z-index: -99;
    transition: all 500ms ease;
	-webkit-transition: all 500ms ease;
	-ms-transition:all 500ms ease;
	-o-transition:all 500ms ease;
}
.bkr003 .team-10 .team-style-one .image-text h6{
	display: inline-block;
	color:  #ffffff;
	font-size: 16px;
	line-height: 22px;
	font-weight: 600;
	padding: 14px 35px;
}
.bkr003 .team-10 .team-style-one .overly-box h6{
	display: inline-block;
	color:  #ffffff;
	font-size: 16px;
	line-height: 22px;
	font-weight: 600;
	padding-bottom: 5px;
}
.bkr003 .team-10 .team-style-one .overly-box	{
	position: absolute;
	bottom: -500px;
	right: 10px;
	left: 10px;
	text-align: center;
	padding: 55px 20px 60px;
	background: #252627;
	transition: all 500ms ease;
	-webkit-transition: all 500ms ease;
	-ms-transition:all 500ms ease;
	-o-transition:all 500ms ease;
}
.bkr003 .team-10 .team-style-one:hover .overly-box{
	bottom: 10px;
	transition: all 500ms ease;
	-webkit-transition: all 500ms ease;
	-ms-transition:all 500ms ease;
	-o-transition:all 500ms ease;
}
.bkr003 .team-10 .team-style-one .overly-box	p{
	font-size: 14px;
	font-weight: 600;
	color: #FF0000;
	line-height: 26px;
}
.bkr003 .team-10 .team-style-one .socials-link-two li {
	margin: 2px;
	display: inline-block;
}
.bkr003 .team-10 .team-style-one .socials-link-two li i{
	font-size: 15px;
	width: 30px;
	height: 30px;
	line-height: 30px;
	color: #ffffff;
	border-radius: 50%;
	border: 1px solid #979797;
	transition: all 300ms ease;
}
.bkr003 .team-10 .team-style-one .socials-link-two li:hover i{
	color: #FF0000;
	background: #ffffff;
	border-color: #ffffff;
	transition: all 300ms ease;
}



/*** 

====================================================================
				Team Section
====================================================================

***/

.bkr003 .team-6 {
    position: relative;
    padding-top: 90px;
    padding-bottom: 70px;
}

.bkr003 .team-6 .sec-title{
	position: relative;
	margin-bottom: 40px;
	z-index: 9;
}

.bkr003 .team-6 .sec-title h2{
	position: relative;
	/* font-size: 40px; */
	/* line-height: 1.2em; */
	color: #001659;
	/* font-weight: 700; */
	padding-bottom: 14px;
	font-size: 40px;
	font-weight: 700;
	line-height: 55px;
	margin-bottom: 8px;
	text-transform: capitalize;
	font-size: 40px;
	/* line-height: 50px; */
	text-transform: capitalize;
	line-height: 1.3em;
}

.bkr003 .team-6 .sec-title h2:before{
	/* position: absolute; */
	/* bottom: 0; */
	/* left: 0; */
	/* display: inline-block; */
	/* height: 3px; */
	/* width: 75px; */
	/* background-color: #d55342; */
	/* content:""; */
	/* border-radius: 50%; */
}

.bkr003 .team-6 .sec-title .text{
	position: relative;
	font-size: 16px;
	line-height: 26px;
	color: #777777;
	font-weight: 400;
	margin-top: 30px;
}

.bkr003 .team-6 .sec-title.text-center h2:before{
	right: 0;
	margin: 0 auto;
}

.bkr003 .team-6 .sec-title.light h2{
	color: #ffffff;
}

.bkr003 .team-6 .sec-title.light .text{
	color: #fefefe;
}

.bkr003 .team-6 .title-box{
	position: relative;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	padding-top: 135px;
	padding-bottom: 420px;
}

.bkr003 .team-6 .title-box:before{
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	background-color: #333333;
	opacity: .70;
	content: "";
}

.bkr003 .team-6 .team-box {
    position: relative;
    /* margin-top: -377px; */
}

.bkr003 .team-6 .team-box .row{
	margin: 0 ;
}

.bkr003 .team-6 .team-box .team-block{
	position: relative;
	padding: 0 22px;
	margin-bottom:40px;
}

.bkr003 .team-6 .team-block .inner-box{
	position: relative;
	overflow: hidden;
	background-color: #ffffff;
	border-radius: 10px;
	-webkit-box-shadow: 0 5px 13px rgba(0,0,0,.1);
	-moz-box-shadow: 0 5px 13px rgba(0,0,0,.1);
	-ms-box-shadow: 0 5px 13px rgba(0,0,0,.1);
	-o-box-shadow: 0 5px 13px rgba(0,0,0,.1);
	box-shadow: 0 5px 13px rgba(0,0,0,.1);
}

.bkr003 .team-6 .team-block .image-box{
	position: relative;
}

.bkr003 .team-6 .team-block .image-box::before{
    position: absolute;
    top: 0;
    left: -75%;
    z-index: 2;
    display: block;
    content: '';
    width: 50%;
    height: 100%;
    background: -webkit-linear-gradient(left, rgba(255,255,255,0) 0%, rgba(255,255,255,.3) 100%);
    background: -moz-linear-gradient(left, rgba(255,255,255,0) 0%, rgba(255,255,255,.3) 100%);
    background: -ms-linear-gradient(left, rgba(255,255,255,0) 0%, rgba(255,255,255,.3) 100%);
    background: -o-linear-gradient(left, rgba(255,255,255,0) 0%, rgba(255,255,255,.3) 100%);
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,.3) 100%);
    -webkit-transform: skewX(-25deg);
    -moz-transform: skewX(-25deg);
    -ms-transform: skewX(-25deg);
    -o-transform: skewX(-25deg);
    transform: skewX(-25deg);
}

.bkr003 .team-6 .team-block .inner-box:hover .image-box:before {
	-webkit-animation: shine 1.5s;
	animation: shine 1.5s;
}
@-webkit-keyframes shine {
	100% {
		left: 125%;
	}
}
@keyframes shine {
	100% {
		left: 125%;
	}
}


.bkr003 .team-6 .team-block .image-box img{
	display: block;
	width: 100%;
	height: auto;
}

.bkr003 .team-6 .team-block .info-box {
    left: 0;
    bottom: 0;
    width: 100%;
    padding: 25px 0 30px;
    text-align: center;
    z-index: 9;
    background-color: #ffffff;
    border-bottom: 3px solid #FF0000;
}
.bkr003 .team-6 .team-block .social-links{
	position: relative;
	margin-bottom: 25px;
}

.bkr003 .team-6 .team-block .social-links li{
	position: relative;
	display: inline-block;
	margin: 0 4px;
	/* border: 1px solid #d9d9d9; */
	border-radius: 50%;
	/* background: #e7e7e7; */
	height: 35px;
	width: 35px;
	line-height: 39px;
	text-align: center;
	box-shadow: 0 5px 13px rgb(0 0 0 / 9%);
}

.bkr003 .team-6 .team-block .social-links li a{
	font-size: 18px;
	line-height: 24px;
	color: #707070;
	font-weight: 400;
	-webkit-transition: all 300ms ease;
	-moz-transition: all 300ms ease;
	-ms-transition: all 300ms ease;
	-o-transition: all 300ms ease;
	transition: all 300ms ease;
}

.bkr003 .team-6 .team-block .social-links li a:hover{
	color: #222222;
}

.bkr003 .team-6 .team-block .info-box .name {
    position: relative;
    display: block;
    font-size: 20px;
    line-height: 1.2em;
    color: #222;
    font-weight: 600;
    margin: 5px 0px;
}

.bkr003 .team-6 .team-block .info-box .name a{
	color: #333333;
	-webkit-transition: all 300ms ease;
	-moz-transition: all 300ms ease;
	-ms-transition: all 300ms ease;
	-o-transition: all 300ms ease;
	transition: all 300ms ease;
}

.bkr003 .team-6 .team-block .info-box .name a:hover{
	color: #d55342;
}

.bkr003 .team-6 .team-block .info-box .designation{
	display: block;
	font-size: 14px;
	line-height: 20px;
	color: #6d6d6d;
	font-weight: 600;
	text-transform: uppercase;
}


/*** 

====================================================================
	Team Section
====================================================================

***/

.bkr003 .team-2 {
	position:relative;
	padding:145px 0px 100px;
	border-top:1px solid #f7f7f7;
}

.bkr003 .team-2 .sec-title{
	position:relative;
	margin-bottom:50px;
}

.bkr003 .team-2 .sec-title .title{
	position:relative;
	color:#c4c4c4;
	font-size:14px;
	line-height:1.4em;
	letter-spacing:1px;
	margin-bottom:15px;
	text-transform:uppercase;
	font-size: 16px;
	color: #222;
	text-transform: uppercase;
	font-weight: 600;
}

.bkr003 .team-2 .sec-title
 h2{
	/* position:relative; */
	/* font-size:35px; */
	/* color:#222222; */
	/* font-weight:600; */
	/* line-height:1.3em; */
	/* padding-bottom:20px; */
	/* display:inline-block; */
	/* color: #001659; */
	/* font-size: 48px; */
	/* font-weight: 600; */
}

.bkr003 .team-2 .sec-title h2:after{
	position:absolute;
	content:'';
	left:0px;
	bottom:0px;
	width:42px;
	height:3px;
	background-color:#FF0000;
	display: none;
}

.bkr003 .team-2 .sec-title.light .title{
	color:#ffffff;
}

.bkr003 .team-1 .sec-title.light h2{
	color:#ffffff;
}

.bkr003 .team-2 .sec-title.centered{
	text-align:center;
}

.bkr003 .team-2 .sec-title.centered h2:after{
	left:50%;
	margin-left:-21px;
}

.bkr003 .team-2 .pattern-layer{
	position:absolute;
	right:0px;
	bottom:-300px;
	width:396px;
	height:560px;
	z-index:-1;
	background:url(//jaquesofalltrades.com/wp-content/themes/buildnet/assets/images/background/pattern-10.png) no-repeat;
}

.bkr003 .team-2 .grey-box{
	position: absolute;
    left: 0px;
    top: 0px;
    width: 50%;
    height: 100%;
    background-color: #f7f7f7;
}

.bkr003 .team-2 .grey-box:after{
	position: absolute;
    content: '';
    right: -50px;
    bottom: -50px;
    width: 100px;
    height: 100px;
    -webkit-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	transform: rotate(45deg);
    background-color: #ffffff;
}

.bkr003 .team-2 .owl-dots,
.bkr003 .team-2 .owl-nav{
	display:none;
}

.bkr003 .team-2 .team-block{
	position:relative;
	margin-bottom:40px;
}

.bkr003 .team-2 .team-block .inner-box{
	position:relative;
	overflow:hidden;
	z-index:1;
}

.bkr003 .team-2 .team-block .inner-box .image{
	position:relative;
}

.bkr003 .team-2 .team-block .inner-box .image .triangle-layer{
	position:absolute;
	left:-150px;
	top:-200px;
	width:440px;
	height:440px;
	z-index:1;
	opacity:0;
	visibility:hidden;
	-webkit-transition:all 900ms ease;
	-ms-transition:all 900ms ease;
	-o-transition:all 900ms ease;
	-moz-transition:all 900ms ease;
	transition:all 900ms ease;
	-webkit-transform: rotate(135deg);
	-o-transform: rotate(135deg);
	-ms-transform: rotate(135deg);
	-moz-transform: rotate(135deg);
	transform: rotate(135deg);
	background-color: rgba(255, 94, 20, 0.67);
}

.bkr003 .team-2 .team-block .inner-box:hover .image .triangle-layer{
	opacity:1;
	visibility:visible;
	-webkit-transform: rotate(30deg);
	-o-transform: rotate(30deg);
	-ms-transform: rotate(30deg);
	-moz-transform: rotate(30deg);
	transform: rotate(30deg);
}

.bkr003 .team-2 .team-block .inner-box .image .social-box{
	position:absolute;
	top:110%;
	right:10px;
	width:32px;
	z-index:1;
	padding-top:10px;
	padding-bottom:2px;
	text-align:center;
	background-color:#ffffff;
	-webkit-transition:all 900ms ease;
	-ms-transition:all 900ms ease;
	-o-transition:all 900ms ease;
	-moz-transition:all 900ms ease;
	transition:all 900ms ease;
	border-right:1px solid #b1ada8;
}

.bkr003 .team-2 .team-block .inner-box .image .social-box a{
	position:relative;
	display:block;
	color:#777777;
	font-size:14px;
	margin-bottom:5px;
	transition:all 0.3s ease;
	-moz-transition:all 0.3s ease;
	-webkit-transition:all 0.3s ease;
	-ms-transition:all 0.3s ease;
	-o-transition:all 0.3s ease;
}

.bkr003 .team-2 .team-block .inner-box .image .social-box a:hover{
	color: #FF0000;
}

.bkr003 .team-2 .team-block .inner-box:hover .image .social-box{
	top:10px;
}

.bkr003 .team-2 .team-block .inner-box .image img{
	position:relative;
	width:100%;
	display:block;
}

.bkr003 .team-2 .team-block .inner-box .lower-box{
	position:relative;
	left:0px;
	bottom:0px;
	width:100%;
	text-align:center;
	padding-top:22px;
	background: #fffbfb;
	padding-bottom: 31px;
	padding-top: 35px;
}

.bkr003 .team-2 .team-block .inner-box .lower-box h2{
	position:relative;
	color:#222222;
	font-size: 18px;
	font-weight: 600;
	text-transform:capitalize;
}

.bkr003 .team-2 .team-block .inner-box .overlay-box {
    position: absolute;
    left: 0px;
    bottom: -100px;
    width: 100%;
    top: unset;
    height: unset;
    z-index: 2;
    text-align: center;
    padding: 22px 0px 15px;
    background-color: #ffffff;
    border: 1px solid #e2e2e2;
    -webkit-transition: all 600ms ease;
    -ms-transition: all 600ms ease;
    -o-transition: all 600ms ease;
    -moz-transition: all 600ms ease;
    transition: all 600ms ease;
}

.bkr003 .team-2 .team-block .inner-box:hover .overlay-box{
	bottom:0px;
}

.bkr003 .team-2 .team-block .inner-box .overlay-box h3{
	position:relative;
	color:#222222;
	font-size:18px;
	font-weight:500;
	line-height:1.4em;
}

.bkr003 .team-2 .team-block .inner-box .overlay-box h3 a{
	position:relative;
	color:#222222;
	transition:all 0.3s ease;
	-moz-transition:all 0.3s ease;
	-webkit-transition:all 0.3s ease;
	-ms-transition:all 0.3s ease;
	-o-transition:all 0.3s ease;
}

.bkr003 .team-2 .team-block .inner-box .overlay-box h3 a:hover{
	color: #FF0000;
}

.bkr003 .team-2 .team-block .inner-box .overlay-box .designation{
	position:relative;
	color: #FF0000;
	font-size:14px;
	font-weight: 600;
}

.bkr003 .team-2 .team-pagination{
	position:relative;
	margin-top:30px;
	text-align:right;
}


.testimonial-section h2:after {
    position: absolute;
    content: '';
    left: -416px;
    top: 193px;
    width: 281px;
    height: 288px;
    background-color: #f9f8fc;
    padding: 120px 0 110px;
    background: url(//jaquesofalltrades.com/wp-content/themes/buildnet/assets/images/background/dot.png);
    background-repeat: repeat;
    z-index: 99;
    float: left;
}

 .sec-title h2:before{
    position: absolute;
    top: 8px;
    height: 48px;
    width: 280px;
    background-image: url(//jaquesofalltrades.com/wp-content/themes/buildnet/assets/images/shape/dot.png);
}

.sec-title.centered h2:before {
    position: absolute!important;
    /* top: 8px!important; */
    /* height: 48px!important; */
    /* width: 280px!important; */
    background-image: url(//jaquesofalltrades.com/wp-content/themes/buildnet/assets/images/shape/dot.png);
    content: "";
    background-repeat: repeat!important;
    background-position: left top!important;
    margin: 0 auto;
    z-index: -11;
    margin-left: -20px;
    top: -5px;
    height: 50px;
    width: 60px;
    display: none;
}
.sec-title h2:before {
    /* position: absolute; */
    /* left: 10px; */
    /* top: 8px; */
    /* height: 48px; */
    /* width: 280px; */
    /* background-image: url(//jaquesofalltrades.com/wp-content/themes/buildnet/assets/images/shape/dot.png); */
    /* content: ""; */
    /* background-repeat: repeat; */
    /* background-position: left top; */
    /* margin-left: -30px; */
}
.service-icon-h10 .item .icon span:after {
    /* position: absolute; */
    /* left: 47px; */
    /* top: 55px; */
    /* height: 72px; */
    /* width: 48px; */
    /* background-repeat: no-repeat; */
    /* background-position: center; */
    /* content: ""; */
    -moz-filter: grayscale(1);
    -o-filter: grayscale(1);
    /* -webkit-transition: all 300ms ease; */
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    /* transition: all 300ms ease; */
    /* z-index: -1; */
    /* background: #FF000059; */
    /* position: absolute; */
    /* content: ''; */
    /* background-image: -webkit-linear-gradient( 45deg, #fefeff00 0%, #ff45555c 100%); */
    /* width: 70px; */
    /* height: 70px; */
    /* top: 39px; */
    /* right: 43px; */
    /* border-radius: 50%; */
    /* z-index: 1; */
    /* transition: all 500ms ease; */
    position: absolute;
    left: 33px;
    top: 77px;
    height: 30px;
    width: 30px;
    background-repeat: no-repeat;
    background-position: center;
    content: "";
    -moz-filter: grayscale(1);
    -o-filter: grayscale(1);
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
    z-index: -1;
    background: #FF0000;
    border-radius: 50%;
}




/*image Hover */
.service-img-h9 .item:hover .image-box img{
    -webkit-transform: scale(1.3);
    -moz-transform: scale(1.3);
    -ms-transform: scale(1.3);
    -o-transform: scale(1.3);
    transform: scale(1.3);
}
.service-img-h9 .item .image-box img{
    display: block;
    max-width: 100%;
    height: auto;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
}
.service-img-h9 .theme-btn {
    cursor: pointer;
}
.about-h9 .left-side h2:before {
    position: absolute;
    left: -25px;
    /* top: -6px; */
    /* height: 48px; */
    /* width: 280px; */
    background-image: url(//jaquesofalltrades.com/wp-content/themes/buildnet/assets/images/shape/dot.png);
    content: "";
    background-repeat: repeat;
    background-position: left top;
    z-index: -1;
    /* top: -5px; */
    /* height: 50px; */
    /* width: 89px; */
    /* margin-left: -20px; */
    top: -5px;
    height: 50px;
    width: 60px;
}
.title_color {
    color: #FF0000;
}

.service-img-h9:before {
    position: absolute;
    left: 0;
    bottom: 0;
    height: 371px;
    width: 100%;
    background-color: #f5f8fb;
    content: "";
    z-index: -111;
}

/*Line Animation */
.portfolio-h9 .filters li{
    text-decoration: none;
    background-image: linear-gradient(currentColor, currentColor);
    background-position: 0% 100%;
    background-repeat: no-repeat;
    background-size: 0% 2px;
    transition: background-size .3s;
    padding-bottom: 3px;
}
.portfolio-h9 .filters li:hover,
.portfolio-h9 .filters li:focus {
    background-size: 100% 2px;
	color: #FF0000;
}
.call-to-action-h8 {
    background-attachment: fixed;
}

/*image Hover */
.latest-news-h9 .inner-box:hover .image-box .image a img{
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -ms-transform: scale(1.2);
    -o-transform: scale(1.2);
    transform: scale(1.2);
}
.latest-news-h9 .inner-box .image-box .image a img{
    display: block;
    max-width: 100%;
    height: auto;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
   
 -o-transition: all 500ms ease;
    transition: all 500ms ease;
}
.latest-news-h9 .inner-box .image-box .image{
	overflow:hidden;
	border-radius: 4px;
}
.title-fill:after {
    color: #FF0000!important;
}
footer>.title-fill:after {
    color: #FF0000!important;
}
.why-choose-us-h8 .right-side .item .icon span:after {
    position: absolute;
    left: -14px;
    top: -21px;
    height: 71px;
    width: 58px;
    background-repeat: no-repeat;
    background-position: center;
    content: "";
    -moz-filter: grayscale(1);
    -o-filter: grayscale(1);
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
    /* z-index: -1; */
    background: #c59a6221;
    border-radius: 18px 50px  18px 50px;
    padding: 20px 9px;
}
.service-img-h8 .item .lower-content {
   
    background-color: #ffffff;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    background: transparent url(//jaquesofalltrades.com/wp-content/themes/buildnet/assets/images/background/pattern.png) 0% 0%/auto repeat scroll;
}
.service-img-h8 .item .lower-content .inner {
    background: #fff;
    padding: 18px 0px 18px 75px;
    position: relative;
    background: #FF0000e0;
    -webkit-box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48);
    -khtml-box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48);
    -moz-box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48);
    -ms-box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48);
    -o-box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48);
    box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48);
    background-color: #d5aa6d;
    background-image: -webkit-gradient(linear, left top, right top,from(#d5aa6d),to(#9b6f45));
    background-image: -webkit-linear-gradient(left,#d5aa6d,#9b6f45);
    background-image: -moz-linear-gradient(left,#d5aa6d,#9b6f45);
    background-image: -ms-linear-gradient(left,#d5aa6d,#9b6f45);
    background-image: -o-linear-gradient(left,#d5aa6d,#9b6f45);
    -webkit-box-shadow: 0 4px 7px rgb(248, 105, 41);
    -khtml-box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48);
    -moz-box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48);
    -ms-box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48);
    -o-box-shadow: 0 4px 7px rgba(213, 170, 109, 0.48);
    box-shadow: 0 4px 7px rgba(255, 94, 20, 0.49);
    background-color: #FF0000;
    background-image: -webkit-gradient(linear, left top, right top,from(#f96a29),to(#d35417));
    background-image: -webkit-linear-gradient(left,#f96928,#d25215);
    background-image: -moz-linear-gradient(left,#d5aa6d,#9b6f45);
    background-image: -ms-linear-gradient(left,#d5aa6d,#9b6f45);
    background-image: -o-linear-gradient(left,#d5aa6d,#9b6f45);
}

/*image Hover */
.service-img-h8 .item:hover .image-box-two img{
    -webkit-transform: scale(1.3);
    -moz-transform: scale(1.3);
    -ms-transform: scale(1.3);
    -o-transform: scale(1.3);
    transform: scale(1.3);
}
.service-img-h8 .item .image-box-two img{
    display: block;
    max-width: 100%;
    height: auto;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
}

.service-img-h8 .item:hover .lower-content .inner
{
    background-color: #FF0000;
}
.service-img-h8 .item .lower-content .inner:before{
    position: absolute;
    content: '';
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    border-right: none;
    transform: translateX(110%);
    transition: all 900ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    background: #fff;
}

.service-img-h8 .item:hover .lower-content .inner:before,
.service-img-h8 .item:hover .lower-content .inner:after {
    -webkit-transform: translateY(0%);
    -ms-transform: translateY(0%);
    transform: translateY(0%);
}
.service-img-h8 .item .lower-content .inner{
	overflow:hidden;
}
.service-img-h8 .item:hover .lower-content .inner .icon span:before{
    color: #fff;
}
.service-img-h8 .item:hover .lower-content .inner  h3 a{
    color: #222;
}

.service-img-h8 .item .icon {
    position: absolute;
    top: 0px;
    left: 0px;
    background: #000000;
    padding: 21px 15px;
}
.service-img-h8 .item:hover .icon{
    position: absolute;
    top: 0px;
    left: 0px;
    background: #001659;
    color:#fff;
	transition: all 700ms ease;
}
.why-choose-us-h8 .right-side .item:hover .icon span:after {
    position: absolute;
    left: -14px;
    top: -21px;
    height: 71px;
    width: 53px;
    background-repeat: no-repeat;
    background-position: center;
    content: "";
    -moz-filter: grayscale(1);
    -o-filter: grayscale(1);
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
    /* z-index: -1; */
    background: #56565629;
}
.why-choose-us-h8 .right-side .item:hover .icon span:before {
    /* font-size: 45px; */
    color: #3d3d3d;
    /* left: 1px; */
    margin-left: -2px;
	transition: all 700ms ease;
}

/*Line Animation */
.portfolio-h8 .filters li{
    text-decoration: none;
    background-image: linear-gradient(currentColor, currentColor);
    background-position: 0% 100%;
    background-repeat: no-repeat;
    background-size: 0% 2px;
    transition: background-size .3s;
    padding-bottom: 3px;
	transition: all 700ms ease;
}
.portfolio-h8 .filters li:hover, .portfolio-h8 .filters li:focus {
    background-size: 100% 2px;
    color: #FF0000;
    transition: all 700ms ease;
}

/*image Hover */
.about-h8 .item .image-box:hover img{
    -webkit-transform: scale(1.3);
    -moz-transform: scale(1.3);
    -ms-transform: scale(1.3);
    -o-transform: scale(1.3);
    transform: scale(1.3);
}
.about-h8 .item .image-box img{
    display: block;
    max-width: 100%;
    height: auto;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
}

.why-choose-us-h8 .sec-title .title-two h2 {
    width: 93%;
}
.spbg{
	padding: 100px 0px 0px 0px;
    margin-bottom: -25px;
	background: #ffffffcf;
	margin-top:-100px;
}

.why-choose-us-h7 .image-box img {
    margin-top: -40px;
}

.service-icon-h7-two:before {
    position: absolute;
    content: '';
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    background-color: #f9f8fccf;
}

.service-img-h6 .sec-title .title-two h2:before,.project-slider-h6 .sec-title .title-two h2:before,.team-h6 .sec-title .title-two h2:before,.latest-news-h6 .sec-title .title-two h2:before {
    position: absolute;
    top: 7px;
    height: 40px;
    width: 89px;
    background-image: url(//jaquesofalltrades.com/wp-content/themes/buildnet/assets/images/shape/dot.png);
    content: "";
    background-repeat: repeat;
    background-position: left top;
    padding-left: -21px;
    margin-left: -50px;
    z-index:-111;
    display: none;
}
.about-h6 .text-holder .subtitle h3 {
    text-transform: uppercase;
    line-height: 1.5em;
    margin-bottom: 20px;
}
.overlay-dark-bg-2:before {
    background: #ccc !important;
}
.overlay-dark-bg-3:before {
    background: #FF0000!important;
}
.strategy-block .inner-box .icon-box:after {
    position: absolute;
    left: 27px;
    top: 1px;
    height: 72px;
    width: 48px;
    background-repeat: no-repeat;
    background-position: center;
    content: "";
    -moz-filter: grayscale(1);
    -o-filter: grayscale(1);
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
    /* z-index: -1; */
    background: #FF000029;
}
.services-block-four .inner-box .icon-box:after {
    position: absolute;
    left: 15px;
    top: -5px;
    height: 72px;
    width: 48px;
    background-repeat: no-repeat;
    background-position: center;
    content: "";
    -moz-filter: grayscale(1);
    -o-filter: grayscale(1);
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
    /* z-index: -1; */
    background: #FF000014;
}
.services-block-four .inner-box:hover .icon-box:after {
    left: 20px;
    background: #1a1a1a21;
}
.feature-block-two{
	overflow:hidden;
}
.services-block-four .inner-box {
    background: #fff;
    box-shadow: 0px 7px 38px 0px rgba(0, 0, 0, 0.1);
}
.strategy-section {
    background-repeat: no-repeat;
    background-position: right;
}
.subtitlexx h4{
	    font-size: 24px;
    color: #434343;
    line-height: 36px;
    font-weight: 600;
    margin-bottom: 26px;
}
.feature-block .inner-box {
    overflow: hidden;
}

.services-block .inner-box .icon-box:after {
    position: absolute;
    left: -12px;
    top: -2px;
    height: 98px;
    width: 65px;
    background-repeat: no-repeat;
    background-position: center;
    content: "";
    -moz-filter: grayscale(1);
    -o-filter: grayscale(1);
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
    /* z-index: -1; */
    background: #FF000026;
    border-radius: 5px;
}
.testimonial-section .sec-title h2:before,.fluid-section-two .sec-title h2:before,.news-section .sec-title h2:before{
    position: absolute;
    left: -30px;
    top: 8px;
    height: 48px;
    width: 270px;
    /* background-image: url(//jaquesofalltrades.com/wp-content/themes/buildnet/assets/images/shape/dot.png); */
    content: "";
    background-repeat: repeat;
    background-position: left top;
    z-index: -1;
    top: 3px;
    height: 40px;
    width: 89px;
    display: none;
}
.news-section .image-column {
    margin-top: -242px;
}
.news-section .image-column .image{
    margin-left: -20px;
   
 padding-bottom: -13px;
    margin-bottom: 0px;
}
.expert-section {
    padding: 100px 0px 100px;
}
.services-block-three .inner-box .icon-box {
    z-index: 1;
}
.services-block-three .inner-box .icon-box:after {
    position: absolute;
    left: -13px;
    top: 25px;
    height: 50px;
    width: 50px;
    background-repeat: no-repeat;
    background-position: center;
    content: "";
    -moz-filter: grayscale(1);
    -o-filter: grayscale(1);
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
    z-index: -1;
    background: #e3b4b45e;
    border-radius: 50%;
}
.uyt{
    padding-top: 100px;
    padding: 100px 0 80px;
    background: #f4f4f4;
}
.uyt .sec-title h2 {
    color: #001659;
}
.uyt .sec-title .title-text {
    color: #FF0000;
}
.uyt .owl-nav{
    display: none;
}

.fluid-section-four .sec-title h2:before,.news-section-four .sec-title h2:before{
    position: absolute!important;
    top: 8px!important;
    height: 48px!important;
    width: 280px!important;
    background-image: url(//jaquesofalltrades.com/wp-content/themes/buildnet/assets/images/shape/dot.png);
    content: "";
    background-repeat: repeat!important;
    background-position: left top!important;
    margin: 0 auto;
    z-index: -11;
    margin-left: -50px;
}

/*image Hover */
.news-block-four .inner-box .image-column:hover .inner-column .image img{
    -webkit-transform: scale(1.3);
    -moz-transform: scale(1.3);
    -ms-transform: scale(1.3);
    -o-transform: scale(1.3);
    transform: scale(1.3);
}
.news-block-four .inner-box .image-column .inner-column .image img{
    display: block;
    max-width: 100%;
    height: auto;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
}
.news-block-four .inner-box .image-column .inner-column .image{
	overflow:hidden;
}
.story-block:hover .inner-box .image img{
    -webkit-transform: scale(1.3);
    -moz-transform: scale(1.3);
    -ms-transform: scale(1.3);
    -o-transform: scale(1.3);
    transform: scale(1.3);
}
.story-block .inner-box .image img{
    display: block;
    max-width: 100%;
    height: auto;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
}
.story-block .inner-box .image{
	overflow:hidden;
}
.nopad.project-slider-h7{
	padding-top:0px!important;
}

.service-icon-h10 .item:hover .icon span:after {
    left: 44px;
}
.service-icon-h10 .item:hover .icon span:before {
    color: #2c2c2c;
}
/*Line Animation */
.service-icon-h10 .item h2 a{
    text-decoration: none;
    background-image: linear-gradient(currentColor, currentColor);
    background-position: 0% 100%;
    background-repeat: no-repeat;
    background-size: 0% 1px;
    transition: background-size .3s;
    padding-bottom: 2px;
}
.service-icon-h10 .item:hover h2 a,
.service-icon-h10 .item h2 a:focus {
    background-size: 100% 1px;
    color: #262626;
    line-height: 35px;
}
.service-icon-h10 .item h2 {
    line-height: 35px;
}

.service-icon-h10 .item:hover{
    background:#fcfcfc;
}
.services-tab-h10 .sec-title .title-two h2:before,.pricing-07 .sec-title .title-two h2:before,.faq-form-h8 .sec-title .title-two h2:before,.faq-form-h8 .content-box .title h2:before,.latest-news-h8 .sec-title .title-two h2:before,.call-to-action-h10 .content .sec-title .title-two h2:before,.workprocess-h10 .sec-title .title-two h2:before {
    background-repeat: repeat!important;
    background-position: left top!important;
    margin: 0 auto;
    z-index: -11;
    margin-left: -50px;
}
.rashid01.latest-news-07 .inner-box {
    margin-bottom: 40px;
}
.service-icon-h10 .item {
    margin-bottom: 30px;
}
.service-img-h6 .item {
    margin-bottom: 30px;
    margin-left: 10px;
    border-radius: 10px;
}
.semanual17 .item{
	margin-bottom:30px;
}
.semanual17 .item .image-box-two img{
	width:100%;
}
.semanual17{
padding-bottom:80px;	
}
.service24{
	padding-top:80px;
}
.services-25 .block-inner h4 {
    position: relative;
    color: #222222;
    font-size: 23px;
    font-weight: 600;
    line-height: 1.4em;
    margin-bottom: 12px;
}
.services-26 .inner-box h3 {
    position: relative;
    color: #222222;
    font-size: 23px;
    font-weight: 600;
    line-height: 1.7em;
    margin-bottom: 12px;
}
.services-26 .feature-block-four {
    position: relative;
    margin-bottom: 30px;
    padding: 35px;
}
.projects-4 .sec-title.centered {
    text-align: center;
    margin-bottom: 90px;
}
.projects-4 .sec-title h2 {
    color: #ffffff;
}
.projects-4 .sec-title .title-text {
    position: relative;
    color: #ffffff;
}

.bkr003 .about-4 .image-column .inner-column .image.image-two img{
    width: 192px;
}
.bkr003 .about-4 .image-column .inner-column .image.image-three img{
    width: 192px;
}
.bkr003 .about-4 .image-column .inner-column .image.image-four img{
    width: 192px;
}

 .team-h9.team-h9rashid .sec-title {
    margin-left: 0px!important;
    margin-right:0px!important;
}
 .team-h9.team-h9rashid .owl-nav{
	 display:none!important;
 }

.servicw5 .sec-title.centered {
    text-align: center;
    margin-bottom: 90px;
}
.servicw5 .feature-block-four {
    position: relative;
    margin-bottom: 60px;
}
.services-section-four {
    position: relative;
}




@media only screen and (max-width: 399px){ 

	
	
.main-slider .theme-btn {
    display: block;
    margin-bottom: 20px;
    text-align: center;
}
	
	

}

@media only screen and (max-width: 1660px){
	
	
.pricing-h9 .sec-title {
    margin-left: 0;
}
.feature-block-three .inner-box .content .icon-box {
    position: relative;
    margin-bottom: 30px;
}
.feature-block-three .inner-box .content {
    padding-left: 0;
}
.feature-block-three .inner-box {
    padding: 55px 35px 55px;
}


}

@media only screen and (max-width: 1200px){ 
	
	
.news-section {
    overflow: hidden;
}
.service-icon-h10 .item .icon {
    margin-bottom: 20px;
	display: inline-block;
}

.about-h10 .btn-box-two {
    margin-top: 20px;
    margin-bottom: 30px;
}
.service-icon-h10 .item .icon span:after {
    left: 25px;
    top: -25px;
}


}

@media only screen and (max-width: 991px){ 
	
	
.fluid-section-one .overlay-anim-box2 {
    display: block;
}
.news-section .image-column {
    margin-top: 0;
}
.news-section .image-column .image {
    margin-left: 0;
}
.news-section {
    padding-bottom: 100px;
}
.strategy-section .inner-column {
    margin-bottom: 30px;
}
.strategy-block .inner-box .icon-box {
    margin-bottom: 30px;
}
.service-img-h9 .item .lower-content .icon {
    position: relative;
    left: 25;
    bottom:30;
    margin: 20px 0px;
}
.service-img-h9 .item .lower-content .title h3 {
    margin-left: 0;
}	
.service-img-h9 .item .lower-content .text p {
    margin-top: 20px;
    margin-bottom: 0;
}
.why-choose-us-h7 .text-box .list ul li .icon {
    position: relative;
    left: 0;
    top: 0;
    margin: 30px 0px;
}
.why-choose-us-h7 .text-box .list ul li {
    padding-left: 0;
}
.why-choose-us-h7 .text-box .list {
    margin-top: 60px;
}
.rtlstyle .services-block-three .inner-box .icon-box:after {
    opacity: 0;
}
.bkr003 .about-4 .image-column .inner-column .image.image-one {
    margin-left: 0;
	margin-bottom: 30px;
}
.bkr003 .about-4 .image-column .inner-column .image.image-one img {
    width: 100%;
}
.bkr003 .about-4 .image-column .inner-column .image.image-two {
    position: relative;
    bottom: 0;
	margin-bottom: 30px;
}
.bkr003 .about-4 .image-column .inner-column .image.image-two img{
    width: 100%;
}
.bkr003 .about-4 .image-column .inner-column .image.image-three {
    position: relative;
    right: 0;
    top: 0;
	margin-bottom: 30px;
}
.bkr003 .about-4 .image-column .inner-column .image.image-three img {
    width: 100%;
}
.bkr003 .about-4 .image-column .inner-column .image.image-four {
    position: relative;
    right: 0;
    bottom: 0;
	margin-bottom: 30px;
}
.bkr003 .about-4 .image-column .inner-column .image.image-four img {
    width: 100%;
}
.project-slider-h6 .overlay-anim-box2 {
    display: block;
}
.project-slider-h6 .text-box {
    top: 0;
    box-shadow: unset;
}
	

}

@media only screen and (max-width: 767px){
.call i {
    display: block;
    margin-bottom: 30px;
}
.about-h10 .right-side .call {
    line-height: 35px;
}	
.about-h10 .btn-box-two {
    margin-top: 20px;
}
.why-choose-us-h8 .right-side .item .icon {
    position: relative;
    left: 0;
    top: 0;
    margin: 30px 0px;
}
.why-choose-us-h8 .right-side .item {
    padding: 0px 0px 0px 0px;
}
.why-choose-us-h8 .right-side .item .icon span:after {
    left: 15px;
}
	
	
}



figure {
    margin-bottom: 0;
}
.services-single .inner-box .lower-content .row.two h2 {
    padding-left: 15px;
}
.services-single .inner-box .lower-content .row.two .text {
	padding-left: 15px;
}


.footer-h6 .widgets-section .about-widget .logo img{
    width: 190px;
}
.sliderlogo img{
	 width: 114px!important;
     margin-bottom: 30px!important;
}

.about-h6 .img-holder .video-img .icon:before {
    content: '';
    position: absolute;
    left: 15px;
    top: 15px;
    right: 15px;
    bottom: 15px;
    border: 3px solid #fff;
    z-index: 1;
}
.about-h6 .img-holder .video-img .icon .icon-box {
    display: none;
}
.sticky-header .logo a img {
    width: 150px;
}
.testimonials-h6:before {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.95);
    content: "";
}
.call-to-action-h6-two:after {
    position: absolute;
    content: ''!important;
    background: url(//jaquesofalltrades.com/wp-content/themes/buildnet/assets/images/98.png)!important;
    width: 97px!important;
    height: 100%!important;
    left: 2%!important;
    top: 0%!important;
    background-repeat: repeat-y!important;
    z-index: 1;
}
.service-img-h6:after
 {
    position: absolute;
    content: ''!important;
    background: url(//jaquesofalltrades.com/wp-content/themes/buildnet/assets/images/97.png)!important;
    width: 260px!important;
    height: 800px!important;
    right: 0%!important;
    top: 15px!important;
    background-repeat: repeat-y!important;
    z-index: 1;
    display: none;
}
.call-to-action-h6-two .title_color{
	color:#fff!important;
	text-decoration: underline;
	/* text-decoration-color: #dbdbdb; */
}

.latest-news-h6:after {
    position: absolute;
    content: ''!important;
    /* background: url(//jaquesofalltrades.com/wp-content/themes/buildnet/assets/images/96.png)!important; */
    width: 260px!important;
    height: 800px!important;
    left: 0%!important;
    top: 15px!important;
    background-repeat: repeat-y!important;
    z-index: 1;
}

.animx .shape-5 {
    position: absolute;
    top: 11%;
    right: 88%;
    z-index: 9;
}
/* Animation */
.rotate-me {
    animation-name: rotateme;
    animation-duration: 30s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    -webkit-animation-name: rotateme;
    -webkit-animation-duration: 30s;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    -moz-animation-name: rotateme;
    -moz-animation-duration: 30s;
    -moz-animation-iteration-count: infinite;
    -moz-animation-timing-function: linear;
    -ms-animation-name: rotateme;
    -ms-animation-duration: 30s;
    -ms-animation-iteration-count: infinite;
    -ms-animation-timing-function: linear;
    -o-animation-name: rotateme;
    -o-animation-duration: 30s;
    -o-animation-iteration-count: infinite;
    -o-animation-timing-function: linear;
}

.float-bob-x {
    animation-name: float-bob-x;
    animation-duration: 6s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    -webkit-animation-name: float-bob-x;
    -webkit-animation-duration: 6s;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    -moz-animation-name: float-bob-x;
    -moz-animation-duration: 6s;
    -moz-animation-iteration-count: infinite;
    -moz-animation-timing-function: linear;
    -ms-animation-name: float-bob-x;
    -ms-animation-duration: 6s;
    -ms-animation-iteration-count: infinite;
    -ms-animation-timing-function: linear;
    -o-animation-name: float-bob-x;
    -o-animation-duration: 6s;
    -o-animation-iteration-count: infinite;
    -o-animation-timing-function: linear;
}
.animx1 .shape-1 {
    position: absolute;
    top: 11%!important;
    left: 21%;
    z-index: 5;
}
.animx1 .shape-2 {
    position: absolute;
    top: 64%;
    left: 90%;
    z-index: 5;
}
.animx1 .shape-3 {
    position: absolute;
    top: -6%;
    left: 8%;
    z-index: 999;
    display: none;
}
.animx1 .shape-4 {
    position: absolute;
    top: 59%;
    right: 92%;
    display: none;
}
.animx1 .shape-5 {
    position: absolute;
    top: 11%;
    right: 88%;
    z-index: 9;
    display: none;
}
.animx1 .shape-6 {
    position: absolute;
    top: 10%;
    right: 11%;
    z-index: 9;
}
.workprocess-h10:before {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0);
    content: "";
}
.funfact-skill-h9 {
    background-image: url(//jaquesofalltrades.com/wp-content/themes/buildnet/assets/images/background/pattern-2.png);
}
.undrline {
    text-decoration: underline;
    text-decoration-color: #FF0000;
}

.about-h9:after {
    position: absolute;
    content: ''!important;
    background: url(//jaquesofalltrades.com/wp-content/themes/buildnet/assets/images/96.png)!important;
    width: 260px!important;
    height: 100px;
    left: 0%!important;
    top: 15px!important;
    background-repeat: repeat-y!important;
    z-index: 1;
}
.fluid-section-three .right-column .btn-style-five{
    background: #000;
    color: #ffffff;
    display: none;
}
.skills-section .sec-title .title-text {
    position: relative;
    color: #ffffff;
    font-size: 17px;
    line-height: 1.6em;
    font-weight: 500;
    margin-top: 0px;
    font-size: 17px;
    line-height: 1.6em;
    font-weight: 500;
    padding-bottom: 10px;
    text-transform: capitalize;
    text-align: left;
}
.services19{
	padding-top:110px;
}
.sernew .item{
	    box-shadow: none!important;
}

.page-title:after {
    position: absolute;
    content: ''!important;
    background: url(//jaquesofalltrades.com/wp-content/themes/buildnet/assets/images/96.png)!important;
    width: 260px!important;
    height: 254px!important;
    left: 0%!important;
    top: 3px!important;
    background-repeat: repeat-y!important;
    z-index: 1;
}
.team-h6.rashid01 .item{
    overflow: hidden;
    background: none;
    box-shadow: none;
    /* box-shadow: 2.15px 5.601px 18px 0px rgba(0, 0, 0, 0.19); */
}
.team-h6.rashid01 .item .title-box {
    background: #fff;
    margin-top: 0px;
    padding-top: 3px;
    padding-bottom: 28px;
    /* box-shadow: 2.15px 5.601px 18px 0px rgba(0, 0, 0, 0.19); */
    border-radius: 10px;
}
.about-h6 .text-holder .title-two h2 .title_color{
    color: #fe5e14;
}
.about-h9 .left-side h2 span.colort{
	    color: #fe5e14!important;
}
.service-img-h9 .owl-dots {
    display: none;
}

.service-icon-h10 .col-sm-12:nth-child(2) .item:before {
    position: absolute;
    content: "";
    bottom: -30px;
    opacity: 1;
    left: -23px;
    width: 115px;
    height: 115px;
    background: url(//jaquesofalltrades.com/wp-content/themes/buildnet/assets/images/shape/shape_7.png) no-repeat;
    transition: all 700ms ease;
    z-index: -2;
}
.why-choose-us-h7 .text-box .list ul li .icon span:after {
    left: -11px;
    background-repeat: no-repeat;
    background-position: center;
    content: "";
    -moz-filter: grayscale(1);
    -o-filter: grayscale(1);
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
    position: absolute;
    content: '';
    /* background-image: -webkit-linear-gradient( 45deg, #FF0000 0%, #dd581a 100%); */
    width: 30px;
    height: 30px;
    top: 25px;
    border-radius: 0px;
    z-index: 1;
    transition: all 500ms ease;
    background: #b0c3ff00;
    border: 2px solid #00000075;
    display: none;
}


.boxed_wrapper {
    overflow: hidden;
}

.offer-section-two.two {
    padding: 0px 0px 100px;
    margin-top: -10px;
}
.offer-section-two.fn2 .counter-box {
    position: relative;
    padding-top: 45px;
    padding-left: 130px;
    padding-right: 130px;
    background: #fff7f3;
    text-align: center;
}
.Construction-section.uyt {
    padding: 80px 0px 100px;
}
.project-slider-h7 {
    overflow: hidden;
}
.latest-news-h8.one {
    padding-bottom: 0;
}
.latest-news-h8.two {
    padding-top: 0;
}
.banner-section.style-h6 .slide-item {
    background-size: cover;
}
.sidebar-page-container.one {
    padding-bottom: 0;
}
.sidebar-page-container.two {
    padding: 0;
}
.elementor-widget:not(:last-child) {
    margin-bottom: 0 !important;
}
.sidebar-page-container .content-side, .sidebar-page-container .sidebar-side {
    margin-bottom: 0;
}
.sidebar-page-container.three {
    padding: 0;
}
.sidebar-page-container.four {
    padding-top: 0;
}
.sidebar-page-container.five {
    padding-bottom: 0;
}
.sidebar-page-container.six {
    padding: 0;
}
.sidebar-page-container.six .services-single .inner-box .lower-content .two-column {
    margin-top: 0;
}
.sidebar-page-container.seven {
    padding-top: 0;
}
.sidebar-page-container.seven .services-single .inner-box .lower-content {
    padding-top: 0;
}
.service-img-h9.services19 .item {
    margin-bottom: 30px;
    /* border-radius: 10px; */
}
.service-img-h9.services19 {
    padding-bottom: 60px;
}
.map {
    padding: 100px 0px 0px 0px;
    margin: 0px 250px;
}
div.wpcf7 .ajax-loader {
    display: none;
}
.service-img-h9 .theme-btn {
    margin-bottom: 0px;
    border-radius: 4px;
}


.latest-news-h8.two.three {
    margin-left: -15px;
}

.portfolio-page-section.five .gallery-block {
    margin-bottom: 30px;
}
.portfolio-page-section.five .gallery-block .inner-box .lower-content {
    display: none;
}



.breadcrumb-item+.breadcrumb-item::before {
    padding-right: 0;
    opacity: 0;
}

.errobtn_area {

    margin-top: 30px;
    text-align: center!important;
}
.banner-section.style-h10 .banner-carousel .content-box h2 {
    position: relative;
    display: block;
    font-size: 61px;
    line-height: 70px;
    color: #ffffff;
    font-weight: 700!important;
    opacity: 0;
    margin-bottom: 30px!important;
    -webkit-transform: translateY(-50px);
    -moz-transform: translateY(-50px);
    -ms-transform: translateY(-50px);
    -o-transform: translateY(-50px);
    transform: translateY(-50px);
    -webkit-transition: all 1000ms ease;
    -moz-transition: all 100ms ease;
    -ms-transition: all 1000ms ease;
    -o-transition: all 1000ms ease;
    transition: all 1000ms ease;
    text-transform: uppercase;
}

.services-block-three .inner-box .read-more span{
    /* width: 30px; */
    background: #fe5a0e;
    color: #fff;
    text-align: center;
    border-radius: 50%;
    padding: 0px 7px;
}
.task-section .content-column .inner-column .btn-box .btn-style-five {
    background: #2220;
    position: relative;
    z-index: 1;
    padding: 15px 45px;
    box-shadow: 0 -2px 0 0 rgba(255, 255, 255, 0.2) inset;
    border: 2px solid #fff;
}

.task-section .content-column .inner-column .btn-box .btn-style-five:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    height: 100%;
    width: 100%;
    background: #fff;
    -webkit-transform: scale(0, 1);
    -ms-transform: scale(0, 1);
    transform: scale(0, 1);
    -webkit-transform-origin: bottom right;
    -ms-transform-origin: bottom right;
    transform-origin: bottom right;
    -webkit-transition: transform 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -moz-transition: transform 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -o-transition: transform 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
    transition: transform 500ms cubic-bezier(0.860, 0.000,
 0.070, 1.000);
    -webkit-transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -moz-transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -o-transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
    transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
}
.task-section .content-column .inner-column .btn-box .btn-style-five:hover:after {
    -webkit-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    transform: scale(1, 1);
    -webkit-transform-origin: top left;
    -ms-transform-origin: top left;
    transform-origin: top left;
}
.task-section .content-column .inner-column .btn-box .btn-style-five:hover {
    color: #222222;
    transition: all 700ms ease;
}

.icon-box22 .icon {
    font-size: 122px;
    color: #2222220a;
    /* float: right; */
    bottom: -54px;
    position: absolute;
    right: -20px;
}
.about-h6  .list-style-two{
    margin-left: 13px;
}

.latest-news-h6 {
    padding: 100px 0px 80px 0px;
}

.services-block-three .inner-box:hover .read-more {
    color: #fff;
 
}

.portfolio-h9 .filters li {
    text-transform: uppercase;
}


/*** 

====================================================================
	Call TO Action Four
====================================================================

***/

.call-to-action-four{
	position:relative;
	padding:  0px 0px;
	color: #ffffff;
}

.call-to-action-four .inner{
	position: relative;
	display: block;
	padding-left: 420px;
	overflow: hidden;
	margin-bottom: -60px;
	z-index: 1;
}

.call-to-action-four .image-layer{
	position: absolute;
	left: 0;
	top: 0;
	width: 420px;
	height: 100%;
	background-position: left top;
	background-repeat: no-repeat;
	background-size: cover;
}

.call-to-action-four .inner .content{
	position: relative;
	display: block;
	background: #FF0000;
	padding: 60px 60px;
}

.call-to-action-four .inner .content:before{
	content: '';
	position: absolute;
	left: -40px;
	top: 0;
	width: 70px;
	height: 100%;
	background: #FF0000;
	-ms-transform: skewX(10deg);
	transform: skewX(10deg);
}

.call-to-action-four .inner h2{
	font-weight: 700;
	margin-bottom: 25px;
	line-height: 1.3em;
}

.icon-box23 .icon {
    font-size: 151px;
    color: #892f125c;
    /* float: right; */
    bottom: 60px;
    position: absolute;
    right: 44px;
}

.fluid-section-two  .btn-style-two:hover {
    background: #fff;
    color: #000000;
}
.btn-style-two {
    cursor: pointer;
}
.task-section .content-column .inner-column {
    margin-top: 20px;
}
 .testimonials-h8 .testimonials-h8-carousel{
    width: 80%;
}

.feature-block.alternate .inner-box .icon-box:after {
    position: absolute;
    left: -3px;
    top: 33px;
    height: 30px;
    width: 30px;
    background-repeat: no-repeat;
    background-position: center;
    content: "";
    -moz-filter: grayscale(1);
    -o-filter: grayscale(1);
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
    z-index: -1;
    background: #FF0000;
    border-radius: 50%;
}
.services-section-three  .icon-box2 .icon {
    font-size: 60px;
    color: #22222217;
    /* float: right; */
    bottom: 15px;
    position: absolute;
    right: 15px;
}
.services-section-three .feature-block .inner-box {
    overflow: hidden;
    background: #f8f8f8;
    padding-bottom: 50px;
    padding-top: 50px;
    /* padding: 50px; */
    padding: 45px;
    box-shadow: 0px 0px 25px rgba(0,0,0,0.15);
    background: white;
    border-radius: 10px;
    padding-bottom: 60px;
}


.feature-block:hover .inner-box .icon-box2 .icon {
   color: #ececec30!important;
    transition: all 700ms ease;
}
.title_colorx{
    color: #fe5e14;
}

.funfact-h6 .item .icon:after {
    position: absolute;
    left: 4px;
    top: 2px;
    height: 60px;
    width: 60px;
    background-repeat: no-repeat;
    background-position: center;
    content: "";
    -moz-filter: grayscale(1);
    -o-filter: grayscale(1);
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
    z-index: -1;
    background: #ededed3b;
    border-radius: 50%;
}

.service-img-h6 .item .title-box:before {
    content: '';
    position: absolute;
    left: -40px;
    top: 0;
    width: 70px;
    height: 100%;
    background: #FF0000;
    -ms-transform: skewX(10deg);
    transform: skewX(10deg);
}
.animx1 .shape-6 {
    display: none;
}
.service-icon-h7-one .column .item:before {
    position: absolute;
    content: "";
    bottom: 20px;
    opacity: 1;
    left: -23px;
    width: 115px;
    height: 115px;
    background: url(//jaquesofalltrades.com/wp-content/themes/buildnet/assets/images/shape/shape_7.png) no-repeat;
    transition: all 700ms ease;
}
.workprocess-h10:before {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: rgb(254 95 21 / 92%);
    content: "";
}
.testimonials-h6 .image-box img{
	margin-top:-100px!important;
}

.news-block-five .inner-box .lower-content .post-meta li a{
	    color: #001659;
	    font-size: 13px;
	    padding-left: 0px;
}


.about-h6 .list-style-two {
    margin-bottom: 20px;
}

.offer-section-two .offer-title-box .inner-box .arrow-box .fa:before {
    font-family: 'FontAwesome';
}
.search-form.search-box input {
    position: relative;
    line-height: 33px;
    padding: 10px 50px 10px 20px;
    background: #ffffff;
    display: block;
    font-size: 14px;
    width: 100%;
    height: 55px;
    font-weight: 400;
    border: 1px solid #eeeeee;
    transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    /* box-shadow: 0px 2px 4px 0px rgba(255, 72, 0, 0.73); */
}
.search-form.search-box button {
    position: absolute;
    right: 0px;
    /* top: -1px; */
    height: 55px;
    width: 50px;
    display: block;
    font-size: 16px;
    color: #ffffff;
    cursor: pointer;
    line-height: 55px;
    background: #FF0000;
    font-weight: normal;
    margin-top: -55px;
}

.main-menu .navigation > li.active > a:before {
    position: absolute;
    content: '';
    left: 8px;
    bottom: 25px;
    height: 2px;
    width: 35px;
    background-color: #FF0000;
    transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
}

.banner-section.style-h10 .active .content-box h3:before {
    /* background: rgba(253,93,20,0.4)!important; */
}
.banner-section .textn{
    color: #fff;
    margin-bottom: 30px;
    font-size: 17px;
}

.banner-section.style-h10 .active .content-box h3:before {
    position: absolute;
    left: 0px;
    bottom: 27px;
    right: 35px;
    height: 8px;
    content: "";
    z-index: -1;
    width: 335px;
    /* max-width: 100%; */
}
.banner-section.style-h10 .active .content-box h3:before {
    background: rgba(253,93,20,0.4)!important;
}
.banner-section.style-h10 .active .slide-item .image-layer:before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(3,13,40,.8);
    content: "";
    z-index: -1;
}
.news-block-two .inner-box .content-column .inner-column .title:before {
    position: absolute;
    left: 0px;
    bottom: 2px;
    right: 35px;
    height: 8px;
    content: "";
    z-index: 0;
    width: 146px;
    max-width: 100%;
}

.news-block-two .inner-box .content-column .inner-column .title:before {
    background: rgba(253,93,20,0.4)!important;
}
.drop-cap {
    float: left;
    text-align: center;
    background: #fff;
    width: 40px;
    height: 40px;
    line-height: 1;
    margin: 8px 18px 0 0!important;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
}
.drop-cap span {
    font-size: 24px;
    line-height: 38px;
    border: 1px solid #e7e7e7;
    display: block;
    font-weight: 800;
    color: #FF0000;
}

.header_style_2 .header-upper:before {
    position: absolute!important;
    /* top: 8px!important; */
    /* height: 48px!important; */
    /* width: 280px!important; */
    /*background-image: url(//jaquesofalltrades.com/wp-content/themes/buildnet/assets/images/shape/dot.png);*/
    content: "";
    background-repeat: repeat!important;
    background-position: left top!important;
    margin: 0 auto;
    /* z-index: 99; */
    margin-left: 0px;
    top: 56px;
    height: 33px;
    width: 1900px;
}


.about-h6.one:before {
    display: none;
}
.about-h6.two:before {
    display: none;
}
.about-h6.two {
    padding-right: 80PX;
}
.funfact-skill-h9.one {
    background-image: unset;
    background: transparent;
    /* padding-top: 102px; */
    /* border: 1px solid red; */
}
.funfact-skill-h9.one:before {
    display: none;
}
.footer-h6 .gallery-widget ul li .image .overlay-box {
    display: none;
}
.pagination {
    margin-bottom: 30px;
}









@media only screen and (min-width: 991px){
	
}
@media only screen and (max-width: 991px){
	
	.page-title:after {
	   display:none;
	}
}



span.wpcf7-not-valid-tip {
    font-size: 14px !important;
}
div.wpcf7-validation-errors, div.wpcf7-acceptance-missing {
    font-size: 14px !important;
}
.funfact-skill-h9 .funfact .column .item {
    margin-bottom: 3px;
    padding-top: 20px;
}
.main-menu .navigation > li > ul > li > ul > li {
    border-bottom: 1px solid #e5e5e5;
}


.fluid-section-three .right-column .inner-column .play-btn.ripple:before,
.fluid-section-three .right-column .inner-column .play-btn.ripple:after {
    position: absolute;
    top: 50%;
    left: 50%;
    width:82px;
	height: 82px;
	border-radius: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform:
 translate(-50%, -50%);
    -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, .6);
    -moz-box-shadow: 0 0 0 0 rgba(255, 255, 255, .6);
    -ms-box-shadow: 0 0 0 0 rgba(255, 255, 255, .6);
    -o-box-shadow: 0 0 0 0 rgba(255, 255, 255, .6);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, .6);
    -webkit-animation: ripple 2s infinite;
    -moz-animation: ripple 2s infinite;
    -ms-animation: ripple 2s infinite;
    -o-animation: ripple 2s infinite;
    animation: ripple 2s infinite;
}

.fluid-section-three .right-column .inner-column .play-btn.ripple:before {
    -webkit-animation-delay: .6s;
    -moz-animation-delay: .6s;
    -ms-animation-delay: .6s;
    -o-animation-delay: .6s;
    animation-delay: .6s;
    content: "";
    position: absolute;
}

.fluid-section-three .right-column .inner-column .play-btn.ripple:after {
    -webkit-animation-delay: .3s;
    -moz-animation-delay: .3s;
    -ms-animation-delay: .3s;
    -o-animation-delay: .3s;
    animation-delay: .3s;
    content: "";
    position: absolute;
}

@-webkit-keyframes ripple {
    70% {box-shadow: 0 0 0 65px rgba(255, 255, 255, 0);}
    100% {box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);}
}

@keyframes ripple {
    70% {box-shadow: 0 0 0 65px rgba(255, 255, 255, 0);}
    100% {box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);}
}
.header_style_2 .header-upper {
    padding: 0px;
}

.about-h6 .text-holder .title-two h2:before {
    position: absolute;
    top: -100px;
    left: 0px;
    background: url(//jaquesofalltrades.com/wp-content/themes/buildnet/assets/images/title-bg.png);
    width: 60px;
    height: 39px;
    content: "";
}
.banner-section.style-h10 .active .content-box h3:after {
    position: absolute;
    top: -40px;
    left: 0px;
    background: url(//jaquesofalltrades.com/wp-content/themes/buildnet/assets/images/title-bg.png);
    width: 60px;
    height: 39px;
    content: "";
}
.portfolio-h9 .btn-box a{
	display:none;
}
.news-block-five .inner-box .lower-content .text p{
    font-size: 17px;
}
.services-section-three .icon-box2 .icon {
    font-size: 118px!important;
    color: #2222220a!important;
    bottom: 15px;
    position: absolute;
    right: 15px;
}


.call-to-action-h10:before {
    position: absolute;
    content: '';
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    display: block;
    background-color: rgba(3,13,40,.8);
}
.news-block-five .inner-box .lower-content .read-more:hover{
	color: #FF0000!important;
}
.call-to-action-four .inner {
    border-radius: 10px;
}
.footer-h6 .gallery-widget ul li .image a img{
    width: 87px;
    height: 87px;
    border-radius: 7px;
}

.sidebar-page-container.one .sidebar-widget{
    position: relative;
    margin-bottom: 40px;
    padding: 25px;
    padding: 30px;
    border: 1px solid #f6f6f6;
    border-radius: 5px;
    position: relative;
    box-shadow: 0px 0px 25px rgb(0 0 0 / 4%);
}

.sidebar-widget.brochure-widget{
    position: relative;
    margin-bottom: 40px;
    padding: 25px;
    padding: 30px;
    border: 1px solid #f6f6f6;
    border-radius: 5px;
    position: relative;
    box-shadow: 0px 0px 25px rgb(0 0 0 / 4%);
	margin-top:40px;
}

.offer-block .inner-box:hover .read-more{
	color:#fff!important;
}


.about-h6 .text-holder .subtitle:before {
    position: absolute;
    left: 15px;
    top: 39px;
    right: 0px;
    height: 16px;
    content: "";
    z-index: -1;
    width: 30%;
    background: rgb(253 93 20 / 19%)!important;
}
.task-section .content-column .inner-column .title {
    font-weight: 600;

}
.task-section .content-column .inner-column .title:before {
    position: absolute;
    left: 0px;
    top: 12px;
    right: 0px;
    height: 16px;

}

.funfact-skill-h9 .funfact {
	animation: none;
	padding: 27px;
	box-shadow: 0px 0px 25px rgb(0 0 0 / 15%);
	background: white;
	border-radius: 10px;
	margin-right: 20px;
}
.service-img-h9 .theme-btn:hove{
	background:#222;
}

.main-menu .navigation > li > ul > li.dropdown > a:after{
	display:none!important;
}/* Responsive*/

@media only screen and (max-width: 5000px){
	.page-wrapper{
		overflow:hidden;	
	}
}

@media only screen and (max-width: 1600px){
	
	.help-section .image-column .inner-column .testimonial-boxed{
		top:50px;
		right: -100px;
		margin-top: 0px;
	}
	.skills-section .skill-column {
		padding: 70px 30px 70px 30px;
	}
	.about-h6 .text-holder .title-two h2 {
		font-size: 40px;
	}
	
}

@media only screen and (max-width: 1400px){
	.portfolio-h9 .project-block .image .overlay-box .title {
		transform: rotate(0deg);
		position: relative;
		top: 30px;
		left: 30px;
	}
	.help-section .image-column .inner-column .testimonial-boxed{
		top:0px;
		right: 0px;
	}
	
	.case-block .inner-box .lower-box h3{
		font-size:18px;
	}
	
	.fluid-section-two .content-column .inner-column{
		padding-left:40px;
	}
	
	.call-to-action-section .right-column .inner-column{
		max-width:600px;
	}
	
	.feature-block-three .inner-box{
		padding:50px 30px;
	}
	
	.expert-section .blocks-column .inner-column{
		margin-right:-80px;
	}
	
	.fluid-section-three .right-column .inner-column{
		padding-left:80px;
	}
	
}

@media only screen and (max-width: 1340px){

	.page-wrapper{
		overflow:hidden;	
	}
	
}

@media only screen and (max-width: 1140px){
	
	.main-header{
		margin:0px !important;
	}
	
	.address-box{
		max-width:550px;
	}
	
	.page-wrapper{
		overflow:hidden;	
	}
	
	.feature-block-two.style-two,
	.main-menu .navigation > li{
		margin-left:0px;
	}
	
	.main-header .info-box strong{
		font-size:13px;
	}
	
	.call-to-action-section .left-column h2 br{
		display:none;
	}
	
	.main-header .info-box{
		margin-left:25px;
		display:inline-block;
		float:none;
	}
	
	.task-section .content-column .inner-column{
		margin-right:0px;
	}
	
	.main-header .outer-box,
	.main-slider h3:before,
	.main-slider h3:after,
	.feature-block-two .inner-box h3:before,
	.main-header .header-upper .button-box,
	.contact-section .form-column .inner-column h2:before,
	.fluid-section-three .right-column .inner-column .title::before{
		display:none;
	}
	
	.main-header.header-style-three .header-upper .button-box{
		display:block;
	}
	
	.main-header .outer-box .buttons-box .theme-btn{
		font-size:16px;
	}
	
	.main-header .outer-box .option-box > li{
		margin-left:15px;
	}
	
	.main-header .nav-outer{
		float:right;
	}
	
	.newsletter-section .left-column .inner-column,
	.fluid-section-three .left-column .inner-column{
		padding-right:15px;
	}
	
	.newsletter-section .right-column .inner-column{
		padding-left:15px;
	}
	
	.fluid-section-three .right-column .inner-column{
		padding-left:25px;
	}
	
	.fluid-section-four .content-column{
		padding-left:25px;
		padding-right: 15px;
	}
	
	.sidebar-page-container .sidebar-side .sidebar,
	.news-section .blocks-column .inner-column{
		padding-right:0px;
	}
	
	.contact-section .info-column .inner-column{
		padding-right:15px;
	}
	
	.sec-title h2{
		font-size:40px;
	}
	
	.skills-section .skill-column .inner-column,
	.beyong-section .beyong-tabs .tabs-content .content-column .inner-column,
	.modern-section .content-column .inner-column{
		padding-left:0px;
	}
	
	.contact-section .form-column .inner-column{
		padding-left:15px;
	}
	
	.expert-section .blocks-column .inner-column{
		margin-right:0px;
	}
	
	.stories-section .owl-dots{
		bottom:0px;
	}
	
	.consult-block.alternate .inner-box .content-column .inner-column{
		padding:40px 30px;
	}
	
	.portfolio-masonry-section .row{
		margin:0px -20px;
	}
	
}

@media only screen and (min-width: 1025px){

	
}

@media only screen and (max-width: 1023px){
		.about-h6:before {
			opacity: 0;
		}
	
	.main-header .main-box .logo-box {
		position:relative;
		left:0px;
		top:0px;
		right:0px;
		bottom:0px;
		margin:0px;
		text-align:left;
	}
	
	.main-header .nav-outer{
		float:left;
		width: 100%;
	}
	
	.strategy-block .inner-box{
		padding-left:0px;
		padding-right:0px;
	}
	
	.strategy-block .inner-box .icon-box{
		position:relative;
	}
	
	.services-section .inner-container{
		margin-top:0px;
	}
	.services-section {
		padding-bottom: 70px;
		padding-top: 100px;
	}
	
	.main-header .header-upper .search-box-outer .dropdown-menu{
		top:48px !important;
	}
	
	.main-header .nav-toggler{
		display:block;
	}
	
	.main-slider .tparrows,
	.header-top-two .top-left,
	.fixed-header .sticky-header,
	.main-header .header-top .top-right::before,
	.main-header .header-top .top-right:after,
	.main-header .header-top .top-right .list,
	.main-header .header-upper .contact-number,
	.header-style-two .header-upper .support-box,
	.main-header.header-style-three .header-upper .button-box{
		display:none;
	}
	
	.main-header .header-top .top-right .social-nav{
		margin-left:0px;
		width:100%;
	}
	
	.main-menu .navigation > li > a{
		font-size:14px;
	}
	
	.main-header .options-box{
		margin-top:0px;
		position:absolute;
		left:0px;
		top:25px;
		z-index:12;
		display:none;
		right:auto;
	}
	
	.main-header .header-upper .upper-right{
		padding-top:0px;
		width:100%;
		text-align:center;
		padding-bottom:20px;
	}
	
	.main-menu .navigation > li{
		margin-right:25px;
	}
	
	.main-header .header-upper .logo-box{
		margin-right: 0px;
		width:100%;
		text-align:center;
		padding-bottom: 15px;
	}
	
	.main-header .header-upper .outer-container{
		padding:0px 15px;
	}
	
	.main-slider h2{
		font-size:80px;
	}
	
	.main-slider h3 span{
		font-size:50px;
	}
	
	.main-slider h2:before{
		display:none;
	}
	
	.contact-section .form-column .inner-column{
		padding-left:0px;
	}
	
	/*.main-slider h3.light,
	.main-slider h3.alternate{
		font-size:30px;
	}*/
	
	.main-slider h3.alternate span{
		font-size:35px;
	}
	
	.header-top-three .top-left,
	.task-section:before,
	.call-to-action-two h2 br,
	.header-top .top-left{
		display:none;
	}
	
	.header-top-two .top-right,
	.header-top .top-right,
	.header-top-three .top-right{
		width:100%;
		text-align: center;
	}
	
	.header-top .top-right .social-box{
		width:100%;
		text-align: center;
	}
	
	.main-menu .navigation > li > a{
		padding:25px 0px;
	}
	
	.testimonial-section .owl-dots,
	.main-header .header-upper .support-box{
		margin-top:10px;
	}

	.main-header .header-upper .search-box-outer{
		margin-top:30px;
	}
	
	.main-slider h2{
		font-size:60px;
	}
	
	.main-slider .text{
		font-size:16px;
	}
	
	.help-section .image-column,
	.fluid-section-one .image-column,
	.fluid-section-two .image-column,
	.fluid-section-four .image-column{
		background-image: none !important;
		position: relative;
		width: 100%;
	}
	
	.fluid-section-four .image-column .image,
	.help-section .image-column .inner-column .image,
	.fluid-section-one .image-column .image-box,
	.fluid-section-two .image-column .image-box{
		display:block;
	}
	
	.help-section .content-column,
	.fluid-section-two .content-column,
	.fluid-section-one .content-column{
		width:100%;
	}
	
	.fluid-section-one .content-column .inner-column{
		padding-left:15px;
	}
	
	.fluid-section-four .content-column{
		width:100%;
		padding-left: 15px;
	}
	
	.fluid-section-four .content-column .content-box{
		max-width:100%;
	}
	
	.fluid-section-two .content-column .inner-column{
		max-width:100%;
		padding:60px 0px;
		padding-left:15px;
		padding-right:15px;
	}
	
	.news-block-four .inner-box .content-column .inner-column,
	.offer-section-two .counter-box,
	.task-section .content-column .inner-column,
	.goals-section .content-column .inner-column,
	.counter-section .inner-section{
		padding-left:0px;
	}
	
	.news-block-four .inner-box .content-column{
		margin-top:30px;
	}
	
	.testimonial-section .sec-title{
		margin-bottom:30px;
	}
	
	.newsletter-section:before,
	.newsletter-section .left-column,
	.newsletter-section .right-column,
	.fluid-section-three .left-column,
	.fluid-section-three .right-column,
	.call-to-action-section .right-column,
	.call-to-action-section .left-column{
		width:100%;
	}
	
	.fluid-section-three .left-column .inner-column{
		max-width:100%;
	}
	
	.fluid-section-three .right-column .inner-column{
		max-width:100%;
		padding-left:15px;
	}
	
	.call-to-action-section .right-column .inner-column,
	.call-to-action-section .left-column .inner-column{
		max-width:100%;
		text-align: center;
	}
	
	.call-to-action-section .left-column .image-layer{
		right:0px;
	}
	
	.newsletter-section .left-column .inner-column,
	.call-to-action-section .right-column .inner-column{
		text-align:center;
	}
	
	.newsletter-section .right-column:before{
		position: absolute;
		content: '';
		left: -25px;
		right: -25px;
		bottom: 0px;
		top: 0px;
		background-color:#FF0000;
	}
	
	.newsletter-section .right-column .inner-column{
		max-width:100%;
	}
	
	.task-section .content-column .inner-column h2,
	.call-to-action-two h2{
		font-size:32px;
	}
	
	.help-section .content-column .inner-column{
		padding-left: 20px;
		padding-right: 20px;
	}
	
	.main-slider h2.style-two{
		font-size:50px;
	}
	
	.goals-section .title-column .inner-column{
		padding-right:0px;
		text-align: left;
	}
	
	.feature-block-two.alternate,
	.task-section .content-column .inner-column .btn-box,
	.task-section .image-column .inner-column{
		margin-left:0px;
	}
	
	.offer-section-two .counter-box{
		padding-right:0px;
	}
	
	.task-section .image-column .inner-column{
		margin-right:0px;
	}
	
	.consult-block.alternate .inner-box .content-column .inner-column{
		padding-left:0px;
	}
	
	.services-title-box .title-box h2{
		font-size:34px;
	}
	
	.sidebar-page-container .sidebar-side .sidebar .sidebar-inner .inner-wrapper-sticky{
		position: relative !important;
		left: 0px !important;
		top: 0px !important;
		width: 100% !important;
		transform: translate(0px,0px) !important;
	}
	
	.news-block-eight .inner-box{
		padding-left:0px;
	}

	.news-block-eight .inner-box .image{
		position: relative;
		width: 100%;
		display: block;
		margin-bottom:30px;
	}
	
	.beyong-section .beyong-tabs .tab-btns .tab-btn:before,
	.beyong-section .beyong-tabs .tab-btns .tab-btn .separater-dots{
		display:none;	
	}
	
	.beyong-section .beyong-tabs .tab-btns{
		margin-bottom:20px;	
	}
	
	.beyong-section .beyong-tabs .tab-btns .tab-btn{
		font-size:16px;
		margin:0px 15px 10px;	
	}
	
}

@media (max-width: 991px){

.call-to-action-h6 {
    background: #222222;
    background-image: unset !important;
}
.call-to-action-h6 .btn-box {
    top: 0;
    margin-bottom: 30px;
}
.call-to-action-h6 .text p {
    padding: 0px;
}
.skills-section .title-column {
    display: none;
}

.header-top-two .top-right {
    display: none;
}
	
	.main-menu .navbar-collapse.collapse {
		display: none !important;
		transition: all 700ms ease;
	}
	.main-menu .navbar-collapse.collapse.show {
		display: block !important;
		transition: all 700ms ease;
		max-height:300px;
	}
	
}
.main-menu .navigation > li.dropdown:hover > ul {
    visibility: visible;
    opacity: 1;
    transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
}
@media only screen and (min-width: 991px){
	.main-menu .navigation > li > ul, .main-menu .navigation > li > ul > li > ul {
		display: block !important;
		visibility: hidden;
		opacity: 0;
	}
}
@media (min-width: 768px){
	.about-h6 .text-holder .title-two h2 {
		font-size: 25px;
	}
	.about-h6 .text-holder .title-two h2 {
		font-size: 40px;
	}
}

@media only screen and (max-width: 991px) {
.skills-section .skill-column {
    padding: 90px 35px;
}
	.main-slider .tparrows, .header-top-two .top-left, .fixed-header .sticky-header, .main-header .header-top .top-right::before, .main-header .header-top .top-right:after, .main-header .header-top .top-right .list, .main-header .header-upper .contact-number, .header-style-two .header-upper .support-box, .main-header.header-style-three .header-upper .button-box {
		display: none;
	}
	.main-header .header-upper .button-box {
		display: none;
	}
}

@media only screen and (min-width: 1700px){
	.main-menu .navigation > li > ul,
	.main-menu .navigation > li > ul > li > ul{
		display:block !important;
		visibility:hidden;
		opacity:0;
	}
}

@media only screen and (max-width: 991px){
	
	.header-upper .logo-outer {
		position:relative;
		left:0px;
		top:0px;
		right:0px;
		bottom:0px;
		width:100%;
		margin:0px;
	}
	
	.main-header .header-top .top-right,
	.main-header .header-top .top-left{
		width:100%;	
	}
	
	.sec-title h2{
		font-size:32px;	
	}
	
	.main-menu{
		width:100%;
		display:block;
	}
	
	.portfolio-masonry-section .row{
		margin:0px -15px;
	}
	
	.main-menu .navbar-collapse {
	   max-height:300px;
	   max-width:none;
		overflow:auto;
		float:none !important;
		width:100% !important;
		padding:0px 0px 0px;
		border:none;
		margin:0px 0px 15px;
		-ms-border-radius:0px;
		-moz-border-radius:0px;
		-webkit-border-radius:0px;
		-o-border-radius:0px;
		border-radius:0px;
		box-shadow:none;
   }
   
	.main-menu .navbar-collapse.in,
	.main-menu .collapsing{
		padding:0px 0px 0px;
		border:none;
		margin:0px 0px 15px;
		-ms-border-radius:0px;
		-moz-border-radius:0px;
		-webkit-border-radius:0px;
		-o-border-radius:0px;
		border-radius:0px;
		box-shadow:none;	
	}
	
	.main-menu .navbar-header{
		position:relative;
		float:none;
		display:block;
		text-align:right;
		width:100%;
		padding:15px 0px;
		right:0px;
		z-index:12;
	}
	
	.main-menu .navbar-header .navbar-toggle{
		display:inline-block;
		z-index:12;
		border:1px solid #cc8809;
		float:none;
		margin:0px 0px 0px 0px;
		border-radius:0px;
		background:#cc8809;
	}
	
	.main-menu .navbar-header .navbar-toggle .icon-bar{
		background:#ffffff;	
	}
	
	.main-menu .navbar-collapse > .navigation{
		float:none !important;
		margin:0px !important;
		width:100% !important;
		background:#2c2c2c;
		border:1px solid #ffffff;
		border-top:none;
	}
	
	.main-menu .navbar-collapse > .navigation > li{
		margin:0px !important;
		float:none !important;
		padding:0px !important;
		width:100%;
	}
	
	.main-menu .navigation > li > a,
	.main-menu .navigation > li > ul:before{
		border:none;	
	}
	
	.main-menu .navbar-collapse > .navigation > li > a{
		padding:10px 10px !important;
		border:none !important;
	}
	
	.main-menu .navigation li.dropdown > a:after,
	.main-menu .navigation > li.dropdown > a:before,
	.main-menu .navigation > li > ul > li > a::before,
	.main-menu .navigation > li > ul > li > ul > li > a::before{
		color:#ffffff !important;
		right:15px;
		font-size:16px;
		display:none !important;
	}
	
	.main-menu .navbar-collapse > .navigation > li > ul,
	.main-menu .navbar-collapse > .navigation > li > ul > li > ul{
		position:relative;
		border:none;
		float:none;
		visibility:visible;
		opacity:1;
		display:none;
		margin:0px;
		left:auto !important;
		right:auto !important;
		top:auto !important;
		padding:0px;
		outline:none;
		width:100%;
		background:#2c2c2c;
		-webkit-border-radius:0px;
		-ms-border-radius:0px;
		-o-border-radius:0px;
		-moz-border-radius:0px;
		border-radius:0px;
		transition:none !important;
		-webkit-transition:none !important;
		-ms-transition:none !important;
		-o-transition:none !important;
		-moz-transition:none !important;
	}
		
	.main-menu .navbar-collapse > .navigation > li > ul,
	.main-menu .navbar-collapse > .navigation > li > ul > li > ul{
		border-top:1px solid rgba(255,255,255,1) !important;	
	}
	
	.main-menu .navbar-collapse > .navigation > li,
	.main-menu .navbar-collapse > .navigation > li > ul > li,
	.main-menu .navbar-collapse > .navigation > li > ul > li > ul > li{
		border-top:1px solid rgba(255,255,255,1) !important;
		border-bottom:none;
		opacity:1 !important;
		top:0px !important;
		left:0px !important;
		visibility:visible !important;
	}
	
	.main-menu .navbar-collapse > .navigation > li:first-child{
		border:none;	
	}
	
	.main-menu .navbar-collapse > .navigation > li > a,
	.main-menu .navbar-collapse > .navigation > li > ul > li > a,
	.main-menu .navbar-collapse > .navigation > li > ul > li > ul > li > a{
		padding:10px 10px !important;
		line-height:22px;
		color:#ffffff;
		background:#2c2c2c;
		text-align:left;
	}
	
	.main-menu .navbar-collapse > .navigation > li > a:hover,
	.main-menu .navbar-collapse > .navigation > li > a:active,
	.main-menu .navbar-collapse > .navigation > li > a:focus{
		background:#cc8809;
	}
	
.main-menu .navbar-collapse > .navigation > li:hover > a, .main-menu .navbar-collapse > .navigation > li > ul > li:hover > a, .main-menu .navbar-collapse > .navigation > li > ul > li > ul > li:hover > a, .main-menu .navbar-collapse > .navigation > li.current > a, .main-menu .navbar-collapse > .navigation > li.current-menu-item > a {
    background: #2c2c2c;
    color: #ffffff;
}
	
	.main-menu .navbar-collapse > .navigation li.dropdown .dropdown-btn{
		display:block;
	}
	
	.main-slider .owl-nav,
	.main-slider .schedule-box,
	.main-menu .navbar-collapse > .navigation li.dropdown:after,
	.main-menu .navigation > li > ul:before{
		display:none !important;	
	}
	
	.main-header .btn-outer{
		left:0px;
		top:0px;
		right:auto;
		margin-top:15px;
		text-align:left;
		z-index:12;
	}
	
	.main-header .main-box .logo-box{
		float:none;
		text-align:center;
		padding-bottom:10px;
	}
	
	.main-header .search-box-outer .dropdown-menu{
		left:0px;
		top:47px;
	}
	
	.main-header .header-top{
		padding:10px 0px;
	}
	
	.sidebar-page-container .comments-area .comment-box.reply-comment{
		margin-left:0px;
	}
	
	.main-header .info-box{
		padding-left:0px;
		text-align:center;
		width:100%;
		margin-left:0px;
		margin-bottom: 20px;
	}
	
	.main-header .info-box:last-child{
		margin-bottom:0px;
	}
	
	.main-header .info-box .icon-box{
		position:relative;
		margin:0 auto;
		margin-bottom:15px;
	}
	
	.main-header .main-box .outer-container{
		padding:0px;
	}
	
	.main-header .header-lower .outer-box{
		position:absolute;
		z-index:12;
		display:block;
	}
	
	.main-menu .navbar-header .navbar-toggler{
		display: inline-block;
		z-index: 12;
		width: 50px;
		height: 40px;
		float: none;
		padding: 0px;
		text-align: center;
		border-radius: 0px;
		background: #FF0000;
		border: 1px solid #FF0000;
	}
	
	.main-menu .navbar-header .navbar-toggler .icon-bar{
		position: relative;
		background: #ffffff;
		height: 2px;
		width: 26px;
		display: block;
		margin:0 auto;
		margin:5px 11px;
	}
	
	.main-header .nav-outer{
		width:100%;
	}
	
	.main-slider h2{
		font-size:60px;
	}
	
	.main-slider h3{
		font-size:20px;
	}
	
	.services-single .inner-box .lower-content h2,
	.beyong-section .beyong-tabs .tabs-content .content-column h2,
	.main-slider h3 span{
		font-size:30px;
	}
	
	.main-slider .text{
		font-size:16px;
	}
	
	.call-to-action-two .text br,
	.expert-section .blocks-column .inner-column .owl-dots,
	.testimonial-block-two .inner-box .image-column .inner-column .image,
	.main-header .outer-box .buttons-box,
	.main-slider .text br{
		display:none;
	}
	
	.main-slider .slide{
		padding:120px 0px;
	}
	
	.main-header .outer-box .option-box > li{
		margin-left:0px;
		margin-right: 20px;
	}
	
	.header-top .top-left .text{
		text-align:center;
		padding: 10px 0px;
	}
	
	.main-header .header-lower .search-box-outer .dropdown-menu{
		left:0px !important;
	}
	
	.main-header .header-upper .support-box{
		position:absolute;
		left: 0px;
		top: 0px;
		z-index: 12;
		margin-left: 0px;
		margin-top: 0px;
	}
	
	.main-header .header-upper .search-box-outer{
		position: absolute;
		left: 170px;
		top: 0px;
		z-index: 12;
		margin-top: 20px;
	}
	
	.portfolio-single-section .content-column h2{
		font-size:24px;
	}
	
	.main-header.header-style-three  .header-upper .search-box-outer,
	.main-header.header-style-two .header-upper .search-box-outer{
		left:0px;
		top:10px;
	}
	
	.main-header.header-style-three .header-upper .search-box-outer .dropdown-menu,
	.main-header.header-style-two .header-upper .search-box-outer .dropdown-menu{
		top:39px !important;
	}
	
	.main-header .header-upper .search-box-outer .dropdown-menu{
		top:51px !important;
		left: 0px;
		right: auto;
	}
	
	.main-header .header-upper .logo-box{
		padding-bottom:20px;
	}
	
	.main-slider h2{
		font-size:45px;
	}
	
	.goals-section .title-column .inner-column h2,
	.modern-section .content-column .inner-column h2,
	.fluid-section-three .right-column .inner-column h2,
	.fluid-section-one .content-column .inner-column .title-box h2{
		font-size:36px;
	}
	
	.testimonial-block-two .inner-box .content-column .inner-column{
		padding-top:0px;
	}
	
	.main-footer .footer-bottom{
		text-align:center;
	}
	
	.main-footer .footer-bottom .footer-nav{
		text-align:center;
		margin-top: 6px;
	}
	
	.news-block .inner-box h3{
		font-size:18px;
	}
	
	.case-block .inner-box .lower-box,
	.case-block .inner-box .image .overlay-box .overlay-inner{
		padding-left:15px;
		padding-right:15px;
	}
	
	.case-block .inner-box .image .overlay-box .text{
		margin-bottom:15px;
	}
	
	.expert-section .counter-column .inner-column .fact-counter{
		padding-left:0px;
	}
	
	.fact-counter .column .inner{
		padding-right:0px;
	}
	
	.main-slider h2.style-two{
		font-size:40px;
	}
	
	.consult-block .inner-box .content-column .inner-column{
		padding-left:20px;
		padding-right:20px;
	}
	
	.page-title h1{
		font-size:44px;
	}
	
	.blog-single .inner-box .new-posts{
		text-align:center;
	}
	
	.blog-single .inner-box .new-posts .next-post{
		text-align:center;
		margin-top:20px;
	}
	
	.blog-single .inner-box .new-posts .prev-post,
	.blog-single .inner-box .new-posts .next-post{
		width:100%;
		padding:0px;
	}
	
	.sidebar-page-container .comments-area .comment-box .author-thumb{
		position:relative;
	}
	
	.sidebar-page-container .comments-area .comment{
		padding-left:0px;
	}
	
}

@media only screen and (max-width: 599px){
	
	.banner-section.style-h10 .banner-carousel .content-box h2 {
		font-size: 56px;
	}

	.about-h6 .text-holder .title-two h2 {
		font-size: 35px;
	}
	
	.main-slider .price,
	.main-slider h3.light{
		font-size:26px;
	}
	
	.header-top .top-right .social-box li.share{
		font-size:15px;
	}
	
	.main-slider h2{
		font-size:34px;
	}
	
	.main-slider .theme-btn{
		margin-right:10px;
	}
	
	.page-title h1,
	.strategy-section .title-box h2{
		font-size:30px;
	}
	
	.beyong-section .beyong-tabs .tabs-content{
		padding:15px 15px;
	}
	
	.main-slider .theme-btn{
		padding:8px 16px;
		font-size:12px;
	}
	
	.video-box .overlay-box span{
		top:38%;
	}
	
	.fluid-section-one .content-column .inner-column .title-box,
	.fluid-section-one .content-column .carousel-box{
		width:100%;
	}
	
	.fluid-section-one .content-column .inner-column .title-box{
		margin-bottom:60px;
	}
	
	.fluid-section-one .content-column .carousel-box .box-inner{
		padding-top:60px;
		padding-bottom: 60px;
	}
	
	.fluid-section-one .content-column .inner-column .title-box .box-inner{
		padding-right:15px;
	}
	
.sec-title h2, .contact-section .info-column .inner-column h2, .news-block-eight .inner-box .content h2, .news-block-five .inner-box .lower-content h2, .services-single .inner-box .lower-content h3, .modern-section .content-column .inner-column h2, .services-block-two .inner-box .image .overlay-box h3, .call-to-action-two h2, .faq-form-h8 .content-box .title h2, .about-h9 .left-side h2, .call-to-action-h9 .text-box h2, .service-img-h9 .content-box .title h2, .call-to-action-h8 .left-side h2, .why-choose-us-h7 .text-box .title-two h2, .video-h7 h2, .call-to-action-h7-two .right-side h2, .call-to-action-h7-two sub {
    font-size: 26px !important;
    line-height: 32px !important;
}
	.gallery-block .inner-box .lower-content h3,
	.news-block-four .inner-box .content-column h3,
	.news-block-three .inner-box .lower-content h3,
	.help-section .image-column .inner-column .testimonial-boxed .text{
		font-size:18px;
	}
	
	.news-block-two .inner-box .content-column .inner-column{
		padding:50px 15px;
	}
	
	.news-block-seven .inner-box,
	.services-block .inner-box{
		padding-left:20px;
		padding-right:20px;
	}
	
	.blog-single .inner-box .lower-content h2,
	.news-block-five.style-two .inner-box .lower-content h2{
		font-size:20px;
	}
	
	.news-block-five .inner-box .owl-nav .owl-prev{
		left:15px;
	}
	
	.news-block-five .inner-box .owl-nav .owl-next{
		right:15px;
	}
	
	.contact-section .info-column .inner-column .content-box,
	.blog-single .inner-box .lower-content .text blockquote{
		padding:25px 20px;
	}
	
}

@media only screen and (max-width: 479px) {
	
	.main-header .search-box-outer .dropdown-menu{
		top:44px;	
	}
	
	.main-header .nav-toggler{
		top:0px;
	}
	
	.blog-single .post-share-options .info-links{
		width:100%;
	}
	
	.news-block-eight .inner-box .content .pull-right,
	.blog-single .inner-box .lower-content .pull-right,
	.news-block-five .inner-box .lower-content .pull-right{
		float:left;
		margin-top:5px;
		margin-left: 0px;
		width:100%;
	}
	
	.news-block-seven .inner-box .content .pull-right{
		float:left;
	}
	
	.video-box .overlay-box span{
		top:30%;
	}
	
	.help-section .image-column .inner-column .testimonial-boxed{
		width:100%;
	}
	
	.news-block-seven .inner-box h2,
	.news-block-eight .inner-box .content h2,
	.news-block-five .inner-box .lower-content h2{
		font-size:22px;
	}
	
	.services-block-three .inner-box,
	.help-section .image-column .inner-column .testimonial-boxed .inner-block{
		padding:40px 15px;
	}
	
	.main-header.header-style-three .header-upper .search-box-outer,
	.main-header.header-style-two .header-upper .search-box-outer{
		display:block;
	}
	
	.main-header .header-upper .search-box-outer{
		display:none;
	}
	
}



/*btn Five*/

.btn-style-five{
	position:relative;
	padding:13px 32px 13px;
	line-height:24px;
	background:#FF0000;
	color:#ffffff;
	font-size:16px;
	font-weight:600;
	border-radius: 0px;
	letter-spacing: 1px;
	border:2px solid #FF0000;
	text-transform:capitalize;
	font-family: 'Poppins', sans-serif;
}

.btn-style-five:hover {
    background: none;
    color: #FF0000;
    position: relative;
    /* display: block; */
    /* padding: 120px 0 110px; */
    background-color: #f5f5f5;
    background: url(//jaquesofalltrades.com/wp-content/themes/buildnet/assets/images/shape/pattern-bg1.png) #f5f5f5;
    background-repeat: repeat;
}
.btn-style-five:before,
.btn-style-five:after {
    border-color: transparent;
    -webkit-transition: all 0.25s;
    transition: all 0.25s;
    border-style: solid;
    border-width: 0;
    content: "";
    height: 24px;
    position: absolute;
    width: 24px;
}


.about-section .title-column .inner-column:hover .btn-style-five:before, 
.about-section .title-column .inner-column:hover .btn-style-five:after {
    border-color: #FF0000;
    -webkit-transition: all 0.25s;
    transition: all 0.25s;
    border-style: solid;
    height: 100%;
    width: 100%;
}


/*========= Mega Menu========= */
ul li.mega-menu>ul.sub-menu {
    background-color: #111;
    width: 100%;
    position: absolute;
    left: 0;
    right: 0;
    padding: 15px;
    display: flex;
    justify-content: space-around;
	background-color: #fff;
    width: 880px;
    left: -385.5px;
}
ul li.mega-menu2>ul.sub-menu{
     width: 1050px!important;
    left: -385.5px;
}
ul li.mega-menu3>ul.sub-menu{
     width: 650px!important;
    left: -385.5px;
}
ul li.mega-menu>ul.sub-menu>li {
    display: inline-block;
    margin: 0 5px;
    width: 190px;
    border: none;
}

ul li.mega-menu>ul.sub-menu>li>a {
    padding: 0px 16px;
    font-size: 15px;
    font-weight: 700;
    border-bottom: 1px solid #d9d9d9;
    padding-bottom: 8px;
}

ul li.mega-menu>ul.sub-menu>li ul {
    position: relative;
    width: inherit;
    left: inherit;
    box-shadow: none;
    border-top: none;
}
ul>li.mega-menu>ul.sub-menu>li>ul.sub-menu>li>a {
    font-weight: 500;
}
ul>li.mega-menu>ul.sub-menu>li>ul.sub-menu>li{
    display: flex;
    align-items: center;
    color: #222;
}
ul li.mega-menu:hover ul {
    opacity: 1;
    visibility: visible;
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
}
ul li.mega-menu ul.sub-menu li a,
ul li.mega-menu>ul.sub-menu li:before {
    color: #444;
}

.main-menu .navigation > li.mega-menu:hover ul.sub-menu>li ul {
	visibility: visible;
    opacity: 1;
}

.title-fill {
    white-space: normal;
}

@media only screen and (max-width: 991px){

	.call-to-action-h6 {
		background: #222222;
	}

}

@media only screen and (max-width: 991px){
	
	.main-menu .navbar-collapse ul li.mega-menu ul li ul li {
		display: block !important;
		transition: all 700ms ease;
	}
	.main-menu .navbar-collapse ul li.mega-menu ul li ul {
		display: block !important;
		border-top: transparent !important;
		transition: all 700ms ease;
	}
	.main-menu .navbar-collapse ul li.mega-menu>ul.sub-menu>li {
		width: 100%;
		padding-left: 0;
		transition: all 700ms ease;
	}
	.main-menu .navbar-collapse ul li.mega-menu ul li ul li a {
		padding-left: 20px !important;
		transition: all 700ms ease;
	}
	.main-menu .navbar-collapse ul li.mega-menu>ul.sub-menu>li>a {
		border-bottom: transparent;
		transition: all 700ms ease;
	}
	.main-menu .navbar-collapse > .navigation > li > ul, .main-menu .navbar-collapse > .navigation > li > ul > li > ul {
		border-top: transparent !important;
		transition: all 700ms ease;
	}
	.main-menu .navigation > li > ul > li {
		padding-left: 20px;
		transition: all 700ms ease;
	}
	.main-menu .navbar-collapse > .navigation {
		overflow: hidden;
		transition: all 700ms ease;
	}
	.main-menu .navbar-collapse ul li.mega-menu ul li ul li:hover a {
		color: #FF0000 !important;
		transition: all 700ms ease;
	}
	.main-menu .navigation > li > ul > li:hover a {
		color: #FF0000 !important;
		transition: all 700ms ease;
	}
	
	.main-menu .navigation > li > ul > li:hover > ul > li > a {
		color: #fff !important;
		transition: all 700ms ease;
	}
	.main-menu .navigation > li > ul > li > ul > li:hover > a {
		color: #FF0000 !important;
		transition: all 700ms ease;
	}

	
}


@media only screen and (max-width: 1200px){
.bkr003 .team-6 .animx1 {
	opacity: 0;
}
.about-h9:after {
    opacity: 0;
}
.about-h9 {
    background-image: none !important;
}	
.funfact-skill-h9:before {
	opacity: 0;
}	
.funfact-skill-h9 .animx1 {
	opacity: 0;
}
.project-slider-h6 .animx1 {
	opacity: 0;
}	
.call-to-action-four .inner {
    padding-left: 0;
}	
.service-img-h6:after {
	opacity: 0;
}	
.call-to-action-h6-two:after {
	opacity: 0;
}	
		
}


@media only screen and (max-width: 991px){
	.banner-section.style-h10 .banner-carousel .content-box h3 {
		text-align: center;
	}
	.banner-section.style-h10 .active .content-box h3:before {
		right: 0 !important;
		margin: 0 auto;
	}
	.banner-section.style-h10 .banner-carousel .content-box h2 {
		text-align: center;
	}
	.banner-section .textn {
		text-align: center;
	}
	.banner-section.style-h10 .banner-carousel .link-box {
		text-align: center;
	}
	.banner-section.style-h10 .banner-carousel .content-box h2 {
		font-size: 50px;
		line-height: 60px;
	}
}
@media only screen and (max-width: 767px){
	.banner-section.style-h10 .banner-carousel .content-box h2 {
		font-size: 40px;
		line-height: 50px;
	}
}
@media only screen and (max-width: 599px){
	.banner-section.style-h10 .banner-carousel .content-box h2 {
		font-size: 30px;
		line-height: 40px;
	}
}