/*!/wp-content/themes/electrical/css/style.css*/@import url(https://fonts.googleapis.com/css?family=Poppins%3A200%2C200i%2C300%2C300i%2C400%2C400i%2C500%2C500i%2C600%2C600i%2C700%2C700i%2C800%2C800i%2C900%2C900i&display=swap);@import url(https://fonts.googleapis.com/css?family=Nunito+Sans%3A300%2C300i%2C400%2C400i%2C600%2C600i%2C700%2C700i%2C800%2C800i%2C900%2C900i&display=swap);@import url(https://fonts.googleapis.com/css?family=Lobster+Two%3A400%2C400i%2C700%2C700i&display=swap);/***************************************************************************************************************
||||||||||||||||||||||||||       MASTER STYLESHEET FOR FixyMan             ||||||||||||||||||||||||||||||||||||
****************************************************************************************************************
||||||||||||||||||||||||||                TABLE OF CONTENT               |||||||||||||||||||||||||||||||||||||||
****************************************************************************************************************
****************************************************************************************************************

01. Imported styles
02. Flaticon reset styles
03. Header styles
04. Mainmenu styles
05. Rev_slider_wrapper styles
66. Call to action area Style
07. Categories area style
08. Fact counter area style
09. Latest Blog area style
10. Latest blog area style 
11. Testimonial area style
12. Brand area style
13. Single service style
14. Pricing table area style
15. About page style
16. Account page style
17. 404 page style style
18. Blog page style
19. Blog single style
20. Contact page style

****************************************************************************************************************
||||||||||||||||||||||||||||            End TABLE OF CONTENT                ||||||||||||||||||||||||||||||||||||
****************************************************************************************************************/









@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.2.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,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";--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%;-webkit-tap-highlight-color:transparent}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,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";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;text-decoration-skip-ink:none}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}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}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}figure{margin:0 0 1rem}img{vertical-align:middle;border-style:none}svg{overflow:hidden;vertical-align:middle}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=button],[type=reset],[type=submit],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-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{margin-bottom:.5rem;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%;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:100%}.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:100%}.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:100%}.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:100%}.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:100%}.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%;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-primary tbody+tbody,.table-primary td,.table-primary th,.table-primary thead th{border-color:#7abaff}.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-secondary tbody+tbody,.table-secondary td,.table-secondary th,.table-secondary thead th{border-color:#b3b7bb}.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-success tbody+tbody,.table-success td,.table-success th,.table-success thead th{border-color:#8fd19e}.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-info tbody+tbody,.table-info td,.table-info th,.table-info thead th{border-color:#86cfda}.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-warning tbody+tbody,.table-warning td,.table-warning th,.table-warning thead th{border-color:#ffdf7e}.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-danger tbody+tbody,.table-danger td,.table-danger th,.table-danger thead th{border-color:#ed969e}.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-light tbody+tbody,.table-light td,.table-light th,.table-light thead th{border-color:#fbfcfc}.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-dark tbody+tbody,.table-dark td,.table-dark th,.table-dark thead th{border-color:#95999c}.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%;height:calc(2.25rem + 2px);padding:.375rem .75rem;font-size:1rem;font-weight:400;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: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{padding-right:0;padding-left:0}.form-control-sm{height:calc(1.8125rem + 2px);padding:.25rem .5rem;font-size:.875rem;line-height:1.5;border-radius:.2rem}.form-control-lg{height:calc(2.875rem + 2px);padding:.5rem 1rem;font-size:1.25rem;line-height:1.5;border-radius:.3rem}select.form-control[multiple],select.form-control[size]{height:auto}textarea.form-control{height:auto}.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:.25rem .5rem;margin-top:.1rem;font-size:.875rem;line-height:1.5;color:#fff;background-color:rgba(40,167,69,.9);border-radius:.25rem}.form-control.is-valid,.was-validated .form-control:valid{border-color:#28a745;padding-right:2.25rem;background-repeat:no-repeat;background-position:center right calc(2.25rem / 4);background-size:calc(2.25rem / 2) calc(2.25rem / 2);background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%2328a745' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e")}.form-control.is-valid:focus,.was-validated .form-control:valid:focus{border-color:#28a745;box-shadow:0 0 0 .2rem rgba(40,167,69,.25)}.form-control.is-valid~.valid-feedback,.form-control.is-valid~.valid-tooltip,.was-validated .form-control:valid~.valid-feedback,.was-validated .form-control:valid~.valid-tooltip{display:block}.was-validated textarea.form-control:valid,textarea.form-control.is-valid{padding-right:2.25rem;background-position:top calc(2.25rem / 4) right calc(2.25rem / 4)}.custom-select.is-valid,.was-validated .custom-select:valid{border-color:#28a745;padding-right:3.4375rem;background:url("data:image/svg+xml,%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/8px 10px,url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%2328a745' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e") no-repeat center right 1.75rem/1.125rem 1.125rem}.custom-select.is-valid:focus,.was-validated .custom-select: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,.was-validated .custom-select:valid~.valid-feedback,.was-validated .custom-select: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{border-color:#28a745}.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{border-color:#34ce57;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 .2rem rgba(40,167,69,.25)}.custom-control-input.is-valid:focus:not(:checked)~.custom-control-label::before,.was-validated .custom-control-input:valid:focus:not(:checked)~.custom-control-label::before{border-color:#28a745}.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~.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{border-color:#28a745;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:.25rem .5rem;margin-top:.1rem;font-size:.875rem;line-height:1.5;color:#fff;background-color:rgba(220,53,69,.9);border-radius:.25rem}.form-control.is-invalid,.was-validated .form-control:invalid{border-color:#dc3545;padding-right:2.25rem;background-repeat:no-repeat;background-position:center right calc(2.25rem / 4);background-size:calc(2.25rem / 2) calc(2.25rem / 2);background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23dc3545' viewBox='-2 -2 7 7'%3e%3cpath stroke='%23d9534f' d='M0 0l3 3m0-3L0 3'/%3e%3ccircle r='.5'/%3e%3ccircle cx='3' r='.5'/%3e%3ccircle cy='3' r='.5'/%3e%3ccircle cx='3' cy='3' r='.5'/%3e%3c/svg%3E")}.form-control.is-invalid:focus,.was-validated .form-control:invalid:focus{border-color:#dc3545;box-shadow:0 0 0 .2rem rgba(220,53,69,.25)}.form-control.is-invalid~.invalid-feedback,.form-control.is-invalid~.invalid-tooltip,.was-validated .form-control:invalid~.invalid-feedback,.was-validated .form-control:invalid~.invalid-tooltip{display:block}.was-validated textarea.form-control:invalid,textarea.form-control.is-invalid{padding-right:2.25rem;background-position:top calc(2.25rem / 4) right calc(2.25rem / 4)}.custom-select.is-invalid,.was-validated .custom-select:invalid{border-color:#dc3545;padding-right:3.4375rem;background:url("data:image/svg+xml,%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/8px 10px,url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23dc3545' viewBox='-2 -2 7 7'%3e%3cpath stroke='%23d9534f' d='M0 0l3 3m0-3L0 3'/%3e%3ccircle r='.5'/%3e%3ccircle cx='3' r='.5'/%3e%3ccircle cy='3' r='.5'/%3e%3ccircle cx='3' cy='3' r='.5'/%3e%3c/svg%3E") no-repeat center right 1.75rem/1.125rem 1.125rem}.custom-select.is-invalid:focus,.was-validated .custom-select: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,.was-validated .custom-select:invalid~.invalid-feedback,.was-validated .custom-select: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{border-color:#dc3545}.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{border-color:#e4606d;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 .2rem rgba(220,53,69,.25)}.custom-control-input.is-invalid:focus:not(:checked)~.custom-control-label::before,.was-validated .custom-control-input:invalid:focus:not(:checked)~.custom-control-label::before{border-color:#dc3545}.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~.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{border-color:#dc3545;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;color:#212529;text-align:center;vertical-align:middle;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;background-color:transparent;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:hover{color:#212529;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}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(38,143,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(38,143,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(130,138,145,.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(130,138,145,.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(72,180,97,.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(72,180,97,.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(58,176,195,.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(58,176,195,.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(222,170,12,.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(222,170,12,.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(225,83,97,.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(225,83,97,.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(216,217,219,.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(216,217,219,.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(82,88,93,.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(82,88,93,.5)}.btn-outline-primary{color:#007bff;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;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;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;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;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;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;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;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}.btn-link:hover{color:#0056b3;text-decoration:underline}.btn-link.focus,.btn-link:focus{text-decoration:underline;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;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}@media (min-width:576px){.dropdown-menu-sm-right{right:0;left:auto}}@media (min-width:768px){.dropdown-menu-md-right{right:0;left:auto}}@media (min-width:992px){.dropdown-menu-lg-right{right:0;left:auto}}@media (min-width:1200px){.dropdown-menu-xl-right{right:0;left:auto}}.dropdown-menu-left{right:auto;left:0}@media (min-width:576px){.dropdown-menu-sm-left{right:auto;left:0}}@media (min-width:768px){.dropdown-menu-md-left{right:auto;left:0}}@media (min-width:992px){.dropdown-menu-lg-left{right:auto;left:0}}@media (min-width:1200px){.dropdown-menu-xl-left{right:auto;left:0}}.dropup .dropdown-menu{top:auto;bottom:100%;margin-top:0;margin-bottom:.125rem}.dropup .dropdown-toggle::after{display:inline-block;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;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;margin-left:.255em;vertical-align:.255em;content:""}.dropleft .dropdown-toggle::after{display:none}.dropleft .dropdown-toggle::before{display:inline-block;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:first-child{border-top-left-radius:calc(.25rem - 1px);border-top-right-radius:calc(.25rem - 1px)}.dropdown-item:last-child{border-bottom-right-radius:calc(.25rem - 1px);border-bottom-left-radius:calc(.25rem - 1px)}.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;pointer-events:none;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:1 1 auto;flex:1 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-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-group:not(:first-child),.btn-group>.btn:not(:first-child){margin-left:-1px}.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-group:not(:first-child),.btn-group-vertical>.btn:not(:first-child){margin-top:-1px}.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,.input-group>.form-control-plaintext{position:relative;-ms-flex:1 1 auto;flex:1 1 auto;width:1%;margin-bottom:0}.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,.input-group>.form-control-plaintext+.custom-file,.input-group>.form-control-plaintext+.custom-select,.input-group>.form-control-plaintext+.form-control{margin-left:-1px}.input-group>.custom-file .custom-file-input:focus~.custom-file-label,.input-group>.custom-select:focus,.input-group>.form-control:focus{z-index:3}.input-group>.custom-file .custom-file-input:focus{z-index:4}.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:focus,.input-group-prepend .btn:focus{z-index:3}.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-lg>.custom-select,.input-group-lg>.form-control:not(textarea){height:calc(2.875rem + 2px)}.input-group-lg>.custom-select,.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-sm>.custom-select,.input-group-sm>.form-control:not(textarea){height:calc(1.8125rem + 2px)}.input-group-sm>.custom-select,.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-lg>.custom-select,.input-group-sm>.custom-select{padding-right:1.75rem}.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;border-color:#007bff;background-color:#007bff}.custom-control-input:focus~.custom-control-label::before{box-shadow:0 0 0 .2rem rgba(0,123,255,.25)}.custom-control-input:focus:not(:checked)~.custom-control-label::before{border-color:#80bdff}.custom-control-input:not(:disabled):active~.custom-control-label::before{color:#fff;background-color:#b3d7ff;border-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;vertical-align:top}.custom-control-label::before{position:absolute;top:.25rem;left:-1.5rem;display:block;width:1rem;height:1rem;pointer-events:none;content:"";background-color:#fff;border:#adb5bd solid 1px}.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::after{background-image:url("data:image/svg+xml,%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{border-color:#007bff;background-color:#007bff}.custom-checkbox .custom-control-input:indeterminate~.custom-control-label::after{background-image:url("data:image/svg+xml,%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::after{background-image:url("data:image/svg+xml,%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-switch{padding-left:2.25rem}.custom-switch .custom-control-label::before{left:-2.25rem;width:1.75rem;pointer-events:all;border-radius:.5rem}.custom-switch .custom-control-label::after{top:calc(.25rem + 2px);left:calc(-2.25rem + 2px);width:calc(1rem - 4px);height:calc(1rem - 4px);background-color:#adb5bd;border-radius:.5rem;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out,-webkit-transform .15s ease-in-out;transition:transform .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:transform .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out,-webkit-transform .15s ease-in-out}@media screen and (prefers-reduced-motion:reduce){.custom-switch .custom-control-label::after{transition:none}}.custom-switch .custom-control-input:checked~.custom-control-label::after{background-color:#fff;-webkit-transform:translateX(.75rem);transform:translateX(.75rem)}.custom-switch .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;font-weight:400;line-height:1.5;color:#495057;vertical-align:middle;background:url("data:image/svg+xml,%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/8px 10px;background-color:#fff;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:0 0 0 .2rem 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:.25rem;padding-bottom:.25rem;padding-left:.5rem;font-size:.875rem}.custom-select-lg{height:calc(2.875rem + 2px);padding-top:.5rem;padding-bottom:.5rem;padding-left:1rem;font-size:1.25rem}.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:disabled~.custom-file-label{background-color:#e9ecef}.custom-file-input:lang(en)~.custom-file-label::after{content:"Browse"}.custom-file-input~.custom-file-label[data-browse]::after{content:attr(data-browse)}.custom-file-label{position:absolute;top:0;right:0;left:0;z-index:1;height:calc(2.25rem + 2px);padding:.375rem .75rem;font-weight:400;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:inherit;border-radius:0 .25rem .25rem 0}.custom-range{width:100%;height:calc(1rem + .4rem);padding:0;background-color:transparent;-webkit-appearance:none;-moz-appearance:none;appearance:none}.custom-range:focus{outline:0}.custom-range:focus::-webkit-slider-thumb{box-shadow:0 0 0 1px #fff,0 0 0 .2rem rgba(0,123,255,.25)}.custom-range:focus::-moz-range-thumb{box-shadow:0 0 0 1px #fff,0 0 0 .2rem rgba(0,123,255,.25)}.custom-range:focus::-ms-thumb{box-shadow:0 0 0 1px #fff,0 0 0 .2rem rgba(0,123,255,.25)}.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;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;-webkit-appearance:none;appearance:none}@media screen and (prefers-reduced-motion:reduce){.custom-range::-webkit-slider-thumb{transition:none}}.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;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;-moz-appearance:none;appearance:none}@media screen and (prefers-reduced-motion:reduce){.custom-range::-moz-range-thumb{transition:none}}.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;margin-top:0;margin-right:.2rem;margin-left:.2rem;background-color:#007bff;border:0;border-radius:1rem;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;appearance:none}@media screen and (prefers-reduced-motion:reduce){.custom-range::-ms-thumb{transition:none}}.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}.custom-range:disabled::-webkit-slider-thumb{background-color:#adb5bd}.custom-range:disabled::-webkit-slider-runnable-track{cursor:default}.custom-range:disabled::-moz-range-thumb{background-color:#adb5bd}.custom-range:disabled::-moz-range-track{cursor:default}.custom-range:disabled::-ms-thumb{background-color:#adb5bd}.custom-control-label::before,.custom-file-label,.custom-select{transition: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){.custom-control-label::before,.custom-file-label,.custom-select{transition:none}}.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;pointer-events:none;cursor:default}.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,%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,%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;color:inherit;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{overflow:hidden}.accordion .card:not(:first-of-type) .card-header:first-child{border-radius:0}.accordion .card:not(:first-of-type):not(:last-of-type){border-bottom:0;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}.accordion .card .card-header{margin-bottom:-1px}.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}a.badge:focus,a.badge:hover{text-decoration:none}.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}a.badge-primary:focus,a.badge-primary:hover{color:#fff;background-color:#0062cc}.badge-secondary{color:#fff;background-color:#6c757d}a.badge-secondary:focus,a.badge-secondary:hover{color:#fff;background-color:#545b62}.badge-success{color:#fff;background-color:#28a745}a.badge-success:focus,a.badge-success:hover{color:#fff;background-color:#1e7e34}.badge-info{color:#fff;background-color:#17a2b8}a.badge-info:focus,a.badge-info:hover{color:#fff;background-color:#117a8b}.badge-warning{color:#212529;background-color:#ffc107}a.badge-warning:focus,a.badge-warning:hover{color:#212529;background-color:#d39e00}.badge-danger{color:#fff;background-color:#dc3545}a.badge-danger:focus,a.badge-danger:hover{color:#fff;background-color:#bd2130}.badge-light{color:#212529;background-color:#f8f9fa}a.badge-light:focus,a.badge-light:hover{color:#212529;background-color:#dae0e5}.badge-dark{color:#fff;background-color:#343a40}a.badge-dark:focus,a.badge-dark:hover{color:#fff;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;pointer-events:none;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 .list-group-item:last-child{margin-bottom:-1px}.list-group-flush:first-child .list-group-item:first-child{border-top:0}.list-group-flush:last-child .list-group-item:last-child{margin-bottom:0;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:hover{color:#000;text-decoration:none}.close:not(:disabled):not(.disabled){cursor:pointer}.close:not(:disabled):not(.disabled):focus,.close:not(:disabled):not(.disabled):hover{opacity:.75}button.close{padding:0;background-color:transparent;border:0;-webkit-appearance:none;-moz-appearance:none;appearance:none}a.close.disabled{pointer-events:none}.toast{max-width:350px;overflow:hidden;font-size:.875rem;background-color:rgba(255,255,255,.85);background-clip:padding-box;border:1px solid rgba(0,0,0,.1);border-radius:.25rem;box-shadow:0 .25rem .75rem rgba(0,0,0,.1);-webkit-backdrop-filter:blur(10px);backdrop-filter:blur(10px);opacity:0}.toast:not(:last-child){margin-bottom:.75rem}.toast.showing{opacity:1}.toast.show{display:block;opacity:1}.toast.hide{display:none}.toast-header{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;padding:.25rem .75rem;color:#6c757d;background-color:rgba(255,255,255,.85);background-clip:padding-box;border-bottom:1px solid rgba(0,0,0,.05)}.toast-body{padding:.75rem}.modal-open{overflow:hidden}.modal-open .modal{overflow-x:hidden;overflow-y:auto}.modal{position:fixed;top:0;left:0;z-index:1050;display:none;width:100%;height:100%;overflow:hidden;outline:0}.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,-50px);transform:translate(0,-50px)}@media screen and (prefers-reduced-motion:reduce){.modal.fade .modal-dialog{transition:none}}.modal.show .modal-dialog{-webkit-transform:none;transform:none}.modal-dialog-centered{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;min-height:calc(100% - (.5rem * 2))}.modal-dialog-centered::before{display:block;height:calc(100vh - (.5rem * 2));content:""}.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;left:0;z-index:1040;width:100vw;height:100vh;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 1rem;border-bottom:1px solid #e9ecef;border-top-left-radius:.3rem;border-top-right-radius:.3rem}.modal-header .close{padding:1rem 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;border-bottom-right-radius:.3rem;border-bottom-left-radius:.3rem}.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-dialog-centered::before{height:calc(100vh - (1.75rem * 2))}.modal-sm{max-width:300px}}@media (min-width:992px){.modal-lg,.modal-xl{max-width:800px}}@media (min-width:1200px){.modal-xl{max-width:1140px}}.tooltip{position:absolute;z-index:1070;display:block;margin:0;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";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,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";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.pointer-event{-ms-touch-action:pan-y;touch-action:pan-y}.carousel-inner{position:relative;width:100%;overflow:hidden}.carousel-inner::after{display:block;clear:both;content:""}.carousel-item{position:relative;display:none;float:left;width:100%;margin-right:-100%;-webkit-backface-visibility:hidden;backface-visibility:hidden;transition:-webkit-transform .6s ease-in-out;transition:transform .6s ease-in-out;transition:transform .6s ease-in-out,-webkit-transform .6s ease-in-out}@media screen and (prefers-reduced-motion:reduce){.carousel-item{transition:none}}.carousel-item-next,.carousel-item-prev,.carousel-item.active{display:block}.active.carousel-item-right,.carousel-item-next:not(.carousel-item-left){-webkit-transform:translateX(100%);transform:translateX(100%)}.active.carousel-item-left,.carousel-item-prev:not(.carousel-item-right){-webkit-transform:translateX(-100%);transform:translateX(-100%)}.carousel-fade .carousel-item{opacity:0;transition-property:opacity;-webkit-transform:none;transform:none}.carousel-fade .carousel-item-next.carousel-item-left,.carousel-fade .carousel-item-prev.carousel-item-right,.carousel-fade .carousel-item.active{z-index:1;opacity:1}.carousel-fade .active.carousel-item-left,.carousel-fade .active.carousel-item-right{z-index:0;opacity:0;transition:0s .6s opacity}@media screen and (prefers-reduced-motion:reduce){.carousel-fade .active.carousel-item-left,.carousel-fade .active.carousel-item-right{transition:none}}.carousel-control-next,.carousel-control-prev{position:absolute;top:0;bottom:0;z-index:1;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;transition:opacity .15s ease}@media screen and (prefers-reduced-motion:reduce){.carousel-control-next,.carousel-control-prev{transition:none}}.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,%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,%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:0;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{box-sizing:content-box;-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:#fff;background-clip:padding-box;border-top:10px solid transparent;border-bottom:10px solid transparent;opacity:.5;transition:opacity .6s ease}@media screen and (prefers-reduced-motion:reduce){.carousel-indicators li{transition:none}}.carousel-indicators .active{opacity:1}.carousel-caption{position:absolute;right:15%;bottom:20px;left:15%;z-index:10;padding-top:20px;padding-bottom:20px;color:#fff;text-align:center}@-webkit-keyframes spinner-border{to{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes spinner-border{to{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}.spinner-border{display:inline-block;width:2rem;height:2rem;vertical-align:text-bottom;border:.25em solid currentColor;border-right-color:transparent;border-radius:50%;-webkit-animation:spinner-border .75s linear infinite;animation:spinner-border .75s linear infinite}.spinner-border-sm{width:1rem;height:1rem;border-width:.2em}@-webkit-keyframes spinner-grow{0%{-webkit-transform:scale(0);transform:scale(0)}50%{opacity:1}}@keyframes spinner-grow{0%{-webkit-transform:scale(0);transform:scale(0)}50%{opacity:1}}.spinner-grow{display:inline-block;width:2rem;height:2rem;vertical-align:text-bottom;background-color:currentColor;border-radius:50%;opacity:0;-webkit-animation:spinner-grow .75s linear infinite;animation:spinner-grow .75s linear infinite}.spinner-grow-sm{width:1rem;height:1rem}.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-pill{border-radius:50rem!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-3by4::before{padding-top:133.333333%}.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}}.overflow-auto{overflow:auto!important}.overflow-hidden{overflow:hidden!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}.min-vw-100{min-width:100vw!important}.min-vh-100{min-height:100vh!important}.vw-100{width:100vw!important}.vh-100{height:100vh!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-n1{margin:-.25rem!important}.mt-n1,.my-n1{margin-top:-.25rem!important}.mr-n1,.mx-n1{margin-right:-.25rem!important}.mb-n1,.my-n1{margin-bottom:-.25rem!important}.ml-n1,.mx-n1{margin-left:-.25rem!important}.m-n2{margin:-.5rem!important}.mt-n2,.my-n2{margin-top:-.5rem!important}.mr-n2,.mx-n2{margin-right:-.5rem!important}.mb-n2,.my-n2{margin-bottom:-.5rem!important}.ml-n2,.mx-n2{margin-left:-.5rem!important}.m-n3{margin:-1rem!important}.mt-n3,.my-n3{margin-top:-1rem!important}.mr-n3,.mx-n3{margin-right:-1rem!important}.mb-n3,.my-n3{margin-bottom:-1rem!important}.ml-n3,.mx-n3{margin-left:-1rem!important}.m-n4{margin:-1.5rem!important}.mt-n4,.my-n4{margin-top:-1.5rem!important}.mr-n4,.mx-n4{margin-right:-1.5rem!important}.mb-n4,.my-n4{margin-bottom:-1.5rem!important}.ml-n4,.mx-n4{margin-left:-1.5rem!important}.m-n5{margin:-3rem!important}.mt-n5,.my-n5{margin-top:-3rem!important}.mr-n5,.mx-n5{margin-right:-3rem!important}.mb-n5,.my-n5{margin-bottom:-3rem!important}.ml-n5,.mx-n5{margin-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-n1{margin:-.25rem!important}.mt-sm-n1,.my-sm-n1{margin-top:-.25rem!important}.mr-sm-n1,.mx-sm-n1{margin-right:-.25rem!important}.mb-sm-n1,.my-sm-n1{margin-bottom:-.25rem!important}.ml-sm-n1,.mx-sm-n1{margin-left:-.25rem!important}.m-sm-n2{margin:-.5rem!important}.mt-sm-n2,.my-sm-n2{margin-top:-.5rem!important}.mr-sm-n2,.mx-sm-n2{margin-right:-.5rem!important}.mb-sm-n2,.my-sm-n2{margin-bottom:-.5rem!important}.ml-sm-n2,.mx-sm-n2{margin-left:-.5rem!important}.m-sm-n3{margin:-1rem!important}.mt-sm-n3,.my-sm-n3{margin-top:-1rem!important}.mr-sm-n3,.mx-sm-n3{margin-right:-1rem!important}.mb-sm-n3,.my-sm-n3{margin-bottom:-1rem!important}.ml-sm-n3,.mx-sm-n3{margin-left:-1rem!important}.m-sm-n4{margin:-1.5rem!important}.mt-sm-n4,.my-sm-n4{margin-top:-1.5rem!important}.mr-sm-n4,.mx-sm-n4{margin-right:-1.5rem!important}.mb-sm-n4,.my-sm-n4{margin-bottom:-1.5rem!important}.ml-sm-n4,.mx-sm-n4{margin-left:-1.5rem!important}.m-sm-n5{margin:-3rem!important}.mt-sm-n5,.my-sm-n5{margin-top:-3rem!important}.mr-sm-n5,.mx-sm-n5{margin-right:-3rem!important}.mb-sm-n5,.my-sm-n5{margin-bottom:-3rem!important}.ml-sm-n5,.mx-sm-n5{margin-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-n1{margin:-.25rem!important}.mt-md-n1,.my-md-n1{margin-top:-.25rem!important}.mr-md-n1,.mx-md-n1{margin-right:-.25rem!important}.mb-md-n1,.my-md-n1{margin-bottom:-.25rem!important}.ml-md-n1,.mx-md-n1{margin-left:-.25rem!important}.m-md-n2{margin:-.5rem!important}.mt-md-n2,.my-md-n2{margin-top:-.5rem!important}.mr-md-n2,.mx-md-n2{margin-right:-.5rem!important}.mb-md-n2,.my-md-n2{margin-bottom:-.5rem!important}.ml-md-n2,.mx-md-n2{margin-left:-.5rem!important}.m-md-n3{margin:-1rem!important}.mt-md-n3,.my-md-n3{margin-top:-1rem!important}.mr-md-n3,.mx-md-n3{margin-right:-1rem!important}.mb-md-n3,.my-md-n3{margin-bottom:-1rem!important}.ml-md-n3,.mx-md-n3{margin-left:-1rem!important}.m-md-n4{margin:-1.5rem!important}.mt-md-n4,.my-md-n4{margin-top:-1.5rem!important}.mr-md-n4,.mx-md-n4{margin-right:-1.5rem!important}.mb-md-n4,.my-md-n4{margin-bottom:-1.5rem!important}.ml-md-n4,.mx-md-n4{margin-left:-1.5rem!important}.m-md-n5{margin:-3rem!important}.mt-md-n5,.my-md-n5{margin-top:-3rem!important}.mr-md-n5,.mx-md-n5{margin-right:-3rem!important}.mb-md-n5,.my-md-n5{margin-bottom:-3rem!important}.ml-md-n5,.mx-md-n5{margin-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-n1{margin:-.25rem!important}.mt-lg-n1,.my-lg-n1{margin-top:-.25rem!important}.mr-lg-n1,.mx-lg-n1{margin-right:-.25rem!important}.mb-lg-n1,.my-lg-n1{margin-bottom:-.25rem!important}.ml-lg-n1,.mx-lg-n1{margin-left:-.25rem!important}.m-lg-n2{margin:-.5rem!important}.mt-lg-n2,.my-lg-n2{margin-top:-.5rem!important}.mr-lg-n2,.mx-lg-n2{margin-right:-.5rem!important}.mb-lg-n2,.my-lg-n2{margin-bottom:-.5rem!important}.ml-lg-n2,.mx-lg-n2{margin-left:-.5rem!important}.m-lg-n3{margin:-1rem!important}.mt-lg-n3,.my-lg-n3{margin-top:-1rem!important}.mr-lg-n3,.mx-lg-n3{margin-right:-1rem!important}.mb-lg-n3,.my-lg-n3{margin-bottom:-1rem!important}.ml-lg-n3,.mx-lg-n3{margin-left:-1rem!important}.m-lg-n4{margin:-1.5rem!important}.mt-lg-n4,.my-lg-n4{margin-top:-1.5rem!important}.mr-lg-n4,.mx-lg-n4{margin-right:-1.5rem!important}.mb-lg-n4,.my-lg-n4{margin-bottom:-1.5rem!important}.ml-lg-n4,.mx-lg-n4{margin-left:-1.5rem!important}.m-lg-n5{margin:-3rem!important}.mt-lg-n5,.my-lg-n5{margin-top:-3rem!important}.mr-lg-n5,.mx-lg-n5{margin-right:-3rem!important}.mb-lg-n5,.my-lg-n5{margin-bottom:-3rem!important}.ml-lg-n5,.mx-lg-n5{margin-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-n1{margin:-.25rem!important}.mt-xl-n1,.my-xl-n1{margin-top:-.25rem!important}.mr-xl-n1,.mx-xl-n1{margin-right:-.25rem!important}.mb-xl-n1,.my-xl-n1{margin-bottom:-.25rem!important}.ml-xl-n1,.mx-xl-n1{margin-left:-.25rem!important}.m-xl-n2{margin:-.5rem!important}.mt-xl-n2,.my-xl-n2{margin-top:-.5rem!important}.mr-xl-n2,.mx-xl-n2{margin-right:-.5rem!important}.mb-xl-n2,.my-xl-n2{margin-bottom:-.5rem!important}.ml-xl-n2,.mx-xl-n2{margin-left:-.5rem!important}.m-xl-n3{margin:-1rem!important}.mt-xl-n3,.my-xl-n3{margin-top:-1rem!important}.mr-xl-n3,.mx-xl-n3{margin-right:-1rem!important}.mb-xl-n3,.my-xl-n3{margin-bottom:-1rem!important}.ml-xl-n3,.mx-xl-n3{margin-left:-1rem!important}.m-xl-n4{margin:-1.5rem!important}.mt-xl-n4,.my-xl-n4{margin-top:-1.5rem!important}.mr-xl-n4,.mx-xl-n4{margin-right:-1.5rem!important}.mb-xl-n4,.my-xl-n4{margin-bottom:-1.5rem!important}.ml-xl-n4,.mx-xl-n4{margin-left:-1.5rem!important}.m-xl-n5{margin:-3rem!important}.mt-xl-n5,.my-xl-n5{margin-top:-3rem!important}.mr-xl-n5,.mx-xl-n5{margin-right:-3rem!important}.mb-xl-n5,.my-xl-n5{margin-bottom:-3rem!important}.ml-xl-n5,.mx-xl-n5{margin-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-wrap{white-space:normal!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-lighter{font-weight:lighter!important}.font-weight-normal{font-weight:400!important}.font-weight-bold{font-weight:700!important}.font-weight-bolder{font-weight:bolder!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:#0056b3!important}.text-secondary{color:#6c757d!important}a.text-secondary:focus,a.text-secondary:hover{color:#494f54!important}.text-success{color:#28a745!important}a.text-success:focus,a.text-success:hover{color:#19692c!important}.text-info{color:#17a2b8!important}a.text-info:focus,a.text-info:hover{color:#0f6674!important}.text-warning{color:#ffc107!important}a.text-warning:focus,a.text-warning:hover{color:#ba8b00!important}.text-danger{color:#dc3545!important}a.text-danger:focus,a.text-danger:hover{color:#a71d2a!important}.text-light{color:#f8f9fa!important}a.text-light:focus,a.text-light:hover{color:#cbd3da!important}.text-dark{color:#343a40!important}a.text-dark:focus,a.text-dark:hover{color:#121416!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}.text-decoration-none{text-decoration:none!important}.text-reset{color:inherit!important}.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}}
/*# sourceMappingURL=bootstrap.min.css.map */
/*!
 * Bootstrap-select v1.13.3 (https://developer.snapappointments.com/bootstrap-select)
 *
 * Copyright 2012-2018 SnapAppointments, LLC
 * Licensed under MIT (https://github.com/snapappointments/bootstrap-select/blob/master/LICENSE)
 */.bootstrap-select>select.bs-select-hidden,select.bs-select-hidden,select.selectpicker{display:none!important}.bootstrap-select{width:220px\0;vertical-align:middle}.bootstrap-select>.dropdown-toggle{position:relative;width:100%;z-index:1;text-align:right;white-space:nowrap}.bootstrap-select>.dropdown-toggle.bs-placeholder,.bootstrap-select>.dropdown-toggle.bs-placeholder:active,.bootstrap-select>.dropdown-toggle.bs-placeholder:focus,.bootstrap-select>.dropdown-toggle.bs-placeholder:hover{color:#999}.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-danger,.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-danger:active,.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-danger:focus,.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-danger:hover,.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-dark,.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-dark:active,.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-dark:focus,.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-dark:hover,.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-info,.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-info:active,.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-info:focus,.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-info:hover,.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-primary,.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-primary:active,.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-primary:focus,.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-primary:hover,.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-secondary,.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-secondary:active,.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-secondary:focus,.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-secondary:hover,.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-success,.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-success:active,.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-success:focus,.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-success:hover{color:rgba(255,255,255,.5)}.bootstrap-select>select{position:absolute!important;bottom:0;left:50%;display:block!important;width:.5px!important;height:100%!important;padding:0!important;opacity:0!important;border:none}.bootstrap-select>select.mobile-device{top:0;left:0;display:block!important;width:100%!important;z-index:2}.bootstrap-select.is-invalid .dropdown-toggle,.error .bootstrap-select .dropdown-toggle,.has-error .bootstrap-select .dropdown-toggle,.was-validated .bootstrap-select .selectpicker:invalid+.dropdown-toggle{border-color:#b94a48}.bootstrap-select.is-valid .dropdown-toggle,.was-validated .bootstrap-select .selectpicker:valid+.dropdown-toggle{border-color:#28a745}.bootstrap-select.fit-width{width:auto!important}.bootstrap-select:not([class*=col-]):not([class*=form-control]):not(.input-group-btn){width:220px}.bootstrap-select .dropdown-toggle:focus,.bootstrap-select>select.mobile-device:focus+.dropdown-toggle{outline:thin dotted #333!important;outline:5px auto -webkit-focus-ring-color!important;outline-offset:-2px}.bootstrap-select.form-control{margin-bottom:0;padding:0;border:none}:not(.input-group)>.bootstrap-select.form-control:not([class*=col-]){width:100%}.bootstrap-select.form-control.input-group-btn{z-index:auto}.bootstrap-select.form-control.input-group-btn:not(:first-child):not(:last-child)>.btn{border-radius:0}.bootstrap-select:not(.input-group-btn),.bootstrap-select[class*=col-]{float:none;display:inline-block;margin-left:0}.bootstrap-select.dropdown-menu-right,.bootstrap-select[class*=col-].dropdown-menu-right,.row .bootstrap-select[class*=col-].dropdown-menu-right{float:right}.form-group .bootstrap-select,.form-horizontal .bootstrap-select,.form-inline .bootstrap-select{margin-bottom:0}.form-group-lg .bootstrap-select.form-control,.form-group-sm .bootstrap-select.form-control{padding:0}.form-group-lg .bootstrap-select.form-control .dropdown-toggle,.form-group-sm .bootstrap-select.form-control .dropdown-toggle{height:100%;font-size:inherit;line-height:inherit;border-radius:inherit}.bootstrap-select.form-control-lg .dropdown-toggle,.bootstrap-select.form-control-sm .dropdown-toggle{font-size:inherit;line-height:inherit;border-radius:inherit}.bootstrap-select.form-control-sm .dropdown-toggle{padding:.25rem .5rem}.bootstrap-select.form-control-lg .dropdown-toggle{padding:.5rem 1rem}.form-inline .bootstrap-select .form-control{width:100%}.bootstrap-select.disabled,.bootstrap-select>.disabled{cursor:not-allowed}.bootstrap-select.disabled:focus,.bootstrap-select>.disabled:focus{outline:0!important}.bootstrap-select.bs-container{position:absolute;top:0;left:0;height:0!important;padding:0!important}.bootstrap-select.bs-container .dropdown-menu{z-index:1060}.bootstrap-select .dropdown-toggle:before{content:'';display:inline-block}.bootstrap-select .dropdown-toggle .filter-option{position:absolute;top:0;left:0;padding-top:inherit;padding-right:inherit;padding-bottom:inherit;padding-left:inherit;height:100%;width:100%;text-align:left}.bootstrap-select .dropdown-toggle .filter-option-inner{padding-right:inherit}.bootstrap-select .dropdown-toggle .filter-option-inner-inner{overflow:hidden}.bootstrap-select .dropdown-toggle .caret{position:absolute;top:50%;right:12px;margin-top:-2px;vertical-align:middle}.input-group .bootstrap-select.form-control .dropdown-toggle{border-radius:inherit}.bootstrap-select[class*=col-] .dropdown-toggle{width:100%}.bootstrap-select .dropdown-menu{min-width:100%;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.bootstrap-select .dropdown-menu>.inner:focus{outline:0!important}.bootstrap-select .dropdown-menu.inner{position:static;float:none;border:0;padding:0;margin:0;border-radius:0;-webkit-box-shadow:none;box-shadow:none}.bootstrap-select .dropdown-menu li{position:relative}.bootstrap-select .dropdown-menu li.active small{color:rgba(255,255,255,.5)!important}.bootstrap-select .dropdown-menu li.disabled a{cursor:not-allowed}.bootstrap-select .dropdown-menu li a{cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.bootstrap-select .dropdown-menu li a.opt{position:relative;padding-left:2.25em}.bootstrap-select .dropdown-menu li a span.check-mark{display:none}.bootstrap-select .dropdown-menu li a span.text{display:inline-block}.bootstrap-select .dropdown-menu li small{padding-left:.5em}.bootstrap-select .dropdown-menu .notify{position:absolute;bottom:5px;width:96%;margin:0 2%;min-height:26px;padding:3px 5px;background:#f5f5f5;border:1px solid #e3e3e3;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.05);box-shadow:inset 0 1px 1px rgba(0,0,0,.05);pointer-events:none;opacity:.9;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.bootstrap-select .no-results{padding:3px;background:#f5f5f5;margin:0 5px;white-space:nowrap}.bootstrap-select.fit-width .dropdown-toggle .filter-option{position:static;display:inline;padding:0}.bootstrap-select.fit-width .dropdown-toggle .filter-option-inner,.bootstrap-select.fit-width .dropdown-toggle .filter-option-inner-inner{display:inline}.bootstrap-select.fit-width .dropdown-toggle .caret{position:static;top:auto;margin-top:-1px}.bootstrap-select.show-tick .dropdown-menu .selected span.check-mark{position:absolute;display:inline-block;right:15px;top:5px}.bootstrap-select.show-tick .dropdown-menu li a span.text{margin-right:34px}.bootstrap-select .bs-ok-default:after{content:'';display:block;width:.5em;height:1em;border-style:solid;border-width:0 .26em .26em 0;-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg);-o-transform:rotate(45deg);transform:rotate(45deg)}.bootstrap-select.show-menu-arrow.open>.dropdown-toggle,.bootstrap-select.show-menu-arrow.show>.dropdown-toggle{z-index:1061}.bootstrap-select.show-menu-arrow .dropdown-toggle .filter-option:before{content:'';border-left:7px solid transparent;border-right:7px solid transparent;border-bottom:7px solid rgba(204,204,204,.2);position:absolute;bottom:-4px;left:9px;display:none}.bootstrap-select.show-menu-arrow .dropdown-toggle .filter-option:after{content:'';border-left:6px solid transparent;border-right:6px solid transparent;border-bottom:6px solid #fff;position:absolute;bottom:-4px;left:10px;display:none}.bootstrap-select.show-menu-arrow.dropup .dropdown-toggle .filter-option:before{bottom:auto;top:-4px;border-top:7px solid rgba(204,204,204,.2);border-bottom:0}.bootstrap-select.show-menu-arrow.dropup .dropdown-toggle .filter-option:after{bottom:auto;top:-4px;border-top:6px solid #fff;border-bottom:0}.bootstrap-select.show-menu-arrow.pull-right .dropdown-toggle .filter-option:before{right:12px;left:auto}.bootstrap-select.show-menu-arrow.pull-right .dropdown-toggle .filter-option:after{right:13px;left:auto}.bootstrap-select.show-menu-arrow.open>.dropdown-toggle .filter-option:after,.bootstrap-select.show-menu-arrow.open>.dropdown-toggle .filter-option:before,.bootstrap-select.show-menu-arrow.show>.dropdown-toggle .filter-option:after,.bootstrap-select.show-menu-arrow.show>.dropdown-toggle .filter-option:before{display:block}.bs-actionsbox,.bs-donebutton,.bs-searchbox{padding:4px 8px}.bs-actionsbox{width:100%;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.bs-actionsbox .btn-group button{width:50%}.bs-donebutton{float:left;width:100%;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.bs-donebutton .btn-group button{width:100%}.bs-searchbox+.bs-actionsbox{padding:0 8px 4px}.bs-searchbox .form-control{margin-bottom:0;width:100%;float:none}
@keyframes rotateme {
    from {
        transform: rotate(0deg);
    }
    to { 
        transform: rotate(360deg);
    }
}
@-webkit-keyframes rotateme {
    from {
        -webkit-transform: rotate(0deg);
    }
    to { 
        -webkit-transform: rotate(360deg);
    }
}
@-moz-keyframes rotateme {
    from {
        -moz-transform: rotate(0deg);
    }
    to { 
        -moz-transform: rotate(360deg);
    }
}
@-o-keyframes rotateme {
    from {
        -o-transform: rotate(0deg);
    }
    to { 
        -o-transform: rotate(360deg);
    }
}

.rotate-me,
.android-section .image-column .inner-column .circle-image{
    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;
}



@-webkit-keyframes float-bob {
  0% {
    -webkit-transform: translateX(-100px);
    transform: translateX(-100px);
  }

  50% {
    -webkit-transform: translateX(-10px);
    transform: translateX(-10px);
  }

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

@keyframes float-bob {
  0% {
    -webkit-transform: translateX(-100px);
    transform: translateX(-100px);
  }

  50% {
    -webkit-transform: translateX(-10px);
    transform: translateX(-10px);
  }

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


@-webkit-keyframes zoom-fade {
  0% {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
  }

  50% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  100% {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
  }
}

@keyframes zoom-fade {
  0% {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
  }

  50% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  100% {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
  }
}

.float-bob,
.footer .overlay img,
.banner-section .mouse-btn-down,
.banner-section .image-column .image{
    animation-name: float-bob; 
    animation-duration: 7s; 
    animation-iteration-count: infinite;
    animation-timing-function: linear;
	
	-webkit-animation-name: float-bob; 
    -webkit-animation-duration: 7s; 
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
	
	-moz-animation-name: float-bob; 
    -moz-animation-duration: 7s; 
    -moz-animation-iteration-count: infinite;
    -moz-animation-timing-function: linear;
	
	-ms-animation-name: float-bob; 
    -ms-animation-duration: 7s; 
    -ms-animation-iteration-count: infinite;
    -ms-animation-timing-function: linear;
	
	-o-animation-name: float-bob; 
    -o-animation-duration: 7s; 
    -o-animation-iteration-count: infinite;
    -o-animation-timing-function: linear;
}

.zoom-fade,
.banner .parallax-container div img,
.fullwidth-video-section .play-link .icon-box{
    animation-name: zoom-fade; 
    animation-duration: 5s; 
    animation-iteration-count: infinite;
    animation-timing-function: linear;
	
	-webkit-animation-name: zoom-fade; 
    -webkit-animation-duration: 5s; 
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
	
	-moz-animation-name: zoom-fade; 
    -moz-animation-duration: 5s; 
    -moz-animation-iteration-count: infinite;
    -moz-animation-timing-function: linear;
	
	-ms-animation-name: zoom-fade; 
    -ms-animation-duration: 5s; 
    -ms-animation-iteration-count: infinite;
    -ms-animation-timing-function: linear;
	
	-o-animation-name: zoom-fade; 
    -o-animation-duration: 5s; 
    -o-animation-iteration-count: infinite;
    -o-animation-timing-function: linear;
}
/*!
 *  Font Awesome 4.5.0 by @davegandy - http://fontawesome.io - @fontawesome
 *  License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
 */@font-face{font-family:'FontAwesome';src:url(/wp-content/themes/electrical/css/../fonts/fontawesome-webfont3295.eot?v=4.5.0);src:url('/wp-content/themes/electrical/css/../fonts/fontawesome-webfontd41d.eot?#iefix&v=4.5.0') format('embedded-opentype'),url(/wp-content/themes/electrical/css/../fonts/fontawesome-webfont3295.woff2?v=4.5.0) format('woff2'),url(/wp-content/themes/electrical/css/../fonts/fontawesome-webfont3295.woff?v=4.5.0) format('woff'),url(/wp-content/themes/electrical/css/../fonts/fontawesome-webfont3295.ttf?v=4.5.0) format('truetype'),url('/wp-content/themes/electrical/css/../fonts/fontawesome-webfont3295.svg?v=4.5.0#fontawesomeregular') format('svg');font-weight:normal;font-style:normal}.fa{display:inline-block;font:normal normal normal 14px/1 FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.fa-lg{font-size:1.33333333em;line-height:.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:.14285714em;text-align:center}.fa-li.fa-lg{left:-1.85714286em}.fa-border{padding:.2em .25em .15em;border:solid .08em #eee;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}.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{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=1);-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg)}.fa-rotate-180{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=2);-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg)}.fa-rotate-270{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=3);-webkit-transform:rotate(270deg);-ms-transform:rotate(270deg);transform:rotate(270deg)}.fa-flip-horizontal{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{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:#fff}.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"}


@font-face {
  font-family: 'icomoon';
  src:  url(/wp-content/themes/electrical/css/../fonts/icomoonda59.eot?vdw2jk);
  src:  url('/wp-content/themes/electrical/css/../fonts/icomoonda59.eot?vdw2jk#iefix') format('embedded-opentype'),
    url(/wp-content/themes/electrical/css/../fonts/icomoonda59.ttf?vdw2jk) format('truetype'),
    url(/wp-content/themes/electrical/css/../fonts/icomoonda59.woff?vdw2jk) format('woff'),
    url('/wp-content/themes/electrical/css/../fonts/icomoonda59.svg?vdw2jk#icomoon') format('svg');
  font-weight: normal;
  font-style: normal;
}

[class^="icon-"], [class*=" icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'icomoon' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;

  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}







.icon-automation:before {
  content: "\e900";
}
.icon-phone:before {
  content: "\e901";
}
.icon-power:before {
  content: "\e902";
}
.icon-saw:before {
  content: "\e903";
}
.icon-clock:before {
  content: "\e904";
}
.icon-doctor:before {
  content: "\e905";
}
.icon-maps-and-location:before {
  content: "\e906";
}
.icon-phone1:before {
  content: "\e907";
}
.icon-doctor-1:before {
  content: "\e908";
}
.icon-mail:before {
  content: "\e909";
}
.icon-uk .path1:before {
  content: "\e90a";
  color: rgb(240, 240, 240);
}
.icon-uk .path2:before {
  content: "\e90b";
  margin-left: -1em;
  color: rgb(216, 0, 39);
}
.icon-uk .path3:before {
  content: "\e90c";
  margin-left: -1em;
  color: rgb(0, 82, 180);
}
.icon-uk .path4:before {
  content: "\e90d";
  margin-left: -1em;
  color: rgb(0, 82, 180);
}
.icon-uk .path5:before {
  content: "\e90e";
  margin-left: -1em;
  color: rgb(0, 82, 180);
}
.icon-uk .path6:before {
  content: "\e90f";
  margin-left: -1em;
  color: rgb(240, 240, 240);
}
.icon-uk .path7:before {
  content: "\e910";
  margin-left: -1em;
  color: rgb(216, 0, 39);
}
.icon-uk .path8:before {
  content: "\e911";
  margin-left: -1em;
  color: rgb(0, 82, 180);
}
.icon-uk .path9:before {
  content: "\e912";
  margin-left: -1em;
  color: rgb(0, 82, 180);
}
.icon-uk .path10:before {
  content: "\e913";
  margin-left: -1em;
  color: rgb(216, 0, 39);
}
.icon-uk .path11:before {
  content: "\e914";
  margin-left: -1em;
  color: rgb(0, 82, 180);
}
.icon-uk .path12:before {
  content: "\e915";
  margin-left: -1em;
  color: rgb(0, 82, 180);
}
.icon-uk .path13:before {
  content: "\e916";
  margin-left: -1em;
  color: rgb(0, 82, 180);
}
.icon-uk .path14:before {
  content: "\e917";
  margin-left: -1em;
  color: rgb(240, 240, 240);
}
.icon-uk .path15:before {
  content: "\e918";
  margin-left: -1em;
  color: rgb(216, 0, 39);
}
.icon-uk .path16:before {
  content: "\e919";
  margin-left: -1em;
  color: rgb(0, 82, 180);
}
.icon-uk .path17:before {
  content: "\e91a";
  margin-left: -1em;
  color: rgb(0, 82, 180);
}
.icon-uk .path18:before {
  content: "\e91b";
  margin-left: -1em;
  color: rgb(216, 0, 39);
}
.icon-clock1:before {
  content: "\e91c";
}
.icon-medal:before {
  content: "\e91d";
}
.icon-review:before {
  content: "\e91e";
}
.icon-electrician:before {
  content: "\e91f";
}
.icon-fast:before {
  content: "\e920";
}
.icon-mail1:before {
  content: "\e921";
}
.icon-quote:before {
  content: "\e922";
}
.icon-back:before {
  content: "\e923";
}
.icon-home:before {
  content: "\e924";
}
.icon-idea:before {
  content: "\e925";
}
.icon-next:before {
  content: "\e926";
}
.icon-architecture-and-city:before {
  content: "\e927";
}
.icon-login:before {
  content: "\e928";
}
.icon-next1:before {
  content: "\e929";
}
.icon-wire:before {
  content: "\e92a";
}
.icon-help:before {
  content: "\e92b";
}
.icon-repair:before {
  content: "\e92c";
}
.icon-shop:before {
  content: "\e92d";
}
.icon-worker:before {
  content: "\e92e";
}
.icon-clock2:before {
  content: "\e92f";
}
.icon-factory:before {
  content: "\e930";
}
.icon-hexagon:before {
  content: "\e931";
}
.icon-thunder:before {
  content: "\e932";
}
.icon-add:before {
  content: "\e933";
}
.icon-builder:before {
  content: "\e934";
}
.icon-electrician-1 .path1:before {
  content: "\e935";
  color: #ec6b15;
}
.icon-electrician-1 .path2:before {
  content: "\e936";
  margin-left: -1em;
  color: rgb(234, 198, 187);
}
.icon-electrician-1 .path3:before {
  content: "\e937";
  margin-left: -1em;
  color: #ffffff;
}
.icon-electrician-1 .path4:before {
  content: "\e938";
  margin-left: -1em;
  color: #ec6b15;
}
.icon-electrician-1 .path5:before {
  content: "\e939";
  margin-left: -1em;
  color: #ffffff;
}
.icon-electrician-1 .path6:before {
  content: "\e93a";
  margin-left: -1em;
  color: #ffffff;
}
.icon-electrician-1 .path7:before {
  content: "\e93b";
  margin-left: -1em;
  color: #ffffff;
}
.icon-electrician-1 .path8:before {
  content: "\e93c";
  margin-left: -1em;
  color: rgb(8, 8, 8);
}
.icon-electrician-1 .path9:before {
  content: "\e93d";
  margin-left: -1em;
  color: rgb(8, 8, 8);
}
.icon-electrician-1 .path10:before {
  content: "\e93e";
  margin-left: -1em;
  color: rgb(8, 8, 8);
}
.icon-electrician-1 .path11:before {
  content: "\e93f";
  margin-left: -1em;
  color: rgb(8, 8, 8);
}
.icon-mail2:before {
  content: "\e940";
}
.icon-award:before {
  content: "\e941";
}
.icon-facebook .path1:before {
  content: "\e942";
  color: rgb(59, 89, 152);
}
.icon-facebook .path2:before {
  content: "\e943";
  margin-left: -1em;
  color: rgb(255, 255, 255);
}
.icon-pipe:before {
  content: "\e944";
}
.icon-plug .path1:before {
  content: "\e945";
  color: #ec6b15;
}
.icon-plug .path2:before {
  content: "\e946";
  margin-left: -1em;
  color: rgb(170, 178, 189);
}
.icon-plug .path3:before {
  content: "\e947";
  margin-left: -1em;
  color: rgb(150, 159, 170);
}
.icon-plug .path4:before {
  content: "\e948";
  margin-left: -1em;
  color: #ffffff;
}
.icon-plug .path5:before {
  content: "\e949";
  margin-left: -1em;
  color: #ffffff;
}
.icon-plug .path6:before {
  content: "\e94a";
  margin-left: -1em;
  color: #ec6b15;
}
.icon-plug .path7:before {
  content: "\e94b";
  margin-left: -1em;
  color: rgb(230, 233, 237);
}
.icon-plug .path8:before {
  content: "\e94c";
  margin-left: -1em;
  color: rgb(150, 159, 170);
}
.icon-plug .path9:before {
  content: "\e94d";
  margin-left: -1em;
  color: rgb(0, 0, 0);
}
.icon-plug .path10:before {
  content: "\e94e";
  margin-left: -1em;
  color: rgb(0, 0, 0);
}
.icon-plug .path11:before {
  content: "\e94f";
  margin-left: -1em;
  color: rgb(0, 0, 0);
}
.icon-plug .path12:before {
  content: "\e950";
  margin-left: -1em;
  color: rgb(0, 0, 0);
}
.icon-plug .path13:before {
  content: "\e951";
  margin-left: -1em;
  color: rgb(0, 0, 0);
}
.icon-plug .path14:before {
  content: "\e952";
  margin-left: -1em;
  color: rgb(0, 0, 0);
}
.icon-plug .path15:before {
  content: "\e953";
  margin-left: -1em;
  color: rgb(0, 0, 0);
}
.icon-plug .path16:before {
  content: "\e954";
  margin-left: -1em;
  color: rgb(0, 0, 0);
}
.icon-plug .path17:before {
  content: "\e955";
  margin-left: -1em;
  color: rgb(0, 0, 0);
}
.icon-plug .path18:before {
  content: "\e956";
  margin-left: -1em;
  color: rgb(0, 0, 0);
}
.icon-faucet:before {
  content: "\e957";
}
.icon-house:before {
  content: "\e958";
}
.icon-price .path1:before {
  content: "\e959";
  color: rgb(115, 215, 249);
}
.icon-price .path2:before {
  content: "\e95a";
  margin-left: -1em;
  color: rgb(95, 205, 255);
}
.icon-price .path3:before {
  content: "\e95b";
  margin-left: -1em;
  color: rgb(53, 177, 252);
}
.icon-price .path4:before {
  content: "\e95c";
  margin-left: -1em;
  color: rgb(49, 147, 243);
}
.icon-price .path5:before {
  content: "\e95d";
  margin-left: -1em;
  color: rgb(48, 182, 255);
}
.icon-price .path6:before {
  content: "\e95e";
  margin-left: -1em;
  color: rgb(249, 226, 125);
}
.icon-price .path7:before {
  content: "\e95f";
  margin-left: -1em;
  color: rgb(249, 211, 53);
}
.icon-price .path8:before {
  content: "\e960";
  margin-left: -1em;
  color: rgb(242, 195, 0);
}
.icon-price .path9:before {
  content: "\e961";
  margin-left: -1em;
  color: rgb(48, 127, 237);
}
.icon-price .path10:before {
  content: "\e962";
  margin-left: -1em;
  color: rgb(95, 38, 109);
}
.icon-price .path11:before {
  content: "\e963";
  margin-left: -1em;
  color: rgb(95, 38, 109);
}
.icon-price .path12:before {
  content: "\e964";
  margin-left: -1em;
  color: rgb(95, 38, 109);
}
.icon-price .path13:before {
  content: "\e965";
  margin-left: -1em;
  color: rgb(95, 38, 109);
}
.icon-price .path14:before {
  content: "\e966";
  margin-left: -1em;
  color: rgb(95, 38, 109);
}
.icon-price .path15:before {
  content: "\e967";
  margin-left: -1em;
  color: rgb(95, 38, 109);
}
.icon-price .path16:before {
  content: "\e968";
  margin-left: -1em;
  color: rgb(95, 38, 109);
}
.icon-twitter .path1:before {
  content: "\e969";
  color: rgb(85, 172, 238);
}
.icon-twitter .path2:before {
  content: "\e96a";
  margin-left: -1em;
  color: rgb(241, 242, 242);
}
.icon-kitchen:before {
  content: "\e96b";
}
.icon-multimedia:before {
  content: "\e96c";
}
.icon-wire-1:before {
  content: "\e96d";
}
.icon-youtube .path1:before {
  content: "\e96e";
  color: rgb(210, 34, 21);
}
.icon-youtube .path2:before {
  content: "\e96f";
  margin-left: -1em;
  color: rgb(168, 20, 17);
}
.icon-youtube .path3:before {
  content: "\e970";
  margin-left: -1em;
  color: rgb(255, 255, 255);
}
.icon-youtube .path4:before {
  content: "\e971";
  margin-left: -1em;
  color: rgb(209, 209, 209);
}
.icon-cart:before {
  content: "\e972";
}
.icon-chain:before {
  content: "\e973";
}
.icon-electrician-2:before {
  content: "\e974";
}
.icon-plumber:before {
  content: "\e975";
}
.icon-award1:before {
  content: "\e976";
}
.icon-dynamo:before {
  content: "\e977";
}
.icon-next-1:before {
  content: "\e978";
}
.icon-search:before {
  content: "\e979";
}
.icon-arrow:before {
  content: "\e97a";
}
.icon-labor:before {
  content: "\e97b";
}
.icon-next2:before {
  content: "\e97c";
}
.icon-price1 .path1:before {
  content: "\e97d";
  color: rgb(115, 215, 249);
}
.icon-price1 .path2:before {
  content: "\e97e";
  margin-left: -1em;
  color: rgb(95, 205, 255);
}
.icon-price1 .path3:before {
  content: "\e97f";
  margin-left: -1em;
  color: rgb(53, 177, 252);
}
.icon-price1 .path4:before {
  content: "\e980";
  margin-left: -1em;
  color: rgb(49, 147, 243);
}
.icon-price1 .path5:before {
  content: "\e981";
  margin-left: -1em;
  color: rgb(48, 182, 255);
}
.icon-price1 .path6:before {
  content: "\e982";
  margin-left: -1em;
  color: rgb(249, 226, 125);
}
.icon-price1 .path7:before {
  content: "\e983";
  margin-left: -1em;
  color: rgb(249, 211, 53);
}
.icon-price1 .path8:before {
  content: "\e984";
  margin-left: -1em;
  color: rgb(242, 195, 0);
}
.icon-price1 .path9:before {
  content: "\e985";
  margin-left: -1em;
  color: rgb(48, 127, 237);
}
.icon-price1 .path10:before {
  content: "\e986";
  margin-left: -1em;
  color: rgb(95, 38, 109);
}
.icon-price1 .path11:before {
  content: "\e987";
  margin-left: -1em;
  color: rgb(95, 38, 109);
}
.icon-price1 .path12:before {
  content: "\e988";
  margin-left: -1em;
  color: rgb(95, 38, 109);
}
.icon-price1 .path13:before {
  content: "\e989";
  margin-left: -1em;
  color: rgb(95, 38, 109);
}
.icon-price1 .path14:before {
  content: "\e98a";
  margin-left: -1em;
  color: rgb(95, 38, 109);
}
.icon-price1 .path15:before {
  content: "\e98b";
  margin-left: -1em;
  color: rgb(95, 38, 109);
}
.icon-price1 .path16:before {
  content: "\e98c";
  margin-left: -1em;
  color: rgb(95, 38, 109);
}
.icon-cost:before {
  content: "\e98d";
}
.icon-hr:before {
  content: "\e98e";
}
.icon-plumber-1:before {
  content: "\e98f";
}
.icon-tick:before {
  content: "\e990";
}
.icon-diy:before {
  content: "\e991";
}
.icon-multimedia1:before {
  content: "\e992";
}
.icon-pipe-1:before {
  content: "\e993";
}
.icon-plug-1:before {
  content: "\e994";
}
.icon-chain1:before {
  content: "\e995";
}
.icon-cupboard:before {
  content: "\e996";
}
.icon-saw1:before {
  content: "\e997";
}
.icon-supermarket:before {
  content: "\e998";
}
.icon-architecture-and-city1:before {
  content: "\e999";
}
.icon-pipe1:before {
  content: "\e99a";
}
.icon-quote1:before {
  content: "\e99b";
}
.icon-search1:before {
  content: "\e99c";
}
.icon-cost1:before {
  content: "\e99d";
}
.icon-medal1:before {
  content: "\e99e";
}
.icon-plug1:before {
  content: "\e99f";
}
.icon-tick1:before {
  content: "\e9a0";
}
.icon-arrow1:before {
  content: "\e9a1";
}
.icon-chat-bubble:before {
  content: "\e9a2";
}
.icon-pipe-2:before {
  content: "\e9a3";
}
.icon-search-1:before {
  content: "\e9a4";
}
.icon-design:before {
  content: "\e9a5";
}
.icon-professions-and-jobs:before {
  content: "\e9a6";
}
.icon-quote2:before {
  content: "\e9a7";
}
.icon-builder1:before {
  content: "\e9a8";
}
.icon-plane:before {
  content: "\e9a9";
}
.icon-star:before {
  content: "\e9aa";
}
.icon-map:before {
  content: "\e9ab";
}
.icon-question:before {
  content: "\e9ac";
}
.icon-star-1:before {
  content: "\e9ad";
}
.icon-chat-bubble1:before {
  content: "\e9ae";
}
.icon-page:before {
  content: "\e9af";
}
.icon-review1:before {
  content: "\e9b0";
}
.icon-chain2:before {
  content: "\e9b1";
}
.icon-quote3:before {
  content: "\e9b2";
}
.icon-user:before {
  content: "\e9b3";
}
.icon-blog:before {
  content: "\e9b4";
}
.icon-maps-and-location1:before {
  content: "\e9b5";
}
.icon-search2:before {
  content: "\e9b6";
}
.icon-fast1:before {
  content: "\e9b7";
}
.icon-support .path1:before {
  content: "\e9b8";
  color: rgb(249, 186, 72);
}
.icon-support .path2:before {
  content: "\e9b9";
  margin-left: -1em;
  color: #ffffff;
}
.icon-link:before {
  content: "\e9ba" !important;
}
.icon-quote-1:before {
  content: "\e9bb";
}
.icon-link1:before {
  content: "\e9bc";
}
.icon-pipe-11:before {
  content: "\e9bd";
}
.icon-planer:before {
  content: "\e9be";
}
.icon-wall:before {
  content: "\e9bf";
}
.icon-cost2:before {
  content: "\e9c0";
}
.icon-user1:before {
  content: "\e9c1";
}
.icon-24-hours:before {
  content: "\e9c2";
}
.icon-plane1:before {
  content: "\e9c3";
}
.icon-null:before {
  content: "\e9c4";
}
.icon-vision:before {
  content: "\e9c5";
}
.icon-worker1 .path1:before {
  content: "\e9c6";
  color: rgb(255, 198, 108);
}
.icon-worker1 .path2:before {
  content: "\e9c7";
  margin-left: -1em;
  color: rgb(255, 255, 255);
}
.icon-worker1 .path3:before {
  content: "\e9c8";
  margin-left: -1em;
  color: rgb(254, 218, 155);
}
.icon-worker1 .path4:before {
  content: "\e9c9";
  margin-left: -1em;
  color: rgb(255, 198, 108);
}
.icon-worker1 .path5:before {
  content: "\e9ca";
  margin-left: -1em;
  color: rgb(255, 185, 84);
}
.icon-worker1 .path6:before {
  content: "\e9cb";
  margin-left: -1em;
  color: rgb(201, 243, 255);
}
.icon-worker1 .path7:before {
  content: "\e9cc";
  margin-left: -1em;
  color: rgb(254, 218, 155);
}
.icon-worker1 .path8:before {
  content: "\e9cd";
  margin-left: -1em;
  color: rgb(254, 218, 155);
}
.icon-worker1 .path9:before {
  content: "\e9ce";
  margin-left: -1em;
  color: rgb(201, 243, 255);
}
.icon-worker1 .path10:before {
  content: "\e9cf";
  margin-left: -1em;
  color: rgb(0, 0, 0);
}
.icon-worker1 .path11:before {
  content: "\e9d0";
  margin-left: -1em;
  color: rgb(0, 0, 0);
}
.icon-worker1 .path12:before {
  content: "\e9d1";
  margin-left: -1em;
  color: rgb(0, 0, 0);
}
.icon-worker1 .path13:before {
  content: "\e9d2";
  margin-left: -1em;
  color: rgb(0, 0, 0);
}
.icon-money-back .path1:before {
  content: "\e9d3";
  color: rgb(249, 186, 72);
}
.icon-money-back .path2:before {
  content: "\e9d4";
  margin-left: -1em;
  color: rgb(51, 51, 51);
}
.icon-money-back .path3:before {
  content: "\e9d5";
  margin-left: -1em;
  color: rgb(51, 51, 51);
}
.icon-price2 .path1:before {
  content: "\e9d6";
  color: #131313;
}
.icon-price2 .path2:before {
  content: "\e9d7";
  margin-left: -1em;
  color: #ffffff;
}
.icon-price2 .path3:before {
  content: "\e9d8";
  margin-left: -1em;
  color: #131313;
}
.icon-price2 .path4:before {
  content: "\e9d9";
  margin-left: -1em;
  color: #ffffff;
}
.icon-price2 .path5:before {
  content: "\e9da";
  margin-left: -1em;
  color: #131313;
}
.icon-price2 .path6:before {
  content: "\e9db";
  margin-left: -1em;
  color: rgb(249, 226, 125);
}
.icon-price2 .path7:before {
  content: "\e9dc";
  margin-left: -1em;
  color: rgb(249, 211, 53);
}
.icon-price2 .path8:before {
  content: "\e9dd";
  margin-left: -1em;
  color: rgb(242, 195, 0);
}
.icon-price2 .path9:before {
  content: "\e9de";
  margin-left: -1em;
  color: #131313;
}
.icon-price2 .path10:before {
  content: "\e9df";
  margin-left: -1em;
  color: #131313;
}
.icon-price2 .path11:before {
  content: "\e9e0";
  margin-left: -1em;
  color: #131313;
}
.icon-price2 .path12:before {
  content: "\e9e1";
  margin-left: -1em;
  color: #131313;
}
.icon-price2 .path13:before {
  content: "\e9e2";
  margin-left: -1em;
  color: #131313;
}
.icon-price2 .path14:before {
  content: "\e9e3";
  margin-left: -1em;
  color: #131313;
}
.icon-price2 .path15:before {
  content: "\e9e4";
  margin-left: -1em;
  color: rgb(95, 38, 109);
}
.icon-price2 .path16:before {
  content: "\e9e5";
  margin-left: -1em;
  color: rgb(95, 38, 109);
}
.icon-contract .path1:before {
  content: "\e9e6";
  color: rgb(240, 188, 94);
}
.icon-contract .path2:before {
  content: "\e9e7";
  margin-left: -1em;
  color: rgb(0, 0, 0);
}
.icon-contract .path3:before {
  content: "\e9e8";
  margin-left: -1em;
  color: rgb(0, 0, 0);
}
.icon-contract .path4:before {
  content: "\e9e9";
  margin-left: -1em;
  color: rgb(0, 0, 0);
}
.icon-contract .path5:before {
  content: "\e9ea";
  margin-left: -1em;
  color: rgb(0, 0, 0);
}
.icon-contract .path6:before {
  content: "\e9eb";
  margin-left: -1em;
  color: rgb(0, 0, 0);
}
.icon-contract .path7:before {
  content: "\e9ec";
  margin-left: -1em;
  color: rgb(0, 0, 0);
}
.icon-contract .path8:before {
  content: "\e9ed";
  margin-left: -1em;
  color: rgb(0, 0, 0);
}
.icon-contract .path9:before {
  content: "\e9ee";
  margin-left: -1em;
  color: rgb(0, 0, 0);
}
.icon-contract .path10:before {
  content: "\e9ef";
  margin-left: -1em;
  color: rgb(0, 0, 0);
}
.icon-contract .path11:before {
  content: "\e9f0";
  margin-left: -1em;
  color: rgb(0, 0, 0);
}
.icon-contract .path12:before {
  content: "\e9f1";
  margin-left: -1em;
  color: rgb(0, 0, 0);
}
.icon-contract .path13:before {
  content: "\e9f2";
  margin-left: -1em;
  color: rgb(0, 0, 0);
}
.icon-contract .path14:before {
  content: "\e9f3";
  margin-left: -1em;
  color: rgb(0, 0, 0);
}
.icon-contract .path15:before {
  content: "\e9f4";
  margin-left: -1em;
  color: rgb(0, 0, 0);
}
.icon-contract .path16:before {
  content: "\e9f5";
  margin-left: -1em;
  color: rgb(240, 188, 94);
}
.icon-contract .path17:before {
  content: "\e9f6";
  margin-left: -1em;
  color: rgb(0, 0, 0);
}
.icon-contract .path18:before {
  content: "\e9f7";
  margin-left: -1em;
  color: rgb(0, 0, 0);
}
.icon-contract .path19:before {
  content: "\e9f8";
  margin-left: -1em;
  color: rgb(0, 0, 0);
}
.icon-call .path1:before {
  content: "\e9f9";
  color: rgb(240, 188, 94);
}
.icon-call .path2:before {
  content: "\e9fa";
  margin-left: -1em;
  color: rgb(240, 188, 94);
}
.icon-call .path3:before {
  content: "\e9fb";
  margin-left: -1em;
  color: rgb(240, 188, 94);
}
.icon-call .path4:before {
  content: "\e9fc";
  margin-left: -1em;
  color: rgb(2, 2, 2);
}
.icon-call .path5:before {
  content: "\e9fd";
  margin-left: -1em;
  color: rgb(2, 2, 2);
}
.icon-call .path6:before {
  content: "\e9fe";
  margin-left: -1em;
  color: rgb(2, 2, 2);
}
.icon-call .path7:before {
  content: "\e9ff";
  margin-left: -1em;
  color: rgb(2, 2, 2);
}
.icon-help-1 .path1:before {
  content: "\ea00";
  color: rgb(255, 152, 17);
}
.icon-help-1 .path2:before {
  content: "\ea01";
  margin-left: -1em;
  color: rgb(238, 135, 0);
}
.icon-help-1 .path3:before {
  content: "\ea02";
  margin-left: -1em;
  color: rgb(255, 212, 34);
}
.icon-help-1 .path4:before {
  content: "\ea03";
  margin-left: -1em;
  color: rgb(235, 191, 0);
}
.icon-help-1 .path5:before {
  content: "\ea04";
  margin-left: -1em;
  color: rgb(0, 0, 0);
}
.icon-help-1 .path6:before {
  content: "\ea05";
  margin-left: -1em;
  color: rgb(0, 0, 0);
}
.icon-help-1 .path7:before {
  content: "\ea06";
  margin-left: -1em;
  color: rgb(0, 0, 0);
}
.icon-help-1 .path8:before {
  content: "\ea07";
  margin-left: -1em;
  color: rgb(0, 0, 0);
}
.icon-help-1 .path9:before {
  content: "\ea08";
  margin-left: -1em;
  color: rgb(0, 0, 0);
}
.icon-help-1 .path10:before {
  content: "\ea09";
  margin-left: -1em;
  color: rgb(0, 0, 0);
}
.icon-help-1 .path11:before {
  content: "\ea0a";
  margin-left: -1em;
  color: rgb(0, 0, 0);
}
.icon-help-1 .path12:before {
  content: "\ea0b";
  margin-left: -1em;
  color: rgb(0, 0, 0);
}
.icon-help-1 .path13:before {
  content: "\ea0c";
  margin-left: -1em;
  color: rgb(0, 0, 0);
}
.icon-help-1 .path14:before {
  content: "\ea0d";
  margin-left: -1em;
  color: rgb(0, 0, 0);
}
.icon-help-1 .path15:before {
  content: "\ea0e";
  margin-left: -1em;
  color: rgb(0, 0, 0);
}
.icon-help-1 .path16:before {
  content: "\ea0f";
  margin-left: -1em;
  color: rgb(0, 0, 0);
}
.icon-question1:before {
  content: "\ea10";
}
.icon-question-1:before {
  content: "\ea11";
}
.icon-house1:before {
  content: "\ea12";
}
.icon-wire1:before {
  content: "\ea13";
}
.icon-electrician1:before {
  content: "\ea14";
}
.icon-dynamo1:before {
  content: "\ea15";
}
.icon-chat-bubble2:before {
  content: "\ea16";
}
.icon-repair1:before {
  content: "\ea17";
}
.icon-pdf:before {
  content: "\ea18";
}
.icon-pipe-21:before {
  content: "\ea19";
}
.icon-hoover:before {
  content: "\ea1a";
}
.icon-pipe-3:before {
  content: "\ea1b";
}
.icon-repair-1:before {
  content: "\ea1c";
}
.icon-cart-1:before {
  content: "\ea1d";
}
.icon-heart:before {
  content: "\ea1e" !important;
}
.icon-refresh:before {
  content: "\ea1f";
}
.icon-star1:before {
  content: "\ea20";
}
.icon-cross:before {
  content: "\ea21";
}
.icon-page1:before {
  content: "\ea22";
}
.icon-maps-and-location2:before {
  content: "\ea23";
}
.icon-ruler:before {
  content: "\ea24";
}
.icon-calendar:before {
  content: "\ea25";
}
.icon-price-1:before {
  content: "\ea26";
}
.icon-heart-1:before {
  content: "\ea27";
}
.icon-comment:before {
  content: "\ea28";
}
.icon-reload:before {
  content: "\ea29";
}
.icon-clock-1 .path1:before {
  content: "\ea2a";
  color: rgb(255, 212, 34);
}
.icon-clock-1 .path2:before {
  content: "\ea2b";
  margin-left: -1em;
  color: rgb(235, 191, 0);
}
.icon-clock-1 .path3:before {
  content: "\ea2c";
  margin-left: -1em;
  color: #ffffff;
}
.icon-clock-1 .path4:before {
  content: "\ea2d";
  margin-left: -1em;
  color: #ffffff;
}
.icon-clock-1 .path5:before {
  content: "\ea2e";
  margin-left: -1em;
  color: #ffffff;
}
.icon-clock-1 .path6:before {
  content: "\ea2f";
  margin-left: -1em;
  color: #ffffff;
}
.icon-clock-1 .path7:before {
  content: "\ea30";
  margin-left: -1em;
  color: #ffffff;
}
.icon-clock-1 .path8:before {
  content: "\ea31";
  margin-left: -1em;
  color: #ffffff;
}
.icon-clock-1 .path9:before {
  content: "\ea32";
  margin-left: -1em;
  color: #ffffff;
}
.icon-clock-1 .path10:before {
  content: "\ea33";
  margin-left: -1em;
  color: #ffffff;
}
.icon-clock-1 .path11:before {
  content: "\ea34";
  margin-left: -1em;
  color: #ffffff;
}
.icon-clock-1 .path12:before {
  content: "\ea35";
  margin-left: -1em;
  color: #ffffff;
}
.icon-clock-1 .path13:before {
  content: "\ea36";
  margin-left: -1em;
  color: #ffffff;
}
.icon-clock-1 .path14:before {
  content: "\ea37";
  margin-left: -1em;
  color: #ffffff;
}
.icon-clock-1 .path15:before {
  content: "\ea38";
  margin-left: -1em;
  color: #fff;
}
.icon-clock-1 .path16:before {
  content: "\ea39";
  margin-left: -1em;
  color: #fff;
}
.icon-clock-1 .path17:before {
  content: "\ea3a";
  margin-left: -1em;
  color: #fff;
}
.icon-clock-1 .path18:before {
    content: "\ea3b";
    margin-left: -1em;
    color: #fff;
}
.icon-clock-1 .path19:before {
    content: "\ea3c";
    margin-left: -1em;
    color: #fff;
}
.icon-clock-1 .path20:before {
  content: "\ea3d";
  margin-left: -1em;
  color: #ffffff;
}
.icon-question-2 .path1:before {
  content: "\ea3e";
  color: rgb(240, 188, 94);
}
.icon-question-2 .path2:before {
  content: "\ea3f";
  margin-left: -1em;
  color: #ffffff;
}
.icon-question-2 .path3:before {
  content: "\ea40";
  margin-left: -1em;
  color: #ffffff;
}
.icon-question-2 .path4:before {
  content: "\ea41";
  margin-left: -1em;
  color: #ffffff;
}

/* Remove Chrome Input Field's Unwanted Yellow Background Color */
input:-webkit-autofill, 
input:-webkit-autofill:hover, 
input:-webkit-autofill:focus {
    -webkit-box-shadow: 0 0 0px 1000px white inset !important;
}
::-webkit-input-placeholder { / Chrome/Opera/Safari /
    color: #000 !important;
}
::-moz-placeholder { / Firefox 19+ /
    color: #000 !important;
}
::-ms-input-placeholder { / IE 10+ /
    color: #000 !important;
}
::-moz-placeholder { / Firefox 18- /
    color: #000 !important;
}
.tp-bannertimer{
    display: none !important;
}


.single-service-sidebar .sidebar-appoinment .appoinment-form .input-box input::-webkit-input-placeholder {
    color: #cccccc;
}
.single-service-sidebar .sidebar-appoinment .appoinment-form .input-box input:-moz-placeholder {
    color: #cccccc;
}
.single-service-sidebar .sidebar-appoinment .appoinment-form .input-box input::-moz-placeholder {
    color: #cccccc;
}
.single-service-sidebar .sidebar-appoinment .appoinment-form .input-box input:-ms-input-placeholder {
    color: #cccccc;
}
.consultation-area .consultation-form textarea::-webkit-input-placeholder {
    color: #bababa;
}
.consultation-area .consultation-form textarea:-moz-placeholder { /* Firefox 18- */
    color: #bababa;  
}
.consultation-area .consultation-form textarea::-moz-placeholder {  /* Firefox 19+ */
    color: #bababa;  
}
.consultation-area .consultation-form textarea:-ms-input-placeholder {
    color: #bababa;  
}


/* Jquery ui select css */
.ui-state-default {
    width: auto !important;
}
.ui-selectmenu-open .ui-widget-content {
    border: 1px solid #1d1d1d !important;
    background: #ffffff !important;
    color: #222222 !important;
    border-radius: 0 !important;
}
/* Jquery ui select hover bg css */
.ui-selectmenu-open .ui-widget-content .ui-state-focus {
    border: 1px solid #1d1d1d !important;
    background: #1d1d1d !important;
    font-weight: normal !important;
    color: #ffffff !important;
    font-size: 13px !important;
}
/* Jquery ui select hover some change css */
.ui-selectmenu-open .ui-menu .ui-menu-item {
    border: 1px solid transparent !important;
    position: relative !important;
    margin: 0;
    padding: 5px 15px !important;
    cursor: pointer !important;
    font-size: 13px !important;
    text-transform: none !important;
}
.ui-selectmenu-menu .ui-menu {
    padding-bottom: 0px !important;
}



/*** 
=============================================
    Consultation Area Style
=============================================
***/
/* Main field css css */
.consultation-form .ui-selectmenu-button {
    position: relative;
    display: block;
    background: #ffffff;
    width: 100% !important;
    border-radius: 5px !important;
    border: 1px solid #edf2f7;
    color: #83888d;
    font-size: 16px;
    font-weight: 400;
    text-transform: capitalize;
    height: 60px !important;
    font-family: 'Roboto', sans-serif;
}
.consultation-form .ui-selectmenu-button{
    border-radius: 5px !important;    
}                                                                                                                
.consultation-form .ui-selectmenu-button:focus{
    outline: none;
}
.consultation-form .ui-selectmenu-button span.ui-selectmenu-text {
    display: block;
    line-height: 18px;
    overflow: hidden;
    text-align: left;
    padding: 21px 20px 19px;
}
/* arrow button css */
.consultation-form .ui-selectmenu-button span.ui-icon {
    display: block;
    float: right;
    height: 58px;
    position: absolute;
    text-indent: 0;
    top: 0px;
    width: 45px;
    right: 0;
    bottom: 0;
    background-image: none;
    margin: 0;
}
.consultation-form .ui-selectmenu-button span.ui-icon::before {
    position: absolute;
    top: 16px;
    right: 18px;
    color: #83888d;
    font-size: 18px;
    content: "\f107";
    font-family: FontAwesome;
    overflow: visible;
}



/*** 
=============================================
    Contact Info Area style
=============================================
***/
/* Main field css css */
.contact-form form .input-box .ui-selectmenu-button {
    position: relative;
    display: block;
    background: #ffffff;
    width: 100% !important;
    height: 60px !important;
    border-radius: 0px !important;
    border: 1px solid #ededed;
    color: #828282;
    font-size: 15px;
    font-weight: 400;
    padding-left: 50px;
    padding-right: 20px;
    margin-bottom: 30px;
    text-transform: capitalize;
    font-family: 'Rubik', sans-serif;
}                                                                                                               
.contact-form form .input-box .ui-selectmenu-button:focus{
    outline: none;
}
.contact-form form .input-box .ui-selectmenu-button span.ui-selectmenu-text {
    display: block;
    line-height: 14px;
    overflow: hidden;
    text-align: left;
    padding: 23px 0px 21px;
}
/* arrow button css */
.contact-form form .input-box .ui-selectmenu-button span.ui-icon {
    position: absolute;
    top: 0px;
    right: 0;
    bottom: 0;
    display: block;
    float: right;
    height: 58px;
    width: 45px;
    text-indent: 0;
    background-image: none;
    margin: 0;
}
.contact-form form .input-box .ui-selectmenu-button span.ui-icon::before {
    color: #828282;
    content: "\f107";
    font-family: FontAwesome;
    font-size: 20px;
    overflow: visible;
    position: absolute;
    right: 18px;
    top: 16px;
}
.contact-info-area .contact-form textarea:-webkit-input-placeholder {
    color: #83888d !important;
}
.contact-info-area .contact-form textarea:-moz-placeholder { /* Firefox 18- */
    color: #83888d !important;
}
.contact-info-area .contact-form textarea:-moz-placeholder {  /* Firefox 19+ */
    color: #83888d !important;  
}
.contact-info-area .contact-form textarea:-ms-input-placeholder {
    color: #83888d !important;  
}



/*** 
=============================================
    Single Sidebar style
=============================================
***/
/* Main field css css */
.single-sidebar .archives-form-box{
    position: relative;
    display: block;
    padding: 19px 0 40px;
}
.single-sidebar .archives-form-box form .input-box .ui-selectmenu-button {
    position: relative;
    display: block;
    background: transparent;
    width: 100% !important;
    border-radius: 0px !important;
    border: 1px solid #ededed;
    color: #828282;
    font-size: 15px;
    font-weight: 400;
    text-transform: capitalize;
    height: 50px !important;
    font-family: 'Rubik', sans-serif;
}                                                                                                               
.single-sidebar .archives-form-box form .input-box .ui-selectmenu-button:focus{
    outline: none;
}
.single-sidebar .archives-form-box form .input-box .ui-selectmenu-button span.ui-selectmenu-text {
    display: block;
    line-height: 14px;
    overflow: hidden;
    text-align: left;
    padding: 17px 15px 17px;
}

/* arrow button css */
.single-sidebar .archives-form-box form .input-box .ui-selectmenu-button span.ui-icon {
    display: block;
    float: right;
    height: 50px;
    position: absolute;
    text-indent: 0;
    top: 7px;
    width: 40px;
    right: 0;
    bottom: 0;
    background-image: none;
}
.single-sidebar .archives-form-box form .input-box .ui-selectmenu-button span.ui-icon::before {
    color: #cccccc;
    content: "\f107";
    font-family: FontAwesome;
    font-size: 20px;
    overflow: visible;
    position: absolute;
    right: 14px;
    top: 12px;
}


























#contact-form input[type="text"].error{
    border-color: red;
}
#contact-form input[type="email"].error{
    border-color: red;
}
#contact-form select.error {
    border-color: red;
}
#contact-form textarea.error{
    border-color: red;
}
#contact-form label.error {
    display: none !important;
}


#add-comment-form input[type="text"].error{
    border-color: red;    
}
#add-comment-form input[type="email"].error{
    border-color: red;    
}
#add-comment-form select.error {
    border-color: red;
}
#add-comment-form textarea.error{
    border-color: red;    
}
#add-comment-form label.error {
    display: none !important;
}


#appoinment-form input[type="text"].error{
    border-color: red;    
}
#appoinment-form input[type="email"].error{
    border-color: red;    
}
#appoinment-form select.error {
    border-color: red;
}
#appoinment-form textarea.error{
    border-color: red;    
}
#appoinment-form label.error {
    display: none !important;
}


/*__Html 5 lightbox css__*/
#html5-watermark {
    background: #ff2b58;
    display: none !important;
    z-index: 9999999999;
}
#html5box-html5-lightbox #html5-image {
    border: 10px solid #131313;
    padding: 0 !important;
}
#html5box-html5-lightbox #html5-text{
    padding-top: 15px;
    padding-bottom: 5px;
}



/*** 
=============================================
    Brand Area Css
=============================================
***/
.single-brand-item a img {
    width: auto !important;
    margin: 0 auto;
}



/*** 
=============================================
    Rev Slider Wrapper style
=============================================
***/
.tparrows {
    position: absolute !important;
    left: 0px !important;
    top: 50% !important;
    background: rgba(0, 0, 0,.20) !important;
    width: 40px !important;
    height: 100px !important;
    display: block !important;
    z-index: 1000 !important;
    border-radius: 0;
    font-size: 30px;
    cursor: pointer !important;
    transition: all 500ms ease;
}
.tparrows:before {
    width: 40px !important;
    height: 100px !important;
    font-size: 20px !important;
    color: #ffffff !important;
    display: block !important;
    line-height: 100px !important;
    text-align: center !important;
}
.tparrows:hover{
    background: rgba(0, 0, 0, .30) !important;  
    color: #000;
}
.tp-rightarrow{
    left: 100% !important;
    margin-right: 0px;
}



/*** 
=============================================
    Cart Area style
=============================================
***/
.cart-area .cart-table tbody tr .qty .form-control {
    background-color: #ffffff;
    background-image: none;
    border: 1px solid #f6f6f6;
    border-radius: 0 !important;
    box-shadow: none;
    color: #131313;
    display: block;
    font-size: 18px;
    font-weight: 500;
    height: 50px;
    padding: 5px 0;
    text-align: center;
    font-family: 'Poppins', sans-serif;
}
.cart-bottom .calculate-shipping .ui-state-default {
    width: 100% !important;
}



/*** 
=============================================
    Single shop Area style
=============================================
***/
.single-shop-content .content-box .addto-cart-box .form-control {
    background-color: #fff;
    background-image: none;
    border: 1px solid #ededed;
    border-radius: 0 !important;
    box-shadow: none;
    color: #131313;
    font-size: 18px;
    font-weight: 600;
    height: 50px;
    padding: 7px 0 8px;
    text-align: center;
    font-family: 'Poppins', sans-serif;
}


/*** 
=============================================
    Shop area style
=============================================
***/
/* Main field css css */
#shop-area .showing-result-shorting .ui-selectmenu-button {
    position: relative;
    display: block;
    background: #fff !important;
    width: 200px !important;
    height: 40px !important;
    border-radius: 0px !important;
    border: 1px solid #ededed !important;
    color: #828282 !important;
    font-size: 16px !important;
    font-weight: 400;
    text-transform: capitalize;
    transition: all 500ms ease;
    font-family: 'Nunito Sans', sans-serif;
}
#shop-area .showing-result-shorting .ui-selectmenu-button:focus{
    outline: none;
}
#shop-area .showing-result-shorting .ui-selectmenu-button span.ui-selectmenu-text {
    display: block;
    line-height: 18px;
    overflow: hidden;
    text-align: left;
    padding: 10px 15px 10px;
    transition: all 500ms ease;
}
/* arrow button css */
#shop-area .showing-result-shorting .ui-selectmenu-button span.ui-icon {
    position: absolute;
    top: 0px;
    right: 0;
    bottom: 0;
    display: block;
    float: right;
    height: 38px;
    width: 40px;
    text-indent: 0;
    background-image: none;
    margin: 0;
}
#shop-area .showing-result-shorting .ui-selectmenu-button span.ui-icon::before {
    color: #848484;
    content: "\f107";
    font-family: FontAwesome;
    font-size: 17px;
    overflow: visible;
    position: absolute;
    right: 13px;
    top: 5px;
}








.market-update-area .btcwdgt {
    display: block !important;
    background-color: #202020 !important;
    color: #aaa !important;
    width: auto !important;
    min-width: 240px !important;
    max-width: 770px !important;
    margin: 0px !important;
    box-shadow: none !important;
    font-size: 16px !important;
    font-family: 'museo-sans-rounded', Helvetica, Arial, sans-serif !important;
    font-weight: 300 !important;
    line-height: 1.0em !important;
    border: 1px solid #2a2a2a !important;
}
.market-update-area .btcwdgt-chart .btcwdgt-header{
    display: none !important;
}
.market-update-area .btcwdgt-chart .btcwdgt-footer{
    display: none !important;
}

.bootstrap-touchspin .input-group-btn-vertical {
  position: relative;
  white-space: nowrap;
  width: 1%;
  vertical-align: middle;
  display: table-cell;
}

.bootstrap-touchspin .input-group-btn-vertical > .btn {
  display: block;
  float: none;
  width: 100%;
  max-width: 100%;
  padding: 8px 10px;
  margin-left: -1px;
  position: relative;
}

.bootstrap-touchspin .input-group-btn-vertical .bootstrap-touchspin-up {
  border-radius: 0;
  border-top-right-radius: 4px;
}

.bootstrap-touchspin .input-group-btn-vertical .bootstrap-touchspin-down {
  margin-top: -2px;
  border-radius: 0;
  border-bottom-right-radius: 4px;
}

.bootstrap-touchspin .input-group-btn-vertical i {
  position: absolute;
  top: 3px;
  left: 5px;
  font-size: 9px;
  font-weight: normal;
}

@charset "UTF-8";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:99999999999999;-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)}}
/**
 * Owl Carousel v2.2.1
 * Copyright 2013-2017 David Deutsch
 * Licensed under  ()
 */
/*
 *  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;
    -moz-backface-visibility: hidden;
    /* fix firefox animation glitch */ }
  .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-wrapper,
  .owl-carousel .owl-item {
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0); }
  .owl-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%; }
  .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 {
  animation-duration: 1000ms;
  animation-fill-mode: both; }

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

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

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

@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 {
  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(/wp-content/themes/electrical/css/owl.video.play.html) no-repeat;
  cursor: pointer;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  transition: transform 100ms ease; }

.owl-carousel .owl-video-play-icon:hover {
  -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%; }

/**
 * Owl Carousel v2.2.1
 * Copyright 2013-2017 David Deutsch
 * Licensed under  ()
 */
/*
 * 	Default theme - Owl Carousel CSS File
 */
.owl-theme .owl-nav {
  margin-top: 10px;
  text-align: center;
  -webkit-tap-highlight-color: transparent; }
  .owl-theme .owl-nav [class*='owl-'] {
    color: #FFF;
    font-size: 14px;
    margin: 5px;
    padding: 4px 7px;
    background: #D6D6D6;
    display: inline-block;
    cursor: pointer;
    border-radius: 3px; }
    .owl-theme .owl-nav [class*='owl-']:hover {
      background: #869791;
      color: #FFF;
      text-decoration: none; }
  .owl-theme .owl-nav .disabled {
    opacity: 0.5;
    cursor: default; }

.owl-theme .owl-nav.disabled + .owl-dots {
  margin-top: 10px; }

.owl-theme .owl-dots {
  text-align: center;
  -webkit-tap-highlight-color: transparent; }
  .owl-theme .owl-dots .owl-dot {
    display: inline-block;
    zoom: 1;
    *display: inline; }
    .owl-theme .owl-dots .owl-dot span {
      width: 10px;
      height: 10px;
      margin: 5px 7px;
      background: #D6D6D6;
      display: block;
      -webkit-backface-visibility: visible;
      transition: opacity 200ms ease;
      border-radius: 30px; }
    .owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
      background: #869791; }

.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(/wp-content/themes/electrical/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)}
/* 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;
}

	/*
  	Flaticon icon font: Flaticon
  	Creation date: 13/05/2019 04:02
  	*/

@font-face {
  font-family: "Flaticon";
  src: url(/wp-content/themes/electrical/css/../fonts/flaticon/Flaticon.eot);
  src: url("/wp-content/themes/electrical/css/../fonts/flaticon/Flaticond41d.eot?#iefix") format("embedded-opentype"),
       url(/wp-content/themes/electrical/css/../fonts/flaticon/Flaticon.woff2) format("woff2"),
       url(data:application/x-font-woff;base64,d09GRgABAAAAAAiAAA0AAAAADIgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAIZAAAABoAAAAch6FgmU9TLzIAAAGgAAAASQAAAGBP910bY21hcAAAAhAAAABHAAABSuIBFf9jdnQgAAACWAAAAAQAAAAEABEBRGdhc3AAAAhcAAAACAAAAAj//wADZ2x5ZgAAAoQAAAQ8AAAGWIU72GxoZWFkAAABMAAAAC8AAAA2Exx6D2hoZWEAAAFgAAAAHwAAACQD8wHFaG10eAAAAewAAAAjAAAALgSdACpsb2NhAAACXAAAACYAAAAmDHQKXm1heHAAAAGAAAAAHwAAACAAWQEibmFtZQAABsAAAADlAAABvPaK3Stwb3N0AAAHqAAAALQAAADwEthPGngBY2BkYADhTZ+SHeL5bb4ycDMxgMCNf3NOwOj/v//vZ2JlPAzkcjCApQGO9g73AHgBY2BkYGA8/H8/gx4Tw//fDAxMrEARVMAKAH+pBLsAeAFjYGRgYBBi+MjAygACTEDMCBZzYNADCQAAHQEBfAB4AWNgYXzNOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGAQYECEhzTWFoYFD4yMt44P8BBj3GwwyOIDVIShQYGAFExgu1AAAAeAFj2M0gyAACq4D4BAMDEwMYSP7/wwABzlBaBohFAYdbBMkAeAFjYGBghmIZBkYGEHAB8hjBfBYGDSDNBqQZGZgYFD7y/v/PwACkGf7///+YHyQKBYxsQAxjMwEJIEYBjCArhjcAANLfCPMAABEBRAAAACoAKgAqACoAPgCOAOIBCAEwAUQBUAF0AZwBtgHEAvADCgMsAAB4AX1TA5jsShOtSqe7k8kqu0lmvZvh9TCZq9X349m2bePDxYdn27Zt27ZtW5lXnblWUFNVOXX6TPoENLAB4AzcABhImHIDQmHmjVKHb8o3CP72zBuZRincwFSbq/aNUuDfM29E1a/YFTtfsdP24QftuCNuEF1lYwUAEKB+vwZ4P1gAWTftpoN0UAkqrgafFz//vPg6BbqAL4LzwIfxUAIAz5EoUrlqDcPBsuc6LZimKlkOq7mUcJ1+1MueowBeo+Xgjy0yKkqnReLzMtphy//0BwOF/+zbk8+H+fZ+qG/5n/9s+Z+NQlXi/S2OwlIk7H8KA8HAf7baJ1fL53vaB+yd/6Og++RruVwN6GDQVX8Tv8HLoAP6YAZALZULqmFFqZJJT4pUAQUjBaQkqOZkoISGM5AwZa8PK+V+dB0xkQLJfWbVXXZZddVdJhzV1MSb+VGlsaENNzx0gw1X31SaptzUbDE31Q29kY0SkMCj5aOaLM6PmoD/3/CQDTcYGtrwnxgXD+iSyzgFAKz/Ba6GuDc4AFn1dtL+PHm5EQy9VsRfuBA8KhxrGMxk50t5vtFqHPuUNOQx1GHnG8b5stU4prF3xMWJyyMuGhWpPJH46p8PY8XP58Ik/kMExGMYx0YFLhhn+MKxRPg40TDqHiN16h1jtMoVeuHnzp9/7nyaAl0KBzdpAM8AAxhCn57f3NkJoMF/6vfjPfgQtICtFDmSizRpCuxqmOyYjHg759G5TGeabBYcR6P7n9Sb9J811CV+LqUeZd95R+3lAh0SWiEJ0D7PRWFj/6qZefVTu6622q6rvXv33Ll3z41uffnUU18+FUdXU82r5qrmhaeqXqy3SHxrQ7NSpV45DdPbLifx10RHczTa3GG+n+g2dzS7Ozq6KU3EM6M0MwoagO2jBnUq6qAODr31+/BjfBCug/vgOXgPvgfIKBspB6VyQ5gv5Wg3nKRHizT2Ra0XVGvkvbw7HyVcQijvqUm5eCBIP5uB5XAI5zvUU80WVLP5tJqv1hYPys7K9LVQ4SlJKlPLcACVH4gsZogfZas54hG0kKcWCdwl62CJRly24IIaXzbJpXvrcgMrMUnXLcsjU7nWgGVZfXrWF3x7Lvys7rS5ifhw22xmNrcZmjsgTLmBsvhGYly31j1OuAsxzgS/l1trWrzXzyTt/5Ez91bIHTaLHjDlkDRXFHTJ4/RwwU/SyUzXbpggZc1cSWsjaRaJ60ty1jdlYu9G8fq9E6f0MZ6iDWq1rMWCZzQneL+3teKhD1d0+X7XsmC96XAwbGNSbLONkKwtHCylDPv/6iujIffyw7khTFOgCtUFWYDz00uFqUs9LqHhe3A1wN0ok2A1vq1sQLfv+hpEMP92p007burUx6YRHsElL35FXmynQjlH2a2Ayg9kviR+IsT7mtDepx/OcYTJLyWbjTi7kTAG8C+DzQ9MeAF9zjVaxGAQgOFvPcG15VkrV+YPTr/SojW27tZzGVpaWs7CFbgAkcEl+iajwBIPhECPsDqExaY6TIKCOkKWO3UUi0d1jBWe1XGsUIwIoagNAOoQK0TUYZbYUkeosqeOssK9OkaSJ3WcFV4AynS5YkqLGwb0ody9mrZuBq5OqNFg5ieM3c9aY9a9clH2E6f+e0yDGkkcCghJjkh+b6l/Ddvk2SWPg2A4hPKgPy0Pxo1a0ilI8ij5Ntql2c7v5h0xh/9ueEGNMRNaOkcQDAX/LSTdhNp40nIbipiCiCT/6/YKxaE9WQAAAHgBbUyFcQNBEPu1w8xQhGZ0ZpdzZLbv/yBUXSoLZ9jLIKlqVb/2+V49Vtvs6jvlG9WWlrRlR3ZlT/blQA7lSI7lRE7lTM73SQXt3BnZQe2j9Zusp/6A7OIthPX30IPRdnlM9qFjDM9Qh+TghwR1Sg6Rikk5apvPyRHqlX6FKTmHzT05hgsZ802aOw8NO4925Y+p+K/VOaRSf/P31MFKmxAPqLpY+035BvYw8y96GjZfp5s1LgAAAAH//wACeAFjYGBgZACCq0vUOUD0jX9zTsBoAErPCB4AAA==) format("woff"),
       url(/wp-content/themes/electrical/css/../fonts/flaticon/Flaticon.ttf) format("truetype"),
       url("/wp-content/themes/electrical/css/../fonts/flaticon/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("/wp-content/themes/electrical/css/../fonts/flaticon/Flaticon.svg#Flaticon") format("svg");
  }
}

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

.flaticon-add:before { content: "\f100"; }
.flaticon-percentage:before { content: "\f101"; }
.flaticon-zoom:before { content: "\f102"; }
.flaticon-back:before { content: "\f103"; }
.flaticon-arrow-1:before { content: "\f104"; }
.flaticon-add-1:before { content: "\f105"; }
.flaticon-substract:before { content: "\f106"; }
.flaticon-play-button:before { content: "\f107"; }
.flaticon-dot-inside-a-circle:before { content: "\f108"; }
.flaticon-arrow-2:before { content: "\f109"; }
.flaticon-arrow:before { content: "\f10a"; }
.flaticon-labor:before { content: "\f10b"; }
.flaticon-menu:before { content: "\f10c"; }
.flaticon-hexagon:before { content: "\f10d"; }
/*** Price filter***/
/*! nouislider - 8.0.2 - 2015-07-06 13:22:09 */


.noUi-target,.noUi-target *{-webkit-touch-callout:none;-webkit-user-select:none;-ms-touch-action:none;-ms-user-select:none;-moz-user-select:none;-moz-box-sizing:border-box;box-sizing:border-box}.noUi-target{position:relative;direction:ltr}.noUi-base{width:100%;height:100%;position:relative;z-index:1}.noUi-origin{position:absolute;right:0;top:0;left:0;bottom:0}.noUi-handle{position:relative;z-index:1}.noUi-stacking .noUi-handle{z-index:10}.noUi-state-tap .noUi-origin{-webkit-transition:left .3s,top .3s;transition:left .3s,top .3s}.noUi-state-drag *{cursor:inherit!important}.noUi-base{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}.noUi-horizontal{height:10px}.noUi-horizontal .noUi-handle{width:20px;height:20px;left:-17px;top:-6px}.noUi-vertical{width:18px}.noUi-vertical .noUi-handle{width:28px;height:34px;left:-6px;top:-17px}.noUi-background{background:#FAFAFA;box-shadow:inset 0 1px 1px #f0f0f0}.noUi-connect{background:#3FB8AF;box-shadow:inset 0 0 3px rgba(51,51,51,.45);-webkit-transition:background 450ms;transition:background 450ms}.noUi-origin{border-radius:2px}.noUi-target{border-radius:4px;border:1px solid #D3D3D3;box-shadow:inset 0 1px 1px #F0F0F0,0 3px 6px -5px #BBB}.noUi-target.noUi-connect{box-shadow:inset 0 0 3px rgba(51,51,51,.45),0 3px 6px -5px #BBB}.noUi-dragable{cursor:w-resize}.noUi-vertical .noUi-dragable{cursor:n-resize}.noUi-handle{border:1px solid #D9D9D9;border-radius:3px;background:#FFF;cursor:default;box-shadow:inset 0 0 1px #FFF,inset 0 1px 7px #EBEBEB,0 3px 6px -3px #BBB}.noUi-active{box-shadow:inset 0 0 1px #FFF,inset 0 1px 7px #DDD,0 3px 6px -3px #BBB}.noUi-handle:after,.noUi-handle:before{display:none;:"";display:block;position:absolute;height:14px;width:1px;background:#E8E7E6;left:14px;top:6px}.noUi-handle:after{left:17px}.noUi-vertical .noUi-handle:after,.noUi-vertical .noUi-handle:before{ width:14px;height:1px;left:6px;top:14px}.noUi-vertical .noUi-handle:after{top:17px}[disabled] .noUi-connect,[disabled].noUi-connect{background:#B8B8B8}[disabled] .noUi-handle,[disabled].noUi-origin{cursor:not-allowed}.noUi-pips,.noUi-pips *{-moz-box-sizing:border-box;box-sizing:border-box}.noUi-pips{position:absolute;font:400 12px Arial;color:#999}.noUi-value{width:40px;position:absolute;text-align:center}.noUi-value-sub{color:#ccc;font-size:10px}.noUi-marker{position:absolute;background:#CCC}.noUi-marker-large,.noUi-marker-sub{background:#AAA}.noUi-pips-horizontal{padding:10px 0;height:50px;top:100%;left:0;width:100%}.noUi-value-horizontal{margin-left:-20px;padding-top:20px}.noUi-value-horizontal.noUi-value-sub{padding-top:15px}.noUi-marker-horizontal.noUi-marker{margin-left:-1px;width:2px;height:5px}.noUi-marker-horizontal.noUi-marker-sub{height:10px}.noUi-marker-horizontal.noUi-marker-large{height:15px}.noUi-pips-vertical{padding:0 10px;height:100%;top:0;left:100%}.noUi-value-vertical{width:15px;margin-left:20px;margin-top:-5px}.noUi-marker-vertical.noUi-marker{width:5px;height:2px;margin-top:-1px}.noUi-marker-vertical.noUi-marker-sub{width:10px}.noUi-marker-vertical.noUi-marker-large{width:15px}

/* Base;
 *
 */
.noUi-pips,
.noUi-pips * {
-moz-box-sizing: border-box;
	box-sizing: border-box;
}
.noUi-pips {
	position: absolute;
	font: 400 12px Arial;
	color: #999;
}

/* Values;
 *
 */
.noUi-value {
	width: 40px;
	position: absolute;
	text-align: center;
}
.noUi-value-sub {
	color: #ccc;
	font-size: 10px;
}

/* Markings;
 *
 */
.noUi-marker {
	position: absolute;
	background: #CCC;
}
.noUi-marker-sub {
	background: #AAA;
}
.noUi-marker-large {
	background: #AAA;
}

/* Horizontal layout;
 *
 */
.noUi-pips-horizontal {
	padding: 10px 0;
	height: 50px;
	top: 100%;
	left: 0;
	width: 100%;
}
.noUi-value-horizontal {
	margin-left: -20px;
	padding-top: 20px;
}
.noUi-value-horizontal.noUi-value-sub {
	padding-top: 15px;
}

.noUi-marker-horizontal.noUi-marker {
	margin-left: -1px;
	width: 2px;
	height: 5px;
}
.noUi-marker-horizontal.noUi-marker-sub {
	height: 10px;
}
.noUi-marker-horizontal.noUi-marker-large {
	height: 15px;
}

/* Vertical layout;
 *
 */
.noUi-pips-vertical {
	padding: 0 10px;
	height: 100%;
	top: 0;
	left: 100%;
}
.noUi-value-vertical {
	width: 15px;
	margin-left: 20px;
	margin-top: -5px;
}

.noUi-marker-vertical.noUi-marker {
	width: 5px;
	height: 2px;
	margin-top: -1px;
}
.noUi-marker-vertical.noUi-marker-sub {
	width: 10px;
}
.noUi-marker-vertical.noUi-marker-large {
	width: 15px;
}

/*** Time picker css ***/
/**
 * FILE: jquery.ptTileSelect.css
 * 	Default style for the timeselect container.
 * 
 *  LAST UPDATED:
 * 
 * 		- $Date: 2009/04/12 20:23:02 $
 * 		- $Author: paulinho4u $
 * 		- $Revision: 1.1 $
 */


#ptTimeSelectCntr {
  display: none;
  font-size: 12px;
  margin-left: 0;
  position: absolute;
  width: 270px !important;
  z-index: 10;
}




#ptTimeSelectCntr .ui-widget-content {
  background: #fff none repeat scroll 0 0;
  border: medium none !important;
  border-radius: 0;
  margin-bottom: 0px;
  margin-top: 0 !important;
  padding: 5px;
}
#ptTimeSelectCntr .ui-widget.ui-widget-content {
  border: 1px solid #ddd !important;
}
#ptTimeSelectCntr .ui-widget{}
#ptTimeSelectCntr .ui-widget-header {
  background: #151515 none repeat scroll 0 0;
  border: 2px solid #252525;
  border-radius: 0;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  height: 40px;
  padding: 5px;
}
#ptTimeSelectCntr #ptTimeSelectUserTime {
  font-size: larger;
  line-height: 26px;
  padding: 0 10px;
  text-align: center;
}
#ptTimeSelectCntr .ui-widget-header .ui-icon {
  background-image: url(/wp-content/themes/electrical/css/../assets/timepicker/images/ui-icons_444444_256x240.html) !importent;
}




#ptTimeSelectCntr #ptTimeSelectCloseCntr {
  display: block;
  padding: 0;
}






#ptTimeSelectCntr .ui-widget.ui-widget-content {
	margin-top: 0;
}
#ptTimeSelectCntr .ptTimeSelectLeftPane.ui-widget-content {
	border-top:none;
	border-bottom:none;
	border-left:none;
	border-right-width: 2px;
}
#ptTimeSelectCntr .ptTimeSelectRightPane.ui-widget-content {
	border: none;
}




/*  content style and  hover style */
#ptTimeSelectCntr .ptTimeSelectHrCntr a, 
#ptTimeSelectCntr .ptTimeSelectMinCntr a {
  display: block;
  float: left;
  line-height: 32px;
  margin: 2px;
  padding: 0;
  text-align: center;
  text-decoration: none;
  transition: all 500ms ease;
}
#ptTimeSelectCntr .ptTimeSelectHrCntr a:hover, 
#ptTimeSelectCntr .ptTimeSelectMinCntr a:hover{
  background: #43c3ea !important;
  border-color: #43c3ea !important;
}



/*  Hour min text style */
#ptTimeSelectCntr .ptTimeSelectTimeLabelsCntr {
  color: #252525;
  font-size: 13px;
  font-weight: 700;
}


/*  Cloase button style */
#ptTimeSelectCntr #ptTimeSelectCloseCntr a {
  border-radius: 30%;
  display: block;
  height: 25px !important;
  line-height: 24px;
  margin: 0 !important;
  opacity: 1;
  padding: 0 !important;
  text-align: center;
  width: 25px !important;
  padding: 3px 4px !important;
}

/*  am pm content style, hover bg */
#ptTimeSelectCntr .ui-state-default {
  background: #fff !important;
  border: 1px solid #eaeaea !important;
  border-radius: 0;
  color: #252525 !important;
  font-size: 12px;
  font-weight: normal;
  height: 34px;
  margin-bottom: 5px;
  outline: medium none;
  text-align: center;
  width: 34px !important;
  line-height: 33px;
  margin: 2px;
  transition: all 500ms ease;
}
#ptTimeSelectCntr .ui-state-default:hover{
  background: #43c3ea !important; 
  border-color: #43c3ea !important; 
}


/*  For time set button css */
#ptTimeSelectCntr #ptTimeSelectSetButton {
  padding: 0 15px 5px 0;
}
#ptTimeSelectSetButton .ui-state-hover{
  background: #d5ac63 !important;
  border: 2px solid #252525 !important;
  border-radius: 0;
  color: #252525 !important;
  font-size: 12px !important;
  font-weight: normal;
  height: 35px;  
  width: 70px !important;
}
#ptTimeSelectCntr #ptTimeSelectSetButton a {
  display: block;
  text-align: center;
  float: right;
  background: #252525 !important;
  border: 2px solid #252525 !important;
  border-radius: 0;
  color: #fff !important;
  font-size: 12px !important;
  font-weight: normal;
  height: 35px;  
  width: 70px !important;
  padding: 0;
  margin: 0;
  line-height: 32px;
  text-transform: uppercase;
  transition: all 500ms ease;
}
#ptTimeSelectCntr #ptTimeSelectSetButton a:hover{
  background: #43c3ea !important;  
} 







/*** jquery ui css ***/
/*! jQuery UI - v1.11.4 - 2016-04-01
* http://jqueryui.com
* Includes: core.css, draggable.css, resizable.css, selectable.css, sortable.css, accordion.css, autocomplete.css, button.css, datepicker.css, dialog.css, menu.css, progressbar.css, selectmenu.css, slider.css, spinner.css, tabs.css, theme.css
* To view and modify this theme, visit http://jqueryui.com/themeroller/
* 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-clearfix {
	min-height: 0; /* support: IE7 */
}
.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;
}


/* Icons
----------------------------------*/

/* states and images */
.ui-icon {
	display: block;
	text-indent: -99999px;
	overflow: hidden;
	background-repeat: no-repeat;
}


/* Misc visuals
----------------------------------*/

/* Overlays */
.ui-widget-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.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-selectable {
	-ms-touch-action: none;
	touch-action: none;
}
.ui-selectable-helper {
	position: absolute;
	z-index: 100;
	border: 1px dotted black;
}
.ui-sortable-handle {
	-ms-touch-action: none;
	touch-action: none;
}
.ui-accordion .ui-accordion-header {
	display: block;
	cursor: pointer;
	position: relative;
	margin: 2px 0 0 0;
	padding: .5em .5em .5em .7em;
	min-height: 0; /* support: IE7 */
	font-size: 100%;
}
.ui-accordion .ui-accordion-icons {
	padding-left: 2.2em;
}
.ui-accordion .ui-accordion-icons .ui-accordion-icons {
	padding-left: 2.2em;
}
.ui-accordion .ui-accordion-header .ui-accordion-header-icon {
	position: absolute;
	left: .5em;
	top: 50%;
	margin-top: -8px;
}
.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-button {
	display: inline-block;
	position: relative;
	padding: 0;
	line-height: normal;
	margin-right: .1em;
	cursor: pointer;
	vertical-align: middle;
	text-align: center;
	overflow: visible; /* removes extra width in IE */
}
.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: 2.2em;
}
/* button elements seem to need a little more width */
button.ui-button-icon-only {
	width: 2.4em;
}
.ui-button-icons-only {
	width: 3.4em;
}
button.ui-button-icons-only {
	width: 3.7em;
}

/* button text element */
.ui-button .ui-button-text {
	display: block;
	line-height: normal;
}
.ui-button-text-only .ui-button-text {
	padding: .4em 1em;
}
.ui-button-icon-only .ui-button-text,
.ui-button-icons-only .ui-button-text {
	padding: .4em;
	text-indent: -9999999px;
}
.ui-button-text-icon-primary .ui-button-text,
.ui-button-text-icons .ui-button-text {
	padding: .4em 1em .4em 2.1em;
}
.ui-button-text-icon-secondary .ui-button-text,
.ui-button-text-icons .ui-button-text {
	padding: .4em 2.1em .4em 1em;
}
.ui-button-text-icons .ui-button-text {
	padding-left: 2.1em;
	padding-right: 2.1em;
}
/* no icon support for input elements, provide padding by default */
input.ui-button {
	padding: .4em 1em;
}

/* button icon element(s) */
.ui-button-icon-only .ui-icon,
.ui-button-text-icon-primary .ui-icon,
.ui-button-text-icon-secondary .ui-icon,
.ui-button-text-icons .ui-icon,
.ui-button-icons-only .ui-icon {
	position: absolute;
	top: 50%;
	margin-top: -8px;
}
.ui-button-icon-only .ui-icon {
	left: 50%;
	margin-left: -8px;
}
.ui-button-text-icon-primary .ui-button-icon-primary,
.ui-button-text-icons .ui-button-icon-primary,
.ui-button-icons-only .ui-button-icon-primary {
	left: .5em;
}
.ui-button-text-icon-secondary .ui-button-icon-secondary,
.ui-button-text-icons .ui-button-icon-secondary,
.ui-button-icons-only .ui-button-icon-secondary {
	right: .5em;
}

/* button sets */
.ui-buttonset {
	margin-right: 7px;
}
.ui-buttonset .ui-button {
	margin-left: 0;
	margin-right: -.3em;
}

/* workarounds */
/* reset extra padding in Firefox, see h5bp.com/l */
input.ui-button::-moz-focus-inner,
button.ui-button::-moz-focus-inner {
	border: 0;
	padding: 0;
}
.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;
}
.ui-dialog {
	overflow: hidden;
	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-se {
	width: 12px;
	height: 12px;
	right: -5px;
	bottom: -5px;
	background-position: 16px 16px;
}
.ui-draggable .ui-dialog-titlebar {
	cursor: move;
}
.ui-menu {
	list-style: none;
	padding: 0;
	margin: 0;
	display: block;
	outline: none;
}
.ui-menu .ui-menu {
	position: absolute;
}
.ui-menu .ui-menu-item {
	position: relative;
	margin: 0;
	padding: 3px 1em 3px .4em;
	cursor: pointer;
	min-height: 0; /* support: IE7 */
	/* support: IE10, see #8844 */
	list-style-image: url(data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7);
}
.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 {
	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-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-selectmenu-menu {
	padding: 0;
	margin: 0;
	position: absolute;
	top: 0;
	left: 0;
	display: none;
}
.ui-selectmenu-menu .ui-menu {
	overflow: auto;
	/* Support: IE7 */
	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-button {
	display: inline-block;
	overflow: hidden;
	position: relative;
	text-decoration: none;
	cursor: pointer;
}
.ui-selectmenu-button span.ui-icon {
	right: 0.5em;
	left: auto;
	margin-top: -8px;
	position: absolute;
	top: 50%;
}
.ui-selectmenu-button span.ui-selectmenu-text {
	text-align: left;
	padding: 0.4em 2.1em 0.4em 1em;
	display: block;
	line-height: 1.4;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.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-spinner {
	position: relative;
	display: inline-block;
	overflow: hidden;
	padding: 0;
	vertical-align: middle;
}
.ui-spinner-input {
	border: none;
	background: none;
	color: inherit;
	padding: 0;
	margin: .2em 0;
	vertical-align: middle;
	margin-left: .4em;
	margin-right: 22px;
}
.ui-spinner-button {
	width: 16px;
	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: none;
	border-bottom: none;
	border-right: none;
}
/* vertically center icon */
.ui-spinner .ui-icon {
	position: absolute;
	margin-top: -8px;
	top: 50%;
	left: 0;
}
.ui-spinner-up {
	top: 0;
}
.ui-spinner-down {
	bottom: 0;
}

/* TR overrides */
.ui-spinner .ui-icon-triangle-1-s {
	/* need to fix icons sprite */
	background-position: -65px -16px;
}
.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;
}

/* Component containers
----------------------------------*/
.ui-widget {
	font-family: Verdana,Arial,sans-serif;
	font-size: 1.1em;
}
.ui-widget .ui-widget {
	font-size: 1em;
}
.ui-widget input,
.ui-widget select,
.ui-widget textarea,
.ui-widget button {
	font-family: Verdana,Arial,sans-serif;
	font-size: 1em;
}
.ui-widget-content {
	border: 1px solid #aaaaaa;
	background: #ffffff;
	color: #222222;
}
.ui-widget-content a {
	color: #222222;
}
.ui-widget-header {
	border: 1px solid #aaaaaa;
	background: #cccccc url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAABkEAAAAAAy19n/AAAAAmJLR0T//xSrMc0AAAAJcEhZcwAAAEgAAABIAEbJaz4AAABaSURBVBjTY3h8jYFOaAPDo/cMj/QYHuYyPGhjuF/BcC+L4W4swx0NhltfGG7uZ7jRzXA9nOGaEsOV4wyXdzJcamW4WM5wYQLD+SaGcwcZzt5iOOvAcObMACIAsZae6pVZewYAAAAldEVYdGRhdGU6Y3JlYXRlADIwMTYtMDQtMDFUMTU6MjU6NDArMDA6MDD1p7cmAAAAJXRFWHRkYXRlOm1vZGlmeQAyMDE2LTA0LTAxVDE1OjI1OjQwKzAwOjAwhPoPmgAAAABJRU5ErkJggg==) 50% 50% repeat-x;
	color: #222222;
	font-weight: bold;
}
.ui-widget-header a {
	color: #222222;
}

/* Interaction states
----------------------------------*/
.ui-state-default,
.ui-widget-content .ui-state-default,
.ui-widget-header .ui-state-default {
	border: 1px solid #d3d3d3;
	background: #e6e6e6 url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAGQEAAAAAAao4lEAAAAAmJLR0T//xSrMc0AAAAJcEhZcwAAAEgAAABIAEbJaz4AAABISURBVDjLY3iXxzCKRhHV0bNnDM+NGJ7fYXgxk+FlJsOrOIbXIQxvYhjepjK8i2Z4H8DwwZjhIzPDx7UMn+QYPhmOolFEDAIAjUD2JAAuNW8AAAAldEVYdGRhdGU6Y3JlYXRlADIwMTYtMDQtMDFUMTU6MjU6NDArMDA6MDD1p7cmAAAAJXRFWHRkYXRlOm1vZGlmeQAyMDE2LTA0LTAxVDE1OjI1OjQwKzAwOjAwhPoPmgAAAABJRU5ErkJggg==) 50% 50% repeat-x;
	font-weight: normal;
	color: #555555;
}
.ui-state-default a,
.ui-state-default a:link,
.ui-state-default a:visited {
	color: #555555;
	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 {
	border: 1px solid #999999;
	background: #dadada url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAGQEAAAAAAao4lEAAAAAmJLR0T//xSrMc0AAAAJcEhZcwAAAEgAAABIAEbJaz4AAABISURBVDjLY3j6n2EUjSKqo1u3GG57MdxxY7gby3BvIsP9PwwPMxgefWB4Us7w9DHDcz+GF/MYXl5ieHWW4XUpw+uJo2gUEYMAvlejJVIWsXwAAAAldEVYdGRhdGU6Y3JlYXRlADIwMTYtMDQtMDFUMTU6MjU6NDArMDA6MDD1p7cmAAAAJXRFWHRkYXRlOm1vZGlmeQAyMDE2LTA0LTAxVDE1OjI1OjQwKzAwOjAwhPoPmgAAAABJRU5ErkJggg==) 50% 50% repeat-x;
	font-weight: normal;
	color: #212121;
}
.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 {
	color: #212121;
	text-decoration: none;
}
.ui-state-active,
.ui-widget-content .ui-state-active,
.ui-widget-header .ui-state-active {
	border: 1px solid #aaaaaa;
	background: #ffffff url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAGQAQAAAABHIzd2AAAAAmJLR0QAAd2KE6QAAAAJcEhZcwAAAEgAAABIAEbJaz4AAAARSURBVCjPY2hgGIWjcBTigACVaMgB0zSxaQAAACV0RVh0ZGF0ZTpjcmVhdGUAMjAxNi0wNC0wMVQxNToyNTo0MCswMDowMPWntyYAAAAldEVYdGRhdGU6bW9kaWZ5ADIwMTYtMDQtMDFUMTU6MjU6NDArMDA6MDCE+g+aAAAAAElFTkSuQmCC) 50% 50% repeat-x;
	font-weight: normal;
	color: #212121;
}
.ui-state-active a,
.ui-state-active a:link,
.ui-state-active a:visited {
	color: #212121;
	text-decoration: none;
}

/* Interaction Cues
----------------------------------*/
.ui-state-highlight,
.ui-widget-content .ui-state-highlight,
.ui-widget-header .ui-state-highlight {
	border: 1px solid #fcefa1;
	background: #fbf9ee url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAGQEAIAAACwqkHPAAAABmJLR0T///////8JWPfcAAAACXBIWXMAAABIAAAASABGyWs+AAAAjUlEQVRIx+3PIQoCQRSA4X+eYhBsg4iwowZBGDF7COtWq1kwad37eAPBg3iFFXaL4xvB4hVEw0tf+NNPvummOQsAGIZhGN8G1ZTqmtx99u5e8ARKYciMrTBi7nZCQeQkFCzdUZiwoiJfNDTx08gPPbRTcWMW7HlFvbZJ8ARXCgM8a0Ho0P+LacMwjB/yBjxhJFOI7HkuAAAAJXRFWHRkYXRlOmNyZWF0ZQAyMDE2LTA0LTAxVDE1OjI1OjQwKzAwOjAw9ae3JgAAACV0RVh0ZGF0ZTptb2RpZnkAMjAxNi0wNC0wMVQxNToyNTo0MCswMDowMIT6D5oAAAAASUVORK5CYII=) 50% 50% repeat-x;
	color: #363636;
}
.ui-state-highlight a,
.ui-widget-content .ui-state-highlight a,
.ui-widget-header .ui-state-highlight a {
	color: #363636;
}
.ui-state-error,
.ui-widget-content .ui-state-error,
.ui-widget-header .ui-state-error {
	border: 1px solid #cd0a0a;
	background: #fef1ec url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAGQEAIAAACwqkHPAAAABmJLR0T///////8JWPfcAAAACXBIWXMAAABIAAAASABGyWs+AAAAiklEQVRIx+3PsQ0BYRiH8ef/FhLnXCFWEI3WDkojWMAAltDQi0R9ExiADS5m+D7JHYnuPgWxgVC81a94qoe0eMzuEwMAx3Ec59vQtnUdAsmacZySsmYXK9LwNrqujR5bnY1cpcKHgqOS0debV6NUNHLtuRiZNjoZXVY6GB3mLA0oGPzFtOM4zg95AkctKGSanwlIAAAAJXRFWHRkYXRlOmNyZWF0ZQAyMDE2LTA0LTAxVDE1OjI1OjQwKzAwOjAw9ae3JgAAACV0RVh0ZGF0ZTptb2RpZnkAMjAxNi0wNC0wMVQxNToyNTo0MCswMDowMIT6D5oAAAAASUVORK5CYII=) 50% 50% repeat-x;
	color: #cd0a0a;
}
.ui-state-error a,
.ui-widget-content .ui-state-error a,
.ui-widget-header .ui-state-error a {
	color: #cd0a0a;
}
.ui-state-error-text,
.ui-widget-content .ui-state-error-text,
.ui-widget-header .ui-state-error-text {
	color: #cd0a0a;
}
.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(/wp-content/themes/electrical/css/../assets/jquery-ui-1.11.4/images/ui-icons_222222_256x240.png);
}
.ui-widget-header .ui-icon {
	background-image: url(/wp-content/themes/electrical/css/../assets/jquery-ui-1.11.4/images/ui-icons_222222_256x240.png);
}
.ui-state-default .ui-icon {
	background-image: url(/wp-content/themes/electrical/css/../assets/jquery-ui-1.11.4/images/ui-icons_888888_256x240.png);
}
.ui-state-hover .ui-icon,
.ui-state-focus .ui-icon {
	background-image: url(/wp-content/themes/electrical/css/../assets/jquery-ui-1.11.4/images/ui-icons_454545_256x240.png);
}
.ui-state-active .ui-icon {
	background-image: url(/wp-content/themes/electrical/css/../assets/jquery-ui-1.11.4/images/ui-icons_454545_256x240.png);
}
.ui-state-highlight .ui-icon {
	background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAQAAAADwCAMAAADYSUr5AAABDlBMVEUug/8ug/8ug/8ug/8ug/8ug/8ug/8ug/8ug/8ug/8ug/8ug/8ug/8ug/8ug/8ug/8ug/8ug/8ug/8ug/8ug/8ug/8ug/8ug/8ug/8ug/8ug/8ug/8ug/8ug/8ug/8ug/8ug/8ug/8ug/8ug/8ug/8ug/8ug/8ug/8ug/8ug/8ug/8ug/8ug/8ug/8ug/8ug/8ug/8ug/8ug/8ug/8ug/8ug/8ug/8ug/8ug/8ug/8ug/8ug/8ug/8ug/8ug/8ug/8ug/8ug/8ug/8ug/8ug/8ug/8ug/8ug/8ug/8ug/8ug/8ug/8ug/8ug/8ug/8ug/8ug/8ug/8ug/8ug/8ug/8ug/8ug/8ug/8ug/8ug/8bvOpvAAAAWXRSTlMAGRAzBAhQv4KZLyJVcUBmYBoTMswNITwWQkhLIB5aIycxUyyFNIeAw2rIz8Y4RRy8uL58q7WljKqorR+yKf0BnlEk7woGAgOPomKUSqCvbd+cR2M/b3+RaPlAXvEAAAABYktHRACIBR1IAAAACXBIWXMAAABIAAAASABGyWs+AAAPZElEQVR42u1dC2PbthEGyUiq6ZiSXblLE6ex1mTO5iXZq+u6ro3abG26pOkSd13v//+RAXzhcIeHWMoUbeOTLesIEMB9PIB3ACgLERERMQIkkOy6CTvWH0bOQO/mJeDXP8EMqMzDEkIsEBRMAmh7jHSVmuAjAKwC8FRAzi8/DmoS1AI5AQltj5FOryAjgJ7OK2CZkwEZYO23q+BJ5wwKkttfui1z4s20VTAL5k2kF5hbiPcKcwvwNGB4C7CTwproI4CdDcxEPKUTExx+DNiAj0u9C9AuNPxdYOe46Y5QRERERERExIhx6Z7gjv2ghEVrQJ33hJ5BsxsBfsIq8M0HsAkhWfqglFgawAhgGWh2M1xMWAWUAE90qUofMhhi7be32JNsmVFJPKeLwBQglAQMNh3ALVjYbNaI1jaYD0jM0nw9atcWYEXiaXH/+QDeQ3Y6BoRx3e8CERERERERERG7Qz/HP+iaBsvvHXj0LAD4cip0yN27fXw7AGtQoDTwH+HqkWTgWczTwZVmr8DbAEuqv35bCT6CWDorjGnAqwOSCI7EhlFWHjkBXIkb1M/DZQgRwCeAwK9B+HRPFlPBOjeZszKz0wK9/FlzeE3I24GEzUII45bT/SYarqGLesE+btlDBP70QInkckDwggQqAGGt052667vAJZ8fvk1GRERERERE3FT035ba081ILLvR3UXa/NDgUlWg+m4N2KgCfzzP1lYtDUDpAi9ObeDVqczu4ASsy/u8kaxId/2W+JYq4CsbrBcV8SPw8iRvrWWze+IlILA3XFjNzMeAl7/EMt0TmH4wwtkmHG4OsLVzYkEsHLZE4+yRDbFBA+ypVoZJ6fR8iw24T2cEsBbw5pnptIuFCbA3wHkJN0pmAbObAOvaOl+hd14A1gVIFwl2AXsvT5w5GMPezQE8j8XAhFmAYCv0AQLIIEhS2bAUmsGh9VuukT/Z3goHgZsE7wEL4JnHPR+w6+djIiIiIiIiRo3LvYtzR4U8Kms5Y7uORbg46Ja9o/7Aj+Doz3oGZm2j9XKiMc0MTpGt7PgXvroD2G5x03es1iY9T4cHXH1LBmAKCyP69BIC9jL7EuB+vrtM8nw/gG0+w1yvZu31BQfNueA6fesENOGmi4DEEg7zpnviKZ5uW50Gkgr+zLBFChJLC1m4C9hEwduHLaXRCRHvnhUrAbRLbD2804Oamkxg0Zn5fL8lnQi2bo8JYfwECAkR3h/mjA6LTskTI4HoNbQJKDT/4J8/uoa47vpFRERERFxvpFf8RmZxO8C3XEW94V+i/5iWAqzLLKb3lQZXAyElhXpFIUa1GMK2LgsUryhVU0hRMGTGdylUFqDzC+sSOCNwLN0GePRCt9dL/Y3ozCAAKhKMeJaKWN8ExkWAZfmdE5QSmRKA/wpL7IaOJW0XG0sX2MACWH5zx0ZFkMMC6H6Fhu7R6M90ZGMAyWGdoUm1ldAxwLJBZjTmr9tkSPiPY8hH+VO7QmD5pDDgd2V2YIDT0e0i0XugD8kICeiLLvpHRERERNwsZMpPyDbPf2sicWuo1k1l42ZTX473Ap4b7FWukkvFjCZnfj5uiRwgF7dIAeiMfSnuC4dME8XtGuSERiU4KIopcvbKzwYhpVs057ufG3FRa7gw9G1bTGW2srVfpzetnuQwmUA+MRogWDBB99paherA3FZjG6QVRZFWIITMDAIQA6BMdKJr3DMIkEUfSrSuNDQW4FrvrorTBU5gcnT0PmAClsul/wkMgQkQAQL2DQJBqY4OSEISTEjVQJPwYwWXBcAU0B9VcT0GAGqg0eLj8vRjTcDRB/u/Mgi4c+cO2x7vlskBSoDS/0NMgGlSIPUHTlGKpv3gjoLTAg6V6jA91PMAWWn/LQGqfDTFVhWnC5Rd4O5d3AWWQl4C+d6ekJWvX0iA0v/2vQ/dBCTkgDySJIcJCmHg5OTEPQbAoWRA6o8JKH9aAspBEBFwX519/35z4KgaBI+IOugETgB7REMQAj7C8xPzxW35XrgIoBXCgxKowtPTU9AmyiwgO5xO5ZvuAqXsJuC0Qn0gyeGDPF9Bjp8RQl1IHvh1+cL6TigBE0IAGBYw1/p7CGiL+7gEMblJSwC1gOywRHOJmAxqjJ2C0SfzvL0L5E39udMCOAGhLoDTqzGwaDO3BGRmfW1xlR8A7wkHiAWEboNVe+bmHEymb93AFQ4MegtcPT9ACSgZKMT2kGWLEh18Pcah6bqEs0OvaaX9reofERERETFyPHzoT0/BO68NYNv6SJDpcPdReZt61Ih1sN3G2PNanrfnVq7J/sayEL8h7Sm89zUZbR2TQ/K2jfXPMs3ATHmRZ/kUBTuyyfO91pGzUpHp449qV7xhQJ6sQFaaTM8mV67gxnJ1PVoNCuXMpe29PVXczvE1fQzwmOivHKUTrb/yzdvoN7E7Yiich9/K1wFuUCavc4byG2uDNLYQvxPn4vc4vs2lkBuyMOXjyTGSVfsXC1cDoXb2a7kxOGRxsrGLVLuO1YxFG11xAkg4DOLJ/afP7t1H00aZtO8Mt8dLwB/gj/L1J6ygcv2JjIMPGRtPcur7tnLtzKf2+h42IhoHZnCwkBxUwl4zY7PnIqAeBZAFHMCf4aFukNQfTdmFLeAv4hPxVz2ldEos4JRYwCmxgIURe8geUA1SbXxL6vu0kj5tG1gG8zh2ADUGaP3CBDy5/9ED+bLrX3vqmIAUylmnRv4bfCZff0c7Jow+XsrvExmll/1X4oGDgCa6S40GEfsRGOYoD5OpODHiRUJARhgm+rc7IkwCkPz5J3dmd/7xRS0fNsXtbyYvzKsnWBeoZSw+fqxlZfvtfKeVAEGg9gilwj0pCWSS+1HdYH0XUFuMhKtLqO5OivPLgujPA/gU6y+efimHv/mXT1sCZP9PPeczRedsEDUnWdkkP/ED6LQ3kW3fAOOTF1R/ehsU1aYunVyuCNwu2vOBlWAgF1cQRYcA3/CBIiIiIiJ2gCmemFauHJyyPM/1x0veWlguRXjvftCnBSms5fsa35rPALmaH8JXX339NXyBmnOg9C8hP6zuwZMncG/VpJP9Fs10QzPf0Mr0QBu8Ub8ph9l0+sJgwP/lYiEsZFk5ijZBMrCm3viJ9rz+qfAv7Yqup7KABQtu2nSyVEs+1MGrziNdx0wGO3pxsErQwZVyjNfwwrJb9hcSoFwtdIbSvfw1DUAT8M23z59/+41uz1RAscArO5QAY8sIlJNRaMNDKqqpilT72pmaj0EEPFNrdbjCtWLdRQANL7m6JL1a3dMWtS5lrX9q5ofS1vfb01/KpBlyV2FCNmSY55froCgDqMBTxnMCW8B8jver56uVCi81AVJ/gabAKOM0WLCLxMTb9jc2gPSvrmAzBnwG+xLwss1QFMb5cOwn4Eh+PFI/TbIysCmcIAsg0euzZ4fPVnDWFvhCtW62PQKoBXxXys2sXK2/VjBflzgxT9eEyUt6fHxsEFBf2erPicTn8odseFg7x4DVSnUAPAi+mE5nWxwEyRjwXT0G1Awo/QsjHF2p9p7o09cHcIYYUAUdoWGvmbxp9Pv44/qHGIhzDJhmq9UKVpgBehvc9l3gsZqY1e2hodt6PtcTVnIElD+pZgCMP83H/eYAvQ2WFlHCMQbAVAETYLuGfQggSMtr/7jxAyx7BM0RVlrLi1SNlM+b1H8/ScyvdRHlqFFLk0xN6WXNho3ufsDucfTq1RESFweKq/R5yxhtMNs5GREREdELU7w7+vX3aoj5/vWuGzUg3gC8aYUfmlH3h103azDcVererYXX1R1HvWsbWMISn/AfizMjtrfzbFnyv+xf0KZ4owKoxgTeagLetjmI22DzIwpNCVt6oAeoDEt1T196y79E3K0Uvosqp64Ha09KDxTaKAIbN5X8bvLOXJ1l1Q1JgBwBVAj9xqjcbMMcL4xV+uvlxcLU37Z1d5EusH7v5Ns7I8NyhwQUzfUu3AQUpMsDnKc4DetvIyA1TKbcaD4xwmmDgAyWy+Vwnq5W2E0APwfpL3U3BsXeFjDsIFgaQPXQTKnDK03AK5Sp8BeA03uPAcNGa3TQe6rFpzgTOYkwYPDT+y4gxIBD4FIrXLXgohEvsI50DMBSsf3d5zsN1n9U07Lw8sddtmFMsxURERERERGXjAJ84mUDZsSR2egJiT7Y26P6g0e8fAKAUGAQUKalOEMxS9WbkUGFzI08rzK5w9uC+M4FS4ZyhWxAAkwKTAKqtLbN5eWR6tEMBgE4nRNAg0U+GWBuxh2EALwZmBJQTn/UjSz/zHCb6wyYgJlFp7DGhrjN/x+wEQEDWsBGBAxsAcOOARQ7HwMGvgvw+Y4d3wVGgN36ARERERERNxv+58iuO9L/Cvjpc7R3U3opZzfoe3LVc6TwU4GeZ8iLl5YHKBrfhH7/QVd5dFjD/yQBAu1OVqzMGAP0yVK9X7+bPDakcC7ET4U4x09br09kRGs+X6sVmRxP5E+7fRuOzf3sSgZTnqjXZKTubVbvmz/TVyhfgNptf+AgoPxqtOSw+X49SCBJ1IFGPlQv/f17Kl0eSQ5HSkBpARLn+IqrcWFt7E5GBHxRoTXxjvLoMCvvgQu050UGo1M4mToIuHaDYA5wfnaOh/1qOkKHpLDl/3A5NuRv5PV5cyWfmo+IiIiI6A36fEBIppuouspd6+srh0CfDwjJdBtdV7lrfX3l4PWHFq83kelGyq5y1/r6ykHQ5wPe6gIa+UL5hhe1XG2lLdNftTJQWTjT3+r0t876BXjT1Y5Oki5o+wV+3sEH0BVAKzeFiHo1+OICrw6H8vN0ll8vkdvS8eqZ/S8Y7RE///yzMNtTPpG8KQHGB4useu8FaTBuEMsvmEL+/ISAYHtE8+uQV5X+2yNggb6DzkKA7W8XhYL1WyzEZwHq20ZW0IGAcBdQ377VxcRDXQRCBHq7lCD5qSwZWLX5g6DPB1gGtWYQ1IMYHaSAyu5B1TpI0vrpIGumN/y4ZNUHWjmIoW9jfW+jXeUwhnZk+jpSXeUwhnZl+7rSXeWIiIiIiIgID2rH4dLk0YP8/8CwfA0JAD8B5QsrKPwECPpPD8eN6isJwSMTgqB5c8nk39+NHdECbvwYcNPvAhERERERERHbRnJ1PIHgLkjIum90Tcj/BxozEhFo6wYE0Ot9lfTfhgVQfa+U/qYFlNvby5eDgHbtzdTX4FCdfW3HgKyBqT++4pX+V8cG+lpAlf/q6t/XAq68/n3vAg79r+0YEIDW/+rYQNACukDp3fxGRIwc/we0wIqagmy7GAAAACV0RVh0ZGF0ZTpjcmVhdGUAMjAxNS0wMy0xMVQxNDo1OToxMiswMDowMDCpaasAAAAldEVYdGRhdGU6bW9kaWZ5ADIwMTUtMDMtMTFUMTQ6NTk6MTIrMDA6MDBB9NEXAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAABJRU5ErkJggg==);
}
.ui-state-error .ui-icon,
.ui-state-error-text .ui-icon {
	background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAQAAAADwCAMAAADYSUr5AAABDlBMVEXNCgrNCgrNCgrNCgrNCgrNCgrNCgrNCgrNCgrNCgrNCgrNCgrNCgrNCgrNCgrNCgrNCgrNCgrNCgrNCgrNCgrNCgrNCgrNCgrNCgrNCgrNCgrNCgrNCgrNCgrNCgrNCgrNCgrNCgrNCgrNCgrNCgrNCgrNCgrNCgrNCgrNCgrNCgrNCgrNCgrNCgrNCgrNCgrNCgrNCgrNCgrNCgrNCgrNCgrNCgrNCgrNCgrNCgrNCgrNCgrNCgrNCgrNCgrNCgrNCgrNCgrNCgrNCgrNCgrNCgrNCgrNCgrNCgrNCgrNCgrNCgrNCgrNCgrNCgrNCgrNCgrNCgrNCgrNCgrNCgrNCgrNCgrNCgrNCgrNCgo0zXbrAAAAWXRSTlMAGRAzBAhQv4KZLyJVcUBmYBoTMswNITwWQkhLIB5aIycxUyyFNIeAw2rIz8Y4RRy8uL58q7WljKqorR+yKf0BnlEk7woGAgOPomKUSqCvbd+cR2M/b3+RaPlAXvEAAAABYktHRACIBR1IAAAACXBIWXMAAABIAAAASABGyWs+AAAPZElEQVR42u1dC2PbthEGyUiq6ZiSXblLE6ex1mTO5iXZq+u6ro3abG26pOkSd13v//+RAXzhcIeHWMoUbeOTLesIEMB9PIB3ACgLERERMQIkkOy6CTvWH0bOQO/mJeDXP8EMqMzDEkIsEBRMAmh7jHSVmuAjAKwC8FRAzi8/DmoS1AI5AQltj5FOryAjgJ7OK2CZkwEZYO23q+BJ5wwKkttfui1z4s20VTAL5k2kF5hbiPcKcwvwNGB4C7CTwproI4CdDcxEPKUTExx+DNiAj0u9C9AuNPxdYOe46Y5QRERERERExIhx6Z7gjv2ghEVrQJ33hJ5BsxsBfsIq8M0HsAkhWfqglFgawAhgGWh2M1xMWAWUAE90qUofMhhi7be32JNsmVFJPKeLwBQglAQMNh3ALVjYbNaI1jaYD0jM0nw9atcWYEXiaXH/+QDeQ3Y6BoRx3e8CERERERERERG7Qz/HP+iaBsvvHXj0LAD4cip0yN27fXw7AGtQoDTwH+HqkWTgWczTwZVmr8DbAEuqv35bCT6CWDorjGnAqwOSCI7EhlFWHjkBXIkb1M/DZQgRwCeAwK9B+HRPFlPBOjeZszKz0wK9/FlzeE3I24GEzUII45bT/SYarqGLesE+btlDBP70QInkckDwggQqAGGt052667vAJZ8fvk1GRERERERE3FT035ba081ILLvR3UXa/NDgUlWg+m4N2KgCfzzP1lYtDUDpAi9ObeDVqczu4ASsy/u8kaxId/2W+JYq4CsbrBcV8SPw8iRvrWWze+IlILA3XFjNzMeAl7/EMt0TmH4wwtkmHG4OsLVzYkEsHLZE4+yRDbFBA+ypVoZJ6fR8iw24T2cEsBbw5pnptIuFCbA3wHkJN0pmAbObAOvaOl+hd14A1gVIFwl2AXsvT5w5GMPezQE8j8XAhFmAYCv0AQLIIEhS2bAUmsGh9VuukT/Z3goHgZsE7wEL4JnHPR+w6+djIiIiIiIiRo3LvYtzR4U8Kms5Y7uORbg46Ja9o/7Aj+Doz3oGZm2j9XKiMc0MTpGt7PgXvroD2G5x03es1iY9T4cHXH1LBmAKCyP69BIC9jL7EuB+vrtM8nw/gG0+w1yvZu31BQfNueA6fesENOGmi4DEEg7zpnviKZ5uW50Gkgr+zLBFChJLC1m4C9hEwduHLaXRCRHvnhUrAbRLbD2804Oamkxg0Zn5fL8lnQi2bo8JYfwECAkR3h/mjA6LTskTI4HoNbQJKDT/4J8/uoa47vpFRERERFxvpFf8RmZxO8C3XEW94V+i/5iWAqzLLKb3lQZXAyElhXpFIUa1GMK2LgsUryhVU0hRMGTGdylUFqDzC+sSOCNwLN0GePRCt9dL/Y3ozCAAKhKMeJaKWN8ExkWAZfmdE5QSmRKA/wpL7IaOJW0XG0sX2MACWH5zx0ZFkMMC6H6Fhu7R6M90ZGMAyWGdoUm1ldAxwLJBZjTmr9tkSPiPY8hH+VO7QmD5pDDgd2V2YIDT0e0i0XugD8kICeiLLvpHRERERNwsZMpPyDbPf2sicWuo1k1l42ZTX473Ap4b7FWukkvFjCZnfj5uiRwgF7dIAeiMfSnuC4dME8XtGuSERiU4KIopcvbKzwYhpVs057ufG3FRa7gw9G1bTGW2srVfpzetnuQwmUA+MRogWDBB99paherA3FZjG6QVRZFWIITMDAIQA6BMdKJr3DMIkEUfSrSuNDQW4FrvrorTBU5gcnT0PmAClsul/wkMgQkQAQL2DQJBqY4OSEISTEjVQJPwYwWXBcAU0B9VcT0GAGqg0eLj8vRjTcDRB/u/Mgi4c+cO2x7vlskBSoDS/0NMgGlSIPUHTlGKpv3gjoLTAg6V6jA91PMAWWn/LQGqfDTFVhWnC5Rd4O5d3AWWQl4C+d6ekJWvX0iA0v/2vQ/dBCTkgDySJIcJCmHg5OTEPQbAoWRA6o8JKH9aAspBEBFwX519/35z4KgaBI+IOugETgB7REMQAj7C8xPzxW35XrgIoBXCgxKowtPTU9AmyiwgO5xO5ZvuAqXsJuC0Qn0gyeGDPF9Bjp8RQl1IHvh1+cL6TigBE0IAGBYw1/p7CGiL+7gEMblJSwC1gOywRHOJmAxqjJ2C0SfzvL0L5E39udMCOAGhLoDTqzGwaDO3BGRmfW1xlR8A7wkHiAWEboNVe+bmHEymb93AFQ4MegtcPT9ACSgZKMT2kGWLEh18Pcah6bqEs0OvaaX9reofERERETFyPHzoT0/BO68NYNv6SJDpcPdReZt61Ih1sN3G2PNanrfnVq7J/sayEL8h7Sm89zUZbR2TQ/K2jfXPMs3ATHmRZ/kUBTuyyfO91pGzUpHp449qV7xhQJ6sQFaaTM8mV67gxnJ1PVoNCuXMpe29PVXczvE1fQzwmOivHKUTrb/yzdvoN7E7Yiich9/K1wFuUCavc4byG2uDNLYQvxPn4vc4vs2lkBuyMOXjyTGSVfsXC1cDoXb2a7kxOGRxsrGLVLuO1YxFG11xAkg4DOLJ/afP7t1H00aZtO8Mt8dLwB/gj/L1J6ygcv2JjIMPGRtPcur7tnLtzKf2+h42IhoHZnCwkBxUwl4zY7PnIqAeBZAFHMCf4aFukNQfTdmFLeAv4hPxVz2ldEos4JRYwCmxgIURe8geUA1SbXxL6vu0kj5tG1gG8zh2ADUGaP3CBDy5/9ED+bLrX3vqmIAUylmnRv4bfCZff0c7Jow+XsrvExmll/1X4oGDgCa6S40GEfsRGOYoD5OpODHiRUJARhgm+rc7IkwCkPz5J3dmd/7xRS0fNsXtbyYvzKsnWBeoZSw+fqxlZfvtfKeVAEGg9gilwj0pCWSS+1HdYH0XUFuMhKtLqO5OivPLgujPA/gU6y+efimHv/mXT1sCZP9PPeczRedsEDUnWdkkP/ED6LQ3kW3fAOOTF1R/ehsU1aYunVyuCNwu2vOBlWAgF1cQRYcA3/CBIiIiIiJ2gCmemFauHJyyPM/1x0veWlguRXjvftCnBSms5fsa35rPALmaH8JXX339NXyBmnOg9C8hP6zuwZMncG/VpJP9Fs10QzPf0Mr0QBu8Ub8ph9l0+sJgwP/lYiEsZFk5ijZBMrCm3viJ9rz+qfAv7Yqup7KABQtu2nSyVEs+1MGrziNdx0wGO3pxsErQwZVyjNfwwrJb9hcSoFwtdIbSvfw1DUAT8M23z59/+41uz1RAscArO5QAY8sIlJNRaMNDKqqpilT72pmaj0EEPFNrdbjCtWLdRQANL7m6JL1a3dMWtS5lrX9q5ofS1vfb01/KpBlyV2FCNmSY55froCgDqMBTxnMCW8B8jver56uVCi81AVJ/gabAKOM0WLCLxMTb9jc2gPSvrmAzBnwG+xLwss1QFMb5cOwn4Eh+PFI/TbIysCmcIAsg0euzZ4fPVnDWFvhCtW62PQKoBXxXys2sXK2/VjBflzgxT9eEyUt6fHxsEFBf2erPicTn8odseFg7x4DVSnUAPAi+mE5nWxwEyRjwXT0G1Awo/QsjHF2p9p7o09cHcIYYUAUdoWGvmbxp9Pv44/qHGIhzDJhmq9UKVpgBehvc9l3gsZqY1e2hodt6PtcTVnIElD+pZgCMP83H/eYAvQ2WFlHCMQbAVAETYLuGfQggSMtr/7jxAyx7BM0RVlrLi1SNlM+b1H8/ScyvdRHlqFFLk0xN6WXNho3ufsDucfTq1RESFweKq/R5yxhtMNs5GREREdELU7w7+vX3aoj5/vWuGzUg3gC8aYUfmlH3h103azDcVererYXX1R1HvWsbWMISn/AfizMjtrfzbFnyv+xf0KZ4owKoxgTeagLetjmI22DzIwpNCVt6oAeoDEt1T196y79E3K0Uvosqp64Ha09KDxTaKAIbN5X8bvLOXJ1l1Q1JgBwBVAj9xqjcbMMcL4xV+uvlxcLU37Z1d5EusH7v5Ns7I8NyhwQUzfUu3AQUpMsDnKc4DetvIyA1TKbcaD4xwmmDgAyWy+Vwnq5W2E0APwfpL3U3BsXeFjDsIFgaQPXQTKnDK03AK5Sp8BeA03uPAcNGa3TQe6rFpzgTOYkwYPDT+y4gxIBD4FIrXLXgohEvsI50DMBSsf3d5zsN1n9U07Lw8sddtmFMsxURERERERGXjAJ84mUDZsSR2egJiT7Y26P6g0e8fAKAUGAQUKalOEMxS9WbkUGFzI08rzK5w9uC+M4FS4ZyhWxAAkwKTAKqtLbN5eWR6tEMBgE4nRNAg0U+GWBuxh2EALwZmBJQTn/UjSz/zHCb6wyYgJlFp7DGhrjN/x+wEQEDWsBGBAxsAcOOARQ7HwMGvgvw+Y4d3wVGgN36ARERERERNxv+58iuO9L/Cvjpc7R3U3opZzfoe3LVc6TwU4GeZ8iLl5YHKBrfhH7/QVd5dFjD/yQBAu1OVqzMGAP0yVK9X7+bPDakcC7ET4U4x09br09kRGs+X6sVmRxP5E+7fRuOzf3sSgZTnqjXZKTubVbvmz/TVyhfgNptf+AgoPxqtOSw+X49SCBJ1IFGPlQv/f17Kl0eSQ5HSkBpARLn+IqrcWFt7E5GBHxRoTXxjvLoMCvvgQu050UGo1M4mToIuHaDYA5wfnaOh/1qOkKHpLDl/3A5NuRv5PV5cyWfmo+IiIiI6A36fEBIppuouspd6+srh0CfDwjJdBtdV7lrfX3l4PWHFq83kelGyq5y1/r6ykHQ5wPe6gIa+UL5hhe1XG2lLdNftTJQWTjT3+r0t876BXjT1Y5Oki5o+wV+3sEH0BVAKzeFiHo1+OICrw6H8vN0ll8vkdvS8eqZ/S8Y7RE///yzMNtTPpG8KQHGB4useu8FaTBuEMsvmEL+/ISAYHtE8+uQV5X+2yNggb6DzkKA7W8XhYL1WyzEZwHq20ZW0IGAcBdQ377VxcRDXQRCBHq7lCD5qSwZWLX5g6DPB1gGtWYQ1IMYHaSAyu5B1TpI0vrpIGumN/y4ZNUHWjmIoW9jfW+jXeUwhnZk+jpSXeUwhnZl+7rSXeWIiIiIiIgID2rH4dLk0YP8/8CwfA0JAD8B5QsrKPwECPpPD8eN6isJwSMTgqB5c8nk39+NHdECbvwYcNPvAhERERERERHbRnJ1PIHgLkjIum90Tcj/BxozEhFo6wYE0Ot9lfTfhgVQfa+U/qYFlNvby5eDgHbtzdTX4FCdfW3HgKyBqT++4pX+V8cG+lpAlf/q6t/XAq68/n3vAg79r+0YEIDW/+rYQNACukDp3fxGRIwc/we0wIqagmy7GAAAACV0RVh0ZGF0ZTpjcmVhdGUAMjAxNS0wMy0xMVQxNDo1OToxMiswMDowMDCpaasAAAAldEVYdGRhdGU6bW9kaWZ5ADIwMTUtMDMtMTFUMTQ6NTk6MTIrMDA6MDBB9NEXAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAABJRU5ErkJggg==);
}

/* positioning */
.ui-icon-blank { background-position: 16px 16px; }
.ui-icon-carat-1-n { background-position: 0 0; }
.ui-icon-carat-1-ne { background-position: -16px 0; }
.ui-icon-carat-1-e { background-position: -32px 0; }
.ui-icon-carat-1-se { background-position: -48px 0; }
.ui-icon-carat-1-s { background-position: -64px 0; }
.ui-icon-carat-1-sw { background-position: -80px 0; }
.ui-icon-carat-1-w { background-position: -96px 0; }
.ui-icon-carat-1-nw { background-position: -112px 0; }
.ui-icon-carat-2-n-s { background-position: -128px 0; }
.ui-icon-carat-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: -64px -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: -64px -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: 0 -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: 4px;
}
.ui-corner-all,
.ui-corner-top,
.ui-corner-right,
.ui-corner-tr {
	border-top-right-radius: 4px;
}
.ui-corner-all,
.ui-corner-bottom,
.ui-corner-left,
.ui-corner-bl {
	border-bottom-left-radius: 4px;
}
.ui-corner-all,
.ui-corner-bottom,
.ui-corner-right,
.ui-corner-br {
	border-bottom-right-radius: 4px;
}

/* Overlays */
.ui-widget-overlay {
	background: #aaaaaa;
	opacity: .3;
	filter: Alpha(Opacity=30); /* support: IE8 */
}
.ui-widget-shadow {
	margin: -8px 0 0 -8px;
	padding: 8px;
	background: #aaaaaa;
	opacity: .3;
	filter: Alpha(Opacity=30); /* support: IE8 */
	border-radius: 8px;
}

/*** Revolution slider ***/
/*-----------------------------------------------------------------------------

-	Revolution Slider 5.0 Default Style Settings -

Screen Stylesheet

version:   	5.4.5
date:      	15/05/17
author:		themepunch
email:     	info@themepunch.com
website:   	http://www.themepunch.com
-----------------------------------------------------------------------------*/
#debungcontrolls,.debugtimeline{width:100%;box-sizing:border-box}.rev_column,.rev_column .tp-parallax-wrap,.tp-svg-layer svg{vertical-align:top}#debungcontrolls{z-index:100000;position:fixed;bottom:0;height:auto;background:rgba(0,0,0,.6);padding:10px}.debugtimeline{height:10px;position:relative;margin-bottom:3px;display:none;white-space:nowrap}.debugtimeline:hover{height:15px}.the_timeline_tester{background:#e74c3c;position:absolute;top:0;left:0;height:100%;width:0}.rs-go-fullscreen{position:fixed!important;width:100%!important;height:100%!important;top:0!important;left:0!important;z-index:9999999!important;background:#fff!important}.debugtimeline.tl_slide .the_timeline_tester{background:#f39c12}.debugtimeline.tl_frame .the_timeline_tester{background:#3498db}.debugtimline_txt{color:#fff;font-weight:400;font-size:7px;position:absolute;left:10px;top:0;white-space:nowrap;line-height:10px}.rtl{direction:rtl}@font-face{font-family:revicons;src:url(/wp-content/themes/electrical/css/../plugins/revolution/fonts/revicons/revicons90c6.eot?5510888);src:url(/wp-content/themes/electrical/css/../plugins/revolution/fonts/revicons/revicons90c6.eot?5510888#iefix) format('embedded-opentype'),url(/wp-content/themes/electrical/css/../plugins/revolution/fonts/revicons/revicons90c6.woff?5510888) format('woff'),url(/wp-content/themes/electrical/css/../plugins/revolution/fonts/revicons/revicons90c6.ttf?5510888) format('truetype'),url(/wp-content/themes/electrical/css/../plugins/revolution/fonts/revicons/revicons90c6.svg?5510888#revicons) format('svg');font-weight:400;font-style:normal}[class*=" revicon-"]:before,[class^=revicon-]:before{font-family:revicons;font-style:normal;font-weight:400;speak:none;display:inline-block;text-decoration:inherit;width:1em;margin-right:.2em;text-align:center;font-variant:normal;text-transform:none;line-height:1em;margin-left:.2em}.revicon-search-1:before{content:'\e802'}.revicon-pencil-1:before{content:'\e831'}.revicon-picture-1:before{content:'\e803'}.revicon-cancel:before{content:'\e80a'}.revicon-info-circled:before{content:'\e80f'}.revicon-trash:before{content:'\e801'}.revicon-left-dir:before{content:'\e817'}.revicon-right-dir:before{content:'\e818'}.revicon-down-open:before{content:'\e83b'}.revicon-left-open:before{content:'\e819'}.revicon-right-open:before{content:'\e81a'}.revicon-angle-left:before{content:'\e820'}.revicon-angle-right:before{content:'\e81d'}.revicon-left-big:before{content:'\e81f'}.revicon-right-big:before{content:'\e81e'}.revicon-magic:before{content:'\e807'}.revicon-picture:before{content:'\e800'}.revicon-export:before{content:'\e80b'}.revicon-cog:before{content:'\e832'}.revicon-login:before{content:'\e833'}.revicon-logout:before{content:'\e834'}.revicon-video:before{content:'\e805'}.revicon-arrow-combo:before{content:'\e827'}.revicon-left-open-1:before{content:'\e82a'}.revicon-right-open-1:before{content:'\e82b'}.revicon-left-open-mini:before{content:'\e822'}.revicon-right-open-mini:before{content:'\e823'}.revicon-left-open-big:before{content:'\e824'}.revicon-right-open-big:before{content:'\e825'}.revicon-left:before{content:'\e836'}.revicon-right:before{content:'\e826'}.revicon-ccw:before{content:'\e808'}.revicon-arrows-ccw:before{content:'\e806'}.revicon-palette:before{content:'\e829'}.revicon-list-add:before{content:'\e80c'}.revicon-doc:before{content:'\e809'}.revicon-left-open-outline:before{content:'\e82e'}.revicon-left-open-2:before{content:'\e82c'}.revicon-right-open-outline:before{content:'\e82f'}.revicon-right-open-2:before{content:'\e82d'}.revicon-equalizer:before{content:'\e83a'}.revicon-layers-alt:before{content:'\e804'}.revicon-popup:before{content:'\e828'}.rev_slider_wrapper{position:relative;z-index:0;width:100%}.rev_slider{position:relative;overflow:visible}.entry-content .rev_slider a,.rev_slider a{box-shadow:none}.tp-overflow-hidden{overflow:hidden!important}.group_ov_hidden{overflow:hidden}.rev_slider img,.tp-simpleresponsive img{max-width:none!important;transition:none;margin:0;padding:0;border:none}.rev_slider .no-slides-text{font-weight:700;text-align:center;padding-top:80px}.rev_slider>ul,.rev_slider>ul>li,.rev_slider>ul>li:before,.rev_slider_wrapper>ul,.tp-revslider-mainul>li,.tp-revslider-mainul>li:before,.tp-simpleresponsive>ul,.tp-simpleresponsive>ul>li,.tp-simpleresponsive>ul>li:before{list-style:none!important;position:absolute;margin:0!important;padding:0!important;overflow-x:visible;overflow-y:visible;background-image:none;background-position:0 0;text-indent:0;top:0;left:0}.rev_slider>ul>li,.rev_slider>ul>li:before,.tp-revslider-mainul>li,.tp-revslider-mainul>li:before,.tp-simpleresponsive>ul>li,.tp-simpleresponsive>ul>li:before{visibility:hidden}.tp-revslider-mainul,.tp-revslider-slidesli{padding:0!important;margin:0!important;list-style:none!important}.fullscreen-container,.fullwidthbanner-container{padding:0;position:relative}.rev_slider li.tp-revslider-slidesli{position:absolute!important}.tp-caption .rs-untoggled-content{display:block}.tp-caption .rs-toggled-content{display:none}.rs-toggle-content-active.tp-caption .rs-toggled-content{display:block}.rs-toggle-content-active.tp-caption .rs-untoggled-content{display:none}.rev_slider .caption,.rev_slider .tp-caption{position:relative;visibility:hidden;white-space:nowrap;display:block;-webkit-font-smoothing:antialiased!important;z-index:1}.rev_slider .caption,.rev_slider .tp-caption,.tp-simpleresponsive img{-moz-user-select:none;-khtml-user-select:none;-webkit-user-select:none;-o-user-select:none}.rev_slider .tp-mask-wrap .tp-caption,.rev_slider .tp-mask-wrap :last-child,.wpb_text_column .rev_slider .tp-mask-wrap .tp-caption,.wpb_text_column .rev_slider .tp-mask-wrap :last-child{margin-bottom:0}.tp-svg-layer svg{width:100%;height:100%;position:relative}.tp-carousel-wrapper{cursor:url(/wp-content/themes/electrical/css/../plugins/revolution/css/openhand.html),move}.tp-carousel-wrapper.dragged{cursor:url(/wp-content/themes/electrical/css/../plugins/revolution/css/closedhand.html),move}.tp_inner_padding{box-sizing:border-box;max-height:none!important}.tp-caption.tp-layer-selectable{-moz-user-select:all;-khtml-user-select:all;-webkit-user-select:all;-o-user-select:all}.tp-caption.tp-hidden-caption,.tp-forcenotvisible,.tp-hide-revslider,.tp-parallax-wrap.tp-hidden-caption{visibility:hidden!important;display:none!important}.rev_slider audio,.rev_slider embed,.rev_slider iframe,.rev_slider object,.rev_slider video{max-width:none!important}.tp-element-background{position:absolute;top:0;left:0;width:100%;height:100%;z-index:0}.tp-blockmask,.tp-blockmask_in,.tp-blockmask_out{position:absolute;top:0;left:0;width:100%;height:100%;background:#fff;z-index:1000;transform:scaleX(0) scaleY(0)}.tp-parallax-wrap{transform-style:preserve-3d}.rev_row_zone{position:absolute;width:100%;left:0;box-sizing:border-box;min-height:50px;font-size:0}.rev_column_inner,.rev_slider .tp-caption.rev_row{position:relative;width:100%!important;box-sizing:border-box}.rev_row_zone_top{top:0}.rev_row_zone_middle{top:50%;transform:translateY(-50%)}.rev_row_zone_bottom{bottom:0}.rev_slider .tp-caption.rev_row{display:table;table-layout:fixed;vertical-align:top;height:auto!important;font-size:0}.rev_column{display:table-cell;position:relative;height:auto;box-sizing:border-box;font-size:0}.rev_column_inner{display:block;height:auto!important;white-space:normal!important}.rev_column_bg{width:100%;height:100%;position:absolute;top:0;left:0;z-index:0;box-sizing:border-box;background-clip:content-box;border:0 solid transparent}.tp-caption .backcorner,.tp-caption .backcornertop,.tp-caption .frontcorner,.tp-caption .frontcornertop{height:0;top:0;width:0;position:absolute}.rev_column_inner .tp-loop-wrap,.rev_column_inner .tp-mask-wrap,.rev_column_inner .tp-parallax-wrap{text-align:inherit}.rev_column_inner .tp-mask-wrap{display:inline-block}.rev_column_inner .tp-parallax-wrap,.rev_column_inner .tp-parallax-wrap .tp-loop-wrap,.rev_column_inner .tp-parallax-wrap .tp-mask-wrap{position:relative!important;left:auto!important;top:auto!important;line-height:0}.tp-video-play-button,.tp-video-play-button i{line-height:50px!important;vertical-align:top;text-align:center}.rev_column_inner .rev_layer_in_column,.rev_column_inner .tp-parallax-wrap,.rev_column_inner .tp-parallax-wrap .tp-loop-wrap,.rev_column_inner .tp-parallax-wrap .tp-mask-wrap{vertical-align:top}.rev_break_columns{display:block!important}.rev_break_columns .tp-parallax-wrap.rev_column{display:block!important;width:100%!important}.fullwidthbanner-container{overflow:hidden}.fullwidthbanner-container .fullwidthabanner{width:100%;position:relative}.tp-static-layers{position:absolute;z-index:101;top:0;left:0}.tp-caption .frontcorner{border-left:40px solid transparent;border-right:0 solid transparent;border-top:40px solid #00A8FF;left:-40px}.tp-caption .backcorner{border-left:0 solid transparent;border-right:40px solid transparent;border-bottom:40px solid #00A8FF;right:0}.tp-caption .frontcornertop{border-left:40px solid transparent;border-right:0 solid transparent;border-bottom:40px solid #00A8FF;left:-40px}.tp-caption .backcornertop{border-left:0 solid transparent;border-right:40px solid transparent;border-top:40px solid #00A8FF;right:0}.tp-layer-inner-rotation{position:relative!important}img.tp-slider-alternative-image{width:100%;height:auto}.caption.fullscreenvideo,.rs-background-video-layer,.tp-caption.coverscreenvideo,.tp-caption.fullscreenvideo{width:100%;height:100%;top:0;left:0;position:absolute}.noFilterClass{filter:none!important}.rs-background-video-layer{visibility:hidden;z-index:0}.caption.fullscreenvideo audio,.caption.fullscreenvideo iframe,.caption.fullscreenvideo video,.tp-caption.fullscreenvideo iframe,.tp-caption.fullscreenvideo iframe audio,.tp-caption.fullscreenvideo iframe video{width:100%!important;height:100%!important;display:none}.fullcoveredvideo audio,.fullscreenvideo audio .fullcoveredvideo video,.fullscreenvideo video{background:#000}.fullcoveredvideo .tp-poster{background-position:center center;background-size:cover;width:100%;height:100%;top:0;left:0}.videoisplaying .html5vid .tp-poster{display:none}.tp-video-play-button{background:#000;background:rgba(0,0,0,.3);border-radius:5px;position:absolute;top:50%;left:50%;color:#FFF;margin-top:-25px;margin-left:-25px;cursor:pointer;width:50px;height:50px;box-sizing:border-box;display:inline-block;z-index:4;opacity:0;transition:opacity .3s ease-out!important}.tp-audio-html5 .tp-video-play-button,.tp-hiddenaudio{display:none!important}.tp-caption .html5vid{width:100%!important;height:100%!important}.tp-video-play-button i{width:50px;height:50px;display:inline-block;font-size:40px!important}.rs-fullvideo-cover,.tp-dottedoverlay,.tp-shadowcover{height:100%;top:0;left:0;position:absolute}.tp-caption:hover .tp-video-play-button{opacity:1;display:block}.tp-caption .tp-revstop{display:none;border-left:5px solid #fff!important;border-right:5px solid #fff!important;margin-top:15px!important;line-height:20px!important;vertical-align:top;font-size:25px!important}.tp-seek-bar,.tp-video-button,.tp-volume-bar{outline:0;line-height:12px;margin:0;cursor:pointer}.videoisplaying .revicon-right-dir{display:none}.videoisplaying .tp-revstop{display:inline-block}.videoisplaying .tp-video-play-button{display:none}.fullcoveredvideo .tp-video-play-button{display:none!important}.fullscreenvideo .fullscreenvideo audio,.fullscreenvideo .fullscreenvideo video{object-fit:contain!important}.fullscreenvideo .fullcoveredvideo audio,.fullscreenvideo .fullcoveredvideo video{object-fit:cover!important}.tp-video-controls{position:absolute;bottom:0;left:0;right:0;padding:5px;opacity:0;transition:opacity .3s;background-image:linear-gradient(to bottom,#000 13%,#323232 100%);display:table;max-width:100%;overflow:hidden;box-sizing:border-box}.rev-btn.rev-hiddenicon i,.rev-btn.rev-withicon i{transition:all .2s ease-out!important;font-size:15px}.tp-caption:hover .tp-video-controls{opacity:.9}.tp-video-button{background:rgba(0,0,0,.5);border:0;border-radius:3px;font-size:12px;color:#fff;padding:0}.tp-video-button:hover{cursor:pointer}.tp-video-button-wrap,.tp-video-seek-bar-wrap,.tp-video-vol-bar-wrap{padding:0 5px;display:table-cell;vertical-align:middle}.tp-video-seek-bar-wrap{width:80%}.tp-video-vol-bar-wrap{width:20%}.tp-seek-bar,.tp-volume-bar{width:100%;padding:0}.rs-fullvideo-cover{width:100%;background:0 0;z-index:5}.disabled_lc .tp-video-play-button,.rs-background-video-layer audio::-webkit-media-controls,.rs-background-video-layer video::-webkit-media-controls,.rs-background-video-layer video::-webkit-media-controls-start-playback-button{display:none!important}.tp-audio-html5 .tp-video-controls{opacity:1!important;visibility:visible!important}.tp-dottedoverlay{background-repeat:repeat;width:100%;z-index:3}.tp-dottedoverlay.twoxtwo{background:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAIAAAACCAYAAABytg0kAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyNpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNS1jMDE0IDc5LjE1MTQ4MSwgMjAxMy8wMy8xMy0xMjowOToxNSAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIChNYWNpbnRvc2gpIiB4bXBNTTpJbnN0YW5jZUlEPSJ4bXAuaWlkOkRDMDBGQ0Y5NEI4NjExRTM5RTg2QTY1RTUyQjIxNEQyIiB4bXBNTTpEb2N1bWVudElEPSJ4bXAuZGlkOkRDMDBGQ0ZBNEI4NjExRTM5RTg2QTY1RTUyQjIxNEQyIj4gPHhtcE1NOkRlcml2ZWRGcm9tIHN0UmVmOmluc3RhbmNlSUQ9InhtcC5paWQ6REMwMEZDRjc0Qjg2MTFFMzlFODZBNjVFNTJCMjE0RDIiIHN0UmVmOmRvY3VtZW50SUQ9InhtcC5kaWQ6REMwMEZDRjg0Qjg2MTFFMzlFODZBNjVFNTJCMjE0RDIiLz4gPC9yZGY6RGVzY3JpcHRpb24+IDwvcmRmOlJERj4gPC94OnhtcG1ldGE+IDw/eHBhY2tldCBlbmQ9InIiPz6C0EmkAAAAGElEQVR42mJiYGD4DwQMTECCEchhAAgwAEcGBv9dngKPAAAAAElFTkSuQmCC)}.tp-dottedoverlay.twoxtwowhite{background:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAIAAAACCAQAAADYv8WvAAAACXBIWXMAAAsTAAALEwEAmpwYAAADGGlDQ1BQaG90b3Nob3AgSUNDIHByb2ZpbGUAAHjaY2BgnuDo4uTKJMDAUFBUUuQe5BgZERmlwH6egY2BmYGBgYGBITG5uMAxIMCHgYGBIS8/L5UBFTAyMHy7xsDIwMDAcFnX0cXJlYE0wJpcUFTCwMBwgIGBwSgltTiZgYHhCwMDQ3p5SUEJAwNjDAMDg0hSdkEJAwNjAQMDg0h2SJAzAwNjCwMDE09JakUJAwMDg3N+QWVRZnpGiYKhpaWlgmNKflKqQnBlcUlqbrGCZ15yflFBflFiSWoKAwMD1A4GBgYGXpf8EgX3xMw8BSMDVQYqg4jIKAUICxE+CDEESC4tKoMHJQODAIMCgwGDA0MAQyJDPcMChqMMbxjFGV0YSxlXMN5jEmMKYprAdIFZmDmSeSHzGxZLlg6WW6x6rK2s99gs2aaxfWMPZ9/NocTRxfGFM5HzApcj1xZuTe4FPFI8U3mFeCfxCfNN45fhXyygI7BD0FXwilCq0A/hXhEVkb2i4aJfxCaJG4lfkaiQlJM8JpUvLS19QqZMVl32llyfvIv8H4WtioVKekpvldeqFKiaqP5UO6jepRGqqaT5QeuA9iSdVF0rPUG9V/pHDBYY1hrFGNuayJsym740u2C+02KJ5QSrOutcmzjbQDtXe2sHY0cdJzVnJRcFV3k3BXdlD3VPXS8Tbxsfd99gvwT//ID6wIlBS4N3hVwMfRnOFCEXaRUVEV0RMzN2T9yDBLZE3aSw5IaUNak30zkyLDIzs+ZmX8xlz7PPryjYVPiuWLskq3RV2ZsK/cqSql01jLVedVPrHzbqNdU0n22VaytsP9op3VXUfbpXta+x/+5Em0mzJ/+dGj/t8AyNmf2zvs9JmHt6vvmCpYtEFrcu+bYsc/m9lSGrTq9xWbtvveWGbZtMNm/ZarJt+w6rnft3u+45uy9s/4ODOYd+Hmk/Jn58xUnrU+fOJJ/9dX7SRe1LR68kXv13fc5Nm1t379TfU75/4mHeY7En+59lvhB5efB1/lv5dxc+NH0y/fzq64Lv4T8Ffp360/rP8f9/AA0ADzT6lvFdAAAAIGNIUk0AAHolAACAgwAA+f8AAIDpAAB1MAAA6mAAADqYAAAXb5JfxUYAAAAZSURBVHjaYvj//z8Dw3+G/wwAAAAA//8DAB3sBPwaPUesAAAAAElFTkSuQmCC)}.tp-dottedoverlay.threexthree{background:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAMAAAADCAYAAABWKLW/AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyNpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNS1jMDE0IDc5LjE1MTQ4MSwgMjAxMy8wMy8xMy0xMjowOToxNSAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIChNYWNpbnRvc2gpIiB4bXBNTTpJbnN0YW5jZUlEPSJ4bXAuaWlkOkRDMDBGQ0ZENEI4NjExRTM5RTg2QTY1RTUyQjIxNEQyIiB4bXBNTTpEb2N1bWVudElEPSJ4bXAuZGlkOkRDMDBGQ0ZFNEI4NjExRTM5RTg2QTY1RTUyQjIxNEQyIj4gPHhtcE1NOkRlcml2ZWRGcm9tIHN0UmVmOmluc3RhbmNlSUQ9InhtcC5paWQ6REMwMEZDRkI0Qjg2MTFFMzlFODZBNjVFNTJCMjE0RDIiIHN0UmVmOmRvY3VtZW50SUQ9InhtcC5kaWQ6REMwMEZDRkM0Qjg2MTFFMzlFODZBNjVFNTJCMjE0RDIiLz4gPC9yZGY6RGVzY3JpcHRpb24+IDwvcmRmOlJERj4gPC94OnhtcG1ldGE+IDw/eHBhY2tldCBlbmQ9InIiPz52U1ucAAAAHUlEQVR42mJkYGD4DwSMQJqBEchggAEmBiQAEGAAzdMG/7gnuzwAAAAASUVORK5CYII=)}.tp-dottedoverlay.threexthreewhite{background:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAMAAAADCAYAAABWKLW/AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyNpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNS1jMDE0IDc5LjE1MTQ4MSwgMjAxMy8wMy8xMy0xMjowOToxNSAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIChNYWNpbnRvc2gpIiB4bXBNTTpJbnN0YW5jZUlEPSJ4bXAuaWlkOjZBOTQxMTNFNEI4QjExRTM5RTg2QTY1RTUyQjIxNEQyIiB4bXBNTTpEb2N1bWVudElEPSJ4bXAuZGlkOjZBOTQxMTNGNEI4QjExRTM5RTg2QTY1RTUyQjIxNEQyIj4gPHhtcE1NOkRlcml2ZWRGcm9tIHN0UmVmOmluc3RhbmNlSUQ9InhtcC5paWQ6REMwMEZDRkY0Qjg2MTFFMzlFODZBNjVFNTJCMjE0RDIiIHN0UmVmOmRvY3VtZW50SUQ9InhtcC5kaWQ6REMwMEZEMDA0Qjg2MTFFMzlFODZBNjVFNTJCMjE0RDIiLz4gPC9yZGY6RGVzY3JpcHRpb24+IDwvcmRmOlJERj4gPC94OnhtcG1ldGE+IDw/eHBhY2tldCBlbmQ9InIiPz5I32lpAAAAGklEQVR42mL8DwQMDAyMQMzABGPAOHAAEGAAkj8EBOSGbcEAAAAASUVORK5CYII=)}.tp-shadowcover{width:100%;background:#fff;z-index:-1}.tp-shadow1{box-shadow:0 10px 6px -6px rgba(0,0,0,.8)}.tp-shadow2:after,.tp-shadow2:before,.tp-shadow3:before,.tp-shadow4:after{z-index:-2;position:absolute;content:"";bottom:10px;left:10px;width:50%;top:85%;max-width:300px;background:0 0;box-shadow:0 15px 10px rgba(0,0,0,.8);transform:rotate(-3deg)}.tp-shadow2:after,.tp-shadow4:after{transform:rotate(3deg);right:10px;left:auto}.tp-shadow5{position:relative;box-shadow:0 1px 4px rgba(0,0,0,.3),0 0 40px rgba(0,0,0,.1) inset}.tp-shadow5:after,.tp-shadow5:before{content:"";position:absolute;z-index:-2;box-shadow:0 0 25px 0 rgba(0,0,0,.6);top:30%;bottom:0;left:20px;right:20px;border-radius:100px/20px}.tp-button{padding:6px 13px 5px;border-radius:3px;height:30px;cursor:pointer;color:#fff!important;text-shadow:0 1px 1px rgba(0,0,0,.6)!important;font-size:15px;line-height:45px!important;font-family:arial,sans-serif;font-weight:700;letter-spacing:-1px;text-decoration:none}.tp-button.big{color:#fff;text-shadow:0 1px 1px rgba(0,0,0,.6);font-weight:700;padding:9px 20px;font-size:19px;line-height:57px!important}.purchase:hover,.tp-button.big:hover,.tp-button:hover{background-position:bottom,15px 11px}.purchase.green,.purchase:hover.green,.tp-button.green,.tp-button:hover.green{background-color:#21a117;box-shadow:0 3px 0 0 #104d0b}.purchase.blue,.purchase:hover.blue,.tp-button.blue,.tp-button:hover.blue{background-color:#1d78cb;box-shadow:0 3px 0 0 #0f3e68}.purchase.red,.purchase:hover.red,.tp-button.red,.tp-button:hover.red{background-color:#cb1d1d;box-shadow:0 3px 0 0 #7c1212}.purchase.orange,.purchase:hover.orange,.tp-button.orange,.tp-button:hover.orange{background-color:#f70;box-shadow:0 3px 0 0 #a34c00}.purchase.darkgrey,.purchase:hover.darkgrey,.tp-button.darkgrey,.tp-button.grey,.tp-button:hover.darkgrey,.tp-button:hover.grey{background-color:#555;box-shadow:0 3px 0 0 #222}.purchase.lightgrey,.purchase:hover.lightgrey,.tp-button.lightgrey,.tp-button:hover.lightgrey{background-color:#888;box-shadow:0 3px 0 0 #555}.rev-btn,.rev-btn:visited{outline:0!important;box-shadow:none!important;text-decoration:none!important;line-height:44px;font-size:17px;font-weight:500;padding:12px 35px;box-sizing:border-box;font-family:Roboto,sans-serif;cursor:pointer}.rev-btn.rev-uppercase,.rev-btn.rev-uppercase:visited{text-transform:uppercase;letter-spacing:1px;font-size:15px;font-weight:900}.rev-btn.rev-withicon i{font-weight:400;position:relative;top:0;margin-left:10px!important}.rev-btn.rev-hiddenicon i{font-weight:400;position:relative;top:0;opacity:0;margin-left:0!important;width:0!important}.rev-btn.rev-hiddenicon:hover i{opacity:1!important;margin-left:10px!important;width:auto!important}.rev-btn.rev-medium,.rev-btn.rev-medium:visited{line-height:36px;font-size:14px;padding:10px 30px}.rev-btn.rev-medium.rev-hiddenicon i,.rev-btn.rev-medium.rev-withicon i{font-size:14px;top:0}.rev-btn.rev-small,.rev-btn.rev-small:visited{line-height:28px;font-size:12px;padding:7px 20px}.rev-btn.rev-small.rev-hiddenicon i,.rev-btn.rev-small.rev-withicon i{font-size:12px;top:0}.rev-maxround{border-radius:30px}.rev-minround{border-radius:3px}.rev-burger{position:relative;width:60px;height:60px;box-sizing:border-box;padding:22px 0 0 14px;border-radius:50%;border:1px solid rgba(51,51,51,.25);-webkit-tap-highlight-color:transparent;cursor:pointer}.rev-burger span{display:block;width:30px;height:3px;background:#333;transition:.7s;pointer-events:none;transform-style:flat!important}.rev-burger.revb-white span,.rev-burger.revb-whitenoborder span{background:#fff}.rev-burger span:nth-child(2){margin:3px 0}#dialog_addbutton .rev-burger:hover :first-child,.open .rev-burger :first-child,.open.rev-burger :first-child{transform:translateY(6px) rotate(-45deg)}#dialog_addbutton .rev-burger:hover :nth-child(2),.open .rev-burger :nth-child(2),.open.rev-burger :nth-child(2){transform:rotate(-45deg);opacity:0}#dialog_addbutton .rev-burger:hover :last-child,.open .rev-burger :last-child,.open.rev-burger :last-child{transform:translateY(-6px) rotate(-135deg)}.rev-burger.revb-white{border:2px solid rgba(255,255,255,.2)}.rev-burger.revb-darknoborder,.rev-burger.revb-whitenoborder{border:0}.rev-burger.revb-darknoborder span{background:#333}.rev-burger.revb-whitefull{background:#fff;border:none}.rev-burger.revb-whitefull span{background:#333}.rev-burger.revb-darkfull{background:#333;border:none}.rev-burger.revb-darkfull span,.rev-scroll-btn.revs-fullwhite{background:#fff}@keyframes rev-ani-mouse{0%{opacity:1;top:29%}15%{opacity:1;top:50%}50%{opacity:0;top:50%}100%{opacity:0;top:29%}}.rev-scroll-btn{display:inline-block;position:relative;left:0;right:0;text-align:center;cursor:pointer;width:35px;height:55px;box-sizing:border-box;border:3px solid #fff;border-radius:23px}.rev-scroll-btn>*{display:inline-block;line-height:18px;font-size:13px;font-weight:400;color:#fff;font-family:proxima-nova,"Helvetica Neue",Helvetica,Arial,sans-serif;letter-spacing:2px}.rev-scroll-btn>.active,.rev-scroll-btn>:focus,.rev-scroll-btn>:hover{color:#fff}.rev-scroll-btn>.active,.rev-scroll-btn>:active,.rev-scroll-btn>:focus,.rev-scroll-btn>:hover{opacity:.8}.rev-scroll-btn.revs-fullwhite span{background:#333}.rev-scroll-btn.revs-fulldark{background:#333;border:none}.rev-scroll-btn.revs-fulldark span,.tp-bullet{background:#fff}.rev-scroll-btn span{position:absolute;display:block;top:29%;left:50%;width:8px;height:8px;margin:-4px 0 0 -4px;background:#fff;border-radius:50%;animation:rev-ani-mouse 2.5s linear infinite}.rev-scroll-btn.revs-dark{border-color:#333}.rev-scroll-btn.revs-dark span{background:#333}.rev-control-btn{position:relative;display:inline-block;z-index:5;color:#FFF;font-size:20px;line-height:60px;font-weight:400;font-style:normal;font-family:Raleway;text-decoration:none;text-align:center;background-color:#000;border-radius:50px;text-shadow:none;background-color:rgba(0,0,0,.5);width:60px;height:60px;box-sizing:border-box;cursor:pointer}.rev-cbutton-dark-sr,.rev-cbutton-light-sr{border-radius:3px}.rev-cbutton-light,.rev-cbutton-light-sr{color:#333;background-color:rgba(255,255,255,.75)}.rev-sbutton{line-height:37px;width:37px;height:37px}.rev-sbutton-blue{background-color:#3B5998}.rev-sbutton-lightblue{background-color:#00A0D1}.rev-sbutton-red{background-color:#DD4B39}.tp-bannertimer{visibility:hidden;width:100%;height:5px;background:#000;background:rgba(0,0,0,.15);position:absolute;z-index:200;top:0}.tp-bannertimer.tp-bottom{visibility: hidden!important;top:auto;bottom:0!important;height:5px}.tp-caption img{background:0 0;-ms-filter:"progid:DXImageTransform.Microsoft.gradient(startColorstr=#00FFFFFF,endColorstr=#00FFFFFF)";filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#00FFFFFF, endColorstr=#00FFFFFF);zoom:1}.caption.slidelink a div,.tp-caption.slidelink a div{width:3000px;height:1500px;background:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAUAAAAFCAYAAACNbyblAAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAALEgAACxIB0t1+/AAAABZ0RVh0Q3JlYXRpb24gVGltZQAwNi8yNC8xMn+6RgAAAAAYdEVYdFNvZnR3YXJlAEFkb2JlIEZpcmV3b3Jrc0+zH04AAAAUSURBVAiZY/z//z8DOmDCEKFcEAA2UAMHjYSsRQAAAABJRU5ErkJggg==)}.tp-caption.slidelink a span{background:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAUAAAAFCAYAAACNbyblAAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAALEgAACxIB0t1+/AAAABZ0RVh0Q3JlYXRpb24gVGltZQAwNi8yNC8xMn+6RgAAAAAYdEVYdFNvZnR3YXJlAEFkb2JlIEZpcmV3b3Jrc0+zH04AAAAUSURBVAiZY/z//z8DOmDCEKFcEAA2UAMHjYSsRQAAAABJRU5ErkJggg==)}.tp-loader.spinner0,.tp-loader.spinner5{background-image:url(data:image/gif;base64,R0lGODlhGAAYAPQAAP///wAAAM7Ozvr6+uDg4LCwsOjo6I6OjsjIyJycnNjY2KioqMDAwPLy8nZ2doaGhri4uGhoaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACH+GkNyZWF0ZWQgd2l0aCBhamF4bG9hZC5pbmZvACH5BAAHAAAAIf8LTkVUU0NBUEUyLjADAQAAACwAAAAAGAAYAAAFriAgjiQAQWVaDgr5POSgkoTDjFE0NoQ8iw8HQZQTDQjDn4jhSABhAAOhoTqSDg7qSUQwxEaEwwFhXHhHgzOA1xshxAnfTzotGRaHglJqkJcaVEqCgyoCBQkJBQKDDXQGDYaIioyOgYSXA36XIgYMBWRzXZoKBQUMmil0lgalLSIClgBpO0g+s26nUWddXyoEDIsACq5SsTMMDIECwUdJPw0Mzsu0qHYkw72bBmozIQAh+QQABwABACwAAAAAGAAYAAAFsCAgjiTAMGVaDgR5HKQwqKNxIKPjjFCk0KNXC6ATKSI7oAhxWIhezwhENTCQEoeGCdWIPEgzESGxEIgGBWstEW4QCGGAIJEoxGmGt5ZkgCRQQHkGd2CESoeIIwoMBQUMP4cNeQQGDYuNj4iSb5WJnmeGng0CDGaBlIQEJziHk3sABidDAHBgagButSKvAAoyuHuUYHgCkAZqebw0AgLBQyyzNKO3byNuoSS8x8OfwIchACH5BAAHAAIALAAAAAAYABgAAAW4ICCOJIAgZVoOBJkkpDKoo5EI43GMjNPSokXCINKJCI4HcCRIQEQvqIOhGhBHhUTDhGo4diOZyFAoKEQDxra2mAEgjghOpCgz3LTBIxJ5kgwMBShACREHZ1V4Kg1rS44pBAgMDAg/Sw0GBAQGDZGTlY+YmpyPpSQDiqYiDQoCliqZBqkGAgKIS5kEjQ21VwCyp76dBHiNvz+MR74AqSOdVwbQuo+abppo10ssjdkAnc0rf8vgl8YqIQAh+QQABwADACwAAAAAGAAYAAAFrCAgjiQgCGVaDgZZFCQxqKNRKGOSjMjR0qLXTyciHA7AkaLACMIAiwOC1iAxCrMToHHYjWQiA4NBEA0Q1RpWxHg4cMXxNDk4OBxNUkPAQAEXDgllKgMzQA1pSYopBgonCj9JEA8REQ8QjY+RQJOVl4ugoYssBJuMpYYjDQSliwasiQOwNakALKqsqbWvIohFm7V6rQAGP6+JQLlFg7KDQLKJrLjBKbvAor3IKiEAIfkEAAcABAAsAAAAABgAGAAABbUgII4koChlmhokw5DEoI4NQ4xFMQoJO4uuhignMiQWvxGBIQC+AJBEUyUcIRiyE6CR0CllW4HABxBURTUw4nC4FcWo5CDBRpQaCoF7VjgsyCUDYDMNZ0mHdwYEBAaGMwwHDg4HDA2KjI4qkJKUiJ6faJkiA4qAKQkRB3E0i6YpAw8RERAjA4tnBoMApCMQDhFTuySKoSKMJAq6rD4GzASiJYtgi6PUcs9Kew0xh7rNJMqIhYchACH5BAAHAAUALAAAAAAYABgAAAW0ICCOJEAQZZo2JIKQxqCOjWCMDDMqxT2LAgELkBMZCoXfyCBQiFwiRsGpku0EshNgUNAtrYPT0GQVNRBWwSKBMp98P24iISgNDAS4ipGA6JUpA2WAhDR4eWM/CAkHBwkIDYcGiTOLjY+FmZkNlCN3eUoLDmwlDW+AAwcODl5bYl8wCVYMDw5UWzBtnAANEQ8kBIM0oAAGPgcREIQnVloAChEOqARjzgAQEbczg8YkWJq8nSUhACH5BAAHAAYALAAAAAAYABgAAAWtICCOJGAYZZoOpKKQqDoORDMKwkgwtiwSBBYAJ2owGL5RgxBziQQMgkwoMkhNqAEDARPSaiMDFdDIiRSFQowMXE8Z6RdpYHWnEAWGPVkajPmARVZMPUkCBQkJBQINgwaFPoeJi4GVlQ2Qc3VJBQcLV0ptfAMJBwdcIl+FYjALQgimoGNWIhAQZA4HXSpLMQ8PIgkOSHxAQhERPw7ASTSFyCMMDqBTJL8tf3y2fCEAIfkEAAcABwAsAAAAABgAGAAABa8gII4k0DRlmg6kYZCoOg5EDBDEaAi2jLO3nEkgkMEIL4BLpBAkVy3hCTAQKGAznM0AFNFGBAbj2cA9jQixcGZAGgECBu/9HnTp+FGjjezJFAwFBQwKe2Z+KoCChHmNjVMqA21nKQwJEJRlbnUFCQlFXlpeCWcGBUACCwlrdw8RKGImBwktdyMQEQciB7oACwcIeA4RVwAODiIGvHQKERAjxyMIB5QlVSTLYLZ0sW8hACH5BAAHAAgALAAAAAAYABgAAAW0ICCOJNA0ZZoOpGGQrDoOBCoSxNgQsQzgMZyIlvOJdi+AS2SoyXrK4umWPM5wNiV0UDUIBNkdoepTfMkA7thIECiyRtUAGq8fm2O4jIBgMBA1eAZ6Knx+gHaJR4QwdCMKBxEJRggFDGgQEREPjjAMBQUKIwIRDhBDC2QNDDEKoEkDoiMHDigICGkJBS2dDA6TAAnAEAkCdQ8ORQcHTAkLcQQODLPMIgIJaCWxJMIkPIoAt3EhACH5BAAHAAkALAAAAAAYABgAAAWtICCOJNA0ZZoOpGGQrDoOBCoSxNgQsQzgMZyIlvOJdi+AS2SoyXrK4umWHM5wNiV0UN3xdLiqr+mENcWpM9TIbrsBkEck8oC0DQqBQGGIz+t3eXtob0ZTPgNrIwQJDgtGAgwCWSIMDg4HiiUIDAxFAAoODwxDBWINCEGdSTQkCQcoegADBaQ6MggHjwAFBZUFCm0HB0kJCUy9bAYHCCPGIwqmRq0jySMGmj6yRiEAIfkEAAcACgAsAAAAABgAGAAABbIgII4k0DRlmg6kYZCsOg4EKhLE2BCxDOAxnIiW84l2L4BLZKipBopW8XRLDkeCiAMyMvQAA+uON4JEIo+vqukkKQ6RhLHplVGN+LyKcXA4Dgx5DWwGDXx+gIKENnqNdzIDaiMECwcFRgQCCowiCAcHCZIlCgICVgSfCEMMnA0CXaU2YSQFoQAKUQMMqjoyAglcAAyBAAIMRUYLCUkFlybDeAYJryLNk6xGNCTQXY0juHghACH5BAAHAAsALAAAAAAYABgAAAWzICCOJNA0ZVoOAmkY5KCSSgSNBDE2hDyLjohClBMNij8RJHIQvZwEVOpIekRQJyJs5AMoHA+GMbE1lnm9EcPhOHRnhpwUl3AsknHDm5RN+v8qCAkHBwkIfw1xBAYNgoSGiIqMgJQifZUjBhAJYj95ewIJCQV7KYpzBAkLLQADCHOtOpY5PgNlAAykAEUsQ1wzCgWdCIdeArczBQVbDJ0NAqyeBb64nQAGArBTt8R8mLuyPyEAOwAAAAAAAAAAAA==);background-repeat:no-repeat}.tp-shape{width:100%;height:100%}.tp-caption .rs-starring{display:inline-block}.tp-caption .rs-starring .star-rating{float:none;display:inline-block;vertical-align:top;color:#FFC321!important}.tp-caption .rs-starring .star-rating,.tp-caption .rs-starring-page .star-rating{position:relative;height:1em;width:5.4em;font-family:star;font-size:1em!important}.tp-loader.spinner0,.tp-loader.spinner1{width:40px;height:40px;margin-top:-20px;margin-left:-20px;animation:tp-rotateplane 1.2s infinite ease-in-out;background-color:#fff;border-radius:3px;box-shadow:0 0 20px 0 rgba(0,0,0,.15)}.tp-caption .rs-starring .star-rating:before,.tp-caption .rs-starring-page .star-rating:before{content:"\73\73\73\73\73";color:#E0DADF;float:left;top:0;left:0;position:absolute}.tp-caption .rs-starring .star-rating span{overflow:hidden;float:left;top:0;left:0;position:absolute;padding-top:1.5em;font-size:1em!important}.tp-caption .rs-starring .star-rating span:before{content:"\53\53\53\53\53";top:0;position:absolute;left:0}.tp-loader{top:50%;left:50%;z-index:10000;position:absolute}.tp-loader.spinner0{background-position:center center}.tp-loader.spinner5{background-position:10px 10px;background-color:#fff;margin:-22px;width:44px;height:44px;border-radius:3px}@keyframes tp-rotateplane{0%{transform:perspective(120px) rotateX(0) rotateY(0)}50%{transform:perspective(120px) rotateX(-180.1deg) rotateY(0)}100%{transform:perspective(120px) rotateX(-180deg) rotateY(-179.9deg)}}.tp-loader.spinner2{width:40px;height:40px;margin-top:-20px;margin-left:-20px;background-color:red;box-shadow:0 0 20px 0 rgba(0,0,0,.15);border-radius:100%;animation:tp-scaleout 1s infinite ease-in-out}@keyframes tp-scaleout{0%{transform:scale(0)}100%{transform:scale(1);opacity:0}}.tp-loader.spinner3{margin:-9px 0 0 -35px;width:70px;text-align:center}.tp-loader.spinner3 .bounce1,.tp-loader.spinner3 .bounce2,.tp-loader.spinner3 .bounce3{width:18px;height:18px;background-color:#fff;box-shadow:0 0 20px 0 rgba(0,0,0,.15);border-radius:100%;display:inline-block;animation:tp-bouncedelay 1.4s infinite ease-in-out;animation-fill-mode:both}.tp-loader.spinner3 .bounce1{animation-delay:-.32s}.tp-loader.spinner3 .bounce2{animation-delay:-.16s}@keyframes tp-bouncedelay{0%,100%,80%{transform:scale(0)}40%{transform:scale(1)}}.tp-loader.spinner4{margin:-20px 0 0 -20px;width:40px;height:40px;text-align:center;animation:tp-rotate 2s infinite linear}.tp-loader.spinner4 .dot1,.tp-loader.spinner4 .dot2{width:60%;height:60%;display:inline-block;position:absolute;top:0;background-color:#fff;border-radius:100%;animation:tp-bounce 2s infinite ease-in-out;box-shadow:0 0 20px 0 rgba(0,0,0,.15)}.tp-loader.spinner4 .dot2{top:auto;bottom:0;animation-delay:-1s}@keyframes tp-rotate{100%{transform:rotate(360deg)}}@keyframes tp-bounce{0%,100%{transform:scale(0)}50%{transform:scale(1)}}.tp-bullets.navbar,.tp-tabs.navbar,.tp-thumbs.navbar{border:none;min-height:0;margin:0;border-radius:0}.tp-bullets,.tp-tabs,.tp-thumbs{position:absolute;display:block;z-index:1000;top:0;left:0}.tp-tab,.tp-thumb{cursor:pointer;position:absolute;opacity:.5;box-sizing:border-box}.tp-arr-imgholder,.tp-tab-image,.tp-thumb-image,.tp-videoposter{background-position:center center;background-size:cover;width:100%;height:100%;display:block;position:absolute;top:0;left:0}.tp-tab.selected,.tp-tab:hover,.tp-thumb.selected,.tp-thumb:hover{opacity:1}.tp-tab-mask,.tp-thumb-mask{box-sizing:border-box!important}.tp-tabs,.tp-thumbs{box-sizing:content-box!important}.tp-bullet{width:15px;height:15px;position:absolute;background:rgba(255,255,255,.3);cursor:pointer}.tp-bullet.selected,.tp-bullet:hover{background:#fff}.tparrows{cursor:pointer;background:#000;background:rgba(0,0,0,.5);width:40px;height:40px;position:absolute;display:block;z-index:1000}.tparrows:hover{background:#000}.tparrows:before{font-family:revicons;font-size:15px;color:#fff;display:block;line-height:40px;text-align:center}.hginfo,.hglayerinfo{font-size:12px;font-weight:600}.tparrows.tp-leftarrow:before{content:'\e824'}.tparrows.tp-rightarrow:before{content:'\e825'}body.rtl .tp-kbimg{left:0!important}.dddwrappershadow{box-shadow:0 45px 100px rgba(0,0,0,.4)}.hglayerinfo{position:fixed;bottom:0;left:0;color:#FFF;line-height:20px;background:rgba(0,0,0,.75);padding:5px 10px;z-index:2000;white-space:normal}.helpgrid,.hginfo{position:absolute}.hginfo{top:-2px;left:-2px;color:#e74c3c;background:#000;padding:2px 5px}.indebugmode .tp-caption:hover{border:1px dashed #c0392b!important}.helpgrid{border:2px dashed #c0392b;top:0;left:0;z-index:0}#revsliderlogloglog{padding:15px;color:#fff;position:fixed;top:0;left:0;width:200px;height:150px;background:rgba(0,0,0,.7);z-index:100000;font-size:10px;overflow:scroll}.aden{filter:hue-rotate(-20deg) contrast(.9) saturate(.85) brightness(1.2)}.aden::after{background:linear-gradient(to right,rgba(66,10,14,.2),transparent);mix-blend-mode:darken}.perpetua::after,.reyes::after{mix-blend-mode:soft-light;opacity:.5}.inkwell{filter:sepia(.3) contrast(1.1) brightness(1.1) grayscale(1)}.perpetua::after{background:linear-gradient(to bottom,#005b9a,#e6c13d)}.reyes{filter:sepia(.22) brightness(1.1) contrast(.85) saturate(.75)}.reyes::after{background:#efcdad}.gingham{filter:brightness(1.05) hue-rotate(-10deg)}.gingham::after{background:linear-gradient(to right,rgba(66,10,14,.2),transparent);mix-blend-mode:darken}.toaster{filter:contrast(1.5) brightness(.9)}.toaster::after{background:radial-gradient(circle,#804e0f,#3b003b);mix-blend-mode:screen}.walden{filter:brightness(1.1) hue-rotate(-10deg) sepia(.3) saturate(1.6)}.walden::after{background:#04c;mix-blend-mode:screen;opacity:.3}.hudson{filter:brightness(1.2) contrast(.9) saturate(1.1)}.hudson::after{background:radial-gradient(circle,#a6b1ff 50%,#342134);mix-blend-mode:multiply;opacity:.5}.earlybird{filter:contrast(.9) sepia(.2)}.earlybird::after{background:radial-gradient(circle,#d0ba8e 20%,#360309 85%,#1d0210 100%);mix-blend-mode:overlay}.mayfair{filter:contrast(1.1) saturate(1.1)}.mayfair::after{background:radial-gradient(circle at 40% 40%,rgba(255,255,255,.8),rgba(255,200,200,.6),#111 60%);mix-blend-mode:overlay;opacity:.4}.lofi{filter:saturate(1.1) contrast(1.5)}.lofi::after{background:radial-gradient(circle,transparent 70%,#222 150%);mix-blend-mode:multiply}._1977{filter:contrast(1.1) brightness(1.1) saturate(1.3)}._1977:after{background:rgba(243,106,188,.3);mix-blend-mode:screen}.brooklyn{filter:contrast(.9) brightness(1.1)}.brooklyn::after{background:radial-gradient(circle,rgba(168,223,193,.4) 70%,#c4b7c8);mix-blend-mode:overlay}.xpro2{filter:sepia(.3)}.xpro2::after{background:radial-gradient(circle,#e6e7e0 40%,rgba(43,42,161,.6) 110%);mix-blend-mode:color-burn}.nashville{filter:sepia(.2) contrast(1.2) brightness(1.05) saturate(1.2)}.nashville::after{background:rgba(0,70,150,.4);mix-blend-mode:lighten}.nashville::before{background:rgba(247,176,153,.56);mix-blend-mode:darken}.lark{filter:contrast(.9)}.lark::after{background:rgba(242,242,242,.8);mix-blend-mode:darken}.lark::before{background:#22253f;mix-blend-mode:color-dodge}.moon{filter:grayscale(1) contrast(1.1) brightness(1.1)}.moon::before{background:#a0a0a0;mix-blend-mode:soft-light}.moon::after{background:#383838;mix-blend-mode:lighten}.clarendon{filter:contrast(1.2) saturate(1.35)}.clarendon:before{background:rgba(127,187,227,.2);mix-blend-mode:overlay}.willow{filter:grayscale(.5) contrast(.95) brightness(.9)}.willow::before{background-color:radial-gradient(40%,circle,#d4a9af 55%,#000 150%);mix-blend-mode:overlay}.willow::after{background-color:#d8cdcb;mix-blend-mode:color}.rise{filter:brightness(1.05) sepia(.2) contrast(.9) saturate(.9)}.rise::after{background:radial-gradient(circle,rgba(232,197,152,.8),transparent 90%);mix-blend-mode:overlay;opacity:.6}.rise::before{background:radial-gradient(circle,rgba(236,205,169,.15) 55%,rgba(50,30,7,.4));mix-blend-mode:multiply}._1977:after,._1977:before,.aden:after,.aden:before,.brooklyn:after,.brooklyn:before,.clarendon:after,.clarendon:before,.earlybird:after,.earlybird:before,.gingham:after,.gingham:before,.hudson:after,.hudson:before,.inkwell:after,.inkwell:before,.lark:after,.lark:before,.lofi:after,.lofi:before,.mayfair:after,.mayfair:before,.moon:after,.moon:before,.nashville:after,.nashville:before,.perpetua:after,.perpetua:before,.reyes:after,.reyes:before,.rise:after,.rise:before,.slumber:after,.slumber:before,.toaster:after,.toaster:before,.walden:after,.walden:before,.willow:after,.willow:before,.xpro2:after,.xpro2:before{content:'';display:block;height:100%;width:100%;top:0;left:0;position:absolute;pointer-events:none}._1977,.aden,.brooklyn,.clarendon,.earlybird,.gingham,.hudson,.inkwell,.lark,.lofi,.mayfair,.moon,.nashville,.perpetua,.reyes,.rise,.slumber,.toaster,.walden,.willow,.xpro2{position:relative}._1977 img,.aden img,.brooklyn img,.clarendon img,.earlybird img,.gingham img,.hudson img,.inkwell img,.lark img,.lofi img,.mayfair img,.moon img,.nashville img,.perpetua img,.reyes img,.rise img,.slumber img,.toaster img,.walden img,.willow img,.xpro2 img{width:100%;z-index:1}._1977:before,.aden:before,.brooklyn:before,.clarendon:before,.earlybird:before,.gingham:before,.hudson:before,.inkwell:before,.lark:before,.lofi:before,.mayfair:before,.moon:before,.nashville:before,.perpetua:before,.reyes:before,.rise:before,.slumber:before,.toaster:before,.walden:before,.willow:before,.xpro2:before{z-index:2}._1977:after,.aden:after,.brooklyn:after,.clarendon:after,.earlybird:after,.gingham:after,.hudson:after,.inkwell:after,.lark:after,.lofi:after,.mayfair:after,.moon:after,.nashville:after,.perpetua:after,.reyes:after,.rise:after,.slumber:after,.toaster:after,.walden:after,.willow:after,.xpro2:after{z-index:3}.slumber{filter:saturate(.66) brightness(1.05)}.slumber::after{background:rgba(125,105,24,.5);mix-blend-mode:soft-light}.slumber::before{background:rgba(69,41,12,.4);mix-blend-mode:lighten}.tp-kbimg-wrap:after,.tp-kbimg-wrap:before{height:500%;width:500%}
/*-----------------------------------------------------------------------------

-	Revolution Slider 5.0 Layer Style Settings -

Screen Stylesheet

version:   	5.0.0
date:      	18/03/15
author:		themepunch
email:     	info@themepunch.com
website:   	http://www.themepunch.com
-----------------------------------------------------------------------------*/

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.tp-caption.Twitter-Content a,.tp-caption.Twitter-Content a:visited
{
	color:#0084B4!important;
}

.tp-caption.Twitter-Content a:hover
{
	color:#0084B4!important;
	text-decoration:underline!important;
}

.tp-caption.medium_grey,.medium_grey
{
	background-color:#888;
	border-style:none;
	border-width:0;
	color:#fff;
	font-family:Arial;
	font-size:20px;
	font-weight:700;
	line-height:20px;
	margin:0;
	padding:2px 4px;
	position:absolute;
	text-shadow:0 2px 5px rgba(0,0,0,0.5);
	white-space:nowrap;
}

.tp-caption.small_text,.small_text
{
	border-style:none;
	border-width:0;
	color:#fff;
	font-family:Arial;
	font-size:14px;
	font-weight:700;
	line-height:20px;
	margin:0;
	position:absolute;
	text-shadow:0 2px 5px rgba(0,0,0,0.5);
	white-space:nowrap;
}

.tp-caption.medium_text,.medium_text
{
	border-style:none;
	border-width:0;
	color:#fff;
	font-family:Arial;
	font-size:20px;
	font-weight:700;
	line-height:20px;
	margin:0;
	position:absolute;
	text-shadow:0 2px 5px rgba(0,0,0,0.5);
	white-space:nowrap;
}

.tp-caption.large_text,.large_text
{
	border-style:none;
	border-width:0;
	color:#fff;
	font-family:Arial;
	font-size:40px;
	font-weight:700;
	line-height:40px;
	margin:0;
	position:absolute;
	text-shadow:0 2px 5px rgba(0,0,0,0.5);
	white-space:nowrap;
}

.tp-caption.very_large_text,.very_large_text
{
	border-style:none;
	border-width:0;
	color:#fff;
	font-family:Arial;
	font-size:60px;
	font-weight:700;
	letter-spacing:-2px;
	line-height:60px;
	margin:0;
	position:absolute;
	text-shadow:0 2px 5px rgba(0,0,0,0.5);
	white-space:nowrap;
}

.tp-caption.very_big_white,.very_big_white
{
	background-color:#000;
	border-style:none;
	border-width:0;
	color:#fff;
	font-family:Arial;
	font-size:60px;
	font-weight:800;
	line-height:60px;
	margin:0;
	padding:1px 4px 0;
	position:absolute;
	text-shadow:none;
	white-space:nowrap;
}

.tp-caption.very_big_black,.very_big_black
{
	background-color:#fff;
	border-style:none;
	border-width:0;
	color:#000;
	font-family:Arial;
	font-size:60px;
	font-weight:700;
	line-height:60px;
	margin:0;
	padding:1px 4px 0;
	position:absolute;
	text-shadow:none;
	white-space:nowrap;
}

.tp-caption.modern_medium_fat,.modern_medium_fat
{
	border-style:none;
	border-width:0;
	color:#000;
	font-family:"Open Sans", sans-serif;
	font-size:24px;
	font-weight:800;
	line-height:20px;
	margin:0;
	position:absolute;
	text-shadow:none;
	white-space:nowrap;
}

.tp-caption.modern_medium_fat_white,.modern_medium_fat_white
{
	border-style:none;
	border-width:0;
	color:#fff;
	font-family:"Open Sans", sans-serif;
	font-size:24px;
	font-weight:800;
	line-height:20px;
	margin:0;
	position:absolute;
	text-shadow:none;
	white-space:nowrap;
}

.tp-caption.modern_medium_light,.modern_medium_light
{
	border-style:none;
	border-width:0;
	color:#000;
	font-family:"Open Sans", sans-serif;
	font-size:24px;
	font-weight:300;
	line-height:20px;
	margin:0;
	position:absolute;
	text-shadow:none;
	white-space:nowrap;
}

.tp-caption.modern_big_bluebg,.modern_big_bluebg
{
	background-color:#4e5b6c;
	border-style:none;
	border-width:0;
	color:#fff;
	font-family:"Open Sans", sans-serif;
	font-size:30px;
	font-weight:800;
	letter-spacing:0;
	line-height:36px;
	margin:0;
	padding:3px 10px;
	position:absolute;
	text-shadow:none;
}

.tp-caption.modern_big_redbg,.modern_big_redbg
{
	background-color:#de543e;
	border-style:none;
	border-width:0;
	color:#fff;
	font-family:"Open Sans", sans-serif;
	font-size:30px;
	font-weight:300;
	letter-spacing:0;
	line-height:36px;
	margin:0;
	padding:1px 10px 3px;
	position:absolute;
	text-shadow:none;
}

.tp-caption.modern_small_text_dark,.modern_small_text_dark
{
	border-style:none;
	border-width:0;
	color:#555;
	font-family:Arial;
	font-size:14px;
	line-height:22px;
	margin:0;
	position:absolute;
	text-shadow:none;
	white-space:nowrap;
}

.tp-caption.boxshadow,.boxshadow
{		
	box-shadow:0 0 20px rgba(0,0,0,0.5);
}

.tp-caption.black,.black
{
	color:#000;
	text-shadow:none;
}

.tp-caption.noshadow,.noshadow
{
	text-shadow:none;
}

.tp-caption.thinheadline_dark,.thinheadline_dark
{
	background-color:transparent;
	color:rgba(0,0,0,0.85);
	font-family:"Open Sans";
	font-size:30px;
	font-weight:300;
	line-height:30px;
	position:absolute;
	text-shadow:none;
}

.tp-caption.thintext_dark,.thintext_dark
{
	background-color:transparent;
	color:rgba(0,0,0,0.85);
	font-family:"Open Sans";
	font-size:16px;
	font-weight:300;
	line-height:26px;
	position:absolute;
	text-shadow:none;
}

.tp-caption.largeblackbg,.largeblackbg
{
	
	
	background-color:#000;
	border-radius:0;
	color:#fff;
	font-family:"Open Sans";
	font-size:50px;
	font-weight:300;
	line-height:70px;
	padding:0 20px;
	position:absolute;
	text-shadow:none;
}

.tp-caption.largepinkbg,.largepinkbg
{
	
	
	background-color:#db4360;
	border-radius:0;
	color:#fff;
	font-family:"Open Sans";
	font-size:50px;
	font-weight:300;
	line-height:70px;
	padding:0 20px;
	position:absolute;
	text-shadow:none;
}

.tp-caption.largewhitebg,.largewhitebg
{
	
	
	background-color:#fff;
	border-radius:0;
	color:#000;
	font-family:"Open Sans";
	font-size:50px;
	font-weight:300;
	line-height:70px;
	padding:0 20px;
	position:absolute;
	text-shadow:none;
}

.tp-caption.largegreenbg,.largegreenbg
{
	
	
	background-color:#67ae73;
	border-radius:0;
	color:#fff;
	font-family:"Open Sans";
	font-size:50px;
	font-weight:300;
	line-height:70px;
	padding:0 20px;
	position:absolute;
	text-shadow:none;
}

.tp-caption.excerpt,.excerpt
{
	background-color:rgba(0,0,0,1);
	border-color:#fff;
	border-style:none;
	border-width:0;
	color:#fff;
	font-family:Arial;
	font-size:36px;
	font-weight:700;
	height:auto;
	letter-spacing:-1.5px;
	line-height:36px;
	margin:0;
	padding:1px 4px 0;
	text-decoration:none;
	text-shadow:none;
	white-space:normal!important;
	width:150px;
}

.tp-caption.large_bold_grey,.large_bold_grey
{
	background-color:transparent;
	border-color:#ffd658;
	border-style:none;
	border-width:0;
	color:#666;
	font-family:"Open Sans";
	font-size:60px;
	font-weight:800;
	line-height:60px;
	margin:0;
	padding:1px 4px 0;
	text-decoration:none;
	text-shadow:none;
}

.tp-caption.medium_thin_grey,.medium_thin_grey
{
	background-color:transparent;
	border-color:#ffd658;
	border-style:none;
	border-width:0;
	color:#666;
	font-family:"Open Sans";
	font-size:34px;
	font-weight:300;
	line-height:30px;
	margin:0;
	padding:1px 4px 0;
	text-decoration:none;
	text-shadow:none;
}

.tp-caption.small_thin_grey,.small_thin_grey
{
	background-color:transparent;
	border-color:#ffd658;
	border-style:none;
	border-width:0;
	color:#757575;
	font-family:"Open Sans";
	font-size:18px;
	font-weight:300;
	line-height:26px;
	margin:0;
	padding:1px 4px 0;
	text-decoration:none;
	text-shadow:none;
}

.tp-caption.lightgrey_divider,.lightgrey_divider
{
	background-color:rgba(235,235,235,1);
	background-position:initial;
	background-repeat:initial;
	border-color:#222;
	border-style:none;
	border-width:0;
	height:3px;
	text-decoration:none;
	width:370px;
}

.tp-caption.large_bold_darkblue,.large_bold_darkblue
{
	background-color:transparent;
	border-color:#ffd658;
	border-style:none;
	border-width:0;
	color:#34495e;
	font-family:"Open Sans";
	font-size:58px;
	font-weight:800;
	line-height:60px;
	text-decoration:none;
}

.tp-caption.medium_bg_darkblue,.medium_bg_darkblue
{
	background-color:#34495e;
	border-color:#ffd658;
	border-style:none;
	border-width:0;
	color:#fff;
	font-family:"Open Sans";
	font-size:20px;
	font-weight:800;
	line-height:20px;
	padding:10px;
	text-decoration:none;
}

.tp-caption.medium_bold_red,.medium_bold_red
{
	background-color:transparent;
	border-color:#ffd658;
	border-style:none;
	border-width:0;
	color:#e33a0c;
	font-family:"Open Sans";
	font-size:24px;
	font-weight:800;
	line-height:30px;
	padding:0;
	text-decoration:none;
}

.tp-caption.medium_light_red,.medium_light_red
{
	background-color:transparent;
	border-color:#ffd658;
	border-style:none;
	border-width:0;
	color:#e33a0c;
	font-family:"Open Sans";
	font-size:21px;
	font-weight:300;
	line-height:26px;
	padding:0;
	text-decoration:none;
}

.tp-caption.medium_bg_red,.medium_bg_red
{
	background-color:#e33a0c;
	border-color:#ffd658;
	border-style:none;
	border-width:0;
	color:#fff;
	font-family:"Open Sans";
	font-size:20px;
	font-weight:800;
	line-height:20px;
	padding:10px;
	text-decoration:none;
}

.tp-caption.medium_bold_orange,.medium_bold_orange
{
	background-color:transparent;
	border-color:#ffd658;
	border-style:none;
	border-width:0;
	color:#f39c12;
	font-family:"Open Sans";
	font-size:24px;
	font-weight:800;
	line-height:30px;
	text-decoration:none;
}

.tp-caption.medium_bg_orange,.medium_bg_orange
{
	background-color:#f39c12;
	border-color:#ffd658;
	border-style:none;
	border-width:0;
	color:#fff;
	font-family:"Open Sans";
	font-size:20px;
	font-weight:800;
	line-height:20px;
	padding:10px;
	text-decoration:none;
}

.tp-caption.grassfloor,.grassfloor
{
	background-color:rgba(160,179,151,1);
	border-color:#222;
	border-style:none;
	border-width:0;
	height:150px;
	text-decoration:none;
	width:4000px;
}

.tp-caption.large_bold_white,.large_bold_white
{
	background-color:transparent;
	border-color:#ffd658;
	border-style:none;
	border-width:0;
	color:#fff;
	font-family:"Open Sans";
	font-size:58px;
	font-weight:800;
	line-height:60px;
	text-decoration:none;
}

.tp-caption.medium_light_white,.medium_light_white
{
	background-color:transparent;
	border-color:#ffd658;
	border-style:none;
	border-width:0;
	color:#fff;
	font-family:"Open Sans";
	font-size:30px;
	font-weight:300;
	line-height:36px;
	padding:0;
	text-decoration:none;
}

.tp-caption.mediumlarge_light_white,.mediumlarge_light_white
{
	background-color:transparent;
	border-color:#ffd658;
	border-style:none;
	border-width:0;
	color:#fff;
	font-family:"Open Sans";
	font-size:34px;
	font-weight:300;
	line-height:40px;
	padding:0;
	text-decoration:none;
}

.tp-caption.mediumlarge_light_white_center,.mediumlarge_light_white_center
{
	background-color:transparent;
	border-color:#ffd658;
	border-style:none;
	border-width:0;
	color:#fff;
	font-family:"Open Sans";
	font-size:34px;
	font-weight:300;
	line-height:40px;
	padding:0;
	text-align:center;
	text-decoration:none;
}

.tp-caption.medium_bg_asbestos,.medium_bg_asbestos
{
	background-color:#7f8c8d;
	border-color:#ffd658;
	border-style:none;
	border-width:0;
	color:#fff;
	font-family:"Open Sans";
	font-size:20px;
	font-weight:800;
	line-height:20px;
	padding:10px;
	text-decoration:none;
}

.tp-caption.medium_light_black,.medium_light_black
{
	background-color:transparent;
	border-color:#ffd658;
	border-style:none;
	border-width:0;
	color:#000;
	font-family:"Open Sans";
	font-size:30px;
	font-weight:300;
	line-height:36px;
	padding:0;
	text-decoration:none;
}

.tp-caption.large_bold_black,.large_bold_black
{
	background-color:transparent;
	border-color:#ffd658;
	border-style:none;
	border-width:0;
	color:#000;
	font-family:"Open Sans";
	font-size:58px;
	font-weight:800;
	line-height:60px;
	text-decoration:none;
}

.tp-caption.mediumlarge_light_darkblue,.mediumlarge_light_darkblue
{
	background-color:transparent;
	border-color:#ffd658;
	border-style:none;
	border-width:0;
	color:#34495e;
	font-family:"Open Sans";
	font-size:34px;
	font-weight:300;
	line-height:40px;
	padding:0;
	text-decoration:none;
}

.tp-caption.small_light_white,.small_light_white
{
	background-color:transparent;
	border-color:#ffd658;
	border-style:none;
	border-width:0;
	color:#fff;
	font-family:"Open Sans";
	font-size:17px;
	font-weight:300;
	line-height:28px;
	padding:0;
	text-decoration:none;
}

.tp-caption.roundedimage,.roundedimage
{
	border-color:#222;
	border-style:none;
	border-width:0;
}

.tp-caption.large_bg_black,.large_bg_black
{
	background-color:#000;
	border-color:#ffd658;
	border-style:none;
	border-width:0;
	color:#fff;
	font-family:"Open Sans";
	font-size:40px;
	font-weight:800;
	line-height:40px;
	padding:10px 20px 15px;
	text-decoration:none;
}

.tp-caption.mediumwhitebg,.mediumwhitebg
{
	background-color:#fff;
	border-color:#000;
	border-style:none;
	border-width:0;
	color:#000;
	font-family:"Open Sans";
	font-size:30px;
	font-weight:300;
	line-height:30px;
	padding:5px 15px 10px;
	text-decoration:none;
	text-shadow:none;
}

.tp-caption.maincaption,.maincaption
{
	background-color:transparent;
	border-color:#000;
	border-style:none;
	border-width:0;
	color:#212a40;
	font-family:roboto;
	font-size:33px;
	font-weight:500;
	line-height:43px;
	text-decoration:none;
	text-shadow:none;
}

.tp-caption.miami_title_60px,.miami_title_60px
{
	background-color:transparent;
	border-color:#000;
	border-style:none;
	border-width:0;
	color:#fff;
	font-family:"Source Sans Pro";
	font-size:60px;
	font-weight:700;
	letter-spacing:1px;
	line-height:60px;
	text-decoration:none;
	text-shadow:none;
}

.tp-caption.miami_subtitle,.miami_subtitle
{
	background-color:transparent;
	border-color:#000;
	border-style:none;
	border-width:0;
	color:rgba(255,255,255,0.65);
	font-family:"Source Sans Pro";
	font-size:17px;
	font-weight:400;
	letter-spacing:2px;
	line-height:24px;
	text-decoration:none;
	text-shadow:none;
}

.tp-caption.divideline30px,.divideline30px
{
	background:#fff;
	background-color:#fff;
	border-color:#222;
	border-style:none;
	border-width:0;
	height:2px;
	min-width:30px;
	text-decoration:none;
}

.tp-caption.Miami_nostyle,.Miami_nostyle
{
	border-color:#222;
	border-style:none;
	border-width:0;
}

.tp-caption.miami_content_light,.miami_content_light
{
	background-color:transparent;
	border-color:#000;
	border-style:none;
	border-width:0;
	color:#fff;
	font-family:"Source Sans Pro";
	font-size:22px;
	font-weight:400;
	letter-spacing:0;
	line-height:28px;
	text-decoration:none;
	text-shadow:none;
}

.tp-caption.miami_title_60px_dark,.miami_title_60px_dark
{
	background-color:transparent;
	border-color:#000;
	border-style:none;
	border-width:0;
	color:#333;
	font-family:"Source Sans Pro";
	font-size:60px;
	font-weight:700;
	letter-spacing:1px;
	line-height:60px;
	text-decoration:none;
	text-shadow:none;
}

.tp-caption.miami_content_dark,.miami_content_dark
{
	background-color:transparent;
	border-color:#000;
	border-style:none;
	border-width:0;
	color:#666;
	font-family:"Source Sans Pro";
	font-size:22px;
	font-weight:400;
	letter-spacing:0;
	line-height:28px;
	text-decoration:none;
	text-shadow:none;
}

.tp-caption.divideline30px_dark,.divideline30px_dark
{
	background-color:#333;
	border-color:#222;
	border-style:none;
	border-width:0;
	height:2px;
	min-width:30px;
	text-decoration:none;
}

.tp-caption.ellipse70px,.ellipse70px
{
	background-color:rgba(0,0,0,0.14902);
	border-color:#222;
	border-radius:50px 50px 50px 50px;
	border-style:none;
	border-width:0;
	cursor:pointer;
	line-height:1px;
	min-height:70px;
	min-width:70px;
	text-decoration:none;
}

.tp-caption.arrowicon,.arrowicon
{
	border-color:#222;
	border-style:none;
	border-width:0;
	line-height:1px;
}

.tp-caption.MarkerDisplay,.MarkerDisplay
{
	background-color:transparent;
	border-color:#000;
	border-radius:0 0 0 0;
	border-style:none;
	border-width:0;
	font-family:"Permanent Marker";
	font-style:normal;
	padding:0;
	text-decoration:none;
	text-shadow:none;
}

.tp-caption.Restaurant-Display,.Restaurant-Display
{
	background-color:transparent;
	border-color:transparent;
	border-radius:0 0 0 0;
	border-style:none;
	border-width:0;
	color:#fff;
	font-family:Roboto;
	font-size:120px;
	font-style:normal;
	font-weight:700;
	line-height:120px;
	padding:0;
	text-decoration:none;
}

.tp-caption.Restaurant-Cursive,.Restaurant-Cursive
{
	background-color:transparent;
	border-color:transparent;
	border-radius:0 0 0 0;
	border-style:none;
	border-width:0;
	color:#fff;
	font-family:"Nothing you could do";
	font-size:30px;
	font-style:normal;
	font-weight:400;
	letter-spacing:2px;
	line-height:30px;
	padding:0;
	text-decoration:none;
}

.tp-caption.Restaurant-ScrollDownText,.Restaurant-ScrollDownText
{
	background-color:transparent;
	border-color:transparent;
	border-radius:0 0 0 0;
	border-style:none;
	border-width:0;
	color:#fff;
	font-family:Roboto;
	font-size:17px;
	font-style:normal;
	font-weight:400;
	letter-spacing:2px;
	line-height:17px;
	padding:0;
	text-decoration:none;
}

.tp-caption.Restaurant-Description,.Restaurant-Description
{
	background-color:transparent;
	border-color:transparent;
	border-radius:0 0 0 0;
	border-style:none;
	border-width:0;
	color:#fff;
	font-family:Roboto;
	font-size:20px;
	font-style:normal;
	font-weight:300;
	letter-spacing:3px;
	line-height:30px;
	padding:0;
	text-decoration:none;
}

.tp-caption.Restaurant-Price,.Restaurant-Price
{
	background-color:transparent;
	border-color:transparent;
	border-radius:0 0 0 0;
	border-style:none;
	border-width:0;
	color:#fff;
	font-family:Roboto;
	font-size:30px;
	font-style:normal;
	font-weight:300;
	letter-spacing:3px;
	line-height:30px;
	padding:0;
	text-decoration:none;
}

.tp-caption.Restaurant-Menuitem,.Restaurant-Menuitem
{
	background-color:rgba(0,0,0,1.00);
	border-color:transparent;
	border-radius:0 0 0 0;
	border-style:none;
	border-width:0;
	color:rgba(255,255,255,1.00);
	font-family:Roboto;
	font-size:17px;
	font-style:normal;
	font-weight:400;
	letter-spacing:2px;
	line-height:17px;
	padding:10px 30px;
	text-align:left;
	text-decoration:none;
}

.tp-caption.Furniture-LogoText,.Furniture-LogoText
{
	background-color:transparent;
	border-color:transparent;
	border-radius:0 0 0 0;
	border-style:none;
	border-width:0;
	color:rgba(230,207,163,1.00);
	font-family:Raleway;
	font-size:160px;
	font-style:normal;
	font-weight:300;
	line-height:150px;
	padding:0;
	text-decoration:none;
	text-shadow:none;
}

.tp-caption.Furniture-Plus,.Furniture-Plus
{
	background-color:rgba(255,255,255,1.00);
	border-color:transparent;
	border-radius:30px 30px 30px 30px;
	border-style:none;
	border-width:0;
	box-shadow:rgba(0,0,0,0.1) 0 1px 3px;
	color:rgba(230,207,163,1.00);
	font-family:Raleway;
	font-size:20px;
	font-style:normal;
	font-weight:400;
	line-height:20px;
	padding:6px 7px 4px;
	text-decoration:none;
	text-shadow:none;
}

.tp-caption.Furniture-Title,.Furniture-Title
{
	background-color:transparent;
	border-color:transparent;
	border-radius:0 0 0 0;
	border-style:none;
	border-width:0;
	color:rgba(0,0,0,1.00);
	font-family:Raleway;
	font-size:20px;
	font-style:normal;
	font-weight:700;
	letter-spacing:3px;
	line-height:20px;
	padding:0;
	text-decoration:none;
	text-shadow:none;
}

.tp-caption.Furniture-Subtitle,.Furniture-Subtitle
{
	background-color:transparent;
	border-color:transparent;
	border-radius:0 0 0 0;
	border-style:none;
	border-width:0;
	color:rgba(0,0,0,1.00);
	font-family:Raleway;
	font-size:17px;
	font-style:normal;
	font-weight:300;
	line-height:20px;
	padding:0;
	text-decoration:none;
	text-shadow:none;
}

.tp-caption.Gym-Display,.Gym-Display
{
	background-color:transparent;
	border-color:transparent;
	border-radius:0 0 0 0;
	border-style:none;
	border-width:0;
	color:rgba(255,255,255,1.00);
	font-family:Raleway;
	font-size:80px;
	font-style:normal;
	font-weight:900;
	line-height:70px;
	padding:0;
	text-decoration:none;
}

.tp-caption.Gym-Subline,.Gym-Subline
{
	background-color:transparent;
	border-color:transparent;
	border-radius:0 0 0 0;
	border-style:none;
	border-width:0;
	color:rgba(255,255,255,1.00);
	font-family:Raleway;
	font-size:30px;
	font-style:normal;
	font-weight:100;
	letter-spacing:5px;
	line-height:30px;
	padding:0;
	text-decoration:none;
}

.tp-caption.Gym-SmallText,.Gym-SmallText
{
	background-color:transparent;
	border-color:transparent;
	border-radius:0 0 0 0;
	border-style:none;
	border-width:0;
	color:rgba(255,255,255,1.00);
	font-family:Raleway;
	font-size:17px;
	font-style:normal;
	font-weight:300;
	line-height:22;
	padding:0;
	text-decoration:none;
	text-shadow:none;
}

.tp-caption.Fashion-SmallText,.Fashion-SmallText
{
	background-color:transparent;
	border-color:transparent;
	border-radius:0 0 0 0;
	border-style:none;
	border-width:0;
	color:rgba(255,255,255,1.00);
	font-family:Raleway;
	font-size:12px;
	font-style:normal;
	font-weight:600;
	letter-spacing:2px;
	line-height:20px;
	padding:0;
	text-decoration:none;
}

.tp-caption.Fashion-BigDisplay,.Fashion-BigDisplay
{
	background-color:transparent;
	border-color:transparent;
	border-radius:0 0 0 0;
	border-style:none;
	border-width:0;
	color:rgba(0,0,0,1.00);
	font-family:Raleway;
	font-size:60px;
	font-style:normal;
	font-weight:900;
	letter-spacing:2px;
	line-height:60px;
	padding:0;
	text-decoration:none;
}

.tp-caption.Fashion-TextBlock,.Fashion-TextBlock
{
	background-color:transparent;
	border-color:transparent;
	border-radius:0 0 0 0;
	border-style:none;
	border-width:0;
	color:rgba(0,0,0,1.00);
	font-family:Raleway;
	font-size:20px;
	font-style:normal;
	font-weight:400;
	letter-spacing:2px;
	line-height:40px;
	padding:0;
	text-decoration:none;
}

.tp-caption.Sports-Display,.Sports-Display
{
	background-color:transparent;
	border-color:transparent;
	border-radius:0 0 0 0;
	border-style:none;
	border-width:0;
	color:rgba(255,255,255,1.00);
	font-family:Raleway;
	font-size:130px;
	font-style:normal;
	font-weight:100;
	letter-spacing:13px;
	line-height:130px;
	padding:0;
	text-decoration:none;
}

.tp-caption.Sports-DisplayFat,.Sports-DisplayFat
{
	background-color:transparent;
	border-color:transparent;
	border-radius:0 0 0 0;
	border-style:none;
	border-width:0;
	color:rgba(255,255,255,1.00);
	font-family:Raleway;
	font-size:130px;
	font-style:normal;
	font-weight:900;
	line-height:130px;
	padding:0;
	text-decoration:none;
}

.tp-caption.Sports-Subline,.Sports-Subline
{
	background-color:transparent;
	border-color:transparent;
	border-radius:0 0 0 0;
	border-style:none;
	border-width:0;
	color:rgba(0,0,0,1.00);
	font-family:Raleway;
	font-size:32px;
	font-style:normal;
	font-weight:400;
	letter-spacing:4px;
	line-height:32px;
	padding:0;
	text-decoration:none;
}

.tp-caption.Instagram-Caption,.Instagram-Caption
{
	background-color:transparent;
	border-color:transparent;
	border-radius:0 0 0 0;
	border-style:none;
	border-width:0;
	color:rgba(255,255,255,1.00);
	font-family:Roboto;
	font-size:20px;
	font-style:normal;
	font-weight:900;
	line-height:20px;
	padding:0;
	text-decoration:none;
}

.tp-caption.News-Title,.News-Title
{
	background-color:transparent;
	border-color:transparent;
	border-radius:0 0 0 0;
	border-style:none;
	border-width:0;
	color:rgba(255,255,255,1.00);
	font-family:"Roboto Slab";
	font-size:70px;
	font-style:normal;
	font-weight:400;
	line-height:60px;
	padding:0;
	text-decoration:none;
}

.tp-caption.News-Subtitle,.News-Subtitle
{
	background-color:rgba(255,255,255,0);
	border-color:transparent;
	border-radius:0 0 0 0;
	border-style:none;
	border-width:0;
	color:rgba(255,255,255,1.00);
	font-family:"Roboto Slab";
	font-size:15px;
	font-style:normal;
	font-weight:300;
	line-height:24px;
	padding:0;
	text-decoration:none;
}

.tp-caption.News-Subtitle:hover,.News-Subtitle:hover
{
	background-color:rgba(255,255,255,0);
	border-color:transparent;
	border-radius:0 0 0 0;
	border-style:solid;
	border-width:0;
	color:rgba(255,255,255,0.65);
	text-decoration:none;
}

.tp-caption.Photography-Display,.Photography-Display
{
	background-color:transparent;
	border-color:transparent;
	border-radius:0 0 0 0;
	border-style:none;
	border-width:0;
	color:rgba(255,255,255,1.00);
	font-family:Raleway;
	font-size:80px;
	font-style:normal;
	font-weight:100;
	letter-spacing:5px;
	line-height:70px;
	padding:0;
	text-decoration:none;
}

.tp-caption.Photography-Subline,.Photography-Subline
{
	background-color:transparent;
	border-color:transparent;
	border-radius:0 0 0 0;
	border-style:none;
	border-width:0;
	color:rgba(119,119,119,1.00);
	font-family:Raleway;
	font-size:20px;
	font-style:normal;
	font-weight:300;
	letter-spacing:3px;
	line-height:30px;
	padding:0;
	text-decoration:none;
}

.tp-caption.Photography-ImageHover,.Photography-ImageHover
{
	background-color:transparent;
	border-color:rgba(255,255,255,0);
	border-radius:0 0 0 0;
	border-style:none;
	border-width:0;
	color:rgba(255,255,255,1.00);
	font-size:20px;
	font-style:normal;
	font-weight:400;
	line-height:22;
	padding:0;
	text-decoration:none;
}

.tp-caption.Photography-ImageHover:hover,.Photography-ImageHover:hover
{
	background-color:transparent;
	border-color:transparent;
	border-radius:0 0 0 0;
	border-style:none;
	border-width:0;
	color:rgba(255,255,255,1.00);
	text-decoration:none;
}

.tp-caption.Photography-Menuitem,.Photography-Menuitem
{
	background-color:rgba(0,0,0,0.65);
	border-color:transparent;
	border-radius:0 0 0 0;
	border-style:none;
	border-width:0;
	color:rgba(255,255,255,1.00);
	font-family:Raleway;
	font-size:20px;
	font-style:normal;
	font-weight:300;
	letter-spacing:2px;
	line-height:20px;
	padding:3px 5px 3px 8px;
	text-decoration:none;
}

.tp-caption.Photography-Menuitem:hover,.Photography-Menuitem:hover
{
	background-color:rgba(0,255,222,0.65);
	border-color:transparent;
	border-radius:0 0 0 0;
	border-style:none;
	border-width:0;
	color:rgba(255,255,255,1.00);
	text-decoration:none;
}

.tp-caption.Photography-Textblock,.Photography-Textblock
{
	background-color:transparent;
	border-color:transparent;
	border-radius:0 0 0 0;
	border-style:none;
	border-width:0;
	color:rgba(255,255,255,1.00);
	font-family:Raleway;
	font-size:17px;
	font-style:normal;
	font-weight:300;
	letter-spacing:2px;
	line-height:30px;
	padding:0;
	text-decoration:none;
}

.tp-caption.Photography-Subline-2,.Photography-Subline-2
{
	background-color:transparent;
	border-color:transparent;
	border-radius:0 0 0 0;
	border-style:none;
	border-width:0;
	color:rgba(255,255,255,0.35);
	font-family:Raleway;
	font-size:20px;
	font-style:normal;
	font-weight:300;
	letter-spacing:3px;
	line-height:30px;
	padding:0;
	text-decoration:none;
}

.tp-caption.Photography-ImageHover2,.Photography-ImageHover2
{
	background-color:transparent;
	border-color:rgba(255,255,255,0);
	border-radius:0 0 0 0;
	border-style:none;
	border-width:0;
	color:rgba(255,255,255,1.00);
	font-family:Arial;
	font-size:20px;
	font-style:normal;
	font-weight:400;
	line-height:22;
	padding:0;
	text-decoration:none;
}

.tp-caption.Photography-ImageHover2:hover,.Photography-ImageHover2:hover
{
	background-color:transparent;
	border-color:transparent;
	border-radius:0 0 0 0;
	border-style:none;
	border-width:0;
	color:rgba(255,255,255,1.00);
	text-decoration:none;
}

.tp-caption.WebProduct-Title,.WebProduct-Title
{
	background-color:transparent;
	border-color:transparent;
	border-radius:0 0 0 0;
	border-style:none;
	border-width:0;
	color:rgba(51,51,51,1.00);
	font-family:Raleway;
	font-size:90px;
	font-style:normal;
	font-weight:100;
	line-height:90px;
	padding:0;
	text-decoration:none;
}

.tp-caption.WebProduct-SubTitle,.WebProduct-SubTitle
{
	background-color:transparent;
	border-color:transparent;
	border-radius:0 0 0 0;
	border-style:none;
	border-width:0;
	color:rgba(153,153,153,1.00);
	font-family:Raleway;
	font-size:15px;
	font-style:normal;
	font-weight:400;
	line-height:20px;
	padding:0;
	text-decoration:none;
}

.tp-caption.WebProduct-Content,.WebProduct-Content
{
	background-color:transparent;
	border-color:transparent;
	border-radius:0 0 0 0;
	border-style:none;
	border-width:0;
	color:rgba(153,153,153,1.00);
	font-family:Raleway;
	font-size:16px;
	font-style:normal;
	font-weight:600;
	line-height:24px;
	padding:0;
	text-decoration:none;
}

.tp-caption.WebProduct-Menuitem,.WebProduct-Menuitem
{
	background-color:rgba(51,51,51,1.00);
	border-color:transparent;
	border-radius:0 0 0 0;
	border-style:none;
	border-width:0;
	color:rgba(255,255,255,1.00);
	font-family:Raleway;
	font-size:15px;
	font-style:normal;
	font-weight:500;
	letter-spacing:2px;
	line-height:20px;
	padding:3px 5px 3px 8px;
	text-align:left;
	text-decoration:none;
}

.tp-caption.WebProduct-Menuitem:hover,.WebProduct-Menuitem:hover
{
	background-color:rgba(255,255,255,1.00);
	border-color:transparent;
	border-radius:0 0 0 0;
	border-style:none;
	border-width:0;
	color:rgba(153,153,153,1.00);
	text-decoration:none;
}

.tp-caption.WebProduct-Title-Light,.WebProduct-Title-Light
{
	background-color:transparent;
	border-color:transparent;
	border-radius:0 0 0 0;
	border-style:none;
	border-width:0;
	color:rgba(255,255,255,1.00);
	font-family:Raleway;
	font-size:90px;
	font-style:normal;
	font-weight:100;
	line-height:90px;
	padding:0;
	text-align:left;
	text-decoration:none;
}

.tp-caption.WebProduct-SubTitle-Light,.WebProduct-SubTitle-Light
{
	background-color:transparent;
	border-color:transparent;
	border-radius:0 0 0 0;
	border-style:none;
	border-width:0;
	color:rgba(255,255,255,0.35);
	font-family:Raleway;
	font-size:15px;
	font-style:normal;
	font-weight:400;
	line-height:20px;
	padding:0;
	text-align:left;
	text-decoration:none;
}

.tp-caption.WebProduct-Content-Light,.WebProduct-Content-Light
{
	background-color:transparent;
	border-color:transparent;
	border-radius:0 0 0 0;
	border-style:none;
	border-width:0;
	color:rgba(255,255,255,0.65);
	font-family:Raleway;
	font-size:16px;
	font-style:normal;
	font-weight:600;
	line-height:24px;
	padding:0;
	text-align:left;
	text-decoration:none;
}

.tp-caption.FatRounded,.FatRounded
{
	background-color:rgba(0,0,0,0.50);
	border-color:rgba(211,211,211,1.00);
	border-radius:50px 50px 50px 50px;
	border-style:none;
	border-width:0;
	color:rgba(255,255,255,1.00);
	font-family:Raleway;
	font-size:30px;
	font-style:normal;
	font-weight:900;
	line-height:30px;
	padding:20px 22px 20px 25px;
	text-align:left;
	text-decoration:none;
	text-shadow:none;
}

.tp-caption.FatRounded:hover,.FatRounded:hover
{
	background-color:rgba(0,0,0,1.00);
	border-color:rgba(211,211,211,1.00);
	border-radius:50px 50px 50px 50px;
	border-style:none;
	border-width:0;
	color:rgba(255,255,255,1.00);
	text-decoration:none;
}

.tp-caption.NotGeneric-Title,.NotGeneric-Title
{
	background-color:transparent;
	border-color:transparent;
	border-radius:0 0 0 0;
	border-style:none;
	border-width:0;
	color:rgba(255,255,255,1.00);
	font-family:Raleway;
	font-size:70px;
	font-style:normal;
	font-weight:800;
	line-height:70px;
	padding:10px 0;
	text-decoration:none;
}

.tp-caption.NotGeneric-SubTitle,.NotGeneric-SubTitle
{
	background-color:transparent;
	border-color:transparent;
	border-radius:0 0 0 0;
	border-style:none;
	border-width:0;
	color:rgba(255,255,255,1.00);
	font-family:Raleway;
	font-size:13px;
	font-style:normal;
	font-weight:500;
	letter-spacing:4px;
	line-height:20px;
	padding:0;
	text-align:left;
	text-decoration:none;
}

.tp-caption.NotGeneric-CallToAction,.NotGeneric-CallToAction
{
	background-color:rgba(0,0,0,0);
	border-color:rgba(255,255,255,0.50);
	border-radius:0 0 0 0;
	border-style:solid;
	border-width:1px;
	color:rgba(255,255,255,1.00);
	font-family:Raleway;
	font-size:14px;
	font-style:normal;
	font-weight:500;
	letter-spacing:3px;
	line-height:14px;
	padding:10px 30px;
	text-align:left;
	text-decoration:none;
}

.tp-caption.NotGeneric-CallToAction:hover,.NotGeneric-CallToAction:hover
{
	background-color:transparent;
	border-color:rgba(255,255,255,1.00);
	border-radius:0 0 0 0;
	border-style:solid;
	border-width:1px;
	color:rgba(255,255,255,1.00);
	text-decoration:none;
}

.tp-caption.NotGeneric-Icon,.NotGeneric-Icon
{
	background-color:rgba(0,0,0,0);
	border-color:rgba(255,255,255,0);
	border-radius:0 0 0 0;
	border-style:solid;
	border-width:0;
	color:rgba(255,255,255,1.00);
	font-family:Raleway;
	font-size:30px;
	font-style:normal;
	font-weight:400;
	letter-spacing:3px;
	line-height:30px;
	padding:0;
	text-align:left;
	text-decoration:none;
}

.tp-caption.NotGeneric-Menuitem,.NotGeneric-Menuitem
{
	background-color:rgba(0,0,0,0);
	border-color:rgba(255,255,255,0.15);
	border-radius:0 0 0 0;
	border-style:solid;
	border-width:1px;
	color:rgba(255,255,255,1.00);
	font-family:Raleway;
	font-size:14px;
	font-style:normal;
	font-weight:500;
	letter-spacing:3px;
	line-height:14px;
	padding:27px 30px;
	text-align:left;
	text-decoration:none;
}

.tp-caption.NotGeneric-Menuitem:hover,.NotGeneric-Menuitem:hover
{
	background-color:rgba(0,0,0,0);
	border-color:rgba(255,255,255,1.00);
	border-radius:0 0 0 0;
	border-style:solid;
	border-width:1px;
	color:rgba(255,255,255,1.00);
	text-decoration:none;
}

.tp-caption.MarkerStyle,.MarkerStyle
{
	background-color:transparent;
	border-color:transparent;
	border-radius:0 0 0 0;
	border-style:none;
	border-width:0;
	color:rgba(255,255,255,1.00);
	font-family:"Permanent Marker";
	font-size:17px;
	font-style:normal;
	font-weight:100;
	line-height:30px;
	padding:0;
	text-align:left;
	text-decoration:none;
}

.tp-caption.Gym-Menuitem,.Gym-Menuitem
{
	background-color:rgba(0,0,0,1.00);
	border-color:rgba(255,255,255,0);
	border-radius:3px 3px 3px 3px;
	border-style:solid;
	border-width:2px;
	color:rgba(255,255,255,1.00);
	font-family:Raleway;
	font-size:20px;
	font-style:normal;
	font-weight:300;
	letter-spacing:2px;
	line-height:20px;
	padding:3px 5px 3px 8px;
	text-align:left;
	text-decoration:none;
}

.tp-caption.Gym-Menuitem:hover,.Gym-Menuitem:hover
{
	background-color:rgba(0,0,0,1.00);
	border-color:rgba(255,255,255,0.25);
	border-radius:3px 3px 3px 3px;
	border-style:solid;
	border-width:2px;
	color:rgba(255,255,255,1.00);
	text-decoration:none;
}

.tp-caption.Newspaper-Button,.Newspaper-Button
{
	background-color:rgba(255,255,255,0);
	border-color:rgba(255,255,255,0.25);
	border-radius:0 0 0 0;
	border-style:solid;
	border-width:1px;
	color:rgba(255,255,255,1.00);
	font-family:Roboto;
	font-size:13px;
	font-style:normal;
	font-weight:700;
	letter-spacing:2px;
	line-height:17px;
	padding:12px 35px;
	text-align:left;
	text-decoration:none;
}

.tp-caption.Newspaper-Button:hover,.Newspaper-Button:hover
{
	background-color:rgba(255,255,255,1.00);
	border-color:rgba(255,255,255,1.00);
	border-radius:0 0 0 0;
	border-style:solid;
	border-width:1px;
	color:rgba(0,0,0,1.00);
	text-decoration:none;
}

.tp-caption.Newspaper-Subtitle,.Newspaper-Subtitle
{
	background-color:transparent;
	border-color:transparent;
	border-radius:0 0 0 0;
	border-style:none;
	border-width:0;
	color:rgba(168,216,238,1.00);
	font-family:Roboto;
	font-size:15px;
	font-style:normal;
	font-weight:900;
	line-height:20px;
	padding:0;
	text-align:left;
	text-decoration:none;
}

.tp-caption.Newspaper-Title,.Newspaper-Title
{
	background-color:transparent;
	border-color:transparent;
	border-radius:0 0 0 0;
	border-style:none;
	border-width:0;
	color:rgba(255,255,255,1.00);
	font-family:"Roboto Slab";
	font-size:50px;
	font-style:normal;
	font-weight:400;
	line-height:55px;
	padding:0 0 10px;
	text-align:left;
	text-decoration:none;
}

.tp-caption.Newspaper-Title-Centered,.Newspaper-Title-Centered
{
	background-color:transparent;
	border-color:transparent;
	border-radius:0 0 0 0;
	border-style:none;
	border-width:0;
	color:rgba(255,255,255,1.00);
	font-family:"Roboto Slab";
	font-size:50px;
	font-style:normal;
	font-weight:400;
	line-height:55px;
	padding:0 0 10px;
	text-align:center;
	text-decoration:none;
}

.tp-caption.Hero-Button,.Hero-Button
{
	background-color:rgba(0,0,0,0);
	border-color:rgba(255,255,255,0.50);
	border-radius:0 0 0 0;
	border-style:solid;
	border-width:1px;
	color:rgba(255,255,255,1.00);
	font-family:Raleway;
	font-size:14px;
	font-style:normal;
	font-weight:500;
	letter-spacing:3px;
	line-height:14px;
	padding:10px 30px;
	text-align:left;
	text-decoration:none;
}

.tp-caption.Hero-Button:hover,.Hero-Button:hover
{
	background-color:rgba(255,255,255,1.00);
	border-color:rgba(255,255,255,1.00);
	border-radius:0 0 0 0;
	border-style:solid;
	border-width:1px;
	color:rgba(0,0,0,1.00);
	text-decoration:none;
}

.tp-caption.Video-Title,.Video-Title
{
	background-color:rgba(0,0,0,1.00);
	border-color:transparent;
	border-radius:0 0 0 0;
	border-style:none;
	border-width:0;
	color:rgba(255,255,255,1.00);
	font-family:Raleway;
	font-size:30px;
	font-style:normal;
	font-weight:900;
	line-height:30px;
	padding:5px;
	text-align:left;
	text-decoration:none;
}

.tp-caption.Video-SubTitle,.Video-SubTitle
{
	background-color:rgba(0,0,0,0.35);
	border-color:transparent;
	border-radius:0 0 0 0;
	border-style:none;
	border-width:0;
	color:rgba(255,255,255,1.00);
	font-family:Raleway;
	font-size:12px;
	font-style:normal;
	font-weight:600;
	letter-spacing:2px;
	line-height:12px;
	padding:5px;
	text-align:left;
	text-decoration:none;
}

.tp-caption.NotGeneric-Button,.NotGeneric-Button
{
	background-color:rgba(0,0,0,0);
	border-color:rgba(255,255,255,0.50);
	border-radius:0 0 0 0;
	border-style:solid;
	border-width:1px;
	color:rgba(255,255,255,1.00);
	font-family:Raleway;
	font-size:14px;
	font-style:normal;
	font-weight:500;
	letter-spacing:3px;
	line-height:14px;
	padding:10px 30px;
	text-align:left;
	text-decoration:none;
}

.tp-caption.NotGeneric-Button:hover,.NotGeneric-Button:hover
{
	background-color:transparent;
	border-color:rgba(255,255,255,1.00);
	border-radius:0 0 0 0;
	border-style:solid;
	border-width:1px;
	color:rgba(255,255,255,1.00);
	text-decoration:none;
}

.tp-caption.NotGeneric-BigButton,.NotGeneric-BigButton
{
	background-color:rgba(0,0,0,0);
	border-color:rgba(255,255,255,0.15);
	border-radius:0 0 0 0;
	border-style:solid;
	border-width:1px;
	color:rgba(255,255,255,1.00);
	font-family:Raleway;
	font-size:14px;
	font-style:normal;
	font-weight:500;
	letter-spacing:3px;
	line-height:14px;
	padding:27px 30px;
	text-align:left;
	text-decoration:none;
}

.tp-caption.NotGeneric-BigButton:hover,.NotGeneric-BigButton:hover
{
	background-color:rgba(0,0,0,0);
	border-color:rgba(255,255,255,1.00);
	border-radius:0 0 0 0;
	border-style:solid;
	border-width:1px;
	color:rgba(255,255,255,1.00);
	text-decoration:none;
}

.tp-caption.WebProduct-Button,.WebProduct-Button
{
	background-color:rgba(51,51,51,1.00);
	border-color:rgba(0,0,0,1.00);
	border-radius:0 0 0 0;
	border-style:none;
	border-width:2px;
	color:rgba(255,255,255,1.00);
	font-family:Raleway;
	font-size:16px;
	font-style:normal;
	font-weight:600;
	letter-spacing:1px;
	line-height:48px;
	padding:0 40px;
	text-align:left;
	text-decoration:none;
}

.tp-caption.WebProduct-Button:hover,.WebProduct-Button:hover
{
	background-color:rgba(255,255,255,1.00);
	border-color:rgba(0,0,0,1.00);
	border-radius:0 0 0 0;
	border-style:none;
	border-width:2px;
	color:rgba(51,51,51,1.00);
	text-decoration:none;
}

.tp-caption.Restaurant-Button,.Restaurant-Button
{
	background-color:rgba(10,10,10,0);
	border-color:rgba(255,255,255,0.50);
	border-radius:0 0 0 0;
	border-style:solid;
	border-width:2px;
	color:rgba(255,255,255,1.00);
	font-family:Roboto;
	font-size:17px;
	font-style:normal;
	font-weight:500;
	letter-spacing:3px;
	line-height:17px;
	padding:12px 35px;
	text-align:left;
	text-decoration:none;
}

.tp-caption.Restaurant-Button:hover,.Restaurant-Button:hover
{
	background-color:rgba(0,0,0,0);
	border-color:rgba(255,224,129,1.00);
	border-radius:0 0 0 0;
	border-style:solid;
	border-width:2px;
	color:rgba(255,255,255,1.00);
	text-decoration:none;
}

.tp-caption.Gym-Button,.Gym-Button
{
	background-color:rgba(139,192,39,1.00);
	border-color:rgba(0,0,0,0);
	border-radius:30px 30px 30px 30px;
	border-style:solid;
	border-width:0;
	color:rgba(255,255,255,1.00);
	font-family:Raleway;
	font-size:15px;
	font-style:normal;
	font-weight:600;
	letter-spacing:1px;
	line-height:15px;
	padding:13px 35px;
	text-align:left;
	text-decoration:none;
}

.tp-caption.Gym-Button:hover,.Gym-Button:hover
{
	background-color:rgba(114,168,0,1.00);
	border-color:rgba(0,0,0,0);
	border-radius:30px 30px 30px 30px;
	border-style:solid;
	border-width:0;
	color:rgba(255,255,255,1.00);
	text-decoration:none;
}

.tp-caption.Gym-Button-Light,.Gym-Button-Light
{
	background-color:transparent;
	border-color:rgba(255,255,255,0.25);
	border-radius:30px 30px 30px 30px;
	border-style:solid;
	border-width:2px;
	color:rgba(255,255,255,1.00);
	font-family:Raleway;
	font-size:15px;
	font-style:normal;
	font-weight:600;
	line-height:15px;
	padding:12px 35px;
	text-align:left;
	text-decoration:none;
}

.tp-caption.Gym-Button-Light:hover,.Gym-Button-Light:hover
{
	background-color:rgba(114,168,0,0);
	border-color:rgba(139,192,39,1.00);
	border-radius:30px 30px 30px 30px;
	border-style:solid;
	border-width:2px;
	color:rgba(255,255,255,1.00);
	text-decoration:none;
}

.tp-caption.Sports-Button-Light,.Sports-Button-Light
{
	background-color:rgba(0,0,0,0);
	border-color:rgba(255,255,255,0.50);
	border-radius:0 0 0 0;
	border-style:solid;
	border-width:2px;
	color:rgba(255,255,255,1.00);
	font-family:Raleway;
	font-size:17px;
	font-style:normal;
	font-weight:600;
	letter-spacing:2px;
	line-height:17px;
	padding:12px 35px;
	text-align:left;
	text-decoration:none;
}

.tp-caption.Sports-Button-Light:hover,.Sports-Button-Light:hover
{
	background-color:rgba(0,0,0,0);
	border-color:rgba(255,255,255,1.00);
	border-radius:0 0 0 0;
	border-style:solid;
	border-width:2px;
	color:rgba(255,255,255,1.00);
	text-decoration:none;
}

.tp-caption.Sports-Button-Red,.Sports-Button-Red
{
	background-color:rgba(219,28,34,1.00);
	border-color:rgba(219,28,34,0);
	border-radius:0 0 0 0;
	border-style:solid;
	border-width:2px;
	color:rgba(255,255,255,1.00);
	font-family:Raleway;
	font-size:17px;
	font-style:normal;
	font-weight:600;
	letter-spacing:2px;
	line-height:17px;
	padding:12px 35px;
	text-align:left;
	text-decoration:none;
}

.tp-caption.Sports-Button-Red:hover,.Sports-Button-Red:hover
{
	background-color:rgba(0,0,0,1.00);
	border-color:rgba(0,0,0,1.00);
	border-radius:0 0 0 0;
	border-style:solid;
	border-width:2px;
	color:rgba(255,255,255,1.00);
	text-decoration:none;
}

.tp-caption.Photography-Button,.Photography-Button
{
	background-color:rgba(0,0,0,0);
	border-color:rgba(255,255,255,0.25);
	border-radius:30px 30px 30px 30px;
	border-style:solid;
	border-width:1px;
	color:rgba(255,255,255,1.00);
	font-family:Raleway;
	font-size:15px;
	font-style:normal;
	font-weight:600;
	letter-spacing:1px;
	line-height:15px;
	padding:13px 35px;
	text-align:left;
	text-decoration:none;
}

.tp-caption.Photography-Button:hover,.Photography-Button:hover
{
	background-color:rgba(0,0,0,0);
	border-color:rgba(255,255,255,1.00);
	border-radius:30px 30px 30px 30px;
	border-style:solid;
	border-width:1px;
	color:rgba(255,255,255,1.00);
	text-decoration:none;
}

.tp-caption.Newspaper-Button-2,.Newspaper-Button-2
{
	background-color:rgba(0,0,0,0);
	border-color:rgba(255,255,255,0.50);
	border-radius:3px 3px 3px 3px;
	border-style:solid;
	border-width:2px;
	color:rgba(255,255,255,1.00);
	font-family:Roboto;
	font-size:15px;
	font-style:normal;
	font-weight:900;
	line-height:15px;
	padding:10px 30px;
	text-align:left;
	text-decoration:none;
}

.tp-caption.Newspaper-Button-2:hover,.Newspaper-Button-2:hover
{
	background-color:rgba(0,0,0,0);
	border-color:rgba(255,255,255,1.00);
	border-radius:3px 3px 3px 3px;
	border-style:solid;
	border-width:2px;
	color:rgba(255,255,255,1.00);
	text-decoration:none;
}

.tp-caption.Feature-Tour,.Feature-Tour
{
	background-color:rgba(139,192,39,1.00);
	border-color:rgba(0,0,0,0);
	border-radius:30px 30px 30px 30px;
	border-style:solid;
	border-width:0;
	color:rgba(255,255,255,1.00);
	font-family:Roboto;
	font-size:17px;
	font-style:normal;
	font-weight:700;
	line-height:17px;
	padding:17px 35px;
	text-align:left;
	text-decoration:none;
}

.tp-caption.Feature-Tour:hover,.Feature-Tour:hover
{
	background-color:rgba(114,168,0,1.00);
	border-color:rgba(0,0,0,0);
	border-radius:30px 30px 30px 30px;
	border-style:solid;
	border-width:0;
	color:rgba(255,255,255,1.00);
	text-decoration:none;
}

.tp-caption.Feature-Examples,.Feature-Examples
{
	background-color:transparent;
	border-color:rgba(33,42,64,0.15);
	border-radius:30px 30px 30px 30px;
	border-style:solid;
	border-width:2px;
	color:rgba(33,42,64,0.50);
	font-family:Roboto;
	font-size:17px;
	font-style:normal;
	font-weight:700;
	line-height:17px;
	padding:15px 35px;
	text-align:left;
	text-decoration:none;
}

.tp-caption.Feature-Examples:hover,.Feature-Examples:hover
{
	background-color:transparent;
	border-color:rgba(139,192,39,1.00);
	border-radius:30px 30px 30px 30px;
	border-style:solid;
	border-width:2px;
	color:rgba(139,192,39,1.00);
	text-decoration:none;
}

.tp-caption.subcaption,.subcaption
{
	background-color:transparent;
	border-color:rgba(0,0,0,1.00);
	border-radius:0 0 0 0;
	border-style:none;
	border-width:0;
	color:rgba(111,124,130,1.00);
	font-family:roboto;
	font-size:19px;
	font-style:normal;
	font-weight:400;
	line-height:24px;
	padding:0;
	text-align:left;
	text-decoration:none;
	text-shadow:none;
}

.tp-caption.menutab,.menutab
{
	background-color:transparent;
	border-color:rgba(0,0,0,1.00);
	border-radius:0 0 0 0;
	border-style:none;
	border-width:0;
	color:rgba(41,46,49,1.00);
	font-family:roboto;
	font-size:25px;
	font-style:normal;
	font-weight:300;
	line-height:30px;
	padding:0;
	text-align:left;
	text-decoration:none;
	text-shadow:none;
}

.tp-caption.menutab:hover,.menutab:hover
{
	background-color:transparent;
	border-color:transparent;
	border-radius:0 0 0 0;
	border-style:none;
	border-width:0;
	color:rgba(213,0,0,1.00);
	text-decoration:none;
}

.tp-caption.maincontent,.maincontent
{
	background-color:transparent;
	border-color:rgba(0,0,0,1.00);
	border-radius:0 0 0 0;
	border-style:none;
	border-width:0;
	color:rgba(41,46,49,1.00);
	font-family:roboto;
	font-size:21px;
	font-style:normal;
	font-weight:300;
	line-height:26px;
	padding:0;
	text-align:left;
	text-decoration:none;
	text-shadow:none;
}

.tp-caption.minitext,.minitext
{
	background-color:transparent;
	border-color:rgba(0,0,0,1.00);
	border-radius:0 0 0 0;
	border-style:none;
	border-width:0;
	color:rgba(185,186,187,1.00);
	font-family:roboto;
	font-size:15px;
	font-style:normal;
	font-weight:400;
	line-height:20px;
	padding:0;
	text-align:left;
	text-decoration:none;
	text-shadow:none;
}

.tp-caption.Feature-Buy,.Feature-Buy
{
	background-color:rgba(0,154,238,1.00);
	border-color:rgba(0,0,0,0);
	border-radius:30px 30px 30px 30px;
	border-style:solid;
	border-width:0;
	color:rgba(255,255,255,1.00);
	font-family:Roboto;
	font-size:17px;
	font-style:normal;
	font-weight:700;
	line-height:17px;
	padding:17px 35px;
	text-align:left;
	text-decoration:none;
}

.tp-caption.Feature-Buy:hover,.Feature-Buy:hover
{
	background-color:rgba(0,133,214,1.00);
	border-color:rgba(0,0,0,0);
	border-radius:30px 30px 30px 30px;
	border-style:solid;
	border-width:0;
	color:rgba(255,255,255,1.00);
	text-decoration:none;
}

.tp-caption.Feature-Examples-Light,.Feature-Examples-Light
{
	background-color:transparent;
	border-color:rgba(255,255,255,0.15);
	border-radius:30px 30px 30px 30px;
	border-style:solid;
	border-width:2px;
	color:rgba(255,255,255,1.00);
	font-family:Roboto;
	font-size:17px;
	font-style:normal;
	font-weight:700;
	line-height:17px;
	padding:15px 35px;
	text-align:left;
	text-decoration:none;
}

.tp-caption.Feature-Examples-Light:hover,.Feature-Examples-Light:hover
{
	background-color:transparent;
	border-color:rgba(255,255,255,1.00);
	border-radius:30px 30px 30px 30px;
	border-style:solid;
	border-width:2px;
	color:rgba(255,255,255,1.00);
	text-decoration:none;
}

.tp-caption.Facebook-Likes,.Facebook-Likes
{
	background-color:rgba(59,89,153,1.00);
	border-color:transparent;
	border-radius:0 0 0 0;
	border-style:none;
	border-width:0;
	color:rgba(255,255,255,1.00);
	font-family:Roboto;
	font-size:15px;
	font-style:normal;
	font-weight:500;
	line-height:22px;
	padding:5px 15px;
	text-align:left;
	text-decoration:none;
}

.tp-caption.Twitter-Favorites,.Twitter-Favorites
{
	background-color:rgba(255,255,255,0);
	border-color:transparent;
	border-radius:0 0 0 0;
	border-style:none;
	border-width:0;
	color:rgba(136,153,166,1.00);
	font-family:Roboto;
	font-size:15px;
	font-style:normal;
	font-weight:500;
	line-height:22px;
	padding:0;
	text-align:left;
	text-decoration:none;
}

.tp-caption.Twitter-Link,.Twitter-Link
{
	background-color:rgba(255,255,255,1.00);
	border-color:transparent;
	border-radius:30px 30px 30px 30px;
	border-style:none;
	border-width:0;
	color:rgba(135,153,165,1.00);
	font-family:Roboto;
	font-size:15px;
	font-style:normal;
	font-weight:500;
	line-height:15px;
	padding:11px 11px 9px;
	text-align:left;
	text-decoration:none;
}

.tp-caption.Twitter-Link:hover,.Twitter-Link:hover
{
	background-color:rgba(0,132,180,1.00);
	border-color:transparent;
	border-radius:30px 30px 30px 30px;
	border-style:none;
	border-width:0;
	color:rgba(255,255,255,1.00);
	text-decoration:none;
}

.tp-caption.Twitter-Retweet,.Twitter-Retweet
{
	background-color:rgba(255,255,255,0);
	border-color:transparent;
	border-radius:0 0 0 0;
	border-style:none;
	border-width:0;
	color:rgba(136,153,166,1.00);
	font-family:Roboto;
	font-size:15px;
	font-style:normal;
	font-weight:500;
	line-height:22px;
	padding:0;
	text-align:left;
	text-decoration:none;
}

.tp-caption.Twitter-Content,.Twitter-Content
{
	background-color:rgba(255,255,255,1.00);
	border-color:transparent;
	border-radius:0 0 0 0;
	border-style:none;
	border-width:0;
	color:rgba(41,47,51,1.00);
	font-family:Roboto;
	font-size:20px;
	font-style:normal;
	font-weight:500;
	line-height:28px;
	padding:30px 30px 70px;
	text-align:left;
	text-decoration:none;
}

.revtp-searchform input[type="text"],
.revtp-searchform input[type="email"],
.revtp-form input[type="text"],
.revtp-form input[type="email"]{ 	
	font-family: "Arial", sans-serif;
    font-size: 15px;
    color: #000;
    background-color: #fff;
    line-height: 46px;
    padding: 0 20px;
    cursor: text;
    border: 0;
    width: 400px;
    margin-bottom: 0px;
    -webkit-transition: background-color 0.5s;
    -moz-transition: background-color 0.5s;
    -o-transition: background-color 0.5s;
    -ms-transition: background-color 0.5s;
    transition: background-color 0.5s;
    
    
    border-radius: 0px;
}


.tp-caption.BigBold-Title,
.BigBold-Title {
    color: rgba(255, 255, 255, 1.00);
    font-size: 110px;
    line-height: 100px;
    font-weight: 800;
    font-style: normal;
    font-family: Raleway;
    padding: 10px 0px 10px 0;
    text-decoration: none;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    text-align: left
}
.tp-caption.BigBold-SubTitle,
.BigBold-SubTitle {
    color: rgba(255, 255, 255, 0.50);
    font-size: 15px;
    line-height: 24px;
    font-weight: 500;
    font-style: normal;
    font-family: Raleway;
    padding: 0 0 0 0px;
    text-decoration: none;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    text-align: left;
    letter-spacing: 1px
}
.tp-caption.BigBold-Button,
.BigBold-Button {
    color: rgba(255, 255, 255, 1.00);
    font-size: 13px;
    line-height: 13px;
    font-weight: 500;
    font-style: normal;
    font-family: Raleway;
    padding: 15px 50px 15px 50px;
    text-decoration: none;
    background-color: rgba(0, 0, 0, 0);
    border-color: rgba(255, 255, 255, 0.50);
    border-style: solid;
    border-width: 1px;
    border-radius: 0px 0px 0px 0px;
    text-align: left;
    letter-spacing: 1px
}
.tp-caption.BigBold-Button:hover,
.BigBold-Button:hover {
    color: rgba(255, 255, 255, 1.00);
    text-decoration: none;
    background-color: transparent;
    border-color: rgba(255, 255, 255, 1.00);
    border-style: solid;
    border-width: 1px;
    border-radius: 0px 0px 0px 0px
}
.tp-caption.FoodCarousel-Content,
.FoodCarousel-Content {
    color: rgba(41, 46, 49, 1.00);
    font-size: 17px;
    line-height: 28px;
    font-weight: 500;
    font-style: normal;
    font-family: Raleway;
    padding: 30px 30px 30px 30px;
    text-decoration: none;
    background-color: rgba(255, 255, 255, 1.00);
    border-color: rgba(41, 46, 49, 1.00);
    border-style: solid;
    border-width: 1px;
    border-radius: 0 0 0 0px;
    text-align: left
}
.tp-caption.FoodCarousel-Button,
.FoodCarousel-Button {
    color: rgba(41, 46, 49, 1.00);
    font-size: 13px;
    line-height: 13px;
    font-weight: 700;
    font-style: normal;
    font-family: Raleway;
    padding: 15px 70px 15px 50px;
    text-decoration: none;
    background-color: rgba(255, 255, 255, 1.00);
    border-color: rgba(41, 46, 49, 1.00);
    border-style: solid;
    border-width: 1px;
    border-radius: 0px 0px 0px 0px;
    text-align: left;
    letter-spacing: 1px
}
.tp-caption.FoodCarousel-Button:hover,
.FoodCarousel-Button:hover {
    color: rgba(255, 255, 255, 1.00);
    text-decoration: none;
    background-color: rgba(41, 46, 49, 1.00);
    border-color: rgba(41, 46, 49, 1.00);
    border-style: solid;
    border-width: 1px;
    border-radius: 0px 0px 0px 0px
}
.tp-caption.FoodCarousel-CloseButton,
.FoodCarousel-CloseButton {
    color: rgba(41, 46, 49, 1.00);
    font-size: 20px;
    line-height: 20px;
    font-weight: 700;
    font-style: normal;
    font-family: Raleway;
    padding: 14px 14px 14px 16px;
    text-decoration: none;
    background-color: rgba(0, 0, 0, 0);
    border-color: rgba(41, 46, 49, 0);
    border-style: solid;
    border-width: 1px;
    border-radius: 30px 30px 30px 30px;
    text-align: left;
    letter-spacing: 1px
}
.tp-caption.FoodCarousel-CloseButton:hover,
.FoodCarousel-CloseButton:hover {
    color: rgba(255, 255, 255, 1.00);
    text-decoration: none;
    background-color: rgba(41, 46, 49, 1.00);
    border-color: rgba(41, 46, 49, 0);
    border-style: solid;
    border-width: 1px;
    border-radius: 30px 30px 30px 30px
}
.tp-caption.Video-SubTitle,
.Video-SubTitle {
    color: rgba(255, 255, 255, 1.00);
    font-size: 12px;
    line-height: 12px;
    font-weight: 600;
    font-style: normal;
    font-family: Raleway;
    padding: 5px 5px 5px 5px;
    text-decoration: none;
    background-color: rgba(0, 0, 0, 0.35);
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    letter-spacing: 2px;
    text-align: left
}
.tp-caption.Video-Title,
.Video-Title {
    color: rgba(255, 255, 255, 1.00);
    font-size: 30px;
    line-height: 30px;
    font-weight: 900;
    font-style: normal;
    font-family: Raleway;
    padding: 5px 5px 5px 5px;
    text-decoration: none;
    background-color: rgba(0, 0, 0, 1.00);
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    text-align: left
}
.tp-caption.Travel-BigCaption,
.Travel-BigCaption {
    color: rgba(255, 255, 255, 1.00);
    font-size: 50px;
    line-height: 50px;
    font-weight: 400;
    font-style: normal;
    font-family: Roboto;
    padding: 0 0 0 0px;
    text-decoration: none;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    text-align: left
}
.tp-caption.Travel-SmallCaption,
.Travel-SmallCaption {
    color: rgba(255, 255, 255, 1.00);
    font-size: 25px;
    line-height: 30px;
    font-weight: 300;
    font-style: normal;
    font-family: Roboto;
    padding: 0 0 0 0px;
    text-decoration: none;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    text-align: left
}
.tp-caption.Travel-CallToAction,
.Travel-CallToAction {
    color: rgba(255, 255, 255, 1.00);
    font-size: 25px;
    line-height: 25px;
    font-weight: 500;
    font-style: normal;
    font-family: Roboto;
    padding: 12px 20px 12px 20px;
    text-decoration: none;
    background-color: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 1.00);
    border-style: solid;
    border-width: 2px;
    border-radius: 5px 5px 5px 5px;
    text-align: left;
    letter-spacing: 1px
}
.tp-caption.Travel-CallToAction:hover,
.Travel-CallToAction:hover {
    color: rgba(255, 255, 255, 1.00);
    text-decoration: none;
    background-color: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 1.00);
    border-style: solid;
    border-width: 2px;
    border-radius: 5px 5px 5px 5px
}


.tp-caption.RotatingWords-TitleWhite,
.RotatingWords-TitleWhite {
    color: rgba(255, 255, 255, 1.00);
    font-size: 70px;
    line-height: 70px;
    font-weight: 800;
    font-style: normal;
    font-family: Raleway;
    padding: 0px 0px 0px 0;
    text-decoration: none;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    text-align: left
}
.tp-caption.RotatingWords-Button,
.RotatingWords-Button {
    color: rgba(255, 255, 255, 1.00);
    font-size: 20px;
    line-height: 20px;
    font-weight: 700;
    font-style: normal;
    font-family: Raleway;
    padding: 20px 50px 20px 50px;
    text-decoration: none;
    background-color: rgba(0, 0, 0, 0);
    border-color: rgba(255, 255, 255, 0.15);
    border-style: solid;
    border-width: 2px;
    border-radius: 0px 0px 0px 0px;
    text-align: left;
    letter-spacing: 3px
}
.tp-caption.RotatingWords-Button:hover,
.RotatingWords-Button:hover {
    color: rgba(255, 255, 255, 1.00);
    text-decoration: none;
    background-color: transparent;
    border-color: rgba(255, 255, 255, 1.00);
    border-style: solid;
    border-width: 2px;
    border-radius: 0px 0px 0px 0px
}
.tp-caption.RotatingWords-SmallText,
.RotatingWords-SmallText {
    color: rgba(255, 255, 255, 1.00);
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    font-style: normal;
    font-family: Raleway;
    padding: 0 0 0 0px;
    text-decoration: none;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    text-align: left;
    text-shadow: none
}




.tp-caption.ContentZoom-SmallTitle,
.ContentZoom-SmallTitle {
    color: rgba(41, 46, 49, 1.00);
    font-size: 33px;
    line-height: 45px;
    font-weight: 600;
    font-style: normal;
    font-family: Raleway;
    padding: 0 0 0 0px;
    text-decoration: none;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    text-align: left
}
.tp-caption.ContentZoom-SmallSubtitle,
.ContentZoom-SmallSubtitle {
    color: rgba(111, 124, 130, 1.00);
    font-size: 16px;
    line-height: 24px;
    font-weight: 600;
    font-style: normal;
    font-family: Raleway;
    padding: 0 0 0 0px;
    text-decoration: none;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    text-align: left
}
.tp-caption.ContentZoom-SmallIcon,
.ContentZoom-SmallIcon {
    color: rgba(41, 46, 49, 1.00);
    font-size: 20px;
    line-height: 20px;
    font-weight: 400;
    font-style: normal;
    font-family: Raleway;
    padding: 10px 10px 10px 10px;
    text-decoration: none;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    text-align: left
}
.tp-caption.ContentZoom-SmallIcon:hover,
.ContentZoom-SmallIcon:hover {
    color: rgba(111, 124, 130, 1.00);
    text-decoration: none;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px
}
.tp-caption.ContentZoom-DetailTitle,
.ContentZoom-DetailTitle {
    color: rgba(41, 46, 49, 1.00);
    font-size: 70px;
    line-height: 70px;
    font-weight: 500;
    font-style: normal;
    font-family: Raleway;
    padding: 0 0 0 0px;
    text-decoration: none;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    text-align: left
}
.tp-caption.ContentZoom-DetailSubTitle,
.ContentZoom-DetailSubTitle {
    color: rgba(111, 124, 130, 1.00);
    font-size: 25px;
    line-height: 25px;
    font-weight: 500;
    font-style: normal;
    font-family: Raleway;
    padding: 0 0 0 0px;
    text-decoration: none;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    text-align: left
}
.tp-caption.ContentZoom-DetailContent,
.ContentZoom-DetailContent {
    color: rgba(111, 124, 130, 1.00);
    font-size: 17px;
    line-height: 28px;
    font-weight: 500;
    font-style: normal;
    font-family: Raleway;
    padding: 0 0 0 0px;
    text-decoration: none;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    text-align: left
}
.tp-caption.ContentZoom-Button,
.ContentZoom-Button {
    color: rgba(41, 46, 49, 1.00);
    font-size: 13px;
    line-height: 13px;
    font-weight: 700;
    font-style: normal;
    font-family: Raleway;
    padding: 15px 50px 15px 50px;
    text-decoration: none;
    background-color: rgba(0, 0, 0, 0);
    border-color: rgba(41, 46, 49, 0.50);
    border-style: solid;
    border-width: 1px;
    border-radius: 0px 0px 0px 0px;
    text-align: left;
    letter-spacing: 1px
}
.tp-caption.ContentZoom-Button:hover,
.ContentZoom-Button:hover {
    color: rgba(255, 255, 255, 1.00);
    text-decoration: none;
    background-color: rgba(41, 46, 49, 1.00);
    border-color: rgba(41, 46, 49, 1.00);
    border-style: solid;
    border-width: 1px;
    border-radius: 0px 0px 0px 0px
}
.tp-caption.ContentZoom-ButtonClose,
.ContentZoom-ButtonClose {
    color: rgba(41, 46, 49, 1.00);
    font-size: 13px;
    line-height: 13px;
    font-weight: 700;
    font-style: normal;
    font-family: Raleway;
    padding: 14px 14px 14px 16px;
    text-decoration: none;
    background-color: rgba(0, 0, 0, 0);
    border-color: rgba(41, 46, 49, 0.50);
    border-style: solid;
    border-width: 1px;
    border-radius: 30px 30px 30px 30px;
    text-align: left;
    letter-spacing: 1px
}
.tp-caption.ContentZoom-ButtonClose:hover,
.ContentZoom-ButtonClose:hover {
    color: rgba(255, 255, 255, 1.00);
    text-decoration: none;
    background-color: rgba(41, 46, 49, 1.00);
    border-color: rgba(41, 46, 49, 1.00);
    border-style: solid;
    border-width: 1px;
    border-radius: 30px 30px 30px 30px
}
.tp-caption.Newspaper-Title,
.Newspaper-Title {
    color: rgba(255, 255, 255, 1.00);
    font-size: 50px;
    line-height: 55px;
    font-weight: 400;
    font-style: normal;
    font-family: "Roboto Slab";
    padding: 0 0 10px 0;
    text-decoration: none;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    text-align: left
}
.tp-caption.Newspaper-Subtitle,
.Newspaper-Subtitle {
    color: rgba(168, 216, 238, 1.00);
    font-size: 15px;
    line-height: 20px;
    font-weight: 900;
    font-style: normal;
    font-family: Roboto;
    padding: 0 0 0 0px;
    text-decoration: none;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    text-align: left
}
.tp-caption.Newspaper-Button,
.Newspaper-Button {
    color: rgba(255, 255, 255, 1.00);
    font-size: 13px;
    line-height: 17px;
    font-weight: 700;
    font-style: normal;
    font-family: Roboto;
    padding: 12px 35px 12px 35px;
    text-decoration: none;
    background-color: rgba(255, 255, 255, 0);
    border-color: rgba(255, 255, 255, 0.25);
    border-style: solid;
    border-width: 1px;
    border-radius: 0px 0px 0px 0px;
    letter-spacing: 2px;
    text-align: left
}
.tp-caption.Newspaper-Button:hover,
.Newspaper-Button:hover {
    color: rgba(0, 0, 0, 1.00);
    text-decoration: none;
    background-color: rgba(255, 255, 255, 1.00);
    border-color: rgba(255, 255, 255, 1.00);
    border-style: solid;
    border-width: 1px;
    border-radius: 0px 0px 0px 0px
}
.tp-caption.rtwhitemedium,
.rtwhitemedium {
    font-size: 22px;
    line-height: 26px;
    color: rgb(255, 255, 255);
    text-decoration: none;
    background-color: transparent;
    border-width: 0px;
    border-color: rgb(0, 0, 0);
    border-style: none;
    text-shadow: none
}

@media only screen and (max-width: 767px) {
	.revtp-searchform input[type="text"],
	.revtp-searchform input[type="email"],
	.revtp-form input[type="text"],
	.revtp-form input[type="email"] { width: 200px !important; }
}

.revtp-searchform input[type="submit"],
.revtp-form input[type="submit"] {	
	font-family: "Arial", sans-serif;
    line-height: 46px;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 15px;
    font-weight: 700;
    padding: 0 20px;
    border: 0;
    background: #009aee;
    color: #fff;
    
    
    border-radius: 0px;
}

.tp-caption.Twitter-Content a,
    .tp-caption.Twitter-Content a:visited {
        color: #0084B4 !important
    }
    .tp-caption.Twitter-Content a:hover {
        color: #0084B4 !important;
        text-decoration: underline !important
    }
    .tp-caption.Concept-Title,
    .Concept-Title {
        color: rgba(255, 255, 255, 1.00);
        font-size: 70px;
        line-height: 70px;
        font-weight: 700;
        font-style: normal;
        font-family: "Roboto Condensed";
        padding: 0px 0px 10px 0px;
        text-decoration: none;
        text-align: left;
        background-color: transparent;
        border-color: transparent;
        border-style: none;
        border-width: 0px;
        border-radius: 0px 0px 0px 0px;
        letter-spacing: 5px
    }
    .tp-caption.Concept-SubTitle,
    .Concept-SubTitle {
        color: rgba(255, 255, 255, 0.65);
        font-size: 25px;
        line-height: 25px;
        font-weight: 700;
        font-style: italic;
        font-family: ""Playfair Display"";
        padding: 0px 0px 10px 0px;
        text-decoration: none;
        text-align: left;
        background-color: transparent;
        border-color: transparent;
        border-style: none;
        border-width: 0px;
        border-radius: 0px 0px 0px 0px
    }
    .tp-caption.Concept-Content,
    .Concept-Content {
        color: rgba(255, 255, 255, 1.00);
        font-size: 20px;
        line-height: 30px;
        font-weight: 400;
        font-style: normal;
        font-family: "Roboto Condensed";
        padding: 0px 0px 0px 0px;
        text-decoration: none;
        text-align: center;
        background-color: rgba(0, 0, 0, 0);
        border-color: rgba(255, 255, 255, 1.00);
        border-style: none;
        border-width: 2px;
        border-radius: 0px 0px 0px 0px
    }
    .tp-caption.Concept-MoreBtn,
    .Concept-MoreBtn {
        color: rgba(255, 255, 255, 1.00);
        font-size: 30px;
        line-height: 30px;
        font-weight: 300;
        font-style: normal;
        font-family: Roboto;
        padding: 10px 8px 7px 10px;
        text-decoration: none;
        text-align: left;
        background-color: transparent;
        border-color: rgba(255, 255, 255, 0);
        border-style: solid;
        border-width: 0px;
        border-radius: 50px 50px 50px 50px;
        letter-spacing: 1px;
        text-align: left
    }
    .tp-caption.Concept-MoreBtn:hover,
    .Concept-MoreBtn:hover {
        color: rgba(255, 255, 255, 1.00);
        text-decoration: none;
        background-color: rgba(255, 255, 255, 0.15);
        border-color: rgba(255, 255, 255, 0);
        border-style: solid;
        border-width: 0px;
        border-radius: 50px 50px 50px 50px
    }
    .tp-caption.Concept-LessBtn,
    .Concept-LessBtn {
        color: rgba(255, 255, 255, 1.00);
        font-size: 30px;
        line-height: 30px;
        font-weight: 300;
        font-style: normal;
        font-family: Roboto;
        padding: 10px 8px 7px 10px;
        text-decoration: none;
        text-align: left;
        background-color: rgba(0, 0, 0, 1.00);
        border-color: rgba(255, 255, 255, 0);
        border-style: solid;
        border-width: 0px;
        border-radius: 50px 50px 50px 50px;
        letter-spacing: 1px;
        text-align: left
    }
    .tp-caption.Concept-LessBtn:hover,
    .Concept-LessBtn:hover {
        color: rgba(0, 0, 0, 1.00);
        text-decoration: none;
        background-color: rgba(255, 255, 255, 1.00);
        border-color: rgba(255, 255, 255, 0);
        border-style: solid;
        border-width: 0px;
        border-radius: 50px 50px 50px 50px
    }
    .tp-caption.Concept-SubTitle-Dark,
    .Concept-SubTitle-Dark {
        color: rgba(0, 0, 0, 0.65);
        font-size: 25px;
        line-height: 25px;
        font-weight: 700;
        font-style: italic;
        font-family: "Playfair Display";
        padding: 0px 0px 10px 0px;
        text-decoration: none;
        text-align: left;
        background-color: transparent;
        border-color: transparent;
        border-style: none;
        border-width: 0px;
        border-radius: 0px 0px 0px 0px
    }
    .tp-caption.Concept-Title-Dark,
    .Concept-Title-Dark {
        color: rgba(0, 0, 0, 1.00);
        font-size: 70px;
        line-height: 70px;
        font-weight: 700;
        font-style: normal;
        font-family: "Roboto Condensed";
        padding: 0px 0px 10px 0px;
        text-decoration: none;
        text-align: center;
        background-color: transparent;
        border-color: transparent;
        border-style: none;
        border-width: 0px;
        border-radius: 0px 0px 0px 0px;
        letter-spacing: 5px
    }
    .tp-caption.Concept-MoreBtn-Dark,
    .Concept-MoreBtn-Dark {
        color: rgba(0, 0, 0, 1.00);
        font-size: 30px;
        line-height: 30px;
        font-weight: 300;
        font-style: normal;
        font-family: Roboto;
        padding: 10px 8px 7px 10px;
        text-decoration: none;
        text-align: left;
        background-color: transparent;
        border-color: rgba(255, 255, 255, 0);
        border-style: solid;
        border-width: 0px;
        border-radius: 50px 50px 50px 50px;
        letter-spacing: 1px;
        text-align: left
    }
    .tp-caption.Concept-MoreBtn-Dark:hover,
    .Concept-MoreBtn-Dark:hover {
        color: rgba(255, 255, 255, 1.00);
        text-decoration: none;
        background-color: rgba(0, 0, 0, 1.00);
        border-color: rgba(255, 255, 255, 0);
        border-style: solid;
        border-width: 0px;
        border-radius: 50px 50px 50px 50px
    }
    .tp-caption.Concept-Content-Dark,
    .Concept-Content-Dark {
        color: rgba(0, 0, 0, 1.00);
        font-size: 20px;
        line-height: 30px;
        font-weight: 400;
        font-style: normal;
        font-family: "Roboto Condensed";
        padding: 0px 0px 0px 0px;
        text-decoration: none;
        text-align: center;
        background-color: rgba(0, 0, 0, 0);
        border-color: rgba(255, 255, 255, 1.00);
        border-style: none;
        border-width: 2px;
        border-radius: 0px 0px 0px 0px
    }
    .tp-caption.Concept-Notice,
    .Concept-Notice {
        color: rgba(255, 255, 255, 1.00);
        font-size: 15px;
        line-height: 15px;
        font-weight: 400;
        font-style: normal;
        font-family: "Roboto Condensed";
        padding: 0px 0px 0px 0px;
        text-decoration: none;
        text-align: center;
        background-color: rgba(0, 0, 0, 0);
        border-color: rgba(255, 255, 255, 1.00);
        border-style: none;
        border-width: 2px;
        border-radius: 0px 0px 0px 0px;
        letter-spacing: 2px
    }
    .tp-caption.Concept-Content a,
    .tp-caption.Concept-Content a:visited {
        color: #fff !important;
        border-bottom: 1px solid #fff !important;
        font-weight: 700 !important;
    }
    .tp-caption.Concept-Content a:hover {
        border-bottom: 1px solid transparent !important;
    }
    .tp-caption.Concept-Content-Dark a,
    .tp-caption.Concept-Content-Dark a:visited {
        color: #000 !important;
        border-bottom: 1px solid #000 !important;
        font-weight: 700 !important;
    }
    .tp-caption.Concept-Content-Dark a:hover {
        border-bottom: 1px solid transparent !important;
    }

    .tp-caption.Twitter-Content a,
    .tp-caption.Twitter-Content a:visited {
        color: #0084B4 !important
    }
    .tp-caption.Twitter-Content a:hover {
        color: #0084B4 !important;
        text-decoration: underline !important
    }
    .tp-caption.Creative-Title,
    .Creative-Title {
        color: rgba(255, 255, 255, 1.00);
        font-size: 70px;
        line-height: 70px;
        font-weight: 400;
        font-style: normal;
        font-family: "Playfair Display";
        padding: 0px 0px 0px 0px;
        text-decoration: none;
        text-align: center;
        background-color: transparent;
        border-color: transparent;
        border-style: none;
        border-width: 0px;
        border-radius: 0px 0px 0px 0px
    }
    .tp-caption.Creative-SubTitle,
    .Creative-SubTitle {
        color: rgba(205, 176, 131, 1.00);
        font-size: 14px;
        line-height: 14px;
        font-weight: 400;
        font-style: normal;
        font-family: Lato;
        padding: 0px 0px 0px 0px;
        text-decoration: none;
        text-align: center;
        background-color: transparent;
        border-color: transparent;
        border-style: none;
        border-width: 0px;
        border-radius: 0px 0px 0px 0px;
        letter-spacing: 2px
    }
    .tp-caption.Creative-Button,
    .Creative-Button {
        color: rgba(205, 176, 131, 1.00);
        font-size: 13px;
        line-height: 13px;
        font-weight: 400;
        font-style: normal;
        font-family: Lato;
        padding: 15px 50px 15px 50px;
        text-decoration: none;
        text-align: left;
        background-color: rgba(0, 0, 0, 0);
        border-color: rgba(205, 176, 131, 0.25);
        border-style: solid;
        border-width: 1px;
        border-radius: 0px 0px 0px 0px;
        letter-spacing: 2px
    }
    .tp-caption.Creative-Button:hover,
    .Creative-Button:hover {
        color: rgba(205, 176, 131, 1.00);
        text-decoration: none;
        background-color: rgba(0, 0, 0, 0);
        border-color: rgba(205, 176, 131, 1.00);
        border-style: solid;
        border-width: 1px;
        border-radius: 0px 0px 0px 0px
    }

.tp-caption.subcaption,
    .subcaption {
        color: rgba(111, 124, 130, 1.00);
        font-size: 19px;
        line-height: 24px;
        font-weight: 400;
        font-style: normal;
        font-family: roboto;
        padding: 0 0 0 0px;
        text-decoration: none;
        background-color: transparent;
        border-color: rgba(0, 0, 0, 1.00);
        border-style: none;
        border-width: 0px;
        border-radius: 0 0 0 0px;
        text-shadow: none;
        text-align: left
    }
    .tp-caption.RedDot,
    .RedDot {
        color: rgba(0, 0, 0, 1.00);        
        font-weight: 400;
        font-style: normal;        
        padding: 0px 0px 0px 0px;
        text-decoration: none;
        text-align: left;
        background-color: rgba(213, 0, 0, 1.00);
        border-color: rgba(255, 255, 255, 1.00);
        border-style: solid;
        border-width: 5px;
        border-radius: 50px 50px 50px 50px
    }
    .tp-caption.RedDot:hover,
    .RedDot:hover {
        color: rgba(0, 0, 0, 1.00);
        text-decoration: none;
        background-color: rgba(255, 255, 255, 0.75);
        border-color: rgba(213, 0, 0, 1.00);
        border-style: solid;
        border-width: 5px;
        border-radius: 50px 50px 50px 50px
    }

    .tp-caption.SlidingOverlays-Title,
    .SlidingOverlays-Title {
        color: rgba(255, 255, 255, 1.00);
        font-size: 50px;
        line-height: 50px;
        font-weight: 400;
        font-style: normal;
        font-family: "Playfair Display";
        padding: 0px 0px 0px 0px;
        text-decoration: none;
        text-align: left;
        background-color: transparent;
        border-color: transparent;
        border-style: none;
        border-width: 0px;
        border-radius: 0px 0px 0px 0px
    }
    .tp-caption.SlidingOverlays-Title,
    .SlidingOverlays-Title {
        color: rgba(255, 255, 255, 1.00);
        font-size: 50px;
        line-height: 50px;
        font-weight: 400;
        font-style: normal;
        font-family: "Playfair Display";
        padding: 0px 0px 0px 0px;
        text-decoration: none;
        text-align: left;
        background-color: transparent;
        border-color: transparent;
        border-style: none;
        border-width: 0px;
        border-radius: 0px 0px 0px 0px
    }

     .tp-caption.Woo-TitleLarge,
    .Woo-TitleLarge {
        color: rgba(0, 0, 0, 1.00);
        font-size: 40px;
        line-height: 40px;
        font-weight: 400;
        font-style: normal;
        font-family: "Playfair Display";
        padding: 0 0 0 0px;
        text-decoration: none;
        background-color: transparent;
        border-color: transparent;
        border-style: none;
        border-width: 0px;
        border-radius: 0 0 0 0px;
        text-align: center;
        
    }
    .tp-caption.Woo-Rating,
    .Woo-Rating {
        color: rgba(0, 0, 0, 1.00);
        font-size: 14px;
        line-height: 30px;
        font-weight: 300;
        font-style: normal;
        font-family: Roboto;
        padding: 0 0 0 0px;
        text-decoration: none;
        background-color: transparent;
        border-color: transparent;
        border-style: none;
        border-width: 0px;
        border-radius: 0 0 0 0px;
        text-align: left;
        
    }
    .tp-caption.Woo-SubTitle,
    .Woo-SubTitle {
        color: rgba(0, 0, 0, 1.00);
        font-size: 18px;
        line-height: 18px;
        font-weight: 300;
        font-style: normal;
        font-family: Roboto;
        padding: 0 0 0 0px;
        text-decoration: none;
        background-color: transparent;
        border-color: transparent;
        border-style: none;
        border-width: 0px;
        border-radius: 0 0 0 0px;
        text-align: center;
        letter-spacing: 2px;
        
    }
    .tp-caption.Woo-PriceLarge,
    .Woo-PriceLarge {
        color: rgba(0, 0, 0, 1.00);
        font-size: 60px;
        line-height: 60px;
        font-weight: 700;
        font-style: normal;
        font-family: Roboto;
        padding: 0 0 0 0px;
        text-decoration: none;
        background-color: transparent;
        border-color: transparent;
        border-style: none;
        border-width: 0px;
        border-radius: 0 0 0 0px;
        text-align: center;
        
    }
    .tp-caption.Woo-ProductInfo,
    .Woo-ProductInfo {
        color: rgba(0, 0, 0, 1.00);
        font-size: 15px;
        line-height: 15px;
        font-weight: 500;
        font-style: normal;
        font-family: Roboto;
        padding: 12px 75px 12px 50px;
        text-decoration: none;
        background-color: rgba(254, 207, 114, 1.00);
        border-color: rgba(0, 0, 0, 1.00);
        border-style: solid;
        border-width: 1px;
        border-radius: 4px 4px 4px 4px;
        text-align: left;
        
    }
    .tp-caption.Woo-ProductInfo:hover,
    .Woo-ProductInfo:hover {
        color: rgba(0, 0, 0, 1.00);
        text-decoration: none;
        background-color: rgba(243, 168, 71, 1.00);
        border-color: rgba(0, 0, 0, 1.00);
        border-style: solid;
        border-width: 1px;
        border-radius: 4px 4px 4px 4px
    }
    .tp-caption.Woo-AddToCart,
    .Woo-AddToCart {
        color: rgba(0, 0, 0, 1.00);
        font-size: 15px;
        line-height: 15px;
        font-weight: 500;
        font-style: normal;
        font-family: Roboto;
        padding: 12px 35px 12px 35px;
        text-decoration: none;
        background-color: rgba(254, 207, 114, 1.00);
        border-color: rgba(0, 0, 0, 1.00);
        border-style: solid;
        border-width: 1px;
        border-radius: 4px 4px 4px 4px;
        text-align: left;
        
    }
    .tp-caption.Woo-AddToCart:hover,
    .Woo-AddToCart:hover {
        color: rgba(0, 0, 0, 1.00);
        text-decoration: none;
        background-color: rgba(243, 168, 71, 1.00);
        border-color: rgba(0, 0, 0, 1.00);
        border-style: solid;
        border-width: 1px;
        border-radius: 4px 4px 4px 4px
    }
    .tp-caption.Woo-TitleLarge,
    .Woo-TitleLarge {
        color: rgba(0, 0, 0, 1.00);
        font-size: 40px;
        line-height: 40px;
        font-weight: 400;
        font-style: normal;
        font-family: "Playfair Display";
        padding: 0 0 0 0px;
        text-decoration: none;
        background-color: transparent;
        border-color: transparent;
        border-style: none;
        border-width: 0px;
        border-radius: 0 0 0 0px;
        text-align: center;
        
    }
    .tp-caption.Woo-SubTitle,
    .Woo-SubTitle {
        color: rgba(0, 0, 0, 1.00);
        font-size: 18px;
        line-height: 18px;
        font-weight: 300;
        font-style: normal;
        font-family: Roboto;
        padding: 0 0 0 0px;
        text-decoration: none;
        background-color: transparent;
        border-color: transparent;
        border-style: none;
        border-width: 0px;
        border-radius: 0 0 0 0px;
        text-align: center;
        letter-spacing: 2px;
        
    }
    .tp-caption.Woo-PriceLarge,
    .Woo-PriceLarge {
        color: rgba(0, 0, 0, 1.00);
        font-size: 60px;
        line-height: 60px;
        font-weight: 700;
        font-style: normal;
        font-family: Roboto;
        padding: 0 0 0 0px;
        text-decoration: none;
        background-color: transparent;
        border-color: transparent;
        border-style: none;
        border-width: 0px;
        border-radius: 0 0 0 0px;
        text-align: center;
        
    }
    .tp-caption.Woo-ProductInfo,
    .Woo-ProductInfo {
        color: rgba(0, 0, 0, 1.00);
        font-size: 15px;
        line-height: 15px;
        font-weight: 500;
        font-style: normal;
        font-family: Roboto;
        padding: 12px 75px 12px 50px;
        text-decoration: none;
        background-color: rgba(254, 207, 114, 1.00);
        border-color: rgba(0, 0, 0, 1.00);
        border-style: solid;
        border-width: 1px;
        border-radius: 4px 4px 4px 4px;
        text-align: left;
        
    }
    .tp-caption.Woo-ProductInfo:hover,
    .Woo-ProductInfo:hover {
        color: rgba(0, 0, 0, 1.00);
        text-decoration: none;
        background-color: rgba(243, 168, 71, 1.00);
        border-color: rgba(0, 0, 0, 1.00);
        border-style: solid;
        border-width: 1px;
        border-radius: 4px 4px 4px 4px
    }
    .tp-caption.Woo-AddToCart,
    .Woo-AddToCart {
        color: rgba(0, 0, 0, 1.00);
        font-size: 15px;
        line-height: 15px;
        font-weight: 500;
        font-style: normal;
        font-family: Roboto;
        padding: 12px 35px 12px 35px;
        text-decoration: none;
        background-color: rgba(254, 207, 114, 1.00);
        border-color: rgba(0, 0, 0, 1.00);
        border-style: solid;
        border-width: 1px;
        border-radius: 4px 4px 4px 4px;
        text-align: left;
        
    }
    .tp-caption.Woo-AddToCart:hover,
    .Woo-AddToCart:hover {
        color: rgba(0, 0, 0, 1.00);
        text-decoration: none;
        background-color: rgba(243, 168, 71, 1.00);
        border-color: rgba(0, 0, 0, 1.00);
        border-style: solid;
        border-width: 1px;
        border-radius: 4px 4px 4px 4px
    }

    .tp-caption.FullScreen-Toggle,
    .FullScreen-Toggle {
        color: rgba(255, 255, 255, 1.00);
        font-size: 20px;
        line-height: 20px;
        font-weight: 400;
        font-style: normal;
        font-family: Raleway;
        padding: 11px 8px 11px 12px;
        text-decoration: none;
        text-align: left;
        background-color: rgba(0, 0, 0, 0.50);
        border-color: rgba(255, 255, 255, 0);
        border-style: solid;
        border-width: 0px;
        border-radius: 0px 0px 0px 0px;
        letter-spacing: 3px;
        text-align: left
    }
    .tp-caption.FullScreen-Toggle:hover,
    .FullScreen-Toggle:hover {
        color: rgba(255, 255, 255, 1.00);
        text-decoration: none;
        background-color: rgba(0, 0, 0, 1.00);
        border-color: rgba(255, 255, 255, 0);
        border-style: solid;
        border-width: 0px;
        border-radius: 0px 0px 0px 0px
    }

    .tp-caption.Agency-Title,
.Agency-Title {
    color: rgba(255, 255, 255, 1.00);
    font-size: 70px;
    line-height: 70px;
    font-weight: 900;
    font-style: normal;
    font-family: lato;
    padding: 0 0 0 0px;
    text-decoration: none;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    text-align: left;
    letter-spacing: 10px
}
.tp-caption.Agency-SubTitle,
.Agency-SubTitle {
    color: rgba(255, 255, 255, 1.00);
    font-size: 20px;
    line-height: 20px;
    font-weight: 400;
    font-style: italic;
    font-family: Georgia, serif;
    padding: 0 0 0 0px;
    text-decoration: none;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    text-align: center
}
.tp-caption.Agency-PlayBtn,
.Agency-PlayBtn {
    color: rgba(255, 255, 255, 1.00);
    font-size: 30px;
    line-height: 71px;
    font-weight: 500;
    font-style: normal;
    font-family: Roboto;
    padding: 0px 0px 0px 0px;
    text-decoration: none;
    background-color: transparent;
    border-color: rgba(255, 255, 255, 1.00);
    border-style: solid;
    border-width: 2px;
    border-radius: 100px 100px 100px 100px;
    text-align: center
}
.tp-caption.Agency-PlayBtn:hover,
.Agency-PlayBtn:hover {
    color: rgba(255, 255, 255, 1.00);
    text-decoration: none;
    background-color: transparent;
    border-color: rgba(255, 255, 255, 1.00);
    border-style: solid;
    border-width: 2px;
    border-radius: 100px 100px 100px 100px;
    cursor: pointer
}
.tp-caption.Agency-SmallText,
.Agency-SmallText {
    color: rgba(255, 255, 255, 1.00);
    font-size: 12px;
    line-height: 12px;
    font-weight: 900;
    font-style: normal;
    font-family: lato;
    padding: 0 0 0 0px;
    text-decoration: none;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    text-align: left;
    letter-spacing: 5px
}
.tp-caption.Agency-Social,
.Agency-Social {
    color: rgba(51, 51, 51, 1.00);
    font-size: 25px;
    line-height: 50px;
    font-weight: 400;
    font-style: normal;
    font-family: Georgia, serif;
    padding: 0 0 0 0px;
    text-decoration: none;
    background-color: transparent;
    border-color: rgba(51, 51, 51, 1.00);
    border-style: solid;
    border-width: 2px;
    border-radius: 30px 30px 30px 30px;
    text-align: center
}
.tp-caption.Agency-Social:hover,
.Agency-Social:hover {
    color: rgba(255, 255, 255, 1.00);
    text-decoration: none;
    background-color: rgba(51, 51, 51, 1.00);
    border-color: rgba(51, 51, 51, 1.00);
    border-style: solid;
    border-width: 2px;
    border-radius: 30px 30px 30px 30px;
    cursor: pointer
}
.tp-caption.Agency-CloseBtn,
.Agency-CloseBtn {
    color: rgba(255, 255, 255, 1.00);
    font-size: 50px;
    line-height: 50px;
    font-weight: 500;
    font-style: normal;
    font-family: Roboto;
    padding: 0px 0px 0px 0px;
    text-decoration: none;
    background-color: transparent;
    border-color: rgba(255, 255, 255, 0);
    border-style: none;
    border-width: 0px;
    border-radius: 100px 100px 100px 100px;
    text-align: center
}
.tp-caption.Agency-CloseBtn:hover,
.Agency-CloseBtn:hover {
    color: rgba(255, 255, 255, 1.00);
    text-decoration: none;
    background-color: transparent;
    border-color: rgba(255, 255, 255, 0);
    border-style: none;
    border-width: 0px;
    border-radius: 100px 100px 100px 100px;
    cursor: pointer
}

.tp-caption.Dining-Title,
.Dining-Title {
    color: rgba(255, 255, 255, 1.00);
    font-size: 70px;
    line-height: 70px;
    font-weight: 400;
    font-style: normal;
    font-family: Georgia, serif;
    padding: 0 0 0 0px;
    text-decoration: none;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    text-align: left;
    letter-spacing: 10px
}
.tp-caption.Dining-SubTitle,
.Dining-SubTitle {
    color: rgba(255, 255, 255, 1.00);
    font-size: 20px;
    line-height: 20px;
    font-weight: 400;
    font-style: normal;
    font-family: Georgia, serif;
    padding: 0 0 0 0px;
    text-decoration: none;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    text-align: left
}
.tp-caption.Dining-BtnLight,
.Dining-BtnLight {
    color: rgba(255, 255, 255, 0.50);
    font-size: 15px;
    line-height: 15px;
    font-weight: 700;
    font-style: normal;
    font-family: Lato;
    padding: 17px 73px 17px 50px;
    text-decoration: none;
    background-color: rgba(0, 0, 0, 0);
    border-color: rgba(255, 255, 255, 0.25);
    border-style: solid;
    border-width: 1px;
    border-radius: 0px 0px 0px 0px;
    text-align: left;
    letter-spacing: 2px
}
.tp-caption.Dining-BtnLight:hover,
.Dining-BtnLight:hover {
    color: rgba(255, 255, 255, 1.00);
    text-decoration: none;
    background-color: rgba(0, 0, 0, 0);
    border-color: rgba(255, 255, 255, 1.00);
    border-style: solid;
    border-width: 1px;
    border-radius: 0px 0px 0px 0px
}
.tp-caption.Dining-Social,
.Dining-Social {
    color: rgba(255, 255, 255, 1.00);
    font-size: 25px;
    line-height: 50px;
    font-weight: 400;
    font-style: normal;
    font-family: Georgia, serif;
    padding: 0 0 0 0px;
    text-decoration: none;
    background-color: transparent;
    border-color: rgba(255, 255, 255, 0.25);
    border-style: solid;
    border-width: 1px;
    border-radius: 30px 30px 30px 30px;
    text-align: center
}
.tp-caption.Dining-Social:hover,
.Dining-Social:hover {
    color: rgba(255, 255, 255, 1.00);
    text-decoration: none;
    background-color: transparent;
    border-color: rgba(255, 255, 255, 1.00);
    border-style: solid;
    border-width: 1px;
    border-radius: 30px 30px 30px 30px;
    cursor: pointer
}
tp-caption.Team-Thumb,
.Team-Thumb {
    color: rgba(255, 255, 255, 1.00);
    font-size: 20px;
    line-height: 22px;
    font-weight: 400;
    font-style: normal;
    font-family: Arial;
    padding: 0 0 0 0px;
    text-decoration: none;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    text-align: left
}
.tp-caption.Team-Thumb:hover,
.Team-Thumb:hover {
    color: rgba(255, 255, 255, 1.00);
    text-decoration: none;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    cursor: pointer
}
.tp-caption.Team-Name,
.Team-Name {
    color: rgba(255, 255, 255, 1.00);
    font-size: 70px;
    line-height: 70px;
    font-weight: 900;
    font-style: normal;
    font-family: Roboto;
    padding: 0 0 0 0px;
    text-decoration: none;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    text-align: left
}
.tp-caption.Team-Position,
.Team-Position {
    color: rgba(255, 255, 255, 1.00);
    font-size: 30px;
    line-height: 30px;
    font-weight: 400;
    font-style: normal;
    font-family: Georgia, serif;
    padding: 0 0 0 0px;
    text-decoration: none;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    text-align: left
}
.tp-caption.Team-Description,
.Team-Description {
    color: rgba(255, 255, 255, 1.00);
    font-size: 18px;
    line-height: 28px;
    font-weight: 400;
    font-style: normal;
    font-family: Roboto;
    padding: 0 0 0 0px;
    text-decoration: none;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    text-align: left
}
.tp-caption.Team-Social,
.Team-Social {
    color: rgba(255, 255, 255, 1.00);
    font-size: 50px;
    line-height: 50px;
    font-weight: 400;
    font-style: normal;
    font-family: Arial;
    padding: 0 0 0 0px;
    text-decoration: none;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    text-align: center
}
.tp-caption.Team-Social:hover,
.Team-Social:hover {
    color: rgba(255, 255, 255, 1.00);
    text-decoration: none;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0px 0px 0px 0px;
    cursor: pointer
}

.tp-caption.VideoControls-Play,
.VideoControls-Play {
    color: rgba(0, 0, 0, 1.00);
    font-size: 50px;
    line-height: 120px;
    font-weight: 500;
    font-style: normal;
    font-family: Roboto;
    padding: 0px 0px 0px 7px;
    text-decoration: none;
    background-color: rgba(255, 255, 255, 1.00);
    border-color: rgba(0, 0, 0, 1.00);
    border-style: solid;
    border-width: 0px;
    border-radius: 100px 100px 100px 100px;
    text-align: center
}
.tp-caption.VideoControls-Play:hover,
.VideoControls-Play:hover {
    color: rgba(0, 0, 0, 1.00);
    text-decoration: none;
    background-color: rgba(255, 255, 255, 1.00);
    border-color: rgba(0, 0, 0, 1.00);
    border-style: solid;
    border-width: 0px;
    border-radius: 100px 100px 100px 100px;
    cursor: pointer
}
.tp-caption.VideoPlayer-Title,
.VideoPlayer-Title {
    color: rgba(255, 255, 255, 1.00);
    font-size: 40px;
    line-height: 40px;
    font-weight: 900;
    font-style: normal;
    font-family: Lato;
    padding: 0 0 0 0px;
    text-decoration: none;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    text-align: left;
    letter-spacing: 10px
}
.tp-caption.VideoPlayer-SubTitle,
.VideoPlayer-SubTitle {
    color: rgba(255, 255, 255, 1.00);
    font-size: 20px;
    line-height: 20px;
    font-weight: 400;
    font-style: italic;
    font-family: Georgia, serif;
    padding: 0 0 0 0px;
    text-decoration: none;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    text-align: center
}
.tp-caption.VideoPlayer-Social,
.VideoPlayer-Social {
    color: rgba(255, 255, 255, 1.00);
    font-size: 50px;
    line-height: 50px;
    font-weight: 400;
    font-style: normal;
    font-family: Arial;
    padding: 0 0 0 0px;
    text-decoration: none;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    text-align: center
}
.tp-caption.VideoPlayer-Social:hover,
.VideoPlayer-Social:hover {
    color: rgba(255, 255, 255, 1.00);
    text-decoration: none;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0px 0px 0px 0px;
    cursor: pointer
}
.tp-caption.VideoControls-Mute,
.VideoControls-Mute {
    color: rgba(0, 0, 0, 1.00);
    font-size: 20px;
    line-height: 50px;
    font-weight: 500;
    font-style: normal;
    font-family: Roboto;
    padding: 0px 0px 0px 0px;
    text-decoration: none;
    background-color: rgba(255, 255, 255, 1.00);
    border-color: rgba(0, 0, 0, 1.00);
    border-style: solid;
    border-width: 0px;
    border-radius: 100px 100px 100px 100px;
    text-align: center
}
.tp-caption.VideoControls-Mute:hover,
.VideoControls-Mute:hover {
    color: rgba(0, 0, 0, 1.00);
    text-decoration: none;
    background-color: rgba(255, 255, 255, 1.00);
    border-color: rgba(0, 0, 0, 1.00);
    border-style: solid;
    border-width: 0px;
    border-radius: 100px 100px 100px 100px;
    cursor: pointer
}
.tp-caption.VideoControls-Pause,
.VideoControls-Pause {
    color: rgba(0, 0, 0, 1.00);
    font-size: 20px;
    line-height: 50px;
    font-weight: 500;
    font-style: normal;
    font-family: Roboto;
    padding: 0px 0px 0px 0px;
    text-decoration: none;
    background-color: rgba(255, 255, 255, 1.00);
    border-color: rgba(0, 0, 0, 1.00);
    border-style: solid;
    border-width: 0px;
    border-radius: 100px 100px 100px 100px;
    text-align: center
}
.tp-caption.VideoControls-Pause:hover,
.VideoControls-Pause:hover {
    color: rgba(0, 0, 0, 1.00);
    text-decoration: none;
    background-color: rgba(255, 255, 255, 1.00);
    border-color: rgba(0, 0, 0, 1.00);
    border-style: solid;
    border-width: 0px;
    border-radius: 100px 100px 100px 100px;
    cursor: pointer
 }

.soundcloudwrapper iframe {
    width: 100% !important
}
.tp-caption.SleekLanding-Title,
.SleekLanding-Title {
    color: rgba(255, 255, 255, 1.00);
    font-size: 35px;
    line-height: 40px;
    font-weight: 400;
    font-style: normal;
    font-family: Lato;
    padding: 0 0 0 0px;
    text-decoration: none;
    text-align: left;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    text-align: left;
    letter-spacing: 5px
}
.tp-caption.SleekLanding-ButtonBG,
.SleekLanding-ButtonBG {
    color: rgba(0, 0, 0, 1.00);
        
    font-weight: 700;
    font-style: normal;    
    padding: 0 0 0 0px;
    text-decoration: none;
    text-align: left;
    background-color: rgba(255, 255, 255, 0.10);
    border-color: rgba(0, 0, 0, 0);
    border-style: solid;
    border-width: 0px;
    border-radius: 5px 5px 5px 5px;
    text-align: left;    
    box-shadow: inset 0px 2px 0px 0px rgba(0, 0, 0, 0.15)
}
.tp-caption.SleekLanding-SmallTitle,
.SleekLanding-SmallTitle {
    color: rgba(255, 255, 255, 1.00);
    font-size: 13px;
    line-height: 50px;
    font-weight: 900;
    font-style: normal;
    font-family: Lato;
    padding: 0 0 0 0px;
    text-decoration: none;
    text-align: left;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    text-align: left;
    letter-spacing: 2px
}
.tp-caption.SleekLanding-BottomText,
.SleekLanding-BottomText {
    color: rgba(255, 255, 255, 1.00);
    font-size: 15px;
    line-height: 24px;
    font-weight: 400;
    font-style: normal;
    font-family: Lato;
    padding: 0 0 0 0px;
    text-decoration: none;
    text-align: left;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    text-align: left
}
.tp-caption.SleekLanding-Social,
.SleekLanding-Social {
    color: rgba(255, 255, 255, 1.00);
    font-size: 22px;
    line-height: 30px;
    font-weight: 400;
    font-style: normal;
    font-family: Arial;
    padding: 0 0 0 0px;
    text-decoration: none;
    text-align: center;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    text-align: center
}
.tp-caption.SleekLanding-Social:hover,
.SleekLanding-Social:hover {
    color: rgba(0, 0, 0, 0.25);
    text-decoration: none;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    cursor: pointer
}
#rev_slider_429_1_wrapper .tp-loader.spinner2 {
    background-color: #555555 !important;
}
.tp-fat {
    font-weight: 900 !important;
}

.tp-caption.PostSlider-Category,
.PostSlider-Category {
    color: rgba(0, 0, 0, 1.00);
    font-size: 15px;
    line-height: 15px;
    font-weight: 300;
    font-style: normal;
    font-family: Roboto;
    padding: 0 0 0 0px;
    text-decoration: none;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    letter-spacing: 3px;
    text-align: left
}
.tp-caption.PostSlider-Title,
.PostSlider-Title {
    color: rgba(0, 0, 0, 1.00);
    font-size: 40px;
    line-height: 40px;
    font-weight: 400;
    font-style: normal;
    font-family: "Playfair Display";
    padding: 0 0 0 0px;
    text-decoration: none;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    text-align: left
}
.tp-caption.PostSlider-Content,
.PostSlider-Content {
    color: rgba(119, 119, 119, 1.00);
    font-size: 15px;
    line-height: 23px;
    font-weight: 400;
    font-style: normal;
    font-family: Roboto;
    padding: 0 0 0 0px;
    text-decoration: none;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    text-align: left
}
.tp-caption.PostSlider-Button,
.PostSlider-Button {
    color: rgba(0, 0, 0, 1.00);
    font-size: 15px;
    line-height: 40px;
    font-weight: 500;
    font-style: normal;
    font-family: Roboto;
    padding: 1px 56px 1px 32px;
    text-decoration: none;
    background-color: rgba(255, 255, 255, 1.00);
    border-color: rgba(0, 0, 0, 1.00);
    border-style: solid;
    border-width: 1px;
    border-radius: 0px 0px 0px 0px;
    text-align: left
}
.tp-caption.PostSlider-Button:hover,
.PostSlider-Button:hover {
    color: rgba(0, 0, 0, 1.00);
    text-decoration: none;
    background-color: rgba(238, 238, 238, 1.00);
    border-color: rgba(0, 0, 0, 1.00);
    border-style: solid;
    border-width: 1px;
    border-radius: 0px 0px 0px 0px;
    cursor: pointer
}

/* media queries */

@media only screen and (max-width: 960px) {} @media only screen and (max-width: 768px) {} .tp-caption.LandingPage-Title,
.LandingPage-Title {
    color:rgba(255,
    255,
    255,
    1.00);
    font-size:70px;
    line-height:80px;
    font-weight:900;
    font-style:normal;
    font-family:Lato;
    padding:0 0 0 0px;
    text-decoration:none;
    background-color:transparent;
    border-color:transparent;
    border-style:none;
    border-width:0px;
    border-radius:0 0 0 0px;
    text-align:left;
    letter-spacing:10px
}
.tp-caption.LandingPage-SubTitle,
.LandingPage-SubTitle {
    color: rgba(255, 255, 255, 1.00);
    font-size: 20px;
    line-height: 30px;
    font-weight: 400;
    font-style: italic;
    font-family: Georgia, serif;
    padding: 0 0 0 0px;
    text-decoration: none;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    text-align: left
}
.tp-caption.LandingPage-Button,
.LandingPage-Button {
    color: rgba(0, 0, 0, 1.00);
    font-size: 15px;
    line-height: 54px;
    font-weight: 500;
    font-style: normal;
    font-family: Roboto;
    padding: 0px 35px 0px 35px;
    text-decoration: none;
    background-color: rgba(255, 255, 255, 1.00);
    border-color: rgba(0, 0, 0, 1.00);
    border-style: solid;
    border-width: 0px;
    border-radius: 0px 0px 0px 0px;
    text-align: left;
    letter-spacing: 3px
}
.tp-caption.LandingPage-Button:hover,
.LandingPage-Button:hover {
    color: rgba(0, 0, 0, 1.00);
    text-decoration: none;
    background-color: rgba(255, 255, 255, 1.00);
    border-color: rgba(0, 0, 0, 1.00);
    border-style: solid;
    border-width: 0px;
    border-radius: 0px 0px 0px 0px;
    cursor: pointer
}
.tp-caption.App-Content a,
.tp-caption.App-Content a:visited {
    color: #89124e !important;
    border-bottom: 1px solid transparent !important;
    font-weight: bold !important;
}
.tp-caption.App-Content a:hover {
    border-bottom: 1px solid #89124e !important;
}
.tp-caption.RockBand-LogoText,
.RockBand-LogoText {
    color: rgba(255, 255, 255, 1.00);
    font-size: 60px;
    line-height: 60px;
    font-weight: 700;
    font-style: normal;
    font-family: Oswald;
    padding: 0 0 0 0px;
    text-decoration: none;
    text-align: left;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    text-align: left
}
.tp-caption.Twitter-Content a,
.tp-caption.Twitter-Content a:visited {
    color: #fff !important;
    text-decoration: underline !important;
}
.tp-caption.Twitter-Content a:hover {
    color: #fff !important;
    text-decoration: none !important;
}
.soundcloudwrapper iframe {
    width: 100% !important
}

.tp-caption.Agency-LogoText,
.Agency-LogoText {
    color: rgba(255, 255, 255, 1.00);
    font-size: 12px;
    line-height: 20px;
    font-weight: 400;
    font-style: normal;
    font-family: Lato;
    padding: 0 0 0 0px;
    text-decoration: none;
    text-align: center;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    text-align: center;
    letter-spacing: 1px
}
.tp-caption.ComingSoon-Highlight,
.ComingSoon-Highlight {
    color: rgba(255, 255, 255, 1.00);
    font-size: 20px;
    line-height: 37px;
    font-weight: 400;
    font-style: normal;
    font-family: Lato;
    padding: 0 20px 3px 20px;
    text-decoration: none;
    text-align: left;
    background-color: rgba(0, 154, 238, 1.00);
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    text-align: left
}
.tp-caption.ComingSoon-Count,
.ComingSoon-Count {
    color: rgba(255, 255, 255, 1.00);
    font-size: 50px;
    line-height: 50px;
    font-weight: 900;
    font-style: normal;
    font-family: Lato;
    padding: 0 0 0 0px;
    text-decoration: none;
    text-align: left;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    text-align: left
}
.tp-caption.ComingSoon-CountUnit,
.ComingSoon-CountUnit {
    color: rgba(255, 255, 255, 1.00);
    font-size: 20px;
    line-height: 20px;
    font-weight: 400;
    font-style: normal;
    font-family: Lato;
    padding: 0 0 0 0px;
    text-decoration: none;
    text-align: center;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    text-align: center
}
.tp-caption.ComingSoon-NotifyMe,
.ComingSoon-NotifyMe {
    color: rgba(164, 157, 143, 1.00);
    font-size: 27px;
    line-height: 35px;
    font-weight: 600;
    font-style: normal;
    font-family: Lato;
    padding: 0 0 0 0px;
    text-decoration: none;
    text-align: center;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    text-align: center
}

#mc_embed_signup input#mce-EMAIL {
    font-family: "Lato", sans-serif;
    font-size: 15px;
    color: #000;
    background-color: #fff;
    line-height: 46px;
    padding: 0 20px;
    cursor: text;
    border: 1px solid #fff;
    width: 400px;
    margin-bottom: 0px;
    -webkit-transition: background-color 0.5s;
    -moz-transition: background-color 0.5s;
    -o-transition: background-color 0.5s;
    -ms-transition: background-color 0.5s;
    transition: background-color 0.5s;
    
    
    border-radius: 0px;
}
#mc_embed_signup input#mce-EMAIL[type="email"]:focus {
    background-color: #fff;
    border: 1px solid #666;
    border-right: 0;
}
#mc_embed_signup input#mc-embedded-subscribe,
#mc_embed_signup input#mc-embedded-subscribe:focus {
    font-family: "Lato", sans-serif;
    line-height: 46px;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 900;
    padding: 0 20px;
    border: 1px solid #009aee;
    background: #009aee;
    color: #fff;
    
    
    border-radius: 0px;
}
#mc_embed_signup input#mc-embedded-subscribe:hover {
    background: #0083d4;
}
@media only screen and (max-width: 767px) {
    #mc_embed_signup input#mce-EMAIL {
        width: 200px;
    }
}
.tp-caption.Agency-SmallTitle,
.Agency-SmallTitle {
    color: rgba(255, 255, 255, 1.00);
    font-size: 15px;
    line-height: 22px;
    font-weight: 400;
    font-style: normal;
    font-family: lato;
    padding: 0 0 0 0px;
    text-decoration: none;
    text-align: center;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    text-align: center;
    letter-spacing: 6px
}
.tp-caption.Agency-SmallContent,
.Agency-SmallContent {
    color: rgba(255, 255, 255, 1.00);
    font-size: 15px;
    line-height: 24px;
    font-weight: 400;
    font-style: normal;
    font-family: lato;
    padding: 0 0 0 0px;
    text-decoration: none;
    text-align: center;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    text-align: center
}
.tp-caption.Agency-SmallLink,
.Agency-SmallLink {
    color: rgba(248, 124, 9, 1.00);
    font-size: 12px;
    line-height: 22px;
    font-weight: 700;
    font-style: normal;
    font-family: lato;
    padding: 0 0 0px 0;
    text-decoration: none;
    text-align: center;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    text-align: center;
    letter-spacing: 2px;
    border-bottom: 1px solid #f87c09 !important
}
.tp-caption.Agency-SmallLink:hover,
.Agency-SmallLink:hover {
    color: rgba(255, 255, 255, 1.00);
    text-decoration: none;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    cursor: pointer
}
.tp-caption.Agency-NavButton,
.Agency-NavButton {
    color: rgba(51, 51, 51, 1.00);
    font-size: 17px;
    line-height: 50px;
    font-weight: 500;
    font-style: normal;
    font-family: Roboto;
    padding: 0px 0px 0px 0px;
    text-decoration: none;
    text-align: center;
    background-color: rgba(255, 255, 255, 1.00);
    border-color: rgba(0, 0, 0, 1.00);
    border-style: solid;
    border-width: 0px;
    border-radius: 0px 0px 0px 0px;
    text-align: center
}
.tp-caption.Agency-NavButton:hover,
.Agency-NavButton:hover {
    color: rgba(255, 255, 255, 1.00);
    text-decoration: none;
    background-color: rgba(51, 51, 51, 1.00);
    border-color: rgba(0, 0, 0, 1.00);
    border-style: solid;
    border-width: 0px;
    border-radius: 0px 0px 0px 0px;
    cursor: pointer
}
.tp-caption.Agency-SmallLinkGreen,
.Agency-SmallLinkGreen {
    color: rgba(109, 177, 155, 1.00);
    font-size: 12px;
    line-height: 22px;
    font-weight: 700;
    font-style: normal;
    font-family: lato;
    padding: 0 0 0px 0;
    text-decoration: none;
    text-align: center;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    text-align: center;
    letter-spacing: 2px;
    border-bottom: 1px solid #6db19b !important
}
.tp-caption.Agency-SmallLinkGreen:hover,
.Agency-SmallLinkGreen:hover {
    color: rgba(255, 255, 255, 1.00);
    text-decoration: none;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    cursor: pointer
}
.tp-caption.Agency-SmallLinkBlue,
.Agency-SmallLinkBlue {
    color: rgba(153, 153, 153, 1.00);
    font-size: 12px;
    line-height: 22px;
    font-weight: 700;
    font-style: normal;
    font-family: lato;
    padding: 0 0 0px 0;
    text-decoration: none;
    text-align: center;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    text-align: center;
    letter-spacing: 2px;
    border-bottom: 1px solid #999 !important
}
.tp-caption.Agency-SmallLinkBlue:hover,
.Agency-SmallLinkBlue:hover {
    color: rgba(255, 255, 255, 1.00);
    text-decoration: none;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    cursor: pointer
}
.tp-caption.Agency-LogoText,
.Agency-LogoText {
    color: rgba(255, 255, 255, 1.00);
    font-size: 12px;
    line-height: 20px;
    font-weight: 400;
    font-style: normal;
    font-family: Lato;
    padding: 0 0 0 0px;
    text-decoration: none;
    text-align: center;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    text-align: center;
    letter-spacing: 1px
}
.tp-caption.Agency-ArrowTooltip,
.Agency-ArrowTooltip {
    color: rgba(51, 51, 51, 1.00);
    font-size: 15px;
    line-height: 20px;
    font-weight: 400;
    font-style: normal;
    font-family: "Permanent Marker";
    padding: 0 0 0 0px;
    text-decoration: none;
    text-align: left;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    text-align: left
}
.tp-caption.Agency-SmallSocial,
.Agency-SmallSocial {
    color: rgba(255, 255, 255, 1.00);
    font-size: 30px;
    line-height: 30px;
    font-weight: 400;
    font-style: normal;
    font-family: Arial;
    padding: 0 0 0 0px;
    text-decoration: none;
    text-align: center;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    text-align: center
}
.tp-caption.Agency-SmallSocial:hover,
.Agency-SmallSocial:hover {
    color: rgba(51, 51, 51, 1.00);
    text-decoration: none;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0px 0px 0px 0px;
    cursor: pointer
}
.tp-caption.Twitter-Content a,
.tp-caption.Twitter-Content a:visited {
    color: #0084B4 !important
}
.tp-caption.Twitter-Content a:hover {
    color: #0084B4 !important;
    text-decoration: underline !important
}
.tp-caption.CreativeFrontPage-Btn,
.CreativeFrontPage-Btn {
    color: rgba(255, 255, 255, 1.00);
    font-size: 14px;
    line-height: 60px;
    font-weight: 900;
    font-style: normal;
    font-family: Roboto;
    padding: 0px 50px 0px 50px;
    text-decoration: none;
    text-align: left;
    background-color: rgba(0, 104, 92, 1.00);
    border-color: rgba(0, 0, 0, 1.00);
    border-style: solid;
    border-width: 0px;
    border-radius: 4px 4px 4px 4px;
    letter-spacing: 2px
}
.tp-caption.CreativeFrontPage-Btn:hover,
.CreativeFrontPage-Btn:hover {
    color: rgba(255, 255, 255, 1.00);
    text-decoration: none;
    background-color: rgba(0, 0, 0, 0.25);
    border-color: rgba(0, 0, 0, 1.00);
    border-style: solid;
    border-width: 0px;
    border-radius: 4px 4px 4px 4px;
    cursor: pointer
}
.tp-caption.CreativeFrontPage-Menu,
.CreativeFrontPage-Menu {
    color: rgba(255, 255, 255, 1.00);
    font-size: 14px;
    line-height: 14px;
    font-weight: 500;
    font-style: normal;
    font-family: roboto;
    padding: 0 0 0 0px;
    text-decoration: none;
    text-align: left;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    letter-spacing: 2px
}
.tp-flip-index {
    z-index: 1000 !important;
}
.tp-caption.Twitter-Content a,
.tp-caption.Twitter-Content a:visited {
    color: #0084B4 !important
}
.tp-caption.Twitter-Content a:hover {
    color: #0084B4 !important;
    text-decoration: underline !important
}
.tp-caption.FullScreenMenu-Category,
.FullScreenMenu-Category {
    color: rgba(17, 17, 17, 1.00);
    font-size: 20px;
    line-height: 20px;
    font-weight: 700;
    font-style: normal;
    font-family: BenchNine;
    padding: 21px 30px 16px 30px;
    text-decoration: none;
    text-align: left;
    background-color: rgba(255, 255, 255, 0.90);
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    letter-spacing: 3px
}
.tp-caption.FullScreenMenu-Title,
.FullScreenMenu-Title {
    color: rgba(255, 255, 255, 1.00);
    font-size: 65px;
    line-height: 70px;
    font-weight: 700;
    font-style: normal;
    font-family: BenchNine;
    padding: 21px 30px 16px 30px;
    text-decoration: none;
    text-align: left;
    background-color: rgba(17, 17, 17, 0.90);
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px
}
.tp-caption.Twitter-Content a,
.tp-caption.Twitter-Content a:visited {
    color: #0084B4 !important
}
.tp-caption.Twitter-Content a:hover {
    color: #0084B4 !important;
    text-decoration: underline !important
}
.tp-caption.TechJournal-Button,
.TechJournal-Button {
    color: rgba(255, 255, 255, 1.00);
    font-size: 13px;
    line-height: 40px;
    font-weight: 900;
    font-style: normal;
    font-family: Raleway;
    padding: 1px 30px 1px 30px;
    text-decoration: none;
    text-align: left;
    background-color: rgba(138, 0, 255, 1.00);
    border-color: rgba(0, 0, 0, 1.00);
    border-style: solid;
    border-width: 0px;
    border-radius: 0px 0px 0px 0px;
    letter-spacing: 3px
}
.tp-caption.TechJournal-Button:hover,
.TechJournal-Button:hover {
    color: rgba(0, 0, 0, 1.00);
    text-decoration: none;
    background-color: rgba(255, 255, 255, 1.00);
    border-color: rgba(0, 0, 0, 1.00);
    border-style: solid;
    border-width: 0px;
    border-radius: 0px 0px 0px 0px;
    cursor: pointer
}
.tp-caption.TechJournal-Big,
.TechJournal-Big {
    color: rgba(255, 255, 255, 1.00);
    font-size: 120px;
    line-height: 120px;
    font-weight: 900;
    font-style: normal;
    font-family: Raleway;
    padding: 0 0 0 0px;
    text-decoration: none;
    text-align: left;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    letter-spacing: 0px
}
.rev_slider {
    overflow: hidden;
}
.effect_layer {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
}

.tp-caption.Twitter-Content a,
    .tp-caption.Twitter-Content a:visited {
        color: #0084B4 !important
    }
    .tp-caption.Twitter-Content a:hover {
        color: #0084B4 !important;
        text-decoration: underline !important
    }
    #menu_forcefullwidth {
        z-index: 5000;
        position: fixed !important;
        top: 0px;
        left: 0px;
        width: 100%
    }
    .tp-caption.FullSiteBlock-Title,
    .FullSiteBlock-Title {
        color: rgba(51, 51, 51, 1.00);
        font-size: 55px;
        line-height: 65px;
        font-weight: 300;
        font-style: normal;
        font-family: Lato;
        padding: 0 0 0 0px;
        text-decoration: none;
        text-align: center;
        background-color: transparent;
        border-color: transparent;
        border-style: none;
        border-width: 0px;
        border-radius: 0 0 0 0px;
        text-align: center
    }
    .tp-caption.FullSiteBlock-SubTitle,
    .FullSiteBlock-SubTitle {
        color: rgba(51, 51, 51, 1.00);
        font-size: 25px;
        line-height: 34px;
        font-weight: 300;
        font-style: normal;
        font-family: Lato;
        padding: 0 0 0 0px;
        text-decoration: none;
        text-align: center;
        background-color: transparent;
        border-color: transparent;
        border-style: none;
        border-width: 0px;
        border-radius: 0 0 0 0px;
        text-align: center
    }
    .tp-caption.FullSiteBlock-Link,
    .FullSiteBlock-Link {
        color: rgba(0, 150, 255, 1.00);
        font-size: 25px;
        line-height: 24px;
        font-weight: 300;
        font-style: normal;
        font-family: Lato;
        padding: 0 0 0 0px;
        text-decoration: none;
        text-align: center;
        background-color: transparent;
        border-color: transparent;
        border-style: none;
        border-width: 0px;
        border-radius: 0 0 0 0px;
        text-align: center
    }
    .tp-caption.FullSiteBlock-Link:hover,
    .FullSiteBlock-Link:hover {
        color: rgba(51, 51, 51, 1.00);
        text-decoration: none;
        background-color: transparent;
        border-color: transparent;
        border-style: none;
        border-width: 0px;
        border-radius: 0 0 0 0px;
        cursor: pointer
    }
    .tp-caption.FullSiteBlock-DownButton,
    .FullSiteBlock-DownButton {
        color: rgba(51, 51, 51, 1.00);
        font-size: 25px;
        line-height: 32px;
        font-weight: 500;
        font-style: normal;
        font-family: Roboto;
        padding: 1px 1px 1px 1px;
        text-decoration: none;
        text-align: center;
        background-color: transparent;
        border-color: rgba(51, 51, 51, 1.00);
        border-style: solid;
        border-width: 1px;
        border-radius: 30px 30px 30px 30px;
        text-align: center
    }
    .tp-caption.FullSiteBlock-DownButton:hover,
    .FullSiteBlock-DownButton:hover {
        color: rgba(0, 150, 255, 1.00);
        text-decoration: none;
        background-color: transparent;
        border-color: rgba(0, 150, 255, 1.00);
        border-style: solid;
        border-width: 1px;
        border-radius: 30px 30px 30px 30px;
        cursor: pointer
    }
    .tp-caption.FullSiteBlock-Title,
    .FullSiteBlock-Title {
        color: rgba(51, 51, 51, 1.00);
        font-size: 55px;
        line-height: 65px;
        font-weight: 300;
        font-style: normal;
        font-family: Lato;
        padding: 0 0 0 0px;
        text-decoration: none;
        text-align: center;
        background-color: transparent;
        border-color: transparent;
        border-style: none;
        border-width: 0px;
        border-radius: 0 0 0 0px;
        text-align: center
    }
    .tp-caption.FullSiteBlock-SubTitle,
    .FullSiteBlock-SubTitle {
        color: rgba(51, 51, 51, 1.00);
        font-size: 25px;
        line-height: 34px;
        font-weight: 300;
        font-style: normal;
        font-family: Lato;
        padding: 0 0 0 0px;
        text-decoration: none;
        text-align: center;
        background-color: transparent;
        border-color: transparent;
        border-style: none;
        border-width: 0px;
        border-radius: 0 0 0 0px;
        text-align: center
    }
    .tp-caption.FullSiteBlock-Link,
    .FullSiteBlock-Link {
        color: rgba(0, 150, 255, 1.00);
        font-size: 25px;
        line-height: 24px;
        font-weight: 300;
        font-style: normal;
        font-family: Lato;
        padding: 0 0 0 0px;
        text-decoration: none;
        text-align: center;
        background-color: transparent;
        border-color: transparent;
        border-style: none;
        border-width: 0px;
        border-radius: 0 0 0 0px;
        text-align: center
    }
    .tp-caption.FullSiteBlock-Link:hover,
    .FullSiteBlock-Link:hover {
        color: rgba(51, 51, 51, 1.00);
        text-decoration: none;
        background-color: transparent;
        border-color: transparent;
        border-style: none;
        border-width: 0px;
        border-radius: 0 0 0 0px;
        cursor: pointer
    }
    .tp-caption.FullSiteBlock-DownButton,
    .FullSiteBlock-DownButton {
        color: rgba(51, 51, 51, 1.00);
        font-size: 25px;
        line-height: 32px;
        font-weight: 500;
        font-style: normal;
        font-family: Roboto;
        padding: 1px 1px 1px 1px;
        text-decoration: none;
        text-align: center;
        background-color: transparent;
        border-color: rgba(51, 51, 51, 1.00);
        border-style: solid;
        border-width: 1px;
        border-radius: 30px 30px 30px 30px;
        text-align: center
    }
    .tp-caption.FullSiteBlock-DownButton:hover,
    .FullSiteBlock-DownButton:hover {
        color: rgba(0, 150, 255, 1.00);
        text-decoration: none;
        background-color: transparent;
        border-color: rgba(0, 150, 255, 1.00);
        border-style: solid;
        border-width: 1px;
        border-radius: 30px 30px 30px 30px;
        cursor: pointer
    }
    .tp-caption.FullSiteBlock-Title,
    .FullSiteBlock-Title {
        color: rgba(51, 51, 51, 1.00);
        font-size: 55px;
        line-height: 65px;
        font-weight: 300;
        font-style: normal;
        font-family: Lato;
        padding: 0 0 0 0px;
        text-decoration: none;
        text-align: center;
        background-color: transparent;
        border-color: transparent;
        border-style: none;
        border-width: 0px;
        border-radius: 0 0 0 0px;
        text-align: center
    }
    .tp-caption.FullSiteBlock-SubTitle,
    .FullSiteBlock-SubTitle {
        color: rgba(51, 51, 51, 1.00);
        font-size: 25px;
        line-height: 34px;
        font-weight: 300;
        font-style: normal;
        font-family: Lato;
        padding: 0 0 0 0px;
        text-decoration: none;
        text-align: center;
        background-color: transparent;
        border-color: transparent;
        border-style: none;
        border-width: 0px;
        border-radius: 0 0 0 0px;
        text-align: center
    }
    .tp-caption.FullSiteBlock-DownButton,
    .FullSiteBlock-DownButton {
        color: rgba(51, 51, 51, 1.00);
        font-size: 25px;
        line-height: 32px;
        font-weight: 500;
        font-style: normal;
        font-family: Roboto;
        padding: 1px 1px 1px 1px;
        text-decoration: none;
        text-align: center;
        background-color: transparent;
        border-color: rgba(51, 51, 51, 1.00);
        border-style: solid;
        border-width: 1px;
        border-radius: 30px 30px 30px 30px;
        text-align: center
    }
    .tp-caption.FullSiteBlock-DownButton:hover,
    .FullSiteBlock-DownButton:hover {
        color: rgba(0, 150, 255, 1.00);
        text-decoration: none;
        background-color: transparent;
        border-color: rgba(0, 150, 255, 1.00);
        border-style: solid;
        border-width: 1px;
        border-radius: 30px 30px 30px 30px;
        cursor: pointer
    }
    .tp-caption.FullSiteBlock-Title,
    .FullSiteBlock-Title {
        color: rgba(51, 51, 51, 1.00);
        font-size: 55px;
        line-height: 65px;
        font-weight: 300;
        font-style: normal;
        font-family: Lato;
        padding: 0 0 0 0px;
        text-decoration: none;
        text-align: center;
        background-color: transparent;
        border-color: transparent;
        border-style: none;
        border-width: 0px;
        border-radius: 0 0 0 0px;
        text-align: center
    }
    .tp-caption.FullSiteBlock-SubTitle,
    .FullSiteBlock-SubTitle {
        color: rgba(51, 51, 51, 1.00);
        font-size: 25px;
        line-height: 34px;
        font-weight: 300;
        font-style: normal;
        font-family: Lato;
        padding: 0 0 0 0px;
        text-decoration: none;
        text-align: center;
        background-color: transparent;
        border-color: transparent;
        border-style: none;
        border-width: 0px;
        border-radius: 0 0 0 0px;
        text-align: center
    }
    .tp-caption.FullSiteBlock-Link,
    .FullSiteBlock-Link {
        color: rgba(0, 150, 255, 1.00);
        font-size: 25px;
        line-height: 24px;
        font-weight: 300;
        font-style: normal;
        font-family: Lato;
        padding: 0 0 0 0px;
        text-decoration: none;
        text-align: center;
        background-color: transparent;
        border-color: transparent;
        border-style: none;
        border-width: 0px;
        border-radius: 0 0 0 0px;
        text-align: center
    }
    .tp-caption.FullSiteBlock-Link:hover,
    .FullSiteBlock-Link:hover {
        color: rgba(51, 51, 51, 1.00);
        text-decoration: none;
        background-color: transparent;
        border-color: transparent;
        border-style: none;
        border-width: 0px;
        border-radius: 0 0 0 0px;
        cursor: pointer
    }
    .tp-caption.FullSiteBlock-DownButton,
    .FullSiteBlock-DownButton {
        color: rgba(51, 51, 51, 1.00);
        font-size: 25px;
        line-height: 32px;
        font-weight: 500;
        font-style: normal;
        font-family: Roboto;
        padding: 1px 1px 1px 1px;
        text-decoration: none;
        text-align: center;
        background-color: transparent;
        border-color: rgba(51, 51, 51, 1.00);
        border-style: solid;
        border-width: 1px;
        border-radius: 30px 30px 30px 30px;
        text-align: center
    }
    .tp-caption.FullSiteBlock-DownButton:hover,
    .FullSiteBlock-DownButton:hover {
        color: rgba(0, 150, 255, 1.00);
        text-decoration: none;
        background-color: transparent;
        border-color: rgba(0, 150, 255, 1.00);
        border-style: solid;
        border-width: 1px;
        border-radius: 30px 30px 30px 30px;
        cursor: pointer
    }
    .rev_slider {
        overflow: hidden;
    }
    .effect_layer {
        position: absolute;
        top: 0px;
        left: 0px;
        width: 100%;
        height: 100%;
    }
    .gyges .tp-thumb {
        opacity: 1
    }
    .gyges .tp-thumb-img-wrap {
        padding: 3px;
        background-color: rgba(0, 0, 0, 0.25);
        display: inline-block;
        width: 100%;
        height: 100%;
        position: relative;
        margin: 0px;
        box-sizing: border-box;
        transition: all 0.3s;
        -webkit-transition: all 0.3s;
    }
    .gyges .tp-thumb-image {
        padding: 3px;
        display: block;
        box-sizing: border-box;
        position: relative;
        -webkit-box-shadow: inset 5px 5px 10px 0px rgba(0, 0, 0, 0.25);
        -moz-box-shadow: inset 5px 5px 10px 0px rgba(0, 0, 0, 0.25);
        box-shadow: inset 5px 5px 10px 0px rgba(0, 0, 0, 0.25);
    }
    .gyges .tp-thumb:hover .tp-thumb-img-wrap,
    .gyges .tp-thumb.selected .tp-thumb-img-wrap {
        background: -moz-linear-gradient(top, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%);
        background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(255, 255, 255, 1)), color-stop(100%, rgba(255, 255, 255, 1)));
        background: -webkit-linear-gradient(top, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%);
        background: -o-linear-gradient(top, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%);
        background: -ms-linear-gradient(top, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%);
        background: linear-gradient(to bottom, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%);
    }
    .tp-caption.FullSiteBlock-Title,
    .FullSiteBlock-Title {
        color: rgba(51, 51, 51, 1.00);
        font-size: 55px;
        line-height: 65px;
        font-weight: 300;
        font-style: normal;
        font-family: Lato;
        padding: 0 0 0 0px;
        text-decoration: none;
        text-align: center;
        background-color: transparent;
        border-color: transparent;
        border-style: none;
        border-width: 0px;
        border-radius: 0 0 0 0px;
        text-align: center
    }
    .tp-caption.FullSiteBlock-SubTitle,
    .FullSiteBlock-SubTitle {
        color: rgba(51, 51, 51, 1.00);
        font-size: 25px;
        line-height: 34px;
        font-weight: 300;
        font-style: normal;
        font-family: Lato;
        padding: 0 0 0 0px;
        text-decoration: none;
        text-align: center;
        background-color: transparent;
        border-color: transparent;
        border-style: none;
        border-width: 0px;
        border-radius: 0 0 0 0px;
        text-align: center
    }
    .tp-caption.FullSiteBlock-Link,
    .FullSiteBlock-Link {
        color: rgba(0, 150, 255, 1.00);
        font-size: 25px;
        line-height: 24px;
        font-weight: 300;
        font-style: normal;
        font-family: Lato;
        padding: 0 0 0 0px;
        text-decoration: none;
        text-align: center;
        background-color: transparent;
        border-color: transparent;
        border-style: none;
        border-width: 0px;
        border-radius: 0 0 0 0px;
        text-align: center
    }
    .tp-caption.FullSiteBlock-Link:hover,
    .FullSiteBlock-Link:hover {
        color: rgba(51, 51, 51, 1.00);
        text-decoration: none;
        background-color: transparent;
        border-color: transparent;
        border-style: none;
        border-width: 0px;
        border-radius: 0 0 0 0px;
        cursor: pointer
    }
    .tp-caption.FullSiteBlock-SubTitle,
    .FullSiteBlock-SubTitle {
        color: rgba(51, 51, 51, 1.00);
        font-size: 25px;
        line-height: 34px;
        font-weight: 300;
        font-style: normal;
        font-family: Lato;
        padding: 0 0 0 0px;
        text-decoration: none;
        text-align: center;
        background-color: transparent;
        border-color: transparent;
        border-style: none;
        border-width: 0px;
        border-radius: 0 0 0 0px;
        text-align: center
    }
    .tp-caption.FullSiteBlock-SubTitle,
    .FullSiteBlock-SubTitle {
        color: rgba(51, 51, 51, 1.00);
        font-size: 25px;
        line-height: 34px;
        font-weight: 300;
        font-style: normal;
        font-family: Lato;
        padding: 0 0 0 0px;
        text-decoration: none;
        text-align: center;
        background-color: transparent;
        border-color: transparent;
        border-style: none;
        border-width: 0px;
        border-radius: 0 0 0 0px;
        text-align: center
    }
    .tp-caption.FullSiteBlock-FooterLink,
    .FullSiteBlock-FooterLink {
        color: rgba(85, 85, 85, 1.00);
        font-size: 15px;
        line-height: 20px;
        font-weight: 300;
        font-style: normal;
        font-family: Lato;
        padding: 0 0 0 0px;
        text-decoration: none;
        text-align: left;
        background-color: transparent;
        border-color: transparent;
        border-style: none;
        border-width: 0px;
        border-radius: 0 0 0 0px;
        text-align: left
    }
    .tp-caption.FullSiteBlock-FooterLink:hover,
    .FullSiteBlock-FooterLink:hover {
        color: rgba(0, 150, 255, 1.00);
        text-decoration: none;
        background-color: transparent;
        border-color: transparent;
        border-style: none;
        border-width: 0px;
        border-radius: 0 0 0 0px;
        cursor: pointer
    }
    .fb-share-button.fb_iframe_widget iframe {
        width: 115px!important;
    }
    #tp-socialwrapper {
        opacity: 0;
    }

        .tp-caption.Twitter-Content a,
    .tp-caption.Twitter-Content a:visited {
        color: #0084B4 !important
    }
    .tp-caption.Twitter-Content a:hover {
        color: #0084B4 !important;
        text-decoration: underline !important
    }
    #menu_forcefullwidth {
        z-index: 5000;
        position: fixed !important;
        top: 0px;
        left: 0px;
        width: 100%
    }
    #tp-menubg {
        background: -moz-linear-gradient(top, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0) 100%);
        /* FF3.6-15 */
        
        background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0) 100%);
        /* Chrome10-25,Safari5.1-6 */
        
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0) 100%);
        /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
        
        filter: progid: DXImageTransform.Microsoft.gradient( startColorstr='#d9000000', endColorstr='#00000000', GradientType=0);
        /* IE6-9 */
    }
    #mc_embed_signup input[type="email"] {
        font-family: "Lato", sans-serif;
        font-size: 16px;
        font-weight: 400;
        background-color: #fff;
        color: #888 !important;
        line-height: 46px;
        padding: 0 20px;
        cursor: text;
        border: 0;
        width: 400px;
        margin-bottom: 0px;
        -webkit-transition: background-color 0.5s;
        -moz-transition: background-color 0.5s;
        -o-transition: background-color 0.5s;
        -ms-transition: background-color 0.5s;
        transition: background-color 0.5s;
        -webkit-border-radius: 3px;
        -moz-border-radius: 3px;
        border-radius: 3px;
    }
    #mc_embed_signup input[type="email"]::-webkit-input-placeholder {
        color: #888 !important;
    }
    #mc_embed_signup input[type="email"]::-moz-placeholder {
        color: #888 !important;
    }
    #mc_embed_signup input[type="email"]:-ms-input-placeholder {
        color: #888 !important;
    }
    #mc_embed_signup input[type="email"]:focus {
        background-color: #f5f5f5;
        color: #454545;
    }
    #mc_embed_signup input#mc-embedded-subscribe,
    #mc_embed_signup input#mc-embedded-subscribe:focus {
        font-family: "Lato", sans-serif;
        line-height: 46px;
        font-size: 16px;
        font-weight: 700;
        padding: 0 30px;
        border: 0;
        background: #f04531;
        text-transform: none;
        color: #fff;
        -webkit-border-radius: 3px;
        -moz-border-radius: 3px;
        border-radius: 3px;
    }
    #mc_embed_signup input#mc-embedded-subscribe:hover {
        background: #e03727;
    }
    @media only screen and (max-width: 767px) {
        #mc_embed_signup input[type="email"] {
            width: 260px;
        }
    }
    @media only screen and (max-width: 480px) {
        #mc_embed_signup input[type="email"] {
            width: 160px;
        }
    }
    #rev_slider_167_6 .uranus.tparrows {
        width: 50px;
        height: 50px;
        background: rgba(255, 255, 255, 0);
    }
    #rev_slider_167_6 .uranus.tparrows:before {
        width: 50px;
        height: 50px;
        line-height: 50px;
        font-size: 40px;
        transition: all 0.3s;
        -webkit-transition: all 0.3s;
    }
    #rev_slider_167_6 .uranus.tparrows:hover:before {
        opacity: 0.75;
    }
    .tp-caption.FullSiteBlock-SubTitle,
    .FullSiteBlock-SubTitle {
        color: rgba(51, 51, 51, 1.00);
        font-size: 25px;
        line-height: 34px;
        font-weight: 300;
        font-style: normal;
        font-family: Lato;
        padding: 0 0 0 0px;
        text-decoration: none;
        text-align: center;
        background-color: transparent;
        border-color: transparent;
        border-style: none;
        border-width: 0px;
        border-radius: 0 0 0 0px;
        text-align: center
    }
    .tp-caption.ParallaxWebsite-FooterItem,
    .ParallaxWebsite-FooterItem {
        color: rgba(255, 255, 255, 0.50);
        font-size: 16px;
        line-height: 24px;
        font-weight: 400;
        font-style: normal;
        font-family: Lato;
        padding: 0 0 0 0px;
        text-decoration: none;
        text-align: left;
        background-color: transparent;
        border-color: transparent;
        border-style: none;
        border-width: 0px;
        border-radius: 0 0 0 0px
    }
    .tp-caption.ParallaxWebsite-FooterItem:hover,
    .ParallaxWebsite-FooterItem:hover {
        color: rgba(255, 255, 255, 1.00);
        text-decoration: none;
        background-color: transparent;
        border-color: transparent;
        border-style: none;
        border-width: 0px;
        border-radius: 0 0 0 0px;
        cursor: pointer
    }
    .fb-share-button.fb_iframe_widget iframe {
        width: 115px!important;
    }
    iframe.twitter-share-button {
        display: none;
    }
    .fb-share-button.fb_iframe_widget iframe {
        display: none;
    }

    .tp-caption.FullSiteBlock-Link, 
    .FullSiteBlock-Link {
    color: rgba(0,150,255,1.00);
    font-size: 25px;
    line-height: 24px;
    font-weight: 300;
    font-style: normal;
    font-family: Lato;
    padding: 0 0 0 0px;
    text-decoration: none;
    text-align: center;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    text-align: center;
}
/*-----------------------------------------------------------------------------

- Revolution Slider 5.0 Navigatin Skin Style  -

 ARES SKIN

author:  ThemePunch
email:      info@themepunch.com
website:    http://www.themepunch.com
-----------------------------------------------------------------------------*/
.ares.tparrows {
  cursor:pointer;
  background:#fff;
  min-width:60px;
    min-height:60px;
  position:absolute;
  display:block;
  z-index:100;
    border-radius:50%;
}
.ares.tparrows:hover {
}
.ares.tparrows:before {
  font-family: "revicons";
  font-size:25px;
  color:#aaa;
  display:block;
  line-height: 60px;
  text-align: center;
    -webkit-transition: color 0.3s;
    -moz-transition: color 0.3s;
    transition: color 0.3s;
    z-index:2;
    position:relative;
}
.ares.tparrows.tp-leftarrow:before {
  content: "\e81f";
}
.ares.tparrows.tp-rightarrow:before {
  content: "\e81e";
}
.ares.tparrows:hover:before {
 color:#000;
      }
.ares .tp-title-wrap { 
  position:absolute;
  z-index:1;
  display:inline-block;
  background:#fff;
  min-height:60px;
  line-height:60px;
  top:0px;
  margin-left:30px;
  border-radius:0px 30px 30px 0px;
  overflow:hidden;
  -webkit-transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transform:scaleX(0);  
  -webkit-transform:scaleX(0);  
  transform-origin:0% 50%; 
   -webkit-transform-origin:0% 50%;
}
 .ares.tp-rightarrow .tp-title-wrap { 
   right:0px;
   margin-right:30px;margin-left:0px;
   -webkit-transform-origin:100% 50%;
border-radius:30px 0px 0px 30px;
 }
.ares.tparrows:hover .tp-title-wrap {
  transform:scaleX(1) scaleY(1);
    -webkit-transform:scaleX(1) scaleY(1);
}
.ares .tp-arr-titleholder {
  position:relative;
  -webkit-transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transform:translateX(200px);  
  text-transform:uppercase;
  color:#000;
  font-weight:400;
  font-size:14px;
  line-height:60px;
  white-space:nowrap;
  padding:0px 20px;
  margin-left:10px;
  opacity:0;
}

.ares.tp-rightarrow .tp-arr-titleholder {
   transform:translateX(-200px); 
   margin-left:0px; margin-right:10px;
      }

.ares.tparrows:hover .tp-arr-titleholder {
   transform:translateX(0px);
   -webkit-transform:translateX(0px);
  transition-delay: 0.1s;
  opacity:1;
}

/* BULLETS */
.ares.tp-bullets {
}
.ares.tp-bullets:before {
	content:" ";
	position:absolute;
	width:100%;
	height:100%;
	background:transparent;
	padding:10px;
	margin-left:-10px;margin-top:-10px;
	box-sizing:content-box;
}
.ares .tp-bullet {
	width:13px;
	height:13px;
	position:absolute;
	background:#e5e5e5;
	border-radius:50%;
	cursor: pointer;
	box-sizing:content-box;
}
.ares .tp-bullet:hover,
.ares .tp-bullet.selected {
	background:#fff;
}
.ares .tp-bullet-title {
  position:absolute;
  color:#888;
  font-size:12px;
  padding:0px 10px;
  font-weight:600;
  right:27px;
  top:-4px;
  background:#fff;
  background:rgba(255,255,255,0.75);
  visibility:hidden;
  transform:translateX(-20px);
  -webkit-transform:translateX(-20px);
  transition:transform 0.3s;
  -webkit-transition:transform 0.3s;
  line-height:20px;
  white-space:nowrap;
}     

.ares .tp-bullet-title:after {
    width: 0px;
	height: 0px;
	border-style: solid;
	border-width: 10px 0 10px 10px;
	border-color: transparent transparent transparent rgba(255,255,255,0.75);
	content:" ";
    position:absolute;
    right:-10px;
	top:0px;
}
    
.ares .tp-bullet:hover .tp-bullet-title{
  visibility:visible;
   transform:translateX(0px);
  -webkit-transform:translateX(0px);
}

.ares .tp-bullet.selected:hover .tp-bullet-title {
    background:#fff;
        }
.ares .tp-bullet.selected:hover .tp-bullet-title:after {
  border-color:transparent transparent transparent #fff;
}
.ares.tp-bullets:hover .tp-bullet-title {
        visibility:hidden;
}
.ares.tp-bullets:hover .tp-bullet:hover .tp-bullet-title {
    visibility:visible;
      }

/* TABS */
.ares .tp-tab { 
  opacity:1;      
  padding:10px;
  box-sizing:border-box;
  font-family: "Roboto", sans-serif;
  border-bottom: 1px solid #e5e5e5;
 }
.ares .tp-tab-image 
{ 
  width:60px;
  height:60px; max-height:100%; max-width:100%;
  position:relative;
  display:inline-block;
  float:left;

}
.ares .tp-tab-content 
{
    background:rgba(0,0,0,0); 
    position:relative;
    padding:15px 15px 15px 85px;
 left:0px;
 overflow:hidden;
 margin-top:-15px;
    box-sizing:border-box;
    color:#333;
    display: inline-block;
    width:100%;
    height:100%;
 position:absolute; }
.ares .tp-tab-date
  {
  display:block;
  color: #aaa;
  font-weight:500;
  font-size:12px;
  margin-bottom:0px;
  }
.ares .tp-tab-title 
{
    display:block;	
    text-align:left;
    color:#333;
    font-size:14px;
    font-weight:500;
    text-transform:none;
    line-height:17px;
}
.ares .tp-tab:hover,
.ares .tp-tab.selected {
	background:#eee; 
}

.ares .tp-tab-mask {
}

/* MEDIA QUERIES */
@media only screen and (max-width: 960px) {

}
@media only screen and (max-width: 768px) {

}

/*-----------------------------------------------------------------------------

- Revolution Slider 5.0 Navigatin Skin Style  -

 CUSTOM SKIN

author:  ThemePunch
email:      info@themepunch.com
website:    http://www.themepunch.com
-----------------------------------------------------------------------------*/
/* ARROWS */
.custom.tparrows {
	cursor:pointer;
	background:#000;
	background:rgba(0,0,0,0.5);
	width:40px;
	height:40px;
	position:absolute;
	display:block;
	z-index:10000;
}
.custom.tparrows:hover {
	background:#000;
}
.custom.tparrows:before {
	font-family: "revicons";
	font-size:15px;
	color:#fff;
	display:block;
	line-height: 40px;
	text-align: center;
}
.custom.tparrows.tp-leftarrow:before {
	content: "\e824";
}
.custom.tparrows.tp-rightarrow:before {
	content: "\e825";
}



/* BULLETS */
.custom.tp-bullets {
}
.custom.tp-bullets:before {
	content:" ";
	position:absolute;
	width:100%;
	height:100%;
	background:transparent;
	padding:10px;
	margin-left:-10px;margin-top:-10px;
	box-sizing:content-box;
}
.custom .tp-bullet {
	width:12px;
	height:12px;
	position:absolute;
	background:#aaa;
    background:rgba(125,125,125,0.5);
	cursor: pointer;
	box-sizing:content-box;
}
.custom .tp-bullet:hover,
.custom .tp-bullet.selected {
	background:rgb(125,125,125);
}
.custom .tp-bullet-image {
}
.custom .tp-bullet-title {
}


/* THUMBS */


/* TABS */


/*-----------------------------------------------------------------------------

- Revolution Slider 5.0 Navigatin Skin Style  -

 DIONE SKIN

author:  ThemePunch
email:      info@themepunch.com
website:    http://www.themepunch.com
-----------------------------------------------------------------------------*/
/* ARROWS */
.dione.tparrows {
  height:100%;
  width:100px;
  background:transparent;
  background:rgba(0,0,0,0);
  line-height:100%;
  transition:all 0.3s;
-webkit-transition:all 0.3s;
}

.dione.tparrows:hover {
 background:rgba(0,0,0,0.45);
 }
.dione .tp-arr-imgwrapper {
 width:100px;
 left:0px;
 position:absolute;
 height:100%;
 top:0px;
 overflow:hidden;
 }
.dione.tp-rightarrow .tp-arr-imgwrapper {
left:auto;
right:0px;
}

.dione .tp-arr-imgholder {
background-position:center center;
background-size:cover;
width:100px;
height:100%;
top:0px;
visibility:hidden;
transform:translateX(-50px);
-webkit-transform:translateX(-50px);
transition:all 0.3s;
-webkit-transition:all 0.3s;
opacity:0;
left:0px;
}

.dione.tparrows.tp-rightarrow .tp-arr-imgholder {
  right:0px;
  left:auto;
  transform:translateX(50px);
 -webkit-transform:translateX(50px);
}

.dione.tparrows:before {
position:absolute;
line-height:30px;
margin-left:-22px;
top:50%;
left:50%;
font-size:30px;
margin-top:-15px;
transition:all 0.3s;
-webkit-transition:all 0.3s;
}

.dione.tparrows.tp-rightarrow:before {
margin-left:6px;
}

.dione.tparrows:hover:before {
  transform:translateX(-20px);
-webkit-transform:translateX(-20px);
opacity:0;
}

.dione.tparrows.tp-rightarrow:hover:before {
  transform:translateX(20px);
-webkit-transform:translateX(20px);
}

.dione.tparrows:hover .tp-arr-imgholder {
 transform:translateX(0px);
-webkit-transform:translateX(0px);
opacity:1;
visibility:visible;
}



/* BULLETS */
.dione .tp-bullet { 
    opacity:1;
    width:50px;
    height:50px;    
    padding:3px;
    background:#000;
    background-color:rgba(0,0,0,0.25);
    margin:0px;
    box-sizing:border-box;
    transition:all 0.3s;
    -webkit-transition:all 0.3s;

  }

.dione .tp-bullet-image {
   display:block;
   box-sizing:border-box;
   position:relative;
    -webkit-box-shadow: inset 5px 5px 10px 0px rgba(0,0,0,0.25);
  -moz-box-shadow: inset 5px 5px 10px 0px rgba(0,0,0,0.25);
  box-shadow: inset 5px 5px 10px 0px rgba(0,0,0,0.25);
  width:44px;
  height:44px;
  background-size:cover;
  background-position:center center;
 }  
.dione .tp-bullet-title { 
     position:absolute; 
   bottom:65px;
     display:inline-block;
     left:50%;
     background:#000;
     background:rgba(0,0,0,0.75);
     color:#fff;
     padding:10px 30px;
     border-radius:4px;
   -webkit-border-radius:4px;
     opacity:0;
      transition:all 0.3s;
    -webkit-transition:all 0.3s;
    transform: translateZ(0.001px) translateX(-50%) translateY(14px);
    transform-origin:50% 100%;
    -webkit-transform: translateZ(0.001px) translateX(-50%) translateY(14px);
    -webkit-transform-origin:50% 100%;
    opacity:0;
    white-space:nowrap;
 }

.dione .tp-bullet:hover .tp-bullet-title {
     transform:rotateX(0deg) translateX(-50%);
    -webkit-transform:rotateX(0deg) translateX(-50%);
    opacity:1;
}

.dione .tp-bullet.selected,
.dione .tp-bullet:hover  {
  
   background: rgba(255,255,255,1);
  background: -moz-linear-gradient(top, rgba(255,255,255,1) 0%, rgba(119,119,119,1) 100%);
  background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(255,255,255,1)), color-stop(100%, rgba(119,119,119,1)));
  background: -webkit-linear-gradient(top, rgba(255,255,255,1) 0%, rgba(119,119,119,1) 100%);
  background: -o-linear-gradient(top, rgba(255,255,255,1) 0%, rgba(119,119,119,1) 100%);
  background: -ms-linear-gradient(top, rgba(255,255,255,1) 0%, rgba(119,119,119,1) 100%);
  background: linear-gradient(to bottom, rgba(255,255,255,1) 0%, rgba(119,119,119,1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#ffffff", endColorstr="#777777", GradientType=0 );
 
      }
.dione .tp-bullet-title:after {
        content:" ";
        position:absolute;
        left:50%;
        margin-left:-8px;
        width: 0;
    height: 0;
    border-style: solid;
    border-width: 8px 8px 0 8px;
    border-color: rgba(0,0,0,0.75) transparent transparent transparent;
        bottom:-8px;
   }


/*-----------------------------------------------------------------------------

- Revolution Slider 5.0 Navigatin Skin Style  -

 ERINYEN SKIN

author:  ThemePunch
email:      info@themepunch.com
website:    http://www.themepunch.com
-----------------------------------------------------------------------------*/
/* ARROWS */
.erinyen.tparrows {
  cursor:pointer;
  background:#000;
  background:rgba(0,0,0,0.5);
  min-width:70px;
  min-height:70px;
  position:absolute;
  display:block;
  z-index:1000;
  border-radius:35px;   
}

.erinyen.tparrows:before {
  font-family: "revicons";
  font-size:20px;
  color:#fff;
  display:block;
  line-height: 70px;
  text-align: center;    
  z-index:2;
  position:relative;
}
.erinyen.tparrows.tp-leftarrow:before {
  content: "\e824";
}
.erinyen.tparrows.tp-rightarrow:before {
  content: "\e825";
}

.erinyen .tp-title-wrap { 
  position:absolute;
  z-index:1;
  display:inline-block;
  background:#000;
  background:rgba(0,0,0,0.5);
  min-height:70px;
  line-height:70px;
  top:0px;
  margin-left:0px;
  border-radius:35px;
  overflow:hidden; 
  transition: opacity 0.3s;
  -webkit-transition:opacity 0.3s;
  -moz-transition:opacity 0.3s;
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  transform: scale(0);  
  visibility:hidden;
  opacity:0;
}

.erinyen.tparrows:hover .tp-title-wrap{
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  transform: scale(1);
  opacity:1;
  visibility:visible;
}
        
 .erinyen.tp-rightarrow .tp-title-wrap { 
   right:0px;
   margin-right:0px;margin-left:0px;
   -webkit-transform-origin:100% 50%;
  border-radius:35px;
  padding-right:20px;
  padding-left:10px;
 }


.erinyen.tp-leftarrow .tp-title-wrap { 
   padding-left:20px;
  padding-right:10px;
}

.erinyen .tp-arr-titleholder {
  letter-spacing: 3px;
   position:relative;
  -webkit-transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transform:translateX(200px);  
  text-transform:uppercase;
  color:#fff;
  font-weight:600;
  font-size:13px;
  line-height:70px;
  white-space:nowrap;
  padding:0px 20px;
  margin-left:11px;
  opacity:0;  
}

.erinyen .tp-arr-imgholder {
  width:100%;
  height:100%;
  position:absolute;
  top:0px;
  left:0px;
  background-position:center center;
  background-size:cover;
    }
 .erinyen .tp-arr-img-over {
   width:100%;
  height:100%;
  position:absolute;
  top:0px;
  left:0px;
   background:#000;
   background:rgba(0,0,0,0.5);
        }
.erinyen.tp-rightarrow .tp-arr-titleholder {
   transform:translateX(-200px); 
   margin-left:0px; margin-right:11px;
      }

.erinyen.tparrows:hover .tp-arr-titleholder {
   transform:translateX(0px);
   -webkit-transform:translateX(0px);
  transition-delay: 0.1s;
  opacity:1;
}

/* BULLETS */
.erinyen.tp-bullets {
}
.erinyen.tp-bullets:before {
	content:" ";
	position:absolute;
	width:100%;
	height:100%;
	background: #555555; /* old browsers */
    background: -moz-linear-gradient(top,  #555555 0%, #222222 100%); /* ff3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#555555), color-stop(100%,#222222)); /* chrome,safari4+ */
    background: -webkit-linear-gradient(top,  #555555 0%,#222222 100%); /* chrome10+,safari5.1+ */
    background: -o-linear-gradient(top,  #555555 0%,#222222 100%); /* opera 11.10+ */
    background: -ms-linear-gradient(top,  #555555 0%,#222222 100%); /* ie10+ */
    background: linear-gradient(to bottom,  #555555 0%,#222222 100%); /* w3c */
    filter: progid:dximagetransform.microsoft.gradient( startcolorstr="#555555", endcolorstr="#222222",gradienttype=0 ); /* ie6-9 */
	padding:10px 15px;
	margin-left:-15px;margin-top:-10px;
	box-sizing:content-box;
   border-radius:10px;
   box-shadow:0px 0px 2px 1px rgba(33,33,33,0.3);
}
.erinyen .tp-bullet {
	width:13px;
	height:13px;
	position:absolute;
	background:#111;	
	border-radius:50%;
	cursor: pointer;
	box-sizing:content-box;
}
.erinyen .tp-bullet:hover,
.erinyen .tp-bullet.selected {
	background: #e5e5e5; /* old browsers */
background: -moz-linear-gradient(top,  #e5e5e5 0%, #999999 100%); /* ff3.6+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#e5e5e5), color-stop(100%,#999999)); /* chrome,safari4+ */
background: -webkit-linear-gradient(top,  #e5e5e5 0%,#999999 100%); /* chrome10+,safari5.1+ */
background: -o-linear-gradient(top,  #e5e5e5 0%,#999999 100%); /* opera 11.10+ */
background: -ms-linear-gradient(top,  #e5e5e5 0%,#999999 100%); /* ie10+ */
background: linear-gradient(to bottom,  #e5e5e5 0%,#999999 100%); /* w3c */
filter: progid:dximagetransform.microsoft.gradient( startcolorstr="#e5e5e5", endcolorstr="#999999",gradienttype=0 ); /* ie6-9 */
  border:1px solid #555;
  width:12px;height:12px;
}
.erinyen .tp-bullet-image {
}
.erinyen .tp-bullet-title {
}


/* THUMBS */
.erinyen .tp-thumb {
opacity:1
}

.erinyen .tp-thumb-over {
  background:#000;
  background:rgba(0,0,0,0.25);
  width:100%;
  height:100%;
  position:absolute;
  top:0px;
  left:0px;
  z-index:1;
  -webkit-transition:all 0.3s;
  transition:all 0.3s;
}

.erinyen .tp-thumb-more:before {
  font-family: "revicons";
  font-size:12px;
  color:#aaa;
  color:rgba(255,255,255,0.75);
  display:block;
  line-height: 12px;
  text-align: left;    
  z-index:2;
  position:absolute;
  top:20px;
  right:20px;
  z-index:2;
}
.erinyen .tp-thumb-more:before {
  content: "\e825";
}

.erinyen .tp-thumb-title {
  font-family:"Raleway";
  letter-spacing:1px;
  font-size:12px;
  color:#fff;
  display:block;
  line-height: 15px;
  text-align: left;    
  z-index:2;
  position:absolute;
  top:0px;
  left:0px;
  z-index:2;
  padding:20px 35px 20px 20px;
  width:100%;
  height:100%;
  box-sizing:border-box;
  transition:all 0.3s;
  -webkit-transition:all 0.3s;
  font-weight:500;
}

.erinyen .tp-thumb.selected .tp-thumb-more:before,
.erinyen .tp-thumb:hover .tp-thumb-more:before {
 color:#aaa;

}

.erinyen .tp-thumb.selected .tp-thumb-over,
.erinyen .tp-thumb:hover .tp-thumb-over {
 background:#fff;
}
.erinyen .tp-thumb.selected .tp-thumb-title,
.erinyen .tp-thumb:hover .tp-thumb-title {
  color:#000;

}


/* TABS */
.erinyen .tp-tab-title {
    color:#a8d8ee;
    font-size:13px;
    font-weight:700;
    text-transform:uppercase;
    font-family:"Roboto Slab"
    margin-bottom:5px;
}

.erinyen .tp-tab-desc {
	font-size:18px;
    font-weight:400;
    color:#fff;
    line-height:25px;
	font-family:"Roboto Slab";
}
      

/*-----------------------------------------------------------------------------

- Revolution Slider 5.0 Navigatin Skin Style  -

 GYGES SKIN

author:  ThemePunch
email:      info@themepunch.com
website:    http://www.themepunch.com
-----------------------------------------------------------------------------*/
/* ARROWS */


/* BULLETS */
.gyges.tp-bullets {
}
.gyges.tp-bullets:before {
	content:" ";
	position:absolute;
	width:100%;
	height:100%;
	background: #777777; /* Old browsers */
    background: -moz-linear-gradient(top,  #777777 0%, #666666 100%); 
    background: -webkit-gradient(linear, left top, left bottom, 
    color-stop(0%,#777777), color-stop(100%,#666666)); 
    background: -webkit-linear-gradient(top,  #777777 0%,#666666 100%); 
    background: -o-linear-gradient(top,  #777777 0%,#666666 100%); 
    background: -ms-linear-gradient(top,  #777777 0%,#666666 100%); 
    background: linear-gradient(to bottom,  #777777 0%,#666666 100%); 
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#777777", 
    endColorstr="#666666",GradientType=0 ); 
	padding:10px;
	margin-left:-10px;margin-top:-10px;
	box-sizing:content-box;
  border-radius:10px;
}
.gyges .tp-bullet {
	width:12px;
	height:12px;
	position:absolute;
	background:#333;
	border:3px solid #444;
	border-radius:50%;
	cursor: pointer;
	box-sizing:content-box;
}
.gyges .tp-bullet:hover,
.gyges .tp-bullet.selected {
	background: #ffffff; /* Old browsers */
    background: -moz-linear-gradient(top,  #ffffff 0%, #e1e1e1 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, 
    color-stop(0%,#ffffff), color-stop(100%,#e1e1e1)); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top,  #ffffff 0%,#e1e1e1 100%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top,  #ffffff 0%,#e1e1e1 100%); /* Opera 11.10+ */
    background: -ms-linear-gradient(top,  #ffffff 0%,#e1e1e1 100%); /* IE10+ */
    background: linear-gradient(to bottom,  #ffffff 0%,#e1e1e1 100%); /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#ffffff", 
    endColorstr="#e1e1e1",GradientType=0 ); /* IE6-9 */

}
.gyges .tp-bullet-image {
}
.gyges .tp-bullet-title {
}
	

/* THUMBS */
.gyges .tp-thumb { 
      opacity:1
  }
.gyges .tp-thumb-img-wrap {
  padding:3px;
    background:#000;
  background-color:rgba(0,0,0,0.25);
  display:inline-block;

  width:100%;
  height:100%;
  position:relative;
  margin:0px;
  box-sizing:border-box;
    transition:all 0.3s;
    -webkit-transition:all 0.3s;
}
.gyges .tp-thumb-image {
   padding:3px; 
   display:block;
   box-sizing:border-box;
   position:relative;
    -webkit-box-shadow: inset 5px 5px 10px 0px rgba(0,0,0,0.25);
  -moz-box-shadow: inset 5px 5px 10px 0px rgba(0,0,0,0.25);
  box-shadow: inset 5px 5px 10px 0px rgba(0,0,0,0.25);
 }  
.gyges .tp-thumb-title { 
     position:absolute; 
     bottom:100%; 
     display:inline-block;
     left:50%;
     background:rgba(255,255,255,0.8);
     padding:10px 30px;
     border-radius:4px;
	 -webkit-border-radius:4px;
     margin-bottom:20px;
     opacity:0;
      transition:all 0.3s;
    -webkit-transition:all 0.3s;
    transform: translateZ(0.001px) translateX(-50%) translateY(14px);
    transform-origin:50% 100%;
    -webkit-transform: translateZ(0.001px) translateX(-50%) translateY(14px);
    -webkit-transform-origin:50% 100%;
    white-space:nowrap;
 }
.gyges .tp-thumb:hover .tp-thumb-title {
  	 transform:rotateX(0deg) translateX(-50%);
    -webkit-transform:rotateX(0deg) translateX(-50%);
    opacity:1;
}

.gyges .tp-thumb:hover .tp-thumb-img-wrap,
 .gyges .tp-thumb.selected .tp-thumb-img-wrap {

  background: rgba(255,255,255,1);
  background: -moz-linear-gradient(top, rgba(255,255,255,1) 0%, rgba(119,119,119,1) 100%);
  background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(255,255,255,1)), color-stop(100%, rgba(119,119,119,1)));
  background: -webkit-linear-gradient(top, rgba(255,255,255,1) 0%, rgba(119,119,119,1) 100%);
  background: -o-linear-gradient(top, rgba(255,255,255,1) 0%, rgba(119,119,119,1) 100%);
  background: -ms-linear-gradient(top, rgba(255,255,255,1) 0%, rgba(119,119,119,1) 100%);
  background: linear-gradient(to bottom, rgba(255,255,255,1) 0%, rgba(119,119,119,1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#ffffff", endColorstr="#777777", GradientType=0 );
 }
.gyges .tp-thumb-title:after {
        content:" ";
        position:absolute;
        left:50%;
        margin-left:-8px;
        width: 0;
		height: 0;
		border-style: solid;
		border-width: 8px 8px 0 8px;
		border-color: rgba(255,255,255,0.8) transparent transparent transparent;
        bottom:-8px;
   }


/* TABS */
.gyges .tp-tab { 
  opacity:1;      
  padding:10px;
  box-sizing:border-box;
  font-family: "Roboto", sans-serif;
  border-bottom: 1px solid rgba(255,255,255,0.15);
 }
.gyges .tp-tab-image 
{ 
  width:60px;
  height:60px; max-height:100%; max-width:100%;
  position:relative;
  display:inline-block;
  float:left;

}
.gyges .tp-tab-content 
{
    background:rgba(0,0,0,0); 
    position:relative;
    padding:15px 15px 15px 85px;
 left:0px;
  overflow:hidden;
 margin-top:-15px;
    box-sizing:border-box;
    color:#333;
    display: inline-block;
    width:100%;
    height:100%;
 position:absolute; }
.gyges .tp-tab-date
  {
  display:block;
  color: rgba(255,255,255,0.25);
  font-weight:500;
  font-size:12px;
  margin-bottom:0px;
  }
.gyges .tp-tab-title 
{
    display:block;  
    text-align:left;
    color:#fff;
    font-size:14px;
    font-weight:500;
    text-transform:none;
    line-height:17px;
}
.gyges .tp-tab:hover,
.gyges .tp-tab.selected {
  background:rgba(0,0,0,0.5); 
}

.gyges .tp-tab-mask {
}

/* MEDIA QUERIES */
@media only screen and (max-width: 960px) {

}
@media only screen and (max-width: 768px) {

}

/*-----------------------------------------------------------------------------

- Revolution Slider 5.0 Navigatin Skin Style  -

 HADES SKIN

author:  ThemePunch
email:      info@themepunch.com
website:    http://www.themepunch.com
-----------------------------------------------------------------------------*/
/* ARROWS */
.hades.tparrows {
	cursor:pointer;
	background:#000;
	background:rgba(0,0,0,0.15);
	width:100px;
	height:100px;
	position:absolute;
	display:block;
	z-index:1000;
}

.hades.tparrows:before {
	font-family: "revicons";
	font-size:30px;
	color:#fff;
	display:block;
	line-height: 100px;
	text-align: center;
  transition: background 0.3s, color 0.3s;
}
.hades.tparrows.tp-leftarrow:before {
	content: "\e824";
}
.hades.tparrows.tp-rightarrow:before {
	content: "\e825";
}

.hades.tparrows:hover:before {
   color:#aaa;
   background:#fff;
   background:rgba(255,255,255,1);
 }
.hades .tp-arr-allwrapper {
  position:absolute;
  left:100%;
  top:0px;
  background:#888; 
  width:100px;height:100px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -ms-filter: "progid:dximagetransform.microsoft.alpha(opacity=0)";
  filter: alpha(opacity=0);
  -moz-opacity: 0.0;
  -khtml-opacity: 0.0;
  opacity: 0.0;
  -webkit-transform: rotatey(-90deg);
  transform: rotatey(-90deg);
  -webkit-transform-origin: 0% 50%;
  transform-origin: 0% 50%;
}
.hades.tp-rightarrow .tp-arr-allwrapper {
   left:auto;
   right:100%;
   -webkit-transform-origin: 100% 50%;
  transform-origin: 100% 50%;
   -webkit-transform: rotatey(90deg);
  transform: rotatey(90deg);
}

.hades:hover .tp-arr-allwrapper {
   -ms-filter: "progid:dximagetransform.microsoft.alpha(opacity=100)";
  filter: alpha(opacity=100);
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1;  
    -webkit-transform: rotatey(0deg);
  transform: rotatey(0deg);

 }
    
.hades .tp-arr-iwrapper {
}
.hades .tp-arr-imgholder {
  background-size:cover;
  position:absolute;
  top:0px;left:0px;
  width:100%;height:100%;
}
.hades .tp-arr-titleholder {
}
.hades .tp-arr-subtitleholder {
}


/* BULLETS */
.hades.tp-bullets {
}
.hades.tp-bullets:before {
	content:" ";
	position:absolute;
	width:100%;
	height:100%;
	background:transparent;
	padding:10px;
	margin-left:-10px;margin-top:-10px;
	box-sizing:content-box;
}
.hades .tp-bullet {
	width:3px;
	height:3px;
	position:absolute;
	background:#888;	
	cursor: pointer;
    border:5px solid #fff;
	box-sizing:content-box;
    box-shadow:0px 0px 3px 1px rgba(0,0,0,0.2);
    -webkit-perspective:400;
    perspective:400;
    -webkit-transform:translatez(0.01px);
    transform:translatez(0.01px);
}
.hades .tp-bullet:hover,
.hades .tp-bullet.selected {
	background:#555;
  
}

.hades .tp-bullet-image {
  position:absolute;top:-80px; left:-60px;width:120px;height:60px;
  background-position:center center;
  background-size:cover;
  visibility:hidden;
  opacity:0;
  transition:all 0.3s;
  -webkit-transform-style:flat;
  transform-style:flat;
  perspective:600;
  -webkit-perspective:600;
  transform: rotatex(-90deg);
  -webkit-transform: rotatex(-90deg);
  box-shadow:0px 0px 3px 1px rgba(0,0,0,0.2);
  transform-origin:50% 100%;
  -webkit-transform-origin:50% 100%;
  
  
}
.hades .tp-bullet:hover .tp-bullet-image {
  display:block;
  opacity:1;
  transform: rotatex(0deg);
  -webkit-transform: rotatex(0deg);
  visibility:visible;
    }
.hades .tp-bullet-title {
}


/* THUMBS */
.hades .tp-thumb { 
      opacity:1
  }
.hades .tp-thumb-img-wrap {
  border-radius:50%;
  padding:3px;
  display:inline-block;
background:#000;
  background-color:rgba(0,0,0,0.25);
  width:100%;
  height:100%;
  position:relative;
  margin:0px;
  box-sizing:border-box;
    transition:all 0.3s;
    -webkit-transition:all 0.3s;
}
.hades .tp-thumb-image {
   padding:3px; 
   border-radius:50%;
   display:block;
   box-sizing:border-box;
   position:relative;
    -webkit-box-shadow: inset 5px 5px 10px 0px rgba(0,0,0,0.25);
  -moz-box-shadow: inset 5px 5px 10px 0px rgba(0,0,0,0.25);
  box-shadow: inset 5px 5px 10px 0px rgba(0,0,0,0.25);
 }  


.hades .tp-thumb:hover .tp-thumb-img-wrap,
.hades .tp-thumb.selected .tp-thumb-img-wrap {
  
   background: rgba(255,255,255,1);
  background: -moz-linear-gradient(top, rgba(255,255,255,1) 0%, rgba(119,119,119,1) 100%);
  background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(255,255,255,1)), color-stop(100%, rgba(119,119,119,1)));
  background: -webkit-linear-gradient(top, rgba(255,255,255,1) 0%, rgba(119,119,119,1) 100%);
  background: -o-linear-gradient(top, rgba(255,255,255,1) 0%, rgba(119,119,119,1) 100%);
  background: -ms-linear-gradient(top, rgba(255,255,255,1) 0%, rgba(119,119,119,1) 100%);
  background: linear-gradient(to bottom, rgba(255,255,255,1) 0%, rgba(119,119,119,1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#ffffff", endColorstr="#777777", GradientType=0 );
 
      }
.hades .tp-thumb-title:after {
        content:" ";
        position:absolute;
        left:50%;
        margin-left:-8px;
        width: 0;
		height: 0;
		border-style: solid;
		border-width: 8px 8px 0 8px;
		border-color: rgba(0,0,0,0.75) transparent transparent transparent;
        bottom:-8px;
   }


/* TABS */
.hades .tp-tab {
  opacity:1;
 }
    
.hades .tp-tab-title
 {
      display:block;
      color:#333;
      font-weight:600;
      font-size:18px;
      text-align:center;
      line-height:25px;      
    } 
.hades .tp-tab-price
 {
	display:block;
    text-align:center;
    color:#999;
    font-size:16px;
    margin-top:10px;
   line-height:20px
}

.hades .tp-tab-button {
    display:inline-block;
    margin-top:15px;
    text-align:center;
	padding:5px 15px;
  	color:#fff;
  	font-size:14px;
  	background:#219bd7;
   	border-radius:4px;
   font-weight:400;
}
.hades .tp-tab-inner {
	text-align:center;
}

              

/*-----------------------------------------------------------------------------

- Revolution Slider 5.0 Navigatin Skin Style  -

 HEBE SKIN

author:  ThemePunch
email:      info@themepunch.com
website:    http://www.themepunch.com
-----------------------------------------------------------------------------*/
/* ARROWS */
.hebe.tparrows {
  cursor:pointer;
  background:#fff;
  min-width:70px;
    min-height:70px;
  position:absolute;
  display:block;
  z-index:1000;
}
.hebe.tparrows:hover {
}
.hebe.tparrows:before {
  font-family: "revicons";
  font-size:30px;
  color:#aaa;
  display:block;
  line-height: 70px;
  text-align: center;
  -webkit-transition: color 0.3s;
  -moz-transition: color 0.3s;
  transition: color 0.3s;
  z-index:2;
  position:relative;
   background:#fff;
  min-width:70px;
    min-height:70px;
}
.hebe.tparrows.tp-leftarrow:before {
  content: "\e824";
}
.hebe.tparrows.tp-rightarrow:before {
  content: "\e825";
}
.hebe.tparrows:hover:before {
 color:#000;
      }
.hebe .tp-title-wrap { 
  position:absolute;
  z-index:0;
  display:inline-block;
  background:#000;
  background:rgba(0,0,0,0.75);
  min-height:60px;
  line-height:60px;
  top:-10px;
  margin-left:0px;
  -webkit-transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transform:scaleX(0);  
  -webkit-transform:scaleX(0);  
  transform-origin:0% 50%; 
   -webkit-transform-origin:0% 50%;
}
 .hebe.tp-rightarrow .tp-title-wrap { 
   right:0px;
   -webkit-transform-origin:100% 50%;
 }
.hebe.tparrows:hover .tp-title-wrap {
  transform:scaleX(1);
  -webkit-transform:scaleX(1);
}
.hebe .tp-arr-titleholder {
  position:relative;
  text-transform:uppercase;
  color:#fff;
  font-weight:600;
  font-size:12px;
  line-height:90px;
  white-space:nowrap;
  padding:0px 20px 0px 90px;
}

.hebe.tp-rightarrow .tp-arr-titleholder {
   margin-left:0px; 
   padding:0px 90px 0px 20px;
 }

.hebe.tparrows:hover .tp-arr-titleholder {
   transform:translateX(0px);
   -webkit-transform:translateX(0px);
  transition-delay: 0.1s;
  opacity:1;
}

.hebe .tp-arr-imgholder{
      width:90px;
      height:90px;
      position:absolute;
      left:100%;
      display:block;
      background-size:cover;
      background-position:center center;
  	 top:0px; right:-90px;
    }
.hebe.tp-rightarrow .tp-arr-imgholder{
        right:auto;left:-90px;
      }

/* BULLETS */
.hebe.tp-bullets {
}
.hebe.tp-bullets:before {
  content:" ";
  position:absolute;
  width:100%;
  height:100%;
  background:transparent;
  padding:10px;
  margin-left:-10px;margin-top:-10px;
  box-sizing:content-box;
}

.hebe .tp-bullet {
  width:3px;
  height:3px;
  position:absolute;
  background:#fff;  
  cursor: pointer;
  border:5px solid #222;
  border-radius:50%;
  box-sizing:content-box;
  -webkit-perspective:400;
  perspective:400;
  -webkit-transform:translateZ(0.01px);
  transform:translateZ(0.01px);
   transition:all 0.3s;
}
.hebe .tp-bullet:hover,
.hebe .tp-bullet.selected {
  background:#222;
  border-color:#fff;
}

.hebe .tp-bullet-image {
  position:absolute;
  top:-90px; left:-40px;
  width:70px;
  height:70px;
  background-position:center center;
  background-size:cover;
  visibility:hidden;
  opacity:0;
  transition:all 0.3s;
  -webkit-transform-style:flat;
  transform-style:flat;
  perspective:600;
  -webkit-perspective:600;
  transform: scale(0);
  -webkit-transform: scale(0);
  transform-origin:50% 100%;
  -webkit-transform-origin:50% 100%;
border-radius:6px;
  
  
}
.hebe .tp-bullet:hover .tp-bullet-image {
  display:block;
  opacity:1;
  transform: scale(1);
  -webkit-transform: scale(1);
  visibility:visible;
    }
.hebe .tp-bullet-title {
}


/* TABS */
.hebe .tp-tab-title {
    color:#a8d8ee;
    font-size:13px;
    font-weight:700;
    text-transform:uppercase;
    font-family:"Roboto Slab"
    margin-bottom:5px;
}

.hebe .tp-tab-desc {
	font-size:18px;
    font-weight:400;
    color:#fff;
    line-height:25px;
	font-family:"Roboto Slab";
}


/*-----------------------------------------------------------------------------

- Revolution Slider 5.0 Navigatin Skin Style  -

 HEPHAISTOS SKIN

author:  ThemePunch
email:      info@themepunch.com
website:    http://www.themepunch.com
-----------------------------------------------------------------------------*/
/* ARROWS */
.hephaistos.tparrows {
	cursor:pointer;
	background:#000;
	background:rgba(0,0,0,0.5);
	width:40px;
	height:40px;
	position:absolute;
	display:block;
	z-index:1000;
    border-radius:50%;
}
.hephaistos.tparrows:hover {
	background:#000;
}
.hephaistos.tparrows:before {
	font-family: "revicons";
	font-size:18px;
	color:#fff;
	display:block;
	line-height: 40px;
	text-align: center;
}
.hephaistos.tparrows.tp-leftarrow:before {
	content: "\e82c";
  margin-left:-2px;
  
}
.hephaistos.tparrows.tp-rightarrow:before {
	content: "\e82d";
   margin-right:-2px;
}



/* BULLETS */
.hephaistos.tp-bullets {
}
.hephaistos.tp-bullets:before {
	content:" ";
	position:absolute;
	width:100%;
	height:100%;
	background:transparent;
	padding:10px;
	margin-left:-10px;margin-top:-10px;
	box-sizing:content-box;
}
.hephaistos .tp-bullet {
	width:12px;
	height:12px;
	position:absolute;
	background:#999;
	border:3px solid #f5f5f5;
	border-radius:50%;
	cursor: pointer;
	box-sizing:content-box;
  box-shadow: 0px 0px 2px 1px rgba(130,130,130, 0.3);

}
.hephaistos .tp-bullet:hover,
.hephaistos .tp-bullet.selected {
	background:#fff;
    border-color:#000;
}
.hephaistos .tp-bullet-image {
}
.hephaistos .tp-bullet-title {
}


/*-----------------------------------------------------------------------------

- Revolution Slider 5.0 Navigatin Skin Style  -

 HERMES SKIN

author:  ThemePunch
email:      info@themepunch.com
website:    http://www.themepunch.com
-----------------------------------------------------------------------------*/
/* ARROWS */
.hermes.tparrows {
	cursor:pointer;
	background:#000;
	background:rgba(0,0,0,0.5);
	width:30px;
	height:110px;
	position:absolute;
	display:block;
	z-index:1000;
}

.hermes.tparrows:before {
	font-family: "revicons";
	font-size:15px;
	color:#fff;
	display:block;
	line-height: 110px;
	text-align: center;
    transform:translateX(0px);
    -webkit-transform:translateX(0px);
    transition:all 0.3s;
    -webkit-transition:all 0.3s;
}
.hermes.tparrows.tp-leftarrow:before {
	content: "\e824";
}
.hermes.tparrows.tp-rightarrow:before {
	content: "\e825";
}
.hermes.tparrows.tp-leftarrow:hover:before {
    transform:translateX(-20px);
    -webkit-transform:translateX(-20px);
     opacity:0;
}
.hermes.tparrows.tp-rightarrow:hover:before {
    transform:translateX(20px);
    -webkit-transform:translateX(20px);
     opacity:0;
}

.hermes .tp-arr-allwrapper {
    overflow:hidden;
    position:absolute;
	width:180px;
    height:140px;
    top:0px;
    left:0px;
    visibility:hidden;
      -webkit-transition: -webkit-transform 0.3s 0.3s;
  transition: transform 0.3s 0.3s;
  -webkit-perspective: 1000px;
  perspective: 1000px;
    }
.hermes.tp-rightarrow .tp-arr-allwrapper {
   right:0px;left:auto;
      }
.hermes.tparrows:hover .tp-arr-allwrapper {
   visibility:visible;
          }
.hermes .tp-arr-imgholder {
  width:180px;position:absolute;
  left:0px;top:0px;height:110px;
  transform:translateX(-180px);
  -webkit-transform:translateX(-180px);
  transition:all 0.3s;
  transition-delay:0.3s;
}
.hermes.tp-rightarrow .tp-arr-imgholder{
    transform:translateX(180px);
  -webkit-transform:translateX(180px);
      }
  
.hermes.tparrows:hover .tp-arr-imgholder {
   transform:translateX(0px);
   -webkit-transform:translateX(0px);            
}
.hermes .tp-arr-titleholder {
  top:110px;
  width:180px;
  text-align:left; 
  display:block;
  padding:0px 10px;
  line-height:30px; background:#000;
  background:rgba(0,0,0,0.75);color:#fff;
  font-weight:600; position:absolute;
  font-size:12px;
  white-space:nowrap;
  letter-spacing:1px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-transform: rotateX(-90deg);
  transform: rotateX(-90deg);
  -webkit-transform-origin: 50% 0;
  transform-origin: 50% 0;
  box-sizing:border-box;

}
.hermes.tparrows:hover .tp-arr-titleholder {
    -webkit-transition-delay: 0.6s;
  transition-delay: 0.6s;
  -webkit-transform: rotateX(0deg);
  transform: rotateX(0deg);
}


/* BULLETS */
.hermes.tp-bullets {
}

.hermes .tp-bullet {
    overflow:hidden;
    border-radius:50%;
    width:16px;
    height:16px;
    background-color: rgba(0, 0, 0, 0);
    box-shadow: inset 0 0 0 2px #FFF;
    -webkit-transition: background 0.3s ease;
    transition: background 0.3s ease;
    position:absolute;
}

.hermes .tp-bullet:hover {
	  background-color: rgba(0, 0, 0, 0.2);
}
.hermes .tp-bullet:after {
  content: ' ';
  position: absolute;
  bottom: 0;
  height: 0;
  left: 0;
  width: 100%;
  background-color: #FFF;
  box-shadow: 0 0 1px #FFF;
  -webkit-transition: height 0.3s ease;
  transition: height 0.3s ease;
}
.hermes .tp-bullet.selected:after {
  height:100%;
}


/* TABS */
.hermes .tp-tab { 
  opacity:1;  
  padding-right:10px;
  box-sizing:border-box;
 }
.hermes .tp-tab-image 
{ 
  width:100%;
  height:60%;
  position:relative;
}
.hermes .tp-tab-content 
{
    background:rgb(54,54,54); 
    position:absolute;
    padding:20px 20px 20px 30px;
    box-sizing:border-box;
    color:#fff;
  display:block;
  width:100%;
  min-height:40%;
  bottom:0px;
  left:-10px;
  }
.hermes .tp-tab-date
  {
  display:block;
  color:#888;
  font-weight:600;
  font-size:12px;
  margin-bottom:10px;
  }
.hermes .tp-tab-title 
{
    display:block;	
    color:#fff;
    font-size:16px;
    font-weight:800;
    text-transform:uppercase;
   line-height:19px;
}

.hermes .tp-tab.selected .tp-tab-title:after {
    width: 0px;
	height: 0px;
	border-style: solid;
	border-width: 30px 0 30px 10px;
	border-color: transparent transparent transparent rgb(54,54,54);
	content:" ";
    position:absolute;
    right:-9px;
    bottom:50%;
    margin-bottom:-30px;
}
.hermes .tp-tab-mask {
     padding-right:10px !important;
          }

/* MEDIA QUERIES */
@media only screen and (max-width: 960px) {
  .hermes .tp-tab .tp-tab-title {font-size:14px;line-height:16px;}
  .hermes .tp-tab-date { font-size:11px; line-height:13px;margin-bottom:10px;}
  .hermes .tp-tab-content { padding:15px 15px 15px 25px;}
}
@media only screen and (max-width: 768px) {
  .hermes .tp-tab .tp-tab-title {font-size:12px;line-height:14px;}
  .hermes .tp-tab-date {font-size:10px; line-height:12px;margin-bottom:5px;}
  .hermes .tp-tab-content {padding:10px 10px 10px 20px;}
}

/*-----------------------------------------------------------------------------

- Revolution Slider 5.0 Navigatin Skin Style  -

 HESPERIDEN SKIN

author:  ThemePunch
email:      info@themepunch.com
website:    http://www.themepunch.com
-----------------------------------------------------------------------------*/
/* ARROWS */
.hesperiden.tparrows {
	cursor:pointer;
	background:#000;
	background:rgba(0,0,0,0.5);
	width:40px;
	height:40px;
	position:absolute;
	display:block;
	z-index:1000;
    border-radius: 50%;
}
.hesperiden.tparrows:hover {
	background:#000;
}
.hesperiden.tparrows:before {
	font-family: "revicons";
	font-size:20px;
	color:#fff;
	display:block;
	line-height: 40px;
	text-align: center;
}
.hesperiden.tparrows.tp-leftarrow:before {
	content: "\e82c";
    margin-left:-3px;
}
.hesperiden.tparrows.tp-rightarrow:before {
	content: "\e82d";
    margin-right:-3px;
}

/* BULLETS */
.hesperiden.tp-bullets {
}
.hesperiden.tp-bullets:before {
	content:" ";
	position:absolute;
	width:100%;
	height:100%;
	background:transparent;
	padding:10px;
	margin-left:-10px;margin-top:-10px;
	box-sizing:content-box;
   border-radius:8px;
  
}
.hesperiden .tp-bullet {
	width:12px;
	height:12px;
	position:absolute;
	background: #999999; /* old browsers */
    background: -moz-linear-gradient(top,  #999999 0%, #e1e1e1 100%); /* ff3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#999999), 
    color-stop(100%,#e1e1e1)); /* chrome,safari4+ */
    background: -webkit-linear-gradient(top,  #999999 0%,#e1e1e1 100%); /* chrome10+,safari5.1+ */
    background: -o-linear-gradient(top,  #999999 0%,#e1e1e1 100%); /* opera 11.10+ */
    background: -ms-linear-gradient(top,  #999999 0%,#e1e1e1 100%); /* ie10+ */
    background: linear-gradient(to bottom,  #999999 0%,#e1e1e1 100%); /* w3c */
    filter: progid:dximagetransform.microsoft.gradient( 
    startcolorstr="#999999", endcolorstr="#e1e1e1",gradienttype=0 ); /* ie6-9 */
	border:3px solid #e5e5e5;
	border-radius:50%;
	cursor: pointer;
	box-sizing:content-box;
}
.hesperiden .tp-bullet:hover,
.hesperiden .tp-bullet.selected {
	background:#666;
}
.hesperiden .tp-bullet-image {
}
.hesperiden .tp-bullet-title {
}


/* THUMBS */
.hesperiden .tp-thumb {
  opacity:1;
  -webkit-perspective: 600px;
  perspective: 600px;
}
.hesperiden .tp-thumb .tp-thumb-title {
    font-size:12px;
    position:absolute;
    margin-top:-10px;
    color:#fff;
    display:block;
    z-index:10000;
    background-color:#000;
    padding:5px 10px; 
    bottom:0px;
    left:0px;
    width:100%;
  box-sizing:border-box;
    text-align:center;
    overflow:hidden;
    white-space:nowrap;
    transition:all 0.3s;
    -webkit-transition:all 0.3s;
    transform:rotatex(90deg) translatez(0.001px);
    transform-origin:50% 100%;
    -webkit-transform:rotatex(90deg) translatez(0.001px);
    -webkit-transform-origin:50% 100%;
    opacity:0;
 }
.hesperiden .tp-thumb:hover .tp-thumb-title {
  	 transform:rotatex(0deg);
    -webkit-transform:rotatex(0deg);
    opacity:1;
}

/* TABS */
.hesperiden .tp-tab { 
  opacity:1;      
  padding:10px;
  box-sizing:border-box;
  font-family: "Roboto", sans-serif;
  border-bottom: 1px solid #e5e5e5;
 }
.hesperiden .tp-tab-image 
{ 
  width:60px;
  height:60px; max-height:100%; max-width:100%;
  position:relative;
  display:inline-block;
  float:left;

}
.hesperiden .tp-tab-content 
{
    background:rgba(0,0,0,0); 
    position:relative;
    padding:15px 15px 15px 85px;
 left:0px;
 overflow:hidden;
 margin-top:-15px;
    box-sizing:border-box;
    color:#333;
    display: inline-block;
    width:100%;
    height:100%;
 position:absolute; }
.hesperiden .tp-tab-date
  {
  display:block;
  color: #aaa;
  font-weight:500;
  font-size:12px;
  margin-bottom:0px;
  }
.hesperiden .tp-tab-title 
{
    display:block;	
    text-align:left;
    color:#333;
    font-size:14px;
    font-weight:500;
    text-transform:none;
    line-height:17px;
}
.hesperiden .tp-tab:hover,
.hesperiden .tp-tab.selected {
	background:#eee; 
}

.hesperiden .tp-tab-mask {
}

/* MEDIA QUERIES */
@media only screen and (max-width: 960px) {

}
@media only screen and (max-width: 768px) {

}

/*-----------------------------------------------------------------------------

- Revolution Slider 5.0 Navigatin Skin Style  -

 METIS SKIN

author:  ThemePunch
email:      info@themepunch.com
website:    http://www.themepunch.com
-----------------------------------------------------------------------------*/
/* ARROWS */
.metis.tparrows {
  background:#fff;
  padding:10px;
  transition:all 0.3s;
  -webkit-transition:all 0.3s;
  width:60px;
  height:60px;
  box-sizing:border-box;
 }
 
 .metis.tparrows:hover {
   background:#fff;
   background:rgba(255,255,255,0.75);
 }
 
 .metis.tparrows:before {
  color:#000;  
   transition:all 0.3s;
  -webkit-transition:all 0.3s;
 }
 
 .metis.tparrows:hover:before {
   transform:scale(1.5);
  }
 

/* BULLETS */
.metis .tp-bullet { 
    opacity:1;
    width:50px;
    height:50px;    
    padding:3px;
    background:#000;
    background-color:rgba(0,0,0,0.25);
    margin:0px;
    box-sizing:border-box;
    transition:all 0.3s;
    -webkit-transition:all 0.3s;
    border-radius:50%;
  }

.metis .tp-bullet-image {

   border-radius:50%;
   display:block;
   box-sizing:border-box;
   position:relative;
    -webkit-box-shadow: inset 5px 5px 10px 0px rgba(0,0,0,0.25);
  -moz-box-shadow: inset 5px 5px 10px 0px rgba(0,0,0,0.25);
  box-shadow: inset 5px 5px 10px 0px rgba(0,0,0,0.25);
  width:44px;
  height:44px;
  background-size:cover;
  background-position:center center;
 }  
.metis .tp-bullet-title { 
     position:absolute; 
	 bottom:65px;
     display:inline-block;
     left:50%;
     background:#000;
     background:rgba(0,0,0,0.75);
     color:#fff;
     padding:10px 30px;
     border-radius:4px;
	 -webkit-border-radius:4px;
     opacity:0;
      transition:all 0.3s;
    -webkit-transition:all 0.3s;
    transform: translateZ(0.001px) translateX(-50%) translateY(14px);
    transform-origin:50% 100%;
    -webkit-transform: translateZ(0.001px) translateX(-50%) translateY(14px);
    -webkit-transform-origin:50% 100%;
    opacity:0;
    white-space:nowrap;
 }

.metis .tp-bullet:hover .tp-bullet-title {
  	 transform:rotateX(0deg) translateX(-50%);
    -webkit-transform:rotateX(0deg) translateX(-50%);
    opacity:1;
}

.metis .tp-bullet.selected,
.metis .tp-bullet:hover  {
  
   background: rgba(255,255,255,1);
  background: -moz-linear-gradient(top, rgba(255,255,255,1) 0%, rgba(119,119,119,1) 100%);
  background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(255,255,255,1)), color-stop(100%, rgba(119,119,119,1)));
  background: -webkit-linear-gradient(top, rgba(255,255,255,1) 0%, rgba(119,119,119,1) 100%);
  background: -o-linear-gradient(top, rgba(255,255,255,1) 0%, rgba(119,119,119,1) 100%);
  background: -ms-linear-gradient(top, rgba(255,255,255,1) 0%, rgba(119,119,119,1) 100%);
  background: linear-gradient(to bottom, rgba(255,255,255,1) 0%, rgba(119,119,119,1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#ffffff", endColorstr="#777777", GradientType=0 );
 
      }
.metis .tp-bullet-title:after {
        content:" ";
        position:absolute;
        left:50%;
        margin-left:-8px;
        width: 0;
		height: 0;
		border-style: solid;
		border-width: 8px 8px 0 8px;
		border-color: rgba(0,0,0,0.75) transparent transparent transparent;
        bottom:-8px;
   }

.metis .tp-tab-number {
        color: #fff;
        font-size: 40px;
        line-height: 30px;
        font-weight: 400;
        font-family: "Playfair Display";
        width: 50px;
        margin-right: 17px;
        display: inline-block;
        float: left;
    }
    .metis .tp-tab-mask {
        padding-left: 20px;
        left: 0px;
        max-width: 90px !important;
        transition: 0.4s padding-left, 0.4s left, 0.4s max-width;
    }
    .metis:hover .tp-tab-mask {
        padding-left: 0px;
        left: 50px;
        max-width: 500px !important;
    }
    .metis .tp-tab-divider {
        border-right: 1px solid transparent;
        height: 30px;
        width: 1px;
        margin-top: 5px;
        display: inline-block;
        float: left;
    }
    .metis .tp-tab-title {
        color: #fff;
        font-size: 20px;
        line-height: 20px;
        font-weight: 400;
        font-family: "Playfair Display";
        position: relative;
        padding-top: 10px;
        padding-left: 30px;
        display: inline-block;
        transform: translateX(-100%);
        transition: 0.4s all;
    }
    .metis .tp-tab-title-mask {
        position: absolute;
        overflow: hidden;
        left: 67px;
    }
    .metis:hover .tp-tab-title {
        transform: translateX(0);
    }
    .metis .tp-tab {
        opacity: 0.15;
        transition: 0.4s all;
    }
    .metis .tp-tab:hover,
    .metis .tp-tab.selected {
        opacity: 1;
    }
    .metis .tp-tab.selected .tp-tab-divider {
        border-right: 1px solid #cdb083;
    }
    .metis.tp-tabs {
        max-width: 118px !important;
        padding-left: 50px;
    }
    .metis.tp-tabs:before {
        content: " ";
        height: 100%;
        width: 88px;
        background: rgba(0, 0, 0, 0.15);
        border-right: 1px solid rgba(255, 255, 255, 0.10);
        left: 0px;
        top: 0px;
        position: absolute;
        transition: 0.4s all;
    }
    .metis.tp-tabs:hover:before {
        width: 118px;
    }
    @media (max-width: 499px) {
        .metis.tp-tabs:before {
            background: rgba(0, 0, 0, 0.75);
        }
    }

/*-----------------------------------------------------------------------------

- Revolution Slider 5.0 Navigatin Skin Style  -

 PERSEPHONE SKIN

author:  ThemePunch
email:      info@themepunch.com
website:    http://www.themepunch.com
-----------------------------------------------------------------------------*/
/* ARROWS */
.persephone.tparrows {
	cursor:pointer;
	background:#aaa;
	background:rgba(200,200,200,0.5);
	width:40px;
	height:40px;
	position:absolute;
	display:block;
	z-index:100;
  border:1px solid #f5f5f5;
}
.persephone.tparrows:hover {
	background:#333;
}
.persephone.tparrows:before {
	font-family: "revicons";
	font-size:15px;
	color:#fff;
	display:block;
	line-height: 40px;
	text-align: center;
}
.persephone.tparrows.tp-leftarrow:before {
	content: "\e824";
}
.persephone.tparrows.tp-rightarrow:before {
	content: "\e825";
}



/* BULLETS */
.persephone.tp-bullets {
}
.persephone.tp-bullets:before {
	content:" ";
	position:absolute;
	width:100%;
	height:100%;
	background:#transparent;
	padding:10px;
	margin-left:-10px;margin-top:-10px;
	box-sizing:content-box;
}
.persephone .tp-bullet {
	width:12px;
	height:12px;
	position:absolute;
	background:#aaa;
	border:1px solid #e5e5e5;	
	cursor: pointer;
	box-sizing:content-box;
}
.persephone .tp-bullet:hover,
.persephone .tp-bullet.selected {
	background:#222;
}
.persephone .tp-bullet-image {
}
.persephone .tp-bullet-title {
}


/*-----------------------------------------------------------------------------

- Revolution Slider 5.0 Navigatin Skin Style  -

 URANUS SKIN

author:  ThemePunch
email:      info@themepunch.com
website:    http://www.themepunch.com
-----------------------------------------------------------------------------*/
/* ARROWS */
.uranus.tparrows {
  width:50px;
  height:50px;
  background:transparent;
 }
 .uranus.tparrows:before {
 width:50px;
 height:50px;
 line-height:50px;
 font-size:40px;
 transition:all 0.3s;
-webkit-transition:all 0.3s;
 }
 
  .uranus.tparrows:hover:before {
    opacity:0.75;
  }

/* BULLETS */
.uranus .tp-bullet{
	border-radius: 50%;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0);
  -webkit-transition: box-shadow 0.3s ease;
  transition: box-shadow 0.3s ease;
  background:transparent;
}
.uranus .tp-bullet.selected,
.uranus .tp-bullet:hover {
  box-shadow: 0 0 0 2px #FFF;
  border:none;
  border-radius: 50%;

   background:transparent;
}



.uranus .tp-bullet-inner {
  background-color: rgba(255, 255, 255, 0.7);
  -webkit-transition: background-color 0.3s ease, -webkit-transform 0.3s ease;
  transition: background-color 0.3s ease, transform 0.3s ease;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  outline: none;
  border-radius: 50%;
  background-color: #FFF;
  background-color: rgba(255, 255, 255, 0.3);
  text-indent: -999em;
  cursor: pointer;
  position: absolute;
}

.uranus .tp-bullet.selected .tp-bullet-inner,
.uranus .tp-bullet:hover .tp-bullet-inner{
 transform: scale(0.4);
 -webkit-transform: scale(0.4);
 background-color:#fff;
}

/*-----------------------------------------------------------------------------

- Revolution Slider 5.0 Navigatin Skin Style  -

 ZEUS SKIN

author:  ThemePunch
email:      info@themepunch.com
website:    http://www.themepunch.com
-----------------------------------------------------------------------------*/
/* ARROWS */
.zeus.tparrows {
  cursor:pointer;
  min-width:70px;
  min-height:70px;
  position:absolute;
  display:block;
  z-index:100;
  border-radius:35px;   
  overflow:hidden;
  background:rgba(0,0,0,0.10);
}

.zeus.tparrows:before {
  font-family: "revicons";
  font-size:20px;
  color:#fff;
  display:block;
  line-height: 70px;
  text-align: center;    
  z-index:2;
  position:relative;
}
.zeus.tparrows.tp-leftarrow:before {
  content: "\e824";
}
.zeus.tparrows.tp-rightarrow:before {
  content: "\e825";
}

.zeus .tp-title-wrap {
  background:#000;
  background:rgba(0,0,0,0.5);
  width:100%;
  height:100%;
  top:0px;
  left:0px;
  position:absolute;
  opacity:0;
  transform:scale(0);
  -webkit-transform:scale(0);
   transition: all 0.3s;
  -webkit-transition:all 0.3s;
  -moz-transition:all 0.3s;
   border-radius:50%;
 }
.zeus .tp-arr-imgholder {
  width:100%;
  height:100%;
  position:absolute;
  top:0px;
  left:0px;
  background-position:center center;
  background-size:cover;
  border-radius:50%;
  transform:translateX(-100%);
  -webkit-transform:translateX(-100%);
   transition: all 0.3s;
  -webkit-transition:all 0.3s;
  -moz-transition:all 0.3s;

 }
.zeus.tp-rightarrow .tp-arr-imgholder {
    transform:translateX(100%);
  -webkit-transform:translateX(100%);
      }
.zeus.tparrows:hover .tp-arr-imgholder {
  transform:translateX(0);
  -webkit-transform:translateX(0);
  opacity:1;
}
      
.zeus.tparrows:hover .tp-title-wrap {
  transform:scale(1);
  -webkit-transform:scale(1);
  opacity:1;
}
 

/* BULLETS */
.zeus .tp-bullet {
     box-sizing:content-box; -webkit-box-sizing:content-box; border-radius:50%;
      background-color: rgba(0, 0, 0, 0);
      -webkit-transition: opacity 0.3s ease;
      transition: opacity 0.3s ease;
	  width:13px;height:13px;
	  border:2px solid #fff;
 }
.zeus .tp-bullet:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  border-radius: 50%;
  background-color: #FFF;
  -webkit-transform: scale(0);
  transform: scale(0);
  -webkit-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
}
.zeus .tp-bullet:hover:after,
.zeus .tp-bullet.selected:after{
    -webkit-transform: scale(1.2);
  transform: scale(1.2);
}
  
 .zeus .tp-bullet-image,
 .zeus .tp-bullet-imageoverlay{
        width:135px;
        height:60px;
        position:absolute;
        background:#000;
        background:rgba(0,0,0,0.5);
        bottom:25px;
        left:50%;
        margin-left:-65px;
        box-sizing:border-box;
        background-size:cover;
        background-position:center center;
        visibility:hidden;
        opacity:0;
         -webkit-backface-visibility: hidden; 
      	backface-visibility: hidden;
        -webkit-transform-origin: 50% 50%;
		transform-origin: 50% 50%;
  		-webkit-transition: all 0.3s ease;
  		transition: all 0.3s ease;
        border-radius:4px;

}
          

.zeus .tp-bullet-title,
.zeus .tp-bullet-imageoverlay {
        z-index:2;
        -webkit-transition: all 0.5s ease;
	  	transition: all 0.5s ease;
}     
.zeus .tp-bullet-title { 
        color:#fff;
        text-align:center;
        line-height:15px;
        font-size:13px;
        font-weight:600;  
        z-index:3;
         visibility:hidden;
        opacity:0;
         -webkit-backface-visibility: hidden; 
      	backface-visibility: hidden;
        -webkit-transform-origin: 50% 50%;
		transform-origin: 50% 50%;
  		-webkit-transition: all 0.3s ease;
  		transition: all 0.3s ease;
        position:absolute;
        bottom:45px;
        width:135px;
    	vertical-align:middle;
        left:-57px;
}
      
.zeus .tp-bullet:hover .tp-bullet-title,
.zeus .tp-bullet:hover .tp-bullet-image,
.zeus .tp-bullet:hover .tp-bullet-imageoverlay{
      opacity:1;
      visibility:visible;
	  -webkit-transform:translateY(0px);
      transform:translateY(0px);         
    }

/* THUMBS */
.zeus .tp-thumb {
opacity:1
}

.zeus .tp-thumb-over {
  background:#000;
  background:rgba(0,0,0,0.25);
  width:100%;
  height:100%;
  position:absolute;
  top:0px;
  left:0px;
  z-index:1;
  -webkit-transition:all 0.3s;
  transition:all 0.3s;
}

.zeus .tp-thumb-more:before {
  font-family: "revicons";
  font-size:12px;
  color:#aaa;
  color:rgba(255,255,255,0.75);
  display:block;
  line-height: 12px;
  text-align: left;    
  z-index:2;
  position:absolute;
  top:20px;
  right:20px;
  z-index:2;
}
.zeus .tp-thumb-more:before {
  content: "\e825";
}

.zeus .tp-thumb-title {
  font-family:"Raleway";
  letter-spacing:1px;
  font-size:12px;
  color:#fff;
  display:block;
  line-height: 15px;
  text-align: left;    
  z-index:2;
  position:absolute;
  top:0px;
  left:0px;
  z-index:2;
  padding:20px 35px 20px 20px;
  width:100%;
  height:100%;
  box-sizing:border-box;
  transition:all 0.3s;
  -webkit-transition:all 0.3s;
  font-weight:500;
}

.zeus .tp-thumb.selected .tp-thumb-more:before,
.zeus .tp-thumb:hover .tp-thumb-more:before {
 color:#aaa;

}

.zeus .tp-thumb.selected .tp-thumb-over,
.zeus .tp-thumb:hover .tp-thumb-over {
 background:#000;
}
.zeus .tp-thumb.selected .tp-thumb-title,
.zeus .tp-thumb:hover .tp-thumb-title {
  color:#fff;

}


/* TABS */
.zeus .tp-tab { 
  opacity:1;      
  box-sizing:border-box;
}

.zeus .tp-tab-title { 
display: block;
text-align: center;
background: rgba(0,0,0,0.25);
font-family: "Roboto Slab", serif; 
font-weight: 700; 
font-size: 13px; 
line-height: 13px;
color: #fff; 
padding: 9px 10px; }

.zeus .tp-tab:hover .tp-tab-title,
.zeus .tp-tab.selected .tp-tab-title {
 color: #000;
  background:rgba(255,255,255,1); 
}



/*-----------------------------------------------------------------------------

- Revolution Slider 5.0 Navigatin Skin Style  -

 ZEUS SKIN

author:  ThemePunch
email:      info@themepunch.com
website:    http://www.themepunch.com
-----------------------------------------------------------------------------*/


.post-tabs .tp-thumb {
opacity:1
}

.post-tabs .tp-thumb-over {
  background:#252525;
  width:100%;
  height:100%;
  position:absolute;
  top:0px;
  left:0px;
  z-index:1;
  -webkit-transition:all 0.3s;
  transition:all 0.3s;
}

.post-tabs .tp-thumb-more:before {
  font-family: "revicons";
  font-size:12px;
  color:#aaa;
  color:rgba(255,255,255,0.75);
  display:block;
  line-height: 12px;
  text-align: left;    
  z-index:2;
  position:absolute;
  top:15px;
  right:15px;
  z-index:2;
}
.post-tabs .tp-thumb-more:before {
  content: "\e825";
}

.post-tabs .tp-thumb-title {
  font-family:"raleway";
  letter-spacing:1px;
  font-size:12px;
  color:#fff;
  display:block;
  line-height: 15px;
  text-align: left;    
  z-index:2;
  position:absolute;
  top:0px;
  left:0px;
  z-index:2;
  padding:15px 30px 15px 15px;
  width:100%;
  height:100%;
  box-sizing:border-box;
  transition:all 0.3s;
  -webkit-transition:all 0.3s;
  font-weight:500;
}

.post-tabs .tp-thumb.selected .tp-thumb-more:before,
.post-tabs .tp-thumb:hover .tp-thumb-more:before {
 color:#aaa;

}

.post-tabs .tp-thumb.selected .tp-thumb-over,
.post-tabs .tp-thumb:hover .tp-thumb-over {
 background:#fff;
}
.post-tabs .tp-thumb.selected .tp-thumb-title,
.post-tabs .tp-thumb:hover .tp-thumb-title {
  color:#000;

}

/*** Language Switcher ***/
@charset "utf-8";


.language-switcher {
    position: absolute;
    top: 0;
    right: 60px;
    width: 110px;
    height: 28px;
    background: transparent;
    display: block;
    padding: 0px 0px;
    border-radius: 0;
}

.language-switcher.style2 {
    right: 0;
    margin: 1px 0;
}


#polyglotLanguageSwitcher{}
#polyglotLanguageSwitcher, 
#polyglotLanguageSwitcher * {
    margin: 0;
    padding: 3px 0px 3px;
    outline: none;
}
#polyglotLanguageSwitcher ul {
	list-style: none;	
}

#polyglotLanguageSwitcher {
	color: #fff !importent;
	line-height: normal;
	position: relative; /* sets the initial position for the drop-down menu */	
}

#polyglotLanguageSwitcher form {
	display: none;	
}

/* ---------------------------------------------------------------------- */
/* JS-created Code
/* ---------------------------------------------------------------------- */
#polyglotLanguageSwitcher a {
    text-decoration: none;
    display: block;
    padding: 2px 0px 2px 0;
    padding-left: 30px;
    background-repeat: no-repeat;
    background-position: 0px center;
    color: #ffffff;
    font-size: 15px;
    font-weight: 400;
    text-transform: capitalize;
    font-family: 'Nunito Sans', sans-serif;
    transition: all 500ms ease;
}


#polyglotLanguageSwitcher a.current:link, 
#polyglotLanguageSwitcher a.current:visited, 
#polyglotLanguageSwitcher a.current:active {
	position: relative; /* sets the initial position for the trigger arrow */
}



#polyglotLanguageSwitcher a.active { /* This style is applied as long as the drop-down menu is visible. */
	border-bottom: none !important;
	border-radius: 3px 3px 0 0 !important;
}

#polyglotLanguageSwitcher span.trigger {
    display: block;
    position: absolute;
    top: 2px;
    right: 32px;
}
#polyglotLanguageSwitcher span.trigger:before {
    content: '\f107';
    font-family: FontAwesome;
    position: absolute;
    color: #ababab;
    font-size: 16px;
    top: 0px;
    right:-32px;
}



#polyglotLanguageSwitcher a.current:hover span.trigger, #polyglotLanguageSwitcher a.current:active span.trigger, #polyglotLanguageSwitcher a.active span.trigger {
	background-position: left bottom !important;
}



/* Drop-Down Menu */
#polyglotLanguageSwitcher ul.dropdown {
    display: none;
    position: absolute;
    top: 40px;
    left: 0px;
    border-top: none !important;
    border-radius: 0;
    background: #27282c;
    width: 110px;
    padding: 0;
    z-index: 9999999;
}
#polyglotLanguageSwitcher ul.dropdown li {
    width: 100%;
    padding: 2px 5px;
    display: block;
    border-top: 1px solid #1a1b1f;
    border-bottom: 1px solid #3d3e42;
    transition: all 0.2s ease-in-out;
}
#polyglotLanguageSwitcher ul.dropdown li:first-child {
    border-top: none;
}
#polyglotLanguageSwitcher ul.dropdown li:last-child { 
    border-bottom: none;	
}

#polyglotLanguageSwitcher ul.dropdown li a {
	width:100%;
    color: #ffffff;
}
#polyglotLanguageSwitcher ul.dropdown li:after {
	display: none !important;
}
#polyglotLanguageSwitcher ul.dropdown li:hover a {
	color: #ddd;
}



#en { 
	background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABUAAAAOCAIAAABPZMCZAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyZpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNi1jMTExIDc5LjE1ODMyNSwgMjAxNS8wOS8xMC0wMToxMDoyMCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIDIwMTUgKFdpbmRvd3MpIiB4bXBNTTpJbnN0YW5jZUlEPSJ4bXAuaWlkOkM3RkRCRjYxMUREOTExRTZCRDRFODdGQUFCQ0Y4RkUxIiB4bXBNTTpEb2N1bWVudElEPSJ4bXAuZGlkOkM3RkRCRjYyMUREOTExRTZCRDRFODdGQUFCQ0Y4RkUxIj4gPHhtcE1NOkRlcml2ZWRGcm9tIHN0UmVmOmluc3RhbmNlSUQ9InhtcC5paWQ6QzdGREJGNUYxREQ5MTFFNkJENEU4N0ZBQUJDRjhGRTEiIHN0UmVmOmRvY3VtZW50SUQ9InhtcC5kaWQ6QzdGREJGNjAxREQ5MTFFNkJENEU4N0ZBQUJDRjhGRTEiLz4gPC9yZGY6RGVzY3JpcHRpb24+IDwvcmRmOlJERj4gPC94OnhtcG1ldGE+IDw/eHBhY2tldCBlbmQ9InIiPz5qPx72AAADWUlEQVR42gyPy08bVxxGf3fmzsNvPODHGNsKNmCgICgRgqiorUiatEFJ002VZVWpi+6qLPs3dFF1V1XdZdFGFYpU0rBARLRJaJo0qYgJxtiqKWD8hJk7Mzb2PG69O4tPR9/B332/ER+LK13Yzp2enTm2aZ2S1sJC6vY70cpPK6X1rdTlebh85duVwl5eFXgBOJRyK7NkL+jFR5eWsE/g0np54EJ4Oj1yXLFKx6R0RJKxPlli+pNiPIWDCYHEfJl0TACciPgTojFm1keik5VIWlNYvK9APOAeM5QYVSaSkbNMfO2l7jiciKjXaUlaDWxN8bKaO/R2sHFTyMsS9U6k1dDoo1dkfe0NfnncEYJhWzuLkcNUSpejlRkUqMoZxzLgpAnFMjR1UWmP7z6d5PT0EN88d57/Fyjk1Hv3Xz9ZzeLR4VAw5Cuw4cPQOO8lw7kn0xM8HcUsAbApmB0ALtLn+iKjo0HZXnx//6j9cK2KHBjMJJOqjT//YEgOMQILtu24aYCZvo4oBV0Dw6CmhWwbNA0IYW583FtwRJ310fRtSWARsfuL5Qu4+/CBmHT5uS7UFejY4LBgWsBhaLVQ9nUP6N8vbOqAIEK3w3TPRccUfRxE/Cahxr8tLCXCwqAbRAd8PiAd6Pb+8uD3Q7MJz57R0zM6GEey3BMhXkA8C7QNbgR9LreKwkIbFyNvtUO+rsNYHic9gCUMyGmB4IVTFX7/g1ZW6dVr7PIySBKYxGxqJ/3xQgO8POoSbZ9W8dff/Dk3HZEGgh4GeS76+sZd1r0VwxWQri5Rx6KGhpxuB3MlG0d/WRUO9nfQ5I9PEZGTNb2cXd9kanUDAD66EvtsiRvOPnDu/vDbK+Nna4r2mnsxmEEiKtThzpeb99sZ7tbyovv4q9CLa9EmiyhLdbx8a+TGQnyeP4FyoSEG9qriI9MjS3HKnqM+kYa9dMDjdiPTsVaz3fhEYuzd9+YXG1O7RbGh3J0bx+lRDz7Kbf1zmKt23ujybtW1k69/Mn5A5iM1jTnQ+aSKWqRNjNrzjWIh1z81E7k4Hb4UGupPFNInKlbqzd3Hj0tKZ4MZLuYbHaVlHde3Z5KHaihba/1Fzueq5+KRksuX1HJ+u+ba2cKbs6lP73zojfLVyq//CzAA+52fslnJy84AAAAASUVORK5CYII=);
}

#fr { 
	background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABUAAAAOCAIAAABPZMCZAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyZpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNi1jMTExIDc5LjE1ODMyNSwgMjAxNS8wOS8xMC0wMToxMDoyMCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIDIwMTUgKFdpbmRvd3MpIiB4bXBNTTpJbnN0YW5jZUlEPSJ4bXAuaWlkOkI4OUI4QzAwMUREOTExRTZCNjJDOUExMUUyOTREMkFEIiB4bXBNTTpEb2N1bWVudElEPSJ4bXAuZGlkOkI4OUI4QzAxMUREOTExRTZCNjJDOUExMUUyOTREMkFEIj4gPHhtcE1NOkRlcml2ZWRGcm9tIHN0UmVmOmluc3RhbmNlSUQ9InhtcC5paWQ6Qjg5QjhCRkUxREQ5MTFFNkI2MkM5QTExRTI5NEQyQUQiIHN0UmVmOmRvY3VtZW50SUQ9InhtcC5kaWQ6Qjg5QjhCRkYxREQ5MTFFNkI2MkM5QTExRTI5NEQyQUQiLz4gPC9yZGY6RGVzY3JpcHRpb24+IDwvcmRmOlJERj4gPC94OnhtcG1ldGE+IDw/eHBhY2tldCBlbmQ9InIiPz70MU8ZAAACPElEQVR42kxTSW4TQRT9NXTb7SaOyaDEiE1ggRASQuIAbIDzwAk4BHvW3AOJFVMIm4RtRCRQsCCxq7uq/i/eb0coX+WhrH5jlc3L11/JGCIqRKGTVeBnj5rnj5s+5q5LMWVmTk0rW9t7r15sv3nLZLIu4pwoswf4znxya7cRKaGXrud7B83mZpNZgMxcRISrmiftjSdPq+WltbWrRrWvug+fuo+HXkrZ2xof7E9Cz6ueY5RpW1lrHeHlLBedumZn3f6c7j8ga1wzNjdncXmRPx95+IYyZC+WGfg+cuhMH0vOYCaWAV8oA7dYuLMfYoxpx9aQWqXiCQ65sC6B58RgK9ZYY4AqMAL/wAiRpCixU7w31IWSE370Q8Ii+qYs2EJzKHQgGMSLc8Z7SgkYbMn7EpNATPEoWCXW+oytCKJjCKSgwRdyjpwFk6AeFJ6S0XjwfR2PnocIeM7o0PXB1uCplATRUrJJ9Rn6Uc9JPa8rUDK+6mw9Kot0yM8MmGarnIbH4So+clo3lyVmNZivSh9crT/UHdkYTRe0P2sKuhQltTiwwuXKbBnWtfnvZChTcNS0NibYEg/9a/115TZar8nJjGvv9eJoYrUCHWsZJzDdcDu7xnkzHpm6GjwVjxt+eLI4/bnEhT//E8//ZivT27ONHkFy7nrlT1UV2nbr28n0yzGPaqlrkIfTM9wNH/p8+P33Cn+VPv9axMtFtzOaPZxvrkIMoe9iTsyhqpZNc/fd+3R0zIZ4uE7aqZR/AgwAMNwQqwahXl8AAAAASUVORK5CYII=);	
}

#de { 
	background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABUAAAAOCAIAAABPZMCZAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyZpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNi1jMTExIDc5LjE1ODMyNSwgMjAxNS8wOS8xMC0wMToxMDoyMCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIDIwMTUgKFdpbmRvd3MpIiB4bXBNTTpJbnN0YW5jZUlEPSJ4bXAuaWlkOjk5MUM5QjlDMUREOTExRTY5M0EwRTY5OUYxQ0ZGNzk0IiB4bXBNTTpEb2N1bWVudElEPSJ4bXAuZGlkOjk5MUM5QjlEMUREOTExRTY5M0EwRTY5OUYxQ0ZGNzk0Ij4gPHhtcE1NOkRlcml2ZWRGcm9tIHN0UmVmOmluc3RhbmNlSUQ9InhtcC5paWQ6OTkxQzlCOUExREQ5MTFFNjkzQTBFNjk5RjFDRkY3OTQiIHN0UmVmOmRvY3VtZW50SUQ9InhtcC5kaWQ6OTkxQzlCOUIxREQ5MTFFNjkzQTBFNjk5RjFDRkY3OTQiLz4gPC9yZGY6RGVzY3JpcHRpb24+IDwvcmRmOlJERj4gPC94OnhtcG1ldGE+IDw/eHBhY2tldCBlbmQ9InIiPz4Ychd7AAACP0lEQVR42ixT22oUQRCt6pm95AomKEGDaEiIISDEB999U7/eJy+YREFyEQkk0WWn6+rp3fT21FbXdHWdPnWGP3x8RyHsykxZOosUdQxKJwoEMZg5E//Ji/XSugdsr1bfnJwc7O9jHZl4mhMeiVXz8uFZGrxoaaXw+enp+flZL27PX+7t7r26uPxtqiWDsQlnmIebpWmomYliI4naMNTxqDs8eDEMwxny+1Kw/ebPzY/vP4c6ZKaZ46ciqjhQkbkc8KvI7O9sdTp+tL6ilDPgP87YzdyJGLlXQKaGsZVu1gzTF8d582Gr28T42OQyfJupf6/62u1p+InjrYIkQAaGVF3OUHnwERfDbUqhdbUfJTaJ+03RiXqpPh2MqoIkwina8kkEM0WWPhpDtdKssno3l/VxbAP/fB46dxpr3mnMBeznIj/qIlMkFpk51AZKqv+bj1bGq/dSN3gW1PsWxVrSesQ2cqz1rLEOri2GBWAEAWdYXApszLysGD1Gi4rMqbe3lEdJOwhJDEOat2qB3RIkmc0PR3FA00BQhphmgvYzlk/U0xHTC6ZnTE+YDe2HspoE0jvmArGB0OLoCjpDHFyMy6SjnZJTzl/Ul0nPXdBkq4wOS86T0UO0VlEtwzCjOd4QpVFahPSjwtONMrodrZXe7/j685d6cde020TNEC51kX3g2qRNCIHy3qSN76BkB/V35er66tZn1Mu9Xd1+u65fWzZBoQSd0oRyhRjflJIRO7dgOBfODuqHAjhrglP6L8AAgnZb1be6RAgAAAAASUVORK5CYII=);
}

#it { 
	background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABUAAAAOCAIAAABPZMCZAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyZpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNi1jMTExIDc5LjE1ODMyNSwgMjAxNS8wOS8xMC0wMToxMDoyMCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIDIwMTUgKFdpbmRvd3MpIiB4bXBNTTpJbnN0YW5jZUlEPSJ4bXAuaWlkOkQ1MkRGQjhDMUREOTExRTY4OEEzRUY4NzQ5ODk1NkM3IiB4bXBNTTpEb2N1bWVudElEPSJ4bXAuZGlkOkQ1MkRGQjhEMUREOTExRTY4OEEzRUY4NzQ5ODk1NkM3Ij4gPHhtcE1NOkRlcml2ZWRGcm9tIHN0UmVmOmluc3RhbmNlSUQ9InhtcC5paWQ6RDUyREZCOEExREQ5MTFFNjg4QTNFRjg3NDk4OTU2QzciIHN0UmVmOmRvY3VtZW50SUQ9InhtcC5kaWQ6RDUyREZCOEIxREQ5MTFFNjg4QTNFRjg3NDk4OTU2QzciLz4gPC9yZGY6RGVzY3JpcHRpb24+IDwvcmRmOlJERj4gPC94OnhtcG1ldGE+IDw/eHBhY2tldCBlbmQ9InIiPz7Hq/Z9AAACHElEQVR42mST227aQBCGZ20HbI4hCahq7xqpuYhQnoA+TvI0kfoGeTBygwyVCohw8nlnNv+u3TZVh5Flr/3988/sougHBWXgs09Ekgjyafb0/P35VJ6zKhUXejzmXu/q8XHw8sJKiVIGHzMbkcDP/emX6d34joV32W6f72ffZu1+G4odiYwL6XSMUq3p1L+/V2FI7TYeq8WijOPA097t1e3D54e3/G2YDffFfnI5US11QRfImifPQ0EzGMhw6AUBRZEajbgozHIZkCIWfSwOv9L1Nt2gPpJcGHE/hFIEz4eDWa2M71O36+GxqoQoIANeXHIluuJKi254OBfLk+/b+lpTVWGJytIg0b/l8QKvjGaXgJMqoX/DuCQA4CGntamFwBsmlGCoiWa2PMb6l2wG4O4djyW4gASJOP9sXcK/FgZs+dq/+Q3XCmgYvaAykcIV6XoDT7Z1mG/4CmofTH9ogdlWRqB4zbv68M+llDnnuS5ynev/69c84CyzU/S8epCO17Yj4y4CK0qabskOBTcKm/dnGCCxmwDhXcQ09VmiVjTujVmx5/m9qGe/Vtg1v9lFnFks9Pvm+lrCUIVthcPFVj0QT14Xr+fDmZk3h81hf1yFq9PklBVZoYv6/PNwqLvd/nYbpqmFRFSSlqcTpC0f/4yX86WqFO/Z7Mz8cr7+uj5mx7Sw/x/o6psb6fc/xfHofOYkEdeRHYsx7wIMACAkBKh7NxlqAAAAAElFTkSuQmCC);
}

#es { 
	background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABUAAAAOCAIAAABPZMCZAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyZpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNi1jMTExIDc5LjE1ODMyNSwgMjAxNS8wOS8xMC0wMToxMDoyMCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIDIwMTUgKFdpbmRvd3MpIiB4bXBNTTpJbnN0YW5jZUlEPSJ4bXAuaWlkOkE4REY2RkZGMUREOTExRTZBM0Y4ODMxRTQxOEM3QjA3IiB4bXBNTTpEb2N1bWVudElEPSJ4bXAuZGlkOkE4REY3MDAwMUREOTExRTZBM0Y4ODMxRTQxOEM3QjA3Ij4gPHhtcE1NOkRlcml2ZWRGcm9tIHN0UmVmOmluc3RhbmNlSUQ9InhtcC5paWQ6QThERjZGRkQxREQ5MTFFNkEzRjg4MzFFNDE4QzdCMDciIHN0UmVmOmRvY3VtZW50SUQ9InhtcC5kaWQ6QThERjZGRkUxREQ5MTFFNkEzRjg4MzFFNDE4QzdCMDciLz4gPC9yZGY6RGVzY3JpcHRpb24+IDwvcmRmOlJERj4gPC94OnhtcG1ldGE+IDw/eHBhY2tldCBlbmQ9InIiPz4vaTYfAAACTUlEQVR42kRTS08UQRD+qqdn2Z1FcHE1EIUYTAhekIOJFy9eTfwH/kP9Ad68yNFEoxfQBDUojwALZF/T3VVl9WyApKaneqaeX31FCsB7FIW9tRHMtOtHGsm/VG91U5hVxMMV2NjC5gaYwUKqMDOxw04mURIpGlOI2GluAKmj+PtXODnwIIf5dTx8pucDiik7KyMxRZbIatYp2hX2y/QYXR3gC+r1mKaKvx6vge2kq5d0cQwN4jRGRgilBGJVC5iipoSUVOyMGmsUpeuTPk2yD4/3UCdEZhgY0zBwkz+1dqnzpCppRAi5HCRFVMyUlKGgoMI6gZcWKMORC60Hwh9Ed5S31qZLj3jpa6s4cBmS7G82euOvFk4su8++ZIGHxAu0v8Kf9xTrvv/GH0w4/ki9WLY1l6CpyR+hMWNkLlOx/A4ZcAs8crTo289Drx8m/9rTuereVikPEJJybZCIKSFJnUVjMlCERaL6HAHswLWjweM79at2Of4+OP0Uu2+ruwtdUriohTad5/5zCVa54dUS7lj/53BWYUGjwenJ0ZdFuqy2y8Pzb0c775Y3dzv9oJ2ghVi3TedROZAUKKIMhc/g9SX0BcnyXHV4sjb6WGIyF8vV8e79uF/6kTecE1/PPzVciCiBFcFYcGj594AKLnXLi8VWHKt0NbU7XFeh5npegkmk1LAojyiziIhw5nHBuDJ/FT3+yXRlJDGRDGdDYWYbsGbGZhNT1AbpVV1D/+kwpKHZ0chuzllMJSN73pCbDZqtyuzj7fV6x7TJ9F+AAQCsjuNpHoHBpgAAAABJRU5ErkJggg==);
}



@font-face {
  font-family: 'energy-icon';
  src:  url(/wp-content/themes/electrical/css/../plugins/energy-icon/fonts/energy-iconffe0.eot?34zu87);
  src:  url('/wp-content/themes/electrical/css/../plugins/energy-icon/fonts/energy-iconffe0.eot?34zu87#iefix') format('embedded-opentype'),
    url(/wp-content/themes/electrical/css/../plugins/energy-icon/fonts/energy-iconffe0.ttf?34zu87) format('truetype'),
    url(/wp-content/themes/electrical/css/../plugins/energy-icon/fonts/energy-iconffe0.woff?34zu87) format('woff'),
    url('/wp-content/themes/electrical/css/../plugins/energy-icon/fonts/energy-iconffe0.svg?34zu87#energy-icon') format('svg');
  font-weight: normal;
  font-style: normal;
}

[class^="energy-icon-"], [class*=" energy-icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'energy-icon' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;

  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.energy-icon-caret-down:before {
  content: "\e93f";
}
.energy-icon-folder:before {
  content: "\e93e";
}
.energy-icon-architect:before {
  content: "\e900";
}
.energy-icon-arrow-pointing-north:before {
  content: "\e901";
}
.energy-icon-black-envelope:before {
  content: "\e902";
}
.energy-icon-brainstorming:before {
  content: "\e903";
}
.energy-icon-calendar:before {
  content: "\e904";
}
.energy-icon-call-answer:before {
  content: "\e905";
}
.energy-icon-chronometer-outline:before {
  content: "\e906";
}
.energy-icon-cleaning-service:before {
  content: "\e907";
}
.energy-icon-electric-heating-tool-with-water-system:before {
  content: "\e908";
}
.energy-icon-energy-1:before {
  content: "\e909";
}
.energy-icon-energy:before {
  content: "\e90a";
}
.energy-icon-energy-saving:before {
  content: "\e90b";
}
.energy-icon-engineer:before {
  content: "\e90c";
}
.energy-icon-envelope-of-white-paper:before {
  content: "\e90d";
}
.energy-icon-factory:before {
  content: "\e90e";
}
.energy-icon-firewood:before {
  content: "\e90f";
}
.energy-icon-gear-1:before {
  content: "\e910";
}
.energy-icon-gear:before {
  content: "\e911";
}
.energy-icon-geothermal-energy-1:before {
  content: "\e912";
}
.energy-icon-geothermal-energy:before {
  content: "\e913";
}
.energy-icon-guarantee:before {
  content: "\e914";
}
.energy-icon-headset:before {
  content: "\e915";
}
.energy-icon-heating:before {
  content: "\e916";
}
.energy-icon-hydro-power:before {
  content: "\e917";
}
.energy-icon-idea:before {
  content: "\e918";
}
.energy-icon-industrial-robot:before {
  content: "\e919";
}
.energy-icon-internet:before {
  content: "\e91a";
}
.energy-icon-link:before {
  content: "\e91b";
}
.energy-icon-manager:before {
  content: "\e91c";
}
.energy-icon-menu:before {
  content: "\e91d";
}
.energy-icon-message:before {
  content: "\e91e";
}
.energy-icon-mill:before {
  content: "\e91f";
}
.energy-icon-money-bag:before {
  content: "\e920";
}
.energy-icon-musica-searcher:before {
  content: "\e921";
}
.energy-icon-natural-rocks-collapse:before {
  content: "\e922";
}
.energy-icon-online-shopping-cart:before {
  content: "\e923";
}
.energy-icon-order:before {
  content: "\e924";
}
.energy-icon-placeholder-filled-tool-shape-for-maps:before {
  content: "\e925";
}
.energy-icon-pump:before {
  content: "\e926";
}
.energy-icon-pumpjack:before {
  content: "\e927";
}
.energy-icon-quality:before {
  content: "\e928";
}
.energy-icon-quote:before {
  content: "\e929";
}
.energy-icon-recycled:before {
  content: "\e92a";
}
.energy-icon-renewable-energy:before {
  content: "\e92b";
}
.energy-icon-right-arrow:before {
  content: "\e92c";
}
.energy-icon-road-split:before {
  content: "\e92d";
}
.energy-icon-sea-dyke:before {
  content: "\e92e";
}
.energy-icon-shop-bag-1:before {
  content: "\e92f";
}
.energy-icon-shop-bag-2:before {
  content: "\e930";
}
.energy-icon-shop-bag-3:before {
  content: "\e931";
}
.energy-icon-shop-bag:before {
  content: "\e932";
}
.energy-icon-shopping-list:before {
  content: "\e933";
}
.energy-icon-smart-home:before {
  content: "\e934";
}
.energy-icon-smoke-detector:before {
  content: "\e935";
}
.energy-icon-star:before {
  content: "\e936";
}
.energy-icon-telephone:before {
  content: "\e937";
}
.energy-icon-thunder:before {
  content: "\e938";
}
.energy-icon-turbine:before {
  content: "\e939";
}
.energy-icon-user-image-with-black-background:before {
  content: "\e93a";
}
.energy-icon-verified-text-paper:before {
  content: "\e93b";
}
.energy-icon-windmill:before {
  content: "\e93c";
}
.energy-icon-world:before {
  content: "\e93d";
}







/*==============================================
   Base Css
===============================================*/
*{
	margin:0px;
	padding:0px;
	border: none;
	outline: none;
	font-size: 100%;
}
html,
body { 
    height: 100%;
}
body {
    
    font-size: 16px;
    line-height: 25px;
    font-weight: 400;
    font-family: 'Nunito Sans', sans-serif;
}

.memeber-box{padding:10px; border:1px solid #ddd; margin-bottom:10px}
.memeber-box .member-name ,
.memeber-box .job-title , .memeber-box .years_pem, .memeber-box .years_as_electrician, .memeber-box .hobby , .memeber-box  .interesting {display:flex}
.memeber-box .member-name h3 ,

.memeber-box .job-title h3 , .memeber-box .years_pem h3, .memeber-box .years_as_electrician h3, .memeber-box .hobby h3, .memeber-box  .interesting h3
{margin:0;padding-right:20px; font-size:14px}
.memeber-box .member-name p, .memeber-box .job-title p , .memeber-box .years_pem p, .memeber-box .years_as_electrician p, .memeber-box .hobby p , .memeber-box  .interesting p{margin-bottom:0}
button:focus{
    outline: none;
}
button {
    cursor: pointer;
    border: none;
    background: transparent;
    padding: 0;
}
h1, h2, h3, h4, h5, h6 {
    color: #131313;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    margin: 0;
}
h3 {
    font-size: 20px; 
    line-height: 28px;
    font-weight: 600;
}
h4 {

}
a,
a:hover,
a:active,
a:focus {
    text-decoration: none;
    outline: none;
    border: none;
}



@media (min-width: 1200px) {
    .container {
        max-width: 1200px;
    }
}

.fix{
    position: relative;
    display: block;
    overflow: hidden;
}

img {
	max-width: 100%;
    height: auto;
}
i {
	font-style: normal;
}
ul,
li {
    list-style: none;
    margin: 0;
    padding: 0;
}
ol,
li{
    margin: 0;
    padding: 0;    
}
.clr1{
    color: #f36727;
}
.bgclr1{
    background: #f36727;    
}



.secpd1{
    padding: 100px 0;
}
.secpd2{
    padding: 100px 0 60px;
}
.secpd3{
    padding: 100px 0 70px;
}



.btn-one {
    position: relative;
    display: inline-block;
    background: #1808c1;
    color: #ffffff;
    font-size: 14px;
    line-height: 60px;
    font-weight: 700;
    text-transform: uppercase;
    font-family: 'Poppins', sans-serif;
    padding: 0 45px 0;
    border-radius: 5px;
    transition: all 500ms ease;
}
.btn-one:hover{
    color: #ffffff;
    background: #131313;
}


.btn-two{
    color: #131313;
    font-size: 16px;
    line-height: 20px;;
    font-weight: 600;
    text-transform: capitalize;
    font-family: 'Poppins', sans-serif;
    transition: all 500ms ease;
}
.btn-two span:before {
    position: relative;
    display: inline-block;
    top: 0px;
    font-size: 12px;
    line-height: 12px;
    padding-left: 10px;
}
.btn-two:hover{
    color: #1808c1;
}

.btn-three{
    position: relative;
    display: inline-block;
    background: #1808c1;
    color: #ffffff;
    font-size: 16px;
    line-height: 50px;
    font-weight: 600;
    text-transform: capitalize;
    font-family: 'Poppins', sans-serif;
	padding: 0 35px 0;
    border-radius: 30px;
    transition: all 500ms ease;    
}
.btn-three:hover{
    color: #f7f7f7;
    background: #1808c1;
}




.shop-btn{
    position: relative;
    display: inline-block;
    padding: 0 30px;
    background: #f5f5f5;
    color: #131313;
    font-size: 16px;
    line-height: 60px;
    font-weight: 600;
    text-transform: capitalize;
    font-family: 'Poppins', sans-serif;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}
.slide-btn-one{
    position: relative;
    display: inline-block;
    padding: 0 55px;
    background: #131313;
    color: #ffffff;
    font-size: 16px;
    line-height: 60px;
    font-weight: 700;
    text-transform: capitalize;
    font-family: 'Poppins', sans-serif;
    transition: all 200ms linear;
    transition-delay: 0.1s;    
}
.slide-btn-one:hover{
    color: #131313;
    background: #e7b218;
}

.single-blog-post h2{color:#1808c1!important; padding:10px 0px!important; font-size:20px!important}
.sec-title-style1 {
    position: relative;
    display: block;
    margin-top: -9px;
    padding-bottom: 50px;
}
.sec-title-style1.max-width{
    position: relative;
    display: block;
    max-width: 770px;
    margin: -9px auto 0;
    padding-bottom: 52px;    
}
.sec-title-style1.pabottom50 {
    padding-bottom: 42px;
}
.sec-title-style1 .title {
    position: relative;
    display: block;
    color: #131313;
    font-size: 36px;
    line-height: 46px;
    font-weight: 700;
    text-transform: uppercase;
    font-family: 'Poppins', sans-serif;
}
.sec-title-style1 .title.clr-white{
    color: #ffffff;
}
.sec-title-style1 .decor {
    position: relative;
    display: block;
    width: 70px;
    height: 5px;
    margin: 19px 0 0;
}
.sec-title-style1 .decor:before{
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 5px;
    height: 5px;
    background: #1808c1;
    border-radius: 50%;
    content: "";
}
.sec-title-style1 .decor:after{
    position: absolute;
    top: 0;
    right: 10px;
    bottom: 0;
    width: 5px;
    height: 5px;
    background: #1808c1;
    border-radius: 50%;
    content: "";
}
.sec-title-style1 .decor span {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 1px;
    background: #1808c1;
    margin: 2px 0;
}


.sec-title-style1 .text{
    position: relative;
    display: block;
    margin: 7px 0 0;
}
.sec-title-style1 .text p{
    position: relative;
    display: inline-block;
    padding: 0 15px;
    color: #131313;
    font-size: 14px;
    line-height: 16px;
    font-weight: 700;
    text-transform: uppercase;
    margin: 0;
}
.sec-title-style1 .text.clr-yellow p{
    color: #1808c1;
}
.sec-title-style1 .text .decor-left{
    position: relative;
    top: -2px;
    display: inline-block;
    width: 70px;
    height: 5px;
    background: transparent;
}
.sec-title-style1 .text .decor-left span {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 1px;
    background: #1808c1;
    content: "";
    margin: 2px 0;
}
.sec-title-style1 .text .decor-left:before{
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 5px;
    height: 5px;
    background: #1808c1;
    border-radius: 50%;
    content: "";
}
.sec-title-style1 .text .decor-left:after{
    position: absolute;
    top: 0;
    right: 10px;
    bottom: 0;
    width: 5px;
    height: 5px;
    background: #1808c1;
    border-radius: 50%;
    content: "";
}

.sec-title-style1 .text .decor-right{
    position: relative;
    top: -2px;
    display: inline-block;
    width: 70px;
    height: 5px;
    background: transparent;
}
.sec-title-style1 .text .decor-right span {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 50px;
    height: 1px;
    background: #1808c1;
    content: "";
    margin: 2px 0;
}
.sec-title-style1 .text .decor-right:before{
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 5px;
    height: 5px;
    background: #1808c1;
    border-radius: 50%;
    content: "";
}
.sec-title-style1 .text .decor-right:after{
    position: absolute;
    top: 0;
    left: 10px;
    bottom: 0;
    width: 5px;
    height: 5px;
    background: #1808c1;
    border-radius: 50%;
    content: "";
}

.sec-title-style1 .bottom-text{
    position: relative;
    display: block;
    padding-top: 16px;
}
.sec-title-style1 .bottom-text p{
    color: #848484;
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
    margin: 0;
    font-family: 'Poppins', sans-serif;
}
.sec-title-style1 .bottom-text.clr-gray p{
    color: #cdcdcd;    
}



.sec-title-style2{
    position: relative;
    display: block;
    margin-top: -2px;
    padding-bottom: 52px;    
}
.sec-title-style2.max-width{
    position: relative;
    display: block;
    max-width: 770px;
    margin: -8px auto 0;
}
.sec-title-style2.pdbottom60{
    padding-bottom: 60px;
}

.sec-title-style2 span{
    position: relative;
    display: block;
    color: #1808c1;
    font-size: 14px;
    line-height: 16px;
    font-weight: 700;
    text-transform: uppercase;
}
.sec-title-style2 .title{
    position: relative;
    display: block;
    padding: 8px 0 20px;
    color: #131313;
    font-size: 36px;
    line-height: 44px;
    font-weight: 700;
    text-transform: uppercase;
    font-family: 'Poppins', sans-serif;
}
.sec-title-style2 .title.clr-white{
    color: #ffffff;    
}
.sec-title-style2 .decor{
    position: relative;
    display: block;
    width: 90px;
    height: 5px;
}
.sec-title-style2 .decor span{
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 70px;
    background: #1808c1;
}
.sec-title-style2 .decor:before{
    position: absolute;
    top: 0;
    right: 0;
    width: 5px;
    height: 5px;
    background: #1808c1;
    content: "";
}
.sec-title-style2 .decor:after{
    position: absolute;
    top: 0;
    right: 10px;
    width: 5px;
    height: 5px;
    background: #1808c1;
    content: "";
}
.sec-title-style2 .text{
    position: relative;
    display: block;
    padding-top: 23px;
}
.sec-title-style2 .text p{
    color: #848484;
    line-height: 26px;
    margin: 0;
    font-family: 'Poppins', sans-serif;
}

.sec-title-style2 .decor.center {
    margin: 0 auto;
}
.sec-title-style2 .decor.center span {
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 70px;
    margin: 0 auto;
}
.sec-title-style2 .decor.center:after {
    top: 0;
    left: 0px;
    width: 5px;
    height: 5px;
}

.sec-title-style2 h1{
    color: #ffffff;
    font-size: 36px;
    line-height: 44px;
    font-weight: 400;
    font-family: 'Lobster Two', cursive;
    margin: 0 0 15px;
}
.sec-title-style2 .bottom-text{
    position: relative;
    display: block;
}
.sec-title-style2 .bottom-text p{
    color: #cdcdcd;
    margin: 0;    
}


.sec-title-style3{
    position: relative;
    display: block;
    margin-top: -2px;
    padding-bottom: 50px;
    z-index: 1;
}
.sec-title-style3:before {
    position: absolute;
    top: -33px;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: -1;
    font-family: 'icomoon';
    content: "\e932";
    color: #f0f0f0;
    font-size: 130px;
    line-height: 130px;
}
.sec-title-style3 h6{
    color: #9b9a9a;
    font-size: 14px;
    line-height: 14px;
    font-weight: 600;
    text-transform: uppercase;
    font-style: italic;
}
.sec-title-style3 .title{
    position: relative;
    display: block;
    padding: 14px 0 0;
    color: #131313;
    font-size: 36px;
    line-height: 44px;
    font-weight: 700;
    text-transform: capitalize;
    font-family: 'Poppins', sans-serif;
}
.sec-title-style3 .title span{
    color: #1808c1;
}


.sec-title-style4{
    position: relative;
    display: block;
    margin-top: 0px;
    padding-bottom: 40px;
    z-index: 1;
}
.sec-title-style4 .decor{
    position: relative;
    display: block;
    width: 200px;
    margin: 0 auto;
}
.sec-title-style4 .decor.left {
    position: relative;
    display: block;
    width: 115px;
    margin: 0;
}
.sec-title-style4 .decor span:before{
    position: relative;
    display: inline-block;
    width: 60px;
    color: #4eaaf9;
    font-size: 32px;
    line-height: 32px;
}

.sec-title-style4 .decor .border-left {
    position: absolute;
    top: 13px;
    left: 0;
    width: 70px;
    height: 7px;
    background: transparent;
}
.sec-title-style4 .decor .border-left:before{
    position: absolute;
    top: 0;
    right: 0;
    width: 50px;
    height: 2px;
    background: #4eaaf9;
    content: "";
}
.sec-title-style4 .decor .border-left:after{
    position: absolute;
    right: 0;
    bottom: 0;
    width: 70px;
    height: 2px;
    background: #4eaaf9;
    content: "";
}


.sec-title-style4 .decor .border-right {
    position: absolute;
    top: 13px;
    right: 0;
    width: 70px;
    height: 7px;
    background: transparent;
}
.sec-title-style4 .decor .border-right:before{
    position: absolute;
    top: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: #4eaaf9;
    content: "";
}
.sec-title-style4 .decor .border-right:after{
    position: absolute;
    left: 0;
    bottom: 0;
    width: 70px;
    height: 2px;
    background: #4eaaf9;
    content: "";
}
.sec-title-style4 .title{
    position: relative;
    display: block;
    padding: 8px 0 0;
    color: #131313;
    font-size: 36px;
    line-height: 44px;
    font-weight: 600;
    text-transform: capitalize;
    font-family: 'Poppins', sans-serif;    
}
.sec-title-style4 .title.clr-white{
    color: #ffffff;
}


.parallax-bg-one {
    background-attachment: fixed;
    background-position: center top;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    z-index: 1;
}
.parallax-bg-one::before {
    background: rgba(18, 32, 0, 0.90) none repeat scroll 0 0;
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: -1;
} 
.parallax-bg-two {
    background-attachment: fixed;
    background-position: center top;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    z-index: 1;
}
.parallax-bg-two::before {
    background: rgba(9, 23, 33, 0.90) none repeat scroll 0 0;
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: -1;
} 

.flex-box {
    display: flex;
    justify-content: center;
    flex-direction: row;
    flex-wrap: wrap;
}
.flex-box-two {
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
}
.flex-box-three {
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
}
.flex-box-four {
    display: flex;
    justify-content: center;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
}
.flex-box-five {
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
}

.owl-nav-style-one{}
.owl-nav-style-one .owl-controls { }
.owl-nav-style-one.owl-theme .owl-nav [class*="owl-"] {
    background: #ffffff none repeat scroll 0 0;
    border-radius: 50%;
    color: #909090;
    font-size: 24px;
    font-weight: 700;
    height: 50px;
    line-height: 46px;
    margin: 0 0 0 0px;
    padding: 0;
    width: 50px;
    border: 1px solid #f3f3f3;    
    transition: all 700ms ease 0s;
}
.owl-nav-style-one.owl-theme .owl-nav .owl-next {
    margin-left: 10px;
}
.owl-nav-style-one.owl-theme .owl-nav [class*="owl-"]:hover{
    border-color: #172272;
    color: #172272;
}

.owl-nav-style-two{}
.owl-nav-style-two .owl-controls { }
.owl-nav-style-two.owl-theme .owl-nav [class*="owl-"] {
    background: #fff none repeat scroll 0 0;
    border-radius: 0%;
    color: #3740b0;
    font-size: 24px;
    font-weight: 700;
    height: 50px;
    line-height: 50px;
    margin: 0 0 0 0px;
    padding: 0;
    width: 50px;
    transition: all 700ms ease 0s;
}
.owl-nav-style-two.owl-theme .owl-nav .owl-next {
    margin-left: 0px;
}
.owl-nav-style-two.owl-theme .owl-nav [class*="owl-"]:hover{
    color: #ffffff;
    background: #3740b0;
}


.accordion-box {
    position: relative;
    display: block;
}
.accordion-box .accordion {
    position: relative;
    display: block;
    margin-bottom: 20px;
    -webkit-box-shadow: 0px 2px 10px 3px #f6f6f6; 
    box-shadow: 0px 2px 10px 3px #f6f6f6;
}
.accordion-box .accordion .accord-btn {
    position: relative;
    display: block;
    cursor: pointer;
    background: #ffffff;
    padding-left: 40px;
    padding-right: 70px;
    padding-top: 22px;
    padding-bottom: 22px;
    transition: all 500ms ease;
}
.accordion-box .accordion .accord-btn h4 {
    color: #131313;
    font-size: 18px;
    line-height: 26px;
    font-weight: 600;
    transition: all 500ms ease;
}
.accordion-box .accordion .accord-btn::after {
    font-family: 'icomoon';
    position: absolute;
    content: "\e9ac";
    top: 23px;
    right: 40px;
    color: #b5b5b5;
    font-size: 25px;
    line-height: 25px;
    font-weight: 300;
    transition: all 500ms ease 0s;
}
.accordion-box .accordion .accord-btn.active{
    background: #005299;
    transition: all 500ms ease;
}
.accordion-box .accordion .accord-btn.active h4 {
    color: #ffffff;
}
.accordion-box .accordion .accord-btn.active:after{
    color: #4eaaf9;
}
.accordion-box .accordion .accord-content {
    position: relative;
    display: block;
    padding-top: 26px;
    padding-bottom: 24px;
    padding-left: 40px;
    padding-right: 35px;
    display: none;
}
.accordion-box .accordion .accord-content.collapsed {
    display: block;
}
.accordion-box .accordion .accord-content p {
    margin: 0;
}



@keyframes pulse {
    50% {
        box-shadow: 0 0 0 5px rgba(255,255,255,.1),
        0 0 0 20px rgba(238, 238,238, 0.3000);
    }
}


.owl-carousel.style1 .owl-nav [class*="owl-"] {
    position: relative;
    display: inline-block;
    background: transparent;
    width: 55px;
    height: 55px;
    border: 2px solid #d9d9d9;
    line-height: 56px;
    margin: 0 7.5px;
    padding: 0;
    transition: all 700ms ease 100ms;
    border-radius: 0%;
    text-align: center;
}
.owl-carousel.style1 .owl-nav [class*="owl-"] span:before{
    color: #d9d9d9;
    font-size: 16px;
    font-weight: 400;
    transition: all 700ms ease 200ms;
}
.owl-carousel.style1 .owl-nav [class*="owl-"] .icon-arrow:before {
    transform: rotate(180deg);
    display: inline-block;
}
.owl-carousel.style1 .owl-nav [class*="owl-"]:hover span:before{
    color: #131313;    
}
.owl-carousel.style1 .owl-nav [class*="owl-"]:hover{
    background: #1808c1;
    border-color: #1808c1;
}
.owl-carousel.style1.s2 .owl-nav [class*="owl-"]:hover{
    background: #4eaaf9;
    border-color: #4eaaf9;
}


.boxed_wrapper {
    background: #fff none repeat scroll 0 0;
    position: relative;
    margin: 0 auto;
    width: 100%;
    min-width: 320px;
    min-height: 400px;
    overflow: hidden;  
}

/*________________Preloader_______________ */
.preloader{ 
    position:fixed; 
    left:0px; 
    top:0px; 
    width:100%; 
    height:100%; 
    z-index:999999999999999999; 
    background-color:#ffffff; 
    background-position:center center; 
    background-repeat:no-repeat; 
    background-image:url(/wp-content/themes/electrical/css/../images/icon/preloader.gif);
}
.preloader.style-two {
    background-image: url(/wp-content/themes/electrical/css/../images/icon/preloader-1.gif);
}
.preloader.style-three {
    background-image: url(/wp-content/themes/electrical/css/../images/icon/preloader-2.gif);
}
.preloader.style-four {
    background-image: url(/wp-content/themes/electrical/css/../images/icon/preloader-3.gif);
}




/*** Scroll To Top style ***/

.scroll-top {
	position: fixed;
	right: 30px;
	bottom: 30px;
	width: 55px;
	height: 55px;
    border: 2px solid #1808c1;
	background: transparent;
	border-radius: 50%;
    color: #828282;
	font-size: 14px;
    font-weight: 600;
	text-align: center;
    text-transform: uppercase;
	display: none;
	cursor: pointer;
	-webkit-animation: pulse 2s infinite;
	-o-animation: pulse 2s infinite;
	animation: pulse 2s infinite;
    font-family: 'Poppins', sans-serif;
	z-index: 999;
}
.scroll-top span {}
.scroll-top:after {
	position: absolute;
	z-index: -1;
	content: '';
	top: 100%;
	left: 5%;
	height: 10px;
	width: 90%;
	opacity: 1;
	background: -webkit-radial-gradient(center, ellipse, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0) 80%);
	background: -webkit-radial-gradient(center ellipse, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0) 80%);
	background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0) 80%);
}

.scroll-top.style2{
    border-color: #1808c1;
}

.scroll-top.style3 {
    position: absolute;
    top: -25px;
    right: 40px;
    bottom: auto;
    width: 145px;
    height: 50px;
    background: #131313;
    border: 2px solid #272727;
    border-radius: 0%;
    color: #ffffff;
    font-size: 14px;
    line-height: 46px;
    font-weight: 700;
    cursor: pointer;
    display: none;
    text-align: center;
    transition: all 500ms ease 0s;
    z-index: 99999999;
    box-shadow: none;
    animation: auto;
}
.scroll-top.style3:hover{
    border-color: #1808c1;
    background: #1808c1;
}



.scroll-top.style4{
    border-color: #4eaaf9;
}








/* Form validation styles */
input:focus,
textarea:focus,
select:focus {
    border-color: #43c3ea;
    outline: none;
}

#contact-form input[type="text"].error{
    border-color: red;    
}
#contact-form input[type="email"].error{
  border-color: red;    
}
#contact-form select.error {
  border-color: red;
}
#contact-form textarea.error{
  border-color: red;    
}




/* Post pagination styles */
.post-pagination{
    position: relative;
    display: block;
}
.post-pagination.martop20{
    margin-top: 20px;
}
.post-pagination li {
    position: relative;
    display: inline-block;
    margin: 0 3px;
}
.post-pagination li a {
    position: relative;
    display: block;
    height: 60px;
    width: 60px;
    border-radius: 50%;
    border: 2px solid #eeeeee;
    color: #131313;
    font-size: 18px;
    line-height: 56px;
    font-weight: 600;
    transition: all 500ms ease 0s;
    font-family: 'Poppins', sans-serif;
}
.post-pagination li a i {
    color: #c1c1c1;
    font-size: 22px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}
.post-pagination li.active a, 
.post-pagination li:hover a {
    background: #1808c1;
    border-color: #1808c1;
}
.post-pagination li.active a i,
.post-pagination li:hover a i{
    color: #131313;    
}


.post-pagination.style2 li a{
    border-radius: 0;
}








/* Overlay styles */
.overlay-style-one{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: all 700ms ease 100ms;
    opacity: 0;
    z-index: 2;
}
.overlay-style-one.bg1{
    background-color: rgba(254, 199, 40, 0.90);    
}
.overlay-style-one.bg2{
    background-color: rgba(236, 110, 26, 0.90);    
}
.overlay-style-one.bg3{
    background-color: rgba(0, 83, 153, 0.90);    
}
.overlay-style-one .box{
    display: table;
    height: 100%;
    width: 100%;    
}
.overlay-style-one .box .content{
    display: table-cell;
    text-align: center;
    vertical-align: middle;    
}

.overlay-style-two{
    position: absolute;
    left: 0px;
    bottom: 0px;
    right: 0px;
    top: 0px;
    z-index: 2;
    opacity: 0;
    transition: all 900ms ease;    
}
.overlay-style-two:before{
	position: absolute;
	content: '';
	top: 0px;
	left: 0px;
	width: 100%;
	height: 50%;
	display: block;
	opacity: 0;
	text-align: center;
    transform: perspective(400px) rotateX(-90deg);
    transform-origin: top;
    transition: all 0.5s;
	background-color: rgba(18, 18, 18, 0.90);
}
.overlay-style-two:after{
	position: absolute;
	content: '';
	left: 0px;
	bottom: 0px;
	width: 100%;
	height: 50%;
	display: block;
	opacity: 0;
	text-align: center;
    transform: perspective(400px) rotateX(90deg);
    transform-origin: bottom;
    transition: all 0.5s;
	background-color: rgba(18, 18, 18, 0.90);
}



.review-box {
    position: relative;
    display: block;
    overflow: hidden;
    line-height: 30px; margin:0 auto;
}
.review-box ul {
    display: block;
    overflow: hidden;
}
.review-box ul li {
    display: inline-block;
    float: left;
    margin-right: 4px;
}
.review-box ul li:last-child{
    margin-right: 0px;    
}
.review-box ul li i {
    font-size: 16px;
    color: #e9212e;
}


.social-links-style1 {
    position: relative;
    display: block;
    overflow: hidden;
}
.social-links-style1 li{
    position: relative;
    display: inline-block;
    float: left;
    margin-right: 10px;
}
.social-links-style1 li:last-child{
    margin-right: 0px;
}
.social-links-style1 li a i{
    position: relative;
    display: block;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: #ffffff;
    font-size: 15px;
    font-weight: 400;
    line-height: 40px;
    text-align: center;
    transition: all 500ms ease;
}
.social-links-style1 li a.envelop i{
    background: #dd4b39;
}
.social-links-style1 li a.envelop:hover i{
    background: #cd3e2c;
}
.social-links-style1 li a.fb i{
    background: #3b5998;
}
.social-links-style1 li a.fb:hover i{
    background: #294887;
}
.social-links-style1 li a.tw i{
    background: #55acee;
}
.social-links-style1 li a.tw:hover i{
    background: #3d96da;
}
.social-links-style1 li a.youtube i{
    background: #d22215;
}
.social-links-style1 li a.youtube:hover i{
    background: #ba160a;
}






.sociallinks-style-two{
    overflow: hidden;
}
.sociallinks-style-two li {
    display: inline-block;
    float: left;
    margin-right: 20px;
}
.sociallinks-style-two li:last-child{
    margin-right: 0px;    
}
.sociallinks-style-two li a i {
    position: relative;
    display: block;
    width: 50px;
    height: 50px;
    background: #203260;
    border: 1px solid #31426c;
    border-radius: 50%;
    color: #ffffff;
    font-size: 14px;
    line-height: 48px;
    text-align: center;
    transition: all 500ms ease 0s;
}
.sociallinks-style-two li a:hover i{
    color: #3398fd;
    transform: rotate(360deg);
}




/* Update header Style */
@keyframes menu_sticky {
    0%   {margin-top:-90px;}
    50%  {margin-top: -74px;}
    100% {margin-top: 0;}
}





/*** 
============================================
	Hidden Sidebar style
============================================
***/
.hidden-bar{
	position: fixed;
	top: 0;
	width: 320px;
	height: 100%;
	background: #1d1d1d;
	z-index: 9999999999;
	transition: all 700ms ease;
}
.hidden-bar .mCSB_inside > .mCSB_container{
	margin-right:0px;	
}
.hidden-bar.right-align {
	right: -400px;
}
.hidden-bar.right-align.visible-sidebar{
	right:0px;
	transition-delay: 300ms;
}
.hidden-bar .hidden-bar-closer {
    position: absolute;
    right: 20px;
    top: 20px;
    width: 40px;
    height: 40px;
    background: none;
    color: #ffffff;
    border-radius: 0px;
    text-align: center;
    line-height: 40px;
    transition: all 300ms ease;
    z-index: 999999;
}
.hidden-bar .hidden-bar-closer button {
	background: none;
	display:block;
	font-size: 40px;
	color:#ffffff;
	width:40px;
	height:40px;
	line-height:40px;
}
.hidden-bar .hidden-bar-closer button span:before{
    font-size: 30px;
    line-height: 30px;
}
.hidden-bar .hidden-bar-closer:hover button {
	color: #ffffff;
}

.hidden-bar-wrapper {
	height: 100%;
	padding:30px 10px 30px 30px;
}
.hidden-bar .logo {
	padding:0px 0px 30px;
}
.hidden-bar .logo a{
    display: inline-block;
}
.hidden-bar .logo img{
	display: inline-block;
	max-width: 100%;	
}


.hiddenbar-about-us{
    position: relative;
    display: block;
}
.hiddenbar-about-us h3{
    font-size: 20px;
    color: #ffffff;
    margin: 0 0 18px;
}
.hiddenbar-about-us .text{
    display: block;
}
.hiddenbar-about-us .text p{
    color: #838383;
    margin: 0;
}


.hidden-bar .contact-info-box{
    position: relative;
    display: block;
    padding-top: 36px;
}
.hidden-bar .contact-info-box h3{
    font-size: 20px;
    color: #ffffff;
    margin: 0 0 23px;    
}
.hidden-bar .contact-info-box ul{
    position: relative;
    display: block;
}
.hidden-bar .contact-info-box ul li{
    position: relative;
    display: block;
    overflow: hidden;
    margin-bottom: 16px;
}
.hidden-bar .contact-info-box ul li:last-child{
    margin-bottom: 0;
}
.hidden-bar .contact-info-box ul li h5{
    color: #ffffff;
    font-size: 16px;
    line-height: 16px;
    font-weight: 500;
    margin: 0 0 11px;
}
.hidden-bar .contact-info-box ul li p{
    color: #838383;
    margin: 0;
}


.hidden-bar .newsletter-form-box {
    position: relative;
    display: block;
    padding-top: 36px;
    padding-right: 20px;
}
.hidden-bar .newsletter-form-box h3{
    font-size: 20px;
    color: #ffffff;
    margin: 0 0 24px;  
}
.hidden-bar .newsletter-form-box form{
    position: relative;
    display: block;
}
.hidden-bar .newsletter-form-box form input[type="email"] {
    position: relative;
    display: block;
    width: 100%; 
    height: 50px;
    background: #ffffff;
    border: 1px solid #eeeeee;
    color: #8b8b8b;
    font-size: 15px;
    padding: 0 20px;
    padding-right: 60px;
    transition: all 500ms ease;
}
.hidden-bar .newsletter-form-box form button {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 15px;
    width: 50px;
    text-align: center;
}
.hidden-bar .newsletter-form-box form button:before{
    position: absolute;
    top: 12px;
    left: 0;
    bottom: 12px;
    width: 2px;
    background: #eeeeee;
    content: "";
}
.hidden-bar .newsletter-form-box form button i{
    position: relative;
    top: 2px;
    color: #061f2e;
    font-size: 20px;
    line-height: 20px;
}

.hidden-bar .copy-right-text{
    position: relative;
    display: block;
    padding-top: 44px;
}
.hidden-bar .copy-right-text p{
    color: #8b9397;
    margin: 0;    
}













/*==============================================
    Main Header Css        
===============================================*/
.main-header {
	position: relative;
	left: 0px;
	top: 0px;
	width: 100%;
	z-index: 999999;
	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 {
	position: fixed;
	opacity: 0;
	visibility: hidden;
	left: 0px;
	top: 0px;
	width: 100%;
	padding: 0px 0px;
	background: #ffffff;
	z-index: 0;
	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 .logo {}
.fixed-header .sticky-header {
	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;
    box-shadow: 0 0 10px rgba(0,0,0,.1);
	opacity: 1;
	z-index: 999999;
}


.main-header .inner-content{
    position: relative;
    display: block;
}
.header-top{
    position: relative;
    display: block;
    padding: 10px 0;
    background: #131313;
}
.header-top .outer-box {
    position: relative;
    display: block;
    padding-left: 250px;
}
.header-top .top-left{
    position: relative;
    display: block;
}
.header-top .top-left .phone-number {
    position: relative;
    display: block;
}
.header-top .top-left .phone-number a {
    position: relative;
    display: inline-block;
    color: #ababab;
    font-weight: 600;
    line-height: 40px;
}
.header-top .top-left .phone-number a span:before{
    position: relative;
    top: 5px;
    color: #1808c1;
    font-size: 25px;
    display: inline-block;
    padding-right: 9px;
}

.header-top .top-right {
    position: relative;
    display: block;
    min-width: 350px;
    width: 100%;
    max-width: 360px;
}
.header-top .top-right .working-hours {
    position: relative;
    display: block;
    padding-left: 25px;
    max-width: 200px;
    width: 100%;
    float: left;
    margin: 5px 0;
}
.header-top .top-right .working-hours .icon{
    position: absolute;
    top: 0;
    left: 0;
}
.header-top .top-right .working-hours .icon span:before {
    position: relative;
    display: inline-block;
    color: #1808c1;
    font-size: 16px;
    line-height: 30px;
}

.header-top .top-right .working-hours .bootstrap-select {
    position: relative;
    display: block;
}
.header-top .top-right .working-hours .bootstrap-select>.dropdown-toggle {
    outline: none !important;
    border-radius: 0px;
    border: 0px solid #edf2f7;
    height: 30px;
    background-color: transparent;
    padding: 0;
    padding-left: 0px;
    color: #acacac;
    line-height: 30px;
    margin: 0;
    box-shadow: none !important;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Nunito Sans', sans-serif;
}
.header-top .top-right .working-hours .bootstrap-select>.dropdown-toggle::after {
    position: absolute;
    top: 50%;
    right: 0px;
    width: auto;
    height: auto;
    font-family: 'FontAwesome';
    content: '\f107';
    color: #7d7d7d;
    font-size: 18px;
    transform: translateY(-50%);
    margin: 0;
    border: none;
    font-weight: 400;
}
.header-top .top-right .working-hours .bootstrap-select .dropdown-menu {
    margin: 0;
    padding: 0;
    border-radius: 0;
    border: 0px solid #ddd;
    background: #f9f9f9;
    font-size: 16px;
    color: #000000;
}
.header-top .top-right .working-hours .dropdown-item {
    display: block;
    width: 100%;
    padding: 7px 15px 7px;
    font-weight: 400;
    color: #222222;
    text-align: inherit;
    white-space: nowrap;
    background-color: transparent;
    border: 0;
    border-radius: 0;
    transition: all 500ms ease;
}
.header-top .top-right .working-hours .dropdown-item.active,
.header-top .top-right .working-hours .dropdown-item:active {
    background: #1808c1;
    color: #fff;
}
.header-top .top-right .working-hours .dropdown-item:hover {
    background: #1808c1;
    color: #fff;
}
.header-top .top-right .social-links{
    position: relative;
    display: block;
    float: right;
}
.header-top .top-right .social-links ul {
    display: block;
    overflow: hidden;
    margin: 7px 0 8px;
}
.header-top .top-right .social-links ul li {
    display: inline-block;
    float: left;
    margin-right: 10px;
}
.header-top .top-right .social-links ul li:last-child{
    margin-right: 0;
}
.header-top .top-right .social-links ul li a i{
    position: relative;
    display: block;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: #dd4b39;
    color: #ffffff;
    font-size: 12px;
    text-align: center;
    line-height: 25px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}
.header-top .top-right .social-links ul li a:hover i{
    background: #c83a29;    
}
.header-top .top-right .social-links ul li a.fb i{
    background: #3b5998;
}
.header-top .top-right .social-links ul li a.fb:hover i{
    background: #223e78;
}
.header-top .top-right .social-links ul li a.tw i{
    background: #55acee;
}
.header-top .top-right .social-links ul li a.tw:hover i{
    background: #328ed4;
}
.header-top .top-right .social-links ul li a.youtube i{
    background: #d22215;
}
.header-top .top-right .social-links ul li a.youtube:hover i{
    background: #b2190d;
}


.header-upper{
    position: relative;
    display: block;
    background: #ffffff;
}
.header-upper .outer-box{
    position: relative;
    display: block;
    padding-left: 250px;    
}
.header-upper .header-upper-left {
    position: absolute;
    top: -60px;
    left: 0;
}
.header-upper .header-upper-left .logo{
    position: relative;
    display: block;
}
.header-upper .header-upper-left .logo a{
    position: relative;
    display: inline-block; 
    z-index: 1;
}
.header-upper .header-upper-left .logo a:before {
    position: absolute;
    top: 0;
    left: -15px;
    bottom: -15px;
    right: -15px;
    background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAOYAAAC0CAYAAACALFBHAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAA2lpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNS1jMDE0IDc5LjE1MTQ4MSwgMjAxMy8wMy8xMy0xMjowOToxNSAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0UmVmPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VSZWYjIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtcE1NOk9yaWdpbmFsRG9jdW1lbnRJRD0ieG1wLmRpZDowZTEzNWI4My03ZDMyLTUwNGEtYjY1Yi04MDIyNjJjMDAwNzgiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6NTgzRkQxNTk3MEEwMTFFOTg0RkJCRTUzM0Q4NkU5Q0EiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6NTgzRkQxNTg3MEEwMTFFOTg0RkJCRTUzM0Q4NkU5Q0EiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIChXaW5kb3dzKSI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOkQxMTZBN0ZCNzA5ODExRTlBNzI0RkZDQzREMzU5MTA1IiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOkQxMTZBN0ZDNzA5ODExRTlBNzI0RkZDQzREMzU5MTA1Ii8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8++EMW/QAABHhJREFUeNrs22Fu4zYQgFFSMHqC3v+g/SFuWyQLRSA5Q8UuKuc9wFASO7Kziy9D2s6jfFUnn58/rq21vwrQVWv94+9D+7h8Gn385fNtMcp6uACJPk/N1ExzW/LEsyPw5Ha2oNw6mZjChPy0zEZasxPzfCdFmPDaZrbk+K2TNTOQ21+WYHr+9rhQvDBhbY951A5fb9mJOVv3ni+bf3cIV6TRQOs295hMvtkS1sSEtT1mOU3J2dSsW2L82mPCa/aY5eoeM1rOArmJGe4rM2GOIvRyCayH2U7HMljeftmcDsfpZJMqSrg+NaPG0s+s1gt3AqK82M0WbULL+M23woT8tCxBnHUWZhSlJ39gPczUu32iMKMXQoHvLW2j1pbfvWNiwn/Qy3ahcuC5k/NSmKnNKvC8braLJxYlrC1nlwLdnnAHwJP78adb8D+0ffM3APCCRkxMeLOJCQgThAkIExAmCBMQJggTECYIExAmIEwQJiBMECYgTBAmIExAmCBMQJggTECYIExAmIAwQZiAMEGYgDBBmIAwAWGCMAFhgjABYYIwAWGCMAFhAsIEYQLCBGECwgRhAsIEhAnCBIQJwgSECcIEhAkIE4QJCBOECQgThAkIExAmCBMQJggTECYIExAmIEwQJiBMECYgTBAmIExAmCBMQJggTECYIExAmIAwQZiAMEGYgDBBmIAwAWGCMAFhgjABYYIwAWECwgRhAsIEYQLCBGECwgSECcIEhAnCBIQJwgSECQgThAkIE4QJCBOECQgTECYIExAmCBMQJggTECYIE3inMJt/PnhNIyYm3HxiNlMSvjU927PCbAKFlwTZnjExl08MXO9mu3hy4LnBXt5jHsey5Sy8sJctOJnJCa+blMNos0/+NBMTnjIxW2bQPTonqoOvHa/7945qrX9+xP15qYdjPYT/eayd81f/f9xouv1jPxw/v74fjvvpupKIss3CnD3Ierij2vlt0LvT/eO2eyfuaonMjQIdrRqjS5n0kZqYLZheUZz7x2TcTxOzHT6vhwdmUnK3ydk6k7N1pubVKFs0MXsnqJ0geyN+60zM1lnGCpO7htmbnHtiapbJ9eXKUrZMNq/tFOR+mpB1sIy1hOUdl7N7Ymm7tJQdLWnbYE94Po6CPO8pq4nJzaO8utcsJflS5GOyt2zBkzSZIOsgRFFy5+XslTAzgf6+7jF5gqcGe87zfvJ8jpqYkgLlLkFGU3Nl3zk7Z2qP2YI9YbSfNC35CVNzZYJG0zLcY7bSf3mjBQ9+9GSPMHnHMLOBlsFth3vM1QdWB+N4FqQlLO++pJ0FmpqSvTB7e8o6mZ7RxIy+T5jcOcwozlGYJTEtW3ZiRrHNrj9H6W14/JTJuRLjdI85mpplEllLxJy5Pdw9zlF4ozeyT8+VeVa2Dj6OgoveqADvspxdibRkpubKn32d42rJH6YmfkB4t1BbMuDu1x6LMV0NFH76BC3B1q9EYY7ijAI1DfnpYa4GObzusbgMLQtBihWBXvzelbfkZU8sSAT6zdv+EmAA8NC0Zou5eucAAAAASUVORK5CYII=);
    content: "";
    z-index: -1;
}
.header-upper .header-upper-left .logo a img{
    width: auto;
}


.header-upper .header-upper-right {
    position: relative;
    display: block;
    width: 100%;
}
.main-menu {
    position: relative;
    float: left;padding:0px 20px
}
.main-menu .navigation {
	position: relative;
	display: block;
}
.main-menu .navigation>li {
	position: relative;
    display: inline-block;
	float: left;
}

.main-menu .navigation>li>a {
	position: relative;
	display: block;
	color: #131313;
	font-size: 16px;
	line-height: 30px;
	font-weight:800;
	font-family: 'Nunito Sans', sans-serif;
	opacity: 1;
	
	padding: 24px 0px 21px;
    padding-right: 50px;
	transition: all 500ms ease;
	-moz-transition: all 500ms ease;
	-webkit-transition: all 500ms ease;
	-ms-transition: all 500ms ease;
	-o-transition: all 500ms ease; letter-spacing:1px;
}
.main-menu .navigation>li:last-child>a{
    padding-right: 0;
}
.main-menu .navigation>li>a:before {
    font-family: "Flaticon";
    position: absolute;
    top: 0;
    right: 20px;
    bottom: 0;
    content: "\f108";
    color: #d3d3d3;
    font-size: 10px;
    line-height: 75px;
}
.main-menu .navigation>li:last-child>a:before {
    display: none;
}
.main-menu .navigation>li:hover>a,
.main-menu .navigation>li.current>a{
    color: #1808c1;    
}

.main-menu .navigation>li>a span{
    position: relative;
    display: inline-block;
    z-index: 1;
}
.main-menu .navigation>li>a span:before {
    font-family: "Flaticon";
    position: absolute;
    left: 0;
    bottom: -25px;
    right: 0px;
    content: "\f10a";
    color: #1808c1;
    font-size: 20px;
    line-height: 20px;
    font-weight: 600;
    text-align: center;
    z-index: -1;
    transform: rotateX(180deg);
    opacity: 0;
	visibility: hidden;
    transition: all 500ms ease;
}
.main-menu .navigation>li:hover>a span:before,
.main-menu .navigation>li.current>a span:before{
    opacity: 1;
	visibility: visible;    
}


.main-menu .navigation>li>ul {
	position: absolute;
	top: 100%;
	left: inherit;
	width: 270px;
	padding: 0px;
	z-index: 100;
    display: none;
    border-top: 3px solid transparent;
}
.main-menu .navigation>li>ul:before {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    content: '';
    background: #131313;
    z-index: -1;
}
.main-menu .navigation>li>ul:after{
    
}
.main-menu .navigation>li.dropdown:hover>ul {
	visibility: visible;
	opacity: 1;
}
.main-menu .navigation>li>ul>li {
	position: relative;
    display: block;
    border-bottom: none;
	width: 100%;
	padding: 0px 20px;
}
.main-menu .navigation>li>ul>li:last-child{
    border-bottom: none;
}
.main-menu .navigation>li>ul>li>a {
	position: relative;
	display: block;
	padding: 7px 0px 7px;
	color: #ffffff;
	font-size: 14px;
	line-height: 24px;
	font-weight: 500;
	text-align: left;
	
	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;
}
.main-menu .navigation>li>ul>li>a:hover {
	color: #1808c1;

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


.main-menu .navigation>li>ul>li ul {
	position: absolute;
	left: 100%;
	top: 0%;
	width: 250px;
	z-index: 100;
	padding: 0;
	display: none;
	background: #131313;
	-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.dropdown:hover ul {
	visibility: visible;
	opacity: 1;
	left: 100%;
	top: 0%;
}
.main-menu .navigation>li>ul>li>ul li {
	position: relative;
    display: block;
    border-bottom: 1px solid #272727;
	width: 100%;
	padding: 0px 20px;
}
.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: 13px 0px 13px;
	color: #ffffff;
	font-size: 14px;
	line-height: 24px;
	font-weight: 500;
	text-align: left;
	text-transform: uppercase;
	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;
}
.main-menu .navigation>li>ul>li>ul>li a:hover {
	color: #1808c1;
    padding-left: 20px;
}


.main-header .container {
	
}
.main-menu {
	
}
.main-menu .navigation {
	position: inherit;
}
.main-menu .navigation>li {
	position: inherit;
}
.main-menu .navigation .megamenu {
    position: absolute;
    left: 0px;
    top: 100%;
    width: 100%;
    padding: 0px;
    z-index: 100;
    display: none;
    border-top: 3px solid transparent;
}
.main-menu .navigation .megamenu:before {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    content: '';
    background: #131313;
    z-index: -1;
}
.main-menu .navigation>li.dropdown:hover .megamenu {
    visibility: visible;
    opacity: 1;
}
.main-menu .navigation .megamenu .row{
    margin-left: -15px;
    margin-right: -15px;
}
.main-menu .navigation .megamenu .column{
    padding-left: 15px;
    padding-right: 15px;
}
.main-menu .navigation>li> .megamenu li {
	position: relative;
    display: block;
    border-bottom: 1px solid #272727;
	width: 100%;
	padding: 0px 20px;
}
.main-menu .navigation>li> .megamenu li:last-child{
    border-bottom: none;
}
.main-menu .navigation>li> .megamenu li>a {
	position: relative;
	display: block;
	padding: 13px 0px 13px;
	color: #ffffff;
	font-size: 14px;
	line-height: 24px;
	font-weight: 500;
	text-align: left;
	text-transform: uppercase;
	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;
}
.main-menu .navigation>li> .megamenu li>a:hover {
	color: #1808c1;
    padding-left: 20px;
}
.main-menu .navigation>li> .megamenu li>a:before{
    font-family: "Flaticon";
    position: absolute;
    top: 0;
    left: 0px;
    bottom: 0;
    content: "\f108";
    color: #1808c1;
    font-size: 10px; 
    line-height: 50px;
	opacity: 0;
	visibility: hidden;
	-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-menu .navigation>li> .megamenu li>a:hover:before{
	opacity: 1;
	visibility: visible;
}

.main-menu .navbar-collapse>ul li.dropdown .dropdown-btn {
    position: absolute;
    right: 0px;
    top: 0;
    width: 50px;
    height: 42px;
    border-left: 1px solid rgba(40, 40, 40, 0.99);
    text-align: center;
    font-size: 16px;
    line-height: 42px;
    color: #ffffff;
    cursor: pointer;
    z-index: 5;
    display: none;
}
.navbar-header {
	display: none;
}


/*
.dropdown-toggle::after {
	display: none;
}
**/


.menu-right-content {
    position: relative;
    float: right;
    width: 220px;
    padding: 15px 0;
}
.menu-right-content .cart-box {
    position: relative;
    display: inline-block;
    float: left;
}
.menu-right-content .cart-box a{
    position: relative;
    display: block;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 1px solid #e7e7e7;
}
.menu-right-content .cart-box a span:before {
    position: relative;
    display: block;
    text-align: center;
    color: #131313;
    font-size: 20px;
    line-height: 43px;
    transition: all 500ms ease;
}
.menu-right-content .cart-box a:hover span:before{
    color: #1808c1;    
}
.menu-right-content .cart-box a span.number {
    position: absolute;
    top: 0;
    left: -10px;
    bottom: 0;
    width: 20px;
    height: 20px;
    background: #1808c1;
    border-radius: 50%;
    color: #131313;
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    display: block;
    text-align: center;
    font-family: 'Nunito Sans', sans-serif;
    margin: 11px 0 12px;
}

.menu-right-content .search-box{
    position: relative;
    display: block;
    float: right;
    width: 150px;
}
.menu-right-content .search-box form{
    position: relative;
    display: block;
    width: 100%;
}
.menu-right-content .search-box form input[type="search"]{
    position: relative;
    display: block;
    padding: 0 20px;
    padding-right: 35px;
    border: 1px solid #e7e7e7;
    background: #ffffff;
    color: #9c9c9c;
    font-size: 15px;
    font-weight: 400;
    width: 100%;
    height: 45px;
    border-radius: 30px;
    transition: all 500ms ease;
}
.menu-right-content .search-box form button {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    display: block;
    background: transparent;
    color: #131313;
    font-size: 14px;
    width: 30px;
    border: 0px solid #e9212e;
    line-height: 45px;
    text-align: left;
    border-radius: 0px;
    transition: all 500ms ease 0s;
    margin: 0;
}
.menu-right-content .search-box form button i {
    font-size: 14px
}
.menu-right-content .search-box form input[type="search"]:focus {
    border: 1px solid #1808c1;
    background: #fff;
    color: #000000;
}
.menu-right-content .search-box form input[type="search"]:focus + button, 
.menu-right-content .search-box form button:hover {
    border-color: #e9212e;
    color: #1808c1;
}



/*** 
=====================================================
	Main Slider style
=====================================================
***/
.main-slider {
    position: relative;
    z-index: 10;
}
.main-slider .tp-caption{
	z-index:5 ;
}
.main-slider .tp-dottedoverlay{
    background: none !important;
}
.main-slider .tparrows {
    top: 50% !important;
}   

.main-slider .slide-content{
    position: relative;
    display: block;
}
.main-slider .slide-content .big-title{
	position: relative;
	color: #ffffff;
	font-size: 72px;
	line-height: 1.1em;
	font-weight: 800;
    text-transform: uppercase;
    font-family: 'Poppins', sans-serif;
    text-shadow: 0px 0px 8px rgba(0,0,0,0.2);
}
.main-slider .slide-content .text{
	position: relative;
    display: inline-block;
    padding-top: 23px;
    border-top: 1px solid #e5b320;
	color: #131313;
	font-size: 20px;
	line-height: 1.5em;
	font-weight: 600;
    letter-spacing: normal;
    text-transform: none;
    font-family: 'Nunito Sans', sans-serif;
}
.main-slider .slide-content .btn-box{text-align: center;}
.main-slider .slide-content .btn-box a{
}



/*** 
=====================================================
	Main Slider Style2 style
=====================================================
***/
.main-slider.style2 {
    position: relative;
    display: block;
    z-index: 10;
}
.main-slider.style2 .slide-content .title {
    position: relative;
    display: inline-block;
    height: 50px;
    padding: 19px 40px 11px;
    background: transparent;
    color: #1808c1;
    font-size: 18px;
    line-height: 20px;
    font-weight: 600;
    border-radius: 5px;
    text-transform: capitalize;
    font-family: 'Poppins', sans-serif;
    z-index: 1;
}
.main-slider.style2 .slide-content .title:before {
    position: absolute;
    top: 7px;
    left: 0px;
    right: 0px;
    height: 43px;
    background-color: rgba(255, 255, 255, 1.0);
    content: "";
    border-radius: 5px;
    z-index: -1;
}
.main-slider.style2 .slide-content .title:after{
    position: absolute;
    top: 0px;
    left: 15px;
    right: 15px;
    height: 7px;
    background-color: rgba(255, 255, 255, 0.45);
    content: "";
    border-radius: 5px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    z-index: -1;
}
.main-slider.style2 .slide-content .big-title{
	position: relative;
    display: block;
	color: #ffffff;
	font-size: 72px;
	line-height: 1.1em;
	font-weight: 800;
    text-transform: uppercase;
    font-family: 'Poppins', sans-serif;
}
.main-slider.style2 .slide-content .text{
	position: relative;
    display: block;
    padding: 0;
    border: none;
	color: #ffffff;
	font-size: 20px;
	line-height: 1.6em;
	font-weight: 400;
    letter-spacing: normal;
    text-transform: none;
    font-family: 'Nunito Sans', sans-serif;
}

.main-slider.style2 .tp-bullets {}
.main-slider.style2 .hermes .tp-bullet {
    position: absolute !important;
    display: inline-block !important;
    margin: 0px 10px !important;
    width: 12px;
    height: 12px;
}
.main-slider.style2 .hermes .tp-bullet:after {
    position: absolute;
    content: ' ';
    bottom: 0;
    height: 0;
    left: 0;
    width: 100%;
    background-color: #FFF;
    box-shadow: 0 0 1px #FFF;
    -webkit-transition: height 0.3s ease;
    transition: height 0.3s ease;
}
.tp-bullet.selected, 
.tp-bullet:hover {
    background: #fff;
}



/*** 
=====================================================
	Main Slider Style3 Css
=====================================================
***/
.main-slider.style3 .slide-content .title {
    position: relative;
    display: block;
    color: #1808c1;
    font-size: 16px;
	line-height: 1.2em;
    font-weight: 600;
    text-transform: uppercase;
    font-family: 'Poppins', sans-serif;
}
.main-slider.style3 .slide-content .big-title{
	position: relative;
	color: #fff;
	font-size: 72px;
	line-height: 1.2em;
	font-weight: 700;
    text-transform: capitalize;
    font-family: 'Poppins', sans-serif;
}
.main-slider.style3 .slide-content .text{
	position: relative;
    display: block;
    padding: 0;
    border: none;
	color: #fff;
	font-size: 20px;
	line-height: 1.4em;
	font-weight: 600;
    letter-spacing: normal;
    text-transform: none;
    font-family: 'Nunito Sans', sans-serif;
}
.main-slider.style3 .slide-content .btn-box a{
    line-height: 60px;
    padding: 0 55px;
}
.main-slider.style3 .slide-content .btn-box span{
    position: relative;
    display: inline-block;
    padding-left: 19px;
    padding-right: 16px;
    color: #828282;
    font-size: 20px;
    font-weight: 600;
    font-family: 'Nunito Sans', sans-serif;
}
.main-slider.style3 .slide-content .btn-box a.style2{
    color: #fff;
    line-height: 56px;
    border: 2px solid #1808c1;
    background: transparent;
	    background: #1808c1;
}
.main-slider.style3 .slide-content .btn-box a.style2:hover{
    color: #ffffff;
    background: #1808c1;
}



/*** 
=====================================================
	Main Slider Style4 Css
=====================================================
***/
.main-slider.style4 .slide-content .title {
    position: relative;
    display: block;
    color: #4eaaf9;
    font-size: 18px;
	line-height: 1.2em;
    font-weight: 600;
    text-transform: uppercase;
    font-family: 'Poppins', sans-serif;
}
.main-slider.style4 .slide-content.clr2 .title{
    color: #4eaaf9;    
}
.main-slider.style4 .slide-content .big-title{
	position: relative;
	color: #ffffff;
	font-size: 64px;
	line-height: 1.2em;
	font-weight: 700;
    text-transform: uppercase;
    font-family: 'Poppins', sans-serif;
}
.main-slider.style4 .slide-content.clr2 .big-title{
    color: #131313;    
}
.main-slider.style4 .slide-content .text{
	position: relative;
    display: block;
    padding: 0;
    border: none;
	color: #ffffff;
	font-size: 18px;
	line-height: 1.6em;
	font-weight: 600;
    letter-spacing: normal;
    text-transform: none;
    font-family: 'Nunito Sans', sans-serif;
}
.main-slider.style4 .slide-content.clr2 .text{
    color: #828282;    
}
.main-slider.style4 .slide-content .btn-box a{
    position: relative;
    display: inline-block;
    color: #131313;
    font-size: 16px;
    line-height: 55px;
    font-weight: 600;
    text-transform: capitalize;
    padding: 0 50px;
    background: #ffffff;
    font-family: 'Poppins', sans-serif;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}
.main-slider.style4 .slide-content .btn-box a:hover{
    color: #ffffff;
    background: #005299;
}
.main-slider.style4 .slide-content.clr2 .btn-box a{
    color: #ffffff;
    background: #4eaaf9;
}
.main-slider.style4 .slide-content.clr2 .btn-box a:hover{
    color: #ffffff;
    background: #131313;
}










/*** 
=============================================
    Booking Call Area style      
=============================================
***/
.booking-call-area{
    position: relative;
    display: block;
}
.booking-call {
    position: relative;
    display: block;
    overflow: hidden;
    background: transparent;
    padding: 40px 50px 40px;
    z-index: 1;
}
.booking-call:before{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAABJIAAACWCAYAAACFM6IaAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAA3hpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNS1jMDE0IDc5LjE1MTQ4MSwgMjAxMy8wMy8xMy0xMjowOToxNSAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0UmVmPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VSZWYjIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtcE1NOk9yaWdpbmFsRG9jdW1lbnRJRD0ieG1wLmRpZDowZTEzNWI4My03ZDMyLTUwNGEtYjY1Yi04MDIyNjJjMDAwNzgiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6OTk2RTQwRTA3MEI0MTFFOThCODRDM0QzNUY1QUZBQUIiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6OTk2RTQwREY3MEI0MTFFOThCODRDM0QzNUY1QUZBQUIiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIDIwMTQgKE1hY2ludG9zaCkiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDowMGY1YTA5OC01MGY3LTQxZTEtOGMyMC1kMmY1YWU1MWFkMWYiIHN0UmVmOmRvY3VtZW50SUQ9InhtcC5kaWQ6MGUxMzViODMtN2QzMi01MDRhLWI2NWItODAyMjYyYzAwMDc4Ii8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+SjonYAAABaNJREFUeNrs3L1qVFEUhuGJjKCtY2UtWluItYV3oFbehLdgaaNg7Q1YiWBhaaVWtpYGW0Ukmhh/ouuYHRijyXwJmZ8zeR5YzGZCOGFX4WXWrIxGo18DAAAAAJjghCsAAAAAICEkAQAAABARkgAAAACICEkAAAAARIQkAAAAACJCEgAAAAARIQkAAACAiJAEAAAAQERIAgAAACAiJAEAAAAQEZIAAAAAiAhJAAAAAESEJAAAAAAiQhIAAAAAESEJAAAAgIiQBAAAAEBESAIAAAAgIiQBAAAAEBGSAAAAAIgISQAAAABEhCQAAAAAIkISAAAAABEhCQAAAICIkAQAAABAREgCAAAAICIkAQAAABARkgAAAACICEkAAAAARIQkAAAAACJCEgAAAAARIQkAAACAiJAEAAAAQERIAgAAACAiJAEAAAAQEZIAAAAAiAhJAAAAAESEJAAAAAAiQhIAAAAAESEJAAAAgIiQBAAAAEBESAIAAAAgIiQBAAAAEBGSAAAAAIgISQAAAABEhCQAAAAAIkISAAAAABEhCQAAAICIkAQAAABAREgCAAAAICIkAQAAABARkgAAAACICEkAAAAARIQkAAAAACJCEgAAAAARIQkAAACAiJAEAAAAQERIAgAAACAiJAEAAAAQEZIAAAAAiAhJAAAAAESEJAAAAAAiQhIAAAAAESEJAAAAgIiQBAAAAEBESAIAAAAgIiQBAAAAEBGSAAAAAIgISQAAAABEhCQAAAAAIkISAAAAABEhCQAAAICIkAQAAABAREgCAAAAICIkAQAAABARkgAAAACICEkAAAAARIQkAAAAACJCEgAAAAARIQkAAACAiJAEAAAAQERIAgAAACAiJAEAAAAQEZIAAAAAiAhJAAAAAESEJAAAAAAiQhIAAAAAESEJAAAAgIiQBAAAAEBESAIAAAAgIiQBAAAAEBGSAAAAAIgISQAAAABEhCQAAAAAIkISAAAAABEhCQAAAICIkAQAAABAREgCAAAAICIkAQAAABARkgAAAACICEkAAAAARIQkAAAAACJCEgAAAAARIQkAAACAiJAEAAAAQERIAgAAACAiJAEAAAAQEZIAAAAAiAhJAAAAAESEJAAAAAAiQhIAAAAAESEJAAAAgIiQBAAAAEBESAIAAAAgIiQBAAAAEBGSAAAAAEisC0kAAAAAJN4ISQAAAAAkngpJAAAAAEzyteahkAQAAADAJHdrVoUkAAAAAPbzuOZOdxCSAAAAAPifrZr7NTdqfnZvDN0JAAAAAGM+1TypuVfzevwHQhIAAADA/HXxZqudP7bXrfZ+50fNWjt/q/nSzps16+28Mdj+UuxB+/m3dl5rv58850PNu0H7BNJuQhIAAACwjPYKL11o2WjnowgvR/WcXhCSAAAAgNQihZdJz2EKhCQAAACYr0UJL8lzOOaEJAAAAJaNlSaYEiEJAACAhJUmQEgCAACYIytNQK8ISQAAwDKx0gQwRUISAAAwiZUmAP4QkgAAYD6sNAHQO0ISAADLIgki6zWb7WylCQAOSEgCAGA/swovR/EcAGDKhCQAgNlblPBipQkAOBAhCQBYBosUXpLnAAD0kpAEAOzFShMAAH8RkgBgtqw0AQDQW0ISAH1npQkAAGZk2P4BPuUqABhjpQkAAPhHF5JWay66CoCps9IEAAD0WheSng+EJKCfrDQBAADM0MpoNLpSry9dBdCMB5HPNd/beZrh5bDPAQAAYIa6TyS9qnlUc9N1wNQsSnix0gQAAMChdZ9I6l7P1ryoOe9K6IlFCi/JcwAAAKD3hu31fc21mmc1F1zLsWWlCQAAANjTcOz8tqb7vqQHNbdczZGx0gQAAAAshZ3Vtt0u19yuuV5zcsH+ZitNAAAAAHOwV0jacabmas2lmnOD7e9SOj2w0gQAAABw7PwWYABtwvQOuKpNLwAAAABJRU5ErkJggg==);
    background-repeat: no-repeat;
    background-size: cover;
    content: "";
    z-index: -1;
}
.booking-call .title-box{
    position: relative;
    display: block;
}
.booking-call .title-box .icon {
    width: 70px;
    transform: rotateY(180deg);
}
.booking-call .title-box .icon span:before{
    color: #1808c1;
    font-size: 70px;
    line-height: 70px;
    transform: rotate(180deg);
}
.booking-call .title-box .icon,
.booking-call .title-box .title{
    display: table-cell;
    vertical-align: middle;
}
.booking-call .title-box .title{
    padding-left: 25px;
}
.booking-call .title-box .title h3{
    color: #ffffff;
    font-size: 24px;
    line-height: 34px;
    margin: 0 0 5px;
}
.booking-call .title-box .title span{
    color: #cdcdcd;
}

.booking-call-form {
    position: relative;
    display: block;
    max-width: 420px;
    width: 100%;
    overflow: hidden;
    height: 50px;
    margin: 10px 0;
}
.booking-call-form input[type="text"]{
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    padding: 0 15px;
    border: 1px solid #ffffff;
    background: #ffffff;
    color: #7e7e7e;
    font-size: 16px;
    font-weight: 400;
    font-style: italic;
    max-width: 250px;
    width: 100%;
    height: 50px;
    border-radius: 0px;
    transition: all 500ms ease;
}
.booking-call-form button {
    position: absolute;
    top: 0;
    right: 0;
    display: block;
    background: #1808c1;
    color: #131313;
    font-size: 16px;
    font-weight: 600;
    text-transform: capitalize;
    width: 150px;
    line-height: 50px;
    text-align: center;
    border-radius: 0px;
    transition: all 500ms ease 0s;
    margin: 0;
    font-family: 'Poppins', sans-serif;
}
.booking-call-form button:hover{
    background: #ffffff;
}


/*** 
=============================================
    About Area style1 Css      
=============================================
***/
.about-area-style1{
    position: relative;
    display: block;
}
.about-style1-content{
    position: relative;
    display: block;
}
.about-style1-content .sec-title-style1 {
    padding-bottom: 44px;
}
.about-style1-content .inner-content{
    position: relative;
    display: block;    
}
.about-style1-content .inner-content .text {
    position: relative;
    display: block;
    padding-bottom: 16px;
}
.about-style1-content .inner-content .single-box{
    position: relative;
    display: block;
    margin-bottom: 20px;
}
.about-style1-content .inner-content .single-box .icon{
    width: 40px;
}
.about-style1-content .inner-content .single-box .icon span:before{
    position: relative;
    display: block;
    width: 40px;
    height: 40px;
    background: #1808c1;
    text-align: center;
    color: #131313;
    font-size: 25px;
    line-height: 42px;
}
.about-style1-content .inner-content .single-box .icon,
.about-style1-content .inner-content .single-box .title{
    display: table-cell;
    vertical-align: middle;
}
.about-style1-content .inner-content .single-box .title{
    padding-left: 20px;    
}
.about-style1-content .inner-content .single-box .title p{
    margin: 0;
}

.about-style1-content .inner-content .authorised-person {
    position: relative;
    display: block;
    padding-top: 20px;
    padding-bottom: 47px;
}
.about-style1-content .inner-content .authorised-person .signature{
    width: 185px;
}
.about-style1-content .inner-content .authorised-person .signature,
.about-style1-content .inner-content .authorised-person .title{
    display: table-cell;
    vertical-align: middle;
}

.about-style1-content .inner-content .authorised-person .title{
    padding-left: 20px;
    border-left: 1px solid #e7e7e7;    
}
.about-style1-content .inner-content .authorised-person .title h3{
    margin: 0 0 2px;
}
.about-style1-content .inner-content .authorised-person .title span{
    color: #1808c1;
    font-weight: 600;
}

.about-style1-content .inner-content .know-more-box{
    position: relative;
    display: block;
}
.about-style1-content .inner-content .know-more-box .button{
    width: 220px;
}
.about-style1-content .inner-content .know-more-box .button a{
    position: relative;
    display: inline-block;
    background: #1808c1;
    color: #131313;
    font-size: 16px;
    line-height: 60px;
    font-weight: 600;
    text-align: center;
    width: 220px;
    text-transform: capitalize;
    font-family: 'Poppins', sans-serif;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}
.about-style1-content .inner-content .know-more-box .button a:hover{
    color: #ffffff;
    background: #131313;
}

.about-style1-content .inner-content .know-more-box .button,
.about-style1-content .inner-content .know-more-box .title{
    display: table-cell;
    vertical-align: middle;
}
.about-style1-content .inner-content .know-more-box .title{
    padding-left: 30px;
}
.about-style1-content .inner-content .know-more-box .title span{
    position: relative;
    display: block;
    color: #131313;
    line-height: 20px;
}
.about-style1-content .inner-content .know-more-box .title span:before{
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background: #131313;
    content: "";
}
.about-style1-content .inner-content .know-more-box .title h3{
    color: #1808c1;
    font-weight: 700;
    margin: 9px 0 0;
}


.video-holder-box {
    position: relative;
    display: block;
    width: 100%;
}
.video-holder-box .img-holder {
    position: relative;
    display: block;
    overflow: hidden;
    padding-left: 60px;
}
.video-holder-box .img-holder img{
    width: 100%;
}
.video-holder-box .img-holder .icon-holder{
    position: absolute;
    top: 0px;
    left: 0px;
    bottom: 0px;
    right: 0px;
    content: "";
    background: rgba(255, 255, 255, 0.02);
    transition: all 900ms ease;
    z-index: 3;
    opacity: 1;    
}
.video-holder-box .img-holder .icon-holder .icon{
    display: table;
    width: 100%;
    height: 100%;
}
.video-holder-box .img-holder .icon-holder .icon .inner{
    display: table-cell;
    vertical-align: middle;
}
.video-holder-box .img-holder .icon-holder .icon .inner a {
    position: relative;
    display: inline-block;
    padding: 7px;
    border: 3px dotted #1808c1;
    color: #ffffff;
    height: 120px;
    width: 120px;
    border-radius: 50%;
    text-align: center;
    transition: all 500ms ease;
}
.video-holder-box .img-holder .icon-holder .icon .inner a span:before {
    position: relative;
    display: block;
    background: #ffffff;
    width: 100%;
    height: 100%;
    color: #1808c1;
    font-size: 40px;
    line-height: 100px;
    border-radius: 50%;
    -webkit-animation: pulse 2s infinite;
    -o-animation: pulse 2s infinite;
    animation: pulse 2s infinite;
    transition: all 1s ease;
}



/*** 
=============================================
    Services Style1 Area Style      
=============================================
***/
.services-style1-area {
    position: relative;
    display: block;
    background: #f5f5f5;
    padding: 100px 0 100px;
}
.single-service-style1 {
    position: relative;
    display: block;
}
.single-service-style1 .img-holder{
    position: relative;
    display: block;
    -webkit-box-shadow: 0px 10px 9px 0px #c4c4c4; 
    box-shadow: 0px 10px 9px 0px #c4c4c4;
    z-index: 1;
}
.single-service-style1 .img-holder .inner{
    position: relative;
    display: block;
    overflow: hidden; 
    z-index: 1;
}
.single-service-style1 .img-holder img {
    width: 100%;
    transform: scale(1.01);
    transition: all 700ms ease;
}
.single-service-style1:hover .img-holder img {
    transform: scale(1.2);    
}
.single-service-style1:hover .overlay-style-two{
	opacity: 1;
}
.single-service-style1:hover .img-holder .overlay-style-two:before{
	opacity: 1;
    transform: perspective(400px) rotateX(0deg);
    transition: all 700ms ease 100ms;	
}
.single-service-style1:hover .img-holder .overlay-style-two:after{
	opacity: 1;
    transform: perspective(400px) rotateX(0deg);
    transition: all 700ms ease 300ms;	
}

.single-service-style1 .overlay-content-box {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 5;
    opacity: 0;
    transition: all 300ms ease 100ms;
}
.single-service-style1:hover .overlay-content-box{
    opacity: 1;
    transition: all 700ms ease 900ms;
}
.single-service-style1 .overlay-content-box .button{
    position: absolute;
    right: -8px;
    bottom: 60px;
    transform: translate3d(0px, 60px, 0px);
    transition: all 300ms ease 100ms;
}
.single-service-style1:hover .overlay-content-box .button{
    opacity: 1;
    transform: translate3d(0px, 0%, 0px);
    transition: all 700ms ease 900ms;       
}
.single-service-style1 .overlay-content-box .button a{
    position: relative;
    display: inline-block;
    width: 130px;
    background: #1808c1;
    color: #131313;
    font-size: 16px;
    line-height: 45px;
    font-weight: 600;
    text-align: center;
    text-transform: capitalize;
    font-family: 'Poppins', sans-serif;
    transition: all 500ms ease;
}
.single-service-style1 .overlay-content-box .button a:hover{
    color: #ffffff;
    background: #c59816;    
}
.single-service-style1 .overlay-content-box .button a:before {
    position: absolute;
    right: 0;
    bottom: -15px;
    width: 8px;
    height: 15px;
    background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAgAAAAPCAYAAADZCo4zAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAA3hpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNS1jMDE0IDc5LjE1MTQ4MSwgMjAxMy8wMy8xMy0xMjowOToxNSAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0UmVmPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VSZWYjIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtcE1NOk9yaWdpbmFsRG9jdW1lbnRJRD0ieG1wLmRpZDowZTEzNWI4My03ZDMyLTUwNGEtYjY1Yi04MDIyNjJjMDAwNzgiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6OUQ5NDU2N0Q3MTRDMTFFOTlBMDk5NDQ0RkM0RjA3RDgiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6OUQ5NDU2N0M3MTRDMTFFOTlBMDk5NDQ0RkM0RjA3RDgiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIDIwMTQgKE1hY2ludG9zaCkiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDowMGY1YTA5OC01MGY3LTQxZTEtOGMyMC1kMmY1YWU1MWFkMWYiIHN0UmVmOmRvY3VtZW50SUQ9InhtcC5kaWQ6MGUxMzViODMtN2QzMi01MDRhLWI2NWItODAyMjYyYzAwMDc4Ii8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+XcNm4wAAAGtJREFUeNpiPDpD7D8DbnCUiQE/6MSn4CoQb8GnoAuI/+NS8AiIl4EYuBT0AvEfXAreAPFcGAebgilA/BWXApDEVGQBdAVzoVZgVfAH6jgGXAqWQb2HVcF/aMAw4FKwBRq0OBV04gpvgAADAIpUFtKEybUvAAAAAElFTkSuQmCC);
    content: "";
}

.single-service-style1 .icon-holder{
    position: absolute;
    left: 0;
    right: 0;
    top: -32px;
    width: 150px;
    height: 90px;
    margin: 0 auto;
    text-align: center;
    z-index: 5;
}
.single-service-style1 .icon-holder:before{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAJYAAABaCAYAAABaK68tAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAA3hpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNS1jMDE0IDc5LjE1MTQ4MSwgMjAxMy8wMy8xMy0xMjowOToxNSAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0UmVmPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VSZWYjIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtcE1NOk9yaWdpbmFsRG9jdW1lbnRJRD0ieG1wLmRpZDowZTEzNWI4My03ZDMyLTUwNGEtYjY1Yi04MDIyNjJjMDAwNzgiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6RTJEQ0ZGODQ3MTA4MTFFOTkxQUREODRGMUUyQ0YwQ0IiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6RTJEQ0ZGODM3MTA4MTFFOTkxQUREODRGMUUyQ0YwQ0IiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIDIwMTQgKE1hY2ludG9zaCkiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDowMGY1YTA5OC01MGY3LTQxZTEtOGMyMC1kMmY1YWU1MWFkMWYiIHN0UmVmOmRvY3VtZW50SUQ9InhtcC5kaWQ6MGUxMzViODMtN2QzMi01MDRhLWI2NWItODAyMjYyYzAwMDc4Ii8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+SMnKEgAABF5JREFUeNrsm/1rlWUYx+/jZFqYyxfMCQal4KaiooU2M3rXnKbTienKSOqHoL+pKAqN0rJ3e6Gw1EUWKon+MP3BQEFIHYrZSI/fi+dr7Ac3O+2485zzfD7wZTJ14nM+z31d9/XcT+n6wTkJhuQe5WHlBeVZf+9rZafyi3Kp6BeotOzELb8/FnduyQxlhYVarTQP+r3XlJeVLyzYj8oZLhliDXnzKW3KKmWzsnSYPxuirXd+Vt5XvlLi9i1zKRHrpiTLlLVKp9Je4d9f6sRK9rnyqdKrDCBWcfunKHNdymNK6wh/XrvTo+xTPnK5vIRYxWC2hVrvxnxClX9+q0tppxv8jy1YX6H6igLtCpcoLyorlQeVcaP07/6tnFL2Ku8qv7IrrH/uUpYrr3hcMMVN+mgyziWyzWLHuOItZb/yF6WwfhhjgVb7g1xuwfKw65yqbHVft98rWJTJP5XriJVPxrvErVG2KAtrsDpVspI+rTylHFF2KJ+5ZF5FrHzQojykrHNDPrOeWhRlkfOGG/09yiGln+a9NsR0/AmXlfg6uUFW3vPK9x5XxNdcT/UbqXlv91Y+VqhHlKYG6xHjBtno1fegV7AYvB6nFN4ZHlW6lWe8wxrT4DvaJv+fO7yr/Ub5UPkJsUbO3W5y48LGY5fpqXjEDTTXicFrr8cV3ypXEKuyhrbVpS5OFyxO1Z+O1yvTXSLjZvstZacrolSeTTl7+J2n5v3muGCL78xZBSh3IyVmXydTdrpiRy3GFUM173kQa4q3290WahK+/C8uWLDoww6nbOhaSLHuT9lUvMcNeTNuVIUBN/rvpWy6f7oo44aYiK90D9WBB1UnbtBO54B7sHgAfqQRm/eSG87nvTpx0H506HC2exX7xLvJcr2L1eI7Z1OBxwV5YI7T7XHFBykbuvbXm1izvTrFBHm+MpHPNlfjiieV35VdXsX68ixWkyWKN1jWujmnIc8nE10i4+H96yk7p/+2ZbtWld6nCrvCe1P2MkGPV6kWPre6pN+rV+wm482ji7XaFcbxlDhPFLOnx1M24IT6JRaEl9wP/5Cymdh3yh+jUQqjtM1TnrNQC/g8Go5YIFY5Ry3Yl8qxVMErbf9VrHhWF28Gr7FUD3D9C8EC51XLFadc483vyyPtsaal7Oz4hpRNySdzrQtNHEKMaf7ulJ3VP1fpI504TBeT8S4bS/8Eg7nqMhmnXPdIruO3Eyu2oNtS9qrUzMQr+DA8/7i5j1fa3pFgBwaLdV/Knt3F2L/N44NmzzOuce1gGJqcAY8noi6+qewtlcuVPzYq97b9+0uubUNTGqqHuh0cpIM7AmIBYgFiAWIBIBYgFiAWAGIBYgFiASAWIBYgFgBiAWIBYgEgFiAWIBYAYgFiAWIBIBYgFiAWAGIBYgFiASAWIBYgFgBiAWIBYgEgFiAWIBYAYgFiAWIBIBYgFiAWAGIBYgFiASAWIBYgFgBiAWIBYgEgFiAWIBYAYkEtuCHAAE/uyUkf2tq3AAAAAElFTkSuQmCC);
    content: "";
    z-index: -1;
}
.single-service-style1 .icon-holder span:before {
    position: relative;
    display: block;
    color: #131313;
    font-size: 45px;
    line-height: 90px;
}

.single-service-style1 .text-holder {
    position: relative;
    display: block;
    margin-top: -30px;
    margin-left: 25px;
    margin-right: 25px;
    background: #ffffff;
    text-align: center;
    padding: 23px 20px 22px;
    transition: all 700ms ease 100ms;
    z-index: 5;
}
.single-service-style1:hover .text-holder{
    -webkit-box-shadow: 0px 7px 7px 0px #e2e2e2; 
    box-shadow: 0px 7px 7px 0px #e2e2e2;    
}

.single-service-style1 .text-holder:before {
    position: absolute;
    left: 0;
    bottom: -5px;
    right: 0;
    height: 5px;
    background: #ffffff;
    content: "";
    z-index: -1;
    transition: all 300ms ease 100ms;
}
.single-service-style1:hover .text-holder:before{
    height: 0;    
}
.single-service-style1 .text-holder:after {
    position: absolute;
    left: 0;
    bottom: 0px;
    right: 0;
    height: 0px;
    background: #1808c1;
    content: "";
    z-index: -1;
    transition: all 300ms ease 100ms;
}
.single-service-style1:hover .text-holder:after{
    height: 3px;    
}
.single-service-style1 .text-holder h3{
    margin: 0 0 17px;
}
.single-service-style1 .text-holder h3 a{
    color: #131313;
}
.single-service-style1 .text-holder p{
    margin: 0;    
}

.service-carousel-style1.owl-carousel .owl-stage-outer {
    position: relative;
    overflow: hidden;
    padding-top: 32px;
    padding-bottom: 50px;
}


.service-carousel-style1.owl-carousel .owl-nav {
    position: relative;
    display: block;
    margin: 0;
}



/*** 
=============================================
    Fact Counter Area style
=============================================
***/
.fact-counter-area {
    position: relative;
    display: block;
    background-attachment: fixed;
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    padding: 100px 0 100px;
    z-index: 1;
}
.fact-counter-area::before {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.90) none repeat scroll 0 0;
    content: "";
    z-index: -1;
} 
.single-fact-counter {
    position: relative;
    display: block;
}
.single-fact-counter .icon{
    position: relative;
    display: block;
    padding-bottom: 27px;
}
.single-fact-counter .icon span:before{
    color: #1808c1;
    font-size: 70px;
    line-height: 70px;
}
.single-fact-counter .count-box {
    position: relative;
    display: block;
    padding-bottom: 27px;
}
.single-fact-counter .count-box h1{
    color: #ffffff;
    font-size: 48px;
    line-height: 40px;
    font-weight: 700;
}
.single-fact-counter .count-box h1 span.add {
    position: relative;
    display: inline-block;
    padding: 0 20px;
    z-index: 1;
}
.single-fact-counter .count-box h1 span.add:before {
    position: absolute;
    top: 0;
    right: 0;
    font-family: 'icomoon';
    content: "\e933";
    color: #ffffff;
    font-size: 16px;
    line-height: 20px;
}
.single-fact-counter .count-box h1 span.dot{
    position: relative;
    display: inline-block;
    letter-spacing: 0.3em;
}
.single-fact-counter .count-box h1 span.dot:before {
    position: absolute;
    left: 0;
    bottom: 5px;
    right: 10px;
    width: 8px;
    height: 8px;
    margin: 0 auto;
    background: #ffffff;
    content: "";
    z-index: -1;
}

.single-fact-counter .border-box{
    position: relative;
    display: block;
    width: 160px;
    height: 5px;
    background: transparent;
    margin: 0 auto;
}
.single-fact-counter .border-box .left-border{
    position: absolute;
    top: 0;
    left: 0;
    width: 70px;
    height: 5px;
}
.single-fact-counter .border-box .left-border:before{
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 5px;
    height: 5px;
    background: #1808c1;
    border-radius: 50%;
    content: "";    
}
.single-fact-counter .border-box .left-border:after{
    position: absolute;
    top: 0;
    right: 10px;
    bottom: 0;
    width: 5px;
    height: 5px;
    background: #1808c1;
    border-radius: 50%;
    content: "";    
}
.single-fact-counter .border-box .left-border span {
    position: relative;
    display: block;
    width: 50px;
    height: 1px;
    background: #1808c1;
    margin: 2px 0;
    float: left;
}

.single-fact-counter .border-box .right-border{
    position: absolute;
    top: 0;
    right: 0;
    width: 70px;
    height: 5px;
}
.single-fact-counter .border-box .right-border:before{
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 5px;
    height: 5px;
    background: #1808c1;
    border-radius: 50%;
    content: "";    
}
.single-fact-counter .border-box .right-border:after{
    position: absolute;
    top: 0;
    left: 10px;
    bottom: 0;
    width: 5px;
    height: 5px;
    background: #1808c1;
    border-radius: 50%;
    content: "";    
}
.single-fact-counter .border-box .right-border span {
    position: relative;
    display: block;
    width: 50px;
    height: 1px;
    background: #1808c1;
    margin: 2px 0;
    float: right;
}

.single-fact-counter .title{
    position: relative;
    display: block;
    padding-top: 24px;
}
.single-fact-counter .title h3 {
    color: #ffffff;
    font-size: 18px;
    line-height: 28px;
    font-weight: 600;
}

.start-project-button{
    position: relative;
    display: block;
    padding-top: 52px;
    text-align: center;
}
.start-project-button a{
    position: relative;
    display: inline-block;
    background: #ffffff;
    padding: 0 45px;
    color: #131313;
    font-size: 16px;
    line-height: 60px;
    font-weight: 600;
    text-transform: capitalize;
    font-family: 'Poppins', sans-serif;
    transition: all 500ms ease;
}
.start-project-button a:hover{
    background: #1808c1;
}



/*** 
=============================================
    Completed Works Area style
=============================================
***/
.completed-works-area{
    position: relative;
    display: block;
    padding: 100px 0 100px;
}


.project-filter {
    position: relative;
    display: block;
    border-right: 1px solid #eeeeee;
}
.project-filter li {
    position: relative;
    display: inline-block;

}
.project-filter li + li {
    float: right;
}
.project-filter li .filter-text {
    position: relative;
    color: #131313;
    font-size: 16px;
    font-weight: 700;
    text-transform: capitalize;
    display: block;
    padding: 17px 30px 16px;
    border: 1px solid #eeeeee;
    border-right: none;
    cursor: pointer;
    transition: all .4s ease;
}
.project-filter li:hover .filter-text, 
.project-filter li.active .filter-text {
    color: #131313;
    background: #1808c1;
    border-color: #1808c1;
}
.project-filter li .count {
    position: absolute;
    top: 0px;
    left: -12px;
    bottom: 0;
    width: 25px;
    height: 25px;
    color: #ffffff;
    font-size: 14px;
    line-height: 25px;
    font-weight: 700;
    text-align: center;
    display: inline-block;
    background: #131313;
    opacity: 0;
    -webkit-transition: all .4s ease;
    transition: all .4s ease;
    font-family: 'Nunito Sans', sans-serif;
    margin: 17px 0;
    transform: scaleY(0);
    transition: all 300ms ease 100ms;
    z-index: 10;
}
.project-filter li:hover .count, 
.project-filter li.active .count {
    opacity: 1;
    transform: scaleY(1.0);
    transition: all 700ms ease 400ms;
}


.single-project-style1{
    position: relative;
    display: block;
    margin-bottom: 30px;
    z-index: 6;
}
.single-project-style1 .img-holder{
    position: relative;
    display: block;
    overflow: hidden;
    z-index: 5;
}
.single-project-style1 .img-holder img{
    width: 100%;
    transform: scale(1.01);
    transition: all 700ms ease;
}
.single-project-style1:hover .img-holder img {
    transform:scale(1.2) rotate(2deg);	
}
.single-project-style1 .overlay-content{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: "";
    background: rgba(18, 18, 18, 0.90);
    transform: scaleX(0);
    transition: all 700ms ease 100ms;
}
.single-project-style1:hover .overlay-content{
    transform: scaleY(1);
}
.single-project-style1 .overlay-content .inner-content{
    display: table;
    width: 100%;
    height: 100%;
}
.single-project-style1 .overlay-content .inner-content .title-box {
    display: table-cell;
    vertical-align: middle;
    text-align: center;
    opacity: 0;
    transform-style: preserve-3d;
    transform: perspective(1200px) rotateX(-90deg) translateZ(-45px);
    transition: all 300ms ease 100ms;
}
.single-project-style1:hover .overlay-content .inner-content .title-box{
    opacity: 1;
    transform: translate3d(0px, 0px, 0px); 
    transition: all 700ms ease 500ms;
}
.single-project-style1 .overlay-content .inner-content .title-box h3{}
.single-project-style1 .overlay-content .inner-content .title-box h3 a {
    color: #ffffff;
    transition: all 500ms ease;
}
.single-project-style1 .overlay-content .inner-content .title-box h3 a:hover{
    color: #1808c1;
}


.single-project-style1 .img-holder .link-zoom-button {
    position: absolute;
    left: 0px;
    bottom: 0px;
    right: 0px;
    text-align: center;
    display: block;
    background: transparent;
    transform-style: preserve-3d;
    transform: perspective(1200px) rotateX(90deg) translateZ(-45px);
    opacity: 0;
    transition: all 300ms ease 200ms;
    z-index: 3;
}
.single-project-style1:hover .img-holder .link-zoom-button{
    transform: translate3d(0px, 0px, 0px); 
    opacity: 1;
    transition: all 700ms ease 800ms;    
}
.single-project-style1 .img-holder .link-zoom-button .single-button{
    position: relative;
    display: block;
    width: 50%;
    float: left;
}
.single-project-style1 .img-holder .link-zoom-button .single-button a{
    position: relative;
    display: block;
    color: #131313;
    font-size: 16px;
    line-height: 60px;
    font-weight: 600;
    background: #1808c1;
    text-transform: capitalize;
    font-family: 'Poppins', sans-serif;
    transition: all 500ms ease;
}
.single-project-style1 .img-holder .link-zoom-button .single-button a:hover{
    color: #ffffff;
    background: #171717;    
}
.single-project-style1 .img-holder .link-zoom-button .single-button a span:before{
    position: relative;
    top: 2px;
    font-size: 18px;
    display: inline-block;
    padding-right: 8px;
}
.single-project-style1 .img-holder .link-zoom-button .single-button a.zoom{
    color: #ffffff;
    background: #131313;
}
.single-project-style1 .img-holder .link-zoom-button .single-button a.zoom:hover{
    color: #131313;
    background: #f8c01e;    
}

.view-all-project-button{
    position: relative;
    display: inline-block;
    text-align: center;
    border: 1px dashed #cbcbcb;
    padding: 14px 40px 14px;
    margin-top: 20px;
}
.view-all-project-button p{
    color: #131313;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    margin: 0;
    font-family: 'Poppins', sans-serif;
}
.view-all-project-button p a{
    color: #1808c1;
}



/*** 
=============================================
    Working Process area Style      
=============================================
***/
.working-process-area {
    position: relative;
    display: block;
    background-attachment: fixed;
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    padding: 100px 0 42px;
    z-index: 1;
}
.working-process-area::before {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.90) none repeat scroll 0 0;
    content: "";
    z-index: -1;
} 
.working-process-area .row {
    margin-left: -25px;
    margin-right: -25px;
}
.working-process-area .row [class*=col-] {
    padding-left: 25px;
    padding-right: 25px;
}
.working-process-arrow{
    position: absolute;
    left: 0;
    bottom: 240px;
    right: 0;
    text-align: center;
    z-index: -1;
}

.single-working-process{
    position: relative;
    display: block;
    margin-bottom: 50px;
}
.single-working-process .img-holder {
    position: relative;
    display: block;
    z-index: 5;
}
.single-working-process .img-holder .image-box{
    position: relative;
    display: block;
    overflow: hidden;
}
.single-working-process .img-holder .image-box img{
    width: 100%;
}

.single-working-process .overlay{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: "";
    background: rgba(33, 33, 33, 0.90);
    transform: scaleX(0);
    z-index: 3;
    transition: all 700ms ease 100ms;    
}
.single-working-process:hover .overlay{
    transform: scaleY(1);
}
.single-working-process .overlay .box{
    display: table;
    width: 100%;
    height: 100%;    
}
.single-working-process .overlay .box .inner{
    display: table-cell;
    vertical-align: middle;
    text-align: center;
    opacity: 0;
    transform-style: preserve-3d;
    transform: perspective(1200px) rotateX(-90deg) translateZ(-45px);
    transition: all 300ms ease 100ms;    
}
.single-working-process:hover .overlay .box .inner{
    opacity: 1;
    transform: translate3d(0px, 0px, 0px); 
    transition: all 700ms ease 500ms;    
}
.single-working-process .overlay .box .inner .icon-holder span:before{
    font-size: 70px;
    line-height: 70px;
}

.single-working-process .img-holder .button {
    position: absolute;
    left: 0;
    bottom: -60px;
    right: 0;
    display: block;
    height: 60px;
    background: #ffffff;
    text-align: center;
}
.single-working-process .img-holder .button a {
    position: relative;
    display: block;
    background: #1808c1;
    color: #131313;
    font-size: 16px;
    line-height: 60px;
    font-weight: 600;
    text-transform: capitalize;
    font-family: 'Poppins', sans-serif;
    opacity: 0;
    transform-style: preserve-3d;
    transform: perspective(1200px) rotateX(90deg) translateZ(30px);
    transition: all 300ms ease 100ms;  
}
.single-working-process:hover .img-holder .button a{
    opacity: 1;
    transform: translate3d(0px, 0px, 0px); 
    transition: all 700ms ease 500ms;      
}

.single-working-process .img-holder .button .count-box{
    position: absolute;
    top: -31px;
    left: 0;
    right: 0;
    width: 62px;
    height: 62px;
    margin: 0 auto;
    background: transparent;
    text-align: center;
    border-radius: 50%;
    z-index: 5;
    transition: all 700ms ease 500ms;   
}
.single-working-process:hover .img-holder .button .count-box{
    transform: scaleY(0);
    transition: all 300ms ease 100ms;   
}
.single-working-process .img-holder .button .count-box:before{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAD4AAAA+CAYAAABzwahEAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAA3hpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNS1jMDE0IDc5LjE1MTQ4MSwgMjAxMy8wMy8xMy0xMjowOToxNSAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0UmVmPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VSZWYjIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtcE1NOk9yaWdpbmFsRG9jdW1lbnRJRD0ieG1wLmRpZDowZTEzNWI4My03ZDMyLTUwNGEtYjY1Yi04MDIyNjJjMDAwNzgiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6RTAzQkYzMDU3Mjg4MTFFOTkwMERFM0I1NkNFOEU4NTUiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6RTAzQkYzMDQ3Mjg4MTFFOTkwMERFM0I1NkNFOEU4NTUiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIDIwMTQgKE1hY2ludG9zaCkiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDowMGY1YTA5OC01MGY3LTQxZTEtOGMyMC1kMmY1YWU1MWFkMWYiIHN0UmVmOmRvY3VtZW50SUQ9InhtcC5kaWQ6MGUxMzViODMtN2QzMi01MDRhLWI2NWItODAyMjYyYzAwMDc4Ii8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+SyrXpQAABgRJREFUeNrcWwtP3EYQXvs4DtLwCM2Dx1FIKSWkVdtEaRBJUdtEVdWfnLRqKtEKpUV5SC2kKZRACeGVB5BCwh2QGeVzZF28M2vOPp8y0ieQz97db3Z2Zna89vYnhkyKkiecJLQTWoEmQiOhAfeUCSXCDmETeEZYxfVUpCGFNo8SThO6CB0Ez2EMjGbcH8gB4SlhiTBHeF6PxH1CH+EjwvGE2vSgCManhHXCDGGesJ81cR7cAOEs4T2TrhwHPiP8RZiFVdScOA/iAuGYqa0cIXwJ6/qD8LhWxHOEc+jYM9kJK/w7mP9twl6axFsIY4Q2Ux/Cih9E5BgnbKVBvJPwFUJUnIG1Y1m0Q3HNIU9eBnYw6A3CGsJZnPXLE/E94VfCcpLEPyCMwnu7CJPsJxQJBYdQ1lThK14SFgkPoATXnOFrwgRhIQniTPqS43o+QRjG32qkgGgxAAuYxl+XsHoJ/y9UQ/wUZlojfQQOrzOFdXwCWIYT23ZYXqOwmhVJQ5oj08y7CO/ambIj60Q/RceZHwOHWMRzeDCvaPYLwkhKqa/NQkfQr+ew5sfAxdnUzykhixV2kdDj6NkDcz2GWcgDJWALefkaoHn0ATjE35X0tQ1cJt8aVMTujGPiVYXIRQeTKyDG9iuevVJewpv/g/8leUi4qSiKf/sJub7V1D2koZJ8rpD24dl/IAzFJB0obAjPDys+pgfj0SzuQuXSqGz0Q8XEe2FmkkO8gk1Lrsr1nEM7VyQnhfH0OqS3p23EPXQkhazzStj5NoV0tg3tSrnBeYxPkrPhWQ8T70MRQTLxBoH05ZjpbNxKzmWBfIODybeA41vEB5XZ7BYaHE3AtF1Mf1Qw+26HjHGwkniLUjkZFhzZSIozHTXzI4LDG3aoIbSEifcrjsGmyY8z2KK2oV+bZWqFkf4w8S7hxj4h7JzJaB9+RgiTfcqzXQFxLvV2CDGwV1gvuYyI5wSfVFTSWeba6MM8PMHMGy0K6TPZSr9l3AVhIt+k0D6KBpIzsF1vyph4QfA972uFEibeqlRSouRkndTcTgmWKkmrr6SDLYdsuJYePkqOasmMr6R6zTEVUmuxjUNbhk2+UkTIx7xea8kLKaxY0PAVEv47Sjyv1dNs1Y1SnRC3jaOsPOf7ConSO0q87Cs37Viub9UJcds4XmgKY+Lbh2j4aZ0Q37Bc1w4RbPvK7Nle36zWCfGVQ07MFhPfFG5YF66/yJg0V2Btr5W0d+abvpFfyrHmdiOuc8l2PmPiD0x0WZkV8kR59plv5AI+X//P8hvXvfcyIr2H/qNk0eh19jUfMyppaF4wtXsZEb9n7C8bNEtkrrtBAvNIMXfbWroveNY0Pfl9y29rDo7tUTgl1V6kTwuZ3c0aJjQl9Lcfc5xhWQgT31A8IWtySYj1EzVY73voxxZ+l4x+eOBxYKF+hdlKclfI8rjD31Kc+RLaXxNS1LsO7fwdtfuaVzIezvBuKVbxs3E/s+Iq3N4NZTZvGf2kxFZ4SfsVbn5KeZhD26zw+3MMcioB099DOzeU7HJWCLlhmQqHucp967/m9SvaNsXkudBXFBzeNNpK+/34oqOJs6efkzbsrBE+PXBVSQD4KCWXaXsUAn+a1+dOkz4RwfIQ49DuDTgdaJWKVWh7UClQcFjhN5QDDh2vJryxmcVMuyhoJmrPYavA3HZITLjTO1BA2dRGyujvjiPpDXAxrsTZsYw7hideZz8ax6OUVcgy+lmMEQLHbU7WUz7N4IL9N8b9KGdSJxsrw6TrycbwUvxF2K+r1cgVZEuuRzoD5+R6llVyjHHPsoaX4IRE2mXGA4l7iPdN+yb69HIu5NXZFKs9vRye6cQO8QaJPW9f4x7bDj6oqUWNjpXofGzbj+lcrmewDXXdql6P42Djmi7X564hzh/UAeEDjOWakWuHhzb1ylA3CceTxcc44TR00tgLookTD2QdmubM7ROjH7BLSrZNxp9fBaY2gw1J0h/cRSm6bj64C4eROSD4xLIby8CrQqmpfWLppfxRbSOyuA5sdflrROmj2v/hoZ8gnu+mNbBXAgwAVTV9IKcyLbkAAAAASUVORK5CYII=);
    content: "";
    z-index: -1;
}
.single-working-process .img-holder .button .count-box h5 {
    color: #131313;
    font-size: 16px;
    line-height: 62px;
    font-weight: 600;
}
.single-working-process .text-holder{
    position: relative;
    display: block;
    padding-top: 84px;
}
.single-working-process .text-holder h3{
    margin: 0 0 17px;    
}
.single-working-process .text-holder h3 a{
    color: #ffffff;
    transition: all 500ms ease;
}
.single-working-process .text-holder p{
    color: #cdcdcd;
    margin: 0;
}



/*** 
=============================================
    Testimonial Area Style      
=============================================
***/
.testimonial-area {
    position: relative;
    display: block;
    background: #f5f5f5;
    background-position: top right;
    background-attachment: scroll;
    background-repeat: no-repeat;
    background-size: auto;
    padding-top: 100px;
    padding-bottom: 25px;
    z-index: 1;
}
.more-reviews-button {
    position: relative;
    display: block;
    margin-top: 44px;
}

.single-testimonial-item{
    position: relative;
    display: block;
}
.single-testimonial-item .inner-content {
    position: relative;
    display: block;
    padding: 55px 30px 0;
    transition: all 300ms ease 100ms;
}
.single-testimonial-item:hover .inner-content{
    -webkit-box-shadow: 0px 6px 10px 3px #dddddd; 
    box-shadow: 0px 6px 10px 3px #dddddd;    
}

.single-testimonial-item .quote-icon{
    position: relative;
    display: block;
}
.single-testimonial-item .quote-icon span:before {
    position: relative;
    display: inline-block;
    padding: 0 6px;
    color: #d4d4d4;
    font-size: 42px;
    line-height: 32px;
    transition: all 500ms ease;
}
.single-testimonial-item .quote-icon .decor-left{
    position: relative;
    top: -15px;
    display: inline-block;
    width: 70px;
    height: 5px;
    background: transparent;
}
.single-testimonial-item .quote-icon .decor-left span {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 1px;
    background: #d4d4d4;
    content: "";
    margin: 2px 0;
    transition: all 500ms ease;
}
.single-testimonial-item:hover .quote-icon .decor-left span{
    background: #1808c1;
}
.single-testimonial-item .quote-icon .decor-left:before{
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 5px;
    height: 5px;
    background: #d4d4d4;
    border-radius: 50%;
    content: "";
    transition: all 500ms ease;
}
.single-testimonial-item:hover .quote-icon .decor-left:before{
    background: #1808c1;
}
.single-testimonial-item .quote-icon .decor-left:after{
    position: absolute;
    top: 0;
    right: 10px;
    bottom: 0;
    width: 5px;
    height: 5px;
    background: #d4d4d4;
    border-radius: 50%;
    content: "";
    transition: all 500ms ease;
}
.single-testimonial-item:hover .quote-icon .decor-left:after{
    background: #1808c1;    
}

.single-testimonial-item .quote-icon .decor-right{
    position: relative;
    top: -15px;
    display: inline-block;
    width: 70px;
    height: 5px;
    background: transparent;
}
.single-testimonial-item .quote-icon .decor-right span {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 50px;
    height: 1px;
    background: #d4d4d4;
    content: "";
    margin: 2px 0;
    transition: all 500ms ease;
}
.single-testimonial-item:hover .quote-icon .decor-right span{
    background: #1808c1;    
}
.single-testimonial-item .quote-icon .decor-right:before{
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 5px;
    height: 5px;
    background: #d4d4d4;
    border-radius: 50%;
    content: "";
    transition: all 500ms ease;
}
.single-testimonial-item:hover .quote-icon .decor-right:before{
    background: #1808c1;       
}
.single-testimonial-item .quote-icon .decor-right:after{
    position: absolute;
    top: 0;
    left: 10px;
    bottom: 0;
    width: 5px;
    height: 5px;
    background: #d4d4d4;
    border-radius: 50%;
    content: "";
    transition: all 500ms ease;
}
.single-testimonial-item:hover .quote-icon .decor-right:after{
    background: #1808c1;         
}

.single-testimonial-item .inner-content h3 {
    margin: 17px 0 17px;
}
.single-testimonial-item .inner-content .text{
    position: relative;
    display: block;
}
.single-testimonial-item .inner-content .text-box p{
    line-height: 26px;
    margin: 0;
}

.single-testimonial-item .client-info {
    position: relative;
    display: block;
    padding: 61px 0 29px;
 
  
    margin-left: 20px;
    margin-right: 20px;
    
}
.single-testimonial-item .client-info h3{
    color: #131313;
    margin: 0 0 3px;
}
.single-testimonial-item .client-info span{}
.single-testimonial-item .client-info .img-box {
    position: absolute;
    top: -43px;
    left: 0;
    right: 0;
    width: 90px;
    height: 90px;
    margin: 0 auto;
    border-radius: 50%;
    z-index: 2;
}
.single-testimonial-item .client-info .img-box::before {
    position: absolute;
    top: 0px;
    left: 0px;
    bottom: 0px;
    right: 0px;
    content: "";
    border: 3px solid #1808c1;
    border-radius: 50%;
    transition: all 0.5s ease-in-out 0s;
    transform-style: preserve-3d;
    transform: perspective(1200px) rotateY(0deg) translateZ(0px);
    opacity: 1;
    z-index: 4;
}
.single-testimonial-item .client-info .img-box img{
    width: 100%;
    transition: all 700ms ease 300ms;
    border-radius: 50%;
}
.single-testimonial-item:hover .client-info .img-box img{
    transform: rotate(360deg);	
    transition: all 700ms ease 100ms;
}

.testimonial-carousel.owl-theme .owl-nav .owl-prev {
    position: absolute;
    left: -85px;
    top: 150px;
    margin: 0;
    z-index: 10;
}
.testimonial-carousel.owl-theme .owl-nav .owl-next {
    position: absolute;
    right: -85px;
    top: 150px;
    margin: 0;
    z-index: 10;
}
.single-testimonial-item:hover .quote-icon span:before{
    color: #1808c1;
}



/*** 
=============================================
    Latest blog Area style
=============================================
***/
.latest-blog-area {
    position: relative;
    display: block;
    background: #ffffff;
    padding-top: 100px;
    padding-bottom: 50px;
}
.single-blog-post {
    position: relative;
    display: block;
    margin-bottom: 50px;
}
.single-blog-post .img-holder {
    position: relative;
    display: block;
}
.single-blog-post .img-holder .inner {
    position: relative;
    display: block;
    overflow: hidden;
}
.single-blog-post:hover .overlay-style-two{
	opacity: 1;
}
.single-blog-post:hover .img-holder .overlay-style-two:before{
	opacity: 1;
    transform: perspective(400px) rotateX(0deg);
    transition: all 700ms ease 100ms;	
}
.single-blog-post:hover .img-holder .overlay-style-two:after{
	opacity: 1;
    transform: perspective(400px) rotateX(0deg);
    transition: all 700ms ease 300ms;	
}
.single-blog-post .img-holder img {
    width: 100%;
    transform: scale(1.01);
    transition: all 700ms ease;
}
.single-blog-post:hover .img-holder img {
    transform:scale(1.2) rotate(2deg);	
}
.single-blog-post .img-holder .overlay{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    opacity: 0;
    overflow: hidden;
    transform: scale(0);
    transition: all 300ms ease 100ms;
}
.single-blog-post:hover .img-holder .overlay{
    opacity: 1;
    transition: all 700ms ease 900ms;
    transform: scale(1.0);   
}
.single-blog-post .img-holder .overlay .box{
    display: table;
    width: 100%;
    height: 100%;
}
.single-blog-post .img-holder .overlay .box .link-icon{
    display: table-cell;
    vertical-align: middle;
    text-align: center;
}
.single-blog-post .img-holder .overlay .box .link-icon a span:before{
    display: inline-block;
    color: #ffffff;
    font-size: 35px;
    line-height: 35px;
    transition: all 500ms ease;
}
.single-blog-post .img-holder .overlay .box .link-icon a:hover span:before{
    color: #1808c1;    
}

.single-blog-post .post-date-author-info {
    position: absolute;
    left: 30px;
    bottom: -60px;
    right: 30px;
    display: block;
    padding-left: 60px;
    min-height: 90px;
    background: #ffffff;
    -webkit-box-shadow: 0px 5px 9px 2px #F1F1F1; 
    box-shadow: 0px 5px 9px 2px #F1F1F1;
    z-index: 3;
}
.single-blog-post .post-date-author-info .post-date {
    position: absolute;
    top: 0;
    left: 0;
    width: 60px;
    min-height: 90px;
    display: block;
    padding: 21px 0;
    background: #1808c1;
    text-align: center;
}
.single-blog-post .post-date-author-info .post-date h3 {
    color: #fff;
    line-height: 24px;
    text-transform: uppercase;
}
.single-blog-post .post-date-author-info .author-info {
    position: relative;
    display: block;
    padding-left: 20px;
    min-height: 90px;
    padding-top: 17px;
    padding-bottom: 17px;
}
.single-blog-post .post-date-author-info .author-info .img-box{
    width: 55px;
}
.single-blog-post .post-date-author-info .author-info .img-box img{
    border-radius: 50%;
    transform: none;
}
.single-blog-post .post-date-author-info .author-info .img-box,
.single-blog-post .post-date-author-info .author-info .title-box{
    display: table-cell;
    vertical-align: middle;
}
.single-blog-post .post-date-author-info .author-info .title-box{
    padding-left: 15px;
}
.single-blog-post .post-date-author-info .author-info .title-box h6{
    color: #131313;
    font-size: 12px;
    text-transform: uppercase;
    margin: 0 0 5px;
}
.single-blog-post .post-date-author-info .author-info .title-box span{
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
}


.single-blog-post .text-holder {
    position: relative;
    display: block;
    padding: 88px 30px 0;
    border: 1px solid #eeeeee;
}
.single-blog-post .text-holder .blog-title {
    position: relative;
    display: block;
    font-size: 20px;
    line-height: 28px;
    font-weight: 600;
    margin: 0 0 17px;
}
.single-blog-post .text-holder .blog-title a{
    color: #131313;
    transition: all 500ms ease;
}
.single-blog-post .text-holder .blog-title a:hover{
    color: #1808c1;
}

.single-blog-post .text-holder .text {
    position: relative;
    display: block;
    border-bottom: 1px solid #eeeeee;
    padding-bottom: 27px;
}
.single-blog-post .text-holder .text p{
    margin: 0;    
}

.single-blog-post .meta-box {
    position: relative;
    display: block;
    overflow: hidden;
    padding: 12px 0 31px;
}
.single-blog-post .meta-box .meta-info {
    position: relative;
    display: block;
    overflow: hidden;
}
.single-blog-post .meta-box .meta-info li {
    position: relative;
    display: inline-block;
    float: left;
    color: #848484;
    font-size: 16px;
    line-height: 28px;
    font-weight: 600;
    padding-right: 25px;
    margin-right: 10px;
}
.single-blog-post .meta-box .meta-info li:before{
    position: absolute;
    top: 14px;
    right: 0px;
    width: 15px;
    height: 1px;
    background: #dfdfdf;
    content: "";
}
.single-blog-post .meta-box .meta-info li:last-child{
    padding-right: 0;
    margin-right: 0;
}
.single-blog-post .meta-box .meta-info li:last-child:before{
    display: none;
}
.single-blog-post .meta-box .meta-info li a{
    position: relative;
    display: inline-block;
    color: #131313;
    font-size: 16px;
    font-weight: 400;
    text-transform: capitalize;
    transition: all 500ms ease;
}
.single-blog-post .meta-box .meta-info li a:hover{
    color: #1808c1;
}



/*** 
=============================================
    Pricing Plan Area style
=============================================
***/
.pricing-plan-area {
    position: relative;
    display: block;
    background: #efefef;
    padding: 100px 0 198px;
    z-index: 1;
}
.pricing-plan-bg{
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-image: url(/wp-content/themes/electrical/css/../images/pattern/pricing-plan-bg.jpg);
    background-repeat: no-repeat;
    background-size: auto;
    background-position: top right;
    z-index: -1;
}

.single-pricing-box{
    position: relative;
    display: block; 
    max-width: 370px;
    width: 100%;
    margin: 0 auto;
    padding: 20px;
    background: #1808c1;
    z-index: 1;
}
.single-pricing-box:before{
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    height: 110px;
    background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAXIAAABuCAYAAAA6R5hdAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyFpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNS1jMDE0IDc5LjE1MTQ4MSwgMjAxMy8wMy8xMy0xMjowOToxNSAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIChXaW5kb3dzKSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDo3OTQxNTRBMTczQ0ExMUU5QTY0MUYzMEQ1RkZGMjlBRSIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDo3OTQxNTRBMjczQ0ExMUU5QTY0MUYzMEQ1RkZGMjlBRSI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOjc5NDE1NDlGNzNDQTExRTlBNjQxRjMwRDVGRkYyOUFFIiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOjc5NDE1NEEwNzNDQTExRTlBNjQxRjMwRDVGRkYyOUFFIi8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+OJapowAACJtJREFUeNrs3flvlFUUxvHTocoiEnEJbjHhNzUajUQTE/1zNcZdFCsqSJFFNtksO7VA2SlrKdBl6nlyz8hk0tJS3vvOvJ3vJzmZFiulQ/vM4bz33rdnZOPaA2a21GuJVy3qUaa9ppoex7wm4209Xvca8Rr1uuE1HL921euK1y2vu14TXuPx+3STnviae1qeUwBYkF6v90r8fOMR4gr5+1534v3hqJNeZ73OeF2OF4nFFvbTTY+NMK/F+wQ6gAUFeZmejlo9x8c98LrpdTseFepDXoci7Eei278aH7sYQt1aunQ6dQAdGeTzpVHPmqiZaIxzz+ui11Gvf7wOev0b4X41Ov2qBnsj1Bm/AJhTz8jGtYstIDSyuRThvi+qMaq5Fi8Clft7olMH0E1BPpO6pYus6tj3eg3E28fjcYJQB1BVvV3ydepi4uqoD5p+XRdTNXPfHR283tao5lwHd+6MXwB0ZZDPZoWlVTvNK3duR6euQD/mtTO6+NEODvWelkcCHSDIu9oqrw+jGrQk8mAE/F9e2yzN3OnSAbRdt8zIi6YQH4ja4bXL0jhmstP+fh8R+AAIcjTROEZLITVn3+i1ydK69zqhDoAgrybtWD0fnXqf13avCx0U7IxeAIIcj0m7UwctjWF+s7RDVUHfCcse6dQBghwLoF2ph72+9dpq6SLq9Q4J9Uaw1/lrAqqBVSvtsdzroyjRqZD9Xj9aWtOuTUrjbfhzNQ7uag50XugBOnI8Jh0CpjXsmy0tc1Swn++ATt0IdoAgx8LopMctXn9YmrEfsfad+EigAwQ5npDGLZqt90W3rgPBrhHqQHdjRl4tOst9XZRo7bqWOOqC6QavEyX+WZqPByDUATpyFECrXvZ77fH62dJsvewRDIEOEOQoiNan6wKpzoX50tJ8/WY7vr8IdYAgRzG0vFHzdK1b77PyV8HQqQMEOQqkzlwnOWr8ol2mWup4vw2BTqgDBDkKoNMaT3t977U+Ar6se50S6gBBjoLp+0BH8Wr1yzeWLpreLvHz1+zhzlIABDkKoKWNv9jDHaZDbejU+d4ECHIURJuONE/XWet/WjoLJvf3DaMXgCBHJjprXTfO0MXSLZZuWE2XDhDkqKhblpY1qlv/wdIKmDK7dIIdIMhRcKhrZ6lm6jqOV2fCTBHqAEGOahqLTv1XSyMY3REp942pGb+AIAcy0WYjzdF/8vrCayBzpy61eOQuRyDIgQydukJdo5f1EepjJXXpdOogyIGCqSsfsnSR9DtLu0rvlNClTxPqIMiBPAYtndSo4wIOl9ip8/0PghwomL4fdYMMXSTVzlKdq57zCF5CHQQ5kNkpS+MX7SrdkzHUmaeDIAdKcKwp1LW8MdehXoQ6CHKgBMct3flIK2D6Ld/xu4Q6CHIgs+no1BXqWtKoG1HfI9RBkAPVNNUU6tqApJMac61+4SIpCHIgMx0JoHuT/u71maUbUZfRqfPzBIIcyBTqw5ZOaVSo77J89ylt3njEzxYIciBTqJ+1dKCXdpTu9bqesUvvMXaTgiAHshrx6vP6PDr1XKFOoIMgB0pwxdJMXbtKtfrlXK6fu5b3+RkEQQ5k6tQbxwQo1IdLCHRCHQQ5kMkNSxdKFepbLN18mk4dBDlQUbqlnZYyagSjXaXHCXUQ5EB16QAvrXrRxiMdv3soc6g3LpjyMwuCHMhAN8XYF6GuEYxOapygUwdBDlTTuKUbZWiu/nV07TmOCiDUQZADJdAGJC1j7I9Q32p5bmnHBiSCHEAJ6l6XvbZZulC63dIu08kSunWCnSAHkMEDS7P0ryytgjljnKuOBejlKQDaZqnXJ1Hq1o9YGr/oDkg6jrfI29pNt4Q6wU5HDiCzIa9NlmbqO71O5syBOYIfBDmAJzRq6WKpVsHoYK/Dlm8E0xzs0y1vo0NznCAHqkUXRrWbdIeli6YK94u5g6LlbTYltTm4W//1RJAD1XbJ0gXT3V4bLO0unSo5SIyuvRS1luf4/7cJcmDx0F2PBiyNXzZbWt54uYSA7ZnhfdayF//czvpcEuTA4qUDvjSG0XxdZ8EctLyzdbr2J3/OFvQiSJAD3UGz9QuWRi86Z13r1ocsz3kwjxvu3Rjwhb7QEeRAd9JmJJ0Ho/m6Dvnab+nmGaMdEGqPWilTlbzqmcfHFPa1EOQARBdItbO0Pzp2de7nrbxRzHxDsTF6aB1BlLVksvXzND/WZvmz5X+CCHIAM9Ao5rSli6bamHQkgv12h3fBzYHaCFW9X28K1UYY12bpkltfIBq/X90ezrHrLYHd3i+cIAcwDwouneKotesax+giqi6eXuSpIcgBVNeNCHUdIXA0uvYTlubvIMgBVJBWwOiwr8YxAoMR8Jq9T/L05MPphwCK8pTXu1ENY9Gln4pg/9vSLfHOWLlLHwlyAFigFV7vRzXci2BX6QKq5u0HLJ3wqHHNOE/bvD3n9TZBDqBsy2fo3HUxVeevj1g6P0bhrvHMoQj865aOIKh36XOmFTKrvN7w+tjrU6+3vF7zWsOMHEAnUz5pk9I1S0cOXIzOXaWRzWCE/91F0slrPPWM16vqtL3e8Vrn9brXy14v2gyTFIIcQJXdj4BX6abWGs3oPqgXopO/Gt38WJTGOg/iY8etnHXgSyKcV8S/Rp6Nxxeio34zOm2FtUYlq72ej1CfF0YrAKpsWdSaOT6uHsE9EY83IsxVl+OF4H7UaLwAKPQn4/+Z7S5KvRG4um3fKxHWy+LxpeigV0Ywr4yP1X+vFfkkEOQAukGtKfQtuuFF9cUBAAhyAABBDgAgyAGAIAcAEOQAAIIcAECQAwBBDgAgyAEABDkAgCAHAIIcAECQAwAIcgAAQQ4ABDkAgCAHABDkAACCHAAIcgAAQQ4AIMgBAAQ5ABDkAACCHABAkAMAQQ4AIMgBAAQ5AIAgBwCCHABAkAMACHIAwHz9J8AAxqHz2W08aVEAAAAASUVORK5CYII=);
    background-repeat: no-repeat;
    content: "";
    z-index: -1;
}
.single-pricing-box .inner{
    position: relative;
    display: block;
    padding: 35px 0 40px;
    border: 2px dashed #131313;
}
.single-pricing-box span:before{
    color: #131313;
    font-size: 60px;
    line-height: 60px;
}
.single-pricing-box h3{
    color: #131313;
    margin: 14px 0 17px;
}
.single-pricing-box h1{
    color: #131313;
    font-size: 40px;
    line-height: 40px;
    text-transform: uppercase;
}
.single-pricing-box p{
    color: #131313;
    line-height: 26px;
    margin: 7px 0 32px;
}
.single-pricing-box a{
    position: relative;
    background: #131313;
    display: inline-block;
    padding: 0 25px;
    color: #ffffff;
    font-size: 16px;
    line-height: 50px;
    font-weight: 600;
    text-transform: capitalize;
    font-family: 'Poppins', sans-serif;
    transition: all 500ms ease;
}
.single-pricing-box a:hover{
    color: #131313;
    background: #e8b319;
}



.pricing-carousel.owl-carousel .owl-stage-outer{
	padding: 0px 0px 0px;
}
.pricing-carousel .owl-dots {
    position: relative;
    display: block !important;
    margin-top: 40px !important;
    line-height: 14px;
}
.pricing-carousel .owl-dots .owl-dot{
    position: relative;
	display: inline-block;
	width: 14px;
	height: 14px;
    background: #ffffff;
    border: 2px solid #4c4c4c;
	margin: 0px 5px;
	padding: 0px;
	border-radius: 50%;
	transition: all 500ms ease;
}
.pricing-carousel .owl-dots .owl-dot span{
	display:none;	
}
.pricing-carousel .owl-dots .owl-dot:before{
    position: absolute;
    top: 1px;
    left: 1px;
    bottom: 1px;
    right: 1px;
    content: "";
    background: #1808c1; 
    border-radius: 50%;
    opacity: 0;
    transition: all 500ms ease;
}
.pricing-carousel .owl-dots .owl-dot.active{
    border: 2px solid #ffffff;
}
.pricing-carousel .owl-dots .owl-dot.active:before{
    opacity: 1;    
}



/*** 
=============================================
    appointment Area Style      
=============================================
***/
.appointment-area {
    position: relative;
    display: block;
    background: #ffffff;
    padding-top: 0px;
    padding-bottom: 100px;
    z-index: 1;
}
.estimation-online-booking-content{}
.estimation-online-booking-content .outer-box {
    position: relative;
    display: block;
    margin-top: -100px;
}
.tabmenu-box{
    position: relative;
    display: block;
    max-width: 540px;
    width: 100%;
    float: left;
}

.estimation-online-booking-tab .tab-btns {
    position: relative;
    display: block;
    overflow: hidden;
}
.estimation-online-booking-tab .tab-btns li {
    position: relative;
    display: inline-block;
    background: transparent;
    float: left;
    padding-left: 57px;
    padding-right: 57px;
    line-height: 100px;
    cursor: pointer;
    z-index: 1;
}
.estimation-online-booking-tab .tab-btns li:before {
    position: absolute;
    top: 0;
    left: 30px;
    bottom: 0;
    right: 30px;
    background: #ffffff;
    content: "";
    z-index: -1;
    -moz-transform: skew(-30deg, 0deg);
    -webkit-transform: skew(-30deg, 0deg);
    -o-transform: skew(-30deg, 0deg);
    -ms-transform: skew(-30deg, 0deg);
    transform: skew(-30deg, 0deg);
}
.estimation-online-booking-tab .tab-btns li:last-child:before{
    left: -31px;    
}
.estimation-online-booking-tab .tab-btns li:last-child{
    padding-left: 0; 
}
.estimation-online-booking-tab .tab-btns li .icon {
    width: 40px;
}
.estimation-online-booking-tab .tab-btns li .icon,
.estimation-online-booking-tab .tab-btns li .title{
    display: table-cell;
    vertical-align: middle;
}
.estimation-online-booking-tab .tab-btns li .icon span:before{
    position: relative;
    top: 3px;
    color: #1808c1;
    font-size: 25px;
    line-height: 25px;
}
.estimation-online-booking-tab .tab-btns li .title{}
.estimation-online-booking-tab .tab-btns li .title h3{
    color: #131313;
    font-size: 18px;
    line-height: 24px;
}
.estimation-online-booking-tab .tab-btns li.active-btn:before{
    background: #1808c1;    
}
.estimation-online-booking-tab .tab-btns li.active-btn .icon span:before{
    color: #131313;
}

.emergency-contact-box {
    position: relative;
    display: block;
    background: transparent;
    width: 100%;
    max-width: 610px;
    float: right;
    padding: 25px 0 11px;
    z-index: 1;
}
.emergency-contact-box:before{
    position: absolute;
    top: 0;
    left: -15px;
    bottom: 0;
    right: 0px;
    background: #f5f5f5;
    content: "";
    z-index: -1;
    -moz-transform: skew(-30deg, 0deg);
    -webkit-transform: skew(-30deg, 0deg);
    -o-transform: skew(-30deg, 0deg);
    -ms-transform: skew(-30deg, 0deg);
    transform: skew(-30deg, 0deg);    
}
.emergency-contact-box .call-us {
    position: relative;
    display: block;
    float: left;
    width: 300px;
    margin-left: 90px;
}
.emergency-contact-box .call-us:before {
    position: absolute;
    top: 1px;
    right: 0;
    bottom: 15px;
    width: 1px;
    background: #d9d9d9;
    content: "";
}
.emergency-contact-box .call-us .icon{
    width: 60px;
}
.emergency-contact-box .call-us .icon span:before{
    position: relative;
    top: -5px;
    color: #1808c1;
    font-size: 55px;
    line-height: 55px;
}
.emergency-contact-box .call-us .icon,
.emergency-contact-box .call-us .text{
    display: table-cell;
    vertical-align: middle;
}
.emergency-contact-box .call-us .text{
    padding-left: 15px;
}
.emergency-contact-box .call-us .text p{
    color: #131313;
    font-size: 14px;
    line-height: 24px;
    font-weight: 600;
    text-transform: uppercase;
    font-family: 'Poppins', sans-serif;
}
.emergency-contact-box .call-back {
    position: relative;
    display: block;
    float: right;
    margin-right: 60px;
    padding-top: 14px;
}
.emergency-contact-box .call-back a{
    color: #131313;
}
.emergency-contact-box .call-back a:hover{
    color: #1808c1;
}


.estimation-online-booking-tab .tab-content-box {
    position: relative;
    display: block;
    padding-top: 100px;
}
.estimation-online-booking-tab .tab-content-box .single-tab-content{
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: auto;
    visibility: hidden; 
    display: none;
}
.estimation-online-booking-tab .tab-content-box .single-tab-content.active-tab {
    position: relative;
    visibility: visible;
    display: block;
    z-index: 5;
}
.estimation-online-booking-tab .single-tab-content{
    
}
.estimation-online-booking-tab .single-tab-content .image-box.style2 {
    margin-left: 20px;
}
.estimation-online-booking-tab .single-tab-content .image-box.mar-right20{
    margin-right: 20px;
} 

.estimation-online-booking-tab .single-tab-content .image-box img {
    width: 100%;
}
.estimation-online-booking-tab .single-tab-content .text-box{
    position: relative;
    display: block;
}
.estimation-online-booking-tab .single-tab-content .text-box.style2{
    
}
.estimation-online-booking-tab .single-tab-content .text-box .sec-title-style1{
    padding-bottom: 17px;    
}
.estimation-online-booking-tab .single-tab-content .text-box .inner-text{
    position: relative;
    display: block;
    padding-bottom: 42px;
}
.estimation-online-booking-tab .single-tab-content .text-box .inner-text p{
    line-height: 26px;
    margin: 0;
}



.appointment-form .mar-ninus10{
    margin-right: -10px;
    margin-left: -10px;    
}
.appointment-form .pd10{
    padding-left: 10px;
    padding-right: 10px;
}
.appointment-form .single-box{
    position: relative;
    display: block;
}
.appointment-form input[type="text"], 
.appointment-form input[type="email"], 
.appointment-form textarea {
    position: relative;
    display: block;
    padding: 0 20px;
    border: 1px solid #eeeeee;
    background: #ffffff;
    color: #848484;
    font-size: 16px;
    font-weight: 400;
    width: 100%;
    height: 55px;
    margin-bottom: 20px;
    border-radius: 0px;
    transition: all 500ms ease; 
}
.appointment-form textarea{
    position: relative;
    display: block;
    float: left;
    width: 80%;
    height: 110px;
    padding: 13px 20px;
    margin: 0;
}
.appointment-form input[type="text"]:focus{
    border-color: #1808c1;    
}
.appointment-form input[type="email"]:focus{
    border-color: #1808c1;     
}
.appointment-form textarea:focus{
    border-color: #1808c1;       
}
.appointment-form .single-box button {
    position: relative;
    display: block;
    float: right;
    width: 16%;
    background: #1808c1;
    color: #000000;
    font-size: 40px;
    margin-top: 0;
    border-radius: 0px;
    line-height: 110px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}
.appointment-form .single-box button span:before{
    font-size: 35px;
    line-height: 35px;
}
.appointment-form .single-box button:hover{
    color: #ffffff;
    background: #131313;
}
.appointment-form input::-webkit-input-placeholder {
    color: #848484;
}
.appointment-form input:-moz-placeholder {
    color: #848484;
}
.appointment-form input::-moz-placeholder {
    color: #848484;
}
.appointment-form input:-ms-input-placeholder {
    color: #848484;
}
.appointment-form .single-box .bootstrap-select {
    position: relative;
    display: block;
    margin-bottom: 20px;
}
.appointment-form .single-box .bootstrap-select>.dropdown-toggle {
    position: relative;
    display: block;
    float: none;
    width: 100%;
    height: 55px;
    outline: none !important;
    border-radius: 0;
    border: 1px solid #eeeeee;
    background-color: transparent;
    padding: 0;
    padding-left: 20px;
    color: #848484;
    font-size: 16px;
    line-height: 55px;
    font-weight: 400;
    margin: 0;
    box-shadow: none !important;
    font-family: 'Nunito Sans', sans-serif;
}
.appointment-form .single-box .bootstrap-select>.dropdown-toggle::after {
    position: absolute;
    top: 50%;
    right: 20px;
    width: auto;
    height: auto;
    font-family: 'FontAwesome';
    content: '\f107';
    color: #83888d;
    font-size: 18px;
    transform: translateY(-50%);
    margin: 0;
    border: none;
}
.appointment-form .single-box .bootstrap-select .dropdown-menu {
    margin: 0;
    padding: 0;
    border-radius: 0;
    border: 0px solid #ddd;
    background: #f9f9f9;
    font-size: 16px;
    color: #000000;
}
.appointment-form .single-box .dropdown-item {
    display: block;
    width: 100%;
    padding: 9px 20px 9px;
    font-weight: 400;
    color: #222222;
    text-align: inherit;
    white-space: nowrap;
    background-color: transparent;
    border: 0;
    border-radius: 0;
    transition: all 500ms ease;
    font-family: 'Nunito Sans', sans-serif;
}
.appointment-form .single-box .dropdown-item.active,
.appointment-form .single-box .dropdown-item:active {
    color: #131313;
    background: #1808c1;
}
.appointment-form .single-box .dropdown-item:hover {
    color: #131313;
    background: #1808c1;
}



.appointment-form-box.style3{
    position: relative;
    display: block;
    padding: 0;
}
.appointment-form-box.style3 form .input-box textarea {
    position: relative;
    display: block;
    float: left;
    width: 80%;
    height: 110px;
    padding: 13px 20px;
    margin: 0;
}
.appointment-form-box.style3 form .input-box input[type=text]:focus{
    border-color: #f9d030;
}
.appointment-form-box.style3 form .input-box input[type=email]:focus{
    border-color: #f9d030;
}
.appointment-form-box.style3 form .input-box textarea:focus{
    border-color: #f9d030;
}
.appointment-form-box.style3 form button {
    position: relative;
    display: block;
    border: none;
    float: right;
    width: 16%;
    background: #1808c1;
    color: #000000;
    font-size: 40px;
    margin-top: 0;
    border-radius: 0px;
    line-height: 110px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}
.appointment-form-box.style3 form button span:before{
    font-size: 35px;
    line-height: 35px;    
}
.appointment-form-box.style3 form button:hover{
    color: #ffffff;
    background: #131313;    
}

.appointment-form-box.style3 .bootstrap-select {
    position: relative;
    display: block;
    margin-bottom: 20px;
}
.appointment-form-box.style3 .bootstrap-select>.dropdown-toggle {
    position: relative;
    display: block;
    float: none;
    width: 100%;
    height: 55px;
    outline: none !important;
    border-radius: 0;
    border: 1px solid #eeeeee;
    background-color: transparent;
    padding: 0;
    padding-left: 20px;
    color: #848484;
    font-size: 16px;
    line-height: 55px;
    font-weight: 400;
    margin: 0;
    box-shadow: none !important;
    font-family: 'Nunito Sans', sans-serif;
}
.appointment-form-box.style3 .bootstrap-select>.dropdown-toggle::after {
    position: absolute;
    top: 50%;
    right: 20px;
    width: auto;
    height: auto;
    font-family: 'FontAwesome';
    content: '\f107';
    color: #83888d;
    font-size: 18px;
    transform: translateY(-50%);
    margin: 0;
    border: none;
}
.appointment-form-box.style3 .bootstrap-select>.dropdown-toggle .filter-option {
    position: absolute;
    top: 0;
    left: 0;
    padding-top: inherit;
    padding-right: inherit;
    padding-bottom: inherit;
    padding-left: inherit;
    height: 100%;
    width: 100%;
    text-align: left;
    color: #848484;
    font-size: 16px;
    font-family: 'Nunito Sans', sans-serif;
}
.appointment-form-box.style3 .bootstrap-select .dropdown-menu {
    color: #000000;
    font-size: 16px;
    margin: 0;
    padding: 0;
    border-radius: 0;
    border: 0px solid #ddd;
    background: #f9f9f9;
}
.appointment-form-box.style3 .dropdown-item {
    display: block;
    width: 100%;
    padding: 9px 20px 9px;
    font-weight: 400;
    color: #222222;
    text-align: inherit;
    white-space: nowrap;
    background-color: transparent;
    border: 0;
    border-radius: 0;
    transition: all 500ms ease;
}
.appointment-form-box.style3 .dropdown-item.active,
.appointment-form-box.style3 .dropdown-item:active {
    color: #131313;
    background: #1808c1;
}
.appointment-form-box.style3 .dropdown-item:hover {
    color: #131313;
    background: #1808c1;
}



/*** 
=============================================
    Brand Area Style      
=============================================
***/
.brand-area {
    position: relative;
    display: block;
    background: #f5f5f5;
    padding-top: 100px;
    padding-bottom: 100px;
}
.brand-items{
    position: relative;
    display: block;
}
.single-brand-item {
    position: relative;
    display: block;
}
.single-brand-item a {
    display: block;
    background: #ffffff;
    text-align: center;
    transition: all 700ms ease 200ms;
}
.single-brand-item a:hover{
    -webkit-box-shadow: 0px 5px 10px 2px #ebebeb; 
    box-shadow: 0px 5px 10px 2px #ebebeb;    
}
.single-brand-item a img{
    width: auto;
  
    transition: all 900ms ease 200ms;
    transform: perspective(1200px) rotateY(0deg) translateZ(0px);
}
.single-brand-item:hover a img{
    filter: brightness(100%); 
    transform: perspective(1200px) rotateY(360deg) translateZ(0px);
}

.brand-items-carousel.owl-carousel .owl-stage-outer {
    position: relative;
    overflow: hidden;
    padding-bottom: 50px;
}



/*** 
=============================================
    Footer area style
=============================================
***/
.footer-area {
    position: relative;
    display: block;
    background: #131313;
    padding-top: 100px;
    padding-bottom: 96px;
    z-index: 1;
}

.single-footer-widget {
    position: relative;
    display: block;
    overflow: hidden;
}
.single-footer-widget .title {
    position: relative;
    display: block;
    padding-bottom: 34px;
    margin-top: -4px;
}
.single-footer-widget .title h3 {
    color: #ffffff;
    font-size: 20px;
    line-height: 24px;
    font-weight: 700;
    text-transform: uppercase;
}

.single-footer-widget .decor {
    position: relative;
    display: block;
    width: 70px;
    height: 5px;
    margin: 15px 0 0;
}
.single-footer-widget .decor:before{
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 5px;
    height: 5px;
    background: #1808c1;
    border-radius: 50%;
    content: "";
}
.single-footer-widget .decor:after{
    position: absolute;
    top: 0;
    right: 10px;
    bottom: 0;
    width: 5px;
    height: 5px;
    background: #1808c1;
    border-radius: 50%;
    content: "";
}
.single-footer-widget .decor span {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 1px;
    background: #1808c1;
    margin: 2px 0;
}

.single-footer-widget .footer-company-info-text{
    position: relative;
    display: block;
}
.single-footer-widget .footer-company-info-text p{
    color: #838383;
}
.single-footer-widget .footer-company-info-text a {
    color: #ffffff;
    margin-top: 13px;
    display: inline-block;
}
.single-footer-widget .footer-company-info-text a:hover{
    color: #1808c1;
}

.single-footer-widget.useful-links-box{
    overflow: inherit;
}
.single-footer-widget .usefull-links {
    position: relative;
    display: block;
    margin-top: -8px;
}
.single-footer-widget .usefull-links ul{
    position: relative;
    display: block;
    z-index: 1;
}
.single-footer-widget .usefull-links ul:before{
    position: absolute;
    top: 14px;
    left: 0;
    bottom: 15px;
    width: 1px;
    background: #272727;
    content: "";
    z-index: -1;
}
.single-footer-widget .usefull-links ul li {
    position: relative;
    display: block;
    line-height: 40px;
}
.single-footer-widget .usefull-links ul li:before {
    position: absolute;
    top: 16px;
    left: -3px;
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #1808c1;
    transform: scale(0);
    transition: all 0.3s ease-in-out 0.1s;
    z-index: 5;
}
.single-footer-widget .usefull-links ul li:hover:before{
    transform: scale(1);
}
.single-footer-widget .usefull-links ul li a{
    position: relative;
    display: block;
    color: #848484;
    font-size: 16px;
    font-weight: 400;
    padding-left: 17px;
    transition: all 500ms ease;
}
.single-footer-widget .usefull-links ul li a:hover{
    color: #1808c1;
}


.single-footer-widget .recent-news {
    position: relative;
    display: block;
    overflow: hidden;
    margin-top: 6px;
}
.single-footer-widget .recent-news li {
    position: relative;
    display: block;
    padding-left: 75px;
    min-height: 75px;
    border-bottom: 1px solid #272727;
    padding-bottom: 30px;
    margin-bottom: 30px;
}
.single-footer-widget .recent-news li:last-child{
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}
.single-footer-widget .recent-news li .img-holder {
    position: absolute;
    top: 0;
    left: 0;
    width: 75px;
    height: 75px;
    display: block;
    overflow: hidden;
}
.single-footer-widget .recent-news li .img-holder img{
    transition: all 0.5s ease-in-out 0.6s;
    width: 100%;
    transform: scale(1.0, 1.0); 
}
.single-footer-widget .recent-news li:hover .img-holder img{
    transform: scale(1.2, 1.2);
} 
.single-footer-widget .recent-news li:hover .img-holder .overlay-style-one{
    opacity: 1;    
}
.single-footer-widget .recent-news li .img-holder .overlay-style-one .content a span:before{
    position: relative;
    display: inline-block;
    width: 25px;
    height: 25px;
    color: #ffffff;
    font-size: 25px;
    line-height: 25px;
    font-weight: 400;
    filter: alpha(opacity=0);
    opacity: 0;
    transform: perspective(1200px) rotateY(-90deg) scale(5);
    transition: all 0.5s ease-in-out 0.3s;
}
.single-footer-widget .recent-news li:hover .img-holder .overlay-style-one .content a span:before{
    filter: alpha(opacity=100);
    opacity: 1;
    transform: perspective(1200px) rotateY(0deg) scale(1.0);
    transition-delay: 0.1s;   
}

.single-footer-widget .recent-news li .title-holder {
    position: relative;
    display: block;
    padding-left: 20px;
    min-height: 75px;
}
.single-footer-widget .recent-news li .title-holder p{
    color: #848484;
    line-height: 16px;
    margin: 0 0 9px;
}
.single-footer-widget .recent-news li .title-holder h5{
    font-size: 16px;
    line-height: 22px;
    font-weight: 600;
}
.single-footer-widget .recent-news li .title-holder h5 a{
    color: #ffffff;
    transition: all 200ms ease;
}
.single-footer-widget .recent-news li .title-holder h5 a:hover{
    color: #1808c1;
}


.single-footer-widget .subscribe-box{
    position: relative;
    display: block;    
}
.single-footer-widget .subscribe-box .text{
    position: relative;
    display: block;
    padding-bottom: 12px;
}
.single-footer-widget .subscribe-box .text p{
    color: #848484;
    margin: 0;
}
.single-footer-widget .subscribe-box .text p span{
    color: #1808c1;
}
.single-footer-widget .subscribe-form {
    position: relative;
    display: block;
    max-width: 270px;
    width: 100%;
}
.single-footer-widget .subscribe-form input[type="email"]{
    position: relative;
    display: block;
    background: #131313;
    border: 1px solid #272727;
    color: #5c5c5c;
    font-size: 16px;
    font-weight: 400;
    width: 100%;
    height: 52px;
    margin-bottom: 0px;
    padding: 0 20px;
    transition: all 500ms ease;
}
.single-footer-widget .subscribe-form input::-webkit-input-placeholder {
    color: #5c5c5c;
}
.single-footer-widget .subscribe-form input:-moz-placeholder {
    color: #5c5c5c;
}
.single-footer-widget .subscribe-form input::-moz-placeholder {
    color: #5c5c5c;
}
.single-footer-widget .subscribe-form input:-ms-input-placeholder {
    color: #5c5c5c;
}
.single-footer-widget .subscribe-form button {
    position: relative;
    display: block;
    width: 100%;
    background: #1808c1;
    color: #131313;
    font-size: 16px;
    line-height: 52px;
    font-weight: 600;
    margin-top: 20px;
    text-transform: capitalize;
    font-family: 'Poppins', sans-serif;
    transition: all 300ms ease 100ms;
}
.single-footer-widget .subscribe-form input[type="email"]:focus {
    border: 1px solid #ffffff;
    background: #ffffff;
    color: #222222;
}
.single-footer-widget .subscribe-form input[type="email"]:focus + button, 
.single-footer-widget .subscribe-form button:hover {
    background: #0b0b0b;
    color: #fff;
}

.single-footer-widget .subscribe-box .footer-social-links{
    position: relative;
    display: block;
    padding-top: 30px;
}



/*** 
=============================================
    Footer Bottom Area Style      
=============================================
***/
.footer-bottom-area {
    position: relative;
    display: block;
    padding: 23px 0;
    background: #000000;
}
.footer-bottom-area .copyright-text p {
    color: #848484;
    font-size: 14px;
    line-height: 24px;
    font-weight: 400;
    text-transform: uppercase;
    margin: 0;
    font-family: 'Poppins', sans-serif;
}
.footer-bottom-area .copyright-text p a {
    position: relative;
    display: inline-block;
    margin-left: 5px;
    padding: 0 15px;
    background: #1808c1;
    color: #131313;
    line-height: 20px;
    font-weight: 600;
    transition: all 500ms ease;
}
.footer-bottom-area .copyright-text p a:hover{
    color: #ffffff;
    background: #131313;
}



/*** 
=============================================
    Main header Style2 style
=============================================
***/
.main-header.style2{
    position: relative;
}

.sticky-header.style2 .logo {
    position: relative;
    display: block;
    margin: 6px 0;
}
.sticky-header.style2 .logo a{
    display: inline-block;
}

.header-top-style2 {
    position: relative;
    display: block;
    padding: 11px 0;
    background: #131313;
}
.header-top-style2 .outer-box{
    position: relative;
    display: block;
}
.header-top-style2 .outer-box .top-left{
    position: relative;
    display: block;
    max-width: 400px;
    width: 100%;
    z-index: 1;
}
.header-top-style2 .outer-box .top-left:before {
    position: absolute;
    top: -12px;
    left: -2000px;
    bottom: -26px;
    right: 15px;
    content: "";
    z-index: -1;
    background: #1808c1;
    -moz-transform: skew(25deg, 0deg);
    -webkit-transform: skew(25deg, 0deg);
    -o-transform: skew(25deg, 0deg);
    -ms-transform: skew(25deg, 0deg);
    transform: skew(25deg, 0deg);
}

.header-top-style2 .outer-box .top-left p {
    position: relative;
    top: 6px;
    color: #ffffff;
    line-height: 24px;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
    margin: 1px 0;
}
.header-top-style2 .outer-box .top-left p span:before{
    position: relative;
    top: 3px;
    display: inline-block;
    padding-right: 10px;
    font-size: 20px;
}

.header-top-style2 .outer-box .top-middle{
    position: relative;
    display: block;
    padding-left: 40px;
    max-width: 400px;
    width: 100%;    
}
.header-top-style2 .outer-box .top-middle p {
    color: #ffffff;
    font-size: 16px;
    line-height: 24px;
    font-weight: 600;
    margin: 2px 0;
}
.header-top-style2 .outer-box .top-middle p b{
    color: #1808c1;
    font-weight: 600;
}
.header-top-style2 .outer-box .top-middle p span:before {
    position: relative;
    display: inline-block;
    padding-left: 10px;
    padding-right: 5px;
    color: #1808c1;
    font-size: 16px;
}
.header-top-style2 .outer-box .top-right{
    position: relative;
    display: block;
}
.header-top-style2 .outer-box .top-right a.nav-toggler {
    position: relative;
    display: block;
}
.header-top-style2 .outer-box .top-right a.nav-toggler:before {
    position: absolute;
    top: 6px;
    left: -23px;
    bottom: 4px;
    width: 1px;
    background: #2c2c2c;
    content: "";
}
.header-top-style2 .outer-box .top-right a.nav-toggler i:before {
    position: relative;
    display: inline-block;
    top: 4px;
    color: #ffffff;
    font-size: 21px;
    line-height: 21px;
}




.header-upper-style2 {
    position: relative;
    display: block;
    background: #ffffff;
    padding: 39px 0;
}
.header-upper-style2 .outer-box{
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
}
.header-upper-style2 .outer-box .header-upper-left{}
.header-upper-style2 .outer-box .header-upper-left .logo {
    position: relative;
    display: block;
}
.header-upper-style2 .outer-box .header-upper-left .logo a{
    position: relative;
    display: inline-block;
}
.header-contact-info {
    position: relative;
    display: block;
    margin-left: 220px;
}
.header-contact-info li {
    position: relative;
    display: inline-block;
    float: left;
    border-right: 1px solid #e7e7e7;
    padding-right: 30px;
    margin-right: 30px;
}
.header-contact-info li:last-child{
    margin-right: 0;
    padding-right: 0;
    border: none;
}
.header-contact-info li .single-item{
    position: relative;
    display: block;
}
.header-contact-info li .single-item .icon {
    width: 60px;
    text-align: right;
}
.header-contact-info li .single-item .icon span:before {
    position: relative;
    top: 2px;
    color: #1808c1;
    font-size: 64px;
    line-height: 52px;
    transition: all 300ms ease 100ms;
}
.header-contact-info li .single-item .icon span.icon-review:before {
    font-size: 50px;
    line-height: 52px;
}
.header-contact-info li:hover .single-item .icon span:before{
    color: #131313;    
}
.header-contact-info li .single-item .icon,
.header-contact-info li .single-item .text{
    display: table-cell;
    vertical-align: middle;
}
.header-contact-info li .single-item .text{
    padding-left: 20px;
}
.header-contact-info li .single-item .text h3{
    color: #27282c;
    font-size: 18px;
    font-weight: 600;
    text-transform: capitalize;
}
.header-contact-info li .single-item .text p{
    line-height: 18px;
    margin: 4px 0 0;
}



.header-lower {
    position: relative;
    display: block;
    background: transparent;
    margin-bottom: -30px;
}
.header-lower .outer-box{
    position: relative;
    display: block;
    z-index: 1;
}
.header-lower .outer-box:before {
    position: absolute;
    top: 0;
    left: -2000px;
    bottom: 0px;
    right: 100px;
    content: "";
    background: #ffffff;
    -webkit-box-shadow: 0px -2px 5px 1px #f8f8f8;
    box-shadow: 0px -2px 5px 1px #f8f8f8;
    z-index: -1;
}
.header-lower .outer-box .header-lawer-left {
    position: relative;
    display: block;
}
.header-lower .outer-box .header-lawer-left .nav-outer{
    position: relative;
    display: block;
}


.main-menu.style2 .navigation > li {
    margin-right:15px;
}
.main-menu.style2 .navigation > li:last-child {
    margin-right: 0px;
}
.main-menu.style2 .navigation > li > a {
    padding: 21px 0px 19px;
}
.main-menu.style2 .navigation > li > a.home{
    padding: 0;
}
.main-menu.style2 .navigation > li.dropdown > a.home{
    padding: 0;
}

.main-menu.style2 .navigation>li>a:before {
    display: none;
}
.main-menu.style2 .navigation>li>a span:before {
    display: none;
}
.main-menu.style2 .navigation>li>a i:before {
    position: relative;
    display: block;
    width: 40px;
    height: 40px;
    background: #1808c1;
    text-align: center;
    color: #ffffff;
    font-size: 20px;
    line-height: 40px;
    border-radius: 4px;
    margin: 15px 0;
}
.main-menu.style2 .navigation > li.dropdown > a{
    padding-right: 15px;
}
.main-menu.style2 .navigation > li.dropdown > a:after {
    font-family: 'icomoon';
    position: absolute;
    right: 0px;
    top: 0px;
    display: block;
    font-size: 10px;
    line-height: 70px;
    color: #131313;
    font-weight: 400;
    content: "\e933";
    z-index: 5;
}
.main-menu.style2 .navigation > li.dropdown.mega-arrow-none > a:after{
    display: none;
}
.main-menu.style2 .navigation>li:hover>a,
.main-menu.style2 .navigation>li.current>a{
    color: #1808c1;    
}


.main-menu.dropdown-menus2 .navigation>li>ul:before {
    background: #ffffff;
}
.main-menu.dropdown-menus2 .navigation>li>ul>li {
    border-bottom: non;
}
.main-menu.dropdown-menus2 .navigation>li>ul>li:last-child{
    border-bottom: none;
}
.main-menu.dropdown-menus2 .navigation>li>ul>li>a {
    color: #131313;
}
.main-menu.dropdown-menus2 .navigation>li>ul>li>a:hover {
	color: #1808c1;
  
}



.main-menu.dropdown-menus2 .navigation>li>ul>li ul {
    background: #ffffff;
    -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.dropdown-menus2 .navigation>li>ul>li ul>li {
    border-bottom: 1px solid #eeeeee;
}
.main-menu.dropdown-menus2 .navigation>li>ul>li ul>li:last-child{
    border-bottom: none;
}
.main-menu.dropdown-menus2 .navigation>li>ul>li ul>li>a {
    color: #131313;
}
.main-menu.dropdown-menus2 .navigation>li>ul>li ul>li>a:hover {
	color: #1808c1;
   
}
.main-menu.dropdown-menus2 .navigation>li>ul>li.dropdown:hover >a{
	color: #1808c1;
       
}


.main-menu.dropdown-menus2 .navigation .megamenu:before {
    background: #ffffff;
}
.main-menu.dropdown-menus2 .navigation>li> .megamenu li {
    border-bottom: 1px solid #eeeeee;
}
.main-menu.dropdown-menus2 .navigation>li> .megamenu li:last-child{
    border-bottom: none;
}
.main-menu.dropdown-menus2 .navigation>li> .megamenu li>a {
    color: #131313;
}
.main-menu.dropdown-menus2 .navigation>li> .megamenu li>a:hover {
	color: #1808c1;
    padding-left: 30px;   
}






.menu-right-content-style2 {
    position: relative;
    display: block;
    float: right;
}
.menu-right-content-style2 .outer-search-box {
    position: relative;
    display: inline-block;
    float: left;
    transition: all 500ms ease 100ms;
    padding: 15px 0;
    margin-left: 20px;
}
.menu-right-content-style2 .outer-search-box .seach-toggle {
    position: relative;
    display: block;
    color: #131313;
    font-size: 16px;
    line-height: 40px;
    cursor: pointer;
    text-align: center;
    height: 40px;
    width: 40px;
    border-radius: 3px;
    margin: 0;
    border-left: 1px solid #e7e7e7;
    transition: all 500ms ease;
}
.menu-right-content-style2 .outer-search-box .seach-toggle:hover,
.menu-right-content-style2 .outer-search-box .seach-toggle.active{
    color: #1808c1;
}
.menu-right-content-style2 .search-box {
    position: absolute;
    top: 120%;
    right: 0%;
    background: #27282c;
    opacity: 0;
    padding: 20px;
    transition: all 500ms ease 0s;
    visibility: hidden;
    z-index: 100;
    margin-left: 0;
}
.menu-right-content-style2 .search-box.now-visible {
    top: 100%;
    opacity: 1;
    visibility: visible;
    z-index: 100;
}
.menu-right-content-style2 .search-box .form-group{
    position:relative;
    padding: 0px;
    margin: 0px;
    width: 100%;
    min-width: 250px;
}
.menu-right-content-style2 .search-box .form-group input[type="search"] {
    background: #ffffff none repeat scroll 0 0;
    border: 1px solid #1f1f23;
    color: #000;
    display: block;
    font-size: 13px;
    line-height: 24px;
    position: relative;
    transition: all 500ms ease 0s;
    width: 100%;
    height: 45px;
    padding-left: 15px;
    padding-right: 50px;
}
.menu-right-content-style2 .search-box .form-group input[type="search"]:focus{
    border-color: #f5f5f5;	
}
.menu-right-content-style2 .search-box .form-group button, 
.menu-right-content-style2 .search-box .form-group input[type="submit"] {
    position: absolute;
    right: 0;
    top: 0;
    display: block;
    cursor: pointer;
    background: #1f1f23;
    color: #fff;
    font-size: 13px;
    height: 45px;
    line-height: 45px;
    width: 45px;
    transition: all 500ms ease 0s;
}
.menu-right-content-style2 .search-box .form-group button:hover,
.menu-right-content-style2 .search-box .form-group input:focus + button{
    color: #222222;
    background: #f5f5f5;
}


.header-lower .outer-box .header-lawer-right {
    position: relative;
    display: block;
    margin-right: 24px;
}
.header-lower .outer-box .header-lawer-right .social-links {
    position: relative;
    display: inline-block;
    float: left;
    margin: 22px 0 23px;
    margin-right: 55px;
}
.header-lower .outer-box .header-lawer-right .social-links .social-links-style1 li a i {
    width: 25px;
    height: 25px;
    font-size: 10px;
    line-height: 25px;
}

.header-lower .outer-box .header-lawer-right .button {
    position: relative;
    display: inline-block;
    float: right;
}
.header-lower .outer-box .header-lawer-right .button a {
    position: relative;
    display: inline-block;
    padding-left: 15px;
    padding-right: 57px;
    background: transparent;
    color: #ffffff;
    font-size: 14px;
    line-height: 70px;
    font-weight: 700;
    text-transform: uppercase;
    font-family: 'Poppins', sans-serif;
    transition: all 500ms ease;
    z-index: 1;
}
.header-lower .outer-box .header-lawer-right .button a:before{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: "";
    background: #1808c1;
    z-index: -1;
    -moz-transform: skew(-35deg, 0deg);
    -webkit-transform: skew(-35deg, 0deg);
    -o-transform: skew(-35deg, 0deg);
    -ms-transform: skew(-35deg, 0deg);
    transform: skew(-35deg, 0deg);
    transition: all 500ms ease;
}
.header-lower .outer-box .header-lawer-right .button a:hover:before{
    background: #131313;
}
.header-lower .outer-box .header-lawer-right .button a:after {
    position: absolute;
    top: 0px;
    left: -25px;
    width: 100%;
    height: 100%;
    content: "";
    background: #1808c1;
    z-index: -1;
    -moz-transform: skew(1deg, 0deg);
    -webkit-transform: skew(1deg, 0deg);
    -o-transform: skew(1deg, 0deg);
    -ms-transform: skew(1deg, 0deg);
    transform: skew(1deg, 0deg);
    transition: all 500ms ease;
}
.header-lower .outer-box .header-lawer-right .button a:hover:after{
    background: #131313;    
}
.header-lower .outer-box .header-lawer-right .button a span:before {
    position: relative;
    top: 5px;
    display: inline-block;
    padding-right: 10px;
    font-size: 23px;
}



/*** 
=============================================
    About Area Style2 style
=============================================
***/
.about-area-style2{
    position: relative;
    display: block;
    padding: 97px 0 200px;
}
.about-area-style2 .pattern-layer {
    position: absolute;
    content: '';
    right: 0px;
    bottom: 0px;
    width: 1920px;
    height: 100%;
    background-repeat: no-repeat;
    background-position: top right;
    background-size: auto;
}

.about-content-style2{
    position: relative;
    display: block;
    max-width: 870px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
}
.about-content-style2 .year-box {
    position: relative;
    display: block;
    width: 170px;
    margin: 0 auto;
    text-align: center;
    padding: 34px 0;
    z-index: 1;
}
.about-content-style2 .year-box:before {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    font-family: "Flaticon";
    content: "\f10d";
    color: #1808c1;
    font-size: 160px;
    line-height: 166px;
    z-index: -1;
}
.about-content-style2 .year-box span:before {
    color: #ffffff;
    font-size: 60px;
    line-height: 70px;
}
.about-content-style2 .year-box p {
    color: #ffffff;
    font-weight: 700;
    text-transform: uppercase;
    margin: 2px 0 0;
}

.about-content-style2 .inner-content{
    position: relative;
    display: block;
    padding-top: 28px;
}
.about-content-style2 .inner-content h2{
    color: #131313;
    font-size: 30px;
    line-height: 42px;
    font-weight: 400;
    font-family: 'Lobster Two', cursive;
    margin: 0 0 20px;
}
.about-content-style2 .inner-content .title{
    position: relative;
    display: block;
    color: #131313;
    font-size: 30px;
    line-height: 44px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
}
.about-content-style2 .inner-content p {
    font-size: 18px;
    margin: 23px 0 33px;
}
.about-content-style2 .inner-content .border-box{
    position: relative;
    display: block;
    width: 230px;
    height: 13px;
    background: transparent;
    margin: 0 auto;
    z-index: 1;
}
.about-content-style2 .inner-content .border-box:before {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    height: 1px;
    background: #1808c1;
    content: "";
    margin: 6px 0;
    z-index: -1;
}
.about-content-style2 .inner-content .border-box:after {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAwAAAANCAYAAACdKY9CAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAA3hpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNS1jMDE0IDc5LjE1MTQ4MSwgMjAxMy8wMy8xMy0xMjowOToxNSAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0UmVmPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VSZWYjIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtcE1NOk9yaWdpbmFsRG9jdW1lbnRJRD0ieG1wLmRpZDo4ODViNTBiNC0yZjQ0LTYwNDEtODIwYi00ZDE4ZDlkMzhlYmYiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6MDY2MkIxNzQ3NEVEMTFFOUEwMTlBMUQyNjEwRDU2QkEiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6MDY2MkIxNzM3NEVEMTFFOUEwMTlBMUQyNjEwRDU2QkEiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIDIwMTQgKE1hY2ludG9zaCkiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDo1ODNhZmM3Yi0zNWM3LTQ4MWYtYmExNi1kMjFlNzViNjRhNjQiIHN0UmVmOmRvY3VtZW50SUQ9InhtcC5kaWQ6ODg1YjUwYjQtMmY0NC02MDQxLTgyMGItNGQxOGQ5ZDM4ZWJmIi8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+igpZAAAAAN5JREFUeNp8UtENgjAULI0LsILRCXAE+dJfOwKMYEegI+AI8OsfjgATmLCCI+C9eG2aBmxyec3r9b3rvWbj5VAopQZgKp7vUq2s6XpsESrAaJAmbCxwxsF9hXwj2YLbZ8uypFVOLCK5HGEEZt9d+0pI1MIB2qhBx2h8YpcoEGkDu80iU8go9vGEICnSLO9oACH17ByWTh8JgiNZ9D/Sc71hoaKk5u8FkCs65basjm3d08IwwMjqErlX2qGjdrNmNWfyu8BK8kXq2MJoBrmfSYa/VHFYDmS78Ze81e4rwADEXWEo89/lsQAAAABJRU5ErkJggg==);
    background-repeat: no-repeat;
    background-position: center;
    background-color: #fff;
    content: "";
    text-align: center;
    width: 30px;
    margin: 0 auto;
    z-index: -1;
}
.about-content-style2 .inner-content .authorised-person {
    position: relative;
    display: block;
    padding-top: 25px;
    padding-bottom: 0px;
}
.about-content-style2 .inner-content .authorised-person h3{
    margin: 0 0 2px;
}
.about-content-style2 .inner-content .authorised-person span{
    color: #1808c1;
    font-weight: 700;
}

.about-content-style2 .inner-content .button{
    position: relative;
    display: block;
    padding-top: 42px;
}
.about-content-style2 .inner-content .button a{
    position: relative;
    display: inline-block;
    padding: 0 70px;
    background: transparent;
    color: #ffffff;
    font-size: 14px;
    line-height: 60px;
    font-weight: 700;
    text-transform: uppercase;
    font-family: 'Poppins', sans-serif;
    margin: 0 4px;
    z-index: 1;
    transition: all 300ms ease;
}
.about-content-style2 .inner-content .button a:before{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: "";
    z-index: -1;
    background: #1808c1;
    -moz-transform: skew(-30deg, 0deg);
    -webkit-transform: skew(-30deg, 0deg);
    -o-transform: skew(-30deg, 0deg);
    -ms-transform: skew(-30deg, 0deg);
    transform: skew(-30deg, 0deg);
    transition: all 300ms ease;
}
.about-content-style2 .inner-content .button a:hover:before{
    background: #131313;    
}


.about-content-style2 .inner-content .button a.left {
    padding-left: 53px;
    padding-right: 87px;
}
.about-content-style2 .inner-content .button a.left:after {
    position: absolute;
    top: 0px;
    left: -17px;
    width: 40px;
    height: 100%;
    content: "";
    z-index: -1;
    background: #1808c1;
    transition: all 300ms ease;
}
.about-content-style2 .inner-content .button a.left:hover:after{
    background: #131313;       
}
.about-content-style2 .inner-content .button a.right {
    padding-right: 53px;
    padding-left: 87px;
}
.about-content-style2 .inner-content .button a.right:after {
    position: absolute;
    top: 0px;
    right: -17px;
    width: 40px;
    height: 100%;
    content: "";
    z-index: -1;
    background: #1808c1;
    transition: all 300ms ease;
}
.about-content-style2 .inner-content .button a.right:hover:after{
    background: #131313;       
}



/*** 
=============================================
    Choose Area style
=============================================
***/
.choose-area {
    position: relative;
    display: block;
    background-attachment: fixed;
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    padding: 100px 0 70px;
    z-index: 1;
}
.choose-area::before {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgba(18, 18, 18, 0.90) none repeat scroll 0 0;
    content: "";
    z-index: -1;
} 

.choose-image-box {
    position: absolute;
    top: -100px;
    max-width: 550px;
    width: 100%;
    height: auto;
    z-index: 1;
}
.choose-image-box:before {
    position: absolute;
    left: 50px;
    bottom: -23px;
    right: -25px;
    height: 11px;
    background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAfMAAAALCAYAAABruWSLAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAA3hpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNS1jMDE0IDc5LjE1MTQ4MSwgMjAxMy8wMy8xMy0xMjowOToxNSAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0UmVmPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VSZWYjIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtcE1NOk9yaWdpbmFsRG9jdW1lbnRJRD0ieG1wLmRpZDo4ODViNTBiNC0yZjQ0LTYwNDEtODIwYi00ZDE4ZDlkMzhlYmYiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6NjMzQzFCMUY3NTNCMTFFOThDQzZFNkE0NkI1NzRBMEMiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6NjMzQzFCMUU3NTNCMTFFOThDQzZFNkE0NkI1NzRBMEMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIDIwMTQgKE1hY2ludG9zaCkiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDo1ODNhZmM3Yi0zNWM3LTQ4MWYtYmExNi1kMjFlNzViNjRhNjQiIHN0UmVmOmRvY3VtZW50SUQ9InhtcC5kaWQ6ODg1YjUwYjQtMmY0NC02MDQxLTgyMGItNGQxOGQ5ZDM4ZWJmIi8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+o3VquwAAAcFJREFUeNrsnIFtwjAQRRPEAukIrEDlCbJCGIEVwghhlWSFjtCukBGaFWpLRliWoySOytXue9KJgjgIj3+KixGlUqrwaHRNuj6KbVS6al1fusYX9p50ne3xTht7a/vcQ7GdWE9SjqU8STiW8pRaFplZZpYsZpLFQ0BKr6uLDIDpvb6492p764jezvZWEeGJ9STlWMKTlGMpT6llkZllZsliJlk8FAAAAJA0nMwBAAAS51g8P/f3aZy/5/Yi3PucnEv39rm9iNjex/7IUm9oH+OxP+LjPt7cPsYeTxKOpTxJOZbwlGIWmVlmlixmmMVSKfU5c4Aud123gJTvFQuGS0DMnl7zAvoVvW+BN9LsM7QLfUboe+D2WE97elP0JOFYylNqWWRmmdkcZpYsBnrNydw/6/f2gO4RK6vOyhsiVlZre/2VVWPr5h3jmpVVa69fIlZWWzxJOJbyJOVYwlOKWWRmmVmymGEWj94TVwsvxmcIyB1/uXfy7nPe0Dt6stqFwBReMGI9STiW8iTlWMJTillkZplZsphhFvkCHAAAQOJwMgcAAEicMvALcObf+Cny8f5TL55wjCc80YunP+HpR4ABAODW7z1d3/IHAAAAAElFTkSuQmCC);
    z-index: -1;
    content: "";
    background-size: auto;
}
.choose-image-box:after {
    position: absolute;
    top: 150px;
    right: -24px;
    bottom: 0;
    width: 10px;
    background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAoAAAH5CAYAAAC4Q6++AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAA3hpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNS1jMDE0IDc5LjE1MTQ4MSwgMjAxMy8wMy8xMy0xMjowOToxNSAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0UmVmPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VSZWYjIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtcE1NOk9yaWdpbmFsRG9jdW1lbnRJRD0ieG1wLmRpZDo4ODViNTBiNC0yZjQ0LTYwNDEtODIwYi00ZDE4ZDlkMzhlYmYiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6NzY3MDBBOTE3NTNCMTFFOTk2MkZDNzRDRTAwNEM1NTUiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6NzY3MDBBOTA3NTNCMTFFOTk2MkZDNzRDRTAwNEM1NTUiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIDIwMTQgKE1hY2ludG9zaCkiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDo1ODNhZmM3Yi0zNWM3LTQ4MWYtYmExNi1kMjFlNzViNjRhNjQiIHN0UmVmOmRvY3VtZW50SUQ9InhtcC5kaWQ6ODg1YjUwYjQtMmY0NC02MDQxLTgyMGItNGQxOGQ5ZDM4ZWJmIi8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+bf7nswAAAOZJREFUeNrs04EJwjAUQMEoLqCrVDKBK3QXR7Cr6ApdobN0BRNIIATBgogIF/gI+kga7O1ijKFbY5o1zdx+eeiiY5p7miXNuf1hHzauzWE++lKOfPWsdS05vKUZumgoz1rXlMNrt2O9zNTvOHe3ruvx/Vu3K/8jp/L5dsf1o6OF/xSOhUfAFVchhRRSKMQVVxQopJBCIa644kohhRQKKaSQQlxxxVVIIYUUCnHFVUghhRQKccXVG04hhRQKccUVVwoppFBIIYUUCnHFVUghhRQKccXVG04hhRQKccUVVwop/KnCpwADAA4KPwVF+ClBAAAAAElFTkSuQmCC);
    z-index: -1;
    content: "";
    background-size: auto;
}

.choose-content{
    position: relative;
    display: block;
}
.choose-content .inner-content{}
.single-choose-box {
    position: relative;
    display: block;
    padding-left: 140px;
    background: #181715;
    border: 1px solid #212020;
    border-radius: 5px;
    z-index: 5;
    padding-top: 43px;
    padding-bottom: 41px;
    margin-bottom: 30px;
}
.single-choose-box.left {
    margin-top: 480px;
}
.single-choose-box .icon {
    position: absolute;
    top: 0;
    left: 0;
    width: 140px;
    height: 100%;
    text-align: center;
    display: block;
    padding: 40px 0;
}
.single-choose-box .icon .count{
    position: relative;
    display: block;
    color: #1808c1;
    font-size: 20px;
    line-height: 28px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    margin: 0 0 44px;
    transform-style: preserve-3d;
    transform: perspective(1200px) rotateX(0deg) translateZ(0px);
    opacity: 1;
    transition: all 300ms ease 200ms;
}
.single-choose-box:hover .icon .count{
    transform-style: preserve-3d;
    transform: perspective(1200px) rotateX(90deg) translateZ(-45px);
    opacity: 0;
    transition: all 700ms ease 200ms;    
}



.single-choose-box .icon span:before{
    position: relative;
    display: inline-block;
    color: #404040;
    font-size: 70px;
    line-height: 70px;
    transform-style: preserve-3d;
    transform: perspective(1200px) rotateX(0deg) translateZ(0px);
    opacity: 1;
    transition: all 300ms ease 200ms;
}
.single-choose-box:hover .icon span:before{
    color: #1808c1;
    transform-style: preserve-3d;
    transform: perspective(1200px) rotateX(0deg) translateY(-64px);
    opacity: 1;
    transition: all 700ms ease 200ms;    
}

.single-choose-box .text{
    position: relative;
    display: block;
}
.single-choose-box .text h3{
    color: #ffffff;
    margin: 0 0 17px;
}
.single-choose-box .text p{
    color: #cdcdcd;
    font-size: 15px;
    margin: 0 0 25px;
}
.single-choose-box .text a{
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    font-family: 'Poppins', sans-serif;
}
.single-choose-box .overlay-count{
    position: absolute;
    right: 36px;
    bottom: 31px;
    color: #252525;
    font-size: 48px;
    line-height: 48px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    transform-style: preserve-3d;
    transform: perspective(1200px) rotateY(90deg) scale(0);
    opacity: 0;
    transition: all 300ms ease 200ms;
}
.single-choose-box:hover .overlay-count{
    transform-style: preserve-3d;
    transform: perspective(1200px) rotateY(0deg) scale(1.0);
    opacity: 1;
    transition: all 700ms ease 500ms;    
}



/*** 
=============================================
    Services Style2 Area Style      
=============================================
***/
.services-style2-area {
    position: relative;
    display: block;
    background: #f5f5f5;
    padding: 100px 0 50px;
}
.single-service-style2 {
    position: relative;
    display: block;
    margin-bottom: 42px;
}
.single-service-style2 .img-holder{
    position: relative;
    display: block;
    z-index: 1;
}
.single-service-style2 .img-holder .inner{
    position: relative;
    display: block;
    overflow: hidden; 
    z-index: 1;
}
.single-service-style2 .img-holder img {
    width: 100%;
    transform: scale(1.01);
    transition: all 700ms ease;
}
.single-service-style2:hover .img-holder img {
    transform: scale(1.2);    
}
.single-service-style2:hover .overlay-style-two{
	opacity: 1;
}
.single-service-style2:hover .img-holder .overlay-style-two:before{
	opacity: 1;
    transform: perspective(400px) rotateX(0deg);
    transition: all 700ms ease 100ms;	
}
.single-service-style2:hover .img-holder .overlay-style-two:after{
	opacity: 1;
    transform: perspective(400px) rotateX(0deg);
    transition: all 700ms ease 300ms;	
}

.single-service-style2 .text-holder{
    position: relative;
    display: block;
    padding-top: 20px;
}
.single-service-style2 .text-holder .top{
    position: relative;
    display: block;
    overflow: hidden;
    min-height: 60px;
 
}
.single-service-style2 .text-holder .top .icon-holder{
    position: absolute;
    top: 0;
    left: 0;
    width: 60px;
    height: 60px;
}
.single-service-style2 .text-holder .top .icon-holder .arrow{
    position: absolute;
    left: 0;
    bottom: 23px;
    width: 16px;
    height: 16px;
    background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAA3hpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNS1jMDE0IDc5LjE1MTQ4MSwgMjAxMy8wMy8xMy0xMjowOToxNSAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0UmVmPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VSZWYjIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtcE1NOk9yaWdpbmFsRG9jdW1lbnRJRD0ieG1wLmRpZDo4ODViNTBiNC0yZjQ0LTYwNDEtODIwYi00ZDE4ZDlkMzhlYmYiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6MEMwNkExQkM3NUFCMTFFOUExM0FEMzNENTU5M0MwOTIiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6MEMwNkExQkI3NUFCMTFFOUExM0FEMzNENTU5M0MwOTIiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIDIwMTQgKE1hY2ludG9zaCkiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDowNmEyY2ExNC01NTQ5LWQ1NDMtYTI2OS00NGMzNmJmNDdkZTkiIHN0UmVmOmRvY3VtZW50SUQ9InhtcC5kaWQ6ODg1YjUwYjQtMmY0NC02MDQxLTgyMGItNGQxOGQ5ZDM4ZWJmIi8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+r/1MzwAAAJxJREFUeNqkky0Og2AQROejDQKDwlXWovE9ABfgBNyAG5DqeiwOQwJH+nRP0M4mc4Jhkpd1L5v9STnnH4CJvGGkUJ3JeEWQyIcMriByIwvpXUGkJCt5uYJIRTbSuYJITXbSuoJIQw7ydAWRBzlVLQHUwaGOLAE0i12zsQTQVjZtyRJA97HqXiwBdKmLLtcSQD8Tv5Pu8BPf+/0LMADSCRNEH4D9kQAAAABJRU5ErkJggg==);
    z-index: 1;
}
.single-service-style2 .text-holder .top .icon-holder .overlay-icon{
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 0px;
    height: 60px; 
    background: #1808c1;
    text-align: center;
    opacity: 0;
    border-radius: 4px;
    z-index: 3;
    transition: all 300ms ease 100ms;
}
.single-service-style2:hover .text-holder .top .icon-holder .overlay-icon{
    width: 60px;
    opacity: 1;
}
.single-service-style2 .text-holder .top .icon-holder .overlay-icon span:before{
    color: #ffffff;
    font-size: 35px;
    line-height: 60px;
}

.single-service-style2 .text-holder .top .title-holder{
    position: relative;
    display: block;
}
.single-service-style2 .text-holder .top .title-holder h3 {
    margin: 16px 0;
   
    transition: all 300ms ease 100ms;
}
.single-service-style2:hover .text-holder .top .title-holder h3{
   
}
.single-service-style2 .text-holder .top .title-holder h3 a{
    position: relative;
    display: inline-block;
    color: #131313;
    transition: all 700ms ease 400ms;
}
.single-service-style2:hover .text-holder .top .title-holder h3 a{
    color: #1808c1;    
}
.single-service-style2 .text-holder .top .title-holder h3 a:before{
    position: absolute;
    left: 0;
    bottom: -16px;
    width: 0%;
    height: 3px;
    background: #1808c1;
    content: "";
    transition: all 300ms ease 100ms;
}
.single-service-style2:hover .text-holder .top .title-holder h3 a:before{
    width: 100%; 
    transition: all 700ms ease 100ms;
}

.single-service-style2 .text-holder .text{
    position: relative;
    display: block;
    transform-style: preserve-3d;
    transform: perspective(1200px) rotateX(0deg) translateY(1px);
    transition: all 300ms ease 100ms;
}
.single-service-style2:hover .text-holder .text{
    transform-style: preserve-3d;
    transform: perspective(1200px) rotateX(0deg) translateY(24px);
    transition: all 300ms ease 200ms;
}
.single-service-style2 .text-holder .text p{
    margin: 0;
}
.single-service-style2 .text-holder .read-more-button{
    position: relative;
    display: block;
    padding-top: 26px;
    transform-style: preserve-3d;
    transform: perspective(1200px) rotateX(0deg) translateY(0px);
    transition: all 300ms ease 100ms;
}
.single-service-style2:hover .text-holder .read-more-button{
    transform-style: preserve-3d;
    transform: perspective(1200px) rotateX(0deg) translateY(23px);
    transition: all 300ms ease 200ms;    
}
.single-service-style2 .text-holder .read-more-button a{
    position: relative;
    display: inline-block;
    padding-left: 40px;
    color: #131313;
    font-size: 14px;
    line-height: 18px;
    font-weight: 700;
    text-transform: uppercase;
    font-family: 'Poppins', sans-serif;
    transition: all 300ms ease 500ms;
}
.single-service-style2:hover .text-holder .read-more-button a{
    color: #1808c1;
    padding-left: 0;
    transition: all 300ms ease 500ms;       
}
.single-service-style2 .text-holder .read-more-button a:before {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 1px;
    background: #1808c1;
    content: "";
    margin: 9px 0;
    transition: all 300ms ease 500ms;
}
.single-service-style2:hover .text-holder .read-more-button a:before {
    width: 0px;
    transition: all 300ms ease 500ms;  
}




/*** 
=============================================
    Fact Counter Area Style2 style
=============================================
***/
.fact-counter-area-style2 {
    position: relative;
    display: block;
    background-attachment: fixed;
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    padding: 100px 0 285px;
}
.single-fact-counter.style2 {
    padding: 40px 20px 32px;
    overflow: hidden;
    z-index: 1;
}
.single-fact-counter.style2:before{
    position: absolute;
    top: 0;
    left: 0;
    background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAA3hpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNS1jMDE0IDc5LjE1MTQ4MSwgMjAxMy8wMy8xMy0xMjowOToxNSAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0UmVmPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VSZWYjIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtcE1NOk9yaWdpbmFsRG9jdW1lbnRJRD0ieG1wLmRpZDo4ODViNTBiNC0yZjQ0LTYwNDEtODIwYi00ZDE4ZDlkMzhlYmYiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6MTYzMjU5Qjk3OTkzMTFFOThGNkY5M0QwRkUyODhGNUIiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6MTYzMjU5Qjg3OTkzMTFFOThGNkY5M0QwRkUyODhGNUIiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIDIwMTQgKE1hY2ludG9zaCkiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDo1ODNhZmM3Yi0zNWM3LTQ4MWYtYmExNi1kMjFlNzViNjRhNjQiIHN0UmVmOmRvY3VtZW50SUQ9InhtcC5kaWQ6ODg1YjUwYjQtMmY0NC02MDQxLTgyMGItNGQxOGQ5ZDM4ZWJmIi8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+fMPqFQAAAFxJREFUeNrs0kENwCAURMEPqZQ6QAZ2kVEHiKF3JGzm3fY4ybZvvqcC6hVSDOS5dkuB1FjbtUBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEAS+gUYAFHyBGXoe5OIAAAAAElFTkSuQmCC);
    content: "";
    background-repeat: no-repeat;
    background-position: left top;
    background-size: auto;
    width: 100%;
    height: 100%;
    z-index: -1;
    transform: scale(1.5);
    transition: all 700ms ease 300ms;
}
.single-fact-counter.style2:hover:before{
    transform: scale(1.0);
    transition: all 300ms ease 100ms;
}
.single-fact-counter.style2:after{
    position: absolute;
    bottom: 0;
    right: 0;
    background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAA3hpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNS1jMDE0IDc5LjE1MTQ4MSwgMjAxMy8wMy8xMy0xMjowOToxNSAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0UmVmPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VSZWYjIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtcE1NOk9yaWdpbmFsRG9jdW1lbnRJRD0ieG1wLmRpZDo4ODViNTBiNC0yZjQ0LTYwNDEtODIwYi00ZDE4ZDlkMzhlYmYiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6OUE2OEIyMjE3OTkzMTFFOUFFODg4MUJEOTM5ODM3NzIiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6OUE2OEIyMjA3OTkzMTFFOUFFODg4MUJEOTM5ODM3NzIiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIDIwMTQgKE1hY2ludG9zaCkiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDo1ODNhZmM3Yi0zNWM3LTQ4MWYtYmExNi1kMjFlNzViNjRhNjQiIHN0UmVmOmRvY3VtZW50SUQ9InhtcC5kaWQ6ODg1YjUwYjQtMmY0NC02MDQxLTgyMGItNGQxOGQ5ZDM4ZWJmIi8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+trcSYQAAAGNJREFUeNrs2sEJwDAIQFFTskq36eqdyRIooQN4sbx/8eoDj47MjI7d17nGXv6InwQCAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgJS1Xy/bPpD4vMq5LRA6noEGACmvgffp59s5gAAAABJRU5ErkJggg==);
    content: "";
    background-repeat: no-repeat;
    background-position: right bottom;
    background-size: auto;
    width: 100%;
    height: 100%;
    z-index: -1;
    transform: scale(1.5);
    transition: all 700ms ease 300ms;
}
.single-fact-counter.style2:hover:after{
    transform: scale(1.0);
    transition: all 300ms ease 100ms;    
}

.single-fact-counter.style2 .count-box h1 {
    color: #ffffff;
    font-size: 60px;
    line-height: 46px;
    font-weight: 700;
}
.single-fact-counter.style2 .count-box h1 span.add {
    padding: 0 30px;
}
.single-fact-counter.style2 .count-box h1 span.add:before {
    top: 10px;
    right: 0;
    font-size: 25px;
    line-height: 25px;
}
.single-fact-counter.style2 .border-box {
    width: 90px;
    height: 5px;
}
.single-fact-counter.style2 .border-box span{
    position: relative;
    display: block;
    width: 70px;
    height: 5px;
    background: #1808c1;
    margin: 0 auto;
}
.single-fact-counter.style2 .border-box:before{
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 5px;
    background: #1808c1;
    content: "";
}
.single-fact-counter.style2 .border-box:after{
    position: absolute;
    top: 0;
    right: 0;
    width: 5px;
    height: 5px;
    background: #1808c1;
    content: "";
}
.single-fact-counter.style2 .title {
    padding-top: 24px;
    padding-bottom: 12px;
}
.single-fact-counter.style2 .title h3 {
    color: #ffffff;
    font-size: 20px;
}

.single-fact-counter.style2 .text{
    position: relative;
    display: block;
}
.single-fact-counter.style2 .text p{
    color: #cdcdcd;
    margin: 0;
}



/*** 
=============================================
    Latest Project Style2 Area style
=============================================
***/
.latest-project-style2-area {
    position: relative;
    display: block;
    padding: 0px 0 0px;
    margin-top: -185px;
}
.single-project-style2{
    position: relative;
    display: block;
    z-index: 6;
}
.single-project-style2 .img-holder{
    position: relative;
    display: block;
}
.single-project-style2 .img-holder .inner{
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 7px;
    z-index: 5;    
}
.single-project-style2 .img-holder img{
    width: 100%;
    transform: scale(1.01);
    transition: all 700ms ease;
}
.single-project-style2:hover .img-holder img {
    transform:scale(1.2) rotate(2deg);	
}

.single-project-style2 .overlay-content{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: "";
    background: rgba(18, 18, 18, 0.90);
    transform: scaleX(0);
    border-radius: 7px;
    z-index: 6;
    transition: all 700ms ease 100ms;
}
.single-project-style2:hover .overlay-content{
    transform: scaleY(1);
}
.single-project-style2 .overlay-content .inner-content{
    display: table;
    width: 100%;
    height: 100%;
}

.single-project-style2 .overlay-content .inner-content .links-box {
    display: table-cell;
    vertical-align: middle;
    text-align: center;
    opacity: 0;
    transform-style: preserve-3d;
    transform: perspective(1200px) rotateX(-90deg) translateZ(-45px);
    transition: all 300ms ease 100ms;
}
.single-project-style2:hover .overlay-content .inner-content .links-box{
    opacity: 1;
    transform: translate3d(0px, 0px, 0px); 
    transition: all 700ms ease 500ms;
}
.single-project-style2 .overlay-content .inner-content .links-box ul{
    position: relative;
    display: block;
}
.single-project-style2 .overlay-content .inner-content .links-box ul li{
    position: relative;
    display: inline-block;
    margin: 0 4px;
}
.single-project-style2 .overlay-content .inner-content .links-box ul li a span:before{
    position: relative;
    display: block;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid #ffffff;
    color: #ffffff;
    font-size: 17px;
    line-height: 56px;
    text-align: center;
    transition: all 300ms ease 100ms;
}
.single-project-style2 .overlay-content .inner-content .links-box ul li a:hover span:before{
    border-color: #1808c1;
    background: #1808c1;
}

.single-project-style2 .img-holder .title-box {
    position: absolute;
    left: 20px;
    bottom: -20px;
    right: 20px;
    text-align: center;
    display: block;
    padding: 26px 0 26px;
    background: #1808c1;
    border-radius: 5px;
    transform-style: preserve-3d;
    transform: perspective(1200px) rotateX(90deg) translateZ(0px);
    opacity: 0;
    transition: all 300ms ease 200ms;
    z-index: 7;
}
.single-project-style2:hover .img-holder .title-box{
    transform: translate3d(0px, 0px, 0px); 
    opacity: 1;
    transition: all 700ms ease 800ms;    
}
.single-project-style2 .img-holder .title-box h3{
    
}
.single-project-style2 .img-holder .title-box h3 a{
    color: #ffffff;
    transition: all 300ms ease 100ms;
}
.single-project-style2 .img-holder .title-box h3 a:hover{
    color: #131313;
}


.project-carousel.owl-carousel .owl-stage-outer {
    position: relative;
    overflow: hidden;
    padding-bottom: 20px;
}
.project-carousel.owl-theme .owl-nav .owl-prev {
    position: absolute;
    left: -30px;
    top: 155px;
    margin: 0;
    background: #ffffff;
    z-index: 10;
}
.project-carousel.owl-theme .owl-nav .owl-prev:hover{
    border-color: #1808c1;
    background: #1808c1;
}
.project-carousel.owl-theme .owl-nav .owl-next {
    position: absolute;
    right: -30px;
    top: 155px;
    margin: 0;
    background: #ffffff;
    z-index: 10;
}
.project-carousel.owl-theme .owl-nav .owl-next:hover{
    border-color: #1808c1;
    background: #1808c1;    
}

.project-carousel .owl-dots {
    position: relative;
    display: block !important;
    margin-top: 40px !important;
    line-height: 14px;
}
.project-carousel .owl-dots .owl-dot{
    position: relative;
	display: inline-block;
	width: 14px;
	height: 14px;
    background: #ffffff;
    border: 2px solid #d9d9d9;
	margin: 0px 5px;
	padding: 0px;
	border-radius: 50%;
	transition: all 500ms ease;
}
.project-carousel .owl-dots .owl-dot span{
	display:none;	
}
.project-carousel .owl-dots .owl-dot.active{
    border: 2px solid #1808c1;
}



/*** 
=============================================
    Working Process Area Style2 style
=============================================
***/
.working-process-area-style2{
    position: relative;
    display: block;
    padding: 98px 0 92px;
}

.single-working-process-style2 {
    position: relative;
    display: inline-block;
    padding: 0 20px;
    float: left;
    max-width: 390px;
    width: 100%;
}
.single-working-process-style2.top:before {
    position: absolute;
    top: 20px;
    left: 100%;
    margin-top: 0;
    width: 140px;
    height: 110px;
    margin-left: -80px;
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAIwAAABuCAYAAAD1TPu3AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAA3FpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNS1jMDE0IDc5LjE1MTQ4MSwgMjAxMy8wMy8xMy0xMjowOToxNSAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0UmVmPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VSZWYjIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtcE1NOk9yaWdpbmFsRG9jdW1lbnRJRD0ieG1wLmRpZDo4ODViNTBiNC0yZjQ0LTYwNDEtODIwYi00ZDE4ZDlkMzhlYmYiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6QTkwQzVEQUU3OUYxMTFFOUE0RTZFRDQ2MjMwRURCQkUiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6QTkwQzVEQUQ3OUYxMTFFOUE0RTZFRDQ2MjMwRURCQkUiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIChXaW5kb3dzKSI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOmU4ZTAwNTg4LTA5NmYtNDU0NS1hMjRmLTBkMzYzMzMyMDVkNyIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDo4ODViNTBiNC0yZjQ0LTYwNDEtODIwYi00ZDE4ZDlkMzhlYmYiLz4gPC9yZGY6RGVzY3JpcHRpb24+IDwvcmRmOlJERj4gPC94OnhtcG1ldGE+IDw/eHBhY2tldCBlbmQ9InIiPz6uEF9JAAAL/ElEQVR42uydD2wT1x3Hfec4xBgMLQljsBQ1BDslcfgTAmGQUJMuIoiWojZZNko3wbr+YQKKULdVK+oYmzZKKxEaqVKW0VZKJ0LXhQpBxspIQ6AJpYRgo9SXkA2akJR0hIhksR3s2+9ROzoOJ/5zd/bd+feTnu69l3dn597Hv9/39+58pjQaDa0JwaqqqnQrVqzYSFFU+sjISF1mZmYDf0xxcTG1f//+12mafpG0vV7vLpPJ9I7/74cPH54wf/78HXCMfJZlP+/s7PzT6tWr/6eJnrFiHaijo4PVyNjS09MlOS5FgNmzZ492/fr1eXfu3PkaJrQj0MD29vaPYKLX+U+8x+MpM5vNH3LHtLW1lel0umpun9PpXJqVlfUFqTMMUwEwPT86eyxbO3fu3Kf4r3XhwoXUSZMmvQBVvcvlet9isVyUIzxyhkYqYOjz58/PKisrs02YMKHBYDB8CZO6jz8IxszkwHIXNJj4l3zAjRatVmvh75uQkLBw9MVo+sl7aKWoNbt27dL59r9rjY2NU41G42cw9ldQtun1+jM2m22BRB8WivvaEUwKRYomjoyGyXkFtmYOCC9funTJzB0EnsdNNrx9B/gHg3GneV0jg4ODpzkehe+9enbv3n2HO4HTpk17DLbf5YxJApg38l+LeEWA+yUo70HZQtoiwIPgBAMGSvJ9nTRt5Lbz8vK+AT2ym8gSX1cvhJrXfW59tMybN68OoNlM9AmURrfbvX7x4sUOTngi2obxwwLh5qf8Y8Dr9AR4n338jtLS0r3wPg9AeQZKObTfFtHrIDhjAQMTexC2Hk7f57W1tRf4A0G8/h68RQZol8euXr1qBl3RGuiAGRkZ74IuyYOyEgA6zoUB9rkMJ/SRW7dupZaXlz8USDjv3LnzLEDzZ07XuRs3brwTAOof89rPShCuIgZHrcDcFb2XL19eCWKViM9rvb29lQUFBQOxfmMtLS0Pg/6ZWllZ2QpweQMIznOwyeF0dcJEzeWHLfA8rwFMT8AHo31oaOjVBQsWXImmSI6VMJY0S1Ii6QD5ctA2R6D6AJRB8HwlkLWd4I4BbfNrgGUPF6rm5ubMDRs2uKOZXcUCGsmyJKW6RghnZ2AiHhoeHs7p6upK5cPiy8JW8rrSICymifAhi1ttk6DkN+9b9BtzjQbCkB2g+QGn63ZfX18XfxxZUATtNbenp+ffRUVFQ2FAw4YLjtwX/FTrYUKx7u7u3wI0f/OJ+usQtn5SWFg4yB1js9myFy5cyOj1+ta0tLRrDodjjZTiWOneRtXAWK3W25CtlYKAngyTRMLWEf6YpKSkvbD5nq85VavVHoxgTScicNQGDBuDIomVlJS4xpxpiprB60qGLHFSNPSNEqGhxwEkFhZ1mLxe7wc83fOJwGUFVUNDxxgQoTAJtm3btr0B2uZnAM4hKH+EjOtp/hiicyBFr25vb/87aJzVYocoJekaQSuaMvxfRDdyMXTGjBnkcsY0P7gul6sQ0vpPpVi3ESuLwnWY8D2QKJaSkpLPgeUumDqd7mmpPpRy9zRqzpJEAcftdncGOM41KT2gnKFRdVotBjjkgilom19C1eUXxZ2dnRVSSwC5QiNIw4QTb2V2AsJ+L/X19cbJkycbc3Jy7lsprqurm5iWlrYJqg86nc6a7OzsL8XSNpFqGikvPlJSCS+Boo2SIzh827p1Kw2F3KaxzNcFzDhXZWVlNccSGkmBUdL1DYlAiviY5PZRvV7/BbcPQli1yWQK9f4cSaCRCpgEpV0M479fkQBiI4XG4/HcDtA9HCasbKgflFjPl+JFLzmB/iJiWh6ykRuywKNwRfB/ISS9pdYMioQjVaZGIp3YkI9ht9vzdDrdrP7+/k/JPdACwRUcoiQLSWrNpbknVAA8IYcqELlNY/3N4XBYKYoqhepXvb29FUGuVVEaGV+qiYd1GI3AkCVoHQdgKdRqtf+gafrnUH43c+bMUwcOHAj2QQ0KaaxCU1wAI5LeiQgan2fh3l8z32q1LlLQ0kP8AiOC14nE29y87yAsG0oWJcsV4bgFJtL1jXC9zc2bN9+EzSV/GzKqSovFYhNTdEcTmrgHRmpvQzKm48eP57pcrvzh4eFFJpPpBSkytWhBo9q0OsraQNBkHT16VF9RUeEEsFix0m3JLg0gMKKBEzY01dXVibm5uQcheyqBZr/H49nCf4RKpNDgDVTy1zdhayGA5UWApcyXRSVD+v2Xc+fOTZfKkyEw8oQmnPEZvLZhypQpFqGeTEo9g8BII4pDGgvp9XFe1yBkVaE8bYsSaQxqGJlpm6DjGIZ5jqwCQ9UJmdRvRL65nEVgVAiNAIs6NBiSpNc2Ul5IjHpoQmBkCo3dbl/S3t5+Al7jEoStl+UCDQIjQ2hOnTo1OSkp6ShFUYXQzASNs8/hcJTJARoEJrpZVEjQpKSkZGru/fIcuepdHEOthMDE0NsEHTMwMECePMp/QroY2QmFwKgQmuXLl5PLBM9AldzqyYJ91NnZ+WaMMzJMq2WQdo87hnznqaioaMLatWvD+RaCpKk2AhNbYKTyCpJBgyFJIUKYa01NTckkk4pFaEJg5JN2BzVy8zjDMB8kJyf3pqam9pHnEEdbAGNIkk+ICjqBDodjo1arfZfbNzw8vNhisbREKzShh5GPBZ04iqLm8PsSExMzohmaEBgFhSaXy/Wx5t4fEhkeGhpqFOi5KARGudCM+3cIPRc8Hs9TLMvWQzkBAK1ZtGjRV9H8H1DDKFTPxCrNRg+jUD0TjYwIgVGWnon2F/IpBEblIthvDMNsh+O1QWmC1HuVlF4GNYzC9QwAUqzVao9yuob6+/tNubm5vRF6LhY9jIqNoqgVvC6D0Wj8vlSvh8AoPNWG9Po8vwvS7TYBWoVCYFRs27dvr/V6veSZeuTB0wNQ/0V2dnabZB4NNYw6tAy5MHns2DFPkC/0C9YyCIyKoAnTIgIGQxIait54FcBca21tTbfZbAuLi4spMcUvAqNCYxim0mAwOPR6/fny8vJ/kp9ZRg+DXiagkQdM0zS9adRNUJQVsqYysbwMAqMy0+l09z2QCKBJQw+DXiagdXV1/Qs21zldbpfLVStW5oVptXLT7DH/dvHixbSJEyfugOpElmXfN5vN9WKl2AiMcoEJ2zuIAQyGJGWHpqgbAqNsEwuokD1ZAp5z9dvZs2cfNBqN5r6+PrvVar2NHgbD0phGbrCaPn361aSkpMbU1NT/2O32ZUL0EAKj8rCk1Wr3kWzJ15wK4LwhJGwhMOq3qbz2wxiSMCyNaV6vt4bX/quQNB1Fr3rCUsDJPn369Cv5+fnXKIpaxrJsU01NzX4h2RQu3CnIIl35FVMTYUiKE/ErliEwaAgMmiDDr5lgtvStMQzzPBzjOpSvob4NPQzamGaz2XJomq6A6negJEP9LbvdvhSBQeEb0BITE+fzww305SEwaAHN7XY384EaGRlpCVfHIDBxomMsFstlj8fznObb2zd7vF7vjszMzIawFTEu3CnPonQnHn7zEU24ITBoCAwaAoMmotlsNgvDMK85HI5S8hM74eggFL3qFL5j/g0gWanVauugmkjakC29ZzKZNoUqfNHDqNPGTL1pmt7ih8XXfvbMmTMPYEhCC0wSy47wu5xO5wgCgxbQ3G7327AZ/UlACEnlhYWFg6Huj7doqsxAozwOGuVVAKGZ3J65efPme7xHVlbWZy0tLZkGg6EYvE2H2Wz+ZLzjnTx5MnH27Nl7obrU4/H8AUWvykQvzOcN2CT7ws+RhoaGH/KhCdUAFh3Acgiq63xd32BIUp9dG02VKGpdQUHBoaqqKl24B6murk7kwULsKgKjPo1CnjbVLQQaAsuSJUv4sHTDsX9EgdvCs6wyu3LlSjps6qHM4nSThwqVzpkzZyTIviTlruHDAuVR2LcDPYwKjUwsmWAo3B+oeJKA4AMiHFi6/LBgWq1+aFYFgOZQIGjGgcXqhwWBUT80baFAEyosdzURapi40DSPwIY8LHEGp5v8Qm2Jr34YyhPBYEFgEJqPfduQYEFgEBq+jQsLahjUNGHBgsDENzTdnO7uUGDBkBTf4WkObMp9za0Ay5VQ9vu/AAMA8/uTgPQu5cEAAAAASUVORK5CYII=);
    background-repeat: no-repeat;
    background-position: center;
    content: "";
}
.single-working-process-style2.martop50 {
    margin-top: 50px;
}
.single-working-process-style2.martop50 .count{
    top: 90px;    
}
.single-working-process-style2.bottom:before {
    position: absolute;
    bottom: 0px;
    left: 0px;
    margin-top: 0;
    width: 140px;
    height: 110px;
    margin-left: -80px;
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAIwAAABuCAYAAAD1TPu3AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAA3FpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNS1jMDE0IDc5LjE1MTQ4MSwgMjAxMy8wMy8xMy0xMjowOToxNSAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0UmVmPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VSZWYjIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtcE1NOk9yaWdpbmFsRG9jdW1lbnRJRD0ieG1wLmRpZDo4ODViNTBiNC0yZjQ0LTYwNDEtODIwYi00ZDE4ZDlkMzhlYmYiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6QjA4QUZFQ0M3OUY2MTFFOTg0MUVGQ0QzOTFDQkY1QUIiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6QjA4QUZFQ0I3OUY2MTFFOTg0MUVGQ0QzOTFDQkY1QUIiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIChXaW5kb3dzKSI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOmU4ZTAwNTg4LTA5NmYtNDU0NS1hMjRmLTBkMzYzMzMyMDVkNyIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDo4ODViNTBiNC0yZjQ0LTYwNDEtODIwYi00ZDE4ZDlkMzhlYmYiLz4gPC9yZGY6RGVzY3JpcHRpb24+IDwvcmRmOlJERj4gPC94OnhtcG1ldGE+IDw/eHBhY2tldCBlbmQ9InIiPz5bF9q6AAALfklEQVR42uydf0wUZxrHmV12l0VQa6upBSVF3NHA4tUfnBT1RIwHSWvtJdb0SNOztne91CNX9fjjzhjjeenVM/FEac0ZLhdaW4om1p6pxuqh9PRQ7PFjARlwaah60CJRKbC/3J17XrJrh2GA3Z2d3fnxPMmbd+ad2dnZeT/7PN9n5p0ZimXZODTtmd1unwdVmX+2ZN68efZgPkchMJqEZSFUX0BJ8TfdgbIaoLmJwKAJwfIvKE/yFt2Gkj8ZNAgMwhISNAiMtmH5zF+vDxYaBEbbsGz0Tx8PFhoERpuwfAplEwDh9q9jhKoayguTQYPAaBwWzrpBQYPAqBeWDKi+DAaWUKBBYNQLy8W4H86zBGB5CTreM8lnhaB5dJ6GunnzJh5hBVpGRgYl1N7W1pZhNBpruLCAUzhVW1u7acuWLZ5gtn3s2DFjTk7OJxRFcYXwHbfbna/DQ68uA1iqxMBCrLi42H3t2rVNMHmK05wC2/4YgVGfzRUDCxea7u5uPjRpCIzKzOv1boHqqs/nKxsPloaGhrSOjo43GYZZO9G2CgoKAtCQi5RXybZRw6hMw3BPmQg1trS05CYkJJALj2YyD2D91WKxbB9nG2MyIvQw2tM4WwOwjACg05VcuHAhKdjPIzAaM8h8DPwm8DgGBEbjXIy3AEJQOVRuznxlXl7ePQRG2/plXKNp+pLD4cgBUHaDiH358OHDr4dEIope7QjeEI1FD4Mm2hAYNAQGTTqLx0OgnQyJYZjNer1+D1kHRO9fLBbLwZA3jqJXG4LXZrNlms3mJu5yl8uVn5mZWYuiF22MGY3GH/NhMhgMz4QCCwKjoXDkdrub+CBAWx2KXjRBs1qtX4FueQsmv4VyF6a3ZWVlXUUNg/olEoYhCU08LAgMWsiGwGhA8CIwqF+CtoqKCkNHR8fbnZ2d1VBv27t3r14UlSh6VQHMuMsAkgNkVF1gHrKjAxaLZUeYGoZFD6Ni7zISQnS6l3jzL4creDEkacPu8+a/Rg2DYndc83q9JPwMB+BxOp2/E5Nuo4ZRfjiaNFxduXJlxtSpU+m+vr6W/Pz878MMRwiMVoAJxYNMthxDkorDUaRhQWBUnB1JZTjiToXepbGxMT0xMXEbTCayLFtJ0/TFiH0pahh1aRdy22taWtoNmHzK3+R2OBzPWq3WhjBDEotptYqFbmpq6hoOLMSMJpNpgwj9EofAqNg8Hs93Y4hg2a5IbR+BUVkanZWVVefz+f7OgaWmubm5Smx2hBpGpcAErKmpKUOn0yWXlpY2njlzhkVgEBaxxoazHEMSGmoYLXqXQ4cOxRcVFUl+og9DksJhIZAcPHhwH+gVcguJEwTv7y0WyxEpwhECowJgGIZ5Ua/Xn+B29vDwsDU7O/uGFMBgSFJ4KKIoaim/yWQyLZQCFgRGBcay7L95TUMDAwNXUPSidxE0mqbPgG4hz9ntgFLv9Xo3LFu2rFcK74IaRt6wBAVMKM4oEuugh9EGLJECCoGRqVGxgCEYwwFUCtMtkEY/r9Ppfhs38ngX9zsTPEFKEqBQwygIFpvNtthsNpOHAAVud3VARrRw8eLFt0QCETQwGJLkpVsmNJPJtJ4DCzHzlClTVkQLFgRGYbqFZVk7vw3CUns0tAsCo6BQFLBz58597PP5PvGD4IHpnROM1Y1IGo0aRgUpdF1d3RMOh8M1wV2MEQ9FCIx8NIsU51sk8S4YkmSuW0pKSnSnT582ywUW9DAyDkMMw7yg1+v/BpOPg9g9abfbXy0sLByOAAyihDB6GBnCcvny5ccAlg9h8om4kREM1M/S09O3S+k5EBgFC9xp06bRUCXyNx8lbTOh4aUBGQrcvr6+1jlz5vSTcPSop1n2TKy9C3oYmWZDJF12Op3PASQXYLbV5/PtoGm6KlZCF0WvOlLnqMOCHgZhQQ2jNFg6Ojre0Ol0v4RJp8vl2pmZmXlJrrBgSJIOlKBgYRhmPaTPJzlNgyB403Nzc/vlCgx6mMiDEnQYoiiqiNeUNGPGjB9BfUGOsKCGkcarhLI+f2jC0IMHD2xiQYCoIVmKjcBEMQTxrb6+/n1ImUm67IVy1+v1vpaTk/NdtL0GahiZhqDxjFxgLC8vd07wHJegYQl4F/gNCIwMQQkKFvJkhTVr1uSANxmyWq1NEqXPo0KRVMCg6JUQFGJksBPYFzCZ7U+jj1osljelhEVK0yEs0sFCDLKe7QFYRg64TveGzWazKhEWTXsYqUHhMiOQTpuVCIvmgBF5q0dYn2VZthqqzXE/3B7SVFNT899I/J5ow6IZ0RsLULjGMEw+eBXyZrRbvb295atWrXog1rtMBguK3uhCEjIsLS0tyw0GQ8q9e/cuLV++/C53GU3TNVDVRFK3xMriERLxXgUynzL/M+biICPqb25uXpmdnc1IkTrHKhSpBphYQRKwxsbGeQFY/PZ4QkICeZPIr9QGywgw5IDHeidiBEhEdIper08WaDZHGha59FG8UCfIYeei9HIp0d9x9OjR5pKSkv/AZK6/yel2u8vVCEvggIV90EL5ITJ7u1jI+3Lx4sWpycnJU5csWXKbv+zs2bOJ6enpr8HkDKfTWQ36pT3WsEh2LSku+o/GUgwkHFG7HXTKH2HSxLLsebvd/mKQN5XFzLNIBYxOI6CEDYvNZssEWN4lsIxsjKLWgjd5SwQoigtDqk2rI61PiBmNxnSBbc2VyqvIGRa1eRiKVyJifX19X0LFHWPLejyeE1J4FbnDogZgRANCXu7AMMxm0CkfQflTTU3NqDR5xYoV9x0Ox1oyMg70y2der/e5CI/sVwwsgQOuC+fHKTXECAjaUtAo7zzqYRC18+fP/6nIzcYclGiIXklcusiwIvn+ACw/H7UDIGpra2unKRmWWIUkKgZFEjt+/Lhp3N5lWf5z+e8CMIMIy+QhSXVG9EhqamoFeA3y3uZvQX9spWn6FC9tzjabzf+EyVQo92GdV2Cdz6UEJRqwSHniTrXAgD7ZDyHnbU7T993d3akFBQWDfA+0YMGC+T09PV+vW7duSMmgSA2Mos/DkFPyKSkplv7+/q7Vq1cPjPk3UFQWryl55syZxJOMOnW/ceNGF1QtUoKi1BCkmrS6tbU1D/5F30A4+QrCzi1IjdcJ6BN++tsFIUjsW+LD8ipqgOURMHDwf0IGAUHZITJDiJg1NDQ8DZ37DHmSpNByk8l0AKrH/LNJer1+zBXi6urqfT6fj1wDagJ4TgwODhYWFxe7RYDCatGrjPLa5J8JB5uIvMAg5fqqqqq8nTt3evkrk8FC8I+ee/v27Xq+DgjFrl+//lRlZWVvWVmZj7/M/5bUI6A9Xvc3Xevt7S0iJ9B4HdED1SxOkxM8zpQIH5+wOzvWoEh2HgbiPHdEO7FlGzZsWCwgIP+QlJTUDnCdT0tLY+Dfv0hog+3t7b/o7Oysg3Kpra2tiJs2kwt5cCBvTJ8+/RZ4jm/As63if37//v3PcmAhljNr1qwxN36B5/iIN18ZYVAUC4vUIemuQGeMEpDk7j3oxF0czfNkQkLCbv55FACkMD4+nqSxy6CsMBqNJ8Gb0IHtwGfeh8rin50NYeUf/G3A98wW2M+ZAuGmFPbzN1A+hFIC81vlAIqaYRkBZmBgYB/UgQHLLBz8A/wBzACBUSCjGqN1YL2VvCYDeKWVnKyF7ydn79q1K57bWZDxnIe6hxtqXC7XB/zvIiHTYrG8B+VVKOVCIRRBkQCYpUuX3gHNYoVOWTU0NLQADv4O/kqwzv9ANHJPeBGw3uMc6JHi9XrHPNvk4cOHDRzP9Skvi/l8z549Hm5nEa0CEOfCun+GctDhcORZrdZGCX47i6CEIXqDTa0rKioM0JmvEC/h8XjOCr06zi9Yd0NY+bUfkF0A4BHuCbJFixZtg22sBFjqu7q63hU5ci1qIlZpOkUq0ft/AQYAjLxOdtnVHsIAAAAASUVORK5CYII=);
    background-repeat: no-repeat;
    background-position: center;
    content: "";
}


.single-working-process-style2 .icon-holder{
    position: relative;
    display: block;
    width: 200px;
    height: 200px;
    border: 5px dotted #dcdcdc;
    border-radius: 50%;
    margin: 0 auto 25px;
    padding: 15px; 
    transition: all 700ms ease 100ms;
}
.single-working-process-style2:hover .icon-holder{
    border-color: #1808c1;
    transform: scale(1.1);
    transition: all 200ms linear;
	transition-delay: 0.1s;
}
.single-working-process-style2 .icon-holder .inner{
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #ffffff;
    -webkit-box-shadow: 0px 0px 7px 3px #f3f3f3; 
    box-shadow: 0px 0px 7px 3px #f3f3f3;
}
.single-working-process-style2 .icon-holder .inner span:before {
    display: block;
    color: #1808c1;
    font-size: 75px;
    line-height: 160px;
}

.single-working-process-style2 .count{
    position: absolute;
    left: 30px;
    top: 140px;
    width: 35px;
    height: 35px;
    background: #e7e7e7;
    border-radius: 50%;
    transform: perspective(1200px) rotate(0deg) translateZ(0px);
    transition: all 700ms ease 100ms;
}
.single-working-process-style2:hover .count{
    background: #1808c1;
    transform: perspective(1200px) rotate(360deg) translateZ(0px);
    transition: all 700ms ease 300ms;
}
.single-working-process-style2 .count h5 {
    color: #848484;
    font-size: 16px;
    line-height: 35px;
    font-weight: 600;
    transition: all 700ms ease 500ms;
    transition: all 700ms ease 100ms;
}
.single-working-process-style2:hover .count h5{
    color: #ffffff;
    transition: all 700ms ease 400ms;    
}
.single-working-process-style2 .text-holder{
    position: relative;
    display: block;
}
.single-working-process-style2 .text-holder h3{
    margin: 0 0 17px;
}
.single-working-process-style2 .text-holder p{
    margin: 0;
}



/*** 
=============================================
    Testimonial Area Style2 Css
=============================================
***/
.testimonial-area-style2{
    position: relative;
    display: block;
    padding: 100px 0 0px;
    z-index: 2;
}
.more-reviews-button-style2{
    position: relative;
    display: block;
    margin-top: 31px;
}
.testimonial-area-style2-bg{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 611px;
    background-attachment: scroll;
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat; 
    z-index: -1;
}
.single-testimonial-item-style2{
    position: relative;
    display: block;
}
.single-testimonial-item-style2 .img-box{
    position: relative;
    display: block;
    overflow: hidden;
}
.single-testimonial-item-style2 .img-box img{
    width: 100%;
    transform: scale(1.0);
    transition: all 700ms ease;    
}
.single-testimonial-item-style2:hover .img-box img{
    transform: scale(1.1);
    transition: all 200ms linear;
	transition-delay: 0.1s;
}
.single-testimonial-item-style2 .text-holder{
    position: relative;
    display: block;
    background: #ffffff;
    -webkit-box-shadow: 0px 5px 10px 2px #ededed; 
    box-shadow: 0px 5px 10px 2px #ededed;
}

.single-testimonial-item-style2 .text-holder .inner {
    position: relative;
    display: block;
    overflow: hidden;
    padding: 53px 30px 52px;
}
.single-testimonial-item-style2 .text-holder .inner .quote-icon{
    position: absolute;
    top: 0;
    left: 0;
    width: 95px;
    height: 95px;
    text-align: center;
    z-index: 1;
}
.single-testimonial-item-style2 .text-holder .inner .quote-icon:before {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 0;
    height: 0;
    content: "";
    z-index: -1;
    border-top: 95px solid #1808c1;
    border-right: 95px solid transparent;
}
.single-testimonial-item-style2 .text-holder .inner .quote-icon span:before {
    color: #fff;
    font-size: 34px;
    display: block;
    line-height: 55px;
    margin-left: -38px;
}

.single-testimonial-item-style2 .text-holder h3{
    margin: 0 0 17px;
    z-index: 10;
}
.single-testimonial-item-style2 .text-holder .text{
    position: relative;
    display: block;
    margin-bottom: 22px;
    z-index: 1;
}
.single-testimonial-item-style2 .text-holder .text:before {
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    content: "\e99b";
    font-family: 'icomoon';
    color: #eeeeee;
    font-size: 120px;
    line-height: 100px;
    z-index: -1;
    transform: perspective(1200px) rotateY(-90deg) scale(0);
    transition: all 700ms ease 100ms;
}
.single-testimonial-item-style2:hover .text-holder .text:before{
    transform: perspective(1200px) rotateY(0deg) scale(1.0);    
} 

.single-testimonial-item-style2 .text-holder .text p{
    margin: 0;
}

.single-testimonial-item-style2 .text-holder .decor{
    position: relative;
    display: block;
    width: 90px;
    height: 5px;
    margin: 0 auto;
}
.single-testimonial-item-style2 .text-holder .decor span{
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 70px;
    background: #1808c1;
    margin: 0 auto;
    transition: all 200ms linear;
	transition-delay: 0.1s;
}
.single-testimonial-item-style2:hover .text-holder .decor span{
    margin: 0;
}
.single-testimonial-item-style2 .text-holder .decor:before{
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 5px;
    background: #1808c1;
    content: "";
    transition: all 200ms linear;
	transition-delay: 0.1s;
}
.single-testimonial-item-style2:hover .text-holder .decor:before{
    left: auto;
    right: 10px;    
}
.single-testimonial-item-style2 .text-holder .decor:after{
    position: absolute;
    top: 0;
    right: 0px;
    width: 5px;
    height: 5px;
    background: #1808c1;
    content: "";
}

.single-testimonial-item-style2 .text-holder .client-info{
    position: relative;
    display: block;
    padding-top: 24px;
}
.single-testimonial-item-style2 .text-holder .client-info h3{
    margin: 0 0 2px;
}
.single-testimonial-item-style2 .text-holder .client-info span{
    color: #1808c1;
}



/*** 
=============================================
    Latest Blog Area Style2 style
=============================================
***/
.latest-blog-area-style2{
    position: relative;
    display: block;
    background: #ffffff;
    padding: 80px 0 50px;
    margin-top: 20px;
    z-index: 2;
}
.single-blog-post-style2 {
    position: relative;
    display: block;
    margin-bottom: 50px;
}
.single-blog-post-style2 .img-holder {
    position: relative;
    display: block;
    overflow: hidden;
}
.single-blog-post-style2 .img-holder .inner {
    position: relative;
    display: block;
    overflow: hidden;
    z-index: 1;
}
.single-blog-post-style2 .img-holder .inner:before{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 1;
    content: "";
    background: rgb(19,19,19);
    background: linear-gradient(0deg, rgba(19,19,19,0.5634628851540616) 0%, rgba(19,19,19,1) 0%, rgba(19,19,19,1) 0%, rgba(19,19,19,1) 3%, rgba(19,19,19,1) 3%, rgba(19,19,19,0) 45%);
    transition: all 500ms ease;
}
.single-blog-post-style2:hover .img-holder .inner:before{
    opacity: 0;
}
.single-blog-post-style2:hover .overlay-style-two{
	opacity: 1;
}
.single-blog-post-style2:hover .img-holder .overlay-style-two:before{
	opacity: 1;
    transform: perspective(400px) rotateX(0deg);
    transition: all 700ms ease 100ms;	
}
.single-blog-post-style2:hover .img-holder .overlay-style-two:after{
	opacity: 1;
    transform: perspective(400px) rotateX(0deg);
    transition: all 700ms ease 300ms;	
}
.single-blog-post-style2 .img-holder img {
    width: 100%;
    transform: scale(1.01);
    transition: all 700ms ease;
}
.single-blog-post-style2:hover .img-holder img {
    transform:scale(1.2) rotate(2deg);	
}
.single-blog-post-style2 .img-holder .inner .title-holder{
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    height: 100%;
    z-index: 5;
    transform: perspective(1200px) rotateY(0deg) translateY(0%);
    transition: all 700ms ease 100ms;
}
.single-blog-post-style2:hover .img-holder .inner .title-holder{
    opacity: 0;
    transform: perspective(1200px) rotateY(90deg) translateY(60px);     
}
.single-blog-post-style2 .img-holder .inner .title-holder .blog-title{
    position: absolute;
    left: 30px;
    right: 30px;
    bottom: 23px;
}
.single-blog-post-style2 .img-holder .inner .title-holder .blog-title a{
    color: #ffffff;    
}

.single-blog-post-style2 .img-holder .read-more{
    position: absolute;
    left: 30px;
    bottom: 30px;
    z-index: 10;
    transform: perspective(1200px) rotateY(0deg) translateY(100px);
    transition: all 700ms ease 100ms;
}
.single-blog-post-style2:hover .img-holder .read-more{
    transform: perspective(1200px) rotateY(0deg) translateY(0%); 
    transition: all 700ms ease 900ms;
}
.single-blog-post-style2 .img-holder .read-more a{
    position: relative;
    display: inline-block;
    padding: 0 20px;
    background: #1808c1;
    color: #ffffff;
    font-size: 14px;
    line-height: 40px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 4px;
    transition: all 500ms ease;
    font-family: 'Poppins', sans-serif;
}
.single-blog-post-style2 .img-holder .read-more a:hover{
    color: #131313;
    background: #ffffff;
}

.single-blog-post-style2 .text-holder{
    position: relative;
    display: block;
}
.single-blog-post-style2 .post-date-author-info {
    position: relative;
    display: block;
    padding-left: 70px;
    min-height: 90px;
    background: #ffffff;
    -webkit-box-shadow: 0px 5px 9px 2px #F1F1F1; 
    box-shadow: 0px 5px 9px 2px #F1F1F1;
}
.single-blog-post-style2 .post-date-author-info .post-date {
    position: absolute;
    top: 0;
    left: 0;
    width: 70px;
    min-height: 90px;
    display: block;
    padding: 21px 0;
    background: #1808c1;
    text-align: center;
}
.single-blog-post-style2 .post-date-author-info .post-date h3 {
    color: #ffffff;
    line-height: 24px;
    text-transform: uppercase;
}
.single-blog-post-style2 .post-date-author-info .author-info {
    position: relative;
    display: block;
    padding-left: 20px;
    min-height: 90px;
    padding-top: 17px;
    padding-bottom: 17px;
}
.single-blog-post-style2 .post-date-author-info .author-info .img-box{
    width: 55px;
}
.single-blog-post-style2 .post-date-author-info .author-info .img-box img{
    border-radius: 50%;
    transform: none;
}
.single-blog-post-style2 .post-date-author-info .author-info .img-box,
.single-blog-post-style2 .post-date-author-info .author-info .title-box{
    display: table-cell;
    vertical-align: middle;
}
.single-blog-post-style2 .post-date-author-info .author-info .title-box{
    padding-left: 15px;
}
.single-blog-post-style2 .post-date-author-info .author-info .title-box h6{
    color: #131313;
    font-size: 12px;
    text-transform: uppercase;
    margin: 0 0 5px;
}
.single-blog-post-style2 .post-date-author-info .author-info .title-box span{
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
}



/*** 
=============================================
    Home Google Map Area style
=============================================
***/
.home-google-map-area{
    position: relative;
    display: block;
    z-index: 2;
}
.home-google-map-area .container-fluid{
    padding: 0;
}
#home-google-map {
    height: 500px;
    width: 100%;
}

.map-contact-details-box{
    position: absolute;
    top: 120px;
    left: 20%;
    width: 410px;
    background: transparent;
}
.map-contact-details-box ul{
    position: relative;
    display: block;
    padding: 34px 40px 33px;
    max-width: 410px;
    width: 100%;
    background: #ffffff;
    z-index: 1;
}
.map-contact-details-box ul:before {
    position: absolute;
    top: -21px;
    left: 40px;
    content: "\f0d8";
    font-family: FontAwesome;
    color: #ffffff;
    font-size: 50px;
}


.map-contact-details-box ul li{
    position: relative;
    display: block;
    overflow: hidden;
    border-bottom: 1px solid #eeeeee;
    margin-bottom: 20px;
    padding-bottom: 18px;
}
.map-contact-details-box ul li:last-child{
    border: none;
    margin: 0;
    padding: 0;
}
.map-contact-details-box ul li span{
    position: relative;
    display: inline-block;
    float: left;
    width: 50px;
    color: #131313;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
}
.map-contact-details-box ul li b{
    position: relative;
    display: inline-block;
    float: left;
    width: 20px;
    color: #131313;    
}
.map-contact-details-box ul li p{
    position: relative;
    display: inline-block;
    float: left;
    margin: 0;
}



/*** 
=============================================
    Footer Area Style2 Css
=============================================
***/
.footer-area-style2 {
    position: relative;
    display: block;
    padding: 100px 0 86px;
    background: #131313;
    z-index: 1;
}
.footer-left-image{
	position: absolute;
    top: 20px;
	left: 0;
	bottom: 20px;
	width: 325px;
	height: 475px;
	background-image: url(/wp-content/themes/electrical/css/../images/footer/footer-left-image.png);
	opacity: 1.0;
    z-index: 2;
}
.single-footer-widget-style2 .title {
    position: relative;
    display: block;
    padding-bottom: 24px;
}
.single-footer-widget-style2 .title h3 {
    color: #ffffff;
    font-size: 20px;
    line-height: 18px;
    font-weight: 700;
    margin: 0 0 23px;
    text-transform: uppercase;
}
.single-footer-widget-style2 .title .decor{
    position: relative;
    display: block;
    width: 90px;
    height: 5px;
}
.single-footer-widget-style2 .title .decor span{
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 70px;
    background: #1808c1;
}
.single-footer-widget-style2 .title .decor:before{
    position: absolute;
    top: 0;
    right: 0;
    width: 5px;
    height: 5px;
    background: #1808c1;
    content: "";
}
.single-footer-widget-style2 .title .decor:after{
    position: absolute;
    top: 0;
    right: 10px;
    width: 5px;
    height: 5px;
    background: #1808c1;
    content: "";
}


.single-footer-widget-style2{
    position: relative;
    display: block;
    z-index: 5;
}
.single-footer-widget-style2.company-info-box{
    position: relative;
    display: block;
    z-index: 1;
}
.single-footer-widget-style2.company-info-box:before{
    position: absolute;
    top: -1000px;
    left: -2000px;
    bottom: -1000px;
    right: 0;
    background: #1d1d1d;
    content: "";
    z-index: -1;
}
.single-footer-widget-style2 .footer-logo {
    position: relative;
    display: block;
    padding-bottom: 33px;
    z-index: 5;
}
.single-footer-widget-style2 .footer-logo a{
    display: inline-block;
}
.single-footer-widget-style2 .footer-company-info-text{
    position: relative;
    display: block;
    border-bottom: 1px solid #2d2d2d;
    padding-bottom: 22px;
    padding-right: 20px;
    margin-bottom: 30px;
    z-index: 5;
}
.single-footer-widget-style2 .footer-company-info-text p{
    margin: 0;
}
.free-estimates-box{
    position: relative;
    display: block;
    z-index: 5;
}
.free-estimates-box .icon{
    width: 50px;
}
.free-estimates-box .icon span:before{
    color: #1808c1;
    font-size: 50px;
    line-height: 50px;
}
.free-estimates-box .icon,
.free-estimates-box .text{
    display: table-cell;
    vertical-align: middle;
}
.free-estimates-box .text{
    padding-left: 20px;
}
.free-estimates-box .text h3{
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 1px;
}
.free-estimates-box .text span{}

.single-footer-widget-style2 .usefull-links {
    position: relative;
    display: block;
}
.single-footer-widget-style2 .usefull-links ul{
    position: relative;
    display: block;
}
.single-footer-widget-style2 .usefull-links ul li {
    position: relative;
    display: block;
    line-height: 44px;
}
.single-footer-widget-style2 .usefull-links ul li:before {
    position: absolute;
    top: 18px;
    left: 0;
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 0%;
    background: #292929;
    transform: scale(1.0);
    transition: all 0.3s ease-in-out 0.1s;
    z-index: 5;
}
.single-footer-widget-style2 .usefull-links ul li:hover:before{
    background: #1808c1;
    transform: scale(1);
}
.single-footer-widget-style2 .usefull-links ul li a{
    position: relative;
    display: block;
    color: #848484;
    font-size: 16px;
    font-weight: 400;
    padding-left: 28px;
    transition: all 500ms ease;
}
.single-footer-widget-style2 .usefull-links ul li a:hover{
    color: #1808c1;
}

.single-footer-widget-style2 .footer-banner{
    position: relative;
    display: block;
    background: #191919;
    padding: 20px;
}
.single-footer-widget-style2 .footer-banner .inner{
    position: relative;
    display: block;
    padding: 33px 0 40px;
    border: 2px dashed #1808c1;
}
.single-footer-widget-style2 .footer-banner .inner h3{
    color: #ffffff;
}
.single-footer-widget-style2 .footer-banner .inner h1{
    color: #ffffff;
    font-size: 40px;
    text-transform: uppercase;
    margin: 14px 0 4px;
}
.single-footer-widget-style2 .footer-banner .inner p{
    color: #ffffff;
    margin: 0 0 32px;
}
.single-footer-widget-style2 .footer-banner .inner a{
    line-height: 50px;
    padding: 0 25px;
}



/*** 
=============================================
    Footer Bottom Area Style2 Css
=============================================
***/
.footer-bottom-area-style2 {
    position: relative;
    display: block;
    background: #000000;
    z-index: 2;
    padding: 23px 0;
}
.footer-bottom-content-style2{
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;   
}
.copyright-text-style2{
    position: relative;
    display: block;
}
.copyright-text-style2 p{
    color: #848484;
    font-size: 14px;
    line-height: 22px;
    text-transform: uppercase;
    font-family: 'Poppins', sans-serif;
    margin: 0;
}
.copyright-text-style2 p a{
    color: #1808c1;
    font-weight: 500;
}

.footer-menu-style1{
    position: relative;
    display: block;
}
.footer-menu-style1 ul{
    display: block;
    overflow: hidden;
}
.footer-menu-style1 ul li{
    position: relative;
    display: inline-block;
    float: left;
    padding-right: 19px;
    margin-right: 10px;
    z-index: 1;
}
.footer-menu-style1 ul li:last-child{
    margin: 0;
    padding: 0;
}
.footer-menu-style1 ul li:before{
    position: absolute;
    top: 10px;
    right: 0;
    width: 9px;
    height: 3px;
    background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAkAAAADCAYAAABBCiV2AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAA3FpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNS1jMDE0IDc5LjE1MTQ4MSwgMjAxMy8wMy8xMy0xMjowOToxNSAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0UmVmPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VSZWYjIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtcE1NOk9yaWdpbmFsRG9jdW1lbnRJRD0ieG1wLmRpZDo4ODViNTBiNC0yZjQ0LTYwNDEtODIwYi00ZDE4ZDlkMzhlYmYiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6MDEwNkNCMUM3QUU0MTFFOTgzNzBCMTU0MTZFQTlCREIiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6MDEwNkNCMUI3QUU0MTFFOTgzNzBCMTU0MTZFQTlCREIiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIChXaW5kb3dzKSI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOmU4ZTAwNTg4LTA5NmYtNDU0NS1hMjRmLTBkMzYzMzMyMDVkNyIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDo4ODViNTBiNC0yZjQ0LTYwNDEtODIwYi00ZDE4ZDlkMzhlYmYiLz4gPC9yZGY6RGVzY3JpcHRpb24+IDwvcmRmOlJERj4gPC94OnhtcG1ldGE+IDw/eHBhY2tldCBlbmQ9InIiPz5wRmbHAAAAS0lEQVR42mJ0dnIKZWBgWMUAAXuAuGLP3r1noXwGF2fnmUxAeiYQrwbiTqj4GZAEVEE5kEpjBJq0G6jTFUlnGpDqAGJBqFAnQIABAG7YE1frXmp1AAAAAElFTkSuQmCC);
    content: "";
    z-index: -1;
}
.footer-menu-style1 ul li:last-child:before{
    display: none;
}
.footer-menu-style1 ul li a{
    color: #848484;
    font-size: 16px;
    line-height: 22px;
    font-weight: 400;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}
.footer-menu-style1 ul li a:hover{
    color: #1808c1;
}



/*** 
=============================================
    Main Header Style3 Css
=============================================
***/
.main-header.style3 {
    position: relative;
}

.header-top-style3 {
    position: relative;
    display: block;
    padding: 13px 0;
    background: #FFCC00;
}
.header-top-style3 .outer-box{
    position: relative;
    display: block;
}
.header-top-style3 .top-left{
    position: relative;
    display: block;
}
.header-top-style3 .top-left p{
    color: #fff;
    font-size: 16px;
    line-height: 24px;
    font-weight: 700;
    margin: 0;
}
.header-top-style3 .top-left p span:before{
    position: relative;
    top: 3px;
    display: inline-block;
    padding-right: 5px;
    color: #1808c1;
    font-size: 18px;
}

.header-top-style3 .top-right{
    position: relative;
    display: block;    
}
.topmenu-style1{
    position: relative;
    display: block;
    float: left;
}
.topmenu-style1 ul{
    display: block;
    overflow: hidden;
}
.topmenu-style1 ul li{
    position: relative;
    display: inline-block;
    float: left;
    margin-right: 25px;
}
.topmenu-style1 ul li:last-child{
    margin: 0;
}
.topmenu-style1 ul li a{
    position: relative;
    display: block;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
    transition: all 500ms ease;
}
.topmenu-style1 ul li a:hover{
    color: #1808c1;
}

.top-social-links-style1{
    position: relative;
    display: block;
    float: right;    
}
.top-social-links-style1 ul{
    display: block;
    overflow: hidden; 
    padding-left: 60px;
    z-index: 1;
}
.top-social-links-style1 ul:before {
    position: absolute;
    top: 0;
    left: 30px;
    bottom: 0;
    width: 1px;
    background: #dcdcdc;
    content: "";
    transform: rotate(-25deg);
}
.top-social-links-style1 ul li{
    position: relative;
    display: inline-block;
    float: left;
    margin-right: 15px;    
}
.top-social-links-style1 ul li:last-child{
    margin: 0;
}
.top-social-links-style1 ul li a i{
    position: relative;
    display: block;
    color: #fff;
    font-size: 14px;
    line-height: 24px;
    transition: all 500ms ease;
}
.top-social-links-style1 ul li a:hover i{
    color: #1808c1;
}


.header-upper-style3 {
    position: relative;
    display: block;
    background: #fff;
    padding: 0px 0 40px;
}
.header-upper-style3 .outer-box{
 
}
.header-upper-style3 .outer-box .header-upper-left{}
.header-upper-style3 .outer-box .header-upper-left .logo {
    position: relative;
    display: block;
}
.header-upper-style3 .outer-box .header-upper-left .logo a{
    position: relative;
    display: inline-block;
}

.header-upper-style3 .outer-box .header-upper-middle{
    position: relative;
    display: block;    
}
.header-contact-info-style2 {
    position: relative;
    display: block;
    float: left;
    margin-left: 18px !important;
    padding: 22px 0 23px;
}
.header-contact-info-style2 li {
    position: relative;
    display: inline-block;
    float: left;
    border-right: 1px solid #3d3d3d;
    padding-right: 30px;
    margin-right: 30px;
}
.header-contact-info-style2 li:last-child{
    margin-right: 0;
    padding-right: 0;
    border: none;
}
.header-contact-info-style2 li .single-item{
    position: relative;
    display: block;
}
.header-contact-info-style2 li .single-item .icon {
    width: 50px;
    text-align: right;
}
.header-contact-info-style2 li .single-item .icon span:before {
    position: relative;
    top: 3px;
    color: #1808c1;
    font-size: 50px;
    line-height: 50px;
    transition: all 300ms ease 100ms;
}
.header-contact-info-style2 li:hover .single-item .icon span:before{
    color: #1808C1;    
}
.header-contact-info-style2 li .single-item .icon,
.header-contact-info-style2 li .single-item .text{
    display: table-cell;
    vertical-align: middle;
}
.header-contact-info-style2 li .single-item .text{
    padding-left: 20px;
}
.header-contact-info-style2 li .single-item .text h3{
    
    font-size: 18px;
    font-weight: 600;
    text-transform: capitalize;
}
.header-contact-info-style2 li .single-item .text p{
   
    line-height: 18px;
    margin: 4px 0 0;color:#1808c1;
}
.header-contact-info-style2 li .single-item .text p a{color:#1808c1;}
.header-upper-style3 .outer-box .header-upper-right{
    position: relative;
    display: block;
}
.header-upper-style3 .outer-box .header-upper-right .button {
    position: relative;
    display: block;
    padding: 25px 0;
}
.header-upper-style3 .outer-box .header-upper-right .button a{
    color: #fff;
    cursor: pointer;
}



.header-lower-style2 {
    position: relative;
    display: block;
    background: transparent;
    margin-top: -40px;
    margin-bottom: -50px;
}
.header-lower-style2 .outer-box {
    position: relative;
    display: block;
    padding: 10px 10px 10px;
    background: #ffffff;
}
.header-lower-style2 .outer-box .header-lawer-left {
    position: relative;
    display: block;
    border: 2px solid #ebebeb;
    max-width: 855px;
    width: 100%;
}
.header-lower-style2 .outer-box .header-lawer-left .nav-outer {

}


.main-menu.style2.s3 .navigation>li>a i:before {
    position: relative;
    display: block;
    width: 70px;
    height: 66px;
    background: #ebebeb;
    text-align: center;
    color: #1808c1;
    font-size: 25px;
    line-height: 68px;
    border-radius: 0;
    margin: 0;
}
.main-menu.style2.s3 .navigation > li > a {
    padding-top: 19px;
    padding-bottom: 17px;
}
.main-menu.s3 .navigation>li>ul {
}
.main-menu.s3 .navigation .megamenu {
    border-top: 17px solid transparent;
}

.main-menu.style2.s3 .navigation>li:hover>a,
.main-menu.style2.s3 .navigation>li.current>a{
    color: #1808c1;    
}
.main-menu.s3.dropdown-menus2 .navigation>li>ul>li>a:hover {
	color: #1808c1;
  
}
.main-menu.s3.dropdown-menus2 .navigation>li>ul>li ul>li>a:hover {
	color: #1808c1;
   
}
.main-menu.s3.dropdown-menus2 .navigation>li>ul>li.dropdown:hover >a{
	color: #1808c1;
   
}
.main-menu.s3.dropdown-menus2 .navigation>li> .megamenu li>a:hover {
	color: #1808c1;
     
}


.menu-right-content-style3 {
    position: relative;
    display: block;
    float: right;
}
.menu-right-content-style3 .cart-box {
    position: relative;
    display: inline-block;
    float: left;
    margin: 10px 0 11px;
}
.menu-right-content-style3 .cart-box a{
    position: relative;
    display: block;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 1px solid #e7e7e7;
}
.menu-right-content-style3 .cart-box a span:before {
    position: relative;
    display: block;
    text-align: center;
    color: #131313;
    font-size: 20px;
    line-height: 43px;
    transition: all 500ms ease;
}
.menu-right-content-style3 .cart-box a:hover span:before{
    color: #1808c1;    
}
.menu-right-content-style3 .cart-box a span.number {
    position: absolute;
    top: 0;
    left: -10px;
    bottom: 0;
    width: 20px;
    height: 20px;
    background: #1808c1;
    border-radius: 50%;
    color: #ffffff;
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    display: block;
    text-align: center;
    font-family: 'Nunito Sans', sans-serif;
    margin: 11px 0 12px;
}


.menu-right-content-style3 .outer-search-box {
    position: relative;
    display: inline-block;
    float: right;
    transition: all 500ms ease 100ms;
    padding: 13px 0;
    margin-left: 20px;
}
.menu-right-content-style3 .outer-search-box .seach-toggle {
    position: relative;
    display: block;
    color: #131313;
    font-size: 16px;
    line-height: 40px;
    cursor: pointer;
    text-align: center;
    height: 40px;
    border-radius: 3px;
    margin: 0;
    border-left: 1px solid #e7e7e7;
    transition: all 500ms ease;
    padding-left: 20px;
    padding-right: 30px;
}
.menu-right-content-style3 .outer-search-box .seach-toggle:hover,
.menu-right-content-style3 .outer-search-box .seach-toggle.active{
    color: #1808c1;
}
.menu-right-content-style3 .search-box {
    position: absolute;
    top: 120%;
    right: 0%;
    background: #27282c;
    opacity: 0;
    padding: 20px;
    transition: all 500ms ease 0s;
    visibility: hidden;
    z-index: 100;
    margin-left: 0;
}
.menu-right-content-style3 .search-box.now-visible {
    top: 100%;
    opacity: 1;
    visibility: visible;
    z-index: 100;
    margin-top: 17px;
}
.menu-right-content-style3 .search-box .form-group{
    position:relative;
    padding: 0px;
    margin: 0px;
    width: 100%;
    min-width: 250px;
}
.menu-right-content-style3 .search-box .form-group input[type="search"] {
    background: #ffffff none repeat scroll 0 0;
    border: 1px solid #1f1f23;
    color: #000;
    display: block;
    font-size: 13px;
    line-height: 24px;
    position: relative;
    transition: all 500ms ease 0s;
    width: 100%;
    height: 45px;
    padding-left: 15px;
    padding-right: 50px;
}
.menu-right-content-style3 .search-box .form-group input[type="search"]:focus{
    border-color: #f5f5f5;	
}
.menu-right-content-style3 .search-box .form-group button, 
.menu-right-content-style3 .search-box .form-group input[type="submit"] {
    position: absolute;
    right: 0;
    top: 0;
    display: block;
    cursor: pointer;
    background: #1f1f23;
    color: #fff;
    font-size: 13px;
    height: 45px;
    line-height: 45px;
    width: 45px;
    transition: all 500ms ease 0s;
}
.menu-right-content-style3 .search-box .form-group button:hover,
.menu-right-content-style3 .search-box .form-group input:focus + button{
    color: #222222;
    background: #f5f5f5;
}


.header-lower-style2 .outer-box .header-lawer-right{
    position: relative;
    display: block;
    max-width: 270px;
    width: 100%;
    border: 2px solid #ebebeb;
}
.phone-number-box {
    position: relative;
    display: block;
    padding: 13px 28px 13px;
    padding-right: 0;
}
.phone-number-box .icon{
    width: 40px;
}
.phone-number-box .icon span:before{
    position: relative;
    display: block;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #1808c1;
    color: #ffffff;
    font-size: 20px;
    line-height: 40px;
    text-align: center;
}
.phone-number-box .icon,
.phone-number-box .text{
    display: table-cell;
    vertical-align: middle;
}
.phone-number-box .text{
    padding-left: 15px;
}
.phone-number-box .text h5{
    color: #1808c1;
    font-size: 14px;
    line-height: 16px;
    font-weight: 700;
    text-transform: uppercase;
    margin: 0 0 5px;
}
.phone-number-box .text span{
    display: block;
    color: #1808c1;
    font-size: 24px;
    line-height: 16px;
    font-weight: 700;
}
.phone-number-box .text span a{color:#1808c1}

.Rating, .client-info{display:none}
/*** 
=============================================
    Highlights Area style
=============================================
***/
.highlights-area{
    position: relative;
    display: block;
    background: transparent;
    margin-top: -45px;
    z-index: 11;
}
.highlights-content-box{
    position: relative;
    display: block;
    background: #ffffff;
    width: 100%;
    -webkit-box-shadow: 0px 4px 7px 2px #ededed; 
    box-shadow: 0px 4px 7px 2px #ededed;
}
.single-highlights-box {
    position: relative;
    display: block;
    max-width: 390px;
    width: 100%;
    float: left;
    padding-left: 30px;
    padding-top: 17px;
    padding-bottom: 18px;
}
.single-highlights-box.middle{
    position: relative;
    display: block;
    z-index: 1;
}
.single-highlights-box.middle:before{
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    content: "";
    z-index: -1;
    background: #1808c1;
    -moz-transform: skew(-25deg, 0deg);
    -webkit-transform: skew(-25deg, 0deg);
    -o-transform: skew(-25deg, 0deg);
    -ms-transform: skew(-25deg, 0deg);
    transform: skew(-25deg, 0deg);
}
.single-highlights-box.middle .icon span:before{
    color: #ffffff;    
}
.single-highlights-box.middle .title h3{
    color: #ffffff;      
}
.single-highlights-box.middle .title span{
    color: #ffffff;      
}

.single-highlights-box .icon{
    width: 55px;
}
.single-highlights-box .icon span:before{
    position: relative;
    display: block;
    color: #1808c1;
    font-size: 55px;
    line-height: 55px;
    text-align: right;
}
.single-highlights-box .icon,
.single-highlights-box .title{
    display: table-cell;
    vertical-align: middle;
}
.single-highlights-box .title{
    padding-left: 20px;
}
.single-highlights-box .title h3{
    color: #131313;
    font-size: 18px;
    line-height: 22px;
    margin: 0 0 7px;
}
.single-highlights-box .title span{
    color: #848484;
    font-size: 16px;
    line-height: 18px;
    display: block;
}



/*** 
=============================================
    Services Style3 Area style
=============================================
***/
.services-style3-area{
    position: relative;
    display: block;
    padding: 100px 0 60px;
    background: #ffffff;
}

.single-service-style3 {
    position: relative;
    display: block;
    margin-bottom: 40px;
}
.single-service-style3 .img-holder{
    position: relative;
    display: block;
    overflow: hidden;
    z-index: 1;
}
.single-service-style3 .img-holder:before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 1;
    content: "";
    background: rgb(19,19,19);
    background: linear-gradient(0deg, rgba(19,19,19,0.5634628851540616) 0%, rgba(19,19,19,1) 0%, rgba(19,19,19,1) 0%, rgba(19,19,19,1) 3%, rgba(19,19,19,1) 3%, rgba(19,19,19,0) 45%);
    transform: perspective(1200px) rotateY(0deg) translateY(0%);
    transition: all 500ms ease 100ms;
}
.single-service-style3:hover .img-holder:before{
    opacity: 0;
    transform: perspective(1200px) rotateY(90deg) translateY(60px);        
}

.single-service-style3 .img-holder img {
    width: 100%;
    transform: scale(1.0);
    transition: all 700ms ease;
}
.single-service-style3:hover .img-holder img {
    transform: scale(1.2);    
}

.single-service-style3 .overlay-text{
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    display: block;
    padding-left: 30px;
    padding-bottom: 22px;
    padding-right: 30px;
    z-index: 2;
    transform: perspective(1200px) rotateY(0deg) translateY(0%);
    transition: all 700ms ease 100ms;
}
.single-service-style3:hover .overlay-text{
    opacity: 0;
    transform: perspective(1200px) rotateY(90deg) translateY(60px);       
}
.single-service-style3 .overlay-text h3{
    color: #ffffff;
    margin: 0 0 7px;
}
.single-service-style3 .overlay-text p{
    color: #ffffff;
    margin: 0;
}

.single-service-style3 .img-holder .icon-holder {
    position: absolute;
    top: 0;
    right: 20px;
    width: 70px;
    height: 90px;
    background: #1808c1;
    z-index: 3;
    border-bottom-left-radius: 35px;
    border-bottom-right-radius: 35px;
    padding: 30px 10px 10px;
}
.single-service-style3 .img-holder .icon-holder span:before{
    position: relative;
    display: block;
    width: 50px;
    height: 50px;
    background: #ffffff;
    border-radius: 50%;
    color: #131313;
    font-size: 25px;
    line-height: 50px;
    text-align: center;
}

.single-service-style3 .img-holder .overlay{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: "";
    background: rgba(0, 0, 0, 0.90);
    transform: scaleX(0.0);
    transition: all 700ms ease 100ms;
}
.single-service-style3:hover .img-holder .overlay{
    transform: scaleX(1.0);
    transition: all 700ms ease 100ms;
}
.single-service-style3 .img-holder .overlay .box{
    display: table;
    width: 100%;
    height: 100%;
}
.single-service-style3 .img-holder .overlay .box .title{
    display: table-cell;
    vertical-align: middle;
    text-align: left;
    padding-left: 30px;
    padding-right: 20px;
    transform: scaleY(0);
    transition: all 500ms ease 100ms;
}
.single-service-style3:hover .img-holder .overlay .box .title{
    transform: scaleY(1.0);
    transition: all 900ms ease 900ms;    
}
.single-service-style3 .img-holder .overlay .box .title h3{
    color: #ffffff;
    margin: 0 0 7px;
}
.single-service-style3 .img-holder .overlay .box .title p{
    color: #ffffff;
    margin: 0;
}

.single-service-style3 .img-holder .readmore-button{
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 4;
    transition: all 100ms ease 100ms;
    transform-style: preserve-3d;
    transform: perspective(1200px) rotateX(-90deg) translateZ(45px);
    opacity: 0;
}
.single-service-style3:hover .img-holder .readmore-button{
    opacity: 1;
    transform: perspective(1200px) rotateX(0deg) translateZ(0px);
    transition: all 900ms ease 900ms;    
}
.single-service-style3 .img-holder .readmore-button a{
    display: block;
    padding: 0;
    border-radius: 0;
    line-height: 65px;
    text-align: center;
}



/*** 
=============================================
    About Area Style3 Css
=============================================
***/
.about-area-style3{
    position: relative;
    display: block;
    background: #f5f5f5;
    padding: 100px 0 100px;
}
.about-area-style3 .pattern-layer {
    position: absolute;
    content: '';
    top: 0;
    left: 0px;
    bottom: 0px;
    width: 1920px;
    height: 100%;
    background-repeat: no-repeat;
    background-position: top left;
    background-size: auto;
}


.video-holder-box-style2 {
    position: relative;
    display: block;
    margin-right: 35px;
}
.video-holder-box-style2 .video-gallery-overlay-image{
    position: absolute;
    top: 0;
    right: 0;
    z-index: 5;
}
.video-holder-box-style2 .video-gallery-overlay-image img{
    width: auto;
}

.video-holder-box-style2 .img-holder {
    position: relative;
    display: block;
    max-width: 440px;
    width: 100%;
    padding-top: 131px;
}
.video-holder-box-style2 .img-holder img{
    width: 100%;
}
.video-holder-box-style2 .img-holder .icon-holder{
    position: absolute;
    top: 0px;
    left: 0px;
    bottom: 0px;
    right: 0px;
    content: "";
    background: rgba(255, 255, 255, 0.02);
    transition: all 900ms ease;
    z-index: 3;
    opacity: 1;    
}
.video-holder-box-style2 .img-holder .icon-holder .icon{
    display: table;
    width: 100%;
    height: 100%;
}
.video-holder-box-style2 .img-holder .icon-holder .icon .inner{
    position: absolute;
    bottom: 80px;
    right: -60px;
}
.video-holder-box-style2 .img-holder .icon-holder .icon .inner a {
    position: relative;
    display: inline-block;
    height: 120px;
    width: 120px;
    border-radius: 50%;
    text-align: center;
    -webkit-box-shadow: 0px 0px 6px 3px #e9e9e9; 
    box-shadow: 0px 0px 6px 3px #e9e9e9;
    transition: all 500ms ease;
}
.video-holder-box-style2 .img-holder .icon-holder .icon .inner a span:before {
    position: relative;
    display: block;
    background: #ffffff;
    width: 100%;
    height: 100%;
    color: #1808c1;
    font-size: 45px;
    line-height: 120px;
    border-radius: 50%;
    -webkit-animation: pulse 2s infinite;
    -o-animation: pulse 2s infinite;
    animation: pulse 2s infinite;
    transition: all 1s ease;
}


.about-content-style3{
    position: relative;
    display: block;
}
.about-content-style3 .sec-title-style3 {
    position: relative;
    display: block;
    padding-bottom: 43px;
}
.about-content-style3 .sec-title-style3:before {
    color: #e6e6e6;
}
.about-content-style3 .inner-content{
    position: relative;
    display: block;
}
.about-content-style3 .inner-content h3{
    line-height: 30px;
    margin: 0 0 26px;
}
.about-content-style3 .inner-content p{
    margin: 0;
}
.facts-counter-box{
    position: relative;
    display: block;
    padding-top: 32px;
}
.facts-counter-box .single-fact-box{
    position: relative;
    display: block;
    padding: 40px 0 32px;
    background: #ffffff;
    max-width: 270px;
    width: 100%;
    margin: 0 auto 30px;
    text-align: center;
}
.facts-counter-box .single-fact-box .ststic-content{
    position: relative;
    display: block;
}
.facts-counter-box .single-fact-box .ststic-content .icon{
    position: relative;
    display: block;
    padding-bottom: 9px;
}
.facts-counter-box .single-fact-box .ststic-content .icon span:before{
    font-size: 65px;
}
.facts-counter-box .single-fact-box .ststic-content .title{
    position: relative;
    display: block;
}
.facts-counter-box .single-fact-box .ststic-content .title h3{
    font-size: 18px;
    margin: 0;
}

.facts-counter-box .single-fact-box .overlay-content {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: #ffffff;
    display: block;
    padding: 35px 0;
    transition: all 700ms ease 100ms;
    transform-style: preserve-3d;
    transform: perspective(270px) rotateY(-90deg) translateZ(-90px);
    opacity: 0;
}
.facts-counter-box .single-fact-box:hover .overlay-content{
    transform: perspective(270px) rotateY(0deg) translateZ(0px);
    transition: all 700ms ease 300ms;
    opacity: 1;    
}

.facts-counter-box .single-fact-box .overlay-content .count-box {
    position: relative;
    display: block;
    padding-bottom: 18px;
}
.facts-counter-box .single-fact-box .overlay-content .count-box h1 {
    color: #1808c1;
    font-size: 48px;
    line-height: 46px;
    font-weight: 600;
}
.facts-counter-box .single-fact-box .overlay-content .count-box h1 span.add {
    position: relative;
    display: inline-block;
    padding: 0 25px;
    z-index: 1;
}
.facts-counter-box .single-fact-box .overlay-content .count-box h1 span.add:before {
    position: absolute;
    top: 10px;
    right: 0;
    font-family: 'icomoon';
    content: "\e933";
    color: #1808c1;
    font-size: 20px;
    line-height: 20px;
}

.facts-counter-box .single-fact-box .overlay-content .decor{
    position: relative;
    display: block;
    width: 60px;
    height: 2px;
    background: #1808c1;
    margin: 0 auto;
}
.facts-counter-box .single-fact-box .overlay-content .title{
    position: relative;
    display: block;
    padding-top: 18px;
}
.facts-counter-box .single-fact-box .overlay-content .title h3{
    font-size: 18px;
    margin: 0;
}

.about-content-style3 .inner-content .bottom-box{
    position: relative;
    display: block;
    padding-top: 20px;
}
.about-content-style3 .inner-content .bottom-box .readmore-button{
    width: 200px;
}
.about-content-style3 .inner-content .bottom-box .readmore-button a{
    line-height: 60px;
    width: 200px;
    padding: 0;
    text-align: center;
    color: #fff;
}
.about-content-style3 .inner-content .bottom-box .readmore-button,
.about-content-style3 .inner-content .bottom-box .phone-number{
    display: table-cell;
    vertical-align: middle;
}
.about-content-style3 .inner-content .bottom-box .phone-number{
    padding-left: 20px;
}
.about-content-style3 .inner-content .bottom-box .phone-number p{
    position: relative;
    display: inline-block;
    color: #131313;
    font-size: 16px;
    line-height: 20px;
    font-weight: 700;
    margin: 0;
}
.about-content-style3 .inner-content .bottom-box .phone-number p:before{
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    height: 1px;
    background: #131313;
    content: "";
}
.about-content-style3 .inner-content .bottom-box .phone-number h3{
    color: #1808c1;
    font-weight: 700;
    margin: 5px 0 0;
}



/*** 
=============================================
    Services Style4 Area style
=============================================
***/
.services-style4-area {
    position: relative;
    display: block;
    background-attachment: fixed;
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    padding: 100px 0 55px;
    z-index: 1;
}
.services-style4-area::before {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.85) none repeat scroll 0 0;
    content: "";
    z-index: -1;
} 

.services-colum-left{
    position: relative;
    display: block;
}
.single-service-style4{
    position: relative;
    display: block;
    overflow: hidden;
    padding-left: 80px;
    margin-bottom: 45px;
}
.single-service-style4 .icon-holder{
    position: absolute;
    top: 0;
    left: 0;
    width: 70px;
    height: 70px;
    background: #1808c1;
    border-radius: 50%;
    text-align: center;
}
.single-service-style4 .icon-holder:before {
    position: absolute;
    right: -10px;
    top: 0px;
    content: "\f0da";
    font-family: FontAwesome;
    color: #1808c1;
    font-size: 40px;
    line-height: 30px;
    bottom: 0;
    padding: 20px 0;
}
.single-service-style4 .icon-holder span:before{
    color: #ffffff;
    font-size: 35px;
    line-height: 70px;
    display: block;
}
.single-service-style4 .text-holder{
    position: relative;
    display: block;
    padding-left: 20px;
}
.single-service-style4 .text-holder h3{
    position: relative;
    display: inline-block;
    color: #ffffff;
    line-height: 20px;
    padding-bottom: 15px;
    z-index: 1;
}
.single-service-style4 .text-holder h3:before{
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    height: 3px;
    background: #272727;
    content: "";
}
.single-service-style4 .text-holder h3:after{
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    height: 3px;
    background: #1808c1;
    content: "";
    transform: scaleX(0);
    transition: all 300ms ease 100ms;
}
.single-service-style4:hover .text-holder h3:after{
    transform: scaleX(1.0);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.single-service-style4 .text-holder .text{
    position: relative;
    display: block;
    padding-top: 24px;
    padding-bottom: 22px;
}
.single-service-style4 .text-holder .text p{
    color: #cdcdcd;
    margin: 0;
}
.single-service-style4 .text-holder .readmore{
    position: relative;
    display: block;
}
.single-service-style4 .text-holder .readmore a span:before{
    position: relative;
    display: block;
    width: 50px;
    height: 50px;
    border: 2px solid #262626;
    border-radius: 50%;
    color: #404040;
    font-size: 16px;
    line-height: 46px;
    text-align: center;
    transition: all 300ms ease 100ms;
}
.single-service-style4:hover .text-holder .readmore a span:before{
    color: #ffffff;
    border-color: #1808c1;
    background: #1808c1;
}

.single-service-style4.right-colum {
    padding-left: 0;
    padding-right: 80px;
}
.single-service-style4.right-colum .icon-holder {
    position: absolute;
    top: 0;
    right: 0;
    left: auto;
}
.single-service-style4.right-colum .icon-holder:before {
    content: "\f0d9";
    left: -10px;
    right: auto;
}
.single-service-style4.right-colum .text-holder{
    padding-left: 0;
    padding-right: 20px;
}
.single-service-style4.right-colum .text-holder .readmore{
    float: right;
}

.service-discount-box{
    position: relative;
    display: block;
    padding-top: 61px;
    padding-bottom: 53px;
    padding-left: 58px;
    padding-right: 58px;
    background: #0e0e0e;
    border: 2px solid #1d1c1c;
}
.service-discount-box .icon-holder{
    position: relative;
    display: block;
    padding-bottom: 24px;
}
.service-discount-box .icon-holder span:before{
    position: relative;
    display: block;
    width: 100px;
    height: 100px;
    background: #1808c1;
    border-radius: 50%;
    margin: 0 auto;
    color: #ffffff;
    font-size: 65px;
    line-height: 100px;
}
.service-discount-box .title{
    position: relative;
    display: block;
    padding-bottom: 23px;    
}
.service-discount-box .title h3{
    color: #ffffff;
    line-height: 30px;
}
.service-discount-box .text{
    position: relative;
    display: block;
    padding: 14px 0 12px;
    background: #1808c1;
    margin-bottom: 27px;
}
.service-discount-box .text p{
    color: #f5f5f5;
    font-size: 16px;
    margin: 0;
}
.service-discount-box .text h3{
    color: #f5f5f5;
    font-size: 18px;
    margin: 1px 0 0;
}
.service-discount-box a{
    color: #ffffff;
    font-size: 16px;
    line-height: 16px;
    font-weight: 600;
    text-transform: capitalize;
    font-family: 'Poppins', sans-serif;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}
.service-discount-box a:hover{
    color: #1808c1;
}



/*** 
=============================================
    Working Process Area style3 Css
=============================================
***/
.working-process-area-style3{
    position: relative;
    display: block;
    background: #ffffff;
    padding: 100px 0 100px;
}
.working-process-area-style3 .sec-title-style3 {
    padding-bottom: 67px;
}

.working-process-style3-content{
    position: relative;
    display: block;
    z-index: 1;
}
.working-process-style3-content:before{
    position: absolute;
    top: 50px;
    left: 0;
    right: 0;
    height: 1px;
    background: #ddd;
    content: "";
    max-width: 880px;
    margin: 0 auto;
    z-index: -1;
}
.single-working-process-style3{
    position: relative;
    display: block;
    float: left;
    max-width: 390px;
    width: 100%;
    margin-bottom: 30px;
    z-index: 3;
}
.single-working-process-style3:before{
    position: absolute;
    top: 25px;
    left: 100%;
    width: 50px;
    height: 50px;
    border: 1px solid #eeeeee;
    border-radius: 50%;
    font-family: 'icomoon';
    content: "\e902";
    color: #b5b5b5;
    font-size: 25px;
    display: block;
    background: #ffffff;
    text-align: center;
    line-height: 50px;
    margin-left: -25px;
}
.single-working-process-style3:last-child:before{
    display: none;
}

.single-working-process-style3 .icon-holder{
    position: relative;
    display: block;
    background: #ffffff;
    width: 100px;
    height: 100px;
    margin: 0 auto;
    text-align: center;
    -webkit-box-shadow: 0px 0px 6px 3px #f3f3f3; 
    box-shadow: 0px 0px 6px 3px #f3f3f3;
    border-radius: 5px;
}
.single-working-process-style3 .icon-holder:before{
    position: absolute;
    top: 0;
    left: -20px;
    bottom: 0;
    right: -20px;
    background: #ffffff;
    content: "";
    z-index: -1;
}
.single-working-process-style3 .icon-holder .count{
    position: absolute;
    top: -17px;
    left: -17px;
    width: 35px;
    height: 35px;
    background: #eeeeee;
    border-radius: 50%;
    text-align: center;
    transition: all 200ms linear;
    transition-delay: 0.1s;
    transform-style: preserve-3d;
    transform: perspective(270px) rotate(0deg) translateZ(0px);
}
.single-working-process-style3:hover .icon-holder .count{
    background: #1808c1;
    transform: perspective(270px) rotate(360deg) translateZ(0px);
}
.single-working-process-style3 .icon-holder .count h5{
    color: #848484;
    font-size: 16px;
    line-height: 35px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    transition: all 200ms linear;
    transition-delay: 0.3s;
}
.single-working-process-style3:hover .icon-holder .count h5{
    color: #ffffff;    
}
.single-working-process-style3 .icon-holder span:before{
    color: #1808c1;
    font-size: 50px;
    display: block;
    line-height: 100px;
}
.single-working-process-style3 .text-holder{
    position: relative;
    display: block;
    padding-top: 23px;
}
.single-working-process-style3 .text-holder h3{
    margin: 0 0 17px;
}
.single-working-process-style3 .text-holder p{
    margin: 0;
}
.working-process-area-style3 .service-button{
    position: relative;
    display: block;
    width: 320px;
    margin: 2px auto 0;
}
.working-process-area-style3 .service-button a {
    display: block;
    background: #ffffff;
    border: 2px solid #1808c1;
    color: #131313;
    line-height: 61px;
    padding: 0;
    border-radius: 35px;
    text-align: center;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}
.working-process-area-style3 .service-button a:hover{
    color: #ffffff;
    background: #1808c1;
}



/*** 
=============================================
    Latest project style3 Area Css
=============================================
***/
.latest-project-style3-area{
    position: relative;
    display: block;
    background: #f5f5f5;
    padding: 100px 0 98px;
}

.latest-project-style3-area .sec-title-style3:before{
    color: #e6e6e6;
}
.latest-project-style3-area .more-project-button{}
.latest-project-style3-area .more-project-button a {
    display: block;
    border: 2px solid #1808c1;
    background: transparent;
    color: #1808c1;
    line-height: 56px;
    padding: 0 42px 0;
}
.latest-project-style3-area .more-project-button a:hover{
    color: #ffffff;
    background: #1808c1;
}

.single-project-style3{
    position: relative;
    display: block;
}
.single-project-style3 .img-holder{
    position: relative;
    display: block;
    overflow: hidden;  margin-bottom:30px;
}
.single-project-style3 .img-holder img{
    width: 100%;
    transform: scale(1.01);
    transition: all 700ms ease;
}
.single-project-style3:hover .img-holder img {
    transform:scale(1.2) rotate(2deg);	
}
.single-project-style3 .overlay-content{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: "";
    background: rgba(0, 0, 0, 0.90);
    transform: scaleX(0);
    z-index: 6;
    transition: all 700ms ease 100ms;
}
.single-project-style3:hover .overlay-content{
    transform: scaleY(1);
}
.single-project-style3 .overlay-content .inner-content{
    display: table;
    width: 100%;
    height: 100%;
}
.single-project-style3 .overlay-content .inner-content .links-box {
    display: table-cell;
    vertical-align: middle;
    text-align: center;
    opacity: 0;
    transform-style: preserve-3d;
    transform: perspective(1200px) rotateX(-90deg) translateZ(-45px);
    transition: all 300ms ease 100ms;
}
.single-project-style3:hover .overlay-content .inner-content .links-box{
    opacity: 1;
    transform: translate3d(0px, 0px, 0px); 
    transition: all 700ms ease 500ms;
}
.single-project-style3 .overlay-content .inner-content .links-box ul{
    position: relative;
    display: block;
}
.single-project-style3 .overlay-content .inner-content .links-box ul li{
    position: relative;
    display: inline-block;
}
.single-project-style3 .overlay-content .inner-content .links-box ul li a span:before{
    position: relative;
    display: block;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid #ffffff;
    color: #ffffff;
    font-size: 17px;
    line-height: 56px;
    text-align: center;
    transition: all 300ms ease 100ms;
}
.single-project-style3 .overlay-content .inner-content .links-box ul li a:hover span:before{
    border-color: #1808c1;
    background: #1808c1;
}

.single-project-style3 .title-holder{
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center; 
    -webkit-box-shadow: 0px 4px 8px 2px #e4e4e4; 
    box-shadow: 0px 4px 8px 2px #e4e4e4;
}
.single-project-style3 .title-holder .title{
    position: relative;
    display: block;
    padding-left: 30px;
}
.single-project-style3 .title-holder .title span{
    
}
.single-project-style3 .title-holder .title h3{
    color: #131313;
    font-size: 18px;
    margin: 0px 0 0;
}
.single-project-style3 .title-holder .read-more{}
.single-project-style3 .title-holder .read-more a span:before {
    position: relative;
    display: block;
    width: 75px;
    height: 100px;
    text-align: center;
    color: #b5b5b5;
    font-size: 18px;
    line-height: 100px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}
.single-project-style3:hover .title-holder .read-more a span:before {
    color: #ffffff;
    background: #1808c1;
}


.project-carousel-style2.owl-carousel .owl-stage-outer {
    position: relative;
    overflow: hidden;
    padding-bottom: 40px;
}
.project-carousel-style2 .owl-dots {
    position: relative;
    display: block !important;
    margin-top: 0px !important;
    line-height: 14px;
}
.project-carousel-style2 .owl-dots .owl-dot{
    position: relative;
	display: inline-block;
	width: 14px;
	height: 14px;
    background: #f5f5f5;
    border: 2px solid #b5b5b5;
	margin: 0px 5px;
	padding: 0px;
	border-radius: 50%;
	transition: all 500ms ease;
}
.project-carousel-style2 .owl-dots .owl-dot span{
	display:none;	
}
.project-carousel-style2 .owl-dots .owl-dot.active{
    border: 2px solid #1808c1;
}



/*** 
=============================================
    Pricing plan Area style2 Css
=============================================
***/
.pricing-plan-area-style2{
    position: relative;
    display: block;
    padding: 100px 0 100px;
}
.pricing-plan-area-style2 .sec-title-style3 {
    padding-bottom: 86px;
}
.single-pricing-box-style2{
    position: relative;
    display: block;
}
.single-pricing-box-style2:before{
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    height: 5px;
    background: #1808c1;
    content: "";
    transform: scaleX(0);
    transition: all 500ms linear;
    transition-delay: 0.1s;
}
.single-pricing-box-style2:hover:before{
    transform: scaleX(1.0);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}


.single-pricing-box-style2 .categories {
    position: absolute;
    top: -36px;
    right: 0;
    width: 130px;
    text-align: center;
    background: #1808c1;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    z-index: 3;
}
.single-pricing-box-style2 .categories h6{
    color: #ffffff;
    font-size: 14px;
    line-height: 36px;
    text-transform: uppercase;
}
.single-pricing-box-style2 .inner-box {
    position: relative;
    display: block;
    padding: 28px 40px 27px;
    -webkit-box-shadow: 0px 3px 7px 3px #ededed;
    box-shadow: 0px 3px 7px 3px #ededed;
}
.single-pricing-box-style2 .left-box {
    position: relative;
    display: block;
    max-width: 180px;
    width: 100%;
    float: left;
    margin: 8px 0 9px;
}
.single-pricing-box-style2 .left-box span:before{
    position: relative;
    display: block;
    color: #1808c1;
    font-size: 65px;
    line-height: 100%;
}
.single-pricing-box-style2 .left-box h3{
    margin: 5px 0 22px;
}
.single-pricing-box-style2 .left-box h1{
    color: #131313;
    font-size: 36px;
}

.single-pricing-box-style2 .right-box{
    position: relative;
    display: inline-block;
    float: left;
}
.single-pricing-box-style2 .right-box ul{
    position: relative;
    display: block;
    overflow: hidden;
    padding-left: 40px;
}
.single-pricing-box-style2 .right-box ul:before {
    position: absolute;
    top: 12px;
    left: 0;
    bottom: 13px;
    width: 1px;
    background: #eeeeee;
    content: "";
}
.single-pricing-box-style2 .right-box ul li {
    position: relative;
    display: block;
    padding-left: 30px;
    line-height: 36px;
}
.single-pricing-box-style2 .right-box ul li:before{
    font-family: 'icomoon';
    content: "\e9a0";
    position: absolute;
    left: 0;
    color: #131313;
    font-size: 18px;
}
.pricing-plan-area-style2 .bottom-text{
    position: relative;
    display: block;
    max-width: 880px;
    margin: 54px auto 0;
    text-align: center;
}
.pricing-plan-area-style2 .bottom-text p{
    margin: 0 0 32px;    
}
.pricing-plan-area-style2 .bottom-text a{
    display: inline-block;
    border: 2px solid #1808c1;
    background: transparent;
    color: #131313;
    line-height: 56px;
    padding: 0 53px 0; 
    transition: all 200ms linear;
    transition-delay: 0.1s;
}
.pricing-plan-area-style2 .bottom-text a:hover{
    color: #ffffff;
    background: #1808c1;
}



/*** 
=============================================
    Testimonial Area Style2 Css
=============================================
***/
.testimonial-area-style3{
    position: relative;
    display: block;
    background: #131313;
    padding: 100px 0 100px;
}
.testimonial-area-style3 .sec-title-style3:before {
    color: #272727;
}
.testimonial-area-style3 .sec-title-style3 h6 {
    color: #9b9b9b;
}
.testimonial-area-style3 .sec-title-style3 .title{
    color: #ffffff;
}
.testimonial-area-style3 .sec-title-style3 .title span{
    color: #1808c1;
}

.single-testimonial-item-style3{
    position: relative;
    display: block;
    background: #ffffff;
}
.single-testimonial-item-style3 .text-holder{
    position: relative;
    display: block;
    padding: 48px 30px 52px;
}
.single-testimonial-item-style3 .text-holder .quote-icon{
    position: relative;
    display: block;
    padding-bottom: 22px;
}
.single-testimonial-item-style3 .text-holder .quote-icon span:before {
    color: #b5b5b5;
    font-size: 65px;
    line-height: 65px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}
.single-testimonial-item-style3:hover .text-holder .quote-icon span:before{
    color: #1808c1;    
}
.single-testimonial-item-style3 .text-holder .text{
    position: relative;
    display: block;
    z-index: 1;
}
.single-testimonial-item-style3 .text-holder .text:before {
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    content: "\e99b";
    font-family: 'icomoon';
    color: #eeeeee;
    font-size: 126px;
    line-height: 104px;
    z-index: -1;
    transform: perspective(1200px) rotateY(-90deg) scale(0);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}
.single-testimonial-item-style3:hover .text-holder .text:before{
    transform: perspective(1200px) rotateY(0deg) scale(1.0);    
} 
.single-testimonial-item-style3 .text-holder .text p{
    line-height: 26px;
    margin: 0;
}

.single-testimonial-item-style3 .text-holder .client-info{
    position: relative;
    display: block;
    padding-top: 26px;
}
.single-testimonial-item-style3 .text-holder .client-info h3{
    margin: 0 0 2px;
}
.single-testimonial-item-style3 .text-holder .client-info span{
    color: #1808c1;
}

.single-testimonial-item-style3 .review-box{
    position: absolute;
    left: 0;
    bottom: -22px;
    right: 0;
    width: 150px;
    background: #1808c1;
    margin: 0 auto;
    text-align: center;
    border-radius: 30px;
}
.single-testimonial-item-style3 .review-box ul{
    position: relative;
    display: block;
    overflow: hidden;
}
.single-testimonial-item-style3 .review-box ul li{
    display: inline-block;
    float: none;
    margin: 0 3px;
}
.single-testimonial-item-style3 .review-box ul li i {
    color: #ffffff;
    font-size: 14px;
    display: block;
    line-height: 45px;
}

.testimonial-carousel-style2.owl-carousel .owl-stage-outer {
    position: relative;
    overflow: hidden;
    padding-bottom: 22px;
}
.testimonial-carousel-style2 .owl-dots {
    position: absolute;
    top: -74px;
    right: -5px;
    display: block !important;
    margin-top: 0px !important;
    line-height: 14px;
}
.testimonial-carousel-style2 .owl-dots .owl-dot{
    position: relative;
	display: inline-block;
	width: 14px;
	height: 14px;
    background: #131313;
    border: 2px solid #343434;
	margin: 0px 5px;
	padding: 0px;
	border-radius: 50%;
	transition: all 500ms ease;
}
.testimonial-carousel-style2 .owl-dots .owl-dot span{
	display:none;	
}
.testimonial-carousel-style2 .owl-dots .owl-dot.active{
    border: 2px solid #1808c1;
}



/*** 
=============================================
    Latest Blog Area style3 Css
=============================================
***/
.latest-blog-area-style3{
    position: relative;
    display: block;
    background: #ffffff;
    padding: 100px 0 100px;
    z-index: 3;
}

.single-blog-post-style3 {
    position: relative;
    display: block;
}
.single-blog-post-style3 .img-holder {
    position: relative;
    display: block;
}
.single-blog-post-style3 .img-holder .inner {
    position: relative;
    display: block;
    overflow: hidden;
}
.single-blog-post-style3:hover .overlay-style-two{
	opacity: 1;
}
.single-blog-post-style3:hover .img-holder .overlay-style-two:before{
	opacity: 1;
    transform: perspective(400px) rotateX(0deg);
    transition: all 700ms ease 100ms;	
}
.single-blog-post-style3:hover .img-holder .overlay-style-two:after{
	opacity: 1;
    transform: perspective(400px) rotateX(0deg);
    transition: all 700ms ease 300ms;	
}
.single-blog-post-style3 .img-holder img {
    width: 100%;
    transform: scale(1.01);
    transition: all 700ms ease;
}
.single-blog-post-style3:hover .img-holder img {
    transform:scale(1.2) rotate(2deg);	
}
.single-blog-post-style3 .img-holder .overlay{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    opacity: 0;
    overflow: hidden;
    transform: scale(0);
    transition: all 300ms ease 100ms;
}
.single-blog-post-style3:hover .img-holder .overlay{
    opacity: 1;
    transition: all 700ms ease 900ms;
    transform: scale(1.0);   
}
.single-blog-post-style3 .img-holder .overlay .box{
    display: table;
    width: 100%;
    height: 100%;
}
.single-blog-post-style3 .img-holder .overlay .box .link-icon{
    display: table-cell;
    vertical-align: middle;
    text-align: center;
}
.single-blog-post-style3 .img-holder .overlay .box .link-icon a span:before{
    display: inline-block;
    color: #ffffff;
    font-size: 35px;
    line-height: 35px;
    transition: all 500ms ease;
}
.single-blog-post-style3 .img-holder .overlay .box .link-icon a:hover span:before{
    color: #1808c1;    
}

.single-blog-post-style3 .post-date-author-info {
    position: absolute;
    left: 40px;
    right: 40px;
    bottom: -60px;
    display: block;
    padding-left: 85px;
    min-height: 90px;
    background: #ffffff;
    -webkit-box-shadow: 3px 3px 5px 0px #ededed; 
    box-shadow: 3px 3px 5px 0px #ededed;
    z-index: 5;
}
.single-blog-post-style3 .post-date-author-info .post-date {
    position: absolute;
    top: 0;
    left: 0;
    width: 85px;
    min-height: 90px;
    display: block;
    padding: 21px 0;
    background: #1808c1;
    text-align: center;
}
.single-blog-post-style3 .post-date-author-info .post-date h3 {
    color: #ffffff;
    line-height: 24px;
    text-transform: uppercase;
}
.single-blog-post-style3 .post-date-author-info .author-info {
    position: relative;
    display: block;
    padding-left: 30px;
    min-height: 90px;
    padding-top: 17px;
    padding-bottom: 17px;
}
.single-blog-post-style3 .post-date-author-info .author-info .img-box{
    width: 55px;
}
.single-blog-post-style3 .post-date-author-info .author-info .img-box img{
    border-radius: 50%;
    transform: none;
}
.single-blog-post-style3 .post-date-author-info .author-info .img-box,
.single-blog-post-style3 .post-date-author-info .author-info .title-box{
    display: table-cell;
    vertical-align: middle;
}
.single-blog-post-style3 .post-date-author-info .author-info .title-box{
    padding-left: 15px;
}
.single-blog-post-style3 .post-date-author-info .author-info .title-box h6{
    color: #131313;
    font-size: 12px;
    text-transform: uppercase;
    margin: 0 0 5px;
}
.single-blog-post-style3 .post-date-author-info .author-info .title-box span{
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
}

.single-blog-post-style3 .text-holder {
    position: relative;
    display: block;
    padding: 90px 40px 0;
    border: 1px solid #eeeeee;
}
.single-blog-post-style3 .text-holder .blog-title {
    position: relative;
    display: block;
    font-size: 24px;
    line-height: 28px;
    font-weight: 600;
    margin: 0 0 19px;
}
.single-blog-post-style3 .text-holder .blog-title a{
    color: #131313;
    transition: all 500ms ease;
}
.single-blog-post-style3 .text-holder .blog-title a:hover{
    color: #1808c1;
}

.single-blog-post-style3 .text-holder .text {
    position: relative;
    display: block;
    border-bottom: 1px solid #eeeeee;
    padding-bottom: 22px;
}
.single-blog-post-style3 .text-holder .text p{
    margin: 0;    
}

.single-blog-post-style3 .text-holder .bottom {
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    padding: 26px 0 27px;
}
.single-blog-post-style3 .text-holder .bottom .reamore{
    position: relative;
    display: block;
}
.single-blog-post-style3 .text-holder .bottom .reamore a:hover{
    color: #1808c1;
}
.single-blog-post-style3 .text-holder .bottom .meta{
    position: relative;
    display: block;
}
.single-blog-post-style3 .text-holder .bottom .meta p{
    font-size: 14px;
    text-transform: uppercase;
    margin: 0;
}
.single-blog-post-style3 .text-holder .bottom .meta p a{
    color: #1808c1;
}



.single-blog-post-style4{
    position: relative;
    display: block;
}
.single-blog-post-style4.marbtm30{
    margin-bottom: 30px;
}
.single-blog-post-style4 .img-holder{
    position: relative;
    display: block;
    overflow: hidden;    
}
.single-blog-post-style4 .img-holder img{
    width: 100%;
}
.single-blog-post-style4 .static-content{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: "";
    background: rgba(0, 0, 0, 0.85);
    opacity: 1;
    transform: perspective(1200px) rotateX(0deg) translateY(0px);
    transition: none; 
}
.single-blog-post-style4:hover .static-content{
    opacity: 0;  
    transform-style: preserve-3d;
    transform: perspective(1200px) rotateX(0deg) translateY(-100%);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}
.single-blog-post-style4 .static-content .inner{
    display: table;
    width: 100%;
    height: 100%;
}
.single-blog-post-style4 .static-content .inner .content-box{
    display: table-cell;
    vertical-align: middle;
    text-align: center;
}

.single-blog-post-style4 .date-box{
    position: relative;
    display: inline-block;
    padding: 0 20px 0;
    background: #1808c1;
    border-radius: 30px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 400;
    line-height: 40px;
}
.single-blog-post-style4 .blog-title {
    position: relative;
    display: block;
    margin: 15px 0 11px;
}
.single-blog-post-style4 .blog-title a{
    color: #ffffff;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}
.single-blog-post-style4 .blog-title a:hover{
    color: #1808c1;
}
.single-blog-post-style4 .meta-box{
    position: relative;
    display: block;
    overflow: hidden;
    line-height: 30px;
}
.single-blog-post-style4 .meta-box .meta-info{
    overflow: hidden;
}
.single-blog-post-style4 .meta-box .meta-info li {
    position: relative;
    display: inline-block;
    border-right: 1px solid #464848;
    margin-right: 7px;
    padding-right: 14px;
    line-height: 26px;
}
.single-blog-post-style4 .meta-box .meta-info li:last-child{
    border-right: none;
    margin-right: 0;
    padding-right: 0;
}
.single-blog-post-style4 .meta-box .meta-info li span:before{
    position: relative;
    display: inline-block;
    padding-right: 6px;
    color: #1808c1;
    font-size: 16px;
    line-height: 16px;
}
.single-blog-post-style4 .meta-box .meta-info li a{
    color: #cdcdcd;
    font-size: 16px;
    transition: all 500ms ease;
}
.single-blog-post-style4 .meta-box .meta-info li a:hover{
    color: #1808c1;
}
.single-blog-post-style4 .button{
    position: relative;
    display: block;
    padding-top: 12px;
}
.single-blog-post-style4 .button a{
    padding: 0 45px;    
}


.single-blog-post-style4 .overlay-content{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: "";
    background: rgba(0, 0, 0, 0.85);
    transition: all 700ms ease 100ms;
    transform-style: preserve-3d;
    transform: perspective(1200px) rotateX(0deg) translateY(-100%);
    opacity: 0;
}
.single-blog-post-style4:hover .overlay-content{
    opacity: 1;
    transform: perspective(1200px) rotateX(0deg) translateY(0px);
    transition: all 700ms linear;
    transition-delay: 0.2s; 
}
.single-blog-post-style4 .overlay-content .inner{
    display: table;
    width: 100%;
    height: 100%;
}
.single-blog-post-style4 .overlay-content .inner .content-box{
    display: table-cell;
    vertical-align: middle;
    text-align: center;
}



/*** 
=============================================
    Home Google Map Area style2 Css
=============================================
***/
.home-google-map-area-style2{
    position: relative;
    display: block;
    background-attachment: fixed;
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    padding: 100px 0 100px;
    z-index: 3;    
}
.google-map-box {
    position: relative;
    display: block;
}
#home-google-map-style2 {
    height: 640px;
    width: 100%;
}
.map-contact-details-box.style2 {
    left: 45px;
    top: auto;
    bottom: 30px;
}

.appointment-form-box {
    position: relative;
    display: block;
    background: #ffffff;
    padding: 30px 40px;
}
.appointment-form-box form{
    position: relative;
    display: block;
}
.appointment-form-box form .mar-ninus10{
    margin-right: -10px;
    margin-left: -10px;    
}
.appointment-form-box form .pd10{
    padding-left: 10px;
    padding-right: 10px;
}


.appointment-form-box form .input-box {
    position: relative;
    margin-bottom: 20px;
}
.appointment-form-box form .input-box .icon-box {
    position: absolute;
    right: 19px;
    top: 17px;
}
.appointment-form-box form .input-box .icon-box i {
    color: #848484;
    font-size: 14px;
}
.appointment-form-box form .input-box input[type=text],
.appointment-form-box form .input-box input[type=email],
.appointment-form-box form .input-box textarea{
    position: relative;
    display: block;
    background: #ffffff;
    border: 1px solid #eeeeee;
    width: 100%;
    height: 55px;
    padding: 0 19px;
    color: #848484;
    font-size: 16px;
    font-weight: 400;
    border-radius: 0px;
    font-family: 'Nunito Sans', sans-serif;
    transition: all 500ms ease;
}
.appointment-form-box form .input-box textarea{
    padding: 15px 19px;
    height: 110px;
}
.appointment-form-box form .input-box input::-webkit-input-placeholder {
    color: #848484;
}
.appointment-form-box form .input-box input:-moz-placeholder {
    color: #848484;
}
.appointment-form-box form .input-box input::-moz-placeholder {
    color: #848484;
}
.appointment-form-box form .input-box input:-ms-input-placeholder {
    color: #848484;
}

.appointment-form-box form .button-box{
    position: relative;
    display: block;
    padding-top: 10px;
}
.appointment-form-box form button {
    position: relative;
    display: block;
    padding: 0;
    border: 2px solid #1808c1;
    color: #131313;
    line-height: 56px;
    background: #ffffff;
    width: 100%;
    border-radius: 30px;
}
.appointment-form-box form .input-box input[type=text]:focus{
    border-color: #1808c1;
}
.appointment-form-box form .input-box input[type=email]:focus{
    border-color: #1808c1;
}
.appointment-form-box form .input-box textarea:focus{
    border-color: #1808c1;
}



/*** 
=============================================
    Brand Area Style2 Css
=============================================
***/
.brand-area.style2 {
    position: relative;
    display: block;
    background: #ffffff;
    padding-top: 100px;
    padding-bottom: 100px;
    z-index: 3;
}
.brand-area.style2 .single-brand-item a {
    border: 2px solid #eeeeee;
}
.brand-area.style2 .single-brand-item a:hover{
    box-shadow: none;  
}

.brand-items-carousel-style2 .owl-dots {
    position: absolute;
    top: -74px;
    right: -5px;
    display: block !important;
    margin-top: 0px !important;
    line-height: 14px;
}
.brand-items-carousel-style2 .owl-dots .owl-dot{
    position: relative;
	display: inline-block;
	width: 14px;
	height: 14px;
    background: #ffffff;
    border: 2px solid #d9d9d9;
	margin: 0px 5px;
	padding: 0px;
	border-radius: 50%;
	transition: all 500ms ease;
}
.brand-items-carousel-style2 .owl-dots .owl-dot span{
	display:none;	
}
.brand-items-carousel-style2 .owl-dots .owl-dot.active{
    border: 2px solid #1808c1;
}



/*** 
=============================================
    Footer Area Style3 Css
=============================================
***/
.footer-area-style3{
    position: relative;
    display: block;
    background: #E0F4FF;
    padding: 100px 0 100px;
}
.single-footer-widget-style3 .footer-logo {
    position: relative;
    display: block;
    padding-bottom: 34px;
}
.single-footer-widget-style3 .footer-logo a{
    display: inline-block;
}
.single-footer-widget-style3 .footer-company-info-text{
    position: relative;
    display: block;
    padding-bottom: 16px;
}
.single-footer-widget-style3 .footer-company-info-text p{
    color: #838383;  
}

.social-links-style2 {
    position: relative;
    display: block;
    overflow: hidden;
}
.social-links-style2 li{
    position: relative;
    display: inline-block;
    float: left;
    margin-right: 10px;
}
.social-links-style2 li:last-child{
    margin-right: 0px;
}
.social-links-style2 li a i{
    position: relative;
    display: block;
    border: 1px solid #343434;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: #1808c1;
    font-size: 15px;
    font-weight: 400;
    line-height: 40px;
    text-align: center;
    transition: all 500ms ease;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}
.social-links-style2 li a:hover i{
    background: #FFCC00;
    border-color: #FFCC00;
}

.single-footer-widget-style3 .title {
    position: relative;
    display: block;
    padding-bottom: 40px;
    margin-top: -4px;
}
.single-footer-widget-style3 .title h3 {
    color: #1808c1;
    font-size: 20px;
    line-height: 24px;
    font-weight: 700;
    text-transform: uppercase;
}
.single-footer-widget-style3 .decor {
    position: relative;
    display: block;
    width: 50px;
    height: 4px;
    background: #1808c1;
    margin: 15px 0 0;
}

.single-footer-widget-style3 .usefull-links {
    position: relative;
    display: block;
    overflow: hidden;
    margin-top: -14px;
}
.single-footer-widget-style3 .usefull-links ul{
    position: relative;
    display: block;
    overflow: hidden;
}
.single-footer-widget-style3 .usefull-links ul.marleft55{
    margin-left: 55px;    
}
.single-footer-widget-style3 .usefull-links ul li {
    position: relative;
    display: block;
    line-height: 40px;
}
.single-footer-widget-style3 .usefull-links ul li a{
    position: relative;
    display: block;
    color: #131313;
    font-size: 16px;
    font-weight: 400;
    transition: all 500ms ease;
}
.single-footer-widget-style3 .usefull-links ul li a:hover{
    color: #1808c1;
}

.single-footer-widget-style3 .contact-details{
    position: relative;
    display: block;
    margin-top: -3px;
}
.single-footer-widget-style3 .contact-details li{
    margin-bottom: 24px;
}
.single-footer-widget-style3 .contact-details li:last-child{
    margin-bottom: 0;
}
.single-footer-widget-style3 .contact-details li h5{
    color: #1808c1;
    font-size: 16px;
    line-height: 20px;
    font-weight: 600;
    text-transform: capitalize;
    margin: 0 0 9px;
}
.single-footer-widget-style3 .contact-details li p{
    color: #131313;
    font-size: 16px;
    line-height: 25px;
    margin: 0;
}

.single-footer-widget-style3 .recent-news {
    position: relative;
    display: block;
    overflow: hidden;
}
.single-footer-widget-style3 .recent-news li {
    position: relative;
    display: block;
    padding-left: 75px;
    min-height: 75px;
    margin-bottom: 30px;
}
.single-footer-widget-style3 .recent-news li:last-child{
    margin-bottom: 0;
}
.single-footer-widget-style3 .recent-news li .img-holder {
    position: absolute;
    top: 0;
    left: 0;
    width: 75px;
    height: 75px;
    display: block;
    overflow: hidden;
}
.single-footer-widget-style3 .recent-news li .img-holder img{
    transition: all 0.5s ease-in-out 0.6s;
    width: 100%;
    transform: scale(1.0, 1.0); 
}
.single-footer-widget-style3 .recent-news li:hover .img-holder img{
    transform: scale(1.2, 1.2);
} 
.single-footer-widget-style3 .recent-news li .img-holder .overlay-style-one{
  
}
.single-footer-widget-style3 .recent-news li:hover .img-holder .overlay-style-one{
    opacity: 1;    
}
.single-footer-widget-style3 .recent-news li .img-holder .overlay-style-one .content a span:before{
    position: relative;
    display: inline-block;
    width: 25px;
    height: 25px;
    color: #ffffff;
    font-size: 25px;
    line-height: 25px;
    font-weight: 400;
    filter: alpha(opacity=0);
    opacity: 0;
    transform: perspective(1200px) rotateY(-90deg) scale(5);
    transition: all 0.5s ease-in-out 0.3s;
}
.single-footer-widget-style3 .recent-news li:hover .img-holder .overlay-style-one .content a span:before{
    filter: alpha(opacity=100);
    opacity: 1;
    transform: perspective(1200px) rotateY(0deg) scale(1.0);
    transition-delay: 0.1s;   
}

.single-footer-widget-style3 .recent-news li .title-holder {
    position: relative;
    display: block;
    padding-left: 20px;
    min-height: 75px;
}
.single-footer-widget-style3 .recent-news li .title-holder p{
    color: #848484;
    line-height: 16px;
    margin: 0 0 9px;
}
.single-footer-widget-style3 .recent-news li .title-holder h5{
    font-size: 16px;
    line-height: 22px;
    font-weight: 600;
}
.single-footer-widget-style3 .recent-news li .title-holder h5 a{
    color: #ffffff;
    transition: all 200ms ease;
}
.single-footer-widget-style3 .recent-news li .title-holder h5 a:hover{
    color: #1808c1;
}



/*** 
=============================================
    Footer Bottom Area Style3 Css
=============================================
***/
.footer-bottom-area-style3{
    position: relative;
    display: block;
    padding: 25px 0;
    background: #1808c1;
    border-top: 1px solid #1808c1;
}
.footer-bottom-content-style3 {
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
}
.footer-bottom-social-links{
    position: relative;
    display: block;
}
.footer-bottom-social-links ul{
    display: block;
    overflow: hidden;
}
.footer-bottom-social-links ul li{
    position: relative;
    display: inline-block;
    float: left;
    margin-right: 20px;
}
.footer-bottom-social-links ul li:last-child{
    margin-right: 0;
}
.footer-bottom-social-links ul li a i{
    color: #ffffff;
    font-size: 14px;
    transition: all 500ms ease;
}
.footer-bottom-social-links ul li a:hover i{
    color: #1808c1;
}

.copyright-text-style3{
    position: relative;
    display: block;
    width: 100%;
}
.copyright-text-style3 p{
    color: #ffffff;
    font-size: 16px;
    line-height: 22px;
    text-transform: none;
    font-family: 'Poppins', sans-serif;
    margin: 0;
}
.copyright-text-style3 p a{
    color: #fff;
    font-weight: 500;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}
.copyright-text-style3 p a:hover{
    color: #ffffff;
}

.footer-menu-style1.clr-white{
    position: relative;
    display: block;
}
.footer-menu-style1.clr-white ul li a{
    color: #ffffff;
}
.footer-menu-style1.clr-white ul li a:hover{
    color: #1808c1;
}



/*** 
=============================================
    Main Header Style4 Css
=============================================
***/
.main-header.style4 {
    position: relative;
}

.sticky-header.style4 .logo {
    position: relative;
    display: block;
    margin: 6px 0;
}
.sticky-header.style4 .logo a{
    display: inline-block;
}
.sticky-header.style4 .main-menu.s4 .navigation>li {
    padding-left: 30px;
    padding-right: 0;
}
.sticky-header.style4 .main-menu.s4 .navigation> li > a {
    padding: 21px 0px 19px;
}
.sticky-header.style4 .main-menu.s4 .navigation > li.dropdown > a:after {
    display: none;
}
.sticky-header.style4 .main-menu.s4 .navigation>li > a:before {
    display: none !important;
}

.header-top-style4 {
    position: relative;
    display: block;
    padding: 13px 0;
    background: #005299;
}
.header-top-style4 .outer-box{
    position: relative;
    display: block;
}
.header-top-style4 .top-left{
    position: relative;
    display: block;
}
.header-top-style4 .top-left p{
    color: #ffffff;
    font-size: 16px;
    line-height: 30px;
    font-weight: 600;
    margin: 0;
}
.header-top-style4 .top-left p b{
    position: relative;
    display: inline-block;
    padding-right: 7px;
    font-weight: 700;
}
.header-top-style4 .top-left p span:before {
    position: relative;
    top: 1px;
    display: inline-block;
    padding-right: 5px;
    color: #4eaaf9;
    font-size: 16px;
}


.header-top-style4 .top-middle {
    position: relative;
    display: block;
    border-left: 1px solid #3172aa;
    margin-left: 20px;
    padding-left: 20px;
}
.header-top-style4 .top-middle .working-hours {
    position: relative;
    display: block;
    padding-left: 25px;
    width: 200px;
    float: left;
    margin: 0px 0;
}
.header-top-style4 .top-middle .working-hours .icon{
    position: absolute;
    top: 0;
    left: 0;
}
.header-top-style4 .top-middle .working-hours .icon span:before {
    position: relative;
    display: inline-block;
    color: #4eaaf9;
    font-size: 16px;
    line-height: 30px;
}
.header-top-style4 .top-middle .working-hours .bootstrap-select {
    position: relative;
    display: block;
}
.header-top-style4 .top-middle .working-hours .bootstrap-select>.dropdown-toggle {
    outline: none !important;
    border-radius: 0px;
    border: 0px solid #edf2f7;
    height: 30px;
    background-color: transparent;
    padding: 0;
    padding-left: 0px;
    color: #ffffff;
    font-size: 16px;
    line-height: 30px;
    font-weight: 600;
    margin: 0;
    box-shadow: none !important;
    font-family: 'Nunito Sans', sans-serif;
}
.header-top-style4 .top-middle .working-hours .bootstrap-select>.dropdown-toggle::after {
    position: absolute;
    top: 50%;
    right: 0px;
    width: auto;
    height: auto;
    font-family: 'FontAwesome';
    content: '\f107';
    color: #ffffff;
    font-size: 18px;
    transform: translateY(-50%);
    margin: 0;
    border: none;
    font-weight: 400;
}
.header-top-style4 .top-middle .working-hours .bootstrap-select .dropdown-menu {
    margin: 0;
    padding: 0;
    border-radius: 0;
    border: 0px solid #ddd;
    background: #f9f9f9;
    font-size: 16px;
    color: #000000;
}
.header-top-style4 .top-middle .working-hours .dropdown-item {
    display: block;
    width: 100%;
    padding: 7px 15px 7px;
    font-weight: 400;
    color: #222222;
    text-align: inherit;
    white-space: nowrap;
    background-color: transparent;
    border: 0;
    border-radius: 0;
    transition: all 500ms ease;
}
.header-top-style4 .top-middle .working-hours .dropdown-item.active,
.header-top-style4 .top-middle .working-hours .dropdown-item:active {
    color: #fff;
    background: #4eaaf9;
}
.header-top-style4 .top-middle .working-hours .dropdown-item:hover {
    color: #fff;
    background: #4eaaf9;
}


.header-top-style4 .top-right{
    position: relative;
    display: block;
    padding-right: 140px;
}


.top-social-links-style2{
    position: relative;
    display: block;
    float: left;    
}
.top-social-links-style2 ul{
    display: block;
    overflow: hidden; 
    z-index: 1;
}
.top-social-links-style2 ul:before {
    position: absolute;
    top: 0;
    right: -15px;
    bottom: 0;
    width: 1px;
    background: #3172aa;
    content: "";
}
.top-social-links-style2 ul li{
    position: relative;
    display: inline-block;
    float: left;
    margin-right: 15px;    
}
.top-social-links-style2 ul li:last-child{
    margin: 0;
}
.top-social-links-style2 ul li a i{
    position: relative;
    display: block;
    color: #ffffff;
    font-size: 14px;
    line-height: 30px;
    transition: all 500ms ease;
}
.top-social-links-style2 ul li a:hover i{
    color: #4eaaf9;
}


.header-upper-style4 {
    position: relative;
    display: block;
    background: #ffffff;
    padding: 30px 0 0;
}
.header-upper-style4 .outer-box {
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: end;
    z-index: 1;
}
.header-upper-style4 .outer-box:before{
    position: absolute;
    bottom: 11px;
    left: 0;
    right: 0;
    height: 1px;
    max-width: 1170px;
    width: 100%;
    margin: 0 auto;
    background: #eeeeee;
    content: "";
}
.header-upper-style4 .header-upper-left{
    position: relative;
    display: block;
    max-width: 350px;
    width: 100%;
}


.header-contact-info-style3 {
    position: relative;
    display: block;
    float: left;
}
.header-contact-info-style3 li {
    position: relative;
    display: inline-block;
    float: left;
}
.header-contact-info-style3 li .single-item{
    position: relative;
    display: block;
}
.header-contact-info-style3 li .single-item .icon {
    width: 70px;
    text-align: left;
}
.header-contact-info-style3 li .single-item .icon span:before {
    position: relative;
    top: 2px;
    color: #4eaaf9;
    font-size: 50px;
    line-height: 50px;
    transition: all 300ms ease 100ms;
}
.header-contact-info-style3 li:hover .single-item .icon span:before{}
.header-contact-info-style3 li .single-item .icon,
.header-contact-info-style3 li .single-item .text{
    display: table-cell;
    vertical-align: middle;
}
.header-contact-info-style3 li .single-item .text{
    border-left: 1px solid #e7e7e7;
    padding-left: 20px;
}
.header-contact-info-style3 li .single-item .text h3{
    color: #131313;
    font-size: 18px;
    line-height: 18px;
    font-weight: 600;
    text-transform: capitalize;
}
.header-contact-info-style3 li .single-item .text p{
    color: #848484;
    line-height: 16px;
    margin: 10px 0 0;
}


.header-upper-style4 .header-upper-middle {
    position: relative;
    display: block;
    max-width: 450px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
}
.header-upper-style4 .header-upper-middle .logo {
    position: relative;
    display: inline-block;
    background: #ffffff;
    padding: 0 45px;
}
.header-upper-style4 .header-upper-middle .logo a{
    display: inline-block;
}


.header-upper-style4 .header-upper-right{
    position: relative;
    display: block;
    max-width: 350px;
    width: 100%;
}
.header-contact-info-style3.right {
    float: right;
    text-align: right;
    display: inline-block;
    width: 100%;
}
.header-contact-info-style3.right li {
    position: relative;
    display: inline-block;
    float: right;
}
.header-contact-info-style3.right li .single-item .text {
    border-right: 1px solid #e7e7e7;
    padding-left: 0;
    padding-right: 20px;
    border-left: none;
}
.header-contact-info-style3.right li .single-item .icon {
    width: 70px;
    text-align: right;
}


.header-lower-style3 {
    position: relative;
    display: block;
    background: transparent;
    margin-top: 0px;
    margin-bottom: 0px;
    z-index: 1;
}
.header-lower-style3 .outer-box {
    position: relative;
    display: block;
}
.header-lower-style3 .header-lawer-content{
    position: relative;
    display: block;
    padding-top: 19px;
}
.main-menu.s4 {
    float: none;
}
.main-menu.s4 .navigation {
    width: 100%;
}
.main-menu.s4 .navigation>li {
    display: inline-block;
    float: none;
    margin: 0;
    padding-left: 30px;
    padding-right: 26px;
}
.main-menu.s4 .navigation> li > a {
    padding: 6px 0px 24px;
}
.main-menu.s4 .navigation>li > a:before{
    position: absolute;
    top: 0;
    left: -30px;
    width: 1px;
    height: 40px;
    background: #e7e7e7;
    content: "";
    display: block !important;
}
.main-menu.s4 .navigation>li:first-child > a:before{
    display: none !important;
}
.main-menu.s4 .navigation > li.dropdown > a:after {
    font-family: FontAwesome;
    position: absolute;
    right: 0px;
    top: 0px;
    font-size: 16px;
    line-height: 40px;
    color: #131313;
    content: "\f107";
}
.main-menu.style2.s4 .navigation>li:hover>a, 
.main-menu.style2.s4 .navigation>li.current>a {
    color: #4eaaf9;
}
.main-menu.s4.dropdown-menus2 .navigation>li>ul>li.dropdown:hover >a{
	color: #4eaaf9;
    padding-left: 30px;    
}
.main-menu.s4.dropdown-menus2 .navigation>li>ul>li ul>li>a:hover {
	color: #4eaaf9;
    padding-left: 30px;
}
.main-menu.dropdown-menus2 .navigation>li>ul>li ul>li>a:before {
    background: #4eaaf9;
}


.main-menu.s4 .navigation .megamenu {
    left: auto;
    max-width: 500px;
}
.main-menu.s4 .navigation .megamenu >li{
    position: inherit;
}
.main-menu.s4.dropdown-menus2 .navigation>li>ul>li>a:before {
    background: #4eaaf9;
}
.main-menu.s4.dropdown-menus2 .navigation>li>ul>li>a:hover {
	color: #4eaaf9;
    padding-left: 30px;
}
.main-menu.s4.dropdown-menus2 .navigation>li> .megamenu li>a:hover {
	color: #4eaaf9;
    padding-left: 30px;   
}
.main-menu.s4.dropdown-menus2 .navigation>li> .megamenu li>a:before {
    background: #4eaaf9;
}
.main-menu.s4.dropdown-menus2 .navigation>li> .megamenu li>a:hover {
	color: #4eaaf9;
    padding-left: 30px;   
}



/*** 
=============================================
    Working Area style
=============================================
***/
.working-area{
    position: relative;
    display: block;
    background: #f5f5f5;
    padding: 0px 0 100px;
    z-index: 10;
}
.working-box{
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;    
}
.single-working-box{
    position: relative;
    display: block;
    margin-top: -70px;
    margin-bottom: 60px;
}
.single-working-box .img-box{
    position: relative;
    display: block;
    overflow: hidden;
}
.single-working-box .img-box img{
    width: 100%;
    transform: scale(1.0);
    transition: all 700ms linear;
    transition-delay: 0.3s;    
}
.single-working-box:hover .img-box img{
    transform: scale(1.2) rotate(2deg);	    
}
.single-working-box .static-content{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 83, 153, 0.90);
    padding: 0 40px;
    opacity: 1;
    transform: perspective(1200px) rotateX(0deg) scaleX(1.0);
    transition: all 700ms ease 700ms;
}
.single-working-box:hover .static-content{
    opacity: 0;
    transform: perspective(1200px) rotateX(-90deg) scaleX(0);
    transition: all 700ms ease 100ms;       
}

.single-working-box .static-content .inner{
    display: table;
    width: 100%;
    height: 100%;
}
.single-working-box .static-content .inner .box{
    display: table-cell;
    vertical-align: middle;
    text-align: center;
}    
.single-working-box .static-content .readmore{
    position: absolute;
    left: 0;
    bottom: -30px;
    right: 0;
}
.single-working-box .static-content .readmore a span:before{
    position: relative;
    display: block;
    width: 60px;
    height: 60px;
    margin: 0 auto;
    background: #ffffff;
    color: #000000;
    font-size: 20px;
    line-height: 60px;
}
.single-working-box .icon-holder {
    position: relative;
    display: block;
    margin-bottom: 25px;
}
.single-working-box .icon-holder span:before{
    position: relative;
    display: block;
    background: #ffffff;
    width: 110px;
    height: 110px;
    margin: 0 auto;
    border-radius: 50%;
    border: 5px solid rgba(0, 83, 153, 0.80);
    color: #4eaaf9;
    font-size: 50px;
    line-height: 100px;
}
.single-working-box .text-holder{
    position: relative;
    display: block;
}
.single-working-box .text-holder h3{
    color: #ffffff;
    margin: 0 0 17px;
}
.single-working-box .text-holder p{
    color: #ffffff;
    margin: 0;
}

.single-working-box .overlay-content{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    padding: 0 40px;
    z-index: 1;
    opacity: 1;
    transform-style: preserve-3d;
    transform: perspective(1200px) rotateX(-90deg) translateZ(0px);
    transition: all 700ms ease 300ms;
}
.single-working-box:hover .overlay-content{
    opacity: 1;
    transform: perspective(1200px) rotateX(0deg) translateZ(0px);
    transition: all 700ms ease 100ms;        
}
.single-working-box .overlay-content:before{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0%;
    background: rgba(80, 170, 249, 0.90);
    content: "";
    z-index: -1;
    transition: all 700ms ease 800ms;
}
.single-working-box:hover .overlay-content:before{
	height:100%;
    transition: all 700ms ease 500ms;
}



.single-working-box .overlay-content .inner{
    display: table;
    width: 100%;
    height: 100%;
}
.single-working-box .overlay-content .inner .box{
    display: table-cell;
    vertical-align: middle;
    text-align: center;
}  

.single-working-box .readmore-button{
    position: relative;
    display: block;
    padding-top: 32px;
}
.single-working-box .readmore-button a{
    position: relative;
    display: inline-block;
    background: #ffffff;
    padding: 0 40px;
    color: #131313;
    font-size: 16px;
    line-height: 60px;
    font-weight: 600;
    text-transform: capitalize;
    font-family: 'Poppins', sans-serif;
    transition: all 500ms ease;
}
.single-working-box .readmore-button a:hover{
    background: #4eaaf9;
}

.make-appointment-content {
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    margin-top: 30px;
}
.make-appointment-content .left{
    position: relative;
    display: block;
}
.make-appointment-content .left .icon{
    width: 80px;
}
.make-appointment-content .left .icon span:before{
    position: relative;
    display: block;
    width: 80px;
    height: 80px;
    background: #4eaaf9;
    border-radius: 50%;
    color: #ffffff;
    font-size: 45px;
    line-height: 80px;
    text-align: center;
}
.make-appointment-content .left .icon,
.make-appointment-content .left .title{
    display: table-cell;
    vertical-align: middle;
}
.make-appointment-content .left .title{
    padding-left: 30px;
}
.make-appointment-content .left .title h3{
    font-size: 24px;
    line-height: 32px;
    margin: 0 0 6px;
}
.make-appointment-content .left .title span{}
.make-appointment-content .right{
    position: relative;
    display: block;    
}
.make-appointment-content .right .button{
    
}
.make-appointment-content .right .button a{
    position: relative;
    display: inline-block;
    background: #ffffff;
    padding: 0 45px;
    color: #131313;
    font-size: 16px;
    line-height: 60px;
    font-weight: 600;
    text-transform: capitalize;
    font-family: 'Poppins', sans-serif;
    transition: all 500ms ease;    
}
.make-appointment-content .right .button a:hover{
    color: #ffffff;
    background: #131313;
}


/*** 
=============================================
    About Area style4 Css
=============================================
***/
.about-area-style4{
    position: relative;
    display: block;
    padding: 100px 0 100px;
}

.about-content-style4{
    position: relative; 
    display: block;
    margin-top: -8px;
}
.about-content-style4 h1{
    color: #131313;
    font-size: 36px;
    line-height: 46px;
    font-weight: 600;
    margin: 0 0 23px;
}
.about-content-style4 p{
    
}

.know-more-about-company-box{
    position: relative;
    display: block;
    padding-top: 26px;
}
.video-holder-box-style3 {
    width: 70px;
}
.video-holder-box-style3 .img-holder {
    position: relative;
    display: block;
    overflow: hidden;
}
.video-holder-box-style3 .img-holder img{
    width: 100%;
}
.video-holder-box-style3 .img-holder .icon-holder{
    position: absolute;
    top: 0px;
    left: 0px;
    bottom: 0px;
    right: 0px;
    content: "";
    background: rgba(0, 82, 153, 0.90);
    transition: all 900ms ease;
    z-index: 3;
    opacity: 1;    
}
.video-holder-box-style3 .img-holder .icon-holder .icon{
    display: table;
    width: 100%;
    height: 100%;
}
.video-holder-box-style3 .img-holder .icon-holder .icon .inner{
    display: table-cell;
    vertical-align: middle;
    text-align: center;
}
.video-holder-box-style3 .img-holder .icon-holder .icon .inner a {
    position: relative;
    display: inline-block;
    color: #ffffff;
    text-align: center;
    transition: all 500ms ease;
}
.video-holder-box-style3 .img-holder .icon-holder .icon .inner a span:before {
    position: relative;
    display: block;
    color: #ffffff;
    font-size: 25px;
    line-height: 25px;
}


.know-more-about-company-box .video-holder-box-style3,
.know-more-about-company-box .title{
    display: table-cell;
    vertical-align: middle;
}
.know-more-about-company-box .title{
    background: #f5f5f5;
    border: 1px solid #eeeeee;
    padding: 0 30px;
}
.know-more-about-company-box .title a{
    color: #131313;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
}

.about-style4-image-box{
    position: relative;
    display: block;
}
.about-style4-image-box .single-image{
    display: block;
}
.about-style4-image-box .single-image img{
    width: 100%;
}

.featured-content{
    margin-top: 60px;    
}
.single-featured-box {
    position: relative;
    display: block;
    max-width: 370px;
    width: 100%;
    -webkit-box-shadow: 0px 3px 8px 2px #ededed;
    box-shadow: 0px 3px 8px 2px #ededed;
    margin: 40px auto 0;
    padding: 33px 0 35px;
}
.single-featured-box .icon{
    width: 120px;
    text-align: center;
}
.single-featured-box .icon,
.single-featured-box .text{
    display: table-cell;
    vertical-align: middle;
}
.single-featured-box .icon h3{
    color: #4eaaf9;
    font-size: 18px;
    margin: 0 0 52px;
    opacity: 1;
    transform-style: preserve-3d;
    transform: perspective(1200px) rotateX(0deg) translateZ(0px);
    transition: all 300ms ease 200ms;
}
.single-featured-box:hover .icon h3{
    opacity: 0;
    transform-style: preserve-3d;
    transform: perspective(1200px) rotateX(90deg) translateZ(-45px);
    transition: all 700ms ease 200ms;    
}

.single-featured-box .icon span:before{
    position: relative;
    display: inline-block;
    color: #b5b5b5;
    font-size: 65px;
    line-height: 65px;
    opacity: 1;
    transform-style: preserve-3d;
    transform: perspective(1200px) rotateX(0deg) translateZ(0px);
    transition: all 300ms ease 200ms;
}
.single-featured-box:hover .icon span:before{
    opacity: 1;
    color: #4eaaf9;
    transform-style: preserve-3d;
    transform: perspective(1200px) rotateX(0deg) translateY(-40px);
    transition: all 700ms ease 200ms;       
}

.single-featured-box .text h3 {
    position: relative;
    display: block;
    color: #131313;
    padding-bottom: 16px;
    margin-bottom: 15px;
}
.single-featured-box .text h3:before{
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 3px;
    background: #4eaaf9;
    content: "";
}
.single-featured-box .text p{
    margin: 0 0 16px;
}
.single-featured-box .text a{
    color: #131313;
    font-size: 16px;
    font-weight: 600;
    text-transform: capitalize;
    font-family: 'Poppins', sans-serif;
}



/*** 
=============================================
    Working Process Area style4 Css 
=============================================
***/
.working-process-area-style4{
    position: relative;
    display: block;
    background-attachment: fixed;
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    padding: 100px 0 100px;
    z-index: 1;
}
.working-process-area-style4::before {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgba(0, 83, 153, 0.90) none repeat scroll 0 0;
    content: "";
    z-index: -1;
} 
.working-process-style4-content{
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    border: 1px solid #3c77ac;
}
.single-working-process-style4 {
    position: relative;
    display: block;
    padding: 49px 39px 41px;
    max-width: 388px;
    width: 100%;
    border-right: 1px solid #3c77ac;
}
.single-working-process-style4:last-child{
    border-right: none;
}
.single-working-process-style4 .top{
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: end;
}
.single-working-process-style4 .top .icon{}
.single-working-process-style4 .top .icon span:before{
    position: relative;
    display: block;
    width: 60px;
    height: 60px;
    background: #ffffff;
    border-radius: 50%;
    text-align: center;
    color: #4eaaf9;
    font-size: 30px;
    line-height: 60px;
}
.single-working-process-style4 .top .count{
    position: relative;
    display: block;
}
.single-working-process-style4 .top .count h1 {
    color: #2669a3;
    font-size: 100px;
    font-weight: 700;
    line-height: 73px;
}

.single-working-process-style4 .text-holder {
    position: relative;
    display: block;
    padding-top: 22px;
}
.single-working-process-style4 .text-holder .title{
    position: relative;
    display: block;
}
.single-working-process-style4 .text-holder .title h3{
    color: #ffffff;
    margin: 0 0 13px;
}
.single-working-process-style4 .text-holder .title .borders{
    position: relative;
    display: block;
    width: 70px;
    height: 7px;
}
.single-working-process-style4 .text-holder .title .borders:before{
    position: absolute;
    top: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: #ffffff;
    content: "";
}
.single-working-process-style4 .text-holder .title .borders:after{
    position: absolute;
    left: 0;
    bottom: 0;
    width: 70px;
    height: 2px;
    background: #ffffff;
    content: "";
}
.single-working-process-style4 .text-holder .text{
    position: relative;
    display: block;
    padding-top: 34px;
}
.single-working-process-style4 .text-holder .text p{
    color: #ffffff;
    margin: 0;
}



/*** 
=============================================
    Services style5 Area style
=============================================
***/
.services-style5-area{
    position: relative;
    display: block;
    padding: 100px 0 60px;
}
.single-service-style5 {
    position: relative;
    display: block;
    margin-bottom: 170px;
}
.single-service-style5 .img-holder{
    position: relative;
    display: block;
}
.single-service-style5 .img-holder .inner{
    position: relative;
    display: block;
    overflow: hidden; 
    z-index: 1;
}
.single-service-style5 .img-holder img {
    width: 100%;
    transform: scale(1.01);
    transition: all 700ms ease;
}
.single-service-style5:hover .img-holder img {
    transform: scale(1.2);    
}
.single-service-style5:hover .overlay-style-two{
	opacity: 1;
}
.single-service-style5 .img-holder .overlay-style-two:before {
    transition: all 0.5s;
    background-color: rgba(0, 83, 153, 0.90);
}
.single-service-style5:hover .img-holder .overlay-style-two:before{
	opacity: 1;
    transform: perspective(400px) rotateX(0deg);
    transition: all 700ms ease 100ms;	
}
.single-service-style5 .img-holder .overlay-style-two:after{
    transition: all 0.5s; 
    background-color: rgba(0, 83, 153, 0.90);
}
.single-service-style5:hover .img-holder .overlay-style-two:after{
	opacity: 1;
    transform: perspective(400px) rotateX(0deg);
    transition: all 700ms ease 300ms;	
}

.single-service-style5 .img-holder .text-holder {
    position: absolute;
    left: 20px;
    bottom: -102px;
    right: 20px;
    z-index: 5;
    background: #ffffff;
    text-align: center;
    -webkit-box-shadow: 0px 3px 10px 2px rgba(237,237,237,0.7);
    box-shadow: 0px 3px 10px 2px rgba(237,237,237,0.7);
    padding: 25px 15px 0;
    border-bottom: 2px solid #4eaaf9;
}
.single-service-style5 .img-holder .text-holder h3 {
    margin: 0 0 2px;
    transition: all 300ms ease;  
}
.single-service-style5:hover .img-holder .text-holder h3{
    margin: 0 0 17px;
}
.single-service-style5 .img-holder .text-holder h3 a {
    color: #131313;
}

.single-service-style5 .img-holder .text-holder .text {
    position: relative;
    display: block;
    padding-bottom: 50px;
}
.single-service-style5 .img-holder .text-holder .text span{}
.single-service-style5 .img-holder .text-holder .text p{
    visibility: hidden;
    opacity: 0;
    height: 0;
    margin: 0;
    transition: all 300ms ease;    
}
.single-service-style5:hover .img-holder .text-holder .text p{
	visibility: visible;
	opacity: 1;
	height: 52px;
}
.single-service-style5 .img-holder .text-holder .readmore{
    position: absolute;
    left: 0;
    bottom: -30px;
    right: 0;
}
.single-service-style5 .img-holder .text-holder .readmore a span:before{
    position: relative;
    display: block;
    background: #ffffff;
    width: 60px;
    height: 60px;
    margin: 0 auto;
    border: 2px solid #4eaaf9;
    color: #4eaaf9;
    font-size: 20px;
    line-height: 56px;
    text-align: center;
}
.single-service-style5 .img-holder .text-holder .readmore .overlay-button {
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
}
.single-service-style5 .img-holder .text-holder .readmore .overlay-button a {
    position: relative;
    display: inline-block;
    background: #4eaaf9;
    padding: 0 45px;
    color: #ffffff;
    font-size: 16px;
    line-height: 60px;
    font-weight: 600;
    text-transform: capitalize;
    font-family: 'Poppins', sans-serif;
    transition: all 500ms ease;
    opacity: 0;
    transform: scaleX(0.3);
}
.single-service-style5:hover .img-holder .text-holder .readmore .overlay-button a{
    opacity: 1;
    transform: scaleX(1.0);    
}


/*** 
=============================================
    Latest Project Style4 Area Css
=============================================
***/
.latest-project-style4-area{
    position: relative;
    display: block;
    background: #f5f5f5;
    padding: 100px 0 98px;
}
.latest-project-style4-area .container-fluid {
    padding-right: 30px;
    padding-left: 30px;
}
.project-style4-content{}
.single-project-style4{
    position: relative;
    display: block;
}
.single-project-style4 .img-holder{
    position: relative;
    display: block;
    overflow: hidden;
}
.single-project-style4 .img-holder img{
    width: 100%;
    transform: scale(1.01);
    transition: all 700ms ease;
}
.single-project-style4:hover .img-holder img {
    transform:scale(1.2) rotate(2deg);	
}
.single-project-style4 .overlay-content{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: "";
    background: rgba(0, 83, 153, 0.90);
    transform: scaleX(0);
    z-index: 6;
    transition: all 700ms ease 100ms;
}
.single-project-style4:hover .overlay-content{
    transform: scaleY(1);
}
.single-project-style4 .overlay-content .inner-content{
    display: table;
    width: 100%;
    height: 100%;
}
.single-project-style4 .overlay-content .inner-content .links-box {
    display: table-cell;
    vertical-align: top;
    text-align: right;
    opacity: 0;
    transform-style: preserve-3d;
    transform: perspective(1200px) rotateX(-90deg) translateZ(-45px);
    transition: all 300ms ease 100ms;
}
.single-project-style4:hover .overlay-content .inner-content .links-box{
    opacity: 1;
    transform: translate3d(0px, 0px, 0px); 
    transition: all 700ms ease 500ms;
}
.single-project-style4 .overlay-content .inner-content .links-box ul{
    position: absolute;
    top: 20px;
    right: 16px;
}
.single-project-style4 .overlay-content .inner-content .links-box ul li{
    position: relative;
    display: inline-block;
    margin: 0 3px;
}
.single-project-style4 .overlay-content .inner-content .links-box ul li a span:before{
    position: relative;
    display: block;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid #ffffff;
    color: #ffffff;
    font-size: 17px;
    line-height: 56px;
    text-align: center;
    transition: all 300ms ease 100ms;
}
.single-project-style4 .overlay-content .inner-content .links-box ul li a:hover span:before{
    color: #4eaaf9;
    border-color: #ffffff;
    background: #ffffff;
}

.single-project-style4 .img-holder .title-holder{
    position: absolute;
    left: 20px;
    bottom: 20px;
    right: 20px;
    background: #ffffff;
    text-align: center;
    z-index: 6;
    transform: scaleX(0);
    transition: all 700ms ease 100ms;
}
.single-project-style4:hover .img-holder .title-holder{
    transform: scaleX(1.0);
    transition: all 700ms ease 800ms;    
}
.single-project-style4 .img-holder .title-holder h3{
    position: relative;
    display: block;
    font-size: 18px;
    line-height: 50px;
}
.single-project-style4 .img-holder .title-holder h3 a{
    color: #131313;    
}

.latest-project-style4-area .owl-theme .owl-nav {
    position: absolute;
    top: -105px;
    left: 0;
    right: -15px;
    display: block !important;
    margin-top: 0px !important;
    max-width: 1170px;
    margin: 0 auto;
    text-align: right;
}

.project-style4-content .owl-dots {
    position: relative;
    display: block !important;
    margin-top: 40px !important;
    line-height: 14px;
}
.project-style4-content .owl-dots .owl-dot{
    position: relative;
	display: inline-block;
	width: 14px;
	height: 14px;
    background: #ffffff;
    border: 2px solid #d9d9d9;
	margin: 0px 5px;
	padding: 0px;
	border-radius: 50%;
	transition: all 500ms ease;
}
.project-style4-content .owl-dots .owl-dot span{
	display:none;	
}
.project-style4-content .owl-dots .owl-dot.active{
    border: 2px solid #4eaaf9;
    background: #4eaaf9;
}



/*** 
=============================================
    Fact Counter Area style3
=============================================
***/
.fact-counter-area-style3 {
    position: relative;
    display: block;
    background: #f5f5f5;
    padding: 100px 0 60px;
    z-index: 3;
}
.fact-counter-style3-bg{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 385px;
    background-attachment: scroll;
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    z-index: 1;
}
.fact-counter-style3-bg::before {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgba(0, 83, 153, 0.90) none repeat scroll 0 0;
    content: "";
    z-index: -1;
}

.fact-counter-style3{
    position: relative;
    display: block;
    z-index: 3;
}
.single-fact-counter.style3 {
    position: relative;
    display: inline-block;
    float: left;
    max-width: 390px;
    background: #ffffff;
    padding: 77px 30px 72px;
    border-right: 1px solid #eeeeee;
}
.single-fact-counter.style3:last-child{
    border-right: none;
}

.single-fact-counter.style3 .count-box {
    padding-bottom: 17px;
    z-index: 3;
}
.single-fact-counter.style3 .count-box h1 {
    color: #4eaaf9;
    font-size: 60px;
    line-height: 50px;
    font-weight: 700;
}
.single-fact-counter.style3 .count-box h1 span.add {
    padding: 0 30px;
}
.single-fact-counter.style3 .count-box h1 span.add:before {
    top: 12px;
    right: 0;
    color: #4eaaf9;
    font-size: 25px;
    line-height: 25px;
}
.single-fact-counter.style3 .title {
    position: relative;
    display: block;
    padding-top: 0;
    padding-bottom: 17px;
    z-index: 3;
}
.single-fact-counter.style3 .title h3 {
    color: #131313;
    font-size: 20px;
    line-height: 28px;
    font-weight: 600;
}
.single-fact-counter.style3 .text{
    position: relative;
    display: block;
    z-index: 3;
}
.single-fact-counter.style3 .text p{
    margin: 0;
}

.single-fact-counter.style3 .icon {
    position: absolute;
    bottom: 0px;
    right: 0px;
    padding: 0;
    z-index: 1;
}
.single-fact-counter.style3 .icon span:before {
    color: #eeeeee;
    font-size: 150px;
    line-height: 150px;
}
.single-fact-counter.style3 .icon span.icon-medal1:before {
    position: relative;
    bottom: -11px;
    right: -5px;
    font-size: 180px;
}

.brand-items-style3 {
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    margin-top: 57px;
}
.brand-items-style3 .single-brand-item a {
    display: block;
    background: transparent;
    text-align: center;
    transition: all 700ms ease 200ms;
}
.brand-items-style3 .single-brand-item a:hover{
    box-shadow: none;  
}
.brand-items-style3 .single-brand-item a img{
    width: auto;
    filter: brightness(100%); 
    transition: all 900ms ease 200ms;
    transform: perspective(1200px) rotateY(0deg) translateZ(0px);
}
.brand-items-style3 .single-brand-item:hover a img{
    filter: brightness(0%); 
    transform: perspective(1200px) rotateY(0deg) translateZ(0px);
}



/*** 
=============================================
    Appointment Faq Area Css
=============================================
***/
.appointment-faq-area{
    position: relative;
    display: block;
    background: #ffffff;
    padding: 100px 0 80px;
}
.appointment-faq-bg{
	position: absolute;
    top: 30px;
	left: 0;
	bottom: 0px;
	width: 466px;
	height: 680px;
	background-image: url(/wp-content/themes/electrical/css/../images/icon/appointment-faq.png);
	opacity: 1.0;
    z-index: 1;
}

.appointment-form-box.style2{
    position: relative;
    display: block;
    background: #ffffff;
    padding: 0; 
    z-index: 3;
}

.appointment-form-box.style2 form .input-box textarea {
    padding: 15px 19px;
    height: 110px;
    max-width: 80%;
    float: left;
}
.appointment-form-box.style2 form .input-box input[type=text]:focus{
    border-color: #4eaaf9;
}
.appointment-form-box.style2 form .input-box input[type=email]:focus{
    border-color: #4eaaf9;
}
.appointment-form-box.style2 form .input-box textarea:focus{
    border-color: #4eaaf9;
}
.appointment-form-box.style2 form button {
    position: relative;
    display: inline-block;
    background: #4eaaf9;
    border: 2px solid #4eaaf9;
    padding: 0;
    color: #ffffff;
    font-size: 40px;
    line-height: 106px;
    width: 16%;
    border-radius: 0;
    float: right;
}

.appointment-form-box.style2 .bootstrap-select {
    position: relative;
    display: block;
}
.appointment-form-box.style2 .bootstrap-select>.dropdown-toggle {
    outline: none !important;
    border-radius: 0;
    border: 1px solid #eeeeee !important;
    height: 55px;
    background-color: transparent !important;
    padding: 0;
    padding-left: 20px;
    color: #83888d;
    line-height: 55px;
    margin: 0;
    box-shadow: none !important;
    position: relative;
    display: block;
    float: none;
    width: 100%;
}
.appointment-form-box.style2 .bootstrap-select>.dropdown-toggle::after {
    position: absolute;
    top: 50%;
    right: 20px;
    width: auto;
    height: auto;
    font-family: 'FontAwesome';
    content: '\f107';
    color: #83888d;
    font-size: 18px;
    transform: translateY(-50%);
    margin: 0;
    border: none;
}

.appointment-form-box.style2 .bootstrap-select>.dropdown-toggle .filter-option {
    position: absolute;
    top: 0;
    left: 0;
    background: #ffffff;
    padding-top: inherit;
    padding-right: inherit;
    padding-bottom: inherit;
    padding-left: inherit;
    height: 100%;
    width: 100%;
    text-align: left;
    color: #848484;
    font-size: 16px;
    font-family: 'Nunito Sans', sans-serif;
}

.appointment-form-box.style2 .bootstrap-select .dropdown-menu {
    color: #000000;
    font-size: 16px;
    margin: 0;
    padding: 0;
    border-radius: 0;
    border: 0px solid #ddd;
    background: #f9f9f9;
}
.appointment-form-box.style2 .dropdown-item {
    display: block;
    width: 100%;
    padding: 9px 20px 9px;
    font-weight: 400;
    color: #222222;
    text-align: inherit;
    white-space: nowrap;
    background-color: transparent;
    border: 0;
    border-radius: 0;
    transition: all 500ms ease;
}
.appointment-form-box.style2 .dropdown-item.active,
.appointment-form-box.style2 .dropdown-item:active {
    color: #fff;
    background: #4eaaf9;
}
.appointment-form-box.style2 .dropdown-item:hover {
    color: #fff;
    background: #4eaaf9;
}


.faq-content-box {
    position: relative;
    display: block;
}



/*** 
=============================================
    Testimonial Area Style4 Css
=============================================
***/
.testimonial-area-style4{
    position: relative;
    display: block;
    background-attachment: fixed;
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    padding: 100px 0 60px;
    z-index: 1;
}
.testimonial-area-style4::before {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgba(0, 83, 153, 0.90) none repeat scroll 0 0;
    content: "";
    z-index: -1;
} 


.single-testimonial-item-style4{
    position: relative;
    display: block;
    margin-bottom: 40px;
}
.single-testimonial-item-style4 .text-holder{
    position: relative;
    display: block;
    background: #ffffff;
    padding: 48px 40px 42px;
    z-index: 1;
}
.single-testimonial-item-style4 .text-holder:before {
    position: absolute;
    left: 0;
    bottom: -30px;
    right: 0;
    content: "";
    border-top: 30px solid #ffffff;
    border-right: 30px solid transparent;
    width: 60px;
    border-left: 30px solid transparent;
    margin: 0 auto;
}
.single-testimonial-item-style4 .text-holder .quote-icon{
    position: relative;
    display: block;
    padding-bottom: 22px;
}
.single-testimonial-item-style4 .text-holder .quote-icon span:before {
    color: #b5b5b5;
    font-size: 65px;
    line-height: 65px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}
.single-testimonial-item-style4:hover .text-holder .quote-icon span:before{
    color: #4eaaf9;    
}
.single-testimonial-item-style4 .text-holder .text{
    position: relative;
    display: block;
    z-index: 1;
}
.single-testimonial-item-style4 .text-holder .text:before {
    position: absolute;
    left: 0;
    bottom: -10px;
    right: 0;
    content: "\e99b";
    font-family: 'icomoon';
    color: #eeeeee;
    font-size: 100px;
    line-height: 100px;
    z-index: -1;
    transform: perspective(1200px) rotateY(-90deg) scale(0);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}
.single-testimonial-item-style4:hover .text-holder .text:before{
    transform: perspective(1200px) rotateY(0deg) scale(1.0);    
} 
.single-testimonial-item-style4 .text-holder .text p{
    line-height: 26px;
    margin: 0;
}

.single-testimonial-item-style4 .text-holder .client-info{
    position: relative;
    display: block;
    padding-top: 26px;
}
.single-testimonial-item-style4 .text-holder .client-info h3{
    margin: 0 0 2px;
}
.single-testimonial-item-style4 .text-holder .client-info span{
    color: #4eaaf9;
}

.single-testimonial-item-style4 .img-holder{
    position: relative;
    display: block;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    margin: 50px auto 0;
}
.single-testimonial-item-style4 .img-holder img{
    border-radius: 50%;
}



/*** 
=============================================
    Latest Blog Area Style4 style
=============================================
***/
.latest-blog-area-style4{
    position: relative;
    display: block;
    padding: 100px 0 50px;
}
.more-blog-button{
    position: relative;
    display: block;
    margin-top: 20px;
}
.more-blog-button a{
    position: relative;
    display: inline-block;
    padding: 15px 48px 16px;
    border: 2px solid #4eaaf9;
    color: #131313;
    font-size: 16px;
    font-weight: 600;
    text-transform: capitalize;
    font-family: 'Poppins', sans-serif;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}
.more-blog-button a:hover{
    color: #ffffff;
    background: #4eaaf9;
}

.single-blog-post-style5 {
    position: relative;
    display: block;
    padding-bottom: 103px;
    margin-bottom: 50px;
    box-shadow: 0px 3px 10px 2px rgba(237,237,237,0.7);
    transition: all 500ms linear;
    transition-delay: 0.2s;
}
.single-blog-post-style5:hover{
    -webkit-box-shadow: 0px 5px 12px 2px rgba(220,220,220,0.69); 
    box-shadow: 0px 5px 12px 2px rgba(220,220,220,0.69);
}

.single-blog-post-style5 .img-holder{
    position: relative;
    display: block;
}
.single-blog-post-style5 .img-holder .inner{
    position: relative;
    display: block;
    overflow: hidden; 
    z-index: 1;
}
.single-blog-post-style5 .img-holder img {
    width: 100%;
    transform: scale(1.01);
    transition: all 700ms ease;
}
.single-blog-post-style5:hover .img-holder img {
    transform: scale(1.2);    
}
.single-blog-post-style5:hover .overlay-style-two{
	opacity: 1;
}
.single-blog-post-style5 .img-holder .overlay-style-two:before {
    transition: all 0.5s;
    background-color: rgba(0, 83, 153, 0.90);
}
.single-blog-post-style5:hover .img-holder .overlay-style-two:before{
	opacity: 1;
    transform: perspective(400px) rotateX(0deg);
    transition: all 700ms ease 100ms;	
}
.single-blog-post-style5 .img-holder .overlay-style-two:after{
    transition: all 0.5s; 
    background-color: rgba(0, 83, 153, 0.90);
}
.single-blog-post-style5:hover .img-holder .overlay-style-two:after{
	opacity: 1;
    transform: perspective(400px) rotateX(0deg);
    transition: all 700ms ease 300ms;	
}

.single-blog-post-style5 .img-holder .text-holder {
    position: absolute;
    left: 10px;
    bottom: -103px;
    right: 10px;
    z-index: 5;
    background: #ffffff;
    padding: 0px 30px 5px;
    transition: all 500ms ease;
}

.single-blog-post-style5:hover .img-holder .text-holder {
    padding: 0px 30px 27px;
}
.single-blog-post-style5 .img-holder .text-holder .date-box{
    position: absolute;
    top: -17px;
    left: 30px;
    display: inline-block;
    background: #4eaaf9;
    padding: 5px 11px 4px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    text-align: left;
}
.single-blog-post-style5 .img-holder .text-holder .meta-box {
    position: relative;
    display: block;
    overflow: hidden;
    padding-top: 33px;
}
.single-blog-post-style5 .img-holder .text-holder .meta-box .meta-info {
    position: relative;
    display: block;
    overflow: hidden;
}
.single-blog-post-style5 .img-holder .text-holder .meta-box .meta-info li{
    position: relative;
    display: inline-block;
    float: left;
    line-height: 20px;
    border-right: 1px solid #e7e7e7;
    padding-right: 11px;
    margin-right: 10px;
    color: #4eaaf9;
    font-size: 16px;
}
.single-blog-post-style5 .img-holder .text-holder .meta-box .meta-info li:last-child{
    border-right: none;
    padding-right: 0;
    margin-right: 0;
}
.single-blog-post-style5 .img-holder .text-holder .meta-box .meta-info li a{
    color: #848484;
}
.single-blog-post-style5 .img-holder .text-holder .title {
    position: relative;
    display: block;
    padding: 15px 0 18px;
    transition: all 500ms ease;
}
.single-blog-post-style5 .img-holder .text-holder .title h3{
    font-size: 18px;
    line-height: 26px;
}
.single-blog-post-style5 .img-holder .text-holder .title h3 a{
    color: #131313;
    transition: all 900ms ease 200ms;
}
.single-blog-post-style5:hover .img-holder .text-holder .title h3 a{
    color: #4eaaf9;    
}
.single-blog-post-style5 .img-holder .text-holder .readmore{
    visibility: hidden;
    opacity: 0;
    height: 0;
    margin: 0;
    transition: all 300ms ease;        
}
.single-blog-post-style5:hover .img-holder .text-holder .readmore{
	visibility: visible;
	opacity: 1;
	height: 20px;    
}
.single-blog-post-style5 .img-holder .text-holder .readmore a{
    color: #131313;
    font-size: 16px;
    font-weight: 600;
    line-height: 20px;
    text-transform: capitalize;
    font-family: 'Poppins', sans-serif;
}



/*** 
=============================================
    Contact Details Area style
=============================================
***/
.contact-details-area{
    position: relative;
    display: block;
    padding-top: 35px;
    z-index: 3;
}
.contact-details-content{
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: -97px;
}

.single-contact-details-box{
    position: relative;
    display: block;
    max-width: 390px;
    width: 100%;
    background: #005299;
    text-align: center;
    padding-bottom: 42px;
}
.single-contact-details-box.style2{
    background: #4eaaf9;    
}
.single-contact-details-box .icon-holder{
    position: absolute;
    left: 0;
    top: -35px;
    right: 0;
    width: 70px;
    height: 70px;
    margin: 0 auto;
    z-index: 2;
}
.single-contact-details-box .icon-holder:before{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 35px;
    content: "";
    z-index: -1;
    -webkit-box-shadow: 0px -3px 9px 2px #f8f8f8; 
    box-shadow: 0px -3px 9px 2px #f8f8f8;
}
.single-contact-details-box .icon-holder span:before{
    position: relative;
    display: block;
    width: 70px;
    height: 70px;
    margin: 0 auto;
    background: #ffffff;
    color: #4eaaf9;
    font-size: 40px;
    line-height: 70px;
}
.single-contact-details-box .text-holder{
    position: relative;
    display: block;
    padding-top: 69px;
}
.single-contact-details-box .text-holder h3{
    color: #ffffff;
    font-size: 18px;
    margin: 0 0 6px;
}
.single-contact-details-box .text-holder p{
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    margin: 0;
}



/*** 
=============================================
    Footer Area style4 Css 
=============================================
***/
.footer-area-style4 {
    position: relative;
    display: block;
    background: #04213a;
    padding: 197px 0 95px;
}

.single-footer-widget-style4 .title {
    position: relative;
    display: block;
    padding-bottom: 34px;
    margin-top: -4px;
}
.single-footer-widget-style4 .title h3 {
    color: #ffffff;
    font-size: 20px;
    line-height: 24px;
    font-weight: 600;
    text-transform: capitalize;
}
.single-footer-widget-style4 .decor {
    position: relative;
    display: block;
    width: 70px;
    height: 7px;
    background: transparent;
    margin: 20px 0 0;
}
.single-footer-widget-style4 .decor:before{
    position: absolute;
    top: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: #ffffff;
    content: "";
}
.single-footer-widget-style4 .decor:after{
    position: absolute;
    left: 0;
    bottom: 0;
    width: 70px;
    height: 2px;
    background: #ffffff;
    content: "";
}

.single-footer-widget-style4 .footer-company-info-text{
    position: relative;
    display: block;
}
.single-footer-widget-style4 .footer-company-info-text p{
    color: #ffffff; 
    font-size: 16px;
    font-weight: 700;
}
.single-footer-widget-style4 .footer-company-info-text p span{
    color: #4eaaf9;
}
.single-footer-widget-style4 .footer-company-info-text .footer-social-links {
    position: relative;
    display: block;
    padding-top: 6px;
}
.single-footer-widget-style4 .footer-company-info-text .footer-social-links .social-links-style2 li a i {
    border: 1px solid #264055;
}
.single-footer-widget-style4 .footer-company-info-text .footer-social-links .social-links-style2 li a:hover i{
    border-color: #4eaaf9;
    background: #4eaaf9;
}



.single-footer-widget-style4 .usefull-links {
    position: relative;
    display: block;
    overflow: hidden;
    margin-top: -8px;
}
.single-footer-widget-style4 .usefull-links ul{
    position: relative;
    display: block;
    overflow: hidden;
}
.single-footer-widget-style4 .usefull-links ul li {
    position: relative;
    display: block;
    line-height: 40px;
}
.single-footer-widget-style4 .usefull-links ul li:before {
    position: absolute;
    left: 0;
    top: 18px;
    width: 0px;
    height: 2px;
    background: #4eaaf9;
    content: "";
    transition: all 300ms linear;
    transition-delay: 0.1s;
}
.single-footer-widget-style4 .usefull-links ul li:hover:before{
    width: 20px;    
}
.single-footer-widget-style4 .usefull-links ul li a{
    position: relative;
    display: block;
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    transition: all 300ms linear;
    transition-delay: 0.1s;
}
.single-footer-widget-style4 .usefull-links ul li a:hover{
    color: #4eaaf9;
    padding-left: 30px;
}


.single-footer-widget-style4 .recent-news {
    position: relative;
    display: block;
    overflow: hidden;
    margin-top: 6px;
}
.single-footer-widget-style4 .recent-news li {
    position: relative;
    display: block;
    padding-left: 90px;
    min-height: 90px;
    border-bottom: 1px solid #1e384e;
    padding-bottom: 20px;
    margin-bottom: 20px;
}
.single-footer-widget-style4 .recent-news li:last-child{
    border: none;
    padding-bottom: 0;
    margin-bottom: 0;
}
.single-footer-widget-style4 .recent-news li .img-holder {
    position: absolute;
    top: 0;
    left: 0;
    width: 90px;
    height: 90px;
    display: block;
    overflow: hidden;
}
.single-footer-widget-style4 .recent-news li .img-holder img{
    transition: all 0.5s ease-in-out 0.6s;
    width: 100%;
    transform: scale(1.0, 1.0); 
}
.single-footer-widget-style4 .recent-news li:hover .img-holder img{
    transform: scale(1.2, 1.2);
} 
.single-footer-widget-style4 .recent-news li .img-holder .overlay-style-one{}
.single-footer-widget-style4 .recent-news li:hover .img-holder .overlay-style-one{
    opacity: 1;    
}
.single-footer-widget-style4 .recent-news li .img-holder .overlay-style-one .content a span:before{
    position: relative;
    display: inline-block;
    width: 25px;
    height: 25px;
    color: #ffffff;
    font-size: 25px;
    line-height: 25px;
    font-weight: 400;
    filter: alpha(opacity=0);
    opacity: 0;
    transform: perspective(1200px) rotateY(-90deg) scale(5);
    transition: all 0.5s ease-in-out 0.3s;
}
.single-footer-widget-style4 .recent-news li:hover .img-holder .overlay-style-one .content a span:before{
    filter: alpha(opacity=100);
    opacity: 1;
    transform: perspective(1200px) rotateY(0deg) scale(1.0);
    transition-delay: 0.1s;   
}
.single-footer-widget-style4 .recent-news li .title-holder {
    position: relative;
    display: block;
    padding-left: 30px;
    min-height: 90px;
}
.single-footer-widget-style4 .recent-news li .title-holder p{
    color: #9fb7cb;
    line-height: 16px;
    margin: 0 0 13px;
}
.single-footer-widget-style4 .recent-news li .title-holder h5{
    font-size: 16px;
    line-height: 22px;
    font-weight: 600;
}
.single-footer-widget-style4 .recent-news li .title-holder h5 a{
    color: #ffffff;
    transition: all 200ms ease;
}
.single-footer-widget-style4 .recent-news li .title-holder h5 a:hover{
    color: #4eaaf9;
}



/*** 
=============================================
    Footer Bottom Area Style4 Css
=============================================
***/
.footer-bottom-area-style4{
    position: relative;
    display: block;
    padding: 23px 0;
    background: #031a2e;
}
.footer-bottom-content-style4 {
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
}

.copyright-text-style4{
    position: relative;
    display: block;
}
.copyright-text-style4 p{
    color: #ffffff;
    font-size: 16px;
    line-height: 22px;
    text-transform: none;
    font-family: 'Poppins', sans-serif;
    margin: 0;
}
.copyright-text-style4 p a{
    color: #4eaaf9;
    font-weight: 500;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}
.copyright-text-style4 p a:hover{
    color: #ffffff;
}

.footer-menu-style1.clr-white{
    position: relative;
    display: block;
}
.footer-menu-style1.clr-white ul li a{
    color: #ffffff;
}
.footer-bottom-content-style4 .footer-menu-style1.clr-white ul li a:hover{
    color: #4eaaf9;
}



/*** 
=============================================
    Breadcrumb area style
=============================================
***/
.breadcrumb-area {
    position: relative;
    background-attachment: scroll;
    background-position: center top;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 150px 0 108px;
    z-index: 10;
}
.breadcrumb-area::before {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.60) none repeat scroll 0 0;
    content: "";
    z-index: -1;
} 
.breadcrumb-area .inner-content {
    position: relative;
    display: block;
}
.breadcrumb-area .title {
    position: relative;
    display: block;
    padding-bottom: 9px;
}
.breadcrumb-area .title h1{
    color: #ffffff;
    font-size: 45px;
    line-height: 45px;
    font-weight: 800;
   
}

.breadcrumb-area .breadcrumb-menu {
    position: relative;
    display: block;
}
.breadcrumb-area .breadcrumb-menu .home-icon{
    position: relative;
    display: inline-block;
    padding-right: 11px;
    margin-right: 5px;
}
.breadcrumb-area .breadcrumb-menu .home-icon:before {
    position: absolute;
    top: 6px;
    right: 0;
    bottom: 5px;
    width: 1px;
    background: rgba(255, 255, 255, 0.20);
    content: "";
}
.breadcrumb-area .breadcrumb-menu .home-icon a span:before {
    position: relative;
    top: 4px;
    color: #1808c1;
    font-size: 25px;
}
.breadcrumb-area .breadcrumb-menu ul {
    position: relative;
    display: inline-block;
}
.breadcrumb-area .breadcrumb-menu ul li {
    position: relative;
    display: inline-block;
    float: none;
    color: #ffffff;
    font-size: 18px;
    line-height: 30px;
    font-weight: 700;
    text-transform: capitalize;
    transition: all 500ms ease;
    padding-right: 15px;
    margin-right: 5px;
    font-family: 'Nunito Sans', sans-serif;
}
.breadcrumb-area .breadcrumb-menu ul li:before {
    position: absolute;
    top: 0;
    bottom: 0px;
    right: -2px;
    width: 10px;
    height: 3px;
    background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAoAAAADCAYAAACqPZ51AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAA3FpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNS1jMDE0IDc5LjE1MTQ4MSwgMjAxMy8wMy8xMy0xMjowOToxNSAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0UmVmPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VSZWYjIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtcE1NOk9yaWdpbmFsRG9jdW1lbnRJRD0ieG1wLmRpZDo0N2RmNDE5Ni1hZjE3LWFmNDAtYmNhNC1kNDU3ZWQ2MjkyNDEiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6RkZERjkyMTE4MzA4MTFFOUE2QTJEOTUyRjAwNTYxRkYiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6RkZERjkyMTA4MzA4MTFFOUE2QTJEOTUyRjAwNTYxRkYiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIChXaW5kb3dzKSI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOjMyZTNhMjZhLTI0ZTAtZDk0Zi1iZDFhLTM5YzA4NmFkMjBhOSIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDo0N2RmNDE5Ni1hZjE3LWFmNDAtYmNhNC1kNDU3ZWQ2MjkyNDEiLz4gPC9yZGY6RGVzY3JpcHRpb24+IDwvcmRmOlJERj4gPC94OnhtcG1ldGE+IDw/eHBhY2tldCBlbmQ9InIiPz7zRS/WAAAAPUlEQVR42mL4//8/AxCX/0eADiBWgoqD6JkgNojjAlXwDojvImnYjcRWAik0hprCAMUgjauQNIP4DAABBgBnyGlCI3Dw5QAAAABJRU5ErkJggg==);
    content: "";
    margin: 14px 0;
}
.breadcrumb-area .breadcrumb-menu ul li:last-child:before{
    display: none;
} 
.breadcrumb-area .breadcrumb-menu ul li:last-child{
    margin-right: 0;
    padding-right: 0;
}
.breadcrumb-area .breadcrumb-menu ul li a{
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    text-transform: capitalize;
    transition: all 500ms ease;
}
.breadcrumb-area .breadcrumb-menu ul li.active{
    font-weight: 700;
}
.breadcrumb-area .breadcrumb-menu ul li a:hover{
    color: #1808c1;     
}



/*** 
=============================================
    Choosimg Area style
=============================================
***/
.choosimg-area {
    position: relative;
    display: block;
    background-attachment: fixed;
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    padding: 100px 0 70px;
    z-index: 1;
}
.choosimg-area .slide-image-box{
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    z-index: -1;
}
.choosimg-area .slide-image-box img{
    height: 100%;
    width: auto;
}

.single-choosimg-box{
    position: relative;
    display: block;
    background: #ffffff;
    border: 3px solid #1808c1;
    padding: 37px 37px 29px;
    padding-right: 20px;
    margin-bottom: 30px;
}
.single-choosimg-box .icon-holder {
    position: relative;
    display: block;
    width: 80px;
    height: 80px;
    border: 2px solid #eeeeee;
    text-align: center;
    padding: 18px 0;
    transition: all 1500ms ease 300ms;
}
.single-choosimg-box:hover .icon-holder {
    border-color: #1808c1;
    border-radius: 50%;
    transition: all 900ms ease 100ms;
    transform: perspective(0px) rotateX(0deg) rotate(360deg);
}


.single-choosimg-box .icon-holder span:before{
    font-size: 40px;
}
.single-choosimg-box .text-holder{
    position: relative;
    display: block;
    padding-top: 24px;
}
.single-choosimg-box .text-holder h3{
    color: #131313;
    margin: 0 0 17px;
}
.single-choosimg-box .text-holder p{
    margin: 0;
}



/*** 
=============================================
    Vision Content Area style
=============================================
***/
.vision-content-area {
    position: relative;
    display: block;
    z-index: 3;
    margin-bottom: -215px;
}
.video-holder-vision-content .single-item{
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;    
}

.video-holder-box-style4 {
    position: relative;
    display: block;
}
.video-holder-box-style4 .img-holder {
    position: relative;
    display: block;
    max-width: 585px;
    width: 100%;
}
.video-holder-box-style4 .img-holder img{
    width: 100%;
}
.video-holder-box-style4 .img-holder .icon-holder{
    position: absolute;
    top: 0px;
    left: 0px;
    bottom: 0px;
    right: 0px;
    content: "";
    background: rgba(255, 255, 255, 0.02);
    transition: all 900ms ease;
    z-index: 3;
    opacity: 1;    
}
.video-holder-box-style4 .img-holder .icon-holder .icon{
    display: table;
    width: 100%;
    height: 100%;
}
.video-holder-box-style4 .img-holder .icon-holder .icon .inner{
    display: table-cell;
    vertical-align: middle;
    text-align: center;
}
.video-holder-box-style4 .img-holder .icon-holder .icon .inner a {
    position: relative;
    display: inline-block;
    height: 90px;
    width: 90px;
    border-radius: 50%;
    text-align: center;
    transition: all 500ms ease;
}
.video-holder-box-style4 .img-holder .icon-holder .icon .inner a span:before {
    position: relative;
    display: block;
    background: #ffffff;
    width: 100%;
    height: 100%;
    color: #1808c1;
    font-size: 40px;
    line-height: 90px;
    border-radius: 50%;
    -webkit-animation: pulse 2s infinite;
    -o-animation: pulse 2s infinite;
    animation: pulse 2s infinite;
    transition: all 1s ease;
}


.vision-content-box{
    position: relative;
    display: block;
    overflow: hidden;
    background: #1808c1;
    max-width: 585px;
    width: 100%;
    text-align: center;
    padding: 71px 40px 63px;
    z-index: 1;
}
.vision-content-box .border-box{
    position: relative;
    display: block;
    width: 8px;
    height: 13px;
    margin: 0 auto;
}
.vision-content-box .border-box:before{
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: #131313;
    content: "";
}
.vision-content-box .border-box:after{
    position: absolute;
    top: 0;
    right: 0;
    width: 3px;
    height: 100%;
    background: #131313;
    content: "";
}
.vision-content-box span{
    display: block;
    color: #131313;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    margin: 13px 0 0;
}
.vision-content-box h1{
    color: #131313;
    font-size: 40px;
    line-height: 48px;
    font-weight: 700;
    text-transform: uppercase;
    margin: 23px 0 14px;
}
.vision-content-box p{
    color: #131313;
    margin: 0;
}

.vision-content-box .icon-holder{
    position: absolute;
    top: -50px;
    right: -200px;
    width: 354px;
    height: 347px;
    background: url(/wp-content/themes/electrical/css/../images/icon/icon-holder-bg.png);
    content: "";
    z-index: -1;
}
.vision-content-box .icon-holder span:before {
    color: #131313;
    font-size: 70px;
    line-height: 70px;
    font-weight: 400;
    display: block;
    padding: 70px 0;
    padding-right: 185px;
}


.video-holder-vision-content.owl-carousel .owl-stage-outer{
	padding: 0px 0px 0px;
}
.video-holder-vision-content .owl-dots {
    position: relative;
    display: block !important;
    margin-top: 40px !important;
    line-height: 14px;
}
.video-holder-vision-content .owl-dots .owl-dot{
    position: relative;
	display: inline-block;
	width: 14px;
	height: 14px;
    background: transparent;
    border: 2px solid #4c4c4c;
	margin: 0px 5px;
	padding: 0px;
	border-radius: 50%;
	transition: all 500ms ease;
}
.video-holder-vision-content .owl-dots .owl-dot span{
	display:none;	
}
.video-holder-vision-content .owl-dots .owl-dot:before{
    position: absolute;
    top: 1px;
    left: 1px;
    bottom: 1px;
    right: 1px;
    content: "";
    background: #1808c1; 
    border-radius: 50%;
    opacity: 0;
    transition: all 500ms ease;
}
.video-holder-vision-content .owl-dots .owl-dot.active{
    border: 2px solid transparent;
}
.video-holder-vision-content .owl-dots .owl-dot.active:before{
    opacity: 1;    
}



/*** 
=============================================
    Team Area style
=============================================
***/
.team-area {
    position: relative;
    display: block;
    background-attachment: fixed;
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    padding: 315px 0 70px;
    z-index: 1;
}
.team-area::before {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.90) none repeat scroll 0 0;
    content: "";
    z-index: -1;
} 

.expert_experienced_team .tabs_in{
    padding: 0px 0px;
}
.expert_experienced_team ul li.menu{
    position: relative; 
    background: #fff; 
    list-style: none; 
    float: left; 
    margin:0px 15px; 
    margin-bottom: 30px;
    z-index: 999; 
}
.expert_experienced_team ul li.menu:first-child{ 
    margin-left: 0px;
}
.expert_experienced_team ul li.menu:last-child{ 
    margin-right: 0px;
}
.expert_experienced_team ul li.menu.active{ 
    position: relative; 
    width: 570px;
}
.expert_experienced_team ul li.menu:hover{ 
    cursor: pointer;
}


.expert_experienced_team ul li.menu a{
    position: relative; 
    float: left; 
}

.expert_experienced_team .expert_content{ 
    position: relative; 
    display: none; 
    margin-left:280px; 
    padding: 45px 35px 17px;
    z-index: 0; 
}
.expert_experienced_team .expert_content::before{    
    position: absolute;
    width: 15%;
    height: 100%;
    background: -webkit-gradient(linear,left,left,from(#fff),color-stop(100%,rgba(17,28,85,0)),to(rgba(17,28,85,0)));
    background: -webkit-linear-gradient(right,#fff 0%,rgba(17,28,85,0) 100%,rgba(17,28,85,0) 100%);
    background: linear-gradient(to left,#fff 0%,rgba(17,28,85,0) 100%,rgba(17,28,85,0) 100%);
    content: '';
    left: -52px;
    top: 0;
    -webkit-transition: .5s;
    transition: .5s;
}
.expert_experienced_team .menu.active .expert_content{ 
    display: block; 
    transition: .5s ease-in;
}
.expert_experienced_team .expert_content span{ 
    font-size: 16px; 
    font-weight: 700; 
    color: #131313; 
    line-height: 24px; 
    background: #1808c1; 
    padding:  5px 12px;
}
.expert_experienced_team .expert_content h2 a{ 
    text-decoration: none; 
    width: 100%; 
    font-size: 20px; 
    font-weight: 700; 
    color: #131313; 
    padding: 15px 0px 40px; 
}
.expert_experienced_team .expert_content h2 { 
    position: relative; 
    line-height: 32px; 
}
.expert_experienced_team .expert_content h2::before{
    position: absolute; content: url(/wp-content/themes/electrical/css/../images/icon/dot-line-left.png);
    top: 36px; 
}
.expert_experienced_team .expert_content p{
    font-size: 16px; 
    font-weight: 400; 
    color: #848484; 
    line-height: 25px; 
}
.expert_experienced_team .expert_content ul.social_media{ 
    position: absolute; 
    z-index: 0; 
    top: 18%; 
    left: -47px;
} 
.expert_experienced_team .expert_content ul.social_media li{ 
    transition: .5s ease-in; 
    display: block; 
    float: none; 
    width: 52px; 
    height: 52px;  
    background: #fff;
    border-radius: 50px; 
    box-shadow: 0px 0px 12px 0px rgba(0,0,12,.1);
    padding: 16px 0px 0px 19px; 
    margin: 10px 0px; 
}
.expert_experienced_team .expert_content ul.social_media li a i{
    transition: .5s ease-in; 
    color: #848484; 
    font-size: 16px; 
    line-height: 18px;
}
.expert_experienced_team .expert_content ul.social_media li:hover a i{ 
    color: #131313;
}
.expert_experienced_team .expert_content ul.social_media li:hover{ 
    cursor: pointer; 
    background: #1808c1; 
}



/*** 
=============================================
    Brand Area Style4 Css      
=============================================
***/
.brand-area.style4{
    background: #ffffff;
    padding-bottom: 93px;
}
.brand-area.style4 .brand-items-carousel.owl-carousel .owl-stage-outer {
    position: relative;
    overflow: hidden;
    padding-bottom: 0px;
}
.brand-area.style4 .brand-items-carousel.owl-carousel .owl-nav {
    position: absolute;
    top: -105px;
    right: -8px;
    margin: 0 !important;
}
.brand-area.style4 .single-brand-item a {
    display: block;
    background: #ffffff;
    text-align: center;
    border: 2px solid #eeeeee;
    transition: all 700ms ease 200ms;
}
.brand-area.style4 .single-brand-item a:hover{
    box-shadow: none;
    border-color: #1808c1;
}
.brand-area.style4 .single-brand-item a img{
    width: auto;
    filter: brightness(0%); 
    transition: all 900ms ease 200ms;
    transform: perspective(1200px) rotateY(0deg) translateZ(0px);
}
.brand-area.style4 .single-brand-item:hover a img{
    filter: brightness(100%); 
    transform: perspective(1200px) rotateY(360deg) translateZ(0px);
}
.brand-area.style4 .single-brand-item h3{
    position: relative;
    display: block;
    padding-top: 13px;
}



/*** 
=============================================
    Coming Soon Content Area style
=============================================
***/
.coming-soon-content-area {
    position: relative;
    display: block;
    background-attachment: fixed;
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    padding: 100px 0 356px;
    z-index: 1;
}
.coming-soon-content{
    position: relative;
    display: block;
}
.coming-soon-content .logo-box{
    position: relative;
    display: block;
    padding-bottom: 30px;    
}
.coming-soon-content .logo-box a{
    display: inline-block;
}
.coming-soon-content .title{
    color: #ffffff;
    font-size: 48px;
    line-height: 60px;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
}



/*** 
=============================================
    Timer Area style
=============================================
***/
.timer-area{
    position: relative;
    display: block;
    z-index: 1;
}
.timer-box {
    position: relative;
    display: block;
    overflow: hidden;
    background: #1808c1;
    max-width: 770px;
    width: 100%;
    margin: 0 auto;
    padding: 74px 110px 72px;
    margin-top: -270px;
    z-index: 3;
}
.timer-box h1{
    color: #131313;
    font-size: 48px;
    line-height: 58px;
    font-weight: 700;
    text-transform: capitalize;
    margin: 0 0 47px;
}
.countdown-timer {}
.countdown-timer .default-coundown {}
.countdown-timer .default-coundown .box {
    overflow: hidden;
}
.countdown-timer li {
    position: relative;
    display: inline-block;
    float: none;
    padding: 0;
    text-align: center;
    margin: 0 22px;
}
.countdown-timer li:first-child{
    margin-left: 0;
}
.countdown-timer li:last-child{
    margin-right: 0;
}

.countdown-timer li span.days,
.countdown-timer li span.hours,
.countdown-timer li span.minutes,
.countdown-timer li span.seconds {
    position: relative;
    display: block;
    background: #ffffff;
    width: 100px;
    height: 100px;
    color: #131313;
    font-size: 48px;
    line-height: 100px;
    font-weight: 700;
    text-align: center;
    border-radius: 0px;
    font-family: 'Poppins', sans-serif;
}
.countdown-timer li span.hours{}
.countdown-timer li span.minutes{}
.countdown-timer li span.seconds{}

.countdown-timer li span.timeRef {
    color: #131313;
    font-size: 20px;
    line-height: 20px;
    font-weight: 600;
    text-transform: capitalize;
    margin-top: 17px;
    display: block;
    font-family: 'Poppins', sans-serif;
}
.countdown-timer li span.timeRef.clr-1{}
.countdown-timer li span.timeRef.clr-2{}
.countdown-timer li span.timeRef.clr-3{}

.timer-box .subscribe-box{
    position: relative;
    display: block;
    margin-top: 39px;
}
.timer-box .subscribe-box .subscribe-form {
    position: relative;
    display: block;
    width: 100%;
}
.timer-box .subscribe-box .subscribe-form input[type="email"]{
    position: relative;
    display: block;
    background: #ffffff;
    border: 1px solid #ffffff;
    color: #828282;
    font-size: 16px;
    font-weight: 400;
    width: 100%;
    height: 60px;
    margin-bottom: 0px;
    padding: 0 30px;
    padding-right: 185px;
    transition: all 500ms ease;
}
.timer-box .subscribe-box .subscribe-form input::-webkit-input-placeholder {
    color: #848484;
}
.timer-box .subscribe-box .subscribe-form input:-moz-placeholder {
    color: #848484;
}
.timer-box .subscribe-box .subscribe-form input::-moz-placeholder {
    color: #848484;
}
.timer-box .subscribe-box .subscribe-form input:-ms-input-placeholder {
    color: #848484;
}
.timer-box .subscribe-box .subscribe-form button {
    position: absolute;
    top: 0;
    right: 0;
    color: #131313;
    font-size: 16px;
    line-height: 60px;
    font-weight: 600;
    text-transform: capitalize;
    background: #ffffff;
    border-left: 1px solid #ededed;
    width: 170px;
    font-family: 'Poppins', sans-serif;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}
.timer-box .subscribe-box .subscribe-form input[type="email"]:focus {
    color: #131313;
    border: 1px solid #131313;
    background: #ffffff;
}
.timer-box .subscribe-box .subscribe-form input[type="email"]:focus + button, 
.timer-box .subscribe-box .subscribe-form button:hover {
    background: #131313;
    color: #fff;
}
.timer-box .subscribe-box .text{
    position: relative;
    display: block;
    padding-top: 14px;
}
.timer-box .subscribe-box .text p{
    color: #131313;
    font-size: 16px;
    margin: 0;
}
.timer-box .subscribe-box .text p span{
    font-weight: 600;
}



/*** 
=============================================
    Breadcrumb Area Style2 Css
=============================================
***/
.breadcrumb-area.style2 {
    position: relative;
    display: block;
    background: #131313;
    background-position: top left;
    background-attachment: scroll;
    background-repeat: no-repeat;
    background-size: 100%;
	padding-top: 145px;
	padding-bottom: 120px;
    z-index: 1;
}
.breadcrumb-area.style2::before {
    
}
.breadcrumb-area.style2 .title h1{
    text-shadow: 0px 0px 8px rgba(0,0,0,0.2);
}
.breadcrumb-area.style2 .breadcrumb-menu .home-icon a span:before {
    
}
.breadcrumb-area.style2 .breadcrumb-menu .home-icon:before {
    background: rgba(0, 0, 0, 0.20);
}
.breadcrumb-area.style2 .breadcrumb-menu ul li {
    
}
.breadcrumb-area.style2 .breadcrumb-menu ul li:before {
    
}
.breadcrumb-area.style2 .breadcrumb-menu ul li a {
    
}
.breadcrumb-area.style2 .breadcrumb-menu ul li a:hover {
  
}
.estimation-box {
    position: absolute;
    top: -150px;
    right: 0;
    width: 250px;
    height: 167px;
    text-align: center;
    z-index: 1;
    padding: 52px 0;
}
.estimation-box:before{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(/wp-content/themes/electrical/css/../images/icon/estimation-box-bg.png);
    background-repeat: no-repeat;
    content: "";
    z-index: -1;
}
.estimation-box h5{
    color: #131313;
    font-size: 16px;
    line-height: 26px;
    font-weight: 700;
    text-transform: capitalize;
}



/*** 
=============================================
    Faq Area style
=============================================
***/
.faq-area{
    position: relative;
    display: block;
    padding: 100px 0 80px;
}
.faq-content-box{}
.faq-content-box .top{
    position: relative;
    display: block;
    padding-bottom: 52px;
}
.faq-content-box .top .icon-holder{
    position: relative;
    display: block;
    width: 120px;
    height: 120px;
    border: 2px solid #1808c1;
    margin: 0 auto 23px;
    text-align: center;
    border-radius: 50%;
}
.faq-content-box .top .icon-holder span:before{
    display: block;
    color: #1808c1;
    font-size: 60px;
    line-height: 116px;
}
.faq-content-box .top p{
    color: #131313;
    font-size: 18px;
    line-height: 28px;
    margin: 0;
}
.faq-content-box .top p a{
    color: #1808c1;
}

.accordion-box.style2 .accordion .accord-btn.active {
    position: relative;
    background: #131313;
}
.accordion-box.style2 .accordion .accord-btn.active:before{
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: #1808c1;
    content: "";
}
.accordion-box.style2 .accordion .accord-btn.active:after {
    color: #1808c1;
}



/*** 
=============================================
    services style1 Area service Style      
=============================================
***/
.services-style1-area.service-page{
    background: #ffffff;
    padding-top: 132px;
    padding-bottom: 0px;
}
.services-style1-area.service-page .single-service-style1 {
    position: relative;
    display: block;
    margin-bottom: 72px;
}



/*** 
=============================================
    Services Style4 Area service Page Css      
=============================================
***/
.services-style4-area.service-page{
    
}
.single-service-style4.yellow .icon-holder {
    background: #1808c1;
}
.single-service-style4.yellow .icon-holder:before {
    color: #1808c1;
}
.single-service-style4.yellow .icon-holder span:before {
    color: #131313;
}
.single-service-style4.yellow .text-holder h3:after {
    background: #1808c1;
}
.single-service-style4.yellow:hover .text-holder .readmore a span:before{
    color: #ffffff;
    border-color: #1808c1;
    background: #1808c1;
}
.service-discount-box.yellow .icon-holder span:before {
    color: #131313;
    background: #1808c1;
}
.service-discount-box.yellow .text {
    background: #1808c1;
}
.service-discount-box.yellow .text p{
    color: #131313;
}
.service-discount-box.yellow .text h3{
    color: #131313;
}
.service-discount-box.yellow a:hover{
    color: #1808c1;
}



/*** 
=============================================
    Appointment Faq Area Service Page Css    
=============================================
***/
.appointment-faq-area.service-page{
    position: relative;
    display: block;
}
.appointment-faq-area.service-page .appointment-form-box.style2 .sec-title-style1 {
    padding-bottom: 52px;
}
.appointment-faq-area.service-page .appointment-form-box.style2 form button {
    color: #131313;
    background: #1808c1;
    border: 2px solid #1808c1;
}
.appointment-faq-area.service-page .appointment-form-box.style2 form .input-box input[type=text]:focus{
    border-color: #1808c1;
}
.appointment-faq-area.service-page .appointment-form-box.style2 form .input-box input[type=email]:focus{
    border-color: #1808c1;
}
.appointment-faq-area.service-page .appointment-form-box.style2 form .input-box textarea:focus{
    border-color: #1808c1;
}
.appointment-faq-area.service-page .appointment-form-box.style2 .dropdown-item.active,
.appointment-faq-area.service-page .appointment-form-box.style2 .dropdown-item:active {
    background: #1808c1;
}
.appointment-faq-area.service-page .appointment-form-box.style2 .dropdown-item:hover {
    background: #1808c1;
}
.appointment-faq-area.service-page .accordion-box .accordion {
    margin-bottom: 17px;
}



/*** 
=============================================
    Testimonial Area Style4 Service Page     
=============================================
***/
.testimonial-area-style4.service-page {
    padding: 100px 0 60px;
    background: #f5f5f5;
}
.testimonial-area-style4.service-page:before{
    display: none;
}
.testimonial-area-style4.service-page .single-testimonial-item-style4 .text-holder {
    padding: 48px 40px 77px;
}
.testimonial-area-style4.service-page .single-testimonial-item-style4 .text-holder:before {
    display: none;
}
.testimonial-area-style4.service-page .single-testimonial-item-style4 .img-holder {
    position: relative;
    display: block;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    margin: -45px auto 0;
    z-index: 3;
}
.testimonial-area-style4.service-page .single-testimonial-item-style4:hover .text-holder .quote-icon span:before{
    color: #1808c1;    
}
.testimonial-area-style4.service-page .single-testimonial-item-style4 .text-holder .text:before {
    position: absolute;
    bottom: -10px;
    font-size: 120px;
    line-height: 120px;
}
.testimonial-area-style4.service-page .single-testimonial-item-style4 .text-holder .client-info span {
    color: #1808c1;
    font-weight: 700;
}



/*** 
=============================================
    Single Service Area style
=============================================
***/
.single-service-area{
    position: relative;
    display: block;
    padding: 100px 0 100px;
}
.single-service-top {
    position: relative;
    display: block;
}
.single-service-top .sec-title-style1 {
    padding-bottom: 32px;
}
.single-service-top .sec-title-style1 .title {
    font-size: 30px;
    line-height: 40px;
}
.single-service-top .sec-title-style1 .text {
    margin: 13px 0 0;
}

.single-service-image-box{
    position: relative;
    display: block;
}
.single-service-image-box img{
    width: 100%;
}
.single-service-top .inner .text-box{
    position: relative;
    display: block;
    padding: 34px 0 26px;
}


.Servicesimg-content{
    position: relative;
    display: block;
}
.single-Servicesimg-box{
    position: relative;
    display: block;
    max-width: 370px;
    width: 100%;
    margin: 0 auto 40px;
}
.single-Servicesimg-box .inner{
    position: relative;
    display: block;
    padding-top: 20px;
    padding-bottom: 30px;
    overflow: hidden;
}
.single-Servicesimg-box .static-content{
    position: relative;
    display: block;
    background: #1808c1;
}
.single-Servicesimg-box .static-content .icon-holder {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 85px;
    height: 85px;
    border: 3px solid #1808c1;
    margin: -20px auto 0;
    background: #ffffff;
    z-index: 5;
}
.single-Servicesimg-box .static-content .icon-holder span:before {
    position: relative;
    display: block;
    color: #131313;
    font-size: 50px;
    line-height: 79px;
}
.single-Servicesimg-box .static-content .title{
    position: relative;
    display: block;
    padding: 100px 30px 65px;
}
.single-Servicesimg-box .static-content .title h3{
    color: #131313;
    margin: 0 0 7px;
}
.single-Servicesimg-box .static-content .title p{
    color: #131313;
    margin: 0;
}
.single-Servicesimg-box .static-content .readmore a span:before {
    position: absolute;
    left: 0;
    bottom: -30px;
    right: 0;
    margin: 0 auto;
    display: block;
    background: #1808c1;
    width: 60px;
    height: 60px;
    border: 2px solid #131313;
    border-radius: 50%;
    color: #131313;
    font-size: 16px;
    line-height: 56px;
    text-align: center;
    z-index: 5;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}
.single-Servicesimg-box:hover .static-content .readmore a span:before{
    border-color: #1808c1; 
}

.single-Servicesimg-box .overlay {
    position: absolute;
    top: 20px;
    left: 0px;
    bottom: 30px;
    right: 0px;
    background: transparent;
    opacity: 0;
    transform: scale(0.9);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}
.single-Servicesimg-box:hover .overlay{
    opacity: 1;  
    transform: scale(1.0);  
}
.single-Servicesimg-box .overlay .img-box{
    position: relative;
    display: block;
    overflow: hidden;
    z-index: 1;
}
.single-Servicesimg-box .overlay .img-box:before{
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgba(18, 18, 18, 0.90) none repeat scroll 0 0;
    content: "";
    z-index: 1;    
}
.single-Servicesimg-box .overlay .img-box img{
    width: 100%;
}
.single-Servicesimg-box .overlay .img-box .text {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    display: block;
    padding: 92px 30px 0;
    text-align: center;
    z-index: 3;
}
.single-Servicesimg-box .overlay .img-box .text p{
    color: #ababab;
    margin: 0;
}


.emergency-repairs-box {
    position: relative;
    display: block;
    padding-top: 24px;
    padding-bottom: 60px;
}
.emergency-repairs-box .title{
    position: relative;
    display: block;
    padding-bottom: 32px;
}
.emergency-repairs-box .title h2{
    color: #131313;
    font-size: 24px;
    line-height: 30px;
    font-weight: 700;
    text-transform: uppercase;
    margin: 0 0 17px;
}
.emergency-repairs-box .title p{
    margin: 0;
}
.emergency-repairs-content{
    position: relative;
    display: block;
}
.emergency-repairs-content ul{
    position: relative;
    display: block;
    overflow: hidden;
    margin-top: -9px;
}
.emergency-repairs-content ul li{
    position: relative;
    display: block;
    line-height: 30px;
    padding-left: 40px;
    margin-bottom: 11px;
    color: #848484;
    font-size: 16px;
}
.emergency-repairs-content ul li:last-child{
    margin-bottom: 0;
}
.emergency-repairs-content ul li:before{
    position: absolute;
    top: 0;
    left: 0;
    font-family: 'icomoon';    
    content: "\e990"; 
    color: #1808c1;
    font-size: 24px;
}

.emergency-contact {
    position: relative;
    display: block;
    padding: 36px 0 32px;
    background: #ddd;
    text-align: center;
    z-index: 1;
}
.emergency-contact:before{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(/wp-content/themes/electrical/css/../images/pattern/emergency-contact-bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    content: "";
    z-index: -1;
}
.emergency-contact .icon-holder{
    position: relative;
    display: block;
    padding-bottom: 15px;
}
.emergency-contact .icon-holder span:before{
    color: #1808c1;
    font-size: 65px;
    line-height: 65px;
}
.emergency-contact h3{
    color: #ffffff;
    font-size: 18px;
    margin: 0 0 8px;
}
.emergency-contact h2{
    color: #1808c1;
    font-size: 24px;
    font-weight: 600;
    margin: 0 0 20px;
}
.emergency-contact a{
    color: #ffffff;
}

.single-service-before-after-image{
    position: relative;
    display: block;
}
.single-service-before-after-image .image-box{
    position: relative;
    display: block;
    overflow: hidden;
}
.single-service-before-after-image .image-box img{
    width: 100%;
}
.single-service-before-after-image .image-box .before{
    position: absolute;
    left: 0;
    bottom: 0;
    height: 50px;
    width: 150px;
    text-align: center;
    z-index: 1;
}
.single-service-before-after-image .image-box .before:before {
    position: absolute;
    top: 0;
    left: -15px;
    bottom: 0;
    right: 15px;
    content: "";
    background: #1808c1;
    -moz-transform: skew(30deg, 0deg);
    -webkit-transform: skew(30deg, 0deg);
    -o-transform: skew(30deg, 0deg);
    -ms-transform: skew(30deg, 0deg);
    transform: skew(30deg, 0deg);
    z-index: -1;
}
.single-service-before-after-image .image-box .before h6 {
    color: #131313;
    font-size: 14px;
    line-height: 50px;
    font-weight: 600;
    text-transform: uppercase;
    margin-left: -20px;
}

.single-service-before-after-image .image-box.matop30{
    margin-top: 30px;    
}
.single-service-before-after-image .image-box .after{
    position: absolute;
    right: 0;
    bottom: 0;
    height: 50px;
    width: 150px;
    text-align: center;
    z-index: 1;
}
.single-service-before-after-image .image-box .after:before {
    position: absolute;
    top: 0;
    right: -15px;
    bottom: 0;
    left: 15px;
    content: "";
    background: #1808c1;
    -moz-transform: skew(-30deg, 0deg);
    -webkit-transform: skew(-30deg, 0deg);
    -o-transform: skew(-30deg, 0deg);
    -ms-transform: skew(-30deg, 0deg);
    transform: skew(-30deg, 0deg);
    z-index: -1;
}
.single-service-before-after-image .image-box .after h6 {
    color: #131313;
    font-size: 14px;
    line-height: 50px;
    font-weight: 600;
    text-transform: uppercase;
    margin-right: -20px;
}


.single-vertical-carousel{
    position: relative;
    display: block;
    z-index: 1;
}
.single-vertical-carousel:before {
    position: absolute;
    top: 0;
    left: 22px;
    bottom: 0;
    width: 1px;
    content: "";
    background: #eeeeee;
}



.highlights-block{
    position: relative;
    display: block;
}
.highlights-block .inner-box{
    position: relative;
    display: block;
    padding-left: 75px;
}
.highlights-block .inner-box .count-box{
    position: absolute;
    top: 99px;
    left: 0;
    width: 45px;
}
.highlights-block.middle .inner-box .count-box{
    top: 64px;    
}
.highlights-block.last .inner-box .count-box{
    top: 29px;    
}
.highlights-block .inner-box .count-box .number{
    position: relative;
    display: block;
    width: 30px;
    height: 30px;
    margin: 0 auto;
    border-radius: 50%;
    border: 2px solid #eeeeee;
    background: #ffffff;
    text-align: center;
    color: #848484;
    font-size: 14px;
    line-height: 26px;
    font-weight: 600;
    text-transform: uppercase;
    font-family: 'Poppins', sans-serif;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}
.highlights-block:hover .inner-box .count-box .number{
    color: #131313;
    background: #1808c1;
    border-color: #1808c1;
}
.highlights-block .inner-box .content {
    position: relative;
    display: block;
    border-bottom: 1px solid #eeeeee;
    padding-bottom: 22px;
    margin-bottom: 30px;
}
.highlights-block.last .inner-box .content{
    border-bottom: 0px solid;
    padding-bottom: 0px;
    margin-bottom: 0px;    
}
.highlights-block .inner-box .content .icon{
    position: relative;
    display: block;
    padding-bottom: 20px;
}
.highlights-block .inner-box .content .icon span:before{
    font-size: 45px;
}
.highlights-block .inner-box .content h3{
    margin: 0 0 10px;    
}
.highlights-block .inner-box .content h3 a{
    color: #27282c;
}
.highlights-block .inner-box .content .text{
    display: block;
}

.single-service-area .slick-dots{
	display:none !important;
}
.single-service-area .prev-btn {
    position: absolute;
    top: 0;
    left: 0px;
    width: 45px;
    height: 45px;
    color: #c8c8c8;
    background: none;
    border: 2px solid #eeeeee;
    z-index: 10;
    font-size: 30px;
    text-align: center;
    cursor: pointer;
    margin-top: 0px;
    line-height: 40px;
    border-radius: 0;
    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;
}
.single-service-area .next-btn{
    position: absolute;
    left: 0px;
    bottom: 0;
	height: 45px;
    width: 45px;
	color: #c8c8c8;
	background: none;
	border: 2px solid #eeeeee;
	z-index: 10;
	font-size: 30px;
	text-align: center;
	cursor: pointer;
	line-height: 40px;
	border-radius: 0px;
	margin-bottom: 0;
	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;
}
.single-service-area .next-btn:hover,
.single-service-area .prev-btn:hover{
	color:#27282c;
    background: #1808c1;
    border-color: #1808c1;
}




.single-service-sidebar {
    position: relative;
    display: block;
    max-width: 370px;
    width: 100%;
    z-index: 1;
}
.single-service-sidebar .single-sidebar{
    position: relative;
    display: block;
    margin-bottom: 50px;
}
.single-service-sidebar .single-sidebar .service-title{
    position: relative;
    display: block;
    text-align: center;
    padding-bottom: 30px;
    margin-top: -7px;
}
.single-service-sidebar .single-sidebar .service-title h3{
    line-height: 18px;
    text-transform: uppercase;
    margin: 0 0 18px;
}

.single-service-sidebar .single-sidebar .service-title .border-box{
    position: relative;
    display: block;
    width: 160px;
    height: 5px;
    background: transparent;
    margin: 0 auto;
}
.single-service-sidebar .single-sidebar .service-title .border-box .left-border{
    position: absolute;
    top: 0;
    left: 0;
    width: 70px;
    height: 5px;
}
.single-service-sidebar .single-sidebar .service-title .border-box .left-border:before{
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 5px;
    height: 5px;
    background: #1808c1;
    border-radius: 50%;
    content: "";    
}
.single-service-sidebar .single-sidebar .service-title .border-box .left-border:after{
    position: absolute;
    top: 0;
    right: 10px;
    bottom: 0;
    width: 5px;
    height: 5px;
    background: #1808c1;
    border-radius: 50%;
    content: "";    
}
.single-service-sidebar .single-sidebar .service-title .border-box .left-border span {
    position: relative;
    display: block;
    width: 50px;
    height: 1px;
    background: #1808c1;
    margin: 2px 0;
    float: left;
}

.single-service-sidebar .single-sidebar .service-title .border-box .right-border{
    position: absolute;
    top: 0;
    right: 0;
    width: 70px;
    height: 5px;
}
.single-service-sidebar .single-sidebar .service-title .border-box .right-border:before{
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 5px;
    height: 5px;
    background: #1808c1;
    border-radius: 50%;
    content: "";    
}
.single-service-sidebar .single-sidebar .service-title .border-box .right-border:after{
    position: absolute;
    top: 0;
    left: 10px;
    bottom: 0;
    width: 5px;
    height: 5px;
    background: #1808c1;
    border-radius: 50%;
    content: "";    
}
.single-service-sidebar .single-sidebar .service-title .border-box .right-border span {
    position: relative;
    display: block;
    width: 50px;
    height: 1px;
    background: #1808c1;
    margin: 2px 0;
    float: right;
}


.sidebar-contact-box{
    position: relative;
    display: block;
    background-attachment: scroll;
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    padding: 50px 55px 95px;
    -webkit-box-shadow: 0px 7px 8px 0px #cccccc; 
    box-shadow: 0px 7px 8px 0px #cccccc;
    z-index: 1;
}
.sidebar-contact-box::before {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgba(18, 18, 18, 0.90) none repeat scroll 0 0;
    content: "";
    z-index: -1;
}
.sidebar-contact-box .inner-content{
    position: relative;
    display: block;
}
.sidebar-contact-box .inner-content .icon-holder{
    position: relative;
    display: block;
    padding-bottom: 24px;
}
.sidebar-contact-box .inner-content .icon-holder span:before{
    color: #1808c1;
    font-size: 90px;
    line-height: 90px;
}
.sidebar-contact-box .inner-content h3{
    color: #ffffff;
    font-size: 20px;
    line-height: 30px;
    font-weight: 600;
}
.sidebar-contact-box .inner-content .button {
    position: relative;
    display: block;
    padding-top: 22px;
}
.sidebar-contact-box .inner-content .button a {
    position: relative;
    display: block;
    background: #1808c1;
    color: #fff;
    font-size: 16px;
    line-height: 60px;
    font-weight: 600;
    text-transform: capitalize;
    transition: all 200ms linear;
    transition-delay: 0.1s;
    font-family: 'Poppins', sans-serif;
}
.sidebar-contact-box .inner-content .button a:hover{
    color: #ffffff;
    background: #131313;
}


.single-service-sidebar .service-menu{
    position: relative;
    display: block;
    background: transparent;
    border: 1px solid #eeeeee;
    padding: 0 29px 39px;
    z-index: 1;    
}
.single-service-sidebar .service-menu:before{
    position: absolute;
    top: -45px;
    left: 30px;
    bottom: 0;
    right: 30px;
    background: #ffffff;
    content: "";
    z-index: -1;
}
.single-service-sidebar .service-pages{
    position: relative;
    display: block;
}
.single-service-sidebar .service-pages li{
    position: relative;
    display: block;
    margin-bottom: 10px;
    transition: all 500ms ease;
}
.single-service-sidebar .service-pages li:last-child{
    margin-bottom: 0;
}
.single-service-sidebar .service-pages li a {
    position: relative;
    display: block;
    padding-left: 50px;
    border-bottom: 1px solid #eeeeee;
    transition: all 500ms ease;
    font-family: 'Poppins', sans-serif;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}
.single-service-sidebar .service-pages li:hover a,
.single-service-sidebar .service-pages li.active a{
    border-color: #1808c1;
}
.single-service-sidebar .service-pages li a .icon{
    position: absolute;
    top: 0;
    left: 0;
    width: 50px;
    height: 50px;
    border: 1px solid #eeeeee;
    text-align: center;
    border-bottom: none;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}
.single-service-sidebar .service-pages li:hover a .icon,
.single-service-sidebar .service-pages li.active a .icon{
    background: #131313;
    border-color: #131313;
}
.single-service-sidebar .service-pages li a .icon span:before{
    display: block;
    color: #131313;
    font-size: 12px;
    line-height: 48px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}
.single-service-sidebar .service-pages li:hover a .icon span:before,
.single-service-sidebar .service-pages li.active a .icon span:before{
    color: #1808c1;
}
.single-service-sidebar .service-pages li a .title{
    position: relative;
    display: block;
    padding-left: 20px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
    height: 50px;
    display: flex;
    align-items: center;
}
.single-service-sidebar .service-pages li:hover a .title,
.single-service-sidebar .service-pages li.active a .title{
    background: #1808c1;    
}
.single-service-sidebar .service-pages li a .title h3{
    color: #131313;
    font-size: 15px;
    line-height: 15px;
    font-weight: 600;
    text-transform: uppercase;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.single-service-sidebar .service-pack-download {
    position: relative;
    display: block;
}
.single-service-sidebar .service-pack-download li {
    position: relative;
    display: block;
    background: #131313;
    transition: all 500ms ease;
    padding: 23px 40px 23px;
}
.single-service-sidebar .service-pack-download li .icon-holder {
    width: 65px;
    border-right: 1px solid #272727;
    text-align: left;
}
.single-service-sidebar .service-pack-download li .icon-holder span:before {
    position: relative;
    top: 0px;
    color: #1808c1;
    font-size: 45px;
    line-height: 45px;
}
.single-service-sidebar .service-pack-download li .icon-holder,
.single-service-sidebar .service-pack-download li .title-holder{
    display: table-cell;
    vertical-align: middle;
}
.single-service-sidebar .service-pack-download li .title-holder{
    padding-left: 20px;
}
.single-service-sidebar .service-pack-download li .title-holder h3{
    color: #ffffff;
    font-size: 18px;
    margin: 0 0 1px;
}
.single-service-sidebar .service-pack-download li .title-holder a{
    color: #848484;
    font-size: 16px;
    font-weight: 600;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}
.single-service-sidebar .service-pack-download li .title-holder a:hover{
    color: #1808c1;
}



/*** 
=============================================
    Main Project Area style
=============================================
***/
.main-project-area {
    position: relative;
    display: block;
    background: #ffffff;
    padding: 100px 0 100px;
    text-align: center;
}
.main-project-area .project-filter {
    display: inline-block;
    border-right: 1px solid #eeeeee;
    margin-bottom: 50px;
}
.main-project-area .project-filter li {
    margin-right: -2px;
}
.main-project-area .project-filter li + li {
    float: none;
    margin-left: -2px;
    margin-right: -2px;
}



/*** 
=============================================
    Main Project Area Style2 style
=============================================
***/
.main-project-area.style2{
    position: relative;
    display: block;
}
.main-project-area.style2 .single-project-style3{
    margin-bottom: 90px;
}
.main-project-area.style2 .single-project-style3 .img-holder {
    overflow: inherit;
}
.main-project-area.style2 .single-project-style3 .img-holder .inner{
    overflow: hidden;
}
.main-project-area.style2 .single-project-style3 .overlay-content .inner-content .links-box ul li a span:before {
    border-radius: 0%;
    border: 2px solid #ffffff;
    color: #ffffff;
    top: -25px;
}
.main-project-area.style2 .single-project-style3 .overlay-content .inner-content .links-box ul li a:hover span:before {
    color: #ffffff;
    border: 2px solid #1808c1;
    background: #1808c1;
}
.main-project-area.style2 .single-project-style3 .title-outer {
    position: absolute;
    left: 40px;
    bottom: -50px;
    right: 0;
    z-index: 7;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}
.main-project-area.style2 .single-project-style3:hover .title-outer{
    left: 0;
}
.main-project-area.style2 .single-project-style3 .title-holder {
    background: #ffffff;
-webkit-box-shadow: 0px 5px 8px 2px rgba(237,237,237,0.53); 
box-shadow: 0px 5px 8px 2px rgba(237,237,237,0.53);
}
.main-project-area.style2 .single-project-style3 .title-holder .title {
    text-align: left;
}
.main-project-area.style2 .single-project-style3:hover .title-holder .read-more a span:before {
    color: #131313;
    background: #1808c1;
}
.main-project-area.style2 .post-pagination {
    margin-top: 10px;
}



/*** 
=============================================
    Main Project Area Style3 style
=============================================
***/
.main-project-area.style3{
    position: relative;
    display: block;
    padding-bottom: 70px;    
}
.single-project-style5{
    position: relative;
    display: block;
    margin-bottom: 30px;
}
.single-project-style5 .img-holder{
    position: relative;
    display: block;
    overflow: hidden;
}
.single-project-style5 .img-holder img{
    width: 100%;
    transform: scale(1.01);
    transition: all 700ms ease;
}
.single-project-style5:hover .img-holder img {
    transform:scale(1.2) rotate(2deg);	
}
.single-project-style5 .overlay-content{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: "";
    background: rgba(18, 18, 18, 0.90);
    transform: scaleX(0);
    transition: all 700ms ease 100ms;
}
.single-project-style5:hover .overlay-content{
    transform: scaleY(1);
}
.single-project-style5 .overlay-content .inner-content{
    display: table;
    width: 100%;
    height: 100%;
}
.single-project-style5 .overlay-content .inner-content .title-box {
    display: table-cell;
    vertical-align: middle;
    text-align: center;
    opacity: 0;
    transform-style: preserve-3d;
    transform: perspective(1200px) rotateX(90deg) translateZ(-45px);
    transition: all 300ms ease 100ms;
}
.single-project-style5:hover .overlay-content .inner-content .title-box{
    opacity: 1;
    transform: translate3d(0px, 0px, 0px); 
    transition: all 700ms ease 500ms;
}
.single-project-style5 .overlay-content .inner-content .title-box h3{
    font-size: 24px;
    font-weight: 600;
}
.single-project-style5 .overlay-content .inner-content .title-box a {
    color: #ffffff;
    transition: all 500ms ease;
}
.single-project-style5 .overlay-content .inner-content .title-box a:hover{
    color: #1808c1;
}

.single-project-style5 .img-holder .before{
    position: absolute;
    left: 0;
    bottom: 0;
    height: 50px;
    width: 150px;
    text-align: center;
    z-index: 1;
    transition: all 700ms ease 600ms;
}
.single-project-style5:hover .img-holder .before{
    height: 0;
}
.single-project-style5 .img-holder .before:before {
    position: absolute;
    top: 0;
    left: -15px;
    bottom: 0;
    right: 15px;
    content: "";
    background: #1808c1;
    -moz-transform: skew(30deg, 0deg);
    -webkit-transform: skew(30deg, 0deg);
    -o-transform: skew(30deg, 0deg);
    -ms-transform: skew(30deg, 0deg);
    transform: skew(30deg, 0deg);
    z-index: -1;
}
.single-project-style5 .img-holder .before h6 {
    color: #131313;
    font-size: 14px;
    line-height: 50px;
    font-weight: 600;
    text-transform: uppercase;
    margin-left: -20px;
}

.single-project-style5 .img-holder .after{
    position: absolute;
    right: 0;
    bottom: 0;
    height: 50px;
    width: 150px;
    text-align: center;
    z-index: 1;
    transition: all 700ms ease 600ms;
}
.single-project-style5:hover .img-holder .after{
    height: 0;
}
.single-project-style5 .img-holder .after:before {
    position: absolute;
    top: 0;
    right: -15px;
    bottom: 0;
    left: 15px;
    content: "";
    background: #1808c1;
    -moz-transform: skew(-30deg, 0deg);
    -webkit-transform: skew(-30deg, 0deg);
    -o-transform: skew(-30deg, 0deg);
    -ms-transform: skew(-30deg, 0deg);
    transform: skew(-30deg, 0deg);
    z-index: -1;
}
.single-project-style5 .img-holder .after h6 {
    color: #131313;
    font-size: 14px;
    line-height: 50px;
    font-weight: 600;
    text-transform: uppercase;
    margin-right: -20px;
}


.single-project-style5 .img-holder .links-box{
    position: absolute;
    right: 30px;
    bottom: 30px;
    opacity: 1;
    transform-style: preserve-3d;
    transform: perspective(1200px) rotateX(0deg) translateZ(0px);
    transition: all 300ms ease 100ms;
    z-index: 5;
    opacity: 0;
    transform: scaleX(0);
    transition: all 500ms ease 300ms;
}
.single-project-style5:hover .img-holder .links-box{
    opacity: 1;
    transform: scaleX(1.0); 
    transition: all 700ms ease 1000ms;
}
.single-project-style5 .img-holder .links-box ul{
    position: relative;
    display: block;
}
.single-project-style5 .img-holder .links-box ul li{
    position: relative;
    display: inline-block;
    float: left;
    margin-right: 10px;
}
.single-project-style5 .img-holder .links-box ul li:last-child{
    margin-right: 0;
}
.single-project-style5 .img-holder .links-box ul li a span:before{
    position: relative;
    display: block;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid #ffffff;
    color: #ffffff;
    font-size: 17px;
    line-height: 56px;
    text-align: center;
    transition: all 300ms ease 100ms;
}
.single-project-style5 .img-holder .links-box ul li a:hover span:before{
    color: #131313;
    border-color: #1808c1;
    background: #1808c1;
}



/*** 
=============================================
    Main Project Area Style4 style
=============================================
***/
.main-project-area.style4{
    position: relative;
    display: block;
    padding-bottom: 100px;    
}
.main-project-style4{

}
.main-project-style4 .row {
    margin-left: -25px;
    margin-right: -25px;
}
.main-project-style4 .row [class*=col-] {
    padding-left: 25px;
    padding-right: 25px;
}


.single-project-style6{
    position: relative;
    display: block;
    margin-bottom: 50px;
}
.single-project-style6 .img-holder{
    position: relative;
    display: block;
    overflow: hidden;
}
.single-project-style6 .img-holder img{
    width: 100%;
    transform: scale(1.01);
    transition: all 700ms ease;
}
.single-project-style6:hover .img-holder img {
    transform:scale(1.2) rotate(2deg);	
}
.single-project-style6 .overlay-content{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: "";
    background: rgba(18, 18, 18, 0.90);
    transform: scaleX(0);
    transition: all 700ms ease 100ms;
}
.single-project-style6:hover .overlay-content{
    transform: scaleY(1);
}
.single-project-style6 .overlay-content .inner-content{
    display: table;
    width: 100%;
    height: 100%;
}
.single-project-style6 .overlay-content .inner-content .title-box {
    display: table-cell;
    vertical-align: middle;
    text-align: center;
    opacity: 0;
    transform-style: preserve-3d;
    transform: perspective(1200px) rotateX(90deg) translateZ(-45px);
    transition: all 300ms ease 100ms;
}
.single-project-style6:hover .overlay-content .inner-content .title-box{
    opacity: 1;
    transform: translate3d(0px, 0px, 0px); 
    transition: all 700ms ease 500ms;
}
.single-project-style6 .overlay-content .inner-content .title-box span{
    color: #f9d030;
}
.single-project-style6 .overlay-content .inner-content .title-box h3{
    font-size: 20px;
    font-weight: 600;
    margin: 7px 0 0;
}
.single-project-style6 .overlay-content .inner-content .title-box h3 a {
    color: #ffffff;
    transition: all 500ms ease;
}
.single-project-style6 .overlay-content .inner-content .title-box h3 a:hover{
    color: #f9d030;
}
.single-project-style6 .overlay-content .inner-content .title-box ul{
    position: relative;
    display: block;
    margin-top: 23px;
}
.single-project-style6 .overlay-content .inner-content .title-box ul li{
    position: relative;
    display: inline-block;
    float: none;
    margin: 0 3px;
}
.single-project-style6 .overlay-content .inner-content .title-box ul li a span:before{
    position: relative;
    display: block;
    width: 60px;
    height: 60px;
    border-radius: 0%;
    border: 2px solid #ffffff;
    color: #ffffff;
    font-size: 17px;
    line-height: 56px;
    text-align: center;
    transition: all 300ms ease 100ms;
}
.single-project-style6 .overlay-content .inner-content .title-box ul li a:hover span:before{
    color: #131313;
    border-color: #f9d030;
    background: #f9d030;
}
.load-more-project-button{
    position: relative;
    display: block;
    padding-top: 0px;
    text-align: center;
}
.load-more-project-button a {
    position: relative;
    display: inline-block;
    background: #1808c1;
    color: #131313;
    font-size: 16px;
    line-height: 60px;
    font-weight: 600;
    text-align: center;
    width: 200px;
    margin: 0 auto;
    text-transform: capitalize;
    font-family: 'Poppins', sans-serif;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}
.load-more-project-button a:hover{
    color: #ffffff;
    background: #131313;
}



/*** 
=============================================
    Main Project Area Style5 style
=============================================
***/
.main-project-area.style5{
    position: relative;
    display: block;
    padding-top: 10px;
    padding-bottom: 100px;
    text-align: inherit;
}
.main-project-area.style5 .outer-container {
    position: relative;
    padding: 0 10px;
}
.main-project-area.style5 .outer-container .row{
    margin-left: -5px;
    margin-right: -5px;    
}
.main-project-area.style5 .outer-container .row [class*=col-] {
    padding-left: 5px;
    padding-right: 5px;
}


.single-project-style7{
    margin-bottom: 10px;
}
.single-project-style7 .img-holder {
    position: relative;
    display: block;
    overflow: hidden;
}
.single-project-style7 .img-holder img{
    width: 100%;
    transform: scale(1.01);
    transition: all 700ms ease;
}
.single-project-style7:hover .img-holder img {
    transform:scale(1.2) rotate(2deg);	
}
.single-project-style7 .overlay-content{
    position: absolute;
    top: 0px;
    left: 0px;
    bottom: 0px;
    right: 0px;
    content: "";
    background: rgba(18, 18, 18, 0.90);
    transform: scaleX(0);
    transition: all 700ms ease 100ms;
    z-index: 5;
}
.single-project-style7:hover .overlay-content{
    transform: scaleY(1);
}
.single-project-style7 .overlay-content .inner-content{
    display: table;
    width: 100%;
    height: 100%;
}
.single-project-style7 .overlay-content .inner-content .title-box {
    display: table-cell;
    vertical-align: middle;
    text-align: center;
    opacity: 0;
    transform-style: preserve-3d;
    transform: perspective(1200px) rotateX(90deg) translateZ(-45px);
    transition: all 300ms ease 100ms;
    z-index: 3;
}
.single-project-style7:hover .overlay-content .inner-content .title-box{
    opacity: 1;
    transform: translate3d(0px, 0px, 0px); 
    transition: all 700ms ease 500ms;
}
.single-project-style7 .overlay-content .inner-content .title-box span{
    color: #1808c1;
}
.single-project-style7 .overlay-content .inner-content .title-box h3{
    font-size: 20px;
    font-weight: 600;
    margin: 7px 0 0;
}
.single-project-style7 .overlay-content .inner-content .title-box h3 a {
    color: #ffffff;
    transition: all 500ms ease;
}
.single-project-style7 .overlay-content .inner-content .title-box a:hover{
    color: #1808c1;
}
.single-project-style7 .img-holder .links-box{
    position: absolute;
    right: 40px;
    bottom: 40px;
    opacity: 1;
    transform-style: preserve-3d;
    transform: perspective(1200px) rotateX(0deg) translateZ(0px);
    transition: all 300ms ease 100ms;
    z-index: 5;
    opacity: 0;
    transform: scaleX(0);
    transition: all 500ms ease 300ms;
}
.single-project-style7:hover .img-holder .links-box{
    opacity: 1;
    transform: scaleX(1.0); 
    transition: all 700ms ease 1000ms;
}
.single-project-style7 .img-holder .links-box ul{
    position: relative;
    display: block;
}
.single-project-style7 .img-holder .links-box ul li{
    position: relative;
    display: inline-block;
    float: left;
    margin-right: 10px;
}
.single-project-style7 .img-holder .links-box ul li:last-child{
    margin-right: 0;
}
.single-project-style7 .img-holder .links-box ul li a span:before{
    position: relative;
    display: block;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid #ffffff;
    color: #ffffff;
    font-size: 17px;
    line-height: 56px;
    text-align: center;
    transition: all 300ms ease 100ms;
}
.single-project-style7 .img-holder .links-box ul li a:hover span:before{
    color: #131313;
    border-color: #1808c1;
    background: #1808c1;
}
.main-project-area.style5 .load-more-project-button{
    padding-top: 40px;
}




/*** 
=============================================
    Project Info Area style
=============================================
***/
.project-info-area{
    position: relative;
    display: block;
    padding-top: 100px;
    padding-bottom: 100px;
} 
.project-info-image-box{
    position: relative;
    display: block;
}
.project-info-image-box img{
    width: 100%;
}
.project-info-content{
    position: relative;
    display: block;
    max-width: 370px;
    width: 100%;
}
.project-info-content .inner-content {
    position: relative;
    display: block;
    padding: 38px 40px 33px;
    box-shadow: 0px 0px 9px 3px #f6f6f6;
}
.project-info-content .inner-content ul{
    position: relative;
    display: block;
}
.project-info-content .inner-content ul li {
    position: relative;
    display: block;
    border-bottom: 1px solid #eeeeee;
    padding-bottom: 12px;
    margin-bottom: 18px;
}
.project-info-content .inner-content ul li:last-child{
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.project-info-content .inner-content ul li .icon{
    width: 40px;
}
.project-info-content .inner-content ul li .icon span:before{
    color: #131313;
    font-size: 30px;
    line-height: 30px;
}
.project-info-content .inner-content ul li .icon,
.project-info-content .inner-content ul li .title{
    display: table-cell;
    vertical-align: middle;
}
.project-info-content .inner-content ul li .title{
    padding-left: 10px;
}
.project-info-content .inner-content ul li .title h4{
    color: #131313;
    font-size: 16px;
    line-height: 20px;
    font-weight: 600;
    margin: 0 0 4px;
}
.project-info-content .inner-content ul li .title span{}



/*** 
=============================================
    Project Description Area style
=============================================
***/
.project-description-area {
    position: relative;
    display: block;
    padding: 0px 0 85px;
}
.project-description-area .sec-title-style1 {
    padding-bottom: 72px;
}
.project-description-area .sec-title-style1 .title {
    font-size: 24px;
    line-height: 34px;
}
.project-description-area .sec-title-style1 .text {
    margin: 1px 0 0;
}
.project-description-area .sec-title-style1 .bottom-text{
    position: relative;
    display: block;
    padding-top: 24px;
}
.project-description-area .sec-title-style1 .bottom-text p{
    line-height: 25px;
    margin: 0;
    font-family: 'Nunito Sans', sans-serif;
}

.project-description-area .row {
    margin-left: -7.5px;
    margin-right: -7.5px;
}
.project-description-area .row [class*=col-] {
    padding-left: 7.5px;
    padding-right: 7.5px;
}
.single-project-description-image{
    position: relative;
    display: block;
    overflow: hidden;
    margin-bottom: 15px;
}
.single-project-description-image img{
    width: 100%;
}



/*** 
=============================================
    Challenges Solutions Area Style      
=============================================
***/
.challenges-solutions-area{
    position: relative;
    display: block;
    padding: 0px 0 60px;
}
.challenges-solutions-area .sec-title-style1 {
    padding-bottom: 24px;
}
.challenges-solutions-area .sec-title-style1 .title {
    font-size: 24px;
    line-height: 34px;
}
.challenges-solutions-area .sec-title-style1 .text {
    margin: 1px 0 0;
}

.single-challenges-solutions-box{
    position: relative;
    display: block;
    padding: 50px 40px 40px;
    border: 1px solid #eeeeee;
    margin-bottom: 40px;
}
.single-challenges-solutions-box .inner-content{
    position: relative;
    display: block;
}
.single-challenges-solutions-box .inner-content p{
    margin: 0;
}
.single-challenges-solutions-box .inner-content ul{
    position: relative;
    display: block;
    padding-top: 13px;
}
.single-challenges-solutions-box .inner-content ul li{
    position: relative;
    display: block;
    line-height: 30px;
    padding-left: 40px;
    margin-bottom: 6px;
    color: #131313;
    font-size: 16px;
}
.single-challenges-solutions-box .inner-content ul li:last-child{
    margin-bottom: 0;
}
.single-challenges-solutions-box .inner-content ul li:before {
    position: absolute;
    top: 0;
    left: 0;
    font-family: 'icomoon';
    content: "\e990";
    color: #1808c1;
    font-size: 24px;
}



/*** 
=============================================
    Related Project Area Style      
=============================================
***/
.related-project-area{
    position: relative;
    display: block;
    padding-bottom: 70px;
}
.related-project-area .sec-title-style1 {
    padding-bottom: 30px;
}
.related-project-area .sec-title-style1 .title {
    font-size: 24px;
    line-height: 34px;
}
.related-project-area .sec-title-style1 .text {
    margin: 1px 0 0;
}



/*** 
=============================================
    Blog Default Area style
=============================================
***/
#blog-area{
    position: relative;
    display: block;
    padding: 100px 0 100px;
}
#blog-area.blog-default-area{}
.blog-default-area .single-blog-post{
    margin-bottom: 40px;
}


#blog-area .sidebar-wrapper {
    position: relative;
    display: block;
    max-width: 370px;
}
.single-sidebar .sec-title-style1 {
    margin-top: -8px;
    padding-bottom: 38px;
}
.single-sidebar .sec-title-style1 .title {
    font-size: 20px;
    line-height: 30px;
}
.single-sidebar .sec-title-style1 .text {
    position: relative;
    display: block;
    margin: 14px 0 0;
    line-height: 0;
}




.sidebar-wrapper .single-sidebar {
    position: relative;
    display: block;
    margin-bottom: 60px;
}
.single-sidebar.margintop-minus40{
    margin-top: -40px;
}
.single-sidebar.margintop-minus30{
    margin-top: -30px;
}

.sidebar-search-box .search-form {
    position: relative;
    display: block;
    max-width: 100%;
    margin-bottom: 60px;
}
.sidebar-search-box .search-form input[type="text"] {
    position: relative;
    display: block;
    background: #f5f5f5;
    border: 1px solid #f5f5f5;
    color: #848484;
    font-size: 16px;
    font-weight: 400;
    height: 60px;
    width: 100%;
    padding-left: 30px;
    padding-right: 70px;
    border-radius: 30px;
    transition: all 500ms ease 0s;
}
.sidebar-wrapper .search-form button {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    display: block;
    background: #1808c1;
    color: #131313;
    font-size: 14px;
    height: 60px;
    width: 60px;
    border: 0px solid #e9212e;
    line-height: 60px;
    text-align: center;
    border-radius: 50%;
    transition: all 500ms ease 0s;
    margin: 0;
    transition: all 200ms linear;
    transition-delay: 0.1s;
    transform: perspective(1200px) rotate(0deg) translateZ(0px);
}
.sidebar-wrapper .search-form button i {
    font-size: 14px
}
.sidebar-wrapper .search-form input[type="text"]:focus {
    border: 1px solid #e8e6e6;
    background: #fff;
    color: #000000;
}
.sidebar-wrapper .search-form input[type="text"]:focus + button, 
.sidebar-wrapper .search-form button:hover {
    background: #131313;
    color: #ffffff;
}


.single-sidebar .categories {
    position: relative;
    display: block;
}
.single-sidebar .categories li {
    position: relative;
    display: block;
}
.single-sidebar .categories li a {
    position: relative;
    display: block;
    padding-bottom: 19px;
    margin-bottom: 21px;
    color: #131313;
    font-size: 14px;
    line-height: 24px;
    font-weight: 700;
    text-transform: uppercase;
    border-bottom: 1px solid #ededed;
    font-family: 'Nunito Sans', sans-serif;
    transition: all 700ms ease;
}
.single-sidebar .categories li a span {
    position: relative;
    display: block;
    float: right;
    width: 24px;
    height: 24px;
    background: #f5f5f5;
    border-radius: 50%;
    color: #848484;
    font-size: 14px;
    line-height: 26px;
    font-weight: 700;
    text-align: center;
    transition: all 300ms ease 100ms;
}
.single-sidebar .categories li:hover a span{
    color: #131313;
    background: #1808c1;
    transform: scaleX(1.0); 
    transition: all 300ms ease 100ms;
}
.single-sidebar .categories li:last-child a{
    margin-bottom: 0;
}
.single-sidebar .categories li:hover a{
    color: #1808c1;
    transition: all 700ms ease;
}
.single-sidebar .categories li a:before {
    position: absolute;
    left: 0;
    bottom: -4px;
    height: 8px;
    width: 8px;
    content: "";
    background: #1808c1;
    border-radius: 50%;
    transition: all 700ms ease 900ms;
    transform: scale(0);
}
.single-sidebar .categories li:hover a:before{
    transform: scale(1.0);
    transition: all 200ms linear;
    transition-delay: 0.1s;
} 
.single-sidebar .categories li a:after {
    position: absolute;
    left: 0;
    bottom: -1px;
    height: 1px;
    width: 0px;
    content: "";
    background: #1808c1;
    border-radius: 50%;
    transition: all 700ms ease 100ms;
}
.single-sidebar .categories li:hover a:after{
    width: 100%;
    transition: all 900ms ease 300ms;
}


.single-sidebar .recent-post {
    position: relative;
    display: block;
    overflow: hidden;
    margin-left: -10px;
    margin-right: -10px;
}
.single-sidebar .recent-post li {
    position: relative;
    display: inline-block;
    float: left;
    padding-left: 10px;
    padding-right: 10px;
    width: 195px;
    margin: 0 auto 23px;
}
.single-sidebar .recent-post li .img-holder {
    position: relative;
    display: block;
    overflow: hidden;
}
.single-sidebar .recent-post li .img-holder img {
    transition: all 0.4s ease-in-out 0.5s;    
    width: 100%;
    transform: scale(1.1, 1.1);      
}
.single-sidebar .recent-post li:hover .img-holder img {
    transition-delay: 0s;
    transform: scale(1.2, 1.2);    
}
.single-sidebar .recent-post li .img-holder .overlay-style-one{
    background: rgba(18, 18, 18, 0.90);
}
.single-sidebar .recent-post li .img-holder .overlay-style-one .box .content a{
    display: inline-block;
    width: 20px;
    height: 20px;
    filter: alpha(opacity=0);
    transform: scale(3);
    transition: all 0.3s ease-in-out 0.3s;
    opacity: 0;
    z-index: 5;    
}
.single-sidebar .recent-post li:hover .img-holder .overlay-style-one .box .content a{
   filter: alpha(opacity=100);
   transform: scale(1);
   transition-delay: 0.1s; 
   opacity: 1;
}
.single-sidebar .recent-post li .img-holder .overlay-style-one .box .content a span:before{
    color: #ffffff;
    font-size: 20px;
    line-height: 20px;
    transition: all 500ms ease;
}
.single-sidebar .recent-post li .img-holder .overlay-style-one .box .content a:hover span:before{
    color: #1808c1;
}
.single-sidebar .recent-post li:hover .img-holder .overlay-style-one{
    opacity: 1;
}

.single-sidebar .recent-post li .title-holder {
    position: relative;
    display: block;
    padding-top: 19px;
}
.single-sidebar .recent-post li .title-holder span {
    display: block;
    line-height: 14px;
}
.single-sidebar .recent-post li .title-holder .post-title {
    position: relative;
    display: block;
    font-size: 16px;
    line-height: 24px;
    font-weight: 600;
    padding-top: 12px;
    margin-top: 13px;
    transition: all 500ms ease;
}
.single-sidebar .recent-post li .title-holder .post-title:before{
    position: absolute;
    top: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: #1808c1;
    content: "";
    transition: all 200ms linear;
    transition-delay: 0.1s;
}
.single-sidebar .recent-post li:hover .title-holder .post-title:before{
    width: 100%;
}
.single-sidebar .recent-post li .title-holder .post-title a{
    color: #131313;
    transition: all 500ms ease;
}
.single-sidebar .recent-post li .title-holder .post-title a:hover{
    color: #1808c1;
}


.single-sidebar .instagram {
    position: relative;
    display: block;
    overflow: hidden;
    margin-left: -10px;
    margin-right: -10px;
}
.single-sidebar .instagram li {
    position: relative;
    display: inline-block;
    float: left;
    width: 110px;
    margin: 0 10px 20px;
    transition: all 0.5s ease 0s;
}
.single-sidebar .instagram li .img-holder {
    position: relative;
    display: block;
    overflow: hidden;
    transition: all 0.5s ease 0s;
    z-index: 5;
}
.single-sidebar .instagram li .img-holder img {
    transform: scale(1.1, 1.1);
    transition: all 0.5s ease 0s;
    width: 100%;
}
.single-sidebar .instagram li:hover .img-holder img {
    transform: scale(1, 1);
}
.single-sidebar .instagram li .img-holder .overlay-style-one{
    background: rgba(18, 18, 18, 0.90);    
}
.single-sidebar .instagram li:hover .img-holder .overlay-style-one {
    filter: alpha(opacity=100);
    opacity: 1;
    transition-delay: 0s;
}
.single-sidebar .instagram li .img-holder .overlay-style-one .box .content a {
    position: relative;
    display: block;
    float: none;
    margin: 0;
    color: #ffffff;
    font-size: 14px;
    line-height: 26px;
    font-family: 'Poppins', sans-serif;
    opacity: 0;
    transform: scale(3);
    transition: all 0.3s ease-in-out 0.3s;
    z-index: 5;
}
.single-sidebar .instagram li:hover .img-holder .overlay-style-one .box .content a{
    filter: alpha(opacity=100);
    opacity: 1;
    transform: scale(1);
    transition-delay: 0.1s;    
}
.single-sidebar .instagram li .img-holder .overlay-style-one .box .content a span:before{
    display: inline-block;
    padding-right: 5px;
    font-size: 12px;
    filter: alpha(opacity=0);
}
.single-sidebar .instagram li .img-holder .overlay-style-one .box .content a:hover{
    color: #1808c1;    
}


.single-sidebar .popular-tag {
    position: relative;
    display: block;
    overflow: hidden;
    margin-left: -5px;
    margin-right: -5px;
}
.single-sidebar .popular-tag li {
    position: relative;
    display: inline-block;
    float: left;
    margin: 0 5px 10px;
}
.single-sidebar .popular-tag li a {
    position: relative;
    display: block;
    background: #f5f5f5;
    padding: 9px 15px 7px;
    color: #000;
    font-size: 16px;
    font-weight: 400;
    transition: all 500ms ease 0s;
}
.single-sidebar .popular-tag li a:hover{
    color: #fff;
    background: #1808c1;
}



/*** 
=============================================
    Blog Large Area Css
=============================================
***/
#blog-area.blog-large-area{
    position: relative;
    display: block;
}
.post-date-author-info.style2 {
    position: absolute;
    left: 40px;
    bottom: -60px;
    right: 40px;
    display: block;
    padding-left: 60px;
    min-height: 90px;
    background: #ffffff;
    -webkit-box-shadow: 0px 5px 9px 2px #F1F1F1;
    box-shadow: 0px 5px 9px 2px #F1F1F1;
    z-index: 11;
}
.post-date-author-info.style2 .author-info {
    position: relative;
    display: inline-block;
    padding-left: 20px;
    min-height: 90px;
    padding-top: 17px;
    padding-bottom: 17px;
    float: left;
}




.post-date-author-info.style2 .meta-info {
    position: relative;
    display: block;
    float: left;
    min-height: 90px;
    margin-left: 20px;
    padding-left: 21px;
    padding-top: 25px;
}
.post-date-author-info.style2 .meta-info:before{
    position: absolute;
    top: 20px;
    left: 0;
    bottom: 20px;
    width: 1px;
    background: #eeeeee;
    content: "";
}
.post-date-author-info.style2 .meta-info li {
    position: relative;
    display: inline-block;
    float: left;
    margin-right: 5px;
    line-height: 20px;
}
.post-date-author-info.style2 .meta-info li:last-child{
    margin-right: 0;
}
.post-date-author-info.style2 .meta-info li span:before {
    position: relative;
    display: inline-block;
    padding-right: 13px;
    color: #1808c1;
    font-size: 24px;
    line-height: 24px;
    top: 5px;
}
.post-date-author-info.style2 .meta-info li a {
    color: #848484;
    display: inline-block;
    line-height: 40px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}
.post-date-author-info.style2 .meta-info li a:hover{
    color: #1808c1;
}

.blog-large-area .single-blog-post .text-holder {
    padding: 93px 40px 0;
    border: 1px solid #eeeeee;
}
.blog-large-area .single-blog-post .text-holder .blog-title {
    font-size: 30px;
    line-height: 40px;
    margin: 0 0 14px;
}
.blog-large-area .single-blog-post .text-holder .text {
    border-bottom: 1px solid #eeeeee;
    padding-bottom: 32px;
}

.blog-large-area .single-blog-post .text-holder .bottom {
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    padding: 26px 0 27px;
}
.blog-large-area .single-blog-post .text-holder .bottom .reamore{
    position: relative;
    display: block;
}
.blog-large-area .single-blog-post .text-holder .bottom .reamore a:hover{
    color: #1808c1;
}
.blog-large-area .single-blog-post .text-holder .bottom .meta{
    position: relative;
    display: block;
}
.blog-large-area .single-blog-post .text-holder .bottom .meta p{
    color: #848484;
    font-size: 14px;
    text-transform: uppercase;
    margin: 0;
}
.blog-large-area .single-blog-post .text-holder .bottom .meta p a{
    color: #1808c1;
}



/*** 
=============================================
    Breadcrumb Area Blog Single Css
=============================================
***/
.breadcrumb-area.blog-single {
    position: relative;
    display: block;
    background-attachment: scroll;
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    padding: 177px 0 183px;
    z-index: 1;
}
.breadcrumb-area.blog-single::before {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.90) none repeat scroll 0 0;
    content: "";
    z-index: -1;
}

.breadcrumb-area.blog-single .title {
    position: relative;
    display: block;
    padding-bottom: 0;
    text-align: center;
}
.breadcrumb-area.blog-single .title h1 {
    color: #ffffff;
    font-size: 48px;
    line-height: 60px;
    font-weight: 600;
    text-transform: none;
}
.post-date-author-info.style3 {
    position: absolute;
    left: 0px;
    bottom: -45px;
    right: 0px;
    display: block;
    padding-left: 85px;
    min-height: 90px;
    background: #ffffff;
    max-width: 690px;
    width: 100%;
    margin: 0 auto;
    -webkit-box-shadow: 3px 4px 10px 0px #f1f1f1; 
    box-shadow: 3px 4px 10px 0px #f1f1f1;
    z-index: 3;
}
.post-date-author-info.style3 .post-date {
    position: absolute;
    top: 0;
    left: 0;
    width: 85px;
    min-height: 90px;
    display: block;
    padding: 21px 0;
    background: #1808c1;
    text-align: center;
}
.post-date-author-info.style3 .post-date h3 {
    color: #131313;
    line-height: 24px;
    text-transform: uppercase;
}
.post-date-author-info.style3 .author-info {
    position: relative;
    display: inline-block;
    padding-left: 30px;
    min-height: 90px;
    padding-top: 17px;
    padding-bottom: 17px;
    float: left;
}
.post-date-author-info.style3 .author-info .img-box{
    width: 55px;
}
.post-date-author-info.style3 .author-info .img-box img{
    border-radius: 50%;
}
.post-date-author-info.style3 .author-info .img-box,
.post-date-author-info.style3 .author-info .title-box{
    display: table-cell;
    vertical-align: middle;
}
.post-date-author-info.style3 .author-info .title-box{
    padding-left: 15px;
}
.post-date-author-info.style3 .author-info .title-box h6{
    color: #131313;
    font-size: 12px;
    text-transform: uppercase;
    margin: 0 0 5px;
}
.post-date-author-info.style3 .author-info .title-box span{
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
}
.post-date-author-info.style3 .meta-info {
    position: relative;
    display: block;
    float: left;
    min-height: 90px;
    margin-left: 20px;
    padding-left: 21px;
    padding-top: 25px;
}
.post-date-author-info.style3 .meta-info:before{
    position: absolute;
    top: 20px;
    left: 0;
    bottom: 20px;
    width: 1px;
    background: #eeeeee;
    content: "";
}
.post-date-author-info.style3 .meta-info li {
    position: relative;
    display: inline-block;
    float: left;
    margin-right: 5px;
    line-height: 20px;
}
.post-date-author-info.style3 .meta-info li:last-child{
    margin-right: 0;
}
.post-date-author-info.style3 .meta-info li span:before {
    position: relative;
    display: inline-block;
    padding-right: 13px;
    color: #1808c1;
    font-size: 24px;
    line-height: 24px;
    top: 5px;
}
.post-date-author-info.style3 .meta-info li a {
    color: #848484;
    display: inline-block;
    line-height: 40px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}
.post-date-author-info.style3 .meta-info li a:hover{
    color: #1808c1;
}



/*** 
=============================================
    Blog Single Area style
=============================================
***/
#blog-area.blog-single-area {
    position: relative;
    display: block;
    padding: 119px 0 70px;
}
.blog-single-area .blog-post {
    position: relative;
    display: block;
}
.blog-single-area .single-blog-post {
    position: relative;
    display: block;
}

.single-blog-post .top-text-box {
    position: relative;
    display: block;
    overflow: hidden;
}
.single-blog-post .top-text-box .top{
    position: relative;
    display: block;
    padding-left: 60px;
}
.single-blog-post .top-text-box .top p{
    margin: 0;
}
.single-blog-post .top-text-box .top .left{
    position: absolute;
    top: 6px;
    left: 0;
    width: 60px;
    height: 60px;
}
.single-blog-post .top-text-box .top .left span{
    position: relative;
    display: inline-block;
    width: 60px;
    height: 60px;
    background: #1808c1;
    text-align: center;
    color: #131313;
    font-size: 48px;
    line-height: 60px;
    font-weight: 700;
    text-transform: uppercase;
}
.single-blog-post .top-text-box .top .right{
    position: relative;
    display: block;
    padding-left: 20px;
}

.single-blog-post .top-text-box .inner {
    position: relative;
    display: block;
    padding-top: 10px;
}
.single-blog-post .top-text-box .inner h3{
    margin: 0 0 17px;
}


.upgrades-quotes-box {
    position: relative;
    display: block;
    padding-top: 36px;
}
.upgrades-quotes-box .upgrades-box{
    position: relative;
    display: block;
}
.upgrades-quotes-box .upgrades-box h3{
    color: #131313;
    font-size: 24px;
    line-height: 34px;
    font-weight: 700;
    text-transform: uppercase;
    margin: -8px 0 25px;
}
.upgrades-quotes-box .upgrades-box p{
    margin: 0;
}
.upgrades-quotes-box .upgrades-box ul{
    position: relative;
    display: block;
    overflow: hidden;
    padding-top: 22px;
}
.upgrades-quotes-box .upgrades-box ul li{
    position: relative;
    display: block;
    margin-bottom: 15px;
}
.upgrades-quotes-box .upgrades-box ul li:last-child{
    margin-bottom: 0;
}
.upgrades-quotes-box .upgrades-box ul li .count{
    width: 30px;
}
.upgrades-quotes-box .upgrades-box ul li .count,
.upgrades-quotes-box .upgrades-box ul li .text{
    display: table-cell;
    vertical-align: middle;
}
.upgrades-quotes-box .upgrades-box ul li .count h6{
    position: relative;
    display: block;
    width: 30px;
    height: 30px;
    border: 2px solid #d9d9d9;
    border-radius: 50%;
    color: #848484;
    font-size: 14px;
    line-height: 26px;
    font-weight: 600;
    text-align: center;
}
.upgrades-quotes-box .upgrades-box ul li .text{
    padding-left: 20px;
}
.upgrades-quotes-box .upgrades-box ul li .text p{
    color: #131313;
    font-size: 16px;
    font-weight: 700;
}

.upgrades-quotes-box .quotes-box{
    position: relative;
    display: block;
    padding: 45px 40px 42px;
    -webkit-box-shadow: 0px 4px 7px 2px #ededed; 
    box-shadow: 0px 4px 7px 2px #ededed;
}
.upgrades-quotes-box .quotes-box .inner{
    position: relative;
    display: block;
    padding-left: 80px;
}
.upgrades-quotes-box .quotes-box .inner .image{
    position: absolute;
    top: 5px;
    left: 0;
    width: 80px;
    height: 80px;
}
.upgrades-quotes-box .quotes-box .inner .image img{
    border-radius: 50%;
}
.upgrades-quotes-box .quotes-box .inner .text{
    position: relative;
    display: block;
    padding-left: 30px;
}
.upgrades-quotes-box .quotes-box .inner .text span:before{
    color: #1808c1;
    font-size: 40px;
    line-height: 40px;
}
.upgrades-quotes-box .quotes-box .inner .text p{
    color: #848484;
    font-size: 20px;
    line-height: 30px;
    margin: 12px 0 21px;
}
.upgrades-quotes-box .quotes-box .inner .text .info{
    position: relative;
    display: block;    
}
.upgrades-quotes-box .quotes-box .inner .text .info h3{
    color: #131313;
    font-size: 20px;
    margin: 0 0 2px;
}
.upgrades-quotes-box .quotes-box .inner .text .info span{
    color: #1808c1;
    font-weight: 700;
}


.blog-single-image-box {
    position: relative;
    display: block;
    margin-top: 27px;
    margin-bottom: 53px;
}
.blog-single-image-box .single-image-box{
    position: relative;
    display: block;
    margin-top: 30px;
}
.blog-single-image-box .single-image-box img{
    width: 100%;
}


.blog-single-projects-cost-box{
    position: relative;
    display: block;
}
.blog-single-projects-cost-box h2{
    color: #131313;
    font-size: 24px;
    line-height: 32px;
    font-weight: 700;
    text-transform: uppercase;
    margin: 0 0 26px;
}
.blog-single-projects-cost-box p{
    margin: 0 0 32px;
}
.blog-single-projects-cost-box ul{
    position: relative;
    display: block;
}
.blog-single-projects-cost-box ul li{
    position: relative;
    display: block;
    padding-left: 30px;
    padding-right: 30px;
    line-height: 70px;
    color: #131313;
    font-size: 18px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    -webkit-box-shadow: 0px 1px 7px 2px #f6f6f6; 
    box-shadow: 0px 1px 7px 2px #f6f6f6;
    margin-bottom: 20px;
    transition: all 200ms linear;
    transition-delay: 0.3s;
}
.blog-single-projects-cost-box ul li:before{
    font-family: 'icomoon';
    position: absolute;
    top: 0;
    right: 26px;
    content: "\e929";
    color: #b5b5b5;
    font-size: 20px;
    transition: all 900ms ease 100ms;
}
.blog-single-projects-cost-box ul li:after{
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 0px;
    background: #1808c1;
    content: "";
    transition: all 200ms linear;
    transition-delay: 0.5s;
}
.blog-single-projects-cost-box ul li:hover:after{
    width: 6px;
}

.blog-single-projects-cost-box ul li .overlay{
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    background: #131313;
    display: block;
    padding-left: 30px;
    padding-right: 30px;
    opacity: 0;
    transform: scaleY(0);
}
.blog-single-projects-cost-box ul li:hover .overlay{
    opacity: 1;
    transform: scaleY(1.0);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}
.blog-single-projects-cost-box ul li .overlay:before{
    font-family: 'icomoon';
    position: absolute;
    top: 0;
    right: 26px;
    content: "\e929";
    color: #1808c1;
    font-size: 20px;
    transition: all 900ms ease 100ms;
}
.blog-single-projects-cost-box ul li .overlay a{
    color: #ffffff;
    font-size: 18px;
    font-weight: 400;
    font-family: 'Nunito Sans', sans-serif;
}


.tag-with-social-links-box {
    position: relative;
    display: block;
    overflow: hidden;
    margin-top: 52px;
}
.tag-with-social-links-box .inner-content{
    position: relative;
    display: block;
}
.tag-with-social-links-box .tag-box{
    position: relative;
    display: block;
}
.tag-with-social-links-box .tag-box p {
    position: relative;
    display: block;
    color: #131313;
    font-size: 16px;
    line-height: 30px;
    font-weight: 600;
    margin: 0 0 10px;
    font-family: 'Poppins', sans-serif;
}
.tag-with-social-links-box .tag-box ul{
    position: relative;
    display: block;
}
.tag-with-social-links-box .tag-box ul li {
    position: relative;
    display: inline-block;
    float: left;
    margin-right: 10px;
}
.tag-with-social-links-box .tag-box ul li:last-child{
    margin-right: 0;
}
.tag-with-social-links-box .tag-box ul li a{
    position: relative;
    display: block;
    padding: 8px 15px 7px;
    background: #f5f5f5;
    color: #848484;
    font-size: 16px;
    font-weight: 400;
    text-transform: capitalize;
    transition: all 300ms ease 100ms;
}
.tag-with-social-links-box .tag-box ul li a:hover{
    color: #131313;
    background: #1808c1;
}

.tag-with-social-links-box .social-links-box{
    position: relative;
    display: block;
}
.tag-with-social-links-box .social-links-box p{
    position: relative;
    display: block;
    color: #131313;
    font-size: 16px;
    line-height: 30px;
    font-weight: 600;
    margin: 0 0 10px;
    text-align: right;
    font-family: 'Poppins', sans-serif;
}
.tag-with-social-links-box .social-links-box .social-links-style1{
    
}


.blog-prev-next-option {
    position: relative;
    display: block;
    overflow: hidden;
    width: 100%;
    margin-top: 80px;
}
.blog-prev-next-option .single {
    position: relative;
    display: block;
    max-width: 570px;
    width: 100%;
} 
.blog-prev-next-option .single.prev {
    position: relative;
    display: block;
    overflow: hidden;
    float: left;
}
.blog-prev-next-option .single .image-thumb {
    position: relative;
    display: block;
    overflow: hidden;
}
.blog-prev-next-option .single .image-thumb img{
    transform: scale(1.1, 1.1);
    transition: all 0.5s ease 0s;
    width: 100%;
}
.blog-prev-next-option .single:hover .image-thumb img{
    transform: scale(1, 1);
}
.blog-prev-next-option .single .image-thumb .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(18, 18, 18, 0.90);
    transition: all 700ms ease 100ms;
    opacity: 0;
}
.blog-prev-next-option .single:hover .image-thumb .overlay {
    filter: alpha(opacity=100);
    opacity: 1;
    transition-delay: 0s;
}
.blog-prev-next-option .single .image-thumb .overlay .box{
    display: table;
    width: 100%;
    height: 100%;
}
.blog-prev-next-option .single .image-thumb .overlay .box .link{
    display: table-cell;
    vertical-align: middle;
    text-align: center;
}
.blog-prev-next-option .single .image-thumb .overlay .box .link a {
    position: relative;
    display: inline-block;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    text-transform: capitalize;
    width: 100px;
    height: 20px;
    filter: alpha(opacity=0);
    transform: scale(3);
    transition: all 0.3s ease-in-out 0.3s;
    opacity: 0;
    font-family: 'Poppins', sans-serif;
}
.blog-prev-next-option .single:hover .image-thumb .overlay .box .link a{
   filter: alpha(opacity=100);
   transform: scale(1);
   transition-delay: 0.1s; 
   opacity: 1;    
}
.blog-prev-next-option .single .image-thumb .overlay .box .link a:hover{
    color: #1808c1;    
}
.blog-prev-next-option .single .title {
    position: relative;
    display: block;
    padding: 14px 20px 0;
    text-align: center;
}
.blog-prev-next-option .single .title h3 {
    font-size: 18px;
    line-height: 26px;
    font-weight: 600;
}
.blog-prev-next-option .single .title a{
    color: #131313;
    transition: all 500ms ease;
}
.blog-prev-next-option .single .title a:hover{
    color: #1808c1;
}
.blog-prev-next-option .single.next{
    position: relative;
    display: block;
    overflow: hidden;
    float: right;
}


.author-box-holder {
    position: relative;
    display: block;
    background: #ffffff;
    padding: 45px 29px 30px;
    margin: 73px 0 80px;
    -webkit-box-shadow: 0px 1px 7px 2px #f6f6f6; 
    box-shadow: 0px 1px 7px 2px #f6f6f6;
}
.author-box-holder .inner-box{
    position: relative;
    display: block;
}
.author-box-holder .inner-box .img-box{
    width: 100px;
}
.author-box-holder .inner-box .img-box img {
    width: 100%;
    border-radius: 50%;
}
.author-box-holder .inner-box .img-box,
.author-box-holder .inner-box .text{
    display: table-cell;
    vertical-align: middle;
}
.author-box-holder .inner-box .text{
    padding-left: 40px;    
}
.author-box-holder .inner-box .text h3{
    color: #131313;
    font-size: 20px;
    font-weight: 600;
    margin: 0;
}
.author-box-holder .inner-box .text h3 span{
    color: #1808c1;
    font-size: 16px;
    font-weight: 700;
    font-family: 'Nunito Sans', sans-serif;
}
.author-box-holder .inner-box .text p{
    line-height: 25px;
    margin: 15px 0 18px;
}
.author-box-holder .inner-box .text .author-social-links{
    position: relative;
    display: block;
    overflow: hidden;
}
.author-box-holder .inner-box .text .author-social-links p{
    position: relative;
    display: inline-block;
    float: left;
    padding-right: 10px;
    color: #131313;
    font-size: 16px;
    font-weight: 500;
    line-height: 30px;
    margin: 0;
}
.author-box-holder .inner-box .text .author-social-links ul{
    position: relative;
    display: inline-block;
    float: left;
}
.author-box-holder .inner-box .text .author-social-links ul li{
    position: relative;
    display: inline-block;
    float: left;
    line-height: 30px;
    padding-right: 11px;
    margin-right: 10px;
}
.author-box-holder .inner-box .text .author-social-links ul li:before {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    width: 1px;
    height: 12px;
    background: #e3e3e3;
    content: "";
    transform: rotate(15deg);
    line-height: 30px;
    margin: 8px 0;
}
.author-box-holder .inner-box .text .author-social-links ul li:last-child:before{
    display: none;
}
.author-box-holder .inner-box .text .author-social-links ul li:last-child{
    padding-right: 0;
    margin-right: 0;
}
.author-box-holder .inner-box .text .author-social-links ul li a {
    color: #848484;
}
.author-box-holder .inner-box .text .author-social-links ul li a:hover{
    color: #1808c1; 
}



.single-blog-title-box{
    position: relative;
    display: block;
    padding-bottom: 32px;
    margin-top: -7px;
}
.single-blog-title-box h2{
    color: #131313;
    font-size: 24px;
    line-height: 32px;
    font-weight: 700;
    text-transform: uppercase;
}
.blog-single-area .inner-comment-box {
    position: relative;
    display: block;
    overflow: hidden;
}
.blog-single-area .inner-comment-box .single-comment-outer-box{
    position: relative;
    display: block;
    border: 1px solid #ededed;
    background: #ffffff;
    padding: 35px 40px 32px;
    margin-bottom: 40px;
}
.blog-single-area .inner-comment-box .single-comment-outer-box.mar-left{
    margin-left: 80px;
}
.blog-single-area .inner-comment-box .single-comment-box {
    position: relative;
    display: block;
    padding-left: 80px;
}
.blog-single-area .inner-comment-box .single-comment-box .img-box {
    position: absolute;
    top: 4px;
    left: 0;
    width: 80px;
    height: 80px;
}
.blog-single-area .inner-comment-box .single-comment-box .img-box img{
    border-radius: 50%;
    width: 100%;
}
.blog-single-area .inner-comment-box .single-comment-box .img-box .overlay{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(18, 18, 18, 0.90);
    transition: all 700ms ease 100ms;
    opacity: 0;    
}
.blog-single-area .inner-comment-box .single-comment-box:hover .img-box .overlay{
    filter: alpha(opacity=100);
    opacity: 1;
    transition-delay: 0s;    
}
.blog-single-area .inner-comment-box .single-comment-box .img-box .overlay .reply-button{
    
}
.blog-single-area .inner-comment-box .single-comment-box .img-box .overlay .reply-button a span:before {
    position: absolute;
    left: 0;
    bottom: -17px;
    right: 0;
    width: 35px;
    height: 35px;
    background: #1808c1;
    border-radius: 50%;
    text-align: center;
    color: #27282c;
    font-size: 16px;
    line-height: 35px;
    margin: 0 auto;
    filter: alpha(opacity=0);
    transform: scale(0);
    transition: all 0.3s ease-in-out 0.3s;
    opacity: 0;
}
.blog-single-area .inner-comment-box .single-comment-box:hover .img-box .overlay .reply-button a span:before{
   filter: alpha(opacity=100);
   transform: scale(1);
   transition-delay: 0.1s; 
   opacity: 1;      
}

.blog-single-area .inner-comment-box .single-comment-box .text-box {
    position: relative;
    display: block;
    margin-left: 30px;
}
.blog-single-area .inner-comment-box .single-comment-box .text-box .top {
    position: relative;
    display: block;
    overflow: hidden;
    margin-bottom: 16px;
}
.blog-single-area .inner-comment-box .single-comment-box .text-box .top .name{
    position: relative;
    display: block;
}
.blog-single-area .inner-comment-box .single-comment-box .text-box .top .name h3{
    color: #27282c;
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 0px;
}
.blog-single-area .inner-comment-box .single-comment-box .text-box .top .name h3 span {
    color: #1808c1;
    font-size: 16px;
    font-weight: 700;
    font-family: 'Nunito Sans', sans-serif;
}
.blog-single-area .inner-comment-box .single-comment-box .text-box .text{}
.blog-single-area .inner-comment-box .single-comment-box .text-box .text p{
    margin: 0;
}



.add-comment-box {
    position: relative;
    display: block;
    overflow: hidden;
    padding-top: 40px;
}
.add-comment-box #add-comment-form {}
.add-comment-box #add-comment-form input[type="text"],
.add-comment-box #add-comment-form input[type="email"],
.add-comment-box #add-comment-form textarea{
    position: relative;
    display: block;
    background: #f6f6f6;
    border: 1px solid #f6f6f6;
    color: #848484;
    font-size: 16px;
    font-weight: 400;
    width: 100%;  
    height: 60px;
    padding: 0 20px;
    border-radius: 0px;
    margin-bottom: 30px;
    transition: all 500ms ease;
}
.add-comment-box #add-comment-form textarea {
    height: 150px;
    padding: 13px 20px;
    margin-bottom: 30px;
}
.add-comment-box #add-comment-form input[type="text"]:focus{
    border-color: #1808c1;    
}
.add-comment-box #add-comment-form input[type="email"]:focus{
    border-color: #1808c1;    
}
.add-comment-box #add-comment-form textarea:focus{
    border-color: #1808c1;       
}
.add-comment-box #add-comment-form button {
    position: relative;
    display: block;
    width: 100%;
    padding: 0;
    background: #1808c1;
    color: #131313;
    font-size: 16px;
    font-weight: 600;
    text-transform: capitalize;
    line-height: 60px;
    border-radius: 0;
    font-family: 'Poppins', sans-serif;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}
.add-comment-box #add-comment-form button:hover{
    color: #ffffff;
    background: #131313;
}



/*** 
=============================================
    Contact address Area style
=============================================
***/
.contact-address-area{
    position: relative;
    display: block;
    background: #ffffff;
    padding: 100px 0 120px;
}
.contact-address-area .sec-title-style1.max-width {
    padding-bottom: 72px;
}
.contact-address-box{
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;    
}
.single-contact-address-box{
    position: relative;
    display: block;
    background: #131313;
    padding: 85px 30px 77px;
    max-width: 390px;
    width: 100%;
}
.single-contact-address-box .icon-holder{
    position: relative;
    display: block;
    padding-bottom: 24px;
}
.single-contact-address-box .icon-holder span:before{
    font-size: 75px;
}
.single-contact-address-box h3{
    color: #ffffff;
    margin: 0px 0 9px;
}
.single-contact-address-box h2{
    color: #fff;
    font-size: 24px;
    font-weight: 600;
    margin: 0 0 19px;
}
.single-contact-address-box a{
    color: #ffffff;
}

.single-contact-address-box.main-branch {
    background: #1808c1;
    padding: 53px 15px 51px;
    margin-top: -20px;
    margin-bottom: -20px;
}
.single-contact-address-box.main-branch h3{
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 38px;
    text-transform: uppercase;
    text-align: center;
}
.single-contact-address-box.main-branch .inner{
    position: relative;
    display: block;
    
}
.single-contact-address-box.main-branch .inner ul{
    position: relative;
    display: block;
    overflow: hidden;
}
.single-contact-address-box.main-branch .inner ul li{
    position: relative;
    display: block;
    padding-left: 110px;
    border-bottom: 1px solid #e5b21e;
    padding-bottom: 23px;
    margin-bottom: 24px;
}
.single-contact-address-box.main-branch .inner ul li:last-child{
    border: none;
    margin-bottom: 0;
    padding-bottom: 0;
}
.single-contact-address-box.main-branch .inner ul li .title{
    position: absolute;
    top: 2px;
    left: 0;
    display: inline-block;
}
.single-contact-address-box.main-branch .inner ul li .title h4{
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    line-height: 24px;
    text-transform: capitalize;
    border-bottom: 2px solid #a5821e;
}

.single-contact-address-box.main-branch .inner ul li .text{
    position: relative;
    display: block;
}
.single-contact-address-box.main-branch .inner ul li .text p{
    color: #fff;
    font-size: 16px;
    line-height: 24px;
    font-weight: 600;
    margin: 0;
}



/*** 
=============================================
    Contact Info Area style
=============================================
***/
.contact-info-area {
    position: relative;
    display: block;
    background: #ffffff;
}
.contact-form {
    position: relative;
    display: block;
    background: #ffffff;
    padding: 100px 60px 80px;
    -webkit-box-shadow: 0px 3px 8px 2px #ededed; 
    box-shadow: 0px 3px 8px 2px #ededed;
    z-index: 3;
}
.contact-form .sec-title-style1{
    position: relative;
    display: block;
    padding-bottom: 51px;
    width: 50%;
}
.contact-form .text-box{
    position: relative;
    display: block;
    margin-top: 19px;
    width: 50%;    
}
.contact-form .text p{
    color: #848484;
    line-height: 26px;
    margin: 0;
}

.contact-form .inner-box{
    position: relative;
    display: block;
    background: #ffffff;
}
.contact-form form{
    position: relative;
    display: block;
}
.contact-form form .input-box{
    position: relative;
    display: block;
}

.contact-form form input[type="text"],
.contact-form form input[type="email"],
.contact-form form textarea{
    position: relative;
    display: block;   
    background: #ffffff;
    border: 1px solid #eeeeee;
    width: 100%;
    height: 55px;
    font-size: 16px;
    padding-left: 19px;
    padding-right: 15px;
    border-radius: 0px;
    margin-bottom: 20px;
    transition: all 500ms ease;
}
.contact-form form textarea {
    height: 130px;
    padding-left: 19px;
    padding-right: 15px;
    padding-top: 14px;
    padding-bottom: 15px;
}
.contact-form form input[type="text"]:focus{
    color: #222222;
    border-color: #d4d4d4; 
}
.contact-form form input[type="email"]:focus{
    color: #222222;
    border-color: #d4d4d4;
}
.contact-form form textarea:focus{
    color: #222222;
    border-color: #d4d4d4;
}
.contact-form form input[type="text"]::-webkit-input-placeholder {
    color: #848484;
}
.contact-form form input[type="text"]:-moz-placeholder {
    color: #848484;
}
.contact-form form input[type="text"]::-moz-placeholder {
    color: #848484;
}
.contact-form form input[type="text"]:-ms-input-placeholder {
    color: #848484;
}
.contact-form form input[type="email"]::-webkit-input-placeholder {
    color: #848484;
}
.contact-form form input[type="email"]:-moz-placeholder {
    color: #848484;
}
.contact-form form input[type="email"]::-moz-placeholder {
    color: #848484;
}
.contact-form form input[type="email"]:-ms-input-placeholder {
    color: #848484;
}
.contact-form form button , .contact_form_btn{
    position: relative;
    display: block;
    width: 100%;
    background: #1808c1;
    color: #fff;
    font-size: 16px;
    line-height: 55px;
    font-weight: 600;
    text-align: center;
    text-transform: capitalize;
    font-family: 'Poppins', sans-serif;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}
.contact-form form button:hover, .contact_form_btn:hover{
    color: #ffffff;
    background: #131313;
}



/*** 
=============================================
    Google Map Area style
=============================================
***/
.google-map-area{
    position: relative;
    display: block;
    margin-top: -100px;
}
#contact-google-map {
    height: 560px;
    width: 100%;
}


/*** 
=============================================
    Branches Area style
=============================================
***/
.branches-area{
    position: relative;
    display: block;
    padding: 100px 0 76px;
}
.branches-area .sec-title-style1.max-width {
    padding-bottom: 37px;
}

.single-branches-box{
    position: relative;
    display: block;
    padding: 54px 0 52px;
    background: #ffffff;
    text-align: center;
    border: 3px solid transparent;
    -webkit-box-shadow: 0px 3px 8px 2px #ededed; 
    box-shadow: 0px 3px 8px 2px #ededed;
    transition: all 200ms linear;
    transition-delay: 0.1s;
    margin-left: 10px;
    margin-right: 10px;
}
.single-branches-box:hover{
    border-color: #1808c1;
}
.single-branches-box h3{
    font-size: 18px;
    margin: 0 0 20px;
}
.single-branches-box p{
    margin: 0;
    line-height: 36px;
}
.single-branches-box .bottom{
    position: relative;
    display: block;
    padding-top: 6px;
}
.single-branches-box .bottom p{
    line-height: 25px;
    margin: 0;
}

.branches-carousel.owl-carousel .owl-stage-outer {
    position: relative;
    overflow: hidden;
    padding-top: 15px;
    padding-bottom: 34px;
}
.branches-carousel.owl-theme .owl-nav .owl-prev {
    position: absolute;
    left: -85px;
    top: 130px;
    margin: 0;
    z-index: 10;
}
.branches-carousel.owl-theme .owl-nav .owl-next {
    position: absolute;
    right: -85px;
    top: 130px;
    margin: 0;
    z-index: 10;
}
.more-branches{
    position: relative;
    display: block;
}
.more-branches a{
    color: #1808c1;
    font-weight: 700;
}



/*** 
=============================================
   Shop area  style
=============================================
***/
#shop-area {
    padding-top: 100px;
    padding-bottom: 100px;
}
.main-shop-area{
    position: relative;
    display: block;
    background: #ffffff;
}
#shop-area .shop-content {
    position: relative;
    display: block;
}
.showing-result-shorting {
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    padding-bottom: 30px;
    border-bottom: 1px solid #ededed;
    margin-bottom: 50px;
}
.showing-result-shorting .showing{}
.showing-result-shorting .shorting{ }
.showing-result-shorting .showing p {
    color: #828282;
    font-size: 16px;
    font-weight: 400;
    margin: 0;
}


.single-product-item {
    position: relative;
    display: block;
    transition: all 500ms ease;
    margin-bottom: 50px;
}
.single-product-item .img-holder{
    position: relative;
    display: block;
    overflow: hidden;
}
.single-product-item .img-holder::before {
    background: rgba(0, 0, 0, 0.30);    
    top: 0px;
    left: 0px;
    bottom: 0px;
    right: 0px;
    content: "";
    opacity: 0;
    position: absolute;
    z-index: 1;
    transition: all 0.4s ease-in-out 0s;
}
.single-product-item:hover .img-holder::before{
    opacity: 1;
}
.single-product-item .img-holder img{
    transform: scale(1);
    transition: all 0.7s ease 0s;
    width: 100%;   
}
.single-product-item:hover .img-holder img{
    transform: scale(1.1);   
}

.single-product-item .title-holder {
    position: relative;
    display: block;
    background: #ffffff;
    padding: 17px 0 13px;
    -webkit-box-shadow: 0px 3px 8px 2px #f9f9f9;
    box-shadow: 0px 3px 8px 2px #f9f9f9;
    margin-left: 20px;
    margin-right: 20px;
    margin-top: -30px;
    z-index: 10;
}
.single-product-item .title-holder .static-content{
    position: relative;
    display: block;    
}
.single-product-item .title-holder .title {
    position: relative;
    display: block;
    font-size: 16px;
    line-height: 22px;
    font-weight: 600;
    padding: 0 0 3px;
}
.single-product-item .title-holder .title a{
    color: #131313;
    transition: all 500ms ease;
}
.single-product-item .title-holder .static-content span{
    color: #848484;
}

.single-product-item .title-holder .overlay-content{
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: #ffffff;
    text-align: center;
    transform: scaleX(0);
    -webkit-transform: scaleX(0);
    transition: all 700ms ease 300ms;
}
.single-product-item:hover .title-holder .overlay-content {
    transform: scaleY(1);
    -webkit-transform: scaleY(1);
    transition: all 700ms ease 100ms;
}
.single-product-item .title-holder .overlay-content ul {
    position: relative;
    display: block;
    padding: 22px 0 23px;
    width: 153px;
    margin: 0 auto;
    transform: scale(0);
    transition: all 700ms ease 100ms;
}
.single-product-item:hover .title-holder .overlay-content ul{
    transform: scale(1);
    transition: all 700ms ease 600ms;    
}
.single-product-item .title-holder .overlay-content ul li{
    position: relative;
    display: inline-block;
    float: left;
    width: 51px;
    text-align: center;
    border-right: 1px solid #ededed;
}
.single-product-item .title-holder .overlay-content ul li:last-child{
    border: none;
}
.single-product-item .title-holder .overlay-content ul li a{
    position: relative;
    display: block;
}
.single-product-item .title-holder .overlay-content ul li a span:before{
    position: relative;
    display: block;
    width: 100%;
    height: 35px;
    color: #b3b3b3;
    font-size: 18px;
    line-height: 35px;
    margin: 0;
    transition: all 500ms ease;
}
.single-product-item .title-holder .overlay-content ul li a:hover span:before{
    color: #1808c1;
}

.single-product-item .title-holder .overlay-content ul li a .toltip-content {
    position: absolute;
    left: -50%;
    right: 0;
    top: -25px;
    margin-left: -15px;
    opacity: 0;
    visibility: hidden;
    padding: 0;
    text-align: center;
    background-color: #131313;
    transition: all 300ms ease 100ms;
    z-index: 999;
    min-width: 130px;
}
.single-product-item .title-holder .overlay-content ul li a .toltip-content:before {
    font-family: FontAwesome;
    position: absolute;
    left: 0;
    bottom: -8px;
    right: 0;
    content: "\f0d7";
    color: #131313;
    font-size: 25px;
    text-align: center;
    line-height: 10px;
}
.single-product-item .title-holder .overlay-content ul li a .toltip-content p{
    color: #ffffff;
    font-size: 15px;
    line-height: 30px;
    margin: 0;
}
.single-product-item .title-holder .overlay-content ul li a:hover .toltip-content{
    top: -37px; 
    visibility: visible;
    opacity: 1;
}



.shop-sidebar-wrapper {
    position: relative;
    display: block;
    max-width: 270px;
    width: 100%;
}
.shop-sidebar-wrapper .single-sidebar-box {
    position: relative;
    display: block;
    overflow: hidden;
}
.single-sidebar-box.pdbtm{
    padding-bottom: 50px;
}

.shop-sidebar-wrapper .search-form {
    position: relative;
    display: block;
    max-width: 270px;
    width: 100%;
    margin-bottom: 50px;
}
.shop-sidebar-wrapper .search-form input[type="text"] {
    position: relative;
    display: block;
    background: #fff;
    border: 1px solid #ededed;
    color: #7e8597;
    font-size: 15px;
    font-weight: 400;
    height: 50px;
    max-width: 270px;
    width: 100%;
    padding-left: 20px;
    padding-right: 60px;
    border-radius: 0px;
    transition: all 500ms ease 0s;
}
.shop-sidebar-wrapper .search-form button {
    position: absolute;
    top: 0;
    right: 0px;
    bottom: 0;
    display: block;
    background: #1808c1;
    color: #131313;
    font-size: 14px;
    height: 50px;
    width: 50px;
    border: 0px solid #edf2f7;
    line-height: 48px;
    text-align: center;
    border-radius: 0px;
    transition: all 500ms ease 0s;
    margin: 0;
}
.shop-sidebar-wrapper .search-form button i {
    font-size: 14px
}
.shop-sidebar-wrapper .search-form input[type="text"]:focus {
    border: 1px solid #1808c1;
    background: #fff;
    color: #000000;
}
.shop-sidebar-wrapper .search-form input[type="text"]:focus + button, 
.shop-sidebar-wrapper .search-form button:hover {
    background: #1808c1;
    color: #fff;
}

.shop-sidebar-title {
    position: relative;
    display: block;
    padding-bottom: 23px;
    margin-top: -6px;
}
.shop-sidebar-title h3{
    color: #131313;
    font-size: 18px;
    line-height: 26px;
    font-weight: 600;
    text-transform: uppercase;
}

.single-sidebar-box .categories {
    position: relative;
    display: block;
    border: 1px solid #ededed;
    border-bottom: none;
}
.single-sidebar-box .categories li {
    position: relative;
    display: block;
    padding-left: 43px;
    line-height: 53px;
    border-bottom: 1px solid #ededed;
    transition: all 500ms ease;
}
.single-sidebar-box .categories li:before {
    position: absolute;
    top: 0;
    left: 19px;
    bottom: 0;
    width: 8px;
    height: 8px;
    background: #d4d4d4;
    border-radius: 50%;
    content: "";
    transition: all 100ms ease;
    transition-delay: .3s;
    transform: perspective(0px) translateX(0px) rotate(0deg);
    margin: 22px 0 23px;
}
.single-sidebar-box .categories li:hover:before{
    background: #1808c1;
    transform: perspective(0px) translateX(0px) rotate(0deg);    
}
.single-sidebar-box .categories li a {
    position: relative;
    display: inline-block;
    color: #848484;
    font-size: 16px;
    line-height: 22px;
    font-weight: 400;
    font-family: 'Nunito Sans', sans-serif;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}
.single-sidebar-box .categories li:hover a{
    color: #1808c1;
}
.single-sidebar-box .categories li a:before{
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    height: 0px;
    background: #1808c1;
    content: "";
    transition: all 200ms linear;
    transition-delay: 0.1s;
}
.single-sidebar-box .categories li a:hover:before{
    height: 3px;    
}




.shop-sidebar-wrapper .price-ranger {
    margin-top: 4px;
    margin-bottom: 0px;
}
.shop-sidebar-wrapper .price-ranger .ui-widget-content {
    background: #edf2f7;
    border: none;
    height: 2px;
}
.shop-sidebar-wrapper .price-ranger .ui-slider-handle {
    position: absolute;
    top: -4px;
    background: #ffffff;
    border: 1px solid #eeeeee;
    border-radius: 50%;
    height: 10px;
    margin-left: -4px;
    outline: medium none;
    width: 10px !important;
    cursor: pointer;
    z-index: 2;
}
.shop-sidebar-wrapper .price-ranger .ui-slider-handle:before {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 4px;
    height: 4px;
    background: #1808c1;
    border-radius: 50%;
    content: "";
    margin: 2px;
}
.shop-sidebar-wrapper .price-ranger .ui-slider .ui-slider-range {
    background: #1808c1;
}
.shop-sidebar-wrapper .price-ranger #slider-range {
    margin-left: 4px;
    margin-right: 6px;
    margin-top: 0;
}
.shop-sidebar-wrapper .price-ranger .ranger-min-max-block {
    position: relative;
    display: block;
    margin-top: 30px;
}
.shop-sidebar-wrapper .price-ranger .ranger-min-max-block input {
    display: inline-block;
}
.shop-sidebar-wrapper .price-ranger .ranger-min-max-block input[type="submit"] {
    position: relative;
    display: inline-block;
    background: #1808c1;
    float: left;
    margin-right: 10px;
    padding: 6px 0 4px;
    text-align: center;
    width: 90px;
    border: none;
    color: #131313;
    font-size: 16px;
    font-weight: 600;
    margin-top: 0;
    border-radius: 0;
    text-transform: capitalize;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
}
.shop-sidebar-wrapper .price-ranger .ranger-min-max-block input[type="submit"]:hover{}
.shop-sidebar-wrapper .price-ranger .ranger-min-max-block input[type="text"] {
    position: relative;
    display: inline-block;
    float: left;
    color: #848484;
    font-size: 16px;
    font-weight: 400;
    text-align: right;
    width: 40px;
    line-height: 35px;
    border: none;
    padding: 0;
}
.shop-sidebar-wrapper .price-ranger .ranger-min-max-block input[type='text'].max {}
.shop-sidebar-wrapper .price-ranger .ranger-min-max-block span {
    position: relative;
    display: inline-block;
    color: #848484;
    font-size: 16px;
    font-weight: 400;
    line-height: 35px;
    float: left;
}


.shop-sidebar-wrapper .products-post {
    position: relative;
    display: block;
    overflow: hidden;
}
.shop-sidebar-wrapper .products-post li {
    position: relative;
    display: block;
    border-bottom: 1px solid #ededed;
    min-height: 70px;
    padding-left: 70px;
    padding-bottom: 25px;
    margin-bottom: 25px;
}
.shop-sidebar-wrapper .products-post li:last-child{
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: none;
}
.shop-sidebar-wrapper .products-post li .img-holder {
    position: absolute;
    top: 0px;
    left: 0;
    width: 70px;
    height: 70px;
    display: block;
    overflow: hidden;
}
.shop-sidebar-wrapper .products-post li .img-holder img {
    transition: all 0.4s ease-in-out 0.5s;    
    width: 100%;
    transform: scale(1.1, 1.1);      
}
.shop-sidebar-wrapper .products-post li:hover .img-holder img {
    transition-delay: 0s;
    transform: scale(1.2, 1.2);    
}
.shop-sidebar-wrapper .products-post li .img-holder .overlay-style-one{
    background: rgba(0, 0, 0, 0.90);
}
.shop-sidebar-wrapper .products-post li .img-holder .overlay-style-one .box .content a{
    display: inline-block;
    width: 20px;
    height: 20px;
    filter: alpha(opacity=0);
    transform: scale(3);
    transition: all 0.3s ease-in-out 0.3s;
    opacity: 0;
    z-index: 5;    
}
.shop-sidebar-wrapper .products-post li:hover .img-holder .overlay-style-one .box .content a{
   filter: alpha(opacity=100);
   transform: scale(1);
   transition-delay: 0.1s; 
   opacity: 1;
}
.shop-sidebar-wrapper .products-post li .img-holder .overlay-style-one .box .content a span:before{
    color: #ffffff;
    font-size: 20px;
    line-height: 20px;
    transition: all 500ms ease;
}
.shop-sidebar-wrapper .products-post li .img-holder .overlay-style-one .box .content a:hover span:before{
    color: #1808c1;
}
.shop-sidebar-wrapper .products-post li:hover .img-holder .overlay-style-one{
    opacity: 1;
}

.shop-sidebar-wrapper .products-post li .title-holder {
    padding-left: 30px;
    min-height: 70px;
}
.shop-sidebar-wrapper .products-post li .title-holder .post-title {
    font-size: 16px;
    line-height: 20px;
    font-weight: 600;
    margin: 0 0 13px;
    transition: all 500ms ease;
}
.shop-sidebar-wrapper .products-post li .title-holder .post-title a{
    color: #131313;
    transition: all 500ms ease;
}
.shop-sidebar-wrapper .products-post li .title-holder .post-title a:hover{
    color: #1808c1;
}
.shop-sidebar-wrapper .products-post li .title-holder span {
    display: block;
    line-height: 16px;
}



/*** 
=============================================
   Single Shop Area style
=============================================
***/
#shop-area.single-shop-area {
    padding-top: 100px;
    padding-bottom: 50px;
}
.single-product-image-holder {
    margin-right: 35px;
}
.single-product-image-holder img{
    width: auto;
}

.single-shop-content .content-box {
    position: relative;
    display: block;
}
.single-shop-content .content-box span.price {
    color: #848484;
    font-size: 24px;
    font-weight: 400;
}
.single-shop-content .content-box h2 {
    color: #131313;
    font-size: 30px;
    font-weight: 600;
    margin: 6px 0 12px;
    text-transform: capitalize;
}
.single-shop-content .content-box .review-box {}
.single-shop-content .content-box .review-box ul {}
.single-shop-content .content-box .review-box ul li {}
.single-shop-content .content-box .review-box ul li i {
    color: #1808c1;
    font-size: 16px;
}
.single-shop-content .content-box .text {
    position: relative;
    display: block;
    overflow: hidden;
    padding: 22px 0 21px;
}
.single-shop-content .content-box .text p{
    margin: 0;
}
.single-shop-content .content-box .location-box {
    margin: 0 0 32px;
}
.single-shop-content .content-box .location-box p {
    color: #848484;
    font-size: 15px;
    margin: 0 0 12px;
}
.single-shop-content .content-box .location-box form {
    position: relative;
    display: block;
    overflow: hidden;
    margin-bottom: 9px;
}
.single-shop-content .content-box .location-box form input {
    position: relative;
    display: inline-block;
    float: left;
    border: 1px solid #ededed;
    height: 50px;
    padding-left: 10px;
    padding-right: 10px;
    width: 180px;
    transition: all 500ms ease;
    margin: 0;
}
.single-shop-content .content-box .location-box form input:focus{
    border-color: #f9d030;
}
.single-shop-content .content-box .location-box form button {
    position: relative;
    display: inline-block;
    float: left;
    background: #f6f6f6;
    border: none;
    color: #131313;
    font-size: 16px;
    font-weight: 600;
    line-height: 52px;
    height: 50px;
    width: 100px;
    margin: 0;
    padding: 0;
    text-align: center;
    text-transform: uppercase;
    transition: all 500ms ease 0s;
    font-family: 'Poppins', sans-serif;
}
.single-shop-content .content-box .location-box form button:hover{
    color: #fff;
    background: #f9d030;
}
.single-shop-content .content-box .location-box span {
    color: #f9d030;
}


.single-shop-content .content-box .addto-cart-box {}
.single-shop-content .content-box .addto-cart-box .input-group.bootstrap-touchspin {
    float: left;
    width: 46px;
}
.single-shop-content .content-box .addto-cart-box .bootstrap-touchspin .input-group-btn-vertical .btn {
    position: relative;
    display: block;
    float: none;
    margin-left: 0px;
    width: 100%;
    background: #f6f6f6;
    border: 1px solid #f6f6f6;
    color: #848484;
    padding: 12px 11px;
    cursor: pointer;
}
.single-shop-content .content-box .addto-cart-box .bootstrap-touchspin .input-group-btn-vertical .bootstrap-touchspin-up {
    border-radius: 0
}
.single-shop-content .content-box .addto-cart-box .bootstrap-touchspin .input-group-btn-vertical .bootstrap-touchspin-down {
    border-radius: 0;
    margin-top: -2px;
}
.single-shop-content .content-box .addto-cart-box .bootstrap-touchspin .input-group-btn-vertical .btn.bootstrap-touchspin-up:before {
    content: "\f0d8";
    font-family: FontAwesome;
    color: #848484;
    font-size: 14px;
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    padding: 5px 5px 5px;
}
.single-shop-content .content-box .addto-cart-box .bootstrap-touchspin .input-group-btn-vertical .btn.bootstrap-touchspin-down:before {
    content: "\f0d7";
    font-family: FontAwesome;
    color: #848484;
    font-size: 14px;
    position: absolute;
    top: -1px;
    left: 0px;
    width: 100%;
    height: 100%;
    padding: 0px 5px 5px;
}
.single-shop-content .content-box .addto-cart-box button.addtocart {
    position: relative;
    display: inline-block;
    background: #1808c1;
    height: 50px;
    width: 170px;
    margin-left: 43px;
    color: #131313;
    font-size: 16px;
    line-height: 50px;
    font-weight: 600;
    text-transform: capitalize;
    padding: 0px 0 0px;
    cursor: pointer;
    border-radius: 0;
    font-family: 'Poppins', sans-serif;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}
.single-shop-content .content-box .addto-cart-box button.addtocart:hover{
    color: #ffffff;
    background: #131313;   
}

.share-products-socials {
    position: relative;
    display: block;
    overflow: hidden;
    margin-top: 46px;
}
.share-products-socials h5{
    position: relative;
    display: inline-block;
    float: left;
    color: #131313;
    font-size: 16px;
    line-height: 40px;
    font-weight: 600;
    text-transform: capitalize;
}
.share-products-socials ul {
    position: relative;
    display: inline-block;
    float: left;
    margin-left: 20px;
}
.share-products-socials ul li{
    position: relative;
    display: inline-block;
    float: left;
    margin-right: 10px;
}
.share-products-socials ul li:last-child{
    margin-right: 0;
}
.share-products-socials ul li a i{
    position: relative;
    display: block;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 18px;
    line-height: 42px;
    text-align: center;
    transition: all 500ms ease;
}
.share-products-socials ul li a i.fb{
    background: #3b5998;
    border-color: #3b5998;
    color: #ffffff;
}
.share-products-socials ul li a:hover i.fb{
    background: #1d376f;    
}
.share-products-socials ul li a i.tw{
    background: #55acee;
    border-color: #55acee;
    color: #ffffff;    
}
.share-products-socials ul li a:hover i.tw{
    background: #1e7dc5;    
}
.share-products-socials ul li a i.pin{
    background: #cb2027;
    border-color: #cb2027;
    color: #ffffff;       
}
.share-products-socials ul li a:hover i.pin{
    background: #a81218;    
}
.share-products-socials ul li a i.lin{
    background: #007ab9;
    border-color: #007ab9;
    color: #ffffff;      
}
.share-products-socials ul li a:hover i.lin{
    background: #01537d;    
}


.product-tab-box {
    position: relative;
    display: block;
    overflow: hidden;
    margin-top: 66px;
}
.product-tab-box .tab-btns {
    position: relative;
    display: block;
    text-align: center;
    border-bottom: 1px solid #ededed;
    margin-bottom: 35px;
    z-index: 1;
}
.product-tab-box .tab-btns .tab-btn {
    display: inline-block;
    float: none;
    text-align: center;
    margin: 0 2px;
}
.product-tab-box .tab-btns .tab-btn span {
    position: relative;
    display: block;
    background: transparent;
    border-radius: 0;
    cursor: pointer;
    margin: 0;
    padding: 15px 20px 13px;
    color: #131313;
    font-size: 20px;
    font-weight: 600;
    text-transform: capitalize;
    transition: all 500ms ease;
    font-family: 'Poppins', sans-serif;
}
.product-tab-box .tab-btns .tab-btn.active-btn span, 
.product-tab-box .tab-btns .tab-btn:hover span{
    color: #1808c1;
}
.product-tab-box .tab-btns .tab-btn span:before{
    position: absolute;
    left: 0;
    bottom: -1px;
    right: 0;
    height: 1px;
    background: #1808c1;
    content: "";
    opacity: 0;
    transition: all 500ms ease;
    transition-delay: .3s;
}
.product-tab-box .tab-btns .tab-btn.active-btn span:before,
.product-tab-box .tab-btns .tab-btn:hover span:before{
    opacity: 1;
}

.product-tab-box .tabs-content {
    position: relative;
    display: block;
    padding: 0;
}
.product-tab-box .tabs-content .tab{
	position: relative;
	padding: 0px;
	display: none;
}
.product-tab-box .tabs-content .tab.active-tab{
	display: block;	
}
.review-box-holder {
    position: relative;
    display: block;
}
.review-box-holder .single-review-box {
    position: relative;
    display: block;
    padding-left: 70px;
    margin-bottom: 40px;
    border-bottom: 1px solid #ededed;
    padding-bottom: 32px;
}
.review-box-holder .single-review-box .image-holder {
    position: absolute;
    left: 0;
    top: 5px;
}
.review-box-holder .single-review-box .image-holder img{
    width: 100%;
    border-radius: 50%;
}

.review-box-holder .single-review-box .text-holder {
    position: relative;
    display: block;
    padding-left: 20px;
    padding-right: 40px;
}
.review-box-holder .single-review-box .text-holder .top {
    position: relative;
    display: block;
    overflow: hidden;
    margin: 0 0 17px;
}
.review-box-holder .single-review-box .text-holder .top .name h3 {
    color: #131313;
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 6px;
    text-transform: uppercase;
}
.review-box-holder .single-review-box .text-holder .top .name h3 span{
    color: #1808c1;
    font-size: 16px;
    font-weight: 400;
    text-transform: none;
    font-family: 'Nunito Sans', sans-serif;
}
.review-box-holder .single-review-box .text-holder .top .review-box ul {
    position: relative;
    display: block;
    overflow: hidden;
}
.review-box-holder .single-review-box .text-holder .top .review-box ul li {
    display: inline-block;
    margin-right: 3px;
}
.review-box-holder .single-review-box .text-holder .top .review-box ul li:last-child{
    margin-right: 0;
}
.review-box-holder .single-review-box .text-holder .top .review-box ul li i {
    color: #1808c1;
    font-size: 14px;
}
.review-box-holder .single-review-box .text-holder .text p {
    margin: 0;
}


.product-tab-box .review-form {
    padding-top: 33px;
}
.product-tab-box .review-form .shop-page-title{
    padding-bottom: 28px;
}
.shop-page-title{
    position: relative;
    display: block;
}
.shop-page-title .title{
    color: #131313;
    font-size: 24px;
    line-height: 32px;
    font-weight: 700;
    margin: 0 0 6px;
    text-transform: uppercase;
    font-family: 'Poppins', sans-serif;
}
.shop-page-title .title span{
    font-weight: 400;
}
.shop-page-title p{
    margin: 0;
}
.shop-page-title p b{
    color: #1808c1;
    font-weight: 400;
}

.product-tab-box .review-form .add-rating-box {
    position: relative;
    display: block;
    overflow: hidden;
    margin-bottom: 20px;
}
.product-tab-box .review-form .add-rating-box .add-rating-title{
    position: relative;
    display: inline-block;
    float: left;    
}
.product-tab-box .review-form .add-rating-box .add-rating-title h4 {
    color: #828282;
    font-size: 15px;
    font-weight: 400;
    line-height: 20px;
    margin: 0;
    text-transform: capitalize;
}
.product-tab-box .review-form .add-rating-box .review-box{
    position: relative;
    display: inline-block;
    float: left; 
    padding-left: 20px;
}
.product-tab-box .review-form .add-rating-box .review-box ul li {
    position: relative;
    display: inline-block;
    float: left;
    line-height: 20px;
    margin-right: 5px;
}
.product-tab-box .review-form .add-rating-box .review-box ul li:last-child{
    margin-right: 0px;
}
.product-tab-box .review-form .add-rating-box .review-box ul li i {
    color: #b5b5b5;
    font-size: 16px;
    line-height: 20px;
    opacity: 1;
    transition: all 500ms ease 0s;
}



.product-tab-box .review-form .input-box p{
    color: #828282;
    font-size: 15px;
    line-height: 20px;
    font-weight: 400;
    margin: 0 0 5px;
}
.product-tab-box .review-form .input-box p span{
    color: #1808c1;    
}
.product-tab-box .review-form form input[type="text"], 
.product-tab-box .review-form form input[type="email"], 
.product-tab-box .review-form form textarea {
    position: relative;
    display: block;
    background: #ffffff;
    width: 100%;
    height: 60px;
    border: 1px solid #ededed;
    color: #252525;
    font-size: 15px;
    padding: 0 20px;
    margin-bottom: 30px;
    border-radius: 0px;
    transition: all 500ms ease;
}
.product-tab-box .review-form form textarea {
    height: 170px;
    padding: 10px 20px;
    margin-bottom: 40px;
}
.product-tab-box .review-form form button {
    color: #131313;
    font-size: 16px;
    font-weight: 600;
    text-transform: capitalize;
    padding: 0 50px;
    background: #1808c1;
    border-radius: 0;
}
.product-tab-box .review-form form button:hover{
    color: #ffffff;
    background: #131313; 
}
.product-tab-box .review-form form input[type="text"]:focus{
    border-color: #e1dddd;
}
.product-tab-box .review-form form input[type="email"]:focus{
    border-color: #e1dddd;
}
.product-tab-box .review-form form textarea:focus{
    border-color: #e1dddd;  
}

.related-product {
  padding-top: 73px;
}
.related-product .shop-page-title {
    padding-bottom: 26px;
}
.related-product .single-product-item {}



/*** 
=============================================
   Cart area  style
=============================================
***/
.cart-area {
    padding-top: 100px;
    padding-bottom: 100px;
}
.cart-area .table-outer {
    overflow-x: auto;
    position: relative;
    width: 100%;
}
.cart-area .cart-table {
    min-width: 1024px;
    width: 100%;
}
.cart-area .cart-table .cart-header {
    position: relative;
    background: #f6f6f6;
    color: #131313;
    font-size: 16px;
    font-weight: 600;
    text-transform: capitalize;
    width: 100%;
    font-family: 'Poppins', sans-serif;
}
.cart-area .cart-table thead tr th {
    font-weight: 600;
    line-height: 24px;
    min-width: 110px;
    padding: 20px 25px;
}
.cart-area .cart-table thead tr th.prod-column {
    padding-left: 30px;
    text-align: left;
}
.cart-area .cart-table thead tr th.availability {
    padding: 0 40px
}
.cart-area .cart-table tbody tr {
    border-bottom: 1px solid #ededed;
}
.cart-area .cart-table tbody tr td {
    color: #131313;
    font-size: 18px;
    font-weight: 600;
    line-height: 24px;
    min-width: 100px;
    padding: 30px 25px;
    font-family: 'Poppins', sans-serif;
}
.cart-area .cart-table tbody tr .prod-column .column-box {
    position: relative;
    min-height: 100px;
}
.cart-area .cart-table tbody tr .prod-column .column-box .prod-thumb {
    width: 80px;
}
.cart-area .cart-table tbody tr .prod-column .column-box .prod-thumb a {
    position: relative;
    display: block;
    border-radius: 0px;
}
.cart-area .cart-table tbody tr .prod-column .column-box .prod-thumb a img {
    width: 100%;
}
.cart-area .cart-table tbody tr .prod-column .column-box .prod-thumb, 
.cart-area .cart-table tbody tr .prod-column .column-box .title{
    display: table-cell;
    vertical-align: middle;
}
.cart-area .cart-table tbody tr .prod-column .column-box .title{
    padding-left: 20px;
}
.cart-area .cart-table tbody tr .prod-column .column-box .title h3 {
    color: #131313;
    font-size: 18px;
    font-weight: 600;
    line-height: 20px;
    text-transform: capitalize;
}

.cart-area .cart-table tbody tr .qty {
    padding-right: 25px;
    width: 120px;
}
.cart-area .cart-table tbody tr .qty .input-group.bootstrap-touchspin {
    float: left;
    width: 46px;
}
.cart-area .cart-table tbody tr .qty .bootstrap-touchspin .input-group-btn-vertical > .btn {
    position: relative;
    display: block;
    float: none;
    margin-left: 0px;
    width: 100%;
    background: #f6f6f6;
    border: 1px solid #f6f6f6;
    color: #848484;
    padding: 12px 11px;
    cursor: pointer;
}
.cart-area .cart-table tbody tr .qty .bootstrap-touchspin .input-group-btn-vertical .bootstrap-touchspin-up {
    border-radius: 0
}
.cart-area .cart-table tbody tr .qty .bootstrap-touchspin .input-group-btn-vertical .bootstrap-touchspin-down {
    border-radius: 0;
    margin-top: -2px;
}
.cart-area .cart-table tbody tr .qty .bootstrap-touchspin .input-group-btn-vertical > .btn.bootstrap-touchspin-up:before {
    content: "\f0d8";
    font-family: FontAwesome;
    color: #848484;
    font-size: 14px;
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    padding: 5px 5px 5px;
}
.cart-area .cart-table tbody tr .qty .bootstrap-touchspin .input-group-btn-vertical > .btn.bootstrap-touchspin-down:before {
    content: "\f0d7";
    font-family: FontAwesome;
    color: #848484;
    font-size: 14px;
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    padding: 0px 5px 10px;
}


.cart-area .cart-table tbody tr td.unit-price {
    padding-left: 40px;
    padding-right: 20px;
}
.cart-area .cart-table tbody .available-info {
    position: relative;
    color: #848484;
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
    padding-left: 50px;
    font-family: 'Nunito Sans', sans-serif;
}
.cart-area .cart-table tbody .available-info .icon {
    position: absolute;
    top: 0px;
    left: 0;
    width: 40px;
    height: 40px;
    background: #1808c1;
    border-radius: 50%;
    color: #ffffff;
    font-size: 18px;
    line-height: 40px;
    text-align: center;
}

.cart-area .cart-table tbody tr td.price {
    color: #848484;
    font-size: 16px;
    font-weight: 400;
    font-family: 'Nunito Sans', sans-serif;
}
.cart-area .cart-table tbody tr .sub-total {
    color: #848484;
    font-size: 16px;
    font-weight: 400;
    font-family: 'Nunito Sans', sans-serif;
}
.cart-area .cart-table tbody tr td .remove{ }
.cart-area .cart-table tbody tr td .remove .checkbox label {
    color: #828282;
    font-size: 15px;
    font-weight: 400;
}
.cart-area .cart-table tbody tr td .remove .checkbox label input[type="checkbox"] {
    display: inline-block;
    position: relative;
    top: 1px;
}




.cart-middle {
    padding-top: 30px
}
.cart-middle .apply-coupon {
    padding-left: 245px;
    position: relative;
}
.cart-middle .apply-coupon input[type="text"] {
    position: absolute;
    top: 0;
    left: 0;
    width: 225px;
    height: 60px;
    border: 1px solid #ededed;
    color: #828282;
    font-size: 15px;
    font-weight: 400;
    padding: 0 15px;
    text-transform: capitalize;
    transition: all 500ms ease 0s;
    border-radius: 0px;
}
.cart-middle .apply-coupon input[type="text"]:focus {
    border: 1px solid #1808c1
}
.cart-middle .apply-coupon .apply-coupon-button button {
}
.cart-middle .apply-coupon .apply-coupon-button button:hover{
    color: #ffffff;
    background: #131313
}
.cart-middle .update-cart button {
    color: #131313;
    background: #1808c1;
}
.cart-middle .update-cart button:hover{
    color: #ffffff;
    background: #131313;
} 


.cart-bottom {
    overflow: hidden;
    padding-top: 68px;
}
.cart-bottom .calculate-shipping {}
.cart-bottom .shop-page-title {
    padding-bottom: 16px;
}
.cart-bottom .calculate-shipping .ui-state-default .ui-icon {
    background: none
}
.cart-bottom .calculate-shipping .ui-state-default {
    position: relative;
    display: block;
    background: #ffffff;
    border: 1px solid #ededed;
    border-radius: 0;
    color: #828282;
    font-size: 15px;
    font-weight: 400;
    height: 50px;
    margin-bottom: 30px;
    outline: medium none;
    width: 100%;
    font-family: 'Nunito Sans', sans-serif;
}
.cart-bottom .calculate-shipping .ui-selectmenu-button span.ui-selectmenu-text {
    display: block;
    line-height: 18px;
    overflow: hidden;
    padding: 15px 19px;
    text-align: left;
}
.cart-bottom .calculate-shipping .ui-selectmenu-button span.ui-icon {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    border-left: 1px solid #ededed;
    display: block;
    width: 60px;
    height: 48px;
    text-indent: 0;
    margin: 0;
}
.cart-bottom .calculate-shipping .ui-selectmenu-button span.ui-icon::before {
    color: #9b9b9b;
    content: "\f107";
    font-family: FontAwesome;
    font-size: 20px;
    overflow: visible;
    position: absolute;
    right: 21px;
    top: 12px;
}
.cart-bottom .calculate-shipping input[type="text"] {
    position: relative;
    display: block;
    border: 1px solid #ededed;
    color: #828282;
    font-size: 15px;
    font-weight: 400;
    height: 50px;
    padding: 0 20px;
    width: 100%;
    margin-bottom: 30px;
    transition: all 500ms ease;
    font-family: 'Nunito Sans', sans-serif;
}
.cart-bottom .calculate-shipping input[type="text"]:focus {
    border: 1px solid #1d1d1d;
}
.cart-bottom .calculate-shipping button {

}
.cart-bottom .calculate-shipping button:hover{
    color: #ffffff;
    background: #131313;
}
.cart-bottom button.checkout-btn{
    margin-top: 30px;
}
.cart-bottom button.checkout-btn:hover{
    color: #ffffff;
    background: #131313;
}



/*** 
=============================================
    Checkout Area style
=============================================
***/
.checkout-area {
    position: relative;
    display: block;
    padding-top: 100px;
}
.checkout-area .exisitng-customer {
    position: relative;
    display: block;
    background: #f6f6f6;
    padding: 20px 28px 21px;
    margin-bottom: 20px;
    border-radius: 5px;
}
.checkout-area .exisitng-customer:before{
    position: absolute;
    top: 0;
    left: 0;
    width: 2px;
    height: 100%;
    background: #1808c1;
    content: "";
}
.checkout-area .exisitng-customer h5{
    color: #131313;
    font-size: 16px;
    font-weight: 600;
}
.checkout-area .exisitng-customer h5 a{
    color: #1808c1;
    font-weight: 700;
    display: inline-block;
    padding-left: 15px;
}

.checkout-area .coupon {
    position: relative;
    display: block;
    background: #f6f6f6;
    padding: 20px 28px 21px;
    margin-bottom: 53px;
    border-radius: 5px;
}
.checkout-area .coupon:before {
    position: absolute;
    top: 0;
    left: 0;
    width: 2px;
    height: 100%;
    background: #1808c1;
    content: "";  
}
.checkout-area .coupon h5 {
    color: #131313;
    font-size: 16px;
    font-weight: 600;
}
.checkout-area .coupon h5 a {
    color: #1808c1;
    font-weight: 700;
    display: inline-block;
    padding-left: 15px;  
}

.checkout-area .form .shop-page-title{
    padding-bottom: 20px;    
}
.checkout-area .form form .field-label {
    color: #131313;
    font-size: 16px;
    font-weight: 400;
    margin: 0 0 2px;
    text-transform: capitalize;
}
.checkout-area .form form .field-label span{
    color: #1808c1;
}
.checkout-area .form form .field-input input[type="text"] {
    position: relative;
    display: block;   
    border: 1px solid #ededed;
    color: #848484;
    font-size: 15px;
    height: 48px;
    margin-bottom: 25px;
    padding: 0 15px;
    width: 100%;
    border-radius: 0px;
    transition: all 500ms ease;
}
.checkout-area .form form .field-input input[type="text"]:focus{
    border: 1px solid #1808c1;
}
.checkout-area .create-acc .checkbox {
    margin: 7px 0 0;
}
.checkout-area .create-acc .checkbox label {
    color: #131313;
    font-size: 16px;
    font-weight: 500;
    margin: 0;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
}
.checkout-area .create-acc .checkbox input {
    position: relative;
    top: 1px;
}
.checkout-area .shipping-info input[type="checkbox"] {
    cursor: pointer;
    display: inline-block;
    margin: 0 0 0 20px;
    position: relative;
    top: 0px;
    vertical-align: middle;
}
.checkout-area .form form .field-input textarea {
    position: relative;
    display: block;
    border: 1px solid #ededed;
    color: #848484;
    font-size: 15px;
    height: 121px;
    margin-bottom: 28px;
    padding: 10px 15px;
    width: 100%;
    border-radius: 0px;
    transition: all 500ms ease;
}
.checkout-area .form form .field-input textarea:focus{
    border-color: #1808c1;
}


.checkout-area .bottom {
    position: relative;
    display: block;
    background: #f5f5f5;
    padding-top: 93px;
    padding-bottom: 100px;
    margin-top: 82px;
}
.checkout-area .table {
    overflow-x: auto;
    position: relative;
    width: 100%;
    margin-bottom: 0;
}
.checkout-area .table .shop-page-title{
    padding-bottom: 26px;
}
.checkout-area .table .cart-table {
    min-width: auto;
    width: 100%;
}
.checkout-area .table .cart-table .cart-header {
    position: relative;
    background: #1808c1;
    color: #131313;
    font-size: 16px;
    font-weight: 600;
    text-transform: capitalize;
    width: 100%;
    font-family: 'Poppins', sans-serif;
}
.checkout-area .table .cart-table thead tr th {
    font-weight: 600;
    line-height: 24px;
    min-width: 110px;
    padding: 19px 30px 17px;
    border-top: none;
    border-bottom: none;
}
.checkout-area .table .cart-table thead tr th.product-column {
    padding-left: 30px;
    text-align: left;
}
.checkout-area .table .cart-table tbody tr {
    border-bottom: 1px solid #dadada;
}
.checkout-area .table .cart-table tbody tr td {
    vertical-align: middle
}
.checkout-area .table .cart-table tbody tr td {
    min-width: 110px;
    padding: 30px 25px;
    border-top: none;
}

.checkout-area .table .cart-table tbody tr .product-column .column-box {
    min-height: 100px;
}
.checkout-area .table .cart-table tbody tr .product-column .column-box .prod-thumb {
    width: 80px;
    border: 1px solid #dadada;
}
.checkout-area .table .cart-table tbody tr .product-column .column-box .prod-thumb a {
    display: block;
}
.checkout-area .table .cart-table tbody tr .product-column .column-box .prod-thumb img {
    display: block;
    width: 100%;
}
.checkout-area .table .cart-table tbody tr .product-column .column-box .prod-thumb, 
.checkout-area .table .cart-table tbody tr .product-column .column-box .product-title{
    display: table-cell;
    vertical-align: middle;
}
.checkout-area .table .cart-table tbody tr .product-column .column-box .product-title{
    padding-left: 20px;
}
.checkout-area .table .cart-table tbody tr .product-column .column-box .product-title h3 {
    color: #131313;
    font-size: 16px;
    font-weight: 600;
    text-transform: capitalize;
}

.checkout-area .table .cart-table tbody tr .qty {
    padding-right: 30px;
    width: 130px;
}
.checkout-area .table .cart-table tbody tr .qty .input-group.bootstrap-touchspin {
    float: left;
    width: 46px;
}
.checkout-area .table .cart-table tbody tr .qty .form-control {
    display: block;
    background-color: #ffffff;
    background-image: none;
    border: 1px solid #f6f6f6;
    border-right: none;
    border-radius: 0 !important;
    box-shadow: none;
    color: #131313;
    font-size: 18px;
    font-weight: 600;
    height: 50px;
    padding: 6px 0;
    text-align: center;
    font-family: 'Poppins', sans-serif;
}

.checkout-area .table .cart-table tbody tr .qty .bootstrap-touchspin .input-group-btn-vertical > .btn {
    position: relative;
    display: block;
    float: none;
    margin-left: 0px;
    width: 100%;
    background: #ffffff;
    border: 1px solid #f6f6f6;
    color: #848484;
    padding: 12px 11px;
    cursor: pointer;
}
.checkout-area .table .cart-table tbody tr .qty .bootstrap-touchspin .input-group-btn-vertical .bootstrap-touchspin-up {
    border-radius: 0
}
.checkout-area .table .cart-table tbody tr .qty .bootstrap-touchspin .input-group-btn-vertical .bootstrap-touchspin-down {
    border-radius: 0;
    margin-top: -2px;
}
.checkout-area .table .cart-table tbody tr .qty .bootstrap-touchspin .input-group-btn-vertical > .btn.bootstrap-touchspin-up:before {
    content: "\f0d8";
    font-family: FontAwesome;
    color: #848484;
    font-size: 14px;
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    padding: 1px 5px 5px;
}
.checkout-area .table .cart-table tbody tr .qty .bootstrap-touchspin .input-group-btn-vertical > .btn.bootstrap-touchspin-down:before {
    content: "\f0d7";
    font-family: FontAwesome;
    color: #848484;
    font-size: 14px;
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    padding: 2px 5px 8px;
}
.checkout-area .table .cart-table tbody tr td.price {
    color: #131313;
    font-size: 16px;
    font-weight: 500;
    font-family: 'Nunito Sans', sans-serif;
}


.cart-total{
    position: relative;
    display: block;
}
.checkout-area .cart-total .shop-page-title{
    padding-bottom: 26px;
}
.cart-total-table {
    border: 1px solid #dadada
}
.cart-total-table li {
    border-bottom: 1px solid #dadada
}
.cart-total-table li:last-child {
    border-bottom: none
}
.cart-total-table li span.col.col-title {
    position: relative;
    display: block;
    float: left;
    border-right: 1px solid #dadada;
    color: #131313;
    font-size: 16px;
    font-weight: 600;
    line-height: 28px;
    padding: 10px 18px;
    width: 50%;
    font-family: 'Poppins', sans-serif;
}
.cart-total-table li span.col {
    position: relative;
    display: block;
    float: left;
    color: #848484;
    font-size: 16px;
    font-weight: 400;
    line-height: 28px;
    padding: 10px 18px;
    width: 50%;
    font-family: 'Nunito Sans', sans-serif;
}

.cart-total .payment-options {
    position: relative;
    display: block;
    overflow: hidden;
    background: #f5f5f5;
    margin-top: 30px;
    border: 1px solid #dadada;
    padding: 33px 30px 40px;
}
.cart-total .payment-options .option-block {
    margin-bottom: 14px
}
.cart-total .payment-options .option-block .checkbox {
    margin: 0 0 5px;
}
.cart-total .payment-options .option-block .checkbox label {
    display: block;
    font-weight: 500;
    min-height: 20px;
    padding-left: 0px;
    margin: 0;
}
.cart-total .payment-options .option-block .checkbox label input {
    position: relative;
    top: 1px;
}
.cart-total .payment-options .option-block .checkbox label span {
    color: #131313;
    font-size: 16px;
    font-weight: 600;
    padding-left: 10px;
    font-family: 'Poppins', sans-serif;
}
.cart-total .payment-options .option-block .checkbox label span b {
    color: #27282c;
    display: inline-block;
    font-size: 16px;
    font-weight: 400;
    padding-left: 25px;
    text-decoration: underline;
    font-family: 'Nunito Sans', sans-serif;
}
.cart-total .payment-options .option-block .text{
    padding-left: 30px;
}
.cart-total .payment-options .option-block .text p {
    margin: 0;
    line-height: 28px;
}
.placeorder-button button {
    color: #131313;
    background: #1808c1;
    padding: 0 50px;
    margin-top: 17px;
}
.placeorder-button button:hover{
    color: #ffffff;
    background: #131313;
}



/*** 
=============================================
    Login Register Area style
=============================================
***/
.login-register-area {
    position: relative;
    display: block;
    padding-top: 93px;
    padding-bottom: 92px;
}
.login-register-area .form .shop-page-title{
    padding-bottom: 26px;
}
.login-register-area .form form {
    width: 100%;
}
.login-register-area .form .input-field {
    position: relative;
}
.login-register-area .form .input-field input[type="text"] {
    position: relative;
    display: block;
    width: 100%;
    height: 50px;
    border: 1px solid #ededed;
    color: #83888d;
    font-size: 16px;
    margin-bottom: 30px;
    padding-left: 15px;
    padding-right: 50px;
    transition: all 700ms ease 0s;
}
.login-register-area .form .input-field .icon-holder {
    position: absolute;
    top: 15px;
    right: 20px;
}
.login-register-area .form .input-field .icon-holder i {
    color: #999999;
    font-size: 14px;
    font-weight: 400;
}
.login-register-area .form button {
    color: #131313;
    line-height: 50px;
    background: #1808c1;
    padding: 0 40px;
}
.login-register-area .form button:hover{ 
    color: #ffffff;
    background: #131313; 
}

.login-register-area .form .remember-text {
    margin-top: 19px;
}
.login-register-area .form .remember-text .checkbox label {
    color: #27282c;
    font-size: 16px;
    font-weight: 600;
    margin: 0;
    cursor: pointer;
}
.login-register-area .form .remember-text .checkbox input {
    position: relative;
    top: 1px;
}
.login-register-area .form .remember-text .checkbox span {
    color: #27282c;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
}


.login-register-area .form .social-icon {
    position: relative;
    float: right;
    margin-right: -8px;
    margin-top: 10px;
}
.login-register-area .form .social-icon .login-with {
    position: absolute;
    left: -100px;
    top: 8px;
    margin: 0;
}
.login-register-area .form .social-icon li {
    display: inline-block;
    margin: 0 8px;
}
.login-register-area .form .social-icon li a i {
    background: #47588f none repeat scroll 0 0;
    border-radius: 50%;
    color: #fff;
    display: block;
    font-size: 14px;
    font-weight: 100;
    height: 40px;
    line-height: 24px;
    padding: 8px 0;
    text-align: center;
    transition: all 700ms ease 0s;
    width: 40px;
}
.login-register-area .form .social-icon li a i.twitter {
    background: #33ccfe none repeat scroll 0 0;
}
.login-register-area .form .social-icon li a i.gplus {
    background: #dd4b39 none repeat scroll 0 0;
}


.login-register-area .form .right {
    display: block;
    overflow: hidden;
    margin-left: -60px;
}
.login-register-area .form .right h6 {
    float: left;
    color: #828282;
    font-size: 14px;
    font-weight: 400;
    margin-top: 18px;
}
.login-register-area .form .right h6 span{
    color: #1808c1;
}
.login-register-area .form .input-field input[type="text"]:focus{
    border: 1px solid #1d1d1d;    
}
.login-register-area .form .social-icon li a:hover i{
    background: #18387b;   
}
.login-register-area .form .social-icon li a:hover i.twitter{
    background: #12addf;    
}
.login-register-area .form .social-icon li a:hover i.gplus{
    background: #c62d1a;
}



/*** 
=============================================
    Breadcrumb Area Style3 Css
=============================================
***/
.breadcrumb-area.style3 {
    position: relative;
    display: block;
    background-attachment: scroll;
    background-position: center top;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 180px 0 0px;
    z-index: 10;
}
.breadcrumb-area.style3::before{
    display: none;
}
.breadcrumb-area.style3 .sec-title-style2 {
    position: relative;
    display: block;
    margin-top: -9px;
    padding-bottom: 143px;
}
.breadcrumb-area.style3 .sec-title-style2 .title {
    position: relative;
    display: block;
    padding-top: 0;
    padding-bottom: 0;
    color: #ffffff;
    font-size: 48px;
    line-height: 54px;
    font-weight: 800;
    text-transform: uppercase;
    margin: 0 0 19px;
    font-family: 'Poppins', sans-serif;
}
.breadcrumb-area.style3 .sec-title-style2 .text {
    position: relative;
    display: block;
    padding-top: 24px;
}
.breadcrumb-area.style3 .sec-title-style2 .text p {
    color: #ffffff;
    font-size: 18px;
    line-height: 26px;
    font-weight: 400;
    margin: 0;
    font-family: 'Nunito Sans', sans-serif;
}
.breadcrumb-area.style3 .breadcrumb-menu{
    position: absolute;
    left: 0;
    bottom: -30px;
    right: 0;    
}
.breadcrumb-area.style3 .breadcrumb-menu ul {
    position: relative;
    display: inline-block;
    background: #ffffff;
    -webkit-box-shadow: 0px 4px 5px 1px rgba(237,237,237,0.35);
    box-shadow: 0px 4px 5px 1px rgba(237,237,237,0.35);
    padding: 15px 30px 15px;
}
.breadcrumb-area.style3 .breadcrumb-menu ul li {
    position: relative;
    display: inline-block;
    float: none;
    color: #1808c1;
    font-size: 18px;
    line-height: 30px;
    font-weight: 700;
    text-transform: capitalize;
    transition: all 500ms ease;
    padding-right: 13px;
    margin-right: 7px;
    font-family: 'Nunito Sans', sans-serif;
}
.breadcrumb-area.style3 .breadcrumb-menu ul li:before {
    position: absolute;
    top: 0;
    bottom: 0px;
    right: -2px;
    width: 6px;
    height: 1px;
    background: #9f9f9f;
    content: "";
    margin: 15px 0 14px;
}
.breadcrumb-area.style3 .breadcrumb-menu ul li:last-child:before{
    display: none;
} 
.breadcrumb-area.style3 .breadcrumb-menu ul li:last-child{
    margin-right: 0;
    padding-right: 0;
}
.breadcrumb-area.style3 .breadcrumb-menu ul li a{
    color: #9f9f9f;
    font-size: 18px;
    font-weight: 400;
    text-transform: capitalize;
    transition: all 500ms ease;
}
.breadcrumb-area.style3 .breadcrumb-menu ul li a:hover{
    color: #1808c1;     
}



/*** 
=============================================
    Blank Area Css
=============================================
***/
.blank-area{
    position: relative;
    display: block;
    background: #ffffff;
    height: 110px;
    z-index: 3;
}


/*** 
=============================================
    Breadcrumb Area Style3 Css
=============================================
***/
.breadcrumb-area.style4 {
    position: relative;
    display: block;
    background-attachment: scroll;
    background-position: center top;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 311px 0 0px;
    z-index: 10;
}
.breadcrumb-area.style4::before{
    display: none;
}
.header-upper-style3.breadcrumb-style4 {
    background: transparent;
}
.header-lower-style2.breadcrumb-style4 {
    margin-top: -40px;
    margin-bottom: -190px;
}





.breadcrumb-area.style4 .title {
    position: relative;
    display: block;
    padding-bottom: 119px;
}
.breadcrumb-area.style4 .title h1 {
    color: #ffffff;
    font-size: 48px;
    line-height: 54px;
}

.breadcrumb-area.style4 .breadcrumb-menu {
    position: relative;
    display: block;
    padding: 16px 0 7px;
    z-index: 1;
}
.breadcrumb-area.style4 .breadcrumb-menu:before{
    position: absolute;
    top: 0;
    left: -10000px;
    right: -10000px;
    background: rgba(255, 255, 255, 0.10);
    height: 1px;
    content: "";
} 
.breadcrumb-area.style4 .breadcrumb-menu ul {
    position: relative;
    display: inline-block;
}
.breadcrumb-area.style4 .breadcrumb-menu ul li {
    position: relative;
    display: inline-block;
    float: left;
    color: #ffffff;
    font-size: 18px;
    line-height: 30px;
    font-weight: 700;
    text-transform: capitalize;
    transition: all 500ms ease;
    padding-right: 13px;
    margin-right: 11px;
    font-family: 'Nunito Sans', sans-serif;
}
.breadcrumb-area.style4 .breadcrumb-menu ul li:before {
    position: absolute;
    top: 0;
    bottom: 0px;
    right: -2px;
    width: 6px;
    height: 1px;
    background: #9f9f9f;
    content: "";
    margin: 15px 0 14px;
}
.breadcrumb-area.style4 .breadcrumb-menu ul li:last-child:before{
    display: none;
} 
.breadcrumb-area.style4 .breadcrumb-menu ul li:last-child{
    margin-right: 0;
    padding-right: 0;
}
.breadcrumb-area.style4 .breadcrumb-menu ul li a{
    color: #9f9f9f;
    font-size: 18px;
    font-weight: 400;
    text-transform: capitalize;
    transition: all 500ms ease;
}
.breadcrumb-area.style4 .breadcrumb-menu ul li.active{
    color: #ffffff; 
    font-weight: 700;
}
.breadcrumb-area.style4 .breadcrumb-menu ul li a:hover{
    color: #ffffff;
}

.breadcrumb-area.style4 .breadcrumb-menu .estimates-button{
    position: relative;
    display: block;
}
.breadcrumb-area.style4 .breadcrumb-menu .estimates-button a{
    position: relative;
    top: -7px;
    color: #ffffff;
    font-size: 16px;
    line-height: 30px;
    font-weight: 600;
    display: inline-block;
    font-family: 'Poppins', sans-serif;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}
.breadcrumb-area.style4 .breadcrumb-menu .estimates-button a span:before{
    position: relative;
    top: 6px;
    color: #1808c1;
    font-size: 30px;
    display: inline-block;
    padding-right: 10px;
}
.breadcrumb-area.style4 .breadcrumb-menu .estimates-button a:hover{
    color: #1808c1;
}






#ui-datepicker-div.ui-widget-content {
    border: 1px solid #c5c5c5;
    background: #fff none repeat scroll 0 0;
    border: 1px solid #777;
    color: #252525;
    font-family: "Poppins",sans-serif;
    font-size: 14px;
    border-radius: 0px;
    width: 270px;
    padding: 5px;
}
#ui-datepicker-div.ui-datepicker .ui-datepicker-header {
    background: #151515 none repeat scroll 0 0;
    border: 2px solid #252525;
    border-radius: 0;
    color: #fff;
    font-weight: 700;
    padding: 5px 0;
    position: relative;
}

.ui-datepicker td a {
    color: #000000 !important;
    text-align: center;
    background-image: none !important;
    background: #f5f5f5 !important;
    border: 1px solid #f9f9f9 !important;
}
.ui-state-highlight, 
.ui-widget-content .ui-state-highlight, 
.ui-widget-header .ui-state-highlight{
    border: 1px solid #333333 !important;
    background: #333333 !important;
    color: #ffffff !important;
}

.ui-datepicker .ui-datepicker-prev {
    left: 5px;
}
.ui-datepicker .ui-datepicker-prev, 
.ui-datepicker .ui-datepicker-next {
    border-radius: 30%;
    height: 20px;
    position: absolute;
    top: 7px;
    width: 20px;
    transition: all 500ms ease;
    cursor: pointer;
}
.ui-datepicker .ui-datepicker-next {
    right: 5px;
}
.ui-datepicker .ui-datepicker-prev:hover, 
.ui-datepicker .ui-datepicker-next:hover {
    top: 7px;
    background: #fff;
    border: none;
}
.ui-datepicker table {
    border-collapse: collapse;
    font-size: 13px;
    margin: 0 0 0.4em;
    width: 100%;
}
.ui-datepicker th {
    border: medium none;
    font-weight: 600;
    padding: 2px 3px;
    text-align: center;
}
.ui-datepicker-calendar .ui-state-default:hover,
.ui-datepicker-calendar .ui-state-default:active{
    background: #43c3ea;
    color: #fff;
    border-color: #43c3ea;
}

.menu-item-77 .sub-menu{width:85%!important}
.menu-item-77 .sub-menu li{float:left; width:50%!important}

.faq-area .single-testimonial-item {border: 3px solid #1808c1;}

.Rating ul li{float:left;width:auto;}
.service_detail_s h2{font-size:22px; margin-bottom:15px;color:#1808c1}

.service_detail_s li{ list-style:disc; list-style-position:inside}
.single-service-sidebar .service-pages li.active a .title h3, .single-service-sidebar .service-pages li:hover a .title h3{color:#fff!important}

.service_detail_s img, .single_service_ss img{float:right}

div.wpforms-container-full .wpforms-form button[type="submit"]{ background:#1808c1;color:#fff;position: relative;
display: inline-block;
background: #1808c1;
color: #ffffff;
font-size: 16px;
line-height: 50px;
font-weight: 600;
text-transform: capitalize;
font-family: 'Poppins', sans-serif;
padding: 0 35px 0;
border-radius: 30px;
transition: all 500ms ease;}

div.wpforms-container-full .wpforms-form button[type="submit"]:hover{background:#131313}
#freeestimate input,
#freeestimate textarea,
#freeestimate select,
.wpcf7 input[type="tel"] {
    position: relative;
    display: block;
    background: #ffffff;
    border: 1px solid #eeeeee;
    width: 100%;
    height: 55px;
    font-size: 16px;
    padding-left: 19px;
    padding-right: 15px;
    border-radius: 0px;
    margin-bottom: 20px;
    transition: all 500ms ease;
    color: #8e8e8e;
}
#freeestimate .button-box input {
    position: relative;
    display: block;
    width: 200px;
    background: #1808c1;
    color: #fff;
    font-size: 16px;
    line-height: 55px;
    font-weight: 600;
    text-align: center;
    text-transform: capitalize;
    font-family: 'Poppins', sans-serif;
    transition: all 200ms linear;
    transition-delay: 0.1s;
    margin: 0 auto;
    cursor: pointer;
}
#freeestimate .input-box textarea {
    padding: 15px 19px;
    height: 110px;
}
.working-process-area-style3 .service-button .btn-three span:before {
    position: relative;
    display: inline-block;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #1808c1;
    color: #ffffff;
    font-size: 20px;
    line-height: 40px;
    text-align: center;
}
.blog-detail-request {
    font-size: 17px;
}
.blog-detail-request a {
    color: #1808c1 !important;
    cursor: pointer;
}
#privacy ul li {
    padding-left: 25px;
    margin-bottom: 5px;
    position: relative;
}
#privacy ul li:before {
    position: absolute;
    content: '';
    width: 5px;
    height: 5px;
    background-color: #1808c1;
    left: 10px;
    top: 9px;
}
.service-list ul li {
    display: inline-block !important;
    padding-right: 10px;
    margin-right: 10px;
    position: relative;
}
.service-list ul li:after {
	position: absolute;
	content: '';
    width: 1px;
    height: 18px;
    right: 0;
    top: 10px;
    background-color: #1808c1;
}
.service-list ul li:last-child::after {
	width: 0;
}
.all-pages-info {
    padding: 80px 0;
}
.all-linkmain h3 {
    font-size: 26px;
    margin-bottom: 20px;
}
.all-linkmain {
    margin-bottom: 20px;
}
.all-linkmain.service-list ul li:after {
    top: 4px;
}
.call-btn a {
    display: block;
    background: #ffffff;
    border: 2px solid #1808c1;
    color: #131313;
    line-height: 61px;
    padding: 0;
    border-radius: 35px;
    text-align: center;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}
.call-btn a span:before {
    position: relative;
    display: inline-block;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #1808c1;
    color: #ffffff;
    font-size: 20px;
    line-height: 40px;
    text-align: center;
}
.call-btn a:hover {
    color: #ffffff;
    background: #1808c1;
}
.call-btn a:hover span:before,
.working-process-area-style3 .service-button .btn-three:hover span:before {
    background: #fff;
    color: #1808c1;
}
.about-area-style3 .call-btn a {
    width: 200px;
    float: left;
}
.service-select select {
    position: relative;
    display: block;
    background: #ffffff;
    border: 1px solid #eeeeee;
    width: 100%;
    height: 55px;
    font-size: 16px;
    padding-left: 19px;
    padding-right: 15px;
    border-radius: 0px;
    margin-bottom: 20px;
    transition: all 500ms ease;
    color: #8e8e8e;
}
.contact_form_btn,
.wpcf7-form-control.wpcf7-submit.btn-three{
    cursor: pointer;
}
.covid-text {
	background: red;
    padding: 10px;
    text-align: center;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
	margin-bottom: 0;
}
.remove-covid {
	display: inline-block;
    position: absolute;
    right: 15px;
    cursor: pointer;
}
.covid-text.close-covid {
	display:none;
}
.sticky-header .main-menu .navigation>li>a {
	font-size: 14px;
}
.home-team {
    padding: 100px 0;
}
.member-name h4 {
    text-align: center;
    padding: 12px 0px;
    background: #1808c178;
    color: #fff;
}
.team-all {
	padding: 60px 0;
}
.single_service_ss iframe {
    float: right;
    width: 300px;
    height: 250px;
}
.single_service_ss .area-map iframe {
    float: none;
    width: 100%;
	height: 500px;
}
img.size-medium.alignright {
    margin-left: 5px;
     margin-top: 5px;
}
@media only screen and (max-width: 1600px) {
  	.sticky-header  .main-menu {
		padding: 0;
	}
	.sticky-header .main-menu.style2 .navigation > li {
		margin-right: 9px;
	}
}
@media only screen and (max-width: 1400px) {
  	.sticky-header  .main-menu {
		padding: 0;
	}
	.sticky-header .main-menu.style2 .navigation > li {
		margin-right: 9px;
	}
	.sticky-header .right-col.col-md-6 {
		padding: 0;
	}
	.sticky-header .main-menu .navigation>li>a {
		font-size: 13px;
	}
}
@media only screen and (max-width: 1200px) and (min-width: 992px) { 
	.sticky-header .phone-number-box {
		padding: 13px 0px 13px;
	}
	.sticky-header .main-menu.style2 .navigation > li {
		margin-right: 8px;
	}
	.sticky-header .main-menu .navigation>li>a {
		font-size: 9px;
	}
}
@media only screen and (max-width: 767px) { 
	.single_service_ss .area-map iframe {
		height: 300px;
	}
	
	.header-contact-info-style2 li{float:left!important}
	.header-contact-info-style2{margin-left:0!important;display: flex!important;justify-content: space-between!important;}
	.header-contact-info-style2 .btn-three {padding: 0 10px 0!important;}
	  .header-contact-info-style2 li:last-child { margin-bottom: 21px!important;}
}
.feedback-form p,
.newsletter-form p {
	display: block;
    font-weight: 700;
    font-size: 16px;
    float: none;
    line-height: 1.3;
    margin: 0 0 4px 0;
    padding: 0;
}
.feedback-form p span,
.newsletter-form p span{
	color: red;
}
.appointment-form-box form .feedback-form .input-box input[type=text], 
.appointment-form-box form .feedback-form .input-box input[type=email], 
.appointment-form-box form .feedback-form .input-box textarea {
    border: 1px solid #ccc;
}
.appointment-form-box form .newsletter-form .input-box input[type=text], 
.appointment-form-box form .newsletter-form .input-box input[type=email], 
.appointment-form-box form .newsletter-form .input-box textarea,
.appointment-form-box form .newsletter-form .input-box select {
    border: 1px solid #ccc;
}


.appointment-form-box form .newsletter-form .input-box select{
	position: relative;
    display: block;
    background: #ffffff;
    border: 1px solid #eeeeee;
    width: 100%;
    height: 55px;
    padding: 0 19px;
    color: #848484;
    font-size: 16px;
    font-weight: 400;
    border-radius: 0px;
    font-family: 'Nunito Sans', sans-serif;
    transition: all 500ms ease;
}
.contact_form_btn {
    background: #1808c1;
    color: #fff;
    position: relative;
    display: inline-block;
    background: #1808c1;
    color: #ffffff;
    font-size: 16px;
    line-height: 50px;
    font-weight: 600;
    text-transform: capitalize;
    font-family: 'Poppins', sans-serif;
    padding: 0 35px 0;
    border-radius: 30px;
    transition: all 500ms ease;
	    width: auto;
}
.single-item.head-call {
    text-align: center;
    margin-top: 5px;
}
.menu-item-77 .sub-menu {
    width: 695px !important;
}
.header-upper-style3 .outer-box .header-upper-left {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.header-contact-info-style2 {
    padding: 10px 0;
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: end;
    padding-right: 20px;
}
.header-upper-style3 .outer-box {
    align-items: center;
}
.main-slider.style3 .slide-content .big-title {
    font-size: 50px;
}
.single-highlights-box {
    max-width: 25%;
    
}
@media only screen and (max-width: 1368px) {
    .single-item.head-call {
        text-align: left;
        margin-bottom: 10px;
    }
    .header-contact-info-style2 {
        display: block;
    }
    .header-upper-style3 .outer-box .header-upper-left {
        display: block;
        text-align: center;
    }
    .header-upper-left > div {
        margin-bottom: 20px;
    }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .header-upper-style3 .outer-box .header-upper-left .logo a {
        width: auto !important;
    }
}

@media only screen and (min-width: 992px) {
	.main-menu .navigation {
    width: 100%;
    display: flex;
    justify-content: space-evenly;
	}
	.main-menu {
	    width: 100%;
	}
}
@media only screen and (max-width: 768px) {
    .header-contact-info-style2 li .single-item .icon, 
    .header-contact-info-style2 li .single-item .text {
        text-align: left;
    }
    .header-contact-info-style2 li .single-item {
        display: flex;
        justify-content: center;
    }
    .header-contact-info-style2 {
       width: auto !important;
    text-align: center;
    }
	.header-lower-style2 .outer-box .header-lawer-right {
        top: -9px !important;
		right: 0 !important;
		border: none !important;
		left: inherit !important;
    }

}
.coupon-main {
	padding: 50px 0;
}
.coupon {
	padding: 7px 19px;
    width: 33.33%;
	text-align: center;
	position: relative;
	z-index: 3;
	min-height: 200px;
    margin-bottom: 50px;
}
/* .coupon:before {
	content: "";
	display: block;
	width: 320px;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
	z-index: -1;
    background: #f5f5f5;
	transform: scale(1.08);
} */
.coupon:after {
	content: "";
	display: block;
	width: 95%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
	z-index: -1;
	border: 1px dashed #222;
    background: #f5f5f569;
}
.coupon-head {
    font-weight: 700;
    font-size: 40px;
    margin: 20px 0px;
    color: #1808c1;
}
.coupon a {
    max-width: 150px;
    line-height: 39px;
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    bottom: 20px;
    font-weight: 500;
}

.coupon-fat-text {
    font-weight: 400;
    font-size: 18px;
    text-align: left;
    margin-bottom: 5px;
    position: relative;
    padding-left: 15px;
    line-height: 35px;
}
.coupon-fat-text:before {
    content: '';
    width: 7px;
    height: 7px;
    background-color: #1808c1;
    border-radius: 100px;
    display: inline-block;
    
    position: absolute;
    top: 12px;left: -3px;
}
@media (max-width: 1199px){
	.coupon {
		width: 50%;
	}
}
@media (max-width: 767px){
	.coupon {
	    width: 100%;
	    margin-bottom: 25px;
	    text-align: left;
	}
	.main-menu.style2 .navigation > li.dropdown > a:after {
		display: none;
	}
}
.coupon-box {
    padding: 10px 45px;
    width: 45%;
    text-align: center;
    position: relative;
    z-index: 3;
    margin-bottom: 50px;
/*     display: flex; */
    align-items: center;margin: 0 auto;
}
.coupon-box:after {
    content: "";
    display: block;
    width: 95%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    z-index: -1;
    border: 2px dashed #222;
    background: #fff;
}
.coupon-info {
  
    text-align: center;
}
.coupon-box .wp-block-image {
    margin: 0;
}
.breadcrumb-area.style2 {
    background-image: url(https://www.electricalmakeover.com/wp-content/uploads/2022/05/titlebg.png) !important;
}
.home-coupon {
    background-image: url(https://www.electricalmakeover.com/wp-content/uploads/2022/06/mackour-s1-1.jpg);
    padding: 50px 0 70px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}
@media (max-width: 767px){
	.coupon-box {
	    padding: 10px 15px;
	    width: 100%;
		display: block;
		margin-bottom: 0;
	}
	.coupon-info {
	    padding-left: 0px;
	    text-align: center;
	    margin: 15px;
	}
/* 	.coupon-main {
		padding: 0; 
	} */
	.coupon {
    min-height: auto;
		margin-bottom: 10px;
}
	.coupon a {
    position: inherit;
    bottom: 0;
}
	.home-coupon {
    padding: 50px 0 80px; 
		 background-image: url(https://www.electricalmakeover.com/wp-content/uploads/2022/06/mackour-s1mobile.jpg);
	}
	.coupon:after {
    
    background: #fff;
}
	.service_detail_s img, .single_service_ss img {
  float: none!important;
  display: block!important;
}
}

.coupon-wapper {
    background: #004aad57;
    margin: 30px 0 30px auto;
    border-radius: 30px;
    padding: 25px;
    max-width: 550px;
}
.cou-box {
    background-color: #004aad;
    border-radius: 30px;
    text-align: center;
    margin-bottom: 20px;
    color: #fff;
    padding: 10px 20px;
}
.cou-box h3 a {
    color: #fff;
    font-size: 26px;
    text-transform: uppercase;
}
.cou-box p {
    font-weight: 700;
    margin: 0;
    font-size: 16px;
}
.second-box h4 {
    color: #fff;
}
.second-box a {
    color: #fff;
    font-weight: 700;
    font-size: 20px;
}
.cou-btn a {
    background: #fff;
    display: inline-block;
    color: #000;
    font-weight: 700;
    font-size: 21px;
    text-transform: uppercase;
    border-radius: 50px;
    padding: 5px 15px;
    margin: 0 10px;
}